From 9eedcb303de0b4e046477161fb3d2932a0146d2a Mon Sep 17 00:00:00 2001 From: mrdgo Date: Fri, 22 Nov 2024 19:52:55 +0100 Subject: [PATCH] feat: reintroduce raw-strings (#117) [Discussion with tree-sitter devs](https://github.com/tree-sitter/tree-sitter/discussions/3878#discussioncomment-11139978) This will break the current `nvim-treesitter` config. They have to update to also use `scanner.c`. People using that config might want to use "our" way to install ts-nu. After merge, it might be necessary to run `:TSUpdate nu` at least once. I don't know about treesitter's caching, so let's just hope that nobody's setup breaks. With that scanner, we can also create custom logic for unquoted strings. --- .github/workflows/main.yml | 2 +- Package.swift | 2 +- binding.gyp | 2 +- bindings/go/binding.go | 2 +- bindings/rust/build.rs | 2 - example-file.nu | 5 - grammar.js | 17 +- installation/neovim.md | 4 +- package-lock.json | 55 +- package.json | 12 +- plugin/init.lua | 18 +- setup.py | 7 +- src/grammar.json | 36 +- src/node-types.json | 48 + src/parser.c | 585118 +++++++++++++++-------------- src/scanner.c | 151 + test/corpus/expr/raw-strings.nu | 79 + 17 files changed, 298205 insertions(+), 287355 deletions(-) delete mode 100644 example-file.nu create mode 100644 src/scanner.c create mode 100644 test/corpus/expr/raw-strings.nu diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index b75dab7..7d4976b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -5,7 +5,7 @@ on: - main jobs: main: - name: install + name: setup, lint, test runs-on: ${{ matrix.os }} strategy: diff --git a/Package.swift b/Package.swift index 7889047..732cb66 100644 --- a/Package.swift +++ b/Package.swift @@ -35,7 +35,7 @@ let package = Package( ], sources: [ "src/parser.c", - // NOTE: if your language has an external scanner, add it here. + "src/scanner.c", ], resources: [ .copy("queries") diff --git a/binding.gyp b/binding.gyp index c17858a..20e104e 100644 --- a/binding.gyp +++ b/binding.gyp @@ -11,7 +11,7 @@ "sources": [ "bindings/node/binding.cc", "src/parser.c", - # NOTE: if your language has an external scanner, add it here. + "src/scanner.c", ], "conditions": [ ["OS!='win'", { diff --git a/bindings/go/binding.go b/bindings/go/binding.go index 4b19b00..40d19c1 100644 --- a/bindings/go/binding.go +++ b/bindings/go/binding.go @@ -2,7 +2,7 @@ package tree_sitter_nu // #cgo CFLAGS: -std=c11 -fPIC // #include "../../src/parser.c" -// // NOTE: if your language has an external scanner, add it here. +// #include "../../src/scanner.c" import "C" import "unsafe" diff --git a/bindings/rust/build.rs b/bindings/rust/build.rs index d2b4fbf..78c414b 100644 --- a/bindings/rust/build.rs +++ b/bindings/rust/build.rs @@ -16,11 +16,9 @@ fn main() { // 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/example-file.nu b/example-file.nu deleted file mode 100644 index 971929b..0000000 --- a/example-file.nu +++ /dev/null @@ -1,5 +0,0 @@ -let somevar = 4 - -def somecommand [x: int] { - echo $x -} diff --git a/grammar.js b/grammar.js index 9297354..ac56997 100644 --- a/grammar.js +++ b/grammar.js @@ -19,8 +19,11 @@ module.exports = grammar({ $._terminator, ], - // externals: $ => [ - // ], + externals: ($) => [ + $.raw_string_begin, + $.raw_string_content, + $.raw_string_end, + ], conflicts: ($) => [ [$._binary_predicate_parenthesized], @@ -981,7 +984,15 @@ module.exports = grammar({ ), val_string: ($) => - choice($._str_double_quotes, $._str_single_quotes, $._str_back_ticks), + choice( + $._str_double_quotes, + $._str_single_quotes, + $._str_back_ticks, + $._raw_str, + ), + + _raw_str: ($) => + seq($.raw_string_begin, $.raw_string_content, $.raw_string_end), _str_double_quotes: ($) => seq( diff --git a/installation/neovim.md b/installation/neovim.md index ff5795d..a4019a1 100644 --- a/installation/neovim.md +++ b/installation/neovim.md @@ -34,7 +34,7 @@ local parser_config = require("nvim-treesitter.parsers").get_parser_configs() parser_config.nu = { install_info = { url = "https://github.com/nushell/tree-sitter-nu", - files = { "src/parser.c" }, + files = { "src/parser.c", "src/scanner.c" }, branch = "main", }, filetype = "nu", @@ -68,6 +68,8 @@ mkdir $local http get ([$remote $file] | str join "/") | save --force ($local | path join $file) ``` +You need to run this snippet whenever the highlights change and `:TSUpdate nu` whenever there is a new version of the parser. + [tree-sitter]: https://tree-sitter.github.io/tree-sitter/ [nvim-treesitter]: https://github.com/nvim-treesitter/nvim-treesitter [nvim-treesitter/playground]: https://github.com/nvim-treesitter/playground diff --git a/package-lock.json b/package-lock.json index c2af994..5d6251d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -10,16 +10,16 @@ "hasInstallScript": true, "license": "MIT", "dependencies": { - "node-addon-api": "^8.0.0", - "node-gyp-build": "^4.8.0" + "node-addon-api": "^8.1.0", + "node-gyp-build": "^4.8.2" }, "devDependencies": { "prebuildify": "^6.0.0", - "prettier": "3.2.5", - "tree-sitter-cli": "^0.22.5" + "prettier": "3.3.3", + "tree-sitter-cli": "^0.23.0" }, "peerDependencies": { - "tree-sitter": "^0.21.0" + "tree-sitter": "^0.21.1" }, "peerDependenciesMeta": { "tree_sitter": { @@ -155,9 +155,9 @@ "license": "MIT" }, "node_modules/node-abi": { - "version": "3.62.0", - "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.62.0.tgz", - "integrity": "sha512-CPMcGa+y33xuL1E0TcNIu4YyaZCxnnvkVaEXrsosR3FxN+fV8xvb7Mzpb7IgKler10qeMkE6+Dp8qJhpzdq35g==", + "version": "3.71.0", + "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.71.0.tgz", + "integrity": "sha512-SZ40vRiy/+wRTf21hxkkEjPJZpARzUMVcJoQse2EF8qkUWbbO2z7vd5oA/H6bVH6SZQ5STGcu0KRDS7biNRfxw==", "dev": true, "license": "MIT", "dependencies": { @@ -168,18 +168,18 @@ } }, "node_modules/node-addon-api": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-8.0.0.tgz", - "integrity": "sha512-ipO7rsHEBqa9STO5C5T10fj732ml+5kLN1cAG8/jdHd56ldQeGj3Q7+scUS+VHK/qy1zLEwC4wMK5+yM0btPvw==", + "version": "8.2.2", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-8.2.2.tgz", + "integrity": "sha512-9emqXAKhVoNrQ792nLI/wpzPpJ/bj/YXxW0CvAau1+RdGBcCRF1Dmz7719zgVsQNrzHl9Tzn3ImZ4qWFarWL0A==", "license": "MIT", "engines": { "node": "^18 || ^20 || >= 21" } }, "node_modules/node-gyp-build": { - "version": "4.8.1", - "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.8.1.tgz", - "integrity": "sha512-OSs33Z9yWr148JZcbZd5WiAXhh/n9z8TxQcdMhIOlpN9AhWpLfvVFO73+m77bBABQMaY9XSvIa+qk0jlI7Gcaw==", + "version": "4.8.4", + "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.8.4.tgz", + "integrity": "sha512-LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ==", "license": "MIT", "bin": { "node-gyp-build": "bin.js", @@ -239,9 +239,9 @@ } }, "node_modules/prettier": { - "version": "3.2.5", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.2.5.tgz", - "integrity": "sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==", + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.3.3.tgz", + "integrity": "sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==", "dev": true, "license": "MIT", "bin": { @@ -255,9 +255,9 @@ } }, "node_modules/pump": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", - "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.2.tgz", + "integrity": "sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==", "dev": true, "license": "MIT", "dependencies": { @@ -302,9 +302,9 @@ "license": "MIT" }, "node_modules/semver": { - "version": "7.6.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", - "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", "dev": true, "license": "ISC", "bin": { @@ -367,14 +367,17 @@ } }, "node_modules/tree-sitter-cli": { - "version": "0.22.6", - "resolved": "https://registry.npmjs.org/tree-sitter-cli/-/tree-sitter-cli-0.22.6.tgz", - "integrity": "sha512-s7mYOJXi8sIFkt/nLJSqlYZP96VmKTc3BAwIX0rrrlRxWjWuCwixFqwzxWZBQz4R8Hx01iP7z3cT3ih58BUmZQ==", + "version": "0.23.2", + "resolved": "https://registry.npmjs.org/tree-sitter-cli/-/tree-sitter-cli-0.23.2.tgz", + "integrity": "sha512-kPPXprOqREX+C/FgUp2Qpt9jd0vSwn+hOgjzVv/7hapdoWpa+VeWId53rf4oNNd29ikheF12BYtGD/W90feMbA==", "dev": true, "hasInstallScript": true, "license": "MIT", "bin": { "tree-sitter": "cli.js" + }, + "engines": { + "node": ">=12.0.0" } }, "node_modules/util-deprecate": { diff --git a/package.json b/package.json index d6a2654..4bc4001 100644 --- a/package.json +++ b/package.json @@ -13,11 +13,11 @@ "author": "The Nushell Contributors", "license": "MIT", "dependencies": { - "node-addon-api": "^8.0.0", - "node-gyp-build": "^4.8.0" + "node-addon-api": "^8.1.0", + "node-gyp-build": "^4.8.2" }, "peerDependencies": { - "tree-sitter": "^0.21.0" + "tree-sitter": "^0.21.1" }, "peerDependenciesMeta": { "tree_sitter": { @@ -25,9 +25,9 @@ } }, "devDependencies": { - "prettier": "3.2.5", - "tree-sitter-cli": "^0.22.5", - "prebuildify": "^6.0.0" + "prebuildify": "^6.0.0", + "prettier": "3.3.3", + "tree-sitter-cli": "^0.23.0" }, "files": [ "grammar.js", diff --git a/plugin/init.lua b/plugin/init.lua index 98fdce0..5adbf9f 100644 --- a/plugin/init.lua +++ b/plugin/init.lua @@ -1,15 +1,17 @@ vim.filetype.add({ extension = { nu = "nu" }, filename = { ["nurfile"] = "nu" } }) vim.api.nvim_create_autocmd("FileType", { - pattern = "nu", - callback = function(event) vim.bo[event.buf].commentstring = "# %s" end, + pattern = "nu", + callback = function(event) + vim.bo[event.buf].commentstring = "# %s" + end, }) require("nvim-treesitter.parsers").get_parser_configs().nu = { - install_info = { - url = "https://github.com/nushell/tree-sitter-nu", - files = { "src/parser.c" }, - branch = "main", - }, - filetype = "nu", + install_info = { + url = "https://github.com/nushell/tree-sitter-nu", + files = { "src/parser.c", "src/scanner.c" }, + branch = "main", + }, + filetype = "nu", } diff --git a/setup.py b/setup.py index c9033f6..ba24a6c 100644 --- a/setup.py +++ b/setup.py @@ -36,7 +36,7 @@ def get_tag(self): sources=[ "bindings/python/tree_sitter_nu/binding.c", "src/parser.c", - # NOTE: if your language uses an external scanner, add it here. + "src/scanner.c", ], extra_compile_args=[ "-std=c11", @@ -45,8 +45,9 @@ def get_tag(self): "/utf-8", ], define_macros=[ - ("Py_LIMITED_API", "0x03080000"), - ("PY_SSIZE_T_CLEAN", None) + ("Py_LIMITED_API", "0x03090000"), + ("PY_SSIZE_T_CLEAN", None), + ("TREE_SITTER_HIDE_SYMBOLS", None), ], include_dirs=["src"], py_limited_api=True, diff --git a/src/grammar.json b/src/grammar.json index a44761b..2dc662f 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -14886,6 +14886,27 @@ { "type": "SYMBOL", "name": "_str_back_ticks" + }, + { + "type": "SYMBOL", + "name": "_raw_str" + } + ] + }, + "_raw_str": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "raw_string_begin" + }, + { + "type": "SYMBOL", + "name": "raw_string_content" + }, + { + "type": "SYMBOL", + "name": "raw_string_end" } ] }, @@ -17883,7 +17904,20 @@ ] ], "precedences": [], - "externals": [], + "externals": [ + { + "type": "SYMBOL", + "name": "raw_string_begin" + }, + { + "type": "SYMBOL", + "name": "raw_string_content" + }, + { + "type": "SYMBOL", + "name": "raw_string_end" + } + ], "inline": [ "_do_expression", "_flag_value", diff --git a/src/node-types.json b/src/node-types.json index f1c3299..566b395 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -2514,6 +2514,18 @@ { "type": "escape_sequence", "named": true + }, + { + "type": "raw_string_begin", + "named": true + }, + { + "type": "raw_string_content", + "named": true + }, + { + "type": "raw_string_end", + "named": true } ] } @@ -3689,6 +3701,18 @@ { "type": "escape_sequence", "named": true + }, + { + "type": "raw_string_begin", + "named": true + }, + { + "type": "raw_string_content", + "named": true + }, + { + "type": "raw_string_end", + "named": true } ] } @@ -4809,6 +4833,18 @@ { "type": "expr_parenthesized", "named": true + }, + { + "type": "raw_string_begin", + "named": true + }, + { + "type": "raw_string_content", + "named": true + }, + { + "type": "raw_string_end", + "named": true } ] } @@ -6017,6 +6053,18 @@ "type": "range", "named": false }, + { + "type": "raw_string_begin", + "named": true + }, + { + "type": "raw_string_content", + "named": true + }, + { + "type": "raw_string_end", + "named": true + }, { "type": "record", "named": false diff --git a/src/parser.c b/src/parser.c index 4ba08bc..edc57ea 100644 --- a/src/parser.c +++ b/src/parser.c @@ -13,12 +13,12 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 7727 -#define LARGE_STATE_COUNT 1506 -#define SYMBOL_COUNT 526 +#define STATE_COUNT 8080 +#define LARGE_STATE_COUNT 1585 +#define SYMBOL_COUNT 530 #define ALIAS_COUNT 4 -#define TOKEN_COUNT 320 -#define EXTERNAL_TOKEN_COUNT 0 +#define TOKEN_COUNT 323 +#define EXTERNAL_TOKEN_COUNT 3 #define FIELD_COUNT 72 #define MAX_ALIAS_SEQUENCE_LENGTH 10 #define PRODUCTION_ID_COUNT 273 @@ -343,216 +343,220 @@ enum ts_symbol_identifiers { aux_sym__unquoted_in_record_with_expr_token1 = 317, anon_sym_POUND = 318, aux_sym_comment_token1 = 319, - sym_nu_script = 320, - sym_shebang = 321, - sym__block_body_statement = 322, - sym__declaration = 323, - sym_decl_alias = 324, - sym_stmt_let = 325, - sym_stmt_mut = 326, - sym_stmt_const = 327, - sym_assignment = 328, - sym__assignment_pattern = 329, - sym__mutable_assignment_pattern = 330, - sym__statement = 331, - sym_pipeline = 332, - sym__block_body_statement_parenthesized = 333, - sym__declaration_parenthesized = 334, - sym_decl_alias_parenthesized = 335, - sym_stmt_let_parenthesized = 336, - sym_stmt_mut_parenthesized = 337, - sym_stmt_const_parenthesized = 338, - sym_assignment_parenthesized = 339, - sym__assignment_pattern_parenthesized = 340, - sym__mutable_assignment_pattern_parenthesized = 341, - sym__statement_parenthesized = 342, - sym_pipeline_parenthesized = 343, - sym__block_body = 344, - sym_cmd_identifier = 345, - sym__command_name = 346, - sym__variable_name = 347, - aux_sym__pipe_separator = 348, - sym_decl_def = 349, - sym_decl_export = 350, - sym_decl_extern = 351, - sym_decl_module = 352, - sym_decl_use = 353, - sym_returns = 354, - sym__one_type = 355, - sym__multiple_types = 356, - sym_parameter_parens = 357, - sym_parameter_bracks = 358, - sym_parameter_pipes = 359, - sym_parameter = 360, - sym__param_name = 361, - sym_param_type = 362, - sym_param_value = 363, - sym__type_annotation = 364, - sym__all_type = 365, - sym_flat_type = 366, - sym_collection_type = 367, - sym_list_type = 368, - sym_param_cmd = 369, - sym_param_rest = 370, - sym_param_opt = 371, - sym_param_long_flag = 372, - sym_flag_capsule = 373, - sym_param_short_flag = 374, - sym__ctrl_statement = 375, - sym__ctrl_expression = 376, - sym__ctrl_expression_parenthesized = 377, - sym_ctrl_for = 378, - sym_ctrl_loop = 379, - sym_ctrl_error = 380, - sym_ctrl_while = 381, - sym_ctrl_do = 382, - sym_ctrl_do_parenthesized = 383, - sym_ctrl_if = 384, - sym_ctrl_if_parenthesized = 385, - sym_ctrl_match = 386, - sym_match_arm = 387, - sym_default_arm = 388, - sym_match_pattern = 389, - sym__match_pattern = 390, - sym_match_guard = 391, - sym__match_pattern_expression = 392, - sym__match_pattern_value = 393, - sym__match_pattern_list = 394, - sym__match_pattern_rest = 395, - sym__match_pattern_record = 396, - sym__match_pattern_record_variable = 397, - sym_ctrl_try = 398, - sym_ctrl_try_parenthesized = 399, - sym_ctrl_return = 400, - sym_pipe_element = 401, - sym_pipe_element_parenthesized = 402, - sym_stmt_source = 403, - sym_stmt_register = 404, - sym__stmt_hide = 405, - sym_hide_mod = 406, - sym_hide_env = 407, - sym__stmt_overlay = 408, - sym_overlay_list = 409, - sym_overlay_hide = 410, - sym_overlay_new = 411, - sym_overlay_use = 412, - sym_scope_pattern = 413, - sym_command_list = 414, - sym_block = 415, - sym__blosure = 416, - sym__where_predicate_lhs = 417, - sym_where_command = 418, - sym_where_command_parenthesized = 419, - sym__binary_predicate = 420, - sym__binary_predicate_parenthesized = 421, - sym__predicate = 422, - sym__expression = 423, - sym__expression_parenthesized = 424, - sym_expr_unary = 425, - sym__expr_unary_minus = 426, - sym_expr_binary = 427, - sym_expr_binary_parenthesized = 428, - sym__expr_binary_expression = 429, - sym__expr_binary_expression_parenthesized = 430, - sym_expr_parenthesized = 431, - sym__spread_parenthesized = 432, - sym__expr_parenthesized_immediate = 433, - sym__parenthesized_body = 434, - sym_val_range = 435, - sym__val_range = 436, - sym__val_range_with_end = 437, - sym__immediate_decimal = 438, - sym__value = 439, - sym_val_nothing = 440, - sym_val_bool = 441, - sym__spread_variable = 442, - sym_val_variable = 443, - sym_val_number = 444, - sym__val_number_decimal = 445, - sym__val_number = 446, - sym_val_duration = 447, - sym_val_filesize = 448, - sym_val_binary = 449, - sym_val_string = 450, - sym__str_double_quotes = 451, - sym_val_interpolated = 452, - sym__inter_single_quotes = 453, - sym__inter_double_quotes = 454, - sym_expr_interpolated = 455, - sym_val_list = 456, - sym__spread_list = 457, - sym_list_body = 458, - sym_val_entry = 459, - sym_val_record = 460, - sym__spread_record = 461, - sym_record_body = 462, - sym_record_entry = 463, - sym__record_key = 464, - sym_val_table = 465, - sym_val_closure = 466, - sym_cell_path = 467, - sym_path = 468, - sym_env_var = 469, - sym_command = 470, - sym__command_parenthesized = 471, - sym__cmd_arg = 472, - sym_redirection = 473, - sym__flag = 474, - sym__flags_parenthesized = 475, - sym_short_flag = 476, - sym_long_flag = 477, - sym_unquoted = 478, - sym__unquoted_in_list = 479, - sym__unquoted_in_record = 480, - sym__unquoted_with_expr = 481, - sym__unquoted_in_list_with_expr = 482, - sym__unquoted_in_record_with_expr = 483, - sym__unquoted_anonymous_prefix = 484, - sym_comment = 485, - aux_sym_shebang_repeat1 = 486, - aux_sym_pipeline_repeat1 = 487, - aux_sym_pipeline_parenthesized_repeat1 = 488, - aux_sym__block_body_repeat1 = 489, - aux_sym__block_body_repeat2 = 490, - aux_sym_decl_def_repeat1 = 491, - aux_sym__multiple_types_repeat1 = 492, - aux_sym__multiple_types_repeat2 = 493, - aux_sym_parameter_parens_repeat1 = 494, - aux_sym_parameter_repeat1 = 495, - aux_sym_parameter_repeat2 = 496, - aux_sym_collection_type_repeat1 = 497, - aux_sym_ctrl_do_repeat1 = 498, - aux_sym_ctrl_do_repeat2 = 499, - aux_sym_ctrl_do_parenthesized_repeat1 = 500, - aux_sym_ctrl_do_parenthesized_repeat2 = 501, - aux_sym_ctrl_do_parenthesized_repeat3 = 502, - aux_sym_ctrl_match_repeat1 = 503, - aux_sym_match_pattern_repeat1 = 504, - aux_sym__match_pattern_list_repeat1 = 505, - aux_sym__match_pattern_record_repeat1 = 506, - aux_sym_pipe_element_repeat1 = 507, - aux_sym_pipe_element_repeat2 = 508, - aux_sym_pipe_element_parenthesized_repeat1 = 509, - aux_sym_command_list_repeat1 = 510, - aux_sym__parenthesized_body_repeat1 = 511, - aux_sym__parenthesized_body_repeat2 = 512, - aux_sym_val_binary_repeat1 = 513, - aux_sym__str_double_quotes_repeat1 = 514, - aux_sym__inter_single_quotes_repeat1 = 515, - aux_sym__inter_double_quotes_repeat1 = 516, - aux_sym_list_body_repeat1 = 517, - aux_sym_record_body_repeat1 = 518, - aux_sym_val_table_repeat1 = 519, - aux_sym_cell_path_repeat1 = 520, - aux_sym_command_repeat1 = 521, - aux_sym__command_parenthesized_repeat1 = 522, - aux_sym__unquoted_with_expr_repeat1 = 523, - aux_sym__unquoted_in_list_with_expr_repeat1 = 524, - aux_sym__unquoted_in_record_with_expr_repeat1 = 525, - anon_alias_sym__head = 526, - anon_alias_sym__prefix = 527, - anon_alias_sym__unit = 528, - anon_alias_sym_quoted = 529, + sym_raw_string_begin = 320, + sym_raw_string_content = 321, + sym_raw_string_end = 322, + sym_nu_script = 323, + sym_shebang = 324, + sym__block_body_statement = 325, + sym__declaration = 326, + sym_decl_alias = 327, + sym_stmt_let = 328, + sym_stmt_mut = 329, + sym_stmt_const = 330, + sym_assignment = 331, + sym__assignment_pattern = 332, + sym__mutable_assignment_pattern = 333, + sym__statement = 334, + sym_pipeline = 335, + sym__block_body_statement_parenthesized = 336, + sym__declaration_parenthesized = 337, + sym_decl_alias_parenthesized = 338, + sym_stmt_let_parenthesized = 339, + sym_stmt_mut_parenthesized = 340, + sym_stmt_const_parenthesized = 341, + sym_assignment_parenthesized = 342, + sym__assignment_pattern_parenthesized = 343, + sym__mutable_assignment_pattern_parenthesized = 344, + sym__statement_parenthesized = 345, + sym_pipeline_parenthesized = 346, + sym__block_body = 347, + sym_cmd_identifier = 348, + sym__command_name = 349, + sym__variable_name = 350, + aux_sym__pipe_separator = 351, + sym_decl_def = 352, + sym_decl_export = 353, + sym_decl_extern = 354, + sym_decl_module = 355, + sym_decl_use = 356, + sym_returns = 357, + sym__one_type = 358, + sym__multiple_types = 359, + sym_parameter_parens = 360, + sym_parameter_bracks = 361, + sym_parameter_pipes = 362, + sym_parameter = 363, + sym__param_name = 364, + sym_param_type = 365, + sym_param_value = 366, + sym__type_annotation = 367, + sym__all_type = 368, + sym_flat_type = 369, + sym_collection_type = 370, + sym_list_type = 371, + sym_param_cmd = 372, + sym_param_rest = 373, + sym_param_opt = 374, + sym_param_long_flag = 375, + sym_flag_capsule = 376, + sym_param_short_flag = 377, + sym__ctrl_statement = 378, + sym__ctrl_expression = 379, + sym__ctrl_expression_parenthesized = 380, + sym_ctrl_for = 381, + sym_ctrl_loop = 382, + sym_ctrl_error = 383, + sym_ctrl_while = 384, + sym_ctrl_do = 385, + sym_ctrl_do_parenthesized = 386, + sym_ctrl_if = 387, + sym_ctrl_if_parenthesized = 388, + sym_ctrl_match = 389, + sym_match_arm = 390, + sym_default_arm = 391, + sym_match_pattern = 392, + sym__match_pattern = 393, + sym_match_guard = 394, + sym__match_pattern_expression = 395, + sym__match_pattern_value = 396, + sym__match_pattern_list = 397, + sym__match_pattern_rest = 398, + sym__match_pattern_record = 399, + sym__match_pattern_record_variable = 400, + sym_ctrl_try = 401, + sym_ctrl_try_parenthesized = 402, + sym_ctrl_return = 403, + sym_pipe_element = 404, + sym_pipe_element_parenthesized = 405, + sym_stmt_source = 406, + sym_stmt_register = 407, + sym__stmt_hide = 408, + sym_hide_mod = 409, + sym_hide_env = 410, + sym__stmt_overlay = 411, + sym_overlay_list = 412, + sym_overlay_hide = 413, + sym_overlay_new = 414, + sym_overlay_use = 415, + sym_scope_pattern = 416, + sym_command_list = 417, + sym_block = 418, + sym__blosure = 419, + sym__where_predicate_lhs = 420, + sym_where_command = 421, + sym_where_command_parenthesized = 422, + sym__binary_predicate = 423, + sym__binary_predicate_parenthesized = 424, + sym__predicate = 425, + sym__expression = 426, + sym__expression_parenthesized = 427, + sym_expr_unary = 428, + sym__expr_unary_minus = 429, + sym_expr_binary = 430, + sym_expr_binary_parenthesized = 431, + sym__expr_binary_expression = 432, + sym__expr_binary_expression_parenthesized = 433, + sym_expr_parenthesized = 434, + sym__spread_parenthesized = 435, + sym__expr_parenthesized_immediate = 436, + sym__parenthesized_body = 437, + sym_val_range = 438, + sym__val_range = 439, + sym__val_range_with_end = 440, + sym__immediate_decimal = 441, + sym__value = 442, + sym_val_nothing = 443, + sym_val_bool = 444, + sym__spread_variable = 445, + sym_val_variable = 446, + sym_val_number = 447, + sym__val_number_decimal = 448, + sym__val_number = 449, + sym_val_duration = 450, + sym_val_filesize = 451, + sym_val_binary = 452, + sym_val_string = 453, + sym__raw_str = 454, + sym__str_double_quotes = 455, + sym_val_interpolated = 456, + sym__inter_single_quotes = 457, + sym__inter_double_quotes = 458, + sym_expr_interpolated = 459, + sym_val_list = 460, + sym__spread_list = 461, + sym_list_body = 462, + sym_val_entry = 463, + sym_val_record = 464, + sym__spread_record = 465, + sym_record_body = 466, + sym_record_entry = 467, + sym__record_key = 468, + sym_val_table = 469, + sym_val_closure = 470, + sym_cell_path = 471, + sym_path = 472, + sym_env_var = 473, + sym_command = 474, + sym__command_parenthesized = 475, + sym__cmd_arg = 476, + sym_redirection = 477, + sym__flag = 478, + sym__flags_parenthesized = 479, + sym_short_flag = 480, + sym_long_flag = 481, + sym_unquoted = 482, + sym__unquoted_in_list = 483, + sym__unquoted_in_record = 484, + sym__unquoted_with_expr = 485, + sym__unquoted_in_list_with_expr = 486, + sym__unquoted_in_record_with_expr = 487, + sym__unquoted_anonymous_prefix = 488, + sym_comment = 489, + aux_sym_shebang_repeat1 = 490, + aux_sym_pipeline_repeat1 = 491, + aux_sym_pipeline_parenthesized_repeat1 = 492, + aux_sym__block_body_repeat1 = 493, + aux_sym__block_body_repeat2 = 494, + aux_sym_decl_def_repeat1 = 495, + aux_sym__multiple_types_repeat1 = 496, + aux_sym__multiple_types_repeat2 = 497, + aux_sym_parameter_parens_repeat1 = 498, + aux_sym_parameter_repeat1 = 499, + aux_sym_parameter_repeat2 = 500, + aux_sym_collection_type_repeat1 = 501, + aux_sym_ctrl_do_repeat1 = 502, + aux_sym_ctrl_do_repeat2 = 503, + aux_sym_ctrl_do_parenthesized_repeat1 = 504, + aux_sym_ctrl_do_parenthesized_repeat2 = 505, + aux_sym_ctrl_do_parenthesized_repeat3 = 506, + aux_sym_ctrl_match_repeat1 = 507, + aux_sym_match_pattern_repeat1 = 508, + aux_sym__match_pattern_list_repeat1 = 509, + aux_sym__match_pattern_record_repeat1 = 510, + aux_sym_pipe_element_repeat1 = 511, + aux_sym_pipe_element_repeat2 = 512, + aux_sym_pipe_element_parenthesized_repeat1 = 513, + aux_sym_command_list_repeat1 = 514, + aux_sym__parenthesized_body_repeat1 = 515, + aux_sym__parenthesized_body_repeat2 = 516, + aux_sym_val_binary_repeat1 = 517, + aux_sym__str_double_quotes_repeat1 = 518, + aux_sym__inter_single_quotes_repeat1 = 519, + aux_sym__inter_double_quotes_repeat1 = 520, + aux_sym_list_body_repeat1 = 521, + aux_sym_record_body_repeat1 = 522, + aux_sym_val_table_repeat1 = 523, + aux_sym_cell_path_repeat1 = 524, + aux_sym_command_repeat1 = 525, + aux_sym__command_parenthesized_repeat1 = 526, + aux_sym__unquoted_with_expr_repeat1 = 527, + aux_sym__unquoted_in_list_with_expr_repeat1 = 528, + aux_sym__unquoted_in_record_with_expr_repeat1 = 529, + anon_alias_sym__head = 530, + anon_alias_sym__prefix = 531, + anon_alias_sym__unit = 532, + anon_alias_sym_quoted = 533, }; static const char * const ts_symbol_names[] = { @@ -876,6 +880,9 @@ static const char * const ts_symbol_names[] = { [aux_sym__unquoted_in_record_with_expr_token1] = "_unquoted_in_record_with_expr_token1", [anon_sym_POUND] = "#", [aux_sym_comment_token1] = "comment_token1", + [sym_raw_string_begin] = "raw_string_begin", + [sym_raw_string_content] = "raw_string_content", + [sym_raw_string_end] = "raw_string_end", [sym_nu_script] = "nu_script", [sym_shebang] = "shebang", [sym__block_body_statement] = "_block_body_statement", @@ -1007,6 +1014,7 @@ static const char * const ts_symbol_names[] = { [sym_val_filesize] = "val_filesize", [sym_val_binary] = "val_binary", [sym_val_string] = "val_string", + [sym__raw_str] = "_raw_str", [sym__str_double_quotes] = "_str_double_quotes", [sym_val_interpolated] = "val_interpolated", [sym__inter_single_quotes] = "_inter_single_quotes", @@ -1409,6 +1417,9 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym__unquoted_in_record_with_expr_token1] = aux_sym__unquoted_in_record_with_expr_token1, [anon_sym_POUND] = anon_sym_POUND, [aux_sym_comment_token1] = aux_sym_comment_token1, + [sym_raw_string_begin] = sym_raw_string_begin, + [sym_raw_string_content] = sym_raw_string_content, + [sym_raw_string_end] = sym_raw_string_end, [sym_nu_script] = sym_nu_script, [sym_shebang] = sym_shebang, [sym__block_body_statement] = sym__block_body_statement, @@ -1540,6 +1551,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_val_filesize] = sym_val_filesize, [sym_val_binary] = sym_val_binary, [sym_val_string] = sym_val_string, + [sym__raw_str] = sym__raw_str, [sym__str_double_quotes] = sym__str_double_quotes, [sym_val_interpolated] = sym_val_interpolated, [sym__inter_single_quotes] = sym__inter_single_quotes, @@ -2902,6 +2914,18 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [sym_raw_string_begin] = { + .visible = true, + .named = true, + }, + [sym_raw_string_content] = { + .visible = true, + .named = true, + }, + [sym_raw_string_end] = { + .visible = true, + .named = true, + }, [sym_nu_script] = { .visible = true, .named = true, @@ -3426,6 +3450,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__raw_str] = { + .visible = false, + .named = true, + }, [sym__str_double_quotes] = { .visible = false, .named = true, @@ -5230,110 +5258,110 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [37] = 26, [38] = 26, [39] = 26, - [40] = 40, - [41] = 40, - [42] = 40, - [43] = 40, - [44] = 44, + [40] = 26, + [41] = 41, + [42] = 41, + [43] = 41, + [44] = 41, [45] = 45, [46] = 45, - [47] = 44, + [47] = 47, [48] = 45, [49] = 45, - [50] = 50, - [51] = 50, - [52] = 50, - [53] = 50, - [54] = 50, - [55] = 50, - [56] = 50, - [57] = 50, - [58] = 50, - [59] = 50, - [60] = 50, - [61] = 50, - [62] = 50, - [63] = 50, - [64] = 50, - [65] = 50, - [66] = 50, - [67] = 50, - [68] = 50, - [69] = 50, - [70] = 50, - [71] = 50, - [72] = 50, - [73] = 73, + [50] = 47, + [51] = 51, + [52] = 51, + [53] = 51, + [54] = 51, + [55] = 51, + [56] = 51, + [57] = 51, + [58] = 51, + [59] = 51, + [60] = 51, + [61] = 51, + [62] = 51, + [63] = 51, + [64] = 51, + [65] = 51, + [66] = 51, + [67] = 51, + [68] = 51, + [69] = 51, + [70] = 51, + [71] = 51, + [72] = 51, + [73] = 51, [74] = 74, - [75] = 73, - [76] = 74, - [77] = 73, - [78] = 78, - [79] = 74, + [75] = 75, + [76] = 76, + [77] = 74, + [78] = 76, + [79] = 76, [80] = 74, - [81] = 73, - [82] = 74, - [83] = 73, - [84] = 74, - [85] = 74, + [81] = 76, + [82] = 76, + [83] = 83, + [84] = 76, + [85] = 76, [86] = 74, [87] = 74, - [88] = 74, - [89] = 74, - [90] = 74, - [91] = 73, - [92] = 74, - [93] = 74, - [94] = 74, - [95] = 95, - [96] = 96, - [97] = 78, - [98] = 73, - [99] = 73, - [100] = 78, + [88] = 76, + [89] = 76, + [90] = 76, + [91] = 74, + [92] = 76, + [93] = 93, + [94] = 76, + [95] = 74, + [96] = 74, + [97] = 97, + [98] = 76, + [99] = 83, + [100] = 76, [101] = 74, - [102] = 95, - [103] = 74, - [104] = 73, - [105] = 73, - [106] = 78, - [107] = 74, - [108] = 73, - [109] = 78, - [110] = 74, - [111] = 74, - [112] = 95, - [113] = 113, - [114] = 73, - [115] = 74, + [102] = 76, + [103] = 97, + [104] = 74, + [105] = 97, + [106] = 76, + [107] = 97, + [108] = 97, + [109] = 74, + [110] = 76, + [111] = 76, + [112] = 76, + [113] = 74, + [114] = 76, + [115] = 76, [116] = 116, - [117] = 117, + [117] = 116, [118] = 118, [119] = 119, [120] = 120, - [121] = 116, - [122] = 120, - [123] = 116, - [124] = 117, - [125] = 119, - [126] = 120, - [127] = 116, - [128] = 119, - [129] = 120, - [130] = 116, - [131] = 119, + [121] = 75, + [122] = 116, + [123] = 120, + [124] = 116, + [125] = 125, + [126] = 119, + [127] = 120, + [128] = 116, + [129] = 119, + [130] = 120, + [131] = 116, [132] = 119, - [133] = 116, - [134] = 119, - [135] = 116, - [136] = 119, - [137] = 116, - [138] = 119, - [139] = 116, - [140] = 119, - [141] = 116, - [142] = 119, - [143] = 116, + [133] = 120, + [134] = 116, + [135] = 119, + [136] = 116, + [137] = 119, + [138] = 116, + [139] = 119, + [140] = 116, + [141] = 119, + [142] = 116, + [143] = 119, [144] = 119, [145] = 119, [146] = 116, @@ -5341,16 +5369,16 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [148] = 116, [149] = 119, [150] = 116, - [151] = 96, - [152] = 120, - [153] = 153, - [154] = 154, - [155] = 154, + [151] = 119, + [152] = 116, + [153] = 119, + [154] = 125, + [155] = 155, [156] = 156, [157] = 157, - [158] = 158, + [158] = 155, [159] = 159, - [160] = 153, + [160] = 159, [161] = 161, [162] = 162, [163] = 163, @@ -5369,102 +5397,102 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [176] = 176, [177] = 177, [178] = 178, - [179] = 174, + [179] = 179, [180] = 180, - [181] = 175, + [181] = 181, [182] = 182, [183] = 183, [184] = 184, [185] = 185, - [186] = 185, - [187] = 178, - [188] = 180, - [189] = 189, - [190] = 190, - [191] = 191, + [186] = 177, + [187] = 180, + [188] = 188, + [189] = 188, + [190] = 183, + [191] = 178, [192] = 192, - [193] = 191, + [193] = 193, [194] = 194, - [195] = 195, + [195] = 194, [196] = 196, [197] = 197, - [198] = 197, + [198] = 198, [199] = 199, - [200] = 197, - [201] = 196, - [202] = 202, - [203] = 203, + [200] = 200, + [201] = 200, + [202] = 200, + [203] = 197, [204] = 204, - [205] = 203, - [206] = 202, + [205] = 205, + [206] = 205, [207] = 207, [208] = 208, [209] = 209, - [210] = 210, + [210] = 209, [211] = 211, [212] = 212, [213] = 213, [214] = 214, - [215] = 211, + [215] = 215, [216] = 216, [217] = 217, [218] = 218, [219] = 219, - [220] = 220, - [221] = 221, - [222] = 213, - [223] = 217, + [220] = 214, + [221] = 218, + [222] = 222, + [223] = 223, [224] = 224, [225] = 225, [226] = 226, [227] = 216, - [228] = 214, - [229] = 212, + [228] = 228, + [229] = 215, [230] = 230, - [231] = 220, - [232] = 221, - [233] = 218, - [234] = 234, + [231] = 219, + [232] = 217, + [233] = 233, + [234] = 222, [235] = 235, [236] = 236, [237] = 237, - [238] = 161, - [239] = 239, - [240] = 225, - [241] = 224, - [242] = 242, - [243] = 243, - [244] = 244, + [238] = 238, + [239] = 228, + [240] = 163, + [241] = 226, + [242] = 223, + [243] = 225, + [244] = 230, [245] = 245, [246] = 246, - [247] = 219, + [247] = 247, [248] = 248, - [249] = 226, - [250] = 194, - [251] = 163, - [252] = 244, - [253] = 230, - [254] = 254, - [255] = 237, - [256] = 239, - [257] = 242, - [258] = 258, + [249] = 249, + [250] = 250, + [251] = 251, + [252] = 224, + [253] = 253, + [254] = 250, + [255] = 245, + [256] = 256, + [257] = 164, + [258] = 165, [259] = 259, - [260] = 234, - [261] = 248, - [262] = 262, - [263] = 236, - [264] = 245, - [265] = 243, - [266] = 194, - [267] = 195, - [268] = 235, - [269] = 246, - [270] = 161, - [271] = 271, - [272] = 162, - [273] = 271, - [274] = 262, + [260] = 260, + [261] = 261, + [262] = 247, + [263] = 238, + [264] = 264, + [265] = 265, + [266] = 266, + [267] = 267, + [268] = 268, + [269] = 269, + [270] = 270, + [271] = 199, + [272] = 272, + [273] = 236, + [274] = 274, [275] = 275, [276] = 276, [277] = 277, @@ -5472,505 +5500,505 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [279] = 279, [280] = 280, [281] = 281, - [282] = 244, - [283] = 245, - [284] = 259, - [285] = 285, - [286] = 167, - [287] = 199, - [288] = 288, - [289] = 289, - [290] = 290, - [291] = 291, + [282] = 282, + [283] = 283, + [284] = 284, + [285] = 251, + [286] = 237, + [287] = 163, + [288] = 246, + [289] = 248, + [290] = 249, + [291] = 233, [292] = 292, [293] = 293, [294] = 294, - [295] = 295, - [296] = 296, + [295] = 199, + [296] = 198, [297] = 297, - [298] = 298, + [298] = 235, [299] = 299, [300] = 300, - [301] = 301, - [302] = 302, + [301] = 164, + [302] = 170, [303] = 303, [304] = 304, [305] = 305, - [306] = 306, - [307] = 307, + [306] = 294, + [307] = 171, [308] = 308, - [309] = 161, - [310] = 310, - [311] = 311, - [312] = 312, + [309] = 309, + [310] = 247, + [311] = 169, + [312] = 167, [313] = 313, - [314] = 314, - [315] = 162, - [316] = 163, - [317] = 168, - [318] = 166, - [319] = 164, - [320] = 165, + [314] = 284, + [315] = 168, + [316] = 165, + [317] = 166, + [318] = 204, + [319] = 319, + [320] = 320, [321] = 321, - [322] = 275, - [323] = 323, + [322] = 163, + [323] = 250, [324] = 324, - [325] = 325, + [325] = 292, [326] = 326, - [327] = 327, - [328] = 328, + [327] = 164, + [328] = 165, [329] = 329, [330] = 330, [331] = 331, [332] = 332, - [333] = 333, - [334] = 334, - [335] = 335, - [336] = 336, - [337] = 337, - [338] = 338, - [339] = 339, - [340] = 340, - [341] = 341, - [342] = 342, - [343] = 343, - [344] = 245, - [345] = 276, - [346] = 346, - [347] = 244, + [333] = 170, + [334] = 163, + [335] = 171, + [336] = 166, + [337] = 169, + [338] = 167, + [339] = 168, + [340] = 174, + [341] = 172, + [342] = 173, + [343] = 308, + [344] = 313, + [345] = 319, + [346] = 320, + [347] = 247, [348] = 348, - [349] = 162, - [350] = 163, - [351] = 168, + [349] = 349, + [350] = 350, + [351] = 247, [352] = 352, - [353] = 167, - [354] = 166, - [355] = 277, - [356] = 356, + [353] = 292, + [354] = 354, + [355] = 250, + [356] = 250, [357] = 357, [358] = 358, - [359] = 321, + [359] = 359, [360] = 360, - [361] = 361, + [361] = 354, [362] = 362, - [363] = 161, + [363] = 363, [364] = 364, - [365] = 164, - [366] = 165, - [367] = 259, - [368] = 244, - [369] = 169, - [370] = 293, - [371] = 262, - [372] = 245, - [373] = 296, - [374] = 170, - [375] = 171, + [365] = 365, + [366] = 366, + [367] = 367, + [368] = 368, + [369] = 369, + [370] = 370, + [371] = 331, + [372] = 372, + [373] = 373, + [374] = 374, + [375] = 375, [376] = 376, - [377] = 171, + [377] = 377, [378] = 378, - [379] = 275, - [380] = 244, + [379] = 379, + [380] = 380, [381] = 381, - [382] = 352, - [383] = 321, - [384] = 384, + [382] = 382, + [383] = 383, + [384] = 300, [385] = 385, - [386] = 386, - [387] = 387, - [388] = 357, - [389] = 362, - [390] = 364, - [391] = 259, - [392] = 392, - [393] = 276, - [394] = 277, - [395] = 262, - [396] = 396, - [397] = 397, - [398] = 172, - [399] = 168, - [400] = 400, - [401] = 167, - [402] = 245, - [403] = 166, - [404] = 404, - [405] = 405, - [406] = 346, - [407] = 323, - [408] = 164, - [409] = 165, - [410] = 324, - [411] = 411, - [412] = 325, - [413] = 411, - [414] = 262, - [415] = 404, - [416] = 161, - [417] = 356, - [418] = 418, - [419] = 326, - [420] = 420, - [421] = 327, - [422] = 328, - [423] = 329, - [424] = 330, - [425] = 162, - [426] = 163, - [427] = 331, - [428] = 169, - [429] = 332, - [430] = 333, - [431] = 334, - [432] = 335, - [433] = 170, - [434] = 336, - [435] = 337, - [436] = 338, - [437] = 339, - [438] = 340, - [439] = 341, - [440] = 342, - [441] = 343, - [442] = 259, - [443] = 277, - [444] = 444, - [445] = 418, - [446] = 420, + [386] = 324, + [387] = 294, + [388] = 388, + [389] = 389, + [390] = 390, + [391] = 362, + [392] = 363, + [393] = 364, + [394] = 365, + [395] = 366, + [396] = 367, + [397] = 348, + [398] = 368, + [399] = 369, + [400] = 370, + [401] = 372, + [402] = 373, + [403] = 374, + [404] = 375, + [405] = 376, + [406] = 378, + [407] = 382, + [408] = 383, + [409] = 385, + [410] = 171, + [411] = 164, + [412] = 165, + [413] = 349, + [414] = 166, + [415] = 169, + [416] = 175, + [417] = 247, + [418] = 292, + [419] = 419, + [420] = 326, + [421] = 294, + [422] = 350, + [423] = 174, + [424] = 352, + [425] = 168, + [426] = 377, + [427] = 167, + [428] = 292, + [429] = 170, + [430] = 430, + [431] = 172, + [432] = 432, + [433] = 433, + [434] = 294, + [435] = 379, + [436] = 380, + [437] = 381, + [438] = 308, + [439] = 173, + [440] = 313, + [441] = 441, + [442] = 319, + [443] = 320, + [444] = 250, + [445] = 445, + [446] = 446, [447] = 447, - [448] = 396, - [449] = 397, - [450] = 450, + [448] = 360, + [449] = 449, + [450] = 163, [451] = 451, - [452] = 400, - [453] = 453, - [454] = 454, - [455] = 172, - [456] = 169, - [457] = 170, - [458] = 171, - [459] = 162, - [460] = 163, - [461] = 461, - [462] = 462, - [463] = 463, - [464] = 464, - [465] = 164, + [452] = 452, + [453] = 308, + [454] = 389, + [455] = 313, + [456] = 164, + [457] = 319, + [458] = 320, + [459] = 170, + [460] = 171, + [461] = 166, + [462] = 247, + [463] = 169, + [464] = 167, + [465] = 168, [466] = 165, - [467] = 168, - [468] = 167, - [469] = 166, + [467] = 250, + [468] = 174, + [469] = 469, [470] = 470, - [471] = 259, - [472] = 262, - [473] = 275, - [474] = 321, - [475] = 381, - [476] = 387, - [477] = 275, - [478] = 321, - [479] = 276, - [480] = 277, - [481] = 244, - [482] = 245, - [483] = 384, - [484] = 385, - [485] = 386, - [486] = 392, - [487] = 487, - [488] = 488, - [489] = 489, - [490] = 490, - [491] = 491, - [492] = 492, - [493] = 405, - [494] = 276, - [495] = 495, - [496] = 321, - [497] = 166, - [498] = 276, - [499] = 277, - [500] = 462, - [501] = 501, - [502] = 463, + [471] = 445, + [472] = 447, + [473] = 473, + [474] = 474, + [475] = 388, + [476] = 292, + [477] = 477, + [478] = 433, + [479] = 294, + [480] = 308, + [481] = 481, + [482] = 482, + [483] = 483, + [484] = 484, + [485] = 485, + [486] = 486, + [487] = 313, + [488] = 319, + [489] = 320, + [490] = 449, + [491] = 390, + [492] = 441, + [493] = 175, + [494] = 172, + [495] = 446, + [496] = 432, + [497] = 497, + [498] = 498, + [499] = 499, + [500] = 173, + [501] = 430, + [502] = 470, [503] = 503, - [504] = 504, - [505] = 244, - [506] = 464, - [507] = 490, + [504] = 170, + [505] = 171, + [506] = 166, + [507] = 474, [508] = 508, - [509] = 509, - [510] = 444, - [511] = 511, + [509] = 169, + [510] = 473, + [511] = 175, [512] = 512, - [513] = 513, - [514] = 514, - [515] = 450, + [513] = 477, + [514] = 482, + [515] = 515, [516] = 516, - [517] = 451, - [518] = 453, - [519] = 454, - [520] = 520, - [521] = 521, - [522] = 522, - [523] = 523, - [524] = 524, - [525] = 525, - [526] = 259, - [527] = 169, - [528] = 262, - [529] = 245, - [530] = 530, - [531] = 531, - [532] = 532, + [517] = 308, + [518] = 174, + [519] = 481, + [520] = 168, + [521] = 483, + [522] = 469, + [523] = 484, + [524] = 485, + [525] = 486, + [526] = 451, + [527] = 319, + [528] = 528, + [529] = 529, + [530] = 320, + [531] = 292, + [532] = 294, [533] = 533, - [534] = 534, - [535] = 535, - [536] = 487, - [537] = 164, - [538] = 170, - [539] = 171, - [540] = 488, - [541] = 489, - [542] = 491, - [543] = 492, - [544] = 165, - [545] = 470, - [546] = 172, - [547] = 547, - [548] = 168, + [534] = 250, + [535] = 497, + [536] = 247, + [537] = 167, + [538] = 172, + [539] = 539, + [540] = 540, + [541] = 499, + [542] = 498, + [543] = 452, + [544] = 544, + [545] = 173, + [546] = 313, + [547] = 447, + [548] = 166, [549] = 549, [550] = 550, - [551] = 461, - [552] = 275, - [553] = 167, + [551] = 169, + [552] = 552, + [553] = 553, [554] = 554, [555] = 555, [556] = 556, [557] = 557, - [558] = 558, - [559] = 559, + [558] = 528, + [559] = 529, [560] = 560, - [561] = 396, - [562] = 397, + [561] = 561, + [562] = 562, [563] = 563, [564] = 564, - [565] = 259, + [565] = 565, [566] = 566, - [567] = 567, - [568] = 533, - [569] = 262, - [570] = 547, + [567] = 533, + [568] = 568, + [569] = 569, + [570] = 570, [571] = 571, [572] = 572, [573] = 573, - [574] = 574, + [574] = 308, [575] = 575, - [576] = 530, + [576] = 576, [577] = 577, - [578] = 169, + [578] = 578, [579] = 579, [580] = 580, [581] = 581, [582] = 582, - [583] = 170, - [584] = 171, + [583] = 313, + [584] = 584, [585] = 585, - [586] = 275, + [586] = 586, [587] = 587, [588] = 588, - [589] = 321, - [590] = 276, - [591] = 277, + [589] = 319, + [590] = 320, + [591] = 591, [592] = 592, [593] = 593, - [594] = 195, + [594] = 594, [595] = 595, [596] = 596, [597] = 597, [598] = 598, [599] = 599, - [600] = 600, + [600] = 512, [601] = 601, [602] = 602, - [603] = 603, + [603] = 292, [604] = 604, - [605] = 605, - [606] = 606, + [605] = 198, + [606] = 175, [607] = 607, [608] = 608, [609] = 609, - [610] = 168, - [611] = 167, - [612] = 166, + [610] = 610, + [611] = 611, + [612] = 612, [613] = 613, [614] = 614, [615] = 615, [616] = 616, - [617] = 617, + [617] = 294, [618] = 618, [619] = 619, [620] = 620, - [621] = 503, - [622] = 172, - [623] = 623, - [624] = 525, - [625] = 549, - [626] = 550, - [627] = 522, - [628] = 617, - [629] = 199, - [630] = 595, - [631] = 596, - [632] = 597, - [633] = 598, - [634] = 599, - [635] = 600, - [636] = 601, - [637] = 602, - [638] = 603, - [639] = 604, - [640] = 605, - [641] = 606, - [642] = 607, - [643] = 608, - [644] = 609, - [645] = 618, - [646] = 172, - [647] = 495, - [648] = 616, - [649] = 275, - [650] = 168, - [651] = 167, - [652] = 396, - [653] = 166, - [654] = 397, - [655] = 321, - [656] = 656, - [657] = 531, - [658] = 567, - [659] = 532, - [660] = 588, - [661] = 524, - [662] = 556, - [663] = 521, - [664] = 276, - [665] = 277, - [666] = 523, - [667] = 501, - [668] = 508, - [669] = 511, - [670] = 512, - [671] = 514, - [672] = 614, - [673] = 592, - [674] = 534, - [675] = 593, - [676] = 535, - [677] = 613, - [678] = 615, - [679] = 619, - [680] = 559, - [681] = 560, - [682] = 563, - [683] = 564, - [684] = 557, - [685] = 566, - [686] = 572, - [687] = 573, - [688] = 574, - [689] = 575, - [690] = 577, - [691] = 579, - [692] = 580, - [693] = 581, - [694] = 582, - [695] = 585, - [696] = 587, - [697] = 571, - [698] = 698, - [699] = 698, - [700] = 700, - [701] = 701, - [702] = 702, - [703] = 703, - [704] = 704, - [705] = 705, - [706] = 706, - [707] = 707, + [621] = 445, + [622] = 622, + [623] = 170, + [624] = 172, + [625] = 173, + [626] = 626, + [627] = 627, + [628] = 171, + [629] = 629, + [630] = 630, + [631] = 174, + [632] = 629, + [633] = 601, + [634] = 602, + [635] = 204, + [636] = 620, + [637] = 627, + [638] = 599, + [639] = 592, + [640] = 561, + [641] = 616, + [642] = 556, + [643] = 618, + [644] = 594, + [645] = 557, + [646] = 568, + [647] = 587, + [648] = 554, + [649] = 584, + [650] = 604, + [651] = 611, + [652] = 613, + [653] = 615, + [654] = 549, + [655] = 552, + [656] = 597, + [657] = 598, + [658] = 609, + [659] = 591, + [660] = 555, + [661] = 593, + [662] = 596, + [663] = 571, + [664] = 560, + [665] = 581, + [666] = 610, + [667] = 553, + [668] = 564, + [669] = 614, + [670] = 619, + [671] = 626, + [672] = 608, + [673] = 575, + [674] = 577, + [675] = 612, + [676] = 622, + [677] = 562, + [678] = 563, + [679] = 566, + [680] = 569, + [681] = 570, + [682] = 576, + [683] = 578, + [684] = 580, + [685] = 586, + [686] = 595, + [687] = 607, + [688] = 688, + [689] = 445, + [690] = 447, + [691] = 175, + [692] = 170, + [693] = 171, + [694] = 166, + [695] = 169, + [696] = 696, + [697] = 572, + [698] = 573, + [699] = 308, + [700] = 313, + [701] = 319, + [702] = 320, + [703] = 579, + [704] = 582, + [705] = 585, + [706] = 588, + [707] = 630, [708] = 708, - [709] = 709, - [710] = 702, - [711] = 708, - [712] = 701, - [713] = 706, - [714] = 700, + [709] = 708, + [710] = 710, + [711] = 711, + [712] = 712, + [713] = 713, + [714] = 714, [715] = 715, [716] = 716, [717] = 717, [718] = 718, - [719] = 195, - [720] = 720, - [721] = 721, - [722] = 199, - [723] = 723, - [724] = 724, - [725] = 724, - [726] = 724, + [719] = 719, + [720] = 715, + [721] = 711, + [722] = 716, + [723] = 713, + [724] = 710, + [725] = 725, + [726] = 726, [727] = 727, - [728] = 724, - [729] = 724, - [730] = 724, - [731] = 724, - [732] = 727, - [733] = 724, - [734] = 724, - [735] = 724, - [736] = 724, - [737] = 724, - [738] = 724, - [739] = 727, - [740] = 724, - [741] = 724, - [742] = 724, - [743] = 724, - [744] = 724, - [745] = 724, - [746] = 746, - [747] = 746, - [748] = 724, - [749] = 195, - [750] = 199, - [751] = 751, - [752] = 751, - [753] = 751, - [754] = 751, + [728] = 728, + [729] = 198, + [730] = 730, + [731] = 730, + [732] = 732, + [733] = 732, + [734] = 734, + [735] = 735, + [736] = 730, + [737] = 732, + [738] = 730, + [739] = 730, + [740] = 730, + [741] = 730, + [742] = 730, + [743] = 730, + [744] = 730, + [745] = 730, + [746] = 204, + [747] = 730, + [748] = 730, + [749] = 730, + [750] = 730, + [751] = 730, + [752] = 730, + [753] = 730, + [754] = 730, [755] = 755, - [756] = 751, - [757] = 751, - [758] = 751, - [759] = 751, - [760] = 751, - [761] = 751, - [762] = 751, - [763] = 751, - [764] = 751, - [765] = 751, - [766] = 751, - [767] = 751, - [768] = 751, - [769] = 751, - [770] = 751, - [771] = 751, - [772] = 751, - [773] = 773, - [774] = 774, - [775] = 775, - [776] = 776, - [777] = 777, - [778] = 778, - [779] = 779, - [780] = 780, + [756] = 730, + [757] = 757, + [758] = 735, + [759] = 759, + [760] = 759, + [761] = 761, + [762] = 759, + [763] = 759, + [764] = 759, + [765] = 759, + [766] = 759, + [767] = 759, + [768] = 759, + [769] = 759, + [770] = 759, + [771] = 759, + [772] = 759, + [773] = 759, + [774] = 759, + [775] = 759, + [776] = 759, + [777] = 759, + [778] = 759, + [779] = 759, + [780] = 759, [781] = 781, [782] = 782, [783] = 783, @@ -5985,7 +6013,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [792] = 792, [793] = 793, [794] = 794, - [795] = 792, + [795] = 795, [796] = 796, [797] = 797, [798] = 798, @@ -6002,12 +6030,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [809] = 809, [810] = 810, [811] = 811, - [812] = 785, - [813] = 787, - [814] = 789, - [815] = 790, - [816] = 791, - [817] = 794, + [812] = 812, + [813] = 813, + [814] = 814, + [815] = 815, + [816] = 784, + [817] = 817, [818] = 818, [819] = 819, [820] = 820, @@ -6020,1287 +6048,1287 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [827] = 827, [828] = 828, [829] = 829, - [830] = 776, + [830] = 830, [831] = 831, [832] = 832, [833] = 833, - [834] = 788, - [835] = 793, + [834] = 834, + [835] = 835, [836] = 836, - [837] = 837, - [838] = 838, - [839] = 777, - [840] = 778, - [841] = 779, - [842] = 780, - [843] = 781, - [844] = 782, - [845] = 783, - [846] = 784, - [847] = 791, - [848] = 818, - [849] = 819, - [850] = 820, - [851] = 836, - [852] = 821, - [853] = 837, - [854] = 796, - [855] = 838, - [856] = 777, - [857] = 778, - [858] = 779, - [859] = 780, - [860] = 797, - [861] = 794, - [862] = 798, - [863] = 822, - [864] = 799, - [865] = 800, - [866] = 801, - [867] = 781, - [868] = 802, - [869] = 782, - [870] = 808, - [871] = 823, - [872] = 824, - [873] = 825, - [874] = 783, - [875] = 826, - [876] = 803, - [877] = 804, - [878] = 827, - [879] = 784, - [880] = 828, - [881] = 829, - [882] = 776, - [883] = 831, - [884] = 832, - [885] = 833, - [886] = 805, - [887] = 818, - [888] = 806, - [889] = 809, - [890] = 807, - [891] = 810, - [892] = 819, - [893] = 820, - [894] = 821, - [895] = 792, - [896] = 796, - [897] = 797, - [898] = 798, - [899] = 799, - [900] = 800, - [901] = 801, - [902] = 802, - [903] = 803, - [904] = 804, - [905] = 805, - [906] = 806, - [907] = 807, - [908] = 808, - [909] = 809, - [910] = 810, - [911] = 811, - [912] = 822, - [913] = 785, - [914] = 823, - [915] = 824, - [916] = 825, - [917] = 826, - [918] = 827, - [919] = 787, - [920] = 828, - [921] = 829, - [922] = 789, - [923] = 831, - [924] = 832, - [925] = 833, - [926] = 811, - [927] = 788, - [928] = 793, - [929] = 836, - [930] = 837, - [931] = 838, - [932] = 790, - [933] = 933, - [934] = 934, - [935] = 934, - [936] = 936, - [937] = 937, - [938] = 938, - [939] = 939, - [940] = 940, - [941] = 938, - [942] = 942, + [837] = 813, + [838] = 814, + [839] = 815, + [840] = 817, + [841] = 818, + [842] = 819, + [843] = 820, + [844] = 824, + [845] = 828, + [846] = 829, + [847] = 830, + [848] = 831, + [849] = 799, + [850] = 850, + [851] = 800, + [852] = 801, + [853] = 802, + [854] = 803, + [855] = 804, + [856] = 805, + [857] = 806, + [858] = 807, + [859] = 808, + [860] = 809, + [861] = 810, + [862] = 811, + [863] = 812, + [864] = 821, + [865] = 822, + [866] = 823, + [867] = 825, + [868] = 826, + [869] = 827, + [870] = 832, + [871] = 833, + [872] = 834, + [873] = 835, + [874] = 836, + [875] = 786, + [876] = 787, + [877] = 788, + [878] = 789, + [879] = 790, + [880] = 791, + [881] = 792, + [882] = 793, + [883] = 794, + [884] = 795, + [885] = 796, + [886] = 797, + [887] = 798, + [888] = 813, + [889] = 814, + [890] = 815, + [891] = 784, + [892] = 817, + [893] = 818, + [894] = 819, + [895] = 820, + [896] = 824, + [897] = 828, + [898] = 829, + [899] = 830, + [900] = 831, + [901] = 799, + [902] = 850, + [903] = 800, + [904] = 801, + [905] = 802, + [906] = 803, + [907] = 804, + [908] = 805, + [909] = 806, + [910] = 807, + [911] = 808, + [912] = 809, + [913] = 810, + [914] = 811, + [915] = 812, + [916] = 821, + [917] = 822, + [918] = 823, + [919] = 825, + [920] = 826, + [921] = 827, + [922] = 832, + [923] = 833, + [924] = 834, + [925] = 835, + [926] = 836, + [927] = 786, + [928] = 787, + [929] = 788, + [930] = 789, + [931] = 790, + [932] = 791, + [933] = 792, + [934] = 793, + [935] = 794, + [936] = 795, + [937] = 796, + [938] = 797, + [939] = 798, + [940] = 850, + [941] = 941, + [942] = 941, [943] = 943, [944] = 944, [945] = 945, - [946] = 943, + [946] = 946, [947] = 947, - [948] = 947, + [948] = 948, [949] = 949, - [950] = 937, - [951] = 937, - [952] = 940, - [953] = 936, + [950] = 950, + [951] = 948, + [952] = 952, + [953] = 953, [954] = 954, - [955] = 942, - [956] = 943, - [957] = 949, - [958] = 954, + [955] = 955, + [956] = 945, + [957] = 946, + [958] = 947, [959] = 944, - [960] = 960, - [961] = 940, - [962] = 939, - [963] = 942, - [964] = 938, - [965] = 944, - [966] = 945, - [967] = 933, - [968] = 936, - [969] = 947, - [970] = 943, - [971] = 947, - [972] = 949, - [973] = 937, - [974] = 954, - [975] = 960, - [976] = 939, - [977] = 938, - [978] = 944, - [979] = 943, - [980] = 940, - [981] = 942, - [982] = 944, - [983] = 945, - [984] = 938, - [985] = 954, - [986] = 960, - [987] = 939, - [988] = 960, - [989] = 943, - [990] = 947, - [991] = 949, - [992] = 947, - [993] = 937, - [994] = 949, - [995] = 937, - [996] = 960, - [997] = 949, - [998] = 945, - [999] = 936, - [1000] = 940, - [1001] = 954, - [1002] = 960, - [1003] = 945, - [1004] = 937, - [1005] = 942, - [1006] = 936, - [1007] = 939, - [1008] = 938, - [1009] = 943, - [1010] = 947, - [1011] = 949, - [1012] = 940, - [1013] = 942, - [1014] = 939, - [1015] = 940, - [1016] = 942, + [960] = 949, + [961] = 961, + [962] = 962, + [963] = 961, + [964] = 962, + [965] = 950, + [966] = 948, + [967] = 952, + [968] = 953, + [969] = 954, + [970] = 955, + [971] = 945, + [972] = 946, + [973] = 947, + [974] = 944, + [975] = 949, + [976] = 961, + [977] = 953, + [978] = 962, + [979] = 945, + [980] = 948, + [981] = 946, + [982] = 947, + [983] = 944, + [984] = 949, + [985] = 961, + [986] = 962, + [987] = 952, + [988] = 953, + [989] = 954, + [990] = 954, + [991] = 943, + [992] = 950, + [993] = 955, + [994] = 950, + [995] = 950, + [996] = 948, + [997] = 952, + [998] = 953, + [999] = 954, + [1000] = 955, + [1001] = 945, + [1002] = 946, + [1003] = 947, + [1004] = 944, + [1005] = 949, + [1006] = 961, + [1007] = 962, + [1008] = 950, + [1009] = 948, + [1010] = 952, + [1011] = 953, + [1012] = 954, + [1013] = 955, + [1014] = 945, + [1015] = 946, + [1016] = 947, [1017] = 944, - [1018] = 945, - [1019] = 936, - [1020] = 944, - [1021] = 945, - [1022] = 936, - [1023] = 954, - [1024] = 960, + [1018] = 949, + [1019] = 961, + [1020] = 962, + [1021] = 950, + [1022] = 948, + [1023] = 952, + [1024] = 953, [1025] = 954, - [1026] = 939, - [1027] = 938, - [1028] = 1028, - [1029] = 1029, - [1030] = 1030, - [1031] = 1029, - [1032] = 1030, - [1033] = 1028, - [1034] = 1034, - [1035] = 1035, + [1026] = 955, + [1027] = 945, + [1028] = 946, + [1029] = 947, + [1030] = 944, + [1031] = 949, + [1032] = 961, + [1033] = 962, + [1034] = 955, + [1035] = 952, [1036] = 1036, [1037] = 1037, [1038] = 1038, - [1039] = 1039, - [1040] = 1037, - [1041] = 1038, + [1039] = 1038, + [1040] = 1036, + [1041] = 1037, [1042] = 1042, [1043] = 1043, - [1044] = 1043, - [1045] = 1042, + [1044] = 1044, + [1045] = 1045, [1046] = 1046, [1047] = 1047, - [1048] = 1048, - [1049] = 1049, - [1050] = 1048, - [1051] = 1049, - [1052] = 1048, - [1053] = 1049, - [1054] = 161, - [1055] = 1055, + [1048] = 1045, + [1049] = 1046, + [1050] = 1050, + [1051] = 1050, + [1052] = 1052, + [1053] = 1052, + [1054] = 1054, + [1055] = 1054, [1056] = 1056, - [1057] = 1057, - [1058] = 1058, - [1059] = 1059, + [1057] = 1054, + [1058] = 1056, + [1059] = 1056, [1060] = 1060, - [1061] = 195, - [1062] = 1055, + [1061] = 1060, + [1062] = 1062, [1063] = 1063, [1064] = 1064, [1065] = 1065, - [1066] = 1057, + [1066] = 1066, [1067] = 1067, - [1068] = 211, - [1069] = 1069, + [1068] = 1068, + [1069] = 1067, [1070] = 1070, - [1071] = 1069, - [1072] = 1058, - [1073] = 1059, + [1071] = 1070, + [1072] = 1065, + [1073] = 1068, [1074] = 1064, [1075] = 1075, - [1076] = 214, - [1077] = 216, - [1078] = 162, - [1079] = 163, - [1080] = 213, - [1081] = 217, - [1082] = 211, - [1083] = 199, - [1084] = 161, - [1085] = 212, - [1086] = 161, - [1087] = 1075, - [1088] = 1088, - [1089] = 213, - [1090] = 226, - [1091] = 167, - [1092] = 166, - [1093] = 164, - [1094] = 212, + [1076] = 1076, + [1077] = 1077, + [1078] = 1078, + [1079] = 198, + [1080] = 1080, + [1081] = 1081, + [1082] = 1080, + [1083] = 214, + [1084] = 218, + [1085] = 219, + [1086] = 1086, + [1087] = 216, + [1088] = 215, + [1089] = 214, + [1090] = 204, + [1091] = 217, + [1092] = 163, + [1093] = 163, + [1094] = 1094, [1095] = 165, - [1096] = 214, - [1097] = 216, - [1098] = 224, - [1099] = 162, - [1100] = 218, - [1101] = 214, - [1102] = 216, - [1103] = 163, - [1104] = 217, - [1105] = 221, + [1096] = 164, + [1097] = 1097, + [1098] = 1097, + [1099] = 223, + [1100] = 216, + [1101] = 224, + [1102] = 1102, + [1103] = 215, + [1104] = 222, + [1105] = 1105, [1106] = 1106, - [1107] = 161, - [1108] = 220, - [1109] = 225, - [1110] = 162, - [1111] = 163, - [1112] = 168, - [1113] = 1113, - [1114] = 246, - [1115] = 1115, - [1116] = 230, - [1117] = 218, - [1118] = 237, - [1119] = 239, - [1120] = 242, - [1121] = 161, - [1122] = 245, - [1123] = 214, - [1124] = 216, - [1125] = 1125, - [1126] = 224, - [1127] = 218, - [1128] = 164, - [1129] = 165, - [1130] = 168, - [1131] = 167, - [1132] = 166, - [1133] = 164, - [1134] = 165, - [1135] = 169, - [1136] = 226, - [1137] = 168, - [1138] = 167, - [1139] = 166, - [1140] = 1140, - [1141] = 1141, - [1142] = 1115, - [1143] = 1113, - [1144] = 1141, - [1145] = 1113, - [1146] = 170, - [1147] = 1125, - [1148] = 1106, - [1149] = 1140, - [1150] = 1141, - [1151] = 171, - [1152] = 1115, - [1153] = 221, - [1154] = 220, - [1155] = 1113, - [1156] = 1140, - [1157] = 1141, - [1158] = 1115, - [1159] = 1113, - [1160] = 1140, - [1161] = 1141, - [1162] = 1115, - [1163] = 1113, - [1164] = 1140, - [1165] = 1141, - [1166] = 1115, - [1167] = 1113, - [1168] = 1140, - [1169] = 1141, - [1170] = 1115, - [1171] = 1113, - [1172] = 1140, - [1173] = 1141, - [1174] = 1115, - [1175] = 1113, - [1176] = 1140, - [1177] = 1141, - [1178] = 1115, - [1179] = 1113, - [1180] = 1140, - [1181] = 1141, - [1182] = 1115, - [1183] = 1113, - [1184] = 1140, - [1185] = 1141, - [1186] = 1115, - [1187] = 1113, - [1188] = 1140, - [1189] = 162, - [1190] = 1140, - [1191] = 1141, - [1192] = 1115, - [1193] = 1113, - [1194] = 1140, - [1195] = 1141, - [1196] = 1115, - [1197] = 1140, - [1198] = 1115, - [1199] = 1141, - [1200] = 225, - [1201] = 1140, - [1202] = 224, - [1203] = 1115, - [1204] = 163, - [1205] = 235, - [1206] = 1113, - [1207] = 244, - [1208] = 235, - [1209] = 218, - [1210] = 242, - [1211] = 230, - [1212] = 169, - [1213] = 237, - [1214] = 239, - [1215] = 237, - [1216] = 242, - [1217] = 172, - [1218] = 170, - [1219] = 169, - [1220] = 171, - [1221] = 239, - [1222] = 259, - [1223] = 245, - [1224] = 170, - [1225] = 171, - [1226] = 168, - [1227] = 167, - [1228] = 166, - [1229] = 244, - [1230] = 162, - [1231] = 246, - [1232] = 1232, - [1233] = 1233, - [1234] = 163, - [1235] = 224, - [1236] = 230, - [1237] = 161, - [1238] = 262, - [1239] = 164, - [1240] = 165, - [1241] = 171, - [1242] = 259, - [1243] = 277, - [1244] = 242, - [1245] = 245, - [1246] = 169, - [1247] = 276, - [1248] = 321, - [1249] = 168, - [1250] = 1233, - [1251] = 275, - [1252] = 1252, - [1253] = 214, - [1254] = 172, - [1255] = 164, - [1256] = 172, - [1257] = 172, - [1258] = 162, - [1259] = 165, - [1260] = 244, - [1261] = 166, - [1262] = 230, - [1263] = 216, - [1264] = 293, - [1265] = 167, - [1266] = 163, - [1267] = 1267, - [1268] = 1268, - [1269] = 237, - [1270] = 296, - [1271] = 214, - [1272] = 216, - [1273] = 262, - [1274] = 239, - [1275] = 170, - [1276] = 246, - [1277] = 214, - [1278] = 216, - [1279] = 224, - [1280] = 168, - [1281] = 161, - [1282] = 245, - [1283] = 167, - [1284] = 166, - [1285] = 164, - [1286] = 165, - [1287] = 1287, - [1288] = 218, - [1289] = 244, - [1290] = 224, - [1291] = 218, - [1292] = 169, - [1293] = 275, - [1294] = 170, - [1295] = 171, - [1296] = 245, - [1297] = 321, - [1298] = 214, - [1299] = 276, - [1300] = 259, - [1301] = 262, - [1302] = 277, - [1303] = 1303, - [1304] = 296, - [1305] = 216, - [1306] = 235, - [1307] = 216, - [1308] = 346, - [1309] = 323, - [1310] = 326, - [1311] = 327, - [1312] = 328, - [1313] = 329, - [1314] = 330, - [1315] = 331, - [1316] = 332, - [1317] = 333, - [1318] = 334, - [1319] = 335, - [1320] = 336, - [1321] = 337, - [1322] = 338, - [1323] = 339, - [1324] = 340, - [1325] = 341, - [1326] = 342, - [1327] = 343, - [1328] = 214, - [1329] = 324, - [1330] = 1268, - [1331] = 216, - [1332] = 325, - [1333] = 293, - [1334] = 244, - [1335] = 214, - [1336] = 218, - [1337] = 340, - [1338] = 325, - [1339] = 239, - [1340] = 259, - [1341] = 262, - [1342] = 242, - [1343] = 230, - [1344] = 237, - [1345] = 239, - [1346] = 242, - [1347] = 161, - [1348] = 216, - [1349] = 343, - [1350] = 235, - [1351] = 246, - [1352] = 384, - [1353] = 385, - [1354] = 386, - [1355] = 275, - [1356] = 321, - [1357] = 276, - [1358] = 277, - [1359] = 230, - [1360] = 341, - [1361] = 214, - [1362] = 262, - [1363] = 224, - [1364] = 392, - [1365] = 224, - [1366] = 244, - [1367] = 218, - [1368] = 346, - [1369] = 342, - [1370] = 405, - [1371] = 418, - [1372] = 323, - [1373] = 218, - [1374] = 326, - [1375] = 420, - [1376] = 169, - [1377] = 324, - [1378] = 224, - [1379] = 170, - [1380] = 171, - [1381] = 235, - [1382] = 237, - [1383] = 162, - [1384] = 224, - [1385] = 246, - [1386] = 1287, - [1387] = 396, - [1388] = 218, - [1389] = 397, - [1390] = 245, - [1391] = 418, - [1392] = 327, - [1393] = 328, - [1394] = 329, - [1395] = 420, - [1396] = 330, - [1397] = 331, - [1398] = 332, - [1399] = 333, - [1400] = 334, - [1401] = 1401, - [1402] = 1287, - [1403] = 259, - [1404] = 335, - [1405] = 336, - [1406] = 337, - [1407] = 338, - [1408] = 163, - [1409] = 339, - [1410] = 172, - [1411] = 275, - [1412] = 1412, - [1413] = 1413, - [1414] = 230, - [1415] = 166, - [1416] = 259, - [1417] = 1417, - [1418] = 168, - [1419] = 237, - [1420] = 230, - [1421] = 224, - [1422] = 1422, - [1423] = 492, - [1424] = 1412, - [1425] = 239, - [1426] = 262, - [1427] = 242, - [1428] = 276, - [1429] = 1413, - [1430] = 392, - [1431] = 1431, - [1432] = 239, - [1433] = 246, - [1434] = 237, - [1435] = 488, - [1436] = 1436, - [1437] = 242, - [1438] = 1438, - [1439] = 277, - [1440] = 396, - [1441] = 239, - [1442] = 321, - [1443] = 1401, - [1444] = 163, - [1445] = 1445, - [1446] = 405, - [1447] = 397, - [1448] = 168, - [1449] = 470, - [1450] = 167, - [1451] = 166, - [1452] = 230, - [1453] = 385, - [1454] = 218, - [1455] = 405, - [1456] = 489, - [1457] = 276, - [1458] = 230, - [1459] = 237, - [1460] = 1460, - [1461] = 167, - [1462] = 242, - [1463] = 487, - [1464] = 237, - [1465] = 1436, - [1466] = 164, - [1467] = 418, - [1468] = 172, - [1469] = 239, - [1470] = 164, - [1471] = 165, - [1472] = 420, - [1473] = 277, - [1474] = 242, - [1475] = 461, + [1107] = 1094, + [1108] = 163, + [1109] = 1097, + [1110] = 1106, + [1111] = 1094, + [1112] = 1105, + [1113] = 1097, + [1114] = 219, + [1115] = 1105, + [1116] = 1097, + [1117] = 1106, + [1118] = 1094, + [1119] = 1105, + [1120] = 1097, + [1121] = 1106, + [1122] = 1094, + [1123] = 1105, + [1124] = 215, + [1125] = 1106, + [1126] = 1097, + [1127] = 1106, + [1128] = 1094, + [1129] = 1105, + [1130] = 1106, + [1131] = 1097, + [1132] = 1106, + [1133] = 1105, + [1134] = 1105, + [1135] = 1097, + [1136] = 1106, + [1137] = 1094, + [1138] = 1105, + [1139] = 1097, + [1140] = 1106, + [1141] = 1094, + [1142] = 1105, + [1143] = 225, + [1144] = 1097, + [1145] = 1106, + [1146] = 1094, + [1147] = 1105, + [1148] = 1102, + [1149] = 1097, + [1150] = 1106, + [1151] = 1094, + [1152] = 1105, + [1153] = 1097, + [1154] = 1106, + [1155] = 1094, + [1156] = 1105, + [1157] = 1097, + [1158] = 1094, + [1159] = 1094, + [1160] = 226, + [1161] = 217, + [1162] = 228, + [1163] = 216, + [1164] = 1097, + [1165] = 1165, + [1166] = 218, + [1167] = 1105, + [1168] = 1094, + [1169] = 1106, + [1170] = 1094, + [1171] = 168, + [1172] = 246, + [1173] = 223, + [1174] = 248, + [1175] = 249, + [1176] = 222, + [1177] = 167, + [1178] = 163, + [1179] = 250, + [1180] = 216, + [1181] = 215, + [1182] = 222, + [1183] = 235, + [1184] = 236, + [1185] = 1165, + [1186] = 251, + [1187] = 247, + [1188] = 170, + [1189] = 171, + [1190] = 166, + [1191] = 169, + [1192] = 164, + [1193] = 165, + [1194] = 163, + [1195] = 165, + [1196] = 223, + [1197] = 224, + [1198] = 1198, + [1199] = 225, + [1200] = 226, + [1201] = 228, + [1202] = 164, + [1203] = 165, + [1204] = 171, + [1205] = 166, + [1206] = 1206, + [1207] = 172, + [1208] = 164, + [1209] = 251, + [1210] = 169, + [1211] = 236, + [1212] = 248, + [1213] = 294, + [1214] = 251, + [1215] = 246, + [1216] = 173, + [1217] = 167, + [1218] = 168, + [1219] = 170, + [1220] = 249, + [1221] = 222, + [1222] = 167, + [1223] = 163, + [1224] = 165, + [1225] = 164, + [1226] = 246, + [1227] = 168, + [1228] = 292, + [1229] = 166, + [1230] = 169, + [1231] = 250, + [1232] = 235, + [1233] = 174, + [1234] = 223, + [1235] = 247, + [1236] = 248, + [1237] = 170, + [1238] = 1238, + [1239] = 171, + [1240] = 249, + [1241] = 319, + [1242] = 320, + [1243] = 167, + [1244] = 168, + [1245] = 166, + [1246] = 249, + [1247] = 174, + [1248] = 172, + [1249] = 173, + [1250] = 308, + [1251] = 165, + [1252] = 171, + [1253] = 169, + [1254] = 166, + [1255] = 324, + [1256] = 246, + [1257] = 248, + [1258] = 172, + [1259] = 173, + [1260] = 292, + [1261] = 294, + [1262] = 251, + [1263] = 169, + [1264] = 170, + [1265] = 250, + [1266] = 170, + [1267] = 313, + [1268] = 174, + [1269] = 1238, + [1270] = 168, + [1271] = 300, + [1272] = 167, + [1273] = 171, + [1274] = 164, + [1275] = 175, + [1276] = 247, + [1277] = 170, + [1278] = 167, + [1279] = 308, + [1280] = 313, + [1281] = 247, + [1282] = 216, + [1283] = 215, + [1284] = 319, + [1285] = 171, + [1286] = 166, + [1287] = 169, + [1288] = 174, + [1289] = 172, + [1290] = 173, + [1291] = 250, + [1292] = 320, + [1293] = 292, + [1294] = 175, + [1295] = 294, + [1296] = 1296, + [1297] = 348, + [1298] = 349, + [1299] = 174, + [1300] = 300, + [1301] = 168, + [1302] = 363, + [1303] = 364, + [1304] = 365, + [1305] = 366, + [1306] = 367, + [1307] = 368, + [1308] = 369, + [1309] = 370, + [1310] = 372, + [1311] = 373, + [1312] = 374, + [1313] = 375, + [1314] = 376, + [1315] = 324, + [1316] = 378, + [1317] = 382, + [1318] = 383, + [1319] = 385, + [1320] = 175, + [1321] = 350, + [1322] = 352, + [1323] = 1323, + [1324] = 172, + [1325] = 173, + [1326] = 175, + [1327] = 247, + [1328] = 216, + [1329] = 215, + [1330] = 163, + [1331] = 250, + [1332] = 360, + [1333] = 382, + [1334] = 163, + [1335] = 216, + [1336] = 446, + [1337] = 215, + [1338] = 308, + [1339] = 370, + [1340] = 352, + [1341] = 313, + [1342] = 164, + [1343] = 319, + [1344] = 320, + [1345] = 247, + [1346] = 389, + [1347] = 165, + [1348] = 172, + [1349] = 449, + [1350] = 390, + [1351] = 441, + [1352] = 1352, + [1353] = 292, + [1354] = 173, + [1355] = 294, + [1356] = 372, + [1357] = 223, + [1358] = 373, + [1359] = 374, + [1360] = 222, + [1361] = 1361, + [1362] = 216, + [1363] = 1363, + [1364] = 1296, + [1365] = 375, + [1366] = 215, + [1367] = 376, + [1368] = 445, + [1369] = 174, + [1370] = 378, + [1371] = 447, + [1372] = 235, + [1373] = 215, + [1374] = 250, + [1375] = 432, + [1376] = 369, + [1377] = 236, + [1378] = 383, + [1379] = 388, + [1380] = 292, + [1381] = 385, + [1382] = 294, + [1383] = 216, + [1384] = 215, + [1385] = 223, + [1386] = 175, + [1387] = 348, + [1388] = 350, + [1389] = 349, + [1390] = 222, + [1391] = 360, + [1392] = 363, + [1393] = 364, + [1394] = 365, + [1395] = 366, + [1396] = 367, + [1397] = 368, + [1398] = 216, + [1399] = 432, + [1400] = 1400, + [1401] = 432, + [1402] = 1402, + [1403] = 222, + [1404] = 235, + [1405] = 223, + [1406] = 247, + [1407] = 388, + [1408] = 1408, + [1409] = 308, + [1410] = 446, + [1411] = 222, + [1412] = 469, + [1413] = 294, + [1414] = 441, + [1415] = 313, + [1416] = 175, + [1417] = 1363, + [1418] = 1418, + [1419] = 1419, + [1420] = 250, + [1421] = 319, + [1422] = 445, + [1423] = 222, + [1424] = 320, + [1425] = 1352, + [1426] = 388, + [1427] = 447, + [1428] = 449, + [1429] = 473, + [1430] = 1363, + [1431] = 308, + [1432] = 1432, + [1433] = 390, + [1434] = 164, + [1435] = 477, + [1436] = 482, + [1437] = 251, + [1438] = 313, + [1439] = 165, + [1440] = 167, + [1441] = 319, + [1442] = 320, + [1443] = 169, + [1444] = 223, + [1445] = 246, + [1446] = 222, + [1447] = 170, + [1448] = 251, + [1449] = 1449, + [1450] = 216, + [1451] = 389, + [1452] = 215, + [1453] = 1453, + [1454] = 248, + [1455] = 1455, + [1456] = 246, + [1457] = 497, + [1458] = 249, + [1459] = 223, + [1460] = 248, + [1461] = 470, + [1462] = 499, + [1463] = 1432, + [1464] = 1464, + [1465] = 171, + [1466] = 166, + [1467] = 249, + [1468] = 498, + [1469] = 1469, + [1470] = 223, + [1471] = 235, + [1472] = 236, + [1473] = 452, + [1474] = 168, + [1475] = 1475, [1476] = 1476, - [1477] = 165, - [1478] = 1417, - [1479] = 1422, - [1480] = 491, - [1481] = 462, - [1482] = 244, - [1483] = 1483, - [1484] = 235, - [1485] = 1485, - [1486] = 1486, - [1487] = 275, - [1488] = 1488, + [1477] = 474, + [1478] = 292, + [1479] = 236, + [1480] = 1480, + [1481] = 251, + [1482] = 477, + [1483] = 470, + [1484] = 482, + [1485] = 499, + [1486] = 172, + [1487] = 173, + [1488] = 236, [1489] = 1489, - [1490] = 1490, - [1491] = 386, - [1492] = 245, - [1493] = 162, - [1494] = 463, + [1490] = 1400, + [1491] = 1402, + [1492] = 1418, + [1493] = 292, + [1494] = 1494, [1495] = 1495, - [1496] = 1496, - [1497] = 1497, - [1498] = 1498, - [1499] = 1499, - [1500] = 1500, - [1501] = 1501, - [1502] = 1502, - [1503] = 464, - [1504] = 321, - [1505] = 384, - [1506] = 1506, - [1507] = 1483, - [1508] = 166, - [1509] = 462, - [1510] = 461, - [1511] = 491, - [1512] = 245, - [1513] = 503, - [1514] = 168, - [1515] = 461, - [1516] = 1516, - [1517] = 170, - [1518] = 171, + [1496] = 1495, + [1497] = 313, + [1498] = 246, + [1499] = 294, + [1500] = 248, + [1501] = 248, + [1502] = 251, + [1503] = 167, + [1504] = 168, + [1505] = 1449, + [1506] = 249, + [1507] = 319, + [1508] = 249, + [1509] = 474, + [1510] = 246, + [1511] = 1475, + [1512] = 235, + [1513] = 320, + [1514] = 469, + [1515] = 248, + [1516] = 498, + [1517] = 1517, + [1518] = 452, [1519] = 1519, - [1520] = 1520, - [1521] = 170, - [1522] = 463, - [1523] = 1523, - [1524] = 464, - [1525] = 503, - [1526] = 463, - [1527] = 464, - [1528] = 1528, - [1529] = 487, - [1530] = 1520, - [1531] = 1412, - [1532] = 1436, - [1533] = 1533, - [1534] = 171, - [1535] = 244, - [1536] = 1519, - [1537] = 1413, - [1538] = 259, - [1539] = 165, - [1540] = 262, - [1541] = 230, - [1542] = 277, - [1543] = 167, - [1544] = 1544, - [1545] = 239, - [1546] = 1546, - [1547] = 1438, - [1548] = 418, - [1549] = 470, - [1550] = 164, - [1551] = 169, - [1552] = 1523, - [1553] = 1460, + [1520] = 249, + [1521] = 1521, + [1522] = 1522, + [1523] = 512, + [1524] = 167, + [1525] = 168, + [1526] = 1526, + [1527] = 251, + [1528] = 497, + [1529] = 1529, + [1530] = 246, + [1531] = 247, + [1532] = 248, + [1533] = 473, + [1534] = 249, + [1535] = 1453, + [1536] = 473, + [1537] = 469, + [1538] = 174, + [1539] = 1408, + [1540] = 170, + [1541] = 1476, + [1542] = 1469, + [1543] = 251, + [1544] = 171, + [1545] = 166, + [1546] = 474, + [1547] = 308, + [1548] = 1548, + [1549] = 169, + [1550] = 477, + [1551] = 482, + [1552] = 170, + [1553] = 223, [1554] = 1554, - [1555] = 276, - [1556] = 470, - [1557] = 321, - [1558] = 420, - [1559] = 1559, - [1560] = 492, - [1561] = 275, - [1562] = 462, - [1563] = 242, - [1564] = 1564, - [1565] = 1417, - [1566] = 1422, - [1567] = 488, - [1568] = 1436, - [1569] = 489, - [1570] = 169, - [1571] = 1559, - [1572] = 237, - [1573] = 461, - [1574] = 601, - [1575] = 602, - [1576] = 603, - [1577] = 604, - [1578] = 605, - [1579] = 606, - [1580] = 607, - [1581] = 608, - [1582] = 609, - [1583] = 495, - [1584] = 556, - [1585] = 524, - [1586] = 525, - [1587] = 325, - [1588] = 1554, - [1589] = 172, - [1590] = 396, - [1591] = 531, - [1592] = 532, - [1593] = 1544, - [1594] = 1546, - [1595] = 397, - [1596] = 166, - [1597] = 531, - [1598] = 532, - [1599] = 1599, - [1600] = 1600, - [1601] = 323, - [1602] = 161, - [1603] = 169, - [1604] = 170, - [1605] = 171, - [1606] = 1516, - [1607] = 259, - [1608] = 326, - [1609] = 262, - [1610] = 1610, - [1611] = 1519, - [1612] = 1523, - [1613] = 327, - [1614] = 328, - [1615] = 329, - [1616] = 330, - [1617] = 331, - [1618] = 332, - [1619] = 333, - [1620] = 334, - [1621] = 335, - [1622] = 336, - [1623] = 462, - [1624] = 508, - [1625] = 512, - [1626] = 463, - [1627] = 464, - [1628] = 337, - [1629] = 338, - [1630] = 339, - [1631] = 514, - [1632] = 340, - [1633] = 1633, - [1634] = 341, - [1635] = 342, - [1636] = 343, - [1637] = 1637, - [1638] = 1638, - [1639] = 587, - [1640] = 1640, - [1641] = 470, - [1642] = 1642, - [1643] = 521, - [1644] = 235, - [1645] = 246, - [1646] = 1646, - [1647] = 588, - [1648] = 592, - [1649] = 161, - [1650] = 1528, - [1651] = 1651, - [1652] = 534, - [1653] = 275, - [1654] = 470, - [1655] = 321, - [1656] = 276, - [1657] = 277, - [1658] = 1519, - [1659] = 523, - [1660] = 501, - [1661] = 593, - [1662] = 1662, - [1663] = 1663, - [1664] = 1664, - [1665] = 324, - [1666] = 1666, - [1667] = 1667, - [1668] = 535, - [1669] = 508, - [1670] = 511, - [1671] = 512, - [1672] = 613, - [1673] = 521, - [1674] = 1674, - [1675] = 168, - [1676] = 592, - [1677] = 1559, - [1678] = 161, - [1679] = 167, - [1680] = 615, - [1681] = 514, - [1682] = 523, - [1683] = 501, - [1684] = 619, - [1685] = 593, - [1686] = 166, - [1687] = 1687, - [1688] = 559, - [1689] = 560, - [1690] = 563, - [1691] = 564, - [1692] = 511, - [1693] = 1693, - [1694] = 1694, - [1695] = 1559, - [1696] = 613, - [1697] = 557, - [1698] = 566, - [1699] = 615, - [1700] = 572, - [1701] = 573, - [1702] = 619, - [1703] = 574, - [1704] = 575, - [1705] = 577, - [1706] = 559, - [1707] = 579, - [1708] = 560, - [1709] = 563, - [1710] = 580, - [1711] = 581, - [1712] = 564, - [1713] = 582, - [1714] = 557, - [1715] = 585, - [1716] = 346, - [1717] = 1717, - [1718] = 566, - [1719] = 572, - [1720] = 573, - [1721] = 574, - [1722] = 575, - [1723] = 503, - [1724] = 577, - [1725] = 168, - [1726] = 579, - [1727] = 580, - [1728] = 581, - [1729] = 495, - [1730] = 582, - [1731] = 585, - [1732] = 556, - [1733] = 587, - [1734] = 588, + [1555] = 1555, + [1556] = 1556, + [1557] = 171, + [1558] = 166, + [1559] = 169, + [1560] = 1419, + [1561] = 1517, + [1562] = 222, + [1563] = 1526, + [1564] = 1529, + [1565] = 1565, + [1566] = 1566, + [1567] = 1567, + [1568] = 1568, + [1569] = 1569, + [1570] = 1570, + [1571] = 1418, + [1572] = 1572, + [1573] = 1419, + [1574] = 1574, + [1575] = 1575, + [1576] = 1576, + [1577] = 1577, + [1578] = 1578, + [1579] = 250, + [1580] = 246, + [1581] = 1400, + [1582] = 1402, + [1583] = 1566, + [1584] = 1569, + [1585] = 248, + [1586] = 320, + [1587] = 611, + [1588] = 571, + [1589] = 174, + [1590] = 557, + [1591] = 568, + [1592] = 477, + [1593] = 175, + [1594] = 613, + [1595] = 615, + [1596] = 592, + [1597] = 580, + [1598] = 587, + [1599] = 554, + [1600] = 610, + [1601] = 586, + [1602] = 172, + [1603] = 173, + [1604] = 584, + [1605] = 482, + [1606] = 1606, + [1607] = 1607, + [1608] = 1519, + [1609] = 512, + [1610] = 292, + [1611] = 552, + [1612] = 562, + [1613] = 1522, + [1614] = 595, + [1615] = 614, + [1616] = 607, + [1617] = 294, + [1618] = 629, + [1619] = 1619, + [1620] = 469, + [1621] = 1519, + [1622] = 563, + [1623] = 619, + [1624] = 604, + [1625] = 172, + [1626] = 173, + [1627] = 630, + [1628] = 1628, + [1629] = 570, + [1630] = 616, + [1631] = 627, + [1632] = 246, + [1633] = 249, + [1634] = 1634, + [1635] = 388, + [1636] = 308, + [1637] = 626, + [1638] = 591, + [1639] = 1639, + [1640] = 170, + [1641] = 319, + [1642] = 596, + [1643] = 1519, + [1644] = 608, + [1645] = 1645, + [1646] = 555, + [1647] = 1647, + [1648] = 575, + [1649] = 251, + [1650] = 1650, + [1651] = 171, + [1652] = 1489, + [1653] = 560, + [1654] = 581, + [1655] = 166, + [1656] = 577, + [1657] = 1522, + [1658] = 556, + [1659] = 1521, + [1660] = 1522, + [1661] = 1661, + [1662] = 549, + [1663] = 597, + [1664] = 473, + [1665] = 1569, + [1666] = 618, + [1667] = 445, + [1668] = 169, + [1669] = 620, + [1670] = 1495, + [1671] = 553, + [1672] = 564, + [1673] = 1673, + [1674] = 1569, + [1675] = 622, + [1676] = 512, + [1677] = 474, + [1678] = 1678, + [1679] = 1679, + [1680] = 1680, + [1681] = 432, + [1682] = 313, + [1683] = 576, + [1684] = 598, + [1685] = 566, + [1686] = 1686, + [1687] = 447, + [1688] = 578, + [1689] = 612, + [1690] = 1495, + [1691] = 561, + [1692] = 609, + [1693] = 174, + [1694] = 594, + [1695] = 569, + [1696] = 593, + [1697] = 378, + [1698] = 568, + [1699] = 561, + [1700] = 166, + [1701] = 1701, + [1702] = 1702, + [1703] = 587, + [1704] = 1607, + [1705] = 236, + [1706] = 554, + [1707] = 1707, + [1708] = 175, + [1709] = 1709, + [1710] = 1710, + [1711] = 613, + [1712] = 615, + [1713] = 598, + [1714] = 1714, + [1715] = 235, + [1716] = 236, + [1717] = 163, + [1718] = 1718, + [1719] = 1719, + [1720] = 610, + [1721] = 1721, + [1722] = 169, + [1723] = 553, + [1724] = 564, + [1725] = 1619, + [1726] = 584, + [1727] = 549, + [1728] = 552, + [1729] = 597, + [1730] = 614, + [1731] = 1731, + [1732] = 1732, + [1733] = 163, + [1734] = 604, [1735] = 1735, - [1736] = 235, - [1737] = 1737, + [1736] = 629, + [1737] = 619, [1738] = 1738, [1739] = 1739, [1740] = 1740, - [1741] = 595, + [1741] = 1741, [1742] = 1742, [1743] = 1743, - [1744] = 1744, - [1745] = 1674, - [1746] = 534, - [1747] = 1747, - [1748] = 1599, - [1749] = 1600, - [1750] = 1662, - [1751] = 324, - [1752] = 346, - [1753] = 325, - [1754] = 323, - [1755] = 326, - [1756] = 327, - [1757] = 328, - [1758] = 329, - [1759] = 330, - [1760] = 331, - [1761] = 332, - [1762] = 333, - [1763] = 334, - [1764] = 335, - [1765] = 336, - [1766] = 337, - [1767] = 338, - [1768] = 339, - [1769] = 340, - [1770] = 341, - [1771] = 342, - [1772] = 343, - [1773] = 246, - [1774] = 1774, - [1775] = 167, - [1776] = 1776, - [1777] = 524, - [1778] = 1778, - [1779] = 525, - [1780] = 1780, - [1781] = 1781, - [1782] = 596, - [1783] = 1783, - [1784] = 1784, - [1785] = 597, - [1786] = 1786, - [1787] = 598, - [1788] = 599, - [1789] = 1523, - [1790] = 535, - [1791] = 1791, - [1792] = 600, - [1793] = 327, - [1794] = 162, - [1795] = 1795, - [1796] = 1796, + [1744] = 1650, + [1745] = 163, + [1746] = 626, + [1747] = 630, + [1748] = 594, + [1749] = 593, + [1750] = 596, + [1751] = 598, + [1752] = 1661, + [1753] = 308, + [1754] = 557, + [1755] = 1628, + [1756] = 608, + [1757] = 575, + [1758] = 626, + [1759] = 608, + [1760] = 560, + [1761] = 313, + [1762] = 581, + [1763] = 575, + [1764] = 319, + [1765] = 1765, + [1766] = 577, + [1767] = 320, + [1768] = 1678, + [1769] = 474, + [1770] = 612, + [1771] = 622, + [1772] = 562, + [1773] = 563, + [1774] = 566, + [1775] = 569, + [1776] = 570, + [1777] = 577, + [1778] = 576, + [1779] = 578, + [1780] = 580, + [1781] = 586, + [1782] = 595, + [1783] = 612, + [1784] = 350, + [1785] = 553, + [1786] = 607, + [1787] = 564, + [1788] = 591, + [1789] = 1673, + [1790] = 348, + [1791] = 622, + [1792] = 555, + [1793] = 1634, + [1794] = 1794, + [1795] = 170, + [1796] = 1519, [1797] = 1797, - [1798] = 1798, - [1799] = 1799, - [1800] = 588, - [1801] = 1801, - [1802] = 1802, - [1803] = 1803, - [1804] = 418, - [1805] = 166, - [1806] = 531, - [1807] = 1807, - [1808] = 532, - [1809] = 163, - [1810] = 1642, - [1811] = 1811, - [1812] = 420, - [1813] = 333, - [1814] = 334, - [1815] = 335, - [1816] = 336, - [1817] = 337, - [1818] = 338, - [1819] = 235, - [1820] = 1820, - [1821] = 1735, - [1822] = 1519, + [1798] = 580, + [1799] = 586, + [1800] = 171, + [1801] = 595, + [1802] = 609, + [1803] = 549, + [1804] = 552, + [1805] = 235, + [1806] = 616, + [1807] = 445, + [1808] = 607, + [1809] = 556, + [1810] = 166, + [1811] = 1522, + [1812] = 562, + [1813] = 352, + [1814] = 563, + [1815] = 1815, + [1816] = 1679, + [1817] = 349, + [1818] = 360, + [1819] = 611, + [1820] = 170, + [1821] = 1821, + [1822] = 629, [1823] = 1823, - [1824] = 1824, - [1825] = 1666, - [1826] = 1667, - [1827] = 597, - [1828] = 613, - [1829] = 1737, - [1830] = 1523, - [1831] = 615, - [1832] = 514, - [1833] = 339, - [1834] = 340, - [1835] = 341, - [1836] = 342, - [1837] = 534, - [1838] = 346, - [1839] = 1839, - [1840] = 619, - [1841] = 343, - [1842] = 246, - [1843] = 323, - [1844] = 396, - [1845] = 324, - [1846] = 1846, - [1847] = 1847, - [1848] = 559, - [1849] = 1849, - [1850] = 503, - [1851] = 560, - [1852] = 535, - [1853] = 563, - [1854] = 593, - [1855] = 397, - [1856] = 1856, - [1857] = 275, - [1858] = 1791, - [1859] = 564, - [1860] = 1860, - [1861] = 321, - [1862] = 557, - [1863] = 1863, - [1864] = 1864, - [1865] = 523, - [1866] = 276, - [1867] = 508, - [1868] = 1868, - [1869] = 1869, - [1870] = 172, - [1871] = 277, - [1872] = 1872, - [1873] = 1637, - [1874] = 600, - [1875] = 601, - [1876] = 602, - [1877] = 1877, - [1878] = 566, - [1879] = 572, - [1880] = 1638, - [1881] = 573, - [1882] = 574, - [1883] = 162, - [1884] = 1884, - [1885] = 1885, - [1886] = 1651, - [1887] = 521, - [1888] = 1888, - [1889] = 599, - [1890] = 575, - [1891] = 1891, - [1892] = 325, - [1893] = 1519, - [1894] = 1894, + [1824] = 1639, + [1825] = 1647, + [1826] = 169, + [1827] = 593, + [1828] = 566, + [1829] = 1680, + [1830] = 1686, + [1831] = 363, + [1832] = 364, + [1833] = 1606, + [1834] = 1645, + [1835] = 447, + [1836] = 365, + [1837] = 366, + [1838] = 367, + [1839] = 569, + [1840] = 368, + [1841] = 596, + [1842] = 570, + [1843] = 619, + [1844] = 618, + [1845] = 350, + [1846] = 348, + [1847] = 352, + [1848] = 349, + [1849] = 360, + [1850] = 363, + [1851] = 364, + [1852] = 365, + [1853] = 366, + [1854] = 367, + [1855] = 368, + [1856] = 369, + [1857] = 370, + [1858] = 372, + [1859] = 373, + [1860] = 374, + [1861] = 375, + [1862] = 376, + [1863] = 378, + [1864] = 382, + [1865] = 383, + [1866] = 385, + [1867] = 369, + [1868] = 370, + [1869] = 372, + [1870] = 373, + [1871] = 374, + [1872] = 375, + [1873] = 571, + [1874] = 376, + [1875] = 627, + [1876] = 382, + [1877] = 383, + [1878] = 385, + [1879] = 591, + [1880] = 592, + [1881] = 611, + [1882] = 576, + [1883] = 555, + [1884] = 578, + [1885] = 571, + [1886] = 620, + [1887] = 609, + [1888] = 171, + [1889] = 560, + [1890] = 581, + [1891] = 613, + [1892] = 615, + [1893] = 610, + [1894] = 614, [1895] = 1895, - [1896] = 1896, - [1897] = 1897, - [1898] = 511, + [1896] = 597, + [1897] = 374, + [1898] = 383, [1899] = 1899, - [1900] = 1900, - [1901] = 595, - [1902] = 598, - [1903] = 577, - [1904] = 512, - [1905] = 592, - [1906] = 1523, - [1907] = 1907, - [1908] = 579, - [1909] = 580, - [1910] = 1847, + [1900] = 1519, + [1901] = 388, + [1902] = 369, + [1903] = 370, + [1904] = 372, + [1905] = 1905, + [1906] = 512, + [1907] = 373, + [1908] = 1908, + [1909] = 164, + [1910] = 236, [1911] = 1911, [1912] = 1912, [1913] = 1913, - [1914] = 1914, - [1915] = 581, - [1916] = 582, - [1917] = 163, + [1914] = 366, + [1915] = 1915, + [1916] = 1916, + [1917] = 1917, [1918] = 1918, [1919] = 1919, [1920] = 1920, - [1921] = 585, + [1921] = 1921, [1922] = 1922, [1923] = 1923, [1924] = 1924, - [1925] = 1925, - [1926] = 1926, + [1925] = 349, + [1926] = 368, [1927] = 1927, [1928] = 1928, - [1929] = 326, - [1930] = 501, - [1931] = 587, - [1932] = 1663, + [1929] = 389, + [1930] = 1930, + [1931] = 1931, + [1932] = 1522, [1933] = 1933, - [1934] = 603, - [1935] = 604, - [1936] = 605, - [1937] = 606, - [1938] = 607, - [1939] = 1664, - [1940] = 608, - [1941] = 609, - [1942] = 162, - [1943] = 163, - [1944] = 168, - [1945] = 495, - [1946] = 556, - [1947] = 329, - [1948] = 330, - [1949] = 331, - [1950] = 332, - [1951] = 1640, - [1952] = 1693, - [1953] = 1633, + [1934] = 1934, + [1935] = 1935, + [1936] = 1936, + [1937] = 352, + [1938] = 1930, + [1939] = 1939, + [1940] = 1940, + [1941] = 1941, + [1942] = 1942, + [1943] = 1913, + [1944] = 1939, + [1945] = 1945, + [1946] = 375, + [1947] = 1947, + [1948] = 385, + [1949] = 1949, + [1950] = 1950, + [1951] = 1951, + [1952] = 1952, + [1953] = 1953, [1954] = 1954, - [1955] = 167, - [1956] = 524, + [1955] = 1955, + [1956] = 165, [1957] = 1957, - [1958] = 525, + [1958] = 1958, [1959] = 1959, - [1960] = 1694, + [1960] = 1960, [1961] = 1961, - [1962] = 1962, - [1963] = 1963, - [1964] = 596, - [1965] = 328, - [1966] = 166, - [1967] = 463, - [1968] = 464, - [1969] = 592, - [1970] = 167, - [1971] = 235, - [1972] = 168, - [1973] = 167, - [1974] = 166, - [1975] = 168, - [1976] = 619, - [1977] = 470, - [1978] = 461, - [1979] = 246, - [1980] = 593, - [1981] = 559, - [1982] = 560, - [1983] = 161, - [1984] = 563, - [1985] = 587, - [1986] = 564, - [1987] = 164, - [1988] = 165, - [1989] = 557, - [1990] = 1990, - [1991] = 566, - [1992] = 572, - [1993] = 573, - [1994] = 405, - [1995] = 575, - [1996] = 1417, - [1997] = 577, - [1998] = 1422, - [1999] = 579, - [2000] = 580, - [2001] = 2001, - [2002] = 168, - [2003] = 581, - [2004] = 1445, - [2005] = 2005, - [2006] = 582, - [2007] = 585, - [2008] = 166, - [2009] = 167, - [2010] = 420, - [2011] = 613, - [2012] = 2012, - [2013] = 405, - [2014] = 588, - [2015] = 164, - [2016] = 165, - [2017] = 1412, - [2018] = 418, - [2019] = 2019, - [2020] = 1413, - [2021] = 2021, - [2022] = 615, - [2023] = 2023, - [2024] = 462, + [1962] = 235, + [1963] = 164, + [1964] = 165, + [1965] = 367, + [1966] = 164, + [1967] = 1940, + [1968] = 1968, + [1969] = 1969, + [1970] = 1970, + [1971] = 363, + [1972] = 1972, + [1973] = 348, + [1974] = 1974, + [1975] = 235, + [1976] = 1976, + [1977] = 1977, + [1978] = 236, + [1979] = 1979, + [1980] = 165, + [1981] = 1981, + [1982] = 360, + [1983] = 1957, + [1984] = 1984, + [1985] = 1985, + [1986] = 1986, + [1987] = 350, + [1988] = 1988, + [1989] = 1989, + [1990] = 365, + [1991] = 1991, + [1992] = 364, + [1993] = 163, + [1994] = 376, + [1995] = 378, + [1996] = 432, + [1997] = 1997, + [1998] = 382, + [1999] = 1999, + [2000] = 614, + [2001] = 1402, + [2002] = 608, + [2003] = 2003, + [2004] = 164, + [2005] = 619, + [2006] = 388, + [2007] = 577, + [2008] = 2008, + [2009] = 432, + [2010] = 1418, + [2011] = 612, + [2012] = 575, + [2013] = 622, + [2014] = 171, + [2015] = 2015, + [2016] = 473, + [2017] = 2017, + [2018] = 169, + [2019] = 562, + [2020] = 563, + [2021] = 165, + [2022] = 566, + [2023] = 569, + [2024] = 570, [2025] = 2025, - [2026] = 574, - [2027] = 2027, - [2028] = 2028, - [2029] = 2029, - [2030] = 2030, - [2031] = 2031, + [2026] = 169, + [2027] = 576, + [2028] = 389, + [2029] = 578, + [2030] = 580, + [2031] = 586, [2032] = 2032, - [2033] = 2033, - [2034] = 2034, - [2035] = 2035, - [2036] = 2036, - [2037] = 2037, - [2038] = 2038, + [2033] = 595, + [2034] = 607, + [2035] = 1400, + [2036] = 166, + [2037] = 2015, + [2038] = 474, [2039] = 2039, - [2040] = 2040, + [2040] = 167, [2041] = 2041, - [2042] = 169, - [2043] = 195, - [2044] = 463, - [2045] = 2045, - [2046] = 2046, - [2047] = 2047, - [2048] = 2048, - [2049] = 2049, + [2042] = 1922, + [2043] = 2043, + [2044] = 236, + [2045] = 477, + [2046] = 168, + [2047] = 626, + [2048] = 482, + [2049] = 610, [2050] = 2050, - [2051] = 2051, - [2052] = 161, + [2051] = 171, + [2052] = 2050, [2053] = 2053, [2054] = 2054, - [2055] = 464, - [2056] = 2056, - [2057] = 2057, - [2058] = 1412, - [2059] = 2059, - [2060] = 2060, - [2061] = 1413, - [2062] = 2062, - [2063] = 2063, - [2064] = 2064, - [2065] = 2065, - [2066] = 2066, - [2067] = 2067, - [2068] = 2068, - [2069] = 2069, - [2070] = 2070, - [2071] = 1559, - [2072] = 2072, - [2073] = 1422, - [2074] = 2074, - [2075] = 2075, - [2076] = 170, - [2077] = 171, - [2078] = 2078, - [2079] = 170, - [2080] = 171, - [2081] = 216, - [2082] = 2062, - [2083] = 470, - [2084] = 2084, - [2085] = 2085, - [2086] = 2086, + [2055] = 389, + [2056] = 2032, + [2057] = 2025, + [2058] = 216, + [2059] = 1999, + [2060] = 571, + [2061] = 166, + [2062] = 2008, + [2063] = 1419, + [2064] = 167, + [2065] = 170, + [2066] = 2054, + [2067] = 2017, + [2068] = 2041, + [2069] = 2043, + [2070] = 163, + [2071] = 235, + [2072] = 2039, + [2073] = 168, + [2074] = 170, + [2075] = 469, + [2076] = 591, + [2077] = 215, + [2078] = 555, + [2079] = 1568, + [2080] = 1574, + [2081] = 172, + [2082] = 173, + [2083] = 1575, + [2084] = 1576, + [2085] = 1577, + [2086] = 1578, [2087] = 2087, [2088] = 2088, [2089] = 2089, [2090] = 2090, [2091] = 2091, - [2092] = 2092, + [2092] = 170, [2093] = 2093, [2094] = 2094, - [2095] = 2095, - [2096] = 2096, + [2095] = 171, + [2096] = 166, [2097] = 2097, [2098] = 2098, - [2099] = 2099, + [2099] = 169, [2100] = 2100, [2101] = 2101, [2102] = 2102, [2103] = 2103, - [2104] = 2104, + [2104] = 198, [2105] = 2105, [2106] = 2106, - [2107] = 169, + [2107] = 2107, [2108] = 2108, [2109] = 2109, - [2110] = 470, + [2110] = 2110, [2111] = 2111, [2112] = 2112, [2113] = 2113, @@ -7308,5615 +7336,5968 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2115] = 2115, [2116] = 2116, [2117] = 2117, - [2118] = 1519, - [2119] = 2119, - [2120] = 2120, + [2118] = 2118, + [2119] = 473, + [2120] = 469, [2121] = 2121, - [2122] = 235, + [2122] = 2122, [2123] = 2123, [2124] = 2124, - [2125] = 162, - [2126] = 2126, + [2125] = 477, + [2126] = 482, [2127] = 2127, [2128] = 2128, [2129] = 2129, - [2130] = 1485, - [2131] = 163, - [2132] = 2132, - [2133] = 1486, - [2134] = 1488, + [2130] = 2130, + [2131] = 2131, + [2132] = 174, + [2133] = 2133, + [2134] = 2134, [2135] = 2135, - [2136] = 1489, - [2137] = 2123, + [2136] = 172, + [2137] = 173, [2138] = 2138, - [2139] = 1523, + [2139] = 474, [2140] = 2140, [2141] = 2141, - [2142] = 2142, - [2143] = 462, - [2144] = 461, - [2145] = 1490, - [2146] = 462, - [2147] = 246, + [2142] = 214, + [2143] = 2143, + [2144] = 2144, + [2145] = 2145, + [2146] = 2146, + [2147] = 1519, [2148] = 2148, - [2149] = 461, + [2149] = 2149, [2150] = 2150, - [2151] = 2151, + [2151] = 174, [2152] = 2152, - [2153] = 1495, - [2154] = 1496, + [2153] = 2153, + [2154] = 1522, [2155] = 2155, [2156] = 2156, [2157] = 2157, - [2158] = 2075, - [2159] = 2105, - [2160] = 2106, + [2158] = 223, + [2159] = 2159, + [2160] = 1495, [2161] = 2161, - [2162] = 463, + [2162] = 2162, [2163] = 2163, [2164] = 2164, [2165] = 2165, - [2166] = 2166, - [2167] = 464, + [2166] = 1419, + [2167] = 2167, [2168] = 2168, [2169] = 2169, [2170] = 2170, [2171] = 2171, [2172] = 2172, - [2173] = 2173, - [2174] = 2174, - [2175] = 2175, + [2173] = 1400, + [2174] = 1402, + [2175] = 222, [2176] = 2176, [2177] = 2177, [2178] = 2178, [2179] = 2179, [2180] = 2180, - [2181] = 214, + [2181] = 2181, [2182] = 2182, [2183] = 2183, [2184] = 2184, [2185] = 2185, [2186] = 2186, - [2187] = 1497, + [2187] = 2187, [2188] = 2188, - [2189] = 1417, - [2190] = 1498, - [2191] = 1499, - [2192] = 1500, - [2193] = 1501, - [2194] = 1502, - [2195] = 2195, + [2189] = 2189, + [2190] = 2190, + [2191] = 2191, + [2192] = 2192, + [2193] = 2143, + [2194] = 2194, + [2195] = 474, [2196] = 2196, [2197] = 2197, [2198] = 2198, - [2199] = 501, + [2199] = 2199, [2200] = 2200, [2201] = 2201, [2202] = 2202, [2203] = 2203, [2204] = 2204, - [2205] = 2086, + [2205] = 2205, [2206] = 2206, - [2207] = 2094, + [2207] = 2207, [2208] = 2208, [2209] = 2209, [2210] = 2210, - [2211] = 1717, + [2211] = 2211, [2212] = 2212, [2213] = 2213, [2214] = 2214, - [2215] = 2215, - [2216] = 2216, - [2217] = 2095, - [2218] = 2218, - [2219] = 2219, - [2220] = 2220, - [2221] = 521, - [2222] = 2222, - [2223] = 535, + [2215] = 1548, + [2216] = 1554, + [2217] = 1556, + [2218] = 473, + [2219] = 167, + [2220] = 168, + [2221] = 469, + [2222] = 1565, + [2223] = 1567, [2224] = 2224, [2225] = 2225, - [2226] = 164, - [2227] = 168, - [2228] = 165, - [2229] = 2229, + [2226] = 2226, + [2227] = 2227, + [2228] = 2228, + [2229] = 164, [2230] = 2230, - [2231] = 167, - [2232] = 2232, - [2233] = 166, + [2231] = 477, + [2232] = 482, + [2233] = 2233, [2234] = 2234, [2235] = 2235, [2236] = 2236, - [2237] = 587, - [2238] = 512, - [2239] = 495, - [2240] = 2094, - [2241] = 2095, - [2242] = 588, - [2243] = 556, - [2244] = 2244, + [2237] = 2237, + [2238] = 2238, + [2239] = 165, + [2240] = 2240, + [2241] = 2241, + [2242] = 1570, + [2243] = 1572, + [2244] = 1418, [2245] = 2245, [2246] = 2246, [2247] = 2247, [2248] = 2248, - [2249] = 1559, + [2249] = 629, [2250] = 2250, [2251] = 2251, [2252] = 2252, [2253] = 2253, - [2254] = 162, - [2255] = 2255, + [2254] = 2254, + [2255] = 251, [2256] = 2256, - [2257] = 2257, + [2257] = 549, [2258] = 2258, [2259] = 2259, - [2260] = 2260, - [2261] = 2261, + [2260] = 552, + [2261] = 597, [2262] = 2262, [2263] = 2263, - [2264] = 524, - [2265] = 525, + [2264] = 2264, + [2265] = 2167, [2266] = 2266, - [2267] = 1519, + [2267] = 246, [2268] = 2268, - [2269] = 2269, - [2270] = 508, - [2271] = 2271, - [2272] = 2272, + [2269] = 2168, + [2270] = 2270, + [2271] = 555, + [2272] = 1495, [2273] = 2273, [2274] = 2274, - [2275] = 2275, + [2275] = 474, [2276] = 2276, - [2277] = 2277, + [2277] = 598, [2278] = 2278, [2279] = 2279, - [2280] = 2280, + [2280] = 2162, [2281] = 2281, [2282] = 2282, [2283] = 2283, [2284] = 2284, - [2285] = 2285, - [2286] = 2286, - [2287] = 2287, + [2285] = 216, + [2286] = 215, + [2287] = 248, [2288] = 2288, [2289] = 2289, - [2290] = 218, - [2291] = 2287, + [2290] = 1823, + [2291] = 2291, [2292] = 2292, [2293] = 2293, [2294] = 2294, [2295] = 2295, - [2296] = 2288, + [2296] = 2143, [2297] = 2297, [2298] = 2298, [2299] = 2299, [2300] = 2300, [2301] = 2301, - [2302] = 2302, - [2303] = 2283, + [2302] = 512, + [2303] = 2303, [2304] = 2304, [2305] = 2305, [2306] = 2306, [2307] = 2307, - [2308] = 2308, + [2308] = 249, [2309] = 2309, [2310] = 2310, [2311] = 2311, [2312] = 2312, - [2313] = 1559, - [2314] = 2094, - [2315] = 2095, - [2316] = 2310, + [2313] = 2313, + [2314] = 2314, + [2315] = 2315, + [2316] = 2316, [2317] = 2317, [2318] = 2318, - [2319] = 211, - [2320] = 2320, + [2319] = 2319, + [2320] = 1238, [2321] = 2321, - [2322] = 2123, + [2322] = 1794, [2323] = 2323, [2324] = 2324, - [2325] = 2325, - [2326] = 2326, + [2325] = 593, + [2326] = 596, [2327] = 2327, - [2328] = 2328, - [2329] = 2329, + [2328] = 1765, + [2329] = 1495, [2330] = 2330, - [2331] = 2331, - [2332] = 2332, - [2333] = 503, + [2331] = 560, + [2332] = 581, + [2333] = 2333, [2334] = 2334, [2335] = 2335, [2336] = 2336, - [2337] = 511, - [2338] = 2304, - [2339] = 2311, - [2340] = 2312, + [2337] = 2337, + [2338] = 2338, + [2339] = 2339, + [2340] = 219, [2341] = 2341, - [2342] = 2342, - [2343] = 224, - [2344] = 2344, + [2342] = 553, + [2343] = 564, + [2344] = 2161, [2345] = 2345, [2346] = 2346, [2347] = 2347, - [2348] = 514, - [2349] = 199, - [2350] = 531, + [2348] = 2161, + [2349] = 2349, + [2350] = 2162, [2351] = 2351, - [2352] = 532, + [2352] = 2352, [2353] = 2353, [2354] = 2354, - [2355] = 2085, - [2356] = 2085, - [2357] = 2086, - [2358] = 2085, - [2359] = 2123, - [2360] = 2360, - [2361] = 2086, + [2355] = 2355, + [2356] = 204, + [2357] = 2357, + [2358] = 611, + [2359] = 2359, + [2360] = 217, + [2361] = 2361, [2362] = 2362, [2363] = 2363, - [2364] = 534, + [2364] = 2364, [2365] = 2365, - [2366] = 2366, - [2367] = 470, - [2368] = 1610, - [2369] = 1523, + [2366] = 170, + [2367] = 2367, + [2368] = 171, + [2369] = 166, [2370] = 2370, - [2371] = 2371, - [2372] = 2230, - [2373] = 2373, - [2374] = 2224, - [2375] = 2272, - [2376] = 2286, - [2377] = 1646, - [2378] = 2378, - [2379] = 523, + [2371] = 169, + [2372] = 2167, + [2373] = 2143, + [2374] = 2370, + [2375] = 2263, + [2376] = 2314, + [2377] = 174, + [2378] = 2273, + [2379] = 2300, [2380] = 2380, - [2381] = 163, - [2382] = 2222, - [2383] = 1776, - [2384] = 495, - [2385] = 588, - [2386] = 1717, - [2387] = 2387, - [2388] = 1786, - [2389] = 212, - [2390] = 556, - [2391] = 214, - [2392] = 592, - [2393] = 216, - [2394] = 230, - [2395] = 237, - [2396] = 587, - [2397] = 239, - [2398] = 514, - [2399] = 521, - [2400] = 1610, - [2401] = 242, - [2402] = 619, - [2403] = 559, - [2404] = 168, - [2405] = 167, - [2406] = 166, - [2407] = 508, - [2408] = 511, - [2409] = 560, - [2410] = 563, - [2411] = 535, - [2412] = 512, - [2413] = 564, - [2414] = 557, - [2415] = 613, - [2416] = 566, - [2417] = 572, - [2418] = 573, - [2419] = 574, - [2420] = 575, - [2421] = 577, - [2422] = 615, - [2423] = 523, - [2424] = 1784, - [2425] = 579, - [2426] = 580, - [2427] = 581, - [2428] = 582, - [2429] = 585, - [2430] = 1687, - [2431] = 525, - [2432] = 1646, - [2433] = 534, - [2434] = 593, - [2435] = 531, - [2436] = 169, - [2437] = 532, - [2438] = 1738, - [2439] = 1739, - [2440] = 1740, - [2441] = 2330, - [2442] = 1742, - [2443] = 2297, - [2444] = 1743, - [2445] = 170, - [2446] = 171, - [2447] = 2201, - [2448] = 1744, - [2449] = 2202, - [2450] = 1747, - [2451] = 2215, - [2452] = 1774, - [2453] = 2232, - [2454] = 164, - [2455] = 165, - [2456] = 524, - [2457] = 1233, - [2458] = 213, - [2459] = 2208, - [2460] = 1778, - [2461] = 470, - [2462] = 2219, - [2463] = 217, - [2464] = 1780, - [2465] = 2302, - [2466] = 2250, - [2467] = 1781, - [2468] = 2263, - [2469] = 1783, - [2470] = 2363, - [2471] = 501, - [2472] = 2472, - [2473] = 524, - [2474] = 525, - [2475] = 221, - [2476] = 2001, - [2477] = 2477, - [2478] = 169, - [2479] = 2479, - [2480] = 1519, - [2481] = 2481, - [2482] = 2472, - [2483] = 531, - [2484] = 2005, - [2485] = 212, - [2486] = 532, - [2487] = 2487, - [2488] = 2477, - [2489] = 2481, - [2490] = 1523, - [2491] = 218, - [2492] = 2487, + [2381] = 2381, + [2382] = 2168, + [2383] = 2383, + [2384] = 2384, + [2385] = 2385, + [2386] = 2386, + [2387] = 2337, + [2388] = 172, + [2389] = 173, + [2390] = 2390, + [2391] = 2391, + [2392] = 2392, + [2393] = 2393, + [2394] = 2162, + [2395] = 2395, + [2396] = 2383, + [2397] = 2397, + [2398] = 2167, + [2399] = 2168, + [2400] = 2400, + [2401] = 2401, + [2402] = 609, + [2403] = 2403, + [2404] = 2404, + [2405] = 218, + [2406] = 2406, + [2407] = 2407, + [2408] = 2408, + [2409] = 613, + [2410] = 2410, + [2411] = 615, + [2412] = 2412, + [2413] = 2413, + [2414] = 2414, + [2415] = 2415, + [2416] = 167, + [2417] = 168, + [2418] = 2418, + [2419] = 2419, + [2420] = 2420, + [2421] = 2421, + [2422] = 2422, + [2423] = 2423, + [2424] = 2424, + [2425] = 2161, + [2426] = 2426, + [2427] = 591, + [2428] = 2428, + [2429] = 614, + [2430] = 169, + [2431] = 596, + [2432] = 388, + [2433] = 2433, + [2434] = 223, + [2435] = 222, + [2436] = 596, + [2437] = 2437, + [2438] = 591, + [2439] = 218, + [2440] = 571, + [2441] = 611, + [2442] = 2442, + [2443] = 2443, + [2444] = 2444, + [2445] = 2445, + [2446] = 2446, + [2447] = 2442, + [2448] = 560, + [2449] = 581, + [2450] = 175, + [2451] = 2451, + [2452] = 2444, + [2453] = 619, + [2454] = 553, + [2455] = 564, + [2456] = 2456, + [2457] = 2457, + [2458] = 1794, + [2459] = 2459, + [2460] = 609, + [2461] = 2461, + [2462] = 2341, + [2463] = 613, + [2464] = 615, + [2465] = 598, + [2466] = 2466, + [2467] = 224, + [2468] = 2445, + [2469] = 2469, + [2470] = 2446, + [2471] = 2471, + [2472] = 626, + [2473] = 225, + [2474] = 226, + [2475] = 228, + [2476] = 2476, + [2477] = 608, + [2478] = 2478, + [2479] = 560, + [2480] = 2480, + [2481] = 581, + [2482] = 1735, + [2483] = 2246, + [2484] = 2478, + [2485] = 2485, + [2486] = 607, + [2487] = 2457, + [2488] = 555, + [2489] = 1738, + [2490] = 2247, + [2491] = 1740, + [2492] = 2476, [2493] = 2493, [2494] = 2494, - [2495] = 2495, - [2496] = 170, - [2497] = 171, - [2498] = 495, - [2499] = 2012, - [2500] = 2494, - [2501] = 1990, - [2502] = 556, + [2495] = 474, + [2496] = 1519, + [2497] = 2248, + [2498] = 198, + [2499] = 1522, + [2500] = 170, + [2501] = 593, + [2502] = 1743, [2503] = 2503, - [2504] = 420, - [2505] = 224, - [2506] = 418, - [2507] = 2495, - [2508] = 2508, - [2509] = 2025, - [2510] = 225, - [2511] = 172, - [2512] = 226, - [2513] = 220, - [2514] = 2514, - [2515] = 327, - [2516] = 2516, - [2517] = 328, - [2518] = 2518, - [2519] = 166, - [2520] = 495, - [2521] = 556, - [2522] = 2522, - [2523] = 2523, - [2524] = 329, - [2525] = 330, - [2526] = 331, - [2527] = 332, - [2528] = 2522, - [2529] = 2529, - [2530] = 172, - [2531] = 524, - [2532] = 525, - [2533] = 2533, - [2534] = 333, - [2535] = 334, - [2536] = 335, - [2537] = 336, - [2538] = 337, - [2539] = 2539, - [2540] = 2540, - [2541] = 338, - [2542] = 230, - [2543] = 339, - [2544] = 340, - [2545] = 341, - [2546] = 342, - [2547] = 2547, - [2548] = 343, - [2549] = 2518, - [2550] = 168, - [2551] = 2533, - [2552] = 418, - [2553] = 2553, - [2554] = 235, - [2555] = 324, - [2556] = 161, - [2557] = 531, - [2558] = 532, - [2559] = 2539, - [2560] = 2547, - [2561] = 2561, - [2562] = 225, - [2563] = 2514, - [2564] = 2561, - [2565] = 2553, - [2566] = 2516, - [2567] = 2523, - [2568] = 239, - [2569] = 346, - [2570] = 2570, - [2571] = 2571, - [2572] = 242, - [2573] = 2573, - [2574] = 214, - [2575] = 2540, - [2576] = 226, - [2577] = 221, - [2578] = 220, - [2579] = 245, - [2580] = 2516, - [2581] = 325, - [2582] = 167, - [2583] = 323, - [2584] = 216, - [2585] = 161, - [2586] = 2529, - [2587] = 420, - [2588] = 244, - [2589] = 2589, - [2590] = 2570, - [2591] = 2571, - [2592] = 326, - [2593] = 246, - [2594] = 237, - [2595] = 218, - [2596] = 163, - [2597] = 224, - [2598] = 259, - [2599] = 161, - [2600] = 262, - [2601] = 165, - [2602] = 235, - [2603] = 164, - [2604] = 162, - [2605] = 162, - [2606] = 163, + [2504] = 610, + [2505] = 2505, + [2506] = 553, + [2507] = 564, + [2508] = 171, + [2509] = 1739, + [2510] = 1765, + [2511] = 2459, + [2512] = 1701, + [2513] = 1702, + [2514] = 1707, + [2515] = 2413, + [2516] = 2451, + [2517] = 2517, + [2518] = 2503, + [2519] = 575, + [2520] = 2461, + [2521] = 2466, + [2522] = 577, + [2523] = 1709, + [2524] = 1823, + [2525] = 166, + [2526] = 612, + [2527] = 2415, + [2528] = 622, + [2529] = 1710, + [2530] = 2418, + [2531] = 1714, + [2532] = 2420, + [2533] = 1718, + [2534] = 2422, + [2535] = 2517, + [2536] = 432, + [2537] = 174, + [2538] = 629, + [2539] = 1719, + [2540] = 2423, + [2541] = 562, + [2542] = 563, + [2543] = 172, + [2544] = 173, + [2545] = 566, + [2546] = 569, + [2547] = 570, + [2548] = 1721, + [2549] = 2424, + [2550] = 576, + [2551] = 549, + [2552] = 552, + [2553] = 597, + [2554] = 1731, + [2555] = 2443, + [2556] = 2426, + [2557] = 578, + [2558] = 580, + [2559] = 586, + [2560] = 595, + [2561] = 1732, + [2562] = 2476, + [2563] = 593, + [2564] = 363, + [2565] = 171, + [2566] = 593, + [2567] = 166, + [2568] = 175, + [2569] = 365, + [2570] = 596, + [2571] = 366, + [2572] = 2433, + [2573] = 367, + [2574] = 169, + [2575] = 368, + [2576] = 163, + [2577] = 369, + [2578] = 370, + [2579] = 372, + [2580] = 373, + [2581] = 374, + [2582] = 553, + [2583] = 375, + [2584] = 376, + [2585] = 378, + [2586] = 564, + [2587] = 382, + [2588] = 383, + [2589] = 385, + [2590] = 2505, + [2591] = 350, + [2592] = 250, + [2593] = 204, + [2594] = 224, + [2595] = 2471, + [2596] = 251, + [2597] = 352, + [2598] = 216, + [2599] = 215, + [2600] = 225, + [2601] = 226, + [2602] = 348, + [2603] = 228, + [2604] = 560, + [2605] = 247, + [2606] = 235, [2607] = 246, - [2608] = 168, - [2609] = 504, - [2610] = 162, - [2611] = 168, - [2612] = 167, - [2613] = 166, - [2614] = 2614, - [2615] = 2615, - [2616] = 163, - [2617] = 504, - [2618] = 2618, - [2619] = 2619, - [2620] = 2614, - [2621] = 2621, - [2622] = 2622, - [2623] = 2615, - [2624] = 167, - [2625] = 166, - [2626] = 2626, - [2627] = 2627, - [2628] = 244, - [2629] = 1460, - [2630] = 2630, - [2631] = 165, - [2632] = 162, - [2633] = 230, - [2634] = 170, - [2635] = 171, - [2636] = 237, - [2637] = 239, - [2638] = 2618, - [2639] = 2619, - [2640] = 242, - [2641] = 245, - [2642] = 163, - [2643] = 275, - [2644] = 244, - [2645] = 321, - [2646] = 276, - [2647] = 277, - [2648] = 2648, - [2649] = 245, - [2650] = 164, - [2651] = 165, - [2652] = 293, - [2653] = 296, - [2654] = 2654, - [2655] = 169, - [2656] = 164, - [2657] = 2657, - [2658] = 169, - [2659] = 2654, - [2660] = 470, - [2661] = 2661, - [2662] = 461, - [2663] = 167, - [2664] = 259, - [2665] = 2665, - [2666] = 558, - [2667] = 262, - [2668] = 2668, - [2669] = 2669, - [2670] = 245, - [2671] = 2671, - [2672] = 170, - [2673] = 558, - [2674] = 1559, - [2675] = 2675, - [2676] = 166, - [2677] = 535, - [2678] = 245, - [2679] = 503, - [2680] = 171, - [2681] = 463, - [2682] = 326, - [2683] = 464, - [2684] = 164, - [2685] = 165, - [2686] = 259, - [2687] = 1528, - [2688] = 327, - [2689] = 328, - [2690] = 329, - [2691] = 195, - [2692] = 330, - [2693] = 331, - [2694] = 462, - [2695] = 333, - [2696] = 334, - [2697] = 335, - [2698] = 336, - [2699] = 337, - [2700] = 338, - [2701] = 339, - [2702] = 340, - [2703] = 341, - [2704] = 342, - [2705] = 343, - [2706] = 2706, - [2707] = 262, - [2708] = 244, - [2709] = 161, - [2710] = 2706, - [2711] = 169, - [2712] = 2665, - [2713] = 244, - [2714] = 534, - [2715] = 1663, - [2716] = 195, - [2717] = 1664, - [2718] = 168, - [2719] = 170, - [2720] = 1666, - [2721] = 167, - [2722] = 166, - [2723] = 171, - [2724] = 1667, - [2725] = 168, - [2726] = 332, - [2727] = 328, - [2728] = 2728, - [2729] = 593, - [2730] = 339, - [2731] = 168, - [2732] = 340, - [2733] = 420, - [2734] = 2734, - [2735] = 321, - [2736] = 392, - [2737] = 337, - [2738] = 199, - [2739] = 341, - [2740] = 2740, - [2741] = 167, - [2742] = 172, - [2743] = 508, - [2744] = 166, - [2745] = 276, - [2746] = 214, - [2747] = 514, - [2748] = 512, - [2749] = 619, - [2750] = 2750, - [2751] = 216, - [2752] = 587, - [2753] = 172, - [2754] = 169, - [2755] = 1519, - [2756] = 559, - [2757] = 321, - [2758] = 588, - [2759] = 560, - [2760] = 563, - [2761] = 162, - [2762] = 259, - [2763] = 195, - [2764] = 511, - [2765] = 564, - [2766] = 161, - [2767] = 557, - [2768] = 262, - [2769] = 170, - [2770] = 1523, - [2771] = 2771, - [2772] = 259, - [2773] = 343, - [2774] = 342, + [2608] = 248, + [2609] = 360, + [2610] = 236, + [2611] = 388, + [2612] = 581, + [2613] = 349, + [2614] = 432, + [2615] = 170, + [2616] = 1519, + [2617] = 2493, + [2618] = 2494, + [2619] = 249, + [2620] = 1522, + [2621] = 364, + [2622] = 163, + [2623] = 165, + [2624] = 163, + [2625] = 223, + [2626] = 222, + [2627] = 235, + [2628] = 292, + [2629] = 294, + [2630] = 164, + [2631] = 236, + [2632] = 165, + [2633] = 164, + [2634] = 2634, + [2635] = 2635, + [2636] = 2636, + [2637] = 165, + [2638] = 171, + [2639] = 2639, + [2640] = 166, + [2641] = 1476, + [2642] = 251, + [2643] = 2643, + [2644] = 246, + [2645] = 2645, + [2646] = 170, + [2647] = 2647, + [2648] = 248, + [2649] = 2649, + [2650] = 2650, + [2651] = 249, + [2652] = 2652, + [2653] = 250, + [2654] = 308, + [2655] = 247, + [2656] = 2656, + [2657] = 313, + [2658] = 2656, + [2659] = 319, + [2660] = 320, + [2661] = 170, + [2662] = 2635, + [2663] = 2663, + [2664] = 167, + [2665] = 168, + [2666] = 2636, + [2667] = 300, + [2668] = 171, + [2669] = 166, + [2670] = 2639, + [2671] = 169, + [2672] = 2650, + [2673] = 169, + [2674] = 250, + [2675] = 164, + [2676] = 324, + [2677] = 167, + [2678] = 168, + [2679] = 516, + [2680] = 2680, + [2681] = 247, + [2682] = 167, + [2683] = 168, + [2684] = 2652, + [2685] = 2685, + [2686] = 516, + [2687] = 2687, + [2688] = 2688, + [2689] = 172, + [2690] = 172, + [2691] = 2634, + [2692] = 474, + [2693] = 477, + [2694] = 550, + [2695] = 250, + [2696] = 2696, + [2697] = 170, + [2698] = 482, + [2699] = 2699, + [2700] = 171, + [2701] = 166, + [2702] = 294, + [2703] = 512, + [2704] = 247, + [2705] = 250, + [2706] = 169, + [2707] = 163, + [2708] = 360, + [2709] = 198, + [2710] = 174, + [2711] = 363, + [2712] = 364, + [2713] = 1495, + [2714] = 365, + [2715] = 366, + [2716] = 367, + [2717] = 550, + [2718] = 368, + [2719] = 168, + [2720] = 369, + [2721] = 370, + [2722] = 294, + [2723] = 372, + [2724] = 247, + [2725] = 373, + [2726] = 374, + [2727] = 375, + [2728] = 376, + [2729] = 2729, + [2730] = 2730, + [2731] = 378, + [2732] = 382, + [2733] = 2729, + [2734] = 383, + [2735] = 385, + [2736] = 292, + [2737] = 173, + [2738] = 292, + [2739] = 2739, + [2740] = 173, + [2741] = 172, + [2742] = 1521, + [2743] = 469, + [2744] = 198, + [2745] = 473, + [2746] = 2746, + [2747] = 173, + [2748] = 167, + [2749] = 2730, + [2750] = 2746, + [2751] = 174, + [2752] = 174, + [2753] = 629, + [2754] = 1650, + [2755] = 198, + [2756] = 598, + [2757] = 172, + [2758] = 173, + [2759] = 626, + [2760] = 608, + [2761] = 611, + [2762] = 2762, + [2763] = 593, + [2764] = 1619, + [2765] = 575, + [2766] = 171, + [2767] = 596, + [2768] = 577, + [2769] = 612, + [2770] = 622, + [2771] = 562, + [2772] = 432, + [2773] = 563, + [2774] = 175, [2775] = 566, - [2776] = 572, - [2777] = 521, - [2778] = 276, - [2779] = 396, - [2780] = 573, - [2781] = 574, - [2782] = 575, - [2783] = 2783, - [2784] = 613, - [2785] = 592, - [2786] = 577, - [2787] = 495, - [2788] = 556, - [2789] = 277, - [2790] = 579, - [2791] = 277, - [2792] = 524, - [2793] = 525, - [2794] = 615, - [2795] = 199, - [2796] = 262, - [2797] = 2797, - [2798] = 338, - [2799] = 2799, - [2800] = 531, - [2801] = 532, - [2802] = 384, - [2803] = 385, - [2804] = 580, - [2805] = 386, - [2806] = 275, - [2807] = 171, - [2808] = 581, - [2809] = 523, - [2810] = 327, - [2811] = 501, - [2812] = 397, - [2813] = 336, - [2814] = 582, - [2815] = 585, - [2816] = 329, - [2817] = 330, - [2818] = 331, + [2776] = 569, + [2777] = 2777, + [2778] = 388, + [2779] = 2779, + [2780] = 308, + [2781] = 446, + [2782] = 292, + [2783] = 560, + [2784] = 570, + [2785] = 581, + [2786] = 576, + [2787] = 174, + [2788] = 2788, + [2789] = 578, + [2790] = 580, + [2791] = 169, + [2792] = 204, + [2793] = 313, + [2794] = 313, + [2795] = 571, + [2796] = 553, + [2797] = 586, + [2798] = 595, + [2799] = 564, + [2800] = 607, + [2801] = 445, + [2802] = 449, + [2803] = 294, + [2804] = 609, + [2805] = 204, + [2806] = 390, + [2807] = 447, + [2808] = 441, + [2809] = 292, + [2810] = 166, + [2811] = 320, + [2812] = 614, + [2813] = 2813, + [2814] = 619, + [2815] = 319, + [2816] = 591, + [2817] = 163, + [2818] = 555, [2819] = 2819, - [2820] = 332, - [2821] = 275, - [2822] = 2771, - [2823] = 163, - [2824] = 333, - [2825] = 2799, - [2826] = 195, - [2827] = 2734, - [2828] = 418, - [2829] = 334, - [2830] = 335, - [2831] = 2831, - [2832] = 326, - [2833] = 492, - [2834] = 216, - [2835] = 199, - [2836] = 418, - [2837] = 396, - [2838] = 218, - [2839] = 245, - [2840] = 420, - [2841] = 397, - [2842] = 470, - [2843] = 245, - [2844] = 275, - [2845] = 321, - [2846] = 2846, - [2847] = 276, - [2848] = 277, - [2849] = 275, - [2850] = 321, - [2851] = 2851, - [2852] = 276, - [2853] = 2853, - [2854] = 277, - [2855] = 244, - [2856] = 164, - [2857] = 214, - [2858] = 172, - [2859] = 214, - [2860] = 462, - [2861] = 162, - [2862] = 463, - [2863] = 464, - [2864] = 503, - [2865] = 384, - [2866] = 385, - [2867] = 163, - [2868] = 386, - [2869] = 168, - [2870] = 167, + [2820] = 363, + [2821] = 364, + [2822] = 365, + [2823] = 198, + [2824] = 366, + [2825] = 367, + [2826] = 368, + [2827] = 369, + [2828] = 370, + [2829] = 294, + [2830] = 319, + [2831] = 372, + [2832] = 373, + [2833] = 374, + [2834] = 320, + [2835] = 1522, + [2836] = 164, + [2837] = 375, + [2838] = 376, + [2839] = 1519, + [2840] = 378, + [2841] = 613, + [2842] = 382, + [2843] = 615, + [2844] = 383, + [2845] = 385, + [2846] = 549, + [2847] = 597, + [2848] = 610, + [2849] = 2849, + [2850] = 170, + [2851] = 1661, + [2852] = 552, + [2853] = 1607, + [2854] = 165, + [2855] = 175, + [2856] = 308, + [2857] = 360, + [2858] = 313, + [2859] = 474, + [2860] = 2860, + [2861] = 204, + [2862] = 319, + [2863] = 445, + [2864] = 477, + [2865] = 482, + [2866] = 320, + [2867] = 170, + [2868] = 250, + [2869] = 215, + [2870] = 171, [2871] = 166, - [2872] = 244, - [2873] = 1287, - [2874] = 214, - [2875] = 392, - [2876] = 216, - [2877] = 216, - [2878] = 199, - [2879] = 487, - [2880] = 488, - [2881] = 224, - [2882] = 489, - [2883] = 491, - [2884] = 2884, - [2885] = 2885, - [2886] = 165, - [2887] = 2887, - [2888] = 168, - [2889] = 216, - [2890] = 169, - [2891] = 2887, - [2892] = 2892, - [2893] = 2893, - [2894] = 2894, - [2895] = 2895, - [2896] = 2896, - [2897] = 242, - [2898] = 170, - [2899] = 602, - [2900] = 171, - [2901] = 195, - [2902] = 575, - [2903] = 557, - [2904] = 2895, - [2905] = 2896, - [2906] = 580, - [2907] = 581, - [2908] = 262, - [2909] = 224, - [2910] = 218, - [2911] = 577, - [2912] = 218, - [2913] = 587, - [2914] = 579, - [2915] = 588, - [2916] = 585, - [2917] = 164, - [2918] = 165, - [2919] = 2919, - [2920] = 2920, - [2921] = 592, - [2922] = 595, - [2923] = 259, - [2924] = 560, - [2925] = 504, - [2926] = 259, - [2927] = 563, - [2928] = 2892, - [2929] = 214, - [2930] = 615, - [2931] = 262, - [2932] = 613, - [2933] = 601, - [2934] = 224, - [2935] = 593, - [2936] = 600, - [2937] = 1287, - [2938] = 166, - [2939] = 218, - [2940] = 603, - [2941] = 245, - [2942] = 604, - [2943] = 1287, - [2944] = 605, - [2945] = 606, - [2946] = 216, - [2947] = 607, - [2948] = 608, - [2949] = 609, - [2950] = 230, - [2951] = 566, - [2952] = 572, - [2953] = 239, - [2954] = 619, - [2955] = 559, - [2956] = 237, - [2957] = 573, - [2958] = 2893, - [2959] = 596, - [2960] = 597, - [2961] = 598, - [2962] = 599, - [2963] = 2894, - [2964] = 574, - [2965] = 2965, - [2966] = 214, - [2967] = 564, - [2968] = 167, - [2969] = 582, - [2970] = 224, - [2971] = 244, - [2972] = 2972, - [2973] = 195, - [2974] = 2974, - [2975] = 262, - [2976] = 462, - [2977] = 237, - [2978] = 230, - [2979] = 218, - [2980] = 239, - [2981] = 2981, - [2982] = 242, - [2983] = 275, - [2984] = 2965, - [2985] = 2985, - [2986] = 276, - [2987] = 170, - [2988] = 171, - [2989] = 259, - [2990] = 239, - [2991] = 199, - [2992] = 1436, + [2872] = 175, + [2873] = 2873, + [2874] = 390, + [2875] = 388, + [2876] = 250, + [2877] = 447, + [2878] = 446, + [2879] = 498, + [2880] = 169, + [2881] = 247, + [2882] = 2882, + [2883] = 497, + [2884] = 164, + [2885] = 452, + [2886] = 216, + [2887] = 165, + [2888] = 449, + [2889] = 308, + [2890] = 319, + [2891] = 165, + [2892] = 167, + [2893] = 320, + [2894] = 313, + [2895] = 499, + [2896] = 168, + [2897] = 2897, + [2898] = 204, + [2899] = 164, + [2900] = 473, + [2901] = 432, + [2902] = 308, + [2903] = 247, + [2904] = 441, + [2905] = 470, + [2906] = 167, + [2907] = 2907, + [2908] = 2908, + [2909] = 294, + [2910] = 2910, + [2911] = 2911, + [2912] = 2912, + [2913] = 2913, + [2914] = 294, + [2915] = 216, + [2916] = 512, + [2917] = 223, + [2918] = 198, + [2919] = 2907, + [2920] = 216, + [2921] = 168, + [2922] = 2908, + [2923] = 2910, + [2924] = 2911, + [2925] = 215, + [2926] = 1363, + [2927] = 215, + [2928] = 170, + [2929] = 216, + [2930] = 171, + [2931] = 166, + [2932] = 170, + [2933] = 169, + [2934] = 292, + [2935] = 171, + [2936] = 2936, + [2937] = 2937, + [2938] = 173, + [2939] = 166, + [2940] = 222, + [2941] = 250, + [2942] = 169, + [2943] = 2943, + [2944] = 215, + [2945] = 292, + [2946] = 174, + [2947] = 247, + [2948] = 516, + [2949] = 2912, + [2950] = 2913, + [2951] = 172, + [2952] = 319, + [2953] = 170, + [2954] = 172, + [2955] = 173, + [2956] = 610, + [2957] = 223, + [2958] = 2958, + [2959] = 2959, + [2960] = 614, + [2961] = 619, + [2962] = 166, + [2963] = 626, + [2964] = 608, + [2965] = 575, + [2966] = 577, + [2967] = 612, + [2968] = 622, + [2969] = 562, + [2970] = 563, + [2971] = 566, + [2972] = 569, + [2973] = 570, + [2974] = 576, + [2975] = 578, + [2976] = 580, + [2977] = 586, + [2978] = 595, + [2979] = 607, + [2980] = 2980, + [2981] = 2936, + [2982] = 473, + [2983] = 171, + [2984] = 246, + [2985] = 222, + [2986] = 477, + [2987] = 216, + [2988] = 215, + [2989] = 319, + [2990] = 627, + [2991] = 222, + [2992] = 308, [2993] = 2993, - [2994] = 463, - [2995] = 168, - [2996] = 237, - [2997] = 275, - [2998] = 321, - [2999] = 218, - [3000] = 169, - [3001] = 558, - [3002] = 321, - [3003] = 464, - [3004] = 470, - [3005] = 242, - [3006] = 166, - [3007] = 276, - [3008] = 3008, - [3009] = 224, - [3010] = 172, - [3011] = 503, - [3012] = 239, - [3013] = 167, - [3014] = 242, - [3015] = 3015, - [3016] = 277, - [3017] = 224, - [3018] = 396, - [3019] = 237, - [3020] = 3020, - [3021] = 397, - [3022] = 3022, - [3023] = 230, - [3024] = 230, - [3025] = 3025, - [3026] = 277, - [3027] = 600, - [3028] = 321, - [3029] = 559, - [3030] = 239, - [3031] = 605, - [3032] = 606, - [3033] = 560, - [3034] = 563, - [3035] = 601, - [3036] = 276, - [3037] = 242, - [3038] = 607, - [3039] = 564, - [3040] = 277, - [3041] = 557, - [3042] = 609, - [3043] = 566, - [3044] = 572, - [3045] = 573, - [3046] = 574, - [3047] = 575, - [3048] = 577, - [3049] = 579, - [3050] = 580, - [3051] = 581, - [3052] = 3052, - [3053] = 582, - [3054] = 585, - [3055] = 2920, - [3056] = 168, - [3057] = 167, - [3058] = 3058, - [3059] = 595, - [3060] = 3060, - [3061] = 166, + [2994] = 630, + [2995] = 592, + [2996] = 512, + [2997] = 320, + [2998] = 482, + [2999] = 620, + [3000] = 204, + [3001] = 561, + [3002] = 175, + [3003] = 169, + [3004] = 223, + [3005] = 320, + [3006] = 223, + [3007] = 198, + [3008] = 248, + [3009] = 616, + [3010] = 249, + [3011] = 556, + [3012] = 474, + [3013] = 251, + [3014] = 618, + [3015] = 591, + [3016] = 216, + [3017] = 550, + [3018] = 308, + [3019] = 292, + [3020] = 215, + [3021] = 174, + [3022] = 313, + [3023] = 3023, + [3024] = 1363, + [3025] = 1363, + [3026] = 445, + [3027] = 594, + [3028] = 557, + [3029] = 555, + [3030] = 447, + [3031] = 568, + [3032] = 3032, + [3033] = 571, + [3034] = 3034, + [3035] = 587, + [3036] = 554, + [3037] = 584, + [3038] = 3038, + [3039] = 604, + [3040] = 222, + [3041] = 3041, + [3042] = 3042, + [3043] = 294, + [3044] = 313, + [3045] = 561, + [3046] = 249, + [3047] = 251, + [3048] = 248, + [3049] = 251, + [3050] = 447, + [3051] = 592, + [3052] = 594, + [3053] = 1569, + [3054] = 3054, + [3055] = 204, + [3056] = 580, + [3057] = 607, + [3058] = 223, + [3059] = 568, + [3060] = 586, + [3061] = 610, [3062] = 3062, - [3063] = 199, - [3064] = 2919, - [3065] = 3065, - [3066] = 230, - [3067] = 396, - [3068] = 596, - [3069] = 597, - [3070] = 1436, - [3071] = 613, - [3072] = 172, - [3073] = 237, - [3074] = 598, - [3075] = 599, - [3076] = 397, - [3077] = 239, - [3078] = 230, - [3079] = 615, - [3080] = 593, - [3081] = 3081, - [3082] = 603, - [3083] = 587, - [3084] = 275, - [3085] = 604, - [3086] = 602, - [3087] = 237, - [3088] = 588, - [3089] = 3089, - [3090] = 3090, - [3091] = 242, - [3092] = 619, - [3093] = 3093, - [3094] = 3094, - [3095] = 3095, - [3096] = 3096, - [3097] = 1436, - [3098] = 592, - [3099] = 608, - [3100] = 3100, - [3101] = 3101, - [3102] = 3102, - [3103] = 3103, - [3104] = 3104, - [3105] = 3102, - [3106] = 3106, - [3107] = 3107, - [3108] = 3108, - [3109] = 3109, - [3110] = 2846, - [3111] = 3111, - [3112] = 3104, - [3113] = 3108, - [3114] = 3109, - [3115] = 3115, - [3116] = 212, - [3117] = 3115, - [3118] = 3118, - [3119] = 3101, - [3120] = 3118, - [3121] = 3103, - [3122] = 3122, - [3123] = 3106, - [3124] = 225, - [3125] = 3106, - [3126] = 221, - [3127] = 226, - [3128] = 220, - [3129] = 461, - [3130] = 172, - [3131] = 163, - [3132] = 162, - [3133] = 463, - [3134] = 464, - [3135] = 470, + [3063] = 249, + [3064] = 3064, + [3065] = 587, + [3066] = 595, + [3067] = 554, + [3068] = 246, + [3069] = 3069, + [3070] = 223, + [3071] = 445, + [3072] = 584, + [3073] = 614, + [3074] = 308, + [3075] = 3075, + [3076] = 618, + [3077] = 251, + [3078] = 3078, + [3079] = 3079, + [3080] = 248, + [3081] = 320, + [3082] = 175, + [3083] = 3083, + [3084] = 171, + [3085] = 313, + [3086] = 222, + [3087] = 169, + [3088] = 619, + [3089] = 591, + [3090] = 246, + [3091] = 2937, + [3092] = 3092, + [3093] = 627, + [3094] = 555, + [3095] = 626, + [3096] = 222, + [3097] = 630, + [3098] = 608, + [3099] = 3099, + [3100] = 575, + [3101] = 577, + [3102] = 616, + [3103] = 166, + [3104] = 612, + [3105] = 620, + [3106] = 622, + [3107] = 248, + [3108] = 2943, + [3109] = 604, + [3110] = 562, + [3111] = 563, + [3112] = 246, + [3113] = 556, + [3114] = 566, + [3115] = 569, + [3116] = 570, + [3117] = 571, + [3118] = 249, + [3119] = 576, + [3120] = 3120, + [3121] = 557, + [3122] = 170, + [3123] = 319, + [3124] = 578, + [3125] = 3125, + [3126] = 251, + [3127] = 246, + [3128] = 246, + [3129] = 3129, + [3130] = 251, + [3131] = 249, + [3132] = 1569, + [3133] = 248, + [3134] = 249, + [3135] = 248, [3136] = 3136, - [3137] = 462, - [3138] = 461, - [3139] = 245, - [3140] = 462, - [3141] = 464, - [3142] = 463, - [3143] = 464, - [3144] = 463, - [3145] = 167, - [3146] = 166, - [3147] = 470, - [3148] = 3148, - [3149] = 2094, - [3150] = 161, - [3151] = 470, - [3152] = 244, - [3153] = 3153, - [3154] = 161, - [3155] = 2095, - [3156] = 461, - [3157] = 164, - [3158] = 1559, - [3159] = 168, - [3160] = 2085, - [3161] = 165, - [3162] = 2086, - [3163] = 462, - [3164] = 2123, - [3165] = 171, - [3166] = 2323, - [3167] = 2345, - [3168] = 2378, - [3169] = 2236, - [3170] = 2297, - [3171] = 2247, - [3172] = 2256, - [3173] = 2262, - [3174] = 2276, - [3175] = 2301, - [3176] = 2210, - [3177] = 2307, - [3178] = 2317, - [3179] = 2202, - [3180] = 2321, - [3181] = 2327, - [3182] = 2331, - [3183] = 2215, - [3184] = 2334, - [3185] = 2232, - [3186] = 2209, - [3187] = 2248, - [3188] = 2266, - [3189] = 2284, - [3190] = 2294, - [3191] = 2320, - [3192] = 2326, - [3193] = 2336, - [3194] = 2347, - [3195] = 2362, - [3196] = 2268, - [3197] = 2325, - [3198] = 2282, - [3199] = 2346, - [3200] = 2274, - [3201] = 2305, - [3202] = 2212, - [3203] = 2255, - [3204] = 2328, - [3205] = 2198, - [3206] = 2213, - [3207] = 2234, - [3208] = 2258, - [3209] = 2271, - [3210] = 2293, - [3211] = 2306, - [3212] = 2335, - [3213] = 2371, - [3214] = 2204, - [3215] = 2229, - [3216] = 2235, - [3217] = 2252, - [3218] = 2260, - [3219] = 2269, - [3220] = 2279, - [3221] = 2298, - [3222] = 2245, - [3223] = 2251, - [3224] = 2253, - [3225] = 2257, - [3226] = 2259, - [3227] = 2273, - [3228] = 2275, - [3229] = 2278, - [3230] = 2281, - [3231] = 2289, - [3232] = 2292, - [3233] = 2197, - [3234] = 2208, - [3235] = 2219, - [3236] = 2250, - [3237] = 2263, - [3238] = 2363, - [3239] = 2302, - [3240] = 1559, - [3241] = 3241, - [3242] = 169, - [3243] = 3243, - [3244] = 259, - [3245] = 2094, - [3246] = 2095, - [3247] = 3247, - [3248] = 3248, - [3249] = 2085, - [3250] = 2086, - [3251] = 2329, - [3252] = 2342, - [3253] = 2354, - [3254] = 2203, - [3255] = 3255, - [3256] = 2365, - [3257] = 2370, - [3258] = 2123, - [3259] = 2123, - [3260] = 2094, - [3261] = 2206, - [3262] = 2220, - [3263] = 2225, - [3264] = 2308, - [3265] = 2353, - [3266] = 3266, - [3267] = 3267, - [3268] = 2366, - [3269] = 170, - [3270] = 3270, - [3271] = 3271, - [3272] = 3272, - [3273] = 1791, - [3274] = 2085, - [3275] = 2086, - [3276] = 2330, - [3277] = 3247, - [3278] = 2095, - [3279] = 3247, - [3280] = 2214, - [3281] = 2218, - [3282] = 2244, - [3283] = 2261, - [3284] = 2280, - [3285] = 262, - [3286] = 2285, - [3287] = 2295, - [3288] = 2300, - [3289] = 2318, - [3290] = 2324, - [3291] = 2332, - [3292] = 2360, - [3293] = 2380, - [3294] = 2246, - [3295] = 2277, - [3296] = 2216, - [3297] = 2299, - [3298] = 1559, - [3299] = 2309, - [3300] = 2341, - [3301] = 2200, - [3302] = 2201, - [3303] = 3303, - [3304] = 2302, - [3305] = 3305, - [3306] = 216, - [3307] = 1791, - [3308] = 3308, - [3309] = 3309, - [3310] = 1791, - [3311] = 3311, - [3312] = 3312, - [3313] = 275, - [3314] = 321, - [3315] = 396, - [3316] = 214, - [3317] = 277, - [3318] = 3318, - [3319] = 3303, - [3320] = 397, - [3321] = 3107, - [3322] = 2330, - [3323] = 2297, - [3324] = 2201, - [3325] = 3318, - [3326] = 2202, - [3327] = 2215, - [3328] = 2232, - [3329] = 2208, - [3330] = 2219, - [3331] = 2250, - [3332] = 276, - [3333] = 3309, - [3334] = 2263, - [3335] = 3122, - [3336] = 3100, - [3337] = 2363, - [3338] = 3305, - [3339] = 214, - [3340] = 214, + [3137] = 1569, + [3138] = 3138, + [3139] = 3139, + [3140] = 3140, + [3141] = 3141, + [3142] = 3142, + [3143] = 3143, + [3144] = 3136, + [3145] = 3145, + [3146] = 3146, + [3147] = 3147, + [3148] = 3141, + [3149] = 3140, + [3150] = 3142, + [3151] = 3138, + [3152] = 3143, + [3153] = 3139, + [3154] = 3154, + [3155] = 3146, + [3156] = 3156, + [3157] = 3147, + [3158] = 3158, + [3159] = 3145, + [3160] = 3145, + [3161] = 473, + [3162] = 477, + [3163] = 482, + [3164] = 474, + [3165] = 164, + [3166] = 3166, + [3167] = 165, + [3168] = 175, + [3169] = 469, + [3170] = 170, + [3171] = 167, + [3172] = 168, + [3173] = 474, + [3174] = 469, + [3175] = 218, + [3176] = 163, + [3177] = 473, + [3178] = 477, + [3179] = 482, + [3180] = 3180, + [3181] = 2161, + [3182] = 2162, + [3183] = 469, + [3184] = 2167, + [3185] = 2168, + [3186] = 2143, + [3187] = 473, + [3188] = 474, + [3189] = 250, + [3190] = 247, + [3191] = 477, + [3192] = 482, + [3193] = 171, + [3194] = 166, + [3195] = 169, + [3196] = 1495, + [3197] = 2143, + [3198] = 3198, + [3199] = 3199, + [3200] = 172, + [3201] = 173, + [3202] = 1495, + [3203] = 225, + [3204] = 226, + [3205] = 228, + [3206] = 3206, + [3207] = 3207, + [3208] = 3208, + [3209] = 3209, + [3210] = 3210, + [3211] = 3211, + [3212] = 2161, + [3213] = 2162, + [3214] = 2167, + [3215] = 2168, + [3216] = 1678, + [3217] = 2161, + [3218] = 2162, + [3219] = 224, + [3220] = 3206, + [3221] = 2167, + [3222] = 2168, + [3223] = 2413, + [3224] = 2415, + [3225] = 2418, + [3226] = 2420, + [3227] = 2422, + [3228] = 2423, + [3229] = 2424, + [3230] = 2426, + [3231] = 2341, + [3232] = 2246, + [3233] = 2247, + [3234] = 2248, + [3235] = 1495, + [3236] = 2245, + [3237] = 2367, + [3238] = 2381, + [3239] = 2384, + [3240] = 2390, + [3241] = 2392, + [3242] = 2403, + [3243] = 2251, + [3244] = 2253, + [3245] = 2258, + [3246] = 2304, + [3247] = 2327, + [3248] = 3206, + [3249] = 2401, + [3250] = 2259, + [3251] = 2284, + [3252] = 2305, + [3253] = 2352, + [3254] = 2386, + [3255] = 2256, + [3256] = 2262, + [3257] = 2264, + [3258] = 2278, + [3259] = 2292, + [3260] = 2301, + [3261] = 2307, + [3262] = 2315, + [3263] = 2323, + [3264] = 2333, + [3265] = 2339, + [3266] = 2354, + [3267] = 2364, + [3268] = 2380, + [3269] = 2385, + [3270] = 2391, + [3271] = 2250, + [3272] = 2254, + [3273] = 2266, + [3274] = 2274, + [3275] = 2282, + [3276] = 2288, + [3277] = 2294, + [3278] = 2298, + [3279] = 2303, + [3280] = 2310, + [3281] = 2317, + [3282] = 2335, + [3283] = 2346, + [3284] = 2362, + [3285] = 2268, + [3286] = 2270, + [3287] = 2276, + [3288] = 2279, + [3289] = 2281, + [3290] = 2283, + [3291] = 2289, + [3292] = 2291, + [3293] = 2293, + [3294] = 2295, + [3295] = 2297, + [3296] = 2299, + [3297] = 2306, + [3298] = 2309, + [3299] = 2311, + [3300] = 2313, + [3301] = 2316, + [3302] = 2319, + [3303] = 2321, + [3304] = 2324, + [3305] = 2330, + [3306] = 2334, + [3307] = 2336, + [3308] = 2338, + [3309] = 2428, + [3310] = 2345, + [3311] = 2347, + [3312] = 2349, + [3313] = 2351, + [3314] = 2353, + [3315] = 2355, + [3316] = 2357, + [3317] = 2359, + [3318] = 2361, + [3319] = 2363, + [3320] = 2365, + [3321] = 2393, + [3322] = 2395, + [3323] = 2397, + [3324] = 2400, + [3325] = 2404, + [3326] = 2406, + [3327] = 2408, + [3328] = 2410, + [3329] = 2412, + [3330] = 2414, + [3331] = 2419, + [3332] = 2421, + [3333] = 3206, + [3334] = 2143, + [3335] = 292, + [3336] = 294, + [3337] = 174, + [3338] = 2341, + [3339] = 3339, + [3340] = 3340, [3341] = 3341, - [3342] = 216, - [3343] = 161, - [3344] = 3341, - [3345] = 224, - [3346] = 1287, - [3347] = 218, - [3348] = 216, - [3349] = 214, + [3342] = 1678, + [3343] = 3343, + [3344] = 3158, + [3345] = 445, + [3346] = 3346, + [3347] = 447, + [3348] = 1678, + [3349] = 3349, [3350] = 216, - [3351] = 246, - [3352] = 245, - [3353] = 235, - [3354] = 214, - [3355] = 224, - [3356] = 3356, - [3357] = 3153, - [3358] = 3358, - [3359] = 242, - [3360] = 218, - [3361] = 1287, - [3362] = 212, - [3363] = 218, - [3364] = 163, - [3365] = 230, - [3366] = 386, - [3367] = 392, - [3368] = 218, - [3369] = 239, - [3370] = 216, - [3371] = 162, - [3372] = 3358, - [3373] = 237, - [3374] = 3356, - [3375] = 3375, - [3376] = 224, - [3377] = 384, - [3378] = 3378, - [3379] = 385, - [3380] = 224, - [3381] = 603, - [3382] = 237, - [3383] = 1287, - [3384] = 224, - [3385] = 239, - [3386] = 239, - [3387] = 230, - [3388] = 242, - [3389] = 3248, - [3390] = 504, - [3391] = 1233, - [3392] = 242, - [3393] = 599, - [3394] = 239, - [3395] = 602, - [3396] = 596, - [3397] = 226, - [3398] = 595, - [3399] = 3399, - [3400] = 237, - [3401] = 609, - [3402] = 597, - [3403] = 1287, - [3404] = 230, - [3405] = 221, - [3406] = 164, - [3407] = 165, - [3408] = 230, - [3409] = 3409, - [3410] = 3410, - [3411] = 220, - [3412] = 3412, - [3413] = 225, - [3414] = 242, - [3415] = 600, - [3416] = 3255, - [3417] = 601, - [3418] = 168, - [3419] = 604, - [3420] = 166, - [3421] = 605, - [3422] = 218, - [3423] = 606, - [3424] = 237, - [3425] = 607, - [3426] = 608, - [3427] = 598, - [3428] = 167, - [3429] = 330, - [3430] = 242, - [3431] = 237, - [3432] = 326, - [3433] = 230, - [3434] = 169, - [3435] = 336, - [3436] = 335, - [3437] = 327, - [3438] = 239, - [3439] = 337, - [3440] = 338, - [3441] = 343, - [3442] = 331, - [3443] = 235, - [3444] = 323, - [3445] = 334, - [3446] = 244, - [3447] = 171, - [3448] = 340, - [3449] = 341, - [3450] = 161, - [3451] = 329, - [3452] = 324, - [3453] = 3453, - [3454] = 558, - [3455] = 325, - [3456] = 246, - [3457] = 333, - [3458] = 339, - [3459] = 332, - [3460] = 245, - [3461] = 346, - [3462] = 342, - [3463] = 328, - [3464] = 170, - [3465] = 588, - [3466] = 337, - [3467] = 341, - [3468] = 161, - [3469] = 324, - [3470] = 343, - [3471] = 342, - [3472] = 172, - [3473] = 331, - [3474] = 3474, - [3475] = 323, - [3476] = 162, - [3477] = 327, - [3478] = 335, - [3479] = 346, - [3480] = 259, - [3481] = 328, - [3482] = 336, - [3483] = 587, - [3484] = 329, - [3485] = 340, - [3486] = 338, - [3487] = 333, - [3488] = 334, - [3489] = 325, - [3490] = 163, - [3491] = 3491, - [3492] = 332, - [3493] = 2846, - [3494] = 326, - [3495] = 262, - [3496] = 339, - [3497] = 330, - [3498] = 276, - [3499] = 277, - [3500] = 162, - [3501] = 321, - [3502] = 3502, - [3503] = 396, - [3504] = 2846, - [3505] = 397, - [3506] = 163, - [3507] = 2846, - [3508] = 275, - [3509] = 3509, - [3510] = 167, - [3511] = 165, - [3512] = 168, - [3513] = 163, - [3514] = 470, - [3515] = 463, - [3516] = 462, - [3517] = 464, - [3518] = 2023, - [3519] = 166, - [3520] = 3520, - [3521] = 245, - [3522] = 461, - [3523] = 3523, - [3524] = 3524, - [3525] = 3525, - [3526] = 405, - [3527] = 3527, - [3528] = 161, - [3529] = 164, - [3530] = 1460, - [3531] = 162, - [3532] = 167, - [3533] = 461, - [3534] = 462, - [3535] = 463, - [3536] = 464, - [3537] = 462, - [3538] = 463, - [3539] = 464, - [3540] = 470, - [3541] = 3541, - [3542] = 461, - [3543] = 169, - [3544] = 170, - [3545] = 171, - [3546] = 470, - [3547] = 462, - [3548] = 1559, - [3549] = 464, - [3550] = 470, - [3551] = 168, - [3552] = 166, - [3553] = 235, - [3554] = 246, - [3555] = 1554, - [3556] = 1445, - [3557] = 164, - [3558] = 165, - [3559] = 405, - [3560] = 503, - [3561] = 1528, - [3562] = 1559, - [3563] = 3563, - [3564] = 1445, - [3565] = 405, - [3566] = 463, - [3567] = 559, - [3568] = 470, - [3569] = 384, - [3570] = 385, - [3571] = 386, - [3572] = 3474, - [3573] = 1559, - [3574] = 420, - [3575] = 2329, - [3576] = 2342, - [3577] = 2354, - [3578] = 2203, - [3579] = 2365, - [3580] = 2370, - [3581] = 2206, - [3582] = 2220, - [3583] = 2225, - [3584] = 2308, - [3585] = 2353, - [3586] = 2366, - [3587] = 2214, - [3588] = 2218, - [3589] = 2244, - [3590] = 2261, - [3591] = 2280, - [3592] = 2285, - [3593] = 2295, - [3594] = 2300, - [3595] = 2318, - [3596] = 2324, - [3597] = 2332, - [3598] = 2360, - [3599] = 2380, - [3600] = 2246, - [3601] = 2277, - [3602] = 2216, - [3603] = 2299, - [3604] = 2309, - [3605] = 2341, - [3606] = 2200, - [3607] = 2210, - [3608] = 2323, - [3609] = 2345, - [3610] = 2378, - [3611] = 2236, - [3612] = 2247, - [3613] = 2256, - [3614] = 2262, - [3615] = 2276, - [3616] = 2301, - [3617] = 2307, - [3618] = 2317, - [3619] = 2321, - [3620] = 2327, - [3621] = 2331, - [3622] = 2334, - [3623] = 2209, - [3624] = 2248, - [3625] = 2266, - [3626] = 2284, - [3627] = 2294, - [3628] = 2320, - [3629] = 2326, - [3630] = 2336, - [3631] = 2347, - [3632] = 2362, - [3633] = 2268, - [3634] = 2325, - [3635] = 2282, - [3636] = 2346, - [3637] = 2274, - [3638] = 2305, - [3639] = 2212, - [3640] = 2255, - [3641] = 2328, - [3642] = 2198, - [3643] = 2213, - [3644] = 2234, - [3645] = 2258, - [3646] = 2271, - [3647] = 2293, - [3648] = 2306, - [3649] = 2335, - [3650] = 2371, - [3651] = 2204, - [3652] = 2229, - [3653] = 2235, - [3654] = 2252, - [3655] = 2260, - [3656] = 2269, - [3657] = 2279, - [3658] = 2298, - [3659] = 2245, - [3660] = 2251, - [3661] = 2253, - [3662] = 2257, - [3663] = 464, - [3664] = 2273, - [3665] = 2275, - [3666] = 2278, - [3667] = 2281, - [3668] = 2289, - [3669] = 2292, - [3670] = 2197, - [3671] = 1633, - [3672] = 172, - [3673] = 461, - [3674] = 587, - [3675] = 521, - [3676] = 588, - [3677] = 169, - [3678] = 523, - [3679] = 501, - [3680] = 1637, - [3681] = 508, - [3682] = 511, - [3683] = 512, - [3684] = 1638, - [3685] = 170, - [3686] = 171, - [3687] = 514, - [3688] = 1640, - [3689] = 1642, - [3690] = 1519, - [3691] = 1523, - [3692] = 534, - [3693] = 535, - [3694] = 462, - [3695] = 2330, - [3696] = 2297, - [3697] = 2201, - [3698] = 2202, - [3699] = 2215, - [3700] = 2232, - [3701] = 2208, - [3702] = 2219, - [3703] = 2250, - [3704] = 2263, - [3705] = 2363, - [3706] = 2302, - [3707] = 461, - [3708] = 235, - [3709] = 495, - [3710] = 556, - [3711] = 592, - [3712] = 524, - [3713] = 525, - [3714] = 593, - [3715] = 531, - [3716] = 532, - [3717] = 246, - [3718] = 613, - [3719] = 392, - [3720] = 615, - [3721] = 3491, - [3722] = 619, - [3723] = 560, - [3724] = 563, - [3725] = 564, - [3726] = 557, - [3727] = 566, - [3728] = 572, - [3729] = 418, - [3730] = 573, - [3731] = 574, - [3732] = 575, - [3733] = 1663, - [3734] = 577, - [3735] = 579, - [3736] = 580, - [3737] = 581, - [3738] = 1664, - [3739] = 582, - [3740] = 585, - [3741] = 1666, - [3742] = 1667, - [3743] = 463, - [3744] = 2259, - [3745] = 418, - [3746] = 3746, - [3747] = 3747, - [3748] = 1559, - [3749] = 3749, - [3750] = 420, - [3751] = 3751, - [3752] = 3752, - [3753] = 3753, - [3754] = 3754, - [3755] = 3755, - [3756] = 3756, - [3757] = 3757, - [3758] = 3758, - [3759] = 3759, - [3760] = 3760, - [3761] = 3759, - [3762] = 3762, - [3763] = 3122, - [3764] = 3764, - [3765] = 3765, - [3766] = 3100, - [3767] = 3767, - [3768] = 3107, - [3769] = 3769, - [3770] = 1559, - [3771] = 3771, - [3772] = 3772, - [3773] = 3773, - [3774] = 3749, - [3775] = 3775, - [3776] = 3776, - [3777] = 3777, - [3778] = 3746, - [3779] = 3779, - [3780] = 3780, - [3781] = 3781, - [3782] = 3782, - [3783] = 3749, - [3784] = 3784, - [3785] = 3746, - [3786] = 2201, - [3787] = 2263, - [3788] = 2330, - [3789] = 3789, - [3790] = 2297, - [3791] = 2219, - [3792] = 2201, - [3793] = 3793, - [3794] = 2202, - [3795] = 2215, - [3796] = 3796, - [3797] = 2232, - [3798] = 2330, - [3799] = 3773, - [3800] = 2232, - [3801] = 2208, - [3802] = 2219, - [3803] = 2363, - [3804] = 2250, - [3805] = 2263, - [3806] = 2363, - [3807] = 3782, - [3808] = 2302, - [3809] = 2215, - [3810] = 2302, - [3811] = 2250, - [3812] = 2297, - [3813] = 2202, - [3814] = 2208, - [3815] = 3509, + [3351] = 2413, + [3352] = 2415, + [3353] = 2418, + [3354] = 2422, + [3355] = 2423, + [3356] = 2424, + [3357] = 2426, + [3358] = 2246, + [3359] = 2247, + [3360] = 2248, + [3361] = 3154, + [3362] = 3156, + [3363] = 215, + [3364] = 3339, + [3365] = 3343, + [3366] = 308, + [3367] = 163, + [3368] = 3368, + [3369] = 3349, + [3370] = 313, + [3371] = 3368, + [3372] = 319, + [3373] = 216, + [3374] = 215, + [3375] = 320, + [3376] = 2420, + [3377] = 216, + [3378] = 215, + [3379] = 236, + [3380] = 222, + [3381] = 163, + [3382] = 216, + [3383] = 3383, + [3384] = 1363, + [3385] = 3383, + [3386] = 215, + [3387] = 3387, + [3388] = 222, + [3389] = 250, + [3390] = 223, + [3391] = 223, + [3392] = 235, + [3393] = 251, + [3394] = 3394, + [3395] = 215, + [3396] = 3387, + [3397] = 246, + [3398] = 3398, + [3399] = 223, + [3400] = 516, + [3401] = 3401, + [3402] = 222, + [3403] = 216, + [3404] = 3398, + [3405] = 164, + [3406] = 3401, + [3407] = 1238, + [3408] = 251, + [3409] = 1363, + [3410] = 249, + [3411] = 165, + [3412] = 223, + [3413] = 248, + [3414] = 222, + [3415] = 218, + [3416] = 246, + [3417] = 3417, + [3418] = 3418, + [3419] = 248, + [3420] = 249, + [3421] = 3421, + [3422] = 561, + [3423] = 592, + [3424] = 594, + [3425] = 557, + [3426] = 3426, + [3427] = 568, + [3428] = 587, + [3429] = 251, + [3430] = 554, + [3431] = 584, + [3432] = 246, + [3433] = 604, + [3434] = 248, + [3435] = 3435, + [3436] = 249, + [3437] = 550, + [3438] = 223, + [3439] = 620, + [3440] = 225, + [3441] = 616, + [3442] = 3442, + [3443] = 167, + [3444] = 168, + [3445] = 1363, + [3446] = 226, + [3447] = 224, + [3448] = 228, + [3449] = 3418, + [3450] = 251, + [3451] = 3421, + [3452] = 246, + [3453] = 556, + [3454] = 248, + [3455] = 249, + [3456] = 170, + [3457] = 222, + [3458] = 171, + [3459] = 1363, + [3460] = 166, + [3461] = 627, + [3462] = 169, + [3463] = 630, + [3464] = 3464, + [3465] = 618, + [3466] = 360, + [3467] = 250, + [3468] = 172, + [3469] = 173, + [3470] = 3470, + [3471] = 363, + [3472] = 364, + [3473] = 348, + [3474] = 163, + [3475] = 365, + [3476] = 366, + [3477] = 367, + [3478] = 368, + [3479] = 235, + [3480] = 348, + [3481] = 236, + [3482] = 349, + [3483] = 249, + [3484] = 352, + [3485] = 246, + [3486] = 349, + [3487] = 350, + [3488] = 350, + [3489] = 248, + [3490] = 247, + [3491] = 251, + [3492] = 352, + [3493] = 385, + [3494] = 174, + [3495] = 364, + [3496] = 365, + [3497] = 366, + [3498] = 367, + [3499] = 368, + [3500] = 369, + [3501] = 370, + [3502] = 372, + [3503] = 3136, + [3504] = 373, + [3505] = 374, + [3506] = 375, + [3507] = 376, + [3508] = 369, + [3509] = 370, + [3510] = 378, + [3511] = 382, + [3512] = 383, + [3513] = 385, + [3514] = 360, + [3515] = 372, + [3516] = 373, + [3517] = 163, + [3518] = 374, + [3519] = 375, + [3520] = 376, + [3521] = 378, + [3522] = 382, + [3523] = 383, + [3524] = 363, + [3525] = 292, + [3526] = 3136, + [3527] = 164, + [3528] = 3528, + [3529] = 555, + [3530] = 294, + [3531] = 164, + [3532] = 175, + [3533] = 449, + [3534] = 441, + [3535] = 390, + [3536] = 446, + [3537] = 591, + [3538] = 165, + [3539] = 165, + [3540] = 445, + [3541] = 169, + [3542] = 389, + [3543] = 1922, + [3544] = 171, + [3545] = 170, + [3546] = 308, + [3547] = 3136, + [3548] = 167, + [3549] = 166, + [3550] = 168, + [3551] = 1476, + [3552] = 447, + [3553] = 313, + [3554] = 320, + [3555] = 319, + [3556] = 3136, + [3557] = 165, + [3558] = 172, + [3559] = 173, + [3560] = 469, + [3561] = 469, + [3562] = 3562, + [3563] = 389, + [3564] = 3564, + [3565] = 473, + [3566] = 477, + [3567] = 482, + [3568] = 250, + [3569] = 3569, + [3570] = 473, + [3571] = 477, + [3572] = 482, + [3573] = 3573, + [3574] = 3574, + [3575] = 512, + [3576] = 164, + [3577] = 163, + [3578] = 1489, + [3579] = 1495, + [3580] = 2053, + [3581] = 3581, + [3582] = 474, + [3583] = 1521, + [3584] = 174, + [3585] = 474, + [3586] = 1922, + [3587] = 235, + [3588] = 1522, + [3589] = 1661, + [3590] = 236, + [3591] = 613, + [3592] = 474, + [3593] = 615, + [3594] = 1922, + [3595] = 473, + [3596] = 477, + [3597] = 482, + [3598] = 598, + [3599] = 175, + [3600] = 1650, + [3601] = 3601, + [3602] = 474, + [3603] = 1607, + [3604] = 591, + [3605] = 611, + [3606] = 170, + [3607] = 555, + [3608] = 571, + [3609] = 1619, + [3610] = 1673, + [3611] = 171, + [3612] = 166, + [3613] = 609, + [3614] = 473, + [3615] = 610, + [3616] = 169, + [3617] = 167, + [3618] = 168, + [3619] = 629, + [3620] = 614, + [3621] = 619, + [3622] = 626, + [3623] = 608, + [3624] = 575, + [3625] = 577, + [3626] = 3626, + [3627] = 622, + [3628] = 562, + [3629] = 563, + [3630] = 566, + [3631] = 569, + [3632] = 570, + [3633] = 576, + [3634] = 578, + [3635] = 580, + [3636] = 586, + [3637] = 595, + [3638] = 607, + [3639] = 593, + [3640] = 596, + [3641] = 549, + [3642] = 3642, + [3643] = 560, + [3644] = 581, + [3645] = 3645, + [3646] = 553, + [3647] = 564, + [3648] = 552, + [3649] = 389, + [3650] = 597, + [3651] = 477, + [3652] = 1639, + [3653] = 1647, + [3654] = 482, + [3655] = 1495, + [3656] = 389, + [3657] = 1606, + [3658] = 1645, + [3659] = 1519, + [3660] = 469, + [3661] = 612, + [3662] = 2413, + [3663] = 2419, + [3664] = 2421, + [3665] = 594, + [3666] = 557, + [3667] = 568, + [3668] = 587, + [3669] = 2367, + [3670] = 236, + [3671] = 554, + [3672] = 584, + [3673] = 604, + [3674] = 616, + [3675] = 2381, + [3676] = 2384, + [3677] = 2390, + [3678] = 556, + [3679] = 2392, + [3680] = 2403, + [3681] = 618, + [3682] = 2251, + [3683] = 446, + [3684] = 2253, + [3685] = 473, + [3686] = 2258, + [3687] = 2304, + [3688] = 469, + [3689] = 2327, + [3690] = 592, + [3691] = 2245, + [3692] = 2401, + [3693] = 2259, + [3694] = 441, + [3695] = 627, + [3696] = 3626, + [3697] = 2284, + [3698] = 2305, + [3699] = 2352, + [3700] = 2386, + [3701] = 2256, + [3702] = 2262, + [3703] = 449, + [3704] = 2264, + [3705] = 2278, + [3706] = 3601, + [3707] = 561, + [3708] = 390, + [3709] = 2292, + [3710] = 2301, + [3711] = 2307, + [3712] = 2315, + [3713] = 2323, + [3714] = 2333, + [3715] = 2339, + [3716] = 2354, + [3717] = 2364, + [3718] = 2415, + [3719] = 2418, + [3720] = 2420, + [3721] = 2422, + [3722] = 2423, + [3723] = 2424, + [3724] = 2426, + [3725] = 2341, + [3726] = 2246, + [3727] = 2247, + [3728] = 2248, + [3729] = 2380, + [3730] = 2385, + [3731] = 2391, + [3732] = 2250, + [3733] = 2254, + [3734] = 2266, + [3735] = 2274, + [3736] = 2282, + [3737] = 2288, + [3738] = 2414, + [3739] = 2298, + [3740] = 620, + [3741] = 2303, + [3742] = 2310, + [3743] = 2317, + [3744] = 174, + [3745] = 2335, + [3746] = 2346, + [3747] = 2362, + [3748] = 2268, + [3749] = 2270, + [3750] = 2276, + [3751] = 474, + [3752] = 2279, + [3753] = 172, + [3754] = 173, + [3755] = 2281, + [3756] = 2283, + [3757] = 2289, + [3758] = 2291, + [3759] = 2293, + [3760] = 2295, + [3761] = 2297, + [3762] = 2299, + [3763] = 2306, + [3764] = 2309, + [3765] = 2311, + [3766] = 2313, + [3767] = 2316, + [3768] = 2319, + [3769] = 2321, + [3770] = 2324, + [3771] = 2330, + [3772] = 2334, + [3773] = 1495, + [3774] = 2336, + [3775] = 2338, + [3776] = 2428, + [3777] = 2345, + [3778] = 2347, + [3779] = 2349, + [3780] = 432, + [3781] = 630, + [3782] = 2351, + [3783] = 2353, + [3784] = 2355, + [3785] = 2357, + [3786] = 2359, + [3787] = 2361, + [3788] = 2363, + [3789] = 469, + [3790] = 388, + [3791] = 2365, + [3792] = 235, + [3793] = 2393, + [3794] = 2395, + [3795] = 2397, + [3796] = 2400, + [3797] = 477, + [3798] = 482, + [3799] = 2404, + [3800] = 2406, + [3801] = 2408, + [3802] = 2410, + [3803] = 2412, + [3804] = 2294, + [3805] = 3805, + [3806] = 3806, + [3807] = 3807, + [3808] = 3808, + [3809] = 3809, + [3810] = 3810, + [3811] = 3158, + [3812] = 3812, + [3813] = 3813, + [3814] = 1495, + [3815] = 3815, [3816] = 3816, - [3817] = 3525, - [3818] = 3524, + [3817] = 3817, + [3818] = 3818, [3819] = 3819, - [3820] = 3819, - [3821] = 3520, - [3822] = 3819, - [3823] = 3819, + [3820] = 3820, + [3821] = 3821, + [3822] = 3156, + [3823] = 3823, [3824] = 3824, [3825] = 3825, [3826] = 3826, - [3827] = 3827, + [3827] = 432, [3828] = 3828, [3829] = 3829, - [3830] = 3523, - [3831] = 3824, - [3832] = 3819, - [3833] = 3819, - [3834] = 3825, - [3835] = 3527, - [3836] = 3819, - [3837] = 3816, - [3838] = 3826, - [3839] = 3827, - [3840] = 3828, - [3841] = 3829, - [3842] = 211, - [3843] = 213, - [3844] = 211, - [3845] = 217, - [3846] = 213, - [3847] = 217, - [3848] = 211, - [3849] = 216, - [3850] = 214, - [3851] = 212, - [3852] = 214, - [3853] = 323, - [3854] = 325, - [3855] = 336, - [3856] = 218, - [3857] = 213, - [3858] = 337, - [3859] = 339, - [3860] = 340, - [3861] = 341, - [3862] = 326, - [3863] = 342, - [3864] = 343, - [3865] = 216, - [3866] = 334, - [3867] = 211, - [3868] = 335, - [3869] = 225, - [3870] = 338, - [3871] = 327, - [3872] = 328, - [3873] = 329, - [3874] = 330, - [3875] = 331, - [3876] = 346, - [3877] = 1106, - [3878] = 332, - [3879] = 333, - [3880] = 224, - [3881] = 226, - [3882] = 221, - [3883] = 220, - [3884] = 217, - [3885] = 212, - [3886] = 324, - [3887] = 216, - [3888] = 230, - [3889] = 237, - [3890] = 214, - [3891] = 224, - [3892] = 239, - [3893] = 218, - [3894] = 245, - [3895] = 212, - [3896] = 242, - [3897] = 226, - [3898] = 221, - [3899] = 220, - [3900] = 213, - [3901] = 244, - [3902] = 217, - [3903] = 235, - [3904] = 246, - [3905] = 225, - [3906] = 1106, - [3907] = 342, - [3908] = 325, - [3909] = 237, + [3830] = 3830, + [3831] = 3831, + [3832] = 3832, + [3833] = 3830, + [3834] = 3829, + [3835] = 3835, + [3836] = 1495, + [3837] = 3837, + [3838] = 388, + [3839] = 3829, + [3840] = 3154, + [3841] = 3831, + [3842] = 3842, + [3843] = 3843, + [3844] = 3844, + [3845] = 3831, + [3846] = 2420, + [3847] = 3847, + [3848] = 2424, + [3849] = 2247, + [3850] = 2413, + [3851] = 2248, + [3852] = 3832, + [3853] = 2415, + [3854] = 2426, + [3855] = 3837, + [3856] = 3856, + [3857] = 2413, + [3858] = 2422, + [3859] = 2341, + [3860] = 2415, + [3861] = 2246, + [3862] = 2418, + [3863] = 2420, + [3864] = 2422, + [3865] = 2423, + [3866] = 2424, + [3867] = 2426, + [3868] = 2418, + [3869] = 2341, + [3870] = 2246, + [3871] = 2247, + [3872] = 2248, + [3873] = 3873, + [3874] = 2423, + [3875] = 3875, + [3876] = 3876, + [3877] = 3876, + [3878] = 3573, + [3879] = 3876, + [3880] = 3574, + [3881] = 3876, + [3882] = 3882, + [3883] = 3883, + [3884] = 3876, + [3885] = 3875, + [3886] = 3569, + [3887] = 3887, + [3888] = 3564, + [3889] = 3581, + [3890] = 3890, + [3891] = 3891, + [3892] = 3887, + [3893] = 3882, + [3894] = 3876, + [3895] = 3876, + [3896] = 3890, + [3897] = 3883, + [3898] = 3898, + [3899] = 3891, + [3900] = 3562, + [3901] = 214, + [3902] = 3898, + [3903] = 219, + [3904] = 214, + [3905] = 217, + [3906] = 215, + [3907] = 217, + [3908] = 219, + [3909] = 214, [3910] = 218, - [3911] = 239, - [3912] = 220, - [3913] = 334, - [3914] = 330, - [3915] = 335, - [3916] = 331, - [3917] = 332, - [3918] = 333, - [3919] = 214, - [3920] = 262, - [3921] = 225, - [3922] = 242, - [3923] = 326, - [3924] = 226, - [3925] = 336, - [3926] = 161, - [3927] = 211, - [3928] = 161, - [3929] = 337, - [3930] = 338, - [3931] = 246, - [3932] = 339, - [3933] = 340, - [3934] = 341, - [3935] = 1106, - [3936] = 221, - [3937] = 216, - [3938] = 244, - [3939] = 323, - [3940] = 224, - [3941] = 346, - [3942] = 343, - [3943] = 230, - [3944] = 327, - [3945] = 245, - [3946] = 328, - [3947] = 324, - [3948] = 329, - [3949] = 259, - [3950] = 235, - [3951] = 162, - [3952] = 259, - [3953] = 172, - [3954] = 239, - [3955] = 262, - [3956] = 244, - [3957] = 275, - [3958] = 321, - [3959] = 242, - [3960] = 1519, - [3961] = 1523, - [3962] = 503, - [3963] = 213, - [3964] = 276, - [3965] = 245, - [3966] = 277, - [3967] = 296, - [3968] = 235, - [3969] = 217, - [3970] = 246, - [3971] = 214, - [3972] = 216, - [3973] = 230, - [3974] = 224, - [3975] = 237, - [3976] = 163, - [3977] = 212, - [3978] = 293, - [3979] = 1106, - [3980] = 161, - [3981] = 218, - [3982] = 245, - [3983] = 167, - [3984] = 166, - [3985] = 277, - [3986] = 235, - [3987] = 221, - [3988] = 523, - [3989] = 501, - [3990] = 246, - [3991] = 593, - [3992] = 535, - [3993] = 244, - [3994] = 276, - [3995] = 508, - [3996] = 511, - [3997] = 512, - [3998] = 613, - [3999] = 2493, - [4000] = 615, - [4001] = 514, - [4002] = 619, - [4003] = 259, - [4004] = 559, - [4005] = 560, - [4006] = 563, - [4007] = 220, - [4008] = 564, - [4009] = 557, - [4010] = 162, - [4011] = 495, - [4012] = 566, - [4013] = 293, - [4014] = 572, - [4015] = 573, - [4016] = 574, - [4017] = 575, - [4018] = 242, - [4019] = 577, - [4020] = 224, - [4021] = 579, - [4022] = 580, - [4023] = 581, - [4024] = 226, - [4025] = 582, - [4026] = 585, - [4027] = 524, - [4028] = 230, - [4029] = 218, - [4030] = 525, - [4031] = 296, - [4032] = 244, - [4033] = 163, - [4034] = 164, - [4035] = 245, - [4036] = 237, - [4037] = 165, - [4038] = 1233, - [4039] = 195, - [4040] = 534, - [4041] = 161, - [4042] = 521, - [4043] = 225, - [4044] = 531, - [4045] = 532, - [4046] = 592, - [4047] = 168, - [4048] = 275, - [4049] = 262, - [4050] = 239, - [4051] = 321, - [4052] = 556, - [4053] = 4053, - [4054] = 503, - [4055] = 405, - [4056] = 244, - [4057] = 168, - [4058] = 167, - [4059] = 166, - [4060] = 275, - [4061] = 4061, - [4062] = 4062, - [4063] = 321, - [4064] = 244, - [4065] = 199, - [4066] = 1519, - [4067] = 4067, - [4068] = 1233, - [4069] = 276, - [4070] = 262, - [4071] = 293, - [4072] = 277, - [4073] = 246, - [4074] = 245, - [4075] = 1523, - [4076] = 296, - [4077] = 164, - [4078] = 230, - [4079] = 259, - [4080] = 237, - [4081] = 169, - [4082] = 239, - [4083] = 242, - [4084] = 165, - [4085] = 161, - [4086] = 262, - [4087] = 245, - [4088] = 170, - [4089] = 171, - [4090] = 162, - [4091] = 163, - [4092] = 235, - [4093] = 259, - [4094] = 167, - [4095] = 246, - [4096] = 4096, - [4097] = 592, - [4098] = 523, - [4099] = 501, - [4100] = 343, - [4101] = 244, - [4102] = 342, - [4103] = 4103, - [4104] = 321, - [4105] = 334, - [4106] = 593, - [4107] = 535, - [4108] = 335, - [4109] = 330, - [4110] = 508, - [4111] = 511, - [4112] = 331, - [4113] = 338, - [4114] = 531, - [4115] = 512, - [4116] = 332, - [4117] = 170, - [4118] = 588, - [4119] = 613, - [4120] = 166, - [4121] = 615, - [4122] = 470, - [4123] = 276, - [4124] = 514, - [4125] = 245, - [4126] = 275, - [4127] = 235, - [4128] = 532, - [4129] = 327, - [4130] = 521, - [4131] = 619, - [4132] = 491, - [4133] = 336, - [4134] = 1417, - [4135] = 1422, - [4136] = 277, - [4137] = 1412, - [4138] = 1413, - [4139] = 324, - [4140] = 559, - [4141] = 171, - [4142] = 560, - [4143] = 563, - [4144] = 275, - [4145] = 564, - [4146] = 259, - [4147] = 557, - [4148] = 587, - [4149] = 328, - [4150] = 162, - [4151] = 325, - [4152] = 169, - [4153] = 566, - [4154] = 329, - [4155] = 340, - [4156] = 556, - [4157] = 572, - [4158] = 461, - [4159] = 163, - [4160] = 262, - [4161] = 326, - [4162] = 321, - [4163] = 534, - [4164] = 364, - [4165] = 4165, - [4166] = 405, - [4167] = 296, - [4168] = 337, - [4169] = 462, - [4170] = 333, - [4171] = 573, - [4172] = 574, - [4173] = 575, - [4174] = 463, - [4175] = 464, - [4176] = 4176, - [4177] = 392, - [4178] = 492, - [4179] = 524, - [4180] = 384, - [4181] = 385, - [4182] = 386, - [4183] = 525, - [4184] = 577, - [4185] = 293, - [4186] = 276, - [4187] = 262, - [4188] = 579, - [4189] = 4061, - [4190] = 580, - [4191] = 581, - [4192] = 357, - [4193] = 346, - [4194] = 4053, - [4195] = 4062, - [4196] = 259, - [4197] = 487, - [4198] = 277, - [4199] = 172, - [4200] = 323, - [4201] = 164, - [4202] = 165, - [4203] = 339, - [4204] = 362, - [4205] = 582, - [4206] = 585, - [4207] = 168, - [4208] = 341, - [4209] = 4209, - [4210] = 488, - [4211] = 161, - [4212] = 489, - [4213] = 495, - [4214] = 163, - [4215] = 162, - [4216] = 165, - [4217] = 4217, - [4218] = 321, - [4219] = 245, - [4220] = 329, - [4221] = 346, - [4222] = 330, - [4223] = 491, - [4224] = 392, - [4225] = 168, - [4226] = 167, - [4227] = 321, - [4228] = 492, - [4229] = 326, - [4230] = 161, - [4231] = 463, - [4232] = 464, - [4233] = 1422, - [4234] = 4234, - [4235] = 331, - [4236] = 332, - [4237] = 4237, - [4238] = 4238, - [4239] = 385, - [4240] = 487, - [4241] = 4241, - [4242] = 277, - [4243] = 276, - [4244] = 277, - [4245] = 262, - [4246] = 259, - [4247] = 325, - [4248] = 1413, - [4249] = 461, - [4250] = 166, - [4251] = 333, - [4252] = 4252, - [4253] = 384, - [4254] = 275, - [4255] = 324, - [4256] = 275, - [4257] = 293, - [4258] = 357, - [4259] = 334, - [4260] = 4176, - [4261] = 362, - [4262] = 1559, - [4263] = 235, - [4264] = 4209, - [4265] = 335, - [4266] = 420, + [3911] = 216, + [3912] = 373, + [3913] = 217, + [3914] = 368, + [3915] = 369, + [3916] = 216, + [3917] = 370, + [3918] = 372, + [3919] = 350, + [3920] = 223, + [3921] = 1165, + [3922] = 214, + [3923] = 224, + [3924] = 225, + [3925] = 226, + [3926] = 228, + [3927] = 363, + [3928] = 222, + [3929] = 219, + [3930] = 360, + [3931] = 364, + [3932] = 365, + [3933] = 366, + [3934] = 374, + [3935] = 375, + [3936] = 352, + [3937] = 349, + [3938] = 367, + [3939] = 376, + [3940] = 378, + [3941] = 382, + [3942] = 383, + [3943] = 385, + [3944] = 218, + [3945] = 215, + [3946] = 348, + [3947] = 226, + [3948] = 217, + [3949] = 246, + [3950] = 249, + [3951] = 219, + [3952] = 224, + [3953] = 218, + [3954] = 215, + [3955] = 251, + [3956] = 228, + [3957] = 235, + [3958] = 247, + [3959] = 250, + [3960] = 225, + [3961] = 1165, + [3962] = 236, + [3963] = 248, + [3964] = 216, + [3965] = 222, + [3966] = 223, + [3967] = 350, + [3968] = 236, + [3969] = 163, + [3970] = 360, + [3971] = 292, + [3972] = 247, + [3973] = 224, + [3974] = 235, + [3975] = 363, + [3976] = 364, + [3977] = 294, + [3978] = 246, + [3979] = 365, + [3980] = 366, + [3981] = 367, + [3982] = 368, + [3983] = 369, + [3984] = 370, + [3985] = 251, + [3986] = 376, + [3987] = 216, + [3988] = 375, + [3989] = 248, + [3990] = 215, + [3991] = 349, + [3992] = 163, + [3993] = 383, + [3994] = 352, + [3995] = 385, + [3996] = 1165, + [3997] = 249, + [3998] = 223, + [3999] = 225, + [4000] = 226, + [4001] = 374, + [4002] = 348, + [4003] = 228, + [4004] = 214, + [4005] = 378, + [4006] = 372, + [4007] = 373, + [4008] = 222, + [4009] = 382, + [4010] = 250, + [4011] = 165, + [4012] = 250, + [4013] = 324, + [4014] = 294, + [4015] = 300, + [4016] = 1165, + [4017] = 1522, + [4018] = 308, + [4019] = 217, + [4020] = 235, + [4021] = 175, + [4022] = 216, + [4023] = 1519, + [4024] = 313, + [4025] = 249, + [4026] = 247, + [4027] = 292, + [4028] = 512, + [4029] = 164, + [4030] = 319, + [4031] = 236, + [4032] = 251, + [4033] = 222, + [4034] = 218, + [4035] = 320, + [4036] = 215, + [4037] = 219, + [4038] = 246, + [4039] = 248, + [4040] = 163, + [4041] = 223, + [4042] = 553, + [4043] = 170, + [4044] = 171, + [4045] = 166, + [4046] = 169, + [4047] = 611, + [4048] = 571, + [4049] = 163, + [4050] = 613, + [4051] = 615, + [4052] = 610, + [4053] = 549, + [4054] = 552, + [4055] = 597, + [4056] = 614, + [4057] = 619, + [4058] = 598, + [4059] = 250, + [4060] = 247, + [4061] = 626, + [4062] = 608, + [4063] = 575, + [4064] = 577, + [4065] = 612, + [4066] = 223, + [4067] = 622, + [4068] = 562, + [4069] = 563, + [4070] = 566, + [4071] = 569, + [4072] = 570, + [4073] = 222, + [4074] = 576, + [4075] = 578, + [4076] = 580, + [4077] = 586, + [4078] = 236, + [4079] = 607, + [4080] = 250, + [4081] = 251, + [4082] = 609, + [4083] = 308, + [4084] = 246, + [4085] = 224, + [4086] = 248, + [4087] = 629, + [4088] = 324, + [4089] = 313, + [4090] = 319, + [4091] = 320, + [4092] = 249, + [4093] = 225, + [4094] = 226, + [4095] = 228, + [4096] = 164, + [4097] = 165, + [4098] = 2456, + [4099] = 300, + [4100] = 292, + [4101] = 593, + [4102] = 596, + [4103] = 560, + [4104] = 581, + [4105] = 564, + [4106] = 198, + [4107] = 247, + [4108] = 1238, + [4109] = 294, + [4110] = 167, + [4111] = 168, + [4112] = 235, + [4113] = 595, + [4114] = 171, + [4115] = 248, + [4116] = 292, + [4117] = 169, + [4118] = 249, + [4119] = 163, + [4120] = 250, + [4121] = 247, + [4122] = 1238, + [4123] = 164, + [4124] = 294, + [4125] = 235, + [4126] = 251, + [4127] = 236, + [4128] = 247, + [4129] = 167, + [4130] = 168, + [4131] = 300, + [4132] = 165, + [4133] = 512, + [4134] = 170, + [4135] = 308, + [4136] = 246, + [4137] = 324, + [4138] = 313, + [4139] = 292, + [4140] = 4140, + [4141] = 174, + [4142] = 250, + [4143] = 319, + [4144] = 294, + [4145] = 320, + [4146] = 172, + [4147] = 173, + [4148] = 4148, + [4149] = 4149, + [4150] = 1519, + [4151] = 4151, + [4152] = 166, + [4153] = 1522, + [4154] = 204, + [4155] = 389, + [4156] = 324, + [4157] = 349, + [4158] = 352, + [4159] = 497, + [4160] = 247, + [4161] = 360, + [4162] = 2494, + [4163] = 165, + [4164] = 319, + [4165] = 175, + [4166] = 300, + [4167] = 379, + [4168] = 2505, + [4169] = 469, + [4170] = 1400, + [4171] = 292, + [4172] = 167, + [4173] = 363, + [4174] = 294, + [4175] = 168, + [4176] = 174, + [4177] = 1402, + [4178] = 368, + [4179] = 369, + [4180] = 370, + [4181] = 372, + [4182] = 629, + [4183] = 294, + [4184] = 172, + [4185] = 2433, + [4186] = 173, + [4187] = 2493, + [4188] = 474, + [4189] = 364, + [4190] = 373, + [4191] = 4191, + [4192] = 2471, + [4193] = 470, + [4194] = 499, + [4195] = 374, + [4196] = 611, + [4197] = 375, + [4198] = 571, + [4199] = 376, + [4200] = 1418, + [4201] = 1419, + [4202] = 320, + [4203] = 163, + [4204] = 380, + [4205] = 378, + [4206] = 473, + [4207] = 382, + [4208] = 613, + [4209] = 4149, + [4210] = 615, + [4211] = 477, + [4212] = 482, + [4213] = 308, + [4214] = 383, + [4215] = 365, + [4216] = 593, + [4217] = 610, + [4218] = 596, + [4219] = 385, + [4220] = 4151, + [4221] = 366, + [4222] = 313, + [4223] = 549, + [4224] = 552, + [4225] = 597, + [4226] = 235, + [4227] = 607, + [4228] = 609, + [4229] = 614, + [4230] = 367, + [4231] = 313, + [4232] = 619, + [4233] = 319, + [4234] = 598, + [4235] = 560, + [4236] = 581, + [4237] = 348, + [4238] = 320, + [4239] = 626, + [4240] = 292, + [4241] = 498, + [4242] = 608, + [4243] = 575, + [4244] = 577, + [4245] = 612, + [4246] = 4246, + [4247] = 4148, + [4248] = 622, + [4249] = 381, + [4250] = 562, + [4251] = 563, + [4252] = 308, + [4253] = 566, + [4254] = 569, + [4255] = 4255, + [4256] = 570, + [4257] = 170, + [4258] = 4258, + [4259] = 350, + [4260] = 591, + [4261] = 389, + [4262] = 236, + [4263] = 576, + [4264] = 171, + [4265] = 250, + [4266] = 166, [4267] = 4267, - [4268] = 327, - [4269] = 328, - [4270] = 418, - [4271] = 336, - [4272] = 172, - [4273] = 4096, - [4274] = 462, - [4275] = 4103, - [4276] = 337, - [4277] = 296, - [4278] = 338, - [4279] = 244, - [4280] = 169, - [4281] = 276, - [4282] = 246, - [4283] = 364, - [4284] = 339, - [4285] = 1417, - [4286] = 1412, - [4287] = 397, - [4288] = 170, - [4289] = 171, - [4290] = 323, - [4291] = 470, - [4292] = 386, - [4293] = 340, - [4294] = 341, - [4295] = 342, - [4296] = 164, - [4297] = 488, - [4298] = 343, - [4299] = 4165, - [4300] = 4300, - [4301] = 489, - [4302] = 396, - [4303] = 405, - [4304] = 4304, - [4305] = 346, - [4306] = 491, + [4268] = 578, + [4269] = 553, + [4270] = 446, + [4271] = 564, + [4272] = 449, + [4273] = 390, + [4274] = 441, + [4275] = 169, + [4276] = 580, + [4277] = 586, + [4278] = 452, + [4279] = 555, + [4280] = 595, + [4281] = 164, + [4282] = 320, + [4283] = 447, + [4284] = 4258, + [4285] = 235, + [4286] = 446, + [4287] = 376, + [4288] = 348, + [4289] = 349, + [4290] = 4290, + [4291] = 370, + [4292] = 4267, + [4293] = 379, + [4294] = 170, + [4295] = 380, + [4296] = 167, + [4297] = 4191, + [4298] = 168, + [4299] = 378, + [4300] = 372, + [4301] = 4290, + [4302] = 172, + [4303] = 308, + [4304] = 4246, + [4305] = 173, + [4306] = 474, [4307] = 4307, - [4308] = 1417, - [4309] = 1422, - [4310] = 492, - [4311] = 4311, - [4312] = 1412, - [4313] = 1413, - [4314] = 4314, - [4315] = 4315, - [4316] = 4316, - [4317] = 4317, - [4318] = 4318, - [4319] = 4319, - [4320] = 4320, - [4321] = 4321, - [4322] = 4322, - [4323] = 4323, - [4324] = 4324, - [4325] = 4325, - [4326] = 323, - [4327] = 4327, - [4328] = 4328, - [4329] = 4329, - [4330] = 4330, - [4331] = 4331, + [4308] = 163, + [4309] = 4309, + [4310] = 432, + [4311] = 247, + [4312] = 313, + [4313] = 470, + [4314] = 499, + [4315] = 360, + [4316] = 352, + [4317] = 236, + [4318] = 319, + [4319] = 320, + [4320] = 388, + [4321] = 308, + [4322] = 382, + [4323] = 313, + [4324] = 383, + [4325] = 4290, + [4326] = 373, + [4327] = 319, + [4328] = 294, + [4329] = 1495, + [4330] = 389, + [4331] = 4290, [4332] = 4332, - [4333] = 4333, - [4334] = 4334, - [4335] = 4335, + [4333] = 381, + [4334] = 164, + [4335] = 4255, [4336] = 4336, - [4337] = 4337, - [4338] = 4338, - [4339] = 4339, - [4340] = 4340, - [4341] = 4341, - [4342] = 4342, - [4343] = 4343, - [4344] = 4344, + [4337] = 250, + [4338] = 498, + [4339] = 374, + [4340] = 375, + [4341] = 363, + [4342] = 364, + [4343] = 175, + [4344] = 385, [4345] = 4345, [4346] = 4346, [4347] = 4347, - [4348] = 4348, - [4349] = 244, - [4350] = 4350, - [4351] = 4351, - [4352] = 4352, - [4353] = 4353, - [4354] = 4354, - [4355] = 4355, - [4356] = 4356, - [4357] = 4357, - [4358] = 1646, - [4359] = 4359, - [4360] = 4360, - [4361] = 4361, - [4362] = 4362, + [4348] = 469, + [4349] = 449, + [4350] = 390, + [4351] = 171, + [4352] = 452, + [4353] = 300, + [4354] = 441, + [4355] = 365, + [4356] = 366, + [4357] = 367, + [4358] = 368, + [4359] = 1418, + [4360] = 1419, + [4361] = 166, + [4362] = 445, [4363] = 4363, - [4364] = 4364, - [4365] = 4365, - [4366] = 4366, - [4367] = 4367, - [4368] = 4368, - [4369] = 4369, - [4370] = 4370, - [4371] = 4371, - [4372] = 4372, - [4373] = 4373, - [4374] = 4374, - [4375] = 4375, - [4376] = 4376, + [4364] = 1400, + [4365] = 369, + [4366] = 165, + [4367] = 1402, + [4368] = 292, + [4369] = 473, + [4370] = 169, + [4371] = 350, + [4372] = 477, + [4373] = 482, + [4374] = 174, + [4375] = 324, + [4376] = 497, [4377] = 4377, [4378] = 4378, [4379] = 4379, - [4380] = 4380, - [4381] = 392, + [4380] = 449, + [4381] = 390, [4382] = 4382, - [4383] = 4383, + [4383] = 441, [4384] = 4384, - [4385] = 1717, + [4385] = 163, [4386] = 4386, [4387] = 4387, [4388] = 4388, - [4389] = 4389, + [4389] = 1400, [4390] = 4390, - [4391] = 4391, + [4391] = 349, [4392] = 4392, - [4393] = 4393, + [4393] = 292, [4394] = 4394, - [4395] = 4395, + [4395] = 1823, [4396] = 4396, [4397] = 4397, [4398] = 4398, - [4399] = 4399, + [4399] = 474, [4400] = 4400, [4401] = 4401, - [4402] = 4402, + [4402] = 250, [4403] = 4403, [4404] = 4404, [4405] = 4405, - [4406] = 324, + [4406] = 4406, [4407] = 4407, [4408] = 4408, [4409] = 4409, [4410] = 4410, - [4411] = 325, + [4411] = 4411, [4412] = 4412, [4413] = 4413, - [4414] = 4414, + [4414] = 170, [4415] = 4415, - [4416] = 262, - [4417] = 4417, - [4418] = 326, + [4416] = 4416, + [4417] = 388, + [4418] = 174, [4419] = 4419, [4420] = 4420, [4421] = 4421, [4422] = 4422, [4423] = 4423, [4424] = 4424, - [4425] = 327, - [4426] = 328, + [4425] = 445, + [4426] = 4426, [4427] = 4427, - [4428] = 329, - [4429] = 330, - [4430] = 331, - [4431] = 332, - [4432] = 333, - [4433] = 334, - [4434] = 335, - [4435] = 336, - [4436] = 337, - [4437] = 338, - [4438] = 397, - [4439] = 339, - [4440] = 340, - [4441] = 341, - [4442] = 342, - [4443] = 343, + [4428] = 4428, + [4429] = 4429, + [4430] = 4430, + [4431] = 1476, + [4432] = 294, + [4433] = 4433, + [4434] = 170, + [4435] = 473, + [4436] = 4436, + [4437] = 4437, + [4438] = 4438, + [4439] = 474, + [4440] = 4440, + [4441] = 4441, + [4442] = 4442, + [4443] = 4443, [4444] = 4444, - [4445] = 487, - [4446] = 1559, - [4447] = 2012, - [4448] = 162, - [4449] = 1460, - [4450] = 163, - [4451] = 245, - [4452] = 1990, - [4453] = 4453, - [4454] = 470, - [4455] = 462, - [4456] = 461, - [4457] = 405, - [4458] = 4217, - [4459] = 470, - [4460] = 384, - [4461] = 385, - [4462] = 386, - [4463] = 275, - [4464] = 161, - [4465] = 216, + [4445] = 4445, + [4446] = 4446, + [4447] = 4447, + [4448] = 4363, + [4449] = 4449, + [4450] = 4450, + [4451] = 319, + [4452] = 4452, + [4453] = 1794, + [4454] = 497, + [4455] = 4455, + [4456] = 4456, + [4457] = 4457, + [4458] = 4458, + [4459] = 4459, + [4460] = 313, + [4461] = 469, + [4462] = 4462, + [4463] = 4463, + [4464] = 389, + [4465] = 4465, [4466] = 4466, [4467] = 4467, - [4468] = 161, - [4469] = 169, - [4470] = 1610, - [4471] = 463, - [4472] = 464, + [4468] = 1402, + [4469] = 4469, + [4470] = 163, + [4471] = 4471, + [4472] = 1469, [4473] = 4473, - [4474] = 418, - [4475] = 4475, - [4476] = 1438, + [4474] = 4474, + [4475] = 350, + [4476] = 4476, [4477] = 4477, [4478] = 4478, [4479] = 4479, - [4480] = 4480, - [4481] = 321, - [4482] = 170, - [4483] = 171, - [4484] = 4484, - [4485] = 4485, - [4486] = 4486, - [4487] = 4487, - [4488] = 4488, - [4489] = 420, - [4490] = 4490, - [4491] = 164, - [4492] = 165, - [4493] = 276, - [4494] = 259, - [4495] = 4495, - [4496] = 277, - [4497] = 4497, - [4498] = 4498, - [4499] = 4499, - [4500] = 4500, - [4501] = 168, - [4502] = 4502, - [4503] = 488, - [4504] = 167, - [4505] = 245, - [4506] = 489, - [4507] = 172, - [4508] = 396, - [4509] = 166, - [4510] = 4510, - [4511] = 4511, - [4512] = 4366, - [4513] = 1519, - [4514] = 4514, - [4515] = 4515, - [4516] = 1523, - [4517] = 4517, - [4518] = 277, - [4519] = 1438, - [4520] = 418, - [4521] = 598, - [4522] = 405, - [4523] = 262, - [4524] = 596, - [4525] = 384, - [4526] = 4480, - [4527] = 214, - [4528] = 167, - [4529] = 4486, - [4530] = 600, - [4531] = 386, - [4532] = 1559, - [4533] = 601, - [4534] = 4534, - [4535] = 602, - [4536] = 216, - [4537] = 487, - [4538] = 420, - [4539] = 1417, + [4480] = 447, + [4481] = 171, + [4482] = 1765, + [4483] = 4483, + [4484] = 470, + [4485] = 446, + [4486] = 352, + [4487] = 477, + [4488] = 172, + [4489] = 499, + [4490] = 173, + [4491] = 4491, + [4492] = 482, + [4493] = 4493, + [4494] = 247, + [4495] = 360, + [4496] = 4496, + [4497] = 171, + [4498] = 363, + [4499] = 364, + [4500] = 365, + [4501] = 366, + [4502] = 367, + [4503] = 368, + [4504] = 4504, + [4505] = 369, + [4506] = 370, + [4507] = 372, + [4508] = 4508, + [4509] = 373, + [4510] = 374, + [4511] = 375, + [4512] = 376, + [4513] = 432, + [4514] = 378, + [4515] = 382, + [4516] = 4516, + [4517] = 383, + [4518] = 385, + [4519] = 4519, + [4520] = 4520, + [4521] = 4521, + [4522] = 4522, + [4523] = 4523, + [4524] = 4524, + [4525] = 4525, + [4526] = 4526, + [4527] = 498, + [4528] = 4528, + [4529] = 1495, + [4530] = 166, + [4531] = 4531, + [4532] = 1418, + [4533] = 1419, + [4534] = 164, + [4535] = 4535, + [4536] = 4536, + [4537] = 4537, + [4538] = 4538, + [4539] = 4539, [4540] = 4540, - [4541] = 4541, - [4542] = 1422, - [4543] = 4543, + [4541] = 320, + [4542] = 165, + [4543] = 452, [4544] = 4544, - [4545] = 218, - [4546] = 595, - [4547] = 599, - [4548] = 166, - [4549] = 462, - [4550] = 463, - [4551] = 464, + [4545] = 4545, + [4546] = 4546, + [4547] = 169, + [4548] = 167, + [4549] = 4549, + [4550] = 175, + [4551] = 4551, [4552] = 4552, - [4553] = 1646, - [4554] = 4554, - [4555] = 276, - [4556] = 385, - [4557] = 4409, - [4558] = 597, - [4559] = 603, - [4560] = 1412, - [4561] = 1413, - [4562] = 461, - [4563] = 604, + [4553] = 4553, + [4554] = 168, + [4555] = 4555, + [4556] = 4556, + [4557] = 215, + [4558] = 308, + [4559] = 169, + [4560] = 4560, + [4561] = 4561, + [4562] = 4562, + [4563] = 4563, [4564] = 4564, - [4565] = 396, - [4566] = 169, - [4567] = 605, - [4568] = 606, - [4569] = 170, - [4570] = 171, - [4571] = 164, - [4572] = 4572, + [4565] = 4565, + [4566] = 4566, + [4567] = 348, + [4568] = 4568, + [4569] = 4569, + [4570] = 4570, + [4571] = 4571, + [4572] = 166, [4573] = 4573, - [4574] = 275, - [4575] = 488, - [4576] = 1460, - [4577] = 470, - [4578] = 489, - [4579] = 392, - [4580] = 4543, - [4581] = 4544, - [4582] = 4554, - [4583] = 245, - [4584] = 470, - [4585] = 397, + [4574] = 4574, + [4575] = 4575, + [4576] = 4576, + [4577] = 4577, + [4578] = 4578, + [4579] = 4579, + [4580] = 4580, + [4581] = 4581, + [4582] = 4582, + [4583] = 4583, + [4584] = 4584, + [4585] = 250, [4586] = 4586, - [4587] = 1717, - [4588] = 607, - [4589] = 4541, - [4590] = 608, - [4591] = 4591, - [4592] = 4592, - [4593] = 4478, - [4594] = 491, - [4595] = 4479, - [4596] = 1651, - [4597] = 503, - [4598] = 609, - [4599] = 4360, - [4600] = 1554, - [4601] = 1528, - [4602] = 321, - [4603] = 4603, - [4604] = 4363, - [4605] = 4364, - [4606] = 4541, - [4607] = 214, - [4608] = 224, - [4609] = 492, - [4610] = 4365, - [4611] = 172, - [4612] = 162, - [4613] = 4404, - [4614] = 259, - [4615] = 4615, - [4616] = 1610, - [4617] = 4379, - [4618] = 4380, - [4619] = 4387, - [4620] = 4388, - [4621] = 4552, - [4622] = 163, - [4623] = 4623, - [4624] = 4389, - [4625] = 4623, - [4626] = 168, - [4627] = 4541, - [4628] = 4397, - [4629] = 4398, - [4630] = 4399, - [4631] = 4401, - [4632] = 4402, - [4633] = 4633, - [4634] = 4403, - [4635] = 165, - [4636] = 2001, - [4637] = 1559, - [4638] = 2001, - [4639] = 245, + [4587] = 175, + [4588] = 4588, + [4589] = 4474, + [4590] = 4377, + [4591] = 4576, + [4592] = 4579, + [4593] = 4593, + [4594] = 1522, + [4595] = 4580, + [4596] = 474, + [4597] = 4597, + [4598] = 1495, + [4599] = 223, + [4600] = 452, + [4601] = 4561, + [4602] = 432, + [4603] = 319, + [4604] = 4593, + [4605] = 4605, + [4606] = 474, + [4607] = 4564, + [4608] = 4581, + [4609] = 4582, + [4610] = 164, + [4611] = 388, + [4612] = 173, + [4613] = 4613, + [4614] = 222, + [4615] = 216, + [4616] = 4616, + [4617] = 1823, + [4618] = 4618, + [4619] = 1765, + [4620] = 215, + [4621] = 4583, + [4622] = 320, + [4623] = 4553, + [4624] = 473, + [4625] = 294, + [4626] = 4597, + [4627] = 469, + [4628] = 216, + [4629] = 4629, + [4630] = 166, + [4631] = 4551, + [4632] = 4565, + [4633] = 1400, + [4634] = 1469, + [4635] = 4635, + [4636] = 512, + [4637] = 171, + [4638] = 4638, + [4639] = 308, [4640] = 4640, - [4641] = 170, - [4642] = 171, - [4643] = 214, - [4644] = 492, - [4645] = 321, - [4646] = 560, - [4647] = 230, - [4648] = 582, - [4649] = 4649, - [4650] = 4650, - [4651] = 164, - [4652] = 165, - [4653] = 488, - [4654] = 4654, - [4655] = 4655, - [4656] = 4656, - [4657] = 275, - [4658] = 216, - [4659] = 596, - [4660] = 4660, - [4661] = 4661, - [4662] = 4662, - [4663] = 4663, - [4664] = 4633, - [4665] = 613, - [4666] = 619, - [4667] = 2005, - [4668] = 597, - [4669] = 598, - [4670] = 489, - [4671] = 599, - [4672] = 2025, - [4673] = 237, - [4674] = 1528, - [4675] = 4603, - [4676] = 581, - [4677] = 4677, - [4678] = 535, - [4679] = 1637, - [4680] = 168, - [4681] = 1638, - [4682] = 167, - [4683] = 166, - [4684] = 4684, - [4685] = 587, - [4686] = 508, - [4687] = 4687, - [4688] = 4688, - [4689] = 511, - [4690] = 2005, - [4691] = 463, - [4692] = 1663, - [4693] = 1664, - [4694] = 464, - [4695] = 239, - [4696] = 1519, - [4697] = 4697, + [4641] = 4641, + [4642] = 4642, + [4643] = 1402, + [4644] = 498, + [4645] = 4645, + [4646] = 313, + [4647] = 4647, + [4648] = 4635, + [4649] = 4571, + [4650] = 445, + [4651] = 4574, + [4652] = 167, + [4653] = 168, + [4654] = 446, + [4655] = 447, + [4656] = 4642, + [4657] = 165, + [4658] = 4658, + [4659] = 169, + [4660] = 170, + [4661] = 1489, + [4662] = 1521, + [4663] = 1679, + [4664] = 1419, + [4665] = 4545, + [4666] = 4556, + [4667] = 4575, + [4668] = 4668, + [4669] = 4641, + [4670] = 477, + [4671] = 482, + [4672] = 172, + [4673] = 250, + [4674] = 4674, + [4675] = 4560, + [4676] = 470, + [4677] = 1519, + [4678] = 4577, + [4679] = 449, + [4680] = 390, + [4681] = 499, + [4682] = 441, + [4683] = 1418, + [4684] = 4578, + [4685] = 4685, + [4686] = 389, + [4687] = 4473, + [4688] = 497, + [4689] = 174, + [4690] = 1476, + [4691] = 292, + [4692] = 1794, + [4693] = 4693, + [4694] = 570, + [4695] = 215, + [4696] = 319, + [4697] = 167, [4698] = 4698, [4699] = 4699, - [4700] = 600, - [4701] = 4701, - [4702] = 224, - [4703] = 601, - [4704] = 602, + [4700] = 4613, + [4701] = 560, + [4702] = 168, + [4703] = 4703, + [4704] = 622, [4705] = 4705, - [4706] = 512, - [4707] = 579, - [4708] = 4708, - [4709] = 4709, - [4710] = 564, - [4711] = 276, + [4706] = 1606, + [4707] = 1645, + [4708] = 620, + [4709] = 595, + [4710] = 4710, + [4711] = 610, [4712] = 4712, - [4713] = 4713, - [4714] = 4714, - [4715] = 585, - [4716] = 1633, - [4717] = 1554, - [4718] = 4718, - [4719] = 4719, - [4720] = 242, - [4721] = 4591, - [4722] = 1640, - [4723] = 277, - [4724] = 218, - [4725] = 470, - [4726] = 1642, - [4727] = 166, - [4728] = 595, - [4729] = 4729, - [4730] = 549, - [4731] = 1651, - [4732] = 550, + [4713] = 4588, + [4714] = 4616, + [4715] = 320, + [4716] = 549, + [4717] = 4717, + [4718] = 611, + [4719] = 4685, + [4720] = 2471, + [4721] = 250, + [4722] = 4722, + [4723] = 553, + [4724] = 609, + [4725] = 4725, + [4726] = 566, + [4727] = 174, + [4728] = 4668, + [4729] = 597, + [4730] = 4730, + [4731] = 2471, + [4732] = 313, [4733] = 4733, [4734] = 4734, - [4735] = 4735, - [4736] = 603, - [4737] = 604, - [4738] = 4738, - [4739] = 4739, - [4740] = 605, - [4741] = 4741, - [4742] = 606, - [4743] = 607, - [4744] = 168, - [4745] = 557, - [4746] = 1523, - [4747] = 559, - [4748] = 608, - [4749] = 4749, - [4750] = 4750, - [4751] = 534, + [4735] = 562, + [4736] = 4736, + [4737] = 1679, + [4738] = 602, + [4739] = 627, + [4740] = 571, + [4741] = 613, + [4742] = 576, + [4743] = 630, + [4744] = 591, + [4745] = 615, + [4746] = 578, + [4747] = 4747, + [4748] = 512, + [4749] = 473, + [4750] = 2505, + [4751] = 1521, [4752] = 4752, - [4753] = 4753, + [4753] = 592, [4754] = 4754, - [4755] = 4755, + [4755] = 561, [4756] = 4756, - [4757] = 4757, - [4758] = 4758, - [4759] = 1666, - [4760] = 522, - [4761] = 4761, - [4762] = 1667, - [4763] = 4763, - [4764] = 521, + [4757] = 1607, + [4758] = 1522, + [4759] = 1619, + [4760] = 172, + [4761] = 173, + [4762] = 4629, + [4763] = 497, + [4764] = 469, [4765] = 4765, - [4766] = 4564, - [4767] = 495, - [4768] = 556, + [4766] = 223, + [4767] = 474, + [4768] = 170, [4769] = 4769, - [4770] = 462, - [4771] = 487, - [4772] = 2025, - [4773] = 566, - [4774] = 592, - [4775] = 4515, - [4776] = 572, + [4770] = 1519, + [4771] = 2407, + [4772] = 608, + [4773] = 249, + [4774] = 4774, + [4775] = 248, + [4776] = 4776, [4777] = 4777, - [4778] = 503, - [4779] = 4779, - [4780] = 573, - [4781] = 167, - [4782] = 574, - [4783] = 575, - [4784] = 524, - [4785] = 525, + [4778] = 4778, + [4779] = 619, + [4780] = 4780, + [4781] = 216, + [4782] = 4618, + [4783] = 171, + [4784] = 308, + [4785] = 498, [4786] = 4786, - [4787] = 461, - [4788] = 4788, - [4789] = 577, - [4790] = 580, - [4791] = 4572, - [4792] = 523, - [4793] = 501, - [4794] = 4540, - [4795] = 588, - [4796] = 609, - [4797] = 593, - [4798] = 491, - [4799] = 531, - [4800] = 532, - [4801] = 4514, - [4802] = 615, - [4803] = 4803, - [4804] = 169, - [4805] = 563, + [4787] = 593, + [4788] = 564, + [4789] = 4674, + [4790] = 452, + [4791] = 4791, + [4792] = 4792, + [4793] = 599, + [4794] = 4794, + [4795] = 601, + [4796] = 555, + [4797] = 166, + [4798] = 4798, + [4799] = 563, + [4800] = 616, + [4801] = 4801, + [4802] = 556, + [4803] = 618, + [4804] = 251, + [4805] = 569, [4806] = 4806, - [4807] = 2387, - [4808] = 514, - [4809] = 503, - [4810] = 4810, - [4811] = 4708, - [4812] = 4812, - [4813] = 607, - [4814] = 511, - [4815] = 4815, - [4816] = 508, - [4817] = 577, - [4818] = 619, - [4819] = 579, - [4820] = 512, - [4821] = 4806, - [4822] = 4822, - [4823] = 580, - [4824] = 581, - [4825] = 4825, - [4826] = 575, - [4827] = 593, - [4828] = 559, - [4829] = 2387, - [4830] = 211, - [4831] = 577, - [4832] = 579, - [4833] = 593, - [4834] = 582, - [4835] = 1633, - [4836] = 585, - [4837] = 1663, - [4838] = 239, - [4839] = 4640, - [4840] = 4840, - [4841] = 4650, - [4842] = 4677, - [4843] = 521, - [4844] = 514, - [4845] = 550, - [4846] = 1664, - [4847] = 2479, - [4848] = 531, - [4849] = 169, - [4850] = 2919, - [4851] = 4851, + [4807] = 4807, + [4808] = 4808, + [4809] = 4809, + [4810] = 596, + [4811] = 4811, + [4812] = 1650, + [4813] = 1661, + [4814] = 4814, + [4815] = 607, + [4816] = 477, + [4817] = 4817, + [4818] = 4818, + [4819] = 2433, + [4820] = 4820, + [4821] = 575, + [4822] = 1639, + [4823] = 482, + [4824] = 4824, + [4825] = 581, + [4826] = 1673, + [4827] = 222, + [4828] = 169, + [4829] = 586, + [4830] = 1489, + [4831] = 4831, + [4832] = 4832, + [4833] = 594, + [4834] = 557, + [4835] = 568, + [4836] = 4836, + [4837] = 2505, + [4838] = 587, + [4839] = 554, + [4840] = 626, + [4841] = 577, + [4842] = 470, + [4843] = 4843, + [4844] = 499, + [4845] = 584, + [4846] = 604, + [4847] = 1495, + [4848] = 1647, + [4849] = 4849, + [4850] = 512, + [4851] = 246, [4852] = 4852, - [4853] = 532, + [4853] = 552, [4854] = 4854, [4855] = 4855, - [4856] = 4851, - [4857] = 4812, - [4858] = 4733, + [4856] = 612, + [4857] = 2433, + [4858] = 4858, [4859] = 4859, - [4860] = 495, - [4861] = 580, - [4862] = 4763, - [4863] = 522, - [4864] = 4761, - [4865] = 563, - [4866] = 495, - [4867] = 218, - [4868] = 581, - [4869] = 582, - [4870] = 4859, - [4871] = 592, - [4872] = 556, - [4873] = 2005, + [4860] = 598, + [4861] = 629, + [4862] = 4862, + [4863] = 614, + [4864] = 580, + [4865] = 2433, + [4866] = 549, + [4867] = 597, + [4868] = 598, + [4869] = 4869, + [4870] = 599, + [4871] = 601, + [4872] = 4806, + [4873] = 4873, [4874] = 4874, - [4875] = 613, + [4875] = 4875, [4876] = 4876, [4877] = 4877, [4878] = 4878, - [4879] = 585, - [4880] = 608, - [4881] = 212, - [4882] = 534, - [4883] = 595, - [4884] = 587, + [4879] = 4703, + [4880] = 4880, + [4881] = 602, + [4882] = 4778, + [4883] = 214, + [4884] = 611, [4885] = 4885, - [4886] = 557, - [4887] = 4887, + [4886] = 4886, + [4887] = 571, [4888] = 4888, - [4889] = 4889, - [4890] = 4662, - [4891] = 609, - [4892] = 523, - [4893] = 596, - [4894] = 560, - [4895] = 4895, - [4896] = 563, - [4897] = 212, - [4898] = 564, - [4899] = 4899, - [4900] = 534, - [4901] = 557, - [4902] = 4902, - [4903] = 4903, - [4904] = 4904, - [4905] = 592, - [4906] = 4906, - [4907] = 2965, - [4908] = 501, - [4909] = 556, - [4910] = 605, - [4911] = 560, - [4912] = 4912, - [4913] = 514, - [4914] = 598, - [4915] = 564, - [4916] = 599, - [4917] = 1233, - [4918] = 566, + [4889] = 2485, + [4890] = 4890, + [4891] = 613, + [4892] = 615, + [4893] = 174, + [4894] = 610, + [4895] = 172, + [4896] = 173, + [4897] = 552, + [4898] = 4898, + [4899] = 614, + [4900] = 4900, + [4901] = 619, + [4902] = 626, + [4903] = 608, + [4904] = 575, + [4905] = 577, + [4906] = 612, + [4907] = 622, + [4908] = 562, + [4909] = 563, + [4910] = 566, + [4911] = 569, + [4912] = 570, + [4913] = 576, + [4914] = 578, + [4915] = 580, + [4916] = 586, + [4917] = 595, + [4918] = 607, [4919] = 4919, - [4920] = 242, - [4921] = 615, - [4922] = 511, - [4923] = 4662, - [4924] = 4924, - [4925] = 4925, - [4926] = 602, - [4927] = 572, - [4928] = 588, - [4929] = 573, - [4930] = 170, - [4931] = 566, - [4932] = 549, - [4933] = 572, - [4934] = 613, - [4935] = 1640, - [4936] = 4936, - [4937] = 1642, - [4938] = 230, - [4939] = 4939, - [4940] = 4940, - [4941] = 4941, - [4942] = 2920, - [4943] = 4943, - [4944] = 4687, - [4945] = 4945, - [4946] = 573, - [4947] = 4887, - [4948] = 574, + [4920] = 4920, + [4921] = 4921, + [4922] = 4922, + [4923] = 609, + [4924] = 2936, + [4925] = 2937, + [4926] = 4926, + [4927] = 629, + [4928] = 549, + [4929] = 597, + [4930] = 598, + [4931] = 4931, + [4932] = 4932, + [4933] = 4933, + [4934] = 2943, + [4935] = 223, + [4936] = 593, + [4937] = 596, + [4938] = 222, + [4939] = 251, + [4940] = 246, + [4941] = 560, + [4942] = 581, + [4943] = 248, + [4944] = 249, + [4945] = 553, + [4946] = 564, + [4947] = 4947, + [4948] = 4948, [4949] = 4949, - [4950] = 4950, - [4951] = 523, - [4952] = 531, - [4953] = 521, - [4954] = 603, - [4955] = 524, - [4956] = 4956, - [4957] = 1637, - [4958] = 525, - [4959] = 575, - [4960] = 171, - [4961] = 4956, - [4962] = 224, - [4963] = 524, - [4964] = 4925, - [4965] = 1638, - [4966] = 619, - [4967] = 4967, - [4968] = 4968, - [4969] = 4969, - [4970] = 501, - [4971] = 4750, + [4950] = 4703, + [4951] = 4858, + [4952] = 4952, + [4953] = 4953, + [4954] = 1673, + [4955] = 4955, + [4956] = 1680, + [4957] = 4957, + [4958] = 1686, + [4959] = 2407, + [4960] = 4960, + [4961] = 4961, + [4962] = 4962, + [4963] = 4862, + [4964] = 1639, + [4965] = 1647, + [4966] = 4960, + [4967] = 4961, + [4968] = 1606, + [4969] = 1645, + [4970] = 4970, + [4971] = 4971, [4972] = 4972, - [4973] = 2001, - [4974] = 512, - [4975] = 525, - [4976] = 4976, - [4977] = 615, - [4978] = 532, - [4979] = 4979, - [4980] = 574, - [4981] = 4981, - [4982] = 1666, - [4983] = 4983, - [4984] = 1667, - [4985] = 237, - [4986] = 4895, - [4987] = 211, - [4988] = 4769, - [4989] = 2503, - [4990] = 559, - [4991] = 606, - [4992] = 535, - [4993] = 600, - [4994] = 535, - [4995] = 604, - [4996] = 508, - [4997] = 2025, - [4998] = 601, - [4999] = 597, - [5000] = 5000, - [5001] = 5001, - [5002] = 5002, - [5003] = 5003, - [5004] = 5004, - [5005] = 4924, - [5006] = 4906, - [5007] = 4919, - [5008] = 214, + [4973] = 629, + [4974] = 4974, + [4975] = 4975, + [4976] = 218, + [4977] = 620, + [4978] = 214, + [4979] = 627, + [4980] = 630, + [4981] = 592, + [4982] = 561, + [4983] = 1607, + [4984] = 1619, + [4985] = 4752, + [4986] = 4754, + [4987] = 4769, + [4988] = 616, + [4989] = 556, + [4990] = 1238, + [4991] = 618, + [4992] = 4774, + [4993] = 1650, + [4994] = 1661, + [4995] = 4791, + [4996] = 4798, + [4997] = 594, + [4998] = 557, + [4999] = 568, + [5000] = 587, + [5001] = 554, + [5002] = 584, + [5003] = 604, + [5004] = 4807, + [5005] = 5005, + [5006] = 5006, + [5007] = 5007, + [5008] = 5008, [5009] = 5009, - [5010] = 5010, - [5011] = 4943, - [5012] = 216, + [5010] = 611, + [5011] = 593, + [5012] = 596, [5013] = 5013, - [5014] = 5014, - [5015] = 3153, - [5016] = 5016, - [5017] = 5017, - [5018] = 5018, - [5019] = 5019, - [5020] = 5020, - [5021] = 5021, + [5014] = 571, + [5015] = 560, + [5016] = 581, + [5017] = 613, + [5018] = 615, + [5019] = 610, + [5020] = 553, + [5021] = 564, [5022] = 5022, - [5023] = 4950, + [5023] = 552, [5024] = 5024, - [5025] = 5025, - [5026] = 2503, - [5027] = 4902, - [5028] = 4876, - [5029] = 5029, - [5030] = 5030, - [5031] = 5031, - [5032] = 5032, - [5033] = 5033, - [5034] = 5034, - [5035] = 5035, - [5036] = 5036, - [5037] = 5037, - [5038] = 5038, - [5039] = 5039, - [5040] = 5040, - [5041] = 5041, - [5042] = 5042, - [5043] = 5043, - [5044] = 5044, - [5045] = 5045, - [5046] = 2479, - [5047] = 5047, - [5048] = 2648, - [5049] = 230, - [5050] = 213, - [5051] = 237, - [5052] = 239, - [5053] = 242, - [5054] = 5054, - [5055] = 213, - [5056] = 225, - [5057] = 4945, - [5058] = 4899, - [5059] = 217, - [5060] = 5060, - [5061] = 4939, - [5062] = 4852, + [5025] = 614, + [5026] = 619, + [5027] = 5027, + [5028] = 2471, + [5029] = 626, + [5030] = 218, + [5031] = 608, + [5032] = 4931, + [5033] = 4932, + [5034] = 4933, + [5035] = 575, + [5036] = 577, + [5037] = 612, + [5038] = 622, + [5039] = 562, + [5040] = 563, + [5041] = 566, + [5042] = 569, + [5043] = 570, + [5044] = 576, + [5045] = 3387, + [5046] = 218, + [5047] = 578, + [5048] = 580, + [5049] = 586, + [5050] = 595, + [5051] = 607, + [5052] = 591, + [5053] = 2505, + [5054] = 555, + [5055] = 4955, + [5056] = 4957, + [5057] = 609, + [5058] = 2469, + [5059] = 5059, + [5060] = 3421, + [5061] = 5061, + [5062] = 5062, [5063] = 5063, [5064] = 5064, [5065] = 5065, - [5066] = 5047, - [5067] = 5054, + [5066] = 5066, + [5067] = 5067, [5068] = 5068, [5069] = 5069, - [5070] = 5070, - [5071] = 1233, - [5072] = 5072, - [5073] = 5073, - [5074] = 5074, + [5070] = 215, + [5071] = 2469, + [5072] = 4703, + [5073] = 4890, + [5074] = 5022, [5075] = 5075, - [5076] = 5060, - [5077] = 5077, - [5078] = 5078, - [5079] = 2387, - [5080] = 4840, - [5081] = 4912, - [5082] = 595, - [5083] = 4972, + [5076] = 591, + [5077] = 627, + [5078] = 555, + [5079] = 5079, + [5080] = 5080, + [5081] = 5081, + [5082] = 630, + [5083] = 2485, [5084] = 5084, [5085] = 5085, - [5086] = 226, - [5087] = 221, - [5088] = 220, - [5089] = 4888, - [5090] = 596, - [5091] = 5091, - [5092] = 598, - [5093] = 599, - [5094] = 5094, + [5086] = 5086, + [5087] = 5005, + [5088] = 592, + [5089] = 5006, + [5090] = 217, + [5091] = 561, + [5092] = 4919, + [5093] = 5093, + [5094] = 4920, [5095] = 5095, - [5096] = 600, - [5097] = 601, - [5098] = 602, - [5099] = 5099, + [5096] = 4886, + [5097] = 5097, + [5098] = 5098, + [5099] = 1238, [5100] = 5100, [5101] = 5101, - [5102] = 603, - [5103] = 604, - [5104] = 605, - [5105] = 606, - [5106] = 607, - [5107] = 608, - [5108] = 609, + [5102] = 5102, + [5103] = 5103, + [5104] = 5104, + [5105] = 5105, + [5106] = 5106, + [5107] = 5107, + [5108] = 5108, [5109] = 5109, - [5110] = 214, - [5111] = 216, - [5112] = 2001, - [5113] = 4854, - [5114] = 2005, + [5110] = 5110, + [5111] = 616, + [5112] = 219, + [5113] = 4921, + [5114] = 4922, [5115] = 5115, - [5116] = 4976, - [5117] = 5117, - [5118] = 5118, - [5119] = 2025, - [5120] = 4941, - [5121] = 5121, + [5116] = 556, + [5117] = 1680, + [5118] = 1686, + [5119] = 5119, + [5120] = 618, + [5121] = 5024, [5122] = 5122, - [5123] = 4662, + [5123] = 5123, [5124] = 5124, - [5125] = 5084, - [5126] = 4979, - [5127] = 4981, - [5128] = 214, + [5125] = 5125, + [5126] = 5126, + [5127] = 5127, + [5128] = 225, [5129] = 5129, - [5130] = 216, - [5131] = 5131, + [5130] = 5130, + [5131] = 226, [5132] = 5132, [5133] = 5133, - [5134] = 5115, + [5134] = 5134, [5135] = 5135, - [5136] = 225, - [5137] = 3153, - [5138] = 226, - [5139] = 221, - [5140] = 220, + [5136] = 5136, + [5137] = 5137, + [5138] = 5138, + [5139] = 251, + [5140] = 5140, [5141] = 5141, - [5142] = 212, - [5143] = 4904, + [5142] = 5142, + [5143] = 217, [5144] = 5144, [5145] = 5145, [5146] = 5146, [5147] = 5147, - [5148] = 5148, - [5149] = 5149, - [5150] = 4810, - [5151] = 587, - [5152] = 588, - [5153] = 217, - [5154] = 5154, - [5155] = 597, - [5156] = 2479, - [5157] = 5157, - [5158] = 5158, - [5159] = 5159, - [5160] = 3153, - [5161] = 5161, - [5162] = 5162, - [5163] = 224, - [5164] = 3255, - [5165] = 216, - [5166] = 212, + [5148] = 246, + [5149] = 228, + [5150] = 594, + [5151] = 248, + [5152] = 249, + [5153] = 557, + [5154] = 4873, + [5155] = 5007, + [5156] = 568, + [5157] = 587, + [5158] = 163, + [5159] = 554, + [5160] = 584, + [5161] = 604, + [5162] = 4874, + [5163] = 5163, + [5164] = 5164, + [5165] = 4885, + [5166] = 5166, [5167] = 5167, - [5168] = 218, - [5169] = 5169, - [5170] = 5170, - [5171] = 224, - [5172] = 5162, - [5173] = 5173, + [5168] = 5168, + [5169] = 2663, + [5170] = 5027, + [5171] = 5080, + [5172] = 5172, + [5173] = 216, [5174] = 5174, - [5175] = 3153, - [5176] = 5176, - [5177] = 3248, - [5178] = 218, - [5179] = 5170, - [5180] = 5180, - [5181] = 4718, - [5182] = 214, - [5183] = 4719, - [5184] = 216, - [5185] = 214, - [5186] = 214, - [5187] = 5187, - [5188] = 216, - [5189] = 5170, - [5190] = 5170, - [5191] = 5170, - [5192] = 5192, - [5193] = 5170, - [5194] = 5170, - [5195] = 2503, - [5196] = 5196, - [5197] = 3248, - [5198] = 3255, - [5199] = 225, - [5200] = 226, - [5201] = 221, - [5202] = 220, - [5203] = 224, - [5204] = 218, - [5205] = 161, - [5206] = 5206, - [5207] = 5174, - [5208] = 5208, + [5175] = 5008, + [5176] = 215, + [5177] = 4888, + [5178] = 5178, + [5179] = 5179, + [5180] = 5009, + [5181] = 219, + [5182] = 5182, + [5183] = 2407, + [5184] = 5184, + [5185] = 4869, + [5186] = 5186, + [5187] = 5086, + [5188] = 5188, + [5189] = 4876, + [5190] = 5190, + [5191] = 4898, + [5192] = 224, + [5193] = 5115, + [5194] = 4900, + [5195] = 5195, + [5196] = 5107, + [5197] = 5197, + [5198] = 5198, + [5199] = 5190, + [5200] = 5200, + [5201] = 216, + [5202] = 3418, + [5203] = 5203, + [5204] = 224, + [5205] = 3387, + [5206] = 225, + [5207] = 226, + [5208] = 228, [5209] = 5209, - [5210] = 4936, - [5211] = 4815, - [5212] = 1233, - [5213] = 5213, + [5210] = 5210, + [5211] = 218, + [5212] = 216, + [5213] = 620, [5214] = 5214, - [5215] = 214, - [5216] = 5208, - [5217] = 5209, - [5218] = 216, - [5219] = 163, - [5220] = 237, - [5221] = 5221, - [5222] = 224, - [5223] = 225, - [5224] = 242, - [5225] = 226, - [5226] = 221, - [5227] = 220, - [5228] = 230, - [5229] = 235, - [5230] = 246, - [5231] = 5213, - [5232] = 5214, - [5233] = 218, - [5234] = 5234, - [5235] = 5235, - [5236] = 5206, - [5237] = 219, - [5238] = 5238, - [5239] = 5208, - [5240] = 5209, - [5241] = 230, - [5242] = 162, + [5215] = 224, + [5216] = 225, + [5217] = 226, + [5218] = 228, + [5219] = 215, + [5220] = 5220, + [5221] = 3387, + [5222] = 3421, + [5223] = 216, + [5224] = 164, + [5225] = 5225, + [5226] = 165, + [5227] = 223, + [5228] = 3421, + [5229] = 5229, + [5230] = 215, + [5231] = 5231, + [5232] = 5232, + [5233] = 5233, + [5234] = 5225, + [5235] = 3387, + [5236] = 5236, + [5237] = 3387, + [5238] = 222, + [5239] = 223, + [5240] = 5240, + [5241] = 5229, + [5242] = 3418, [5243] = 5243, - [5244] = 237, - [5245] = 5213, - [5246] = 5214, - [5247] = 239, - [5248] = 242, + [5244] = 222, + [5245] = 3418, + [5246] = 5229, + [5247] = 5247, + [5248] = 215, [5249] = 5249, - [5250] = 5234, - [5251] = 245, - [5252] = 4825, - [5253] = 224, - [5254] = 218, - [5255] = 195, - [5256] = 5256, - [5257] = 224, - [5258] = 5180, - [5259] = 5157, - [5260] = 5158, - [5261] = 218, - [5262] = 5208, - [5263] = 5209, - [5264] = 2493, - [5265] = 214, - [5266] = 5243, - [5267] = 5208, - [5268] = 5209, - [5269] = 5208, - [5270] = 5209, - [5271] = 235, - [5272] = 5235, - [5273] = 5206, - [5274] = 3248, - [5275] = 230, - [5276] = 237, - [5277] = 239, - [5278] = 246, - [5279] = 242, - [5280] = 161, - [5281] = 4967, - [5282] = 4968, - [5283] = 4969, + [5250] = 5250, + [5251] = 223, + [5252] = 2485, + [5253] = 5229, + [5254] = 5254, + [5255] = 1522, + [5256] = 216, + [5257] = 5229, + [5258] = 225, + [5259] = 5259, + [5260] = 1519, + [5261] = 2469, + [5262] = 226, + [5263] = 215, + [5264] = 5229, + [5265] = 5265, + [5266] = 228, + [5267] = 218, + [5268] = 5229, + [5269] = 222, + [5270] = 224, + [5271] = 5271, + [5272] = 216, + [5273] = 163, + [5274] = 5259, + [5275] = 5275, + [5276] = 5276, + [5277] = 5277, + [5278] = 5240, + [5279] = 5279, + [5280] = 5243, + [5281] = 5281, + [5282] = 251, + [5283] = 5283, [5284] = 5284, - [5285] = 216, - [5286] = 5286, - [5287] = 3248, - [5288] = 3255, - [5289] = 5169, - [5290] = 1233, - [5291] = 244, - [5292] = 5221, - [5293] = 5284, - [5294] = 239, - [5295] = 5249, - [5296] = 5234, - [5297] = 5235, - [5298] = 3255, - [5299] = 4940, - [5300] = 224, - [5301] = 239, - [5302] = 242, - [5303] = 1233, - [5304] = 5304, + [5285] = 163, + [5286] = 223, + [5287] = 5254, + [5288] = 246, + [5289] = 222, + [5290] = 164, + [5291] = 5291, + [5292] = 5292, + [5293] = 5293, + [5294] = 5294, + [5295] = 216, + [5296] = 247, + [5297] = 248, + [5298] = 215, + [5299] = 1238, + [5300] = 165, + [5301] = 5294, + [5302] = 5302, + [5303] = 249, + [5304] = 5271, [5305] = 5305, - [5306] = 5306, - [5307] = 1438, - [5308] = 5306, + [5306] = 5302, + [5307] = 235, + [5308] = 236, [5309] = 5309, - [5310] = 5310, - [5311] = 5306, - [5312] = 5310, - [5313] = 5313, - [5314] = 259, - [5315] = 164, - [5316] = 5306, - [5317] = 5310, - [5318] = 245, - [5319] = 244, - [5320] = 5309, - [5321] = 163, - [5322] = 5306, - [5323] = 5310, - [5324] = 5306, - [5325] = 5310, - [5326] = 245, - [5327] = 5306, - [5328] = 5310, - [5329] = 244, - [5330] = 5306, - [5331] = 5310, - [5332] = 218, - [5333] = 5306, - [5334] = 5310, - [5335] = 5305, - [5336] = 5306, - [5337] = 5310, - [5338] = 5306, - [5339] = 230, - [5340] = 1460, - [5341] = 237, - [5342] = 224, - [5343] = 5343, - [5344] = 5304, - [5345] = 5305, - [5346] = 230, - [5347] = 199, - [5348] = 5310, - [5349] = 237, - [5350] = 5304, - [5351] = 5310, - [5352] = 5313, - [5353] = 262, - [5354] = 239, - [5355] = 242, - [5356] = 5310, - [5357] = 5313, - [5358] = 5313, - [5359] = 5359, - [5360] = 218, - [5361] = 5309, - [5362] = 5362, - [5363] = 165, - [5364] = 5304, - [5365] = 230, - [5366] = 5366, - [5367] = 5304, - [5368] = 5305, - [5369] = 5310, - [5370] = 5304, - [5371] = 5305, - [5372] = 5306, - [5373] = 162, - [5374] = 214, - [5375] = 239, + [5310] = 5277, + [5311] = 5311, + [5312] = 5279, + [5313] = 250, + [5314] = 5283, + [5315] = 5284, + [5316] = 251, + [5317] = 216, + [5318] = 5292, + [5319] = 5293, + [5320] = 5294, + [5321] = 215, + [5322] = 5322, + [5323] = 235, + [5324] = 5302, + [5325] = 5311, + [5326] = 5279, + [5327] = 5276, + [5328] = 5277, + [5329] = 5329, + [5330] = 5283, + [5331] = 5284, + [5332] = 5294, + [5333] = 246, + [5334] = 5302, + [5335] = 5283, + [5336] = 5284, + [5337] = 5283, + [5338] = 5284, + [5339] = 2456, + [5340] = 251, + [5341] = 236, + [5342] = 246, + [5343] = 248, + [5344] = 248, + [5345] = 5309, + [5346] = 249, + [5347] = 249, + [5348] = 5329, + [5349] = 223, + [5350] = 198, + [5351] = 5292, + [5352] = 5293, + [5353] = 222, + [5354] = 1238, + [5355] = 230, + [5356] = 5283, + [5357] = 5284, + [5358] = 223, + [5359] = 3418, + [5360] = 3421, + [5361] = 5275, + [5362] = 222, + [5363] = 5311, + [5364] = 5364, + [5365] = 5365, + [5366] = 5364, + [5367] = 5365, + [5368] = 5368, + [5369] = 5365, + [5370] = 250, + [5371] = 5371, + [5372] = 5372, + [5373] = 5373, + [5374] = 5374, + [5375] = 223, [5376] = 216, - [5377] = 244, - [5378] = 5310, - [5379] = 5310, - [5380] = 5313, - [5381] = 5310, - [5382] = 5313, - [5383] = 245, - [5384] = 5305, - [5385] = 237, - [5386] = 5309, - [5387] = 5343, - [5388] = 242, - [5389] = 1637, - [5390] = 1667, - [5391] = 1233, - [5392] = 259, - [5393] = 5393, - [5394] = 244, - [5395] = 262, - [5396] = 5393, - [5397] = 262, - [5398] = 1233, - [5399] = 1438, - [5400] = 5169, - [5401] = 276, - [5402] = 230, - [5403] = 5403, - [5404] = 1633, - [5405] = 5405, - [5406] = 325, - [5407] = 275, - [5408] = 259, - [5409] = 237, - [5410] = 170, - [5411] = 171, - [5412] = 246, - [5413] = 168, - [5414] = 259, - [5415] = 245, - [5416] = 164, - [5417] = 165, - [5418] = 462, - [5419] = 326, - [5420] = 327, - [5421] = 328, - [5422] = 329, - [5423] = 330, - [5424] = 331, - [5425] = 332, - [5426] = 333, - [5427] = 334, - [5428] = 335, - [5429] = 336, - [5430] = 337, - [5431] = 338, - [5432] = 339, - [5433] = 340, - [5434] = 341, - [5435] = 342, - [5436] = 343, - [5437] = 230, - [5438] = 5362, - [5439] = 346, - [5440] = 1638, - [5441] = 323, - [5442] = 161, - [5443] = 346, - [5444] = 323, - [5445] = 326, - [5446] = 327, - [5447] = 328, - [5448] = 329, - [5449] = 330, - [5450] = 331, - [5451] = 332, - [5452] = 333, - [5453] = 346, - [5454] = 334, - [5455] = 335, - [5456] = 5393, - [5457] = 336, - [5458] = 338, - [5459] = 339, - [5460] = 340, - [5461] = 341, - [5462] = 342, - [5463] = 343, - [5464] = 463, - [5465] = 324, - [5466] = 5466, - [5467] = 323, - [5468] = 325, - [5469] = 5169, - [5470] = 5470, - [5471] = 167, - [5472] = 326, - [5473] = 1559, - [5474] = 237, - [5475] = 5475, - [5476] = 1554, + [5377] = 5364, + [5378] = 1238, + [5379] = 1476, + [5380] = 5372, + [5381] = 5364, + [5382] = 5368, + [5383] = 5365, + [5384] = 5372, + [5385] = 5364, + [5386] = 246, + [5387] = 5372, + [5388] = 5364, + [5389] = 5389, + [5390] = 5372, + [5391] = 251, + [5392] = 5364, + [5393] = 248, + [5394] = 5372, + [5395] = 5395, + [5396] = 5364, + [5397] = 5372, + [5398] = 5364, + [5399] = 1469, + [5400] = 5372, + [5401] = 5364, + [5402] = 247, + [5403] = 5372, + [5404] = 167, + [5405] = 168, + [5406] = 5372, + [5407] = 5407, + [5408] = 5373, + [5409] = 5368, + [5410] = 249, + [5411] = 5368, + [5412] = 5412, + [5413] = 223, + [5414] = 251, + [5415] = 5373, + [5416] = 5416, + [5417] = 5364, + [5418] = 246, + [5419] = 5364, + [5420] = 5407, + [5421] = 294, + [5422] = 5373, + [5423] = 248, + [5424] = 4730, + [5425] = 4736, + [5426] = 5407, + [5427] = 5372, + [5428] = 247, + [5429] = 222, + [5430] = 249, + [5431] = 222, + [5432] = 5368, + [5433] = 5365, + [5434] = 5364, + [5435] = 251, + [5436] = 5368, + [5437] = 292, + [5438] = 250, + [5439] = 215, + [5440] = 5407, + [5441] = 165, + [5442] = 5372, + [5443] = 5365, + [5444] = 5364, + [5445] = 246, + [5446] = 5364, + [5447] = 250, + [5448] = 248, + [5449] = 5412, + [5450] = 249, + [5451] = 204, + [5452] = 164, + [5453] = 5407, + [5454] = 5368, + [5455] = 247, + [5456] = 5364, + [5457] = 5407, + [5458] = 169, + [5459] = 372, + [5460] = 373, + [5461] = 374, + [5462] = 375, + [5463] = 376, + [5464] = 378, + [5465] = 382, + [5466] = 383, + [5467] = 385, + [5468] = 313, + [5469] = 171, + [5470] = 169, + [5471] = 4971, + [5472] = 350, + [5473] = 163, + [5474] = 348, + [5475] = 352, + [5476] = 349, [5477] = 5477, - [5478] = 239, - [5479] = 1528, - [5480] = 5405, - [5481] = 239, - [5482] = 242, - [5483] = 464, - [5484] = 235, - [5485] = 1663, - [5486] = 246, - [5487] = 1664, - [5488] = 327, - [5489] = 328, - [5490] = 321, - [5491] = 329, - [5492] = 330, - [5493] = 331, - [5494] = 332, - [5495] = 1640, - [5496] = 1642, - [5497] = 333, - [5498] = 334, - [5499] = 335, - [5500] = 336, - [5501] = 337, - [5502] = 338, - [5503] = 339, - [5504] = 277, - [5505] = 340, - [5506] = 341, - [5507] = 342, - [5508] = 224, - [5509] = 343, - [5510] = 461, - [5511] = 262, - [5512] = 470, - [5513] = 169, - [5514] = 218, - [5515] = 324, - [5516] = 235, - [5517] = 161, - [5518] = 1460, - [5519] = 166, - [5520] = 5405, - [5521] = 242, - [5522] = 1666, - [5523] = 337, - [5524] = 162, - [5525] = 330, - [5526] = 331, - [5527] = 342, - [5528] = 161, - [5529] = 332, - [5530] = 1233, - [5531] = 321, - [5532] = 5532, - [5533] = 293, - [5534] = 262, - [5535] = 1559, - [5536] = 5536, - [5537] = 5537, - [5538] = 275, - [5539] = 324, - [5540] = 462, - [5541] = 5541, - [5542] = 321, - [5543] = 5536, - [5544] = 5544, - [5545] = 343, - [5546] = 2750, - [5547] = 5547, - [5548] = 5548, - [5549] = 325, - [5550] = 5550, - [5551] = 5547, - [5552] = 325, - [5553] = 161, - [5554] = 5554, - [5555] = 162, - [5556] = 163, - [5557] = 276, - [5558] = 169, - [5559] = 5548, - [5560] = 324, - [5561] = 5554, - [5562] = 2001, - [5563] = 326, - [5564] = 1046, - [5565] = 2783, - [5566] = 5566, - [5567] = 333, - [5568] = 334, - [5569] = 327, - [5570] = 275, - [5571] = 2819, + [5478] = 360, + [5479] = 5477, + [5480] = 348, + [5481] = 349, + [5482] = 363, + [5483] = 364, + [5484] = 365, + [5485] = 5477, + [5486] = 366, + [5487] = 367, + [5488] = 368, + [5489] = 369, + [5490] = 5477, + [5491] = 370, + [5492] = 372, + [5493] = 373, + [5494] = 1673, + [5495] = 5477, + [5496] = 374, + [5497] = 375, + [5498] = 376, + [5499] = 378, + [5500] = 5477, + [5501] = 382, + [5502] = 1606, + [5503] = 383, + [5504] = 1645, + [5505] = 385, + [5506] = 5477, + [5507] = 5477, + [5508] = 5259, + [5509] = 292, + [5510] = 1639, + [5511] = 292, + [5512] = 5477, + [5513] = 166, + [5514] = 167, + [5515] = 246, + [5516] = 5477, + [5517] = 235, + [5518] = 5518, + [5519] = 174, + [5520] = 5477, + [5521] = 170, + [5522] = 5522, + [5523] = 223, + [5524] = 5477, + [5525] = 1469, + [5526] = 294, + [5527] = 5477, + [5528] = 319, + [5529] = 247, + [5530] = 5477, + [5531] = 5477, + [5532] = 1647, + [5533] = 5477, + [5534] = 5477, + [5535] = 250, + [5536] = 5477, + [5537] = 5477, + [5538] = 5477, + [5539] = 5477, + [5540] = 5477, + [5541] = 5477, + [5542] = 5477, + [5543] = 5477, + [5544] = 5477, + [5545] = 5477, + [5546] = 5477, + [5547] = 5477, + [5548] = 5477, + [5549] = 5477, + [5550] = 1476, + [5551] = 5477, + [5552] = 5477, + [5553] = 5477, + [5554] = 5477, + [5555] = 5477, + [5556] = 5477, + [5557] = 5477, + [5558] = 5477, + [5559] = 5477, + [5560] = 5477, + [5561] = 473, + [5562] = 251, + [5563] = 4970, + [5564] = 248, + [5565] = 1495, + [5566] = 172, + [5567] = 173, + [5568] = 236, + [5569] = 1238, + [5570] = 469, + [5571] = 292, [5572] = 5572, - [5573] = 328, - [5574] = 5537, - [5575] = 461, - [5576] = 5576, - [5577] = 335, - [5578] = 161, - [5579] = 296, - [5580] = 1528, - [5581] = 170, - [5582] = 5582, - [5583] = 171, - [5584] = 336, - [5585] = 5169, - [5586] = 2846, - [5587] = 337, - [5588] = 5588, + [5573] = 246, + [5574] = 4962, + [5575] = 477, + [5576] = 474, + [5577] = 1238, + [5578] = 320, + [5579] = 1489, + [5580] = 249, + [5581] = 1607, + [5582] = 248, + [5583] = 1619, + [5584] = 294, + [5585] = 5585, + [5586] = 235, + [5587] = 1521, + [5588] = 236, [5589] = 5589, - [5590] = 338, - [5591] = 1554, - [5592] = 276, - [5593] = 5593, - [5594] = 464, - [5595] = 470, - [5596] = 5596, - [5597] = 5597, - [5598] = 2831, - [5599] = 346, - [5600] = 277, - [5601] = 329, - [5602] = 463, - [5603] = 230, - [5604] = 1233, - [5605] = 275, - [5606] = 323, - [5607] = 5566, - [5608] = 2005, - [5609] = 296, - [5610] = 237, - [5611] = 5593, - [5612] = 293, - [5613] = 339, - [5614] = 239, - [5615] = 5572, - [5616] = 2025, - [5617] = 242, - [5618] = 321, - [5619] = 276, - [5620] = 5588, - [5621] = 5589, - [5622] = 5541, - [5623] = 357, - [5624] = 277, - [5625] = 362, - [5626] = 340, - [5627] = 277, - [5628] = 341, - [5629] = 5362, - [5630] = 259, - [5631] = 5532, - [5632] = 364, - [5633] = 163, + [5590] = 482, + [5591] = 222, + [5592] = 294, + [5593] = 249, + [5594] = 5395, + [5595] = 5477, + [5596] = 4975, + [5597] = 251, + [5598] = 170, + [5599] = 5477, + [5600] = 163, + [5601] = 308, + [5602] = 4972, + [5603] = 5059, + [5604] = 5477, + [5605] = 5477, + [5606] = 4974, + [5607] = 168, + [5608] = 350, + [5609] = 171, + [5610] = 166, + [5611] = 1650, + [5612] = 348, + [5613] = 1661, + [5614] = 352, + [5615] = 349, + [5616] = 360, + [5617] = 363, + [5618] = 364, + [5619] = 365, + [5620] = 5259, + [5621] = 366, + [5622] = 367, + [5623] = 368, + [5624] = 369, + [5625] = 370, + [5626] = 5477, + [5627] = 5627, + [5628] = 375, + [5629] = 368, + [5630] = 246, + [5631] = 380, + [5632] = 319, + [5633] = 248, [5634] = 5634, - [5635] = 162, - [5636] = 275, - [5637] = 5637, - [5638] = 5638, - [5639] = 2783, - [5640] = 464, - [5641] = 321, + [5635] = 320, + [5636] = 5636, + [5637] = 249, + [5638] = 5395, + [5639] = 5639, + [5640] = 5640, + [5641] = 5641, [5642] = 5642, - [5643] = 163, - [5644] = 384, - [5645] = 385, - [5646] = 386, + [5643] = 319, + [5644] = 2762, + [5645] = 5645, + [5646] = 5645, [5647] = 5647, - [5648] = 5648, + [5648] = 2471, [5649] = 5649, - [5650] = 5650, - [5651] = 276, - [5652] = 5652, - [5653] = 470, - [5654] = 5654, - [5655] = 277, - [5656] = 5656, + [5650] = 2493, + [5651] = 360, + [5652] = 363, + [5653] = 364, + [5654] = 2494, + [5655] = 365, + [5656] = 350, [5657] = 5657, - [5658] = 5658, - [5659] = 5659, - [5660] = 5660, - [5661] = 5661, - [5662] = 5634, - [5663] = 5663, - [5664] = 397, - [5665] = 5665, - [5666] = 214, - [5667] = 2884, - [5668] = 2885, - [5669] = 5665, - [5670] = 244, - [5671] = 4209, - [5672] = 5672, - [5673] = 4165, - [5674] = 5674, - [5675] = 5672, - [5676] = 1438, - [5677] = 5652, - [5678] = 5654, + [5658] = 366, + [5659] = 367, + [5660] = 2505, + [5661] = 368, + [5662] = 369, + [5663] = 370, + [5664] = 372, + [5665] = 373, + [5666] = 363, + [5667] = 374, + [5668] = 375, + [5669] = 350, + [5670] = 376, + [5671] = 378, + [5672] = 382, + [5673] = 383, + [5674] = 352, + [5675] = 163, + [5676] = 385, + [5677] = 2849, + [5678] = 5678, [5679] = 5679, - [5680] = 5680, - [5681] = 5642, - [5682] = 5582, - [5683] = 5680, - [5684] = 5637, - [5685] = 5638, - [5686] = 5642, - [5687] = 392, - [5688] = 352, - [5689] = 5689, - [5690] = 5690, - [5691] = 5691, - [5692] = 356, - [5693] = 244, - [5694] = 5694, - [5695] = 216, - [5696] = 1633, - [5697] = 244, - [5698] = 172, - [5699] = 162, - [5700] = 1070, - [5701] = 5701, - [5702] = 5702, - [5703] = 5665, - [5704] = 5704, - [5705] = 2819, - [5706] = 163, - [5707] = 5672, - [5708] = 5652, - [5709] = 5654, - [5710] = 5679, - [5711] = 5680, - [5712] = 5712, - [5713] = 1637, - [5714] = 5714, - [5715] = 5642, - [5716] = 245, - [5717] = 5665, - [5718] = 1638, - [5719] = 405, - [5720] = 1640, - [5721] = 1642, - [5722] = 5672, - [5723] = 5652, - [5724] = 5654, - [5725] = 1460, - [5726] = 5679, - [5727] = 5680, - [5728] = 5665, - [5729] = 5642, - [5730] = 5665, - [5731] = 5731, - [5732] = 5672, - [5733] = 5652, - [5734] = 5654, - [5735] = 5679, - [5736] = 5736, - [5737] = 5680, - [5738] = 5738, - [5739] = 5642, - [5740] = 5665, - [5741] = 1438, - [5742] = 5672, - [5743] = 5743, - [5744] = 5652, - [5745] = 5654, - [5746] = 5679, - [5747] = 5680, - [5748] = 5642, - [5749] = 5665, - [5750] = 5672, - [5751] = 5652, - [5752] = 5654, - [5753] = 5679, - [5754] = 5680, - [5755] = 5642, - [5756] = 5665, - [5757] = 5672, - [5758] = 5652, - [5759] = 5654, - [5760] = 5679, - [5761] = 5680, - [5762] = 5642, - [5763] = 5665, - [5764] = 245, - [5765] = 5672, - [5766] = 5652, - [5767] = 5654, - [5768] = 5679, - [5769] = 5680, - [5770] = 5642, - [5771] = 5665, - [5772] = 5672, - [5773] = 5652, - [5774] = 5654, - [5775] = 5679, - [5776] = 5680, - [5777] = 5642, - [5778] = 5665, - [5779] = 5672, - [5780] = 5679, - [5781] = 5680, - [5782] = 5642, - [5783] = 5665, - [5784] = 5784, - [5785] = 5672, - [5786] = 5679, - [5787] = 5787, - [5788] = 5680, - [5789] = 5642, - [5790] = 5665, - [5791] = 5672, - [5792] = 5679, - [5793] = 5680, - [5794] = 5642, - [5795] = 5665, - [5796] = 5672, - [5797] = 5797, - [5798] = 5679, - [5799] = 5680, - [5800] = 5642, - [5801] = 5665, - [5802] = 5672, - [5803] = 5679, - [5804] = 5680, - [5805] = 5642, - [5806] = 5665, - [5807] = 418, - [5808] = 5680, - [5809] = 5642, - [5810] = 5665, - [5811] = 5811, - [5812] = 5680, - [5813] = 5642, - [5814] = 5665, - [5815] = 5680, - [5816] = 5642, - [5817] = 5665, - [5818] = 5680, - [5819] = 5642, - [5820] = 5665, - [5821] = 5665, - [5822] = 5665, - [5823] = 5665, - [5824] = 5665, - [5825] = 5665, - [5826] = 5665, - [5827] = 5665, - [5828] = 5665, - [5829] = 5665, - [5830] = 5665, - [5831] = 5665, - [5832] = 5665, - [5833] = 5665, - [5834] = 5665, - [5835] = 5665, - [5836] = 5665, - [5837] = 5665, - [5838] = 5665, - [5839] = 5665, - [5840] = 5665, - [5841] = 5665, - [5842] = 5665, - [5843] = 5665, - [5844] = 5665, - [5845] = 5731, - [5846] = 5736, - [5847] = 5738, - [5848] = 5672, - [5849] = 1663, - [5850] = 1664, - [5851] = 5679, - [5852] = 1666, - [5853] = 1460, - [5854] = 1667, - [5855] = 396, - [5856] = 5652, - [5857] = 5654, - [5858] = 5656, - [5859] = 3106, - [5860] = 463, - [5861] = 5861, - [5862] = 5862, - [5863] = 420, - [5864] = 5679, - [5865] = 5865, - [5866] = 5866, - [5867] = 5867, - [5868] = 5680, - [5869] = 5642, - [5870] = 5870, - [5871] = 245, - [5872] = 5784, - [5873] = 5873, - [5874] = 5637, - [5875] = 5638, - [5876] = 462, - [5877] = 461, - [5878] = 5647, - [5879] = 392, - [5880] = 5680, - [5881] = 384, - [5882] = 385, - [5883] = 386, - [5884] = 5884, - [5885] = 5885, - [5886] = 5674, - [5887] = 5887, - [5888] = 5887, - [5889] = 5889, - [5890] = 5885, - [5891] = 5891, - [5892] = 224, - [5893] = 5893, - [5894] = 5894, - [5895] = 5895, - [5896] = 5887, - [5897] = 5885, - [5898] = 5898, - [5899] = 5885, - [5900] = 168, - [5901] = 166, - [5902] = 5582, - [5903] = 2783, - [5904] = 5887, - [5905] = 5893, - [5906] = 5885, - [5907] = 5887, + [5680] = 360, + [5681] = 300, + [5682] = 364, + [5683] = 379, + [5684] = 5678, + [5685] = 348, + [5686] = 308, + [5687] = 308, + [5688] = 2433, + [5689] = 1238, + [5690] = 172, + [5691] = 367, + [5692] = 313, + [5693] = 1495, + [5694] = 163, + [5695] = 376, + [5696] = 5647, + [5697] = 5697, + [5698] = 319, + [5699] = 320, + [5700] = 370, + [5701] = 378, + [5702] = 382, + [5703] = 383, + [5704] = 292, + [5705] = 251, + [5706] = 372, + [5707] = 385, + [5708] = 5636, + [5709] = 173, + [5710] = 5639, + [5711] = 2788, + [5712] = 1521, + [5713] = 300, + [5714] = 320, + [5715] = 294, + [5716] = 473, + [5717] = 5717, + [5718] = 1489, + [5719] = 373, + [5720] = 4877, + [5721] = 324, + [5722] = 5722, + [5723] = 5723, + [5724] = 477, + [5725] = 482, + [5726] = 163, + [5727] = 164, + [5728] = 165, + [5729] = 5259, + [5730] = 1062, + [5731] = 365, + [5732] = 474, + [5733] = 1238, + [5734] = 469, + [5735] = 308, + [5736] = 5649, + [5737] = 5640, + [5738] = 5657, + [5739] = 5641, + [5740] = 5679, + [5741] = 5642, + [5742] = 324, + [5743] = 374, + [5744] = 352, + [5745] = 366, + [5746] = 174, + [5747] = 5627, + [5748] = 381, + [5749] = 2819, + [5750] = 313, + [5751] = 349, + [5752] = 313, + [5753] = 3136, + [5754] = 369, + [5755] = 5755, + [5756] = 5756, + [5757] = 5757, + [5758] = 5758, + [5759] = 5759, + [5760] = 5756, + [5761] = 5761, + [5762] = 5762, + [5763] = 5763, + [5764] = 5764, + [5765] = 5765, + [5766] = 5756, + [5767] = 5757, + [5768] = 5758, + [5769] = 5761, + [5770] = 5762, + [5771] = 164, + [5772] = 390, + [5773] = 5765, + [5774] = 389, + [5775] = 216, + [5776] = 5756, + [5777] = 5757, + [5778] = 5758, + [5779] = 5761, + [5780] = 5762, + [5781] = 1607, + [5782] = 1469, + [5783] = 447, + [5784] = 5765, + [5785] = 5785, + [5786] = 473, + [5787] = 5756, + [5788] = 5757, + [5789] = 5758, + [5790] = 5761, + [5791] = 5762, + [5792] = 5765, + [5793] = 164, + [5794] = 432, + [5795] = 5634, + [5796] = 5756, + [5797] = 5757, + [5798] = 5758, + [5799] = 5761, + [5800] = 5762, + [5801] = 5801, + [5802] = 5802, + [5803] = 5765, + [5804] = 5804, + [5805] = 5756, + [5806] = 5806, + [5807] = 5757, + [5808] = 5758, + [5809] = 5809, + [5810] = 5761, + [5811] = 5762, + [5812] = 5762, + [5813] = 446, + [5814] = 175, + [5815] = 5765, + [5816] = 5816, + [5817] = 5817, + [5818] = 5818, + [5819] = 5756, + [5820] = 5757, + [5821] = 5758, + [5822] = 5822, + [5823] = 5761, + [5824] = 1661, + [5825] = 5762, + [5826] = 2819, + [5827] = 5765, + [5828] = 165, + [5829] = 5756, + [5830] = 5830, + [5831] = 5757, + [5832] = 5758, + [5833] = 5833, + [5834] = 5761, + [5835] = 5762, + [5836] = 5765, + [5837] = 5837, + [5838] = 5838, + [5839] = 5756, + [5840] = 5761, + [5841] = 5762, + [5842] = 1619, + [5843] = 5765, + [5844] = 5756, + [5845] = 5761, + [5846] = 5846, + [5847] = 5762, + [5848] = 5765, + [5849] = 469, + [5850] = 326, + [5851] = 5756, + [5852] = 5761, + [5853] = 5762, + [5854] = 5765, + [5855] = 5756, + [5856] = 5856, + [5857] = 5756, + [5858] = 215, + [5859] = 5761, + [5860] = 5762, + [5861] = 5765, + [5862] = 5757, + [5863] = 5758, + [5864] = 5756, + [5865] = 5761, + [5866] = 5762, + [5867] = 5765, + [5868] = 5868, + [5869] = 5762, + [5870] = 5765, + [5871] = 3145, + [5872] = 5872, + [5873] = 5762, + [5874] = 5765, + [5875] = 5762, + [5876] = 5765, + [5877] = 5757, + [5878] = 5878, + [5879] = 5879, + [5880] = 5765, + [5881] = 5881, + [5882] = 5761, + [5883] = 5762, + [5884] = 5758, + [5885] = 5757, + [5886] = 308, + [5887] = 5761, + [5888] = 5765, + [5889] = 5868, + [5890] = 5809, + [5891] = 5822, + [5892] = 5762, + [5893] = 5765, + [5894] = 5868, + [5895] = 5759, + [5896] = 5763, + [5897] = 5755, + [5898] = 313, + [5899] = 2897, + [5900] = 2873, + [5901] = 4255, + [5902] = 5902, + [5903] = 1639, + [5904] = 441, + [5905] = 5905, + [5906] = 319, + [5907] = 5907, [5908] = 5908, - [5909] = 259, - [5910] = 5910, - [5911] = 5889, - [5912] = 5885, - [5913] = 5887, - [5914] = 324, - [5915] = 346, - [5916] = 5916, - [5917] = 5917, - [5918] = 387, - [5919] = 245, - [5920] = 5649, - [5921] = 325, - [5922] = 5887, - [5923] = 5704, - [5924] = 167, - [5925] = 5925, - [5926] = 259, + [5909] = 4730, + [5910] = 4736, + [5911] = 247, + [5912] = 247, + [5913] = 5913, + [5914] = 1476, + [5915] = 320, + [5916] = 5809, + [5917] = 5822, + [5918] = 5756, + [5919] = 164, + [5920] = 165, + [5921] = 5756, + [5922] = 5922, + [5923] = 1673, + [5924] = 5757, + [5925] = 5758, + [5926] = 388, [5927] = 5927, - [5928] = 5885, - [5929] = 5929, - [5930] = 5712, - [5931] = 323, - [5932] = 1666, - [5933] = 5887, - [5934] = 262, - [5935] = 1640, - [5936] = 244, - [5937] = 3491, - [5938] = 5885, - [5939] = 1642, + [5928] = 5868, + [5929] = 477, + [5930] = 5930, + [5931] = 5931, + [5932] = 474, + [5933] = 5933, + [5934] = 5934, + [5935] = 5761, + [5936] = 482, + [5937] = 5762, + [5938] = 5938, + [5939] = 5939, [5940] = 5940, - [5941] = 1667, - [5942] = 5714, - [5943] = 5689, - [5944] = 5885, - [5945] = 5887, - [5946] = 5946, - [5947] = 1519, - [5948] = 1663, - [5949] = 5885, - [5950] = 262, + [5941] = 5758, + [5942] = 5762, + [5943] = 5765, + [5944] = 5765, + [5945] = 377, + [5946] = 1469, + [5947] = 2849, + [5948] = 5765, + [5949] = 1647, + [5950] = 5950, [5951] = 5951, [5952] = 5952, - [5953] = 1664, - [5954] = 166, - [5955] = 1523, - [5956] = 244, - [5957] = 5887, - [5958] = 5958, - [5959] = 5959, - [5960] = 5887, - [5961] = 5961, - [5962] = 5908, - [5963] = 1554, - [5964] = 245, - [5965] = 5965, - [5966] = 3474, - [5967] = 5967, - [5968] = 161, - [5969] = 5885, - [5970] = 5952, - [5971] = 1528, - [5972] = 1438, - [5973] = 324, - [5974] = 5974, - [5975] = 325, - [5976] = 164, - [5977] = 165, - [5978] = 5978, - [5979] = 5979, - [5980] = 5887, - [5981] = 2819, - [5982] = 5648, - [5983] = 5983, - [5984] = 167, - [5985] = 246, - [5986] = 5885, - [5987] = 262, - [5988] = 161, - [5989] = 5965, - [5990] = 5887, - [5991] = 218, - [5992] = 5885, - [5993] = 5887, - [5994] = 164, - [5995] = 1554, - [5996] = 5965, - [5997] = 5967, - [5998] = 1460, - [5999] = 1528, - [6000] = 5885, - [6001] = 5965, - [6002] = 5967, - [6003] = 6003, - [6004] = 5965, - [6005] = 5967, - [6006] = 1637, - [6007] = 1559, - [6008] = 1638, - [6009] = 5965, - [6010] = 5967, - [6011] = 5965, - [6012] = 5967, - [6013] = 5965, - [6014] = 5967, - [6015] = 5965, - [6016] = 5967, - [6017] = 5965, - [6018] = 5967, - [6019] = 5965, - [6020] = 5967, - [6021] = 5959, - [6022] = 168, - [6023] = 5965, - [6024] = 5967, - [6025] = 6025, - [6026] = 5965, - [6027] = 5967, - [6028] = 6028, - [6029] = 5965, - [6030] = 5967, - [6031] = 5965, - [6032] = 5967, - [6033] = 5965, - [6034] = 5967, - [6035] = 5965, - [6036] = 5967, - [6037] = 5965, - [6038] = 5967, - [6039] = 5965, - [6040] = 5967, - [6041] = 5965, - [6042] = 5967, - [6043] = 5965, - [6044] = 5967, - [6045] = 381, - [6046] = 1633, - [6047] = 6047, - [6048] = 5887, - [6049] = 5690, - [6050] = 6050, - [6051] = 6051, - [6052] = 5885, - [6053] = 259, - [6054] = 5885, - [6055] = 392, - [6056] = 6056, - [6057] = 3491, - [6058] = 3474, - [6059] = 384, - [6060] = 385, - [6061] = 386, - [6062] = 235, - [6063] = 245, - [6064] = 6064, - [6065] = 5967, - [6066] = 6050, - [6067] = 1559, - [6068] = 165, - [6069] = 5887, - [6070] = 4779, - [6071] = 6071, - [6072] = 6072, + [5953] = 4191, + [5954] = 1076, + [5955] = 1476, + [5956] = 1606, + [5957] = 165, + [5958] = 247, + [5959] = 449, + [5960] = 1645, + [5961] = 250, + [5962] = 5913, + [5963] = 5963, + [5964] = 5785, + [5965] = 5856, + [5966] = 3626, + [5967] = 3601, + [5968] = 446, + [5969] = 449, + [5970] = 390, + [5971] = 441, + [5972] = 5761, + [5973] = 446, + [5974] = 449, + [5975] = 390, + [5976] = 441, + [5977] = 250, + [5978] = 445, + [5979] = 1650, + [5980] = 250, + [5981] = 5981, + [5982] = 5762, + [5983] = 169, + [5984] = 5984, + [5985] = 247, + [5986] = 5984, + [5987] = 1495, + [5988] = 5988, + [5989] = 5833, + [5990] = 4971, + [5991] = 163, + [5992] = 5992, + [5993] = 5993, + [5994] = 5994, + [5995] = 5995, + [5996] = 5996, + [5997] = 1607, + [5998] = 170, + [5999] = 1495, + [6000] = 250, + [6001] = 6001, + [6002] = 5846, + [6003] = 382, + [6004] = 383, + [6005] = 6005, + [6006] = 171, + [6007] = 166, + [6008] = 6008, + [6009] = 6009, + [6010] = 5878, + [6011] = 2849, + [6012] = 350, + [6013] = 1606, + [6014] = 5993, + [6015] = 1489, + [6016] = 6016, + [6017] = 292, + [6018] = 5634, + [6019] = 171, + [6020] = 6020, + [6021] = 6021, + [6022] = 4970, + [6023] = 6023, + [6024] = 4962, + [6025] = 3601, + [6026] = 352, + [6027] = 352, + [6028] = 5993, + [6029] = 369, + [6030] = 6030, + [6031] = 6031, + [6032] = 6001, + [6033] = 349, + [6034] = 373, + [6035] = 5764, + [6036] = 5993, + [6037] = 6037, + [6038] = 5993, + [6039] = 1521, + [6040] = 374, + [6041] = 6001, + [6042] = 6042, + [6043] = 1469, + [6044] = 1650, + [6045] = 5993, + [6046] = 430, + [6047] = 6023, + [6048] = 5993, + [6049] = 168, + [6050] = 5993, + [6051] = 5993, + [6052] = 1619, + [6053] = 365, + [6054] = 6001, + [6055] = 370, + [6056] = 372, + [6057] = 6057, + [6058] = 6001, + [6059] = 6001, + [6060] = 294, + [6061] = 5993, + [6062] = 1639, + [6063] = 375, + [6064] = 6001, + [6065] = 166, + [6066] = 223, + [6067] = 385, + [6068] = 5933, + [6069] = 6008, + [6070] = 1661, + [6071] = 6001, + [6072] = 4972, [6073] = 6073, - [6074] = 6074, - [6075] = 6075, - [6076] = 4660, - [6077] = 6077, - [6078] = 259, - [6079] = 6079, - [6080] = 230, + [6074] = 5993, + [6075] = 363, + [6076] = 6076, + [6077] = 5993, + [6078] = 6042, + [6079] = 5993, + [6080] = 4975, [6081] = 6081, - [6082] = 464, - [6083] = 6083, - [6084] = 3008, - [6085] = 6085, - [6086] = 3015, - [6087] = 6003, - [6088] = 6088, - [6089] = 6071, - [6090] = 6090, - [6091] = 6091, - [6092] = 6092, - [6093] = 6093, - [6094] = 6071, - [6095] = 6072, - [6096] = 6073, - [6097] = 6074, - [6098] = 6075, - [6099] = 6099, - [6100] = 6072, - [6101] = 6077, - [6102] = 6079, - [6103] = 6073, - [6104] = 6074, + [6082] = 6001, + [6083] = 1673, + [6084] = 366, + [6085] = 376, + [6086] = 5931, + [6087] = 6001, + [6088] = 1489, + [6089] = 1647, + [6090] = 6020, + [6091] = 6031, + [6092] = 1476, + [6093] = 368, + [6094] = 1521, + [6095] = 378, + [6096] = 390, + [6097] = 433, + [6098] = 441, + [6099] = 5993, + [6100] = 350, + [6101] = 167, + [6102] = 250, + [6103] = 6001, + [6104] = 170, [6105] = 6105, - [6106] = 6106, - [6107] = 6085, - [6108] = 6108, - [6109] = 487, - [6110] = 6110, - [6111] = 463, - [6112] = 6112, - [6113] = 6091, - [6114] = 6092, - [6115] = 6093, - [6116] = 6071, - [6117] = 6072, - [6118] = 6073, - [6119] = 6074, - [6120] = 6075, - [6121] = 470, - [6122] = 6122, - [6123] = 6077, - [6124] = 6124, - [6125] = 6079, - [6126] = 6126, - [6127] = 170, - [6128] = 470, - [6129] = 6129, - [6130] = 6085, - [6131] = 242, - [6132] = 6132, - [6133] = 171, - [6134] = 6075, - [6135] = 464, - [6136] = 6136, - [6137] = 6091, - [6138] = 6092, - [6139] = 6093, - [6140] = 6071, - [6141] = 6072, - [6142] = 6073, - [6143] = 6074, - [6144] = 6075, - [6145] = 6145, - [6146] = 6146, - [6147] = 6147, - [6148] = 6077, - [6149] = 6079, - [6150] = 6150, - [6151] = 3266, - [6152] = 6152, - [6153] = 6153, - [6154] = 6085, - [6155] = 6155, - [6156] = 6091, - [6157] = 3267, - [6158] = 6158, - [6159] = 6091, - [6160] = 6092, - [6161] = 6093, - [6162] = 6071, - [6163] = 6072, - [6164] = 6073, - [6165] = 6074, - [6166] = 6075, - [6167] = 6167, - [6168] = 6077, - [6169] = 6079, - [6170] = 6170, - [6171] = 6171, - [6172] = 6085, - [6173] = 6173, - [6174] = 321, + [6106] = 247, + [6107] = 3626, + [6108] = 360, + [6109] = 6020, + [6110] = 6031, + [6111] = 446, + [6112] = 6020, + [6113] = 6031, + [6114] = 168, + [6115] = 6020, + [6116] = 6031, + [6117] = 6117, + [6118] = 6118, + [6119] = 235, + [6120] = 6020, + [6121] = 6031, + [6122] = 6001, + [6123] = 6020, + [6124] = 6031, + [6125] = 6020, + [6126] = 6031, + [6127] = 5059, + [6128] = 1645, + [6129] = 6020, + [6130] = 6031, + [6131] = 6020, + [6132] = 6031, + [6133] = 6020, + [6134] = 6031, + [6135] = 5993, + [6136] = 6001, + [6137] = 6031, + [6138] = 6020, + [6139] = 6031, + [6140] = 364, + [6141] = 6020, + [6142] = 6031, + [6143] = 6001, + [6144] = 6001, + [6145] = 6020, + [6146] = 6031, + [6147] = 6020, + [6148] = 6031, + [6149] = 6020, + [6150] = 6031, + [6151] = 6020, + [6152] = 6031, + [6153] = 6020, + [6154] = 6031, + [6155] = 6020, + [6156] = 6031, + [6157] = 6020, + [6158] = 6031, + [6159] = 6020, + [6160] = 6031, + [6161] = 6161, + [6162] = 3626, + [6163] = 169, + [6164] = 6164, + [6165] = 5993, + [6166] = 236, + [6167] = 250, + [6168] = 6001, + [6169] = 5934, + [6170] = 348, + [6171] = 6001, + [6172] = 292, + [6173] = 367, + [6174] = 6174, [6175] = 6175, - [6176] = 6176, - [6177] = 6177, - [6178] = 245, - [6179] = 6091, - [6180] = 6092, - [6181] = 6093, - [6182] = 6071, - [6183] = 6072, - [6184] = 6073, - [6185] = 6074, - [6186] = 6075, - [6187] = 3491, - [6188] = 6077, - [6189] = 392, - [6190] = 6079, + [6176] = 6020, + [6177] = 167, + [6178] = 2819, + [6179] = 4974, + [6180] = 292, + [6181] = 6009, + [6182] = 294, + [6183] = 5830, + [6184] = 294, + [6185] = 3601, + [6186] = 222, + [6187] = 6076, + [6188] = 5993, + [6189] = 449, + [6190] = 6190, [6191] = 6191, - [6192] = 237, - [6193] = 275, - [6194] = 6085, - [6195] = 6195, - [6196] = 6196, + [6192] = 6190, + [6193] = 6193, + [6194] = 6194, + [6195] = 3210, + [6196] = 3211, [6197] = 6197, [6198] = 6198, - [6199] = 462, - [6200] = 3474, + [6199] = 6199, + [6200] = 6200, [6201] = 6201, - [6202] = 6091, - [6203] = 6092, - [6204] = 6093, - [6205] = 6071, - [6206] = 6072, - [6207] = 6073, - [6208] = 6074, - [6209] = 6075, - [6210] = 1460, - [6211] = 6077, - [6212] = 6079, - [6213] = 6075, - [6214] = 2985, - [6215] = 461, - [6216] = 6085, - [6217] = 275, - [6218] = 6218, + [6202] = 6202, + [6203] = 308, + [6204] = 3042, + [6205] = 477, + [6206] = 482, + [6207] = 6207, + [6208] = 473, + [6209] = 6209, + [6210] = 499, + [6211] = 497, + [6212] = 6212, + [6213] = 313, + [6214] = 473, + [6215] = 4855, + [6216] = 6216, + [6217] = 6217, + [6218] = 2471, [6219] = 6219, - [6220] = 259, - [6221] = 1438, - [6222] = 6091, - [6223] = 6092, - [6224] = 6093, - [6225] = 6071, - [6226] = 6072, - [6227] = 6073, - [6228] = 6074, - [6229] = 6075, - [6230] = 6230, - [6231] = 6077, - [6232] = 6079, - [6233] = 6092, - [6234] = 6093, - [6235] = 6071, - [6236] = 6085, - [6237] = 6237, - [6238] = 6238, + [6220] = 6220, + [6221] = 6221, + [6222] = 3032, + [6223] = 3038, + [6224] = 481, + [6225] = 6225, + [6226] = 470, + [6227] = 6227, + [6228] = 499, + [6229] = 6229, + [6230] = 2980, + [6231] = 319, + [6232] = 6232, + [6233] = 483, + [6234] = 6234, + [6235] = 6235, + [6236] = 6236, + [6237] = 294, + [6238] = 498, [6239] = 6239, [6240] = 6240, - [6241] = 6091, - [6242] = 6092, - [6243] = 6093, - [6244] = 6071, - [6245] = 6072, - [6246] = 6073, - [6247] = 6074, - [6248] = 6075, - [6249] = 321, - [6250] = 463, - [6251] = 6077, - [6252] = 464, - [6253] = 6079, - [6254] = 6254, - [6255] = 6255, - [6256] = 6085, - [6257] = 6257, - [6258] = 6258, - [6259] = 6259, + [6241] = 6241, + [6242] = 6242, + [6243] = 320, + [6244] = 6244, + [6245] = 452, + [6246] = 6246, + [6247] = 6247, + [6248] = 6248, + [6249] = 6249, + [6250] = 6193, + [6251] = 6251, + [6252] = 6252, + [6253] = 251, + [6254] = 473, + [6255] = 512, + [6256] = 477, + [6257] = 482, + [6258] = 469, + [6259] = 474, [6260] = 6260, - [6261] = 6091, - [6262] = 6092, - [6263] = 6093, - [6264] = 6071, - [6265] = 6072, - [6266] = 6073, - [6267] = 6074, - [6268] = 6075, + [6261] = 6261, + [6262] = 6262, + [6263] = 6263, + [6264] = 308, + [6265] = 6239, + [6266] = 6266, + [6267] = 6267, + [6268] = 6190, [6269] = 6269, - [6270] = 276, - [6271] = 6077, - [6272] = 6272, - [6273] = 6079, - [6274] = 6077, - [6275] = 6085, - [6276] = 488, - [6277] = 6277, - [6278] = 6091, - [6279] = 6092, - [6280] = 6093, - [6281] = 6071, - [6282] = 6072, - [6283] = 6073, - [6284] = 6074, - [6285] = 6075, - [6286] = 489, - [6287] = 6077, - [6288] = 6079, - [6289] = 6289, - [6290] = 6085, - [6291] = 277, - [6292] = 169, - [6293] = 6091, - [6294] = 6092, - [6295] = 6093, - [6296] = 6071, - [6297] = 6072, - [6298] = 6073, - [6299] = 6074, - [6300] = 6075, + [6270] = 6239, + [6271] = 6271, + [6272] = 6190, + [6273] = 6273, + [6274] = 6274, + [6275] = 6275, + [6276] = 172, + [6277] = 6197, + [6278] = 6197, + [6279] = 173, + [6280] = 6280, + [6281] = 6217, + [6282] = 6282, + [6283] = 6234, + [6284] = 6235, + [6285] = 6236, + [6286] = 6246, + [6287] = 6247, + [6288] = 6248, + [6289] = 6193, + [6290] = 6290, + [6291] = 6291, + [6292] = 313, + [6293] = 6293, + [6294] = 6294, + [6295] = 6197, + [6296] = 2493, + [6297] = 6297, + [6298] = 319, + [6299] = 2494, + [6300] = 6300, [6301] = 6301, - [6302] = 6077, - [6303] = 6079, - [6304] = 6085, - [6305] = 6305, - [6306] = 6306, - [6307] = 6091, - [6308] = 6092, - [6309] = 6093, - [6310] = 6071, - [6311] = 6072, - [6312] = 6073, - [6313] = 6074, - [6314] = 6075, - [6315] = 6315, - [6316] = 6077, - [6317] = 6079, - [6318] = 6085, - [6319] = 6319, - [6320] = 6320, - [6321] = 6091, - [6322] = 6092, - [6323] = 6093, - [6324] = 6071, - [6325] = 6072, - [6326] = 6073, - [6327] = 6074, - [6328] = 6075, - [6329] = 6329, - [6330] = 6077, - [6331] = 6079, - [6332] = 6085, - [6333] = 6333, - [6334] = 6072, - [6335] = 6077, - [6336] = 6079, - [6337] = 6085, - [6338] = 6073, - [6339] = 6077, - [6340] = 6079, - [6341] = 6085, - [6342] = 6074, - [6343] = 6077, - [6344] = 6079, - [6345] = 6085, - [6346] = 6346, - [6347] = 6077, - [6348] = 6079, - [6349] = 6085, - [6350] = 6350, - [6351] = 6077, - [6352] = 6079, - [6353] = 6085, - [6354] = 6093, - [6355] = 6077, - [6356] = 6079, - [6357] = 6085, - [6358] = 6358, - [6359] = 6077, - [6360] = 6079, - [6361] = 6085, - [6362] = 5958, - [6363] = 6077, - [6364] = 6079, - [6365] = 6085, - [6366] = 1438, - [6367] = 6077, - [6368] = 6079, - [6369] = 6085, - [6370] = 1559, - [6371] = 6077, - [6372] = 6079, - [6373] = 6085, - [6374] = 6075, - [6375] = 6077, - [6376] = 6079, - [6377] = 6085, - [6378] = 6378, - [6379] = 6077, - [6380] = 6079, - [6381] = 6085, - [6382] = 276, - [6383] = 6077, - [6384] = 6079, - [6385] = 6085, - [6386] = 6386, - [6387] = 6077, - [6388] = 6079, - [6389] = 6085, - [6390] = 6390, - [6391] = 6077, - [6392] = 6079, - [6393] = 6085, - [6394] = 6394, - [6395] = 6077, - [6396] = 6079, - [6397] = 6085, + [6302] = 6239, + [6303] = 6303, + [6304] = 6190, + [6305] = 484, + [6306] = 320, + [6307] = 485, + [6308] = 6308, + [6309] = 6197, + [6310] = 477, + [6311] = 1476, + [6312] = 482, + [6313] = 6313, + [6314] = 6314, + [6315] = 474, + [6316] = 6217, + [6317] = 6234, + [6318] = 6235, + [6319] = 6236, + [6320] = 6246, + [6321] = 6247, + [6322] = 6248, + [6323] = 6193, + [6324] = 6239, + [6325] = 6190, + [6326] = 6326, + [6327] = 6327, + [6328] = 6197, + [6329] = 174, + [6330] = 6330, + [6331] = 6217, + [6332] = 6234, + [6333] = 6235, + [6334] = 6236, + [6335] = 6246, + [6336] = 6247, + [6337] = 6248, + [6338] = 6193, + [6339] = 1476, + [6340] = 6239, + [6341] = 6190, + [6342] = 497, + [6343] = 6197, + [6344] = 6217, + [6345] = 6234, + [6346] = 6235, + [6347] = 6236, + [6348] = 6246, + [6349] = 6247, + [6350] = 6248, + [6351] = 6193, + [6352] = 6352, + [6353] = 6239, + [6354] = 6190, + [6355] = 6197, + [6356] = 6356, + [6357] = 6357, + [6358] = 6217, + [6359] = 6234, + [6360] = 6235, + [6361] = 6236, + [6362] = 6246, + [6363] = 6247, + [6364] = 6248, + [6365] = 6193, + [6366] = 6366, + [6367] = 6239, + [6368] = 248, + [6369] = 6057, + [6370] = 6197, + [6371] = 6371, + [6372] = 6246, + [6373] = 474, + [6374] = 6217, + [6375] = 6234, + [6376] = 6235, + [6377] = 6236, + [6378] = 6246, + [6379] = 6247, + [6380] = 6248, + [6381] = 6193, + [6382] = 6382, + [6383] = 6239, + [6384] = 6190, + [6385] = 6197, + [6386] = 1495, + [6387] = 6217, + [6388] = 6234, + [6389] = 6235, + [6390] = 6236, + [6391] = 6246, + [6392] = 6247, + [6393] = 6248, + [6394] = 6193, + [6395] = 6239, + [6396] = 6190, + [6397] = 6397, [6398] = 6398, - [6399] = 6077, - [6400] = 6079, - [6401] = 6085, - [6402] = 6092, - [6403] = 6077, - [6404] = 6079, - [6405] = 6085, - [6406] = 6406, - [6407] = 6077, - [6408] = 6079, - [6409] = 6085, - [6410] = 321, - [6411] = 6077, - [6412] = 6079, - [6413] = 6085, - [6414] = 6306, - [6415] = 6077, - [6416] = 6079, - [6417] = 6085, - [6418] = 6418, - [6419] = 6077, - [6420] = 6079, - [6421] = 6085, - [6422] = 3241, - [6423] = 6077, - [6424] = 6079, - [6425] = 6085, - [6426] = 491, - [6427] = 6077, - [6428] = 6079, - [6429] = 6085, - [6430] = 6077, - [6431] = 6079, - [6432] = 6085, - [6433] = 6079, - [6434] = 6085, - [6435] = 6079, - [6436] = 6085, - [6437] = 6079, - [6438] = 6085, - [6439] = 6079, - [6440] = 6085, - [6441] = 6079, - [6442] = 6085, - [6443] = 3243, - [6444] = 2974, - [6445] = 6445, - [6446] = 6446, - [6447] = 6088, - [6448] = 6254, - [6449] = 3270, - [6450] = 6450, - [6451] = 6451, - [6452] = 384, - [6453] = 6079, - [6454] = 6077, - [6455] = 385, - [6456] = 386, - [6457] = 6457, - [6458] = 6079, - [6459] = 462, - [6460] = 6460, - [6461] = 6315, - [6462] = 462, - [6463] = 6463, - [6464] = 6464, - [6465] = 6465, - [6466] = 6406, - [6467] = 6072, - [6468] = 6468, - [6469] = 6073, + [6399] = 6247, + [6400] = 6400, + [6401] = 6197, + [6402] = 6402, + [6403] = 249, + [6404] = 6248, + [6405] = 6405, + [6406] = 6217, + [6407] = 6234, + [6408] = 6235, + [6409] = 6236, + [6410] = 6246, + [6411] = 6247, + [6412] = 6248, + [6413] = 6193, + [6414] = 6414, + [6415] = 6415, + [6416] = 6239, + [6417] = 6417, + [6418] = 6190, + [6419] = 3198, + [6420] = 6420, + [6421] = 6271, + [6422] = 6197, + [6423] = 3199, + [6424] = 6424, + [6425] = 1469, + [6426] = 6426, + [6427] = 2505, + [6428] = 6217, + [6429] = 6234, + [6430] = 6235, + [6431] = 6236, + [6432] = 6246, + [6433] = 6247, + [6434] = 6248, + [6435] = 6193, + [6436] = 6239, + [6437] = 1469, + [6438] = 6190, + [6439] = 6439, + [6440] = 6440, + [6441] = 6197, + [6442] = 474, + [6443] = 6443, + [6444] = 6217, + [6445] = 6234, + [6446] = 6235, + [6447] = 6236, + [6448] = 6246, + [6449] = 6247, + [6450] = 6248, + [6451] = 6193, + [6452] = 6452, + [6453] = 6239, + [6454] = 6190, + [6455] = 6455, + [6456] = 6456, + [6457] = 6197, + [6458] = 6217, + [6459] = 6234, + [6460] = 6235, + [6461] = 6236, + [6462] = 6246, + [6463] = 6247, + [6464] = 6248, + [6465] = 6193, + [6466] = 6466, + [6467] = 6239, + [6468] = 6190, + [6469] = 6469, [6470] = 6470, - [6471] = 487, - [6472] = 6074, - [6473] = 6473, - [6474] = 6085, - [6475] = 462, - [6476] = 3020, - [6477] = 6218, - [6478] = 461, - [6479] = 6077, - [6480] = 3022, - [6481] = 3271, - [6482] = 4649, - [6483] = 6483, - [6484] = 277, - [6485] = 6485, - [6486] = 6091, + [6471] = 6197, + [6472] = 3208, + [6473] = 6217, + [6474] = 6234, + [6475] = 6235, + [6476] = 6236, + [6477] = 6246, + [6478] = 6247, + [6479] = 6248, + [6480] = 6193, + [6481] = 6239, + [6482] = 6190, + [6483] = 6217, + [6484] = 6197, + [6485] = 292, + [6486] = 3209, [6487] = 6487, - [6488] = 6092, - [6489] = 6093, - [6490] = 6490, - [6491] = 6491, - [6492] = 6492, - [6493] = 6071, - [6494] = 6494, - [6495] = 162, - [6496] = 163, - [6497] = 6085, - [6498] = 6072, - [6499] = 6073, - [6500] = 6074, - [6501] = 6075, - [6502] = 6502, - [6503] = 6503, - [6504] = 6504, - [6505] = 6505, - [6506] = 6506, - [6507] = 6507, - [6508] = 239, - [6509] = 6509, - [6510] = 6510, - [6511] = 6091, - [6512] = 6092, - [6513] = 6093, - [6514] = 6071, - [6515] = 6072, - [6516] = 6073, - [6517] = 6074, - [6518] = 6075, - [6519] = 6077, - [6520] = 6077, - [6521] = 6521, - [6522] = 6085, - [6523] = 6523, - [6524] = 170, - [6525] = 171, - [6526] = 262, - [6527] = 1460, - [6528] = 1554, - [6529] = 6077, - [6530] = 6530, - [6531] = 1528, - [6532] = 6079, - [6533] = 6446, - [6534] = 6534, - [6535] = 6535, - [6536] = 470, - [6537] = 488, - [6538] = 162, - [6539] = 6085, - [6540] = 489, - [6541] = 6153, - [6542] = 463, - [6543] = 464, - [6544] = 491, - [6545] = 461, - [6546] = 492, - [6547] = 262, - [6548] = 164, - [6549] = 165, - [6550] = 6550, - [6551] = 6091, - [6552] = 5894, - [6553] = 6092, - [6554] = 6093, - [6555] = 6071, - [6556] = 6072, - [6557] = 6073, - [6558] = 6074, - [6559] = 4822, - [6560] = 6075, - [6561] = 163, - [6562] = 6562, - [6563] = 6077, - [6564] = 6079, - [6565] = 6565, - [6566] = 276, - [6567] = 6092, - [6568] = 6077, - [6569] = 6085, - [6570] = 463, - [6571] = 6079, - [6572] = 6093, - [6573] = 6071, - [6574] = 492, - [6575] = 277, - [6576] = 6576, - [6577] = 6091, - [6578] = 6092, - [6579] = 6093, - [6580] = 6071, - [6581] = 6072, - [6582] = 6091, - [6583] = 6073, - [6584] = 6074, - [6585] = 6550, - [6586] = 3491, - [6587] = 3474, - [6588] = 6075, - [6589] = 6589, - [6590] = 6590, - [6591] = 6591, - [6592] = 6592, - [6593] = 6077, - [6594] = 6079, - [6595] = 6595, - [6596] = 6460, - [6597] = 275, - [6598] = 6091, - [6599] = 6085, - [6600] = 6085, - [6601] = 6601, - [6602] = 1559, - [6603] = 169, - [6604] = 6079, - [6605] = 470, - [6606] = 4786, - [6607] = 6607, - [6608] = 6608, - [6609] = 6609, - [6610] = 6091, - [6611] = 6092, - [6612] = 6093, - [6613] = 6398, - [6614] = 6614, - [6615] = 6615, - [6616] = 6616, - [6617] = 3081, - [6618] = 6618, - [6619] = 6619, - [6620] = 6615, - [6621] = 6621, - [6622] = 6618, - [6623] = 6623, - [6624] = 6624, - [6625] = 6625, - [6626] = 276, - [6627] = 6627, - [6628] = 6628, - [6629] = 6629, - [6630] = 6630, - [6631] = 6619, - [6632] = 6632, - [6633] = 167, - [6634] = 3089, - [6635] = 6635, - [6636] = 6615, - [6637] = 166, - [6638] = 6638, - [6639] = 6136, - [6640] = 6240, - [6641] = 3090, - [6642] = 6618, - [6643] = 6619, - [6644] = 461, - [6645] = 6132, - [6646] = 6615, - [6647] = 6647, - [6648] = 6623, - [6649] = 6624, - [6650] = 6625, - [6651] = 6627, + [6488] = 6217, + [6489] = 6234, + [6490] = 6235, + [6491] = 6236, + [6492] = 6246, + [6493] = 6247, + [6494] = 6248, + [6495] = 6193, + [6496] = 246, + [6497] = 6239, + [6498] = 6190, + [6499] = 6197, + [6500] = 6500, + [6501] = 6217, + [6502] = 6234, + [6503] = 6235, + [6504] = 6236, + [6505] = 6246, + [6506] = 6239, + [6507] = 6248, + [6508] = 6193, + [6509] = 172, + [6510] = 173, + [6511] = 6239, + [6512] = 6190, + [6513] = 6197, + [6514] = 6217, + [6515] = 6234, + [6516] = 6235, + [6517] = 6236, + [6518] = 6246, + [6519] = 6247, + [6520] = 6248, + [6521] = 6193, + [6522] = 6239, + [6523] = 6190, + [6524] = 6197, + [6525] = 6217, + [6526] = 6234, + [6527] = 6235, + [6528] = 6236, + [6529] = 6246, + [6530] = 6247, + [6531] = 6248, + [6532] = 6193, + [6533] = 6239, + [6534] = 6190, + [6535] = 6197, + [6536] = 6217, + [6537] = 6234, + [6538] = 6235, + [6539] = 6236, + [6540] = 6246, + [6541] = 6247, + [6542] = 6248, + [6543] = 6193, + [6544] = 6544, + [6545] = 6239, + [6546] = 6190, + [6547] = 6021, + [6548] = 6197, + [6549] = 6217, + [6550] = 6234, + [6551] = 6235, + [6552] = 6236, + [6553] = 6246, + [6554] = 6247, + [6555] = 6248, + [6556] = 6193, + [6557] = 6239, + [6558] = 6190, + [6559] = 6197, + [6560] = 294, + [6561] = 6239, + [6562] = 6190, + [6563] = 6197, + [6564] = 6239, + [6565] = 6190, + [6566] = 6197, + [6567] = 2433, + [6568] = 6239, + [6569] = 6190, + [6570] = 6197, + [6571] = 6571, + [6572] = 6239, + [6573] = 6190, + [6574] = 6197, + [6575] = 6239, + [6576] = 6190, + [6577] = 6197, + [6578] = 6239, + [6579] = 6190, + [6580] = 6197, + [6581] = 6581, + [6582] = 6239, + [6583] = 6190, + [6584] = 6197, + [6585] = 6239, + [6586] = 6190, + [6587] = 6197, + [6588] = 6239, + [6589] = 6190, + [6590] = 6197, + [6591] = 6239, + [6592] = 6190, + [6593] = 6197, + [6594] = 6239, + [6595] = 6190, + [6596] = 6197, + [6597] = 6239, + [6598] = 6190, + [6599] = 6197, + [6600] = 6239, + [6601] = 6190, + [6602] = 6197, + [6603] = 6356, + [6604] = 6239, + [6605] = 6190, + [6606] = 6197, + [6607] = 6239, + [6608] = 6190, + [6609] = 6197, + [6610] = 6610, + [6611] = 6239, + [6612] = 6190, + [6613] = 6197, + [6614] = 452, + [6615] = 6239, + [6616] = 6190, + [6617] = 6197, + [6618] = 6239, + [6619] = 6190, + [6620] = 6197, + [6621] = 6239, + [6622] = 6190, + [6623] = 6197, + [6624] = 6239, + [6625] = 6190, + [6626] = 6197, + [6627] = 6239, + [6628] = 6190, + [6629] = 6197, + [6630] = 6239, + [6631] = 6190, + [6632] = 6197, + [6633] = 6239, + [6634] = 6190, + [6635] = 6197, + [6636] = 6239, + [6637] = 6190, + [6638] = 6197, + [6639] = 6239, + [6640] = 6190, + [6641] = 6197, + [6642] = 6190, + [6643] = 6197, + [6644] = 6190, + [6645] = 6197, + [6646] = 6190, + [6647] = 6197, + [6648] = 6190, + [6649] = 6197, + [6650] = 6190, + [6651] = 6197, [6652] = 6652, - [6653] = 6530, - [6654] = 6628, - [6655] = 6629, - [6656] = 3008, - [6657] = 6630, + [6653] = 5994, + [6654] = 6244, + [6655] = 6655, + [6656] = 6656, + [6657] = 6657, [6658] = 6658, - [6659] = 6145, - [6660] = 6173, - [6661] = 6269, - [6662] = 6627, - [6663] = 1554, - [6664] = 6628, - [6665] = 6629, - [6666] = 470, - [6667] = 6638, - [6668] = 277, - [6669] = 6147, - [6670] = 6152, - [6671] = 6619, - [6672] = 6615, - [6673] = 6219, - [6674] = 6623, - [6675] = 6624, - [6676] = 6625, - [6677] = 2965, - [6678] = 6627, - [6679] = 6628, - [6680] = 6629, - [6681] = 6630, - [6682] = 1554, + [6659] = 6234, + [6660] = 6235, + [6661] = 6236, + [6662] = 6662, + [6663] = 6207, + [6664] = 308, + [6665] = 6657, + [6666] = 6666, + [6667] = 6234, + [6668] = 6668, + [6669] = 313, + [6670] = 6670, + [6671] = 470, + [6672] = 498, + [6673] = 6673, + [6674] = 4710, + [6675] = 292, + [6676] = 6676, + [6677] = 319, + [6678] = 4947, + [6679] = 320, + [6680] = 6662, + [6681] = 6314, + [6682] = 6246, [6683] = 6683, - [6684] = 6684, + [6684] = 6247, [6685] = 6685, - [6686] = 6083, - [6687] = 6638, - [6688] = 6623, - [6689] = 6624, - [6690] = 6099, - [6691] = 6625, - [6692] = 6619, - [6693] = 462, - [6694] = 6632, - [6695] = 6615, - [6696] = 6696, - [6697] = 6623, - [6698] = 6624, - [6699] = 6625, - [6700] = 6627, - [6701] = 6150, - [6702] = 6230, - [6703] = 6628, - [6704] = 6629, - [6705] = 1438, - [6706] = 6630, - [6707] = 6112, - [6708] = 6483, - [6709] = 461, - [6710] = 6710, - [6711] = 6638, - [6712] = 6272, - [6713] = 6713, - [6714] = 6619, - [6715] = 6615, - [6716] = 6619, - [6717] = 6623, - [6718] = 6624, - [6719] = 6625, - [6720] = 6627, + [6686] = 6248, + [6687] = 6687, + [6688] = 6688, + [6689] = 164, + [6690] = 165, + [6691] = 6691, + [6692] = 6655, + [6693] = 4777, + [6694] = 6217, + [6695] = 6234, + [6696] = 6235, + [6697] = 6236, + [6698] = 6246, + [6699] = 6247, + [6700] = 6248, + [6701] = 6193, + [6702] = 6239, + [6703] = 3023, + [6704] = 1495, + [6705] = 6235, + [6706] = 6193, + [6707] = 469, + [6708] = 250, + [6709] = 6190, + [6710] = 1489, + [6711] = 6217, + [6712] = 486, + [6713] = 1521, + [6714] = 451, + [6715] = 6267, + [6716] = 4722, + [6717] = 6717, + [6718] = 6718, + [6719] = 477, + [6720] = 482, [6721] = 6721, - [6722] = 6628, - [6723] = 6629, - [6724] = 6724, - [6725] = 6630, + [6722] = 238, + [6723] = 6236, + [6724] = 164, + [6725] = 174, [6726] = 6726, - [6727] = 6727, - [6728] = 6728, - [6729] = 6729, + [6727] = 167, + [6728] = 168, + [6729] = 165, [6730] = 6730, - [6731] = 6638, - [6732] = 6619, - [6733] = 6615, - [6734] = 6589, - [6735] = 6623, - [6736] = 6624, - [6737] = 6625, - [6738] = 6627, - [6739] = 6590, - [6740] = 6628, - [6741] = 6629, - [6742] = 1559, - [6743] = 6630, + [6731] = 6731, + [6732] = 2993, + [6733] = 6469, + [6734] = 6734, + [6735] = 6735, + [6736] = 6736, + [6737] = 6737, + [6738] = 3626, + [6739] = 3601, + [6740] = 6740, + [6741] = 6741, + [6742] = 473, + [6743] = 6743, [6744] = 6744, [6745] = 6745, - [6746] = 6277, - [6747] = 6647, - [6748] = 1559, - [6749] = 6627, - [6750] = 6750, - [6751] = 6638, - [6752] = 6696, - [6753] = 6628, - [6754] = 6629, - [6755] = 6305, - [6756] = 6619, - [6757] = 6726, - [6758] = 6289, - [6759] = 6623, - [6760] = 6624, - [6761] = 6625, - [6762] = 6627, - [6763] = 3020, - [6764] = 6628, - [6765] = 6629, - [6766] = 6614, - [6767] = 6647, - [6768] = 6630, - [6769] = 6630, - [6770] = 6770, - [6771] = 3093, - [6772] = 3094, - [6773] = 6638, - [6774] = 3095, - [6775] = 4718, - [6776] = 3096, - [6777] = 4719, - [6778] = 6619, - [6779] = 6615, - [6780] = 6780, - [6781] = 6623, - [6782] = 6624, - [6783] = 6625, - [6784] = 6081, - [6785] = 6627, - [6786] = 6124, - [6787] = 6628, - [6788] = 6629, - [6789] = 2985, - [6790] = 6630, - [6791] = 6237, - [6792] = 6627, - [6793] = 6146, - [6794] = 6238, - [6795] = 6638, - [6796] = 6630, - [6797] = 6619, - [6798] = 6615, - [6799] = 6623, - [6800] = 6624, - [6801] = 6625, - [6802] = 6627, - [6803] = 6628, - [6804] = 6629, - [6805] = 3022, - [6806] = 6630, - [6807] = 6727, - [6808] = 6490, - [6809] = 6809, - [6810] = 6810, + [6746] = 6746, + [6747] = 469, + [6748] = 6748, + [6749] = 6749, + [6750] = 6225, + [6751] = 6247, + [6752] = 6752, + [6753] = 6753, + [6754] = 6754, + [6755] = 6755, + [6756] = 571, + [6757] = 6757, + [6758] = 6752, + [6759] = 6759, + [6760] = 6760, + [6761] = 6761, + [6762] = 6757, + [6763] = 6763, + [6764] = 6764, + [6765] = 6765, + [6766] = 6766, + [6767] = 629, + [6768] = 6768, + [6769] = 6769, + [6770] = 6734, + [6771] = 6771, + [6772] = 3042, + [6773] = 6773, + [6774] = 6735, + [6775] = 6773, + [6776] = 6776, + [6777] = 6754, + [6778] = 6761, + [6779] = 6779, + [6780] = 6420, + [6781] = 6757, + [6782] = 6752, + [6783] = 6783, + [6784] = 6763, + [6785] = 6764, + [6786] = 6765, + [6787] = 6766, + [6788] = 6768, + [6789] = 6769, + [6790] = 469, + [6791] = 6440, + [6792] = 6771, + [6793] = 6793, + [6794] = 6251, + [6795] = 6252, + [6796] = 6796, + [6797] = 6266, + [6798] = 6752, + [6799] = 1476, + [6800] = 313, + [6801] = 6754, + [6802] = 562, + [6803] = 563, + [6804] = 6216, + [6805] = 6757, + [6806] = 6752, + [6807] = 6807, + [6808] = 6808, + [6809] = 6761, + [6810] = 6198, [6811] = 6811, - [6812] = 6491, - [6813] = 6615, - [6814] = 6492, - [6815] = 6623, - [6816] = 6624, - [6817] = 6625, - [6818] = 6627, - [6819] = 6494, - [6820] = 6820, - [6821] = 6628, - [6822] = 6629, - [6823] = 6630, - [6824] = 6811, - [6825] = 6505, - [6826] = 6510, - [6827] = 6615, - [6828] = 6506, - [6829] = 6623, - [6830] = 6624, - [6831] = 6625, - [6832] = 6627, - [6833] = 3065, - [6834] = 6595, - [6835] = 6628, - [6836] = 6629, - [6837] = 6630, - [6838] = 4777, - [6839] = 2974, - [6840] = 6239, - [6841] = 6257, - [6842] = 6177, - [6843] = 6601, - [6844] = 6844, - [6845] = 6122, - [6846] = 6615, - [6847] = 6191, - [6848] = 6623, - [6849] = 6624, - [6850] = 6625, - [6851] = 6627, - [6852] = 1528, - [6853] = 6628, - [6854] = 6629, - [6855] = 6630, - [6856] = 6607, - [6857] = 6105, - [6858] = 6858, - [6859] = 463, - [6860] = 6860, - [6861] = 6861, - [6862] = 6615, - [6863] = 6863, - [6864] = 6623, - [6865] = 6624, - [6866] = 6625, - [6867] = 6867, - [6868] = 6627, - [6869] = 6628, - [6870] = 6629, - [6871] = 6630, - [6872] = 6638, - [6873] = 464, - [6874] = 6623, - [6875] = 6624, - [6876] = 6625, - [6877] = 6877, - [6878] = 6618, - [6879] = 6619, - [6880] = 6628, - [6881] = 6615, - [6882] = 1559, - [6883] = 6623, - [6884] = 6624, - [6885] = 6625, - [6886] = 6886, - [6887] = 6629, - [6888] = 6627, - [6889] = 3052, - [6890] = 6890, - [6891] = 6628, - [6892] = 6629, - [6893] = 6893, - [6894] = 6630, - [6895] = 6895, - [6896] = 6507, - [6897] = 5359, - [6898] = 6638, - [6899] = 6899, - [6900] = 5366, - [6901] = 6901, - [6902] = 6902, + [6812] = 6763, + [6813] = 6764, + [6814] = 6765, + [6815] = 1469, + [6816] = 6766, + [6817] = 6766, + [6818] = 6768, + [6819] = 6769, + [6820] = 6768, + [6821] = 6771, + [6822] = 6769, + [6823] = 6219, + [6824] = 6199, + [6825] = 1469, + [6826] = 6200, + [6827] = 566, + [6828] = 6828, + [6829] = 569, + [6830] = 570, + [6831] = 6754, + [6832] = 319, + [6833] = 6313, + [6834] = 6752, + [6835] = 6835, + [6836] = 6220, + [6837] = 6761, + [6838] = 6201, + [6839] = 6763, + [6840] = 6764, + [6841] = 6765, + [6842] = 561, + [6843] = 6766, + [6844] = 6221, + [6845] = 6768, + [6846] = 6769, + [6847] = 6736, + [6848] = 6771, + [6849] = 6769, + [6850] = 6761, + [6851] = 576, + [6852] = 6273, + [6853] = 6853, + [6854] = 6854, + [6855] = 6855, + [6856] = 6771, + [6857] = 6754, + [6858] = 6757, + [6859] = 6752, + [6860] = 614, + [6861] = 626, + [6862] = 6761, + [6863] = 578, + [6864] = 6864, + [6865] = 6763, + [6866] = 6764, + [6867] = 6765, + [6868] = 6766, + [6869] = 170, + [6870] = 549, + [6871] = 6768, + [6872] = 6769, + [6873] = 171, + [6874] = 166, + [6875] = 6771, + [6876] = 169, + [6877] = 6262, + [6878] = 580, + [6879] = 586, + [6880] = 6740, + [6881] = 595, + [6882] = 553, + [6883] = 6754, + [6884] = 6771, + [6885] = 564, + [6886] = 6757, + [6887] = 6752, + [6888] = 607, + [6889] = 6202, + [6890] = 6761, + [6891] = 3120, + [6892] = 6260, + [6893] = 6763, + [6894] = 6764, + [6895] = 6765, + [6896] = 6766, + [6897] = 6768, + [6898] = 6769, + [6899] = 320, + [6900] = 6754, + [6901] = 6771, + [6902] = 3075, [6903] = 6903, - [6904] = 6860, - [6905] = 6619, - [6906] = 6195, - [6907] = 6196, - [6908] = 6197, - [6909] = 6319, - [6910] = 535, - [6911] = 6911, - [6912] = 6320, - [6913] = 6858, - [6914] = 3058, - [6915] = 6198, - [6916] = 169, - [6917] = 6638, - [6918] = 275, - [6919] = 1460, - [6920] = 6615, - [6921] = 6618, - [6922] = 6619, - [6923] = 462, - [6924] = 534, - [6925] = 6615, - [6926] = 6901, - [6927] = 1460, - [6928] = 6450, - [6929] = 6929, - [6930] = 321, - [6931] = 6464, - [6932] = 6623, - [6933] = 6624, - [6934] = 6934, - [6935] = 6638, - [6936] = 463, - [6937] = 464, - [6938] = 6938, - [6939] = 4754, - [6940] = 6940, - [6941] = 6468, - [6942] = 6350, - [6943] = 6258, - [6944] = 6259, - [6945] = 3062, - [6946] = 6627, - [6947] = 4755, - [6948] = 6948, - [6949] = 170, - [6950] = 6684, - [6951] = 6260, - [6952] = 6628, - [6953] = 6629, - [6954] = 6618, - [6955] = 6809, - [6956] = 171, - [6957] = 6473, - [6958] = 6630, - [6959] = 533, + [6904] = 6263, + [6905] = 3078, + [6906] = 6754, + [6907] = 6907, + [6908] = 6908, + [6909] = 6752, + [6910] = 199, + [6911] = 6761, + [6912] = 284, + [6913] = 6274, + [6914] = 6763, + [6915] = 6764, + [6916] = 6765, + [6917] = 6766, + [6918] = 591, + [6919] = 6768, + [6920] = 6769, + [6921] = 611, + [6922] = 552, + [6923] = 6771, + [6924] = 6752, + [6925] = 6925, + [6926] = 3079, + [6927] = 6854, + [6928] = 6928, + [6929] = 3092, + [6930] = 597, + [6931] = 6754, + [6932] = 6932, + [6933] = 6752, + [6934] = 6761, + [6935] = 599, + [6936] = 6763, + [6937] = 6764, + [6938] = 6765, + [6939] = 3125, + [6940] = 6766, + [6941] = 6761, + [6942] = 6768, + [6943] = 6769, + [6944] = 6771, + [6945] = 6721, + [6946] = 6405, + [6947] = 2993, + [6948] = 616, + [6949] = 1495, + [6950] = 6754, + [6951] = 556, + [6952] = 6752, + [6953] = 6761, + [6954] = 308, + [6955] = 6763, + [6956] = 6764, + [6957] = 6765, + [6958] = 618, + [6959] = 6766, [6960] = 6960, - [6961] = 6301, - [6962] = 6962, - [6963] = 6963, - [6964] = 6964, - [6965] = 6390, - [6966] = 6966, - [6967] = 6630, + [6961] = 575, + [6962] = 6768, + [6963] = 6769, + [6964] = 577, + [6965] = 533, + [6966] = 6771, + [6967] = 3054, [6968] = 6968, - [6969] = 6886, + [6969] = 620, [6970] = 6970, - [6971] = 6858, - [6972] = 6615, - [6973] = 6521, - [6974] = 6858, - [6975] = 6155, - [6976] = 6329, - [6977] = 6962, - [6978] = 6960, - [6979] = 6394, - [6980] = 6445, - [6981] = 6451, - [6982] = 6504, - [6983] = 6509, - [6984] = 6638, - [6985] = 6418, - [6986] = 1438, - [6987] = 6638, - [6988] = 6158, - [6989] = 6333, - [6990] = 6618, - [6991] = 6619, + [6971] = 6670, + [6972] = 6763, + [6973] = 6764, + [6974] = 6754, + [6975] = 6765, + [6976] = 6752, + [6977] = 6761, + [6978] = 6763, + [6979] = 6764, + [6980] = 6765, + [6981] = 6773, + [6982] = 6766, + [6983] = 3099, + [6984] = 6768, + [6985] = 6769, + [6986] = 6986, + [6987] = 6771, + [6988] = 6691, + [6989] = 6989, + [6990] = 6990, + [6991] = 612, [6992] = 6992, - [6993] = 6615, - [6994] = 6615, - [6995] = 6623, - [6996] = 6624, - [6997] = 6625, - [6998] = 6627, - [6999] = 6628, - [7000] = 6629, - [7001] = 6858, - [7002] = 6630, - [7003] = 6623, - [7004] = 6624, - [7005] = 6625, - [7006] = 6901, - [7007] = 3015, - [7008] = 6934, - [7009] = 6684, - [7010] = 277, - [7011] = 4752, - [7012] = 6562, - [7013] = 6627, - [7014] = 6962, - [7015] = 6964, - [7016] = 6966, - [7017] = 6886, - [7018] = 6167, - [7019] = 6628, - [7020] = 6629, - [7021] = 6901, - [7022] = 6487, - [7023] = 6861, - [7024] = 6684, - [7025] = 321, - [7026] = 6502, - [7027] = 6863, - [7028] = 195, - [7029] = 6962, - [7030] = 6964, - [7031] = 6630, - [7032] = 6966, - [7033] = 6886, - [7034] = 6901, - [7035] = 6684, - [7036] = 6346, - [7037] = 6962, - [7038] = 6964, - [7039] = 6618, - [7040] = 6966, - [7041] = 6886, - [7042] = 6901, - [7043] = 6684, - [7044] = 6592, - [7045] = 6962, - [7046] = 6964, - [7047] = 6966, - [7048] = 6886, - [7049] = 6901, - [7050] = 6170, - [7051] = 6684, - [7052] = 6962, - [7053] = 6964, - [7054] = 6858, - [7055] = 6966, - [7056] = 6886, - [7057] = 6901, - [7058] = 6938, - [7059] = 6684, - [7060] = 6962, - [7061] = 6964, - [7062] = 6966, - [7063] = 6886, - [7064] = 6901, - [7065] = 6684, - [7066] = 6962, - [7067] = 6964, - [7068] = 6966, - [7069] = 6886, - [7070] = 6901, - [7071] = 276, - [7072] = 6110, - [7073] = 6684, - [7074] = 6962, - [7075] = 6964, - [7076] = 6966, - [7077] = 6886, - [7078] = 6901, - [7079] = 6090, - [7080] = 6684, - [7081] = 6962, - [7082] = 6964, - [7083] = 6638, - [7084] = 6966, - [7085] = 6886, - [7086] = 6901, - [7087] = 6684, - [7088] = 6638, - [7089] = 6962, - [7090] = 6964, - [7091] = 6966, - [7092] = 6886, - [7093] = 6901, - [7094] = 6858, - [7095] = 6684, - [7096] = 6358, - [7097] = 6962, - [7098] = 6964, - [7099] = 6618, - [7100] = 6966, - [7101] = 6886, - [7102] = 6901, - [7103] = 6684, - [7104] = 6503, - [7105] = 6962, - [7106] = 6964, - [7107] = 6966, - [7108] = 6886, - [7109] = 6901, - [7110] = 6684, - [7111] = 6619, - [7112] = 6962, - [7113] = 6964, - [7114] = 6929, - [7115] = 6966, - [7116] = 6886, - [7117] = 6901, - [7118] = 6684, - [7119] = 6962, - [7120] = 6964, - [7121] = 7121, - [7122] = 6966, - [7123] = 6886, - [7124] = 6901, - [7125] = 6684, - [7126] = 6615, - [7127] = 6962, - [7128] = 6964, - [7129] = 6523, - [7130] = 6966, - [7131] = 6886, - [7132] = 6901, - [7133] = 6684, - [7134] = 6962, - [7135] = 6964, - [7136] = 6966, - [7137] = 6886, - [7138] = 6901, - [7139] = 6684, - [7140] = 6962, - [7141] = 6964, - [7142] = 6966, - [7143] = 6886, - [7144] = 6901, - [7145] = 6684, - [7146] = 6962, - [7147] = 6964, - [7148] = 6623, - [7149] = 6966, - [7150] = 6886, - [7151] = 6901, - [7152] = 6684, - [7153] = 6624, - [7154] = 6962, - [7155] = 6964, - [7156] = 6625, - [7157] = 6966, - [7158] = 6886, - [7159] = 6627, - [7160] = 6623, - [7161] = 6628, - [7162] = 6629, - [7163] = 6630, - [7164] = 6171, + [6993] = 6754, + [6994] = 6752, + [6995] = 313, + [6996] = 6996, + [6997] = 610, + [6998] = 6761, + [6999] = 6763, + [7000] = 6764, + [7001] = 6765, + [7002] = 6773, + [7003] = 6766, + [7004] = 609, + [7005] = 6768, + [7006] = 6769, + [7007] = 2936, + [7008] = 6807, + [7009] = 6771, + [7010] = 6227, + [7011] = 6261, + [7012] = 6761, + [7013] = 7013, + [7014] = 6763, + [7015] = 6764, + [7016] = 6765, + [7017] = 6766, + [7018] = 6768, + [7019] = 6769, + [7020] = 6754, + [7021] = 7021, + [7022] = 6771, + [7023] = 7023, + [7024] = 7024, + [7025] = 198, + [7026] = 7026, + [7027] = 6439, + [7028] = 6761, + [7029] = 6443, + [7030] = 6763, + [7031] = 6764, + [7032] = 6765, + [7033] = 6766, + [7034] = 6269, + [7035] = 6768, + [7036] = 6769, + [7037] = 6796, + [7038] = 6771, + [7039] = 6757, + [7040] = 7040, + [7041] = 6752, + [7042] = 6452, + [7043] = 6761, + [7044] = 593, + [7045] = 7045, + [7046] = 6763, + [7047] = 6764, + [7048] = 6765, + [7049] = 6766, + [7050] = 6761, + [7051] = 6768, + [7052] = 6769, + [7053] = 622, + [7054] = 6771, + [7055] = 596, + [7056] = 627, + [7057] = 6455, + [7058] = 6761, + [7059] = 6763, + [7060] = 6763, + [7061] = 6764, + [7062] = 6765, + [7063] = 6764, + [7064] = 6766, + [7065] = 6765, + [7066] = 6768, + [7067] = 6769, + [7068] = 6301, + [7069] = 6771, + [7070] = 6807, + [7071] = 6456, + [7072] = 7072, + [7073] = 6766, + [7074] = 6768, + [7075] = 6769, + [7076] = 319, + [7077] = 6771, + [7078] = 6397, + [7079] = 6398, + [7080] = 601, + [7081] = 1489, + [7082] = 6400, + [7083] = 7083, + [7084] = 2937, + [7085] = 7085, + [7086] = 6415, + [7087] = 6402, + [7088] = 555, + [7089] = 4843, + [7090] = 6754, + [7091] = 6466, + [7092] = 2943, + [7093] = 4733, + [7094] = 4730, + [7095] = 6796, + [7096] = 6928, + [7097] = 6417, + [7098] = 5389, + [7099] = 6303, + [7100] = 320, + [7101] = 4820, + [7102] = 5416, + [7103] = 528, + [7104] = 4736, + [7105] = 7105, + [7106] = 608, + [7107] = 6773, + [7108] = 3032, + [7109] = 477, + [7110] = 6754, + [7111] = 3038, + [7112] = 6932, + [7113] = 6743, + [7114] = 7114, + [7115] = 1489, + [7116] = 6757, + [7117] = 6752, + [7118] = 6761, + [7119] = 6718, + [7120] = 6763, + [7121] = 6764, + [7122] = 6763, + [7123] = 482, + [7124] = 7124, + [7125] = 7125, + [7126] = 6764, + [7127] = 6765, + [7128] = 7128, + [7129] = 6776, + [7130] = 6683, + [7131] = 6765, + [7132] = 7132, + [7133] = 6793, + [7134] = 6907, + [7135] = 7135, + [7136] = 6766, + [7137] = 7137, + [7138] = 6807, + [7139] = 7139, + [7140] = 6744, + [7141] = 6853, + [7142] = 619, + [7143] = 6275, + [7144] = 6766, + [7145] = 6768, + [7146] = 6769, + [7147] = 6280, + [7148] = 7148, + [7149] = 6768, + [7150] = 6769, + [7151] = 6282, + [7152] = 6771, + [7153] = 6745, + [7154] = 7154, + [7155] = 6487, + [7156] = 7156, + [7157] = 6760, + [7158] = 6290, + [7159] = 6685, + [7160] = 6746, + [7161] = 6500, + [7162] = 6687, + [7163] = 6544, + [7164] = 6571, [7165] = 7165, - [7166] = 470, - [7167] = 6616, - [7168] = 168, - [7169] = 6129, - [7170] = 1528, - [7171] = 275, - [7172] = 6820, - [7173] = 6534, - [7174] = 7174, - [7175] = 6609, + [7166] = 6581, + [7167] = 7167, + [7168] = 6968, + [7169] = 7169, + [7170] = 4734, + [7171] = 3023, + [7172] = 7172, + [7173] = 6766, + [7174] = 6970, + [7175] = 6748, [7176] = 7176, - [7177] = 6964, - [7178] = 6624, - [7179] = 7179, + [7177] = 6749, + [7178] = 474, + [7179] = 602, [7180] = 7180, - [7181] = 6625, - [7182] = 6966, - [7183] = 6658, - [7184] = 7184, - [7185] = 7185, - [7186] = 6625, - [7187] = 7187, - [7188] = 7188, - [7189] = 7189, - [7190] = 7190, - [7191] = 4733, - [7192] = 7190, - [7193] = 1554, - [7194] = 7194, - [7195] = 7195, - [7196] = 7196, - [7197] = 2123, - [7198] = 7198, - [7199] = 7187, - [7200] = 7200, - [7201] = 7201, - [7202] = 470, - [7203] = 7203, - [7204] = 7204, - [7205] = 7205, - [7206] = 7206, - [7207] = 7207, - [7208] = 2012, - [7209] = 1990, - [7210] = 7203, - [7211] = 7211, - [7212] = 7212, - [7213] = 2025, - [7214] = 7214, - [7215] = 4936, - [7216] = 7216, - [7217] = 4940, - [7218] = 7188, - [7219] = 7219, - [7220] = 7207, - [7221] = 470, - [7222] = 7222, - [7223] = 7194, - [7224] = 7224, - [7225] = 7225, - [7226] = 3524, - [7227] = 7227, - [7228] = 7228, - [7229] = 7224, - [7230] = 7225, - [7231] = 7231, - [7232] = 7204, - [7233] = 7233, - [7234] = 7234, - [7235] = 7235, - [7236] = 7236, - [7237] = 7187, - [7238] = 7238, - [7239] = 7200, - [7240] = 4967, - [7241] = 4968, - [7242] = 4969, - [7243] = 7196, - [7244] = 7244, - [7245] = 2001, - [7246] = 4815, - [7247] = 7224, - [7248] = 7212, - [7249] = 7249, - [7250] = 7250, - [7251] = 3523, - [7252] = 7252, - [7253] = 7253, - [7254] = 7224, - [7255] = 3527, - [7256] = 4822, - [7257] = 7225, - [7258] = 7258, - [7259] = 7259, - [7260] = 7260, - [7261] = 7261, - [7262] = 7225, - [7263] = 7263, - [7264] = 2005, - [7265] = 3020, - [7266] = 7187, - [7267] = 7231, - [7268] = 7268, - [7269] = 7269, - [7270] = 7270, - [7271] = 7271, - [7272] = 3122, - [7273] = 7273, - [7274] = 7274, - [7275] = 7200, - [7276] = 3100, + [7181] = 6754, + [7182] = 6291, + [7183] = 473, + [7184] = 308, + [7185] = 6240, + [7186] = 6297, + [7187] = 7083, + [7188] = 6308, + [7189] = 7105, + [7190] = 6676, + [7191] = 6773, + [7192] = 1521, + [7193] = 6241, + [7194] = 630, + [7195] = 6771, + [7196] = 6326, + [7197] = 6754, + [7198] = 6327, + [7199] = 529, + [7200] = 6330, + [7201] = 2980, + [7202] = 469, + [7203] = 6761, + [7204] = 6763, + [7205] = 6764, + [7206] = 6765, + [7207] = 1476, + [7208] = 6766, + [7209] = 6768, + [7210] = 6769, + [7211] = 6771, + [7212] = 6757, + [7213] = 6776, + [7214] = 609, + [7215] = 7148, + [7216] = 6752, + [7217] = 6760, + [7218] = 7165, + [7219] = 7167, + [7220] = 7169, + [7221] = 3062, + [7222] = 3064, + [7223] = 560, + [7224] = 581, + [7225] = 474, + [7226] = 3069, + [7227] = 6688, + [7228] = 6776, + [7229] = 7229, + [7230] = 6242, + [7231] = 6761, + [7232] = 7148, + [7233] = 6249, + [7234] = 6760, + [7235] = 7165, + [7236] = 7167, + [7237] = 7169, + [7238] = 6776, + [7239] = 7148, + [7240] = 6760, + [7241] = 7165, + [7242] = 7167, + [7243] = 7169, + [7244] = 6776, + [7245] = 6763, + [7246] = 7246, + [7247] = 7148, + [7248] = 7132, + [7249] = 6760, + [7250] = 7165, + [7251] = 7165, + [7252] = 7167, + [7253] = 7169, + [7254] = 6776, + [7255] = 6366, + [7256] = 7148, + [7257] = 6760, + [7258] = 7165, + [7259] = 7167, + [7260] = 7169, + [7261] = 6776, + [7262] = 7148, + [7263] = 6760, + [7264] = 7165, + [7265] = 7167, + [7266] = 7169, + [7267] = 6776, + [7268] = 7148, + [7269] = 6424, + [7270] = 6760, + [7271] = 7165, + [7272] = 6764, + [7273] = 7167, + [7274] = 7169, + [7275] = 6776, + [7276] = 7148, [7277] = 7277, - [7278] = 7270, - [7279] = 7279, - [7280] = 7280, - [7281] = 7224, - [7282] = 7224, - [7283] = 7225, - [7284] = 7258, - [7285] = 7285, - [7286] = 7225, - [7287] = 7214, - [7288] = 1791, - [7289] = 7200, - [7290] = 7263, - [7291] = 7291, - [7292] = 7212, - [7293] = 3022, - [7294] = 3525, - [7295] = 7295, - [7296] = 462, - [7297] = 7219, - [7298] = 7187, - [7299] = 7224, - [7300] = 7300, - [7301] = 7301, - [7302] = 7212, - [7303] = 7187, - [7304] = 7304, - [7305] = 7305, - [7306] = 7212, - [7307] = 1528, - [7308] = 7225, - [7309] = 7200, - [7310] = 7310, - [7311] = 2985, - [7312] = 7212, - [7313] = 4825, - [7314] = 463, - [7315] = 464, - [7316] = 3107, - [7317] = 7212, - [7318] = 7273, - [7319] = 7319, - [7320] = 7212, - [7321] = 7274, - [7322] = 7227, - [7323] = 7252, - [7324] = 3008, - [7325] = 7325, - [7326] = 1528, - [7327] = 1559, - [7328] = 7212, - [7329] = 7329, - [7330] = 4761, - [7331] = 7253, - [7332] = 7259, - [7333] = 7333, - [7334] = 7285, - [7335] = 7310, - [7336] = 7260, - [7337] = 3509, - [7338] = 7338, - [7339] = 7277, - [7340] = 7340, - [7341] = 7269, - [7342] = 7271, - [7343] = 7343, - [7344] = 7344, - [7345] = 7345, - [7346] = 7200, - [7347] = 7224, - [7348] = 7348, - [7349] = 7349, - [7350] = 7333, - [7351] = 461, - [7352] = 7225, - [7353] = 199, - [7354] = 7304, - [7355] = 7355, - [7356] = 1554, - [7357] = 1559, - [7358] = 7205, - [7359] = 7187, - [7360] = 7200, - [7361] = 7216, - [7362] = 7228, - [7363] = 7300, - [7364] = 7187, - [7365] = 7200, - [7366] = 7234, - [7367] = 7250, - [7368] = 7368, - [7369] = 7224, - [7370] = 7225, - [7371] = 7207, - [7372] = 7372, - [7373] = 2974, - [7374] = 7206, - [7375] = 7200, - [7376] = 7187, - [7377] = 7377, - [7378] = 7378, - [7379] = 7379, - [7380] = 7380, - [7381] = 7379, - [7382] = 7382, - [7383] = 7382, + [7278] = 6371, + [7279] = 6760, + [7280] = 7165, + [7281] = 6763, + [7282] = 7167, + [7283] = 7169, + [7284] = 6776, + [7285] = 6764, + [7286] = 7148, + [7287] = 6652, + [7288] = 6760, + [7289] = 7165, + [7290] = 7167, + [7291] = 7169, + [7292] = 6776, + [7293] = 1521, + [7294] = 7148, + [7295] = 6765, + [7296] = 6760, + [7297] = 7165, + [7298] = 7167, + [7299] = 7169, + [7300] = 6776, + [7301] = 598, + [7302] = 7148, + [7303] = 629, + [7304] = 6760, + [7305] = 7165, + [7306] = 7135, + [7307] = 7167, + [7308] = 7169, + [7309] = 6776, + [7310] = 1495, + [7311] = 7148, + [7312] = 6773, + [7313] = 6766, + [7314] = 6760, + [7315] = 7165, + [7316] = 592, + [7317] = 7167, + [7318] = 7169, + [7319] = 6776, + [7320] = 6768, + [7321] = 7148, + [7322] = 6658, + [7323] = 174, + [7324] = 6760, + [7325] = 7165, + [7326] = 7167, + [7327] = 7169, + [7328] = 6776, + [7329] = 7148, + [7330] = 7330, + [7331] = 6760, + [7332] = 7165, + [7333] = 6768, + [7334] = 7167, + [7335] = 7169, + [7336] = 6776, + [7337] = 7148, + [7338] = 594, + [7339] = 6760, + [7340] = 7165, + [7341] = 557, + [7342] = 7167, + [7343] = 7169, + [7344] = 6776, + [7345] = 7148, + [7346] = 6769, + [7347] = 6760, + [7348] = 7165, + [7349] = 6932, + [7350] = 7167, + [7351] = 7169, + [7352] = 6776, + [7353] = 7148, + [7354] = 6760, + [7355] = 7165, + [7356] = 6771, + [7357] = 7167, + [7358] = 7169, + [7359] = 6776, + [7360] = 7148, + [7361] = 6760, + [7362] = 7165, + [7363] = 568, + [7364] = 7167, + [7365] = 7169, + [7366] = 6776, + [7367] = 7148, + [7368] = 7154, + [7369] = 6760, + [7370] = 7165, + [7371] = 6765, + [7372] = 7167, + [7373] = 7169, + [7374] = 172, + [7375] = 6760, + [7376] = 7165, + [7377] = 173, + [7378] = 7167, + [7379] = 7169, + [7380] = 6666, + [7381] = 6194, + [7382] = 6668, + [7383] = 6835, [7384] = 7384, - [7385] = 7385, - [7386] = 7386, - [7387] = 7387, - [7388] = 7388, - [7389] = 7389, - [7390] = 7390, - [7391] = 7391, - [7392] = 7385, - [7393] = 7393, - [7394] = 7394, - [7395] = 7395, - [7396] = 7385, - [7397] = 7397, - [7398] = 7398, - [7399] = 7395, - [7400] = 7400, - [7401] = 7386, - [7402] = 7389, - [7403] = 7380, - [7404] = 7404, - [7405] = 7380, - [7406] = 7406, + [7385] = 587, + [7386] = 554, + [7387] = 584, + [7388] = 604, + [7389] = 7169, + [7390] = 473, + [7391] = 6300, + [7392] = 1495, + [7393] = 6717, + [7394] = 6352, + [7395] = 7148, + [7396] = 477, + [7397] = 482, + [7398] = 613, + [7399] = 615, + [7400] = 7137, + [7401] = 7167, + [7402] = 6426, + [7403] = 6773, + [7404] = 6761, + [7405] = 7405, + [7406] = 4974, [7407] = 7407, [7408] = 7408, - [7409] = 7409, - [7410] = 7410, - [7411] = 7394, - [7412] = 396, + [7409] = 4962, + [7410] = 2980, + [7411] = 3038, + [7412] = 7412, [7413] = 7413, [7414] = 7414, - [7415] = 7415, - [7416] = 7385, - [7417] = 7395, - [7418] = 7380, + [7415] = 1678, + [7416] = 7416, + [7417] = 7417, + [7418] = 7418, [7419] = 7419, - [7420] = 7420, - [7421] = 7391, - [7422] = 7379, - [7423] = 7382, - [7424] = 7389, - [7425] = 7425, - [7426] = 7379, - [7427] = 7382, - [7428] = 7428, - [7429] = 7389, - [7430] = 7387, + [7420] = 7416, + [7421] = 7417, + [7422] = 7422, + [7423] = 7423, + [7424] = 7424, + [7425] = 3573, + [7426] = 7426, + [7427] = 7427, + [7428] = 3564, + [7429] = 7429, + [7430] = 4947, [7431] = 7431, [7432] = 7432, [7433] = 7433, - [7434] = 7419, + [7434] = 3158, [7435] = 7435, - [7436] = 7436, - [7437] = 7380, - [7438] = 7387, - [7439] = 396, - [7440] = 7380, - [7441] = 7387, - [7442] = 7442, - [7443] = 7382, - [7444] = 7435, - [7445] = 7393, - [7446] = 396, + [7436] = 573, + [7437] = 2433, + [7438] = 7438, + [7439] = 7416, + [7440] = 7417, + [7441] = 7405, + [7442] = 7424, + [7443] = 7443, + [7444] = 7424, + [7445] = 7438, + [7446] = 7438, [7447] = 7447, [7448] = 7448, - [7449] = 7449, - [7450] = 7391, - [7451] = 7451, - [7452] = 7394, - [7453] = 7453, + [7449] = 7435, + [7450] = 7450, + [7451] = 7413, + [7452] = 7452, + [7453] = 3574, [7454] = 7454, [7455] = 7455, - [7456] = 7449, - [7457] = 7387, - [7458] = 7393, - [7459] = 7391, - [7460] = 7395, - [7461] = 7420, - [7462] = 7391, - [7463] = 7420, + [7456] = 7456, + [7457] = 3154, + [7458] = 3156, + [7459] = 469, + [7460] = 7417, + [7461] = 7461, + [7462] = 1495, + [7463] = 7463, [7464] = 7464, - [7465] = 7391, - [7466] = 7431, - [7467] = 7393, - [7468] = 7420, - [7469] = 7378, - [7470] = 7428, - [7471] = 7379, - [7472] = 7472, - [7473] = 7419, - [7474] = 7436, - [7475] = 7475, - [7476] = 7379, - [7477] = 7382, - [7478] = 7389, - [7479] = 7386, - [7480] = 7420, - [7481] = 7389, - [7482] = 7380, - [7483] = 7483, - [7484] = 7393, - [7485] = 7485, - [7486] = 7486, + [7465] = 572, + [7466] = 7466, + [7467] = 7467, + [7468] = 7468, + [7469] = 7469, + [7470] = 7470, + [7471] = 7471, + [7472] = 7416, + [7473] = 7473, + [7474] = 3023, + [7475] = 7419, + [7476] = 7476, + [7477] = 1495, + [7478] = 7478, + [7479] = 7417, + [7480] = 7480, + [7481] = 7481, + [7482] = 7463, + [7483] = 7468, + [7484] = 4778, + [7485] = 7471, + [7486] = 7429, [7487] = 7487, - [7488] = 7414, + [7488] = 7488, [7489] = 7489, - [7490] = 7387, - [7491] = 7491, + [7490] = 7443, + [7491] = 7487, [7492] = 7492, - [7493] = 7382, - [7494] = 7494, - [7495] = 7387, - [7496] = 7483, - [7497] = 7420, - [7498] = 7393, - [7499] = 7420, - [7500] = 7378, - [7501] = 7379, - [7502] = 7386, - [7503] = 7420, - [7504] = 7483, - [7505] = 7382, - [7506] = 7379, - [7507] = 7492, - [7508] = 7377, - [7509] = 7379, - [7510] = 7382, - [7511] = 7393, - [7512] = 7382, + [7493] = 7438, + [7494] = 7450, + [7495] = 7426, + [7496] = 7427, + [7497] = 7497, + [7498] = 7498, + [7499] = 7424, + [7500] = 7438, + [7501] = 3581, + [7502] = 7481, + [7503] = 7503, + [7504] = 7504, + [7505] = 7489, + [7506] = 582, + [7507] = 4806, + [7508] = 7508, + [7509] = 7509, + [7510] = 474, + [7511] = 588, + [7512] = 7498, [7513] = 7513, - [7514] = 7387, - [7515] = 7386, - [7516] = 7449, - [7517] = 7407, - [7518] = 7428, - [7519] = 7389, - [7520] = 7390, - [7521] = 7521, - [7522] = 7389, - [7523] = 7386, - [7524] = 7393, - [7525] = 7379, - [7526] = 7382, - [7527] = 7420, - [7528] = 7389, - [7529] = 7382, - [7530] = 7487, - [7531] = 7395, - [7532] = 7389, - [7533] = 7279, - [7534] = 7385, - [7535] = 7410, - [7536] = 7380, - [7537] = 7393, - [7538] = 7538, - [7539] = 7420, - [7540] = 397, - [7541] = 7379, - [7542] = 7382, - [7543] = 7386, - [7544] = 7483, - [7545] = 7391, - [7546] = 7546, - [7547] = 7379, + [7514] = 7488, + [7515] = 1489, + [7516] = 7438, + [7517] = 7424, + [7518] = 7447, + [7519] = 579, + [7520] = 7504, + [7521] = 473, + [7522] = 7508, + [7523] = 7523, + [7524] = 7463, + [7525] = 7525, + [7526] = 7469, + [7527] = 2471, + [7528] = 7408, + [7529] = 2505, + [7530] = 474, + [7531] = 3569, + [7532] = 7532, + [7533] = 7463, + [7534] = 7416, + [7535] = 7417, + [7536] = 477, + [7537] = 482, + [7538] = 7470, + [7539] = 7539, + [7540] = 7463, + [7541] = 7541, + [7542] = 585, + [7543] = 7543, + [7544] = 7544, + [7545] = 7432, + [7546] = 7463, + [7547] = 7480, [7548] = 7548, - [7549] = 7483, - [7550] = 7393, - [7551] = 7432, - [7552] = 7552, - [7553] = 7384, - [7554] = 7385, - [7555] = 7389, - [7556] = 7382, - [7557] = 7395, - [7558] = 7380, - [7559] = 7386, - [7560] = 7483, - [7561] = 7379, - [7562] = 7393, - [7563] = 7382, - [7564] = 7389, - [7565] = 7407, - [7566] = 7386, - [7567] = 7567, - [7568] = 7379, - [7569] = 7380, - [7570] = 7379, + [7549] = 7463, + [7550] = 7448, + [7551] = 7461, + [7552] = 7463, + [7553] = 7424, + [7554] = 2143, + [7555] = 7438, + [7556] = 7556, + [7557] = 7463, + [7558] = 7464, + [7559] = 4975, + [7560] = 5585, + [7561] = 7561, + [7562] = 7562, + [7563] = 1489, + [7564] = 7424, + [7565] = 7565, + [7566] = 7438, + [7567] = 7416, + [7568] = 7469, + [7569] = 7435, + [7570] = 7450, [7571] = 7571, - [7572] = 7387, - [7573] = 7393, - [7574] = 7379, - [7575] = 7389, - [7576] = 7389, - [7577] = 7382, - [7578] = 7578, - [7579] = 7389, - [7580] = 7420, - [7581] = 7581, - [7582] = 7407, - [7583] = 7583, - [7584] = 7380, - [7585] = 7393, - [7586] = 7382, - [7587] = 7587, - [7588] = 7386, - [7589] = 7385, + [7572] = 7452, + [7573] = 7426, + [7574] = 7427, + [7575] = 1521, + [7576] = 7454, + [7577] = 1521, + [7578] = 7455, + [7579] = 204, + [7580] = 7417, + [7581] = 2993, + [7582] = 7416, + [7583] = 7417, + [7584] = 7418, + [7585] = 7585, + [7586] = 7416, + [7587] = 7417, + [7588] = 4972, + [7589] = 7424, [7590] = 7590, - [7591] = 7428, - [7592] = 7483, - [7593] = 7395, - [7594] = 7594, - [7595] = 7379, - [7596] = 7596, - [7597] = 7393, - [7598] = 7382, - [7599] = 7385, - [7600] = 7600, - [7601] = 7386, - [7602] = 7389, - [7603] = 7395, - [7604] = 7604, - [7605] = 7483, - [7606] = 7380, - [7607] = 7600, - [7608] = 7391, - [7609] = 7393, + [7591] = 7438, + [7592] = 7561, + [7593] = 7525, + [7594] = 7476, + [7595] = 7424, + [7596] = 5059, + [7597] = 7597, + [7598] = 3032, + [7599] = 4970, + [7600] = 4971, + [7601] = 7419, + [7602] = 7602, + [7603] = 7416, + [7604] = 2493, + [7605] = 2494, + [7606] = 7606, + [7607] = 7607, + [7608] = 7608, + [7609] = 7609, [7610] = 7610, - [7611] = 7428, + [7611] = 7611, [7612] = 7612, - [7613] = 7387, - [7614] = 7420, - [7615] = 7379, - [7616] = 7382, - [7617] = 7492, - [7618] = 7393, - [7619] = 7389, + [7613] = 7613, + [7614] = 7614, + [7615] = 7615, + [7616] = 7616, + [7617] = 7617, + [7618] = 7618, + [7619] = 7616, [7620] = 7620, - [7621] = 7391, - [7622] = 7380, - [7623] = 7394, - [7624] = 7624, - [7625] = 7483, - [7626] = 7447, - [7627] = 7380, - [7628] = 7385, - [7629] = 7420, - [7630] = 7379, - [7631] = 7492, - [7632] = 7379, - [7633] = 7382, - [7634] = 7386, - [7635] = 7382, - [7636] = 7386, - [7637] = 7612, - [7638] = 7389, - [7639] = 7389, - [7640] = 7435, - [7641] = 7641, - [7642] = 7380, - [7643] = 7394, - [7644] = 7604, - [7645] = 7428, - [7646] = 7413, - [7647] = 7382, - [7648] = 7387, + [7621] = 7621, + [7622] = 7622, + [7623] = 7623, + [7624] = 7615, + [7625] = 7608, + [7626] = 7626, + [7627] = 7608, + [7628] = 7628, + [7629] = 7629, + [7630] = 7630, + [7631] = 7608, + [7632] = 7632, + [7633] = 7633, + [7634] = 447, + [7635] = 7618, + [7636] = 7622, + [7637] = 7611, + [7638] = 7618, + [7639] = 7608, + [7640] = 7640, + [7641] = 7628, + [7642] = 7642, + [7643] = 7608, + [7644] = 7644, + [7645] = 7632, + [7646] = 7646, + [7647] = 7629, + [7648] = 7648, [7649] = 7649, - [7650] = 7650, - [7651] = 7380, - [7652] = 7407, - [7653] = 7407, - [7654] = 7654, - [7655] = 7610, - [7656] = 7380, - [7657] = 7382, - [7658] = 7435, - [7659] = 397, - [7660] = 7394, - [7661] = 7442, - [7662] = 7382, - [7663] = 7387, - [7664] = 7436, - [7665] = 7385, - [7666] = 7395, - [7667] = 7380, - [7668] = 7594, - [7669] = 7610, - [7670] = 7513, - [7671] = 7671, - [7672] = 7672, - [7673] = 7382, - [7674] = 7380, - [7675] = 7395, - [7676] = 7641, - [7677] = 7610, - [7678] = 7464, - [7679] = 7672, - [7680] = 7672, - [7681] = 7420, - [7682] = 7682, - [7683] = 7428, - [7684] = 7385, - [7685] = 7391, - [7686] = 7382, - [7687] = 7420, - [7688] = 7385, - [7689] = 7395, - [7690] = 7610, - [7691] = 7385, - [7692] = 7380, - [7693] = 7382, - [7694] = 7395, - [7695] = 7483, - [7696] = 7380, - [7697] = 397, - [7698] = 7654, - [7699] = 7699, - [7700] = 7387, - [7701] = 7594, - [7702] = 7382, - [7703] = 7594, + [7650] = 7646, + [7651] = 7608, + [7652] = 7652, + [7653] = 7653, + [7654] = 7608, + [7655] = 7608, + [7656] = 7656, + [7657] = 7657, + [7658] = 7629, + [7659] = 7632, + [7660] = 7629, + [7661] = 7608, + [7662] = 7621, + [7663] = 7615, + [7664] = 7618, + [7665] = 7621, + [7666] = 7666, + [7667] = 7667, + [7668] = 7628, + [7669] = 7608, + [7670] = 7622, + [7671] = 7621, + [7672] = 7628, + [7673] = 7656, + [7674] = 7648, + [7675] = 7608, + [7676] = 7632, + [7677] = 7677, + [7678] = 7648, + [7679] = 7646, + [7680] = 7629, + [7681] = 7681, + [7682] = 7608, + [7683] = 7648, + [7684] = 7615, + [7685] = 7622, + [7686] = 7646, + [7687] = 7649, + [7688] = 7629, + [7689] = 7689, + [7690] = 7648, + [7691] = 7649, + [7692] = 7608, + [7693] = 7616, + [7694] = 7694, + [7695] = 7608, + [7696] = 7621, + [7697] = 447, + [7698] = 7633, + [7699] = 7633, + [7700] = 7629, + [7701] = 7701, + [7702] = 7616, + [7703] = 7608, [7704] = 7704, - [7705] = 7594, - [7706] = 7420, - [7707] = 7707, - [7708] = 7407, - [7709] = 7492, - [7710] = 7385, - [7711] = 7382, - [7712] = 7435, - [7713] = 7483, - [7714] = 7379, - [7715] = 7395, - [7716] = 7382, - [7717] = 7704, - [7718] = 7386, - [7719] = 7389, - [7720] = 7483, - [7721] = 7382, - [7722] = 7387, - [7723] = 7395, - [7724] = 7724, - [7725] = 7384, + [7705] = 7628, + [7706] = 7646, + [7707] = 7629, + [7708] = 7649, + [7709] = 7618, + [7710] = 7616, + [7711] = 7649, + [7712] = 7616, + [7713] = 7608, + [7714] = 7714, + [7715] = 7617, + [7716] = 7714, + [7717] = 7649, + [7718] = 7617, + [7719] = 7714, + [7720] = 7720, + [7721] = 7721, + [7722] = 7722, + [7723] = 7608, + [7724] = 7608, + [7725] = 7721, [7726] = 7726, + [7727] = 7615, + [7728] = 7728, + [7729] = 7729, + [7730] = 7608, + [7731] = 7722, + [7732] = 7608, + [7733] = 7733, + [7734] = 7632, + [7735] = 7608, + [7736] = 7646, + [7737] = 7618, + [7738] = 7629, + [7739] = 7621, + [7740] = 7633, + [7741] = 7629, + [7742] = 7615, + [7743] = 7649, + [7744] = 7608, + [7745] = 7618, + [7746] = 7621, + [7747] = 7648, + [7748] = 7608, + [7749] = 7749, + [7750] = 7750, + [7751] = 7608, + [7752] = 7646, + [7753] = 7633, + [7754] = 7754, + [7755] = 7633, + [7756] = 7656, + [7757] = 7621, + [7758] = 7758, + [7759] = 7728, + [7760] = 7616, + [7761] = 7722, + [7762] = 7608, + [7763] = 7763, + [7764] = 7728, + [7765] = 7729, + [7766] = 7766, + [7767] = 7632, + [7768] = 7768, + [7769] = 7769, + [7770] = 7622, + [7771] = 7771, + [7772] = 7608, + [7773] = 7773, + [7774] = 7774, + [7775] = 7646, + [7776] = 7622, + [7777] = 7777, + [7778] = 7629, + [7779] = 7648, + [7780] = 7632, + [7781] = 7728, + [7782] = 7729, + [7783] = 7649, + [7784] = 7608, + [7785] = 7621, + [7786] = 7667, + [7787] = 7608, + [7788] = 7681, + [7789] = 7644, + [7790] = 7608, + [7791] = 7791, + [7792] = 7608, + [7793] = 7628, + [7794] = 7632, + [7795] = 7628, + [7796] = 7728, + [7797] = 7729, + [7798] = 7456, + [7799] = 7617, + [7800] = 7608, + [7801] = 445, + [7802] = 7622, + [7803] = 7689, + [7804] = 7628, + [7805] = 7805, + [7806] = 7609, + [7807] = 7608, + [7808] = 7646, + [7809] = 7629, + [7810] = 7728, + [7811] = 7729, + [7812] = 7649, + [7813] = 7728, + [7814] = 629, + [7815] = 7815, + [7816] = 7646, + [7817] = 7656, + [7818] = 7818, + [7819] = 609, + [7820] = 7608, + [7821] = 7763, + [7822] = 7615, + [7823] = 7618, + [7824] = 7728, + [7825] = 7729, + [7826] = 7621, + [7827] = 7666, + [7828] = 7608, + [7829] = 7621, + [7830] = 2471, + [7831] = 7831, + [7832] = 7832, + [7833] = 7729, + [7834] = 7632, + [7835] = 7835, + [7836] = 7656, + [7837] = 7837, + [7838] = 7728, + [7839] = 7729, + [7840] = 7608, + [7841] = 7841, + [7842] = 7842, + [7843] = 7632, + [7844] = 7629, + [7845] = 7845, + [7846] = 7846, + [7847] = 7847, + [7848] = 7632, + [7849] = 7628, + [7850] = 7608, + [7851] = 7656, + [7852] = 7728, + [7853] = 7729, + [7854] = 7632, + [7855] = 7855, + [7856] = 7608, + [7857] = 7646, + [7858] = 7721, + [7859] = 7622, + [7860] = 7622, + [7861] = 7618, + [7862] = 7615, + [7863] = 7677, + [7864] = 7652, + [7865] = 7728, + [7866] = 7729, + [7867] = 7867, + [7868] = 7646, + [7869] = 7632, + [7870] = 7842, + [7871] = 7646, + [7872] = 7733, + [7873] = 7629, + [7874] = 7649, + [7875] = 7875, + [7876] = 2433, + [7877] = 7629, + [7878] = 7728, + [7879] = 7729, + [7880] = 7720, + [7881] = 7704, + [7882] = 7621, + [7883] = 7622, + [7884] = 7646, + [7885] = 7754, + [7886] = 7629, + [7887] = 7629, + [7888] = 7888, + [7889] = 7648, + [7890] = 7649, + [7891] = 7728, + [7892] = 7729, + [7893] = 7648, + [7894] = 447, + [7895] = 7608, + [7896] = 7649, + [7897] = 7677, + [7898] = 7626, + [7899] = 7615, + [7900] = 7900, + [7901] = 7648, + [7902] = 7902, + [7903] = 7649, + [7904] = 7728, + [7905] = 7729, + [7906] = 7677, + [7907] = 7629, + [7908] = 7777, + [7909] = 7608, + [7910] = 7616, + [7911] = 7729, + [7912] = 7616, + [7913] = 7689, + [7914] = 7608, + [7915] = 7646, + [7916] = 7629, + [7917] = 7728, + [7918] = 7729, + [7919] = 7649, + [7920] = 7629, + [7921] = 7720, + [7922] = 7617, + [7923] = 7733, + [7924] = 7621, + [7925] = 7681, + [7926] = 7608, + [7927] = 7608, + [7928] = 7652, + [7929] = 7632, + [7930] = 7728, + [7931] = 7729, + [7932] = 7932, + [7933] = 7649, + [7934] = 7721, + [7935] = 7722, + [7936] = 7622, + [7937] = 7722, + [7938] = 7646, + [7939] = 7629, + [7940] = 7728, + [7941] = 7729, + [7942] = 7646, + [7943] = 7648, + [7944] = 7649, + [7945] = 7608, + [7946] = 7615, + [7947] = 7629, + [7948] = 7656, + [7949] = 7618, + [7950] = 7728, + [7951] = 7621, + [7952] = 7608, + [7953] = 7646, + [7954] = 7629, + [7955] = 7629, + [7956] = 7633, + [7957] = 7615, + [7958] = 7621, + [7959] = 7728, + [7960] = 7618, + [7961] = 7847, + [7962] = 445, + [7963] = 7615, + [7964] = 7964, + [7965] = 7615, + [7966] = 7618, + [7967] = 7633, + [7968] = 7728, + [7969] = 7621, + [7970] = 7652, + [7971] = 7971, + [7972] = 7621, + [7973] = 7632, + [7974] = 7628, + [7975] = 7629, + [7976] = 7633, + [7977] = 7728, + [7978] = 7618, + [7979] = 7629, + [7980] = 7648, + [7981] = 7621, + [7982] = 7982, + [7983] = 7628, + [7984] = 7984, + [7985] = 7608, + [7986] = 7728, + [7987] = 7629, + [7988] = 7701, + [7989] = 7628, + [7990] = 7677, + [7991] = 7621, + [7992] = 7622, + [7993] = 7728, + [7994] = 7728, + [7995] = 7728, + [7996] = 7728, + [7997] = 7728, + [7998] = 7728, + [7999] = 7728, + [8000] = 7728, + [8001] = 7728, + [8002] = 7728, + [8003] = 7728, + [8004] = 7728, + [8005] = 7728, + [8006] = 7728, + [8007] = 7728, + [8008] = 7728, + [8009] = 7728, + [8010] = 7728, + [8011] = 7728, + [8012] = 7728, + [8013] = 7728, + [8014] = 7728, + [8015] = 7728, + [8016] = 7728, + [8017] = 7728, + [8018] = 7728, + [8019] = 7728, + [8020] = 7728, + [8021] = 7728, + [8022] = 7728, + [8023] = 7628, + [8024] = 7971, + [8025] = 7646, + [8026] = 7608, + [8027] = 8027, + [8028] = 8028, + [8029] = 7984, + [8030] = 7642, + [8031] = 7628, + [8032] = 7614, + [8033] = 7656, + [8034] = 7984, + [8035] = 7649, + [8036] = 8036, + [8037] = 8037, + [8038] = 7615, + [8039] = 7629, + [8040] = 7618, + [8041] = 7648, + [8042] = 7649, + [8043] = 7621, + [8044] = 8044, + [8045] = 7623, + [8046] = 7971, + [8047] = 445, + [8048] = 7608, + [8049] = 7649, + [8050] = 7615, + [8051] = 7633, + [8052] = 7608, + [8053] = 7721, + [8054] = 7971, + [8055] = 8037, + [8056] = 7971, + [8057] = 7984, + [8058] = 7608, + [8059] = 7618, + [8060] = 7628, + [8061] = 7648, + [8062] = 7656, + [8063] = 7608, + [8064] = 7629, + [8065] = 7649, + [8066] = 7646, + [8067] = 7632, + [8068] = 7681, + [8069] = 8069, + [8070] = 2505, + [8071] = 7622, + [8072] = 7646, + [8073] = 7621, + [8074] = 7722, + [8075] = 7629, + [8076] = 7629, + [8077] = 7648, + [8078] = 7608, + [8079] = 8079, }; static TSCharacterRange aux_sym_cmd_identifier_token1_character_set_1[] = { @@ -13364,397 +13745,366 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 0: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2865, + '\n', 2857, '\r', 2, - '!', 2991, - '"', 3491, - '#', 4791, - '$', 3114, - '&', 2986, - '\'', 3508, - '(', 3220, - ')', 3367, - '*', 3188, - '+', 3522, - ',', 2919, - '-', 2962, - '.', 3284, - '/', 2992, - '0', 2998, - ':', 3520, - ';', 2870, - '<', 2948, - '=', 3661, - '>', 2950, - '?', 2955, - '@', 2951, - 'B', 3018, - 'E', 2987, - 'G', 2996, - 'I', 3017, - 'K', 2996, - 'M', 2996, - 'N', 3016, - 'P', 2996, - 'T', 2996, - '[', 3451, - '\\', 2990, - ']', 2916, - '^', 3604, - '_', 3104, - '`', 3000, - 'a', 3011, - 'b', 3013, - 'c', 3001, - 'd', 3002, - 'e', 2988, - 'f', 3003, - 'g', 2995, - 'h', 3010, - 'i', 2997, - 'k', 2995, - 'l', 3005, - 'm', 2993, - 'n', 3006, - 'o', 2989, - 'p', 2995, - 'r', 3007, - 's', 3008, - 't', 2994, - 'u', 3015, - 'v', 3004, - 'w', 3009, - 'x', 3012, - '{', 3099, - '|', 2871, - '}', 3100, - 0xb5, 3014, + '!', 2983, + '"', 3482, + '#', 4782, + '$', 3106, + '&', 2978, + '\'', 3499, + '(', 3212, + ')', 3359, + '*', 3180, + '+', 3513, + ',', 2911, + '-', 2954, + '.', 3276, + '/', 2984, + '0', 2990, + ':', 3511, + ';', 2862, + '<', 2940, + '=', 3652, + '>', 2942, + '?', 2947, + '@', 2943, + 'B', 3010, + 'E', 2979, + 'G', 2988, + 'I', 3009, + 'K', 2988, + 'M', 2988, + 'N', 3008, + 'P', 2988, + 'T', 2988, + '[', 3442, + '\\', 2982, + ']', 2908, + '^', 3595, + '_', 3096, + '`', 2992, + 'a', 3003, + 'b', 3005, + 'c', 2993, + 'd', 2994, + 'e', 2980, + 'f', 2995, + 'g', 2987, + 'h', 3002, + 'i', 2989, + 'k', 2987, + 'l', 2997, + 'm', 2985, + 'n', 2998, + 'o', 2981, + 'p', 2987, + 'r', 2999, + 's', 3000, + 't', 2986, + 'u', 3007, + 'v', 2996, + 'w', 3001, + 'x', 3004, + '{', 3091, + '|', 2863, + '}', 3092, + 0xb5, 3006, '\t', 1, ' ', 1, - 0x0b, 578, - '\f', 578, - 'A', 3018, - 'C', 3018, - 'D', 3018, - 'F', 3018, + 0x0b, 580, + '\f', 580, + 'A', 3010, + 'C', 3010, + 'D', 3010, + 'F', 3010, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2999); - if (set_contains(sym_param_short_flag_identifier_character_set_1, 724, lookahead)) ADVANCE(3019); - if (lookahead != 0) ADVANCE(2652); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2991); + if (set_contains(sym_param_short_flag_identifier_character_set_1, 724, lookahead)) ADVANCE(3011); + if (lookahead != 0) ADVANCE(2644); END_STATE(); case 1: ADVANCE_MAP( - '\n', 2865, + '\n', 2857, '\r', 2, '!', 1138, - '"', 3491, - '#', 4791, - '$', 2921, - '\'', 517, - '(', 2917, - ')', 2918, - '*', 3187, - '+', 3521, - ',', 2919, - '-', 2963, + '"', 3482, + '#', 4782, + '$', 2913, + '\'', 519, + '(', 2909, + ')', 2910, + '*', 3179, + '+', 3512, + ',', 2911, + '-', 2955, '.', 1130, '/', 2298, - '0', 2355, - ':', 3520, - ';', 2870, - '<', 3213, + '0', 2354, + ':', 3511, + ';', 2862, + '<', 3205, '=', 1074, - '>', 2950, - '?', 3189, - 'I', 2639, - 'N', 2635, - '[', 2915, - ']', 2916, - '^', 3604, - '_', 3105, - '`', 624, - 'a', 2488, - 'b', 2454, - 'c', 2382, - 'd', 2421, + '>', 2942, + '?', 3181, + 'I', 2631, + 'N', 2627, + '[', 2907, + ']', 2908, + '^', 3595, + '_', 3097, + '`', 626, + 'a', 2482, + 'b', 2448, + 'c', 2376, + 'd', 2415, 'e', 2307, - 'f', 2368, - 'h', 2456, - 'i', 2350, - 'l', 2429, - 'm', 2380, - 'n', 2422, + 'f', 2363, + 'h', 2450, + 'i', 2349, + 'l', 2423, + 'm', 2374, + 'n', 2416, 'o', 2306, - 'r', 2440, - 's', 2519, - 't', 2538, - 'u', 2573, - 'v', 2377, - 'w', 2451, - 'x', 2509, - '{', 3099, - '|', 2871, - '}', 3100, + 'r', 2434, + 's', 2511, + 't', 2530, + 'u', 2565, + 'v', 2371, + 'w', 2445, + 'x', 2502, + '{', 3091, + '|', 2863, + '}', 3092, '\t', 1, ' ', 1, '&', 1331, '@', 1331, - 0x0b, 578, - '\f', 578, + 0x0b, 580, + '\f', 580, ); - if (('A' <= lookahead && lookahead <= 'F')) ADVANCE(2647); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2363); - if (lookahead != 0) ADVANCE(2652); + if (('A' <= lookahead && lookahead <= 'F')) ADVANCE(2639); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2359); + if (lookahead != 0) ADVANCE(2644); END_STATE(); case 2: - if (lookahead == '\n') ADVANCE(2865); - if (lookahead == ':') ADVANCE(3520); + if (lookahead == '\n') ADVANCE(2857); + if (lookahead == ':') ADVANCE(3511); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(578); + lookahead == ' ') ADVANCE(580); END_STATE(); case 3: - if (lookahead == '\n') ADVANCE(3255); + if (lookahead == '\n') ADVANCE(3247); END_STATE(); case 4: - if (lookahead == '\n') ADVANCE(3252); + if (lookahead == '\n') ADVANCE(3244); END_STATE(); case 5: - if (lookahead == '\n') ADVANCE(3272); + if (lookahead == '\n') ADVANCE(3264); END_STATE(); case 6: - if (lookahead == '\n') ADVANCE(3260); + if (lookahead == '\n') ADVANCE(3252); END_STATE(); case 7: - if (lookahead == '\n') ADVANCE(3249); + if (lookahead == '\n') ADVANCE(3241); END_STATE(); case 8: - if (lookahead == '\n') ADVANCE(3254); + if (lookahead == '\n') ADVANCE(3246); END_STATE(); case 9: - if (lookahead == '\n') ADVANCE(3271); + if (lookahead == '\n') ADVANCE(3263); END_STATE(); case 10: - if (lookahead == '\n') ADVANCE(3259); + if (lookahead == '\n') ADVANCE(3251); END_STATE(); case 11: - if (lookahead == '\n') ADVANCE(3267); + if (lookahead == '\n') ADVANCE(3259); END_STATE(); case 12: - if (lookahead == '\n') ADVANCE(3266); + if (lookahead == '\n') ADVANCE(3258); END_STATE(); case 13: - if (lookahead == '\n') ADVANCE(3264); + if (lookahead == '\n') ADVANCE(3256); END_STATE(); case 14: - if (lookahead == '\n') ADVANCE(3253); + if (lookahead == '\n') ADVANCE(3245); END_STATE(); case 15: - if (lookahead == '\n') ADVANCE(3265); + if (lookahead == '\n') ADVANCE(3257); END_STATE(); case 16: - if (lookahead == '\n') ADVANCE(3263); + if (lookahead == '\n') ADVANCE(3255); END_STATE(); case 17: - if (lookahead == '\n') ADVANCE(3268); + if (lookahead == '\n') ADVANCE(3260); END_STATE(); case 18: - if (lookahead == '\n') ADVANCE(3261); + if (lookahead == '\n') ADVANCE(3253); END_STATE(); case 19: - if (lookahead == '\n') ADVANCE(3257); + if (lookahead == '\n') ADVANCE(3249); END_STATE(); case 20: - if (lookahead == '\n') ADVANCE(3258); + if (lookahead == '\n') ADVANCE(3250); END_STATE(); case 21: - if (lookahead == '\n') ADVANCE(3262); + if (lookahead == '\n') ADVANCE(3254); END_STATE(); case 22: - if (lookahead == '\n') ADVANCE(3270); + if (lookahead == '\n') ADVANCE(3262); END_STATE(); case 23: - if (lookahead == '\n') ADVANCE(3269); + if (lookahead == '\n') ADVANCE(3261); END_STATE(); case 24: - if (lookahead == '\n') ADVANCE(2864); + if (lookahead == '\n') ADVANCE(2856); END_STATE(); case 25: ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '!', 589, - '#', 4789, - ')', 2918, - '*', 519, - '+', 523, - '-', 585, - '/', 574, - ';', 2870, - '<', 592, + '!', 591, + '#', 4780, + ')', 2910, + '*', 521, + '+', 529, + '-', 587, + '/', 576, + ';', 2862, + '<', 594, '=', 1075, - '>', 595, - '?', 3189, - 'a', 729, - 'b', 704, - 'e', 537, - 'i', 731, - 'm', 754, - 'n', 749, - 'o', 542, - 's', 830, - 'x', 746, - '{', 3099, - '|', 2871, - '}', 3100, + '>', 597, + '?', 3181, + 'a', 731, + 'b', 707, + 'e', 539, + 'i', 733, + 'm', 756, + 'n', 752, + 'o', 545, + 's', 834, + 'x', 751, + '{', 3091, + '|', 2863, + '}', 3092, '\t', 25, ' ', 25, ); END_STATE(); case 26: ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '!', 589, - '#', 4789, - ')', 2918, - '*', 520, - '+', 544, - '-', 2970, - '/', 575, - ';', 2870, - '<', 592, - '=', 593, - '>', 595, - '?', 3189, - 'a', 729, - 'b', 704, - 'e', 537, - 'i', 731, - 'm', 754, - 'n', 749, - 'o', 542, - 's', 830, - 'x', 746, - '{', 3099, - '|', 2871, - '}', 3100, + '!', 591, + '#', 4780, + ')', 2910, + '*', 522, + '+', 542, + '-', 2962, + '/', 577, + ';', 2862, + '<', 594, + '=', 595, + '>', 597, + '?', 3181, + 'a', 731, + 'b', 707, + 'e', 539, + 'i', 680, + 'm', 756, + 'n', 752, + 'o', 545, + 's', 834, + 'x', 751, + '{', 3091, + '|', 2863, + '}', 3092, '\t', 26, ' ', 26, ); END_STATE(); case 27: ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '!', 589, - '#', 4789, - ')', 2918, - '*', 520, - '+', 544, - '-', 2970, - '/', 575, - ';', 2870, - '<', 592, - '=', 593, - '>', 595, - 'a', 729, - 'b', 704, - 'e', 537, - 'i', 731, - 'm', 754, - 'n', 749, - 'o', 542, - 's', 830, - 'x', 746, - '{', 3099, - '|', 2871, - '}', 3100, + '!', 591, + '#', 4780, + ')', 2910, + '*', 522, + '+', 542, + '-', 865, + '/', 577, + ';', 2862, + '<', 594, + '=', 596, + '>', 597, + 'a', 731, + 'b', 707, + 'e', 539, + 'i', 733, + 'm', 756, + 'n', 752, + 'o', 545, + 's', 834, + 'x', 751, + '|', 2863, + '}', 3092, '\t', 27, ' ', 27, ); END_STATE(); case 28: ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '!', 589, - '#', 4789, - ')', 2918, - '*', 520, - '+', 544, - '-', 861, - '/', 575, - ';', 2870, - '<', 592, - '=', 594, - '>', 595, - 'a', 729, - 'b', 704, - 'e', 537, - 'i', 731, - 'm', 754, - 'n', 749, - 'o', 542, - 's', 830, - 'x', 746, - '|', 2871, - '}', 3100, + '!', 591, + '#', 4780, + ')', 2910, + '*', 522, + '+', 542, + '-', 865, + '/', 577, + ';', 2862, + '<', 594, + '=', 596, + '>', 597, + 'a', 731, + 'b', 707, + 'e', 532, + 'i', 733, + 'm', 756, + 'n', 752, + 'o', 525, + 's', 834, + 'x', 751, + '|', 2863, + '}', 3092, '\t', 28, ' ', 28, ); END_STATE(); case 29: ADVANCE_MAP( - '\n', 2864, - '\r', 24, - '!', 589, - '#', 4789, - ')', 2918, - '*', 520, - '+', 544, - '-', 861, - '/', 575, - ';', 2870, - '<', 592, - '=', 594, - '>', 595, - 'a', 729, - 'b', 704, - 'e', 531, - 'i', 731, - 'm', 754, - 'n', 749, - 'o', 526, - 's', 830, - 'x', 746, - '|', 2871, - '}', 3100, - '\t', 29, - ' ', 29, - ); - END_STATE(); - case 30: - ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 2917, - ')', 2918, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 2909, + ')', 2910, '+', 1337, - '-', 2978, + '-', 2970, '.', 1338, - '0', 3377, - ';', 2870, - '=', 3661, + '0', 3369, + ';', 2862, + '=', 3652, 'I', 1569, 'N', 1566, - '[', 2915, - '^', 3604, + '[', 2907, + '^', 3595, '_', 1359, - '`', 624, + '`', 626, 'a', 1455, 'b', 1500, 'c', 1360, @@ -13772,43 +14122,43 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1492, 'u', 1520, 'w', 1433, - '{', 3099, - '}', 3100, + '{', 3091, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(31); + lookahead == ' ') SKIP(30); if (lookahead == '!' || ('&' <= lookahead && lookahead <= ',') || lookahead == '?' || lookahead == '@') ADVANCE(1875); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3400); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3392); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '0' || '@' < lookahead) && (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1575); END_STATE(); - case 31: + case 30: ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 2917, - ')', 2918, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 2909, + ')', 2910, '+', 1337, - '-', 2978, + '-', 2970, '.', 1338, - '0', 3377, - ';', 2870, + '0', 3369, + ';', 2862, 'I', 1569, 'N', 1566, - '[', 2915, - '^', 3604, + '[', 2907, + '^', 3595, '_', 1359, - '`', 624, + '`', 626, 'a', 1455, 'b', 1500, 'c', 1360, @@ -13826,139 +14176,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1492, 'u', 1520, 'w', 1433, - '{', 3099, - '}', 3100, + '{', 3091, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(31); + lookahead == ' ') SKIP(30); if (lookahead == '!' || ('&' <= lookahead && lookahead <= ',') || lookahead == '?' || lookahead == '@') ADVANCE(1875); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3400); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3392); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '0' || '@' < lookahead) && (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1575); END_STATE(); - case 32: - ADVANCE_MAP( - '\n', 2864, - '\r', 24, - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 2917, - ')', 2918, - '+', 566, - '-', 2978, - '.', 567, - '0', 2357, - ':', 2912, - ';', 2870, - '=', 1073, - '>', 2949, - '@', 2951, - 'I', 2639, - 'N', 2635, - '[', 2915, - '_', 2361, - '`', 624, - 'a', 2491, - 'c', 2378, - 'e', 2310, - 'f', 2374, - 'i', 2489, - 'l', 2458, - 'n', 2510, - 'o', 2311, - 't', 2565, - 'v', 2379, - 'x', 2507, - '{', 3099, - '|', 2871, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(33); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2364); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '$' < lookahead) && - (lookahead < '&' || '.' < lookahead) && - (lookahead < '0' || '@' < lookahead) && - (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2652); - END_STATE(); - case 33: - ADVANCE_MAP( - '\n', 2864, - '\r', 24, - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 2917, - ')', 2918, - '+', 566, - '-', 2978, - '.', 567, - '0', 2357, - ':', 2912, - ';', 2870, - '=', 1073, - '>', 2949, - 'I', 2639, - 'N', 2635, - '[', 2915, - '_', 2361, - '`', 624, - 'a', 2491, - 'c', 2378, - 'e', 2310, - 'f', 2374, - 'i', 2489, - 'l', 2458, - 'n', 2510, - 'o', 2311, - 't', 2565, - 'v', 2379, - 'x', 2507, - '{', 3099, - '|', 2871, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(33); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2364); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '$' < lookahead) && - (lookahead < '&' || '.' < lookahead) && - (lookahead < '0' || '@' < lookahead) && - (lookahead < ']' || 'a' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2652); - END_STATE(); - case 34: + case 31: ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 2917, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 2909, '+', 1337, - '-', 2978, + '-', 2970, '.', 1338, - '0', 3377, - '=', 3661, + '0', 3369, + '=', 3652, 'I', 1569, 'N', 1566, - '[', 2915, - '^', 3604, + '[', 2907, + '^', 3595, '_', 1359, - '`', 624, + '`', 626, 'a', 1466, 'b', 1514, 'c', 1362, @@ -13976,9 +14229,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1501, 'u', 1530, 'w', 1438, - '{', 3099, - '\t', 2869, - ' ', 2869, + '{', 3091, + '\t', 2861, + ' ', 2861, '!', 1875, '&', 1875, '*', 1875, @@ -13986,7 +14239,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '?', 1875, '@', 1875, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3400); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3392); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '&' || '.' < lookahead) && @@ -13994,25 +14247,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1575); END_STATE(); - case 35: + case 32: ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 2917, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 2909, '+', 1337, - '-', 2978, + '-', 2970, '.', 1338, - '0', 3377, + '0', 3369, 'I', 1569, 'N', 1566, - '[', 2915, - '^', 3604, + '[', 2907, + '^', 3595, '_', 1359, - '`', 624, + '`', 626, 'a', 1466, 'b', 1500, 'c', 1361, @@ -14030,17 +14283,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1492, 'u', 1530, 'w', 1439, - '{', 3099, - '|', 2871, + '{', 3091, + '|', 2863, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(35); + lookahead == ' ') SKIP(32); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == '?' || lookahead == '@') ADVANCE(1875); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3400); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3392); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '&' || '.' < lookahead) && @@ -14048,25 +14301,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1575); END_STATE(); - case 36: + case 33: ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 2917, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 2909, '+', 1337, - '-', 2978, + '-', 2970, '.', 1338, - '0', 3377, + '0', 3369, 'I', 1861, 'N', 1856, - '[', 2915, - '^', 3604, + '[', 2907, + '^', 3595, '_', 1596, - '`', 624, + '`', 626, 'a', 1722, 'b', 1778, 'c', 1620, @@ -14084,338 +14337,252 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1762, 'u', 1793, 'w', 1690, - '{', 3099, + '{', 3091, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(36); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3400); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); - END_STATE(); - case 37: - ADVANCE_MAP( - '\n', 2864, - '\r', 24, - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 2917, - '+', 1337, - '-', 548, - '.', 1593, - '=', 3661, - 'I', 1861, - 'N', 1856, - '[', 3451, - ']', 2916, - '_', 1596, - '`', 624, - 'a', 1722, - 'b', 1778, - 'c', 1620, - 'd', 1660, - 'e', 1724, - 'f', 1607, - 'h', 1699, - 'i', 1588, - 'l', 1671, - 'm', 1618, - 'n', 1665, - 'o', 1834, - 'r', 1676, - 's', 1748, - 't', 1762, - 'u', 1793, - 'w', 1690, - '{', 3099, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(38); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); - END_STATE(); - case 38: - ADVANCE_MAP( - '\n', 2864, - '\r', 24, - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 2917, - '+', 1337, - '-', 548, - '.', 1593, - 'I', 1861, - 'N', 1856, - ']', 2916, - '_', 1596, - '`', 624, - 'a', 1722, - 'b', 1778, - 'c', 1620, - 'd', 1660, - 'e', 1724, - 'f', 1607, - 'h', 1699, - 'i', 1588, - 'l', 1671, - 'm', 1618, - 'n', 1665, - 'o', 1834, - 'r', 1676, - 's', 1748, - 't', 1762, - 'u', 1793, - 'w', 1690, - '{', 3099, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(38); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); + lookahead == ' ') SKIP(33); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3392); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 39: + case 34: ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 2917, - '+', 3764, - '-', 2978, - '.', 3761, - '0', 3378, - 'N', 3823, - '[', 2915, - '_', 3778, - '`', 624, - 'e', 3744, - 'f', 3791, - 'n', 3803, - 'o', 3745, - 't', 3806, - '{', 3099, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 2909, + '+', 3755, + '-', 2970, + '.', 3752, + '0', 3370, + 'N', 3814, + '[', 2907, + '_', 3769, + '`', 626, + 'e', 3735, + 'f', 3782, + 'n', 3794, + 'o', 3736, + 't', 3797, + '{', 3091, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(39); + lookahead == ' ') SKIP(34); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3827); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3401); + lookahead == 'i') ADVANCE(3818); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3393); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3846); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3837); END_STATE(); - case 40: + case 35: ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 2917, - '+', 3764, - '-', 2964, - '.', 3761, - '0', 3378, - 'N', 3823, - '[', 2915, - '_', 3778, - '`', 624, - 'e', 3744, - 'f', 3791, - 'n', 3819, - 'o', 3745, - 't', 3806, - '{', 3099, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 2909, + '+', 3755, + '-', 2956, + '.', 3752, + '0', 3370, + 'N', 3814, + '[', 2907, + '_', 3769, + '`', 626, + 'e', 3735, + 'f', 3782, + 'n', 3810, + 'o', 3736, + 't', 3797, + '{', 3091, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(40); + lookahead == ' ') SKIP(35); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3827); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3401); + lookahead == 'i') ADVANCE(3818); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3393); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3846); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3837); END_STATE(); - case 41: + case 36: ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 2917, - '+', 4234, - ',', 2919, - '-', 4233, - '.', 4235, - '0', 3379, - 'N', 4286, - '[', 2915, - ']', 2916, - '_', 4253, - '`', 624, - 'e', 4223, - 'f', 4266, - 'n', 4283, - 'o', 4224, - 't', 4276, - '{', 3099, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 2909, + '+', 4225, + ',', 2911, + '-', 4224, + '.', 4226, + '0', 3371, + 'N', 4277, + '[', 2907, + ']', 2908, + '_', 4244, + '`', 626, + 'e', 4214, + 'f', 4257, + 'n', 4274, + 'o', 4215, + 't', 4267, + '{', 3091, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(41); + lookahead == ' ') SKIP(36); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4292); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3402); + lookahead == 'i') ADVANCE(4283); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3394); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); END_STATE(); - case 42: + case 37: ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 2917, - '+', 4234, - ',', 2919, - '-', 4233, - '.', 4230, - '0', 3379, - 'N', 4286, - '[', 2915, - ']', 2916, - '_', 4253, - '`', 624, - 'e', 4223, - 'f', 4266, - 'n', 4283, - 'o', 4224, - 't', 4276, - '{', 3099, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 2909, + '+', 4225, + ',', 2911, + '-', 4224, + '.', 4221, + '0', 3371, + 'N', 4277, + '[', 2907, + ']', 2908, + '_', 4244, + '`', 626, + 'e', 4214, + 'f', 4257, + 'n', 4274, + 'o', 4215, + 't', 4267, + '{', 3091, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(42); + lookahead == ' ') SKIP(37); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4292); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3402); + lookahead == 'i') ADVANCE(4283); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3394); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); END_STATE(); - case 43: + case 38: ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - ')', 2918, - ',', 2919, - '-', 2961, - '.', 3308, - ':', 2912, - '<', 2947, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + ')', 2910, + ',', 2911, + '-', 2953, + '.', 3300, + ':', 2904, + ';', 2862, + '<', 2939, '=', 1073, - '>', 2949, - '?', 3189, - '@', 2951, - '[', 3451, - ']', 2916, - '`', 624, - '{', 3099, - '|', 2871, + '>', 2941, + '?', 3181, + '@', 2943, + '[', 2907, + ']', 2908, + '`', 626, + '{', 3091, + '|', 2863, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(44); + lookahead == ' ') SKIP(39); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '$' < lookahead) && (lookahead < '&' || '.' < lookahead) && - (lookahead < ':' || '@' < lookahead) && lookahead != ']' && - lookahead != '^' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2652); + lookahead != '^') ADVANCE(2644); END_STATE(); - case 44: + case 39: ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - ')', 2918, - ',', 2919, - '-', 2961, - '.', 572, - ':', 2912, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + ')', 2910, + ',', 2911, + '-', 2953, + '.', 574, + ':', 2904, + ';', 2862, '=', 1073, - '>', 2949, - '?', 3189, - ']', 2916, - '`', 624, - '{', 3099, - '|', 2871, + '>', 2941, + '?', 3181, + '[', 2907, + ']', 2908, + '`', 626, + '{', 3091, + '|', 2863, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(44); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2652); + lookahead == ' ') SKIP(39); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '$' < lookahead) && + (lookahead < '&' || '.' < lookahead) && + (lookahead < ':' || '@' < lookahead) && + lookahead != ']' && + lookahead != '^') ADVANCE(2644); END_STATE(); - case 45: + case 40: ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 3526, - '-', 2978, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 3517, + '-', 2970, '.', 1340, - '0', 3384, + '0', 3376, 'I', 1861, 'N', 1856, '_', 1596, - '`', 624, + '`', 626, 'a', 1712, 'b', 1761, 'c', 1605, @@ -14433,11 +14600,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1756, 'u', 1787, 'w', 1686, - '}', 3100, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(45); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); + lookahead == ' ') SKIP(40); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -14446,62 +14613,62 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 46: + case 41: ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 3764, - '-', 564, - '.', 3761, - '0', 3378, - 'N', 3823, - '[', 2915, - '_', 3103, - '`', 624, - 'e', 3744, - 'f', 3791, - 'n', 3819, - 'o', 3745, - 't', 3806, - '{', 3099, - '}', 3100, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 3755, + '-', 566, + '.', 3752, + '0', 3370, + 'N', 3814, + '[', 2907, + '_', 3095, + '`', 626, + 'e', 3735, + 'f', 3782, + 'n', 3810, + 'o', 3736, + 't', 3797, + '{', 3091, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(46); + lookahead == ' ') SKIP(41); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3827); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3401); + lookahead == 'i') ADVANCE(3818); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3393); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3846); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3837); END_STATE(); - case 47: + case 42: ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 3528, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 3519, ',', 1875, - '-', 2980, + '-', 2972, '.', 1132, - '0', 3385, + '0', 3377, 'I', 1318, 'N', 1313, - '[', 3451, + '[', 3442, '_', 1151, - '`', 624, + '`', 626, 'a', 1232, 'b', 1267, 'c', 1168, @@ -14519,13 +14686,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1261, 'u', 1278, 'w', 1215, - '}', 3100, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(45); + lookahead == ' ') SKIP(40); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4600); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); + lookahead == '^') ADVANCE(4591); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -14533,66 +14700,59 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); END_STATE(); - case 48: - ADVANCE_MAP( - '\n', 2864, - '\r', 24, - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - ',', 2919, - '-', 2961, - '.', 3283, - ':', 2912, - '=', 1073, - '>', 2949, - '?', 3189, - '`', 624, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(49); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2652); - END_STATE(); - case 49: + case 43: ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - ',', 2919, - '-', 2961, - ':', 2912, - '=', 1073, - '>', 2949, - '?', 3189, - '`', 624, + '"', 3482, + '#', 4780, + '\'', 519, + '+', 1337, + '-', 550, + '.', 1593, + 'I', 1861, + 'N', 1856, + ']', 2908, + '_', 1596, + '`', 626, + 'a', 1722, + 'b', 1778, + 'c', 1620, + 'd', 1660, + 'e', 1724, + 'f', 1607, + 'h', 1699, + 'i', 1588, + 'l', 1671, + 'm', 1618, + 'n', 1665, + 'o', 1834, + 'r', 1676, + 's', 1748, + 't', 1762, + 'u', 1793, + 'w', 1690, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(49); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2652); + lookahead == ' ') SKIP(43); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(1875); END_STATE(); - case 50: + case 44: ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '"', 3491, - '#', 4789, - '\'', 517, - ')', 2918, - '*', 3186, + '"', 3482, + '#', 4780, + '\'', 519, '+', 1337, - '-', 565, + '-', 3865, '.', 1593, - ';', 2870, - '=', 602, 'I', 1861, 'N', 1856, - '[', 2915, + ']', 2908, '_', 1596, - '`', 624, + '`', 626, 'a', 1722, 'b', 1778, 'c', 1620, @@ -14610,141 +14770,142 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1762, 'u', 1793, 'w', 1690, - '{', 3099, - '|', 2871, - '}', 3100, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(50); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); + lookahead == ' ') SKIP(43); + if (lookahead == '$' || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(3993); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '\'' || '+' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'f' < lookahead)) ADVANCE(1875); + lookahead != '[' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 51: + case 45: ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - '$', 2920, - '(', 3220, - ')', 2918, - '+', 4331, - ',', 2919, - '-', 2968, - '.', 4327, - ':', 2912, + '#', 4780, + '$', 2912, + '(', 3212, + ')', 2910, + '+', 4322, + ',', 2911, + '-', 2960, + '.', 4318, + ':', 2904, '=', 1073, - ']', 2916, - '_', 2354, - '|', 2871, + ']', 2908, + '_', 2353, + '|', 2863, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(66); + lookahead == ' ') SKIP(62); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4420); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3327); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2652); + lookahead == '^') ADVANCE(4411); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3319); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2644); END_STATE(); - case 52: + case 46: ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - '$', 2920, - '(', 3220, - ')', 2918, - '+', 4331, - ',', 2919, - '-', 2968, - '.', 3304, - ':', 2912, + '#', 4780, + '$', 2912, + '(', 3212, + ')', 2910, + '+', 4322, + ',', 2911, + '-', 2960, + '.', 3296, + ':', 2904, '=', 1073, - ']', 2916, - '_', 2354, - '|', 2871, + ']', 2908, + '_', 2353, + '|', 2863, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(66); + lookahead == ' ') SKIP(62); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4420); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3327); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2652); + lookahead == '^') ADVANCE(4411); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3319); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2644); END_STATE(); - case 53: + case 47: ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - '$', 2920, - '(', 3220, - ')', 2918, - ',', 2919, - '-', 2961, - '.', 3308, - ':', 2912, + '#', 4780, + '$', 2912, + '(', 3212, + ')', 2910, + ',', 2911, + '-', 2953, + '.', 3300, + ':', 2904, '=', 1073, 'E', 2304, - 'G', 2348, - 'K', 2348, - 'M', 2348, - 'P', 2348, - 'T', 2348, - ']', 2916, - 'd', 2371, + 'G', 2347, + 'K', 2347, + 'M', 2347, + 'P', 2347, + 'T', 2347, + ']', 2908, + 'd', 2366, 'e', 2303, - 'g', 2347, - 'h', 2527, - 'k', 2347, - 'm', 2349, - 'n', 2567, - 'p', 2347, - 's', 2400, - 't', 2347, - 'u', 2567, - 'w', 2461, - '|', 2871, - 0xb5, 2567, + 'g', 2346, + 'h', 2519, + 'k', 2346, + 'm', 2348, + 'n', 2559, + 'p', 2346, + 's', 2394, + 't', 2346, + 'u', 2559, + 'w', 2455, + '|', 2863, + 0xb5, 2559, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(70); + lookahead == ' ') SKIP(67); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3433); + lookahead == 'b') ADVANCE(3424); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4420); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2652); + lookahead == '^') ADVANCE(4411); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2644); END_STATE(); - case 54: + case 48: ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - '$', 2920, - '(', 3220, - ')', 2918, - ',', 2919, - '-', 2961, - '.', 3308, - ':', 2912, + '#', 4780, + '$', 2912, + '(', 3212, + ')', 2910, + ',', 2911, + '-', 2953, + '.', 3300, + ':', 2904, '=', 1073, - ']', 2916, - '|', 2871, + ']', 2908, + '|', 2863, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(70); + lookahead == ' ') SKIP(67); if (lookahead == 'E' || lookahead == 'e') ADVANCE(2305); if (lookahead == '!' || @@ -14752,200 +14913,205 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4420); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2652); + lookahead == '^') ADVANCE(4411); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2644); END_STATE(); - case 55: + case 49: ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - '$', 2920, - '(', 3220, - ')', 2918, - ',', 2919, - '-', 2961, - '.', 4332, - ':', 2912, + '#', 4780, + '$', 2912, + '(', 3212, + ')', 2910, + ',', 2911, + '-', 2953, + '.', 4323, + ':', 2904, '=', 1073, 'E', 2304, - 'G', 2348, - 'K', 2348, - 'M', 2348, - 'P', 2348, - 'T', 2348, - ']', 2916, - '_', 2354, - 'd', 2371, + 'G', 2347, + 'K', 2347, + 'M', 2347, + 'P', 2347, + 'T', 2347, + ']', 2908, + '_', 2353, + 'd', 2366, 'e', 2303, - 'g', 2347, - 'h', 2527, - 'k', 2347, - 'm', 2349, - 'n', 2567, - 'p', 2347, - 's', 2400, - 't', 2347, - 'u', 2567, - 'w', 2461, - '|', 2871, - 0xb5, 2567, + 'g', 2346, + 'h', 2519, + 'k', 2346, + 'm', 2348, + 'n', 2559, + 'p', 2346, + 's', 2394, + 't', 2346, + 'u', 2559, + 'w', 2455, + '|', 2863, + 0xb5, 2559, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(70); + lookahead == ' ') SKIP(67); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3433); + lookahead == 'b') ADVANCE(3424); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4420); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3327); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2652); + lookahead == '^') ADVANCE(4411); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3319); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2644); END_STATE(); - case 56: + case 50: ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - '$', 2920, - '(', 3220, - ')', 2918, - ',', 2919, - '-', 2961, - '.', 4332, - ':', 2912, + '#', 4780, + '$', 2912, + '(', 3212, + ')', 2910, + ',', 2911, + '-', 2953, + '.', 4323, + ':', 2904, '=', 1073, 'E', 2304, - 'G', 2348, - 'K', 2348, - 'M', 2348, - 'P', 2348, - 'T', 2348, - ']', 2916, - 'd', 2371, + 'G', 2347, + 'K', 2347, + 'M', 2347, + 'P', 2347, + 'T', 2347, + ']', 2908, + 'd', 2366, 'e', 2303, - 'g', 2347, - 'h', 2527, - 'k', 2347, - 'm', 2349, - 'n', 2567, - 'p', 2347, - 's', 2400, - 't', 2347, - 'u', 2567, - 'w', 2461, - '|', 2871, - 0xb5, 2567, + 'g', 2346, + 'h', 2519, + 'k', 2346, + 'm', 2348, + 'n', 2559, + 'p', 2346, + 's', 2394, + 't', 2346, + 'u', 2559, + 'w', 2455, + '|', 2863, + 0xb5, 2559, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(70); + lookahead == ' ') SKIP(67); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3433); + lookahead == 'b') ADVANCE(3424); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4420); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2652); + lookahead == '^') ADVANCE(4411); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2644); END_STATE(); - case 57: + case 51: ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - '$', 2920, - '(', 3220, - ')', 2918, - ',', 2919, - '-', 2961, - '.', 4332, - ':', 2912, + '#', 4780, + '$', 2912, + '(', 3212, + ')', 2910, + ',', 2911, + '-', 2953, + '.', 4323, + ':', 2904, '=', 1073, - 'E', 2348, - 'G', 2348, - 'K', 2348, - 'M', 2348, - 'P', 2348, - 'T', 2348, - ']', 2916, - 'd', 2371, - 'e', 2347, - 'g', 2347, - 'h', 2527, - 'k', 2347, - 'm', 2349, - 'n', 2567, - 'p', 2347, - 's', 2400, - 't', 2347, - 'u', 2567, - 'w', 2461, - '|', 2871, - 0xb5, 2567, + 'E', 2347, + 'G', 2347, + 'K', 2347, + 'M', 2347, + 'P', 2347, + 'T', 2347, + ']', 2908, + 'd', 2366, + 'e', 2346, + 'g', 2346, + 'h', 2519, + 'k', 2346, + 'm', 2348, + 'n', 2559, + 'p', 2346, + 's', 2394, + 't', 2346, + 'u', 2559, + 'w', 2455, + '|', 2863, + 0xb5, 2559, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(70); + lookahead == ' ') SKIP(67); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3433); + lookahead == 'b') ADVANCE(3424); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4420); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2652); + lookahead == '^') ADVANCE(4411); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2644); END_STATE(); - case 58: + case 52: ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - '$', 2920, - '(', 3220, - ')', 2918, - ',', 2919, - '-', 2961, - '.', 4332, - ':', 2912, + '#', 4780, + '$', 2912, + '(', 3212, + ')', 2910, + ',', 2911, + '-', 2953, + '.', 4323, + ':', 2904, '=', 1073, - ']', 2916, - '_', 2354, - '|', 2871, + '[', 3442, + ']', 2908, + '{', 3091, + '|', 2863, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(70); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2305); + lookahead == ' ') SKIP(66); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4420); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3327); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2652); + lookahead == '^') ADVANCE(4411); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '$' < lookahead) && + (lookahead < '&' || '.' < lookahead) && + (lookahead < ':' || '@' < lookahead) && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2644); END_STATE(); - case 59: + case 53: ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - '$', 2920, - '(', 3220, - ')', 2918, - ',', 2919, - '-', 2961, - '.', 4332, - ':', 2912, + '#', 4780, + '$', 2912, + '(', 3212, + ')', 2910, + ',', 2911, + '-', 2953, + '.', 4323, + ':', 2904, '=', 1073, - ']', 2916, - '|', 2871, + ']', 2908, + '_', 2353, + '|', 2863, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(70); + lookahead == ' ') SKIP(67); if (lookahead == 'E' || lookahead == 'e') ADVANCE(2305); if (lookahead == '!' || @@ -14953,54 +15119,57 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4420); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2652); + lookahead == '^') ADVANCE(4411); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3319); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2644); END_STATE(); - case 60: + case 54: ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - '$', 2920, - '(', 3220, - ')', 2918, - ',', 2919, - '-', 2961, - '.', 4332, - ':', 2912, + '#', 4780, + '$', 2912, + '(', 3212, + ')', 2910, + ',', 2911, + '-', 2953, + '.', 4323, + ':', 2904, '=', 1073, - ']', 2916, - '|', 2871, + ']', 2908, + '|', 2863, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(70); + lookahead == ' ') SKIP(67); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2305); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4420); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2652); + lookahead == '^') ADVANCE(4411); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2644); END_STATE(); - case 61: + case 55: ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - '$', 2920, - '(', 3220, - ')', 2918, - ',', 2919, - '-', 2961, - '.', 4328, - ':', 2912, + '#', 4780, + '$', 2912, + '(', 3212, + ')', 2910, + ',', 2911, + '-', 2953, + '.', 4319, + ':', 2904, '=', 1073, - ']', 2916, - '_', 2354, - '|', 2871, + ']', 2908, + '_', 2353, + '|', 2863, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(70); + lookahead == ' ') SKIP(67); if (lookahead == 'E' || lookahead == 'e') ADVANCE(2305); if (lookahead == '!' || @@ -15008,28 +15177,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4420); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3327); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2652); + lookahead == '^') ADVANCE(4411); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3319); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2644); END_STATE(); - case 62: + case 56: ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - '$', 2920, - '(', 3220, - ')', 2918, - ',', 2919, - '-', 2961, - '.', 4328, - ':', 2912, + '#', 4780, + '$', 2912, + '(', 3212, + ')', 2910, + ',', 2911, + '-', 2953, + '.', 4319, + ':', 2904, '=', 1073, - ']', 2916, - '|', 2871, + ']', 2908, + '|', 2863, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(70); + lookahead == ' ') SKIP(67); if (lookahead == 'E' || lookahead == 'e') ADVANCE(2305); if (lookahead == '!' || @@ -15037,53 +15206,53 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4420); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2652); + lookahead == '^') ADVANCE(4411); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2644); END_STATE(); - case 63: + case 57: ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - '$', 2920, - '(', 3220, - ')', 2918, - ',', 2919, - '-', 2961, - '.', 4328, - ':', 2912, + '#', 4780, + '$', 2912, + '(', 3212, + ')', 2910, + ',', 2911, + '-', 2953, + '.', 4319, + ':', 2904, '=', 1073, - ']', 2916, - '|', 2871, + ']', 2908, + '|', 2863, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(70); + lookahead == ' ') SKIP(67); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4420); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2652); + lookahead == '^') ADVANCE(4411); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2644); END_STATE(); - case 64: + case 58: ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - '$', 2920, - '(', 3220, - ')', 2918, - ',', 2919, - '-', 2961, - '.', 3303, - ':', 2912, + '#', 4780, + '$', 2912, + '(', 3212, + ')', 2910, + ',', 2911, + '-', 2953, + '.', 3295, + ':', 2904, '=', 1073, - ']', 2916, - '|', 2871, + ']', 2908, + '|', 2863, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(70); + lookahead == ' ') SKIP(67); if (lookahead == 'E' || lookahead == 'e') ADVANCE(2305); if (lookahead == '!' || @@ -15091,508 +15260,672 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4420); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2652); + lookahead == '^') ADVANCE(4411); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2644); + END_STATE(); + case 59: + ADVANCE_MAP( + '\n', 2856, + '\r', 24, + '#', 4780, + '$', 2912, + '(', 2909, + ')', 2910, + '-', 2953, + '.', 3275, + ':', 2904, + ';', 2862, + '=', 1073, + '>', 2941, + '?', 3181, + '[', 2907, + '{', 3091, + '}', 3092, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(60); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2644); + END_STATE(); + case 60: + ADVANCE_MAP( + '\n', 2856, + '\r', 24, + '#', 4780, + '$', 2912, + '(', 2909, + ')', 2910, + '-', 2953, + ':', 2904, + ';', 2862, + '=', 1073, + '>', 2941, + '?', 3181, + '[', 2907, + '{', 3091, + '}', 3092, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(60); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2644); + END_STATE(); + case 61: + ADVANCE_MAP( + '\n', 2856, + '\r', 24, + '#', 4780, + '$', 2912, + '(', 2909, + '+', 568, + '-', 2970, + '.', 616, + '0', 2355, + 'N', 2627, + '_', 2358, + 'f', 2369, + 'n', 2504, + 't', 2557, + '{', 3091, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(61); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2631); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2358); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2644); + END_STATE(); + case 62: + ADVANCE_MAP( + '\n', 2856, + '\r', 24, + '#', 4780, + '$', 2912, + ')', 2910, + '+', 573, + ',', 2911, + '-', 2958, + '.', 575, + ':', 2904, + '=', 1073, + ']', 2908, + '|', 2863, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(62); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2644); + END_STATE(); + case 63: + ADVANCE_MAP( + '\n', 2856, + '\r', 24, + '#', 4780, + '$', 2912, + ')', 2910, + ',', 2911, + '-', 2953, + '.', 3298, + ':', 2904, + '=', 1073, + '?', 3181, + ']', 2908, + '|', 2863, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(65); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2644); + END_STATE(); + case 64: + ADVANCE_MAP( + '\n', 2856, + '\r', 24, + '#', 4780, + '$', 2912, + ')', 2910, + ',', 2911, + '-', 2953, + '.', 574, + ':', 2904, + '=', 1073, + '?', 2947, + ']', 2908, + '|', 2863, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(67); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2644); END_STATE(); case 65: ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - '$', 2920, - '(', 2917, - '+', 566, - '-', 2978, - '.', 613, - '0', 2356, - 'N', 2635, - '_', 2361, - 'f', 2375, - 'n', 2511, - 't', 2565, - '{', 3099, + '#', 4780, + '$', 2912, + ')', 2910, + ',', 2911, + '-', 2953, + '.', 574, + ':', 2904, + '=', 1073, + '?', 3181, + ']', 2908, + '|', 2863, ); if (lookahead == '\t' || lookahead == ' ') SKIP(65); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2639); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2361); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2652); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2644); END_STATE(); case 66: ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - '$', 2920, - ')', 2918, - '+', 571, - ',', 2919, - '-', 2966, - '.', 573, - ':', 2912, + '#', 4780, + '$', 2912, + ')', 2910, + ',', 2911, + '-', 2953, + '.', 574, + ':', 2904, '=', 1073, - ']', 2916, - '|', 2871, + ']', 2908, + '{', 3091, + '|', 2863, ); if (lookahead == '\t' || lookahead == ' ') SKIP(66); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2652); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2644); END_STATE(); case 67: ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - '$', 2920, - ')', 2918, - ',', 2919, - '-', 2961, - '.', 3306, - ':', 2912, + '#', 4780, + '$', 2912, + ')', 2910, + ',', 2911, + '-', 2953, + '.', 574, + ':', 2904, '=', 1073, - '?', 3189, - ']', 2916, - '|', 2871, + ']', 2908, + '|', 2863, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(69); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2652); + lookahead == ' ') SKIP(67); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2644); END_STATE(); case 68: ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - '$', 2920, - ')', 2918, - ',', 2919, - '-', 2961, - '.', 572, - ':', 2912, + '#', 4780, + '$', 2912, + ')', 2910, + '-', 2953, + '.', 3275, + ':', 2904, + ';', 2862, '=', 1073, - '?', 2955, - ']', 2916, - '|', 2871, + '[', 2907, + 'a', 2484, + 'c', 2372, + 'e', 2310, + 'f', 2619, + 'i', 2483, + 'l', 2452, + 'o', 2311, + 'v', 2373, + 'x', 2500, + '{', 3091, + '|', 2863, + '}', 3092, ); if (lookahead == '\t' || lookahead == ' ') SKIP(70); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2652); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '$' < lookahead) && + (lookahead < '&' || '.' < lookahead) && + (lookahead < ':' || '@' < lookahead) && + lookahead != ']' && + lookahead != '^' && + lookahead != '`' && + lookahead != 'a') ADVANCE(2644); END_STATE(); case 69: ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - '$', 2920, - ')', 2918, - ',', 2919, - '-', 2961, - '.', 572, - ':', 2912, + '#', 4780, + '$', 2912, + ')', 2910, + '-', 2953, + '.', 570, + ':', 2904, + ';', 2862, '=', 1073, - '?', 3189, - ']', 2916, - '|', 2871, + 'a', 730, + 'e', 541, + 'i', 727, + 'o', 543, + 'x', 750, + '{', 3091, + '|', 2863, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(69); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2652); + lookahead == ' ') SKIP(71); END_STATE(); case 70: ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - '$', 2920, - ')', 2918, - ',', 2919, - '-', 2961, - '.', 572, - ':', 2912, + '#', 4780, + '$', 2912, + ')', 2910, + '-', 2953, + ':', 2904, + ';', 2862, '=', 1073, - ']', 2916, - '|', 2871, + '[', 2907, + 'a', 2484, + 'c', 2372, + 'e', 2310, + 'f', 2619, + 'i', 2483, + 'l', 2452, + 'o', 2311, + 'v', 2373, + 'x', 2500, + '{', 3091, + '|', 2863, + '}', 3092, ); if (lookahead == '\t' || lookahead == ' ') SKIP(70); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2652); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '$' < lookahead) && + (lookahead < '&' || '.' < lookahead) && + (lookahead < ':' || '@' < lookahead) && + lookahead != ']' && + lookahead != '^' && + lookahead != '`' && + lookahead != 'a') ADVANCE(2644); END_STATE(); case 71: ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - '(', 3220, - ')', 2918, - '-', 2961, - '.', 568, - ';', 2870, - '=', 602, - 'E', 609, - 'G', 609, - 'K', 609, - 'M', 609, - 'P', 609, - 'T', 609, - '[', 3451, - 'd', 627, - 'e', 535, - 'g', 608, - 'h', 762, - 'k', 608, - 'm', 610, - 'n', 785, + '#', 4780, + '$', 2912, + ')', 2910, + '-', 2953, + ':', 2904, + ';', 2862, + '=', 1073, + 'a', 730, + 'e', 541, + 'i', 727, 'o', 543, - 'p', 608, - 's', 667, - 't', 608, - 'u', 785, - 'w', 708, - '{', 3099, - '|', 2871, - '}', 3100, - 0xb5, 785, - '\t', 27, - ' ', 27, - 'B', 3429, - 'b', 3429, + 'x', 750, + '{', 3091, + '|', 2863, + '}', 3092, ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(71); END_STATE(); case 72: - if (lookahead == '\n') ADVANCE(2864); - if (lookahead == '\r') ADVANCE(24); - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '(') ADVANCE(3220); - if (lookahead == '.') ADVANCE(3297); - if (lookahead == '{') ADVANCE(3099); + ADVANCE_MAP( + '\n', 2856, + '\r', 24, + '#', 4780, + '$', 2912, + ')', 2910, + '-', 2953, + ';', 2862, + '=', 604, + '{', 3091, + '|', 2863, + '}', 3092, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(84); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3910); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + lookahead == ' ') SKIP(72); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2644); END_STATE(); case 73: - if (lookahead == '\n') ADVANCE(2864); + if (lookahead == '\n') ADVANCE(2856); if (lookahead == '\r') ADVANCE(24); - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '(') ADVANCE(3220); - if (lookahead == '.') ADVANCE(3879); - if (lookahead == '_') ADVANCE(3900); - if (lookahead == '{') ADVANCE(3099); + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '(') ADVANCE(3212); + if (lookahead == '.') ADVANCE(3289); + if (lookahead == '{') ADVANCE(3091); if (lookahead == '\t' || - lookahead == ' ') SKIP(84); + lookahead == ' ') SKIP(85); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3910); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + lookahead == 'e') ADVANCE(3901); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 74: - if (lookahead == '\n') ADVANCE(2864); + if (lookahead == '\n') ADVANCE(2856); if (lookahead == '\r') ADVANCE(24); - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '(') ADVANCE(3220); - if (lookahead == '.') ADVANCE(3879); - if (lookahead == '{') ADVANCE(3099); + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '(') ADVANCE(3212); + if (lookahead == '.') ADVANCE(3870); + if (lookahead == '_') ADVANCE(3891); + if (lookahead == '{') ADVANCE(3091); if (lookahead == '\t' || - lookahead == ' ') SKIP(84); + lookahead == ' ') SKIP(85); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3910); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + lookahead == 'e') ADVANCE(3901); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 75: - if (lookahead == '\n') ADVANCE(2864); + if (lookahead == '\n') ADVANCE(2856); if (lookahead == '\r') ADVANCE(24); - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '(') ADVANCE(3220); - if (lookahead == '.') ADVANCE(3879); - if (lookahead == '{') ADVANCE(3099); + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '(') ADVANCE(3212); + if (lookahead == '.') ADVANCE(3870); + if (lookahead == '{') ADVANCE(3091); if (lookahead == '\t' || - lookahead == ' ') SKIP(84); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + lookahead == ' ') SKIP(85); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(3901); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 76: - ADVANCE_MAP( - '\n', 2864, - '\r', 24, - '#', 4789, - ')', 2918, - '-', 603, - '.', 3283, - ':', 2912, - ';', 2870, - '=', 1073, - '>', 2949, - '@', 2951, - '[', 2915, - ']', 2916, - 'c', 2441, - 'e', 2560, - 'f', 2627, - 'i', 2490, - 'l', 2458, - 'o', 2500, - 'v', 2379, - '{', 3099, - '}', 3100, - ); + if (lookahead == '\n') ADVANCE(2856); + if (lookahead == '\r') ADVANCE(24); + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '(') ADVANCE(3212); + if (lookahead == '.') ADVANCE(3870); + if (lookahead == '{') ADVANCE(3091); if (lookahead == '\t' || - lookahead == ' ') SKIP(77); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2652); + lookahead == ' ') SKIP(85); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 77: ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - ')', 2918, - '-', 603, - ':', 2912, - ';', 2870, + '#', 4780, + ')', 2910, + '-', 605, + ':', 2904, + ';', 2862, + '<', 2939, '=', 1073, - '>', 2949, - '[', 2915, - ']', 2916, - 'c', 2441, - 'e', 2560, - 'f', 2627, - 'i', 2490, - 'l', 2458, - 'o', 2500, - 'v', 2379, - '{', 3099, - '}', 3100, + '>', 2941, + '@', 2943, + '[', 2907, + ']', 2908, + 'c', 2435, + 'e', 2552, + 'f', 2619, + 'i', 2483, + 'l', 2452, + 'o', 2493, + 'v', 2373, + '{', 3091, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(77); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2652); + lookahead == ' ') SKIP(78); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2644); END_STATE(); case 78: ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - '.', 3297, - 'E', 3895, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'P', 3898, - 'T', 3898, - 'd', 3915, - 'e', 3894, - 'g', 3897, - 'h', 3941, - 'k', 3897, - 'm', 3899, - 'n', 3951, - 'p', 3897, - 's', 3921, - 't', 3897, - 'u', 3951, - 'w', 3927, - 0xb5, 3951, - '\t', 2869, - ' ', 2869, - 'B', 3429, - 'b', 3429, + '#', 4780, + ')', 2910, + '-', 605, + ':', 2904, + ';', 2862, + '=', 1073, + '>', 2941, + '[', 2907, + ']', 2908, + 'c', 2435, + 'e', 2552, + 'f', 2619, + 'i', 2483, + 'l', 2452, + 'o', 2493, + 'v', 2373, + '{', 3091, + '}', 3092, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == '\t' || + lookahead == ' ') SKIP(78); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2644); END_STATE(); case 79: ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - '.', 3879, - 'E', 3895, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'P', 3898, - 'T', 3898, - '_', 3900, - 'd', 3915, - 'e', 3894, - 'g', 3897, - 'h', 3941, - 'k', 3897, - 'm', 3899, - 'n', 3951, - 'p', 3897, - 's', 3921, - 't', 3897, - 'u', 3951, - 'w', 3927, - 0xb5, 3951, - '\t', 2869, - ' ', 2869, - 'B', 3429, - 'b', 3429, + '#', 4780, + '.', 3289, + 'E', 3886, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'P', 3889, + 'T', 3889, + 'd', 3906, + 'e', 3885, + 'g', 3888, + 'h', 3932, + 'k', 3888, + 'm', 3890, + 'n', 3942, + 'p', 3888, + 's', 3912, + 't', 3888, + 'u', 3942, + 'w', 3918, + 0xb5, 3942, + '\t', 2861, + ' ', 2861, + 'B', 3420, + 'b', 3420, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 80: ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - '.', 3879, - 'E', 3895, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'P', 3898, - 'T', 3898, - 'd', 3915, - 'e', 3894, - 'g', 3897, - 'h', 3941, - 'k', 3897, - 'm', 3899, - 'n', 3951, - 'p', 3897, - 's', 3921, - 't', 3897, - 'u', 3951, - 'w', 3927, - 0xb5, 3951, - '\t', 2869, - ' ', 2869, - 'B', 3429, - 'b', 3429, + '#', 4780, + '.', 3870, + 'E', 3886, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'P', 3889, + 'T', 3889, + '_', 3891, + 'd', 3906, + 'e', 3885, + 'g', 3888, + 'h', 3932, + 'k', 3888, + 'm', 3890, + 'n', 3942, + 'p', 3888, + 's', 3912, + 't', 3888, + 'u', 3942, + 'w', 3918, + 0xb5, 3942, + '\t', 2861, + ' ', 2861, + 'B', 3420, + 'b', 3420, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 81: ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - '.', 3879, - 'E', 3898, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'P', 3898, - 'T', 3898, - 'd', 3915, - 'e', 3897, - 'g', 3897, - 'h', 3941, - 'k', 3897, - 'm', 3899, - 'n', 3951, - 'p', 3897, - 's', 3921, - 't', 3897, - 'u', 3951, - 'w', 3927, - 0xb5, 3951, - '\t', 2869, - ' ', 2869, - 'B', 3429, - 'b', 3429, + '#', 4780, + '.', 3870, + 'E', 3886, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'P', 3889, + 'T', 3889, + 'd', 3906, + 'e', 3885, + 'g', 3888, + 'h', 3932, + 'k', 3888, + 'm', 3890, + 'n', 3942, + 'p', 3888, + 's', 3912, + 't', 3888, + 'u', 3942, + 'w', 3918, + 0xb5, 3942, + '\t', 2861, + ' ', 2861, + 'B', 3420, + 'b', 3420, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 82: - if (lookahead == '\n') ADVANCE(2864); - if (lookahead == '\r') ADVANCE(24); - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '=') ADVANCE(3661); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2869); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2831); + ADVANCE_MAP( + '\n', 2856, + '\r', 24, + '#', 4780, + '.', 3870, + 'E', 3889, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'P', 3889, + 'T', 3889, + 'd', 3906, + 'e', 3888, + 'g', 3888, + 'h', 3932, + 'k', 3888, + 'm', 3890, + 'n', 3942, + 'p', 3888, + 's', 3912, + 't', 3888, + 'u', 3942, + 'w', 3918, + 0xb5, 3942, + '\t', 2861, + ' ', 2861, + 'B', 3420, + 'b', 3420, + ); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 83: - if (lookahead == '\n') ADVANCE(2864); + if (lookahead == '\n') ADVANCE(2856); if (lookahead == '\r') ADVANCE(24); - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '=') ADVANCE(3661); + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '=') ADVANCE(3652); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2869); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + lookahead == ' ') ADVANCE(2861); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2823); END_STATE(); case 84: - if (lookahead == '\n') ADVANCE(2864); + if (lookahead == '\n') ADVANCE(2856); if (lookahead == '\r') ADVANCE(24); - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '{') ADVANCE(3099); + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '=') ADVANCE(3652); if (lookahead == '\t' || - lookahead == ' ') SKIP(84); + lookahead == ' ') ADVANCE(2861); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); case 85: - if (lookahead == '\n') ADVANCE(2864); + if (lookahead == '\n') ADVANCE(2856); if (lookahead == '\r') ADVANCE(24); - if (lookahead == '#') ADVANCE(4789); + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '{') ADVANCE(3091); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2869); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + lookahead == ' ') SKIP(85); END_STATE(); case 86: - if (lookahead == '\n') ADVANCE(2864); + if (lookahead == '\n') ADVANCE(2856); if (lookahead == '\r') ADVANCE(24); - if (lookahead == '#') ADVANCE(4796); - if (lookahead == '(') ADVANCE(3220); + if (lookahead == '#') ADVANCE(4780); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2869); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + lookahead == ' ') ADVANCE(2861); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 87: + if (lookahead == '\n') ADVANCE(2856); + if (lookahead == '\r') ADVANCE(24); + if (lookahead == '#') ADVANCE(4787); + if (lookahead == '(') ADVANCE(3212); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(2861); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); + END_STATE(); + case 88: ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4795, - '$', 2925, - '(', 3220, - ')', 2918, - ',', 2919, - '-', 2975, - '.', 4440, - ':', 2913, + '#', 4786, + '$', 2917, + '(', 3212, + ')', 2910, + ',', 2911, + '-', 2967, + '.', 4431, + ':', 2905, '=', 1077, - ']', 2916, - '|', 2871, + ']', 2908, + '|', 2863, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(70); + lookahead == ' ') SKIP(67); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4508); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(4492); + lookahead == '^') ADVANCE(4499); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(4483); END_STATE(); - case 88: + case 89: ADVANCE_MAP( - '\n', 2867, - '\r', 108, + '\n', 2859, + '\r', 111, '!', 1576, - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, '*', 1114, - '+', 3523, - ',', 2919, - '-', 2976, + '+', 3514, + ',', 2911, + '-', 2968, '.', 1340, '/', 1346, - '0', 3384, - ':', 3520, - ';', 2870, - '<', 592, + '0', 3376, + ':', 3511, + ';', 2862, + '<', 594, '=', 1075, - '>', 595, - '?', 3189, + '>', 597, + '?', 3181, 'I', 1861, 'N', 1856, '_', 1596, - '`', 624, + '`', 626, 'a', 1711, 'b', 1695, 'c', 1605, @@ -15611,46 +15944,46 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'u', 1787, 'w', 1686, 'x', 1742, - '|', 2871, - '}', 3100, - '\t', 88, - ' ', 88, - 0x0b, 578, - '\f', 578, + '|', 2863, + '}', 3092, + '\t', 89, + ' ', 89, + 0x0b, 580, + '\f', 580, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); if (lookahead != 0 && (lookahead < '\'' || '?' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 89: + case 90: ADVANCE_MAP( - '\n', 2867, - '\r', 108, + '\n', 2859, + '\r', 111, '!', 1576, - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, '*', 1114, - '+', 3523, - ',', 2919, - '-', 2976, + '+', 3514, + ',', 2911, + '-', 2968, '.', 1340, '/', 1346, - '0', 3384, - ':', 3520, - ';', 2870, - '<', 592, + '0', 3376, + ':', 3511, + ';', 2862, + '<', 594, '=', 1075, - '>', 595, + '>', 597, 'I', 1861, 'N', 1856, '_', 1596, - '`', 624, + '`', 626, 'a', 1711, 'b', 1695, 'c', 1605, @@ -15669,46 +16002,46 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'u', 1787, 'w', 1686, 'x', 1742, - '{', 3099, - '|', 2871, - '}', 3100, - '\t', 89, - ' ', 89, - 0x0b, 578, - '\f', 578, + '{', 3091, + '|', 2863, + '}', 3092, + '\t', 90, + ' ', 90, + 0x0b, 580, + '\f', 580, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead)) ADVANCE(1875); END_STATE(); - case 90: + case 91: ADVANCE_MAP( - '\n', 2867, - '\r', 108, + '\n', 2859, + '\r', 111, '!', 1576, - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, '*', 1114, - '+', 3523, - ',', 2919, - '-', 2976, + '+', 3514, + ',', 2911, + '-', 2968, '.', 1340, '/', 1346, - '0', 3384, - ':', 3520, - ';', 2870, - '<', 592, + '0', 3376, + ':', 3511, + ';', 2862, + '<', 594, '=', 1075, - '>', 595, + '>', 597, 'I', 1861, 'N', 1856, '_', 1596, - '`', 624, + '`', 626, 'a', 1711, 'b', 1695, 'c', 1605, @@ -15727,220 +16060,302 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'u', 1787, 'w', 1686, 'x', 1742, - '|', 2871, - '}', 3100, - '\t', 90, - ' ', 90, - 0x0b, 578, - '\f', 578, + '|', 2863, + '}', 3092, + '\t', 91, + ' ', 91, + 0x0b, 580, + '\f', 580, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 91: - ADVANCE_MAP( - '\n', 2867, - '\r', 108, - '!', 589, - '#', 4789, - '*', 519, - '+', 523, - '-', 585, - '/', 574, - ':', 3520, - ';', 2870, - '<', 592, - '=', 1075, - '>', 595, - '?', 3189, - 'a', 729, - 'b', 704, - 'e', 537, - 'i', 731, - 'm', 754, - 'n', 749, - 'o', 542, - 's', 830, - 'x', 746, - '{', 3099, - '|', 2871, - '}', 3100, - '\t', 91, - ' ', 91, - 0x0b, 578, - '\f', 578, - ); - END_STATE(); case 92: ADVANCE_MAP( - '\n', 2867, - '\r', 108, - '!', 589, - '#', 4789, - '*', 520, - '+', 544, - '-', 2970, - '/', 575, - ':', 3520, - ';', 2870, - '<', 592, - '=', 593, - '>', 595, - '?', 3189, - 'a', 729, - 'b', 704, - 'e', 537, - 'i', 677, - 'm', 754, - 'n', 749, - 'o', 542, - 's', 830, - 'x', 746, - '{', 3099, - '|', 2871, - '}', 3100, + '\n', 2859, + '\r', 111, + '!', 591, + '#', 4780, + '*', 521, + '+', 529, + '-', 587, + '/', 576, + ':', 3511, + ';', 2862, + '<', 594, + '=', 1075, + '>', 597, + '?', 3181, + 'a', 731, + 'b', 707, + 'e', 539, + 'i', 733, + 'm', 756, + 'n', 752, + 'o', 545, + 's', 834, + 'x', 751, + '{', 3091, + '|', 2863, + '}', 3092, '\t', 92, ' ', 92, - 0x0b, 578, - '\f', 578, + 0x0b, 580, + '\f', 580, ); END_STATE(); case 93: ADVANCE_MAP( - '\n', 2867, - '\r', 108, - '!', 589, - '#', 4789, - '*', 520, - '+', 544, - '-', 861, - '/', 575, - ':', 3520, - ';', 2870, - '<', 592, - '=', 593, - '>', 595, - 'a', 729, - 'b', 704, - 'e', 537, - 'i', 731, - 'm', 754, - 'n', 749, - 'o', 542, - 's', 830, - 'x', 746, - '|', 2871, - '}', 3100, + '\n', 2859, + '\r', 111, + '!', 591, + '#', 4780, + '*', 522, + '+', 542, + '-', 2962, + '/', 577, + ':', 3511, + ';', 2862, + '<', 594, + '=', 595, + '>', 597, + '?', 3181, + 'a', 731, + 'b', 707, + 'e', 539, + 'i', 680, + 'm', 756, + 'n', 752, + 'o', 545, + 's', 834, + 'x', 751, + '{', 3091, + '|', 2863, + '}', 3092, '\t', 93, ' ', 93, - 0x0b, 578, - '\f', 578, + 0x0b, 580, + '\f', 580, ); END_STATE(); case 94: ADVANCE_MAP( - '\n', 2867, - '\r', 108, - '!', 589, - '#', 4789, - '*', 520, - '+', 544, - '-', 861, - '/', 575, - ':', 3520, - ';', 2870, - '<', 592, - '=', 594, - '>', 595, - 'a', 729, - 'b', 704, - 'e', 537, - 'i', 731, - 'm', 754, - 'n', 749, - 'o', 542, - 's', 830, - 'x', 746, - '|', 2871, - '}', 3100, + '\n', 2859, + '\r', 111, + '!', 591, + '#', 4780, + '*', 522, + '+', 542, + '-', 2962, + '/', 577, + ':', 3511, + ';', 2862, + '<', 594, + '=', 595, + '>', 597, + '?', 3181, + 'a', 731, + 'b', 707, + 'e', 539, + 'i', 733, + 'm', 756, + 'n', 752, + 'o', 545, + 's', 834, + 'x', 751, + '{', 3091, + '|', 2863, + '}', 3092, '\t', 94, ' ', 94, - 0x0b, 578, - '\f', 578, + 0x0b, 580, + '\f', 580, ); END_STATE(); case 95: ADVANCE_MAP( - '\n', 2867, - '\r', 108, - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 2917, - '+', 566, - '-', 2978, - '.', 567, - '0', 3380, - ':', 3520, - ';', 2870, - '=', 602, - 'I', 893, - 'N', 884, - '[', 2915, - '_', 616, - '`', 624, - 'a', 713, - 'c', 744, - 'd', 665, - 'e', 533, - 'f', 628, - 'h', 695, - 'i', 678, - 'l', 694, - 'm', 625, - 'n', 664, - 'o', 527, - 't', 763, - 'u', 789, - '{', 3099, - '|', 2871, - '}', 3100, + '\n', 2859, + '\r', 111, + '!', 591, + '#', 4780, + '*', 522, + '+', 542, + '-', 865, + '/', 577, + ':', 3511, + ';', 2862, + '<', 594, + '=', 595, + '>', 597, + 'a', 731, + 'b', 707, + 'e', 539, + 'i', 733, + 'm', 756, + 'n', 752, + 'o', 545, + 's', 834, + 'x', 751, + '|', 2863, + '}', 3092, '\t', 95, ' ', 95, - 0x0b, 578, - '\f', 578, + 0x0b, 580, + '\f', 580, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3403); END_STATE(); case 96: ADVANCE_MAP( - '\n', 2867, - '\r', 108, - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, + '\n', 2859, + '\r', 111, + '!', 591, + '#', 4780, + '*', 522, + '+', 542, + '-', 865, + '/', 577, + ':', 3511, + ';', 2862, + '<', 594, + '=', 596, + '>', 597, + 'a', 731, + 'b', 707, + 'e', 539, + 'i', 733, + 'm', 756, + 'n', 752, + 'o', 545, + 's', 834, + 'x', 751, + '|', 2863, + '}', 3092, + '\t', 96, + ' ', 96, + 0x0b, 580, + '\f', 580, + ); + END_STATE(); + case 97: + ADVANCE_MAP( + '\n', 2859, + '\r', 111, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 2909, + '+', 568, + '-', 2970, + '.', 569, + '0', 3372, + ':', 3511, + ';', 2862, + '>', 2941, + '?', 3181, + 'I', 897, + 'N', 888, + '[', 2907, + '_', 615, + '`', 626, + 'a', 715, + 'c', 744, + 'd', 661, + 'e', 534, + 'f', 630, + 'h', 697, + 'i', 681, + 'l', 699, + 'm', 627, + 'n', 667, + 'o', 526, + 't', 766, + 'u', 791, + '{', 3091, + '|', 2863, + '}', 3092, + '\t', 97, + ' ', 97, + 0x0b, 580, + '\f', 580, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3395); + END_STATE(); + case 98: + ADVANCE_MAP( + '\n', 2859, + '\r', 111, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 2909, + '+', 568, + '-', 2970, + '.', 3281, + '0', 3372, + ':', 3511, + ';', 2862, + '=', 3652, + '>', 2941, + '?', 3181, + '@', 2943, + 'I', 897, + 'N', 888, + '[', 2907, + '_', 615, + '`', 626, + 'a', 715, + 'c', 744, + 'd', 661, + 'e', 534, + 'f', 630, + 'h', 697, + 'i', 681, + 'l', 699, + 'm', 627, + 'n', 667, + 'o', 526, + 't', 766, + 'u', 791, + '{', 3091, + '|', 2863, + '}', 3092, + '\t', 97, + ' ', 97, + 0x0b, 580, + '\f', 580, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3395); + END_STATE(); + case 99: + ADVANCE_MAP( + '\n', 2859, + '\r', 111, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, '*', 1348, - '+', 3524, - ',', 2919, - '-', 2977, - '.', 3305, + '+', 3515, + ',', 2911, + '-', 2969, + '.', 3297, '/', 1349, - '0', 3384, - ':', 3520, - ';', 2870, + '0', 3376, + ':', 3511, + ';', 2862, '=', 1073, - '?', 3189, + '?', 3181, 'I', 1861, 'N', 1856, '_', 1596, - '`', 624, + '`', 626, 'a', 1712, 'b', 1761, 'c', 1605, @@ -15958,44 +16373,44 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1756, 'u', 1787, 'w', 1686, - '|', 2871, - '}', 3100, - '\t', 88, - ' ', 88, - 0x0b, 578, - '\f', 578, + '|', 2863, + '}', 3092, + '\t', 89, + ' ', 89, + 0x0b, 580, + '\f', 580, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); if (lookahead != 0 && (lookahead < '\'' || '?' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 97: + case 100: ADVANCE_MAP( - '\n', 2867, - '\r', 108, - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, + '\n', 2859, + '\r', 111, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, '*', 1348, - '+', 3524, - ',', 2919, - '-', 2977, - '.', 3305, + '+', 3515, + ',', 2911, + '-', 2969, + '.', 3297, '/', 1349, - '0', 3384, - ':', 3520, - ';', 2870, + '0', 3376, + ':', 3511, + ';', 2862, '=', 1073, 'I', 1861, 'N', 1856, - '[', 3451, + '[', 3442, '_', 1596, - '`', 624, + '`', 626, 'a', 1712, 'b', 1761, 'c', 1605, @@ -16013,42 +16428,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1756, 'u', 1787, 'w', 1686, - '{', 3099, - '|', 2871, - '}', 3100, - '\t', 89, - ' ', 89, - 0x0b, 578, - '\f', 578, + '{', 3091, + '|', 2863, + '}', 3092, + '\t', 90, + ' ', 90, + 0x0b, 580, + '\f', 580, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && (lookahead < ']' || 'f' < lookahead)) ADVANCE(1875); END_STATE(); - case 98: + case 101: ADVANCE_MAP( - '\n', 2867, - '\r', 108, - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, + '\n', 2859, + '\r', 111, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, '*', 1348, - '+', 3524, - ',', 2919, - '-', 2977, + '+', 3515, + ',', 2911, + '-', 2969, '.', 1343, '/', 1349, - '0', 3384, - ':', 3520, - ';', 2870, + '0', 3376, + ':', 3511, + ';', 2862, '=', 1073, 'I', 1861, 'N', 1856, '_', 1596, - '`', 624, + '`', 626, 'a', 1712, 'b', 1761, 'c', 1605, @@ -16066,120 +16481,139 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1756, 'u', 1787, 'w', 1686, - '|', 2871, - '}', 3100, - '\t', 90, - ' ', 90, - 0x0b, 578, - '\f', 578, + '|', 2863, + '}', 3092, + '\t', 91, + ' ', 91, + 0x0b, 580, + '\f', 580, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); if (lookahead != 0 && (lookahead < '\'' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 99: + case 102: ADVANCE_MAP( - '\n', 2867, - '\r', 108, - '#', 4789, - '*', 583, - '+', 528, - '-', 584, - '.', 3297, - '/', 586, - ':', 3520, - ';', 2870, + '\n', 2859, + '\r', 111, + '#', 4780, + '*', 585, + '+', 530, + '-', 586, + '.', 3289, + '/', 588, + ':', 3511, + ';', 2862, '=', 1073, - '?', 3189, - 'E', 609, - 'G', 609, - 'K', 609, - 'M', 609, - 'P', 609, - 'T', 609, - 'd', 627, - 'e', 535, - 'g', 608, - 'h', 762, - 'k', 608, - 'm', 610, - 'n', 785, - 'o', 543, - 'p', 608, - 's', 667, - 't', 608, - 'u', 785, - 'w', 708, - '{', 3099, - '|', 2871, - '}', 3100, - 0xb5, 785, - '\t', 91, - ' ', 91, - 'B', 3429, - 'b', 3429, - 0x0b, 578, - '\f', 578, + '?', 3181, + 'E', 611, + 'G', 611, + 'K', 611, + 'M', 611, + 'P', 611, + 'T', 611, + 'd', 628, + 'e', 536, + 'g', 610, + 'h', 765, + 'k', 610, + 'm', 612, + 'n', 788, + 'o', 546, + 'p', 610, + 's', 668, + 't', 610, + 'u', 788, + 'w', 711, + '{', 3091, + '|', 2863, + '}', 3092, + 0xb5, 788, + '\t', 92, + ' ', 92, + 'B', 3420, + 'b', 3420, + 0x0b, 580, + '\f', 580, ); END_STATE(); - case 100: + case 103: ADVANCE_MAP( - '\n', 2867, - '\r', 108, - '#', 4789, - '-', 2961, - '.', 3297, - ':', 3520, - ';', 2870, - '=', 602, - '?', 3189, - 'e', 539, - 'i', 674, - 'o', 543, - '{', 3099, - '|', 2871, - '}', 3100, - '\t', 92, - ' ', 92, - 0x0b, 578, - '\f', 578, + '\n', 2859, + '\r', 111, + '#', 4780, + '-', 2953, + '.', 3289, + ':', 3511, + ';', 2862, + '=', 604, + '?', 3181, + 'E', 611, + 'G', 611, + 'K', 611, + 'M', 611, + 'P', 611, + 'T', 611, + 'd', 628, + 'e', 536, + 'g', 610, + 'h', 765, + 'i', 677, + 'k', 610, + 'm', 612, + 'n', 788, + 'o', 546, + 'p', 610, + 's', 668, + 't', 610, + 'u', 788, + 'w', 711, + '{', 3091, + '|', 2863, + '}', 3092, + 0xb5, 788, + '\t', 93, + ' ', 93, + 'B', 3420, + 'b', 3420, + 0x0b, 580, + '\f', 580, ); END_STATE(); - case 101: + case 104: ADVANCE_MAP( - '\n', 2867, - '\r', 108, - '#', 4789, - '-', 2961, - '.', 3283, - ':', 3520, - ';', 2870, - '=', 602, - '?', 3189, - 'e', 539, - 'i', 674, - 'o', 543, - '{', 3099, - '|', 2871, - '}', 3100, - '\t', 92, - ' ', 92, - 0x0b, 578, - '\f', 578, + '\n', 2859, + '\r', 111, + '#', 4780, + '-', 2953, + '.', 3275, + ':', 3511, + ';', 2862, + '=', 604, + '?', 3181, + 'e', 541, + 'o', 546, + '{', 3091, + '|', 2863, + '}', 3092, + '\t', 94, + ' ', 94, + 0x0b, 580, + '\f', 580, ); END_STATE(); - case 102: + case 105: ADVANCE_MAP( - '\n', 2867, - '\r', 108, - '#', 4789, - '.', 3297, - ':', 3520, - ';', 2870, - '=', 602, + '\n', 2859, + '\r', 111, + '#', 4780, + '.', 3289, + ':', 3511, + ';', 2862, + '=', 604, 'E', 2258, 'G', 2260, 'K', 2260, @@ -16199,27 +16633,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 2259, 'u', 2287, 'w', 2274, - '|', 2871, - '}', 3100, + '|', 2863, + '}', 3092, 0xb5, 2287, - '\t', 93, - ' ', 93, - 'B', 3429, - 'b', 3429, - 0x0b, 578, - '\f', 578, + '\t', 95, + ' ', 95, + 'B', 3420, + 'b', 3420, + 0x0b, 580, + '\f', 580, ); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); - case 103: + case 106: ADVANCE_MAP( - '\n', 2867, - '\r', 108, - '#', 4789, + '\n', 2859, + '\r', 111, + '#', 4780, '.', 2248, - ':', 3520, - ';', 2870, - '=', 602, + ':', 3511, + ';', 2862, + '=', 604, 'E', 2258, 'G', 2260, 'K', 2260, @@ -16240,28 +16674,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 2259, 'u', 2287, 'w', 2274, - '|', 2871, - '}', 3100, + '|', 2863, + '}', 3092, 0xb5, 2287, - '\t', 93, - ' ', 93, - 'B', 3429, - 'b', 3429, - 0x0b, 578, - '\f', 578, + '\t', 95, + ' ', 95, + 'B', 3420, + 'b', 3420, + 0x0b, 580, + '\f', 580, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); - case 104: + case 107: ADVANCE_MAP( - '\n', 2867, - '\r', 108, - '#', 4789, + '\n', 2859, + '\r', 111, + '#', 4780, '.', 2248, - ':', 3520, - ';', 2870, - '=', 602, + ':', 3511, + ';', 2862, + '=', 604, 'E', 2258, 'G', 2260, 'K', 2260, @@ -16281,27 +16715,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 2259, 'u', 2287, 'w', 2274, - '|', 2871, - '}', 3100, + '|', 2863, + '}', 3092, 0xb5, 2287, - '\t', 93, - ' ', 93, - 'B', 3429, - 'b', 3429, - 0x0b, 578, - '\f', 578, + '\t', 95, + ' ', 95, + 'B', 3420, + 'b', 3420, + 0x0b, 580, + '\f', 580, ); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); - case 105: + case 108: ADVANCE_MAP( - '\n', 2867, - '\r', 108, - '#', 4789, + '\n', 2859, + '\r', 111, + '#', 4780, '.', 2248, - ':', 3520, - ';', 2870, - '=', 602, + ':', 3511, + ';', 2862, + '=', 604, 'E', 2260, 'G', 2260, 'K', 2260, @@ -16321,795 +16755,795 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 2259, 'u', 2287, 'w', 2274, - '|', 2871, - '}', 3100, + '|', 2863, + '}', 3092, 0xb5, 2287, - '\t', 93, - ' ', 93, - 'B', 3429, - 'b', 3429, - 0x0b, 578, - '\f', 578, + '\t', 95, + ' ', 95, + 'B', 3420, + 'b', 3420, + 0x0b, 580, + '\f', 580, ); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); - case 106: + case 109: ADVANCE_MAP( - '\n', 2867, - '\r', 108, - '#', 4789, - ':', 3520, - ';', 2870, - 'e', 532, - 'o', 527, - '|', 2871, - '}', 3100, - '\t', 2868, - ' ', 2868, - 0x0b, 578, - '\f', 578, + '\n', 2859, + '\r', 111, + '#', 4780, + ':', 3511, + ';', 2862, + 'e', 533, + 'o', 526, + '|', 2863, + '}', 3092, + '\t', 2860, + ' ', 2860, + 0x0b, 580, + '\f', 580, ); END_STATE(); - case 107: + case 110: ADVANCE_MAP( - '\n', 2867, - '\r', 108, - '#', 4792, - ':', 3520, - ';', 2870, + '\n', 2859, + '\r', 111, + '#', 4783, + ':', 3511, + ';', 2862, 'e', 2158, 'o', 2159, - '|', 2871, - '}', 3100, - '\t', 94, - ' ', 94, - 0x0b, 578, - '\f', 578, + '|', 2863, + '}', 3092, + '\t', 96, + ' ', 96, + 0x0b, 580, + '\f', 580, ); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); END_STATE(); - case 108: - if (lookahead == '\n') ADVANCE(2867); - if (lookahead == ':') ADVANCE(3520); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(578); - END_STATE(); - case 109: - if (lookahead == '\n') ADVANCE(2866); - END_STATE(); - case 110: - ADVANCE_MAP( - '\n', 2866, - '\r', 109, - '!', 591, - '#', 4789, - '$', 2920, - ')', 2918, - '*', 183, - '+', 158, - '-', 184, - '.', 621, - '/', 162, - ';', 2870, - '<', 187, - '=', 596, - '>', 188, - 'a', 720, - 'b', 693, - 'e', 536, - 'i', 676, - 'm', 752, - 'n', 742, - 'o', 541, - 's', 799, - 'x', 751, - '{', 3099, - '|', 2871, - '\t', 110, - ' ', 110, - ); - END_STATE(); case 111: - ADVANCE_MAP( - '\n', 2866, - '\r', 109, - '!', 591, - '#', 4789, - ')', 2918, - '*', 183, - '+', 159, - '-', 186, - '/', 162, - ';', 2870, - '<', 187, - '=', 596, - '>', 188, - '?', 3189, - 'a', 720, - 'b', 693, - 'e', 536, - 'i', 676, - 'm', 752, - 'n', 742, - 'o', 541, - 's', 799, - 'x', 751, - '{', 3099, - '|', 2871, - '\t', 111, - ' ', 111, - ); + if (lookahead == '\n') ADVANCE(2859); + if (lookahead == ':') ADVANCE(3511); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(580); END_STATE(); case 112: - ADVANCE_MAP( - '\n', 2866, - '\r', 109, - '!', 591, - '#', 4789, - ')', 2918, - '*', 183, - '+', 159, - '-', 186, - '/', 162, - ';', 2870, - '<', 187, - '=', 597, - '>', 188, - 'a', 720, - 'b', 693, - 'e', 530, - 'i', 730, - 'm', 752, - 'n', 742, - 'o', 525, - 's', 799, - 'x', 751, - '|', 2871, - '\t', 112, - ' ', 112, - ); + if (lookahead == '\n') ADVANCE(2858); END_STATE(); case 113: ADVANCE_MAP( - '\n', 2866, - '\r', 109, - '!', 591, - '#', 4789, - ')', 2918, - '*', 183, - '+', 159, - '-', 186, - '/', 162, - ';', 2870, - '<', 187, - '=', 597, - '>', 188, - 'a', 720, - 'b', 693, - 'e', 536, - 'i', 730, - 'm', 752, - 'n', 742, - 'o', 541, - 's', 799, - 'x', 751, - '{', 3099, - '|', 2871, + '\n', 2858, + '\r', 112, + '!', 593, + '#', 4780, + '$', 2912, + ')', 2910, + '*', 186, + '+', 161, + '-', 187, + '.', 623, + '/', 165, + ';', 2862, + '<', 190, + '=', 598, + '>', 191, + 'a', 722, + 'b', 696, + 'e', 538, + 'i', 679, + 'm', 754, + 'n', 745, + 'o', 544, + 's', 802, + 'x', 753, + '{', 3091, + '|', 2863, '\t', 113, ' ', 113, ); END_STATE(); case 114: ADVANCE_MAP( - '\n', 2866, - '\r', 109, - '!', 591, - '#', 4789, - ')', 2918, - '*', 183, - '+', 159, - '-', 186, - '/', 162, - ';', 2870, - '<', 187, - '=', 597, - '>', 188, - 'a', 720, - 'b', 693, - 'e', 536, - 'i', 730, - 'm', 752, - 'n', 742, - 'o', 541, - 's', 799, - 'x', 751, - '|', 2871, + '\n', 2858, + '\r', 112, + '!', 593, + '#', 4780, + ')', 2910, + '*', 186, + '+', 162, + '-', 189, + '/', 165, + ';', 2862, + '<', 190, + '=', 598, + '>', 191, + '?', 3181, + 'a', 722, + 'b', 696, + 'e', 538, + 'i', 679, + 'm', 754, + 'n', 745, + 'o', 544, + 's', 802, + 'x', 753, + '{', 3091, + '|', 2863, '\t', 114, ' ', 114, ); END_STATE(); case 115: ADVANCE_MAP( - '\n', 2866, - '\r', 109, - '!', 591, - '#', 4789, - ')', 2918, - '*', 182, - '+', 157, - '-', 185, - '/', 161, - ';', 2870, - '<', 187, - '=', 1076, - '>', 188, - '?', 3189, - 'a', 720, - 'b', 693, - 'e', 536, - 'i', 730, - 'm', 752, - 'n', 742, - 'o', 541, - 's', 799, - 'x', 751, - '{', 3099, - '|', 2871, + '\n', 2858, + '\r', 112, + '!', 593, + '#', 4780, + ')', 2910, + '*', 186, + '+', 162, + '-', 189, + '/', 165, + ';', 2862, + '<', 190, + '=', 599, + '>', 191, + 'a', 722, + 'b', 696, + 'e', 531, + 'i', 732, + 'm', 754, + 'n', 745, + 'o', 524, + 's', 802, + 'x', 753, + '|', 2863, '\t', 115, ' ', 115, ); END_STATE(); case 116: ADVANCE_MAP( - '\n', 2866, - '\r', 109, - '!', 591, - '#', 4789, - '*', 183, - '+', 159, - '-', 186, - '/', 162, - '<', 187, - '=', 597, - '>', 188, - 'a', 720, - 'b', 693, - 'e', 726, - 'i', 730, - 'm', 752, - 'n', 742, - 'o', 772, - 's', 799, - 'x', 751, - '{', 3099, + '\n', 2858, + '\r', 112, + '!', 593, + '#', 4780, + ')', 2910, + '*', 186, + '+', 162, + '-', 189, + '/', 165, + ';', 2862, + '<', 190, + '=', 599, + '>', 191, + 'a', 722, + 'b', 696, + 'e', 538, + 'i', 732, + 'm', 754, + 'n', 745, + 'o', 544, + 's', 802, + 'x', 753, + '{', 3091, + '|', 2863, '\t', 116, ' ', 116, ); END_STATE(); case 117: ADVANCE_MAP( - '\n', 2866, - '\r', 109, - '#', 4789, - '$', 2920, - '(', 3220, - ')', 2918, - '.', 569, - ';', 2870, - '=', 602, - '[', 3451, - '_', 620, - 'e', 539, - 'i', 674, - 'o', 543, - '{', 3099, - '|', 2871, - '\t', 110, - ' ', 110, - '+', 571, - '-', 571, + '\n', 2858, + '\r', 112, + '!', 593, + '#', 4780, + ')', 2910, + '*', 186, + '+', 162, + '-', 189, + '/', 165, + ';', 2862, + '<', 190, + '=', 599, + '>', 191, + 'a', 722, + 'b', 696, + 'e', 538, + 'i', 732, + 'm', 754, + 'n', 745, + 'o', 544, + 's', 802, + 'x', 753, + '|', 2863, + '\t', 117, + ' ', 117, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); END_STATE(); case 118: ADVANCE_MAP( - '\n', 2866, - '\r', 109, - '#', 4789, - '(', 3220, - ')', 2918, - '*', 583, - '+', 528, - '-', 584, - '.', 3297, - '/', 586, - ';', 2870, - '=', 1073, - '?', 3189, - 'E', 609, - 'G', 609, - 'K', 609, - 'M', 609, - 'P', 609, - 'T', 609, - 'd', 627, - 'e', 535, - 'g', 608, - 'h', 762, - 'k', 608, - 'm', 610, - 'n', 785, - 'o', 543, - 'p', 608, - 's', 667, - 't', 608, - 'u', 785, - 'w', 708, - '{', 3099, - '|', 2871, - 0xb5, 785, - '\t', 115, - ' ', 115, - 'B', 3429, - 'b', 3429, + '\n', 2858, + '\r', 112, + '!', 593, + '#', 4780, + ')', 2910, + '*', 185, + '+', 160, + '-', 188, + '/', 164, + ';', 2862, + '<', 190, + '=', 1076, + '>', 191, + '?', 3181, + 'a', 722, + 'b', 696, + 'e', 538, + 'i', 732, + 'm', 754, + 'n', 745, + 'o', 544, + 's', 802, + 'x', 753, + '{', 3091, + '|', 2863, + '\t', 118, + ' ', 118, ); END_STATE(); case 119: ADVANCE_MAP( - '\n', 2866, - '\r', 109, - '#', 4789, - '(', 3220, - ')', 2918, - '.', 3297, - ';', 2870, - 'E', 3895, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'P', 3898, - 'T', 3898, - 'd', 3915, - 'e', 3850, - 'g', 3897, - 'h', 3941, - 'k', 3897, - 'm', 3899, - 'n', 3951, - 'o', 3849, - 'p', 3897, - 's', 3921, - 't', 3897, - 'u', 3951, - 'w', 3927, - '|', 2871, - 0xb5, 3951, - '\t', 114, - ' ', 114, - 'B', 3429, - 'b', 3429, + '\n', 2858, + '\r', 112, + '!', 593, + '#', 4780, + '*', 186, + '+', 162, + '-', 189, + '/', 165, + '<', 190, + '=', 599, + '>', 191, + 'a', 722, + 'b', 696, + 'e', 728, + 'i', 732, + 'm', 754, + 'n', 745, + 'o', 776, + 's', 802, + 'x', 753, + '{', 3091, + '\t', 119, + ' ', 119, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 120: ADVANCE_MAP( - '\n', 2866, - '\r', 109, - '#', 4789, - '(', 3220, - ')', 2918, - '.', 3297, - ';', 2870, - 'E', 3895, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'P', 3898, - 'T', 3898, - 'd', 3915, - 'e', 3853, - 'g', 3897, - 'h', 3941, - 'k', 3897, - 'm', 3899, - 'n', 3951, - 'o', 3859, - 'p', 3897, - 's', 3921, - 't', 3897, - 'u', 3951, - 'w', 3927, - '|', 2871, - 0xb5, 3951, - '\t', 112, - ' ', 112, - 'B', 3429, - 'b', 3429, + '\n', 2858, + '\r', 112, + '#', 4780, + '$', 2912, + '(', 3212, + ')', 2910, + '.', 571, + ';', 2862, + '=', 604, + '[', 3442, + '_', 622, + 'e', 541, + 'i', 677, + 'o', 546, + '{', 3091, + '|', 2863, + '\t', 113, + ' ', 113, + '+', 573, + '-', 573, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); END_STATE(); case 121: ADVANCE_MAP( - '\n', 2866, - '\r', 109, - '#', 4789, - '(', 3220, - ')', 2918, - '.', 3879, - ';', 2870, - 'E', 3895, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'P', 3898, - 'T', 3898, - '_', 3900, - 'd', 3915, - 'e', 3850, - 'g', 3897, - 'h', 3941, - 'k', 3897, - 'm', 3899, - 'n', 3951, - 'o', 3849, - 'p', 3897, - 's', 3921, - 't', 3897, - 'u', 3951, - 'w', 3927, - '|', 2871, - 0xb5, 3951, - '\t', 114, - ' ', 114, - 'B', 3429, - 'b', 3429, + '\n', 2858, + '\r', 112, + '#', 4780, + '(', 3212, + ')', 2910, + '*', 585, + '+', 530, + '-', 586, + '.', 3289, + '/', 588, + ';', 2862, + '=', 1073, + '?', 3181, + 'E', 611, + 'G', 611, + 'K', 611, + 'M', 611, + 'P', 611, + 'T', 611, + 'd', 628, + 'e', 536, + 'g', 610, + 'h', 765, + 'k', 610, + 'm', 612, + 'n', 788, + 'o', 546, + 'p', 610, + 's', 668, + 't', 610, + 'u', 788, + 'w', 711, + '{', 3091, + '|', 2863, + 0xb5, 788, + '\t', 118, + ' ', 118, + 'B', 3420, + 'b', 3420, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 122: ADVANCE_MAP( - '\n', 2866, - '\r', 109, - '#', 4789, - '(', 3220, - ')', 2918, - '.', 3879, - ';', 2870, - 'E', 3895, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'P', 3898, - 'T', 3898, - '_', 3900, - 'd', 3915, - 'e', 3853, - 'g', 3897, - 'h', 3941, - 'k', 3897, - 'm', 3899, - 'n', 3951, - 'o', 3859, - 'p', 3897, - 's', 3921, - 't', 3897, - 'u', 3951, - 'w', 3927, - '|', 2871, - 0xb5, 3951, - '\t', 112, - ' ', 112, - 'B', 3429, - 'b', 3429, + '\n', 2858, + '\r', 112, + '#', 4780, + '(', 3212, + ')', 2910, + '.', 3289, + ';', 2862, + 'E', 3886, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'P', 3889, + 'T', 3889, + 'd', 3906, + 'e', 3841, + 'g', 3888, + 'h', 3932, + 'k', 3888, + 'm', 3890, + 'n', 3942, + 'o', 3840, + 'p', 3888, + 's', 3912, + 't', 3888, + 'u', 3942, + 'w', 3918, + '|', 2863, + 0xb5, 3942, + '\t', 117, + ' ', 117, + 'B', 3420, + 'b', 3420, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 123: ADVANCE_MAP( - '\n', 2866, - '\r', 109, - '#', 4789, - '(', 3220, - ')', 2918, - '.', 3879, - ';', 2870, - 'E', 3895, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'P', 3898, - 'T', 3898, - 'd', 3915, - 'e', 3850, - 'g', 3897, - 'h', 3941, - 'k', 3897, - 'm', 3899, - 'n', 3951, - 'o', 3849, - 'p', 3897, - 's', 3921, - 't', 3897, - 'u', 3951, - 'w', 3927, - '|', 2871, - 0xb5, 3951, - '\t', 114, - ' ', 114, - 'B', 3429, - 'b', 3429, + '\n', 2858, + '\r', 112, + '#', 4780, + '(', 3212, + ')', 2910, + '.', 3289, + ';', 2862, + 'E', 3886, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'P', 3889, + 'T', 3889, + 'd', 3906, + 'e', 3844, + 'g', 3888, + 'h', 3932, + 'k', 3888, + 'm', 3890, + 'n', 3942, + 'o', 3850, + 'p', 3888, + 's', 3912, + 't', 3888, + 'u', 3942, + 'w', 3918, + '|', 2863, + 0xb5, 3942, + '\t', 115, + ' ', 115, + 'B', 3420, + 'b', 3420, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 124: ADVANCE_MAP( - '\n', 2866, - '\r', 109, - '#', 4789, - '(', 3220, - ')', 2918, - '.', 3879, - ';', 2870, - 'E', 3895, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'P', 3898, - 'T', 3898, - 'd', 3915, - 'e', 3853, - 'g', 3897, - 'h', 3941, - 'k', 3897, - 'm', 3899, - 'n', 3951, - 'o', 3859, - 'p', 3897, - 's', 3921, - 't', 3897, - 'u', 3951, - 'w', 3927, - '|', 2871, - 0xb5, 3951, - '\t', 112, - ' ', 112, - 'B', 3429, - 'b', 3429, + '\n', 2858, + '\r', 112, + '#', 4780, + '(', 3212, + ')', 2910, + '.', 3870, + ';', 2862, + 'E', 3886, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'P', 3889, + 'T', 3889, + '_', 3891, + 'd', 3906, + 'e', 3841, + 'g', 3888, + 'h', 3932, + 'k', 3888, + 'm', 3890, + 'n', 3942, + 'o', 3840, + 'p', 3888, + 's', 3912, + 't', 3888, + 'u', 3942, + 'w', 3918, + '|', 2863, + 0xb5, 3942, + '\t', 117, + ' ', 117, + 'B', 3420, + 'b', 3420, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 125: ADVANCE_MAP( - '\n', 2866, - '\r', 109, - '#', 4789, - '(', 3220, - ')', 2918, - '.', 3879, - ';', 2870, - 'E', 3898, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'P', 3898, - 'T', 3898, - 'd', 3915, - 'e', 3847, - 'g', 3897, - 'h', 3941, - 'k', 3897, - 'm', 3899, - 'n', 3951, - 'o', 3849, - 'p', 3897, - 's', 3921, - 't', 3897, - 'u', 3951, - 'w', 3927, - '|', 2871, - 0xb5, 3951, - '\t', 114, - ' ', 114, - 'B', 3429, - 'b', 3429, + '\n', 2858, + '\r', 112, + '#', 4780, + '(', 3212, + ')', 2910, + '.', 3870, + ';', 2862, + 'E', 3886, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'P', 3889, + 'T', 3889, + '_', 3891, + 'd', 3906, + 'e', 3844, + 'g', 3888, + 'h', 3932, + 'k', 3888, + 'm', 3890, + 'n', 3942, + 'o', 3850, + 'p', 3888, + 's', 3912, + 't', 3888, + 'u', 3942, + 'w', 3918, + '|', 2863, + 0xb5, 3942, + '\t', 115, + ' ', 115, + 'B', 3420, + 'b', 3420, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 126: ADVANCE_MAP( - '\n', 2866, - '\r', 109, - '#', 4789, - '(', 3220, - ')', 2918, - '.', 3879, - ';', 2870, - 'E', 3898, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'P', 3898, - 'T', 3898, - 'd', 3915, - 'e', 3856, - 'g', 3897, - 'h', 3941, - 'k', 3897, - 'm', 3899, - 'n', 3951, - 'o', 3859, - 'p', 3897, - 's', 3921, - 't', 3897, - 'u', 3951, - 'w', 3927, - '|', 2871, - 0xb5, 3951, - '\t', 112, - ' ', 112, - 'B', 3429, - 'b', 3429, + '\n', 2858, + '\r', 112, + '#', 4780, + '(', 3212, + ')', 2910, + '.', 3870, + ';', 2862, + 'E', 3886, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'P', 3889, + 'T', 3889, + 'd', 3906, + 'e', 3841, + 'g', 3888, + 'h', 3932, + 'k', 3888, + 'm', 3890, + 'n', 3942, + 'o', 3840, + 'p', 3888, + 's', 3912, + 't', 3888, + 'u', 3942, + 'w', 3918, + '|', 2863, + 0xb5, 3942, + '\t', 117, + ' ', 117, + 'B', 3420, + 'b', 3420, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 127: ADVANCE_MAP( - '\n', 2866, - '\r', 109, - '#', 4789, - '(', 3220, - '.', 3297, - 'E', 3895, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'P', 3898, - 'T', 3898, - 'd', 3915, - 'e', 3894, - 'g', 3897, - 'h', 3941, - 'k', 3897, - 'm', 3899, - 'n', 3951, - 'p', 3897, - 's', 3921, - 't', 3897, - 'u', 3951, - 'w', 3927, - '{', 3099, - 0xb5, 3951, - '\t', 116, - ' ', 116, - 'B', 3429, - 'b', 3429, + '\n', 2858, + '\r', 112, + '#', 4780, + '(', 3212, + ')', 2910, + '.', 3870, + ';', 2862, + 'E', 3886, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'P', 3889, + 'T', 3889, + 'd', 3906, + 'e', 3844, + 'g', 3888, + 'h', 3932, + 'k', 3888, + 'm', 3890, + 'n', 3942, + 'o', 3850, + 'p', 3888, + 's', 3912, + 't', 3888, + 'u', 3942, + 'w', 3918, + '|', 2863, + 0xb5, 3942, + '\t', 115, + ' ', 115, + 'B', 3420, + 'b', 3420, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 128: ADVANCE_MAP( - '\n', 2866, - '\r', 109, - '#', 4789, - '(', 3220, - '.', 3879, - 'E', 3895, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'P', 3898, - 'T', 3898, - '_', 3900, - 'd', 3915, - 'e', 3894, - 'g', 3897, - 'h', 3941, - 'k', 3897, - 'm', 3899, - 'n', 3951, - 'p', 3897, - 's', 3921, - 't', 3897, - 'u', 3951, - 'w', 3927, - '{', 3099, - 0xb5, 3951, - '\t', 116, - ' ', 116, - 'B', 3429, - 'b', 3429, + '\n', 2858, + '\r', 112, + '#', 4780, + '(', 3212, + ')', 2910, + '.', 3870, + ';', 2862, + 'E', 3889, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'P', 3889, + 'T', 3889, + 'd', 3906, + 'e', 3838, + 'g', 3888, + 'h', 3932, + 'k', 3888, + 'm', 3890, + 'n', 3942, + 'o', 3840, + 'p', 3888, + 's', 3912, + 't', 3888, + 'u', 3942, + 'w', 3918, + '|', 2863, + 0xb5, 3942, + '\t', 117, + ' ', 117, + 'B', 3420, + 'b', 3420, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 129: ADVANCE_MAP( - '\n', 2866, - '\r', 109, - '#', 4789, - '(', 3220, - '.', 3879, - 'E', 3895, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'P', 3898, - 'T', 3898, - 'd', 3915, - 'e', 3894, - 'g', 3897, - 'h', 3941, - 'k', 3897, - 'm', 3899, - 'n', 3951, - 'p', 3897, - 's', 3921, - 't', 3897, - 'u', 3951, - 'w', 3927, - '{', 3099, - 0xb5, 3951, - '\t', 116, - ' ', 116, - 'B', 3429, - 'b', 3429, + '\n', 2858, + '\r', 112, + '#', 4780, + '(', 3212, + ')', 2910, + '.', 3870, + ';', 2862, + 'E', 3889, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'P', 3889, + 'T', 3889, + 'd', 3906, + 'e', 3847, + 'g', 3888, + 'h', 3932, + 'k', 3888, + 'm', 3890, + 'n', 3942, + 'o', 3850, + 'p', 3888, + 's', 3912, + 't', 3888, + 'u', 3942, + 'w', 3918, + '|', 2863, + 0xb5, 3942, + '\t', 115, + ' ', 115, + 'B', 3420, + 'b', 3420, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 130: ADVANCE_MAP( - '\n', 2866, - '\r', 109, - '#', 4789, - '(', 3220, - '.', 3879, - 'E', 3898, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'P', 3898, - 'T', 3898, - 'd', 3915, - 'e', 3897, - 'g', 3897, - 'h', 3941, - 'k', 3897, - 'm', 3899, - 'n', 3951, - 'p', 3897, - 's', 3921, - 't', 3897, - 'u', 3951, - 'w', 3927, - '{', 3099, - 0xb5, 3951, - '\t', 116, - ' ', 116, - 'B', 3429, - 'b', 3429, + '\n', 2858, + '\r', 112, + '#', 4780, + '(', 3212, + '.', 3289, + 'E', 3886, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'P', 3889, + 'T', 3889, + 'd', 3906, + 'e', 3885, + 'g', 3888, + 'h', 3932, + 'k', 3888, + 'm', 3890, + 'n', 3942, + 'p', 3888, + 's', 3912, + 't', 3888, + 'u', 3942, + 'w', 3918, + '{', 3091, + 0xb5, 3942, + '\t', 119, + ' ', 119, + 'B', 3420, + 'b', 3420, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 131: - if (lookahead == '\n') ADVANCE(2866); - if (lookahead == '\r') ADVANCE(109); - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '(') ADVANCE(3220); - if (lookahead == '{') ADVANCE(3099); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(116); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + ADVANCE_MAP( + '\n', 2858, + '\r', 112, + '#', 4780, + '(', 3212, + '.', 3870, + 'E', 3886, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'P', 3889, + 'T', 3889, + '_', 3891, + 'd', 3906, + 'e', 3885, + 'g', 3888, + 'h', 3932, + 'k', 3888, + 'm', 3890, + 'n', 3942, + 'p', 3888, + 's', 3912, + 't', 3888, + 'u', 3942, + 'w', 3918, + '{', 3091, + 0xb5, 3942, + '\t', 119, + ' ', 119, + 'B', 3420, + 'b', 3420, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 132: ADVANCE_MAP( - '\n', 2866, - '\r', 109, - '#', 4789, - ')', 2918, - '.', 3297, - ';', 2870, + '\n', 2858, + '\r', 112, + '#', 4780, + '(', 3212, + '.', 3870, + 'E', 3886, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'P', 3889, + 'T', 3889, + 'd', 3906, + 'e', 3885, + 'g', 3888, + 'h', 3932, + 'k', 3888, + 'm', 3890, + 'n', 3942, + 'p', 3888, + 's', 3912, + 't', 3888, + 'u', 3942, + 'w', 3918, + '{', 3091, + 0xb5, 3942, + '\t', 119, + ' ', 119, + 'B', 3420, + 'b', 3420, + ); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + END_STATE(); + case 133: + ADVANCE_MAP( + '\n', 2858, + '\r', 112, + '#', 4780, + '(', 3212, + '.', 3870, + 'E', 3889, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'P', 3889, + 'T', 3889, + 'd', 3906, + 'e', 3888, + 'g', 3888, + 'h', 3932, + 'k', 3888, + 'm', 3890, + 'n', 3942, + 'p', 3888, + 's', 3912, + 't', 3888, + 'u', 3942, + 'w', 3918, + '{', 3091, + 0xb5, 3942, + '\t', 119, + ' ', 119, + 'B', 3420, + 'b', 3420, + ); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + END_STATE(); + case 134: + if (lookahead == '\n') ADVANCE(2858); + if (lookahead == '\r') ADVANCE(112); + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '(') ADVANCE(3212); + if (lookahead == '{') ADVANCE(3091); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(119); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + END_STATE(); + case 135: + ADVANCE_MAP( + '\n', 2858, + '\r', 112, + '#', 4780, + ')', 2910, + '.', 3289, + ';', 2862, 'E', 2258, 'G', 2260, 'K', 2260, @@ -17129,24 +17563,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 2259, 'u', 2287, 'w', 2274, - '{', 3099, - '|', 2871, + '{', 3091, + '|', 2863, 0xb5, 2287, - '\t', 113, - ' ', 113, - 'B', 3429, - 'b', 3429, + '\t', 116, + ' ', 116, + 'B', 3420, + 'b', 3420, ); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); - case 133: + case 136: ADVANCE_MAP( - '\n', 2866, - '\r', 109, - '#', 4789, - ')', 2918, - '.', 3297, - ';', 2870, + '\n', 2858, + '\r', 112, + '#', 4780, + ')', 2910, + '.', 3289, + ';', 2862, 'E', 2258, 'G', 2260, 'K', 2260, @@ -17166,23 +17600,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 2259, 'u', 2287, 'w', 2274, - '|', 2871, + '|', 2863, 0xb5, 2287, - '\t', 112, - ' ', 112, - 'B', 3429, - 'b', 3429, + '\t', 115, + ' ', 115, + 'B', 3420, + 'b', 3420, ); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); - case 134: + case 137: ADVANCE_MAP( - '\n', 2866, - '\r', 109, - '#', 4789, - ')', 2918, + '\n', 2858, + '\r', 112, + '#', 4780, + ')', 2910, '.', 2248, - ';', 2870, + ';', 2862, 'E', 2258, 'G', 2260, 'K', 2260, @@ -17203,25 +17637,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 2259, 'u', 2287, 'w', 2274, - '{', 3099, - '|', 2871, + '{', 3091, + '|', 2863, 0xb5, 2287, - '\t', 113, - ' ', 113, - 'B', 3429, - 'b', 3429, + '\t', 116, + ' ', 116, + 'B', 3420, + 'b', 3420, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); - case 135: + case 138: ADVANCE_MAP( - '\n', 2866, - '\r', 109, - '#', 4789, - ')', 2918, + '\n', 2858, + '\r', 112, + '#', 4780, + ')', 2910, '.', 2248, - ';', 2870, + ';', 2862, 'E', 2258, 'G', 2260, 'K', 2260, @@ -17242,24 +17676,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 2259, 'u', 2287, 'w', 2274, - '|', 2871, + '|', 2863, 0xb5, 2287, - '\t', 112, - ' ', 112, - 'B', 3429, - 'b', 3429, + '\t', 115, + ' ', 115, + 'B', 3420, + 'b', 3420, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); - case 136: + case 139: ADVANCE_MAP( - '\n', 2866, - '\r', 109, - '#', 4789, - ')', 2918, + '\n', 2858, + '\r', 112, + '#', 4780, + ')', 2910, '.', 2248, - ';', 2870, + ';', 2862, 'E', 2258, 'G', 2260, 'K', 2260, @@ -17279,24 +17713,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 2259, 'u', 2287, 'w', 2274, - '{', 3099, - '|', 2871, + '{', 3091, + '|', 2863, 0xb5, 2287, - '\t', 113, - ' ', 113, - 'B', 3429, - 'b', 3429, + '\t', 116, + ' ', 116, + 'B', 3420, + 'b', 3420, ); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); - case 137: + case 140: ADVANCE_MAP( - '\n', 2866, - '\r', 109, - '#', 4789, - ')', 2918, + '\n', 2858, + '\r', 112, + '#', 4780, + ')', 2910, '.', 2248, - ';', 2870, + ';', 2862, 'E', 2258, 'G', 2260, 'K', 2260, @@ -17316,23 +17750,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 2259, 'u', 2287, 'w', 2274, - '|', 2871, + '|', 2863, 0xb5, 2287, - '\t', 112, - ' ', 112, - 'B', 3429, - 'b', 3429, + '\t', 115, + ' ', 115, + 'B', 3420, + 'b', 3420, ); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); - case 138: + case 141: ADVANCE_MAP( - '\n', 2866, - '\r', 109, - '#', 4789, - ')', 2918, + '\n', 2858, + '\r', 112, + '#', 4780, + ')', 2910, '.', 2248, - ';', 2870, + ';', 2862, 'E', 2260, 'G', 2260, 'K', 2260, @@ -17352,24 +17786,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 2259, 'u', 2287, 'w', 2274, - '{', 3099, - '|', 2871, + '{', 3091, + '|', 2863, 0xb5, 2287, - '\t', 113, - ' ', 113, - 'B', 3429, - 'b', 3429, + '\t', 116, + ' ', 116, + 'B', 3420, + 'b', 3420, ); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); - case 139: + case 142: ADVANCE_MAP( - '\n', 2866, - '\r', 109, - '#', 4789, - ')', 2918, + '\n', 2858, + '\r', 112, + '#', 4780, + ')', 2910, '.', 2248, - ';', 2870, + ';', 2862, 'E', 2260, 'G', 2260, 'K', 2260, @@ -17389,544 +17823,544 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 2259, 'u', 2287, 'w', 2274, - '|', 2871, + '|', 2863, 0xb5, 2287, - '\t', 112, - ' ', 112, - 'B', 3429, - 'b', 3429, + '\t', 115, + ' ', 115, + 'B', 3420, + 'b', 3420, ); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); - case 140: + case 143: ADVANCE_MAP( - '\n', 2866, - '\r', 109, - '#', 4789, - ')', 2918, - '.', 3283, - ';', 2870, - '=', 602, - '?', 3189, - 'e', 539, - 'i', 674, - 'o', 543, - '{', 3099, - '|', 2871, - '\t', 111, - ' ', 111, + '\n', 2858, + '\r', 112, + '#', 4780, + ')', 2910, + '.', 3275, + ';', 2862, + '=', 604, + '?', 3181, + 'e', 541, + 'i', 677, + 'o', 546, + '{', 3091, + '|', 2863, + '\t', 114, + ' ', 114, ); END_STATE(); - case 141: + case 144: ADVANCE_MAP( - '\n', 2866, - '\r', 109, - '#', 4789, - ')', 2918, - ';', 2870, - 'e', 3848, - 'o', 3849, - '|', 2871, - '\t', 114, - ' ', 114, + '\n', 2858, + '\r', 112, + '#', 4780, + ')', 2910, + ';', 2862, + 'e', 3839, + 'o', 3840, + '|', 2863, + '\t', 117, + ' ', 117, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); - case 142: + case 145: ADVANCE_MAP( - '\n', 2866, - '\r', 109, - '#', 4789, - ')', 2918, - ';', 2870, + '\n', 2858, + '\r', 112, + '#', 4780, + ')', 2910, + ';', 2862, 'e', 2238, 'o', 2236, - '|', 2871, - '\t', 114, - ' ', 114, + '|', 2863, + '\t', 117, + ' ', 117, ); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); - case 143: + case 146: ADVANCE_MAP( - '\n', 2866, - '\r', 109, - '#', 4789, - ')', 2918, - ';', 2870, - 'e', 3857, - 'o', 3859, - '|', 2871, - '\t', 112, - ' ', 112, + '\n', 2858, + '\r', 112, + '#', 4780, + ')', 2910, + ';', 2862, + 'e', 3848, + 'o', 3850, + '|', 2863, + '\t', 115, + ' ', 115, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); - case 144: + case 147: ADVANCE_MAP( - '\n', 2866, - '\r', 109, - '#', 4789, - ')', 2918, - ';', 2870, + '\n', 2858, + '\r', 112, + '#', 4780, + ')', 2910, + ';', 2862, 'e', 2241, 'o', 2243, - '|', 2871, - '\t', 112, - ' ', 112, + '|', 2863, + '\t', 115, + ' ', 115, ); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); - case 145: + case 148: ADVANCE_MAP( - '\n', 2866, - '\r', 109, - '#', 4796, - '(', 3220, - ')', 2918, - ';', 2870, - 'e', 4012, - 'o', 4013, - '|', 2871, - '\t', 114, - ' ', 114, + '\n', 2858, + '\r', 112, + '#', 4787, + '(', 3212, + ')', 2910, + ';', 2862, + 'e', 4003, + 'o', 4004, + '|', 2863, + '\t', 117, + ' ', 117, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); - case 146: + case 149: ADVANCE_MAP( - '\n', 2866, - '\r', 109, - '#', 4796, - '(', 3220, - ')', 2918, - ';', 2870, - 'e', 4016, - 'o', 4018, - '|', 2871, - '\t', 112, - ' ', 112, + '\n', 2858, + '\r', 112, + '#', 4787, + '(', 3212, + ')', 2910, + ';', 2862, + 'e', 4007, + 'o', 4009, + '|', 2863, + '\t', 115, + ' ', 115, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); - case 147: - if (lookahead == '\n') ADVANCE(2866); - if (lookahead == '\r') ADVANCE(109); - if (lookahead == '#') ADVANCE(4796); - if (lookahead == '(') ADVANCE(3220); - if (lookahead == '{') ADVANCE(3099); + case 150: + if (lookahead == '\n') ADVANCE(2858); + if (lookahead == '\r') ADVANCE(112); + if (lookahead == '#') ADVANCE(4787); + if (lookahead == '(') ADVANCE(3212); + if (lookahead == '{') ADVANCE(3091); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(116); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + lookahead == ' ') ADVANCE(119); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); - case 148: + case 151: ADVANCE_MAP( - '\n', 2866, - '\r', 109, - '#', 4792, - ')', 2918, - ';', 2870, + '\n', 2858, + '\r', 112, + '#', 4783, + ')', 2910, + ';', 2862, 'e', 2158, 'o', 2159, - '|', 2871, - '\t', 114, - ' ', 114, + '|', 2863, + '\t', 117, + ' ', 117, ); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); END_STATE(); - case 149: + case 152: ADVANCE_MAP( - '\n', 2866, - '\r', 109, - '#', 4792, - ')', 2918, - ';', 2870, + '\n', 2858, + '\r', 112, + '#', 4783, + ')', 2910, + ';', 2862, 'e', 2162, 'o', 2163, - '|', 2871, - '\t', 112, - ' ', 112, + '|', 2863, + '\t', 115, + ' ', 115, ); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); END_STATE(); - case 150: - if (lookahead == '\n') ADVANCE(3251); - END_STATE(); - case 151: - if (lookahead == '\n') ADVANCE(3256); - END_STATE(); - case 152: - if (lookahead == '\n') ADVANCE(3273); - END_STATE(); case 153: - if (lookahead == '\n') ADVANCE(3275); + if (lookahead == '\n') ADVANCE(3243); END_STATE(); case 154: - if (lookahead == '\n') ADVANCE(3250); + if (lookahead == '\n') ADVANCE(3248); END_STATE(); case 155: - if (lookahead == '\n') ADVANCE(3274); + if (lookahead == '\n') ADVANCE(3265); END_STATE(); case 156: - if (lookahead == '\n') ADVANCE(3276); + if (lookahead == '\n') ADVANCE(3267); END_STATE(); case 157: - if (lookahead == '\r') ADVANCE(3); - if (lookahead == '+') ADVANCE(189); - if (lookahead == '=') ADVANCE(1101); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3255); + if (lookahead == '\n') ADVANCE(3242); END_STATE(); case 158: - if (lookahead == '\r') ADVANCE(3); - if (lookahead == '+') ADVANCE(190); - if (lookahead == '.') ADVANCE(612); - if (lookahead == '_') ADVANCE(571); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3255); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3353); + if (lookahead == '\n') ADVANCE(3266); END_STATE(); case 159: - if (lookahead == '\r') ADVANCE(3); - if (lookahead == '+') ADVANCE(190); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == ' ') ADVANCE(3255); + if (lookahead == '\n') ADVANCE(3268); END_STATE(); case 160: if (lookahead == '\r') ADVANCE(3); + if (lookahead == '+') ADVANCE(192); + if (lookahead == '=') ADVANCE(1101); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3255); + lookahead == ' ') ADVANCE(3247); END_STATE(); case 161: - if (lookahead == '\r') ADVANCE(4); - if (lookahead == '/') ADVANCE(166); - if (lookahead == '=') ADVANCE(1104); + if (lookahead == '\r') ADVANCE(3); + if (lookahead == '+') ADVANCE(193); + if (lookahead == '.') ADVANCE(614); + if (lookahead == '_') ADVANCE(573); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3252); + lookahead == ' ') ADVANCE(3247); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3345); END_STATE(); case 162: - if (lookahead == '\r') ADVANCE(4); - if (lookahead == '/') ADVANCE(166); + if (lookahead == '\r') ADVANCE(3); + if (lookahead == '+') ADVANCE(193); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3252); + lookahead == ' ') ADVANCE(3247); END_STATE(); case 163: - if (lookahead == '\r') ADVANCE(5); + if (lookahead == '\r') ADVANCE(3); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3272); + lookahead == ' ') ADVANCE(3247); END_STATE(); case 164: - if (lookahead == '\r') ADVANCE(6); + if (lookahead == '\r') ADVANCE(4); + if (lookahead == '/') ADVANCE(169); + if (lookahead == '=') ADVANCE(1104); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3260); + lookahead == ' ') ADVANCE(3244); END_STATE(); case 165: - if (lookahead == '\r') ADVANCE(7); + if (lookahead == '\r') ADVANCE(4); + if (lookahead == '/') ADVANCE(169); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3249); + lookahead == ' ') ADVANCE(3244); END_STATE(); case 166: - if (lookahead == '\r') ADVANCE(8); + if (lookahead == '\r') ADVANCE(5); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3254); + lookahead == ' ') ADVANCE(3264); END_STATE(); case 167: - if (lookahead == '\r') ADVANCE(9); + if (lookahead == '\r') ADVANCE(6); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3271); + lookahead == ' ') ADVANCE(3252); END_STATE(); case 168: - if (lookahead == '\r') ADVANCE(10); + if (lookahead == '\r') ADVANCE(7); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3259); + lookahead == ' ') ADVANCE(3241); END_STATE(); case 169: - if (lookahead == '\r') ADVANCE(11); + if (lookahead == '\r') ADVANCE(8); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3267); + lookahead == ' ') ADVANCE(3246); END_STATE(); case 170: - if (lookahead == '\r') ADVANCE(12); + if (lookahead == '\r') ADVANCE(9); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3266); + lookahead == ' ') ADVANCE(3263); END_STATE(); case 171: - if (lookahead == '\r') ADVANCE(13); + if (lookahead == '\r') ADVANCE(10); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3264); + lookahead == ' ') ADVANCE(3251); END_STATE(); case 172: - if (lookahead == '\r') ADVANCE(14); + if (lookahead == '\r') ADVANCE(11); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3253); + lookahead == ' ') ADVANCE(3259); END_STATE(); case 173: - if (lookahead == '\r') ADVANCE(15); + if (lookahead == '\r') ADVANCE(12); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3265); + lookahead == ' ') ADVANCE(3258); END_STATE(); case 174: - if (lookahead == '\r') ADVANCE(16); + if (lookahead == '\r') ADVANCE(13); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3263); + lookahead == ' ') ADVANCE(3256); END_STATE(); case 175: - if (lookahead == '\r') ADVANCE(17); + if (lookahead == '\r') ADVANCE(14); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3268); + lookahead == ' ') ADVANCE(3245); END_STATE(); case 176: - if (lookahead == '\r') ADVANCE(18); + if (lookahead == '\r') ADVANCE(15); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3261); + lookahead == ' ') ADVANCE(3257); END_STATE(); case 177: - if (lookahead == '\r') ADVANCE(19); + if (lookahead == '\r') ADVANCE(16); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3257); + lookahead == ' ') ADVANCE(3255); END_STATE(); case 178: - if (lookahead == '\r') ADVANCE(20); + if (lookahead == '\r') ADVANCE(17); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3258); + lookahead == ' ') ADVANCE(3260); END_STATE(); case 179: - if (lookahead == '\r') ADVANCE(21); + if (lookahead == '\r') ADVANCE(18); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3262); + lookahead == ' ') ADVANCE(3253); END_STATE(); case 180: - if (lookahead == '\r') ADVANCE(22); + if (lookahead == '\r') ADVANCE(19); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3270); + lookahead == ' ') ADVANCE(3249); END_STATE(); case 181: - if (lookahead == '\r') ADVANCE(23); + if (lookahead == '\r') ADVANCE(20); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3269); + lookahead == ' ') ADVANCE(3250); END_STATE(); case 182: - if (lookahead == '\r') ADVANCE(150); - if (lookahead == '*') ADVANCE(165); - if (lookahead == '=') ADVANCE(1103); + if (lookahead == '\r') ADVANCE(21); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3251); + lookahead == ' ') ADVANCE(3254); END_STATE(); case 183: - if (lookahead == '\r') ADVANCE(150); - if (lookahead == '*') ADVANCE(165); + if (lookahead == '\r') ADVANCE(22); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3251); + lookahead == ' ') ADVANCE(3262); END_STATE(); case 184: - if (lookahead == '\r') ADVANCE(151); - if (lookahead == '.') ADVANCE(612); - if (lookahead == '_') ADVANCE(571); + if (lookahead == '\r') ADVANCE(23); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3256); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3353); + lookahead == ' ') ADVANCE(3261); END_STATE(); case 185: - if (lookahead == '\r') ADVANCE(151); - if (lookahead == '=') ADVANCE(1102); + if (lookahead == '\r') ADVANCE(153); + if (lookahead == '*') ADVANCE(168); + if (lookahead == '=') ADVANCE(1103); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3256); + lookahead == ' ') ADVANCE(3243); END_STATE(); case 186: - if (lookahead == '\r') ADVANCE(151); + if (lookahead == '\r') ADVANCE(153); + if (lookahead == '*') ADVANCE(168); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3256); + lookahead == ' ') ADVANCE(3243); END_STATE(); case 187: - if (lookahead == '\r') ADVANCE(152); - if (lookahead == '=') ADVANCE(191); + if (lookahead == '\r') ADVANCE(154); + if (lookahead == '.') ADVANCE(614); + if (lookahead == '_') ADVANCE(573); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3273); + lookahead == ' ') ADVANCE(3248); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3345); END_STATE(); case 188: - if (lookahead == '\r') ADVANCE(153); - if (lookahead == '=') ADVANCE(192); + if (lookahead == '\r') ADVANCE(154); + if (lookahead == '=') ADVANCE(1102); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3275); + lookahead == ' ') ADVANCE(3248); END_STATE(); case 189: if (lookahead == '\r') ADVANCE(154); - if (lookahead == '=') ADVANCE(1105); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3250); + lookahead == ' ') ADVANCE(3248); END_STATE(); case 190: - if (lookahead == '\r') ADVANCE(154); + if (lookahead == '\r') ADVANCE(155); + if (lookahead == '=') ADVANCE(194); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3250); + lookahead == ' ') ADVANCE(3265); END_STATE(); case 191: - if (lookahead == '\r') ADVANCE(155); + if (lookahead == '\r') ADVANCE(156); + if (lookahead == '=') ADVANCE(195); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3274); + lookahead == ' ') ADVANCE(3267); END_STATE(); case 192: - if (lookahead == '\r') ADVANCE(156); + if (lookahead == '\r') ADVANCE(157); + if (lookahead == '=') ADVANCE(1105); if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') ADVANCE(3276); + lookahead == ' ') ADVANCE(3242); END_STATE(); case 193: + if (lookahead == '\r') ADVANCE(157); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3242); + END_STATE(); + case 194: + if (lookahead == '\r') ADVANCE(158); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3266); + END_STATE(); + case 195: + if (lookahead == '\r') ADVANCE(159); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == ' ') ADVANCE(3268); + END_STATE(); + case 196: ADVANCE_MAP( - '!', 589, - '#', 4789, - '*', 520, - '+', 544, - '-', 2970, - '/', 575, - '<', 592, - '=', 594, - '>', 595, - 'a', 729, - 'b', 704, - 'e', 737, - 'i', 731, - 'm', 754, - 'n', 749, - 'o', 774, - 's', 830, - 'x', 746, - '{', 3099, - '\t', 193, - ' ', 193, + '!', 591, + '#', 4780, + '*', 522, + '+', 542, + '-', 2962, + '/', 577, + '<', 594, + '=', 596, + '>', 597, + 'a', 731, + 'b', 707, + 'e', 739, + 'i', 733, + 'm', 756, + 'n', 752, + 'o', 778, + 's', 834, + 'x', 751, + '{', 3091, + '\t', 196, + ' ', 196, ); END_STATE(); - case 194: + case 197: ADVANCE_MAP( - '!', 589, - '#', 4789, - '*', 520, - '+', 544, - '-', 861, - '/', 575, - '<', 592, - '=', 593, - '>', 595, - 'a', 729, - 'b', 704, - 'e', 737, - 'i', 731, - 'm', 754, - 'n', 749, - 'o', 774, - 's', 830, - 'x', 746, - '|', 2871, - '\t', 194, - ' ', 194, + '!', 591, + '#', 4780, + '*', 522, + '+', 542, + '-', 865, + '/', 577, + '<', 594, + '=', 595, + '>', 597, + 'a', 731, + 'b', 707, + 'e', 739, + 'i', 733, + 'm', 756, + 'n', 752, + 'o', 778, + 's', 834, + 'x', 751, + '|', 2863, + '\t', 197, + ' ', 197, ); END_STATE(); - case 195: + case 198: ADVANCE_MAP( - '!', 589, - '#', 4789, - '*', 520, - '+', 544, - '-', 861, - '/', 575, - '<', 592, - '=', 594, - '>', 595, - 'a', 729, - 'b', 704, - 'e', 737, - 'i', 731, - 'm', 754, - 'n', 749, - 'o', 774, - 's', 830, - 'x', 746, - '{', 3099, - '\t', 195, - ' ', 195, + '!', 591, + '#', 4780, + '*', 522, + '+', 542, + '-', 865, + '/', 577, + '<', 594, + '=', 596, + '>', 597, + 'a', 731, + 'b', 707, + 'e', 739, + 'i', 733, + 'm', 756, + 'n', 752, + 'o', 778, + 's', 834, + 'x', 751, + '{', 3091, + '\t', 198, + ' ', 198, ); END_STATE(); - case 196: + case 199: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 3220, - '+', 566, - '-', 2979, - '.', 567, - '0', 3680, - '=', 3661, - 'N', 3706, - '[', 2915, - '_', 3681, - '`', 624, - 'f', 3688, - 'n', 3695, - 't', 3696, - '{', 3099, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 3212, + '+', 568, + '-', 2971, + '.', 569, + '0', 3671, + '=', 3652, + 'N', 3697, + '[', 2907, + '_', 3672, + '`', 626, + 'f', 3679, + 'n', 3686, + 't', 3687, + '{', 3091, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(200); + lookahead == ' ') SKIP(205); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3711); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3687); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + lookahead == 'i') ADVANCE(3702); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3678); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); - case 197: + case 200: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 2917, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 2909, '+', 1337, - '-', 2978, + '-', 2970, '.', 1338, - '0', 3377, - ';', 3532, + '0', 3369, + ';', 3523, 'I', 1569, 'N', 1566, - '[', 2915, - '^', 3604, + '[', 2907, + '^', 3595, '_', 1359, - '`', 624, + '`', 626, 'a', 1466, 'b', 1500, 'c', 1361, @@ -17944,40 +18378,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1492, 'u', 1530, 'w', 1439, - '{', 3099, - '\t', 197, - ' ', 197, + '{', 3091, + '\t', 200, + ' ', 200, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(581); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(583); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == '?' || lookahead == '@') ADVANCE(1875); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3400); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3392); if (lookahead != 0 && (lookahead < '&' || '.' < lookahead) && (lookahead < '0' || '@' < lookahead) && (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1575); END_STATE(); - case 198: + case 201: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 2917, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 2909, '+', 1337, - '-', 2978, + '-', 2970, '.', 1338, - '0', 3377, + '0', 3369, 'I', 1569, 'N', 1566, - '[', 2915, - '^', 3604, + '[', 2907, + '^', 3595, '_', 1359, - '`', 624, + '`', 626, 'a', 1466, 'b', 1514, 'c', 1362, @@ -17995,16 +18429,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1501, 'u', 1530, 'w', 1438, - '{', 3099, + '{', 3091, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(198); + lookahead == ' ') SKIP(201); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == '?' || lookahead == '@') ADVANCE(1875); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3400); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3392); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '&' || '.' < lookahead) && @@ -18012,710 +18446,828 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1575); END_STATE(); - case 199: + case 202: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 2917, - '+', 566, - '-', 2978, - '.', 567, - '0', 3380, - 'N', 884, - '[', 3451, - '_', 616, - '`', 624, - 'f', 628, - 'n', 748, - 't', 768, - '{', 3099, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 2909, + '+', 1337, + '-', 550, + '.', 1593, + ':', 3511, + '=', 3652, + 'I', 1861, + 'N', 1856, + '[', 3442, + '_', 1596, + '`', 626, + 'a', 1722, + 'b', 1778, + 'c', 1620, + 'd', 1660, + 'e', 1724, + 'f', 1607, + 'h', 1699, + 'i', 1588, + 'l', 1671, + 'm', 1618, + 'n', 1665, + 'o', 1834, + 'r', 1676, + 's', 1748, + 't', 1762, + 'u', 1793, + 'w', 1690, + '\t', 203, + ' ', 203, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(580); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); + END_STATE(); + case 203: + ADVANCE_MAP( + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 2909, + '+', 1337, + '-', 550, + '.', 1593, + ':', 3511, + 'I', 1861, + 'N', 1856, + '_', 1596, + '`', 626, + 'a', 1722, + 'b', 1778, + 'c', 1620, + 'd', 1660, + 'e', 1724, + 'f', 1607, + 'h', 1699, + 'i', 1588, + 'l', 1671, + 'm', 1618, + 'n', 1665, + 'o', 1834, + 'r', 1676, + 's', 1748, + 't', 1762, + 'u', 1793, + 'w', 1690, + '\t', 203, + ' ', 203, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(580); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); + END_STATE(); + case 204: + ADVANCE_MAP( + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 2909, + '+', 568, + '-', 2970, + '.', 569, + '0', 3372, + 'N', 888, + '[', 3442, + '_', 615, + '`', 626, + 'f', 630, + 'n', 749, + 't', 770, + '{', 3091, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(200); + lookahead == ' ') SKIP(205); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(893); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3403); + lookahead == 'i') ADVANCE(897); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3395); END_STATE(); - case 200: + case 205: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 2917, - '+', 566, - '-', 2978, - '.', 567, - '0', 3380, - 'N', 884, - '[', 2915, - '_', 616, - '`', 624, - 'f', 628, - 'n', 748, - 't', 768, - '{', 3099, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 2909, + '+', 568, + '-', 2970, + '.', 569, + '0', 3372, + 'N', 888, + '[', 2907, + '_', 615, + '`', 626, + 'f', 630, + 'n', 749, + 't', 770, + '{', 3091, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(205); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(897); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3395); + END_STATE(); + case 206: + ADVANCE_MAP( + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 2909, + '+', 568, + '-', 2970, + '.', 569, + '0', 2667, + '=', 3652, + 'N', 2792, + '[', 2907, + '_', 2668, + '`', 626, + 'f', 2676, + 'n', 2740, + 't', 2745, + '{', 3091, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(200); + lookahead == ' ') SKIP(205); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(893); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3403); + lookahead == 'i') ADVANCE(2800); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2674); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2823); END_STATE(); - case 201: + case 207: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 2917, - '+', 566, - '-', 2978, - '.', 567, - '0', 2675, - '=', 3661, - 'N', 2800, - '[', 2915, - '_', 2676, - '`', 624, - 'f', 2684, - 'n', 2748, - 't', 2753, - '{', 3099, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 2909, + '+', 568, + '-', 2956, + '.', 569, + '0', 3372, + '=', 1073, + '@', 2943, + 'N', 888, + '[', 2907, + '_', 615, + '`', 626, + 'f', 630, + 'n', 749, + 't', 770, + '{', 3091, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(200); + lookahead == ' ') SKIP(208); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2808); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2682); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2831); + lookahead == 'i') ADVANCE(897); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3395); END_STATE(); - case 202: + case 208: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 2917, - '+', 566, - '-', 2964, - '.', 567, - '0', 3380, - 'N', 884, - '[', 2915, - '_', 616, - '`', 624, - 'f', 628, - 'n', 748, - 't', 768, - '{', 3099, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 2909, + '+', 568, + '-', 2956, + '.', 569, + '0', 3372, + '=', 1073, + 'N', 888, + '[', 2907, + '_', 615, + '`', 626, + 'f', 630, + 'n', 749, + 't', 770, + '{', 3091, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(202); + lookahead == ' ') SKIP(208); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(893); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3403); + lookahead == 'i') ADVANCE(897); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3395); END_STATE(); - case 203: + case 209: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 2917, - '+', 3764, - '-', 565, - '.', 3761, - '0', 3378, - ':', 3520, - 'N', 3823, - '[', 2915, - '_', 3778, - '`', 624, - 'e', 3744, - 'f', 3791, - 'n', 3819, - 'o', 3745, - 't', 3806, - '{', 3099, - '\t', 203, - ' ', 203, - 'I', 3827, - 'i', 3827, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 2909, + '+', 3755, + '-', 567, + '.', 3752, + '0', 3370, + ':', 3511, + 'N', 3814, + '[', 2907, + '_', 3769, + '`', 626, + 'e', 3735, + 'f', 3782, + 'n', 3810, + 'o', 3736, + 't', 3797, + '{', 3091, + '\t', 209, + ' ', 209, + 'I', 3818, + 'i', 3818, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(578); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3401); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(580); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3393); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3846); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3837); END_STATE(); - case 204: + case 210: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 2917, - '+', 3764, - '-', 565, - '.', 3761, - ':', 3520, - 'N', 3823, - '_', 3778, - '`', 624, - 'e', 3744, - 'f', 3791, - 'n', 3819, - 'o', 3745, - 't', 3806, - '\t', 204, - ' ', 204, - 'I', 3827, - 'i', 3827, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 2909, + '+', 3755, + '-', 567, + '.', 3752, + ':', 3511, + 'N', 3814, + '_', 3769, + '`', 626, + 'e', 3735, + 'f', 3782, + 'n', 3810, + 'o', 3736, + 't', 3797, + '\t', 210, + ' ', 210, + 'I', 3818, + 'i', 3818, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(578); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3401); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(580); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3393); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3846); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3837); END_STATE(); - case 205: + case 211: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 2917, - '+', 3764, - '-', 565, - '.', 3761, - 'N', 3823, - '_', 3778, - '`', 624, - 'e', 3744, - 'f', 3791, - 'n', 3819, - 'o', 3745, - 't', 3806, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 2909, + '+', 3755, + '-', 567, + '.', 3752, + 'N', 3814, + '_', 3769, + '`', 626, + 'e', 3735, + 'f', 3782, + 'n', 3810, + 'o', 3736, + 't', 3797, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(205); + lookahead == ' ') SKIP(211); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3827); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3401); + lookahead == 'i') ADVANCE(3818); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3393); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '[' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3846); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3837); END_STATE(); - case 206: + case 212: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 2917, - '+', 4234, - '-', 4233, - '.', 4235, - '0', 3379, - 'N', 4286, - '[', 2915, - ']', 2916, - '_', 4253, - '`', 624, - 'e', 4223, - 'f', 4266, - 'n', 4283, - 'o', 4224, - 't', 4276, - '{', 3099, - '\t', 3519, - ' ', 3519, - 'I', 4292, - 'i', 4292, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 2909, + '+', 4225, + '-', 4224, + '.', 4226, + '0', 3371, + 'N', 4277, + '[', 2907, + ']', 2908, + '_', 4244, + '`', 626, + 'e', 4214, + 'f', 4257, + 'n', 4274, + 'o', 4215, + 't', 4267, + '{', 3091, + '\t', 3510, + ' ', 3510, + 'I', 4283, + 'i', 4283, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3515); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3402); + lookahead == ',') ADVANCE(3506); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3394); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); END_STATE(); - case 207: + case 213: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 2917, - '+', 4516, - '-', 4515, - '.', 4514, - '0', 3381, - 'N', 4547, - '[', 2915, - '_', 4522, - '`', 624, - 'e', 4509, - 'f', 4527, - 'n', 4544, - 'o', 4510, - 't', 4537, - '{', 3099, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 2909, + '+', 4507, + '-', 4506, + '.', 4505, + '0', 3373, + 'N', 4538, + '[', 2907, + '_', 4513, + '`', 626, + 'e', 4500, + 'f', 4518, + 'n', 4535, + 'o', 4501, + 't', 4528, + '{', 3091, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(207); + lookahead == ' ') SKIP(213); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4553); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3404); + lookahead == 'i') ADVANCE(4544); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3396); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '+' || '.' < lookahead) && (lookahead < '0' || ';' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4567); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4558); END_STATE(); - case 208: + case 214: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 2917, - '+', 3881, - '-', 2985, - '.', 3878, - '0', 3331, - 'E', 3895, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'N', 3972, - 'P', 3898, - 'T', 3898, - '[', 2915, - '_', 3900, - '`', 624, - 'd', 3915, - 'e', 3894, - 'f', 3914, - 'g', 3897, - 'h', 3941, - 'k', 3897, - 'm', 3899, - 'n', 3936, - 'p', 3897, - 's', 3921, - 't', 3896, - 'u', 3951, - 'w', 3927, - '{', 3099, - 0xb5, 3951, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 2909, + '+', 3872, + '-', 2977, + '.', 3869, + '0', 3323, + 'E', 3886, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'N', 3963, + 'P', 3889, + 'T', 3889, + '[', 2907, + '_', 3891, + '`', 626, + 'd', 3906, + 'e', 3885, + 'f', 3905, + 'g', 3888, + 'h', 3932, + 'k', 3888, + 'm', 3890, + 'n', 3927, + 'p', 3888, + 's', 3912, + 't', 3887, + 'u', 3942, + 'w', 3918, + '{', 3091, + 0xb5, 3942, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(200); + lookahead == ' ') SKIP(205); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); + lookahead == 'b') ADVANCE(3420); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3979); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3346); + lookahead == 'i') ADVANCE(3970); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3338); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4002); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3993); END_STATE(); - case 209: + case 215: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 2917, - '+', 3881, - '-', 2985, - '.', 3878, - '0', 3382, - 'E', 3895, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'N', 3972, - 'P', 3898, - 'T', 3898, - '[', 2915, - '_', 3905, - '`', 624, - 'd', 3915, - 'e', 3894, - 'f', 3914, - 'g', 3897, - 'h', 3941, - 'k', 3897, - 'm', 3899, - 'n', 3936, - 'p', 3897, - 's', 3921, - 't', 3896, - 'u', 3951, - 'w', 3927, - '{', 3099, - 0xb5, 3951, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 2909, + '+', 3872, + '-', 2977, + '.', 3869, + '0', 3374, + 'E', 3886, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'N', 3963, + 'P', 3889, + 'T', 3889, + '[', 2907, + '_', 3896, + '`', 626, + 'd', 3906, + 'e', 3885, + 'f', 3905, + 'g', 3888, + 'h', 3932, + 'k', 3888, + 'm', 3890, + 'n', 3927, + 'p', 3888, + 's', 3912, + 't', 3887, + 'u', 3942, + 'w', 3918, + '{', 3091, + 0xb5, 3942, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(200); + lookahead == ' ') SKIP(205); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); + lookahead == 'b') ADVANCE(3420); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3979); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3405); + lookahead == 'i') ADVANCE(3970); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3397); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4002); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3993); END_STATE(); - case 210: + case 216: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 2917, - '+', 3881, - '-', 2985, - '.', 3878, - '0', 3382, - 'E', 3898, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'N', 3972, - 'P', 3898, - 'T', 3898, - '[', 2915, - '_', 3905, - '`', 624, - 'd', 3915, - 'e', 3897, - 'f', 3914, - 'g', 3897, - 'h', 3941, - 'k', 3897, - 'm', 3899, - 'n', 3936, - 'p', 3897, - 's', 3921, - 't', 3896, - 'u', 3951, - 'w', 3927, - '{', 3099, - 0xb5, 3951, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 2909, + '+', 3872, + '-', 2977, + '.', 3869, + '0', 3374, + 'E', 3889, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'N', 3963, + 'P', 3889, + 'T', 3889, + '[', 2907, + '_', 3896, + '`', 626, + 'd', 3906, + 'e', 3888, + 'f', 3905, + 'g', 3888, + 'h', 3932, + 'k', 3888, + 'm', 3890, + 'n', 3927, + 'p', 3888, + 's', 3912, + 't', 3887, + 'u', 3942, + 'w', 3918, + '{', 3091, + 0xb5, 3942, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(200); + lookahead == ' ') SKIP(205); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); + lookahead == 'b') ADVANCE(3420); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3979); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3405); + lookahead == 'i') ADVANCE(3970); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3397); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4002); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3993); END_STATE(); - case 211: + case 217: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 2917, - '+', 3881, - '-', 2985, - '.', 3877, - '0', 3382, - 'N', 3972, - '[', 2915, - '_', 3905, - '`', 624, - 'f', 3914, - 'n', 3937, - 't', 3943, - '{', 3099, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 2909, + '+', 3872, + '-', 2977, + '.', 3868, + '0', 3374, + 'N', 3963, + '[', 2907, + '_', 3896, + '`', 626, + 'f', 3905, + 'n', 3928, + 't', 3934, + '{', 3091, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(200); + lookahead == ' ') SKIP(205); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3979); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3405); + lookahead == 'i') ADVANCE(3970); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3397); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4002); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3993); END_STATE(); - case 212: + case 218: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 2917, - '+', 3881, - '-', 2985, - '.', 3301, - '0', 3382, - 'E', 3895, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'N', 3972, - 'P', 3898, - 'T', 3898, - '[', 2915, - '_', 3905, - '`', 624, - 'd', 3915, - 'e', 3894, - 'f', 3914, - 'g', 3897, - 'h', 3941, - 'k', 3897, - 'm', 3899, - 'n', 3936, - 'p', 3897, - 's', 3921, - 't', 3896, - 'u', 3951, - 'w', 3927, - '{', 3099, - 0xb5, 3951, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 2909, + '+', 3872, + '-', 2977, + '.', 3293, + '0', 3374, + 'E', 3886, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'N', 3963, + 'P', 3889, + 'T', 3889, + '[', 2907, + '_', 3896, + '`', 626, + 'd', 3906, + 'e', 3885, + 'f', 3905, + 'g', 3888, + 'h', 3932, + 'k', 3888, + 'm', 3890, + 'n', 3927, + 'p', 3888, + 's', 3912, + 't', 3887, + 'u', 3942, + 'w', 3918, + '{', 3091, + 0xb5, 3942, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(200); + lookahead == ' ') SKIP(205); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); + lookahead == 'b') ADVANCE(3420); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3979); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3405); + lookahead == 'i') ADVANCE(3970); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3397); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4002); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3993); END_STATE(); - case 213: + case 219: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 3220, - '+', 4234, - ',', 3515, - '-', 4233, - '.', 4230, - '0', 3379, - 'N', 4286, - '[', 2915, - ']', 2916, - '_', 4253, - '`', 624, - 'e', 4223, - 'f', 4266, - 'n', 4283, - 'o', 4224, - 't', 4276, - '{', 3099, - '\t', 3516, - ' ', 3516, - 'I', 4292, - 'i', 4292, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 3212, + '+', 4225, + ',', 3506, + '-', 4224, + '.', 4221, + '0', 3371, + 'N', 4277, + '[', 2907, + ']', 2908, + '_', 4244, + '`', 626, + 'e', 4214, + 'f', 4257, + 'n', 4274, + 'o', 4215, + 't', 4267, + '{', 3091, + '\t', 3507, + ' ', 3507, + 'I', 4283, + 'i', 4283, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3402); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3394); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); END_STATE(); - case 214: + case 220: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 3220, - '+', 4331, - ',', 2919, - '-', 4330, - '.', 4323, - '0', 3333, - 'N', 4391, - '[', 2915, - ']', 2916, - '_', 4348, - '`', 624, - 'e', 4316, - 'f', 4361, - 'n', 4387, - 'o', 4317, - 't', 4378, - '{', 3099, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 3212, + '+', 4322, + ',', 2911, + '-', 4321, + '.', 4314, + '0', 3325, + 'N', 4382, + '[', 2907, + ']', 2908, + '_', 4339, + '`', 626, + 'e', 4307, + 'f', 4352, + 'n', 4378, + 'o', 4308, + 't', 4369, + '{', 3091, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(335); + lookahead == ' ') SKIP(341); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4398); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3348); + lookahead == 'i') ADVANCE(4389); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3340); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); END_STATE(); - case 215: + case 221: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 3220, - '+', 4331, - ',', 2919, - '-', 4330, - '.', 3289, - '0', 3333, - 'N', 4391, - '[', 2915, - ']', 2916, - '_', 4348, - '`', 624, - 'e', 4316, - 'f', 4361, - 'n', 4387, - 'o', 4317, - 't', 4378, - '{', 3099, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 3212, + '+', 4322, + ',', 2911, + '-', 4321, + '.', 3280, + '0', 3325, + 'N', 4382, + '[', 2907, + ']', 2908, + '_', 4339, + '`', 626, + 'e', 4307, + 'f', 4352, + 'n', 4378, + 'o', 4308, + 't', 4369, + '{', 3091, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(335); + lookahead == ' ') SKIP(341); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4398); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3348); + lookahead == 'i') ADVANCE(4389); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3340); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); END_STATE(); - case 216: + case 222: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 3220, - '+', 4331, - ',', 3515, - '-', 4330, - '.', 4323, - '0', 3333, - 'N', 4391, - '[', 2915, - ']', 2916, - '_', 4348, - '`', 624, - 'e', 4316, - 'f', 4361, - 'n', 4387, - 'o', 4317, - 't', 4378, - '{', 3099, - '\t', 3516, - ' ', 3516, - 'I', 4398, - 'i', 4398, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 3212, + '+', 4322, + ',', 3506, + '-', 4321, + '.', 4314, + '0', 3325, + 'N', 4382, + '[', 2907, + ']', 2908, + '_', 4339, + '`', 626, + 'e', 4307, + 'f', 4352, + 'n', 4378, + 'o', 4308, + 't', 4369, + '{', 3091, + '\t', 3507, + ' ', 3507, + 'I', 4389, + 'i', 4389, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3348); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3340); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); END_STATE(); - case 217: + case 223: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 3220, - '+', 4331, - ',', 3515, - '-', 4330, - '.', 3289, - '0', 3333, - 'N', 4391, - '[', 2915, - ']', 2916, - '_', 4348, - '`', 624, - 'e', 4316, - 'f', 4361, - 'n', 4387, - 'o', 4317, - 't', 4378, - '{', 3099, - '\t', 3516, - ' ', 3516, - 'I', 4398, - 'i', 4398, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 3212, + '+', 4322, + ',', 3506, + '-', 4321, + '.', 3280, + '0', 3325, + 'N', 4382, + '[', 2907, + ']', 2908, + '_', 4339, + '`', 626, + 'e', 4307, + 'f', 4352, + 'n', 4378, + 'o', 4308, + 't', 4369, + '{', 3091, + '\t', 3507, + ' ', 3507, + 'I', 4389, + 'i', 4389, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3348); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3340); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); END_STATE(); - case 218: + case 224: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 3220, - '+', 3528, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 3212, + '+', 3519, ',', 1875, - '-', 2980, + '-', 2972, '.', 1132, - '0', 3336, + '0', 3328, 'E', 1158, 'I', 1318, 'N', 1313, '_', 1156, - '`', 624, + '`', 626, 'a', 1232, 'b', 1267, 'c', 1168, @@ -18733,13 +19285,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1261, 'u', 1278, 'w', 1215, - '}', 3100, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(282); + lookahead == ' ') SKIP(288); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4600); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3337); + lookahead == '^') ADVANCE(4591); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3329); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -18748,23 +19300,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); END_STATE(); - case 219: + case 225: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 3220, - '+', 3528, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 3212, + '+', 3519, ',', 1875, - '-', 2980, + '-', 2972, '.', 1132, - '0', 3385, + '0', 3377, 'E', 1158, 'I', 1318, 'N', 1313, '_', 1151, - '`', 624, + '`', 626, 'a', 1232, 'b', 1267, 'c', 1168, @@ -18782,13 +19334,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1261, 'u', 1278, 'w', 1215, - '}', 3100, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(282); + lookahead == ' ') SKIP(288); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4600); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); + lookahead == '^') ADVANCE(4591); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -18797,22 +19349,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); END_STATE(); - case 220: + case 226: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 3220, - '+', 3528, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 3212, + '+', 3519, ',', 1875, - '-', 2980, + '-', 2972, '.', 1132, - '0', 3385, + '0', 3377, 'I', 1318, 'N', 1313, '_', 1151, - '`', 624, + '`', 626, 'a', 1232, 'b', 1267, 'c', 1168, @@ -18830,13 +19382,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1261, 'u', 1278, 'w', 1215, - '}', 3100, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(282); + lookahead == ' ') SKIP(288); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4600); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); + lookahead == '^') ADVANCE(4591); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -18845,19 +19397,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); END_STATE(); - case 221: + case 227: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 3220, - '+', 3528, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 3212, + '+', 3519, ',', 1875, - '-', 2980, - '.', 3307, - '0', 3385, - 'B', 3429, + '-', 2972, + '.', 3299, + '0', 3377, + 'B', 3420, 'E', 1140, 'G', 1145, 'I', 1318, @@ -18867,9 +19419,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'P', 1145, 'T', 1145, '_', 1151, - '`', 624, + '`', 626, 'a', 1232, - 'b', 3430, + 'b', 3421, 'c', 1168, 'd', 1166, 'e', 1139, @@ -18888,14 +19440,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1143, 'u', 1277, 'w', 1214, - '}', 3100, + '}', 3092, 0xb5, 1276, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(282); + lookahead == ' ') SKIP(288); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4600); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); + lookahead == '^') ADVANCE(4591); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -18904,72 +19456,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'i' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); END_STATE(); - case 222: - ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 3220, - '+', 3528, - ',', 1875, - '-', 2980, - '.', 3307, - '0', 3385, - 'E', 1158, - 'I', 1318, - 'N', 1313, - '_', 1151, - '`', 624, - 'a', 1232, - 'b', 1267, - 'c', 1168, - 'd', 1196, - 'e', 1157, - 'f', 1165, - 'h', 1219, - 'i', 1146, - 'l', 1200, - 'm', 1161, - 'n', 1194, - 'o', 1305, - 'r', 1184, - 's', 1248, - 't', 1261, - 'u', 1278, - 'w', 1215, - '}', 3100, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(282); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4600); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); - END_STATE(); - case 223: + case 228: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 3220, - '+', 3528, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 3212, + '+', 3519, ',', 1875, - '-', 2980, - '.', 3296, - '0', 3385, + '-', 2972, + '.', 3299, + '0', 3377, 'E', 1158, 'I', 1318, 'N', 1313, '_', 1151, - '`', 624, + '`', 626, 'a', 1232, 'b', 1267, 'c', 1168, @@ -18987,13 +19490,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1261, 'u', 1278, 'w', 1215, - '}', 3100, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(282); + lookahead == ' ') SKIP(288); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4600); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); + lookahead == '^') ADVANCE(4591); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -19002,19 +19505,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); END_STATE(); - case 224: + case 229: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 3220, - '+', 3528, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 3212, + '+', 3519, ',', 1875, - '-', 2980, + '-', 2972, '.', 1134, - '0', 3336, - 'B', 3429, + '0', 3328, + 'B', 3420, 'E', 1140, 'G', 1145, 'I', 1318, @@ -19024,9 +19527,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'P', 1145, 'T', 1145, '_', 1156, - '`', 624, + '`', 626, 'a', 1232, - 'b', 3430, + 'b', 3421, 'c', 1168, 'd', 1166, 'e', 1139, @@ -19045,14 +19548,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1143, 'u', 1277, 'w', 1214, - '}', 3100, + '}', 3092, 0xb5, 1276, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(282); + lookahead == ' ') SKIP(288); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4600); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3337); + lookahead == '^') ADVANCE(4591); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3329); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -19061,23 +19564,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'i' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); END_STATE(); - case 225: + case 230: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 3220, - '+', 3528, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 3212, + '+', 3519, ',', 1875, - '-', 2980, + '-', 2972, '.', 1134, - '0', 3336, + '0', 3328, 'E', 1158, 'I', 1318, 'N', 1313, '_', 1156, - '`', 624, + '`', 626, 'a', 1232, 'b', 1267, 'c', 1168, @@ -19095,13 +19598,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1261, 'u', 1278, 'w', 1215, - '}', 3100, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(282); + lookahead == ' ') SKIP(288); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4600); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3337); + lookahead == '^') ADVANCE(4591); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3329); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -19110,19 +19613,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); END_STATE(); - case 226: + case 231: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 3220, - '+', 3528, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 3212, + '+', 3519, ',', 1875, - '-', 2980, + '-', 2972, '.', 1134, - '0', 3385, - 'B', 3429, + '0', 3377, + 'B', 3420, 'E', 1140, 'G', 1145, 'I', 1318, @@ -19132,9 +19635,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'P', 1145, 'T', 1145, '_', 1151, - '`', 624, + '`', 626, 'a', 1232, - 'b', 3430, + 'b', 3421, 'c', 1168, 'd', 1166, 'e', 1139, @@ -19153,14 +19656,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1143, 'u', 1277, 'w', 1214, - '}', 3100, + '}', 3092, 0xb5, 1276, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(282); + lookahead == ' ') SKIP(288); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4600); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); + lookahead == '^') ADVANCE(4591); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -19169,19 +19672,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'i' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); END_STATE(); - case 227: + case 232: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 3220, - '+', 3528, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 3212, + '+', 3519, ',', 1875, - '-', 2980, + '-', 2972, '.', 1134, - '0', 3385, - 'B', 3429, + '0', 3377, + 'B', 3420, 'E', 1145, 'G', 1145, 'I', 1318, @@ -19191,9 +19694,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'P', 1145, 'T', 1145, '_', 1151, - '`', 624, + '`', 626, 'a', 1232, - 'b', 3430, + 'b', 3421, 'c', 1168, 'd', 1166, 'e', 1142, @@ -19212,14 +19715,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1143, 'u', 1277, 'w', 1214, - '}', 3100, + '}', 3092, 0xb5, 1276, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(282); + lookahead == ' ') SKIP(288); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4600); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); + lookahead == '^') ADVANCE(4591); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -19228,23 +19731,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'i' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); END_STATE(); - case 228: + case 233: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 3220, - '+', 3528, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 3212, + '+', 3519, ',', 1875, - '-', 2980, + '-', 2972, '.', 1134, - '0', 3385, + '0', 3377, 'E', 1158, 'I', 1318, 'N', 1313, '_', 1151, - '`', 624, + '`', 626, 'a', 1232, 'b', 1267, 'c', 1168, @@ -19262,13 +19765,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1261, 'u', 1278, 'w', 1215, - '}', 3100, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(282); + lookahead == ' ') SKIP(288); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4600); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); + lookahead == '^') ADVANCE(4591); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -19277,22 +19780,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); END_STATE(); - case 229: + case 234: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 3220, - '+', 3528, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 3212, + '+', 3519, ',', 1875, - '-', 2980, + '-', 2972, '.', 1134, - '0', 3385, + '0', 3377, 'I', 1318, 'N', 1313, '_', 1151, - '`', 624, + '`', 626, 'a', 1232, 'b', 1267, 'c', 1168, @@ -19310,13 +19813,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1261, 'u', 1278, 'w', 1215, - '}', 3100, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(282); + lookahead == ' ') SKIP(288); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4600); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); + lookahead == '^') ADVANCE(4591); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -19325,23 +19828,72 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); END_STATE(); - case 230: + case 235: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 3220, - '+', 3528, - ',', 3515, - '-', 2980, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 3212, + '+', 3519, + ',', 1875, + '-', 2972, + '.', 3288, + '0', 3377, + 'E', 1158, + 'I', 1318, + 'N', 1313, + '_', 1151, + '`', 626, + 'a', 1232, + 'b', 1267, + 'c', 1168, + 'd', 1196, + 'e', 1157, + 'f', 1165, + 'h', 1219, + 'i', 1146, + 'l', 1200, + 'm', 1161, + 'n', 1194, + 'o', 1305, + 'r', 1184, + 's', 1248, + 't', 1261, + 'u', 1278, + 'w', 1215, + '}', 3092, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(288); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(4591); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); + END_STATE(); + case 236: + ADVANCE_MAP( + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 3212, + '+', 3519, + ',', 3506, + '-', 2972, '.', 1132, - '0', 3336, + '0', 3328, 'E', 1158, 'I', 1318, 'N', 1313, '_', 1156, - '`', 624, + '`', 626, 'a', 1232, 'b', 1267, 'c', 1168, @@ -19359,14 +19911,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1261, 'u', 1278, 'w', 1215, - '}', 3100, - '\t', 3516, - ' ', 3516, + '}', 3092, + '\t', 3507, + ' ', 3507, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4600); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3337); + lookahead == '^') ADVANCE(4591); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3329); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && @@ -19374,23 +19926,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); END_STATE(); - case 231: + case 237: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 3220, - '+', 3528, - ',', 3515, - '-', 2980, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 3212, + '+', 3519, + ',', 3506, + '-', 2972, '.', 1132, - '0', 3385, + '0', 3377, 'E', 1158, 'I', 1318, 'N', 1313, '_', 1151, - '`', 624, + '`', 626, 'a', 1232, 'b', 1267, 'c', 1168, @@ -19408,14 +19960,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1261, 'u', 1278, 'w', 1215, - '}', 3100, - '\t', 3516, - ' ', 3516, + '}', 3092, + '\t', 3507, + ' ', 3507, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4600); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); + lookahead == '^') ADVANCE(4591); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && @@ -19423,22 +19975,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); END_STATE(); - case 232: + case 238: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 3220, - '+', 3528, - ',', 3515, - '-', 2980, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 3212, + '+', 3519, + ',', 3506, + '-', 2972, '.', 1132, - '0', 3385, + '0', 3377, 'I', 1318, 'N', 1313, '_', 1151, - '`', 624, + '`', 626, 'a', 1232, 'b', 1267, 'c', 1168, @@ -19456,14 +20008,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1261, 'u', 1278, 'w', 1215, - '}', 3100, - '\t', 3516, - ' ', 3516, + '}', 3092, + '\t', 3507, + ' ', 3507, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4600); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); + lookahead == '^') ADVANCE(4591); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && @@ -19471,19 +20023,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); END_STATE(); - case 233: + case 239: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 3220, - '+', 3528, - ',', 3515, - '-', 2980, - '.', 3307, - '0', 3385, - 'B', 3429, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 3212, + '+', 3519, + ',', 3506, + '-', 2972, + '.', 3299, + '0', 3377, + 'B', 3420, 'E', 1140, 'G', 1145, 'I', 1318, @@ -19493,9 +20045,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'P', 1145, 'T', 1145, '_', 1151, - '`', 624, + '`', 626, 'a', 1232, - 'b', 3430, + 'b', 3421, 'c', 1168, 'd', 1166, 'e', 1139, @@ -19514,15 +20066,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1143, 'u', 1277, 'w', 1214, - '}', 3100, + '}', 3092, 0xb5, 1276, - '\t', 3516, - ' ', 3516, + '\t', 3507, + ' ', 3507, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4600); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); + lookahead == '^') ADVANCE(4591); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && @@ -19530,72 +20082,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'i' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); END_STATE(); - case 234: - ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 3220, - '+', 3528, - ',', 3515, - '-', 2980, - '.', 3307, - '0', 3385, - 'E', 1158, - 'I', 1318, - 'N', 1313, - '_', 1151, - '`', 624, - 'a', 1232, - 'b', 1267, - 'c', 1168, - 'd', 1196, - 'e', 1157, - 'f', 1165, - 'h', 1219, - 'i', 1146, - 'l', 1200, - 'm', 1161, - 'n', 1194, - 'o', 1305, - 'r', 1184, - 's', 1248, - 't', 1261, - 'u', 1278, - 'w', 1215, - '}', 3100, - '\t', 3516, - ' ', 3516, - ); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4600); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); - END_STATE(); - case 235: + case 240: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 3220, - '+', 3528, - ',', 3515, - '-', 2980, - '.', 3296, - '0', 3385, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 3212, + '+', 3519, + ',', 3506, + '-', 2972, + '.', 3299, + '0', 3377, 'E', 1158, 'I', 1318, 'N', 1313, '_', 1151, - '`', 624, + '`', 626, 'a', 1232, 'b', 1267, 'c', 1168, @@ -19613,14 +20116,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1261, 'u', 1278, 'w', 1215, - '}', 3100, - '\t', 3516, - ' ', 3516, + '}', 3092, + '\t', 3507, + ' ', 3507, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4600); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); + lookahead == '^') ADVANCE(4591); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && @@ -19628,19 +20131,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); END_STATE(); - case 236: + case 241: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 3220, - '+', 3528, - ',', 3515, - '-', 2980, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 3212, + '+', 3519, + ',', 3506, + '-', 2972, '.', 1134, - '0', 3336, - 'B', 3429, + '0', 3328, + 'B', 3420, 'E', 1140, 'G', 1145, 'I', 1318, @@ -19649,10 +20152,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'N', 1313, 'P', 1145, 'T', 1145, + '[', 3442, + ']', 2908, '_', 1156, - '`', 624, + '`', 626, 'a', 1232, - 'b', 3430, + 'b', 3421, 'c', 1168, 'd', 1166, 'e', 1139, @@ -19671,39 +20176,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1143, 'u', 1277, 'w', 1214, - '}', 3100, + '}', 3092, 0xb5, 1276, - '\t', 3516, - ' ', 3516, + '\t', 3507, + ' ', 3507, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4600); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3337); + lookahead == '^') ADVANCE(4591); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3329); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'i' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); END_STATE(); - case 237: + case 242: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 3220, - '+', 3528, - ',', 3515, - '-', 2980, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 3212, + '+', 3519, + ',', 3506, + '-', 2972, '.', 1134, - '0', 3336, + '0', 3328, 'E', 1158, 'I', 1318, 'N', 1313, '_', 1156, - '`', 624, + '`', 626, 'a', 1232, 'b', 1267, 'c', 1168, @@ -19721,14 +20224,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1261, 'u', 1278, 'w', 1215, - '}', 3100, - '\t', 3516, - ' ', 3516, + '}', 3092, + '\t', 3507, + ' ', 3507, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4600); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3337); + lookahead == '^') ADVANCE(4591); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3329); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && @@ -19736,19 +20239,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); END_STATE(); - case 238: + case 243: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 3220, - '+', 3528, - ',', 3515, - '-', 2980, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 3212, + '+', 3519, + ',', 3506, + '-', 2972, '.', 1134, - '0', 3385, - 'B', 3429, + '0', 3377, + 'B', 3420, 'E', 1140, 'G', 1145, 'I', 1318, @@ -19758,9 +20261,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'P', 1145, 'T', 1145, '_', 1151, - '`', 624, + '`', 626, 'a', 1232, - 'b', 3430, + 'b', 3421, 'c', 1168, 'd', 1166, 'e', 1139, @@ -19779,15 +20282,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1143, 'u', 1277, 'w', 1214, - '}', 3100, + '}', 3092, 0xb5, 1276, - '\t', 3516, - ' ', 3516, + '\t', 3507, + ' ', 3507, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4600); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); + lookahead == '^') ADVANCE(4591); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && @@ -19795,19 +20298,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'i' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); END_STATE(); - case 239: + case 244: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 3220, - '+', 3528, - ',', 3515, - '-', 2980, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 3212, + '+', 3519, + ',', 3506, + '-', 2972, '.', 1134, - '0', 3385, - 'B', 3429, + '0', 3377, + 'B', 3420, 'E', 1145, 'G', 1145, 'I', 1318, @@ -19817,9 +20320,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'P', 1145, 'T', 1145, '_', 1151, - '`', 624, + '`', 626, 'a', 1232, - 'b', 3430, + 'b', 3421, 'c', 1168, 'd', 1166, 'e', 1142, @@ -19838,15 +20341,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1143, 'u', 1277, 'w', 1214, - '}', 3100, + '}', 3092, 0xb5, 1276, - '\t', 3516, - ' ', 3516, + '\t', 3507, + ' ', 3507, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4600); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); + lookahead == '^') ADVANCE(4591); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && @@ -19854,23 +20357,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'i' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); END_STATE(); - case 240: + case 245: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 3220, - '+', 3528, - ',', 3515, - '-', 2980, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 3212, + '+', 3519, + ',', 3506, + '-', 2972, '.', 1134, - '0', 3385, + '0', 3377, 'E', 1158, 'I', 1318, 'N', 1313, '_', 1151, - '`', 624, + '`', 626, 'a', 1232, 'b', 1267, 'c', 1168, @@ -19888,14 +20391,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1261, 'u', 1278, 'w', 1215, - '}', 3100, - '\t', 3516, - ' ', 3516, + '}', 3092, + '\t', 3507, + ' ', 3507, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4600); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); + lookahead == '^') ADVANCE(4591); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && @@ -19903,22 +20406,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); END_STATE(); - case 241: + case 246: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 3220, - '+', 3528, - ',', 3515, - '-', 2980, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 3212, + '+', 3519, + ',', 3506, + '-', 2972, '.', 1134, - '0', 3385, + '0', 3377, 'I', 1318, 'N', 1313, '_', 1151, - '`', 624, + '`', 626, 'a', 1232, 'b', 1267, 'c', 1168, @@ -19936,14 +20439,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1261, 'u', 1278, 'w', 1215, - '}', 3100, - '\t', 3516, - ' ', 3516, + '}', 3092, + '\t', 3507, + ' ', 3507, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4600); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); + lookahead == '^') ADVANCE(4591); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && @@ -19951,520 +20454,569 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); END_STATE(); - case 242: + case 247: + ADVANCE_MAP( + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 3212, + '+', 3519, + ',', 3506, + '-', 2972, + '.', 3288, + '0', 3377, + 'E', 1158, + 'I', 1318, + 'N', 1313, + '_', 1151, + '`', 626, + 'a', 1232, + 'b', 1267, + 'c', 1168, + 'd', 1196, + 'e', 1157, + 'f', 1165, + 'h', 1219, + 'i', 1146, + 'l', 1200, + 'm', 1161, + 'n', 1194, + 'o', 1305, + 'r', 1184, + 's', 1248, + 't', 1261, + 'u', 1278, + 'w', 1215, + '}', 3092, + '\t', 3507, + ' ', 3507, + ); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(4591); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); + END_STATE(); + case 248: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 3220, - '+', 4334, - ',', 3515, - '-', 4333, - '.', 4325, - '0', 3333, - 'E', 4343, - 'G', 4346, - 'K', 4346, - 'M', 4346, - 'N', 4391, - 'P', 4346, - 'T', 4346, - '[', 2915, - ']', 2916, - '_', 4348, - '`', 624, - 'd', 4362, - 'e', 4318, - 'f', 4361, - 'g', 4345, - 'h', 4377, - 'k', 4345, - 'm', 4347, - 'n', 4382, - 'o', 4317, - 'p', 4345, - 's', 4367, - 't', 4344, - 'u', 4383, - 'w', 4370, - '{', 3099, - 0xb5, 4383, - '\t', 3516, - ' ', 3516, - 'B', 3429, - 'b', 3429, - 'I', 4398, - 'i', 4398, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 3212, + '+', 4325, + ',', 3506, + '-', 4324, + '.', 4316, + '0', 3325, + 'E', 4334, + 'G', 4337, + 'K', 4337, + 'M', 4337, + 'N', 4382, + 'P', 4337, + 'T', 4337, + '[', 2907, + ']', 2908, + '_', 4339, + '`', 626, + 'd', 4353, + 'e', 4309, + 'f', 4352, + 'g', 4336, + 'h', 4368, + 'k', 4336, + 'm', 4338, + 'n', 4373, + 'o', 4308, + 'p', 4336, + 's', 4358, + 't', 4335, + 'u', 4374, + 'w', 4361, + '{', 3091, + 0xb5, 4374, + '\t', 3507, + ' ', 3507, + 'B', 3420, + 'b', 3420, + 'I', 4389, + 'i', 4389, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3348); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3340); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); END_STATE(); - case 243: + case 249: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 3220, - '+', 4334, - ',', 3515, - '-', 4333, - '.', 4325, - '0', 3333, - 'E', 4357, - 'N', 4391, - '[', 2915, - ']', 2916, - '_', 4348, - '`', 624, - 'e', 4319, - 'f', 4361, - 'n', 4387, - 'o', 4317, - 't', 4378, - '{', 3099, - '\t', 3516, - ' ', 3516, - 'I', 4398, - 'i', 4398, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 3212, + '+', 4325, + ',', 3506, + '-', 4324, + '.', 4316, + '0', 3325, + 'E', 4348, + 'N', 4382, + '[', 2907, + ']', 2908, + '_', 4339, + '`', 626, + 'e', 4310, + 'f', 4352, + 'n', 4378, + 'o', 4308, + 't', 4369, + '{', 3091, + '\t', 3507, + ' ', 3507, + 'I', 4389, + 'i', 4389, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3348); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3340); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); END_STATE(); - case 244: + case 250: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 3220, - '+', 4334, - ',', 3515, - '-', 4333, - '.', 4325, - '0', 3383, - 'E', 4343, - 'G', 4346, - 'K', 4346, - 'M', 4346, - 'N', 4391, - 'P', 4346, - 'T', 4346, - '[', 2915, - ']', 2916, - '_', 4353, - '`', 624, - 'd', 4362, - 'e', 4318, - 'f', 4361, - 'g', 4345, - 'h', 4377, - 'k', 4345, - 'm', 4347, - 'n', 4382, - 'o', 4317, - 'p', 4345, - 's', 4367, - 't', 4344, - 'u', 4383, - 'w', 4370, - '{', 3099, - 0xb5, 4383, - '\t', 3516, - ' ', 3516, - 'B', 3429, - 'b', 3429, - 'I', 4398, - 'i', 4398, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 3212, + '+', 4325, + ',', 3506, + '-', 4324, + '.', 4316, + '0', 3375, + 'E', 4334, + 'G', 4337, + 'K', 4337, + 'M', 4337, + 'N', 4382, + 'P', 4337, + 'T', 4337, + '[', 2907, + ']', 2908, + '_', 4344, + '`', 626, + 'd', 4353, + 'e', 4309, + 'f', 4352, + 'g', 4336, + 'h', 4368, + 'k', 4336, + 'm', 4338, + 'n', 4373, + 'o', 4308, + 'p', 4336, + 's', 4358, + 't', 4335, + 'u', 4374, + 'w', 4361, + '{', 3091, + 0xb5, 4374, + '\t', 3507, + ' ', 3507, + 'B', 3420, + 'b', 3420, + 'I', 4389, + 'i', 4389, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3406); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3398); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); END_STATE(); - case 245: + case 251: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 3220, - '+', 4334, - ',', 3515, - '-', 4333, - '.', 4325, - '0', 3383, - 'E', 4346, - 'G', 4346, - 'K', 4346, - 'M', 4346, - 'N', 4391, - 'P', 4346, - 'T', 4346, - '[', 2915, - ']', 2916, - '_', 4353, - '`', 624, - 'd', 4362, - 'e', 4315, - 'f', 4361, - 'g', 4345, - 'h', 4377, - 'k', 4345, - 'm', 4347, - 'n', 4382, - 'o', 4317, - 'p', 4345, - 's', 4367, - 't', 4344, - 'u', 4383, - 'w', 4370, - '{', 3099, - 0xb5, 4383, - '\t', 3516, - ' ', 3516, - 'B', 3429, - 'b', 3429, - 'I', 4398, - 'i', 4398, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 3212, + '+', 4325, + ',', 3506, + '-', 4324, + '.', 4316, + '0', 3375, + 'E', 4337, + 'G', 4337, + 'K', 4337, + 'M', 4337, + 'N', 4382, + 'P', 4337, + 'T', 4337, + '[', 2907, + ']', 2908, + '_', 4344, + '`', 626, + 'd', 4353, + 'e', 4306, + 'f', 4352, + 'g', 4336, + 'h', 4368, + 'k', 4336, + 'm', 4338, + 'n', 4373, + 'o', 4308, + 'p', 4336, + 's', 4358, + 't', 4335, + 'u', 4374, + 'w', 4361, + '{', 3091, + 0xb5, 4374, + '\t', 3507, + ' ', 3507, + 'B', 3420, + 'b', 3420, + 'I', 4389, + 'i', 4389, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3406); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3398); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); END_STATE(); - case 246: + case 252: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 3220, - '+', 4334, - ',', 3515, - '-', 4333, - '.', 4325, - '0', 3383, - 'E', 4357, - 'N', 4391, - '[', 2915, - ']', 2916, - '_', 4353, - '`', 624, - 'e', 4319, - 'f', 4361, - 'n', 4387, - 'o', 4317, - 't', 4378, - '{', 3099, - '\t', 3516, - ' ', 3516, - 'I', 4398, - 'i', 4398, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 3212, + '+', 4325, + ',', 3506, + '-', 4324, + '.', 4316, + '0', 3375, + 'E', 4348, + 'N', 4382, + '[', 2907, + ']', 2908, + '_', 4344, + '`', 626, + 'e', 4310, + 'f', 4352, + 'n', 4378, + 'o', 4308, + 't', 4369, + '{', 3091, + '\t', 3507, + ' ', 3507, + 'I', 4389, + 'i', 4389, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3406); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3398); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); END_STATE(); - case 247: + case 253: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 3220, - '+', 4334, - ',', 3515, - '-', 4333, - '.', 4325, - '0', 3383, - 'N', 4391, - '[', 2915, - ']', 2916, - '_', 4353, - '`', 624, - 'e', 4316, - 'f', 4361, - 'n', 4387, - 'o', 4317, - 't', 4378, - '{', 3099, - '\t', 3516, - ' ', 3516, - 'I', 4398, - 'i', 4398, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 3212, + '+', 4325, + ',', 3506, + '-', 4324, + '.', 4316, + '0', 3375, + 'N', 4382, + '[', 2907, + ']', 2908, + '_', 4344, + '`', 626, + 'e', 4307, + 'f', 4352, + 'n', 4378, + 'o', 4308, + 't', 4369, + '{', 3091, + '\t', 3507, + ' ', 3507, + 'I', 4389, + 'i', 4389, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3406); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3398); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); END_STATE(); - case 248: + case 254: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 3220, - '+', 4334, - ',', 3515, - '-', 4333, - '.', 4324, - '0', 3333, - 'E', 4357, - 'N', 4391, - '[', 2915, - ']', 2916, - '_', 4348, - '`', 624, - 'e', 4319, - 'f', 4361, - 'n', 4387, - 'o', 4317, - 't', 4378, - '{', 3099, - '\t', 3516, - ' ', 3516, - 'I', 4398, - 'i', 4398, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 3212, + '+', 4325, + ',', 3506, + '-', 4324, + '.', 4315, + '0', 3325, + 'E', 4348, + 'N', 4382, + '[', 2907, + ']', 2908, + '_', 4339, + '`', 626, + 'e', 4310, + 'f', 4352, + 'n', 4378, + 'o', 4308, + 't', 4369, + '{', 3091, + '\t', 3507, + ' ', 3507, + 'I', 4389, + 'i', 4389, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3348); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3340); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); END_STATE(); - case 249: + case 255: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 3220, - '+', 4334, - ',', 3515, - '-', 4333, - '.', 4324, - '0', 3383, - 'E', 4357, - 'N', 4391, - '[', 2915, - ']', 2916, - '_', 4353, - '`', 624, - 'e', 4319, - 'f', 4361, - 'n', 4387, - 'o', 4317, - 't', 4378, - '{', 3099, - '\t', 3516, - ' ', 3516, - 'I', 4398, - 'i', 4398, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 3212, + '+', 4325, + ',', 3506, + '-', 4324, + '.', 4315, + '0', 3375, + 'E', 4348, + 'N', 4382, + '[', 2907, + ']', 2908, + '_', 4344, + '`', 626, + 'e', 4310, + 'f', 4352, + 'n', 4378, + 'o', 4308, + 't', 4369, + '{', 3091, + '\t', 3507, + ' ', 3507, + 'I', 4389, + 'i', 4389, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3406); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3398); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); END_STATE(); - case 250: + case 256: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 3220, - '+', 4334, - ',', 3515, - '-', 4333, - '.', 4324, - '0', 3383, - 'N', 4391, - '[', 2915, - ']', 2916, - '_', 4353, - '`', 624, - 'e', 4316, - 'f', 4361, - 'n', 4387, - 'o', 4317, - 't', 4378, - '{', 3099, - '\t', 3516, - ' ', 3516, - 'I', 4398, - 'i', 4398, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 3212, + '+', 4325, + ',', 3506, + '-', 4324, + '.', 4315, + '0', 3375, + 'N', 4382, + '[', 2907, + ']', 2908, + '_', 4344, + '`', 626, + 'e', 4307, + 'f', 4352, + 'n', 4378, + 'o', 4308, + 't', 4369, + '{', 3091, + '\t', 3507, + ' ', 3507, + 'I', 4389, + 'i', 4389, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3406); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3398); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); END_STATE(); - case 251: + case 257: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 3220, - '+', 4334, - ',', 3515, - '-', 4333, - '.', 3302, - '0', 3383, - 'E', 4343, - 'G', 4346, - 'K', 4346, - 'M', 4346, - 'N', 4391, - 'P', 4346, - 'T', 4346, - '[', 2915, - ']', 2916, - '_', 4353, - '`', 624, - 'd', 4362, - 'e', 4318, - 'f', 4361, - 'g', 4345, - 'h', 4377, - 'k', 4345, - 'm', 4347, - 'n', 4382, - 'o', 4317, - 'p', 4345, - 's', 4367, - 't', 4344, - 'u', 4383, - 'w', 4370, - '{', 3099, - 0xb5, 4383, - '\t', 3516, - ' ', 3516, - 'B', 3429, - 'b', 3429, - 'I', 4398, - 'i', 4398, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 3212, + '+', 4325, + ',', 3506, + '-', 4324, + '.', 3294, + '0', 3375, + 'E', 4334, + 'G', 4337, + 'K', 4337, + 'M', 4337, + 'N', 4382, + 'P', 4337, + 'T', 4337, + '[', 2907, + ']', 2908, + '_', 4344, + '`', 626, + 'd', 4353, + 'e', 4309, + 'f', 4352, + 'g', 4336, + 'h', 4368, + 'k', 4336, + 'm', 4338, + 'n', 4373, + 'o', 4308, + 'p', 4336, + 's', 4358, + 't', 4335, + 'u', 4374, + 'w', 4361, + '{', 3091, + 0xb5, 4374, + '\t', 3507, + ' ', 3507, + 'B', 3420, + 'b', 3420, + 'I', 4389, + 'i', 4389, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3406); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3398); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); END_STATE(); - case 252: + case 258: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 3220, - '+', 4334, - ',', 3515, - '-', 4333, - '.', 3302, - '0', 3383, - 'E', 4357, - 'N', 4391, - '[', 2915, - ']', 2916, - '_', 4353, - '`', 624, - 'e', 4319, - 'f', 4361, - 'n', 4387, - 'o', 4317, - 't', 4378, - '{', 3099, - '\t', 3516, - ' ', 3516, - 'I', 4398, - 'i', 4398, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 3212, + '+', 4325, + ',', 3506, + '-', 4324, + '.', 3294, + '0', 3375, + 'E', 4348, + 'N', 4382, + '[', 2907, + ']', 2908, + '_', 4344, + '`', 626, + 'e', 4310, + 'f', 4352, + 'n', 4378, + 'o', 4308, + 't', 4369, + '{', 3091, + '\t', 3507, + ' ', 3507, + 'I', 4389, + 'i', 4389, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3406); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3398); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); END_STATE(); - case 253: + case 259: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 3220, - '+', 4334, - ',', 3515, - '-', 4333, - '.', 3293, - '0', 3383, - 'E', 4357, - 'N', 4391, - '[', 2915, - ']', 2916, - '_', 4353, - '`', 624, - 'e', 4319, - 'f', 4361, - 'n', 4387, - 'o', 4317, - 't', 4378, - '{', 3099, - '\t', 3516, - ' ', 3516, - 'I', 4398, - 'i', 4398, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 3212, + '+', 4325, + ',', 3506, + '-', 4324, + '.', 3285, + '0', 3375, + 'E', 4348, + 'N', 4382, + '[', 2907, + ']', 2908, + '_', 4344, + '`', 626, + 'e', 4310, + 'f', 4352, + 'n', 4378, + 'o', 4308, + 't', 4369, + '{', 3091, + '\t', 3507, + ' ', 3507, + 'I', 4389, + 'i', 4389, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3406); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3398); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); END_STATE(); - case 254: + case 260: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 3220, - '+', 3525, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 3212, + '+', 3516, ',', 1875, - '-', 2984, - '.', 3295, - '0', 3336, + '-', 2976, + '.', 3287, + '0', 3328, 'I', 1318, 'N', 1313, '_', 1156, - '`', 624, + '`', 626, 'a', 1232, 'b', 1267, 'c', 1168, @@ -20482,13 +21034,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1261, 'u', 1278, 'w', 1215, - '}', 3100, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(334); + lookahead == ' ') SKIP(340); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4600); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3337); + lookahead == '^') ADVANCE(4591); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3329); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -20497,22 +21049,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); END_STATE(); - case 255: + case 261: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 3220, - '+', 3525, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 3212, + '+', 3516, ',', 1875, - '-', 2984, + '-', 2976, '.', 1131, - '0', 3336, + '0', 3328, 'I', 1318, 'N', 1313, '_', 1156, - '`', 624, + '`', 626, 'a', 1232, 'b', 1267, 'c', 1168, @@ -20530,13 +21082,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1261, 'u', 1278, 'w', 1215, - '}', 3100, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(334); + lookahead == ' ') SKIP(340); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4600); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3337); + lookahead == '^') ADVANCE(4591); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3329); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -20545,24 +21097,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); END_STATE(); - case 256: + case 262: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 3220, - '+', 3525, - ',', 3515, - '-', 2984, - '.', 3295, - '0', 3336, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 3212, + '+', 3516, + ',', 3506, + '-', 2976, + '.', 3287, + '0', 3328, 'I', 1318, 'N', 1313, - '[', 2915, - ']', 2916, + '[', 2907, + ']', 2908, '_', 1156, - '`', 624, + '`', 626, 'a', 1232, 'b', 1267, 'c', 1168, @@ -20580,35 +21132,35 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1261, 'u', 1278, 'w', 1215, - '}', 3100, - '\t', 3516, - ' ', 3516, + '}', 3092, + '\t', 3507, + ' ', 3507, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4600); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3337); + lookahead == '^') ADVANCE(4591); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3329); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); END_STATE(); - case 257: + case 263: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 3220, - '+', 3525, - ',', 3515, - '-', 2984, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 3212, + '+', 3516, + ',', 3506, + '-', 2976, '.', 1131, - '0', 3336, + '0', 3328, 'I', 1318, 'N', 1313, '_', 1156, - '`', 624, + '`', 626, 'a', 1232, 'b', 1267, 'c', 1168, @@ -20626,14 +21178,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1261, 'u', 1278, 'w', 1215, - '}', 3100, - '\t', 3516, - ' ', 3516, + '}', 3092, + '\t', 3507, + ' ', 3507, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4600); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3337); + lookahead == '^') ADVANCE(4591); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3329); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && @@ -20641,164 +21193,164 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); END_STATE(); - case 258: + case 264: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 3220, - '+', 4237, - ',', 2919, - '-', 4236, - '.', 4231, - '0', 3334, - 'N', 4286, - '[', 2915, - ']', 2916, - '_', 4262, - '`', 624, - 'e', 4223, - 'f', 4266, - 'n', 4283, - 'o', 4224, - 't', 4276, - '{', 3099, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 3212, + '+', 4228, + ',', 2911, + '-', 4227, + '.', 4222, + '0', 3326, + 'N', 4277, + '[', 2907, + ']', 2908, + '_', 4249, + '`', 626, + 'e', 4214, + 'f', 4257, + 'n', 4274, + 'o', 4215, + 't', 4267, + '{', 3091, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(335); + lookahead == ' ') SKIP(341); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4292); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3349); + lookahead == 'i') ADVANCE(4283); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3341); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); END_STATE(); - case 259: + case 265: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 3220, - '+', 4237, - ',', 2919, - '-', 4236, - '.', 3291, - '0', 3334, - 'N', 4286, - '[', 2915, - ']', 2916, - '_', 4262, - '`', 624, - 'e', 4223, - 'f', 4266, - 'n', 4283, - 'o', 4224, - 't', 4276, - '{', 3099, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 3212, + '+', 4228, + ',', 2911, + '-', 4227, + '.', 3283, + '0', 3326, + 'N', 4277, + '[', 2907, + ']', 2908, + '_', 4249, + '`', 626, + 'e', 4214, + 'f', 4257, + 'n', 4274, + 'o', 4215, + 't', 4267, + '{', 3091, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(335); + lookahead == ' ') SKIP(341); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4292); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3349); + lookahead == 'i') ADVANCE(4283); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3341); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); END_STATE(); - case 260: + case 266: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 3220, - '+', 4237, - ',', 3515, - '-', 4236, - '.', 4231, - '0', 3334, - 'N', 4286, - '[', 2915, - ']', 2916, - '_', 4262, - '`', 624, - 'e', 4223, - 'f', 4266, - 'n', 4283, - 'o', 4224, - 't', 4276, - '{', 3099, - '\t', 3516, - ' ', 3516, - 'I', 4292, - 'i', 4292, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 3212, + '+', 4228, + ',', 3506, + '-', 4227, + '.', 4222, + '0', 3326, + 'N', 4277, + '[', 2907, + ']', 2908, + '_', 4249, + '`', 626, + 'e', 4214, + 'f', 4257, + 'n', 4274, + 'o', 4215, + 't', 4267, + '{', 3091, + '\t', 3507, + ' ', 3507, + 'I', 4283, + 'i', 4283, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3349); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3341); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); END_STATE(); - case 261: + case 267: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 3220, - '+', 4237, - ',', 3515, - '-', 4236, - '.', 3291, - '0', 3334, - 'N', 4286, - '[', 2915, - ']', 2916, - '_', 4262, - '`', 624, - 'e', 4223, - 'f', 4266, - 'n', 4283, - 'o', 4224, - 't', 4276, - '{', 3099, - '\t', 3516, - ' ', 3516, - 'I', 4292, - 'i', 4292, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 3212, + '+', 4228, + ',', 3506, + '-', 4227, + '.', 3283, + '0', 3326, + 'N', 4277, + '[', 2907, + ']', 2908, + '_', 4249, + '`', 626, + 'e', 4214, + 'f', 4257, + 'n', 4274, + 'o', 4215, + 't', 4267, + '{', 3091, + '\t', 3507, + ' ', 3507, + 'I', 4283, + 'i', 4283, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3349); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3341); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); END_STATE(); - case 262: + case 268: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 3526, - ',', 2919, - '-', 2978, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 3517, + ',', 2911, + '-', 2970, '.', 1340, - '0', 3384, - ':', 3520, - '?', 3189, + '0', 3376, + ':', 3511, + '?', 3181, 'I', 1861, 'N', 1856, '_', 1596, - '`', 624, + '`', 626, 'a', 1712, 'b', 1761, 'c', 1605, @@ -20816,12 +21368,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1756, 'u', 1787, 'w', 1686, - '}', 3100, - '\t', 262, - ' ', 262, + '}', 3092, + '\t', 268, + ' ', 268, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(578); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(580); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '?' < lookahead) && @@ -20829,23 +21381,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 263: + case 269: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 3526, - ',', 2919, - '-', 2978, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 3517, + ',', 2911, + '-', 2970, '.', 1340, - '0', 3384, - ':', 3520, + '0', 3376, + ':', 3511, 'I', 1861, 'N', 1856, '_', 1596, - '`', 624, + '`', 626, 'a', 1712, 'b', 1761, 'c', 1605, @@ -20863,12 +21415,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1756, 'u', 1787, 'w', 1686, - '}', 3100, - '\t', 263, - ' ', 263, + '}', 3092, + '\t', 269, + ' ', 269, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(578); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(580); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && @@ -20876,24 +21428,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 264: + case 270: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 3526, - ',', 2919, - '-', 2978, - '.', 3294, - '0', 3384, - ':', 3520, - '?', 3189, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 3517, + ',', 2911, + '-', 2970, + '.', 3286, + '0', 3376, + ':', 3511, + '?', 3181, 'I', 1861, 'N', 1856, '_', 1596, - '`', 624, + '`', 626, 'a', 1712, 'b', 1761, 'c', 1605, @@ -20911,12 +21463,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1756, 'u', 1787, 'w', 1686, - '}', 3100, - '\t', 262, - ' ', 262, + '}', 3092, + '\t', 268, + ' ', 268, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(578); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(580); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '?' < lookahead) && @@ -20924,23 +21476,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 265: + case 271: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 3526, - ',', 2919, - '-', 2978, - '.', 3294, - '0', 3384, - ':', 3520, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 3517, + ',', 2911, + '-', 2970, + '.', 3286, + '0', 3376, + ':', 3511, 'I', 1861, 'N', 1856, '_', 1596, - '`', 624, + '`', 626, 'a', 1712, 'b', 1761, 'c', 1605, @@ -20958,12 +21510,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1756, 'u', 1787, 'w', 1686, - '}', 3100, - '\t', 263, - ' ', 263, + '}', 3092, + '\t', 269, + ' ', 269, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(578); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(580); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && @@ -20971,24 +21523,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 266: + case 272: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 3526, - ',', 3515, - '-', 2978, - '.', 3305, - '0', 3384, - '<', 2947, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 3517, + ',', 3506, + '-', 2970, + '.', 3297, + '0', 3376, + '<', 2939, 'I', 1861, 'N', 1856, - ']', 2916, + ']', 2908, '_', 1596, - '`', 624, + '`', 626, 'a', 1712, 'b', 1761, 'c', 1605, @@ -21006,12 +21558,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1756, 'u', 1787, 'w', 1686, - '}', 3100, - '\t', 3516, - ' ', 3516, + '}', 3092, + '\t', 3507, + ' ', 3507, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && @@ -21019,23 +21571,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 267: + case 273: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 3526, - ',', 3515, - '-', 2978, - '.', 3305, - '0', 3384, - '?', 3189, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 3517, + ',', 3506, + '-', 2970, + '.', 3297, + '0', 3376, + '?', 3181, 'I', 1861, 'N', 1856, '_', 1596, - '`', 624, + '`', 626, 'a', 1712, 'b', 1761, 'c', 1605, @@ -21053,12 +21605,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1756, 'u', 1787, 'w', 1686, - '}', 3100, - '\t', 3516, - ' ', 3516, + '}', 3092, + '\t', 3507, + ' ', 3507, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '?' < lookahead) && @@ -21066,23 +21618,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 268: + case 274: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 3526, - ',', 3515, - '-', 2978, - '.', 3305, - '0', 3384, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 3517, + ',', 3506, + '-', 2970, + '.', 3297, + '0', 3376, 'E', 1603, 'I', 1861, 'N', 1856, '_', 1596, - '`', 624, + '`', 626, 'a', 1712, 'b', 1761, 'c', 1605, @@ -21100,12 +21652,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1756, 'u', 1787, 'w', 1686, - '}', 3100, - '\t', 3516, - ' ', 3516, + '}', 3092, + '\t', 3507, + ' ', 3507, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && @@ -21113,23 +21665,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 269: + case 275: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 3526, - ',', 3515, - '-', 2978, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 3517, + ',', 3506, + '-', 2970, '.', 1340, - '0', 3384, + '0', 3376, 'E', 1603, 'I', 1861, 'N', 1856, '_', 1596, - '`', 624, + '`', 626, 'a', 1712, 'b', 1761, 'c', 1605, @@ -21147,12 +21699,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1756, 'u', 1787, 'w', 1686, - '}', 3100, - '\t', 3516, - ' ', 3516, + '}', 3092, + '\t', 3507, + ' ', 3507, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && @@ -21160,23 +21712,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 270: + case 276: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 3526, - ',', 3515, - '-', 2978, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 3517, + ',', 3506, + '-', 2970, '.', 1340, - '0', 3335, + '0', 3327, 'E', 1603, 'I', 1861, 'N', 1856, '_', 1601, - '`', 624, + '`', 626, 'a', 1712, 'b', 1761, 'c', 1605, @@ -21194,12 +21746,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1756, 'u', 1787, 'w', 1686, - '}', 3100, - '\t', 3516, - ' ', 3516, + '}', 3092, + '\t', 3507, + ' ', 3507, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3329); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && @@ -21207,23 +21759,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 271: + case 277: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 3526, - ',', 3515, - '-', 2978, - '.', 3294, - '0', 3384, - '?', 3189, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 3517, + ',', 3506, + '-', 2970, + '.', 3286, + '0', 3376, + '?', 3181, 'I', 1861, 'N', 1856, '_', 1596, - '`', 624, + '`', 626, 'a', 1712, 'b', 1761, 'c', 1605, @@ -21241,12 +21793,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1756, 'u', 1787, 'w', 1686, - '}', 3100, - '\t', 3516, - ' ', 3516, + '}', 3092, + '\t', 3507, + ' ', 3507, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '?' < lookahead) && @@ -21254,23 +21806,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 272: + case 278: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 3526, - ',', 3515, - '-', 2978, - '.', 3294, - '0', 3384, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 3517, + ',', 3506, + '-', 2970, + '.', 3286, + '0', 3376, 'E', 1603, 'I', 1861, 'N', 1856, '_', 1596, - '`', 624, + '`', 626, 'a', 1712, 'b', 1761, 'c', 1605, @@ -21288,12 +21840,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1756, 'u', 1787, 'w', 1686, - '}', 3100, - '\t', 3516, - ' ', 3516, + '}', 3092, + '\t', 3507, + ' ', 3507, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && @@ -21301,22 +21853,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 273: + case 279: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 3526, - ',', 3515, - '-', 2978, - '.', 3294, - '0', 3384, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 3517, + ',', 3506, + '-', 2970, + '.', 3286, + '0', 3376, 'I', 1861, 'N', 1856, '_', 1596, - '`', 624, + '`', 626, 'a', 1712, 'b', 1761, 'c', 1605, @@ -21334,12 +21886,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1756, 'u', 1787, 'w', 1686, - '}', 3100, - '\t', 3516, - ' ', 3516, + '}', 3092, + '\t', 3507, + ' ', 3507, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && @@ -21347,23 +21899,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 274: + case 280: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 3526, - ',', 3515, - '-', 2978, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 3517, + ',', 3506, + '-', 2970, '.', 1343, - '0', 3384, + '0', 3376, 'E', 1603, 'I', 1861, 'N', 1856, '_', 1596, - '`', 624, + '`', 626, 'a', 1712, 'b', 1761, 'c', 1605, @@ -21381,12 +21933,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1756, 'u', 1787, 'w', 1686, - '}', 3100, - '\t', 3516, - ' ', 3516, + '}', 3092, + '\t', 3507, + ' ', 3507, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && @@ -21394,22 +21946,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 275: + case 281: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 3526, - ',', 3515, - '-', 2978, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 3517, + ',', 3506, + '-', 2970, '.', 1343, - '0', 3384, + '0', 3376, 'I', 1861, 'N', 1856, '_', 1596, - '`', 624, + '`', 626, 'a', 1712, 'b', 1761, 'c', 1605, @@ -21427,12 +21979,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1756, 'u', 1787, 'w', 1686, - '}', 3100, - '\t', 3516, - ' ', 3516, + '}', 3092, + '\t', 3507, + ' ', 3507, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && @@ -21440,23 +21992,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 276: + case 282: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 3526, - ',', 3515, - '-', 2978, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 3517, + ',', 3506, + '-', 2970, '.', 1343, - '0', 3335, + '0', 3327, 'E', 1603, 'I', 1861, 'N', 1856, '_', 1601, - '`', 624, + '`', 626, 'a', 1712, 'b', 1761, 'c', 1605, @@ -21474,12 +22026,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1756, 'u', 1787, 'w', 1686, - '}', 3100, - '\t', 3516, - ' ', 3516, + '}', 3092, + '\t', 3507, + ' ', 3507, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3329); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && @@ -21487,22 +22039,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 277: + case 283: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 3526, - '-', 2978, - '.', 3305, - '0', 3384, - '?', 3189, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 3517, + '-', 2970, + '.', 3297, + '0', 3376, + '?', 3181, 'I', 1861, 'N', 1856, '_', 1596, - '`', 624, + '`', 626, 'a', 1712, 'b', 1761, 'c', 1605, @@ -21520,11 +22072,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1756, 'u', 1787, 'w', 1686, - '}', 3100, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(280); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); + lookahead == ' ') SKIP(286); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -21533,22 +22085,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 278: + case 284: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 3526, - '-', 2978, - '.', 3305, - '0', 3384, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 3517, + '-', 2970, + '.', 3297, + '0', 3376, 'E', 1603, 'I', 1861, 'N', 1856, '_', 1596, - '`', 624, + '`', 626, 'a', 1712, 'b', 1761, 'c', 1605, @@ -21566,11 +22118,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1756, 'u', 1787, 'w', 1686, - '}', 3100, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(282); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); + lookahead == ' ') SKIP(288); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -21579,21 +22131,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 279: + case 285: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 3526, - '-', 2978, - '.', 3305, - '0', 3384, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 3517, + '-', 2970, + '.', 3297, + '0', 3376, 'I', 1861, 'N', 1856, '_', 1596, - '`', 624, + '`', 626, 'a', 1712, 'b', 1761, 'c', 1605, @@ -21611,11 +22163,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1756, 'u', 1787, 'w', 1686, - '}', 3100, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(282); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); + lookahead == ' ') SKIP(288); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -21624,22 +22176,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 280: + case 286: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 3526, - '-', 2978, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 3517, + '-', 2970, '.', 1340, - '0', 3384, - '?', 3189, + '0', 3376, + '?', 3181, 'I', 1861, 'N', 1856, '_', 1596, - '`', 624, + '`', 626, 'a', 1712, 'b', 1761, 'c', 1605, @@ -21657,11 +22209,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1756, 'u', 1787, 'w', 1686, - '}', 3100, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(280); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); + lookahead == ' ') SKIP(286); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -21670,22 +22222,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 281: + case 287: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 3526, - '-', 2978, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 3517, + '-', 2970, '.', 1340, - '0', 3384, + '0', 3376, 'E', 1603, 'I', 1861, 'N', 1856, '_', 1596, - '`', 624, + '`', 626, 'a', 1712, 'b', 1761, 'c', 1605, @@ -21703,11 +22255,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1756, 'u', 1787, 'w', 1686, - '}', 3100, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(282); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); + lookahead == ' ') SKIP(288); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -21716,21 +22268,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 282: + case 288: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 3526, - '-', 2978, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 3517, + '-', 2970, '.', 1340, - '0', 3384, + '0', 3376, 'I', 1861, 'N', 1856, '_', 1596, - '`', 624, + '`', 626, 'a', 1712, 'b', 1761, 'c', 1605, @@ -21748,11 +22300,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1756, 'u', 1787, 'w', 1686, - '}', 3100, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(282); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); + lookahead == ' ') SKIP(288); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -21761,22 +22313,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 283: + case 289: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 3526, - '-', 2978, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 3517, + '-', 2970, '.', 1340, - '0', 3335, + '0', 3327, 'E', 1603, 'I', 1861, 'N', 1856, '_', 1601, - '`', 624, + '`', 626, 'a', 1712, 'b', 1761, 'c', 1605, @@ -21794,11 +22346,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1756, 'u', 1787, 'w', 1686, - '}', 3100, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(282); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3337); + lookahead == ' ') SKIP(288); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3329); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -21807,22 +22359,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 284: + case 290: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 3526, - '-', 2978, - '.', 3294, - '0', 3384, - '?', 3189, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 3517, + '-', 2970, + '.', 3286, + '0', 3376, + '?', 3181, 'I', 1861, 'N', 1856, '_', 1596, - '`', 624, + '`', 626, 'a', 1712, 'b', 1761, 'c', 1605, @@ -21840,11 +22392,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1756, 'u', 1787, 'w', 1686, - '}', 3100, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(280); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); + lookahead == ' ') SKIP(286); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -21853,22 +22405,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 285: + case 291: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 3526, - '-', 2978, - '.', 3294, - '0', 3384, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 3517, + '-', 2970, + '.', 3286, + '0', 3376, 'E', 1603, 'I', 1861, 'N', 1856, '_', 1596, - '`', 624, + '`', 626, 'a', 1712, 'b', 1761, 'c', 1605, @@ -21886,11 +22438,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1756, 'u', 1787, 'w', 1686, - '}', 3100, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(282); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); + lookahead == ' ') SKIP(288); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -21899,21 +22451,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 286: + case 292: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 3526, - '-', 2978, - '.', 3294, - '0', 3384, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 3517, + '-', 2970, + '.', 3286, + '0', 3376, 'I', 1861, 'N', 1856, '_', 1596, - '`', 624, + '`', 626, 'a', 1712, 'b', 1761, 'c', 1605, @@ -21931,11 +22483,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1756, 'u', 1787, 'w', 1686, - '}', 3100, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(282); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); + lookahead == ' ') SKIP(288); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -21944,22 +22496,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 287: + case 293: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 3526, - '-', 2978, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 3517, + '-', 2970, '.', 1343, - '0', 3384, + '0', 3376, 'E', 1603, 'I', 1861, 'N', 1856, '_', 1596, - '`', 624, + '`', 626, 'a', 1712, 'b', 1761, 'c', 1605, @@ -21977,11 +22529,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1756, 'u', 1787, 'w', 1686, - '}', 3100, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(282); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); + lookahead == ' ') SKIP(288); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -21990,21 +22542,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 288: + case 294: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 3526, - '-', 2978, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 3517, + '-', 2970, '.', 1343, - '0', 3384, + '0', 3376, 'I', 1861, 'N', 1856, '_', 1596, - '`', 624, + '`', 626, 'a', 1712, 'b', 1761, 'c', 1605, @@ -22022,11 +22574,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1756, 'u', 1787, 'w', 1686, - '}', 3100, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(282); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); + lookahead == ' ') SKIP(288); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -22035,22 +22587,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 289: + case 295: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 3526, - '-', 2978, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 3517, + '-', 2970, '.', 1343, - '0', 3335, + '0', 3327, 'E', 1603, 'I', 1861, 'N', 1856, '_', 1601, - '`', 624, + '`', 626, 'a', 1712, 'b', 1761, 'c', 1605, @@ -22068,11 +22620,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1756, 'u', 1787, 'w', 1686, - '}', 3100, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(282); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3337); + lookahead == ' ') SKIP(288); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3329); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -22081,1094 +22633,1091 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 290: + case 296: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 3764, - ',', 3515, - '-', 565, - '.', 3761, - '0', 3378, - 'N', 3823, - '[', 2915, - '_', 3103, - '`', 624, - 'e', 3744, - 'f', 3791, - 'n', 3819, - 'o', 3745, - 't', 3806, - '{', 3099, - '}', 3100, - '\t', 3516, - ' ', 3516, - 'I', 3827, - 'i', 3827, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 3755, + ',', 3506, + '-', 567, + '.', 3752, + '0', 3370, + 'N', 3814, + '[', 2907, + '_', 3095, + '`', 626, + 'e', 3735, + 'f', 3782, + 'n', 3810, + 'o', 3736, + 't', 3797, + '{', 3091, + '}', 3092, + '\t', 3507, + ' ', 3507, + 'I', 3818, + 'i', 3818, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3401); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3393); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3846); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3837); END_STATE(); - case 291: + case 297: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 4234, - ',', 2919, - '-', 4233, - '.', 4230, - '0', 3379, - ';', 3532, - 'N', 4286, - '[', 2915, - ']', 2916, - '_', 4253, - '`', 624, - 'e', 4223, - 'f', 4266, - 'n', 4283, - 'o', 4224, - 't', 4276, - '{', 3099, - '\t', 291, - ' ', 291, - 'I', 4292, - 'i', 4292, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 4225, + ',', 2911, + '-', 4224, + '.', 4221, + '0', 3371, + ';', 3523, + 'N', 4277, + '[', 2907, + ']', 2908, + '_', 4244, + '`', 626, + 'e', 4214, + 'f', 4257, + 'n', 4274, + 'o', 4215, + 't', 4267, + '{', 3091, + '\t', 297, + ' ', 297, + 'I', 4283, + 'i', 4283, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(581); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3402); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(583); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3394); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); END_STATE(); - case 292: + case 298: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 4234, - ',', 2919, - '-', 4233, - '.', 4230, - '0', 3379, - '?', 3189, - 'N', 4286, - '[', 2915, - ']', 2916, - '_', 4253, - '`', 624, - 'e', 4223, - 'f', 4266, - 'n', 4283, - 'o', 4224, - 't', 4276, - '{', 3099, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 4225, + ',', 2911, + '-', 4224, + '.', 4221, + '0', 3371, + '?', 3181, + 'N', 4277, + '[', 2907, + ']', 2908, + '_', 4244, + '`', 626, + 'e', 4214, + 'f', 4257, + 'n', 4274, + 'o', 4215, + 't', 4267, + '{', 3091, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(292); + lookahead == ' ') SKIP(298); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4292); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3402); + lookahead == 'i') ADVANCE(4283); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3394); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); END_STATE(); - case 293: + case 299: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 4234, - ',', 2919, - '-', 4233, - '.', 4230, - '0', 3379, - 'E', 4264, - 'N', 4286, - '[', 2915, - ']', 2916, - '_', 4253, - '`', 624, - 'e', 4225, - 'f', 4266, - 'n', 4283, - 'o', 4224, - 't', 4276, - '{', 3099, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 4225, + ',', 2911, + '-', 4224, + '.', 4221, + '0', 3371, + 'E', 4255, + 'N', 4277, + '[', 2907, + ']', 2908, + '_', 4244, + '`', 626, + 'e', 4216, + 'f', 4257, + 'n', 4274, + 'o', 4215, + 't', 4267, + '{', 3091, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(295); + lookahead == ' ') SKIP(301); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4292); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3402); + lookahead == 'i') ADVANCE(4283); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3394); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); END_STATE(); - case 294: + case 300: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 4234, - ',', 2919, - '-', 4233, - '.', 4230, - '0', 3379, - 'N', 4286, - '[', 3451, - ']', 2916, - '_', 4253, - '`', 624, - 'e', 4223, - 'f', 4266, - 'n', 4283, - 'o', 4224, - 't', 4276, - '{', 3099, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 4225, + ',', 2911, + '-', 4224, + '.', 4221, + '0', 3371, + 'N', 4277, + '[', 3442, + ']', 2908, + '_', 4244, + '`', 626, + 'e', 4214, + 'f', 4257, + 'n', 4274, + 'o', 4215, + 't', 4267, + '{', 3091, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(295); + lookahead == ' ') SKIP(301); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4292); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3402); + lookahead == 'i') ADVANCE(4283); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3394); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); END_STATE(); - case 295: + case 301: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 4234, - ',', 2919, - '-', 4233, - '.', 4230, - '0', 3379, - 'N', 4286, - '[', 2915, - ']', 2916, - '_', 4253, - '`', 624, - 'e', 4223, - 'f', 4266, - 'n', 4283, - 'o', 4224, - 't', 4276, - '{', 3099, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 4225, + ',', 2911, + '-', 4224, + '.', 4221, + '0', 3371, + 'N', 4277, + '[', 2907, + ']', 2908, + '_', 4244, + '`', 626, + 'e', 4214, + 'f', 4257, + 'n', 4274, + 'o', 4215, + 't', 4267, + '{', 3091, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(295); + lookahead == ' ') SKIP(301); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4292); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3402); + lookahead == 'i') ADVANCE(4283); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3394); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); END_STATE(); - case 296: + case 302: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 4234, - ',', 2919, - '-', 4233, - '.', 4230, - '0', 3334, - 'E', 4264, - 'N', 4286, - '[', 2915, - ']', 2916, - '_', 4262, - '`', 624, - 'e', 4225, - 'f', 4266, - 'n', 4283, - 'o', 4224, - 't', 4276, - '{', 3099, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 4225, + ',', 2911, + '-', 4224, + '.', 4221, + '0', 3326, + 'E', 4255, + 'N', 4277, + '[', 2907, + ']', 2908, + '_', 4249, + '`', 626, + 'e', 4216, + 'f', 4257, + 'n', 4274, + 'o', 4215, + 't', 4267, + '{', 3091, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(295); + lookahead == ' ') SKIP(301); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4292); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3349); + lookahead == 'i') ADVANCE(4283); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3341); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); END_STATE(); - case 297: + case 303: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 4234, - ',', 2919, - '-', 4233, - '.', 4232, - '0', 3379, - 'E', 4264, - 'N', 4286, - '[', 2915, - ']', 2916, - '_', 4253, - '`', 624, - 'e', 4225, - 'f', 4266, - 'n', 4283, - 'o', 4224, - 't', 4276, - '{', 3099, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 4225, + ',', 2911, + '-', 4224, + '.', 4223, + '0', 3371, + 'E', 4255, + 'N', 4277, + '[', 2907, + ']', 2908, + '_', 4244, + '`', 626, + 'e', 4216, + 'f', 4257, + 'n', 4274, + 'o', 4215, + 't', 4267, + '{', 3091, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(295); + lookahead == ' ') SKIP(301); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4292); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3402); + lookahead == 'i') ADVANCE(4283); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3394); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); END_STATE(); - case 298: + case 304: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 4234, - ',', 2919, - '-', 4233, - '.', 4232, - '0', 3379, - 'N', 4286, - '[', 2915, - ']', 2916, - '_', 4253, - '`', 624, - 'e', 4223, - 'f', 4266, - 'n', 4283, - 'o', 4224, - 't', 4276, - '{', 3099, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 4225, + ',', 2911, + '-', 4224, + '.', 4223, + '0', 3371, + 'N', 4277, + '[', 2907, + ']', 2908, + '_', 4244, + '`', 626, + 'e', 4214, + 'f', 4257, + 'n', 4274, + 'o', 4215, + 't', 4267, + '{', 3091, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(295); + lookahead == ' ') SKIP(301); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4292); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3402); + lookahead == 'i') ADVANCE(4283); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3394); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); END_STATE(); - case 299: + case 305: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 4234, - ',', 2919, - '-', 4233, - '.', 4232, - '0', 3334, - 'E', 4264, - 'N', 4286, - '[', 2915, - ']', 2916, - '_', 4262, - '`', 624, - 'e', 4225, - 'f', 4266, - 'n', 4283, - 'o', 4224, - 't', 4276, - '{', 3099, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 4225, + ',', 2911, + '-', 4224, + '.', 4223, + '0', 3326, + 'E', 4255, + 'N', 4277, + '[', 2907, + ']', 2908, + '_', 4249, + '`', 626, + 'e', 4216, + 'f', 4257, + 'n', 4274, + 'o', 4215, + 't', 4267, + '{', 3091, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(295); + lookahead == ' ') SKIP(301); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4292); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3349); + lookahead == 'i') ADVANCE(4283); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3341); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); END_STATE(); - case 300: + case 306: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 4234, - ',', 2919, - '-', 4233, - '.', 3300, - '0', 3379, - '?', 3189, - 'N', 4286, - '[', 2915, - ']', 2916, - '_', 4253, - '`', 624, - 'e', 4223, - 'f', 4266, - 'n', 4283, - 'o', 4224, - 't', 4276, - '{', 3099, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 4225, + ',', 2911, + '-', 4224, + '.', 3292, + '0', 3371, + '?', 3181, + 'N', 4277, + '[', 2907, + ']', 2908, + '_', 4244, + '`', 626, + 'e', 4214, + 'f', 4257, + 'n', 4274, + 'o', 4215, + 't', 4267, + '{', 3091, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(292); + lookahead == ' ') SKIP(298); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4292); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3402); + lookahead == 'i') ADVANCE(4283); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3394); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); END_STATE(); - case 301: + case 307: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 4234, - ',', 2919, - '-', 4233, - '.', 3300, - '0', 3379, - 'E', 4264, - 'N', 4286, - '[', 2915, - ']', 2916, - '_', 4253, - '`', 624, - 'e', 4225, - 'f', 4266, - 'n', 4283, - 'o', 4224, - 't', 4276, - '{', 3099, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 4225, + ',', 2911, + '-', 4224, + '.', 3292, + '0', 3371, + 'E', 4255, + 'N', 4277, + '[', 2907, + ']', 2908, + '_', 4244, + '`', 626, + 'e', 4216, + 'f', 4257, + 'n', 4274, + 'o', 4215, + 't', 4267, + '{', 3091, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(295); + lookahead == ' ') SKIP(301); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4292); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3402); + lookahead == 'i') ADVANCE(4283); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3394); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); END_STATE(); - case 302: + case 308: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 4234, - ',', 2919, - '-', 4233, - '.', 3300, - '0', 3379, - 'N', 4286, - '[', 2915, - ']', 2916, - '_', 4253, - '`', 624, - 'e', 4223, - 'f', 4266, - 'n', 4283, - 'o', 4224, - 't', 4276, - '{', 3099, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 4225, + ',', 2911, + '-', 4224, + '.', 3292, + '0', 3371, + 'N', 4277, + '[', 2907, + ']', 2908, + '_', 4244, + '`', 626, + 'e', 4214, + 'f', 4257, + 'n', 4274, + 'o', 4215, + 't', 4267, + '{', 3091, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(295); + lookahead == ' ') SKIP(301); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4292); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3402); + lookahead == 'i') ADVANCE(4283); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3394); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); END_STATE(); - case 303: + case 309: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 4234, - ',', 2919, - '-', 4233, - '.', 3287, - '0', 3379, - ';', 3532, - 'N', 4286, - '[', 2915, - ']', 2916, - '_', 4253, - '`', 624, - 'e', 4223, - 'f', 4266, - 'n', 4283, - 'o', 4224, - 't', 4276, - '{', 3099, - '\t', 291, - ' ', 291, - 'I', 4292, - 'i', 4292, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 4225, + ',', 2911, + '-', 4224, + '.', 3278, + '0', 3371, + ';', 3523, + 'N', 4277, + '[', 2907, + ']', 2908, + '_', 4244, + '`', 626, + 'e', 4214, + 'f', 4257, + 'n', 4274, + 'o', 4215, + 't', 4267, + '{', 3091, + '\t', 297, + ' ', 297, + 'I', 4283, + 'i', 4283, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(581); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3402); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(583); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3394); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); END_STATE(); - case 304: + case 310: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 4234, - ',', 2919, - '-', 4233, - '.', 3287, - '0', 3379, - '?', 3189, - 'N', 4286, - '[', 2915, - ']', 2916, - '_', 4253, - '`', 624, - 'e', 4223, - 'f', 4266, - 'n', 4283, - 'o', 4224, - 't', 4276, - '{', 3099, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 4225, + ',', 2911, + '-', 4224, + '.', 3278, + '0', 3371, + '?', 3181, + 'N', 4277, + '[', 2907, + ']', 2908, + '_', 4244, + '`', 626, + 'e', 4214, + 'f', 4257, + 'n', 4274, + 'o', 4215, + 't', 4267, + '{', 3091, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(292); + lookahead == ' ') SKIP(298); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4292); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3402); + lookahead == 'i') ADVANCE(4283); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3394); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); END_STATE(); - case 305: + case 311: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 4234, - ',', 2919, - '-', 4233, - '.', 3287, - '0', 3379, - 'E', 4264, - 'N', 4286, - '[', 2915, - ']', 2916, - '_', 4253, - '`', 624, - 'e', 4225, - 'f', 4266, - 'n', 4283, - 'o', 4224, - 't', 4276, - '{', 3099, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 4225, + ',', 2911, + '-', 4224, + '.', 3278, + '0', 3371, + 'E', 4255, + 'N', 4277, + '[', 2907, + ']', 2908, + '_', 4244, + '`', 626, + 'e', 4216, + 'f', 4257, + 'n', 4274, + 'o', 4215, + 't', 4267, + '{', 3091, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(295); + lookahead == ' ') SKIP(301); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4292); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3402); + lookahead == 'i') ADVANCE(4283); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3394); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); END_STATE(); - case 306: + case 312: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 4234, - ',', 3515, - '-', 4233, - '.', 4230, - '0', 3379, - 'E', 4264, - 'N', 4286, - '[', 2915, - ']', 2916, - '_', 4253, - '`', 624, - 'e', 4225, - 'f', 4266, - 'n', 4283, - 'o', 4224, - 't', 4276, - '{', 3099, - '\t', 3516, - ' ', 3516, - 'I', 4292, - 'i', 4292, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 4225, + ',', 3506, + '-', 4224, + '.', 4221, + '0', 3371, + 'E', 4255, + 'N', 4277, + '[', 2907, + ']', 2908, + '_', 4244, + '`', 626, + 'e', 4216, + 'f', 4257, + 'n', 4274, + 'o', 4215, + 't', 4267, + '{', 3091, + '\t', 3507, + ' ', 3507, + 'I', 4283, + 'i', 4283, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3402); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3394); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); END_STATE(); - case 307: + case 313: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 4234, - ',', 3515, - '-', 4233, - '.', 4230, - '0', 3379, - 'N', 4286, - '[', 3451, - ']', 2916, - '_', 4253, - '`', 624, - 'e', 4223, - 'f', 4266, - 'n', 4283, - 'o', 4224, - 't', 4276, - '{', 3099, - '}', 3100, - '\t', 3516, - ' ', 3516, - 'I', 4292, - 'i', 4292, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 4225, + ',', 3506, + '-', 4224, + '.', 4221, + '0', 3371, + 'N', 4277, + '[', 3442, + ']', 2908, + '_', 4244, + '`', 626, + 'e', 4214, + 'f', 4257, + 'n', 4274, + 'o', 4215, + 't', 4267, + '{', 3091, + '\t', 3507, + ' ', 3507, + 'I', 4283, + 'i', 4283, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3402); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3394); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); END_STATE(); - case 308: + case 314: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 4234, - ',', 3515, - '-', 4233, - '.', 4230, - '0', 3379, - 'N', 4286, - '[', 2915, - ']', 2916, - '_', 4253, - '`', 624, - 'e', 4223, - 'f', 4266, - 'n', 4283, - 'o', 4224, - 't', 4276, - '{', 3099, - '}', 3100, - '\t', 3516, - ' ', 3516, - 'I', 4292, - 'i', 4292, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 4225, + ',', 3506, + '-', 4224, + '.', 4221, + '0', 3371, + 'N', 4277, + '[', 2907, + ']', 2908, + '_', 4244, + '`', 626, + 'e', 4214, + 'f', 4257, + 'n', 4274, + 'o', 4215, + 't', 4267, + '{', 3091, + '\t', 3507, + ' ', 3507, + 'I', 4283, + 'i', 4283, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3402); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3394); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); END_STATE(); - case 309: + case 315: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 4234, - ',', 3515, - '-', 4233, - '.', 4230, - '0', 3334, - 'E', 4264, - 'N', 4286, - '[', 2915, - ']', 2916, - '_', 4262, - '`', 624, - 'e', 4225, - 'f', 4266, - 'n', 4283, - 'o', 4224, - 't', 4276, - '{', 3099, - '\t', 3516, - ' ', 3516, - 'I', 4292, - 'i', 4292, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 4225, + ',', 3506, + '-', 4224, + '.', 4221, + '0', 3326, + 'E', 4255, + 'N', 4277, + '[', 2907, + ']', 2908, + '_', 4249, + '`', 626, + 'e', 4216, + 'f', 4257, + 'n', 4274, + 'o', 4215, + 't', 4267, + '{', 3091, + '\t', 3507, + ' ', 3507, + 'I', 4283, + 'i', 4283, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3349); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3341); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); END_STATE(); - case 310: + case 316: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 4234, - ',', 3515, - '-', 4233, - '.', 4232, - '0', 3379, - 'E', 4264, - 'N', 4286, - '[', 2915, - ']', 2916, - '_', 4253, - '`', 624, - 'e', 4225, - 'f', 4266, - 'n', 4283, - 'o', 4224, - 't', 4276, - '{', 3099, - '\t', 3516, - ' ', 3516, - 'I', 4292, - 'i', 4292, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 4225, + ',', 3506, + '-', 4224, + '.', 4223, + '0', 3371, + 'E', 4255, + 'N', 4277, + '[', 2907, + ']', 2908, + '_', 4244, + '`', 626, + 'e', 4216, + 'f', 4257, + 'n', 4274, + 'o', 4215, + 't', 4267, + '{', 3091, + '\t', 3507, + ' ', 3507, + 'I', 4283, + 'i', 4283, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3402); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3394); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); END_STATE(); - case 311: + case 317: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 4234, - ',', 3515, - '-', 4233, - '.', 4232, - '0', 3379, - 'N', 4286, - '[', 2915, - ']', 2916, - '_', 4253, - '`', 624, - 'e', 4223, - 'f', 4266, - 'n', 4283, - 'o', 4224, - 't', 4276, - '{', 3099, - '\t', 3516, - ' ', 3516, - 'I', 4292, - 'i', 4292, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 4225, + ',', 3506, + '-', 4224, + '.', 4223, + '0', 3371, + 'N', 4277, + '[', 2907, + ']', 2908, + '_', 4244, + '`', 626, + 'e', 4214, + 'f', 4257, + 'n', 4274, + 'o', 4215, + 't', 4267, + '{', 3091, + '\t', 3507, + ' ', 3507, + 'I', 4283, + 'i', 4283, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3402); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3394); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); END_STATE(); - case 312: + case 318: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 4234, - ',', 3515, - '-', 4233, - '.', 4232, - '0', 3334, - 'E', 4264, - 'N', 4286, - '[', 2915, - ']', 2916, - '_', 4262, - '`', 624, - 'e', 4225, - 'f', 4266, - 'n', 4283, - 'o', 4224, - 't', 4276, - '{', 3099, - '\t', 3516, - ' ', 3516, - 'I', 4292, - 'i', 4292, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 4225, + ',', 3506, + '-', 4224, + '.', 4223, + '0', 3326, + 'E', 4255, + 'N', 4277, + '[', 2907, + ']', 2908, + '_', 4249, + '`', 626, + 'e', 4216, + 'f', 4257, + 'n', 4274, + 'o', 4215, + 't', 4267, + '{', 3091, + '\t', 3507, + ' ', 3507, + 'I', 4283, + 'i', 4283, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3349); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3341); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); END_STATE(); - case 313: + case 319: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 4234, - ',', 3515, - '-', 4233, - '.', 3300, - '0', 3379, - '?', 3189, - 'N', 4286, - '[', 2915, - ']', 2916, - '_', 4253, - '`', 624, - 'e', 4223, - 'f', 4266, - 'n', 4283, - 'o', 4224, - 't', 4276, - '{', 3099, - '\t', 3516, - ' ', 3516, - 'I', 4292, - 'i', 4292, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 4225, + ',', 3506, + '-', 4224, + '.', 3292, + '0', 3371, + '?', 3181, + 'N', 4277, + '[', 2907, + ']', 2908, + '_', 4244, + '`', 626, + 'e', 4214, + 'f', 4257, + 'n', 4274, + 'o', 4215, + 't', 4267, + '{', 3091, + '\t', 3507, + ' ', 3507, + 'I', 4283, + 'i', 4283, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3402); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3394); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); END_STATE(); - case 314: + case 320: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 4234, - ',', 3515, - '-', 4233, - '.', 3300, - '0', 3379, - 'E', 4264, - 'N', 4286, - '[', 2915, - ']', 2916, - '_', 4253, - '`', 624, - 'e', 4225, - 'f', 4266, - 'n', 4283, - 'o', 4224, - 't', 4276, - '{', 3099, - '\t', 3516, - ' ', 3516, - 'I', 4292, - 'i', 4292, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 4225, + ',', 3506, + '-', 4224, + '.', 3292, + '0', 3371, + 'E', 4255, + 'N', 4277, + '[', 2907, + ']', 2908, + '_', 4244, + '`', 626, + 'e', 4216, + 'f', 4257, + 'n', 4274, + 'o', 4215, + 't', 4267, + '{', 3091, + '\t', 3507, + ' ', 3507, + 'I', 4283, + 'i', 4283, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3402); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3394); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); END_STATE(); - case 315: + case 321: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 4234, - ',', 3515, - '-', 4233, - '.', 3300, - '0', 3379, - 'N', 4286, - '[', 2915, - ']', 2916, - '_', 4253, - '`', 624, - 'e', 4223, - 'f', 4266, - 'n', 4283, - 'o', 4224, - 't', 4276, - '{', 3099, - '\t', 3516, - ' ', 3516, - 'I', 4292, - 'i', 4292, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 4225, + ',', 3506, + '-', 4224, + '.', 3292, + '0', 3371, + 'N', 4277, + '[', 2907, + ']', 2908, + '_', 4244, + '`', 626, + 'e', 4214, + 'f', 4257, + 'n', 4274, + 'o', 4215, + 't', 4267, + '{', 3091, + '\t', 3507, + ' ', 3507, + 'I', 4283, + 'i', 4283, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3402); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3394); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); END_STATE(); - case 316: + case 322: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 4234, - ',', 3515, - '-', 4233, - '.', 3287, - '0', 3379, - ';', 3532, - 'N', 4286, - '[', 2915, - ']', 2916, - '_', 4253, - '`', 624, - 'e', 4223, - 'f', 4266, - 'n', 4283, - 'o', 4224, - 't', 4276, - '{', 3099, - '\t', 3517, - ' ', 3517, - 'I', 4292, - 'i', 4292, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 4225, + ',', 3506, + '-', 4224, + '.', 3278, + '0', 3371, + ';', 3523, + 'N', 4277, + '[', 2907, + ']', 2908, + '_', 4244, + '`', 626, + 'e', 4214, + 'f', 4257, + 'n', 4274, + 'o', 4215, + 't', 4267, + '{', 3091, + '\t', 3508, + ' ', 3508, + 'I', 4283, + 'i', 4283, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3518); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3402); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3509); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3394); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); END_STATE(); - case 317: + case 323: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 4234, - ',', 3515, - '-', 4233, - '.', 3287, - '0', 3379, - '?', 3189, - 'N', 4286, - '[', 2915, - ']', 2916, - '_', 4253, - '`', 624, - 'e', 4223, - 'f', 4266, - 'n', 4283, - 'o', 4224, - 't', 4276, - '{', 3099, - '\t', 3516, - ' ', 3516, - 'I', 4292, - 'i', 4292, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 4225, + ',', 3506, + '-', 4224, + '.', 3278, + '0', 3371, + '?', 3181, + 'N', 4277, + '[', 2907, + ']', 2908, + '_', 4244, + '`', 626, + 'e', 4214, + 'f', 4257, + 'n', 4274, + 'o', 4215, + 't', 4267, + '{', 3091, + '\t', 3507, + ' ', 3507, + 'I', 4283, + 'i', 4283, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3402); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3394); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); END_STATE(); - case 318: + case 324: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 4234, - ',', 3515, - '-', 4233, - '.', 3287, - '0', 3379, - 'E', 4264, - 'N', 4286, - '[', 2915, - ']', 2916, - '_', 4253, - '`', 624, - 'e', 4225, - 'f', 4266, - 'n', 4283, - 'o', 4224, - 't', 4276, - '{', 3099, - '\t', 3516, - ' ', 3516, - 'I', 4292, - 'i', 4292, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 4225, + ',', 3506, + '-', 4224, + '.', 3278, + '0', 3371, + 'E', 4255, + 'N', 4277, + '[', 2907, + ']', 2908, + '_', 4244, + '`', 626, + 'e', 4216, + 'f', 4257, + 'n', 4274, + 'o', 4215, + 't', 4267, + '{', 3091, + '\t', 3507, + ' ', 3507, + 'I', 4283, + 'i', 4283, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3402); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3394); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); END_STATE(); - case 319: + case 325: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 4234, - ',', 3515, - '-', 4233, - '.', 3287, - '0', 3379, - 'N', 4286, - '[', 2915, - ']', 2916, - '_', 4253, - '`', 624, - 'e', 4223, - 'f', 4266, - 'n', 4283, - 'o', 4224, - 't', 4276, - '{', 3099, - '\t', 3516, - ' ', 3516, - 'I', 4292, - 'i', 4292, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 4225, + ',', 3506, + '-', 4224, + '.', 3278, + '0', 3371, + 'N', 4277, + '[', 2907, + ']', 2908, + '_', 4244, + '`', 626, + 'e', 4214, + 'f', 4257, + 'n', 4274, + 'o', 4215, + 't', 4267, + '{', 3091, + '\t', 3507, + ' ', 3507, + 'I', 4283, + 'i', 4283, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3402); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3394); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); END_STATE(); - case 320: + case 326: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 3528, - ',', 3515, - '-', 2980, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 3519, + ',', 3506, + '-', 2972, '.', 1132, - '0', 3385, + '0', 3377, 'I', 1318, 'N', 1313, - '[', 3451, - ']', 2916, + '[', 3442, '_', 1151, - '`', 624, + '`', 626, 'a', 1232, 'b', 1267, 'c', 1168, @@ -23186,567 +23735,568 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1261, 'u', 1278, 'w', 1215, - '}', 3100, - '\t', 3516, - ' ', 3516, + '}', 3092, + '\t', 3507, + ' ', 3507, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4600); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); + lookahead == '^') ADVANCE(4591); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && + (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1331); END_STATE(); - case 321: + case 327: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 4334, - ',', 2919, - '-', 4333, - '.', 4325, - '0', 3333, - 'E', 4343, - 'G', 4346, - 'K', 4346, - 'M', 4346, - 'N', 4391, - 'P', 4346, - 'T', 4346, - '[', 2915, - ']', 2916, - '_', 4348, - '`', 624, - 'd', 4362, - 'e', 4318, - 'f', 4361, - 'g', 4345, - 'h', 4377, - 'k', 4345, - 'm', 4347, - 'n', 4382, - 'o', 4317, - 'p', 4345, - 's', 4367, - 't', 4344, - 'u', 4383, - 'w', 4370, - '{', 3099, - 0xb5, 4383, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 4325, + ',', 2911, + '-', 4324, + '.', 4316, + '0', 3325, + 'E', 4334, + 'G', 4337, + 'K', 4337, + 'M', 4337, + 'N', 4382, + 'P', 4337, + 'T', 4337, + '[', 2907, + ']', 2908, + '_', 4339, + '`', 626, + 'd', 4353, + 'e', 4309, + 'f', 4352, + 'g', 4336, + 'h', 4368, + 'k', 4336, + 'm', 4338, + 'n', 4373, + 'o', 4308, + 'p', 4336, + 's', 4358, + 't', 4335, + 'u', 4374, + 'w', 4361, + '{', 3091, + 0xb5, 4374, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(295); + lookahead == ' ') SKIP(301); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); + lookahead == 'b') ADVANCE(3420); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4398); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3348); + lookahead == 'i') ADVANCE(4389); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3340); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); END_STATE(); - case 322: + case 328: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 4334, - ',', 2919, - '-', 4333, - '.', 4325, - '0', 3333, - 'E', 4357, - 'N', 4391, - '[', 2915, - ']', 2916, - '_', 4348, - '`', 624, - 'e', 4319, - 'f', 4361, - 'n', 4387, - 'o', 4317, - 't', 4378, - '{', 3099, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 4325, + ',', 2911, + '-', 4324, + '.', 4316, + '0', 3325, + 'E', 4348, + 'N', 4382, + '[', 2907, + ']', 2908, + '_', 4339, + '`', 626, + 'e', 4310, + 'f', 4352, + 'n', 4378, + 'o', 4308, + 't', 4369, + '{', 3091, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(295); + lookahead == ' ') SKIP(301); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4398); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3348); + lookahead == 'i') ADVANCE(4389); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3340); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); END_STATE(); - case 323: + case 329: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 4334, - ',', 2919, - '-', 4333, - '.', 4325, - '0', 3383, - 'E', 4343, - 'G', 4346, - 'K', 4346, - 'M', 4346, - 'N', 4391, - 'P', 4346, - 'T', 4346, - '[', 2915, - ']', 2916, - '_', 4353, - '`', 624, - 'd', 4362, - 'e', 4318, - 'f', 4361, - 'g', 4345, - 'h', 4377, - 'k', 4345, - 'm', 4347, - 'n', 4382, - 'o', 4317, - 'p', 4345, - 's', 4367, - 't', 4344, - 'u', 4383, - 'w', 4370, - '{', 3099, - 0xb5, 4383, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 4325, + ',', 2911, + '-', 4324, + '.', 4316, + '0', 3375, + 'E', 4334, + 'G', 4337, + 'K', 4337, + 'M', 4337, + 'N', 4382, + 'P', 4337, + 'T', 4337, + '[', 2907, + ']', 2908, + '_', 4344, + '`', 626, + 'd', 4353, + 'e', 4309, + 'f', 4352, + 'g', 4336, + 'h', 4368, + 'k', 4336, + 'm', 4338, + 'n', 4373, + 'o', 4308, + 'p', 4336, + 's', 4358, + 't', 4335, + 'u', 4374, + 'w', 4361, + '{', 3091, + 0xb5, 4374, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(295); + lookahead == ' ') SKIP(301); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); + lookahead == 'b') ADVANCE(3420); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4398); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3406); + lookahead == 'i') ADVANCE(4389); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3398); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); END_STATE(); - case 324: + case 330: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 4334, - ',', 2919, - '-', 4333, - '.', 4325, - '0', 3383, - 'E', 4346, - 'G', 4346, - 'K', 4346, - 'M', 4346, - 'N', 4391, - 'P', 4346, - 'T', 4346, - '[', 2915, - ']', 2916, - '_', 4353, - '`', 624, - 'd', 4362, - 'e', 4315, - 'f', 4361, - 'g', 4345, - 'h', 4377, - 'k', 4345, - 'm', 4347, - 'n', 4382, - 'o', 4317, - 'p', 4345, - 's', 4367, - 't', 4344, - 'u', 4383, - 'w', 4370, - '{', 3099, - 0xb5, 4383, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 4325, + ',', 2911, + '-', 4324, + '.', 4316, + '0', 3375, + 'E', 4337, + 'G', 4337, + 'K', 4337, + 'M', 4337, + 'N', 4382, + 'P', 4337, + 'T', 4337, + '[', 2907, + ']', 2908, + '_', 4344, + '`', 626, + 'd', 4353, + 'e', 4306, + 'f', 4352, + 'g', 4336, + 'h', 4368, + 'k', 4336, + 'm', 4338, + 'n', 4373, + 'o', 4308, + 'p', 4336, + 's', 4358, + 't', 4335, + 'u', 4374, + 'w', 4361, + '{', 3091, + 0xb5, 4374, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(295); + lookahead == ' ') SKIP(301); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); + lookahead == 'b') ADVANCE(3420); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4398); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3406); + lookahead == 'i') ADVANCE(4389); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3398); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); END_STATE(); - case 325: + case 331: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 4334, - ',', 2919, - '-', 4333, - '.', 4325, - '0', 3383, - 'E', 4357, - 'N', 4391, - '[', 2915, - ']', 2916, - '_', 4353, - '`', 624, - 'e', 4319, - 'f', 4361, - 'n', 4387, - 'o', 4317, - 't', 4378, - '{', 3099, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 4325, + ',', 2911, + '-', 4324, + '.', 4316, + '0', 3375, + 'E', 4348, + 'N', 4382, + '[', 2907, + ']', 2908, + '_', 4344, + '`', 626, + 'e', 4310, + 'f', 4352, + 'n', 4378, + 'o', 4308, + 't', 4369, + '{', 3091, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(295); + lookahead == ' ') SKIP(301); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4398); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3406); + lookahead == 'i') ADVANCE(4389); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3398); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); END_STATE(); - case 326: + case 332: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 4334, - ',', 2919, - '-', 4333, - '.', 4325, - '0', 3383, - 'N', 4391, - '[', 2915, - ']', 2916, - '_', 4353, - '`', 624, - 'e', 4316, - 'f', 4361, - 'n', 4387, - 'o', 4317, - 't', 4378, - '{', 3099, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 4325, + ',', 2911, + '-', 4324, + '.', 4316, + '0', 3375, + 'N', 4382, + '[', 2907, + ']', 2908, + '_', 4344, + '`', 626, + 'e', 4307, + 'f', 4352, + 'n', 4378, + 'o', 4308, + 't', 4369, + '{', 3091, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(295); + lookahead == ' ') SKIP(301); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4398); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3406); + lookahead == 'i') ADVANCE(4389); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3398); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); END_STATE(); - case 327: + case 333: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 4334, - ',', 2919, - '-', 4333, - '.', 4324, - '0', 3333, - 'E', 4357, - 'N', 4391, - '[', 2915, - ']', 2916, - '_', 4348, - '`', 624, - 'e', 4319, - 'f', 4361, - 'n', 4387, - 'o', 4317, - 't', 4378, - '{', 3099, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 4325, + ',', 2911, + '-', 4324, + '.', 4315, + '0', 3325, + 'E', 4348, + 'N', 4382, + '[', 2907, + ']', 2908, + '_', 4339, + '`', 626, + 'e', 4310, + 'f', 4352, + 'n', 4378, + 'o', 4308, + 't', 4369, + '{', 3091, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(295); + lookahead == ' ') SKIP(301); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4398); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3348); + lookahead == 'i') ADVANCE(4389); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3340); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); END_STATE(); - case 328: + case 334: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 4334, - ',', 2919, - '-', 4333, - '.', 4324, - '0', 3383, - 'E', 4357, - 'N', 4391, - '[', 2915, - ']', 2916, - '_', 4353, - '`', 624, - 'e', 4319, - 'f', 4361, - 'n', 4387, - 'o', 4317, - 't', 4378, - '{', 3099, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 4325, + ',', 2911, + '-', 4324, + '.', 4315, + '0', 3375, + 'E', 4348, + 'N', 4382, + '[', 2907, + ']', 2908, + '_', 4344, + '`', 626, + 'e', 4310, + 'f', 4352, + 'n', 4378, + 'o', 4308, + 't', 4369, + '{', 3091, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(295); + lookahead == ' ') SKIP(301); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4398); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3406); + lookahead == 'i') ADVANCE(4389); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3398); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); END_STATE(); - case 329: + case 335: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 4334, - ',', 2919, - '-', 4333, - '.', 4324, - '0', 3383, - 'N', 4391, - '[', 2915, - ']', 2916, - '_', 4353, - '`', 624, - 'e', 4316, - 'f', 4361, - 'n', 4387, - 'o', 4317, - 't', 4378, - '{', 3099, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 4325, + ',', 2911, + '-', 4324, + '.', 4315, + '0', 3375, + 'N', 4382, + '[', 2907, + ']', 2908, + '_', 4344, + '`', 626, + 'e', 4307, + 'f', 4352, + 'n', 4378, + 'o', 4308, + 't', 4369, + '{', 3091, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(295); + lookahead == ' ') SKIP(301); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4398); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3406); + lookahead == 'i') ADVANCE(4389); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3398); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); END_STATE(); - case 330: + case 336: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 4334, - ',', 2919, - '-', 4333, - '.', 3302, - '0', 3383, - 'E', 4343, - 'G', 4346, - 'K', 4346, - 'M', 4346, - 'N', 4391, - 'P', 4346, - 'T', 4346, - '[', 2915, - ']', 2916, - '_', 4353, - '`', 624, - 'd', 4362, - 'e', 4318, - 'f', 4361, - 'g', 4345, - 'h', 4377, - 'k', 4345, - 'm', 4347, - 'n', 4382, - 'o', 4317, - 'p', 4345, - 's', 4367, - 't', 4344, - 'u', 4383, - 'w', 4370, - '{', 3099, - 0xb5, 4383, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 4325, + ',', 2911, + '-', 4324, + '.', 3294, + '0', 3375, + 'E', 4334, + 'G', 4337, + 'K', 4337, + 'M', 4337, + 'N', 4382, + 'P', 4337, + 'T', 4337, + '[', 2907, + ']', 2908, + '_', 4344, + '`', 626, + 'd', 4353, + 'e', 4309, + 'f', 4352, + 'g', 4336, + 'h', 4368, + 'k', 4336, + 'm', 4338, + 'n', 4373, + 'o', 4308, + 'p', 4336, + 's', 4358, + 't', 4335, + 'u', 4374, + 'w', 4361, + '{', 3091, + 0xb5, 4374, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(295); + lookahead == ' ') SKIP(301); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); + lookahead == 'b') ADVANCE(3420); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4398); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3406); + lookahead == 'i') ADVANCE(4389); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3398); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); END_STATE(); - case 331: + case 337: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 4334, - ',', 2919, - '-', 4333, - '.', 3302, - '0', 3383, - 'E', 4357, - 'N', 4391, - '[', 2915, - ']', 2916, - '_', 4353, - '`', 624, - 'e', 4319, - 'f', 4361, - 'n', 4387, - 'o', 4317, - 't', 4378, - '{', 3099, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 4325, + ',', 2911, + '-', 4324, + '.', 3294, + '0', 3375, + 'E', 4348, + 'N', 4382, + '[', 2907, + ']', 2908, + '_', 4344, + '`', 626, + 'e', 4310, + 'f', 4352, + 'n', 4378, + 'o', 4308, + 't', 4369, + '{', 3091, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(295); + lookahead == ' ') SKIP(301); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4398); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3406); + lookahead == 'i') ADVANCE(4389); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3398); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); END_STATE(); - case 332: + case 338: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 4334, - ',', 2919, - '-', 4333, - '.', 3293, - '0', 3383, - 'E', 4357, - 'N', 4391, - '[', 2915, - ']', 2916, - '_', 4353, - '`', 624, - 'e', 4319, - 'f', 4361, - 'n', 4387, - 'o', 4317, - 't', 4378, - '{', 3099, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 4325, + ',', 2911, + '-', 4324, + '.', 3285, + '0', 3375, + 'E', 4348, + 'N', 4382, + '[', 2907, + ']', 2908, + '_', 4344, + '`', 626, + 'e', 4310, + 'f', 4352, + 'n', 4378, + 'o', 4308, + 't', 4369, + '{', 3091, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(295); + lookahead == ' ') SKIP(301); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4398); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3406); + lookahead == 'i') ADVANCE(4389); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3398); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); END_STATE(); - case 333: + case 339: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 4334, - ',', 3515, - '-', 4333, - '.', 4324, - '0', 3383, - 'N', 4391, - '[', 2915, - ']', 2916, - '_', 4353, - '`', 624, - 'e', 4316, - 'f', 4361, - 'n', 4387, - 'o', 4317, - 't', 4378, - '{', 3099, - '\t', 3516, - ' ', 3516, - 'I', 4398, - 'i', 4398, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 4325, + ',', 3506, + '-', 4324, + '.', 4315, + '0', 3375, + 'N', 4382, + '[', 2907, + ']', 2908, + '_', 4344, + '`', 626, + 'e', 4307, + 'f', 4352, + 'n', 4378, + 'o', 4308, + 't', 4369, + '{', 3091, + '\t', 3507, + ' ', 3507, + 'I', 4389, + 'i', 4389, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3406); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3398); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); END_STATE(); - case 334: + case 340: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 3529, - '-', 2983, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 3520, + '-', 2975, '.', 1341, - '0', 3384, + '0', 3376, 'I', 1861, 'N', 1856, '_', 1596, - '`', 624, + '`', 626, 'a', 1712, 'b', 1761, 'c', 1605, @@ -23764,11 +24314,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1756, 'u', 1787, 'w', 1686, - '}', 3100, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(334); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3407); + lookahead == ' ') SKIP(340); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3399); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -23777,189 +24327,133 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 335: + case 341: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - '(', 2917, - '+', 4237, - ',', 2919, - '-', 4236, - '.', 4231, - '0', 3379, - 'N', 4286, - '[', 2915, - ']', 2916, - '_', 4253, - '`', 624, - 'e', 4223, - 'f', 4266, - 'n', 4283, - 'o', 4224, - 't', 4276, - '{', 3099, + '"', 3482, + '#', 4780, + '$', 2912, + '\'', 519, + '(', 2909, + '+', 4228, + ',', 2911, + '-', 4227, + '.', 4222, + '0', 3371, + 'N', 4277, + '[', 2907, + ']', 2908, + '_', 4244, + '`', 626, + 'e', 4214, + 'f', 4257, + 'n', 4274, + 'o', 4215, + 't', 4267, + '{', 3091, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(335); + lookahead == ' ') SKIP(341); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4292); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3402); + lookahead == 'i') ADVANCE(4283); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3394); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4314); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4305); END_STATE(); - case 336: + case 342: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - ',', 2919, - '-', 2961, - '.', 3283, - ':', 3520, - ';', 3532, - '=', 3661, - '>', 2949, - '?', 3189, - '`', 624, - '{', 3099, - '\t', 337, - ' ', 337, + '"', 3482, + '#', 4780, + '\'', 519, + '+', 1337, + ',', 3506, + '-', 567, + '.', 1593, + 'I', 1861, + 'N', 1856, + ']', 2908, + '_', 1596, + '`', 626, + 'a', 1722, + 'b', 1778, + 'c', 1620, + 'd', 1660, + 'e', 1724, + 'f', 1607, + 'h', 1699, + 'i', 1588, + 'l', 1671, + 'm', 1618, + 'n', 1665, + 'o', 1834, + 'r', 1676, + 's', 1748, + 't', 1762, + 'u', 1793, + 'w', 1690, + '\t', 3507, + ' ', 3507, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(577); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); if (lookahead != 0 && - (lookahead < ' ' || '$' < lookahead) && - (lookahead < '&' || '.' < lookahead) && - (lookahead < ':' || '@' < lookahead) && + (lookahead < '"' || '$' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && lookahead != '[' && - lookahead != ']' && - lookahead != '^' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2652); + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 337: + case 343: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '$', 2920, - '\'', 517, - ',', 2919, - '-', 2961, - ':', 3520, - ';', 3532, - '>', 2949, - '?', 3189, - '`', 624, - '{', 3099, - '\t', 337, - ' ', 337, + '"', 3482, + '#', 4780, + '\'', 519, + '+', 1337, + '-', 550, + '.', 3301, + '?', 3181, + 'I', 1861, + 'N', 1856, + '_', 1596, + '`', 626, + 'a', 1722, + 'b', 1778, + 'c', 1620, + 'd', 1660, + 'e', 1724, + 'f', 1607, + 'h', 1699, + 'i', 1588, + 'l', 1671, + 'm', 1618, + 'n', 1665, + 'o', 1834, + 'r', 1676, + 's', 1748, + 't', 1762, + 'u', 1793, + 'w', 1690, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(577); - if (lookahead != 0 && - (lookahead < ' ' || '$' < lookahead) && - (lookahead < '&' || '.' < lookahead) && - (lookahead < ':' || '@' < lookahead) && - lookahead != '[' && - lookahead != ']' && - lookahead != '^' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2652); + if (lookahead == '\t' || + lookahead == ' ') SKIP(346); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(1875); END_STATE(); - case 338: + case 344: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '\'', 517, + '"', 3482, + '#', 4780, + '\'', 519, '+', 1337, - ',', 3515, - '-', 565, - '.', 1593, + '-', 550, + '.', 3301, 'I', 1861, 'N', 1856, - ']', 2916, '_', 1596, - '`', 624, - 'a', 1722, - 'b', 1778, - 'c', 1620, - 'd', 1660, - 'e', 1724, - 'f', 1607, - 'h', 1699, - 'i', 1588, - 'l', 1671, - 'm', 1618, - 'n', 1665, - 'o', 1834, - 'r', 1676, - 's', 1748, - 't', 1762, - 'u', 1793, - 'w', 1690, - '\t', 3516, - ' ', 3516, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); - if (lookahead != 0 && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); - END_STATE(); - case 339: - ADVANCE_MAP( - '"', 3491, - '#', 4789, - '\'', 517, - '+', 1337, - '-', 548, - '.', 3309, - '?', 3189, - 'I', 1861, - 'N', 1856, - '_', 1596, - '`', 624, - 'a', 1722, - 'b', 1778, - 'c', 1620, - 'd', 1660, - 'e', 1724, - 'f', 1607, - 'h', 1699, - 'i', 1588, - 'l', 1671, - 'm', 1618, - 'n', 1665, - 'o', 1834, - 'r', 1676, - 's', 1748, - 't', 1762, - 'u', 1793, - 'w', 1690, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(343); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(1875); - END_STATE(); - case 340: - ADVANCE_MAP( - '"', 3491, - '#', 4789, - '\'', 517, - '+', 1337, - '-', 548, - '.', 3309, - 'I', 1861, - 'N', 1856, - '_', 1596, - '`', 624, + '`', 626, 'a', 1722, 'b', 1778, 'c', 1620, @@ -23979,89 +24473,45 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'w', 1690, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(344); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); + lookahead == ' ') SKIP(347); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(1875); END_STATE(); - case 341: - ADVANCE_MAP( - '"', 3491, - '#', 4789, - '\'', 517, - '+', 1337, - '-', 548, - '.', 1593, - ':', 3520, - ';', 3532, - 'I', 1861, - 'N', 1856, - '_', 1596, - '`', 624, - 'a', 1722, - 'b', 1778, - 'c', 1620, - 'd', 1660, - 'e', 1724, - 'f', 1607, - 'h', 1699, - 'i', 1588, - 'l', 1671, - 'm', 1618, - 'n', 1665, - 'o', 1834, - 'r', 1676, - 's', 1748, - 't', 1762, - 'u', 1793, - 'w', 1690, - '\t', 341, - ' ', 341, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(577); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); - if (lookahead != 0 && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); - END_STATE(); - case 342: + case 345: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '\'', 517, + '"', 3482, + '#', 4780, + '\'', 519, '+', 1337, - '-', 548, + '-', 550, '.', 1593, - '=', 3661, - 'I', 2808, - 'N', 2800, - '_', 2676, - '`', 624, - 'a', 2731, - 'b', 2760, - 'c', 2688, - 'd', 2697, - 'e', 2734, - 'f', 2683, - 'h', 2722, - 'i', 2671, - 'l', 2704, - 'm', 2685, - 'n', 2698, - 'o', 2792, - 'r', 2699, - 's', 2747, - 't', 2755, - 'u', 2770, - 'w', 2719, + '=', 3652, + 'I', 2800, + 'N', 2792, + '_', 2668, + '`', 626, + 'a', 2723, + 'b', 2752, + 'c', 2680, + 'd', 2689, + 'e', 2726, + 'f', 2675, + 'h', 2714, + 'i', 2663, + 'l', 2696, + 'm', 2677, + 'n', 2690, + 'o', 2784, + 'r', 2691, + 's', 2739, + 't', 2747, + 'u', 2762, + 'w', 2711, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(344); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2676); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2831); + lookahead == ' ') SKIP(347); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2668); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2823); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && @@ -24070,19 +24520,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < 'A' || '[' < lookahead) && (lookahead < ']' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 343: + case 346: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '\'', 517, + '"', 3482, + '#', 4780, + '\'', 519, '+', 1337, - '-', 548, + '-', 550, '.', 1593, - '?', 3189, + '?', 3181, 'I', 1861, 'N', 1856, '_', 1596, - '`', 624, + '`', 626, 'a', 1722, 'b', 1778, 'c', 1620, @@ -24102,22 +24552,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'w', 1690, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(343); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); + lookahead == ' ') SKIP(346); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(1875); END_STATE(); - case 344: + case 347: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '\'', 517, + '"', 3482, + '#', 4780, + '\'', 519, '+', 1337, - '-', 548, + '-', 550, '.', 1593, 'I', 1861, 'N', 1856, '_', 1596, - '`', 624, + '`', 626, 'a', 1722, 'b', 1778, 'c', 1620, @@ -24137,64 +24587,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'w', 1690, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(344); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); + lookahead == ' ') SKIP(347); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(1875); END_STATE(); - case 345: - ADVANCE_MAP( - '"', 3491, - '#', 4789, - '\'', 517, - '+', 1337, - '-', 3874, - '.', 1593, - 'I', 1861, - 'N', 1856, - '_', 1596, - '`', 624, - 'a', 1722, - 'b', 1778, - 'c', 1620, - 'd', 1660, - 'e', 1724, - 'f', 1607, - 'h', 1699, - 'i', 1588, - 'l', 1671, - 'm', 1618, - 'n', 1665, - 'o', 1834, - 'r', 1676, - 's', 1748, - 't', 1762, - 'u', 1793, - 'w', 1690, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(344); - if (lookahead == '$' || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4002); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); - END_STATE(); - case 346: + case 348: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '\'', 517, + '"', 3482, + '#', 4780, + '\'', 519, '+', 1337, - '-', 3874, + '-', 3865, '.', 1342, - 'B', 3429, + 'B', 3420, 'E', 1582, 'G', 1587, 'I', 1861, @@ -24204,9 +24609,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'P', 1587, 'T', 1587, '_', 1596, - '`', 624, + '`', 626, 'a', 1722, - 'b', 3431, + 'b', 3422, 'c', 1620, 'd', 1615, 'e', 1581, @@ -24228,12 +24633,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 0xb5, 1784, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(344); + lookahead == ' ') SKIP(347); if (lookahead == '$' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4002); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); + lookahead == '^') ADVANCE(3993); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -24242,15 +24647,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'i' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 347: + case 349: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '\'', 517, + '"', 3482, + '#', 4780, + '\'', 519, '+', 1337, - '-', 3874, + '-', 3865, '.', 1342, - 'B', 3429, + 'B', 3420, 'E', 1582, 'G', 1587, 'I', 1861, @@ -24260,9 +24665,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'P', 1587, 'T', 1587, '_', 1601, - '`', 624, + '`', 626, 'a', 1722, - 'b', 3431, + 'b', 3422, 'c', 1620, 'd', 1615, 'e', 1581, @@ -24284,12 +24689,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 0xb5, 1784, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(344); + lookahead == ' ') SKIP(347); if (lookahead == '$' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4002); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + lookahead == '^') ADVANCE(3993); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -24298,15 +24703,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'i' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 348: + case 350: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '\'', 517, + '"', 3482, + '#', 4780, + '\'', 519, '+', 1337, - '-', 3874, + '-', 3865, '.', 1342, - 'B', 3429, + 'B', 3420, 'E', 1587, 'G', 1587, 'I', 1861, @@ -24316,9 +24721,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'P', 1587, 'T', 1587, '_', 1596, - '`', 624, + '`', 626, 'a', 1722, - 'b', 3431, + 'b', 3422, 'c', 1620, 'd', 1615, 'e', 1584, @@ -24340,12 +24745,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 0xb5, 1784, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(344); + lookahead == ' ') SKIP(347); if (lookahead == '$' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4002); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); + lookahead == '^') ADVANCE(3993); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -24354,15 +24759,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'i' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 349: + case 351: ADVANCE_MAP( - '"', 3491, - '#', 4789, - '\'', 517, + '"', 3482, + '#', 4780, + '\'', 519, '+', 1337, - '-', 3874, - '.', 3298, - 'B', 3429, + '-', 3865, + '.', 3290, + 'B', 3420, 'E', 1582, 'G', 1587, 'I', 1861, @@ -24372,9 +24777,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'P', 1587, 'T', 1587, '_', 1596, - '`', 624, + '`', 626, 'a', 1722, - 'b', 3431, + 'b', 3422, 'c', 1620, 'd', 1615, 'e', 1581, @@ -24396,12 +24801,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 0xb5, 1784, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(344); + lookahead == ' ') SKIP(347); if (lookahead == '$' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4002); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); + lookahead == '^') ADVANCE(3993); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -24410,442 +24815,408 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'i' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 350: - ADVANCE_MAP( - '"', 3491, - '#', 4789, - '\'', 517, - ',', 2919, - '-', 603, - '<', 2947, - '=', 1073, - '>', 2949, - '@', 2951, - '`', 624, - '{', 3099, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(351); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2652); - END_STATE(); - case 351: - ADVANCE_MAP( - '"', 3491, - '#', 4789, - '\'', 517, - ',', 2919, - '-', 603, - '=', 1073, - '>', 2949, - '`', 624, - '{', 3099, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(351); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2652); - END_STATE(); case 352: - if (lookahead == '"') ADVANCE(3491); - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '\'') ADVANCE(517); - if (lookahead == '`') ADVANCE(624); + if (lookahead == '"') ADVANCE(3482); + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '\'') ADVANCE(519); + if (lookahead == '`') ADVANCE(626); if (lookahead == '\t' || lookahead == ' ') SKIP(352); END_STATE(); case 353: - if (lookahead == '"') ADVANCE(3491); - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '\'') ADVANCE(3533); - if (lookahead == '`') ADVANCE(3592); + if (lookahead == '"') ADVANCE(3482); + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '\'') ADVANCE(3524); + if (lookahead == '`') ADVANCE(3583); if (lookahead == '\t' || lookahead == ' ') SKIP(352); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3601); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3592); END_STATE(); case 354: ADVANCE_MAP( - '"', 3491, - '#', 4793, - '$', 2924, - '\'', 517, - '(', 3220, - '+', 3527, + '"', 3482, + '#', 4784, + '$', 2916, + '\'', 519, + '(', 3212, + '+', 3518, ',', 1875, - '-', 2981, - '.', 4661, - '0', 4664, - 'I', 4770, - 'N', 4762, - '_', 4666, - '`', 624, - 'a', 4712, - 'b', 4733, - 'c', 4670, - 'd', 4681, - 'e', 4717, - 'f', 4671, - 'h', 4704, - 'i', 4663, - 'l', 4694, - 'm', 4672, - 'n', 4682, - 'o', 4759, - 'r', 4683, - 's', 4723, - 't', 4729, - 'u', 4741, - 'w', 4703, - '}', 3100, + '-', 2973, + '.', 4652, + '0', 4655, + 'I', 4761, + 'N', 4753, + '_', 4657, + '`', 626, + 'a', 4703, + 'b', 4724, + 'c', 4661, + 'd', 4672, + 'e', 4708, + 'f', 4662, + 'h', 4695, + 'i', 4654, + 'l', 4685, + 'm', 4663, + 'n', 4673, + 'o', 4750, + 'r', 4674, + 's', 4714, + 't', 4720, + 'u', 4732, + 'w', 4694, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(282); + lookahead == ' ') SKIP(288); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4782); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4666); + lookahead == '^') ADVANCE(4773); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4657); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4781); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4772); END_STATE(); case 355: ADVANCE_MAP( - '"', 3491, - '#', 4793, - '$', 2924, - '\'', 517, - '(', 3220, - '+', 3527, - ',', 3515, - '-', 2981, - '.', 4661, - '0', 4664, - 'I', 4770, - 'N', 4762, - '_', 4666, - '`', 624, - 'a', 4712, - 'b', 4733, - 'c', 4670, - 'd', 4681, - 'e', 4717, - 'f', 4671, - 'h', 4704, - 'i', 4663, - 'l', 4694, - 'm', 4672, - 'n', 4682, - 'o', 4759, - 'r', 4683, - 's', 4723, - 't', 4729, - 'u', 4741, - 'w', 4703, - '}', 3100, - '\t', 3516, - ' ', 3516, + '"', 3482, + '#', 4784, + '$', 2916, + '\'', 519, + '(', 3212, + '+', 3518, + ',', 3506, + '-', 2973, + '.', 4652, + '0', 4655, + 'I', 4761, + 'N', 4753, + '_', 4657, + '`', 626, + 'a', 4703, + 'b', 4724, + 'c', 4661, + 'd', 4672, + 'e', 4708, + 'f', 4662, + 'h', 4695, + 'i', 4654, + 'l', 4685, + 'm', 4663, + 'n', 4673, + 'o', 4750, + 'r', 4674, + 's', 4714, + 't', 4720, + 'u', 4732, + 'w', 4694, + '}', 3092, + '\t', 3507, + ' ', 3507, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4782); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4666); + lookahead == '^') ADVANCE(4773); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4657); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4781); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4772); END_STATE(); case 356: ADVANCE_MAP( - '"', 3491, - '#', 4796, - '$', 2922, - '\'', 517, - '(', 2917, - '+', 4025, - '-', 2982, - '.', 4026, - '0', 4044, - 'N', 4182, - '[', 2915, - '_', 4046, - '`', 624, - 'f', 4056, - 'n', 4119, - 't', 4127, - '{', 3099, + '"', 3482, + '#', 4787, + '$', 2914, + '\'', 519, + '(', 2909, + '+', 4016, + '-', 2974, + '.', 4017, + '0', 4035, + 'N', 4173, + '[', 2907, + '_', 4037, + '`', 626, + 'f', 4047, + 'n', 4110, + 't', 4118, + '{', 3091, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(200); + lookahead == ' ') SKIP(205); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4191); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4049); + lookahead == 'i') ADVANCE(4182); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4040); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4221); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4212); END_STATE(); case 357: ADVANCE_MAP( - '"', 3491, - '#', 4796, - '\'', 517, - '+', 4027, - '-', 4021, - '.', 4051, - 'I', 4193, - 'N', 4183, - '_', 4055, - '`', 624, - 'a', 4103, - 'b', 4132, - 'c', 4057, - 'd', 4071, - 'e', 4101, - 'f', 4058, - 'h', 4092, - 'i', 4042, - 'l', 4078, - 'm', 4059, - 'n', 4072, - 'o', 4170, - 'r', 4073, - 's', 4116, - 't', 4130, - 'u', 4148, - 'w', 4091, + '"', 3482, + '#', 4787, + '\'', 519, + '+', 4018, + '-', 4012, + '.', 4042, + 'I', 4184, + 'N', 4174, + '_', 4046, + '`', 626, + 'a', 4094, + 'b', 4123, + 'c', 4048, + 'd', 4062, + 'e', 4092, + 'f', 4049, + 'h', 4083, + 'i', 4033, + 'l', 4069, + 'm', 4050, + 'n', 4063, + 'o', 4161, + 'r', 4064, + 's', 4107, + 't', 4121, + 'u', 4139, + 'w', 4082, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(344); + lookahead == ' ') SKIP(347); if (lookahead == '$' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4221); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4055); + lookahead == '^') ADVANCE(4212); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4046); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4201); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4192); END_STATE(); case 358: ADVANCE_MAP( - '"', 3491, - '#', 4795, - '$', 2925, - '\'', 517, - '(', 3220, - '+', 4437, - ',', 3515, - '-', 4436, - '.', 4438, - '0', 4451, - 'N', 4480, - '[', 2915, - ']', 2916, - '_', 4453, - '`', 624, - 'e', 4430, - 'f', 4459, - 'n', 4476, - 'o', 4431, - 't', 4469, - '{', 3099, - '\t', 3516, - ' ', 3516, - 'I', 4485, - 'i', 4485, + '"', 3482, + '#', 4786, + '$', 2917, + '\'', 519, + '(', 3212, + '+', 4428, + ',', 3506, + '-', 4427, + '.', 4429, + '0', 4442, + 'N', 4471, + '[', 2907, + ']', 2908, + '_', 4444, + '`', 626, + 'e', 4421, + 'f', 4450, + 'n', 4467, + 'o', 4422, + 't', 4460, + '{', 3091, + '\t', 3507, + ' ', 3507, + 'I', 4476, + 'i', 4476, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4456); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4447); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4508); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4499); END_STATE(); case 359: ADVANCE_MAP( - '"', 3491, - '#', 4795, - '$', 2925, - '\'', 517, - '(', 2917, - '+', 4437, - ',', 2919, - '-', 4436, - '.', 4438, - '0', 4451, - 'N', 4480, - '[', 2915, - ']', 2916, - '_', 4453, - '`', 624, - 'e', 4430, - 'f', 4459, - 'n', 4476, - 'o', 4431, - 't', 4469, - '{', 3099, + '"', 3482, + '#', 4786, + '$', 2917, + '\'', 519, + '(', 2909, + '+', 4428, + ',', 2911, + '-', 4427, + '.', 4429, + '0', 4442, + 'N', 4471, + '[', 2907, + ']', 2908, + '_', 4444, + '`', 626, + 'e', 4421, + 'f', 4450, + 'n', 4467, + 'o', 4422, + 't', 4460, + '{', 3091, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(295); + lookahead == ' ') SKIP(301); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4485); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4456); + lookahead == 'i') ADVANCE(4476); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4447); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4508); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4499); END_STATE(); case 360: - if (lookahead == '"') ADVANCE(3491); - if (lookahead == '#') ADVANCE(3494); - if (lookahead == '\\') ADVANCE(838); + if (lookahead == '"') ADVANCE(3482); + if (lookahead == '#') ADVANCE(3485); + if (lookahead == '\\') ADVANCE(842); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3493); - if (lookahead != 0) ADVANCE(3494); + lookahead == ' ') ADVANCE(3484); + if (lookahead != 0) ADVANCE(3485); END_STATE(); case 361: - if (lookahead == '"') ADVANCE(3492); - if (lookahead == '#') ADVANCE(4799); - if (lookahead == '$') ADVANCE(2923); - if (lookahead == '\'') ADVANCE(3733); - if (lookahead == '(') ADVANCE(2917); - if (lookahead == '`') ADVANCE(3734); + if (lookahead == '"') ADVANCE(3483); + if (lookahead == '#') ADVANCE(4790); + if (lookahead == '$') ADVANCE(2915); + if (lookahead == '\'') ADVANCE(3724); + if (lookahead == '(') ADVANCE(2909); + if (lookahead == '`') ADVANCE(3725); if (lookahead == '\t' || lookahead == ' ') SKIP(361); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3735); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3726); END_STATE(); case 362: - if (lookahead == '"') ADVANCE(3511); - if (lookahead == '#') ADVANCE(3502); - if (lookahead == '(') ADVANCE(2917); - if (lookahead == '\\') ADVANCE(832); + if (lookahead == '"') ADVANCE(3502); + if (lookahead == '#') ADVANCE(3493); + if (lookahead == '(') ADVANCE(2909); + if (lookahead == '\\') ADVANCE(836); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3501); - if (lookahead != 0) ADVANCE(3502); + lookahead == ' ') ADVANCE(3492); + if (lookahead != 0) ADVANCE(3493); END_STATE(); case 363: ADVANCE_MAP( - '#', 4789, - '$', 2920, - '(', 3220, - '.', 3902, - '=', 3889, - '_', 3900, - 'i', 3926, - '|', 2871, + '#', 4780, + '$', 2912, + '(', 3212, + '.', 3893, + '=', 3880, + '_', 3891, + 'i', 3917, + '|', 2863, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(396); + lookahead == ' ') SKIP(398); if (lookahead == '+' || - lookahead == '-') ADVANCE(3880); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + lookahead == '-') ADVANCE(3871); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 364: - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '$') ADVANCE(2920); - if (lookahead == '(') ADVANCE(3220); - if (lookahead == '.') ADVANCE(3902); - if (lookahead == '=') ADVANCE(3889); - if (lookahead == '_') ADVANCE(3900); - if (lookahead == '|') ADVANCE(2871); + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '$') ADVANCE(2912); + if (lookahead == '(') ADVANCE(3212); + if (lookahead == '.') ADVANCE(3893); + if (lookahead == '=') ADVANCE(3880); + if (lookahead == '_') ADVANCE(3891); + if (lookahead == '|') ADVANCE(2863); if (lookahead == '\t' || - lookahead == ' ') SKIP(397); + lookahead == ' ') SKIP(399); if (lookahead == '+' || - lookahead == '-') ADVANCE(3880); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + lookahead == '-') ADVANCE(3871); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 365: - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '$') ADVANCE(2920); - if (lookahead == '(') ADVANCE(3220); - if (lookahead == '.') ADVANCE(3902); - if (lookahead == '_') ADVANCE(3900); - if (lookahead == '{') ADVANCE(3099); + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '$') ADVANCE(2912); + if (lookahead == '(') ADVANCE(3212); + if (lookahead == '.') ADVANCE(3893); + if (lookahead == '_') ADVANCE(3891); + if (lookahead == '{') ADVANCE(3091); if (lookahead == '\t' || - lookahead == ' ') SKIP(399); + lookahead == ' ') SKIP(401); if (lookahead == '+' || - lookahead == '-') ADVANCE(3880); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + lookahead == '-') ADVANCE(3871); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 366: ADVANCE_MAP( - '#', 4789, - '$', 2920, - '(', 3220, - '.', 3310, - '=', 3889, - '_', 3900, - 'i', 3926, - '|', 2871, + '#', 4780, + '$', 2912, + '(', 3212, + '.', 3302, + '=', 3880, + '_', 3891, + 'i', 3917, + '|', 2863, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(396); + lookahead == ' ') SKIP(398); if (lookahead == '+' || - lookahead == '-') ADVANCE(3880); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + lookahead == '-') ADVANCE(3871); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 367: - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '$') ADVANCE(2920); - if (lookahead == '(') ADVANCE(3220); - if (lookahead == '.') ADVANCE(3310); - if (lookahead == '=') ADVANCE(3889); - if (lookahead == '_') ADVANCE(3900); - if (lookahead == '|') ADVANCE(2871); + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '$') ADVANCE(2912); + if (lookahead == '(') ADVANCE(3212); + if (lookahead == '.') ADVANCE(3302); + if (lookahead == '=') ADVANCE(3880); + if (lookahead == '_') ADVANCE(3891); + if (lookahead == '|') ADVANCE(2863); if (lookahead == '\t' || - lookahead == ' ') SKIP(397); + lookahead == ' ') SKIP(399); if (lookahead == '+' || - lookahead == '-') ADVANCE(3880); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + lookahead == '-') ADVANCE(3871); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 368: - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '$') ADVANCE(2920); - if (lookahead == '(') ADVANCE(3220); - if (lookahead == '.') ADVANCE(3310); - if (lookahead == '_') ADVANCE(3900); - if (lookahead == '{') ADVANCE(3099); + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '$') ADVANCE(2912); + if (lookahead == '(') ADVANCE(3212); + if (lookahead == '.') ADVANCE(3302); + if (lookahead == '_') ADVANCE(3891); + if (lookahead == '{') ADVANCE(3091); if (lookahead == '\t' || - lookahead == ' ') SKIP(399); + lookahead == ' ') SKIP(401); if (lookahead == '+' || - lookahead == '-') ADVANCE(3880); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + lookahead == '-') ADVANCE(3871); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 369: ADVANCE_MAP( - '#', 4789, - '$', 2920, - '(', 3220, - '.', 4350, - ']', 2916, - '_', 4348, - '\t', 3519, - ' ', 3519, - '+', 4331, - '-', 4331, + '#', 4780, + '$', 2912, + '(', 3212, + '.', 4341, + ']', 2908, + '_', 4339, + '\t', 3510, + ' ', 3510, + '+', 4322, + '-', 4322, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3515); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + lookahead == ',') ADVANCE(3506); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -24853,43 +25224,43 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); END_STATE(); case 370: ADVANCE_MAP( - '#', 4789, - '$', 2920, - '(', 3220, - '.', 4579, - '_', 4578, - '}', 3100, - '\t', 3519, - ' ', 3519, - '+', 4570, - '-', 4570, + '#', 4780, + '$', 2912, + '(', 3212, + '.', 4570, + '_', 4569, + '}', 3092, + '\t', 3510, + ' ', 3510, + '+', 4561, + '-', 4561, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3515); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(4600); + lookahead == ',') ADVANCE(3506); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(4591); END_STATE(); case 371: ADVANCE_MAP( - '#', 4789, - '$', 2920, - '(', 3220, - '.', 3311, - ']', 2916, - '_', 4348, - '}', 3100, - '\t', 3519, - ' ', 3519, - '+', 4331, - '-', 4331, + '#', 4780, + '$', 2912, + '(', 3212, + '.', 3303, + ']', 2908, + '_', 4339, + '}', 3092, + '\t', 3510, + ' ', 3510, + '+', 4322, + '-', 4322, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3515); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + lookahead == ',') ADVANCE(3506); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -24897,971 +25268,946 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); END_STATE(); case 372: ADVANCE_MAP( - '#', 4789, - '$', 2920, - '(', 3220, - '.', 3312, - '_', 4578, - '}', 3100, - '\t', 3519, - ' ', 3519, - '+', 4570, - '-', 4570, + '#', 4780, + '$', 2912, + '(', 3212, + '.', 3304, + '_', 4569, + '}', 3092, + '\t', 3510, + ' ', 3510, + '+', 4561, + '-', 4561, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3515); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(4600); + lookahead == ',') ADVANCE(3506); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(4591); END_STATE(); case 373: ADVANCE_MAP( - '#', 4789, - '$', 2920, - '(', 2917, - '-', 2960, - '=', 3661, - 'f', 628, - 'i', 725, - 'n', 747, - 't', 768, + '#', 4780, + '$', 2912, + '(', 2909, + '-', 2952, + '=', 3652, + 'f', 630, + 'i', 727, + 'n', 748, + 't', 770, ); if (lookahead == '\t' || lookahead == ' ') SKIP(374); END_STATE(); case 374: ADVANCE_MAP( - '#', 4789, - '$', 2920, - '(', 2917, - '-', 2960, - 'f', 628, - 'i', 725, - 'n', 747, - 't', 768, + '#', 4780, + '$', 2912, + '(', 2909, + '-', 2952, + 'f', 630, + 'i', 727, + 'n', 748, + 't', 770, ); if (lookahead == '\t' || lookahead == ' ') SKIP(374); END_STATE(); case 375: ADVANCE_MAP( - '#', 4789, - '$', 2920, - '-', 2961, - '.', 3297, - 'E', 3895, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'P', 3898, - 'T', 3898, - 'd', 3915, - 'e', 3894, - 'g', 3897, - 'h', 3941, - 'k', 3897, - 'm', 3899, - 'n', 3951, - 'p', 3897, - 's', 3921, - 't', 3897, - 'u', 3951, - 'w', 3927, - '{', 3099, - 0xb5, 3951, + '#', 4780, + '$', 2912, + '-', 2953, + '.', 3289, + 'E', 3886, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'P', 3889, + 'T', 3889, + 'd', 3906, + 'e', 3885, + 'g', 3888, + 'h', 3932, + 'k', 3888, + 'm', 3890, + 'n', 3942, + 'p', 3888, + 's', 3912, + 't', 3888, + 'u', 3942, + 'w', 3918, + '{', 3091, + 0xb5, 3942, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(385); + lookahead == ' ') SKIP(387); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + lookahead == 'b') ADVANCE(3420); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 376: ADVANCE_MAP( - '#', 4789, - '$', 2920, - '-', 2961, - '.', 3297, + '#', 4780, + '$', 2912, + '-', 2953, + '.', 3289, 'E', 2302, - 'G', 2348, - 'K', 2348, - 'M', 2348, - 'P', 2348, - 'T', 2348, - 'd', 2371, + 'G', 2347, + 'K', 2347, + 'M', 2347, + 'P', 2347, + 'T', 2347, + 'd', 2366, 'e', 2301, - 'g', 2347, - 'h', 2527, - 'k', 2347, - 'm', 2349, - 'n', 2567, - 'p', 2347, - 's', 2400, - 't', 2347, - 'u', 2567, - 'w', 2461, - 0xb5, 2567, + 'g', 2346, + 'h', 2519, + 'k', 2346, + 'm', 2348, + 'n', 2559, + 'p', 2346, + 's', 2394, + 't', 2346, + 'u', 2559, + 'w', 2455, + 0xb5, 2559, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(389); + lookahead == ' ') SKIP(391); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3433); + lookahead == 'b') ADVANCE(3424); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4002); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2652); + lookahead == '^') ADVANCE(3993); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2644); END_STATE(); case 377: ADVANCE_MAP( - '#', 4789, - '$', 2920, - '-', 2961, - '.', 3879, - 'E', 3895, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'P', 3898, - 'T', 3898, - '_', 3900, - 'd', 3915, - 'e', 3894, - 'g', 3897, - 'h', 3941, - 'k', 3897, - 'm', 3899, - 'n', 3951, - 'p', 3897, - 's', 3921, - 't', 3897, - 'u', 3951, - 'w', 3927, - '{', 3099, - 0xb5, 3951, + '#', 4780, + '$', 2912, + '-', 2953, + '.', 3870, + 'E', 3886, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'P', 3889, + 'T', 3889, + '_', 3891, + 'd', 3906, + 'e', 3885, + 'g', 3888, + 'h', 3932, + 'k', 3888, + 'm', 3890, + 'n', 3942, + 'p', 3888, + 's', 3912, + 't', 3888, + 'u', 3942, + 'w', 3918, + '{', 3091, + 0xb5, 3942, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(385); + lookahead == ' ') SKIP(387); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + lookahead == 'b') ADVANCE(3420); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 378: ADVANCE_MAP( - '#', 4789, - '$', 2920, - '-', 2961, - '.', 3879, - 'E', 3895, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'P', 3898, - 'T', 3898, - 'd', 3915, - 'e', 3894, - 'g', 3897, - 'h', 3941, - 'k', 3897, - 'm', 3899, - 'n', 3951, - 'p', 3897, - 's', 3921, - 't', 3897, - 'u', 3951, - 'w', 3927, - '{', 3099, - 0xb5, 3951, + '#', 4780, + '$', 2912, + '-', 2953, + '.', 3870, + 'E', 3886, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'P', 3889, + 'T', 3889, + 'd', 3906, + 'e', 3885, + 'g', 3888, + 'h', 3932, + 'k', 3888, + 'm', 3890, + 'n', 3942, + 'p', 3888, + 's', 3912, + 't', 3888, + 'u', 3942, + 'w', 3918, + '{', 3091, + 0xb5, 3942, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(385); + lookahead == ' ') SKIP(387); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + lookahead == 'b') ADVANCE(3420); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 379: ADVANCE_MAP( - '#', 4789, - '$', 2920, - '-', 2961, - '.', 3879, - 'E', 3898, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'P', 3898, - 'T', 3898, - 'd', 3915, - 'e', 3897, - 'g', 3897, - 'h', 3941, - 'k', 3897, - 'm', 3899, - 'n', 3951, - 'p', 3897, - 's', 3921, - 't', 3897, - 'u', 3951, - 'w', 3927, - '{', 3099, - 0xb5, 3951, + '#', 4780, + '$', 2912, + '-', 2953, + '.', 3870, + 'E', 3889, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'P', 3889, + 'T', 3889, + 'd', 3906, + 'e', 3888, + 'g', 3888, + 'h', 3932, + 'k', 3888, + 'm', 3890, + 'n', 3942, + 'p', 3888, + 's', 3912, + 't', 3888, + 'u', 3942, + 'w', 3918, + '{', 3091, + 0xb5, 3942, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(385); + lookahead == ' ') SKIP(387); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + lookahead == 'b') ADVANCE(3420); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 380: ADVANCE_MAP( - '#', 4789, - '$', 2920, - '-', 2961, - '.', 3879, - 'E', 2348, - 'G', 2348, - 'K', 2348, - 'M', 2348, - 'P', 2348, - 'T', 2348, - 'd', 2371, - 'e', 2347, - 'g', 2347, - 'h', 2527, - 'k', 2347, - 'm', 2349, - 'n', 2567, - 'p', 2347, - 's', 2400, - 't', 2347, - 'u', 2567, - 'w', 2461, - 0xb5, 2567, + '#', 4780, + '$', 2912, + '-', 2953, + '.', 3870, + 'E', 2347, + 'G', 2347, + 'K', 2347, + 'M', 2347, + 'P', 2347, + 'T', 2347, + 'd', 2366, + 'e', 2346, + 'g', 2346, + 'h', 2519, + 'k', 2346, + 'm', 2348, + 'n', 2559, + 'p', 2346, + 's', 2394, + 't', 2346, + 'u', 2559, + 'w', 2455, + 0xb5, 2559, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(389); + lookahead == ' ') SKIP(391); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3433); + lookahead == 'b') ADVANCE(3424); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4002); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2652); + lookahead == '^') ADVANCE(3993); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2644); END_STATE(); case 381: ADVANCE_MAP( - '#', 4789, - '$', 2920, - '-', 2961, - '.', 3879, + '#', 4780, + '$', 2912, + '-', 2953, + '.', 3870, 'E', 2302, - 'G', 2348, - 'K', 2348, - 'M', 2348, - 'P', 2348, - 'T', 2348, - '_', 2354, - 'd', 2371, + 'G', 2347, + 'K', 2347, + 'M', 2347, + 'P', 2347, + 'T', 2347, + '_', 2353, + 'd', 2366, 'e', 2301, - 'g', 2347, - 'h', 2527, - 'k', 2347, - 'm', 2349, - 'n', 2567, - 'p', 2347, - 's', 2400, - 't', 2347, - 'u', 2567, - 'w', 2461, - 0xb5, 2567, + 'g', 2346, + 'h', 2519, + 'k', 2346, + 'm', 2348, + 'n', 2559, + 'p', 2346, + 's', 2394, + 't', 2346, + 'u', 2559, + 'w', 2455, + 0xb5, 2559, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(389); + lookahead == ' ') SKIP(391); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3433); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3327); + lookahead == 'b') ADVANCE(3424); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3319); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4002); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2652); + lookahead == '^') ADVANCE(3993); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2644); END_STATE(); case 382: ADVANCE_MAP( - '#', 4789, - '$', 2920, - '-', 2961, - '.', 3879, + '#', 4780, + '$', 2912, + '-', 2953, + '.', 3870, 'E', 2302, - 'G', 2348, - 'K', 2348, - 'M', 2348, - 'P', 2348, - 'T', 2348, - 'd', 2371, + 'G', 2347, + 'K', 2347, + 'M', 2347, + 'P', 2347, + 'T', 2347, + 'd', 2366, 'e', 2301, - 'g', 2347, - 'h', 2527, - 'k', 2347, - 'm', 2349, - 'n', 2567, - 'p', 2347, - 's', 2400, - 't', 2347, - 'u', 2567, - 'w', 2461, - 0xb5, 2567, + 'g', 2346, + 'h', 2519, + 'k', 2346, + 'm', 2348, + 'n', 2559, + 'p', 2346, + 's', 2394, + 't', 2346, + 'u', 2559, + 'w', 2455, + 0xb5, 2559, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(389); + lookahead == ' ') SKIP(391); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3433); + lookahead == 'b') ADVANCE(3424); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4002); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2652); + lookahead == '^') ADVANCE(3993); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2644); END_STATE(); case 383: - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '$') ADVANCE(2920); - if (lookahead == '-') ADVANCE(2961); - if (lookahead == '=') ADVANCE(3661); - if (lookahead == '{') ADVANCE(3099); - if (lookahead == '\t' || - lookahead == ' ') SKIP(385); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2831); + ADVANCE_MAP( + '#', 4780, + '$', 2912, + '-', 2953, + '.', 3275, + ':', 3511, + ';', 3523, + '=', 3652, + '?', 3181, + '{', 3091, + '\t', 384, + ' ', 384, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(579); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2644); END_STATE(); case 384: - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '$') ADVANCE(2920); - if (lookahead == '-') ADVANCE(2961); - if (lookahead == '=') ADVANCE(3661); - if (lookahead == '\t' || - lookahead == ' ') SKIP(389); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2799); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '$' < lookahead) && - (lookahead < '&' || '.' < lookahead) && - (lookahead < '0' || '[' < lookahead) && - (lookahead < ']' || '}' < lookahead)) ADVANCE(2652); + ADVANCE_MAP( + '#', 4780, + '$', 2912, + '-', 2953, + ':', 3511, + ';', 3523, + '?', 3181, + '{', 3091, + '\t', 384, + ' ', 384, + ); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(579); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2644); END_STATE(); case 385: - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '$') ADVANCE(2920); - if (lookahead == '-') ADVANCE(2961); - if (lookahead == '{') ADVANCE(3099); + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '$') ADVANCE(2912); + if (lookahead == '-') ADVANCE(2953); + if (lookahead == '=') ADVANCE(3652); + if (lookahead == '{') ADVANCE(3091); if (lookahead == '\t' || - lookahead == ' ') SKIP(385); + lookahead == ' ') SKIP(387); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2823); END_STATE(); case 386: - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '$') ADVANCE(2920); - if (lookahead == '-') ADVANCE(2961); - if (lookahead == '{') ADVANCE(3099); + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '$') ADVANCE(2912); + if (lookahead == '-') ADVANCE(2953); + if (lookahead == '=') ADVANCE(3652); if (lookahead == '\t' || - lookahead == ' ') SKIP(385); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + lookahead == ' ') SKIP(391); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2791); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '$' < lookahead) && + (lookahead < '&' || '.' < lookahead) && + (lookahead < '0' || '[' < lookahead) && + (lookahead < ']' || '}' < lookahead)) ADVANCE(2644); END_STATE(); case 387: - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '$') ADVANCE(2920); - if (lookahead == '-') ADVANCE(2961); - if (lookahead == '{') ADVANCE(3099); + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '$') ADVANCE(2912); + if (lookahead == '-') ADVANCE(2953); + if (lookahead == '{') ADVANCE(3091); if (lookahead == '\t' || lookahead == ' ') SKIP(387); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2652); END_STATE(); case 388: - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '$') ADVANCE(2920); - if (lookahead == '-') ADVANCE(2961); + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '$') ADVANCE(2912); + if (lookahead == '-') ADVANCE(2953); + if (lookahead == '{') ADVANCE(3091); + if (lookahead == '\t' || + lookahead == ' ') SKIP(387); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + END_STATE(); + case 389: + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '$') ADVANCE(2912); + if (lookahead == '-') ADVANCE(2953); + if (lookahead == '{') ADVANCE(3091); if (lookahead == '\t' || lookahead == ' ') SKIP(389); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2644); + END_STATE(); + case 390: + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '$') ADVANCE(2912); + if (lookahead == '-') ADVANCE(2953); + if (lookahead == '\t' || + lookahead == ' ') SKIP(391); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= '.') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4002); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2652); + lookahead == '^') ADVANCE(3993); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2644); END_STATE(); - case 389: - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '$') ADVANCE(2920); - if (lookahead == '-') ADVANCE(2961); + case 391: + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '$') ADVANCE(2912); + if (lookahead == '-') ADVANCE(2953); if (lookahead == '\t' || - lookahead == ' ') SKIP(389); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2652); + lookahead == ' ') SKIP(391); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2644); END_STATE(); - case 390: - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '$') ADVANCE(2920); - if (lookahead == '-') ADVANCE(2972); - if (lookahead == '=') ADVANCE(3661); - if (lookahead == '{') ADVANCE(3099); + case 392: + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '$') ADVANCE(2912); + if (lookahead == '-') ADVANCE(2966); + if (lookahead == '=') ADVANCE(3652); + if (lookahead == '{') ADVANCE(3091); if (lookahead == '\t' || - lookahead == ' ') SKIP(385); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + lookahead == ' ') SKIP(387); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); - case 391: - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '$') ADVANCE(2920); - if (lookahead == '-') ADVANCE(2972); - if (lookahead == '=') ADVANCE(3661); + case 393: + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '$') ADVANCE(2912); + if (lookahead == '-') ADVANCE(2966); + if (lookahead == '=') ADVANCE(3652); if (lookahead == '\t' || - lookahead == ' ') SKIP(389); + lookahead == ' ') SKIP(391); if (lookahead == '!' || lookahead == '?' || - lookahead == '@') ADVANCE(3732); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3715); + lookahead == '@') ADVANCE(3723); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3706); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '.' < lookahead) && (lookahead < '0' || '[' < lookahead) && - (lookahead < ']' || '}' < lookahead)) ADVANCE(2652); + (lookahead < ']' || '}' < lookahead)) ADVANCE(2644); END_STATE(); - case 392: + case 394: ADVANCE_MAP( - '#', 4789, - '$', 2920, - '.', 3297, + '#', 4780, + '$', 2912, + '.', 3289, 'E', 2302, - 'G', 2348, - 'K', 2348, - 'M', 2348, - 'P', 2348, - 'T', 2348, - 'd', 2371, + 'G', 2347, + 'K', 2347, + 'M', 2347, + 'P', 2347, + 'T', 2347, + 'd', 2366, 'e', 2301, - 'g', 2347, - 'h', 2527, - 'k', 2347, - 'm', 2349, - 'n', 2567, - 'p', 2347, - 's', 2400, - 't', 2347, - 'u', 2567, - 'w', 2461, - 0xb5, 2567, + 'g', 2346, + 'h', 2519, + 'k', 2346, + 'm', 2348, + 'n', 2559, + 'p', 2346, + 's', 2394, + 't', 2346, + 'u', 2559, + 'w', 2455, + 0xb5, 2559, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(403); + lookahead == ' ') SKIP(405); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3433); + lookahead == 'b') ADVANCE(3424); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= '-') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4002); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2652); + lookahead == '^') ADVANCE(3993); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2644); END_STATE(); - case 393: + case 395: ADVANCE_MAP( - '#', 4789, - '$', 2920, - '.', 3879, - 'E', 2348, - 'G', 2348, - 'K', 2348, - 'M', 2348, - 'P', 2348, - 'T', 2348, - 'd', 2371, - 'e', 2347, - 'g', 2347, - 'h', 2527, - 'k', 2347, - 'm', 2349, - 'n', 2567, - 'p', 2347, - 's', 2400, - 't', 2347, - 'u', 2567, - 'w', 2461, - 0xb5, 2567, + '#', 4780, + '$', 2912, + '.', 3870, + 'E', 2347, + 'G', 2347, + 'K', 2347, + 'M', 2347, + 'P', 2347, + 'T', 2347, + 'd', 2366, + 'e', 2346, + 'g', 2346, + 'h', 2519, + 'k', 2346, + 'm', 2348, + 'n', 2559, + 'p', 2346, + 's', 2394, + 't', 2346, + 'u', 2559, + 'w', 2455, + 0xb5, 2559, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(403); + lookahead == ' ') SKIP(405); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3433); + lookahead == 'b') ADVANCE(3424); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= '-') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4002); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2652); + lookahead == '^') ADVANCE(3993); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2644); END_STATE(); - case 394: + case 396: ADVANCE_MAP( - '#', 4789, - '$', 2920, - '.', 3879, + '#', 4780, + '$', 2912, + '.', 3870, 'E', 2302, - 'G', 2348, - 'K', 2348, - 'M', 2348, - 'P', 2348, - 'T', 2348, - '_', 2354, - 'd', 2371, + 'G', 2347, + 'K', 2347, + 'M', 2347, + 'P', 2347, + 'T', 2347, + '_', 2353, + 'd', 2366, 'e', 2301, - 'g', 2347, - 'h', 2527, - 'k', 2347, - 'm', 2349, - 'n', 2567, - 'p', 2347, - 's', 2400, - 't', 2347, - 'u', 2567, - 'w', 2461, - 0xb5, 2567, + 'g', 2346, + 'h', 2519, + 'k', 2346, + 'm', 2348, + 'n', 2559, + 'p', 2346, + 's', 2394, + 't', 2346, + 'u', 2559, + 'w', 2455, + 0xb5, 2559, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(403); + lookahead == ' ') SKIP(405); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3433); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3327); + lookahead == 'b') ADVANCE(3424); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3319); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= '-') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4002); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2652); + lookahead == '^') ADVANCE(3993); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2644); END_STATE(); - case 395: + case 397: ADVANCE_MAP( - '#', 4789, - '$', 2920, - '.', 3879, + '#', 4780, + '$', 2912, + '.', 3870, 'E', 2302, - 'G', 2348, - 'K', 2348, - 'M', 2348, - 'P', 2348, - 'T', 2348, - 'd', 2371, + 'G', 2347, + 'K', 2347, + 'M', 2347, + 'P', 2347, + 'T', 2347, + 'd', 2366, 'e', 2301, - 'g', 2347, - 'h', 2527, - 'k', 2347, - 'm', 2349, - 'n', 2567, - 'p', 2347, - 's', 2400, - 't', 2347, - 'u', 2567, - 'w', 2461, - 0xb5, 2567, + 'g', 2346, + 'h', 2519, + 'k', 2346, + 'm', 2348, + 'n', 2559, + 'p', 2346, + 's', 2394, + 't', 2346, + 'u', 2559, + 'w', 2455, + 0xb5, 2559, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(403); + lookahead == ' ') SKIP(405); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3433); + lookahead == 'b') ADVANCE(3424); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= '-') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4002); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2652); - END_STATE(); - case 396: - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '$') ADVANCE(2920); - if (lookahead == '.') ADVANCE(621); - if (lookahead == '=') ADVANCE(602); - if (lookahead == 'i') ADVANCE(674); - if (lookahead == '|') ADVANCE(2871); - if (lookahead == '\t' || - lookahead == ' ') SKIP(396); - if (lookahead == '+' || - lookahead == '-') ADVANCE(571); - END_STATE(); - case 397: - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '$') ADVANCE(2920); - if (lookahead == '.') ADVANCE(621); - if (lookahead == '=') ADVANCE(602); - if (lookahead == '|') ADVANCE(2871); - if (lookahead == '\t' || - lookahead == ' ') SKIP(397); - if (lookahead == '+' || - lookahead == '-') ADVANCE(571); + lookahead == '^') ADVANCE(3993); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2644); END_STATE(); case 398: - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '$') ADVANCE(2920); - if (lookahead == '.') ADVANCE(621); - if (lookahead == ']') ADVANCE(2916); + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '$') ADVANCE(2912); + if (lookahead == '.') ADVANCE(623); + if (lookahead == '=') ADVANCE(604); + if (lookahead == 'i') ADVANCE(677); + if (lookahead == '|') ADVANCE(2863); if (lookahead == '\t' || lookahead == ' ') SKIP(398); if (lookahead == '+' || - lookahead == '-') ADVANCE(571); + lookahead == '-') ADVANCE(573); END_STATE(); case 399: - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '$') ADVANCE(2920); - if (lookahead == '.') ADVANCE(621); - if (lookahead == '{') ADVANCE(3099); + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '$') ADVANCE(2912); + if (lookahead == '.') ADVANCE(623); + if (lookahead == '=') ADVANCE(604); + if (lookahead == '|') ADVANCE(2863); if (lookahead == '\t' || lookahead == ' ') SKIP(399); if (lookahead == '+' || - lookahead == '-') ADVANCE(571); + lookahead == '-') ADVANCE(573); END_STATE(); case 400: - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '$') ADVANCE(2920); - if (lookahead == '.') ADVANCE(621); + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '$') ADVANCE(2912); + if (lookahead == '.') ADVANCE(623); + if (lookahead == ']') ADVANCE(2908); if (lookahead == '\t' || lookahead == ' ') SKIP(400); if (lookahead == '+' || - lookahead == '-') ADVANCE(571); + lookahead == '-') ADVANCE(573); END_STATE(); case 401: - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '$') ADVANCE(2920); - if (lookahead == '=') ADVANCE(3661); + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '$') ADVANCE(2912); + if (lookahead == '.') ADVANCE(623); + if (lookahead == '{') ADVANCE(3091); + if (lookahead == '\t' || + lookahead == ' ') SKIP(401); + if (lookahead == '+' || + lookahead == '-') ADVANCE(573); + END_STATE(); + case 402: + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '$') ADVANCE(2912); + if (lookahead == '.') ADVANCE(623); + if (lookahead == '\t' || + lookahead == ' ') SKIP(402); + if (lookahead == '+' || + lookahead == '-') ADVANCE(573); + END_STATE(); + case 403: + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '$') ADVANCE(2912); + if (lookahead == '=') ADVANCE(3652); if (lookahead == '\t' || - lookahead == ' ') SKIP(403); + lookahead == ' ') SKIP(405); if (lookahead == '!' || lookahead == '-' || lookahead == '?' || - lookahead == '@') ADVANCE(3732); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3715); + lookahead == '@') ADVANCE(3723); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3706); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '.' < lookahead) && (lookahead < '0' || '[' < lookahead) && - (lookahead < ']' || '}' < lookahead)) ADVANCE(2652); + (lookahead < ']' || '}' < lookahead)) ADVANCE(2644); END_STATE(); - case 402: - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '$') ADVANCE(2920); + case 404: + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '$') ADVANCE(2912); if (lookahead == '\t' || - lookahead == ' ') SKIP(403); + lookahead == ' ') SKIP(405); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= '.') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4002); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2652); - END_STATE(); - case 403: - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '$') ADVANCE(2920); - if (lookahead == '\t' || - lookahead == ' ') SKIP(403); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2652); - END_STATE(); - case 404: - ADVANCE_MAP( - '#', 4789, - '(', 3220, - '-', 2961, - '.', 3297, - 'E', 3895, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'P', 3898, - 'T', 3898, - 'd', 3915, - 'e', 3894, - 'g', 3897, - 'h', 3941, - 'k', 3897, - 'm', 3899, - 'n', 3951, - 'p', 3897, - 's', 3921, - 't', 3897, - 'u', 3951, - 'w', 3927, - '{', 3099, - 0xb5, 3951, - '\t', 193, - ' ', 193, - 'B', 3429, - 'b', 3429, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + lookahead == '^') ADVANCE(3993); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2644); END_STATE(); case 405: - ADVANCE_MAP( - '#', 4789, - '(', 3220, - '-', 2961, - '.', 3879, - 'E', 3895, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'P', 3898, - 'T', 3898, - '_', 3900, - 'd', 3915, - 'e', 3894, - 'g', 3897, - 'h', 3941, - 'k', 3897, - 'm', 3899, - 'n', 3951, - 'p', 3897, - 's', 3921, - 't', 3897, - 'u', 3951, - 'w', 3927, - '{', 3099, - 0xb5, 3951, - '\t', 193, - ' ', 193, - 'B', 3429, - 'b', 3429, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '$') ADVANCE(2912); + if (lookahead == '\t' || + lookahead == ' ') SKIP(405); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2644); END_STATE(); case 406: ADVANCE_MAP( - '#', 4789, - '(', 3220, - '-', 2961, - '.', 3879, - 'E', 3895, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'P', 3898, - 'T', 3898, - 'd', 3915, - 'e', 3894, - 'g', 3897, - 'h', 3941, - 'k', 3897, - 'm', 3899, - 'n', 3951, - 'p', 3897, - 's', 3921, - 't', 3897, - 'u', 3951, - 'w', 3927, - '{', 3099, - 0xb5, 3951, - '\t', 193, - ' ', 193, - 'B', 3429, - 'b', 3429, + '#', 4780, + '(', 3212, + '-', 2953, + '.', 3289, + 'E', 3886, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'P', 3889, + 'T', 3889, + 'd', 3906, + 'e', 3885, + 'g', 3888, + 'h', 3932, + 'k', 3888, + 'm', 3890, + 'n', 3942, + 'p', 3888, + 's', 3912, + 't', 3888, + 'u', 3942, + 'w', 3918, + '{', 3091, + 0xb5, 3942, + '\t', 196, + ' ', 196, + 'B', 3420, + 'b', 3420, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 407: ADVANCE_MAP( - '#', 4789, - '(', 3220, - '-', 2961, - '.', 3879, - 'E', 3898, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'P', 3898, - 'T', 3898, - 'd', 3915, - 'e', 3897, - 'g', 3897, - 'h', 3941, - 'k', 3897, - 'm', 3899, - 'n', 3951, - 'p', 3897, - 's', 3921, - 't', 3897, - 'u', 3951, - 'w', 3927, - '{', 3099, - 0xb5, 3951, - '\t', 193, - ' ', 193, - 'B', 3429, - 'b', 3429, + '#', 4780, + '(', 3212, + '-', 2953, + '.', 3870, + 'E', 3886, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'P', 3889, + 'T', 3889, + '_', 3891, + 'd', 3906, + 'e', 3885, + 'g', 3888, + 'h', 3932, + 'k', 3888, + 'm', 3890, + 'n', 3942, + 'p', 3888, + 's', 3912, + 't', 3888, + 'u', 3942, + 'w', 3918, + '{', 3091, + 0xb5, 3942, + '\t', 196, + ' ', 196, + 'B', 3420, + 'b', 3420, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 408: ADVANCE_MAP( - '#', 4789, - '(', 3220, - '.', 3297, - '=', 3889, - 'E', 3895, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'P', 3898, - 'T', 3898, - 'd', 3915, - 'e', 3894, - 'g', 3897, - 'h', 3941, - 'k', 3897, - 'm', 3899, - 'n', 3951, - 'p', 3897, - 's', 3921, - 't', 3897, - 'u', 3951, - 'w', 3927, - '|', 2871, - 0xb5, 3951, - '\t', 194, - ' ', 194, - 'B', 3429, - 'b', 3429, + '#', 4780, + '(', 3212, + '-', 2953, + '.', 3870, + 'E', 3886, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'P', 3889, + 'T', 3889, + 'd', 3906, + 'e', 3885, + 'g', 3888, + 'h', 3932, + 'k', 3888, + 'm', 3890, + 'n', 3942, + 'p', 3888, + 's', 3912, + 't', 3888, + 'u', 3942, + 'w', 3918, + '{', 3091, + 0xb5, 3942, + '\t', 196, + ' ', 196, + 'B', 3420, + 'b', 3420, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 409: ADVANCE_MAP( - '#', 4789, - '(', 3220, - '.', 3297, - 'E', 3895, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'P', 3898, - 'T', 3898, - 'd', 3915, - 'e', 3894, - 'g', 3897, - 'h', 3941, - 'k', 3897, - 'm', 3899, - 'n', 3951, - 'p', 3897, - 's', 3921, - 't', 3897, - 'u', 3951, - 'w', 3927, - '{', 3099, - 0xb5, 3951, - '\t', 195, - ' ', 195, - 'B', 3429, - 'b', 3429, + '#', 4780, + '(', 3212, + '-', 2953, + '.', 3870, + 'E', 3889, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'P', 3889, + 'T', 3889, + 'd', 3906, + 'e', 3888, + 'g', 3888, + 'h', 3932, + 'k', 3888, + 'm', 3890, + 'n', 3942, + 'p', 3888, + 's', 3912, + 't', 3888, + 'u', 3942, + 'w', 3918, + '{', 3091, + 0xb5, 3942, + '\t', 196, + ' ', 196, + 'B', 3420, + 'b', 3420, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 410: ADVANCE_MAP( - '#', 4789, - '(', 3220, - '.', 3297, - 'E', 4343, - 'G', 4346, - 'K', 4346, - 'M', 4346, - 'P', 4346, - 'T', 4346, - ']', 2916, - 'd', 4362, - 'e', 4342, - 'g', 4345, - 'h', 4377, - 'k', 4345, - 'm', 4347, - 'n', 4383, - 'p', 4345, - 's', 4367, - 't', 4345, - 'u', 4383, - 'w', 4370, - '}', 3100, - 0xb5, 4383, - '\t', 3519, - ' ', 3519, - 'B', 3429, - 'b', 3429, + '#', 4780, + '(', 3212, + '.', 3289, + '=', 3880, + 'E', 3886, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'P', 3889, + 'T', 3889, + 'd', 3906, + 'e', 3885, + 'g', 3888, + 'h', 3932, + 'k', 3888, + 'm', 3890, + 'n', 3942, + 'p', 3888, + 's', 3912, + 't', 3888, + 'u', 3942, + 'w', 3918, + '|', 2863, + 0xb5, 3942, + '\t', 197, + ' ', 197, + 'B', 3420, + 'b', 3420, ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3515); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '#' && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - lookahead != '[' && - lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 411: ADVANCE_MAP( - '#', 4789, - '(', 3220, - '.', 3297, - 'E', 4572, - 'G', 4574, - 'K', 4574, - 'M', 4574, - 'P', 4574, - 'T', 4574, - 'd', 4584, - 'e', 4571, - 'g', 4573, - 'h', 4590, - 'k', 4573, - 'm', 4575, - 'n', 4591, - 'p', 4573, - 's', 4587, - 't', 4573, - 'u', 4591, - 'w', 4588, - '}', 3100, - 0xb5, 4591, - '\t', 3519, - ' ', 3519, - 'B', 3429, - 'b', 3429, + '#', 4780, + '(', 3212, + '.', 3289, + 'E', 3886, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'P', 3889, + 'T', 3889, + 'd', 3906, + 'e', 3885, + 'g', 3888, + 'h', 3932, + 'k', 3888, + 'm', 3890, + 'n', 3942, + 'p', 3888, + 's', 3912, + 't', 3888, + 'u', 3942, + 'w', 3918, + '{', 3091, + 0xb5, 3942, + '\t', 198, + ' ', 198, + 'B', 3420, + 'b', 3420, ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3515); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 412: ADVANCE_MAP( - '#', 4789, - '(', 3220, - '.', 3297, - ']', 2916, - '}', 3100, - '\t', 3519, - ' ', 3519, - 'E', 4357, - 'e', 4357, + '#', 4780, + '(', 3212, + '.', 3289, + 'E', 4334, + 'G', 4337, + 'K', 4337, + 'M', 4337, + 'P', 4337, + 'T', 4337, + ']', 2908, + 'd', 4353, + 'e', 4333, + 'g', 4336, + 'h', 4368, + 'k', 4336, + 'm', 4338, + 'n', 4374, + 'p', 4336, + 's', 4358, + 't', 4336, + 'u', 4374, + 'w', 4361, + '}', 3092, + 0xb5, 4374, + '\t', 3510, + ' ', 3510, + 'B', 3420, + 'b', 3420, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3515); + lookahead == ',') ADVANCE(3506); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -25869,259 +26215,293 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); END_STATE(); case 413: ADVANCE_MAP( - '#', 4789, - '(', 3220, - '.', 3297, - '}', 3100, - '\t', 3519, - ' ', 3519, - 'E', 4582, - 'e', 4582, + '#', 4780, + '(', 3212, + '.', 3289, + 'E', 4563, + 'G', 4565, + 'K', 4565, + 'M', 4565, + 'P', 4565, + 'T', 4565, + 'd', 4575, + 'e', 4562, + 'g', 4564, + 'h', 4581, + 'k', 4564, + 'm', 4566, + 'n', 4582, + 'p', 4564, + 's', 4578, + 't', 4564, + 'u', 4582, + 'w', 4579, + '}', 3092, + 0xb5, 4582, + '\t', 3510, + ' ', 3510, + 'B', 3420, + 'b', 3420, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3515); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); + lookahead == ',') ADVANCE(3506); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); END_STATE(); case 414: ADVANCE_MAP( - '#', 4789, - '(', 3220, - '.', 3879, - '=', 3889, - 'E', 3895, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'P', 3898, - 'T', 3898, - '_', 3900, - 'd', 3915, - 'e', 3894, - 'g', 3897, - 'h', 3941, - 'k', 3897, - 'm', 3899, - 'n', 3951, - 'p', 3897, - 's', 3921, - 't', 3897, - 'u', 3951, - 'w', 3927, - '|', 2871, - 0xb5, 3951, - '\t', 194, - ' ', 194, - 'B', 3429, - 'b', 3429, + '#', 4780, + '(', 3212, + '.', 3289, + ']', 2908, + '}', 3092, + '\t', 3510, + ' ', 3510, + 'E', 4348, + 'e', 4348, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(3506); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '#' && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + lookahead != '[' && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); END_STATE(); case 415: ADVANCE_MAP( - '#', 4789, - '(', 3220, - '.', 3879, - '=', 3889, - 'E', 3895, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'P', 3898, - 'T', 3898, - 'd', 3915, - 'e', 3894, - 'g', 3897, - 'h', 3941, - 'k', 3897, - 'm', 3899, - 'n', 3951, - 'p', 3897, - 's', 3921, - 't', 3897, - 'u', 3951, - 'w', 3927, - '|', 2871, - 0xb5, 3951, - '\t', 194, - ' ', 194, - 'B', 3429, - 'b', 3429, + '#', 4780, + '(', 3212, + '.', 3289, + '}', 3092, + '\t', 3510, + ' ', 3510, + 'E', 4573, + 'e', 4573, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(3506); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); END_STATE(); case 416: ADVANCE_MAP( - '#', 4789, - '(', 3220, - '.', 3879, - '=', 3889, - 'E', 3898, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'P', 3898, - 'T', 3898, - 'd', 3915, - 'e', 3897, - 'g', 3897, - 'h', 3941, - 'k', 3897, - 'm', 3899, - 'n', 3951, - 'p', 3897, - 's', 3921, - 't', 3897, - 'u', 3951, - 'w', 3927, - '|', 2871, - 0xb5, 3951, - '\t', 194, - ' ', 194, - 'B', 3429, - 'b', 3429, + '#', 4780, + '(', 3212, + '.', 3870, + '=', 3880, + 'E', 3886, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'P', 3889, + 'T', 3889, + '_', 3891, + 'd', 3906, + 'e', 3885, + 'g', 3888, + 'h', 3932, + 'k', 3888, + 'm', 3890, + 'n', 3942, + 'p', 3888, + 's', 3912, + 't', 3888, + 'u', 3942, + 'w', 3918, + '|', 2863, + 0xb5, 3942, + '\t', 197, + ' ', 197, + 'B', 3420, + 'b', 3420, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 417: ADVANCE_MAP( - '#', 4789, - '(', 3220, - '.', 3879, - 'E', 3895, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'P', 3898, - 'T', 3898, - '_', 3900, - 'd', 3915, - 'e', 3894, - 'g', 3897, - 'h', 3941, - 'k', 3897, - 'm', 3899, - 'n', 3951, - 'p', 3897, - 's', 3921, - 't', 3897, - 'u', 3951, - 'w', 3927, - '{', 3099, - 0xb5, 3951, - '\t', 195, - ' ', 195, - 'B', 3429, - 'b', 3429, + '#', 4780, + '(', 3212, + '.', 3870, + '=', 3880, + 'E', 3886, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'P', 3889, + 'T', 3889, + 'd', 3906, + 'e', 3885, + 'g', 3888, + 'h', 3932, + 'k', 3888, + 'm', 3890, + 'n', 3942, + 'p', 3888, + 's', 3912, + 't', 3888, + 'u', 3942, + 'w', 3918, + '|', 2863, + 0xb5, 3942, + '\t', 197, + ' ', 197, + 'B', 3420, + 'b', 3420, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 418: ADVANCE_MAP( - '#', 4789, - '(', 3220, - '.', 3879, - 'E', 3895, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'P', 3898, - 'T', 3898, - 'd', 3915, - 'e', 3894, - 'g', 3897, - 'h', 3941, - 'k', 3897, - 'm', 3899, - 'n', 3951, - 'p', 3897, - 's', 3921, - 't', 3897, - 'u', 3951, - 'w', 3927, - '{', 3099, - 0xb5, 3951, - '\t', 195, - ' ', 195, - 'B', 3429, - 'b', 3429, + '#', 4780, + '(', 3212, + '.', 3870, + '=', 3880, + 'E', 3889, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'P', 3889, + 'T', 3889, + 'd', 3906, + 'e', 3888, + 'g', 3888, + 'h', 3932, + 'k', 3888, + 'm', 3890, + 'n', 3942, + 'p', 3888, + 's', 3912, + 't', 3888, + 'u', 3942, + 'w', 3918, + '|', 2863, + 0xb5, 3942, + '\t', 197, + ' ', 197, + 'B', 3420, + 'b', 3420, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 419: ADVANCE_MAP( - '#', 4789, - '(', 3220, - '.', 3879, - 'E', 3898, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'P', 3898, - 'T', 3898, - 'd', 3915, - 'e', 3897, - 'g', 3897, - 'h', 3941, - 'k', 3897, - 'm', 3899, - 'n', 3951, - 'p', 3897, - 's', 3921, - 't', 3897, - 'u', 3951, - 'w', 3927, - '{', 3099, - 0xb5, 3951, - '\t', 195, - ' ', 195, - 'B', 3429, - 'b', 3429, + '#', 4780, + '(', 3212, + '.', 3870, + 'E', 3886, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'P', 3889, + 'T', 3889, + '_', 3891, + 'd', 3906, + 'e', 3885, + 'g', 3888, + 'h', 3932, + 'k', 3888, + 'm', 3890, + 'n', 3942, + 'p', 3888, + 's', 3912, + 't', 3888, + 'u', 3942, + 'w', 3918, + '{', 3091, + 0xb5, 3942, + '\t', 198, + ' ', 198, + 'B', 3420, + 'b', 3420, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 420: ADVANCE_MAP( - '#', 4789, - '(', 3220, - '.', 3283, - ']', 2916, - '}', 3100, - '\t', 3519, - ' ', 3519, - 'E', 4582, - 'e', 4582, + '#', 4780, + '(', 3212, + '.', 3870, + 'E', 3886, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'P', 3889, + 'T', 3889, + 'd', 3906, + 'e', 3885, + 'g', 3888, + 'h', 3932, + 'k', 3888, + 'm', 3890, + 'n', 3942, + 'p', 3888, + 's', 3912, + 't', 3888, + 'u', 3942, + 'w', 3918, + '{', 3091, + 0xb5, 3942, + '\t', 198, + ' ', 198, + 'B', 3420, + 'b', 3420, ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3515); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '#' && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ':' && - lookahead != ';' && - lookahead != '[' && - lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4600); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 421: ADVANCE_MAP( - '#', 4789, - '(', 3220, - '.', 3283, - ']', 2916, - '\t', 3519, - ' ', 3519, - 'E', 4357, - 'e', 4357, + '#', 4780, + '(', 3212, + '.', 3870, + 'E', 3889, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'P', 3889, + 'T', 3889, + 'd', 3906, + 'e', 3888, + 'g', 3888, + 'h', 3932, + 'k', 3888, + 'm', 3890, + 'n', 3942, + 'p', 3888, + 's', 3912, + 't', 3888, + 'u', 3942, + 'w', 3918, + '{', 3091, + 0xb5, 3942, + '\t', 198, + ' ', 198, + 'B', 3420, + 'b', 3420, + ); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); + END_STATE(); + case 422: + ADVANCE_MAP( + '#', 4780, + '(', 3212, + '.', 3275, + ']', 2908, + '}', 3092, + '\t', 3510, + ' ', 3510, + 'E', 4348, + 'e', 4348, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3515); + lookahead == ',') ADVANCE(3506); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -26129,201 +26509,216 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); END_STATE(); - case 422: - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '(') ADVANCE(3220); - if (lookahead == '.') ADVANCE(3283); - if (lookahead == '{') ADVANCE(3099); + case 423: + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '(') ADVANCE(3212); + if (lookahead == '.') ADVANCE(3275); + if (lookahead == '{') ADVANCE(3091); if (lookahead == '\t' || - lookahead == ' ') SKIP(495); + lookahead == ' ') SKIP(497); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3910); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); - END_STATE(); - case 423: - ADVANCE_MAP( - '#', 4789, - '(', 3220, - '.', 4569, - 'E', 4572, - 'G', 4574, - 'K', 4574, - 'M', 4574, - 'P', 4574, - 'T', 4574, - '_', 4578, - 'd', 4584, - 'e', 4571, - 'g', 4573, - 'h', 4590, - 'k', 4573, - 'm', 4575, - 'n', 4591, - 'p', 4573, - 's', 4587, - 't', 4573, - 'u', 4591, - 'w', 4588, - '}', 3100, - 0xb5, 4591, - '\t', 3519, - ' ', 3519, - 'B', 3429, - 'b', 3429, - ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3515); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); + lookahead == 'e') ADVANCE(3901); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 424: ADVANCE_MAP( - '#', 4789, - '(', 3220, - '.', 4569, - 'E', 4572, - 'G', 4574, - 'K', 4574, - 'M', 4574, - 'P', 4574, - 'T', 4574, - 'd', 4584, - 'e', 4571, - 'g', 4573, - 'h', 4590, - 'k', 4573, - 'm', 4575, - 'n', 4591, - 'p', 4573, - 's', 4587, - 't', 4573, - 'u', 4591, - 'w', 4588, - '}', 3100, - 0xb5, 4591, - '\t', 3519, - ' ', 3519, - 'B', 3429, - 'b', 3429, + '#', 4780, + '(', 3212, + '.', 3275, + '}', 3092, + '\t', 3510, + ' ', 3510, + 'E', 4573, + 'e', 4573, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3515); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); + lookahead == ',') ADVANCE(3506); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); END_STATE(); case 425: ADVANCE_MAP( - '#', 4789, - '(', 3220, - '.', 4569, - 'E', 4574, - 'G', 4574, - 'K', 4574, - 'M', 4574, - 'P', 4574, - 'T', 4574, - 'd', 4584, - 'e', 4573, - 'g', 4573, - 'h', 4590, - 'k', 4573, - 'm', 4575, - 'n', 4591, - 'p', 4573, - 's', 4587, - 't', 4573, - 'u', 4591, - 'w', 4588, - '}', 3100, - 0xb5, 4591, - '\t', 3519, - ' ', 3519, - 'B', 3429, - 'b', 3429, + '#', 4780, + '(', 3212, + '.', 4560, + 'E', 4563, + 'G', 4565, + 'K', 4565, + 'M', 4565, + 'P', 4565, + 'T', 4565, + '_', 4569, + 'd', 4575, + 'e', 4562, + 'g', 4564, + 'h', 4581, + 'k', 4564, + 'm', 4566, + 'n', 4582, + 'p', 4564, + 's', 4578, + 't', 4564, + 'u', 4582, + 'w', 4579, + '}', 3092, + 0xb5, 4582, + '\t', 3510, + ' ', 3510, + 'B', 3420, + 'b', 3420, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3515); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); + lookahead == ',') ADVANCE(3506); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); END_STATE(); case 426: ADVANCE_MAP( - '#', 4789, - '(', 3220, - '.', 4569, - '_', 4578, - '}', 3100, - '\t', 3519, - ' ', 3519, - 'E', 4582, - 'e', 4582, + '#', 4780, + '(', 3212, + '.', 4560, + 'E', 4563, + 'G', 4565, + 'K', 4565, + 'M', 4565, + 'P', 4565, + 'T', 4565, + 'd', 4575, + 'e', 4562, + 'g', 4564, + 'h', 4581, + 'k', 4564, + 'm', 4566, + 'n', 4582, + 'p', 4564, + 's', 4578, + 't', 4564, + 'u', 4582, + 'w', 4579, + '}', 3092, + 0xb5, 4582, + '\t', 3510, + ' ', 3510, + 'B', 3420, + 'b', 3420, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3515); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); + lookahead == ',') ADVANCE(3506); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); END_STATE(); case 427: ADVANCE_MAP( - '#', 4789, - '(', 3220, - '.', 4569, - '}', 3100, - '\t', 3519, - ' ', 3519, - 'E', 4582, - 'e', 4582, + '#', 4780, + '(', 3212, + '.', 4560, + 'E', 4565, + 'G', 4565, + 'K', 4565, + 'M', 4565, + 'P', 4565, + 'T', 4565, + 'd', 4575, + 'e', 4564, + 'g', 4564, + 'h', 4581, + 'k', 4564, + 'm', 4566, + 'n', 4582, + 'p', 4564, + 's', 4578, + 't', 4564, + 'u', 4582, + 'w', 4579, + '}', 3092, + 0xb5, 4582, + '\t', 3510, + ' ', 3510, + 'B', 3420, + 'b', 3420, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3515); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); + lookahead == ',') ADVANCE(3506); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); END_STATE(); case 428: - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '(') ADVANCE(3220); - if (lookahead == '.') ADVANCE(4569); - if (lookahead == '}') ADVANCE(3100); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3519); + ADVANCE_MAP( + '#', 4780, + '(', 3212, + '.', 4560, + '_', 4569, + '}', 3092, + '\t', 3510, + ' ', 3510, + 'E', 4573, + 'e', 4573, + ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3515); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); + lookahead == ',') ADVANCE(3506); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); END_STATE(); case 429: ADVANCE_MAP( - '#', 4789, - '(', 3220, - '.', 4326, - 'E', 4343, - 'G', 4346, - 'K', 4346, - 'M', 4346, - 'P', 4346, - 'T', 4346, - ']', 2916, - '_', 4348, - 'd', 4362, - 'e', 4342, - 'g', 4345, - 'h', 4377, - 'k', 4345, - 'm', 4347, - 'n', 4383, - 'p', 4345, - 's', 4367, - 't', 4345, - 'u', 4383, - 'w', 4370, - '}', 3100, - 0xb5, 4383, - '\t', 3519, - ' ', 3519, - 'B', 3429, - 'b', 3429, + '#', 4780, + '(', 3212, + '.', 4560, + '}', 3092, + '\t', 3510, + ' ', 3510, + 'E', 4573, + 'e', 4573, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3515); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + lookahead == ',') ADVANCE(3506); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); + END_STATE(); + case 430: + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '(') ADVANCE(3212); + if (lookahead == '.') ADVANCE(4560); + if (lookahead == '}') ADVANCE(3092); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3510); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(3506); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); + END_STATE(); + case 431: + ADVANCE_MAP( + '#', 4780, + '(', 3212, + '.', 4317, + 'E', 4334, + 'G', 4337, + 'K', 4337, + 'M', 4337, + 'P', 4337, + 'T', 4337, + ']', 2908, + '_', 4339, + 'd', 4353, + 'e', 4333, + 'g', 4336, + 'h', 4368, + 'k', 4336, + 'm', 4338, + 'n', 4374, + 'p', 4336, + 's', 4358, + 't', 4336, + 'u', 4374, + 'w', 4361, + '}', 3092, + 0xb5, 4374, + '\t', 3510, + ' ', 3510, + 'B', 3420, + 'b', 3420, + ); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(3506); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -26332,41 +26727,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); END_STATE(); - case 430: + case 432: ADVANCE_MAP( - '#', 4789, - '(', 3220, - '.', 4326, - 'E', 4343, - 'G', 4346, - 'K', 4346, - 'M', 4346, - 'P', 4346, - 'T', 4346, - ']', 2916, - 'd', 4362, - 'e', 4342, - 'g', 4345, - 'h', 4377, - 'k', 4345, - 'm', 4347, - 'n', 4383, - 'p', 4345, - 's', 4367, - 't', 4345, - 'u', 4383, - 'w', 4370, - '}', 3100, - 0xb5, 4383, - '\t', 3519, - ' ', 3519, - 'B', 3429, - 'b', 3429, + '#', 4780, + '(', 3212, + '.', 4317, + 'E', 4334, + 'G', 4337, + 'K', 4337, + 'M', 4337, + 'P', 4337, + 'T', 4337, + ']', 2908, + 'd', 4353, + 'e', 4333, + 'g', 4336, + 'h', 4368, + 'k', 4336, + 'm', 4338, + 'n', 4374, + 'p', 4336, + 's', 4358, + 't', 4336, + 'u', 4374, + 'w', 4361, + '}', 3092, + 0xb5, 4374, + '\t', 3510, + ' ', 3510, + 'B', 3420, + 'b', 3420, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3515); + lookahead == ',') ADVANCE(3506); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -26374,41 +26769,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); END_STATE(); - case 431: + case 433: ADVANCE_MAP( - '#', 4789, - '(', 3220, - '.', 4326, - 'E', 4346, - 'G', 4346, - 'K', 4346, - 'M', 4346, - 'P', 4346, - 'T', 4346, - ']', 2916, - 'd', 4362, - 'e', 4345, - 'g', 4345, - 'h', 4377, - 'k', 4345, - 'm', 4347, - 'n', 4383, - 'p', 4345, - 's', 4367, - 't', 4345, - 'u', 4383, - 'w', 4370, - '}', 3100, - 0xb5, 4383, - '\t', 3519, - ' ', 3519, - 'B', 3429, - 'b', 3429, + '#', 4780, + '(', 3212, + '.', 4317, + 'E', 4337, + 'G', 4337, + 'K', 4337, + 'M', 4337, + 'P', 4337, + 'T', 4337, + ']', 2908, + 'd', 4353, + 'e', 4336, + 'g', 4336, + 'h', 4368, + 'k', 4336, + 'm', 4338, + 'n', 4374, + 'p', 4336, + 's', 4358, + 't', 4336, + 'u', 4374, + 'w', 4361, + '}', 3092, + 0xb5, 4374, + '\t', 3510, + ' ', 3510, + 'B', 3420, + 'b', 3420, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3515); + lookahead == ',') ADVANCE(3506); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -26416,24 +26811,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); END_STATE(); - case 432: + case 434: ADVANCE_MAP( - '#', 4789, - '(', 3220, - '.', 4326, - ']', 2916, - '_', 4348, - '}', 3100, - '\t', 3519, - ' ', 3519, - 'E', 4357, - 'e', 4357, + '#', 4780, + '(', 3212, + '.', 4317, + ']', 2908, + '_', 4339, + '}', 3092, + '\t', 3510, + ' ', 3510, + 'E', 4348, + 'e', 4348, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3515); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + lookahead == ',') ADVANCE(3506); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -26442,22 +26837,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); END_STATE(); - case 433: + case 435: ADVANCE_MAP( - '#', 4789, - '(', 3220, - '.', 4326, - ']', 2916, - '}', 3100, - '\t', 3519, - ' ', 3519, - 'E', 4357, - 'e', 4357, + '#', 4780, + '(', 3212, + '.', 4317, + ']', 2908, + '}', 3092, + '\t', 3510, + ' ', 3510, + 'E', 4348, + 'e', 4348, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3515); + lookahead == ',') ADVANCE(3506); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -26465,18 +26860,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); END_STATE(); - case 434: - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '(') ADVANCE(3220); - if (lookahead == '.') ADVANCE(4326); - if (lookahead == ']') ADVANCE(2916); - if (lookahead == '}') ADVANCE(3100); + case 436: + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '(') ADVANCE(3212); + if (lookahead == '.') ADVANCE(4317); + if (lookahead == ']') ADVANCE(2908); + if (lookahead == '}') ADVANCE(3092); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3519); + lookahead == ' ') ADVANCE(3510); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3515); + lookahead == ',') ADVANCE(3506); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -26484,22 +26879,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); END_STATE(); - case 435: + case 437: ADVANCE_MAP( - '#', 4789, - '(', 3220, - ']', 2916, - '_', 4348, - '\t', 3519, - ' ', 3519, - 'E', 4357, - 'e', 4357, + '#', 4780, + '(', 3212, + ']', 2908, + '_', 4339, + '\t', 3510, + ' ', 3510, + 'E', 4348, + 'e', 4348, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3515); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + lookahead == ',') ADVANCE(3506); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -26508,18 +26903,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); END_STATE(); - case 436: - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '(') ADVANCE(3220); - if (lookahead == ']') ADVANCE(2916); + case 438: + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '(') ADVANCE(3212); + if (lookahead == ']') ADVANCE(2908); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3519); + lookahead == ' ') ADVANCE(3510); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4357); + lookahead == 'e') ADVANCE(4348); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3515); + lookahead == ',') ADVANCE(3506); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -26527,16 +26922,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); END_STATE(); - case 437: - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '(') ADVANCE(3220); - if (lookahead == ']') ADVANCE(2916); + case 439: + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '(') ADVANCE(3212); + if (lookahead == ']') ADVANCE(2908); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3519); + lookahead == ' ') ADVANCE(3510); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3515); + lookahead == ',') ADVANCE(3506); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -26544,642 +26939,642 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4420); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4411); END_STATE(); - case 438: - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '(') ADVANCE(3220); - if (lookahead == '_') ADVANCE(3900); - if (lookahead == '{') ADVANCE(3099); + case 440: + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '(') ADVANCE(3212); + if (lookahead == '_') ADVANCE(3891); + if (lookahead == '{') ADVANCE(3091); if (lookahead == '\t' || - lookahead == ' ') SKIP(495); + lookahead == ' ') SKIP(497); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3910); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + lookahead == 'e') ADVANCE(3901); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); - case 439: + case 441: ADVANCE_MAP( - '#', 4789, - '(', 3220, - '_', 4578, - '}', 3100, - '\t', 3519, - ' ', 3519, - 'E', 4582, - 'e', 4582, + '#', 4780, + '(', 3212, + '_', 4569, + '}', 3092, + '\t', 3510, + ' ', 3510, + 'E', 4573, + 'e', 4573, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3515); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); + lookahead == ',') ADVANCE(3506); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); END_STATE(); - case 440: - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '(') ADVANCE(3220); - if (lookahead == '{') ADVANCE(3099); + case 442: + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '(') ADVANCE(3212); + if (lookahead == '{') ADVANCE(3091); if (lookahead == '\t' || - lookahead == ' ') SKIP(495); + lookahead == ' ') SKIP(497); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3910); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + lookahead == 'e') ADVANCE(3901); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); - case 441: - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '(') ADVANCE(3220); - if (lookahead == '}') ADVANCE(3100); + case 443: + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '(') ADVANCE(3212); + if (lookahead == '}') ADVANCE(3092); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3519); + lookahead == ' ') ADVANCE(3510); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4582); + lookahead == 'e') ADVANCE(4573); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3515); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); + lookahead == ',') ADVANCE(3506); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); END_STATE(); - case 442: - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '(') ADVANCE(3220); - if (lookahead == '}') ADVANCE(3100); + case 444: + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '(') ADVANCE(3212); + if (lookahead == '}') ADVANCE(3092); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3519); + lookahead == ' ') ADVANCE(3510); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3515); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); + lookahead == ',') ADVANCE(3506); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); END_STATE(); - case 443: - if (lookahead == '#') ADVANCE(4789); - if (lookahead == ',') ADVANCE(2919); - if (lookahead == ']') ADVANCE(2916); + case 445: + if (lookahead == '#') ADVANCE(4780); + if (lookahead == ',') ADVANCE(2911); + if (lookahead == ']') ADVANCE(2908); if (lookahead == '\t' || - lookahead == ' ') SKIP(443); + lookahead == ' ') SKIP(445); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3452); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3443); END_STATE(); - case 444: + case 446: ADVANCE_MAP( - '#', 4789, - ',', 3515, - '.', 3283, - ';', 3532, - '?', 3189, - ']', 2916, - '\t', 3517, - ' ', 3517, + '#', 4780, + ',', 3506, + '.', 3275, + ';', 3523, + '?', 3181, + ']', 2908, + '\t', 3508, + ' ', 3508, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3518); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3509); END_STATE(); - case 445: + case 447: ADVANCE_MAP( - '#', 4789, - '-', 2961, - '.', 3297, + '#', 4780, + '-', 2953, + '.', 3289, 'E', 2302, - 'G', 2348, - 'K', 2348, - 'M', 2348, - 'P', 2348, - 'T', 2348, - 'd', 2371, + 'G', 2347, + 'K', 2347, + 'M', 2347, + 'P', 2347, + 'T', 2347, + 'd', 2366, 'e', 2301, - 'g', 2347, - 'h', 2527, - 'k', 2347, - 'm', 2349, - 'n', 2567, - 'p', 2347, - 's', 2400, - 't', 2347, - 'u', 2567, - 'w', 2461, - 0xb5, 2567, + 'g', 2346, + 'h', 2519, + 'k', 2346, + 'm', 2348, + 'n', 2559, + 'p', 2346, + 's', 2394, + 't', 2346, + 'u', 2559, + 'w', 2455, + 0xb5, 2559, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(451); + lookahead == ' ') SKIP(453); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3433); + lookahead == 'b') ADVANCE(3424); if (lookahead == '!' || lookahead == '$' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4002); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2652); + lookahead == '^') ADVANCE(3993); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2644); END_STATE(); - case 446: + case 448: ADVANCE_MAP( - '#', 4789, - '-', 2961, - '.', 3879, - 'E', 2348, - 'G', 2348, - 'K', 2348, - 'M', 2348, - 'P', 2348, - 'T', 2348, - 'd', 2371, - 'e', 2347, - 'g', 2347, - 'h', 2527, - 'k', 2347, - 'm', 2349, - 'n', 2567, - 'p', 2347, - 's', 2400, - 't', 2347, - 'u', 2567, - 'w', 2461, - 0xb5, 2567, + '#', 4780, + '-', 2953, + '.', 3870, + 'E', 2347, + 'G', 2347, + 'K', 2347, + 'M', 2347, + 'P', 2347, + 'T', 2347, + 'd', 2366, + 'e', 2346, + 'g', 2346, + 'h', 2519, + 'k', 2346, + 'm', 2348, + 'n', 2559, + 'p', 2346, + 's', 2394, + 't', 2346, + 'u', 2559, + 'w', 2455, + 0xb5, 2559, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(451); + lookahead == ' ') SKIP(453); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3433); + lookahead == 'b') ADVANCE(3424); if (lookahead == '!' || lookahead == '$' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4002); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2652); + lookahead == '^') ADVANCE(3993); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2644); END_STATE(); - case 447: + case 449: ADVANCE_MAP( - '#', 4789, - '-', 2961, - '.', 3879, + '#', 4780, + '-', 2953, + '.', 3870, 'E', 2302, - 'G', 2348, - 'K', 2348, - 'M', 2348, - 'P', 2348, - 'T', 2348, - '_', 2354, - 'd', 2371, + 'G', 2347, + 'K', 2347, + 'M', 2347, + 'P', 2347, + 'T', 2347, + '_', 2353, + 'd', 2366, 'e', 2301, - 'g', 2347, - 'h', 2527, - 'k', 2347, - 'm', 2349, - 'n', 2567, - 'p', 2347, - 's', 2400, - 't', 2347, - 'u', 2567, - 'w', 2461, - 0xb5, 2567, + 'g', 2346, + 'h', 2519, + 'k', 2346, + 'm', 2348, + 'n', 2559, + 'p', 2346, + 's', 2394, + 't', 2346, + 'u', 2559, + 'w', 2455, + 0xb5, 2559, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(451); + lookahead == ' ') SKIP(453); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3433); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3327); + lookahead == 'b') ADVANCE(3424); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3319); if (lookahead == '!' || lookahead == '$' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4002); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2652); + lookahead == '^') ADVANCE(3993); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2644); END_STATE(); - case 448: + case 450: ADVANCE_MAP( - '#', 4789, - '-', 2961, - '.', 3879, + '#', 4780, + '-', 2953, + '.', 3870, 'E', 2302, - 'G', 2348, - 'K', 2348, - 'M', 2348, - 'P', 2348, - 'T', 2348, - 'd', 2371, + 'G', 2347, + 'K', 2347, + 'M', 2347, + 'P', 2347, + 'T', 2347, + 'd', 2366, 'e', 2301, - 'g', 2347, - 'h', 2527, - 'k', 2347, - 'm', 2349, - 'n', 2567, - 'p', 2347, - 's', 2400, - 't', 2347, - 'u', 2567, - 'w', 2461, - 0xb5, 2567, + 'g', 2346, + 'h', 2519, + 'k', 2346, + 'm', 2348, + 'n', 2559, + 'p', 2346, + 's', 2394, + 't', 2346, + 'u', 2559, + 'w', 2455, + 0xb5, 2559, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(451); + lookahead == ' ') SKIP(453); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3433); + lookahead == 'b') ADVANCE(3424); if (lookahead == '!' || lookahead == '$' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4002); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2652); + lookahead == '^') ADVANCE(3993); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2644); END_STATE(); - case 449: - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '-') ADVANCE(2961); - if (lookahead == '{') ADVANCE(3099); + case 451: + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '-') ADVANCE(2953); + if (lookahead == '{') ADVANCE(3091); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(193); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + lookahead == ' ') ADVANCE(196); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); - case 450: - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '-') ADVANCE(2961); + case 452: + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '-') ADVANCE(2953); if (lookahead == '\t' || - lookahead == ' ') SKIP(451); + lookahead == ' ') SKIP(453); if (lookahead == '!' || lookahead == '$' || lookahead == '&' || ('*' <= lookahead && lookahead <= '.') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4002); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2652); + lookahead == '^') ADVANCE(3993); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(2644); END_STATE(); - case 451: - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '-') ADVANCE(2961); + case 453: + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '-') ADVANCE(2953); if (lookahead == '\t' || - lookahead == ' ') SKIP(451); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2652); + lookahead == ' ') SKIP(453); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2644); END_STATE(); - case 452: + case 454: ADVANCE_MAP( - '#', 4789, - '.', 3297, - '=', 3889, - 'E', 3895, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'P', 3898, - 'T', 3898, - 'd', 3915, - 'e', 3894, - 'g', 3897, - 'h', 3941, - 'i', 3926, - 'k', 3897, - 'm', 3899, - 'n', 3951, - 'p', 3897, - 's', 3921, - 't', 3897, - 'u', 3951, - 'w', 3927, - '|', 2871, - 0xb5, 3951, + '#', 4780, + '.', 3289, + '=', 3880, + 'E', 3886, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'P', 3889, + 'T', 3889, + 'd', 3906, + 'e', 3885, + 'g', 3888, + 'h', 3932, + 'i', 3917, + 'k', 3888, + 'm', 3890, + 'n', 3942, + 'p', 3888, + 's', 3912, + 't', 3888, + 'u', 3942, + 'w', 3918, + '|', 2863, + 0xb5, 3942, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(483); + lookahead == ' ') SKIP(485); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + lookahead == 'b') ADVANCE(3420); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); - case 453: - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '.') ADVANCE(3297); - if (lookahead == '=') ADVANCE(3889); - if (lookahead == 'i') ADVANCE(3926); - if (lookahead == '|') ADVANCE(2871); + case 455: + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '.') ADVANCE(3289); + if (lookahead == '=') ADVANCE(3880); + if (lookahead == 'i') ADVANCE(3917); + if (lookahead == '|') ADVANCE(2863); if (lookahead == '\t' || - lookahead == ' ') SKIP(483); + lookahead == ' ') SKIP(485); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3910); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + lookahead == 'e') ADVANCE(3901); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); - case 454: - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '.') ADVANCE(3297); - if (lookahead == '=') ADVANCE(3889); - if (lookahead == '|') ADVANCE(2871); + case 456: + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '.') ADVANCE(3289); + if (lookahead == '=') ADVANCE(3880); + if (lookahead == '|') ADVANCE(2863); if (lookahead == '\t' || - lookahead == ' ') SKIP(484); + lookahead == ' ') SKIP(486); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3910); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + lookahead == 'e') ADVANCE(3901); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); - case 455: - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '.') ADVANCE(3297); - if (lookahead == '?') ADVANCE(3189); - if (lookahead == ']') ADVANCE(2916); - if (lookahead == '}') ADVANCE(3100); + case 457: + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '.') ADVANCE(3289); + if (lookahead == '?') ADVANCE(3181); + if (lookahead == ']') ADVANCE(2908); + if (lookahead == '}') ADVANCE(3092); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3519); + lookahead == ' ') ADVANCE(3510); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3515); + lookahead == ',') ADVANCE(3506); END_STATE(); - case 456: + case 458: ADVANCE_MAP( - '#', 4789, - '.', 3297, - 'E', 3895, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'P', 3898, - 'T', 3898, - 'd', 3915, - 'e', 3894, - 'g', 3897, - 'h', 3941, - 'i', 3932, - 'k', 3897, - 'm', 3899, - 'n', 3951, - 'p', 3897, - 's', 3921, - 't', 3897, - 'u', 3951, - 'w', 3927, - 0xb5, 3951, + '#', 4780, + '.', 3289, + 'E', 3886, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'P', 3889, + 'T', 3889, + 'd', 3906, + 'e', 3885, + 'g', 3888, + 'h', 3932, + 'i', 3923, + 'k', 3888, + 'm', 3890, + 'n', 3942, + 'p', 3888, + 's', 3912, + 't', 3888, + 'u', 3942, + 'w', 3918, + 0xb5, 3942, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(493); + lookahead == ' ') SKIP(495); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + lookahead == 'b') ADVANCE(3420); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); - case 457: + case 459: ADVANCE_MAP( - '#', 4789, - '.', 3879, - '=', 3889, - 'E', 3895, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'P', 3898, - 'T', 3898, - '_', 3900, - 'd', 3915, - 'e', 3894, - 'g', 3897, - 'h', 3941, - 'i', 3926, - 'k', 3897, - 'm', 3899, - 'n', 3951, - 'p', 3897, - 's', 3921, - 't', 3897, - 'u', 3951, - 'w', 3927, - '|', 2871, - 0xb5, 3951, + '#', 4780, + '.', 3870, + '=', 3880, + 'E', 3886, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'P', 3889, + 'T', 3889, + '_', 3891, + 'd', 3906, + 'e', 3885, + 'g', 3888, + 'h', 3932, + 'i', 3917, + 'k', 3888, + 'm', 3890, + 'n', 3942, + 'p', 3888, + 's', 3912, + 't', 3888, + 'u', 3942, + 'w', 3918, + '|', 2863, + 0xb5, 3942, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(483); + lookahead == ' ') SKIP(485); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + lookahead == 'b') ADVANCE(3420); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); - case 458: + case 460: ADVANCE_MAP( - '#', 4789, - '.', 3879, - '=', 3889, - 'E', 3895, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'P', 3898, - 'T', 3898, - 'd', 3915, - 'e', 3894, - 'g', 3897, - 'h', 3941, - 'i', 3926, - 'k', 3897, - 'm', 3899, - 'n', 3951, - 'p', 3897, - 's', 3921, - 't', 3897, - 'u', 3951, - 'w', 3927, - '|', 2871, - 0xb5, 3951, + '#', 4780, + '.', 3870, + '=', 3880, + 'E', 3886, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'P', 3889, + 'T', 3889, + 'd', 3906, + 'e', 3885, + 'g', 3888, + 'h', 3932, + 'i', 3917, + 'k', 3888, + 'm', 3890, + 'n', 3942, + 'p', 3888, + 's', 3912, + 't', 3888, + 'u', 3942, + 'w', 3918, + '|', 2863, + 0xb5, 3942, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(483); + lookahead == ' ') SKIP(485); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + lookahead == 'b') ADVANCE(3420); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); - case 459: + case 461: ADVANCE_MAP( - '#', 4789, - '.', 3879, - '=', 3889, - 'E', 3898, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'P', 3898, - 'T', 3898, - 'd', 3915, - 'e', 3897, - 'g', 3897, - 'h', 3941, - 'i', 3926, - 'k', 3897, - 'm', 3899, - 'n', 3951, - 'p', 3897, - 's', 3921, - 't', 3897, - 'u', 3951, - 'w', 3927, - '|', 2871, - 0xb5, 3951, + '#', 4780, + '.', 3870, + '=', 3880, + 'E', 3889, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'P', 3889, + 'T', 3889, + 'd', 3906, + 'e', 3888, + 'g', 3888, + 'h', 3932, + 'i', 3917, + 'k', 3888, + 'm', 3890, + 'n', 3942, + 'p', 3888, + 's', 3912, + 't', 3888, + 'u', 3942, + 'w', 3918, + '|', 2863, + 0xb5, 3942, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(483); + lookahead == ' ') SKIP(485); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + lookahead == 'b') ADVANCE(3420); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); - case 460: - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '.') ADVANCE(3879); - if (lookahead == '=') ADVANCE(3889); - if (lookahead == '_') ADVANCE(3900); - if (lookahead == 'i') ADVANCE(3926); - if (lookahead == '|') ADVANCE(2871); + case 462: + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '.') ADVANCE(3870); + if (lookahead == '=') ADVANCE(3880); + if (lookahead == '_') ADVANCE(3891); + if (lookahead == 'i') ADVANCE(3917); + if (lookahead == '|') ADVANCE(2863); if (lookahead == '\t' || - lookahead == ' ') SKIP(483); + lookahead == ' ') SKIP(485); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3910); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + lookahead == 'e') ADVANCE(3901); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); - case 461: - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '.') ADVANCE(3879); - if (lookahead == '=') ADVANCE(3889); - if (lookahead == '_') ADVANCE(3900); - if (lookahead == '|') ADVANCE(2871); + case 463: + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '.') ADVANCE(3870); + if (lookahead == '=') ADVANCE(3880); + if (lookahead == '_') ADVANCE(3891); + if (lookahead == '|') ADVANCE(2863); if (lookahead == '\t' || - lookahead == ' ') SKIP(484); + lookahead == ' ') SKIP(486); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3910); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + lookahead == 'e') ADVANCE(3901); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); - case 462: - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '.') ADVANCE(3879); - if (lookahead == '=') ADVANCE(3889); - if (lookahead == 'i') ADVANCE(3926); - if (lookahead == '|') ADVANCE(2871); + case 464: + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '.') ADVANCE(3870); + if (lookahead == '=') ADVANCE(3880); + if (lookahead == 'i') ADVANCE(3917); + if (lookahead == '|') ADVANCE(2863); if (lookahead == '\t' || - lookahead == ' ') SKIP(483); + lookahead == ' ') SKIP(485); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3910); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + lookahead == 'e') ADVANCE(3901); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); - case 463: - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '.') ADVANCE(3879); - if (lookahead == '=') ADVANCE(3889); - if (lookahead == 'i') ADVANCE(3926); - if (lookahead == '|') ADVANCE(2871); + case 465: + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '.') ADVANCE(3870); + if (lookahead == '=') ADVANCE(3880); + if (lookahead == 'i') ADVANCE(3917); + if (lookahead == '|') ADVANCE(2863); if (lookahead == '\t' || - lookahead == ' ') SKIP(483); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + lookahead == ' ') SKIP(485); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); - case 464: - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '.') ADVANCE(3879); - if (lookahead == '=') ADVANCE(3889); - if (lookahead == '|') ADVANCE(2871); + case 466: + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '.') ADVANCE(3870); + if (lookahead == '=') ADVANCE(3880); + if (lookahead == '|') ADVANCE(2863); if (lookahead == '\t' || - lookahead == ' ') SKIP(484); + lookahead == ' ') SKIP(486); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3910); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + lookahead == 'e') ADVANCE(3901); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); - case 465: - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '.') ADVANCE(3879); - if (lookahead == '=') ADVANCE(3889); - if (lookahead == '|') ADVANCE(2871); + case 467: + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '.') ADVANCE(3870); + if (lookahead == '=') ADVANCE(3880); + if (lookahead == '|') ADVANCE(2863); if (lookahead == '\t' || - lookahead == ' ') SKIP(484); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + lookahead == ' ') SKIP(486); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); - case 466: + case 468: ADVANCE_MAP( - '#', 4789, - '.', 3879, - 'E', 3895, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'P', 3898, - 'T', 3898, - '_', 3900, - 'd', 3915, - 'e', 3894, - 'g', 3897, - 'h', 3941, - 'i', 3932, - 'k', 3897, - 'm', 3899, - 'n', 3951, - 'p', 3897, - 's', 3921, - 't', 3897, - 'u', 3951, - 'w', 3927, - 0xb5, 3951, + '#', 4780, + '.', 3870, + 'E', 3886, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'P', 3889, + 'T', 3889, + '_', 3891, + 'd', 3906, + 'e', 3885, + 'g', 3888, + 'h', 3932, + 'i', 3923, + 'k', 3888, + 'm', 3890, + 'n', 3942, + 'p', 3888, + 's', 3912, + 't', 3888, + 'u', 3942, + 'w', 3918, + 0xb5, 3942, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(493); + lookahead == ' ') SKIP(495); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + lookahead == 'b') ADVANCE(3420); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); - case 467: + case 469: ADVANCE_MAP( - '#', 4789, - '.', 3879, - 'E', 3895, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'P', 3898, - 'T', 3898, - 'd', 3915, - 'e', 3894, - 'g', 3897, - 'h', 3941, - 'i', 3932, - 'k', 3897, - 'm', 3899, - 'n', 3951, - 'p', 3897, - 's', 3921, - 't', 3897, - 'u', 3951, - 'w', 3927, - 0xb5, 3951, + '#', 4780, + '.', 3870, + 'E', 3886, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'P', 3889, + 'T', 3889, + 'd', 3906, + 'e', 3885, + 'g', 3888, + 'h', 3932, + 'i', 3923, + 'k', 3888, + 'm', 3890, + 'n', 3942, + 'p', 3888, + 's', 3912, + 't', 3888, + 'u', 3942, + 'w', 3918, + 0xb5, 3942, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(493); + lookahead == ' ') SKIP(495); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + lookahead == 'b') ADVANCE(3420); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); - case 468: + case 470: ADVANCE_MAP( - '#', 4789, - '.', 3879, - 'E', 3898, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'P', 3898, - 'T', 3898, - 'd', 3915, - 'e', 3897, - 'g', 3897, - 'h', 3941, - 'i', 3932, - 'k', 3897, - 'm', 3899, - 'n', 3951, - 'p', 3897, - 's', 3921, - 't', 3897, - 'u', 3951, - 'w', 3927, - 0xb5, 3951, + '#', 4780, + '.', 3870, + 'E', 3889, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'P', 3889, + 'T', 3889, + 'd', 3906, + 'e', 3888, + 'g', 3888, + 'h', 3932, + 'i', 3923, + 'k', 3888, + 'm', 3890, + 'n', 3942, + 'p', 3888, + 's', 3912, + 't', 3888, + 'u', 3942, + 'w', 3918, + 0xb5, 3942, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(493); + lookahead == ' ') SKIP(495); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + lookahead == 'b') ADVANCE(3420); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); - case 469: + case 471: ADVANCE_MAP( - '#', 4789, - '.', 3283, - ':', 3520, + '#', 4780, + '.', 3275, + ':', 3511, 'E', 2258, 'G', 2260, 'K', 2260, @@ -27199,82 +27594,82 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'u', 2287, 'w', 2274, 0xb5, 2287, - '\t', 479, - ' ', 479, - 'B', 3429, - 'b', 3429, + '\t', 481, + ' ', 481, + 'B', 3420, + 'b', 3420, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(578); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(580); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); - case 470: - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '.') ADVANCE(3283); - if (lookahead == '=') ADVANCE(3889); - if (lookahead == 'i') ADVANCE(3926); - if (lookahead == '|') ADVANCE(2871); + case 472: + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '.') ADVANCE(3275); + if (lookahead == '=') ADVANCE(3880); + if (lookahead == 'i') ADVANCE(3917); + if (lookahead == '|') ADVANCE(2863); if (lookahead == '\t' || - lookahead == ' ') SKIP(483); + lookahead == ' ') SKIP(485); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3910); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + lookahead == 'e') ADVANCE(3901); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); - case 471: - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '.') ADVANCE(3283); - if (lookahead == '=') ADVANCE(3889); - if (lookahead == '|') ADVANCE(2871); + case 473: + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '.') ADVANCE(3275); + if (lookahead == '=') ADVANCE(3880); + if (lookahead == '|') ADVANCE(2863); if (lookahead == '\t' || - lookahead == ' ') SKIP(484); + lookahead == ' ') SKIP(486); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3910); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + lookahead == 'e') ADVANCE(3901); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); - case 472: - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '.') ADVANCE(3283); - if (lookahead == '?') ADVANCE(3189); - if (lookahead == ']') ADVANCE(2916); - if (lookahead == '}') ADVANCE(3100); + case 474: + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '.') ADVANCE(3275); + if (lookahead == '?') ADVANCE(3181); + if (lookahead == ']') ADVANCE(2908); + if (lookahead == '}') ADVANCE(3092); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3519); + lookahead == ' ') ADVANCE(3510); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3515); + lookahead == ',') ADVANCE(3506); END_STATE(); - case 473: - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '.') ADVANCE(3902); - if (lookahead == '_') ADVANCE(3900); + case 475: + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '.') ADVANCE(3893); + if (lookahead == '_') ADVANCE(3891); if (lookahead == '\t' || - lookahead == ' ') SKIP(475); + lookahead == ' ') SKIP(477); if (lookahead == '+' || - lookahead == '-') ADVANCE(3880); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + lookahead == '-') ADVANCE(3871); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); - case 474: - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '.') ADVANCE(3310); - if (lookahead == '_') ADVANCE(3900); + case 476: + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '.') ADVANCE(3302); + if (lookahead == '_') ADVANCE(3891); if (lookahead == '\t' || - lookahead == ' ') SKIP(475); + lookahead == ' ') SKIP(477); if (lookahead == '+' || - lookahead == '-') ADVANCE(3880); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + lookahead == '-') ADVANCE(3871); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); - case 475: - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '.') ADVANCE(621); + case 477: + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '.') ADVANCE(623); if (lookahead == '\t' || - lookahead == ' ') SKIP(475); + lookahead == ' ') SKIP(477); if (lookahead == '+' || - lookahead == '-') ADVANCE(571); + lookahead == '-') ADVANCE(573); END_STATE(); - case 476: + case 478: ADVANCE_MAP( - '#', 4789, - ':', 3520, + '#', 4780, + ':', 3511, 'E', 2258, 'G', 2260, 'K', 2260, @@ -27295,19 +27690,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'u', 2287, 'w', 2274, 0xb5, 2287, - '\t', 479, - ' ', 479, - 'B', 3429, - 'b', 3429, + '\t', 481, + ' ', 481, + 'B', 3420, + 'b', 3420, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(578); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(580); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); - case 477: + case 479: ADVANCE_MAP( - '#', 4789, - ':', 3520, + '#', 4780, + ':', 3511, 'E', 2258, 'G', 2260, 'K', 2260, @@ -27327,18 +27722,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'u', 2287, 'w', 2274, 0xb5, 2287, - '\t', 479, - ' ', 479, - 'B', 3429, - 'b', 3429, + '\t', 481, + ' ', 481, + 'B', 3420, + 'b', 3420, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(578); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(580); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); - case 478: + case 480: ADVANCE_MAP( - '#', 4789, - ':', 3520, + '#', 4780, + ':', 3511, 'E', 2260, 'G', 2260, 'K', 2260, @@ -27358,326 +27753,334 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'u', 2287, 'w', 2274, 0xb5, 2287, - '\t', 479, - ' ', 479, - 'B', 3429, - 'b', 3429, + '\t', 481, + ' ', 481, + 'B', 3420, + 'b', 3420, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(578); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(580); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); - case 479: - if (lookahead == '#') ADVANCE(4789); - if (lookahead == ':') ADVANCE(3520); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(479); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(578); - END_STATE(); - case 480: - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '=') ADVANCE(3661); - if (lookahead == 'i') ADVANCE(3694); - if (lookahead == '\t' || - lookahead == ' ') SKIP(493); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); - END_STATE(); case 481: - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '=') ADVANCE(3661); - if (lookahead == 'i') ADVANCE(2739); + if (lookahead == '#') ADVANCE(4780); + if (lookahead == ':') ADVANCE(3511); if (lookahead == '\t' || - lookahead == ' ') SKIP(493); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2831); + lookahead == ' ') ADVANCE(481); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(580); END_STATE(); case 482: - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '=') ADVANCE(3661); - if (lookahead == '{') ADVANCE(3099); + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '=') ADVANCE(3652); + if (lookahead == 'i') ADVANCE(3685); if (lookahead == '\t' || lookahead == ' ') SKIP(495); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); case 483: - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '=') ADVANCE(602); - if (lookahead == 'i') ADVANCE(674); - if (lookahead == '|') ADVANCE(2871); + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '=') ADVANCE(3652); + if (lookahead == 'i') ADVANCE(2731); if (lookahead == '\t' || - lookahead == ' ') SKIP(483); + lookahead == ' ') SKIP(495); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2823); END_STATE(); case 484: - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '=') ADVANCE(602); - if (lookahead == '|') ADVANCE(2871); + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '=') ADVANCE(3652); + if (lookahead == '{') ADVANCE(3091); if (lookahead == '\t' || - lookahead == ' ') SKIP(484); + lookahead == ' ') SKIP(497); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); case 485: - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '=') ADVANCE(3889); - if (lookahead == '_') ADVANCE(3900); - if (lookahead == 'i') ADVANCE(3926); - if (lookahead == '|') ADVANCE(2871); + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '=') ADVANCE(604); + if (lookahead == 'i') ADVANCE(677); + if (lookahead == '|') ADVANCE(2863); if (lookahead == '\t' || - lookahead == ' ') SKIP(483); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3910); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + lookahead == ' ') SKIP(485); END_STATE(); case 486: - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '=') ADVANCE(3889); - if (lookahead == '_') ADVANCE(3900); - if (lookahead == '|') ADVANCE(2871); + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '=') ADVANCE(604); + if (lookahead == '|') ADVANCE(2863); if (lookahead == '\t' || - lookahead == ' ') SKIP(484); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3910); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + lookahead == ' ') SKIP(486); END_STATE(); case 487: - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '=') ADVANCE(3889); - if (lookahead == 'i') ADVANCE(3926); - if (lookahead == '|') ADVANCE(2871); + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '=') ADVANCE(3880); + if (lookahead == '_') ADVANCE(3891); + if (lookahead == 'i') ADVANCE(3917); + if (lookahead == '|') ADVANCE(2863); if (lookahead == '\t' || - lookahead == ' ') SKIP(483); + lookahead == ' ') SKIP(485); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3910); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + lookahead == 'e') ADVANCE(3901); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 488: - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '=') ADVANCE(3889); - if (lookahead == 'i') ADVANCE(3926); - if (lookahead == '|') ADVANCE(2871); + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '=') ADVANCE(3880); + if (lookahead == '_') ADVANCE(3891); + if (lookahead == '|') ADVANCE(2863); if (lookahead == '\t' || - lookahead == ' ') SKIP(483); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + lookahead == ' ') SKIP(486); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(3901); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 489: - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '=') ADVANCE(3889); - if (lookahead == '|') ADVANCE(2871); + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '=') ADVANCE(3880); + if (lookahead == 'i') ADVANCE(3917); + if (lookahead == '|') ADVANCE(2863); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(194); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + lookahead == ' ') SKIP(485); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(3901); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 490: - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '=') ADVANCE(3889); - if (lookahead == '|') ADVANCE(2871); + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '=') ADVANCE(3880); + if (lookahead == 'i') ADVANCE(3917); + if (lookahead == '|') ADVANCE(2863); if (lookahead == '\t' || - lookahead == ' ') SKIP(484); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3910); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + lookahead == ' ') SKIP(485); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 491: - ADVANCE_MAP( - '#', 4789, - ']', 2916, - 'c', 2441, - 'e', 2560, - 'f', 2627, - 'i', 2490, - 'l', 2458, - 'o', 2500, - 'v', 2379, - '\t', 3519, - ' ', 3519, - ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3515); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2652); + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '=') ADVANCE(3880); + if (lookahead == '|') ADVANCE(2863); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(197); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 492: - if (lookahead == '#') ADVANCE(4789); - if (lookahead == 'i') ADVANCE(3932); + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '=') ADVANCE(3880); + if (lookahead == '|') ADVANCE(2863); if (lookahead == '\t' || - lookahead == ' ') SKIP(493); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + lookahead == ' ') SKIP(486); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(3901); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 493: - if (lookahead == '#') ADVANCE(4789); - if (lookahead == 'i') ADVANCE(725); - if (lookahead == '\t' || - lookahead == ' ') SKIP(493); + ADVANCE_MAP( + '#', 4780, + '[', 2907, + ']', 2908, + 'c', 2435, + 'e', 2552, + 'f', 2619, + 'i', 2483, + 'l', 2452, + 'o', 2493, + 'v', 2373, + '\t', 3510, + ' ', 3510, + ); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(3506); + if (lookahead != 0 && + (lookahead < ' ' || '$' < lookahead) && + (lookahead < '&' || '.' < lookahead) && + (lookahead < ':' || '@' < lookahead) && + lookahead != ']' && + lookahead != '^' && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2644); END_STATE(); case 494: - if (lookahead == '#') ADVANCE(4789); - if (lookahead == 'i') ADVANCE(2498); + if (lookahead == '#') ADVANCE(4780); + if (lookahead == 'i') ADVANCE(3923); if (lookahead == '\t' || - lookahead == ' ') SKIP(494); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2652); + lookahead == ' ') SKIP(495); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 495: - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '{') ADVANCE(3099); + if (lookahead == '#') ADVANCE(4780); + if (lookahead == 'i') ADVANCE(727); if (lookahead == '\t' || lookahead == ' ') SKIP(495); END_STATE(); case 496: - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '{') ADVANCE(3099); + if (lookahead == '#') ADVANCE(4780); + if (lookahead == 'i') ADVANCE(2491); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(195); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + lookahead == ' ') SKIP(496); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(2644); END_STATE(); case 497: - if (lookahead == '#') ADVANCE(4789); + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '{') ADVANCE(3091); if (lookahead == '\t' || lookahead == ' ') SKIP(497); END_STATE(); case 498: - if (lookahead == '#') ADVANCE(4789); + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '{') ADVANCE(3091); if (lookahead == '\t' || - lookahead == ' ') SKIP(497); - if (set_contains(sym_param_short_flag_identifier_character_set_1, 724, lookahead)) ADVANCE(2986); + lookahead == ' ') ADVANCE(198); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 499: - if (lookahead == '#') ADVANCE(4789); + if (lookahead == '#') ADVANCE(4780); if (lookahead == '\t' || - lookahead == ' ') SKIP(497); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3603); + lookahead == ' ') SKIP(499); END_STATE(); case 500: - if (lookahead == '#') ADVANCE(4789); + if (lookahead == '#') ADVANCE(4780); if (lookahead == '\t' || - lookahead == ' ') SKIP(497); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); + lookahead == ' ') SKIP(499); + if (set_contains(sym_param_short_flag_identifier_character_set_1, 724, lookahead)) ADVANCE(2978); END_STATE(); case 501: - if (lookahead == '#') ADVANCE(4789); + if (lookahead == '#') ADVANCE(4780); if (lookahead == '\t' || - lookahead == ' ') SKIP(497); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); + lookahead == ' ') SKIP(499); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3594); END_STATE(); case 502: - if (lookahead == '#') ADVANCE(4789); + if (lookahead == '#') ADVANCE(4780); if (lookahead == '\t' || - lookahead == ' ') SKIP(497); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + lookahead == ' ') SKIP(499); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 503: - if (lookahead == '#') ADVANCE(4793); - if (lookahead == '(') ADVANCE(3220); - if (lookahead == '}') ADVANCE(3100); + if (lookahead == '#') ADVANCE(4780); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3519); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3515); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4782); + lookahead == ' ') SKIP(499); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); END_STATE(); case 504: - if (lookahead == '#') ADVANCE(4793); - if (lookahead == '(') ADVANCE(3220); + if (lookahead == '#') ADVANCE(4780); if (lookahead == '\t' || - lookahead == ' ') SKIP(497); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4782); + lookahead == ' ') SKIP(499); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 505: - if (lookahead == '#') ADVANCE(4796); - if (lookahead == '$') ADVANCE(2926); - if (lookahead == '-') ADVANCE(2974); - if (lookahead == '{') ADVANCE(3099); + if (lookahead == '#') ADVANCE(4784); + if (lookahead == '(') ADVANCE(3212); + if (lookahead == '}') ADVANCE(3092); if (lookahead == '\t' || - lookahead == ' ') SKIP(387); + lookahead == ' ') ADVANCE(3510); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(3506); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4773); + END_STATE(); + case 506: + if (lookahead == '#') ADVANCE(4784); + if (lookahead == '(') ADVANCE(3212); + if (lookahead == '\t' || + lookahead == ' ') SKIP(499); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4773); + END_STATE(); + case 507: + if (lookahead == '#') ADVANCE(4787); + if (lookahead == '$') ADVANCE(2918); + if (lookahead == '-') ADVANCE(2964); + if (lookahead == '{') ADVANCE(3091); + if (lookahead == '\t' || + lookahead == ' ') SKIP(389); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= '.') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4221); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(4205); + lookahead == '^') ADVANCE(4212); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(4196); END_STATE(); - case 506: - if (lookahead == '#') ADVANCE(4796); - if (lookahead == '$') ADVANCE(2926); + case 508: + if (lookahead == '#') ADVANCE(4787); + if (lookahead == '$') ADVANCE(2918); if (lookahead == '\t' || - lookahead == ' ') SKIP(403); + lookahead == ' ') SKIP(405); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= '.') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4221); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(4205); + lookahead == '^') ADVANCE(4212); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(4196); END_STATE(); - case 507: - if (lookahead == '#') ADVANCE(4796); - if (lookahead == '(') ADVANCE(3220); - if (lookahead == '-') ADVANCE(2974); - if (lookahead == '{') ADVANCE(3099); + case 509: + if (lookahead == '#') ADVANCE(4787); + if (lookahead == '(') ADVANCE(3212); + if (lookahead == '-') ADVANCE(2964); + if (lookahead == '{') ADVANCE(3091); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(193); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + lookahead == ' ') ADVANCE(196); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); - case 508: - if (lookahead == '#') ADVANCE(4796); - if (lookahead == '(') ADVANCE(3220); - if (lookahead == '=') ADVANCE(4037); - if (lookahead == '|') ADVANCE(2871); + case 510: + if (lookahead == '#') ADVANCE(4787); + if (lookahead == '(') ADVANCE(3212); + if (lookahead == '=') ADVANCE(4028); + if (lookahead == '|') ADVANCE(2863); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(194); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + lookahead == ' ') ADVANCE(197); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); - case 509: - if (lookahead == '#') ADVANCE(4796); - if (lookahead == '(') ADVANCE(3220); - if (lookahead == '{') ADVANCE(3099); + case 511: + if (lookahead == '#') ADVANCE(4787); + if (lookahead == '(') ADVANCE(3212); + if (lookahead == '{') ADVANCE(3091); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(195); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + lookahead == ' ') ADVANCE(198); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); - case 510: - if (lookahead == '#') ADVANCE(4796); - if (lookahead == '-') ADVANCE(2974); + case 512: + if (lookahead == '#') ADVANCE(4787); + if (lookahead == '-') ADVANCE(2964); if (lookahead == '\t' || - lookahead == ' ') SKIP(451); + lookahead == ' ') SKIP(453); if (lookahead == '!' || lookahead == '$' || lookahead == '&' || ('*' <= lookahead && lookahead <= '.') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4221); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(4205); + lookahead == '^') ADVANCE(4212); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(4196); END_STATE(); - case 511: - if (lookahead == '#') ADVANCE(4796); - if (lookahead == '=') ADVANCE(4037); - if (lookahead == 'i') ADVANCE(4088); - if (lookahead == '|') ADVANCE(2871); + case 513: + if (lookahead == '#') ADVANCE(4787); + if (lookahead == '=') ADVANCE(4028); + if (lookahead == 'i') ADVANCE(4079); + if (lookahead == '|') ADVANCE(2863); if (lookahead == '\t' || - lookahead == ' ') SKIP(483); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + lookahead == ' ') SKIP(485); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); - case 512: - if (lookahead == '#') ADVANCE(4796); - if (lookahead == 'i') ADVANCE(4112); + case 514: + if (lookahead == '#') ADVANCE(4787); + if (lookahead == 'i') ADVANCE(4103); if (lookahead == '\t' || - lookahead == ' ') SKIP(493); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + lookahead == ' ') SKIP(495); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); - case 513: - if (lookahead == '#') ADVANCE(4792); - if (lookahead == ':') ADVANCE(3520); + case 515: + if (lookahead == '#') ADVANCE(4783); + if (lookahead == ':') ADVANCE(3511); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(479); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(578); + lookahead == ' ') ADVANCE(481); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(580); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); END_STATE(); - case 514: - if (lookahead == '#') ADVANCE(4795); - if (lookahead == '(') ADVANCE(3220); - if (lookahead == ']') ADVANCE(2916); + case 516: + if (lookahead == '#') ADVANCE(4786); + if (lookahead == '(') ADVANCE(3212); + if (lookahead == ']') ADVANCE(2908); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3519); + lookahead == ' ') ADVANCE(3510); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3515); + lookahead == ',') ADVANCE(3506); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -27685,1332 +28088,1319 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4508); - END_STATE(); - case 515: - if (lookahead == '#') ADVANCE(4795); - if (lookahead == '(') ADVANCE(3220); - if (lookahead == '\t' || - lookahead == ' ') SKIP(497); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); - END_STATE(); - case 516: - if (lookahead == '#') ADVANCE(3504); - if (lookahead == '\'') ADVANCE(3507); - if (lookahead == '(') ADVANCE(2917); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3503); - if (lookahead != 0) ADVANCE(3504); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4499); END_STATE(); case 517: - if (lookahead == '\'') ADVANCE(3495); - if (lookahead != 0) ADVANCE(517); + if (lookahead == '#') ADVANCE(4786); + if (lookahead == '(') ADVANCE(3212); + if (lookahead == '\t' || + lookahead == ' ') SKIP(499); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 518: - if (lookahead == '*') ADVANCE(165); + if (lookahead == '#') ADVANCE(3495); + if (lookahead == '\'') ADVANCE(3498); + if (lookahead == '(') ADVANCE(2909); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3494); + if (lookahead != 0) ADVANCE(3495); END_STATE(); case 519: - if (lookahead == '*') ADVANCE(864); - if (lookahead == '=') ADVANCE(1103); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3223); + if (lookahead == '\'') ADVANCE(3486); + if (lookahead != 0) ADVANCE(519); END_STATE(); case 520: - if (lookahead == '*') ADVANCE(864); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3223); + if (lookahead == '*') ADVANCE(168); END_STATE(); case 521: - if (lookahead == '+') ADVANCE(617); - if (lookahead == '-') ADVANCE(619); - if (lookahead == '>') ADVANCE(3614); - if (lookahead == '_') ADVANCE(619); - if (lookahead == 'n') ADVANCE(654); - if (lookahead == 'r') ADVANCE(767); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + if (lookahead == '*') ADVANCE(868); + if (lookahead == '=') ADVANCE(1103); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3215); END_STATE(); case 522: - if (lookahead == '+') ADVANCE(617); - if (lookahead == '-') ADVANCE(619); - if (lookahead == '>') ADVANCE(3614); - if (lookahead == '_') ADVANCE(619); - if (lookahead == 'r') ADVANCE(767); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + if (lookahead == '*') ADVANCE(868); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3215); END_STATE(); case 523: - if (lookahead == '+') ADVANCE(588); - if (lookahead == '=') ADVANCE(1101); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3227); + if (lookahead == '+') ADVANCE(673); + if (lookahead == '>') ADVANCE(856); + if (lookahead == 'r') ADVANCE(3192); + if (lookahead == 'u') ADVANCE(810); END_STATE(); case 524: - if (lookahead == '+') ADVANCE(671); - if (lookahead == '>') ADVANCE(852); - if (lookahead == 'r') ADVANCE(3200); - if (lookahead == 'u') ADVANCE(809); + if (lookahead == '+') ADVANCE(673); + if (lookahead == '>') ADVANCE(856); + if (lookahead == 'r') ADVANCE(173); + if (lookahead == 'u') ADVANCE(810); END_STATE(); case 525: - if (lookahead == '+') ADVANCE(671); - if (lookahead == '>') ADVANCE(852); - if (lookahead == 'r') ADVANCE(170); - if (lookahead == 'u') ADVANCE(809); + if (lookahead == '+') ADVANCE(673); + if (lookahead == '>') ADVANCE(856); + if (lookahead == 'r') ADVANCE(874); + if (lookahead == 'u') ADVANCE(810); END_STATE(); case 526: - if (lookahead == '+') ADVANCE(671); - if (lookahead == '>') ADVANCE(852); - if (lookahead == 'r') ADVANCE(870); - if (lookahead == 'u') ADVANCE(809); + if (lookahead == '+') ADVANCE(673); + if (lookahead == '>') ADVANCE(856); + if (lookahead == 'u') ADVANCE(810); END_STATE(); case 527: - if (lookahead == '+') ADVANCE(671); - if (lookahead == '>') ADVANCE(852); - if (lookahead == 'u') ADVANCE(809); + if (lookahead == '+') ADVANCE(619); + if (lookahead == '-') ADVANCE(621); + if (lookahead == '>') ADVANCE(3605); + if (lookahead == '_') ADVANCE(621); + if (lookahead == 'n') ADVANCE(657); + if (lookahead == 'r') ADVANCE(769); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); END_STATE(); case 528: - if (lookahead == '+') ADVANCE(587); - if (lookahead == '=') ADVANCE(1101); + if (lookahead == '+') ADVANCE(619); + if (lookahead == '-') ADVANCE(621); + if (lookahead == '>') ADVANCE(3605); + if (lookahead == '_') ADVANCE(621); + if (lookahead == 'r') ADVANCE(769); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); END_STATE(); case 529: - if (lookahead == '+') ADVANCE(739); - if (lookahead == '>') ADVANCE(851); - if (lookahead == 'l') ADVANCE(790); - if (lookahead == 'r') ADVANCE(764); - if (lookahead == 'x') ADVANCE(824); + if (lookahead == '+') ADVANCE(590); + if (lookahead == '=') ADVANCE(1101); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3219); END_STATE(); case 530: - if (lookahead == '+') ADVANCE(739); - if (lookahead == '>') ADVANCE(851); - if (lookahead == 'n') ADVANCE(643); - if (lookahead == 'r') ADVANCE(764); + if (lookahead == '+') ADVANCE(589); + if (lookahead == '=') ADVANCE(1101); END_STATE(); case 531: - if (lookahead == '+') ADVANCE(739); - if (lookahead == '>') ADVANCE(851); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'r') ADVANCE(764); + if (lookahead == '+') ADVANCE(741); + if (lookahead == '>') ADVANCE(855); + if (lookahead == 'n') ADVANCE(646); + if (lookahead == 'r') ADVANCE(767); END_STATE(); case 532: - if (lookahead == '+') ADVANCE(739); - if (lookahead == '>') ADVANCE(851); - if (lookahead == 'r') ADVANCE(764); + if (lookahead == '+') ADVANCE(741); + if (lookahead == '>') ADVANCE(855); + if (lookahead == 'n') ADVANCE(656); + if (lookahead == 'r') ADVANCE(767); END_STATE(); case 533: - if (lookahead == '+') ADVANCE(739); - if (lookahead == '>') ADVANCE(851); - if (lookahead == 'r') ADVANCE(764); - if (lookahead == 'x') ADVANCE(824); + if (lookahead == '+') ADVANCE(741); + if (lookahead == '>') ADVANCE(855); + if (lookahead == 'r') ADVANCE(767); END_STATE(); case 534: if (lookahead == '+') ADVANCE(741); - if (lookahead == '>') ADVANCE(854); + if (lookahead == '>') ADVANCE(855); + if (lookahead == 'r') ADVANCE(767); + if (lookahead == 'x') ADVANCE(812); END_STATE(); case 535: - if (lookahead == '+') ADVANCE(743); - if (lookahead == '>') ADVANCE(3614); - if (lookahead == 'I') ADVANCE(885); - if (lookahead == 'i') ADVANCE(885); - if (lookahead == 'r') ADVANCE(767); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); + if (lookahead == '+') ADVANCE(742); + if (lookahead == '>') ADVANCE(858); END_STATE(); case 536: - if (lookahead == '+') ADVANCE(743); - if (lookahead == '>') ADVANCE(3614); - if (lookahead == 'n') ADVANCE(643); - if (lookahead == 'r') ADVANCE(767); + if (lookahead == '+') ADVANCE(746); + if (lookahead == '>') ADVANCE(3605); + if (lookahead == 'I') ADVANCE(889); + if (lookahead == 'i') ADVANCE(889); + if (lookahead == 'r') ADVANCE(769); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3420); END_STATE(); case 537: - if (lookahead == '+') ADVANCE(743); - if (lookahead == '>') ADVANCE(3614); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'r') ADVANCE(767); + if (lookahead == '+') ADVANCE(746); + if (lookahead == '>') ADVANCE(3605); + if (lookahead == 'l') ADVANCE(795); + if (lookahead == 'r') ADVANCE(769); END_STATE(); case 538: - if (lookahead == '+') ADVANCE(743); - if (lookahead == '>') ADVANCE(3614); - if (lookahead == 'n') ADVANCE(654); - if (lookahead == 'r') ADVANCE(767); + if (lookahead == '+') ADVANCE(746); + if (lookahead == '>') ADVANCE(3605); + if (lookahead == 'n') ADVANCE(646); + if (lookahead == 'r') ADVANCE(769); END_STATE(); case 539: - if (lookahead == '+') ADVANCE(743); - if (lookahead == '>') ADVANCE(3614); - if (lookahead == 'r') ADVANCE(767); + if (lookahead == '+') ADVANCE(746); + if (lookahead == '>') ADVANCE(3605); + if (lookahead == 'n') ADVANCE(656); + if (lookahead == 'r') ADVANCE(769); END_STATE(); case 540: - if (lookahead == '+') ADVANCE(668); - if (lookahead == '>') ADVANCE(3618); - if (lookahead == 'r') ADVANCE(3200); - if (lookahead == 'u') ADVANCE(812); + if (lookahead == '+') ADVANCE(746); + if (lookahead == '>') ADVANCE(3605); + if (lookahead == 'n') ADVANCE(657); + if (lookahead == 'r') ADVANCE(769); END_STATE(); case 541: - if (lookahead == '+') ADVANCE(668); - if (lookahead == '>') ADVANCE(3618); - if (lookahead == 'r') ADVANCE(170); - if (lookahead == 'u') ADVANCE(812); + if (lookahead == '+') ADVANCE(746); + if (lookahead == '>') ADVANCE(3605); + if (lookahead == 'r') ADVANCE(769); END_STATE(); case 542: - if (lookahead == '+') ADVANCE(668); - if (lookahead == '>') ADVANCE(3618); - if (lookahead == 'r') ADVANCE(870); - if (lookahead == 'u') ADVANCE(812); + if (lookahead == '+') ADVANCE(869); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3219); END_STATE(); case 543: - if (lookahead == '+') ADVANCE(668); - if (lookahead == '>') ADVANCE(3618); - if (lookahead == 'u') ADVANCE(812); + if (lookahead == '+') ADVANCE(669); + if (lookahead == '>') ADVANCE(3609); + if (lookahead == 'r') ADVANCE(3192); + if (lookahead == 'u') ADVANCE(813); END_STATE(); case 544: - if (lookahead == '+') ADVANCE(865); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3227); + if (lookahead == '+') ADVANCE(669); + if (lookahead == '>') ADVANCE(3609); + if (lookahead == 'r') ADVANCE(173); + if (lookahead == 'u') ADVANCE(813); END_STATE(); case 545: - if (lookahead == '+') ADVANCE(753); - if (lookahead == '>') ADVANCE(3606); + if (lookahead == '+') ADVANCE(669); + if (lookahead == '>') ADVANCE(3609); + if (lookahead == 'r') ADVANCE(874); + if (lookahead == 'u') ADVANCE(813); END_STATE(); case 546: - if (lookahead == '+') ADVANCE(670); - if (lookahead == '>') ADVANCE(856); + if (lookahead == '+') ADVANCE(669); + if (lookahead == '>') ADVANCE(3609); + if (lookahead == 'u') ADVANCE(813); END_STATE(); case 547: - if (lookahead == '+') ADVANCE(672); - if (lookahead == '>') ADVANCE(3610); + if (lookahead == '+') ADVANCE(671); + if (lookahead == '>') ADVANCE(860); END_STATE(); case 548: - if (lookahead == '-') ADVANCE(2956); - if (lookahead == '.') ADVANCE(611); - if (lookahead == '_') ADVANCE(566); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(890); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); + if (lookahead == '+') ADVANCE(755); + if (lookahead == '>') ADVANCE(3597); END_STATE(); case 549: - if (lookahead == '-') ADVANCE(635); + if (lookahead == '+') ADVANCE(675); + if (lookahead == '>') ADVANCE(3601); END_STATE(); case 550: - if (lookahead == '-') ADVANCE(840); + if (lookahead == '-') ADVANCE(2948); + if (lookahead == '.') ADVANCE(613); + if (lookahead == '_') ADVANCE(568); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(894); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3400); END_STATE(); case 551: - if (lookahead == '-') ADVANCE(703); + if (lookahead == '-') ADVANCE(638); END_STATE(); case 552: - if (lookahead == '-') ADVANCE(634); + if (lookahead == '-') ADVANCE(844); END_STATE(); case 553: - if (lookahead == '-') ADVANCE(740); + if (lookahead == '-') ADVANCE(706); END_STATE(); case 554: - if (lookahead == '-') ADVANCE(706); + if (lookahead == '-') ADVANCE(637); END_STATE(); case 555: - if (lookahead == '-') ADVANCE(699); + if (lookahead == '-') ADVANCE(708); END_STATE(); case 556: - if (lookahead == '-') ADVANCE(801); + if (lookahead == '-') ADVANCE(701); END_STATE(); case 557: - if (lookahead == '-') ADVANCE(911); + if (lookahead == '-') ADVANCE(743); END_STATE(); case 558: - if (lookahead == '-') ADVANCE(841); + if (lookahead == '-') ADVANCE(811); END_STATE(); case 559: - if (lookahead == '-') ADVANCE(761); + if (lookahead == '-') ADVANCE(915); END_STATE(); case 560: - if (lookahead == '-') ADVANCE(843); + if (lookahead == '-') ADVANCE(845); END_STATE(); case 561: - if (lookahead == '-') ADVANCE(844); + if (lookahead == '-') ADVANCE(846); END_STATE(); case 562: - if (lookahead == '-') ADVANCE(845); + if (lookahead == '-') ADVANCE(764); END_STATE(); case 563: - if (lookahead == '-') ADVANCE(846); + if (lookahead == '-') ADVANCE(847); END_STATE(); case 564: - if (lookahead == '.') ADVANCE(611); - if (lookahead == '>') ADVANCE(2914); - if (lookahead == '_') ADVANCE(566); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(890); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); + if (lookahead == '-') ADVANCE(849); END_STATE(); case 565: - if (lookahead == '.') ADVANCE(611); - if (lookahead == '_') ADVANCE(566); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(890); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); + if (lookahead == '-') ADVANCE(850); END_STATE(); case 566: - if (lookahead == '.') ADVANCE(611); - if (lookahead == '_') ADVANCE(566); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); + if (lookahead == '.') ADVANCE(613); + if (lookahead == '>') ADVANCE(2906); + if (lookahead == '_') ADVANCE(568); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(894); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3400); END_STATE(); case 567: - if (lookahead == '.') ADVANCE(3110); - if (lookahead == '_') ADVANCE(613); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3414); + if (lookahead == '.') ADVANCE(613); + if (lookahead == '_') ADVANCE(568); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(894); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3400); END_STATE(); case 568: - if (lookahead == '.') ADVANCE(3282); + if (lookahead == '.') ADVANCE(613); + if (lookahead == '_') ADVANCE(568); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3400); END_STATE(); case 569: - if (lookahead == '.') ADVANCE(3282); - if (lookahead == '_') ADVANCE(621); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3359); + if (lookahead == '.') ADVANCE(3102); + if (lookahead == '_') ADVANCE(616); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3406); END_STATE(); case 570: - if (lookahead == '.') ADVANCE(2952); + if (lookahead == '.') ADVANCE(3274); END_STATE(); case 571: - if (lookahead == '.') ADVANCE(612); - if (lookahead == '_') ADVANCE(571); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3353); + if (lookahead == '.') ADVANCE(3274); + if (lookahead == '_') ADVANCE(623); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3351); END_STATE(); case 572: - if (lookahead == '.') ADVANCE(570); + if (lookahead == '.') ADVANCE(2944); END_STATE(); case 573: - if (lookahead == '.') ADVANCE(570); - if (lookahead == '_') ADVANCE(621); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3359); + if (lookahead == '.') ADVANCE(614); + if (lookahead == '_') ADVANCE(573); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3345); END_STATE(); case 574: - if (lookahead == '/') ADVANCE(866); - if (lookahead == '=') ADVANCE(1104); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3224); + if (lookahead == '.') ADVANCE(572); END_STATE(); case 575: - if (lookahead == '/') ADVANCE(866); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3224); + if (lookahead == '.') ADVANCE(572); + if (lookahead == '_') ADVANCE(623); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3351); END_STATE(); case 576: - if (lookahead == '2') ADVANCE(899); - if (lookahead == '0' || - lookahead == '1') ADVANCE(906); + if (lookahead == '/') ADVANCE(870); + if (lookahead == '=') ADVANCE(1104); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3216); END_STATE(); case 577: - if (lookahead == ':') ADVANCE(3520); - if (lookahead == ';') ADVANCE(3532); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(577); + if (lookahead == '/') ADVANCE(870); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3216); END_STATE(); case 578: - if (lookahead == ':') ADVANCE(3520); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(578); + if (lookahead == '2') ADVANCE(903); + if (lookahead == '0' || + lookahead == '1') ADVANCE(910); END_STATE(); case 579: - if (lookahead == ':') ADVANCE(903); + if (lookahead == ':') ADVANCE(3511); + if (lookahead == ';') ADVANCE(3523); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(579); END_STATE(); case 580: - if (lookahead == ':') ADVANCE(907); + if (lookahead == ':') ADVANCE(3511); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(580); END_STATE(); case 581: - if (lookahead == ';') ADVANCE(3532); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(581); + if (lookahead == ':') ADVANCE(907); END_STATE(); case 582: - if (lookahead == '=') ADVANCE(3211); - if (lookahead == '~') ADVANCE(3217); + if (lookahead == ':') ADVANCE(911); END_STATE(); case 583: - if (lookahead == '=') ADVANCE(1103); + if (lookahead == ';') ADVANCE(3523); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(583); END_STATE(); case 584: - if (lookahead == '=') ADVANCE(1102); + if (lookahead == '=') ADVANCE(3203); + if (lookahead == '~') ADVANCE(3209); END_STATE(); case 585: - if (lookahead == '=') ADVANCE(1102); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3228); + if (lookahead == '=') ADVANCE(1103); END_STATE(); case 586: - if (lookahead == '=') ADVANCE(1104); + if (lookahead == '=') ADVANCE(1102); END_STATE(); case 587: - if (lookahead == '=') ADVANCE(1105); + if (lookahead == '=') ADVANCE(1102); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3220); END_STATE(); case 588: - if (lookahead == '=') ADVANCE(1105); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3222); + if (lookahead == '=') ADVANCE(1104); END_STATE(); case 589: - if (lookahead == '=') ADVANCE(862); - if (lookahead == '~') ADVANCE(863); + if (lookahead == '=') ADVANCE(1105); END_STATE(); case 590: - if (lookahead == '=') ADVANCE(3210); - if (lookahead == '>') ADVANCE(3101); - if (lookahead == '~') ADVANCE(3216); + if (lookahead == '=') ADVANCE(1105); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3214); END_STATE(); case 591: - if (lookahead == '=') ADVANCE(163); - if (lookahead == '~') ADVANCE(164); + if (lookahead == '=') ADVANCE(866); + if (lookahead == '~') ADVANCE(867); END_STATE(); case 592: - if (lookahead == '=') ADVANCE(882); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3245); + if (lookahead == '=') ADVANCE(3202); + if (lookahead == '>') ADVANCE(3093); + if (lookahead == '~') ADVANCE(3208); END_STATE(); case 593: - if (lookahead == '=') ADVANCE(867); - if (lookahead == '>') ADVANCE(3101); - if (lookahead == '~') ADVANCE(868); + if (lookahead == '=') ADVANCE(166); + if (lookahead == '~') ADVANCE(167); END_STATE(); case 594: - if (lookahead == '=') ADVANCE(867); - if (lookahead == '~') ADVANCE(868); + if (lookahead == '=') ADVANCE(886); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3237); END_STATE(); case 595: - if (lookahead == '=') ADVANCE(883); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3247); + if (lookahead == '=') ADVANCE(871); + if (lookahead == '>') ADVANCE(3093); + if (lookahead == '~') ADVANCE(872); END_STATE(); case 596: - if (lookahead == '=') ADVANCE(167); - if (lookahead == '>') ADVANCE(3101); - if (lookahead == '~') ADVANCE(168); + if (lookahead == '=') ADVANCE(871); + if (lookahead == '~') ADVANCE(872); END_STATE(); case 597: - if (lookahead == '=') ADVANCE(167); - if (lookahead == '~') ADVANCE(168); + if (lookahead == '=') ADVANCE(887); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3239); END_STATE(); case 598: - if (lookahead == '>') ADVANCE(3634); + if (lookahead == '=') ADVANCE(170); + if (lookahead == '>') ADVANCE(3093); + if (lookahead == '~') ADVANCE(171); END_STATE(); case 599: - if (lookahead == '>') ADVANCE(3630); + if (lookahead == '=') ADVANCE(170); + if (lookahead == '~') ADVANCE(171); END_STATE(); case 600: - if (lookahead == '>') ADVANCE(3622); + if (lookahead == '>') ADVANCE(3625); END_STATE(); case 601: - if (lookahead == '>') ADVANCE(3626); + if (lookahead == '>') ADVANCE(3621); END_STATE(); case 602: - if (lookahead == '>') ADVANCE(3101); + if (lookahead == '>') ADVANCE(3613); END_STATE(); case 603: - if (lookahead == '>') ADVANCE(2914); + if (lookahead == '>') ADVANCE(3617); END_STATE(); case 604: - if (lookahead == '>') ADVANCE(853); + if (lookahead == '>') ADVANCE(3093); END_STATE(); case 605: - if (lookahead == '>') ADVANCE(855); + if (lookahead == '>') ADVANCE(2906); END_STATE(); case 606: if (lookahead == '>') ADVANCE(857); END_STATE(); case 607: - if (lookahead == '>') ADVANCE(858); + if (lookahead == '>') ADVANCE(859); END_STATE(); case 608: - if (lookahead == 'I') ADVANCE(885); - if (lookahead == 'i') ADVANCE(885); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); + if (lookahead == '>') ADVANCE(861); END_STATE(); case 609: - if (lookahead == 'I') ADVANCE(885); - if (lookahead == 'i') ADVANCE(638); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); + if (lookahead == '>') ADVANCE(862); END_STATE(); case 610: - if (lookahead == 'I') ADVANCE(885); - if (lookahead == 'i') ADVANCE(723); - if (lookahead == 's') ADVANCE(3434); + if (lookahead == 'I') ADVANCE(889); + if (lookahead == 'i') ADVANCE(889); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); + lookahead == 'b') ADVANCE(3420); END_STATE(); case 611: - if (lookahead == '_') ADVANCE(611); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3418); + if (lookahead == 'I') ADVANCE(889); + if (lookahead == 'i') ADVANCE(641); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3420); END_STATE(); case 612: - if (lookahead == '_') ADVANCE(612); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3366); + if (lookahead == 'I') ADVANCE(889); + if (lookahead == 'i') ADVANCE(725); + if (lookahead == 's') ADVANCE(3425); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3420); END_STATE(); case 613: if (lookahead == '_') ADVANCE(613); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3414); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3410); END_STATE(); case 614: - if (lookahead == '_') ADVANCE(615); - if (lookahead == '+' || - lookahead == '-') ADVANCE(615); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3410); + if (lookahead == '_') ADVANCE(614); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3358); END_STATE(); case 615: if (lookahead == '_') ADVANCE(615); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3410); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); END_STATE(); case 616: if (lookahead == '_') ADVANCE(616); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3406); END_STATE(); case 617: - if (lookahead == '_') ADVANCE(619); - if (lookahead == 'o') ADVANCE(598); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + if (lookahead == '_') ADVANCE(618); + if (lookahead == '+' || + lookahead == '-') ADVANCE(618); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3402); END_STATE(); case 618: - if (lookahead == '_') ADVANCE(619); - if (lookahead == '+' || - lookahead == '-') ADVANCE(619); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + if (lookahead == '_') ADVANCE(618); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3402); END_STATE(); case 619: - if (lookahead == '_') ADVANCE(619); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + if (lookahead == '_') ADVANCE(621); + if (lookahead == 'o') ADVANCE(600); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); END_STATE(); case 620: - if (lookahead == '_') ADVANCE(620); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if (lookahead == '_') ADVANCE(621); + if (lookahead == '+' || + lookahead == '-') ADVANCE(621); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); END_STATE(); case 621: if (lookahead == '_') ADVANCE(621); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3359); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); END_STATE(); case 622: - if (lookahead == '_') ADVANCE(623); - if (lookahead == '+' || - lookahead == '-') ADVANCE(623); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3355); + if (lookahead == '_') ADVANCE(622); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); END_STATE(); case 623: if (lookahead == '_') ADVANCE(623); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3355); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3351); END_STATE(); case 624: - if (lookahead == '`') ADVANCE(3497); - if (lookahead != 0) ADVANCE(624); + if (lookahead == '_') ADVANCE(625); + if (lookahead == '+' || + lookahead == '-') ADVANCE(625); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3347); END_STATE(); case 625: - if (lookahead == 'a') ADVANCE(709); - if (lookahead == 'o') ADVANCE(645); + if (lookahead == '_') ADVANCE(625); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3347); END_STATE(); case 626: - if (lookahead == 'a') ADVANCE(769); + if (lookahead == '`') ADVANCE(3488); + if (lookahead != 0) ADVANCE(626); END_STATE(); case 627: - if (lookahead == 'a') ADVANCE(847); + if (lookahead == 'a') ADVANCE(712); + if (lookahead == 'o') ADVANCE(647); END_STATE(); case 628: - if (lookahead == 'a') ADVANCE(719); + if (lookahead == 'a') ADVANCE(851); END_STATE(); case 629: - if (lookahead == 'a') ADVANCE(786); + if (lookahead == 'a') ADVANCE(772); END_STATE(); case 630: - if (lookahead == 'a') ADVANCE(811); + if (lookahead == 'a') ADVANCE(721); END_STATE(); case 631: - if (lookahead == 'a') ADVANCE(818); + if (lookahead == 'a') ADVANCE(789); END_STATE(); case 632: - if (lookahead == 'a') ADVANCE(813); + if (lookahead == 'a') ADVANCE(824); END_STATE(); case 633: - if (lookahead == 'a') ADVANCE(807); - if (lookahead == 'o') ADVANCE(734); + if (lookahead == 'a') ADVANCE(818); END_STATE(); case 634: - if (lookahead == 'a') ADVANCE(736); - if (lookahead == 'o') ADVANCE(779); - if (lookahead == 's') ADVANCE(687); - if (lookahead == 'x') ADVANCE(755); + if (lookahead == 'a') ADVANCE(828); END_STATE(); case 635: - if (lookahead == 'a') ADVANCE(735); - if (lookahead == 'o') ADVANCE(776); - if (lookahead == 's') ADVANCE(680); - if (lookahead == 'x') ADVANCE(756); + if (lookahead == 'a') ADVANCE(820); END_STATE(); case 636: - if (lookahead == 'a') ADVANCE(783); + if (lookahead == 'a') ADVANCE(804); END_STATE(); case 637: - if (lookahead == 'a') ADVANCE(784); + if (lookahead == 'a') ADVANCE(738); + if (lookahead == 'o') ADVANCE(782); + if (lookahead == 's') ADVANCE(690); + if (lookahead == 'x') ADVANCE(758); END_STATE(); case 638: - if (lookahead == 'b') ADVANCE(3429); + if (lookahead == 'a') ADVANCE(737); + if (lookahead == 'o') ADVANCE(780); + if (lookahead == 's') ADVANCE(683); + if (lookahead == 'x') ADVANCE(759); END_STATE(); case 639: - if (lookahead == 'c') ADVANCE(3434); + if (lookahead == 'a') ADVANCE(786); END_STATE(); case 640: - if (lookahead == 'c') ADVANCE(658); + if (lookahead == 'a') ADVANCE(787); END_STATE(); case 641: - if (lookahead == 'c') ADVANCE(685); + if (lookahead == 'b') ADVANCE(3420); END_STATE(); case 642: - if (lookahead == 'c') ADVANCE(686); + if (lookahead == 'c') ADVANCE(3425); END_STATE(); case 643: - if (lookahead == 'd') ADVANCE(788); + if (lookahead == 'c') ADVANCE(688); END_STATE(); case 644: - if (lookahead == 'd') ADVANCE(3192); + if (lookahead == 'c') ADVANCE(689); END_STATE(); case 645: - if (lookahead == 'd') ADVANCE(833); + if (lookahead == 'c') ADVANCE(674); END_STATE(); case 646: - if (lookahead == 'd') ADVANCE(661); + if (lookahead == 'd') ADVANCE(792); END_STATE(); case 647: - if (lookahead == 'd') ADVANCE(171); + if (lookahead == 'd') ADVANCE(837); END_STATE(); case 648: - if (lookahead == 'd') ADVANCE(172); + if (lookahead == 'd') ADVANCE(3184); END_STATE(); case 649: - if (lookahead == 'd') ADVANCE(871); + if (lookahead == 'd') ADVANCE(663); END_STATE(); case 650: - if (lookahead == 'd') ADVANCE(872); + if (lookahead == 'd') ADVANCE(174); END_STATE(); case 651: - if (lookahead == 'd') ADVANCE(176); + if (lookahead == 'd') ADVANCE(175); END_STATE(); case 652: - if (lookahead == 'd') ADVANCE(876); + if (lookahead == 'd') ADVANCE(875); END_STATE(); case 653: - if (lookahead == 'd') ADVANCE(795); + if (lookahead == 'd') ADVANCE(876); END_STATE(); case 654: - if (lookahead == 'd') ADVANCE(797); + if (lookahead == 'd') ADVANCE(179); END_STATE(); case 655: - if (lookahead == 'e') ADVANCE(2938); + if (lookahead == 'd') ADVANCE(880); END_STATE(); case 656: - if (lookahead == 'e') ADVANCE(2150); + if (lookahead == 'd') ADVANCE(798); END_STATE(); case 657: - if (lookahead == 'e') ADVANCE(2195); + if (lookahead == 'd') ADVANCE(800); END_STATE(); case 658: - if (lookahead == 'e') ADVANCE(711); + if (lookahead == 'e') ADVANCE(2930); END_STATE(); case 659: - if (lookahead == 'e') ADVANCE(2905); + if (lookahead == 'e') ADVANCE(2150); END_STATE(); case 660: - if (lookahead == 'e') ADVANCE(3084); + if (lookahead == 'e') ADVANCE(2195); END_STATE(); case 661: - if (lookahead == 'e') ADVANCE(3152); + if (lookahead == 'e') ADVANCE(682); + if (lookahead == 'o') ADVANCE(3061); END_STATE(); case 662: - if (lookahead == 'e') ADVANCE(3056); + if (lookahead == 'e') ADVANCE(2897); END_STATE(); case 663: - if (lookahead == 'e') ADVANCE(2898); + if (lookahead == 'e') ADVANCE(3144); END_STATE(); case 664: - if (lookahead == 'e') ADVANCE(839); - if (lookahead == 'o') ADVANCE(802); - if (lookahead == 'u') ADVANCE(712); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(891); + if (lookahead == 'e') ADVANCE(3048); END_STATE(); case 665: - if (lookahead == 'e') ADVANCE(679); - if (lookahead == 'o') ADVANCE(3069); + if (lookahead == 'e') ADVANCE(2890); END_STATE(); case 666: - if (lookahead == 'e') ADVANCE(766); + if (lookahead == 'e') ADVANCE(3076); END_STATE(); case 667: - if (lookahead == 'e') ADVANCE(639); + if (lookahead == 'e') ADVANCE(843); + if (lookahead == 'o') ADVANCE(805); + if (lookahead == 'u') ADVANCE(714); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(895); END_STATE(); case 668: - if (lookahead == 'e') ADVANCE(599); + if (lookahead == 'e') ADVANCE(642); END_STATE(); case 669: - if (lookahead == 'e') ADVANCE(770); + if (lookahead == 'e') ADVANCE(601); END_STATE(); case 670: - if (lookahead == 'e') ADVANCE(773); + if (lookahead == 'e') ADVANCE(771); END_STATE(); case 671: - if (lookahead == 'e') ADVANCE(605); + if (lookahead == 'e') ADVANCE(775); END_STATE(); case 672: - if (lookahead == 'e') ADVANCE(777); + if (lookahead == 'e') ADVANCE(773); END_STATE(); case 673: - if (lookahead == 'f') ADVANCE(2937); + if (lookahead == 'e') ADVANCE(607); END_STATE(); case 674: - if (lookahead == 'f') ADVANCE(3076); + if (lookahead == 'e') ADVANCE(716); END_STATE(); case 675: - if (lookahead == 'f') ADVANCE(3076); - if (lookahead == 'n') ADVANCE(3038); + if (lookahead == 'e') ADVANCE(777); END_STATE(); case 676: - if (lookahead == 'f') ADVANCE(3076); - if (lookahead == 'n') ADVANCE(169); + if (lookahead == 'f') ADVANCE(2929); END_STATE(); case 677: - if (lookahead == 'f') ADVANCE(3076); - if (lookahead == 'n') ADVANCE(869); + if (lookahead == 'f') ADVANCE(3068); END_STATE(); case 678: - if (lookahead == 'f') ADVANCE(3076); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(887); + if (lookahead == 'f') ADVANCE(3068); + if (lookahead == 'n') ADVANCE(3030); END_STATE(); case 679: - if (lookahead == 'f') ADVANCE(2880); + if (lookahead == 'f') ADVANCE(3068); + if (lookahead == 'n') ADVANCE(172); END_STATE(); case 680: - if (lookahead == 'h') ADVANCE(717); + if (lookahead == 'f') ADVANCE(3068); + if (lookahead == 'n') ADVANCE(873); END_STATE(); case 681: - if (lookahead == 'h') ADVANCE(2927); + if (lookahead == 'f') ADVANCE(3068); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(891); END_STATE(); case 682: - if (lookahead == 'h') ADVANCE(3208); + if (lookahead == 'f') ADVANCE(2872); END_STATE(); case 683: - if (lookahead == 'h') ADVANCE(3206); + if (lookahead == 'h') ADVANCE(719); END_STATE(); case 684: - if (lookahead == 'h') ADVANCE(2935); + if (lookahead == 'h') ADVANCE(2919); END_STATE(); case 685: - if (lookahead == 'h') ADVANCE(3122); + if (lookahead == 'h') ADVANCE(3200); END_STATE(); case 686: - if (lookahead == 'h') ADVANCE(3092); + if (lookahead == 'h') ADVANCE(3198); END_STATE(); case 687: - if (lookahead == 'h') ADVANCE(718); + if (lookahead == 'h') ADVANCE(2927); END_STATE(); case 688: - if (lookahead == 'h') ADVANCE(553); + if (lookahead == 'h') ADVANCE(3084); END_STATE(); case 689: - if (lookahead == 'h') ADVANCE(180); + if (lookahead == 'h') ADVANCE(3114); END_STATE(); case 690: - if (lookahead == 'h') ADVANCE(181); + if (lookahead == 'h') ADVANCE(720); END_STATE(); case 691: - if (lookahead == 'h') ADVANCE(880); + if (lookahead == 'h') ADVANCE(557); END_STATE(); case 692: - if (lookahead == 'h') ADVANCE(881); + if (lookahead == 'h') ADVANCE(183); END_STATE(); case 693: - if (lookahead == 'i') ADVANCE(800); + if (lookahead == 'h') ADVANCE(184); END_STATE(); case 694: - if (lookahead == 'i') ADVANCE(792); + if (lookahead == 'h') ADVANCE(884); END_STATE(); case 695: - if (lookahead == 'i') ADVANCE(646); + if (lookahead == 'h') ADVANCE(885); END_STATE(); case 696: - if (lookahead == 'i') ADVANCE(629); + if (lookahead == 'i') ADVANCE(803); END_STATE(); case 697: - if (lookahead == 'i') ADVANCE(806); + if (lookahead == 'i') ADVANCE(649); END_STATE(); case 698: - if (lookahead == 'i') ADVANCE(810); + if (lookahead == 'i') ADVANCE(631); END_STATE(); case 699: - if (lookahead == 'i') ADVANCE(721); + if (lookahead == 'i') ADVANCE(794); END_STATE(); case 700: - if (lookahead == 'i') ADVANCE(817); + if (lookahead == 'i') ADVANCE(809); END_STATE(); case 701: - if (lookahead == 'i') ADVANCE(820); + if (lookahead == 'i') ADVANCE(723); END_STATE(); case 702: - if (lookahead == 'i') ADVANCE(821); + if (lookahead == 'i') ADVANCE(815); END_STATE(); case 703: - if (lookahead == 'i') ADVANCE(732); + if (lookahead == 'i') ADVANCE(817); END_STATE(); case 704: - if (lookahead == 'i') ADVANCE(822); + if (lookahead == 'i') ADVANCE(821); END_STATE(); case 705: - if (lookahead == 'i') ADVANCE(823); + if (lookahead == 'i') ADVANCE(822); END_STATE(); case 706: - if (lookahead == 'i') ADVANCE(733); + if (lookahead == 'i') ADVANCE(734); END_STATE(); case 707: - if (lookahead == 'i') ADVANCE(825); + if (lookahead == 'i') ADVANCE(823); END_STATE(); case 708: - if (lookahead == 'k') ADVANCE(3434); + if (lookahead == 'i') ADVANCE(735); END_STATE(); case 709: - if (lookahead == 'k') ADVANCE(662); - if (lookahead == 't') ADVANCE(642); + if (lookahead == 'i') ADVANCE(825); END_STATE(); case 710: - if (lookahead == 'l') ADVANCE(2203); + if (lookahead == 'i') ADVANCE(827); END_STATE(); case 711: - if (lookahead == 'l') ADVANCE(715); + if (lookahead == 'k') ADVANCE(3425); END_STATE(); case 712: - if (lookahead == 'l') ADVANCE(710); + if (lookahead == 'k') ADVANCE(664); + if (lookahead == 't') ADVANCE(643); END_STATE(); case 713: - if (lookahead == 'l') ADVANCE(696); + if (lookahead == 'l') ADVANCE(2203); END_STATE(); case 714: - if (lookahead == 'l') ADVANCE(696); - if (lookahead == 'n') ADVANCE(644); + if (lookahead == 'l') ADVANCE(713); END_STATE(); case 715: - if (lookahead == 'l') ADVANCE(559); + if (lookahead == 'l') ADVANCE(698); END_STATE(); case 716: - if (lookahead == 'l') ADVANCE(663); + if (lookahead == 'l') ADVANCE(717); END_STATE(); case 717: - if (lookahead == 'l') ADVANCE(177); - if (lookahead == 'r') ADVANCE(178); + if (lookahead == 'l') ADVANCE(562); END_STATE(); case 718: - if (lookahead == 'l') ADVANCE(877); - if (lookahead == 'r') ADVANCE(878); + if (lookahead == 'l') ADVANCE(665); END_STATE(); case 719: - if (lookahead == 'l') ADVANCE(791); + if (lookahead == 'l') ADVANCE(180); + if (lookahead == 'r') ADVANCE(181); END_STATE(); case 720: - if (lookahead == 'n') ADVANCE(647); + if (lookahead == 'l') ADVANCE(881); + if (lookahead == 'r') ADVANCE(882); END_STATE(); case 721: - if (lookahead == 'n') ADVANCE(3204); + if (lookahead == 'l') ADVANCE(793); END_STATE(); case 722: - if (lookahead == 'n') ADVANCE(2936); + if (lookahead == 'n') ADVANCE(650); END_STATE(); case 723: - if (lookahead == 'n') ADVANCE(3434); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); + if (lookahead == 'n') ADVANCE(3196); END_STATE(); case 724: - if (lookahead == 'n') ADVANCE(2891); + if (lookahead == 'n') ADVANCE(2928); END_STATE(); case 725: - if (lookahead == 'n') ADVANCE(3038); + if (lookahead == 'n') ADVANCE(3425); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3420); END_STATE(); case 726: - if (lookahead == 'n') ADVANCE(643); + if (lookahead == 'n') ADVANCE(2883); END_STATE(); case 727: - if (lookahead == 'n') ADVANCE(644); + if (lookahead == 'n') ADVANCE(3030); END_STATE(); case 728: - if (lookahead == 'n') ADVANCE(644); - if (lookahead == 's') ADVANCE(3176); + if (lookahead == 'n') ADVANCE(646); END_STATE(); case 729: - if (lookahead == 'n') ADVANCE(649); + if (lookahead == 'n') ADVANCE(648); END_STATE(); case 730: - if (lookahead == 'n') ADVANCE(169); + if (lookahead == 'n') ADVANCE(648); + if (lookahead == 's') ADVANCE(3168); END_STATE(); case 731: - if (lookahead == 'n') ADVANCE(869); + if (lookahead == 'n') ADVANCE(652); END_STATE(); case 732: - if (lookahead == 'n') ADVANCE(175); + if (lookahead == 'n') ADVANCE(172); END_STATE(); case 733: - if (lookahead == 'n') ADVANCE(875); + if (lookahead == 'n') ADVANCE(873); END_STATE(); case 734: - if (lookahead == 'n') ADVANCE(793); + if (lookahead == 'n') ADVANCE(178); END_STATE(); case 735: - if (lookahead == 'n') ADVANCE(651); + if (lookahead == 'n') ADVANCE(879); END_STATE(); case 736: - if (lookahead == 'n') ADVANCE(652); + if (lookahead == 'n') ADVANCE(796); END_STATE(); case 737: - if (lookahead == 'n') ADVANCE(653); + if (lookahead == 'n') ADVANCE(654); END_STATE(); case 738: - if (lookahead == 'o') ADVANCE(673); + if (lookahead == 'n') ADVANCE(655); END_STATE(); case 739: - if (lookahead == 'o') ADVANCE(604); + if (lookahead == 'n') ADVANCE(656); END_STATE(); case 740: - if (lookahead == 'o') ADVANCE(759); + if (lookahead == 'o') ADVANCE(3061); END_STATE(); case 741: - if (lookahead == 'o') ADVANCE(836); + if (lookahead == 'o') ADVANCE(606); END_STATE(); case 742: - if (lookahead == 'o') ADVANCE(805); + if (lookahead == 'o') ADVANCE(840); END_STATE(); case 743: - if (lookahead == 'o') ADVANCE(598); + if (lookahead == 'o') ADVANCE(761); END_STATE(); case 744: - if (lookahead == 'o') ADVANCE(734); + if (lookahead == 'o') ADVANCE(736); END_STATE(); case 745: - if (lookahead == 'o') ADVANCE(765); + if (lookahead == 'o') ADVANCE(808); END_STATE(); case 746: - if (lookahead == 'o') ADVANCE(778); + if (lookahead == 'o') ADVANCE(600); END_STATE(); case 747: - if (lookahead == 'o') ADVANCE(802); + if (lookahead == 'o') ADVANCE(676); END_STATE(); case 748: - if (lookahead == 'o') ADVANCE(802); - if (lookahead == 'u') ADVANCE(712); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(891); + if (lookahead == 'o') ADVANCE(805); END_STATE(); case 749: - if (lookahead == 'o') ADVANCE(816); + if (lookahead == 'o') ADVANCE(805); + if (lookahead == 'u') ADVANCE(714); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(895); END_STATE(); case 750: - if (lookahead == 'o') ADVANCE(819); + if (lookahead == 'o') ADVANCE(768); END_STATE(); case 751: - if (lookahead == 'o') ADVANCE(775); + if (lookahead == 'o') ADVANCE(781); END_STATE(); case 752: - if (lookahead == 'o') ADVANCE(648); + if (lookahead == 'o') ADVANCE(814); END_STATE(); case 753: - if (lookahead == 'o') ADVANCE(837); + if (lookahead == 'o') ADVANCE(779); END_STATE(); case 754: - if (lookahead == 'o') ADVANCE(650); + if (lookahead == 'o') ADVANCE(651); END_STATE(); case 755: - if (lookahead == 'o') ADVANCE(781); + if (lookahead == 'o') ADVANCE(841); END_STATE(); case 756: - if (lookahead == 'o') ADVANCE(780); + if (lookahead == 'o') ADVANCE(653); END_STATE(); case 757: - if (lookahead == 'p') ADVANCE(630); + if (lookahead == 'o') ADVANCE(826); END_STATE(); case 758: - if (lookahead == 'p') ADVANCE(655); + if (lookahead == 'o') ADVANCE(784); END_STATE(); case 759: - if (lookahead == 'p') ADVANCE(815); + if (lookahead == 'o') ADVANCE(783); END_STATE(); case 760: - if (lookahead == 'p') ADVANCE(631); + if (lookahead == 'p') ADVANCE(658); END_STATE(); case 761: - if (lookahead == 'p') ADVANCE(632); + if (lookahead == 'p') ADVANCE(819); END_STATE(); case 762: - if (lookahead == 'r') ADVANCE(3434); + if (lookahead == 'p') ADVANCE(633); END_STATE(); case 763: - if (lookahead == 'r') ADVANCE(835); + if (lookahead == 'p') ADVANCE(634); END_STATE(); case 764: - if (lookahead == 'r') ADVANCE(534); + if (lookahead == 'p') ADVANCE(635); END_STATE(); case 765: - if (lookahead == 'r') ADVANCE(3196); + if (lookahead == 'r') ADVANCE(3425); END_STATE(); case 766: - if (lookahead == 'r') ADVANCE(722); + if (lookahead == 'r') ADVANCE(839); END_STATE(); case 767: - if (lookahead == 'r') ADVANCE(545); + if (lookahead == 'r') ADVANCE(535); END_STATE(); case 768: - if (lookahead == 'r') ADVANCE(834); + if (lookahead == 'r') ADVANCE(3188); END_STATE(); case 769: - if (lookahead == 'r') ADVANCE(827); + if (lookahead == 'r') ADVANCE(548); END_STATE(); case 770: - if (lookahead == 'r') ADVANCE(724); + if (lookahead == 'r') ADVANCE(838); END_STATE(); case 771: - if (lookahead == 'r') ADVANCE(601); + if (lookahead == 'r') ADVANCE(726); END_STATE(); case 772: - if (lookahead == 'r') ADVANCE(170); + if (lookahead == 'r') ADVANCE(831); END_STATE(); case 773: - if (lookahead == 'r') ADVANCE(782); + if (lookahead == 'r') ADVANCE(724); END_STATE(); case 774: - if (lookahead == 'r') ADVANCE(870); + if (lookahead == 'r') ADVANCE(603); END_STATE(); case 775: - if (lookahead == 'r') ADVANCE(173); + if (lookahead == 'r') ADVANCE(785); END_STATE(); case 776: - if (lookahead == 'r') ADVANCE(174); + if (lookahead == 'r') ADVANCE(173); END_STATE(); case 777: - if (lookahead == 'r') ADVANCE(771); + if (lookahead == 'r') ADVANCE(774); END_STATE(); case 778: - if (lookahead == 'r') ADVANCE(873); + if (lookahead == 'r') ADVANCE(874); END_STATE(); case 779: - if (lookahead == 'r') ADVANCE(874); + if (lookahead == 'r') ADVANCE(176); END_STATE(); case 780: - if (lookahead == 'r') ADVANCE(179); + if (lookahead == 'r') ADVANCE(177); END_STATE(); case 781: - if (lookahead == 'r') ADVANCE(879); + if (lookahead == 'r') ADVANCE(877); END_STATE(); case 782: - if (lookahead == 'r') ADVANCE(607); + if (lookahead == 'r') ADVANCE(878); END_STATE(); case 783: - if (lookahead == 'r') ADVANCE(828); + if (lookahead == 'r') ADVANCE(182); END_STATE(); case 784: - if (lookahead == 'r') ADVANCE(829); + if (lookahead == 'r') ADVANCE(883); END_STATE(); case 785: - if (lookahead == 's') ADVANCE(3434); + if (lookahead == 'r') ADVANCE(609); END_STATE(); case 786: - if (lookahead == 's') ADVANCE(1066); + if (lookahead == 'r') ADVANCE(832); END_STATE(); case 787: - if (lookahead == 's') ADVANCE(3176); + if (lookahead == 'r') ADVANCE(833); END_STATE(); case 788: - if (lookahead == 's') ADVANCE(550); + if (lookahead == 's') ADVANCE(3425); END_STATE(); case 789: - if (lookahead == 's') ADVANCE(659); + if (lookahead == 's') ADVANCE(1066); END_STATE(); case 790: - if (lookahead == 's') ADVANCE(660); + if (lookahead == 's') ADVANCE(3168); END_STATE(); case 791: - if (lookahead == 's') ADVANCE(657); + if (lookahead == 's') ADVANCE(662); END_STATE(); case 792: - if (lookahead == 's') ADVANCE(803); + if (lookahead == 's') ADVANCE(552); END_STATE(); case 793: - if (lookahead == 's') ADVANCE(804); + if (lookahead == 's') ADVANCE(660); END_STATE(); case 794: - if (lookahead == 's') ADVANCE(558); + if (lookahead == 's') ADVANCE(806); END_STATE(); case 795: - if (lookahead == 's') ADVANCE(560); + if (lookahead == 's') ADVANCE(666); END_STATE(); case 796: - if (lookahead == 's') ADVANCE(561); + if (lookahead == 's') ADVANCE(807); END_STATE(); case 797: - if (lookahead == 's') ADVANCE(562); + if (lookahead == 's') ADVANCE(560); END_STATE(); case 798: - if (lookahead == 's') ADVANCE(563); + if (lookahead == 's') ADVANCE(561); END_STATE(); case 799: - if (lookahead == 't') ADVANCE(626); + if (lookahead == 's') ADVANCE(563); END_STATE(); case 800: - if (lookahead == 't') ADVANCE(549); + if (lookahead == 's') ADVANCE(564); END_STATE(); case 801: - if (lookahead == 't') ADVANCE(848); + if (lookahead == 's') ADVANCE(565); END_STATE(); case 802: - if (lookahead == 't') ADVANCE(900); + if (lookahead == 't') ADVANCE(629); END_STATE(); case 803: - if (lookahead == 't') ADVANCE(2939); + if (lookahead == 't') ADVANCE(551); END_STATE(); case 804: - if (lookahead == 't') ADVANCE(1094); + if (lookahead == 't') ADVANCE(643); END_STATE(); case 805: - if (lookahead == 't') ADVANCE(551); + if (lookahead == 't') ADVANCE(904); END_STATE(); case 806: - if (lookahead == 't') ADVANCE(689); + if (lookahead == 't') ADVANCE(2931); END_STATE(); case 807: - if (lookahead == 't') ADVANCE(641); + if (lookahead == 't') ADVANCE(1094); END_STATE(); case 808: - if (lookahead == 't') ADVANCE(666); + if (lookahead == 't') ADVANCE(553); END_STATE(); case 809: - if (lookahead == 't') ADVANCE(546); + if (lookahead == 't') ADVANCE(692); END_STATE(); case 810: - if (lookahead == 't') ADVANCE(688); + if (lookahead == 't') ADVANCE(547); END_STATE(); case 811: - if (lookahead == 't') ADVANCE(681); + if (lookahead == 't') ADVANCE(852); END_STATE(); case 812: - if (lookahead == 't') ADVANCE(547); + if (lookahead == 't') ADVANCE(670); END_STATE(); case 813: - if (lookahead == 't') ADVANCE(684); + if (lookahead == 't') ADVANCE(549); END_STATE(); case 814: - if (lookahead == 't') ADVANCE(600); + if (lookahead == 't') ADVANCE(555); END_STATE(); case 815: - if (lookahead == 't') ADVANCE(556); + if (lookahead == 't') ADVANCE(694); END_STATE(); case 816: - if (lookahead == 't') ADVANCE(554); + if (lookahead == 't') ADVANCE(602); END_STATE(); case 817: if (lookahead == 't') ADVANCE(691); END_STATE(); case 818: - if (lookahead == 't') ADVANCE(808); + if (lookahead == 't') ADVANCE(684); END_STATE(); case 819: - if (lookahead == 't') ADVANCE(555); + if (lookahead == 't') ADVANCE(558); END_STATE(); case 820: - if (lookahead == 't') ADVANCE(682); + if (lookahead == 't') ADVANCE(687); END_STATE(); case 821: - if (lookahead == 't') ADVANCE(683); + if (lookahead == 't') ADVANCE(685); END_STATE(); case 822: - if (lookahead == 't') ADVANCE(552); + if (lookahead == 't') ADVANCE(686); END_STATE(); case 823: - if (lookahead == 't') ADVANCE(690); + if (lookahead == 't') ADVANCE(554); END_STATE(); case 824: - if (lookahead == 't') ADVANCE(669); + if (lookahead == 't') ADVANCE(644); END_STATE(); case 825: - if (lookahead == 't') ADVANCE(692); + if (lookahead == 't') ADVANCE(693); END_STATE(); case 826: - if (lookahead == 't') ADVANCE(606); + if (lookahead == 't') ADVANCE(556); END_STATE(); case 827: - if (lookahead == 't') ADVANCE(794); + if (lookahead == 't') ADVANCE(695); END_STATE(); case 828: - if (lookahead == 't') ADVANCE(796); + if (lookahead == 't') ADVANCE(830); END_STATE(); case 829: - if (lookahead == 't') ADVANCE(798); + if (lookahead == 't') ADVANCE(608); END_STATE(); case 830: - if (lookahead == 't') ADVANCE(636); + if (lookahead == 't') ADVANCE(672); END_STATE(); case 831: - if (lookahead == 't') ADVANCE(637); + if (lookahead == 't') ADVANCE(797); END_STATE(); case 832: - if (lookahead == 'u') ADVANCE(850); - if (lookahead == 'x') ADVANCE(919); - if (lookahead != 0) ADVANCE(3512); + if (lookahead == 't') ADVANCE(799); END_STATE(); case 833: - if (lookahead == 'u') ADVANCE(716); + if (lookahead == 't') ADVANCE(801); END_STATE(); case 834: - if (lookahead == 'u') ADVANCE(656); + if (lookahead == 't') ADVANCE(639); END_STATE(); case 835: - if (lookahead == 'u') ADVANCE(656); - if (lookahead == 'y') ADVANCE(3115); + if (lookahead == 't') ADVANCE(640); END_STATE(); case 836: - if (lookahead == 'u') ADVANCE(826); + if (lookahead == 'u') ADVANCE(854); + if (lookahead == 'x') ADVANCE(923); + if (lookahead != 0) ADVANCE(3503); END_STATE(); case 837: - if (lookahead == 'u') ADVANCE(814); + if (lookahead == 'u') ADVANCE(718); END_STATE(); case 838: - if (lookahead == 'u') ADVANCE(849); - if (lookahead == 'x') ADVANCE(920); - if (lookahead != 0) ADVANCE(3499); + if (lookahead == 'u') ADVANCE(659); END_STATE(); case 839: - if (lookahead == 'w') ADVANCE(3169); + if (lookahead == 'u') ADVANCE(659); + if (lookahead == 'y') ADVANCE(3107); END_STATE(); case 840: - if (lookahead == 'w') ADVANCE(697); + if (lookahead == 'u') ADVANCE(829); END_STATE(); case 841: - if (lookahead == 'w') ADVANCE(705); + if (lookahead == 'u') ADVANCE(816); END_STATE(); case 842: - if (lookahead == 'w') ADVANCE(698); + if (lookahead == 'u') ADVANCE(853); + if (lookahead == 'x') ADVANCE(924); + if (lookahead != 0) ADVANCE(3490); END_STATE(); case 843: - if (lookahead == 'w') ADVANCE(700); + if (lookahead == 'w') ADVANCE(3161); END_STATE(); case 844: - if (lookahead == 'w') ADVANCE(707); + if (lookahead == 'w') ADVANCE(700); END_STATE(); case 845: - if (lookahead == 'w') ADVANCE(701); + if (lookahead == 'w') ADVANCE(709); END_STATE(); case 846: if (lookahead == 'w') ADVANCE(702); END_STATE(); case 847: - if (lookahead == 'y') ADVANCE(3434); + if (lookahead == 'w') ADVANCE(710); END_STATE(); case 848: - if (lookahead == 'y') ADVANCE(758); + if (lookahead == 'w') ADVANCE(703); END_STATE(); case 849: - if (lookahead == '{') ADVANCE(915); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(921); + if (lookahead == 'w') ADVANCE(704); END_STATE(); case 850: - if (lookahead == '{') ADVANCE(918); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(917); + if (lookahead == 'w') ADVANCE(705); END_STATE(); case 851: - if (lookahead == '|') ADVANCE(2874); + if (lookahead == 'y') ADVANCE(3425); END_STATE(); case 852: - if (lookahead == '|') ADVANCE(2875); + if (lookahead == 'y') ADVANCE(760); END_STATE(); case 853: - if (lookahead == '|') ADVANCE(2879); + if (lookahead == '{') ADVANCE(919); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(925); END_STATE(); case 854: - if (lookahead == '|') ADVANCE(2872); + if (lookahead == '{') ADVANCE(922); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(921); END_STATE(); case 855: - if (lookahead == '|') ADVANCE(2878); + if (lookahead == '|') ADVANCE(2866); END_STATE(); case 856: - if (lookahead == '|') ADVANCE(2873); + if (lookahead == '|') ADVANCE(2867); END_STATE(); case 857: - if (lookahead == '|') ADVANCE(2876); + if (lookahead == '|') ADVANCE(2871); END_STATE(); case 858: - if (lookahead == '|') ADVANCE(2877); + if (lookahead == '|') ADVANCE(2864); END_STATE(); case 859: - if (lookahead == '}') ADVANCE(3499); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(859); + if (lookahead == '|') ADVANCE(2870); END_STATE(); case 860: - if (lookahead == '}') ADVANCE(3512); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(860); + if (lookahead == '|') ADVANCE(2865); END_STATE(); case 861: - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3228); + if (lookahead == '|') ADVANCE(2868); END_STATE(); case 862: - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3244); + if (lookahead == '|') ADVANCE(2869); END_STATE(); case 863: - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3232); + if (lookahead == '}') ADVANCE(3490); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(863); END_STATE(); case 864: - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3221); + if (lookahead == '}') ADVANCE(3503); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(864); END_STATE(); case 865: if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3222); + lookahead == ' ') ADVANCE(3220); END_STATE(); case 866: if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3226); + lookahead == ' ') ADVANCE(3236); END_STATE(); case 867: if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3243); + lookahead == ' ') ADVANCE(3224); END_STATE(); case 868: if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3231); + lookahead == ' ') ADVANCE(3213); END_STATE(); case 869: if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3239); + lookahead == ' ') ADVANCE(3214); END_STATE(); case 870: if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3238); + lookahead == ' ') ADVANCE(3218); END_STATE(); case 871: if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3236); + lookahead == ' ') ADVANCE(3235); END_STATE(); case 872: if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3225); + lookahead == ' ') ADVANCE(3223); END_STATE(); case 873: if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3237); + lookahead == ' ') ADVANCE(3231); END_STATE(); case 874: if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3235); + lookahead == ' ') ADVANCE(3230); END_STATE(); case 875: if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3240); + lookahead == ' ') ADVANCE(3228); END_STATE(); case 876: if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3233); + lookahead == ' ') ADVANCE(3217); END_STATE(); case 877: if (lookahead == '\t' || @@ -29018,319 +29408,335 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 878: if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3230); + lookahead == ' ') ADVANCE(3227); END_STATE(); case 879: if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3234); + lookahead == ' ') ADVANCE(3232); END_STATE(); case 880: if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3242); + lookahead == ' ') ADVANCE(3225); END_STATE(); case 881: if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3241); + lookahead == ' ') ADVANCE(3221); END_STATE(); case 882: if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3246); + lookahead == ' ') ADVANCE(3222); END_STATE(); case 883: if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3248); + lookahead == ' ') ADVANCE(3226); END_STATE(); case 884: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(891); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3234); END_STATE(); case 885: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3233); END_STATE(); case 886: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2226); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3238); END_STATE(); case 887: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2221); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3240); END_STATE(); case 888: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(895); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(895); END_STATE(); case 889: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(896); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3420); END_STATE(); case 890: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(886); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2226); END_STATE(); case 891: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2232); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2221); END_STATE(); case 892: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(888); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(899); END_STATE(); case 893: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(887); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(900); END_STATE(); case 894: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(889); + lookahead == 'n') ADVANCE(890); END_STATE(); case 895: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(897); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2232); END_STATE(); case 896: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(898); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(892); END_STATE(); case 897: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2223); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(891); END_STATE(); case 898: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2211); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(893); END_STATE(); case 899: - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3463); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(901); END_STATE(); case 900: - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3219); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(902); END_STATE(); case 901: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3453); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2223); END_STATE(); case 902: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(580); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2211); END_STATE(); case 903: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(902); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3454); END_STATE(); case 904: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3456); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(3211); END_STATE(); case 905: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3479); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3444); END_STATE(); case 906: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3463); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(582); END_STATE(); case 907: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(904); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(906); END_STATE(); case 908: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(557); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3447); END_STATE(); case 909: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3476); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3470); END_STATE(); case 910: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(908); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3454); END_STATE(); case 911: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(909); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(908); END_STATE(); case 912: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(579); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(559); END_STATE(); case 913: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(912); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3467); END_STATE(); case 914: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3499); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(912); END_STATE(); case 915: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(859); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(913); END_STATE(); case 916: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3512); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(581); END_STATE(); case 917: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(919); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(916); END_STATE(); case 918: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(860); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3490); END_STATE(); case 919: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(916); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(863); END_STATE(); case 920: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(914); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3503); END_STATE(); case 921: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(920); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(923); END_STATE(); case 922: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(864); + END_STATE(); + case 923: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(920); + END_STATE(); + case 924: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(918); + END_STATE(); + case 925: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(924); + END_STATE(); + case 926: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '!', 582, - '#', 4789, - '$', 2920, - '(', 3220, - ')', 2918, - '-', 2961, - '.', 3283, - ';', 2870, - '<', 3213, - '=', 590, - '>', 2950, - '?', 3189, - 'E', 618, - '[', 3451, - '_', 620, - 'a', 728, - 'e', 521, - 'i', 675, - 'n', 750, - 'o', 540, - 's', 831, - 'x', 745, - '{', 3099, - '|', 2871, - '}', 3100, + '!', 584, + '#', 4780, + '$', 2912, + '(', 3212, + ')', 2910, + '-', 2953, + '.', 3275, + ';', 2862, + '<', 3205, + '=', 592, + '>', 2942, + '?', 3181, + 'E', 620, + '[', 3442, + '_', 622, + 'a', 730, + 'e', 527, + 'i', 678, + 'n', 757, + 'o', 543, + 's', 835, + 'x', 750, + '{', 3091, + '|', 2863, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(923); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + lookahead == ' ') SKIP(927); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); END_STATE(); - case 923: + case 927: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '!', 582, - '#', 4789, - '$', 2920, - ')', 2918, - '-', 2961, - ';', 2870, - '<', 3213, - '=', 590, - '>', 2950, - '?', 3189, - 'a', 728, - 'e', 538, - 'i', 675, - 'n', 750, - 'o', 540, - 's', 831, - 'x', 745, - '{', 3099, - '|', 2871, - '}', 3100, + '!', 584, + '#', 4780, + '$', 2912, + ')', 2910, + '-', 2953, + ';', 2862, + '<', 3205, + '=', 592, + '>', 2942, + '?', 3181, + 'a', 730, + 'e', 540, + 'i', 678, + 'n', 757, + 'o', 543, + 's', 835, + 'x', 750, + '{', 3091, + '|', 2863, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(923); + lookahead == ' ') SKIP(927); END_STATE(); - case 924: + case 928: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '!', 582, - '#', 4789, - ')', 2918, - '-', 2961, - '.', 3297, - ';', 2870, - '<', 3213, - '=', 590, - '>', 2950, - '?', 3189, - 'E', 618, - '_', 620, - 'a', 727, - 'e', 521, - 'i', 675, - 'n', 750, - 'o', 540, - 's', 831, - 'x', 745, - '{', 3099, - '|', 2871, - '}', 3100, + '!', 584, + '#', 4780, + ')', 2910, + '-', 2953, + '.', 3289, + ';', 2862, + '<', 3205, + '=', 592, + '>', 2942, + '?', 3181, + 'E', 620, + '_', 622, + 'a', 730, + 'e', 527, + 'i', 678, + 'n', 757, + 'o', 543, + 's', 835, + 'x', 750, + '{', 3091, + '|', 2863, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(925); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + lookahead == ' ') SKIP(929); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); END_STATE(); - case 925: + case 929: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '!', 582, - '#', 4789, - ')', 2918, - '-', 2961, - ';', 2870, - '<', 3213, - '=', 590, - '>', 2950, - '?', 3189, - 'a', 727, - 'e', 538, - 'i', 675, - 'n', 750, - 'o', 540, - 's', 831, - 'x', 745, - '{', 3099, - '|', 2871, - '}', 3100, + '!', 584, + '#', 4780, + ')', 2910, + '-', 2953, + ';', 2862, + '<', 3205, + '=', 592, + '>', 2942, + '?', 3181, + 'a', 730, + 'e', 540, + 'i', 678, + 'n', 757, + 'o', 543, + 's', 835, + 'x', 750, + '{', 3091, + '|', 2863, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(925); + lookahead == ' ') SKIP(929); END_STATE(); - case 926: + case 930: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '"', 3491, - '#', 4791, - '$', 2921, - '\'', 517, - '(', 2917, + '"', 3482, + '#', 4782, + '$', 2913, + '\'', 519, + '(', 2909, '+', 1337, - '-', 2978, + '-', 2970, '.', 1338, - '0', 3377, - ';', 2870, + '0', 3369, + ';', 2862, 'I', 1569, 'N', 1566, - '[', 2915, - '^', 3604, + '[', 2907, + '^', 3595, '_', 1359, - '`', 624, + '`', 626, 'a', 1455, 'b', 1500, 'c', 1360, @@ -29348,16 +29754,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1492, 'u', 1520, 'w', 1433, - '{', 3099, + '{', 3091, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(926); + lookahead == ' ') SKIP(930); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == '?' || lookahead == '@') ADVANCE(1875); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3400); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3392); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '&' || '.' < lookahead) && @@ -29365,753 +29771,753 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1575); END_STATE(); - case 927: + case 931: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 3220, - ')', 2918, - '+', 3764, - '-', 2964, - '.', 3761, - '0', 3378, - ';', 2870, - 'N', 3823, - '[', 2915, - '_', 3778, - '`', 624, - 'e', 3739, - 'f', 3791, - 'n', 3819, - 'o', 3740, - 't', 3806, - '{', 3099, - '|', 2871, - '}', 3100, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 3212, + ')', 2910, + '+', 3755, + '-', 2956, + '.', 3752, + '0', 3370, + ';', 2862, + 'N', 3814, + '[', 2907, + '_', 3769, + '`', 626, + 'e', 3730, + 'f', 3782, + 'n', 3810, + 'o', 3731, + 't', 3797, + '{', 3091, + '|', 2863, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(955); + lookahead == ' ') SKIP(958); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3827); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3401); + lookahead == 'i') ADVANCE(3818); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3393); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3846); + lookahead != ']') ADVANCE(3837); END_STATE(); - case 928: + case 932: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 3220, - ')', 2918, - '+', 3880, - '-', 2967, - '.', 3876, - '0', 3331, - ';', 2870, - 'N', 3972, - '[', 2915, - '_', 3900, - '`', 624, - 'e', 3848, - 'f', 3914, - 'n', 3959, - 'o', 3849, - 't', 3943, - '{', 3099, - '|', 2871, - '}', 3100, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 3212, + ')', 2910, + '+', 3871, + '-', 2959, + '.', 3867, + '0', 3323, + ';', 2862, + 'N', 3963, + '[', 2907, + '_', 3891, + '`', 626, + 'e', 3839, + 'f', 3905, + 'n', 3950, + 'o', 3840, + 't', 3934, + '{', 3091, + '|', 2863, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(972); + lookahead == ' ') SKIP(975); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3979); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3346); + lookahead == 'i') ADVANCE(3970); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3338); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4002); + lookahead != ']') ADVANCE(3993); END_STATE(); - case 929: + case 933: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 3220, - ')', 2918, - '+', 3880, - '-', 2967, - '.', 3288, - '0', 3331, - ';', 2870, - 'N', 3972, - '[', 2915, - '_', 3900, - '`', 624, - 'e', 3848, - 'f', 3914, - 'n', 3959, - 'o', 3849, - 't', 3943, - '{', 3099, - '|', 2871, - '}', 3100, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 3212, + ')', 2910, + '+', 3871, + '-', 2959, + '.', 3279, + '0', 3323, + ';', 2862, + 'N', 3963, + '[', 2907, + '_', 3891, + '`', 626, + 'e', 3839, + 'f', 3905, + 'n', 3950, + 'o', 3840, + 't', 3934, + '{', 3091, + '|', 2863, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(972); + lookahead == ' ') SKIP(975); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3979); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3346); + lookahead == 'i') ADVANCE(3970); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3338); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4002); + lookahead != ']') ADVANCE(3993); END_STATE(); - case 930: + case 934: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 3220, - ')', 2918, - '+', 3881, - '-', 2969, - '.', 3878, - '0', 3331, - ';', 2870, - 'E', 3895, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'N', 3972, - 'P', 3898, - 'T', 3898, - '[', 2915, - '_', 3900, - '`', 624, - 'd', 3915, - 'e', 3850, - 'f', 3914, - 'g', 3897, - 'h', 3941, - 'k', 3897, - 'm', 3899, - 'n', 3950, - 'o', 3849, - 'p', 3897, - 's', 3921, - 't', 3896, - 'u', 3951, - 'w', 3927, - '{', 3099, - '|', 2871, - '}', 3100, - 0xb5, 3951, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 3212, + ')', 2910, + '+', 3872, + '-', 2961, + '.', 3869, + '0', 3323, + ';', 2862, + 'E', 3886, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'N', 3963, + 'P', 3889, + 'T', 3889, + '[', 2907, + '_', 3891, + '`', 626, + 'd', 3906, + 'e', 3841, + 'f', 3905, + 'g', 3888, + 'h', 3932, + 'k', 3888, + 'm', 3890, + 'n', 3941, + 'o', 3840, + 'p', 3888, + 's', 3912, + 't', 3887, + 'u', 3942, + 'w', 3918, + '{', 3091, + '|', 2863, + '}', 3092, + 0xb5, 3942, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(955); + lookahead == ' ') SKIP(958); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); + lookahead == 'b') ADVANCE(3420); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3979); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3346); + lookahead == 'i') ADVANCE(3970); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3338); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4002); + lookahead != ']') ADVANCE(3993); END_STATE(); - case 931: + case 935: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 3220, - ')', 2918, - '+', 3881, - '-', 2969, - '.', 3878, - '0', 3331, - ';', 2870, - 'E', 3910, - 'N', 3972, - '[', 2915, - '_', 3900, - '`', 624, - 'e', 3851, - 'f', 3914, - 'n', 3959, - 'o', 3849, - 't', 3943, - '{', 3099, - '|', 2871, - '}', 3100, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 3212, + ')', 2910, + '+', 3872, + '-', 2961, + '.', 3869, + '0', 3323, + ';', 2862, + 'E', 3901, + 'N', 3963, + '[', 2907, + '_', 3891, + '`', 626, + 'e', 3842, + 'f', 3905, + 'n', 3950, + 'o', 3840, + 't', 3934, + '{', 3091, + '|', 2863, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(955); + lookahead == ' ') SKIP(958); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3979); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3346); + lookahead == 'i') ADVANCE(3970); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3338); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4002); + lookahead != ']') ADVANCE(3993); END_STATE(); - case 932: + case 936: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 3220, - ')', 2918, - '+', 3881, - '-', 2969, - '.', 3878, - '0', 3382, - ';', 2870, - 'E', 3895, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'N', 3972, - 'P', 3898, - 'T', 3898, - '[', 2915, - '_', 3905, - '`', 624, - 'd', 3915, - 'e', 3850, - 'f', 3914, - 'g', 3897, - 'h', 3941, - 'k', 3897, - 'm', 3899, - 'n', 3950, - 'o', 3849, - 'p', 3897, - 's', 3921, - 't', 3896, - 'u', 3951, - 'w', 3927, - '{', 3099, - '|', 2871, - '}', 3100, - 0xb5, 3951, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 3212, + ')', 2910, + '+', 3872, + '-', 2961, + '.', 3869, + '0', 3374, + ';', 2862, + 'E', 3886, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'N', 3963, + 'P', 3889, + 'T', 3889, + '[', 2907, + '_', 3896, + '`', 626, + 'd', 3906, + 'e', 3841, + 'f', 3905, + 'g', 3888, + 'h', 3932, + 'k', 3888, + 'm', 3890, + 'n', 3941, + 'o', 3840, + 'p', 3888, + 's', 3912, + 't', 3887, + 'u', 3942, + 'w', 3918, + '{', 3091, + '|', 2863, + '}', 3092, + 0xb5, 3942, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(955); + lookahead == ' ') SKIP(958); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); + lookahead == 'b') ADVANCE(3420); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3979); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3405); + lookahead == 'i') ADVANCE(3970); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3397); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4002); + lookahead != ']') ADVANCE(3993); END_STATE(); - case 933: + case 937: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 3220, - ')', 2918, - '+', 3881, - '-', 2969, - '.', 3878, - '0', 3382, - ';', 2870, - 'E', 3898, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'N', 3972, - 'P', 3898, - 'T', 3898, - '[', 2915, - '_', 3905, - '`', 624, - 'd', 3915, - 'e', 3847, - 'f', 3914, - 'g', 3897, - 'h', 3941, - 'k', 3897, - 'm', 3899, - 'n', 3950, - 'o', 3849, - 'p', 3897, - 's', 3921, - 't', 3896, - 'u', 3951, - 'w', 3927, - '{', 3099, - '|', 2871, - '}', 3100, - 0xb5, 3951, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 3212, + ')', 2910, + '+', 3872, + '-', 2961, + '.', 3869, + '0', 3374, + ';', 2862, + 'E', 3889, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'N', 3963, + 'P', 3889, + 'T', 3889, + '[', 2907, + '_', 3896, + '`', 626, + 'd', 3906, + 'e', 3838, + 'f', 3905, + 'g', 3888, + 'h', 3932, + 'k', 3888, + 'm', 3890, + 'n', 3941, + 'o', 3840, + 'p', 3888, + 's', 3912, + 't', 3887, + 'u', 3942, + 'w', 3918, + '{', 3091, + '|', 2863, + '}', 3092, + 0xb5, 3942, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(955); + lookahead == ' ') SKIP(958); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); + lookahead == 'b') ADVANCE(3420); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3979); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3405); + lookahead == 'i') ADVANCE(3970); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3397); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4002); + lookahead != ']') ADVANCE(3993); END_STATE(); - case 934: + case 938: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 3220, - ')', 2918, - '+', 3881, - '-', 2969, - '.', 3878, - '0', 3382, - ';', 2870, - 'E', 3910, - 'N', 3972, - '[', 2915, - '_', 3905, - '`', 624, - 'e', 3851, - 'f', 3914, - 'n', 3959, - 'o', 3849, - 't', 3943, - '{', 3099, - '|', 2871, - '}', 3100, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 3212, + ')', 2910, + '+', 3872, + '-', 2961, + '.', 3869, + '0', 3374, + ';', 2862, + 'E', 3901, + 'N', 3963, + '[', 2907, + '_', 3896, + '`', 626, + 'e', 3842, + 'f', 3905, + 'n', 3950, + 'o', 3840, + 't', 3934, + '{', 3091, + '|', 2863, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(955); + lookahead == ' ') SKIP(958); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3979); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3405); + lookahead == 'i') ADVANCE(3970); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3397); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4002); + lookahead != ']') ADVANCE(3993); END_STATE(); - case 935: + case 939: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 3220, - ')', 2918, - '+', 3881, - '-', 2969, - '.', 3878, - '0', 3382, - ';', 2870, - 'N', 3972, - '[', 2915, - '_', 3905, - '`', 624, - 'e', 3848, - 'f', 3914, - 'n', 3959, - 'o', 3849, - 't', 3943, - '{', 3099, - '|', 2871, - '}', 3100, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 3212, + ')', 2910, + '+', 3872, + '-', 2961, + '.', 3869, + '0', 3374, + ';', 2862, + 'N', 3963, + '[', 2907, + '_', 3896, + '`', 626, + 'e', 3839, + 'f', 3905, + 'n', 3950, + 'o', 3840, + 't', 3934, + '{', 3091, + '|', 2863, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(955); + lookahead == ' ') SKIP(958); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3979); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3405); + lookahead == 'i') ADVANCE(3970); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3397); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4002); + lookahead != ']') ADVANCE(3993); END_STATE(); - case 936: + case 940: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 3220, - ')', 2918, - '+', 3881, - '-', 2969, - '.', 3877, - '0', 3331, - ';', 2870, - 'E', 3910, - 'N', 3972, - '[', 2915, - '_', 3900, - '`', 624, - 'e', 3851, - 'f', 3914, - 'n', 3959, - 'o', 3849, - 't', 3943, - '{', 3099, - '|', 2871, - '}', 3100, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 3212, + ')', 2910, + '+', 3872, + '-', 2961, + '.', 3868, + '0', 3323, + ';', 2862, + 'E', 3901, + 'N', 3963, + '[', 2907, + '_', 3891, + '`', 626, + 'e', 3842, + 'f', 3905, + 'n', 3950, + 'o', 3840, + 't', 3934, + '{', 3091, + '|', 2863, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(955); + lookahead == ' ') SKIP(958); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3979); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3346); + lookahead == 'i') ADVANCE(3970); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3338); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4002); + lookahead != ']') ADVANCE(3993); END_STATE(); - case 937: + case 941: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 3220, - ')', 2918, - '+', 3881, - '-', 2969, - '.', 3877, - '0', 3382, - ';', 2870, - 'E', 3910, - 'N', 3972, - '[', 2915, - '_', 3905, - '`', 624, - 'e', 3851, - 'f', 3914, - 'n', 3959, - 'o', 3849, - 't', 3943, - '{', 3099, - '|', 2871, - '}', 3100, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 3212, + ')', 2910, + '+', 3872, + '-', 2961, + '.', 3868, + '0', 3374, + ';', 2862, + 'E', 3901, + 'N', 3963, + '[', 2907, + '_', 3896, + '`', 626, + 'e', 3842, + 'f', 3905, + 'n', 3950, + 'o', 3840, + 't', 3934, + '{', 3091, + '|', 2863, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(955); + lookahead == ' ') SKIP(958); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3979); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3405); + lookahead == 'i') ADVANCE(3970); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3397); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4002); + lookahead != ']') ADVANCE(3993); END_STATE(); - case 938: + case 942: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 3220, - ')', 2918, - '+', 3881, - '-', 2969, - '.', 3877, - '0', 3382, - ';', 2870, - 'N', 3972, - '[', 2915, - '_', 3905, - '`', 624, - 'e', 3848, - 'f', 3914, - 'n', 3959, - 'o', 3849, - 't', 3943, - '{', 3099, - '|', 2871, - '}', 3100, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 3212, + ')', 2910, + '+', 3872, + '-', 2961, + '.', 3868, + '0', 3374, + ';', 2862, + 'N', 3963, + '[', 2907, + '_', 3896, + '`', 626, + 'e', 3839, + 'f', 3905, + 'n', 3950, + 'o', 3840, + 't', 3934, + '{', 3091, + '|', 2863, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(955); + lookahead == ' ') SKIP(958); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3979); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3405); + lookahead == 'i') ADVANCE(3970); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3397); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4002); + lookahead != ']') ADVANCE(3993); END_STATE(); - case 939: + case 943: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 3220, - ')', 2918, - '+', 3881, - '-', 2969, - '.', 3301, - '0', 3382, - ';', 2870, - 'E', 3895, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'N', 3972, - 'P', 3898, - 'T', 3898, - '[', 2915, - '_', 3905, - '`', 624, - 'd', 3915, - 'e', 3850, - 'f', 3914, - 'g', 3897, - 'h', 3941, - 'k', 3897, - 'm', 3899, - 'n', 3950, - 'o', 3849, - 'p', 3897, - 's', 3921, - 't', 3896, - 'u', 3951, - 'w', 3927, - '{', 3099, - '|', 2871, - '}', 3100, - 0xb5, 3951, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 3212, + ')', 2910, + '+', 3872, + '-', 2961, + '.', 3293, + '0', 3374, + ';', 2862, + 'E', 3886, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'N', 3963, + 'P', 3889, + 'T', 3889, + '[', 2907, + '_', 3896, + '`', 626, + 'd', 3906, + 'e', 3841, + 'f', 3905, + 'g', 3888, + 'h', 3932, + 'k', 3888, + 'm', 3890, + 'n', 3941, + 'o', 3840, + 'p', 3888, + 's', 3912, + 't', 3887, + 'u', 3942, + 'w', 3918, + '{', 3091, + '|', 2863, + '}', 3092, + 0xb5, 3942, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(955); + lookahead == ' ') SKIP(958); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); + lookahead == 'b') ADVANCE(3420); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3979); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3405); + lookahead == 'i') ADVANCE(3970); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3397); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4002); + lookahead != ']') ADVANCE(3993); END_STATE(); - case 940: + case 944: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 3220, - ')', 2918, - '+', 3881, - '-', 2969, - '.', 3301, - '0', 3382, - ';', 2870, - 'E', 3910, - 'N', 3972, - '[', 2915, - '_', 3905, - '`', 624, - 'e', 3851, - 'f', 3914, - 'n', 3959, - 'o', 3849, - 't', 3943, - '{', 3099, - '|', 2871, - '}', 3100, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 3212, + ')', 2910, + '+', 3872, + '-', 2961, + '.', 3293, + '0', 3374, + ';', 2862, + 'E', 3901, + 'N', 3963, + '[', 2907, + '_', 3896, + '`', 626, + 'e', 3842, + 'f', 3905, + 'n', 3950, + 'o', 3840, + 't', 3934, + '{', 3091, + '|', 2863, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(955); + lookahead == ' ') SKIP(958); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3979); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3405); + lookahead == 'i') ADVANCE(3970); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3397); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4002); + lookahead != ']') ADVANCE(3993); END_STATE(); - case 941: + case 945: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 3220, - ')', 2918, - '+', 3881, - '-', 2969, - '.', 3292, - '0', 3382, - ';', 2870, - 'E', 3910, - 'N', 3972, - '[', 2915, - '_', 3905, - '`', 624, - 'e', 3851, - 'f', 3914, - 'n', 3959, - 'o', 3849, - 't', 3943, - '{', 3099, - '|', 2871, - '}', 3100, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 3212, + ')', 2910, + '+', 3872, + '-', 2961, + '.', 3284, + '0', 3374, + ';', 2862, + 'E', 3901, + 'N', 3963, + '[', 2907, + '_', 3896, + '`', 626, + 'e', 3842, + 'f', 3905, + 'n', 3950, + 'o', 3840, + 't', 3934, + '{', 3091, + '|', 2863, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(955); + lookahead == ' ') SKIP(958); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3979); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3405); + lookahead == 'i') ADVANCE(3970); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3397); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4002); + lookahead != ']') ADVANCE(3993); END_STATE(); - case 942: + case 946: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 3220, - ')', 2918, - '+', 3766, - '-', 2965, - '.', 3762, - '0', 3332, - ';', 2870, - 'N', 3823, - '[', 2915, - '_', 3787, - '`', 624, - 'e', 3739, - 'f', 3791, - 'n', 3819, - 'o', 3740, - 't', 3806, - '{', 3099, - '|', 2871, - '}', 3100, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 3212, + ')', 2910, + '+', 3757, + '-', 2957, + '.', 3753, + '0', 3324, + ';', 2862, + 'N', 3814, + '[', 2907, + '_', 3778, + '`', 626, + 'e', 3730, + 'f', 3782, + 'n', 3810, + 'o', 3731, + 't', 3797, + '{', 3091, + '|', 2863, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(972); + lookahead == ' ') SKIP(975); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3827); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3347); + lookahead == 'i') ADVANCE(3818); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3339); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3846); + lookahead != ']') ADVANCE(3837); END_STATE(); - case 943: + case 947: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 3220, - ')', 2918, - '+', 3766, - '-', 2965, - '.', 3290, - '0', 3332, - ';', 2870, - 'N', 3823, - '[', 2915, - '_', 3787, - '`', 624, - 'e', 3739, - 'f', 3791, - 'n', 3819, - 'o', 3740, - 't', 3806, - '{', 3099, - '|', 2871, - '}', 3100, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 3212, + ')', 2910, + '+', 3757, + '-', 2957, + '.', 3282, + '0', 3324, + ';', 2862, + 'N', 3814, + '[', 2907, + '_', 3778, + '`', 626, + 'e', 3730, + 'f', 3782, + 'n', 3810, + 'o', 3731, + 't', 3797, + '{', 3091, + '|', 2863, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(972); + lookahead == ' ') SKIP(975); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3827); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3347); + lookahead == 'i') ADVANCE(3818); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3339); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3846); + lookahead != ']') ADVANCE(3837); END_STATE(); - case 944: + case 948: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 2917, - ')', 3367, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 2909, + ')', 3359, '+', 1337, - '-', 2978, + '-', 2970, '.', 1338, - '0', 3377, - ';', 2870, - '=', 602, + '0', 3369, + ';', 2862, + '=', 604, 'I', 1569, 'N', 1566, - '[', 2915, - '^', 3604, + '[', 2907, + '^', 3595, '_', 1359, - '`', 624, + '`', 626, 'a', 1455, 'b', 1500, 'c', 1360, @@ -30129,45 +30535,45 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1492, 'u', 1520, 'w', 1433, - '{', 3099, - '|', 2871, - '}', 3100, + '{', 3091, + '|', 2863, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(945); + lookahead == ' ') SKIP(949); if (lookahead == '!' || ('&' <= lookahead && lookahead <= ',') || lookahead == '?' || lookahead == '@') ADVANCE(1875); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3400); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3392); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '0' || '@' < lookahead) && (lookahead < ']' || 'f' < lookahead)) ADVANCE(1575); END_STATE(); - case 945: + case 949: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 2917, - ')', 2918, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 2909, + ')', 2910, '+', 1337, - '-', 2978, + '-', 2970, '.', 1338, - '0', 3377, - ';', 2870, - '=', 602, + '0', 3369, + ';', 2862, + '=', 604, 'I', 1569, 'N', 1566, - '[', 2915, - '^', 3604, + '[', 2907, + '^', 3595, '_', 1359, - '`', 624, + '`', 626, 'a', 1455, 'b', 1500, 'c', 1360, @@ -30185,137 +30591,89 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1492, 'u', 1520, 'w', 1433, - '{', 3099, - '|', 2871, - '}', 3100, + '{', 3091, + '|', 2863, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(945); + lookahead == ' ') SKIP(949); if (lookahead == '!' || ('&' <= lookahead && lookahead <= ',') || lookahead == '?' || lookahead == '@') ADVANCE(1875); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3400); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3392); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '0' || '@' < lookahead) && (lookahead < ']' || 'f' < lookahead)) ADVANCE(1575); END_STATE(); - case 946: - if (eof) ADVANCE(1055); - ADVANCE_MAP( - '\n', 2864, - '\r', 24, - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 2917, - ')', 2918, - '+', 566, - '-', 2978, - '.', 567, - '0', 3380, - ';', 2870, - '?', 3189, - 'I', 893, - 'N', 884, - '[', 2915, - '_', 616, - '`', 624, - 'a', 714, - 'c', 633, - 'd', 665, - 'e', 529, - 'f', 628, - 'h', 695, - 'i', 678, - 'l', 694, - 'm', 625, - 'n', 664, - 'o', 524, - 't', 763, - 'u', 789, - 'x', 745, - '{', 3099, - '|', 2871, - '}', 3100, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(946); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3403); - END_STATE(); - case 947: + case 950: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 2917, - ')', 2918, - '+', 566, - '-', 2978, - '.', 3285, - '0', 3380, - ';', 2870, - '=', 3661, - '?', 3189, - 'I', 893, - 'N', 884, - '[', 2915, - '_', 616, - '`', 624, - 'a', 714, - 'c', 633, - 'd', 665, - 'e', 529, - 'f', 628, - 'h', 695, - 'i', 678, - 'l', 694, - 'm', 625, - 'n', 664, - 'o', 524, - 't', 763, - 'u', 789, - 'x', 745, - '{', 3099, - '|', 2871, - '}', 3100, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 2909, + ')', 2910, + '+', 568, + '-', 2970, + '.', 569, + '0', 3372, + ';', 2862, + '=', 604, + 'I', 897, + 'N', 888, + '[', 2907, + '_', 615, + '`', 626, + 'a', 729, + 'c', 632, + 'd', 740, + 'e', 537, + 'f', 630, + 'i', 681, + 'm', 636, + 'n', 749, + 'o', 543, + 't', 766, + 'x', 750, + '{', 3091, + '|', 2863, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(946); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3403); + lookahead == ' ') SKIP(950); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3395); END_STATE(); - case 948: + case 951: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 2917, - ')', 2918, - '+', 3526, - '-', 2978, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 2909, + ')', 2910, + '+', 3517, + '-', 2970, '.', 1344, - '0', 3377, - ':', 2912, - ';', 2870, + '0', 3369, + ':', 2904, + ';', 2862, '=', 1073, - '>', 2949, + '>', 2941, 'I', 1569, 'N', 1566, - '[', 2915, - ']', 2916, - '^', 3604, + '[', 2907, + ']', 2908, + '^', 3595, '_', 1359, - '`', 624, + '`', 626, 'a', 1456, 'b', 1500, 'c', 1374, @@ -30333,1091 +30691,1039 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1492, 'u', 1520, 'w', 1433, - '{', 3099, - '|', 2871, - '}', 3100, + '{', 3091, + '|', 2863, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(948); + lookahead == ' ') SKIP(951); if (lookahead == '!' || ('&' <= lookahead && lookahead <= ',') || lookahead == '?' || lookahead == '@') ADVANCE(1875); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3400); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3392); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '0' || '@' < lookahead)) ADVANCE(1575); END_STATE(); - case 949: - if (eof) ADVANCE(1055); - ADVANCE_MAP( - '\n', 2864, - '\r', 24, - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 2917, - ')', 2918, - '+', 3764, - '-', 2964, - '.', 3765, - '0', 3378, - ';', 2870, - 'N', 3823, - '[', 2915, - '_', 3778, - '`', 624, - 'e', 3739, - 'f', 3791, - 'n', 3819, - 'o', 3740, - 't', 3806, - '{', 3099, - '|', 2871, - '}', 3100, - '\t', 2869, - ' ', 2869, - 'I', 3827, - 'i', 3827, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3401); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3846); - END_STATE(); - case 950: - if (eof) ADVANCE(1055); - ADVANCE_MAP( - '\n', 2864, - '\r', 24, - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 2917, - ')', 2918, - '+', 3764, - '-', 2964, - '.', 3761, - '0', 2674, - ';', 2870, - '=', 3661, - 'N', 2800, - '[', 2915, - '_', 2676, - '`', 624, - 'e', 2653, - 'f', 2684, - 'n', 2787, - 'o', 2654, - 't', 2753, - '{', 3099, - '|', 2871, - '}', 3100, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(955); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2808); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2679); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2831); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3846); - END_STATE(); - case 951: - if (eof) ADVANCE(1055); - ADVANCE_MAP( - '\n', 2864, - '\r', 24, - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 2917, - ')', 2918, - '+', 3764, - '-', 2964, - '.', 3761, - '0', 3378, - ';', 2870, - '=', 3661, - 'N', 3823, - '[', 2915, - '_', 3778, - '`', 624, - 'e', 3739, - 'f', 3791, - 'n', 3819, - 'o', 3740, - 't', 3806, - '{', 3099, - '|', 2871, - '}', 3100, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(955); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3827); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3401); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3846); - END_STATE(); case 952: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 2917, - ')', 2918, - '+', 3764, - '-', 2964, - '.', 3761, - '0', 3378, - ';', 2870, - '?', 3189, - 'N', 3823, - '[', 2915, - '_', 3778, - '`', 624, - 'e', 3739, - 'f', 3791, - 'n', 3819, - 'o', 3740, - 't', 3806, - '{', 3099, - '|', 2871, - '}', 3100, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 2909, + ')', 2910, + '+', 3755, + '-', 2956, + '.', 3756, + '0', 3370, + ';', 2862, + 'N', 3814, + '[', 2907, + '_', 3769, + '`', 626, + 'e', 3730, + 'f', 3782, + 'n', 3810, + 'o', 3731, + 't', 3797, + '{', 3091, + '|', 2863, + '}', 3092, + '\t', 2861, + ' ', 2861, + 'I', 3818, + 'i', 3818, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(952); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3827); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3401); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3393); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3846); + lookahead != ']') ADVANCE(3837); END_STATE(); case 953: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 2917, - ')', 2918, - '+', 3764, - '-', 2964, - '.', 3761, - '0', 3378, - ';', 2870, - 'E', 3789, - 'N', 3823, - '[', 2915, - '_', 3778, - '`', 624, - 'e', 3741, - 'f', 3791, - 'n', 3819, - 'o', 3740, - 't', 3806, - '{', 3099, - '|', 2871, - '}', 3100, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 2909, + ')', 2910, + '+', 3755, + '-', 2956, + '.', 3752, + '0', 2666, + ';', 2862, + '=', 3652, + 'N', 2792, + '[', 2907, + '_', 2668, + '`', 626, + 'e', 2645, + 'f', 2676, + 'n', 2779, + 'o', 2646, + 't', 2745, + '{', 3091, + '|', 2863, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(955); + lookahead == ' ') SKIP(958); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3827); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3401); + lookahead == 'i') ADVANCE(2800); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2671); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2823); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3846); + lookahead != ']') ADVANCE(3837); END_STATE(); case 954: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 2917, - ')', 2918, - '+', 3764, - '-', 2964, - '.', 3761, - '0', 3378, - ';', 2870, - 'N', 3823, - '[', 3451, - '_', 3778, - '`', 624, - 'e', 3739, - 'f', 3791, - 'n', 3819, - 'o', 3740, - 't', 3806, - '{', 3099, - '|', 2871, - '}', 3100, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 2909, + ')', 2910, + '+', 3755, + '-', 2956, + '.', 3752, + '0', 3370, + ';', 2862, + '=', 3652, + 'N', 3814, + '[', 2907, + '_', 3769, + '`', 626, + 'e', 3730, + 'f', 3782, + 'n', 3810, + 'o', 3731, + 't', 3797, + '{', 3091, + '|', 2863, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(955); + lookahead == ' ') SKIP(958); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3827); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3401); + lookahead == 'i') ADVANCE(3818); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3393); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3846); + lookahead != ']') ADVANCE(3837); END_STATE(); case 955: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 2917, - ')', 2918, - '+', 3764, - '-', 2964, - '.', 3761, - '0', 3378, - ';', 2870, - 'N', 3823, - '[', 2915, - '_', 3778, - '`', 624, - 'e', 3739, - 'f', 3791, - 'n', 3819, - 'o', 3740, - 't', 3806, - '{', 3099, - '|', 2871, - '}', 3100, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 2909, + ')', 2910, + '+', 3755, + '-', 2956, + '.', 3752, + '0', 3370, + ';', 2862, + '?', 3181, + 'N', 3814, + '[', 2907, + '_', 3769, + '`', 626, + 'e', 3730, + 'f', 3782, + 'n', 3810, + 'o', 3731, + 't', 3797, + '{', 3091, + '|', 2863, + '}', 3092, ); if (lookahead == '\t' || lookahead == ' ') SKIP(955); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3827); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3401); + lookahead == 'i') ADVANCE(3818); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3393); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3846); + lookahead != ']') ADVANCE(3837); END_STATE(); case 956: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 2917, - ')', 2918, - '+', 3764, - '-', 2964, - '.', 3761, - '0', 3332, - ';', 2870, - 'E', 3789, - 'N', 3823, - '[', 2915, - '_', 3787, - '`', 624, - 'e', 3741, - 'f', 3791, - 'n', 3819, - 'o', 3740, - 't', 3806, - '{', 3099, - '|', 2871, - '}', 3100, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 2909, + ')', 2910, + '+', 3755, + '-', 2956, + '.', 3752, + '0', 3370, + ';', 2862, + 'E', 3780, + 'N', 3814, + '[', 2907, + '_', 3769, + '`', 626, + 'e', 3732, + 'f', 3782, + 'n', 3810, + 'o', 3731, + 't', 3797, + '{', 3091, + '|', 2863, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(955); + lookahead == ' ') SKIP(958); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3827); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3347); + lookahead == 'i') ADVANCE(3818); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3393); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3846); + lookahead != ']') ADVANCE(3837); END_STATE(); case 957: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 2917, - ')', 2918, - '+', 3764, - '-', 2964, - '.', 3763, - '0', 3378, - ';', 2870, - 'E', 3789, - 'N', 3823, - '[', 2915, - '_', 3778, - '`', 624, - 'e', 3741, - 'f', 3791, - 'n', 3819, - 'o', 3740, - 't', 3806, - '{', 3099, - '|', 2871, - '}', 3100, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 2909, + ')', 2910, + '+', 3755, + '-', 2956, + '.', 3752, + '0', 3370, + ';', 2862, + 'N', 3814, + '[', 3442, + '_', 3769, + '`', 626, + 'e', 3730, + 'f', 3782, + 'n', 3810, + 'o', 3731, + 't', 3797, + '{', 3091, + '|', 2863, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(955); + lookahead == ' ') SKIP(958); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3827); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3401); + lookahead == 'i') ADVANCE(3818); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3393); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3846); + lookahead != ']') ADVANCE(3837); END_STATE(); case 958: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 2917, - ')', 2918, - '+', 3764, - '-', 2964, - '.', 3763, - '0', 3378, - ';', 2870, - 'N', 3823, - '[', 2915, - '_', 3778, - '`', 624, - 'e', 3739, - 'f', 3791, - 'n', 3819, - 'o', 3740, - 't', 3806, - '{', 3099, - '|', 2871, - '}', 3100, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 2909, + ')', 2910, + '+', 3755, + '-', 2956, + '.', 3752, + '0', 3370, + ';', 2862, + 'N', 3814, + '[', 2907, + '_', 3769, + '`', 626, + 'e', 3730, + 'f', 3782, + 'n', 3810, + 'o', 3731, + 't', 3797, + '{', 3091, + '|', 2863, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(955); + lookahead == ' ') SKIP(958); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3827); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3401); + lookahead == 'i') ADVANCE(3818); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3393); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3846); + lookahead != ']') ADVANCE(3837); END_STATE(); case 959: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 2917, - ')', 2918, - '+', 3764, - '-', 2964, - '.', 3763, - '0', 3332, - ';', 2870, - 'E', 3789, - 'N', 3823, - '[', 2915, - '_', 3787, - '`', 624, - 'e', 3741, - 'f', 3791, - 'n', 3819, - 'o', 3740, - 't', 3806, - '{', 3099, - '|', 2871, - '}', 3100, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 2909, + ')', 2910, + '+', 3755, + '-', 2956, + '.', 3752, + '0', 3324, + ';', 2862, + 'E', 3780, + 'N', 3814, + '[', 2907, + '_', 3778, + '`', 626, + 'e', 3732, + 'f', 3782, + 'n', 3810, + 'o', 3731, + 't', 3797, + '{', 3091, + '|', 2863, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(955); + lookahead == ' ') SKIP(958); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3827); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3347); + lookahead == 'i') ADVANCE(3818); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3339); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3846); + lookahead != ']') ADVANCE(3837); END_STATE(); case 960: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 2917, - ')', 2918, - '+', 3764, - '-', 2964, - '.', 3299, - '0', 3378, - ';', 2870, - '?', 3189, - 'N', 3823, - '[', 2915, - '_', 3778, - '`', 624, - 'e', 3739, - 'f', 3791, - 'n', 3819, - 'o', 3740, - 't', 3806, - '{', 3099, - '|', 2871, - '}', 3100, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 2909, + ')', 2910, + '+', 3755, + '-', 2956, + '.', 3754, + '0', 3370, + ';', 2862, + 'E', 3780, + 'N', 3814, + '[', 2907, + '_', 3769, + '`', 626, + 'e', 3732, + 'f', 3782, + 'n', 3810, + 'o', 3731, + 't', 3797, + '{', 3091, + '|', 2863, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(952); + lookahead == ' ') SKIP(958); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3827); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3401); + lookahead == 'i') ADVANCE(3818); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3393); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3846); + lookahead != ']') ADVANCE(3837); END_STATE(); case 961: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 2917, - ')', 2918, - '+', 3764, - '-', 2964, - '.', 3299, - '0', 3378, - ';', 2870, - 'E', 3789, - 'N', 3823, - '[', 2915, - '_', 3778, - '`', 624, - 'e', 3741, - 'f', 3791, - 'n', 3819, - 'o', 3740, - 't', 3806, - '{', 3099, - '|', 2871, - '}', 3100, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 2909, + ')', 2910, + '+', 3755, + '-', 2956, + '.', 3754, + '0', 3370, + ';', 2862, + 'N', 3814, + '[', 2907, + '_', 3769, + '`', 626, + 'e', 3730, + 'f', 3782, + 'n', 3810, + 'o', 3731, + 't', 3797, + '{', 3091, + '|', 2863, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(955); + lookahead == ' ') SKIP(958); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3827); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3401); + lookahead == 'i') ADVANCE(3818); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3393); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3846); + lookahead != ']') ADVANCE(3837); END_STATE(); case 962: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 2917, - ')', 2918, - '+', 3764, - '-', 2964, - '.', 3299, - '0', 3378, - ';', 2870, - 'N', 3823, - '[', 2915, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 2909, + ')', 2910, + '+', 3755, + '-', 2956, + '.', 3754, + '0', 3324, + ';', 2862, + 'E', 3780, + 'N', 3814, + '[', 2907, '_', 3778, - '`', 624, - 'e', 3739, - 'f', 3791, - 'n', 3819, - 'o', 3740, - 't', 3806, - '{', 3099, - '|', 2871, - '}', 3100, + '`', 626, + 'e', 3732, + 'f', 3782, + 'n', 3810, + 'o', 3731, + 't', 3797, + '{', 3091, + '|', 2863, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(955); + lookahead == ' ') SKIP(958); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3827); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3401); + lookahead == 'i') ADVANCE(3818); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3339); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3846); + lookahead != ']') ADVANCE(3837); END_STATE(); case 963: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 2917, - ')', 2918, - '+', 3764, - '-', 2964, - '.', 3286, - '0', 3378, - ';', 2870, - '?', 3189, - 'N', 3823, - '[', 2915, - '_', 3778, - '`', 624, - 'e', 3739, - 'f', 3791, - 'n', 3819, - 'o', 3740, - 't', 3806, - '{', 3099, - '|', 2871, - '}', 3100, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 2909, + ')', 2910, + '+', 3755, + '-', 2956, + '.', 3291, + '0', 3370, + ';', 2862, + '?', 3181, + 'N', 3814, + '[', 2907, + '_', 3769, + '`', 626, + 'e', 3730, + 'f', 3782, + 'n', 3810, + 'o', 3731, + 't', 3797, + '{', 3091, + '|', 2863, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(952); + lookahead == ' ') SKIP(955); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3827); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3401); + lookahead == 'i') ADVANCE(3818); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3393); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3846); + lookahead != ']') ADVANCE(3837); END_STATE(); case 964: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 2917, - ')', 2918, - '+', 3764, - '-', 2964, - '.', 3286, - '0', 3378, - ';', 2870, - 'E', 3789, - 'N', 3823, - '[', 2915, - '_', 3778, - '`', 624, - 'e', 3741, - 'f', 3791, - 'n', 3819, - 'o', 3740, - 't', 3806, - '{', 3099, - '|', 2871, - '}', 3100, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 2909, + ')', 2910, + '+', 3755, + '-', 2956, + '.', 3291, + '0', 3370, + ';', 2862, + 'E', 3780, + 'N', 3814, + '[', 2907, + '_', 3769, + '`', 626, + 'e', 3732, + 'f', 3782, + 'n', 3810, + 'o', 3731, + 't', 3797, + '{', 3091, + '|', 2863, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(955); + lookahead == ' ') SKIP(958); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3827); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3401); + lookahead == 'i') ADVANCE(3818); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3393); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3846); + lookahead != ']') ADVANCE(3837); END_STATE(); case 965: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 2917, - ')', 2918, - '+', 3764, - '-', 2964, - '.', 3286, - '0', 3378, - ';', 2870, - 'N', 3823, - '[', 2915, - '_', 3778, - '`', 624, - 'e', 3739, - 'f', 3791, - 'n', 3819, - 'o', 3740, - 't', 3806, - '{', 3099, - '|', 2871, - '}', 3100, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 2909, + ')', 2910, + '+', 3755, + '-', 2956, + '.', 3291, + '0', 3370, + ';', 2862, + 'N', 3814, + '[', 2907, + '_', 3769, + '`', 626, + 'e', 3730, + 'f', 3782, + 'n', 3810, + 'o', 3731, + 't', 3797, + '{', 3091, + '|', 2863, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(955); + lookahead == ' ') SKIP(958); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3827); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3401); + lookahead == 'i') ADVANCE(3818); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3393); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3846); + lookahead != ']') ADVANCE(3837); END_STATE(); case 966: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 2917, - ')', 2918, - '+', 3764, - '-', 2971, - '.', 3761, - '0', 3679, - ';', 2870, - '=', 3661, - 'N', 3706, - '[', 2915, - '_', 3681, - '`', 624, - 'e', 3662, - 'f', 3688, - 'n', 3705, - 'o', 3663, - 't', 3696, - '{', 3099, - '|', 2871, - '}', 3100, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 2909, + ')', 2910, + '+', 3755, + '-', 2956, + '.', 3277, + '0', 3370, + ';', 2862, + '?', 3181, + 'N', 3814, + '[', 2907, + '_', 3769, + '`', 626, + 'e', 3730, + 'f', 3782, + 'n', 3810, + 'o', 3731, + 't', 3797, + '{', 3091, + '|', 2863, + '}', 3092, ); if (lookahead == '\t' || lookahead == ' ') SKIP(955); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3711); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3684); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + lookahead == 'i') ADVANCE(3818); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3393); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3846); + lookahead != ']') ADVANCE(3837); END_STATE(); case 967: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 2917, - ')', 2918, - '+', 3881, - '-', 2969, - '.', 3878, - '0', 3331, - ';', 2870, - 'E', 3895, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'N', 3972, - 'P', 3898, - 'T', 3898, - '[', 2915, - '_', 3900, - '`', 624, - 'd', 3915, - 'e', 3850, - 'f', 3914, - 'g', 3897, - 'h', 3941, - 'k', 3897, - 'm', 3899, - 'n', 3950, - 'o', 3849, - 'p', 3897, - 's', 3921, - 't', 3896, - 'u', 3951, - 'w', 3927, - '{', 3099, - '|', 2871, - '}', 3100, - 0xb5, 3951, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 2909, + ')', 2910, + '+', 3755, + '-', 2956, + '.', 3277, + '0', 3370, + ';', 2862, + 'E', 3780, + 'N', 3814, + '[', 2907, + '_', 3769, + '`', 626, + 'e', 3732, + 'f', 3782, + 'n', 3810, + 'o', 3731, + 't', 3797, + '{', 3091, + '|', 2863, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(955); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); + lookahead == ' ') SKIP(958); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3979); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3346); + lookahead == 'i') ADVANCE(3818); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3393); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4002); + lookahead != ']') ADVANCE(3837); END_STATE(); case 968: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 2917, - ')', 2918, - '+', 3881, - '-', 2969, - '.', 3878, - '0', 3382, - ';', 2870, - 'E', 3895, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'N', 3972, - 'P', 3898, - 'T', 3898, - '[', 2915, - '_', 3905, - '`', 624, - 'd', 3915, - 'e', 3850, - 'f', 3914, - 'g', 3897, - 'h', 3941, - 'k', 3897, - 'm', 3899, - 'n', 3950, - 'o', 3849, - 'p', 3897, - 's', 3921, - 't', 3896, - 'u', 3951, - 'w', 3927, - '{', 3099, - '|', 2871, - '}', 3100, - 0xb5, 3951, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 2909, + ')', 2910, + '+', 3755, + '-', 2956, + '.', 3277, + '0', 3370, + ';', 2862, + 'N', 3814, + '[', 2907, + '_', 3769, + '`', 626, + 'e', 3730, + 'f', 3782, + 'n', 3810, + 'o', 3731, + 't', 3797, + '{', 3091, + '|', 2863, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(955); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); + lookahead == ' ') SKIP(958); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3979); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3405); + lookahead == 'i') ADVANCE(3818); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3393); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4002); + lookahead != ']') ADVANCE(3837); END_STATE(); case 969: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 2917, - ')', 2918, - '+', 3881, - '-', 2969, - '.', 3878, - '0', 3382, - ';', 2870, - 'E', 3898, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'N', 3972, - 'P', 3898, - 'T', 3898, - '[', 2915, - '_', 3905, - '`', 624, - 'd', 3915, - 'e', 3847, - 'f', 3914, - 'g', 3897, - 'h', 3941, - 'k', 3897, - 'm', 3899, - 'n', 3950, - 'o', 3849, - 'p', 3897, - 's', 3921, - 't', 3896, - 'u', 3951, - 'w', 3927, - '{', 3099, - '|', 2871, - '}', 3100, - 0xb5, 3951, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 2909, + ')', 2910, + '+', 3755, + '-', 2965, + '.', 3752, + '0', 3670, + ';', 2862, + '=', 3652, + 'N', 3697, + '[', 2907, + '_', 3672, + '`', 626, + 'e', 3653, + 'f', 3679, + 'n', 3696, + 'o', 3654, + 't', 3687, + '{', 3091, + '|', 2863, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(955); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); + lookahead == ' ') SKIP(958); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3979); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3405); + lookahead == 'i') ADVANCE(3702); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3675); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4002); + lookahead != ']') ADVANCE(3837); END_STATE(); case 970: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 2917, - ')', 2918, - '+', 3881, - '-', 2969, - '.', 3877, - '0', 3382, - ';', 2870, - 'N', 3972, - '[', 2915, - '_', 3905, - '`', 624, - 'e', 3848, - 'f', 3914, - 'n', 3959, - 'o', 3849, - 't', 3943, - '{', 3099, - '|', 2871, - '}', 3100, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 2909, + ')', 2910, + '+', 3872, + '-', 2961, + '.', 3869, + '0', 3323, + ';', 2862, + 'E', 3886, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'N', 3963, + 'P', 3889, + 'T', 3889, + '[', 2907, + '_', 3891, + '`', 626, + 'd', 3906, + 'e', 3841, + 'f', 3905, + 'g', 3888, + 'h', 3932, + 'k', 3888, + 'm', 3890, + 'n', 3941, + 'o', 3840, + 'p', 3888, + 's', 3912, + 't', 3887, + 'u', 3942, + 'w', 3918, + '{', 3091, + '|', 2863, + '}', 3092, + 0xb5, 3942, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(955); + lookahead == ' ') SKIP(958); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3420); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3979); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3405); + lookahead == 'i') ADVANCE(3970); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3338); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4002); + lookahead != ']') ADVANCE(3993); END_STATE(); case 971: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 2917, - ')', 2918, - '+', 3881, - '-', 2969, - '.', 3301, - '0', 3382, - ';', 2870, - 'E', 3895, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'N', 3972, - 'P', 3898, - 'T', 3898, - '[', 2915, - '_', 3905, - '`', 624, - 'd', 3915, - 'e', 3850, - 'f', 3914, - 'g', 3897, - 'h', 3941, - 'k', 3897, - 'm', 3899, - 'n', 3950, - 'o', 3849, - 'p', 3897, - 's', 3921, - 't', 3896, - 'u', 3951, - 'w', 3927, - '{', 3099, - '|', 2871, - '}', 3100, - 0xb5, 3951, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 2909, + ')', 2910, + '+', 3872, + '-', 2961, + '.', 3869, + '0', 3374, + ';', 2862, + 'E', 3886, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'N', 3963, + 'P', 3889, + 'T', 3889, + '[', 2907, + '_', 3896, + '`', 626, + 'd', 3906, + 'e', 3841, + 'f', 3905, + 'g', 3888, + 'h', 3932, + 'k', 3888, + 'm', 3890, + 'n', 3941, + 'o', 3840, + 'p', 3888, + 's', 3912, + 't', 3887, + 'u', 3942, + 'w', 3918, + '{', 3091, + '|', 2863, + '}', 3092, + 0xb5, 3942, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(955); + lookahead == ' ') SKIP(958); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); + lookahead == 'b') ADVANCE(3420); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3979); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3405); + lookahead == 'i') ADVANCE(3970); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3397); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4002); + lookahead != ']') ADVANCE(3993); END_STATE(); case 972: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '"', 3491, - '#', 4789, - '$', 2921, - '\'', 517, - '(', 2917, - ')', 2918, - '+', 3766, - '-', 2965, - '.', 3762, - '0', 3378, - ';', 2870, - 'N', 3823, - '[', 2915, - '_', 3778, - '`', 624, - 'e', 3739, - 'f', 3791, - 'n', 3819, - 'o', 3740, - 't', 3806, - '{', 3099, - '|', 2871, - '}', 3100, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 2909, + ')', 2910, + '+', 3872, + '-', 2961, + '.', 3869, + '0', 3374, + ';', 2862, + 'E', 3889, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'N', 3963, + 'P', 3889, + 'T', 3889, + '[', 2907, + '_', 3896, + '`', 626, + 'd', 3906, + 'e', 3838, + 'f', 3905, + 'g', 3888, + 'h', 3932, + 'k', 3888, + 'm', 3890, + 'n', 3941, + 'o', 3840, + 'p', 3888, + 's', 3912, + 't', 3887, + 'u', 3942, + 'w', 3918, + '{', 3091, + '|', 2863, + '}', 3092, + 0xb5, 3942, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(972); + lookahead == ' ') SKIP(958); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3420); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3827); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3401); + lookahead == 'i') ADVANCE(3970); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3397); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(3846); + lookahead != ']') ADVANCE(3993); END_STATE(); case 973: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '"', 3491, - '#', 4789, - '\'', 517, - '(', 2917, - ')', 2918, - '*', 3186, - '+', 1337, - '-', 565, - '.', 1593, - ';', 2870, - '=', 1073, - '>', 2949, - 'I', 1861, - 'N', 1856, - '[', 2915, - '_', 1596, - '`', 624, - 'a', 1722, - 'b', 1778, - 'c', 1620, - 'd', 1660, - 'e', 1724, - 'f', 1607, - 'h', 1699, - 'i', 1588, - 'l', 1671, - 'm', 1618, - 'n', 1665, - 'o', 1834, - 'r', 1676, - 's', 1748, - 't', 1762, - 'u', 1793, - 'w', 1690, - '{', 3099, - '}', 3100, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 2909, + ')', 2910, + '+', 3872, + '-', 2961, + '.', 3868, + '0', 3374, + ';', 2862, + 'N', 3963, + '[', 2907, + '_', 3896, + '`', 626, + 'e', 3839, + 'f', 3905, + 'n', 3950, + 'o', 3840, + 't', 3934, + '{', 3091, + '|', 2863, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(973); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); + lookahead == ' ') SKIP(958); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3970); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3397); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); + lookahead != ']') ADVANCE(3993); END_STATE(); case 974: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, + '\r', 24, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 2909, + ')', 2910, + '+', 3872, + '-', 2961, + '.', 3293, + '0', 3374, + ';', 2862, + 'E', 3886, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'N', 3963, + 'P', 3889, + 'T', 3889, + '[', 2907, + '_', 3896, + '`', 626, + 'd', 3906, + 'e', 3841, + 'f', 3905, + 'g', 3888, + 'h', 3932, + 'k', 3888, + 'm', 3890, + 'n', 3941, + 'o', 3840, + 'p', 3888, + 's', 3912, + 't', 3887, + 'u', 3942, + 'w', 3918, + '{', 3091, + '|', 2863, + '}', 3092, + 0xb5, 3942, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(958); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3420); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3970); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3397); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ']') ADVANCE(3993); + END_STATE(); + case 975: + if (eof) ADVANCE(1055); + ADVANCE_MAP( + '\n', 2856, '\r', 24, - '"', 3491, - '#', 4789, - '\'', 517, - ')', 2918, - '*', 3186, + '"', 3482, + '#', 4780, + '$', 2913, + '\'', 519, + '(', 2909, + ')', 2910, + '+', 3757, + '-', 2957, + '.', 3753, + '0', 3370, + ';', 2862, + 'N', 3814, + '[', 2907, + '_', 3769, + '`', 626, + 'e', 3730, + 'f', 3782, + 'n', 3810, + 'o', 3731, + 't', 3797, + '{', 3091, + '|', 2863, + '}', 3092, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(975); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3818); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3393); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ']') ADVANCE(3837); + END_STATE(); + case 976: + if (eof) ADVANCE(1055); + ADVANCE_MAP( + '\n', 2856, + '\r', 24, + '"', 3482, + '#', 4780, + '\'', 519, + ')', 2910, + '*', 3178, '+', 1337, - '-', 565, - '.', 3309, - ';', 2870, - '?', 3189, + '-', 567, + '.', 3301, + ';', 2862, + '?', 3181, 'I', 1861, 'N', 1856, - '[', 2915, + '[', 2907, '_', 1596, - '`', 624, + '`', 626, 'a', 1722, 'b', 1778, 'c', 1620, @@ -31435,11 +31741,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1762, 'u', 1793, 'w', 1690, - '}', 3100, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(976); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); + lookahead == ' ') SKIP(978); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && @@ -31448,25 +31754,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 975: + case 977: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '"', 3491, - '#', 4789, - '\'', 517, - ')', 2918, - '*', 3186, + '"', 3482, + '#', 4780, + '\'', 519, + ')', 2910, + '*', 3178, '+', 1337, - '-', 565, - '.', 3309, - ';', 2870, + '-', 567, + '.', 3301, + ';', 2862, 'I', 1861, 'N', 1856, - '[', 2915, + '[', 2907, '_', 1596, - '`', 624, + '`', 626, 'a', 1722, 'b', 1778, 'c', 1620, @@ -31484,11 +31790,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1762, 'u', 1793, 'w', 1690, - '}', 3100, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(977); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); + lookahead == ' ') SKIP(979); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && @@ -31497,26 +31803,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 976: + case 978: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '"', 3491, - '#', 4789, - '\'', 517, - ')', 2918, - '*', 3186, + '"', 3482, + '#', 4780, + '\'', 519, + ')', 2910, + '*', 3178, '+', 1337, - '-', 565, + '-', 567, '.', 1593, - ';', 2870, - '?', 3189, + ';', 2862, + '?', 3181, 'I', 1861, 'N', 1856, - '[', 2915, + '[', 2907, '_', 1596, - '`', 624, + '`', 626, 'a', 1722, 'b', 1778, 'c', 1620, @@ -31534,11 +31840,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1762, 'u', 1793, 'w', 1690, - '}', 3100, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(976); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); + lookahead == ' ') SKIP(978); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && @@ -31547,25 +31853,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 977: + case 979: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '"', 3491, - '#', 4789, - '\'', 517, - ')', 2918, - '*', 3186, + '"', 3482, + '#', 4780, + '\'', 519, + ')', 2910, + '*', 3178, '+', 1337, - '-', 565, + '-', 567, '.', 1593, - ';', 2870, + ';', 2862, 'I', 1861, 'N', 1856, - '[', 2915, + '[', 2907, '_', 1596, - '`', 624, + '`', 626, 'a', 1722, 'b', 1778, 'c', 1620, @@ -31583,11 +31889,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 1762, 'u', 1793, 'w', 1690, - '}', 3100, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(977); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); + lookahead == ' ') SKIP(979); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && @@ -31596,183 +31902,183 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < ']' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(1875); END_STATE(); - case 978: + case 980: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '"', 3491, - '#', 4796, - '$', 2922, - '\'', 517, - '(', 3220, - ')', 2918, - '+', 4025, - '-', 2973, - '.', 4026, - '0', 4044, - ';', 2870, - 'N', 4182, - '[', 2915, - '_', 4046, - '`', 624, - 'e', 4012, - 'f', 4056, - 'n', 4160, - 'o', 4013, - 't', 4127, - '{', 3099, - '|', 2871, - '}', 3100, + '"', 3482, + '#', 4787, + '$', 2914, + '\'', 519, + '(', 3212, + ')', 2910, + '+', 4016, + '-', 2963, + '.', 4017, + '0', 4035, + ';', 2862, + 'N', 4173, + '[', 2907, + '_', 4037, + '`', 626, + 'e', 4003, + 'f', 4047, + 'n', 4151, + 'o', 4004, + 't', 4118, + '{', 3091, + '|', 2863, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(955); + lookahead == ' ') SKIP(958); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4191); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4049); + lookahead == 'i') ADVANCE(4182); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4040); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4221); + lookahead != ']') ADVANCE(4212); END_STATE(); - case 979: + case 981: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '"', 3491, - '#', 4796, - '$', 2922, - '\'', 517, - '(', 2917, - ')', 2918, - '+', 4025, - '-', 2973, - '.', 4026, - '0', 4044, - ';', 2870, - 'N', 4182, - '[', 2915, - '_', 4046, - '`', 624, - 'e', 4012, - 'f', 4056, - 'n', 4160, - 'o', 4013, - 't', 4127, - '{', 3099, - '|', 2871, - '}', 3100, + '"', 3482, + '#', 4787, + '$', 2914, + '\'', 519, + '(', 2909, + ')', 2910, + '+', 4016, + '-', 2963, + '.', 4017, + '0', 4035, + ';', 2862, + 'N', 4173, + '[', 2907, + '_', 4037, + '`', 626, + 'e', 4003, + 'f', 4047, + 'n', 4151, + 'o', 4004, + 't', 4118, + '{', 3091, + '|', 2863, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(955); + lookahead == ' ') SKIP(958); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4191); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4049); + lookahead == 'i') ADVANCE(4182); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4040); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4221); + lookahead != ']') ADVANCE(4212); END_STATE(); - case 980: + case 982: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - '$', 2920, - '(', 3220, - ')', 2918, - '+', 571, - '-', 2966, - '.', 3313, - ';', 2870, - '=', 602, - '_', 620, - 'a', 727, - 'e', 539, - 'i', 674, - 'o', 540, - 'x', 745, - '{', 3099, - '|', 2871, - '}', 3100, + '#', 4780, + '$', 2912, + '(', 3212, + ')', 2910, + '+', 573, + '-', 2958, + '.', 3305, + ';', 2862, + '=', 604, + '_', 622, + 'a', 729, + 'e', 541, + 'i', 677, + 'o', 543, + 'x', 750, + '{', 3091, + '|', 2863, + '}', 3092, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(985); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + lookahead == ' ') SKIP(987); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); END_STATE(); - case 981: + case 983: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - '$', 2920, - '(', 3220, - ')', 2918, - '.', 3902, - ';', 2870, - '_', 3900, - 'a', 3933, - 'e', 3857, - 'o', 3858, - 'x', 3939, - '|', 2871, - '}', 3100, + '#', 4780, + '$', 2912, + '(', 3212, + ')', 2910, + '.', 3893, + ';', 2862, + '_', 3891, + 'a', 3924, + 'e', 3848, + 'o', 3849, + 'x', 3930, + '|', 2863, + '}', 3092, ); if (lookahead == '\t' || lookahead == ' ') SKIP(989); if (lookahead == '+' || - lookahead == '-') ADVANCE(3880); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + lookahead == '-') ADVANCE(3871); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); - case 982: + case 984: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - '$', 2920, - '(', 3220, - ')', 2918, - '.', 3902, - ';', 2870, - '_', 3900, - 'e', 3857, - 'o', 3859, - '|', 2871, - '}', 3100, - '\t', 2869, - ' ', 2869, - '+', 3880, - '-', 3880, + '#', 4780, + '$', 2912, + '(', 3212, + ')', 2910, + '.', 3893, + ';', 2862, + '_', 3891, + 'e', 3848, + 'o', 3850, + '|', 2863, + '}', 3092, + '\t', 2861, + ' ', 2861, + '+', 3871, + '-', 3871, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); - case 983: + case 985: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - '$', 2920, - '(', 3220, - ')', 2918, - '.', 3310, - ';', 2870, - '[', 3451, - '_', 3900, - 'e', 3857, - 'o', 3859, - '|', 2871, - '}', 3100, - '\t', 2869, - ' ', 2869, - '+', 3880, - '-', 3880, + '#', 4780, + '$', 2912, + '(', 3212, + ')', 2910, + '.', 3302, + ';', 2862, + '[', 3442, + '_', 3891, + 'e', 3848, + 'o', 3850, + '|', 2863, + '}', 3092, + '\t', 2861, + ' ', 2861, + '+', 3871, + '-', 3871, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && @@ -31780,1383 +32086,1332 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4002); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3993); END_STATE(); - case 984: + case 986: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - '$', 2920, - '(', 3220, - ')', 2918, - '.', 3310, - ';', 2870, - '_', 3900, - 'a', 3933, - 'e', 3857, - 'o', 3858, - 'x', 3939, - '|', 2871, - '}', 3100, + '#', 4780, + '$', 2912, + '(', 3212, + ')', 2910, + '.', 3302, + ';', 2862, + '_', 3891, + 'a', 3924, + 'e', 3848, + 'o', 3849, + 'x', 3930, + '|', 2863, + '}', 3092, ); if (lookahead == '\t' || lookahead == ' ') SKIP(989); if (lookahead == '+' || - lookahead == '-') ADVANCE(3880); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); - END_STATE(); - case 985: - if (eof) ADVANCE(1055); - ADVANCE_MAP( - '\n', 2864, - '\r', 24, - '#', 4789, - '$', 2920, - ')', 2918, - '+', 571, - '-', 2966, - '.', 621, - ';', 2870, - '=', 602, - 'a', 727, - 'e', 539, - 'i', 674, - 'o', 540, - 'x', 745, - '{', 3099, - '|', 2871, - '}', 3100, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(985); - END_STATE(); - case 986: - if (eof) ADVANCE(1055); - ADVANCE_MAP( - '\n', 2864, - '\r', 24, - '#', 4789, - '$', 2920, - ')', 2918, - '-', 2961, - '.', 3297, - ':', 2912, - ';', 2870, - '=', 1073, - '?', 3189, - 'E', 618, - '_', 620, - 'a', 728, - 'e', 522, - 'i', 725, - 'o', 540, - 'x', 745, - '{', 3099, - '|', 2871, - '}', 3100, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(988); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + lookahead == '-') ADVANCE(3871); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 987: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - '$', 2920, - ')', 2918, - '-', 2961, - '.', 3297, - ';', 2870, - '=', 3661, - '?', 3189, - 'e', 2658, - 'o', 2657, - '{', 3099, - '|', 2871, - '}', 3100, - '\t', 2869, - ' ', 2869, + '#', 4780, + '$', 2912, + ')', 2910, + '+', 573, + '-', 2958, + '.', 623, + ';', 2862, + '=', 604, + 'a', 729, + 'e', 541, + 'i', 677, + 'o', 543, + 'x', 750, + '{', 3091, + '|', 2863, + '}', 3092, ); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2831); + if (lookahead == '\t' || + lookahead == ' ') SKIP(987); END_STATE(); case 988: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - '$', 2920, - ')', 2918, - '-', 2961, - ':', 2912, - ';', 2870, - '=', 1073, - '?', 3189, - 'a', 728, - 'e', 539, - 'i', 725, - 'o', 540, - 'x', 745, - '{', 3099, - '|', 2871, - '}', 3100, + '#', 4780, + '$', 2912, + ')', 2910, + '-', 2953, + '.', 3289, + ';', 2862, + '=', 3652, + '?', 3181, + 'e', 2650, + 'o', 2647, + '{', 3091, + '|', 2863, + '}', 3092, + '\t', 2861, + ' ', 2861, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(988); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2823); END_STATE(); case 989: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - '$', 2920, - ')', 2918, - '.', 621, - ';', 2870, - 'a', 727, - 'e', 532, - 'o', 524, - 'x', 745, - '|', 2871, - '}', 3100, + '#', 4780, + '$', 2912, + ')', 2910, + '.', 623, + ';', 2862, + 'a', 729, + 'e', 533, + 'o', 523, + 'x', 750, + '|', 2863, + '}', 3092, ); if (lookahead == '\t' || lookahead == ' ') SKIP(989); if (lookahead == '+' || - lookahead == '-') ADVANCE(571); + lookahead == '-') ADVANCE(573); END_STATE(); case 990: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - '(', 3220, - ')', 2918, - '*', 583, - '+', 528, - '-', 584, - '.', 3297, - '/', 586, - ';', 2870, + '#', 4780, + '(', 3212, + ')', 2910, + '*', 585, + '+', 530, + '-', 586, + '.', 3289, + '/', 588, + ';', 2862, '=', 1073, - '?', 3189, - 'E', 609, - 'G', 609, - 'K', 609, - 'M', 609, - 'P', 609, - 'T', 609, - '[', 3451, - 'd', 627, - 'e', 535, - 'g', 608, - 'h', 762, - 'k', 608, - 'm', 610, - 'n', 785, - 'o', 543, - 'p', 608, - 's', 667, - 't', 608, - 'u', 785, - 'w', 708, - '{', 3099, - '|', 2871, - '}', 3100, - 0xb5, 785, + '?', 3181, + 'E', 611, + 'G', 611, + 'K', 611, + 'M', 611, + 'P', 611, + 'T', 611, + '[', 3442, + 'd', 628, + 'e', 536, + 'g', 610, + 'h', 765, + 'k', 610, + 'm', 612, + 'n', 788, + 'o', 546, + 'p', 610, + 's', 668, + 't', 610, + 'u', 788, + 'w', 711, + '{', 3091, + '|', 2863, + '}', 3092, + 0xb5, 788, '\t', 25, ' ', 25, - 'B', 3429, - 'b', 3429, + 'B', 3420, + 'b', 3420, ); END_STATE(); case 991: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - '(', 3220, - ')', 2918, - '.', 3297, - ';', 2870, - 'E', 3895, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'P', 3898, - 'T', 3898, - 'a', 3933, - 'd', 3915, - 'e', 3853, - 'g', 3897, - 'h', 3941, - 'k', 3897, - 'm', 3899, - 'n', 3951, - 'o', 3858, - 'p', 3897, - 's', 3921, - 't', 3897, - 'u', 3951, - 'w', 3927, - 'x', 3939, - '|', 2871, - '}', 3100, - 0xb5, 3951, + '#', 4780, + '(', 3212, + ')', 2910, + '-', 2953, + '.', 3275, + ';', 2862, + '=', 604, + '?', 3181, + 'E', 620, + '[', 3442, + 'e', 528, + 'i', 677, + 'o', 546, + '{', 3091, + '|', 2863, + '}', 3092, + '\t', 26, + ' ', 26, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1043); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 992: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - '(', 3220, - ')', 2918, - '.', 3297, - ';', 2870, - 'E', 3895, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'P', 3898, - 'T', 3898, - 'd', 3915, - 'e', 3850, - 'g', 3897, - 'h', 3941, - 'k', 3897, - 'm', 3899, - 'n', 3951, + '#', 4780, + '(', 3212, + ')', 2910, + '.', 3289, + ';', 2862, + 'E', 3886, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'P', 3889, + 'T', 3889, + 'a', 3924, + 'd', 3906, + 'e', 3844, + 'g', 3888, + 'h', 3932, + 'k', 3888, + 'm', 3890, + 'n', 3942, 'o', 3849, - 'p', 3897, - 's', 3921, - 't', 3897, - 'u', 3951, - 'w', 3927, - '|', 2871, - '}', 3100, - 0xb5, 3951, - '\t', 28, - ' ', 28, - 'B', 3429, - 'b', 3429, + 'p', 3888, + 's', 3912, + 't', 3888, + 'u', 3942, + 'w', 3918, + 'x', 3930, + '|', 2863, + '}', 3092, + 0xb5, 3942, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1043); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3420); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 993: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - '(', 3220, - ')', 2918, - '.', 3297, - ';', 2870, - 'E', 3895, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'P', 3898, - 'T', 3898, - 'd', 3915, - 'e', 3853, - 'g', 3897, - 'h', 3941, - 'k', 3897, - 'm', 3899, - 'n', 3951, - 'o', 3859, - 'p', 3897, - 's', 3921, - 't', 3897, - 'u', 3951, - 'w', 3927, - '|', 2871, - '}', 3100, - 0xb5, 3951, - '\t', 2869, - ' ', 2869, - 'B', 3429, - 'b', 3429, + '#', 4780, + '(', 3212, + ')', 2910, + '.', 3289, + ';', 2862, + 'E', 3886, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'P', 3889, + 'T', 3889, + 'd', 3906, + 'e', 3841, + 'g', 3888, + 'h', 3932, + 'k', 3888, + 'm', 3890, + 'n', 3942, + 'o', 3840, + 'p', 3888, + 's', 3912, + 't', 3888, + 'u', 3942, + 'w', 3918, + '|', 2863, + '}', 3092, + 0xb5, 3942, + '\t', 27, + ' ', 27, + 'B', 3420, + 'b', 3420, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 994: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - '(', 3220, - ')', 2918, - '.', 3297, - ';', 2870, - 'E', 3895, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'P', 3898, - 'T', 3898, - 'd', 3915, - 'e', 3853, - 'g', 3897, - 'h', 3941, - 'k', 3897, - 'm', 3899, - 'n', 3951, - 'o', 3859, - 'p', 3897, - 's', 3921, - 't', 3897, - 'u', 3951, - 'w', 3927, - '|', 2871, - '}', 3100, - 0xb5, 3951, - '\t', 29, - ' ', 29, - 'B', 3429, - 'b', 3429, + '#', 4780, + '(', 3212, + ')', 2910, + '.', 3289, + ';', 2862, + 'E', 3886, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'P', 3889, + 'T', 3889, + 'd', 3906, + 'e', 3844, + 'g', 3888, + 'h', 3932, + 'k', 3888, + 'm', 3890, + 'n', 3942, + 'o', 3850, + 'p', 3888, + 's', 3912, + 't', 3888, + 'u', 3942, + 'w', 3918, + '|', 2863, + '}', 3092, + 0xb5, 3942, + '\t', 2861, + ' ', 2861, + 'B', 3420, + 'b', 3420, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 995: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - '(', 3220, - ')', 2918, - '.', 3297, - ';', 2870, - 'E', 3910, - 'a', 3933, - 'e', 3854, - 'o', 3858, - 'x', 3939, - '|', 2871, - '}', 3100, + '#', 4780, + '(', 3212, + ')', 2910, + '.', 3289, + ';', 2862, + 'E', 3886, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'P', 3889, + 'T', 3889, + 'd', 3906, + 'e', 3844, + 'g', 3888, + 'h', 3932, + 'k', 3888, + 'm', 3890, + 'n', 3942, + 'o', 3850, + 'p', 3888, + 's', 3912, + 't', 3888, + 'u', 3942, + 'w', 3918, + '|', 2863, + '}', 3092, + 0xb5, 3942, + '\t', 28, + ' ', 28, + 'B', 3420, + 'b', 3420, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1043); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 996: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - '(', 3220, - ')', 2918, - '.', 3297, - ';', 2870, - 'E', 3910, - 'e', 3854, - 'o', 3859, - '|', 2871, - '}', 3100, - '\t', 2869, - ' ', 2869, + '#', 4780, + '(', 3212, + ')', 2910, + '.', 3289, + ';', 2862, + 'E', 3901, + 'a', 3924, + 'e', 3845, + 'o', 3849, + 'x', 3930, + '|', 2863, + '}', 3092, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1043); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 997: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - '(', 3220, - ')', 2918, - '.', 3879, - ';', 2870, - 'E', 3895, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'P', 3898, - 'T', 3898, - '_', 3900, - 'a', 3933, - 'd', 3915, - 'e', 3853, - 'g', 3897, - 'h', 3941, - 'k', 3897, - 'm', 3899, - 'n', 3951, - 'o', 3858, - 'p', 3897, - 's', 3921, - 't', 3897, - 'u', 3951, - 'w', 3927, - 'x', 3939, - '|', 2871, - '}', 3100, - 0xb5, 3951, + '#', 4780, + '(', 3212, + ')', 2910, + '.', 3289, + ';', 2862, + 'E', 3901, + 'e', 3845, + 'o', 3850, + '|', 2863, + '}', 3092, + '\t', 2861, + ' ', 2861, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1043); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 998: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - '(', 3220, - ')', 2918, - '.', 3879, - ';', 2870, - 'E', 3895, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'P', 3898, - 'T', 3898, - '_', 3900, - 'd', 3915, - 'e', 3850, - 'g', 3897, - 'h', 3941, - 'k', 3897, - 'm', 3899, - 'n', 3951, + '#', 4780, + '(', 3212, + ')', 2910, + '.', 3870, + ';', 2862, + 'E', 3886, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'P', 3889, + 'T', 3889, + '_', 3891, + 'a', 3924, + 'd', 3906, + 'e', 3844, + 'g', 3888, + 'h', 3932, + 'k', 3888, + 'm', 3890, + 'n', 3942, 'o', 3849, - 'p', 3897, - 's', 3921, - 't', 3897, - 'u', 3951, - 'w', 3927, - '|', 2871, - '}', 3100, - 0xb5, 3951, - '\t', 28, - ' ', 28, - 'B', 3429, - 'b', 3429, + 'p', 3888, + 's', 3912, + 't', 3888, + 'u', 3942, + 'w', 3918, + 'x', 3930, + '|', 2863, + '}', 3092, + 0xb5, 3942, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1043); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3420); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 999: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - '(', 3220, - ')', 2918, - '.', 3879, - ';', 2870, - 'E', 3895, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'P', 3898, - 'T', 3898, - '_', 3900, - 'd', 3915, - 'e', 3853, - 'g', 3897, - 'h', 3941, - 'k', 3897, - 'm', 3899, - 'n', 3951, - 'o', 3859, - 'p', 3897, - 's', 3921, - 't', 3897, - 'u', 3951, - 'w', 3927, - '|', 2871, - '}', 3100, - 0xb5, 3951, - '\t', 2869, - ' ', 2869, - 'B', 3429, - 'b', 3429, + '#', 4780, + '(', 3212, + ')', 2910, + '.', 3870, + ';', 2862, + 'E', 3886, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'P', 3889, + 'T', 3889, + '_', 3891, + 'd', 3906, + 'e', 3841, + 'g', 3888, + 'h', 3932, + 'k', 3888, + 'm', 3890, + 'n', 3942, + 'o', 3840, + 'p', 3888, + 's', 3912, + 't', 3888, + 'u', 3942, + 'w', 3918, + '|', 2863, + '}', 3092, + 0xb5, 3942, + '\t', 27, + ' ', 27, + 'B', 3420, + 'b', 3420, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 1000: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - '(', 3220, - ')', 2918, - '.', 3879, - ';', 2870, - 'E', 3895, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'P', 3898, - 'T', 3898, - '_', 3900, - 'd', 3915, - 'e', 3853, - 'g', 3897, - 'h', 3941, - 'k', 3897, - 'm', 3899, - 'n', 3951, - 'o', 3859, - 'p', 3897, - 's', 3921, - 't', 3897, - 'u', 3951, - 'w', 3927, - '|', 2871, - '}', 3100, - 0xb5, 3951, - '\t', 29, - ' ', 29, - 'B', 3429, - 'b', 3429, + '#', 4780, + '(', 3212, + ')', 2910, + '.', 3870, + ';', 2862, + 'E', 3886, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'P', 3889, + 'T', 3889, + '_', 3891, + 'd', 3906, + 'e', 3844, + 'g', 3888, + 'h', 3932, + 'k', 3888, + 'm', 3890, + 'n', 3942, + 'o', 3850, + 'p', 3888, + 's', 3912, + 't', 3888, + 'u', 3942, + 'w', 3918, + '|', 2863, + '}', 3092, + 0xb5, 3942, + '\t', 2861, + ' ', 2861, + 'B', 3420, + 'b', 3420, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 1001: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - '(', 3220, - ')', 2918, - '.', 3879, - ';', 2870, - 'E', 3895, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'P', 3898, - 'T', 3898, - 'a', 3933, - 'd', 3915, - 'e', 3853, - 'g', 3897, - 'h', 3941, - 'k', 3897, - 'm', 3899, - 'n', 3951, - 'o', 3858, - 'p', 3897, - 's', 3921, - 't', 3897, - 'u', 3951, - 'w', 3927, - 'x', 3939, - '|', 2871, - '}', 3100, - 0xb5, 3951, + '#', 4780, + '(', 3212, + ')', 2910, + '.', 3870, + ';', 2862, + 'E', 3886, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'P', 3889, + 'T', 3889, + '_', 3891, + 'd', 3906, + 'e', 3844, + 'g', 3888, + 'h', 3932, + 'k', 3888, + 'm', 3890, + 'n', 3942, + 'o', 3850, + 'p', 3888, + 's', 3912, + 't', 3888, + 'u', 3942, + 'w', 3918, + '|', 2863, + '}', 3092, + 0xb5, 3942, + '\t', 28, + ' ', 28, + 'B', 3420, + 'b', 3420, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1043); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 1002: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - '(', 3220, - ')', 2918, - '.', 3879, - ';', 2870, - 'E', 3895, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'P', 3898, - 'T', 3898, - 'd', 3915, - 'e', 3850, - 'g', 3897, - 'h', 3941, - 'k', 3897, - 'm', 3899, - 'n', 3951, + '#', 4780, + '(', 3212, + ')', 2910, + '.', 3870, + ';', 2862, + 'E', 3886, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'P', 3889, + 'T', 3889, + 'a', 3924, + 'd', 3906, + 'e', 3844, + 'g', 3888, + 'h', 3932, + 'k', 3888, + 'm', 3890, + 'n', 3942, 'o', 3849, - 'p', 3897, - 's', 3921, - 't', 3897, - 'u', 3951, - 'w', 3927, - '|', 2871, - '}', 3100, - 0xb5, 3951, - '\t', 28, - ' ', 28, - 'B', 3429, - 'b', 3429, + 'p', 3888, + 's', 3912, + 't', 3888, + 'u', 3942, + 'w', 3918, + 'x', 3930, + '|', 2863, + '}', 3092, + 0xb5, 3942, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1043); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3420); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 1003: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - '(', 3220, - ')', 2918, - '.', 3879, - ';', 2870, - 'E', 3895, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'P', 3898, - 'T', 3898, - 'd', 3915, - 'e', 3853, - 'g', 3897, - 'h', 3941, - 'k', 3897, - 'm', 3899, - 'n', 3951, - 'o', 3859, - 'p', 3897, - 's', 3921, - 't', 3897, - 'u', 3951, - 'w', 3927, - '|', 2871, - '}', 3100, - 0xb5, 3951, - '\t', 2869, - ' ', 2869, - 'B', 3429, - 'b', 3429, + '#', 4780, + '(', 3212, + ')', 2910, + '.', 3870, + ';', 2862, + 'E', 3886, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'P', 3889, + 'T', 3889, + 'd', 3906, + 'e', 3841, + 'g', 3888, + 'h', 3932, + 'k', 3888, + 'm', 3890, + 'n', 3942, + 'o', 3840, + 'p', 3888, + 's', 3912, + 't', 3888, + 'u', 3942, + 'w', 3918, + '|', 2863, + '}', 3092, + 0xb5, 3942, + '\t', 27, + ' ', 27, + 'B', 3420, + 'b', 3420, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 1004: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - '(', 3220, - ')', 2918, - '.', 3879, - ';', 2870, - 'E', 3895, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'P', 3898, - 'T', 3898, - 'd', 3915, - 'e', 3853, - 'g', 3897, - 'h', 3941, - 'k', 3897, - 'm', 3899, - 'n', 3951, - 'o', 3859, - 'p', 3897, - 's', 3921, - 't', 3897, - 'u', 3951, - 'w', 3927, - '|', 2871, - '}', 3100, - 0xb5, 3951, - '\t', 29, - ' ', 29, - 'B', 3429, - 'b', 3429, + '#', 4780, + '(', 3212, + ')', 2910, + '.', 3870, + ';', 2862, + 'E', 3886, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'P', 3889, + 'T', 3889, + 'd', 3906, + 'e', 3844, + 'g', 3888, + 'h', 3932, + 'k', 3888, + 'm', 3890, + 'n', 3942, + 'o', 3850, + 'p', 3888, + 's', 3912, + 't', 3888, + 'u', 3942, + 'w', 3918, + '|', 2863, + '}', 3092, + 0xb5, 3942, + '\t', 2861, + ' ', 2861, + 'B', 3420, + 'b', 3420, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 1005: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - '(', 3220, - ')', 2918, - '.', 3879, - ';', 2870, - 'E', 3898, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'P', 3898, - 'T', 3898, - 'a', 3933, - 'd', 3915, - 'e', 3856, - 'g', 3897, - 'h', 3941, - 'k', 3897, - 'm', 3899, - 'n', 3951, - 'o', 3858, - 'p', 3897, - 's', 3921, - 't', 3897, - 'u', 3951, - 'w', 3927, - 'x', 3939, - '|', 2871, - '}', 3100, - 0xb5, 3951, + '#', 4780, + '(', 3212, + ')', 2910, + '.', 3870, + ';', 2862, + 'E', 3886, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'P', 3889, + 'T', 3889, + 'd', 3906, + 'e', 3844, + 'g', 3888, + 'h', 3932, + 'k', 3888, + 'm', 3890, + 'n', 3942, + 'o', 3850, + 'p', 3888, + 's', 3912, + 't', 3888, + 'u', 3942, + 'w', 3918, + '|', 2863, + '}', 3092, + 0xb5, 3942, + '\t', 28, + ' ', 28, + 'B', 3420, + 'b', 3420, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1043); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 1006: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - '(', 3220, - ')', 2918, - '.', 3879, - ';', 2870, - 'E', 3898, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'P', 3898, - 'T', 3898, - 'd', 3915, + '#', 4780, + '(', 3212, + ')', 2910, + '.', 3870, + ';', 2862, + 'E', 3889, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'P', 3889, + 'T', 3889, + 'a', 3924, + 'd', 3906, 'e', 3847, - 'g', 3897, - 'h', 3941, - 'k', 3897, - 'm', 3899, - 'n', 3951, + 'g', 3888, + 'h', 3932, + 'k', 3888, + 'm', 3890, + 'n', 3942, 'o', 3849, - 'p', 3897, - 's', 3921, - 't', 3897, - 'u', 3951, - 'w', 3927, - '|', 2871, - '}', 3100, - 0xb5, 3951, - '\t', 28, - ' ', 28, - 'B', 3429, - 'b', 3429, + 'p', 3888, + 's', 3912, + 't', 3888, + 'u', 3942, + 'w', 3918, + 'x', 3930, + '|', 2863, + '}', 3092, + 0xb5, 3942, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1043); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3420); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 1007: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - '(', 3220, - ')', 2918, - '.', 3879, - ';', 2870, - 'E', 3898, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'P', 3898, - 'T', 3898, - 'd', 3915, - 'e', 3856, - 'g', 3897, - 'h', 3941, - 'k', 3897, - 'm', 3899, - 'n', 3951, - 'o', 3859, - 'p', 3897, - 's', 3921, - 't', 3897, - 'u', 3951, - 'w', 3927, - '|', 2871, - '}', 3100, - 0xb5, 3951, - '\t', 2869, - ' ', 2869, - 'B', 3429, - 'b', 3429, + '#', 4780, + '(', 3212, + ')', 2910, + '.', 3870, + ';', 2862, + 'E', 3889, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'P', 3889, + 'T', 3889, + 'd', 3906, + 'e', 3838, + 'g', 3888, + 'h', 3932, + 'k', 3888, + 'm', 3890, + 'n', 3942, + 'o', 3840, + 'p', 3888, + 's', 3912, + 't', 3888, + 'u', 3942, + 'w', 3918, + '|', 2863, + '}', 3092, + 0xb5, 3942, + '\t', 27, + ' ', 27, + 'B', 3420, + 'b', 3420, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 1008: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - '(', 3220, - ')', 2918, - '.', 3879, - ';', 2870, - 'E', 3898, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'P', 3898, - 'T', 3898, - 'd', 3915, - 'e', 3856, - 'g', 3897, - 'h', 3941, - 'k', 3897, - 'm', 3899, - 'n', 3951, - 'o', 3859, - 'p', 3897, - 's', 3921, - 't', 3897, - 'u', 3951, - 'w', 3927, - '|', 2871, - '}', 3100, - 0xb5, 3951, - '\t', 29, - ' ', 29, - 'B', 3429, - 'b', 3429, + '#', 4780, + '(', 3212, + ')', 2910, + '.', 3870, + ';', 2862, + 'E', 3889, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'P', 3889, + 'T', 3889, + 'd', 3906, + 'e', 3847, + 'g', 3888, + 'h', 3932, + 'k', 3888, + 'm', 3890, + 'n', 3942, + 'o', 3850, + 'p', 3888, + 's', 3912, + 't', 3888, + 'u', 3942, + 'w', 3918, + '|', 2863, + '}', 3092, + 0xb5, 3942, + '\t', 2861, + ' ', 2861, + 'B', 3420, + 'b', 3420, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 1009: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - '(', 3220, - ')', 2918, - '.', 3879, - ';', 2870, - 'E', 3910, - '_', 3900, - 'a', 3933, - 'e', 3854, - 'o', 3858, - 'x', 3939, - '|', 2871, - '}', 3100, + '#', 4780, + '(', 3212, + ')', 2910, + '.', 3870, + ';', 2862, + 'E', 3889, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'P', 3889, + 'T', 3889, + 'd', 3906, + 'e', 3847, + 'g', 3888, + 'h', 3932, + 'k', 3888, + 'm', 3890, + 'n', 3942, + 'o', 3850, + 'p', 3888, + 's', 3912, + 't', 3888, + 'u', 3942, + 'w', 3918, + '|', 2863, + '}', 3092, + 0xb5, 3942, + '\t', 28, + ' ', 28, + 'B', 3420, + 'b', 3420, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1043); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 1010: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - '(', 3220, - ')', 2918, - '.', 3879, - ';', 2870, - 'E', 3910, - '_', 3900, - 'e', 3854, - 'o', 3859, - '|', 2871, - '}', 3100, - '\t', 2869, - ' ', 2869, + '#', 4780, + '(', 3212, + ')', 2910, + '.', 3870, + ';', 2862, + 'E', 3901, + '_', 3891, + 'a', 3924, + 'e', 3845, + 'o', 3849, + 'x', 3930, + '|', 2863, + '}', 3092, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1043); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 1011: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - '(', 3220, - ')', 2918, - '.', 3879, - ';', 2870, - 'E', 3910, - 'a', 3933, - 'e', 3854, - 'o', 3858, - 'x', 3939, - '|', 2871, - '}', 3100, + '#', 4780, + '(', 3212, + ')', 2910, + '.', 3870, + ';', 2862, + 'E', 3901, + '_', 3891, + 'e', 3845, + 'o', 3850, + '|', 2863, + '}', 3092, + '\t', 2861, + ' ', 2861, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1043); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 1012: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - '(', 3220, - ')', 2918, - '.', 3879, - ';', 2870, - 'E', 3910, - 'e', 3854, - 'o', 3859, - '|', 2871, - '}', 3100, - '\t', 2869, - ' ', 2869, + '#', 4780, + '(', 3212, + ')', 2910, + '.', 3870, + ';', 2862, + 'E', 3901, + 'a', 3924, + 'e', 3845, + 'o', 3849, + 'x', 3930, + '|', 2863, + '}', 3092, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1043); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 1013: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - '(', 3220, - ')', 2918, - '.', 3879, - ';', 2870, - 'a', 3933, - 'e', 3857, - 'o', 3858, - 'x', 3939, - '|', 2871, - '}', 3100, + '#', 4780, + '(', 3212, + ')', 2910, + '.', 3870, + ';', 2862, + 'E', 3901, + 'e', 3845, + 'o', 3850, + '|', 2863, + '}', 3092, + '\t', 2861, + ' ', 2861, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1043); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 1014: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - '(', 3220, - ')', 2918, - '.', 3879, - ';', 2870, - 'e', 3857, - 'o', 3859, - '|', 2871, - '}', 3100, - '\t', 2869, - ' ', 2869, + '#', 4780, + '(', 3212, + ')', 2910, + '.', 3870, + ';', 2862, + 'a', 3924, + 'e', 3848, + 'o', 3849, + 'x', 3930, + '|', 2863, + '}', 3092, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1043); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 1015: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - '(', 3220, - ')', 2918, - '.', 3283, - ';', 2870, - 'E', 3910, - 'a', 3933, - 'e', 3854, - 'o', 3858, - 'x', 3939, - '|', 2871, - '}', 3100, + '#', 4780, + '(', 3212, + ')', 2910, + '.', 3870, + ';', 2862, + 'e', 3848, + 'o', 3850, + '|', 2863, + '}', 3092, + '\t', 2861, + ' ', 2861, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1043); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 1016: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - '(', 3220, - ')', 2918, - '.', 3283, - ';', 2870, - 'E', 3910, - 'e', 3854, - 'o', 3859, - '|', 2871, - '}', 3100, - '\t', 2869, - ' ', 2869, + '#', 4780, + '(', 3212, + ')', 2910, + '.', 3275, + ';', 2862, + 'E', 3901, + 'a', 3924, + 'e', 3845, + 'o', 3849, + 'x', 3930, + '|', 2863, + '}', 3092, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1043); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 1017: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - '(', 3220, - ')', 2918, - ';', 2870, - 'E', 3910, - '_', 3900, - 'a', 3933, - 'e', 3854, - 'o', 3858, - 'x', 3939, - '|', 2871, - '}', 3100, + '#', 4780, + '(', 3212, + ')', 2910, + '.', 3275, + ';', 2862, + 'E', 3901, + 'e', 3845, + 'o', 3850, + '|', 2863, + '}', 3092, + '\t', 2861, + ' ', 2861, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1043); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 1018: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - '(', 3220, - ')', 2918, - ';', 2870, - 'E', 3910, - '_', 3900, - 'e', 3854, - 'o', 3859, - '|', 2871, - '}', 3100, - '\t', 2869, - ' ', 2869, + '#', 4780, + '(', 3212, + ')', 2910, + ';', 2862, + 'E', 3901, + '_', 3891, + 'a', 3924, + 'e', 3845, + 'o', 3849, + 'x', 3930, + '|', 2863, + '}', 3092, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1043); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 1019: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - '(', 3220, - ')', 2918, - ';', 2870, - 'E', 3910, - 'a', 3933, - 'e', 3854, - 'o', 3858, - 'x', 3939, - '|', 2871, - '}', 3100, + '#', 4780, + '(', 3212, + ')', 2910, + ';', 2862, + 'E', 3901, + '_', 3891, + 'e', 3845, + 'o', 3850, + '|', 2863, + '}', 3092, + '\t', 2861, + ' ', 2861, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1043); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 1020: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - '(', 3220, - ')', 2918, - ';', 2870, - 'E', 3910, - 'e', 3854, - 'o', 3859, - '|', 2871, - '}', 3100, - '\t', 2869, - ' ', 2869, + '#', 4780, + '(', 3212, + ')', 2910, + ';', 2862, + 'E', 3901, + 'a', 3924, + 'e', 3845, + 'o', 3849, + 'x', 3930, + '|', 2863, + '}', 3092, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1043); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 1021: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - '(', 3220, - ')', 2918, - ';', 2870, - 'a', 3933, - 'e', 3857, - 'o', 3858, - 'x', 3939, - '|', 2871, - '}', 3100, + '#', 4780, + '(', 3212, + ')', 2910, + ';', 2862, + 'E', 3901, + 'e', 3845, + 'o', 3850, + '|', 2863, + '}', 3092, + '\t', 2861, + ' ', 2861, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1043); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 1022: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - '(', 3220, - ')', 2918, - ';', 2870, - 'e', 3857, - 'o', 3859, - '|', 2871, - '}', 3100, - '\t', 2869, - ' ', 2869, + '#', 4780, + '(', 3212, + ')', 2910, + ';', 2862, + 'a', 3924, + 'e', 3848, + 'o', 3849, + 'x', 3930, + '|', 2863, + '}', 3092, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1043); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 1023: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - ')', 2918, - '-', 2961, - '.', 3297, - ';', 2870, - 'E', 3895, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'P', 3898, - 'T', 3898, - 'a', 3952, - 'd', 3915, - 'e', 3894, - 'g', 3897, - 'h', 3941, - 'k', 3897, - 'm', 3899, - 'n', 3951, - 'p', 3897, - 's', 3921, - 't', 3897, - 'u', 3951, - 'w', 3927, - '}', 3100, - 0xb5, 3951, + '#', 4780, + '(', 3212, + ')', 2910, + ';', 2862, + 'e', 3848, + 'o', 3850, + '|', 2863, + '}', 3092, + '\t', 2861, + ' ', 2861, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1031); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 1024: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - ')', 2918, - '-', 2961, - '.', 3879, - ';', 2870, - 'E', 3895, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'P', 3898, - 'T', 3898, - '_', 3900, - 'a', 3952, - 'd', 3915, - 'e', 3894, - 'g', 3897, - 'h', 3941, - 'k', 3897, - 'm', 3899, - 'n', 3951, - 'p', 3897, - 's', 3921, - 't', 3897, - 'u', 3951, - 'w', 3927, - '}', 3100, - 0xb5, 3951, + '#', 4780, + ')', 2910, + '-', 2953, + '.', 3289, + ';', 2862, + 'E', 3886, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'P', 3889, + 'T', 3889, + 'a', 3943, + 'd', 3906, + 'e', 3885, + 'g', 3888, + 'h', 3932, + 'k', 3888, + 'm', 3890, + 'n', 3942, + 'p', 3888, + 's', 3912, + 't', 3888, + 'u', 3942, + 'w', 3918, + '}', 3092, + 0xb5, 3942, ); if (lookahead == '\t' || lookahead == ' ') SKIP(1031); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + lookahead == 'b') ADVANCE(3420); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 1025: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - ')', 2918, - '-', 2961, - '.', 3879, - ';', 2870, - 'E', 3895, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'P', 3898, - 'T', 3898, - 'a', 3952, - 'd', 3915, - 'e', 3894, - 'g', 3897, - 'h', 3941, - 'k', 3897, - 'm', 3899, - 'n', 3951, - 'p', 3897, - 's', 3921, - 't', 3897, - 'u', 3951, - 'w', 3927, - '}', 3100, - 0xb5, 3951, + '#', 4780, + ')', 2910, + '-', 2953, + '.', 3870, + ';', 2862, + 'E', 3886, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'P', 3889, + 'T', 3889, + '_', 3891, + 'a', 3943, + 'd', 3906, + 'e', 3885, + 'g', 3888, + 'h', 3932, + 'k', 3888, + 'm', 3890, + 'n', 3942, + 'p', 3888, + 's', 3912, + 't', 3888, + 'u', 3942, + 'w', 3918, + '}', 3092, + 0xb5, 3942, ); if (lookahead == '\t' || lookahead == ' ') SKIP(1031); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + lookahead == 'b') ADVANCE(3420); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 1026: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - ')', 2918, - '-', 2961, - '.', 3879, - ';', 2870, - 'E', 3898, - 'G', 3898, - 'K', 3898, - 'M', 3898, - 'P', 3898, - 'T', 3898, - 'a', 3952, - 'd', 3915, - 'e', 3897, - 'g', 3897, - 'h', 3941, - 'k', 3897, - 'm', 3899, - 'n', 3951, - 'p', 3897, - 's', 3921, - 't', 3897, - 'u', 3951, - 'w', 3927, - '}', 3100, - 0xb5, 3951, + '#', 4780, + ')', 2910, + '-', 2953, + '.', 3870, + ';', 2862, + 'E', 3886, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'P', 3889, + 'T', 3889, + 'a', 3943, + 'd', 3906, + 'e', 3885, + 'g', 3888, + 'h', 3932, + 'k', 3888, + 'm', 3890, + 'n', 3942, + 'p', 3888, + 's', 3912, + 't', 3888, + 'u', 3942, + 'w', 3918, + '}', 3092, + 0xb5, 3942, ); if (lookahead == '\t' || lookahead == ' ') SKIP(1031); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + lookahead == 'b') ADVANCE(3420); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 1027: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - ')', 2918, - '-', 2961, - '.', 3283, - ';', 2870, - '=', 602, - '?', 3189, - 'E', 618, - 'e', 522, - 'o', 543, - '{', 3099, - '|', 2871, - '}', 3100, - '\t', 26, - ' ', 26, + '#', 4780, + ')', 2910, + '-', 2953, + '.', 3870, + ';', 2862, + 'E', 3889, + 'G', 3889, + 'K', 3889, + 'M', 3889, + 'P', 3889, + 'T', 3889, + 'a', 3943, + 'd', 3906, + 'e', 3888, + 'g', 3888, + 'h', 3932, + 'k', 3888, + 'm', 3890, + 'n', 3942, + 'p', 3888, + 's', 3912, + 't', 3888, + 'u', 3942, + 'w', 3918, + '}', 3092, + 0xb5, 3942, ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1031); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3420); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 1028: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - ')', 2918, - '-', 2961, - ';', 2870, - '=', 3661, - 'a', 2767, - '}', 3100, + '#', 4780, + ')', 2910, + '-', 2953, + ';', 2862, + '=', 3652, + 'a', 2759, + '}', 3092, ); if (lookahead == '\t' || lookahead == ' ') SKIP(1031); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2831); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(2823); END_STATE(); case 1029: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - ')', 2918, - '-', 2961, - ';', 2870, - '=', 3661, - 'a', 787, - '}', 3100, + '#', 4780, + ')', 2910, + '-', 2953, + ';', 2862, + '=', 3652, + 'a', 790, + '}', 3092, ); if (lookahead == '\t' || lookahead == ' ') SKIP(1031); @@ -33164,30 +33419,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1030: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - ')', 2918, - '-', 2961, - ';', 2870, - 'a', 3952, - '}', 3100, + '#', 4780, + ')', 2910, + '-', 2953, + ';', 2862, + 'a', 3943, + '}', 3092, ); if (lookahead == '\t' || lookahead == ' ') SKIP(1031); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 1031: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - ')', 2918, - '-', 2961, - ';', 2870, - 'a', 787, - '}', 3100, + '#', 4780, + ')', 2910, + '-', 2953, + ';', 2862, + 'a', 790, + '}', 3092, ); if (lookahead == '\t' || lookahead == ' ') SKIP(1031); @@ -33195,29 +33450,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1032: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - ')', 2918, - '-', 2972, - ';', 2870, - '=', 3661, - 'a', 3699, - '}', 3100, + '#', 4780, + ')', 2910, + '-', 2966, + ';', 2862, + '=', 3652, + 'a', 3690, + '}', 3092, ); if (lookahead == '\t' || lookahead == ' ') SKIP(1031); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); case 1033: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - ')', 2918, - '.', 3297, - ';', 2870, + '#', 4780, + ')', 2910, + '.', 3289, + ';', 2862, 'E', 2258, 'G', 2260, 'K', 2260, @@ -33237,25 +33492,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 2259, 'u', 2287, 'w', 2274, - '|', 2871, - '}', 3100, + '|', 2863, + '}', 3092, 0xb5, 2287, - '\t', 28, - ' ', 28, - 'B', 3429, - 'b', 3429, + '\t', 27, + ' ', 27, + 'B', 3420, + 'b', 3420, ); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 1034: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - ')', 2918, - '.', 3297, - ';', 2870, + '#', 4780, + ')', 2910, + '.', 3289, + ';', 2862, 'E', 2258, 'G', 2260, 'K', 2260, @@ -33275,25 +33530,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 2259, 'u', 2287, 'w', 2274, - '|', 2871, - '}', 3100, + '|', 2863, + '}', 3092, 0xb5, 2287, - '\t', 29, - ' ', 29, - 'B', 3429, - 'b', 3429, + '\t', 28, + ' ', 28, + 'B', 3420, + 'b', 3420, ); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 1035: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - ')', 2918, + '#', 4780, + ')', 2910, '.', 2248, - ';', 2870, + ';', 2862, 'E', 2258, 'G', 2260, 'K', 2260, @@ -33314,26 +33569,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 2259, 'u', 2287, 'w', 2274, - '|', 2871, - '}', 3100, + '|', 2863, + '}', 3092, 0xb5, 2287, - '\t', 28, - ' ', 28, - 'B', 3429, - 'b', 3429, + '\t', 27, + ' ', 27, + 'B', 3420, + 'b', 3420, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 1036: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - ')', 2918, + '#', 4780, + ')', 2910, '.', 2248, - ';', 2870, + ';', 2862, 'E', 2258, 'G', 2260, 'K', 2260, @@ -33354,26 +33609,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 2259, 'u', 2287, 'w', 2274, - '|', 2871, - '}', 3100, + '|', 2863, + '}', 3092, 0xb5, 2287, - '\t', 29, - ' ', 29, - 'B', 3429, - 'b', 3429, + '\t', 28, + ' ', 28, + 'B', 3420, + 'b', 3420, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 1037: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - ')', 2918, + '#', 4780, + ')', 2910, '.', 2248, - ';', 2870, + ';', 2862, 'E', 2258, 'G', 2260, 'K', 2260, @@ -33393,25 +33648,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 2259, 'u', 2287, 'w', 2274, - '|', 2871, - '}', 3100, + '|', 2863, + '}', 3092, 0xb5, 2287, - '\t', 28, - ' ', 28, - 'B', 3429, - 'b', 3429, + '\t', 27, + ' ', 27, + 'B', 3420, + 'b', 3420, ); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 1038: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - ')', 2918, + '#', 4780, + ')', 2910, '.', 2248, - ';', 2870, + ';', 2862, 'E', 2258, 'G', 2260, 'K', 2260, @@ -33431,25 +33686,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 2259, 'u', 2287, 'w', 2274, - '|', 2871, - '}', 3100, + '|', 2863, + '}', 3092, 0xb5, 2287, - '\t', 29, - ' ', 29, - 'B', 3429, - 'b', 3429, + '\t', 28, + ' ', 28, + 'B', 3420, + 'b', 3420, ); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 1039: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - ')', 2918, + '#', 4780, + ')', 2910, '.', 2248, - ';', 2870, + ';', 2862, 'E', 2260, 'G', 2260, 'K', 2260, @@ -33469,25 +33724,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 2259, 'u', 2287, 'w', 2274, - '|', 2871, - '}', 3100, + '|', 2863, + '}', 3092, 0xb5, 2287, - '\t', 28, - ' ', 28, - 'B', 3429, - 'b', 3429, + '\t', 27, + ' ', 27, + 'B', 3420, + 'b', 3420, ); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 1040: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - ')', 2918, + '#', 4780, + ')', 2910, '.', 2248, - ';', 2870, + ';', 2862, 'E', 2260, 'G', 2260, 'K', 2260, @@ -33507,66 +33762,66 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 2259, 'u', 2287, 'w', 2274, - '|', 2871, - '}', 3100, + '|', 2863, + '}', 3092, 0xb5, 2287, - '\t', 29, - ' ', 29, - 'B', 3429, - 'b', 3429, + '\t', 28, + ' ', 28, + 'B', 3420, + 'b', 3420, ); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 1041: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - ')', 2918, - '.', 3283, - ';', 2870, - '?', 3189, - 'e', 532, - 'o', 527, - '|', 2871, - '}', 3100, - '\t', 2869, - ' ', 2869, + '#', 4780, + ')', 2910, + '.', 3275, + ';', 2862, + '?', 3181, + 'e', 533, + 'o', 526, + '|', 2863, + '}', 3092, + '\t', 2861, + ' ', 2861, ); END_STATE(); case 1042: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - ')', 2918, - ';', 2870, - '=', 3661, - 'e', 3667, - 'o', 3666, - '|', 2871, - '}', 3100, - '\t', 2869, - ' ', 2869, + '#', 4780, + ')', 2910, + ';', 2862, + '=', 3652, + 'e', 3658, + 'o', 3655, + '|', 2863, + '}', 3092, + '\t', 2861, + ' ', 2861, ); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); case 1043: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - ')', 2918, - ';', 2870, - 'a', 727, - 'e', 532, - 'o', 524, - 'x', 745, - '|', 2871, - '}', 3100, + '#', 4780, + ')', 2910, + ';', 2862, + 'a', 729, + 'e', 533, + 'o', 523, + 'x', 750, + '|', 2863, + '}', 3092, ); if (lookahead == '\t' || lookahead == ' ') SKIP(1043); @@ -33574,192 +33829,192 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1044: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - ')', 2918, - ';', 2870, - 'e', 3848, - 'o', 3849, - '|', 2871, - '}', 3100, - '\t', 28, - ' ', 28, + '#', 4780, + ')', 2910, + ';', 2862, + 'e', 3839, + 'o', 3840, + '|', 2863, + '}', 3092, + '\t', 27, + ' ', 27, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 1045: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - ')', 2918, - ';', 2870, + '#', 4780, + ')', 2910, + ';', 2862, 'e', 2238, 'o', 2236, - '|', 2871, - '}', 3100, - '\t', 28, - ' ', 28, + '|', 2863, + '}', 3092, + '\t', 27, + ' ', 27, ); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 1046: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - ')', 2918, - ';', 2870, - 'e', 3857, - 'o', 3859, - '|', 2871, - '}', 3100, - '\t', 29, - ' ', 29, + '#', 4780, + ')', 2910, + ';', 2862, + 'e', 3848, + 'o', 3850, + '|', 2863, + '}', 3092, + '\t', 28, + ' ', 28, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 1047: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4789, - ')', 2918, - ';', 2870, + '#', 4780, + ')', 2910, + ';', 2862, 'e', 2241, 'o', 2243, - '|', 2871, - '}', 3100, - '\t', 29, - ' ', 29, + '|', 2863, + '}', 3092, + '\t', 28, + ' ', 28, ); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 1048: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4796, - '(', 3220, - ')', 2918, - ';', 2870, - 'a', 4111, - 'e', 4016, - 'o', 4017, - 'x', 4122, - '|', 2871, - '}', 3100, + '#', 4787, + '(', 3212, + ')', 2910, + ';', 2862, + 'a', 4102, + 'e', 4007, + 'o', 4008, + 'x', 4113, + '|', 2863, + '}', 3092, ); if (lookahead == '\t' || lookahead == ' ') SKIP(1043); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 1049: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4796, - '(', 3220, - ')', 2918, - ';', 2870, - 'e', 4012, - 'o', 4013, - '|', 2871, - '}', 3100, - '\t', 28, - ' ', 28, + '#', 4787, + '(', 3212, + ')', 2910, + ';', 2862, + 'e', 4003, + 'o', 4004, + '|', 2863, + '}', 3092, + '\t', 27, + ' ', 27, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 1050: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4796, - '(', 3220, - ')', 2918, - ';', 2870, - 'e', 4016, - 'o', 4018, - '|', 2871, - '}', 3100, - '\t', 2869, - ' ', 2869, + '#', 4787, + '(', 3212, + ')', 2910, + ';', 2862, + 'e', 4007, + 'o', 4009, + '|', 2863, + '}', 3092, + '\t', 2861, + ' ', 2861, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 1051: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4796, - '(', 3220, - ')', 2918, - ';', 2870, - 'e', 4016, - 'o', 4018, - '|', 2871, - '}', 3100, - '\t', 29, - ' ', 29, + '#', 4787, + '(', 3212, + ')', 2910, + ';', 2862, + 'e', 4007, + 'o', 4009, + '|', 2863, + '}', 3092, + '\t', 28, + ' ', 28, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 1052: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4796, - ')', 2918, - '-', 2974, - ';', 2870, - 'a', 4144, - '}', 3100, + '#', 4787, + ')', 2910, + '-', 2964, + ';', 2862, + 'a', 4135, + '}', 3092, ); if (lookahead == '\t' || lookahead == ' ') SKIP(1031); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 1053: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4792, - ')', 2918, - ';', 2870, + '#', 4783, + ')', 2910, + ';', 2862, 'e', 2158, 'o', 2159, - '|', 2871, - '}', 3100, - '\t', 28, - ' ', 28, + '|', 2863, + '}', 3092, + '\t', 27, + ' ', 27, ); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); END_STATE(); case 1054: if (eof) ADVANCE(1055); ADVANCE_MAP( - '\n', 2864, + '\n', 2856, '\r', 24, - '#', 4792, - ')', 2918, - ';', 2870, + '#', 4783, + ')', 2910, + ';', 2862, 'e', 2162, 'o', 2163, - '|', 2871, - '}', 3100, - '\t', 29, - ' ', 29, + '|', 2863, + '}', 3092, + '\t', 28, + ' ', 28, ); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); END_STATE(); @@ -33776,7 +34031,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym_shebang_token1); if (lookahead == '\n') ADVANCE(1057); if (lookahead == '\r') ADVANCE(1059); - if (lookahead == '#') ADVANCE(4790); + if (lookahead == '#') ADVANCE(4781); if (lookahead == '\t' || lookahead == ' ') ADVANCE(1058); if (lookahead != 0) ADVANCE(1059); @@ -33814,9 +34069,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1063: ACCEPT_TOKEN(anon_sym_export); if (lookahead == ',') ADVANCE(2149); - if (lookahead == '-') ADVANCE(4644); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4647); + if (lookahead == '-') ADVANCE(4635); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4638); END_STATE(); case 1064: ACCEPT_TOKEN(anon_sym_export); @@ -33846,8 +34101,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1068: ACCEPT_TOKEN(anon_sym_alias); if (lookahead == ',') ADVANCE(1889); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4637); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4628); END_STATE(); case 1069: ACCEPT_TOKEN(anon_sym_alias); @@ -33879,22 +34134,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1074: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(3736); - if (lookahead == '~') ADVANCE(3737); + if (lookahead == '=') ADVANCE(3727); + if (lookahead == '~') ADVANCE(3728); END_STATE(); case 1075: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(867); - if (lookahead == '~') ADVANCE(868); + if (lookahead == '=') ADVANCE(871); + if (lookahead == '~') ADVANCE(872); END_STATE(); case 1076: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(167); - if (lookahead == '~') ADVANCE(168); + if (lookahead == '=') ADVANCE(170); + if (lookahead == '~') ADVANCE(171); END_STATE(); case 1077: ACCEPT_TOKEN(anon_sym_EQ); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 1078: ACCEPT_TOKEN(anon_sym_let); @@ -33923,9 +34178,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1081: ACCEPT_TOKEN(anon_sym_let); if (lookahead == ',') ADVANCE(1930); - if (lookahead == '-') ADVANCE(4621); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4624); + if (lookahead == '-') ADVANCE(4612); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4615); END_STATE(); case 1082: ACCEPT_TOKEN(anon_sym_let); @@ -33950,8 +34205,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1085: ACCEPT_TOKEN(anon_sym_let_DASHenv); if (lookahead == ',') ADVANCE(1930); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4624); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4615); END_STATE(); case 1086: ACCEPT_TOKEN(anon_sym_let_DASHenv); @@ -33974,8 +34229,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1089: ACCEPT_TOKEN(anon_sym_mut); if (lookahead == ',') ADVANCE(1936); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4625); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4616); END_STATE(); case 1090: ACCEPT_TOKEN(anon_sym_mut); @@ -34017,8 +34272,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1096: ACCEPT_TOKEN(anon_sym_const); if (lookahead == ',') ADVANCE(1942); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4640); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4631); END_STATE(); case 1097: ACCEPT_TOKEN(anon_sym_const); @@ -34062,71 +34317,71 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1106: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '\n') ADVANCE(3249); + if (lookahead == '\n') ADVANCE(3241); if (lookahead == '\r') ADVANCE(7); if (lookahead == ',') ADVANCE(1875); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3221); + lookahead == ' ') ADVANCE(3213); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1107: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '\n') ADVANCE(3263); + if (lookahead == '\n') ADVANCE(3255); if (lookahead == '\r') ADVANCE(16); if (lookahead == ',') ADVANCE(1875); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3235); + lookahead == ' ') ADVANCE(3227); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1108: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '\n') ADVANCE(3261); + if (lookahead == '\n') ADVANCE(3253); if (lookahead == '\r') ADVANCE(18); if (lookahead == ',') ADVANCE(1875); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3233); + lookahead == ' ') ADVANCE(3225); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1109: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '\n') ADVANCE(3257); + if (lookahead == '\n') ADVANCE(3249); if (lookahead == '\r') ADVANCE(19); if (lookahead == ',') ADVANCE(1875); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3229); + lookahead == ' ') ADVANCE(3221); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1110: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '\n') ADVANCE(3258); + if (lookahead == '\n') ADVANCE(3250); if (lookahead == '\r') ADVANCE(20); if (lookahead == ',') ADVANCE(1875); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3230); + lookahead == ' ') ADVANCE(3222); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1111: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '\n') ADVANCE(3262); + if (lookahead == '\n') ADVANCE(3254); if (lookahead == '\r') ADVANCE(21); if (lookahead == ',') ADVANCE(1875); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3234); + lookahead == ' ') ADVANCE(3226); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1112: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '$') ADVANCE(3368); - if (lookahead == '(') ADVANCE(3277); + if (lookahead == '$') ADVANCE(3360); + if (lookahead == '(') ADVANCE(3269); if (lookahead == ',') ADVANCE(1875); - if (lookahead == '{') ADVANCE(3514); + if (lookahead == '{') ADVANCE(3505); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1113: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '$') ADVANCE(3368); - if (lookahead == '(') ADVANCE(3277); - if (lookahead == '{') ADVANCE(3514); + if (lookahead == '$') ADVANCE(3360); + if (lookahead == '(') ADVANCE(3269); + if (lookahead == '{') ADVANCE(3505); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1114: @@ -34134,13 +34389,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '*') ADVANCE(1843); if (lookahead == '=') ADVANCE(1103); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3223); + lookahead == ' ') ADVANCE(3215); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1115: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '+') ADVANCE(1738); - if (lookahead == '>') ADVANCE(3614); + if (lookahead == '>') ADVANCE(3605); if (lookahead == 'l') ADVANCE(1789); if (lookahead == 'n') ADVANCE(1631); if (lookahead == 'r') ADVANCE(1757); @@ -34150,7 +34405,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1116: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '+') ADVANCE(1738); - if (lookahead == '>') ADVANCE(3614); + if (lookahead == '>') ADVANCE(3605); if (lookahead == 'l') ADVANCE(1789); if (lookahead == 'r') ADVANCE(1757); if (lookahead == 'x') ADVANCE(1751); @@ -34159,7 +34414,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1117: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '+') ADVANCE(1662); - if (lookahead == '>') ADVANCE(3618); + if (lookahead == '>') ADVANCE(3609); if (lookahead == 'r') ADVANCE(1845); if (lookahead == 'u') ADVANCE(1805); if (lookahead == 'v') ADVANCE(1667); @@ -34168,7 +34423,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1118: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '+') ADVANCE(1662); - if (lookahead == '>') ADVANCE(3618); + if (lookahead == '>') ADVANCE(3609); if (lookahead == 'u') ADVANCE(1805); if (lookahead == 'v') ADVANCE(1667); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); @@ -34176,8 +34431,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1119: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '+') ADVANCE(1480); - if (lookahead == '=') ADVANCE(3602); - if (lookahead == '>') ADVANCE(851); + if (lookahead == '=') ADVANCE(3593); + if (lookahead == '>') ADVANCE(855); if (lookahead == 'l') ADVANCE(1521); if (lookahead == 'r') ADVANCE(1499); if (lookahead == 'x') ADVANCE(1491); @@ -34189,8 +34444,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1120: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '+') ADVANCE(1424); - if (lookahead == '=') ADVANCE(3602); - if (lookahead == '>') ADVANCE(852); + if (lookahead == '=') ADVANCE(3593); + if (lookahead == '>') ADVANCE(856); if (lookahead == 'u') ADVANCE(1544); if (lookahead == 'v') ADVANCE(1425); if ((',' <= lookahead && lookahead <= '.') || @@ -34201,8 +34456,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1121: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '+') ADVANCE(1482); - if (lookahead == '=') ADVANCE(3602); - if (lookahead == '>') ADVANCE(854); + if (lookahead == '=') ADVANCE(3593); + if (lookahead == '>') ADVANCE(858); if (lookahead == 'o') ADVANCE(1496); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -34212,21 +34467,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1122: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '+') ADVANCE(1741); - if (lookahead == '>') ADVANCE(3606); + if (lookahead == '>') ADVANCE(3597); if (lookahead == 'o') ADVANCE(1759); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1123: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '+') ADVANCE(1670); - if (lookahead == '>') ADVANCE(3610); + if (lookahead == '>') ADVANCE(3601); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1124: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '+') ADVANCE(1421); - if (lookahead == '=') ADVANCE(3602); - if (lookahead == '>') ADVANCE(856); + if (lookahead == '=') ADVANCE(3593); + if (lookahead == '>') ADVANCE(860); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || lookahead == '@') ADVANCE(1875); @@ -34261,15 +34516,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ',') ADVANCE(1875); if (lookahead == '.') ADVANCE(1147); if (lookahead == '_') ADVANCE(1129); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3353); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3345); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1130: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == '.') ADVANCE(3106); + if (lookahead == '.') ADVANCE(3098); if (lookahead == '_') ADVANCE(1148); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3354); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3346); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1131: @@ -34277,7 +34532,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ',') ADVANCE(1875); if (lookahead == '.') ADVANCE(1133); if (lookahead == '_') ADVANCE(1148); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3354); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3346); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1132: @@ -34285,7 +34540,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ',') ADVANCE(1875); if (lookahead == '.') ADVANCE(1133); if (lookahead == '_') ADVANCE(1153); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3411); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3403); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1133: @@ -34297,9 +34552,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1134: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == '.') ADVANCE(3280); + if (lookahead == '.') ADVANCE(3272); if (lookahead == '_') ADVANCE(1153); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3411); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3403); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1135: @@ -34307,13 +34562,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ',') ADVANCE(1875); if (lookahead == '.') ADVANCE(1152); if (lookahead == '_') ADVANCE(1135); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3400); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1136: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == ':') ADVANCE(3754); + if (lookahead == ':') ADVANCE(3745); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1137: @@ -34321,14 +34576,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ',') ADVANCE(1875); if (lookahead == '=') ADVANCE(1105); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3222); + lookahead == ' ') ADVANCE(3214); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1138: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == '=') ADVANCE(3212); - if (lookahead == '~') ADVANCE(3218); + if (lookahead == '=') ADVANCE(3204); + if (lookahead == '~') ADVANCE(3210); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1139: @@ -34343,10 +34598,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'x', 1259, '+', 1159, '-', 1159, - 'B', 3429, - 'b', 3429, + 'B', 3420, + 'b', 3420, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1140: @@ -34358,10 +34613,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'i', 1171, '+', 1159, '-', 1159, - 'B', 3429, - 'b', 3429, + 'B', 3420, + 'b', 3420, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1141: @@ -34372,10 +34627,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'a', 1227, 'i', 1245, 'o', 1177, - 's', 3434, + 's', 3425, 'u', 1286, - 'B', 3429, - 'b', 3429, + 'B', 3420, + 'b', 3420, ); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); @@ -34388,8 +34643,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'l', 1279, 'r', 1269, 'x', 1259, - 'B', 3429, - 'b', 3429, + 'B', 3420, + 'b', 3420, ); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); @@ -34400,7 +34655,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'i') ADVANCE(1314); if (lookahead == 'r') ADVANCE(1301); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); + lookahead == 'b') ADVANCE(3420); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1144: @@ -34409,7 +34664,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'I') ADVANCE(1314); if (lookahead == 'i') ADVANCE(1314); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); + lookahead == 'b') ADVANCE(3420); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1145: @@ -34418,29 +34673,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'I') ADVANCE(1314); if (lookahead == 'i') ADVANCE(1171); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); + lookahead == 'b') ADVANCE(3420); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1146: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == ',') ADVANCE(1875); if (lookahead == 'N') ADVANCE(1315); - if (lookahead == 'f') ADVANCE(3080); - if (lookahead == 'n') ADVANCE(3041); + if (lookahead == 'f') ADVANCE(3072); + if (lookahead == 'n') ADVANCE(3033); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1147: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == ',') ADVANCE(1875); if (lookahead == '_') ADVANCE(1147); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3366); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3358); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1148: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == ',') ADVANCE(1875); if (lookahead == '_') ADVANCE(1148); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3354); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3346); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1149: @@ -34448,35 +34703,35 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ',') ADVANCE(1875); if (lookahead == '_') ADVANCE(1150); if (('+' <= lookahead && lookahead <= '-')) ADVANCE(1150); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3355); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3347); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1150: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == ',') ADVANCE(1875); if (lookahead == '_') ADVANCE(1150); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3355); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3347); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1151: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == ',') ADVANCE(1875); if (lookahead == '_') ADVANCE(1151); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1152: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == ',') ADVANCE(1875); if (lookahead == '_') ADVANCE(1152); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3418); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3410); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1153: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == ',') ADVANCE(1875); if (lookahead == '_') ADVANCE(1153); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3411); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3403); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1154: @@ -34484,21 +34739,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ',') ADVANCE(1875); if (lookahead == '_') ADVANCE(1155); if (('+' <= lookahead && lookahead <= '-')) ADVANCE(1155); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3410); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3402); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1155: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == ',') ADVANCE(1875); if (lookahead == '_') ADVANCE(1155); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3410); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3402); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1156: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == ',') ADVANCE(1875); if (lookahead == '_') ADVANCE(1156); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1157: @@ -34509,7 +34764,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'r') ADVANCE(1269); if (lookahead == 'x') ADVANCE(1259); if (('+' <= lookahead && lookahead <= '-')) ADVANCE(1159); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1158: @@ -34517,14 +34772,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ',') ADVANCE(1875); if (lookahead == '_') ADVANCE(1159); if (('+' <= lookahead && lookahead <= '-')) ADVANCE(1159); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1159: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == ',') ADVANCE(1875); if (lookahead == '_') ADVANCE(1159); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1160: @@ -34574,7 +34829,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ',') ADVANCE(1875); if (lookahead == 'a') ADVANCE(1311); if (lookahead == 'e') ADVANCE(1204); - if (lookahead == 'o') ADVANCE(3073); + if (lookahead == 'o') ADVANCE(3065); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1167: @@ -34605,7 +34860,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1171: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'b') ADVANCE(3429); + if (lookahead == 'b') ADVANCE(3420); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1172: @@ -34617,7 +34872,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1173: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'c') ADVANCE(3434); + if (lookahead == 'c') ADVANCE(3425); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1174: @@ -34665,7 +34920,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1181: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'e') ADVANCE(2938); + if (lookahead == 'e') ADVANCE(2930); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1182: @@ -34689,56 +34944,56 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1185: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'e') ADVANCE(2909); + if (lookahead == 'e') ADVANCE(2901); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1186: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'e') ADVANCE(3088); + if (lookahead == 'e') ADVANCE(3080); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1187: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'e') ADVANCE(3155); + if (lookahead == 'e') ADVANCE(3147); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1188: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'e') ADVANCE(3060); + if (lookahead == 'e') ADVANCE(3052); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1189: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'e') ADVANCE(3066); + if (lookahead == 'e') ADVANCE(3058); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1190: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'e') ADVANCE(2902); + if (lookahead == 'e') ADVANCE(2894); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1191: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'e') ADVANCE(3138); + if (lookahead == 'e') ADVANCE(3130); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1192: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'e') ADVANCE(3029); + if (lookahead == 'e') ADVANCE(3021); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1193: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == ',') ADVANCE(1875); if (lookahead == 'e') ADVANCE(1306); - if (lookahead == 's') ADVANCE(3434); + if (lookahead == 's') ADVANCE(3425); if (lookahead == 'u') ADVANCE(1234); if (lookahead == 'A' || lookahead == 'a') ADVANCE(1317); @@ -34763,7 +35018,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == ',') ADVANCE(1875); if (lookahead == 'e') ADVANCE(1204); - if (lookahead == 'o') ADVANCE(3073); + if (lookahead == 'o') ADVANCE(3065); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1197: @@ -34808,13 +35063,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1203: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'f') ADVANCE(2937); + if (lookahead == 'f') ADVANCE(2929); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1204: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'f') ADVANCE(2884); + if (lookahead == 'f') ADVANCE(2876); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1205: @@ -34833,37 +35088,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1207: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'h') ADVANCE(2927); + if (lookahead == 'h') ADVANCE(2919); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1208: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'h') ADVANCE(3209); + if (lookahead == 'h') ADVANCE(3201); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1209: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'h') ADVANCE(3207); + if (lookahead == 'h') ADVANCE(3199); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1210: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'h') ADVANCE(2935); + if (lookahead == 'h') ADVANCE(2927); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1211: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'h') ADVANCE(3126); + if (lookahead == 'h') ADVANCE(3118); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1212: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'h') ADVANCE(3096); + if (lookahead == 'h') ADVANCE(3088); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1213: @@ -34876,7 +35131,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == ',') ADVANCE(1875); if (lookahead == 'h') ADVANCE(1222); - if (lookahead == 'k') ADVANCE(3434); + if (lookahead == 'k') ADVANCE(3425); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1215: @@ -34901,7 +35156,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == ',') ADVANCE(1875); if (lookahead == 'i') ADVANCE(1179); - if (lookahead == 'r') ADVANCE(3434); + if (lookahead == 'r') ADVANCE(3425); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1219: @@ -34949,7 +35204,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1226: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'k') ADVANCE(3023); + if (lookahead == 'k') ADVANCE(3015); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1227: @@ -34988,7 +35243,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == ',') ADVANCE(1875); if (lookahead == 'l') ADVANCE(1220); - if (lookahead == 's') ADVANCE(3180); + if (lookahead == 's') ADVANCE(3172); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1233: @@ -35038,13 +35293,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1240: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'n') ADVANCE(3205); + if (lookahead == 'n') ADVANCE(3197); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1241: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'n') ADVANCE(2936); + if (lookahead == 'n') ADVANCE(2928); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1242: @@ -35056,21 +35311,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1243: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'n') ADVANCE(2895); + if (lookahead == 'n') ADVANCE(2887); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1244: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'n') ADVANCE(3133); + if (lookahead == 'n') ADVANCE(3125); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1245: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'n') ADVANCE(3434); + if (lookahead == 'n') ADVANCE(3425); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); + lookahead == 'b') ADVANCE(3420); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1246: @@ -35130,7 +35385,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1255: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'p') ADVANCE(3053); + if (lookahead == 'p') ADVANCE(3045); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1256: @@ -35173,19 +35428,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1262: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'r') ADVANCE(3035); + if (lookahead == 'r') ADVANCE(3027); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1263: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'r') ADVANCE(2931); + if (lookahead == 'r') ADVANCE(2923); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1264: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'r') ADVANCE(3149); + if (lookahead == 'r') ADVANCE(3141); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1265: @@ -35257,13 +35512,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1276: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 's') ADVANCE(3434); + if (lookahead == 's') ADVANCE(3425); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1277: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 's') ADVANCE(3437); + if (lookahead == 's') ADVANCE(3428); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1278: @@ -35324,7 +35579,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1287: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 't') ADVANCE(2943); + if (lookahead == 't') ADVANCE(2935); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1288: @@ -35409,7 +35664,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == ',') ADVANCE(1875); if (lookahead == 'u') ADVANCE(1182); - if (lookahead == 'y') ADVANCE(3119); + if (lookahead == 'y') ADVANCE(3111); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1302: @@ -35439,7 +35694,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1306: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'w') ADVANCE(3173); + if (lookahead == 'w') ADVANCE(3165); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1307: @@ -35463,13 +35718,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1310: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'y') ADVANCE(3166); + if (lookahead == 'y') ADVANCE(3158); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1311: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'y') ADVANCE(3434); + if (lookahead == 'y') ADVANCE(3425); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1312: @@ -35489,7 +35744,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == ',') ADVANCE(1875); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); + lookahead == 'b') ADVANCE(3420); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1315: @@ -35546,14 +35801,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ',') ADVANCE(1875); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(3420); + lookahead == '_') ADVANCE(3412); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1323: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == ',') ADVANCE(1875); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(3421); + lookahead == '_') ADVANCE(3413); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1324: @@ -35577,7 +35832,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1327: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == ',') ADVANCE(1875); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3469); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3460); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1328: @@ -35598,7 +35853,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3419); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3411); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1331); END_STATE(); case 1331: @@ -35635,14 +35890,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '.') ADVANCE(1592); if (lookahead == '_') ADVANCE(1337); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3400); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1338: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(3110); + if (lookahead == '.') ADVANCE(3102); if (lookahead == '_') ADVANCE(1593); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3409); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3401); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1339: @@ -35654,42 +35909,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '.') ADVANCE(1339); if (lookahead == '_') ADVANCE(1593); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3409); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3401); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1341: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '.') ADVANCE(1339); if (lookahead == '_') ADVANCE(1598); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3356); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3348); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1342: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(3282); + if (lookahead == '.') ADVANCE(3274); if (lookahead == '_') ADVANCE(1593); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3409); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3401); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1343: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(3279); + if (lookahead == '.') ADVANCE(3271); if (lookahead == '_') ADVANCE(1593); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3409); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3401); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1344: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(3107); + if (lookahead == '.') ADVANCE(3099); if (lookahead == '_') ADVANCE(1593); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3409); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3401); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1345: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '.') ADVANCE(1597); if (lookahead == '_') ADVANCE(1345); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3353); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3345); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1346: @@ -35697,12 +35952,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '/') ADVANCE(1844); if (lookahead == '=') ADVANCE(1104); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3224); + lookahead == ' ') ADVANCE(3216); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1347: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ':') ADVANCE(903); + if (lookahead == ':') ADVANCE(907); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1348: @@ -35719,7 +35974,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '=') ADVANCE(1105); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3222); + lookahead == ' ') ADVANCE(3214); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1351: @@ -35729,8 +35984,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1352: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); - if (lookahead == '>') ADVANCE(853); + if (lookahead == '=') ADVANCE(3593); + if (lookahead == '>') ADVANCE(857); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || lookahead == '@') ADVANCE(1875); @@ -35738,8 +35993,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1353: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); - if (lookahead == '>') ADVANCE(855); + if (lookahead == '=') ADVANCE(3593); + if (lookahead == '>') ADVANCE(859); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || lookahead == '@') ADVANCE(1875); @@ -35747,8 +36002,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1354: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); - if (lookahead == '>') ADVANCE(857); + if (lookahead == '=') ADVANCE(3593); + if (lookahead == '>') ADVANCE(861); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || lookahead == '@') ADVANCE(1875); @@ -35756,8 +36011,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1355: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); - if (lookahead == '>') ADVANCE(858); + if (lookahead == '=') ADVANCE(3593); + if (lookahead == '>') ADVANCE(862); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || lookahead == '@') ADVANCE(1875); @@ -35765,9 +36020,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1356: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'N') ADVANCE(1567); - if (lookahead == 'f') ADVANCE(3081); + if (lookahead == 'f') ADVANCE(3073); if (lookahead == 'n') ADVANCE(2098); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -35776,10 +36031,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1357: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'N') ADVANCE(1567); - if (lookahead == 'f') ADVANCE(3081); - if (lookahead == 'n') ADVANCE(3044); + if (lookahead == 'f') ADVANCE(3073); + if (lookahead == 'n') ADVANCE(3036); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || lookahead == '@') ADVANCE(1875); @@ -35787,7 +36042,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1358: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'N') ADVANCE(1567); if (lookahead == 'f') ADVANCE(2029); if (lookahead == 'n') ADVANCE(2098); @@ -35798,17 +36053,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1359: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == '_') ADVANCE(1359); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || lookahead == '@') ADVANCE(1875); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1360: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'a') ADVANCE(1532); if (lookahead == 'o') ADVANCE(1469); if ((',' <= lookahead && lookahead <= '.') || @@ -35818,7 +36073,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1361: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'a') ADVANCE(1532); if (lookahead == 'o') ADVANCE(1475); if ((',' <= lookahead && lookahead <= '.') || @@ -35828,7 +36083,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1362: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'a') ADVANCE(1532); if (lookahead == 'o') ADVANCE(1477); if ((',' <= lookahead && lookahead <= '.') || @@ -35838,7 +36093,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1363: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'a') ADVANCE(1467); if (lookahead == 'o') ADVANCE(1493); if ((',' <= lookahead && lookahead <= '.') || @@ -35848,7 +36103,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1364: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'a') ADVANCE(1467); if (lookahead == 'o') ADVANCE(1494); if ((',' <= lookahead && lookahead <= '.') || @@ -35858,7 +36113,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1365: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'a') ADVANCE(1451); if (lookahead == 'o') ADVANCE(1382); if (lookahead == 'u') ADVANCE(1534); @@ -35869,7 +36124,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1366: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'a') ADVANCE(1451); if (lookahead == 'o') ADVANCE(1385); if (lookahead == 'u') ADVANCE(1537); @@ -35880,7 +36135,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1367: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'a') ADVANCE(1449); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -35889,7 +36144,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1368: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'a') ADVANCE(1564); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -35898,7 +36153,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1369: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'a') ADVANCE(1450); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -35907,7 +36162,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1370: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'a') ADVANCE(1565); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -35916,7 +36171,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1371: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'a') ADVANCE(1518); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -35925,7 +36180,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1372: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'a') ADVANCE(1519); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -35934,7 +36189,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1373: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'a') ADVANCE(1453); if (lookahead == 'o') ADVANCE(1382); if (lookahead == 'u') ADVANCE(1534); @@ -35945,7 +36200,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1374: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'a') ADVANCE(1545); if (lookahead == 'o') ADVANCE(1469); if ((',' <= lookahead && lookahead <= '.') || @@ -35955,7 +36210,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1375: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'a') ADVANCE(1452); if (lookahead == 'o') ADVANCE(1385); if (lookahead == 'u') ADVANCE(1537); @@ -35966,7 +36221,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1376: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'c') ADVANCE(1434); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -35975,7 +36230,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1377: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'c') ADVANCE(1435); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -35984,7 +36239,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1378: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'c') ADVANCE(1437); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -35993,7 +36248,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1379: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'c') ADVANCE(1436); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36002,7 +36257,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1380: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'c') ADVANCE(1399); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36011,7 +36266,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1381: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'c') ADVANCE(1407); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36020,7 +36275,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1382: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'd') ADVANCE(1557); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36029,7 +36284,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1383: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'd') ADVANCE(1391); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36038,7 +36293,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1384: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'd') ADVANCE(1406); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36047,7 +36302,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1385: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'd') ADVANCE(1559); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36056,9 +36311,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1386: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'e') ADVANCE(1428); - if (lookahead == 'o') ADVANCE(3074); + if (lookahead == 'o') ADVANCE(3066); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || lookahead == '@') ADVANCE(1875); @@ -36066,7 +36321,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1387: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'e') ADVANCE(1562); if (lookahead == 'o') ADVANCE(1535); if (lookahead == 'u') ADVANCE(1457); @@ -36079,7 +36334,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1388: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'e') ADVANCE(1430); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36088,8 +36343,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1389: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); - if (lookahead == 'e') ADVANCE(2910); + if (lookahead == '=') ADVANCE(3593); + if (lookahead == 'e') ADVANCE(2902); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || lookahead == '@') ADVANCE(1875); @@ -36097,7 +36352,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1390: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'e') ADVANCE(2035); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36106,8 +36361,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1391: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); - if (lookahead == 'e') ADVANCE(3157); + if (lookahead == '=') ADVANCE(3593); + if (lookahead == 'e') ADVANCE(3149); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || lookahead == '@') ADVANCE(1875); @@ -36115,7 +36370,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1392: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'e') ADVANCE(2128); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36124,7 +36379,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1393: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'e') ADVANCE(2150); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36133,7 +36388,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1394: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'e') ADVANCE(1894); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36142,7 +36397,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1395: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'e') ADVANCE(2195); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36151,8 +36406,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1396: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); - if (lookahead == 'e') ADVANCE(3190); + if (lookahead == '=') ADVANCE(3593); + if (lookahead == 'e') ADVANCE(3182); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || lookahead == '@') ADVANCE(1875); @@ -36160,8 +36415,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1397: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); - if (lookahead == 'e') ADVANCE(3067); + if (lookahead == '=') ADVANCE(3593); + if (lookahead == 'e') ADVANCE(3059); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || lookahead == '@') ADVANCE(1875); @@ -36169,8 +36424,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1398: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); - if (lookahead == 'e') ADVANCE(2903); + if (lookahead == '=') ADVANCE(3593); + if (lookahead == 'e') ADVANCE(2895); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || lookahead == '@') ADVANCE(1875); @@ -36178,8 +36433,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1399: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); - if (lookahead == 'e') ADVANCE(3140); + if (lookahead == '=') ADVANCE(3593); + if (lookahead == 'e') ADVANCE(3132); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || lookahead == '@') ADVANCE(1875); @@ -36187,7 +36442,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1400: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'e') ADVANCE(2011); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36196,7 +36451,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1401: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'e') ADVANCE(1909); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36205,8 +36460,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1402: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); - if (lookahead == 'e') ADVANCE(3030); + if (lookahead == '=') ADVANCE(3593); + if (lookahead == 'e') ADVANCE(3022); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || lookahead == '@') ADVANCE(1875); @@ -36214,7 +36469,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1403: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'e') ADVANCE(2065); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36223,8 +36478,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1404: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); - if (lookahead == 'e') ADVANCE(3089); + if (lookahead == '=') ADVANCE(3593); + if (lookahead == 'e') ADVANCE(3081); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || lookahead == '@') ADVANCE(1875); @@ -36232,8 +36487,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1405: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); - if (lookahead == 'e') ADVANCE(3061); + if (lookahead == '=') ADVANCE(3593); + if (lookahead == 'e') ADVANCE(3053); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || lookahead == '@') ADVANCE(1875); @@ -36241,7 +36496,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1406: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'e') ADVANCE(1953); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36250,7 +36505,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1407: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'e') ADVANCE(1973); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36259,7 +36514,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1408: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'e') ADVANCE(1533); if (lookahead == 'i') ADVANCE(1522); if (lookahead == 'o') ADVANCE(1479); @@ -36270,7 +36525,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1409: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'e') ADVANCE(1533); if (lookahead == 'i') ADVANCE(1526); if (lookahead == 'o') ADVANCE(1479); @@ -36281,9 +36536,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1410: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'e') ADVANCE(1429); - if (lookahead == 'o') ADVANCE(3074); + if (lookahead == 'o') ADVANCE(3066); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || lookahead == '@') ADVANCE(1875); @@ -36291,7 +36546,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1411: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'e') ADVANCE(1429); if (lookahead == 'o') ADVANCE(2023); if ((',' <= lookahead && lookahead <= '.') || @@ -36301,7 +36556,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1412: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'e') ADVANCE(1563); if (lookahead == 'o') ADVANCE(1535); if (lookahead == 'u') ADVANCE(1457); @@ -36314,7 +36569,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1413: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'e') ADVANCE(1367); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36323,7 +36578,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1414: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'e') ADVANCE(1507); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36332,7 +36587,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1415: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'e') ADVANCE(1369); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36341,7 +36596,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1416: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'e') ADVANCE(1504); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36350,7 +36605,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1417: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'e') ADVANCE(1542); if (lookahead == 'i') ADVANCE(1522); if (lookahead == 'o') ADVANCE(1481); @@ -36361,7 +36616,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1418: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'e') ADVANCE(1497); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36370,7 +36625,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1419: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'e') ADVANCE(1506); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36379,7 +36634,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1420: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'e') ADVANCE(1498); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36388,7 +36643,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1421: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'e') ADVANCE(1513); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36397,7 +36652,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1422: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'e') ADVANCE(1511); if (lookahead == 'i') ADVANCE(1460); if ((',' <= lookahead && lookahead <= '.') || @@ -36407,7 +36662,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1423: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'e') ADVANCE(1511); if (lookahead == 'i') ADVANCE(1462); if ((',' <= lookahead && lookahead <= '.') || @@ -36417,7 +36672,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1424: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'e') ADVANCE(1353); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36426,7 +36681,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1425: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'e') ADVANCE(1509); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36435,7 +36690,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1426: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'e') ADVANCE(1432); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36444,7 +36699,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1427: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'e') ADVANCE(1431); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36453,8 +36708,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1428: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); - if (lookahead == 'f') ADVANCE(2885); + if (lookahead == '=') ADVANCE(3593); + if (lookahead == 'f') ADVANCE(2877); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || lookahead == '@') ADVANCE(1875); @@ -36462,7 +36717,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1429: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'f') ADVANCE(1882); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36471,7 +36726,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1430: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'g') ADVANCE(1445); if (lookahead == 't') ADVANCE(1552); if ((',' <= lookahead && lookahead <= '.') || @@ -36481,7 +36736,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1431: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'g') ADVANCE(1448); if (lookahead == 't') ADVANCE(1552); if ((',' <= lookahead && lookahead <= '.') || @@ -36491,7 +36746,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1432: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'g') ADVANCE(1448); if (lookahead == 't') ADVANCE(1555); if ((',' <= lookahead && lookahead <= '.') || @@ -36501,7 +36756,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1433: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'h') ADVANCE(1422); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36510,7 +36765,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1434: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'h') ADVANCE(2047); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36519,8 +36774,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1435: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); - if (lookahead == 'h') ADVANCE(3097); + if (lookahead == '=') ADVANCE(3593); + if (lookahead == 'h') ADVANCE(3089); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || lookahead == '@') ADVANCE(1875); @@ -36528,7 +36783,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1436: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'h') ADVANCE(2053); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36537,8 +36792,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1437: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); - if (lookahead == 'h') ADVANCE(3127); + if (lookahead == '=') ADVANCE(3593); + if (lookahead == 'h') ADVANCE(3119); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || lookahead == '@') ADVANCE(1875); @@ -36546,7 +36801,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1438: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'h') ADVANCE(1446); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36555,7 +36810,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1439: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'h') ADVANCE(1423); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36564,7 +36819,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1440: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'i') ADVANCE(1383); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36573,7 +36828,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1441: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'i') ADVANCE(1371); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36582,7 +36837,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1442: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'i') ADVANCE(1474); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36591,7 +36846,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1443: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'i') ADVANCE(1384); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36600,7 +36855,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1444: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'i') ADVANCE(1372); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36609,7 +36864,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1445: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'i') ADVANCE(1524); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36618,7 +36873,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1446: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'i') ADVANCE(1462); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36627,7 +36882,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1447: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'i') ADVANCE(1476); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36636,7 +36891,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1448: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'i') ADVANCE(1531); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36645,8 +36900,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1449: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); - if (lookahead == 'k') ADVANCE(3024); + if (lookahead == '=') ADVANCE(3593); + if (lookahead == 'k') ADVANCE(3016); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || lookahead == '@') ADVANCE(1875); @@ -36654,7 +36909,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1450: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'k') ADVANCE(2059); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36663,7 +36918,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1451: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'k') ADVANCE(1392); if (lookahead == 't') ADVANCE(1377); if ((',' <= lookahead && lookahead <= '.') || @@ -36673,7 +36928,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1452: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'k') ADVANCE(1392); if (lookahead == 't') ADVANCE(1379); if ((',' <= lookahead && lookahead <= '.') || @@ -36683,7 +36938,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1453: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'k') ADVANCE(1405); if (lookahead == 't') ADVANCE(1377); if ((',' <= lookahead && lookahead <= '.') || @@ -36693,7 +36948,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1454: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'l') ADVANCE(2203); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36702,7 +36957,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1455: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'l') ADVANCE(1441); if (lookahead == 's') ADVANCE(2077); if ((',' <= lookahead && lookahead <= '.') || @@ -36712,9 +36967,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1456: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'l') ADVANCE(1441); - if (lookahead == 's') ADVANCE(3181); + if (lookahead == 's') ADVANCE(3173); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || lookahead == '@') ADVANCE(1875); @@ -36722,7 +36977,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1457: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'l') ADVANCE(1454); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36731,7 +36986,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1458: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'l') ADVANCE(1368); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36740,7 +36995,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1459: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'l') ADVANCE(1370); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36749,7 +37004,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1460: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'l') ADVANCE(1397); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36758,7 +37013,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1461: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'l') ADVANCE(1398); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36767,7 +37022,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1462: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'l') ADVANCE(1400); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36776,7 +37031,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1463: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'l') ADVANCE(1401); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36785,7 +37040,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1464: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'l') ADVANCE(1521); if (lookahead == 'r') ADVANCE(1503); if (lookahead == 'x') ADVANCE(1490); @@ -36796,7 +37051,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1465: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'l') ADVANCE(1521); if (lookahead == 'r') ADVANCE(1516); if (lookahead == 'x') ADVANCE(1491); @@ -36807,7 +37062,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1466: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'l') ADVANCE(1444); if (lookahead == 's') ADVANCE(2077); if ((',' <= lookahead && lookahead <= '.') || @@ -36817,7 +37072,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1467: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'l') ADVANCE(1525); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36826,7 +37081,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1468: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'l') ADVANCE(1529); if (lookahead == 'r') ADVANCE(1503); if (lookahead == 'x') ADVANCE(1490); @@ -36837,7 +37092,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1469: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'n') ADVANCE(1523); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36846,8 +37101,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1470: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); - if (lookahead == 'n') ADVANCE(2896); + if (lookahead == '=') ADVANCE(3593); + if (lookahead == 'n') ADVANCE(2888); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || lookahead == '@') ADVANCE(1875); @@ -36855,8 +37110,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1471: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); - if (lookahead == 'n') ADVANCE(3134); + if (lookahead == '=') ADVANCE(3593); + if (lookahead == 'n') ADVANCE(3126); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || lookahead == '@') ADVANCE(1875); @@ -36864,7 +37119,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1472: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'n') ADVANCE(1903); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36873,7 +37128,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1473: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'n') ADVANCE(2071); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36882,7 +37137,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1474: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'n') ADVANCE(1553); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36891,7 +37146,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1475: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'n') ADVANCE(1527); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36900,7 +37155,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1476: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'n') ADVANCE(1556); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36909,7 +37164,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1477: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'n') ADVANCE(1528); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36918,7 +37173,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1478: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'o') ADVANCE(1549); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36927,7 +37182,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1479: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'o') ADVANCE(1488); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36936,7 +37191,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1480: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'o') ADVANCE(1352); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36945,7 +37200,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1481: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'o') ADVANCE(1489); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36954,7 +37209,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1482: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'o') ADVANCE(1554); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36963,7 +37218,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1483: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'o') ADVANCE(1495); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36972,7 +37227,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1484: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'o') ADVANCE(1510); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36981,7 +37236,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1485: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'o') ADVANCE(1496); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36990,7 +37245,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1486: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'o') ADVANCE(1512); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -36999,7 +37254,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1487: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'o') ADVANCE(1558); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -37008,8 +37263,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1488: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); - if (lookahead == 'p') ADVANCE(3054); + if (lookahead == '=') ADVANCE(3593); + if (lookahead == 'p') ADVANCE(3046); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || lookahead == '@') ADVANCE(1875); @@ -37017,7 +37272,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1489: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'p') ADVANCE(2005); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -37026,7 +37281,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1490: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'p') ADVANCE(1484); if (lookahead == 't') ADVANCE(1416); if ((',' <= lookahead && lookahead <= '.') || @@ -37036,7 +37291,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1491: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'p') ADVANCE(1486); if (lookahead == 't') ADVANCE(1419); if ((',' <= lookahead && lookahead <= '.') || @@ -37046,7 +37301,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1492: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'r') ADVANCE(1550); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -37055,8 +37310,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1493: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); - if (lookahead == 'r') ADVANCE(3036); + if (lookahead == '=') ADVANCE(3593); + if (lookahead == 'r') ADVANCE(3028); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || lookahead == '@') ADVANCE(1875); @@ -37064,7 +37319,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1494: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'r') ADVANCE(1999); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -37073,8 +37328,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1495: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); - if (lookahead == 'r') ADVANCE(2932); + if (lookahead == '=') ADVANCE(3593); + if (lookahead == 'r') ADVANCE(2924); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || lookahead == '@') ADVANCE(1875); @@ -37082,7 +37337,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1496: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'r') ADVANCE(2017); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -37091,8 +37346,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1497: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); - if (lookahead == 'r') ADVANCE(3150); + if (lookahead == '=') ADVANCE(3593); + if (lookahead == 'r') ADVANCE(3142); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || lookahead == '@') ADVANCE(1875); @@ -37100,7 +37355,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1498: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'r') ADVANCE(1993); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -37109,7 +37364,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1499: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'r') ADVANCE(1121); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -37118,7 +37373,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1500: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'r') ADVANCE(1413); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -37127,7 +37382,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1501: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'r') ADVANCE(1551); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -37136,7 +37391,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1502: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'r') ADVANCE(1380); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -37145,7 +37400,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1503: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'r') ADVANCE(1483); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -37154,7 +37409,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1504: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'r') ADVANCE(1470); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -37163,7 +37418,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1505: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'r') ADVANCE(1471); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -37172,7 +37427,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1506: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'r') ADVANCE(1472); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -37181,7 +37436,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1507: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'r') ADVANCE(1458); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -37190,7 +37445,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1508: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'r') ADVANCE(1473); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -37199,7 +37454,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1509: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'r') ADVANCE(1459); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -37208,7 +37463,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1510: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'r') ADVANCE(1540); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -37217,7 +37472,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1511: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'r') ADVANCE(1396); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -37226,7 +37481,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1512: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'r') ADVANCE(1543); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -37235,7 +37490,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1513: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'r') ADVANCE(1517); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -37244,7 +37499,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1514: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'r') ADVANCE(1415); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -37253,7 +37508,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1515: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'r') ADVANCE(1381); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -37262,7 +37517,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1516: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'r') ADVANCE(1485); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -37271,7 +37526,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1517: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'r') ADVANCE(1355); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -37280,7 +37535,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1518: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 's') ADVANCE(1071); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -37289,7 +37544,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1519: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 's') ADVANCE(1888); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -37298,7 +37553,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1520: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 's') ADVANCE(1389); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -37307,7 +37562,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1521: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 's') ADVANCE(1390); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -37316,7 +37571,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1522: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 's') ADVANCE(1536); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -37325,7 +37580,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1523: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 's') ADVANCE(1538); if (lookahead == 't') ADVANCE(1442); if ((',' <= lookahead && lookahead <= '.') || @@ -37335,7 +37590,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1524: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 's') ADVANCE(1547); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -37344,7 +37599,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1525: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 's') ADVANCE(1395); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -37353,7 +37608,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1526: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 's') ADVANCE(1541); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -37362,7 +37617,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1527: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 's') ADVANCE(1539); if (lookahead == 't') ADVANCE(1442); if ((',' <= lookahead && lookahead <= '.') || @@ -37372,7 +37627,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1528: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 's') ADVANCE(1539); if (lookahead == 't') ADVANCE(1447); if ((',' <= lookahead && lookahead <= '.') || @@ -37382,7 +37637,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1529: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 's') ADVANCE(1404); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -37391,7 +37646,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1530: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 's') ADVANCE(1394); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -37400,7 +37655,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1531: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 's') ADVANCE(1548); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -37409,7 +37664,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1532: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 't') ADVANCE(1376); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -37418,7 +37673,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1533: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 't') ADVANCE(1082); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -37427,7 +37682,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1534: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 't') ADVANCE(1092); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -37436,7 +37691,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1535: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 't') ADVANCE(1574); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -37445,7 +37700,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1536: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 't') ADVANCE(2116); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -37454,7 +37709,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1537: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 't') ADVANCE(1935); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -37463,7 +37718,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1538: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 't') ADVANCE(1099); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -37472,7 +37727,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1539: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 't') ADVANCE(1941); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -37481,7 +37736,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1540: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 't') ADVANCE(1064); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -37490,8 +37745,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1541: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); - if (lookahead == 't') ADVANCE(2944); + if (lookahead == '=') ADVANCE(3593); + if (lookahead == 't') ADVANCE(2936); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || lookahead == '@') ADVANCE(1875); @@ -37499,7 +37754,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1542: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 't') ADVANCE(1921); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -37508,7 +37763,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1543: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 't') ADVANCE(2140); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -37517,7 +37772,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1544: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 't') ADVANCE(1124); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -37526,7 +37781,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1545: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 't') ADVANCE(1378); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -37535,7 +37790,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1546: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 't') ADVANCE(1354); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -37544,7 +37799,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1547: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 't') ADVANCE(1418); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -37553,7 +37808,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1548: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 't') ADVANCE(1420); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -37562,7 +37817,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1549: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'u') ADVANCE(1502); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -37571,9 +37826,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1550: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'u') ADVANCE(1393); - if (lookahead == 'y') ADVANCE(3120); + if (lookahead == 'y') ADVANCE(3112); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || lookahead == '@') ADVANCE(1875); @@ -37581,7 +37836,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1551: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'u') ADVANCE(1393); if (lookahead == 'y') ADVANCE(2041); if ((',' <= lookahead && lookahead <= '.') || @@ -37591,7 +37846,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1552: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'u') ADVANCE(1505); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -37600,7 +37855,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1553: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'u') ADVANCE(1402); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -37609,7 +37864,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1554: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'u') ADVANCE(1546); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -37618,7 +37873,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1555: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'u') ADVANCE(1508); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -37627,7 +37882,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1556: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'u') ADVANCE(1403); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -37636,7 +37891,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1557: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'u') ADVANCE(1461); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -37645,7 +37900,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1558: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'u') ADVANCE(1515); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -37654,7 +37909,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1559: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'u') ADVANCE(1463); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -37663,7 +37918,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1560: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'v') ADVANCE(1414); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -37672,7 +37927,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1561: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'v') ADVANCE(1425); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -37681,7 +37936,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1562: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'w') ADVANCE(2122); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -37690,8 +37945,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1563: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); - if (lookahead == 'w') ADVANCE(3174); + if (lookahead == '=') ADVANCE(3593); + if (lookahead == 'w') ADVANCE(3166); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || lookahead == '@') ADVANCE(1875); @@ -37699,8 +37954,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1564: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); - if (lookahead == 'y') ADVANCE(3167); + if (lookahead == '=') ADVANCE(3593); + if (lookahead == 'y') ADVANCE(3159); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || lookahead == '@') ADVANCE(1875); @@ -37708,7 +37963,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1565: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'y') ADVANCE(1987); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || @@ -37717,7 +37972,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1566: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'A' || lookahead == 'a') ADVANCE(1570); if ((',' <= lookahead && lookahead <= '.') || @@ -37727,7 +37982,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1567: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'F' || lookahead == 'f') ADVANCE(2213); if ((',' <= lookahead && lookahead <= '.') || @@ -37737,7 +37992,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1568: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'I' || lookahead == 'i') ADVANCE(1572); if ((',' <= lookahead && lookahead <= '.') || @@ -37747,7 +38002,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1569: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'N' || lookahead == 'n') ADVANCE(1567); if ((',' <= lookahead && lookahead <= '.') || @@ -37757,7 +38012,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1570: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'N' || lookahead == 'n') ADVANCE(2232); if ((',' <= lookahead && lookahead <= '.') || @@ -37767,7 +38022,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1571: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'N' || lookahead == 'n') ADVANCE(1568); if ((',' <= lookahead && lookahead <= '.') || @@ -37777,7 +38032,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1572: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'T' || lookahead == 't') ADVANCE(1573); if ((',' <= lookahead && lookahead <= '.') || @@ -37787,7 +38042,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1573: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if (lookahead == 'Y' || lookahead == 'y') ADVANCE(2211); if ((',' <= lookahead && lookahead <= '.') || @@ -37797,17 +38052,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1574: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || lookahead == '@') ADVANCE(1875); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3219); + lookahead == ' ') ADVANCE(3211); if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(1575); END_STATE(); case 1575: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3602); + if (lookahead == '=') ADVANCE(3593); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || lookahead == '@') ADVANCE(1875); @@ -37815,28 +38070,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1576: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(862); + if (lookahead == '=') ADVANCE(866); if (lookahead == '~') ADVANCE(1842); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1577: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(3634); + if (lookahead == '>') ADVANCE(3625); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1578: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(3630); + if (lookahead == '>') ADVANCE(3621); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1579: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(3622); + if (lookahead == '>') ADVANCE(3613); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1580: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(3626); + if (lookahead == '>') ADVANCE(3617); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1581: @@ -37850,10 +38105,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'x', 1752, '+', 1604, '-', 1604, - 'B', 3429, - 'b', 3429, + 'B', 3420, + 'b', 3420, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1582: @@ -37864,8 +38119,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '+' || lookahead == '-') ADVANCE(1604); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + lookahead == 'b') ADVANCE(3420); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1583: @@ -37875,10 +38130,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'a', 1709, 'i', 1730, 'o', 1636, - 's', 3434, + 's', 3425, 'u', 1799, - 'B', 3429, - 'b', 3429, + 'B', 3420, + 'b', 3420, ); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); @@ -37890,7 +38145,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'r') ADVANCE(1781); if (lookahead == 'x') ADVANCE(1752); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); + lookahead == 'b') ADVANCE(3420); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1585: @@ -37899,7 +38154,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'i') ADVANCE(1857); if (lookahead == 'r') ADVANCE(1822); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); + lookahead == 'b') ADVANCE(3420); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1586: @@ -37907,7 +38162,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'I') ADVANCE(1857); if (lookahead == 'i') ADVANCE(1857); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); + lookahead == 'b') ADVANCE(3420); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1587: @@ -37915,7 +38170,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'I') ADVANCE(1857); if (lookahead == 'i') ADVANCE(1621); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); + lookahead == 'b') ADVANCE(3420); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1588: @@ -37928,34 +38183,34 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1589: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'N') ADVANCE(1858); - if (lookahead == 'f') ADVANCE(3082); - if (lookahead == 'n') ADVANCE(3045); + if (lookahead == 'f') ADVANCE(3074); + if (lookahead == 'n') ADVANCE(3037); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1590: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'N') ADVANCE(1858); - if (lookahead == 'f') ADVANCE(3082); - if (lookahead == 'n') ADVANCE(3043); + if (lookahead == 'f') ADVANCE(3074); + if (lookahead == 'n') ADVANCE(3035); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1591: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'N') ADVANCE(1858); - if (lookahead == 'f') ADVANCE(3082); + if (lookahead == 'f') ADVANCE(3074); if (lookahead == 'n') ADVANCE(2099); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1592: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '_') ADVANCE(1592); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3418); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3410); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1593: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '_') ADVANCE(1593); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3409); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3401); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1594: @@ -37963,31 +38218,31 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(1595); if (lookahead == '+' || lookahead == '-') ADVANCE(1595); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3410); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3402); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1595: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '_') ADVANCE(1595); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3410); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3402); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1596: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '_') ADVANCE(1596); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1597: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '_') ADVANCE(1597); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3366); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3358); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1598: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '_') ADVANCE(1598); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3356); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3348); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1599: @@ -37995,19 +38250,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(1600); if (lookahead == '+' || lookahead == '-') ADVANCE(1600); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3355); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3347); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1600: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '_') ADVANCE(1600); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3355); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3347); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1601: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '_') ADVANCE(1601); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1602: @@ -38018,7 +38273,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'x') ADVANCE(1751); if (lookahead == '+' || lookahead == '-') ADVANCE(1604); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1603: @@ -38026,13 +38281,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '_') ADVANCE(1604); if (lookahead == '+' || lookahead == '-') ADVANCE(1604); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1604: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '_') ADVANCE(1604); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1605: @@ -38132,12 +38387,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1621: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'b') ADVANCE(3429); + if (lookahead == 'b') ADVANCE(3420); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1622: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(3434); + if (lookahead == 'c') ADVANCE(3425); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1623: @@ -38253,7 +38508,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1645: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'e') ADVANCE(1678); - if (lookahead == 'o') ADVANCE(3075); + if (lookahead == 'o') ADVANCE(3067); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1646: @@ -38280,42 +38535,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1649: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2911); + if (lookahead == 'e') ADVANCE(2903); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1650: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(3091); + if (lookahead == 'e') ADVANCE(3083); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1651: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(3158); + if (lookahead == 'e') ADVANCE(3150); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1652: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(3062); + if (lookahead == 'e') ADVANCE(3054); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1653: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(3068); + if (lookahead == 'e') ADVANCE(3060); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1654: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2904); + if (lookahead == 'e') ADVANCE(2896); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1655: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(3141); + if (lookahead == 'e') ADVANCE(3133); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1656: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(3031); + if (lookahead == 'e') ADVANCE(3023); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1657: @@ -38363,7 +38618,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1664: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'e') ADVANCE(1835); - if (lookahead == 's') ADVANCE(3434); + if (lookahead == 's') ADVANCE(3425); if (lookahead == 'u') ADVANCE(1713); if (lookahead == 'A' || lookahead == 'a') ADVANCE(1860); @@ -38442,7 +38697,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1678: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'f') ADVANCE(2886); + if (lookahead == 'f') ADVANCE(2878); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1679: @@ -38469,12 +38724,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1683: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(3129); + if (lookahead == 'h') ADVANCE(3121); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1684: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(3098); + if (lookahead == 'h') ADVANCE(3090); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1685: @@ -38500,7 +38755,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1689: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'h') ADVANCE(1703); - if (lookahead == 'k') ADVANCE(3434); + if (lookahead == 'k') ADVANCE(3425); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1690: @@ -38547,7 +38802,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1698: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'i') ADVANCE(1635); - if (lookahead == 'r') ADVANCE(3434); + if (lookahead == 'r') ADVANCE(3425); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1699: @@ -38592,7 +38847,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1707: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'k') ADVANCE(3025); + if (lookahead == 'k') ADVANCE(3017); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1708: @@ -38616,13 +38871,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'l') ADVANCE(1692); if (lookahead == 'n') ADVANCE(1632); - if (lookahead == 's') ADVANCE(3184); + if (lookahead == 's') ADVANCE(3176); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1712: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'l') ADVANCE(1692); - if (lookahead == 's') ADVANCE(3184); + if (lookahead == 's') ADVANCE(3176); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1713: @@ -38708,19 +38963,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1728: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(2897); + if (lookahead == 'n') ADVANCE(2889); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1729: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(3135); + if (lookahead == 'n') ADVANCE(3127); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1730: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(3434); + if (lookahead == 'n') ADVANCE(3425); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); + lookahead == 'b') ADVANCE(3420); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1731: @@ -38821,7 +39076,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1750: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(3055); + if (lookahead == 'p') ADVANCE(3047); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1751: @@ -38863,17 +39118,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1758: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(3037); + if (lookahead == 'r') ADVANCE(3029); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1759: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2934); + if (lookahead == 'r') ADVANCE(2926); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1760: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(3151); + if (lookahead == 'r') ADVANCE(3143); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1761: @@ -38993,12 +39248,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1784: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(3434); + if (lookahead == 's') ADVANCE(3425); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1785: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(3436); + if (lookahead == 's') ADVANCE(3427); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1786: @@ -39105,7 +39360,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1806: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2946); + if (lookahead == 't') ADVANCE(2938); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1807: @@ -39192,7 +39447,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1823: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'u') ADVANCE(1643); - if (lookahead == 'y') ADVANCE(3121); + if (lookahead == 'y') ADVANCE(3113); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1824: @@ -39224,7 +39479,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'u') ADVANCE(1718); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3225); + lookahead == ' ') ADVANCE(3217); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1830: @@ -39259,7 +39514,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1836: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'w') ADVANCE(3175); + if (lookahead == 'w') ADVANCE(3167); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1837: @@ -39279,96 +39534,96 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1840: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'y') ADVANCE(3168); + if (lookahead == 'y') ADVANCE(3160); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1841: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'y') ADVANCE(3434); + if (lookahead == 'y') ADVANCE(3425); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1842: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3232); + lookahead == ' ') ADVANCE(3224); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1843: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3221); + lookahead == ' ') ADVANCE(3213); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1844: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3226); + lookahead == ' ') ADVANCE(3218); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1845: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3238); + lookahead == ' ') ADVANCE(3230); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1846: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3236); + lookahead == ' ') ADVANCE(3228); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1847: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3237); + lookahead == ' ') ADVANCE(3229); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1848: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3235); + lookahead == ' ') ADVANCE(3227); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1849: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3240); + lookahead == ' ') ADVANCE(3232); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1850: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3233); + lookahead == ' ') ADVANCE(3225); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1851: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3229); + lookahead == ' ') ADVANCE(3221); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1852: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3230); + lookahead == ' ') ADVANCE(3222); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1853: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3234); + lookahead == ' ') ADVANCE(3226); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1854: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3242); + lookahead == ' ') ADVANCE(3234); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1855: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3241); + lookahead == ' ') ADVANCE(3233); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1856: @@ -39380,7 +39635,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1857: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); + lookahead == 'b') ADVANCE(3420); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1858: @@ -39429,19 +39684,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(3420); + lookahead == '_') ADVANCE(3412); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1866: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3219); + lookahead == ' ') ADVANCE(3211); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1867: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(3421); + lookahead == '_') ADVANCE(3413); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1868: @@ -39461,7 +39716,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1871: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3470); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3461); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1872: @@ -39479,7 +39734,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3419); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3411); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1875); END_STATE(); case 1875: @@ -39970,7 +40225,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1947: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); if (lookahead == ',') ADVANCE(1962); - if (lookahead == 'v') ADVANCE(3159); + if (lookahead == 'v') ADVANCE(3151); if (lookahead == '.' || lookahead == '?') ADVANCE(1952); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1950); @@ -39978,7 +40233,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1948: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); if (lookahead == ',') ADVANCE(1962); - if (lookahead == 'v') ADVANCE(3161); + if (lookahead == 'v') ADVANCE(3153); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); case 1949: @@ -40051,7 +40306,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1960: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == 'v') ADVANCE(3162); + if (lookahead == 'v') ADVANCE(3154); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1962); END_STATE(); case 1961: @@ -40096,7 +40351,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1967: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); if (lookahead == ',') ADVANCE(1982); - if (lookahead == 'v') ADVANCE(3142); + if (lookahead == 'v') ADVANCE(3134); if (lookahead == '.' || lookahead == '?') ADVANCE(1972); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1970); @@ -40104,7 +40359,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1968: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); if (lookahead == ',') ADVANCE(1982); - if (lookahead == 'v') ADVANCE(3144); + if (lookahead == 'v') ADVANCE(3136); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1972); END_STATE(); case 1969: @@ -40177,7 +40432,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1980: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == 'v') ADVANCE(3145); + if (lookahead == 'v') ADVANCE(3137); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1982); END_STATE(); case 1981: @@ -41277,7 +41532,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 2134: ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); if (lookahead == ',') ADVANCE(2149); - if (lookahead == 'v') ADVANCE(2887); + if (lookahead == 'v') ADVANCE(2879); if (lookahead == '.' || lookahead == '?') ADVANCE(2139); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2137); @@ -41285,7 +41540,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 2135: ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); if (lookahead == ',') ADVANCE(2149); - if (lookahead == 'v') ADVANCE(2889); + if (lookahead == 'v') ADVANCE(2881); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2139); END_STATE(); case 2136: @@ -41358,7 +41613,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 2147: ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if (lookahead == 'v') ADVANCE(2890); + if (lookahead == 'v') ADVANCE(2882); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2149); END_STATE(); case 2148: @@ -41377,125 +41632,125 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 2151: ACCEPT_TOKEN(anon_sym_true); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 2152: ACCEPT_TOKEN(anon_sym_true); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 2153: ACCEPT_TOKEN(anon_sym_true); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2154: ACCEPT_TOKEN(anon_sym_true); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); case 2155: ACCEPT_TOKEN(anon_sym_true); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2156: ACCEPT_TOKEN(anon_sym_true); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 2157: ACCEPT_TOKEN(anon_sym_true); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 2158: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); if (lookahead == '+') ADVANCE(2178); - if (lookahead == '>') ADVANCE(3614); + if (lookahead == '>') ADVANCE(3605); if (lookahead == 'r') ADVANCE(2182); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); END_STATE(); case 2159: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); if (lookahead == '+') ADVANCE(2175); - if (lookahead == '>') ADVANCE(3618); + if (lookahead == '>') ADVANCE(3609); if (lookahead == 'u') ADVANCE(2188); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); END_STATE(); case 2160: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); if (lookahead == '+') ADVANCE(2179); - if (lookahead == '>') ADVANCE(3606); + if (lookahead == '>') ADVANCE(3597); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); END_STATE(); case 2161: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); if (lookahead == '+') ADVANCE(2174); - if (lookahead == '>') ADVANCE(3610); + if (lookahead == '>') ADVANCE(3601); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); END_STATE(); case 2162: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); if (lookahead == '+') ADVANCE(2180); - if (lookahead == '>') ADVANCE(851); + if (lookahead == '>') ADVANCE(855); if (lookahead == 'r') ADVANCE(2184); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); END_STATE(); case 2163: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); if (lookahead == '+') ADVANCE(2176); - if (lookahead == '>') ADVANCE(852); + if (lookahead == '>') ADVANCE(856); if (lookahead == 'u') ADVANCE(2190); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); END_STATE(); case 2164: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); if (lookahead == '+') ADVANCE(2181); - if (lookahead == '>') ADVANCE(854); + if (lookahead == '>') ADVANCE(858); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); END_STATE(); case 2165: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); if (lookahead == '+') ADVANCE(2177); - if (lookahead == '>') ADVANCE(856); + if (lookahead == '>') ADVANCE(860); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); END_STATE(); case 2166: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '>') ADVANCE(3634); + if (lookahead == '>') ADVANCE(3625); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); END_STATE(); case 2167: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '>') ADVANCE(3630); + if (lookahead == '>') ADVANCE(3621); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); END_STATE(); case 2168: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '>') ADVANCE(3622); + if (lookahead == '>') ADVANCE(3613); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); END_STATE(); case 2169: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '>') ADVANCE(3626); + if (lookahead == '>') ADVANCE(3617); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); END_STATE(); case 2170: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '>') ADVANCE(853); + if (lookahead == '>') ADVANCE(857); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); END_STATE(); case 2171: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '>') ADVANCE(855); + if (lookahead == '>') ADVANCE(859); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); END_STATE(); case 2172: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '>') ADVANCE(857); + if (lookahead == '>') ADVANCE(861); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); END_STATE(); case 2173: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == '>') ADVANCE(858); + if (lookahead == '>') ADVANCE(862); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); END_STATE(); case 2174: @@ -41607,68 +41862,68 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 2196: ACCEPT_TOKEN(anon_sym_false); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 2197: ACCEPT_TOKEN(anon_sym_false); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 2198: ACCEPT_TOKEN(anon_sym_false); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2199: ACCEPT_TOKEN(anon_sym_false); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); case 2200: ACCEPT_TOKEN(anon_sym_false); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2201: ACCEPT_TOKEN(anon_sym_false); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 2202: ACCEPT_TOKEN(anon_sym_false); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 2203: ACCEPT_TOKEN(anon_sym_null); END_STATE(); case 2204: ACCEPT_TOKEN(anon_sym_null); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 2205: ACCEPT_TOKEN(anon_sym_null); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 2206: ACCEPT_TOKEN(anon_sym_null); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2207: ACCEPT_TOKEN(anon_sym_null); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); case 2208: ACCEPT_TOKEN(anon_sym_null); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2209: ACCEPT_TOKEN(anon_sym_null); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 2210: ACCEPT_TOKEN(anon_sym_null); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 2211: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); @@ -41676,8 +41931,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 2212: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2641); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + lookahead == 'i') ADVANCE(2633); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2213: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); @@ -41697,36 +41952,36 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 2216: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3828); + lookahead == 'i') ADVANCE(3819); END_STATE(); case 2217: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4293); + lookahead == 'i') ADVANCE(4284); END_STATE(); case 2218: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4554); + lookahead == 'i') ADVANCE(4545); END_STATE(); case 2219: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3980); + lookahead == 'i') ADVANCE(3971); END_STATE(); case 2220: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4399); + lookahead == 'i') ADVANCE(4390); END_STATE(); case 2221: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(894); + lookahead == 'i') ADVANCE(898); END_STATE(); case 2222: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2223: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); @@ -41734,118 +41989,118 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 2224: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3596); + lookahead == 'i') ADVANCE(3587); END_STATE(); case 2225: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4243); + lookahead == 'i') ADVANCE(4234); END_STATE(); case 2226: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(892); + lookahead == 'i') ADVANCE(896); END_STATE(); case 2227: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4597); + lookahead == 'i') ADVANCE(4588); END_STATE(); case 2228: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4295); + lookahead == 'i') ADVANCE(4286); END_STATE(); case 2229: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4556); + lookahead == 'i') ADVANCE(4547); END_STATE(); case 2230: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3982); + lookahead == 'i') ADVANCE(3973); END_STATE(); case 2231: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4401); + lookahead == 'i') ADVANCE(4392); END_STATE(); case 2232: ACCEPT_TOKEN(aux_sym_cmd_identifier_token40); END_STATE(); case 2233: ACCEPT_TOKEN(aux_sym_cmd_identifier_token40); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2234: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( '+', 2262, '-', 2264, - '>', 3614, + '>', 3605, 'I', 2295, '_', 2264, 'i', 2295, 'r', 2281, - 'B', 3429, - 'b', 3429, + 'B', 3420, + 'b', 3420, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2235: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); if (lookahead == '+') ADVANCE(2277); - if (lookahead == '>') ADVANCE(3606); + if (lookahead == '>') ADVANCE(3597); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2236: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); if (lookahead == '+') ADVANCE(2270); - if (lookahead == '>') ADVANCE(3618); + if (lookahead == '>') ADVANCE(3609); if (lookahead == 'u') ADVANCE(2288); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2237: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); if (lookahead == '+') ADVANCE(2276); - if (lookahead == '>') ADVANCE(3614); + if (lookahead == '>') ADVANCE(3605); if (lookahead == 'I') ADVANCE(2295); if (lookahead == 'i') ADVANCE(2295); if (lookahead == 'r') ADVANCE(2281); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); + lookahead == 'b') ADVANCE(3420); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2238: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); if (lookahead == '+') ADVANCE(2276); - if (lookahead == '>') ADVANCE(3614); + if (lookahead == '>') ADVANCE(3605); if (lookahead == 'r') ADVANCE(2281); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2239: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); if (lookahead == '+') ADVANCE(2271); - if (lookahead == '>') ADVANCE(3610); + if (lookahead == '>') ADVANCE(3601); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2240: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); if (lookahead == '+') ADVANCE(2278); - if (lookahead == '>') ADVANCE(851); + if (lookahead == '>') ADVANCE(855); if (lookahead == 'I') ADVANCE(2295); if (lookahead == 'i') ADVANCE(2295); if (lookahead == 'r') ADVANCE(2282); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); + lookahead == 'b') ADVANCE(3420); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2241: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); if (lookahead == '+') ADVANCE(2278); - if (lookahead == '>') ADVANCE(851); + if (lookahead == '>') ADVANCE(855); if (lookahead == 'r') ADVANCE(2282); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); @@ -41854,95 +42109,95 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE_MAP( '+', 2263, '-', 2264, - '>', 851, + '>', 855, 'I', 2295, '_', 2264, 'i', 2295, 'r', 2282, - 'B', 3429, - 'b', 3429, + 'B', 3420, + 'b', 3420, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2243: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); if (lookahead == '+') ADVANCE(2272); - if (lookahead == '>') ADVANCE(852); + if (lookahead == '>') ADVANCE(856); if (lookahead == 'u') ADVANCE(2290); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2244: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); if (lookahead == '+') ADVANCE(2273); - if (lookahead == '>') ADVANCE(856); + if (lookahead == '>') ADVANCE(860); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2245: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); if (lookahead == '+') ADVANCE(2279); - if (lookahead == '>') ADVANCE(854); + if (lookahead == '>') ADVANCE(858); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2246: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); if (lookahead == ',') ADVANCE(2296); - if (lookahead == ':') ADVANCE(3873); + if (lookahead == ':') ADVANCE(3864); if (lookahead == '_') ADVANCE(2246); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3863); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3366); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3854); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3358); if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2247); END_STATE(); case 2247: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); if (lookahead == ',') ADVANCE(2296); - if (lookahead == ':') ADVANCE(3873); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3863); + if (lookahead == ':') ADVANCE(3864); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3854); if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(2247); END_STATE(); case 2248: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '.') ADVANCE(3282); + if (lookahead == '.') ADVANCE(3274); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2249: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(3634); + if (lookahead == '>') ADVANCE(3625); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2250: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(3630); + if (lookahead == '>') ADVANCE(3621); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2251: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(3622); + if (lookahead == '>') ADVANCE(3613); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2252: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(3626); + if (lookahead == '>') ADVANCE(3617); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2253: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(853); + if (lookahead == '>') ADVANCE(857); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2254: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(855); + if (lookahead == '>') ADVANCE(859); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2255: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(857); + if (lookahead == '>') ADVANCE(861); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2256: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(858); + if (lookahead == '>') ADVANCE(862); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2257: @@ -41953,8 +42208,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '+' || lookahead == '-') ADVANCE(2264); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + lookahead == 'b') ADVANCE(3420); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2258: @@ -41965,8 +42220,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '+' || lookahead == '-') ADVANCE(2264); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + lookahead == 'b') ADVANCE(3420); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2259: @@ -41974,7 +42229,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'I') ADVANCE(2295); if (lookahead == 'i') ADVANCE(2295); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); + lookahead == 'b') ADVANCE(3420); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2260: @@ -41982,42 +42237,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'I') ADVANCE(2295); if (lookahead == 'i') ADVANCE(2267); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); + lookahead == 'b') ADVANCE(3420); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2261: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); if (lookahead == 'I') ADVANCE(2295); if (lookahead == 'i') ADVANCE(2275); - if (lookahead == 's') ADVANCE(3434); + if (lookahead == 's') ADVANCE(3425); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); + lookahead == 'b') ADVANCE(3420); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2262: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); if (lookahead == '_') ADVANCE(2264); if (lookahead == 'o') ADVANCE(2249); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2263: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); if (lookahead == '_') ADVANCE(2264); if (lookahead == 'o') ADVANCE(2253); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2264: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); if (lookahead == '_') ADVANCE(2264); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2265: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); if (lookahead == '_') ADVANCE(2265); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2266: @@ -42027,12 +42282,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 2267: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'b') ADVANCE(3429); + if (lookahead == 'b') ADVANCE(3420); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2268: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'c') ADVANCE(3434); + if (lookahead == 'c') ADVANCE(3425); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2269: @@ -42062,14 +42317,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 2274: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'k') ADVANCE(3434); + if (lookahead == 'k') ADVANCE(3425); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2275: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'n') ADVANCE(3434); + if (lookahead == 'n') ADVANCE(3425); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); + lookahead == 'b') ADVANCE(3420); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2276: @@ -42094,7 +42349,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 2280: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(3434); + if (lookahead == 'r') ADVANCE(3425); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2281: @@ -42129,7 +42384,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 2287: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 's') ADVANCE(3434); + if (lookahead == 's') ADVANCE(3425); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2288: @@ -42164,19 +42419,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 2294: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'y') ADVANCE(3434); + if (lookahead == 'y') ADVANCE(3425); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2295: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); + lookahead == 'b') ADVANCE(3420); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2297); END_STATE(); case 2296: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4002); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(3993); if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(2296); END_STATE(); case 2297: @@ -42185,3275 +42440,3220 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 2298: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(3252); + if (lookahead == '\n') ADVANCE(3244); if (lookahead == '\r') ADVANCE(4); if (lookahead == '/') ADVANCE(2299); if (lookahead == '=') ADVANCE(1104); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3224); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2652); + lookahead == ' ') ADVANCE(3216); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2644); END_STATE(); case 2299: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(3254); + if (lookahead == '\n') ADVANCE(3246); if (lookahead == '\r') ADVANCE(8); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3226); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + lookahead == ' ') ADVANCE(3218); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2300: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\n') ADVANCE(3253); + if (lookahead == '\n') ADVANCE(3245); if (lookahead == '\r') ADVANCE(14); - if (lookahead == 'u') ADVANCE(2480); + if (lookahead == 'u') ADVANCE(2474); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3225); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + lookahead == ' ') ADVANCE(3217); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2301: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(2352); - if (lookahead == '-') ADVANCE(3911); - if (lookahead == 'I') ADVANCE(2636); - if (lookahead == '_') ADVANCE(2352); - if (lookahead == 'i') ADVANCE(2636); + if (lookahead == '+') ADVANCE(2351); + if (lookahead == '-') ADVANCE(3902); + if (lookahead == 'I') ADVANCE(2628); + if (lookahead == '_') ADVANCE(2351); + if (lookahead == 'i') ADVANCE(2628); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3433); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3351); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + lookahead == 'b') ADVANCE(3424); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3343); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2302: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(2352); - if (lookahead == '-') ADVANCE(3911); - if (lookahead == 'I') ADVANCE(2636); - if (lookahead == '_') ADVANCE(2352); - if (lookahead == 'i') ADVANCE(2383); + if (lookahead == '+') ADVANCE(2351); + if (lookahead == '-') ADVANCE(3902); + if (lookahead == 'I') ADVANCE(2628); + if (lookahead == '_') ADVANCE(2351); + if (lookahead == 'i') ADVANCE(2377); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3433); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3351); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + lookahead == 'b') ADVANCE(3424); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3343); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2303: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(2352); - if (lookahead == '-') ADVANCE(4358); - if (lookahead == 'I') ADVANCE(2636); - if (lookahead == '_') ADVANCE(2352); - if (lookahead == 'i') ADVANCE(2636); + if (lookahead == '+') ADVANCE(2351); + if (lookahead == '-') ADVANCE(4349); + if (lookahead == 'I') ADVANCE(2628); + if (lookahead == '_') ADVANCE(2351); + if (lookahead == 'i') ADVANCE(2628); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3433); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3351); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + lookahead == 'b') ADVANCE(3424); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3343); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2304: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(2352); - if (lookahead == '-') ADVANCE(4358); - if (lookahead == 'I') ADVANCE(2636); - if (lookahead == '_') ADVANCE(2352); - if (lookahead == 'i') ADVANCE(2383); + if (lookahead == '+') ADVANCE(2351); + if (lookahead == '-') ADVANCE(4349); + if (lookahead == 'I') ADVANCE(2628); + if (lookahead == '_') ADVANCE(2351); + if (lookahead == 'i') ADVANCE(2377); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3433); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3351); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + lookahead == 'b') ADVANCE(3424); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3343); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2305: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(2352); - if (lookahead == '-') ADVANCE(4358); - if (lookahead == '_') ADVANCE(2352); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3351); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == '+') ADVANCE(2351); + if (lookahead == '-') ADVANCE(4349); + if (lookahead == '_') ADVANCE(2351); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3343); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2306: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(2423); - if (lookahead == '>') ADVANCE(3618); - if (lookahead == 'n') ADVANCE(2428); - if (lookahead == 'r') ADVANCE(3201); - if (lookahead == 'u') ADVANCE(2589); - if (lookahead == 'v') ADVANCE(2438); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == '+') ADVANCE(2417); + if (lookahead == '>') ADVANCE(3609); + if (lookahead == 'n') ADVANCE(2422); + if (lookahead == 'r') ADVANCE(3193); + if (lookahead == 'u') ADVANCE(2581); + if (lookahead == 'v') ADVANCE(2432); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2307: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(2503); - if (lookahead == '>') ADVANCE(3614); - if (lookahead == 'l') ADVANCE(2576); - if (lookahead == 'n') ADVANCE(2397); - if (lookahead == 'r') ADVANCE(2561); - if (lookahead == 'x') ADVANCE(2524); + if (lookahead == '+') ADVANCE(2496); + if (lookahead == '>') ADVANCE(3605); + if (lookahead == 'l') ADVANCE(2568); + if (lookahead == 'n') ADVANCE(2391); + if (lookahead == 'r') ADVANCE(2553); + if (lookahead == 'x') ADVANCE(2516); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2647); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2639); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2308: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(2506); - if (lookahead == '>') ADVANCE(3606); - if (lookahead == 'o') ADVANCE(2533); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == '+') ADVANCE(2499); + if (lookahead == '>') ADVANCE(3597); + if (lookahead == 'o') ADVANCE(2525); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2309: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(2506); - if (lookahead == '>') ADVANCE(3606); - if (lookahead == 'o') ADVANCE(2534); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == '+') ADVANCE(2499); + if (lookahead == '>') ADVANCE(3597); + if (lookahead == 'o') ADVANCE(2526); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2310: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(2508); - if (lookahead == '>') ADVANCE(851); - if (lookahead == 'l') ADVANCE(2580); - if (lookahead == 'r') ADVANCE(2539); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == '+') ADVANCE(2501); + if (lookahead == '>') ADVANCE(855); + if (lookahead == 'l') ADVANCE(2572); + if (lookahead == 'r') ADVANCE(2531); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2311: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(2427); - if (lookahead == '>') ADVANCE(852); - if (lookahead == 'n') ADVANCE(2432); - if (lookahead == 'r') ADVANCE(3202); - if (lookahead == 'u') ADVANCE(2602); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == '+') ADVANCE(2421); + if (lookahead == '>') ADVANCE(856); + if (lookahead == 'n') ADVANCE(2426); + if (lookahead == 'r') ADVANCE(3194); + if (lookahead == 'u') ADVANCE(2594); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2312: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(2513); - if (lookahead == '>') ADVANCE(854); - if (lookahead == 'o') ADVANCE(2537); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == '+') ADVANCE(2505); + if (lookahead == '>') ADVANCE(858); + if (lookahead == 'o') ADVANCE(2529); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2313: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(2434); - if (lookahead == '>') ADVANCE(3610); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == '+') ADVANCE(2428); + if (lookahead == '>') ADVANCE(3601); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2314: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(2439); - if (lookahead == '>') ADVANCE(856); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == '+') ADVANCE(2433); + if (lookahead == '>') ADVANCE(860); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2315: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(3555); + if (lookahead == '-') ADVANCE(3546); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3219); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + lookahead == ' ') ADVANCE(3211); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2316: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(3563); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == '-') ADVANCE(3554); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2317: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(3580); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == '-') ADVANCE(3571); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2318: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(3565); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == '-') ADVANCE(3556); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2319: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(3545); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == '-') ADVANCE(3536); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2320: ACCEPT_TOKEN(sym_identifier); if (lookahead == '-') ADVANCE(1160); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2321: ACCEPT_TOKEN(sym_identifier); if (lookahead == '-') ADVANCE(1217); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3219); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + lookahead == ' ') ADVANCE(3211); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2322: ACCEPT_TOKEN(sym_identifier); if (lookahead == '-') ADVANCE(1247); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2323: ACCEPT_TOKEN(sym_identifier); if (lookahead == '-') ADVANCE(1307); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2324: ACCEPT_TOKEN(sym_identifier); if (lookahead == '-') ADVANCE(1326); - if (lookahead == '_') ADVANCE(2361); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2365); + if (lookahead == '_') ADVANCE(2358); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2360); if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2647); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2639); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2325: ACCEPT_TOKEN(sym_identifier); if (lookahead == '-') ADVANCE(1254); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2326: ACCEPT_TOKEN(sym_identifier); if (lookahead == '-') ADVANCE(1172); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2327: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(757); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == '-') ADVANCE(762); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2328: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(640); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == '-') ADVANCE(645); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2329: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(738); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == '-') ADVANCE(747); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2330: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(910); - if (lookahead == '_') ADVANCE(2361); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2361); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == '-') ADVANCE(3572); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2331: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(3581); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == '-') ADVANCE(3559); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2332: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(3568); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == '-') ADVANCE(1308); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2333: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1308); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == '-') ADVANCE(1258); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2334: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1258); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == '-') ADVANCE(763); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2335: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(760); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == '-') ADVANCE(3573); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2336: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(3582); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == '-') ADVANCE(1309); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2337: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1309); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == '-') ADVANCE(848); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2338: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(842); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == '>') ADVANCE(3625); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2339: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '>') ADVANCE(3634); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == '>') ADVANCE(3621); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2340: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '>') ADVANCE(3630); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == '>') ADVANCE(3613); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2341: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '>') ADVANCE(3622); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == '>') ADVANCE(3617); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2342: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '>') ADVANCE(3626); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == '>') ADVANCE(857); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2343: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '>') ADVANCE(853); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == '>') ADVANCE(859); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2344: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '>') ADVANCE(855); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == '>') ADVANCE(861); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2345: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '>') ADVANCE(857); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == '>') ADVANCE(862); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2346: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '>') ADVANCE(858); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'I') ADVANCE(2628); + if (lookahead == 'i') ADVANCE(2628); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3424); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2347: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(2636); - if (lookahead == 'i') ADVANCE(2636); + if (lookahead == 'I') ADVANCE(2628); + if (lookahead == 'i') ADVANCE(2377); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3433); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + lookahead == 'b') ADVANCE(3424); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2348: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(2636); - if (lookahead == 'i') ADVANCE(2383); + if (lookahead == 'I') ADVANCE(2628); + if (lookahead == 'i') ADVANCE(2485); + if (lookahead == 's') ADVANCE(3429); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3433); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + lookahead == 'b') ADVANCE(3424); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2349: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(2636); - if (lookahead == 'i') ADVANCE(2492); - if (lookahead == 's') ADVANCE(3438); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3433); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'N') ADVANCE(2629); + if (lookahead == 'f') ADVANCE(3071); + if (lookahead == 'm') ADVANCE(2517); + if (lookahead == 'n') ADVANCE(3031); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2350: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N') ADVANCE(2637); - if (lookahead == 'f') ADVANCE(3079); - if (lookahead == 'm') ADVANCE(2525); - if (lookahead == 'n') ADVANCE(3039); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == '_') ADVANCE(2351); + if (lookahead == 'o') ADVANCE(2338); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3343); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2351: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(2352); - if (lookahead == 'o') ADVANCE(2339); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3351); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == '_') ADVANCE(2351); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3343); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2352: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(2352); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3351); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); - END_STATE(); - case 2353: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(2644); + if (lookahead == '_') ADVANCE(2636); if (lookahead == '0' || - lookahead == '1') ADVANCE(2353); + lookahead == '1') ADVANCE(2352); if (('2' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2647); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2639); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); + END_STATE(); + case 2353: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '_') ADVANCE(2353); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3319); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2354: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(2354); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3327); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == '_') ADVANCE(2358); + if (lookahead == 'b') ADVANCE(3414); + if (lookahead == 'o') ADVANCE(3430); + if (lookahead == 'x') ADVANCE(3436); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2357); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2639); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2355: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(2361); - if (lookahead == 'b') ADVANCE(3422); - if (lookahead == 'o') ADVANCE(3439); - if (lookahead == 'x') ADVANCE(3445); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2360); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2647); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == '_') ADVANCE(2358); + if (lookahead == 'b') ADVANCE(2636); + if (lookahead == 'o') ADVANCE(2638); + if (lookahead == 'x') ADVANCE(2643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2358); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2356: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(2361); - if (lookahead == 'b') ADVANCE(2644); - if (lookahead == 'o') ADVANCE(2646); - if (lookahead == 'x') ADVANCE(2651); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2361); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == '_') ADVANCE(2358); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2324); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2639); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2357: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(2361); - if (lookahead == 'b') ADVANCE(3423); - if (lookahead == 'o') ADVANCE(3439); - if (lookahead == 'x') ADVANCE(3445); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2362); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == '_') ADVANCE(2358); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2356); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2639); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2358: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(2361); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2324); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2647); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == '_') ADVANCE(2358); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2358); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2359: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(2361); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2330); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == '_') ADVANCE(2358); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2357); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2639); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2360: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(2361); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2358); + if (lookahead == '_') ADVANCE(2358); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2360); if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2647); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2639); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2361: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(2361); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2361); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'a') ADVANCE(2456); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2362: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(2361); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2359); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'a') ADVANCE(2624); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2363: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(2361); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2360); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2647); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'a') ADVANCE(2476); + if (lookahead == 'o') ADVANCE(2523); + if (lookahead == 'u') ADVANCE(2479); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('b' <= lookahead && lookahead <= 'f')) ADVANCE(2639); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2364: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(2361); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2362); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'a') ADVANCE(2457); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2365: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(2361); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2365); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2647); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'a') ADVANCE(2625); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2366: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2462); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'a') ADVANCE(2623); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2367: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2632); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'a') ADVANCE(2560); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2368: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2482); - if (lookahead == 'o') ADVANCE(2531); - if (lookahead == 'u') ADVANCE(2485); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('b' <= lookahead && lookahead <= 'f')) ADVANCE(2647); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'a') ADVANCE(2561); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2369: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2463); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'a') ADVANCE(2477); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2370: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2633); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'a') ADVANCE(2541); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2371: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2631); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'a') ADVANCE(2540); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2372: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2568); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'a') ADVANCE(2599); + if (lookahead == 'e') ADVANCE(2480); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2373: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2569); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'a') ADVANCE(2542); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2374: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2483); - if (lookahead == 'u') ADVANCE(2487); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'a') ADVANCE(2459); + if (lookahead == 'o') ADVANCE(2388); + if (lookahead == 'u') ADVANCE(2584); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2375: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2483); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'a') ADVANCE(2546); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2376: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2549); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'a') ADVANCE(2598); + if (lookahead == 'e') ADVANCE(2478); + if (lookahead == 'o') ADVANCE(2494); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('b' <= lookahead && lookahead <= 'f')) ADVANCE(2639); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2377: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2548); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'b') ADVANCE(3424); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2378: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2607); - if (lookahead == 'e') ADVANCE(2486); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'c') ADVANCE(3429); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2379: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2550); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'c') ADVANCE(2440); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2380: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2465); - if (lookahead == 'o') ADVANCE(2394); - if (lookahead == 'u') ADVANCE(2592); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'c') ADVANCE(2441); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2381: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2554); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'c') ADVANCE(2442); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2382: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(2606); - if (lookahead == 'e') ADVANCE(2484); - if (lookahead == 'o') ADVANCE(2501); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('b' <= lookahead && lookahead <= 'f')) ADVANCE(2647); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'c') ADVANCE(2443); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2383: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'b') ADVANCE(3433); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'c') ADVANCE(2444); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2384: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(3438); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'c') ADVANCE(2408); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2385: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(2446); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'c') ADVANCE(2411); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2386: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(2447); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'd') ADVANCE(3186); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2387: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(2448); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'd') ADVANCE(3185); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2388: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(2449); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'd') ADVANCE(2300); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2389: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(2450); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'd') ADVANCE(2617); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2390: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(2414); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'd') ADVANCE(2573); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2391: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(2417); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'd') ADVANCE(2574); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2392: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(3194); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'd') ADVANCE(2397); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2393: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(3193); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'd') ADVANCE(2405); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2394: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(2300); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'e') ADVANCE(2378); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2395: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(2625); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'e') ADVANCE(2316); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2396: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(2581); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'e') ADVANCE(3077); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2397: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(2582); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'e') ADVANCE(3145); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2398: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(2403); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'e') ADVANCE(3049); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2399: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(2411); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'e') ADVANCE(2155); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2400: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2384); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'e') ADVANCE(2900); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2401: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2316); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'e') ADVANCE(2200); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2402: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3085); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'e') ADVANCE(3183); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2403: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3153); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'e') ADVANCE(3055); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2404: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3057); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'e') ADVANCE(3079); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2405: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2155); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'e') ADVANCE(3146); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2406: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2908); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'e') ADVANCE(3051); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2407: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2200); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'e') ADVANCE(2891); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2408: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3191); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'e') ADVANCE(3128); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2409: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3063); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'e') ADVANCE(3057); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2410: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3087); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'e') ADVANCE(2893); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2411: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3154); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'e') ADVANCE(3129); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2412: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3059); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'e') ADVANCE(3018); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2413: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2899); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'e') ADVANCE(3020); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2414: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3136); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'e') ADVANCE(3082); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2415: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3065); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'e') ADVANCE(2437); + if (lookahead == 'o') ADVANCE(3064); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2639); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2416: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2901); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'e') ADVANCE(2621); + if (lookahead == 'o') ADVANCE(2593); + if (lookahead == 'u') ADVANCE(2462); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2632); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2417: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3137); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'e') ADVANCE(2339); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2418: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3026); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'e') ADVANCE(2361); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2419: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3028); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'e') ADVANCE(2364); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2420: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3090); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'e') ADVANCE(2538); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2421: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2443); - if (lookahead == 'o') ADVANCE(3072); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2647); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'e') ADVANCE(2343); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2422: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2629); - if (lookahead == 'o') ADVANCE(2601); - if (lookahead == 'u') ADVANCE(2468); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2640); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'e') ADVANCE(2322); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2423: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2340); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'e') ADVANCE(2583); + if (lookahead == 'i') ADVANCE(2567); + if (lookahead == 'o') ADVANCE(2498); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2424: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2366); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'e') ADVANCE(2543); + if (lookahead == 'i') ADVANCE(2471); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2425: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2369); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'e') ADVANCE(2543); + if (lookahead == 'i') ADVANCE(2473); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2426: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2546); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'e') ADVANCE(2329); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2427: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2344); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'e') ADVANCE(2533); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2428: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2322); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'e') ADVANCE(2548); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2429: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2591); - if (lookahead == 'i') ADVANCE(2575); - if (lookahead == 'o') ADVANCE(2505); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'e') ADVANCE(2537); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2430: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2551); - if (lookahead == 'i') ADVANCE(2477); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'e') ADVANCE(2527); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2431: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2551); - if (lookahead == 'i') ADVANCE(2479); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'e') ADVANCE(2528); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2432: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2329); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'e') ADVANCE(2555); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2433: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2541); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'e') ADVANCE(2551); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2434: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2556); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'e') ADVANCE(2439); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2435: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2545); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'e') ADVANCE(2480); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2436: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2535); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'f') ADVANCE(2873); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(2639); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2437: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2536); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'f') ADVANCE(2875); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'e')) ADVANCE(2639); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2438: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2563); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'g') ADVANCE(2451); + if (lookahead == 't') ADVANCE(2611); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2439: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2559); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'g') ADVANCE(2454); + if (lookahead == 't') ADVANCE(2613); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2440: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2445); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'h') ADVANCE(3115); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2441: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(2486); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'h') ADVANCE(3085); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2442: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'f') ADVANCE(2881); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(2647); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'h') ADVANCE(3117); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2443: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'f') ADVANCE(2883); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'e')) ADVANCE(2647); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'h') ADVANCE(3087); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2444: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'g') ADVANCE(2457); - if (lookahead == 't') ADVANCE(2619); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'h') ADVANCE(3120); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2445: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'g') ADVANCE(2460); - if (lookahead == 't') ADVANCE(2621); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'h') ADVANCE(2425); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2446: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'h') ADVANCE(3123); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'i') ADVANCE(2492); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2447: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'h') ADVANCE(3093); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'i') ADVANCE(2367); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2448: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'h') ADVANCE(3125); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'i') ADVANCE(2596); + if (lookahead == 'r') ADVANCE(2419); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2639); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2449: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'h') ADVANCE(3095); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'i') ADVANCE(2368); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2450: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'h') ADVANCE(3128); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'i') ADVANCE(2393); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2451: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'h') ADVANCE(2431); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'i') ADVANCE(2569); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2452: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(2499); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'i') ADVANCE(2571); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2453: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(2372); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'i') ADVANCE(2495); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2454: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(2604); - if (lookahead == 'r') ADVANCE(2425); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2647); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'i') ADVANCE(2575); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2455: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(2373); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'k') ADVANCE(3429); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2456: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(2399); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'k') ADVANCE(3012); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2457: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(2577); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'k') ADVANCE(3014); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2458: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(2579); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'k') ADVANCE(2398); + if (lookahead == 't') ADVANCE(2380); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2459: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(2502); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'k') ADVANCE(2406); + if (lookahead == 't') ADVANCE(2382); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2460: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(2583); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'l') ADVANCE(2208); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2461: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'k') ADVANCE(3438); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'l') ADVANCE(2463); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2639); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2462: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'k') ADVANCE(3020); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'l') ADVANCE(2460); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2463: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'k') ADVANCE(3022); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'l') ADVANCE(2318); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2464: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'k') ADVANCE(2404); - if (lookahead == 't') ADVANCE(2386); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'l') ADVANCE(2319); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2465: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'k') ADVANCE(2412); - if (lookahead == 't') ADVANCE(2388); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'l') ADVANCE(2362); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2466: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2208); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'l') ADVANCE(2365); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2467: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2469); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2647); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'l') ADVANCE(2325); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2468: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2466); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'l') ADVANCE(2326); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2469: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2318); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'l') ADVANCE(2327); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2470: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2319); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'l') ADVANCE(2328); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2471: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2367); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'l') ADVANCE(2403); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2472: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2370); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'l') ADVANCE(2407); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2473: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2325); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'l') ADVANCE(2409); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2474: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2326); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'l') ADVANCE(2410); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2475: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2327); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'l') ADVANCE(2464); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2476: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2328); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'l') ADVANCE(2566); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2639); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2477: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2409); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'l') ADVANCE(2566); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2478: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2413); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'l') ADVANCE(2467); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2639); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2479: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2415); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'l') ADVANCE(2468); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2480: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2416); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'l') ADVANCE(2469); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2481: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'l') ADVANCE(2470); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2482: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2574); + if (lookahead == 'l') ADVANCE(2449); + if (lookahead == 'n') ADVANCE(2387); + if (lookahead == 's') ADVANCE(3171); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2647); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2639); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2483: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2574); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'm') ADVANCE(2518); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2484: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2473); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2647); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'n') ADVANCE(2386); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2485: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2474); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'n') ADVANCE(3429); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3424); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2486: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2475); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'n') ADVANCE(2564); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2487: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2476); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'n') ADVANCE(2884); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2488: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(2455); - if (lookahead == 'n') ADVANCE(2393); - if (lookahead == 's') ADVANCE(3179); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2647); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'n') ADVANCE(3122); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2489: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'm') ADVANCE(2526); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2637); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'n') ADVANCE(2886); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2490: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'm') ADVANCE(2526); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'n') ADVANCE(3124); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2491: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(2392); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'n') ADVANCE(3040); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2492: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(3438); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3433); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'n') ADVANCE(2614); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2493: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(2572); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'n') ADVANCE(2426); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2494: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(2892); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'n') ADVANCE(2570); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2495: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(3130); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'n') ADVANCE(2615); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2496: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(2894); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'o') ADVANCE(2338); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2497: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(3132); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'o') ADVANCE(2512); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2498: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(3048); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'o') ADVANCE(2513); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2499: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(2622); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'o') ADVANCE(2612); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2500: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(2432); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'o') ADVANCE(2522); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2501: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(2578); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'o') ADVANCE(2342); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2502: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(2623); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'o') ADVANCE(2524); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2503: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2339); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'o') ADVANCE(2529); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2504: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2520); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'o') ADVANCE(2591); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2632); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2505: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2521); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'o') ADVANCE(2616); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2506: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2620); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'o') ADVANCE(2544); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2507: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2530); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'o') ADVANCE(2545); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2508: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2343); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'o') ADVANCE(2547); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2509: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2532); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'o') ADVANCE(2549); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2510: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2598); - if (lookahead == 'u') ADVANCE(2468); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2640); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'o') ADVANCE(2550); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2511: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2598); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2640); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'o') ADVANCE(2618); + if (lookahead == 't') ADVANCE(2375); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2512: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2537); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'p') ADVANCE(3042); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2513: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2624); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'p') ADVANCE(3044); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2514: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2552); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'p') ADVANCE(2506); + if (lookahead == 't') ADVANCE(2427); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2515: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2553); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'p') ADVANCE(2507); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2516: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2555); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'p') ADVANCE(2508); + if (lookahead == 't') ADVANCE(2429); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2517: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2557); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'p') ADVANCE(2509); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2518: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2558); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'p') ADVANCE(2510); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2519: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(2626); - if (lookahead == 't') ADVANCE(2381); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'r') ADVANCE(3429); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2520: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(3050); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'r') ADVANCE(2308); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2521: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(3052); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'r') ADVANCE(3024); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2522: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(2514); - if (lookahead == 't') ADVANCE(2433); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'r') ADVANCE(3190); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2523: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(2515); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'r') ADVANCE(3026); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2524: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(2516); - if (lookahead == 't') ADVANCE(2435); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'r') ADVANCE(3189); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2525: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(2517); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'r') ADVANCE(2920); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2526: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(2518); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'r') ADVANCE(2922); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2527: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(3438); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'r') ADVANCE(3138); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2528: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2308); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'r') ADVANCE(3140); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2529: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(3032); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'r') ADVANCE(2925); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2530: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(3198); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'r') ADVANCE(2609); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2531: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(3034); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'r') ADVANCE(2312); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2532: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(3197); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'r') ADVANCE(2317); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2533: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2928); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'r') ADVANCE(2487); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2534: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2930); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'r') ADVANCE(2384); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2535: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(3146); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'r') ADVANCE(2488); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2536: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(3148); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'r') ADVANCE(2341); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2537: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2933); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'r') ADVANCE(2489); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2538: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2617); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'r') ADVANCE(2465); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2539: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2312); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'r') ADVANCE(2490); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2540: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2317); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'r') ADVANCE(2323); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2541: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2494); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'r') ADVANCE(2605); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2542: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2390); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'r') ADVANCE(2337); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2543: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2495); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'r') ADVANCE(2402); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2544: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2342); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'r') ADVANCE(2587); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2545: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2496); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'r') ADVANCE(2602); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2546: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2471); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'r') ADVANCE(2606); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2547: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2497); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'r') ADVANCE(2589); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2548: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2323); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'r') ADVANCE(2536); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2549: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2613); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'r') ADVANCE(2603); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2550: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2338); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'r') ADVANCE(2604); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2551: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2408); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'r') ADVANCE(2556); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2552: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2595); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'r') ADVANCE(2558); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2553: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2610); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'r') ADVANCE(2309); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2554: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2614); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'r') ADVANCE(2385); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2555: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2597); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'r') ADVANCE(2466); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2556: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2544); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'r') ADVANCE(2345); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2557: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2611); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'r') ADVANCE(2610); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2558: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2612); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'r') ADVANCE(2503); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2559: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2564); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 's') ADVANCE(3429); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2560: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2566); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 's') ADVANCE(1067); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2561: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2309); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 's') ADVANCE(1069); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2562: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2391); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 's') ADVANCE(2582); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2563: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2472); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 's') ADVANCE(2396); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2564: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2346); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 's') ADVANCE(2585); + if (lookahead == 't') ADVANCE(2446); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2565: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2618); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 's') ADVANCE(2400); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2566: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(2512); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 's') ADVANCE(2401); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2567: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(3438); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 's') ADVANCE(2586); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2568: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(1067); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 's') ADVANCE(2404); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2569: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(1069); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 's') ADVANCE(2600); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2570: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(2590); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 's') ADVANCE(2588); + if (lookahead == 't') ADVANCE(2453); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2571: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(2402); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 's') ADVANCE(2590); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2572: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(2593); - if (lookahead == 't') ADVANCE(2452); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 's') ADVANCE(2414); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2573: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(2406); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 's') ADVANCE(2330); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2574: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(2407); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 's') ADVANCE(2332); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2575: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(2594); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 's') ADVANCE(2601); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2576: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(2410); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 's') ADVANCE(2335); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2577: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(2608); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 's') ADVANCE(2336); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2578: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(2596); - if (lookahead == 't') ADVANCE(2459); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 't') ADVANCE(1078); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2579: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(2599); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 't') ADVANCE(1088); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2580: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(2420); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 't') ADVANCE(2315); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2581: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(2331); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 't') ADVANCE(2313); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2582: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(2333); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 't') ADVANCE(2932); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2583: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(2609); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 't') ADVANCE(1079); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2584: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(2336); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 't') ADVANCE(1090); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2585: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(2337); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 't') ADVANCE(1095); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2586: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(1078); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 't') ADVANCE(2934); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2587: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(1088); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 't') ADVANCE(1060); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2588: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2315); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 't') ADVANCE(1097); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2589: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2313); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 't') ADVANCE(1061); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2590: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2940); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 't') ADVANCE(2937); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2591: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(1079); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 't') ADVANCE(2637); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2592: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(1090); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 't') ADVANCE(2379); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2639); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2593: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(1095); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 't') ADVANCE(2321); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2594: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2942); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 't') ADVANCE(2314); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2595: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(1060); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 't') ADVANCE(2340); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2596: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(1097); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 't') ADVANCE(2320); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2597: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(1061); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 't') ADVANCE(2344); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2598: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2645); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 't') ADVANCE(2381); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2639); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2599: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2945); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 't') ADVANCE(2383); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2600: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2385); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2647); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 't') ADVANCE(2430); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2601: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2321); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 't') ADVANCE(2431); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2602: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2314); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 't') ADVANCE(2331); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2603: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2341); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 't') ADVANCE(2333); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2604: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2320); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 't') ADVANCE(2334); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2605: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2345); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 't') ADVANCE(2576); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2606: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2387); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2647); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 't') ADVANCE(2577); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2607: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2389); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'u') ADVANCE(2534); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2608: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2436); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'u') ADVANCE(2399); + if (lookahead == 'y') ADVANCE(3108); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2609: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2437); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'u') ADVANCE(2399); + if (lookahead == 'y') ADVANCE(3110); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2610: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2332); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'u') ADVANCE(2399); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2611: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2334); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'u') ADVANCE(2535); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2612: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2335); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'u') ADVANCE(2595); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2613: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2584); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'u') ADVANCE(2539); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2614: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(2585); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'u') ADVANCE(2412); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2615: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(2542); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'u') ADVANCE(2413); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2616: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(2405); - if (lookahead == 'y') ADVANCE(3116); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'u') ADVANCE(2597); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2617: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(2405); - if (lookahead == 'y') ADVANCE(3118); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'u') ADVANCE(2472); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2618: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(2405); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'u') ADVANCE(2554); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2619: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(2543); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'u') ADVANCE(2481); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2620: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(2603); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'w') ADVANCE(3162); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2621: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(2547); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'w') ADVANCE(3164); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2622: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(2418); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'y') ADVANCE(3429); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2639); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2623: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(2419); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'y') ADVANCE(3429); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2624: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(2605); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'y') ADVANCE(3155); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2625: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(2478); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'y') ADVANCE(3157); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2626: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(2562); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == '{') ADVANCE(919); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2642); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2627: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(2487); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2632); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2628: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'w') ADVANCE(3170); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3424); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2629: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'w') ADVANCE(3172); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2212); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2630: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'y') ADVANCE(3438); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2647); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2634); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2631: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'y') ADVANCE(3438); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2629); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2632: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'y') ADVANCE(3163); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2233); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2633: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'y') ADVANCE(3165); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2630); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2634: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '{') ADVANCE(915); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2650); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2635); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2635: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2640); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2222); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2636: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3433); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(2636); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2637: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2212); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(3211); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2638: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2642); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(2638); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2639: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2637); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2639); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2640: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2233); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3491); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2641: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2638); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2640); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2642: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2643); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2641); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2643: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2222); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2643); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2644: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(2644); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2645: - ACCEPT_TOKEN(sym_identifier); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3219); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '+') ADVANCE(3792); + if (lookahead == '>') ADVANCE(3605); + if (lookahead == 'r') ADVANCE(2746); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2646: - ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(2646); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '+') ADVANCE(3785); + if (lookahead == '>') ADVANCE(3609); + if (lookahead == 'u') ADVANCE(2770); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2647: - ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2647); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '+') ADVANCE(673); + if (lookahead == '>') ADVANCE(856); + if (lookahead == 'u') ADVANCE(2772); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2648: - ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3500); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '+') ADVANCE(3793); + if (lookahead == '>') ADVANCE(3597); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2649: - ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2648); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '+') ADVANCE(3786); + if (lookahead == '>') ADVANCE(3601); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2650: - ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2649); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '+') ADVANCE(741); + if (lookahead == '>') ADVANCE(855); + if (lookahead == 'r') ADVANCE(2749); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2651: - ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2651); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '+') ADVANCE(742); + if (lookahead == '>') ADVANCE(858); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2652: - ACCEPT_TOKEN(sym_identifier); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (lookahead == '+') ADVANCE(671); + if (lookahead == '>') ADVANCE(860); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2653: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(3801); - if (lookahead == '>') ADVANCE(3614); - if (lookahead == 'r') ADVANCE(2754); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == '-') ADVANCE(2813); + if (lookahead == '_') ADVANCE(2668); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2668); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2654: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(3794); - if (lookahead == '>') ADVANCE(3618); - if (lookahead == 'u') ADVANCE(2778); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == '-') ADVANCE(2692); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2835); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1930); END_STATE(); case 2655: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(3802); - if (lookahead == '>') ADVANCE(3606); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == '-') ADVANCE(2694); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2844); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1962); END_STATE(); case 2656: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(3795); - if (lookahead == '>') ADVANCE(3610); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == '-') ADVANCE(2697); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2850); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2149); END_STATE(); case 2657: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(671); - if (lookahead == '>') ADVANCE(852); - if (lookahead == 'u') ADVANCE(2780); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == '-') ADVANCE(2699); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2852); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1982); END_STATE(); case 2658: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(739); - if (lookahead == '>') ADVANCE(851); - if (lookahead == 'r') ADVANCE(2757); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == '-') ADVANCE(2815); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2659: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(741); - if (lookahead == '>') ADVANCE(854); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == '-') ADVANCE(2819); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2660: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(670); - if (lookahead == '>') ADVANCE(856); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == '-') ADVANCE(2821); + if (lookahead == '_') ADVANCE(2668); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2668); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2661: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(2821); - if (lookahead == '_') ADVANCE(2676); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2676); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == ':') ADVANCE(907); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2662: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(2700); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2843); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1930); + if (lookahead == ':') ADVANCE(3836); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2663: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(2702); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2852); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'N') ADVANCE(2793); + if (lookahead == 'f') ADVANCE(2826); + if (lookahead == 'n') ADVANCE(2794); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2664: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(2705); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2858); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2149); + if (lookahead == 'T') ADVANCE(2816); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2665: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(2707); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2860); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1982); + if (lookahead == 'T') ADVANCE(2817); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2666: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(2823); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == '_') ADVANCE(2668); + if (lookahead == 'b') ADVANCE(3418); + if (lookahead == 'o') ADVANCE(3434); + if (lookahead == 'x') ADVANCE(3440); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2670); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2667: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(2827); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == '_') ADVANCE(2668); + if (lookahead == 'b') ADVANCE(3418); + if (lookahead == 'o') ADVANCE(3434); + if (lookahead == 'x') ADVANCE(3440); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2673); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2668: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(2829); - if (lookahead == '_') ADVANCE(2676); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2676); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == '_') ADVANCE(2668); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2668); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2669: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == ':') ADVANCE(903); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == '_') ADVANCE(2668); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2653); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2670: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == ':') ADVANCE(3845); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == '_') ADVANCE(2668); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2669); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2671: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N') ADVANCE(2801); - if (lookahead == 'f') ADVANCE(2834); - if (lookahead == 'n') ADVANCE(2802); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == '_') ADVANCE(2668); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2670); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2672: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'T') ADVANCE(2824); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == '_') ADVANCE(2668); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2660); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2673: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'T') ADVANCE(2825); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == '_') ADVANCE(2668); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2672); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2674: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(2676); - if (lookahead == 'b') ADVANCE(3427); - if (lookahead == 'o') ADVANCE(3443); - if (lookahead == 'x') ADVANCE(3449); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2678); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == '_') ADVANCE(2668); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2673); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2675: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(2676); - if (lookahead == 'b') ADVANCE(3427); - if (lookahead == 'o') ADVANCE(3443); - if (lookahead == 'x') ADVANCE(3449); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2681); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'a') ADVANCE(2721); + if (lookahead == 'o') ADVANCE(2755); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2676: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(2676); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2676); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'a') ADVANCE(2721); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2677: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(2676); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2661); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'a') ADVANCE(2720); + if (lookahead == 'o') ADVANCE(2685); + if (lookahead == 'u') ADVANCE(2773); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2678: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(2676); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2677); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'a') ADVANCE(2719); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2679: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(2676); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2678); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'a') ADVANCE(2790); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2680: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(2676); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2668); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'a') ADVANCE(2767); + if (lookahead == 'o') ADVANCE(2729); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2681: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(2676); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2680); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'a') ADVANCE(2763); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2682: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(2676); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2681); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'c') ADVANCE(2712); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2683: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(2729); - if (lookahead == 'o') ADVANCE(2763); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'c') ADVANCE(2698); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2684: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(2729); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'c') ADVANCE(2713); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2685: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(2728); - if (lookahead == 'o') ADVANCE(2693); - if (lookahead == 'u') ADVANCE(2781); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'd') ADVANCE(2783); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2686: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(2727); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'd') ADVANCE(2693); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2687: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(2798); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'e') ADVANCE(2153); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2688: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(2775); - if (lookahead == 'o') ADVANCE(2737); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'e') ADVANCE(2198); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2689: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(2771); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'e') ADVANCE(2709); + if (lookahead == 'o') ADVANCE(2825); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2690: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'c') ADVANCE(2720); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'e') ADVANCE(2789); + if (lookahead == 'u') ADVANCE(2724); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2799); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2691: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'c') ADVANCE(2706); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'e') ADVANCE(2710); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2692: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'c') ADVANCE(2721); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'e') ADVANCE(2730); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2835); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1930); END_STATE(); case 2693: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'd') ADVANCE(2791); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'e') ADVANCE(2655); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2694: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'd') ADVANCE(2701); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'e') ADVANCE(2732); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2844); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1962); END_STATE(); case 2695: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2153); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'e') ADVANCE(2678); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2696: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2198); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'e') ADVANCE(2768); + if (lookahead == 'i') ADVANCE(2764); + if (lookahead == 'o') ADVANCE(2738); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2697: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2717); - if (lookahead == 'o') ADVANCE(2833); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'e') ADVANCE(2733); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2850); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2149); END_STATE(); case 2698: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2797); - if (lookahead == 'u') ADVANCE(2732); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2807); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'e') ADVANCE(2657); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2699: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2718); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'e') ADVANCE(2734); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2852); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1982); END_STATE(); case 2700: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2738); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2843); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1930); + if (lookahead == 'e') ADVANCE(2753); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2701: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2663); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'e') ADVANCE(2833); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2702: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2740); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2852); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'e') ADVANCE(2751); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2703: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2686); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'e') ADVANCE(2834); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2704: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2776); - if (lookahead == 'i') ADVANCE(2772); - if (lookahead == 'o') ADVANCE(2746); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'e') ADVANCE(2838); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2705: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2741); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2858); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2149); + if (lookahead == 'e') ADVANCE(2846); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2706: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2665); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'e') ADVANCE(2848); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2707: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2742); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2860); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1982); + if (lookahead == 'e') ADVANCE(2853); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2708: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2761); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'e') ADVANCE(2757); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2709: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2841); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'f') ADVANCE(2827); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2710: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2759); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'g') ADVANCE(2718); + if (lookahead == 't') ADVANCE(2781); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2711: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2842); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'h') ADVANCE(2717); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2712: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2846); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'h') ADVANCE(2841); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2713: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2854); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'h') ADVANCE(2845); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2714: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2856); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'i') ADVANCE(2686); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2715: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2861); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'i') ADVANCE(2681); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2716: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(2765); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'i') ADVANCE(2737); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2717: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'f') ADVANCE(2835); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'i') ADVANCE(2727); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2718: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'g') ADVANCE(2726); - if (lookahead == 't') ADVANCE(2789); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'i') ADVANCE(2761); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2719: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'h') ADVANCE(2725); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'k') ADVANCE(2840); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2720: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'h') ADVANCE(2849); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'k') ADVANCE(2704); + if (lookahead == 't') ADVANCE(2684); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2721: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'h') ADVANCE(2853); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'l') ADVANCE(2760); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2722: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(2694); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'l') ADVANCE(2206); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2723: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(2689); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'l') ADVANCE(2715); + if (lookahead == 's') ADVANCE(2824); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2724: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(2745); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'l') ADVANCE(2722); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2725: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(2735); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'l') ADVANCE(2679); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2726: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(2769); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'l') ADVANCE(2765); + if (lookahead == 'r') ADVANCE(2750); + if (lookahead == 'x') ADVANCE(2744); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2727: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'k') ADVANCE(2848); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'l') ADVANCE(2705); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2728: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'k') ADVANCE(2712); - if (lookahead == 't') ADVANCE(2692); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'l') ADVANCE(2706); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2729: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(2768); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'n') ADVANCE(2766); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2730: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(2206); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'n') ADVANCE(2785); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2835); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1930); END_STATE(); case 2731: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(2723); - if (lookahead == 's') ADVANCE(2832); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'n') ADVANCE(3038); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2732: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(2730); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'n') ADVANCE(2786); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2844); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1962); END_STATE(); case 2733: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(2687); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'n') ADVANCE(2788); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2850); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2149); END_STATE(); case 2734: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(2773); - if (lookahead == 'r') ADVANCE(2758); - if (lookahead == 'x') ADVANCE(2752); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'n') ADVANCE(2787); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2852); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1982); END_STATE(); case 2735: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(2713); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'n') ADVANCE(2847); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2736: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(2714); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'n') ADVANCE(2849); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2737: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(2774); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'n') ADVANCE(2782); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2738: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(2793); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2843); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1930); + if (lookahead == 'o') ADVANCE(2743); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2739: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(3046); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'o') ADVANCE(2780); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2740: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(2794); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2852); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'o') ADVANCE(2769); + if (lookahead == 'u') ADVANCE(2724); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2799); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2741: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(2796); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2858); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2149); + if (lookahead == 'o') ADVANCE(2756); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2742: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(2795); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2860); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1982); + if (lookahead == 'o') ADVANCE(2754); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2743: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(2855); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'p') ADVANCE(2837); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2744: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(2857); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'p') ADVANCE(2742); + if (lookahead == 't') ADVANCE(2702); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2745: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(2790); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'r') ADVANCE(2778); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2746: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(2751); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'r') ADVANCE(2648); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2747: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(2788); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'r') ADVANCE(2777); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2748: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(2777); - if (lookahead == 'u') ADVANCE(2732); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2807); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'r') ADVANCE(2683); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2749: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(2764); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'r') ADVANCE(2651); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2750: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(2762); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'r') ADVANCE(2741); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2751: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'p') ADVANCE(2845); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'r') ADVANCE(2735); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2752: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'p') ADVANCE(2750); - if (lookahead == 't') ADVANCE(2710); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'r') ADVANCE(2695); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2753: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2786); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'r') ADVANCE(2725); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2754: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2655); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'r') ADVANCE(2771); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2755: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2785); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'r') ADVANCE(2828); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2756: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2691); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'r') ADVANCE(2843); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2757: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2659); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'r') ADVANCE(2854); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2758: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2749); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'r') ADVANCE(2736); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2759: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2743); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 's') ADVANCE(3174); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2760: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2703); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 's') ADVANCE(2688); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2761: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2733); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 's') ADVANCE(2776); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2762: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2779); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 's') ADVANCE(2701); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2763: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2836); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 's') ADVANCE(2839); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2764: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2851); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 's') ADVANCE(2774); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2765: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2862); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 's') ADVANCE(2703); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2766: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(2744); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 's') ADVANCE(2775); + if (lookahead == 't') ADVANCE(2716); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2767: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(3182); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 't') ADVANCE(2682); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2768: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(2696); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 't') ADVANCE(2654); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2769: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(2784); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 't') ADVANCE(2808); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2770: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(2709); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 't') ADVANCE(2649); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2771: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(2847); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 't') ADVANCE(2656); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2772: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(2782); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 't') ADVANCE(2652); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2773: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(2711); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 't') ADVANCE(2830); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2774: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(2783); - if (lookahead == 't') ADVANCE(2724); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 't') ADVANCE(2836); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2775: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(2690); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 't') ADVANCE(2842); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2776: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(2662); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 't') ADVANCE(2708); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2777: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(2816); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'u') ADVANCE(2687); + if (lookahead == 'y') ADVANCE(2832); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2778: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(2656); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'u') ADVANCE(2687); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2779: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(2664); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'u') ADVANCE(2724); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2799); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2780: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(2660); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'u') ADVANCE(2748); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2781: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(2838); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'u') ADVANCE(2758); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2782: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(2844); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'u') ADVANCE(2707); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2783: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(2850); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'u') ADVANCE(2728); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2784: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(2716); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'v') ADVANCE(2700); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2785: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(2695); - if (lookahead == 'y') ADVANCE(2840); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'v') ADVANCE(2835); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2835); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1930); END_STATE(); case 2786: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(2695); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'v') ADVANCE(2844); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2844); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1962); END_STATE(); case 2787: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(2732); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2807); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'v') ADVANCE(2852); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2852); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1982); END_STATE(); case 2788: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(2756); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'v') ADVANCE(2855); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2850); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2149); END_STATE(); case 2789: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(2766); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'w') ADVANCE(2831); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2790: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(2715); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'y') ADVANCE(2851); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2791: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(2736); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == '-' || + lookahead == '?') ADVANCE(2823); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2791); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 2792: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(2708); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2799); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2793: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(2843); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2843); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1930); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2798); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2794: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(2852); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2852); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1962); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2796); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2829); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2111); END_STATE(); case 2795: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(2860); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2860); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1982); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2803); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2796: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(2863); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2858); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2149); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2802); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2829); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2111); END_STATE(); case 2797: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'w') ADVANCE(2839); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2804); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2829); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2111); END_STATE(); case 2798: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'y') ADVANCE(2859); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(2801); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2799: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-' || - lookahead == '?') ADVANCE(2831); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2799); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2823); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2800: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2807); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2793); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2801: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2806); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2795); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2802: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2804); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2837); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2797); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2829); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2111); END_STATE(); case 2803: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2811); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2805); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2804: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2810); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2837); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(2806); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2829); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2111); END_STATE(); case 2805: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2812); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2837); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2111); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2823); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2806: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(2809); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2829); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2829); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2111); END_STATE(); case 2807: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2831); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(2807); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2808: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2801); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(3211); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2809: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2803); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(2809); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2810: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2805); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2837); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2111); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2658); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2811: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2813); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2664); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2812: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(2814); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2837); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2111); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2662); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2813: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2831); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2810); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2814: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2837); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2837); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2111); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2661); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2815: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(2815); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2811); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2816: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3219); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2812); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2817: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(2817); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2814); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2818: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2666); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2665); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2819: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2672); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2818); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2820: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2670); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2659); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2821: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2818); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2820); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2822: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2669); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2822); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2823: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2819); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); case 2824: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2820); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2824); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2078); END_STATE(); case 2825: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2822); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2825); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2024); END_STATE(); case 2826: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2673); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2826); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2030); END_STATE(); case 2827: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2826); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2827); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1883); END_STATE(); case 2828: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2667); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2828); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2000); END_STATE(); case 2829: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2828); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2829); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2111); END_STATE(); case 2830: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2830); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2830); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1936); END_STATE(); case 2831: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2123); END_STATE(); case 2832: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2832); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2078); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2042); END_STATE(); case 2833: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2833); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2024); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1895); END_STATE(); case 2834: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2834); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2030); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2036); END_STATE(); case 2835: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2835); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1883); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1930); END_STATE(); case 2836: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2836); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2000); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2117); END_STATE(); case 2837: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2837); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2111); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2006); END_STATE(); case 2838: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2838); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1936); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2129); END_STATE(); case 2839: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2839); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2123); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1889); END_STATE(); case 2840: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2840); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2042); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2060); END_STATE(); case 2841: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2841); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1895); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); END_STATE(); case 2842: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2842); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2036); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1942); END_STATE(); case 2843: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2843); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1930); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2018); END_STATE(); case 2844: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2844); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2117); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1962); END_STATE(); case 2845: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2845); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2006); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2054); END_STATE(); case 2846: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2846); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2129); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2012); END_STATE(); case 2847: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2847); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1889); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1904); END_STATE(); case 2848: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2848); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2060); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1910); END_STATE(); case 2849: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2849); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2072); END_STATE(); case 2850: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2850); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1942); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2149); END_STATE(); case 2851: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2851); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2018); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1988); END_STATE(); case 2852: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2852); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1962); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1982); END_STATE(); case 2853: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2853); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2054); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2066); END_STATE(); case 2854: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2854); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2012); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1994); END_STATE(); case 2855: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2855); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1904); - END_STATE(); - case 2856: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2856); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1910); - END_STATE(); - case 2857: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2857); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2072); - END_STATE(); - case 2858: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2858); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2149); - END_STATE(); - case 2859: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2859); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1988); - END_STATE(); - case 2860: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2860); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1982); - END_STATE(); - case 2861: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2861); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2066); - END_STATE(); - case 2862: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2862); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1994); - END_STATE(); - case 2863: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2863); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1898); END_STATE(); - case 2864: + case 2856: ACCEPT_TOKEN(sym__newline); END_STATE(); - case 2865: + case 2857: ACCEPT_TOKEN(sym__newline); ADVANCE_MAP( - '!', 591, - '*', 518, - '+', 160, - '/', 162, - ':', 3520, - '=', 597, - 'a', 720, - 'b', 693, - 'e', 726, - 'i', 730, - 'm', 752, - 'n', 742, - 'o', 772, - 's', 799, - 'x', 751, + '!', 593, + '*', 520, + '+', 163, + '/', 165, + ':', 3511, + '=', 599, + 'a', 722, + 'b', 696, + 'e', 728, + 'i', 732, + 'm', 754, + 'n', 745, + 'o', 776, + 's', 802, + 'x', 753, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(578); + lookahead == ' ') ADVANCE(580); END_STATE(); - case 2866: + case 2858: ACCEPT_TOKEN(sym__newline); ADVANCE_MAP( - '!', 591, - '*', 183, - '+', 159, - '-', 186, - '/', 162, - '<', 187, - '=', 597, - '>', 188, - 'a', 720, - 'b', 693, - 'e', 726, - 'i', 730, - 'm', 752, - 'n', 742, - 'o', 772, - 's', 799, - 'x', 751, + '!', 593, + '*', 186, + '+', 162, + '-', 189, + '/', 165, + '<', 190, + '=', 599, + '>', 191, + 'a', 722, + 'b', 696, + 'e', 728, + 'i', 732, + 'm', 754, + 'n', 745, + 'o', 776, + 's', 802, + 'x', 753, ); END_STATE(); - case 2867: + case 2859: ACCEPT_TOKEN(sym__newline); - if (lookahead == ':') ADVANCE(3520); + if (lookahead == ':') ADVANCE(3511); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(578); + lookahead == ' ') ADVANCE(580); END_STATE(); - case 2868: + case 2860: ACCEPT_TOKEN(sym__space); - if (lookahead == '\n') ADVANCE(2867); - if (lookahead == '\r') ADVANCE(108); - if (lookahead == ':') ADVANCE(3520); + if (lookahead == '\n') ADVANCE(2859); + if (lookahead == '\r') ADVANCE(111); + if (lookahead == ':') ADVANCE(3511); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2868); + lookahead == ' ') ADVANCE(2860); if (lookahead == 0x0b || - lookahead == '\f') ADVANCE(578); + lookahead == '\f') ADVANCE(580); END_STATE(); - case 2869: + case 2861: ACCEPT_TOKEN(sym__space); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(2869); + lookahead == ' ') ADVANCE(2861); END_STATE(); - case 2870: + case 2862: ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); - case 2871: + case 2863: ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); - case 2872: + case 2864: ACCEPT_TOKEN(anon_sym_err_GT_PIPE); END_STATE(); - case 2873: + case 2865: ACCEPT_TOKEN(anon_sym_out_GT_PIPE); END_STATE(); - case 2874: + case 2866: ACCEPT_TOKEN(anon_sym_e_GT_PIPE); END_STATE(); - case 2875: + case 2867: ACCEPT_TOKEN(anon_sym_o_GT_PIPE); END_STATE(); - case 2876: + case 2868: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_PIPE); END_STATE(); - case 2877: + case 2869: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_PIPE); END_STATE(); - case 2878: + case 2870: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_PIPE); END_STATE(); - case 2879: + case 2871: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_PIPE); END_STATE(); - case 2880: + case 2872: ACCEPT_TOKEN(anon_sym_def); END_STATE(); - case 2881: + case 2873: ACCEPT_TOKEN(anon_sym_def); if (lookahead == ',') ADVANCE(1883); if (lookahead == '-' || @@ -45465,13 +45665,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1876); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1877); END_STATE(); - case 2882: + case 2874: ACCEPT_TOKEN(anon_sym_def); if (lookahead == ',') ADVANCE(1883); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4619); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4610); END_STATE(); - case 2883: + case 2875: ACCEPT_TOKEN(anon_sym_def); if (lookahead == ',') ADVANCE(1883); if (lookahead == '-' || @@ -45483,48 +45683,48 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1879); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1880); END_STATE(); - case 2884: + case 2876: ACCEPT_TOKEN(anon_sym_def); if (lookahead == ',') ADVANCE(1883); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1881); END_STATE(); - case 2885: + case 2877: ACCEPT_TOKEN(anon_sym_def); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || lookahead == '@') ADVANCE(1883); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1882); END_STATE(); - case 2886: + case 2878: ACCEPT_TOKEN(anon_sym_def); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1883); END_STATE(); - case 2887: + case 2879: ACCEPT_TOKEN(anon_sym_export_DASHenv); if (lookahead == ',') ADVANCE(1898); if (lookahead == '.' || lookahead == '?') ADVANCE(1897); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1896); END_STATE(); - case 2888: + case 2880: ACCEPT_TOKEN(anon_sym_export_DASHenv); if (lookahead == ',') ADVANCE(1898); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4658); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4649); END_STATE(); - case 2889: + case 2881: ACCEPT_TOKEN(anon_sym_export_DASHenv); if (lookahead == ',') ADVANCE(1898); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1897); END_STATE(); - case 2890: + case 2882: ACCEPT_TOKEN(anon_sym_export_DASHenv); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1898); END_STATE(); - case 2891: + case 2883: ACCEPT_TOKEN(anon_sym_extern); END_STATE(); - case 2892: + case 2884: ACCEPT_TOKEN(anon_sym_extern); if (lookahead == ',') ADVANCE(1904); if (lookahead == '-' || @@ -45533,13 +45733,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '?') ADVANCE(1902); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1899); END_STATE(); - case 2893: + case 2885: ACCEPT_TOKEN(anon_sym_extern); if (lookahead == ',') ADVANCE(1904); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4648); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4639); END_STATE(); - case 2894: + case 2886: ACCEPT_TOKEN(anon_sym_extern); if (lookahead == ',') ADVANCE(1904); if (lookahead == '-' || @@ -45548,26 +45748,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '@') ADVANCE(1902); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1901); END_STATE(); - case 2895: + case 2887: ACCEPT_TOKEN(anon_sym_extern); if (lookahead == ',') ADVANCE(1904); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1902); END_STATE(); - case 2896: + case 2888: ACCEPT_TOKEN(anon_sym_extern); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || lookahead == '@') ADVANCE(1904); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1903); END_STATE(); - case 2897: + case 2889: ACCEPT_TOKEN(anon_sym_extern); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1904); END_STATE(); - case 2898: + case 2890: ACCEPT_TOKEN(anon_sym_module); END_STATE(); - case 2899: + case 2891: ACCEPT_TOKEN(anon_sym_module); if (lookahead == ',') ADVANCE(1910); if (lookahead == '-' || @@ -45576,13 +45776,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '?') ADVANCE(1908); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1905); END_STATE(); - case 2900: + case 2892: ACCEPT_TOKEN(anon_sym_module); if (lookahead == ',') ADVANCE(1910); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4649); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4640); END_STATE(); - case 2901: + case 2893: ACCEPT_TOKEN(anon_sym_module); if (lookahead == ',') ADVANCE(1910); if (lookahead == '-' || @@ -45591,26 +45791,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '@') ADVANCE(1908); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1907); END_STATE(); - case 2902: + case 2894: ACCEPT_TOKEN(anon_sym_module); if (lookahead == ',') ADVANCE(1910); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1908); END_STATE(); - case 2903: + case 2895: ACCEPT_TOKEN(anon_sym_module); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || lookahead == '@') ADVANCE(1910); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1909); END_STATE(); - case 2904: + case 2896: ACCEPT_TOKEN(anon_sym_module); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1910); END_STATE(); - case 2905: + case 2897: ACCEPT_TOKEN(anon_sym_use); END_STATE(); - case 2906: + case 2898: ACCEPT_TOKEN(anon_sym_use); if (lookahead == ',') ADVANCE(1895); if (lookahead == '-' || @@ -45619,13 +45819,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '?') ADVANCE(1893); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1890); END_STATE(); - case 2907: + case 2899: ACCEPT_TOKEN(anon_sym_use); if (lookahead == ',') ADVANCE(1895); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4628); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4619); END_STATE(); - case 2908: + case 2900: ACCEPT_TOKEN(anon_sym_use); if (lookahead == ',') ADVANCE(1895); if (lookahead == '-' || @@ -45634,88 +45834,88 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '@') ADVANCE(1893); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1892); END_STATE(); - case 2909: + case 2901: ACCEPT_TOKEN(anon_sym_use); if (lookahead == ',') ADVANCE(1895); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1893); END_STATE(); - case 2910: + case 2902: ACCEPT_TOKEN(anon_sym_use); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || lookahead == '@') ADVANCE(1895); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1894); END_STATE(); - case 2911: + case 2903: ACCEPT_TOKEN(anon_sym_use); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1895); END_STATE(); - case 2912: + case 2904: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 2913: + case 2905: ACCEPT_TOKEN(anon_sym_COLON); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); - case 2914: + case 2906: ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); - case 2915: + case 2907: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 2916: + case 2908: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 2917: + case 2909: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 2918: + case 2910: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 2919: + case 2911: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 2920: + case 2912: ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); - case 2921: + case 2913: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '"') ADVANCE(3509); - if (lookahead == '\'') ADVANCE(3505); + if (lookahead == '"') ADVANCE(3500); + if (lookahead == '\'') ADVANCE(3496); END_STATE(); - case 2922: + case 2914: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '"') ADVANCE(3509); - if (lookahead == '\'') ADVANCE(3505); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == '"') ADVANCE(3500); + if (lookahead == '\'') ADVANCE(3496); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); - case 2923: + case 2915: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '"') ADVANCE(3510); - if (lookahead == '\'') ADVANCE(3506); + if (lookahead == '"') ADVANCE(3501); + if (lookahead == '\'') ADVANCE(3497); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3735); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3726); END_STATE(); - case 2924: + case 2916: ACCEPT_TOKEN(anon_sym_DOLLAR); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4773); END_STATE(); - case 2925: + case 2917: ACCEPT_TOKEN(anon_sym_DOLLAR); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); - case 2926: + case 2918: ACCEPT_TOKEN(anon_sym_DOLLAR); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); - case 2927: + case 2919: ACCEPT_TOKEN(anon_sym_cell_DASHpath); END_STATE(); - case 2928: + case 2920: ACCEPT_TOKEN(anon_sym_error); if (lookahead == ',') ADVANCE(2018); if (lookahead == '-' || @@ -45724,13 +45924,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '?') ADVANCE(2016); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2013); END_STATE(); - case 2929: + case 2921: ACCEPT_TOKEN(anon_sym_error); if (lookahead == ',') ADVANCE(2018); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4641); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4632); END_STATE(); - case 2930: + case 2922: ACCEPT_TOKEN(anon_sym_error); if (lookahead == ',') ADVANCE(2018); if (lookahead == '-' || @@ -45739,42 +45939,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '@') ADVANCE(2016); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2015); END_STATE(); - case 2931: + case 2923: ACCEPT_TOKEN(anon_sym_error); if (lookahead == ',') ADVANCE(2018); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2016); END_STATE(); - case 2932: + case 2924: ACCEPT_TOKEN(anon_sym_error); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || lookahead == '@') ADVANCE(2018); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2017); END_STATE(); - case 2933: + case 2925: ACCEPT_TOKEN(anon_sym_error); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); - case 2934: + case 2926: ACCEPT_TOKEN(anon_sym_error); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2018); END_STATE(); - case 2935: + case 2927: ACCEPT_TOKEN(anon_sym_full_DASHcell_DASHpath); END_STATE(); - case 2936: + case 2928: ACCEPT_TOKEN(anon_sym_import_DASHpattern); END_STATE(); - case 2937: + case 2929: ACCEPT_TOKEN(anon_sym_one_DASHof); END_STATE(); - case 2938: + case 2930: ACCEPT_TOKEN(anon_sym_var_DASHwith_DASHopt_DASHtype); END_STATE(); - case 2939: + case 2931: ACCEPT_TOKEN(anon_sym_list); END_STATE(); - case 2940: + case 2932: ACCEPT_TOKEN(anon_sym_list); if (lookahead == ',') ADVANCE(2117); if (lookahead == '-' || @@ -45783,13 +45983,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '?') ADVANCE(2115); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2112); END_STATE(); - case 2941: + case 2933: ACCEPT_TOKEN(anon_sym_list); if (lookahead == ',') ADVANCE(2117); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4634); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4625); END_STATE(); - case 2942: + case 2934: ACCEPT_TOKEN(anon_sym_list); if (lookahead == ',') ADVANCE(2117); if (lookahead == '-' || @@ -45798,348 +45998,348 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '@') ADVANCE(2115); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2114); END_STATE(); - case 2943: + case 2935: ACCEPT_TOKEN(anon_sym_list); if (lookahead == ',') ADVANCE(2117); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2115); END_STATE(); - case 2944: + case 2936: ACCEPT_TOKEN(anon_sym_list); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || lookahead == '@') ADVANCE(2117); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2116); END_STATE(); - case 2945: + case 2937: ACCEPT_TOKEN(anon_sym_list); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); - case 2946: + case 2938: ACCEPT_TOKEN(anon_sym_list); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2117); END_STATE(); - case 2947: + case 2939: ACCEPT_TOKEN(anon_sym_LT); END_STATE(); - case 2948: + case 2940: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(3214); + if (lookahead == '=') ADVANCE(3206); END_STATE(); - case 2949: + case 2941: ACCEPT_TOKEN(anon_sym_GT); END_STATE(); - case 2950: + case 2942: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(3215); + if (lookahead == '=') ADVANCE(3207); END_STATE(); - case 2951: + case 2943: ACCEPT_TOKEN(anon_sym_AT); END_STATE(); - case 2952: + case 2944: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); - case 2953: + case 2945: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); - if (lookahead == '$') ADVANCE(3368); - if (lookahead == '(') ADVANCE(3277); - if (lookahead == '{') ADVANCE(3514); + if (lookahead == '$') ADVANCE(3360); + if (lookahead == '(') ADVANCE(3269); + if (lookahead == '{') ADVANCE(3505); END_STATE(); - case 2954: + case 2946: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); - case 2955: + case 2947: ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); - case 2956: + case 2948: ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); - case 2957: + case 2949: ACCEPT_TOKEN(anon_sym_DASH_DASH); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); - case 2958: + case 2950: ACCEPT_TOKEN(anon_sym_DASH_DASH); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); - case 2959: + case 2951: ACCEPT_TOKEN(anon_sym_DASH_DASH); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); - case 2960: + case 2952: ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); - case 2961: + case 2953: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(2956); + if (lookahead == '-') ADVANCE(2948); END_STATE(); - case 2962: + case 2954: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(2956); + if (lookahead == '-') ADVANCE(2948); if (lookahead == '.') ADVANCE(2246); if (lookahead == '=') ADVANCE(1102); - if (lookahead == '_') ADVANCE(3591); + if (lookahead == '_') ADVANCE(3582); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3595); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3353); + lookahead == 'i') ADVANCE(3586); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3345); END_STATE(); - case 2963: + case 2955: ACCEPT_TOKEN(anon_sym_DASH); ADVANCE_MAP( - '-', 2956, - '.', 4239, + '-', 2948, + '.', 4230, '=', 1102, - '_', 4229, - '\t', 3228, - ' ', 3228, - 'I', 4242, - 'i', 4242, + '_', 4220, + '\t', 3220, + ' ', 3220, + 'I', 4233, + 'i', 4233, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3353); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3345); END_STATE(); - case 2964: + case 2956: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(2956); - if (lookahead == '.') ADVANCE(611); - if (lookahead == '_') ADVANCE(566); + if (lookahead == '-') ADVANCE(2948); + if (lookahead == '.') ADVANCE(613); + if (lookahead == '_') ADVANCE(568); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(890); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); + lookahead == 'i') ADVANCE(894); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3400); END_STATE(); - case 2965: + case 2957: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(2956); - if (lookahead == '.') ADVANCE(612); - if (lookahead == '_') ADVANCE(571); + if (lookahead == '-') ADVANCE(2948); + if (lookahead == '.') ADVANCE(614); + if (lookahead == '_') ADVANCE(573); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(890); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3353); + lookahead == 'i') ADVANCE(894); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3345); END_STATE(); - case 2966: + case 2958: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(2956); - if (lookahead == '.') ADVANCE(612); - if (lookahead == '_') ADVANCE(571); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3353); + if (lookahead == '-') ADVANCE(2948); + if (lookahead == '.') ADVANCE(614); + if (lookahead == '_') ADVANCE(573); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3345); END_STATE(); - case 2967: + case 2959: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(2956); - if (lookahead == '.') ADVANCE(3901); - if (lookahead == '_') ADVANCE(3880); + if (lookahead == '-') ADVANCE(2948); + if (lookahead == '.') ADVANCE(3892); + if (lookahead == '_') ADVANCE(3871); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3981); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3353); + lookahead == 'i') ADVANCE(3972); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3345); END_STATE(); - case 2968: + case 2960: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(2956); - if (lookahead == '.') ADVANCE(4349); - if (lookahead == '_') ADVANCE(4331); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3353); + if (lookahead == '-') ADVANCE(2948); + if (lookahead == '.') ADVANCE(4340); + if (lookahead == '_') ADVANCE(4322); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3345); END_STATE(); - case 2969: + case 2961: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(2956); - if (lookahead == '.') ADVANCE(3906); - if (lookahead == '_') ADVANCE(3881); + if (lookahead == '-') ADVANCE(2948); + if (lookahead == '.') ADVANCE(3897); + if (lookahead == '_') ADVANCE(3872); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3981); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); + lookahead == 'i') ADVANCE(3972); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3400); END_STATE(); - case 2970: + case 2962: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(2956); + if (lookahead == '-') ADVANCE(2948); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3228); + lookahead == ' ') ADVANCE(3220); END_STATE(); - case 2971: + case 2963: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(2957); - if (lookahead == '.') ADVANCE(611); - if (lookahead == '_') ADVANCE(3674); + if (lookahead == '-') ADVANCE(2951); + if (lookahead == '.') ADVANCE(4037); + if (lookahead == '_') ADVANCE(4016); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3711); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3681); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + lookahead == 'i') ADVANCE(4182); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4037); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); - case 2972: + case 2964: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(2957); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + if (lookahead == '-') ADVANCE(2951); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); - case 2973: + case 2965: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(2959); - if (lookahead == '.') ADVANCE(4046); - if (lookahead == '_') ADVANCE(4025); + if (lookahead == '-') ADVANCE(2949); + if (lookahead == '.') ADVANCE(613); + if (lookahead == '_') ADVANCE(3665); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4191); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4046); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + lookahead == 'i') ADVANCE(3702); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3672); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); - case 2974: + case 2966: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(2959); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == '-') ADVANCE(2949); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); - case 2975: + case 2967: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(2958); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (lookahead == '-') ADVANCE(2950); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); - case 2976: + case 2968: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(611); + if (lookahead == '.') ADVANCE(613); if (lookahead == '=') ADVANCE(1102); - if (lookahead == '_') ADVANCE(566); + if (lookahead == '_') ADVANCE(568); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3228); + lookahead == ' ') ADVANCE(3220); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(890); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); + lookahead == 'i') ADVANCE(894); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3400); END_STATE(); - case 2977: + case 2969: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(611); + if (lookahead == '.') ADVANCE(613); if (lookahead == '=') ADVANCE(1102); - if (lookahead == '_') ADVANCE(566); + if (lookahead == '_') ADVANCE(568); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(890); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); + lookahead == 'i') ADVANCE(894); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3400); END_STATE(); - case 2978: + case 2970: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(611); - if (lookahead == '_') ADVANCE(566); + if (lookahead == '.') ADVANCE(613); + if (lookahead == '_') ADVANCE(568); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(890); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); + lookahead == 'i') ADVANCE(894); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3400); END_STATE(); - case 2979: + case 2971: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(611); - if (lookahead == '_') ADVANCE(3674); + if (lookahead == '.') ADVANCE(613); + if (lookahead == '_') ADVANCE(3665); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3711); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3681); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + lookahead == 'i') ADVANCE(3702); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3672); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); - case 2980: + case 2972: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(4576); - if (lookahead == '_') ADVANCE(4568); + if (lookahead == '.') ADVANCE(4567); + if (lookahead == '_') ADVANCE(4559); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4596); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); + lookahead == 'i') ADVANCE(4587); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3400); END_STATE(); - case 2981: + case 2973: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(4667); - if (lookahead == '_') ADVANCE(4660); + if (lookahead == '.') ADVANCE(4658); + if (lookahead == '_') ADVANCE(4651); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4771); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4667); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4782); + lookahead == 'i') ADVANCE(4762); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4658); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4773); END_STATE(); - case 2982: + case 2974: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(4046); - if (lookahead == '_') ADVANCE(4025); + if (lookahead == '.') ADVANCE(4037); + if (lookahead == '_') ADVANCE(4016); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4191); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4046); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + lookahead == 'i') ADVANCE(4182); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4037); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); - case 2983: + case 2975: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(612); - if (lookahead == '_') ADVANCE(571); + if (lookahead == '.') ADVANCE(614); + if (lookahead == '_') ADVANCE(573); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(890); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3353); + lookahead == 'i') ADVANCE(894); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3345); END_STATE(); - case 2984: + case 2976: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(4577); - if (lookahead == '_') ADVANCE(4570); + if (lookahead == '.') ADVANCE(4568); + if (lookahead == '_') ADVANCE(4561); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4596); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3353); + lookahead == 'i') ADVANCE(4587); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3345); END_STATE(); - case 2985: + case 2977: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(3906); - if (lookahead == '_') ADVANCE(3881); + if (lookahead == '.') ADVANCE(3897); + if (lookahead == '_') ADVANCE(3872); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3981); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); + lookahead == 'i') ADVANCE(3972); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3400); END_STATE(); - case 2986: + case 2978: ACCEPT_TOKEN(sym_param_short_flag_identifier); END_STATE(); - case 2987: + case 2979: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == '+') ADVANCE(2352); - if (lookahead == '-') ADVANCE(3541); - if (lookahead == 'I') ADVANCE(2636); - if (lookahead == '_') ADVANCE(2352); - if (lookahead == 'i') ADVANCE(2383); + if (lookahead == '+') ADVANCE(2351); + if (lookahead == '-') ADVANCE(3532); + if (lookahead == 'I') ADVANCE(2628); + if (lookahead == '_') ADVANCE(2351); + if (lookahead == 'i') ADVANCE(2377); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3432); + lookahead == 'b') ADVANCE(3423); if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2647); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3350); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2639); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3342); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); - case 2988: + case 2980: ACCEPT_TOKEN(sym_param_short_flag_identifier); ADVANCE_MAP( - '+', 2351, - '-', 3541, - '>', 3614, - 'I', 2636, - '_', 2352, - 'i', 2636, - 'l', 2571, - 'n', 2396, - 'r', 2528, - 'x', 2522, - 'B', 3432, - 'b', 3432, + '+', 2350, + '-', 3532, + '>', 3605, + 'I', 2628, + '_', 2351, + 'i', 2628, + 'l', 2563, + 'n', 2390, + 'r', 2520, + 'x', 2514, + 'B', 3423, + 'b', 3423, ); if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2647); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3350); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2639); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3342); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); - case 2989: + case 2981: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == '+') ADVANCE(2423); - if (lookahead == '>') ADVANCE(3618); - if (lookahead == 'n') ADVANCE(2401); - if (lookahead == 'r') ADVANCE(3202); - if (lookahead == 'u') ADVANCE(2589); - if (lookahead == 'v') ADVANCE(2426); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == '+') ADVANCE(2417); + if (lookahead == '>') ADVANCE(3609); + if (lookahead == 'n') ADVANCE(2395); + if (lookahead == 'r') ADVANCE(3194); + if (lookahead == 'u') ADVANCE(2581); + if (lookahead == 'v') ADVANCE(2420); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); - case 2990: + case 2982: ACCEPT_TOKEN(sym_param_short_flag_identifier); ADVANCE_MAP( - ',', 3499, - ':', 3499, - '=', 3499, - 'u', 2634, - 'x', 2649, - '-', 3499, - '@', 3499, - '.', 3499, - '?', 3499, - '<', 3499, - '>', 3499, - '"', 3499, - '\'', 3499, - '`', 3499, + ',', 3490, + ':', 3490, + '=', 3490, + 'u', 2626, + 'x', 2641, + '-', 3490, + '@', 3490, + '.', 3490, + '?', 3490, + '<', 3490, + '>', 3490, + '"', 3490, + '\'', 3490, + '`', 3490, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || @@ -46148,88 +46348,88 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ';' || lookahead == '[' || lookahead == ']' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(3499); - if (lookahead != 0) ADVANCE(3500); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(3490); + if (lookahead != 0) ADVANCE(3491); END_STATE(); - case 2991: + case 2983: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == '=') ADVANCE(3211); - if (lookahead == '~') ADVANCE(3217); + if (lookahead == '=') ADVANCE(3203); + if (lookahead == '~') ADVANCE(3209); END_STATE(); - case 2992: + case 2984: ACCEPT_TOKEN(sym_param_short_flag_identifier); if (lookahead == '=') ADVANCE(1104); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2652); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2644); END_STATE(); - case 2993: + case 2985: ACCEPT_TOKEN(sym_param_short_flag_identifier); ADVANCE_MAP( - 'I', 2636, - 'a', 2464, - 'i', 2492, - 'o', 2395, - 's', 3438, - 'u', 2587, - 'B', 3433, - 'b', 3433, + 'I', 2628, + 'a', 2458, + 'i', 2485, + 'o', 2389, + 's', 3429, + 'u', 2579, + 'B', 3424, + 'b', 3424, ); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); - case 2994: + case 2986: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 'I') ADVANCE(2636); - if (lookahead == 'i') ADVANCE(2636); - if (lookahead == 'r') ADVANCE(2616); + if (lookahead == 'I') ADVANCE(2628); + if (lookahead == 'i') ADVANCE(2628); + if (lookahead == 'r') ADVANCE(2608); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3433); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + lookahead == 'b') ADVANCE(3424); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); - case 2995: + case 2987: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 'I') ADVANCE(2636); - if (lookahead == 'i') ADVANCE(2636); + if (lookahead == 'I') ADVANCE(2628); + if (lookahead == 'i') ADVANCE(2628); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3433); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + lookahead == 'b') ADVANCE(3424); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); - case 2996: + case 2988: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 'I') ADVANCE(2636); - if (lookahead == 'i') ADVANCE(2383); + if (lookahead == 'I') ADVANCE(2628); + if (lookahead == 'i') ADVANCE(2377); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3433); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + lookahead == 'b') ADVANCE(3424); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); - case 2997: + case 2989: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 'N') ADVANCE(2637); - if (lookahead == 'f') ADVANCE(3077); - if (lookahead == 'm') ADVANCE(2523); - if (lookahead == 'n') ADVANCE(3040); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'N') ADVANCE(2629); + if (lookahead == 'f') ADVANCE(3069); + if (lookahead == 'm') ADVANCE(2515); + if (lookahead == 'n') ADVANCE(3032); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); - case 2998: + case 2990: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == '_') ADVANCE(3327); - if (lookahead == 'b') ADVANCE(3422); - if (lookahead == 'o') ADVANCE(3439); - if (lookahead == 'x') ADVANCE(3445); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); + if (lookahead == '_') ADVANCE(3319); + if (lookahead == 'b') ADVANCE(3414); + if (lookahead == 'o') ADVANCE(3430); + if (lookahead == 'x') ADVANCE(3436); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3321); if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2647); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2639); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); - case 2999: + case 2991: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == '_') ADVANCE(3327); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); + if (lookahead == '_') ADVANCE(3319); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3321); if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2647); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2639); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); - case 3000: + case 2992: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == '`') ADVANCE(3497); + if (lookahead == '`') ADVANCE(3488); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == '(' || @@ -46241,142 +46441,142 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '?' || lookahead == '[' || lookahead == ']' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(624); - if (lookahead != 0) ADVANCE(3592); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(626); + if (lookahead != 0) ADVANCE(3583); END_STATE(); - case 3001: + case 2993: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 'a') ADVANCE(2600); - if (lookahead == 'e') ADVANCE(2467); - if (lookahead == 'o') ADVANCE(2493); + if (lookahead == 'a') ADVANCE(2592); + if (lookahead == 'e') ADVANCE(2461); + if (lookahead == 'o') ADVANCE(2486); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('b' <= lookahead && lookahead <= 'f')) ADVANCE(2647); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + ('b' <= lookahead && lookahead <= 'f')) ADVANCE(2639); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); - case 3002: + case 2994: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 'a') ADVANCE(2630); - if (lookahead == 'e') ADVANCE(2442); - if (lookahead == 'o') ADVANCE(3070); + if (lookahead == 'a') ADVANCE(2622); + if (lookahead == 'e') ADVANCE(2436); + if (lookahead == 'o') ADVANCE(3062); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('b' <= lookahead && lookahead <= 'f')) ADVANCE(2647); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + ('b' <= lookahead && lookahead <= 'f')) ADVANCE(2639); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); - case 3003: + case 2995: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 'a') ADVANCE(2482); - if (lookahead == 'o') ADVANCE(2529); - if (lookahead == 'u') ADVANCE(2481); + if (lookahead == 'a') ADVANCE(2476); + if (lookahead == 'o') ADVANCE(2521); + if (lookahead == 'u') ADVANCE(2475); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('b' <= lookahead && lookahead <= 'f')) ADVANCE(2647); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + ('b' <= lookahead && lookahead <= 'f')) ADVANCE(2639); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); - case 3004: + case 2996: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 'a') ADVANCE(2540); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'a') ADVANCE(2532); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); - case 3005: + case 2997: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 'e') ADVANCE(2586); - if (lookahead == 'i') ADVANCE(2570); - if (lookahead == 'o') ADVANCE(2504); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'e') ADVANCE(2578); + if (lookahead == 'i') ADVANCE(2562); + if (lookahead == 'o') ADVANCE(2497); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); - case 3006: + case 2998: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 'e') ADVANCE(2628); - if (lookahead == 'o') ADVANCE(2588); - if (lookahead == 's') ADVANCE(3438); - if (lookahead == 'u') ADVANCE(2468); + if (lookahead == 'e') ADVANCE(2620); + if (lookahead == 'o') ADVANCE(2580); + if (lookahead == 's') ADVANCE(3429); + if (lookahead == 'u') ADVANCE(2462); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2640); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + lookahead == 'a') ADVANCE(2632); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); - case 3007: + case 2999: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 'e') ADVANCE(2444); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'e') ADVANCE(2438); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); - case 3008: + case 3000: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 'e') ADVANCE(2384); - if (lookahead == 'o') ADVANCE(2615); - if (lookahead == 't') ADVANCE(2376); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'e') ADVANCE(2378); + if (lookahead == 'o') ADVANCE(2607); + if (lookahead == 't') ADVANCE(2370); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); - case 3009: + case 3001: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 'h') ADVANCE(2430); - if (lookahead == 'k') ADVANCE(3438); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'h') ADVANCE(2424); + if (lookahead == 'k') ADVANCE(3429); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); - case 3010: + case 3002: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 'i') ADVANCE(2398); - if (lookahead == 'r') ADVANCE(3438); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'i') ADVANCE(2392); + if (lookahead == 'r') ADVANCE(3429); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); - case 3011: + case 3003: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 'l') ADVANCE(2453); - if (lookahead == 'n') ADVANCE(2392); - if (lookahead == 's') ADVANCE(3177); + if (lookahead == 'l') ADVANCE(2447); + if (lookahead == 'n') ADVANCE(2386); + if (lookahead == 's') ADVANCE(3169); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2647); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2639); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); - case 3012: + case 3004: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 'o') ADVANCE(2530); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'o') ADVANCE(2522); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); - case 3013: + case 3005: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 'r') ADVANCE(2424); + if (lookahead == 'r') ADVANCE(2418); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2647); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2639); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); - case 3014: + case 3006: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 's') ADVANCE(3438); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 's') ADVANCE(3429); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); - case 3015: + case 3007: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if (lookahead == 's') ADVANCE(3435); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 's') ADVANCE(3426); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); - case 3016: + case 3008: ACCEPT_TOKEN(sym_param_short_flag_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2640); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + lookahead == 'a') ADVANCE(2632); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); - case 3017: + case 3009: ACCEPT_TOKEN(sym_param_short_flag_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2637); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + lookahead == 'n') ADVANCE(2629); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); - case 3018: + case 3010: ACCEPT_TOKEN(sym_param_short_flag_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2647); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2639); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); - case 3019: + case 3011: ACCEPT_TOKEN(sym_param_short_flag_identifier); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); - case 3020: + case 3012: ACCEPT_TOKEN(anon_sym_break); if (lookahead == ',') ADVANCE(2060); if (lookahead == '-' || @@ -46385,13 +46585,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '?') ADVANCE(2058); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2055); END_STATE(); - case 3021: + case 3013: ACCEPT_TOKEN(anon_sym_break); if (lookahead == ',') ADVANCE(2060); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4638); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4629); END_STATE(); - case 3022: + case 3014: ACCEPT_TOKEN(anon_sym_break); if (lookahead == ',') ADVANCE(2060); if (lookahead == '-' || @@ -46400,23 +46600,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '@') ADVANCE(2058); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2057); END_STATE(); - case 3023: + case 3015: ACCEPT_TOKEN(anon_sym_break); if (lookahead == ',') ADVANCE(2060); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2058); END_STATE(); - case 3024: + case 3016: ACCEPT_TOKEN(anon_sym_break); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || lookahead == '@') ADVANCE(2060); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2059); END_STATE(); - case 3025: + case 3017: ACCEPT_TOKEN(anon_sym_break); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2060); END_STATE(); - case 3026: + case 3018: ACCEPT_TOKEN(anon_sym_continue); if (lookahead == ',') ADVANCE(2066); if (lookahead == '-' || @@ -46425,13 +46625,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '?') ADVANCE(2064); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2061); END_STATE(); - case 3027: + case 3019: ACCEPT_TOKEN(anon_sym_continue); if (lookahead == ',') ADVANCE(2066); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4656); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4647); END_STATE(); - case 3028: + case 3020: ACCEPT_TOKEN(anon_sym_continue); if (lookahead == ',') ADVANCE(2066); if (lookahead == '-' || @@ -46440,23 +46640,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '@') ADVANCE(2064); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2063); END_STATE(); - case 3029: + case 3021: ACCEPT_TOKEN(anon_sym_continue); if (lookahead == ',') ADVANCE(2066); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2064); END_STATE(); - case 3030: + case 3022: ACCEPT_TOKEN(anon_sym_continue); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || lookahead == '@') ADVANCE(2066); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2065); END_STATE(); - case 3031: + case 3023: ACCEPT_TOKEN(anon_sym_continue); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2066); END_STATE(); - case 3032: + case 3024: ACCEPT_TOKEN(anon_sym_for); if (lookahead == ',') ADVANCE(2000); if (lookahead == '-' || @@ -46465,13 +46665,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '?') ADVANCE(1998); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1995); END_STATE(); - case 3033: + case 3025: ACCEPT_TOKEN(anon_sym_for); if (lookahead == ',') ADVANCE(2000); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4620); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4611); END_STATE(); - case 3034: + case 3026: ACCEPT_TOKEN(anon_sym_for); if (lookahead == ',') ADVANCE(2000); if (lookahead == '-' || @@ -46480,33 +46680,33 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '@') ADVANCE(1998); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1997); END_STATE(); - case 3035: + case 3027: ACCEPT_TOKEN(anon_sym_for); if (lookahead == ',') ADVANCE(2000); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1998); END_STATE(); - case 3036: + case 3028: ACCEPT_TOKEN(anon_sym_for); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || lookahead == '@') ADVANCE(2000); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1999); END_STATE(); - case 3037: + case 3029: ACCEPT_TOKEN(anon_sym_for); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2000); END_STATE(); - case 3038: + case 3030: ACCEPT_TOKEN(anon_sym_in); END_STATE(); - case 3039: + case 3031: ACCEPT_TOKEN(anon_sym_in); ADVANCE_MAP( - '\n', 3267, + '\n', 3259, '\r', 11, ',', 2111, - '\t', 3239, - ' ', 3239, + '\t', 3231, + ' ', 3231, 'F', 2086, 'f', 2086, '-', 2097, @@ -46516,7 +46716,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2096); END_STATE(); - case 3040: + case 3032: ACCEPT_TOKEN(anon_sym_in); if (lookahead == ',') ADVANCE(2111); if (lookahead == '-' || @@ -46527,30 +46727,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 'f') ADVANCE(2079); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2084); END_STATE(); - case 3041: + case 3033: ACCEPT_TOKEN(anon_sym_in); if (lookahead == ',') ADVANCE(2111); if (lookahead == 'F' || lookahead == 'f') ADVANCE(2088); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2097); END_STATE(); - case 3042: + case 3034: ACCEPT_TOKEN(anon_sym_in); if (lookahead == ',') ADVANCE(2111); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4613); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4618); + lookahead == 'f') ADVANCE(4604); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4609); END_STATE(); - case 3043: + case 3035: ACCEPT_TOKEN(anon_sym_in); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3239); + lookahead == ' ') ADVANCE(3231); if (lookahead == 'F' || lookahead == 'f') ADVANCE(2102); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2111); END_STATE(); - case 3044: + case 3036: ACCEPT_TOKEN(anon_sym_in); if (lookahead == 'F' || lookahead == 'f') ADVANCE(2100); @@ -46559,29 +46759,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '@') ADVANCE(2111); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2110); END_STATE(); - case 3045: + case 3037: ACCEPT_TOKEN(anon_sym_in); if (lookahead == 'F' || lookahead == 'f') ADVANCE(2102); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2111); END_STATE(); - case 3046: + case 3038: ACCEPT_TOKEN(anon_sym_in); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); - case 3047: + case 3039: ACCEPT_TOKEN(anon_sym_in); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); - case 3048: + case 3040: ACCEPT_TOKEN(anon_sym_in); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); - case 3049: + case 3041: ACCEPT_TOKEN(anon_sym_in); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); - case 3050: + case 3042: ACCEPT_TOKEN(anon_sym_loop); if (lookahead == ',') ADVANCE(2006); if (lookahead == '-' || @@ -46590,13 +46790,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '?') ADVANCE(2004); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2001); END_STATE(); - case 3051: + case 3043: ACCEPT_TOKEN(anon_sym_loop); if (lookahead == ',') ADVANCE(2006); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4635); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4626); END_STATE(); - case 3052: + case 3044: ACCEPT_TOKEN(anon_sym_loop); if (lookahead == ',') ADVANCE(2006); if (lookahead == '-' || @@ -46605,26 +46805,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '@') ADVANCE(2004); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2003); END_STATE(); - case 3053: + case 3045: ACCEPT_TOKEN(anon_sym_loop); if (lookahead == ',') ADVANCE(2006); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2004); END_STATE(); - case 3054: + case 3046: ACCEPT_TOKEN(anon_sym_loop); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || lookahead == '@') ADVANCE(2006); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2005); END_STATE(); - case 3055: + case 3047: ACCEPT_TOKEN(anon_sym_loop); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2006); END_STATE(); - case 3056: + case 3048: ACCEPT_TOKEN(anon_sym_make); END_STATE(); - case 3057: + case 3049: ACCEPT_TOKEN(anon_sym_make); if (lookahead == ',') ADVANCE(2129); if (lookahead == '-' || @@ -46633,13 +46833,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '?') ADVANCE(2127); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2124); END_STATE(); - case 3058: + case 3050: ACCEPT_TOKEN(anon_sym_make); if (lookahead == ',') ADVANCE(2129); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4636); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4627); END_STATE(); - case 3059: + case 3051: ACCEPT_TOKEN(anon_sym_make); if (lookahead == ',') ADVANCE(2129); if (lookahead == '-' || @@ -46648,23 +46848,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '@') ADVANCE(2127); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2126); END_STATE(); - case 3060: + case 3052: ACCEPT_TOKEN(anon_sym_make); if (lookahead == ',') ADVANCE(2129); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2127); END_STATE(); - case 3061: + case 3053: ACCEPT_TOKEN(anon_sym_make); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || lookahead == '@') ADVANCE(2129); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2128); END_STATE(); - case 3062: + case 3054: ACCEPT_TOKEN(anon_sym_make); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2129); END_STATE(); - case 3063: + case 3055: ACCEPT_TOKEN(anon_sym_while); if (lookahead == ',') ADVANCE(2012); if (lookahead == '-' || @@ -46673,13 +46873,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '?') ADVANCE(2010); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2007); END_STATE(); - case 3064: + case 3056: ACCEPT_TOKEN(anon_sym_while); if (lookahead == ',') ADVANCE(2012); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4643); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4634); END_STATE(); - case 3065: + case 3057: ACCEPT_TOKEN(anon_sym_while); if (lookahead == ',') ADVANCE(2012); if (lookahead == '-' || @@ -46688,26 +46888,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '@') ADVANCE(2010); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2009); END_STATE(); - case 3066: + case 3058: ACCEPT_TOKEN(anon_sym_while); if (lookahead == ',') ADVANCE(2012); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2010); END_STATE(); - case 3067: + case 3059: ACCEPT_TOKEN(anon_sym_while); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || lookahead == '@') ADVANCE(2012); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2011); END_STATE(); - case 3068: + case 3060: ACCEPT_TOKEN(anon_sym_while); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2012); END_STATE(); - case 3069: + case 3061: ACCEPT_TOKEN(anon_sym_do); END_STATE(); - case 3070: + case 3062: ACCEPT_TOKEN(anon_sym_do); if (lookahead == ',') ADVANCE(2024); if (lookahead == '-' || @@ -46716,13 +46916,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '?') ADVANCE(2022); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2019); END_STATE(); - case 3071: + case 3063: ACCEPT_TOKEN(anon_sym_do); if (lookahead == ',') ADVANCE(2024); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4611); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4602); END_STATE(); - case 3072: + case 3064: ACCEPT_TOKEN(anon_sym_do); if (lookahead == ',') ADVANCE(2024); if (lookahead == '-' || @@ -46731,26 +46931,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '@') ADVANCE(2022); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2021); END_STATE(); - case 3073: + case 3065: ACCEPT_TOKEN(anon_sym_do); if (lookahead == ',') ADVANCE(2024); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2022); END_STATE(); - case 3074: + case 3066: ACCEPT_TOKEN(anon_sym_do); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || lookahead == '@') ADVANCE(2024); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2023); END_STATE(); - case 3075: + case 3067: ACCEPT_TOKEN(anon_sym_do); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2024); END_STATE(); - case 3076: + case 3068: ACCEPT_TOKEN(anon_sym_if); END_STATE(); - case 3077: + case 3069: ACCEPT_TOKEN(anon_sym_if); if (lookahead == ',') ADVANCE(2030); if (lookahead == '-' || @@ -46759,13 +46959,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '?') ADVANCE(2028); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2025); END_STATE(); - case 3078: + case 3070: ACCEPT_TOKEN(anon_sym_if); if (lookahead == ',') ADVANCE(2030); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4612); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4603); END_STATE(); - case 3079: + case 3071: ACCEPT_TOKEN(anon_sym_if); if (lookahead == ',') ADVANCE(2030); if (lookahead == '-' || @@ -46774,30 +46974,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '@') ADVANCE(2028); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2027); END_STATE(); - case 3080: + case 3072: ACCEPT_TOKEN(anon_sym_if); if (lookahead == ',') ADVANCE(2030); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2028); END_STATE(); - case 3081: + case 3073: ACCEPT_TOKEN(anon_sym_if); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || lookahead == '@') ADVANCE(2030); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2029); END_STATE(); - case 3082: + case 3074: ACCEPT_TOKEN(anon_sym_if); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2030); END_STATE(); - case 3083: + case 3075: ACCEPT_TOKEN(anon_sym_if); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); - case 3084: + case 3076: ACCEPT_TOKEN(anon_sym_else); END_STATE(); - case 3085: + case 3077: ACCEPT_TOKEN(anon_sym_else); if (lookahead == ',') ADVANCE(2036); if (lookahead == '-' || @@ -46806,13 +47006,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '?') ADVANCE(2034); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2031); END_STATE(); - case 3086: + case 3078: ACCEPT_TOKEN(anon_sym_else); if (lookahead == ',') ADVANCE(2036); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4629); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4620); END_STATE(); - case 3087: + case 3079: ACCEPT_TOKEN(anon_sym_else); if (lookahead == ',') ADVANCE(2036); if (lookahead == '-' || @@ -46821,30 +47021,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '@') ADVANCE(2034); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2033); END_STATE(); - case 3088: + case 3080: ACCEPT_TOKEN(anon_sym_else); if (lookahead == ',') ADVANCE(2036); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2034); END_STATE(); - case 3089: + case 3081: ACCEPT_TOKEN(anon_sym_else); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || lookahead == '@') ADVANCE(2036); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2035); END_STATE(); - case 3090: + case 3082: ACCEPT_TOKEN(anon_sym_else); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); - case 3091: + case 3083: ACCEPT_TOKEN(anon_sym_else); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2036); END_STATE(); - case 3092: + case 3084: ACCEPT_TOKEN(anon_sym_match); END_STATE(); - case 3093: + case 3085: ACCEPT_TOKEN(anon_sym_match); if (lookahead == ',') ADVANCE(2054); if (lookahead == '-' || @@ -46853,13 +47053,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '?') ADVANCE(2052); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2049); END_STATE(); - case 3094: + case 3086: ACCEPT_TOKEN(anon_sym_match); if (lookahead == ',') ADVANCE(2054); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4642); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); END_STATE(); - case 3095: + case 3087: ACCEPT_TOKEN(anon_sym_match); if (lookahead == ',') ADVANCE(2054); if (lookahead == '-' || @@ -46868,105 +47068,105 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '@') ADVANCE(2052); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2051); END_STATE(); - case 3096: + case 3088: ACCEPT_TOKEN(anon_sym_match); if (lookahead == ',') ADVANCE(2054); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2052); END_STATE(); - case 3097: + case 3089: ACCEPT_TOKEN(anon_sym_match); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || lookahead == '@') ADVANCE(2054); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2053); END_STATE(); - case 3098: + case 3090: ACCEPT_TOKEN(anon_sym_match); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2054); END_STATE(); - case 3099: + case 3091: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 3100: + case 3092: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 3101: + case 3093: ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); - case 3102: + case 3094: ACCEPT_TOKEN(anon_sym_EQ_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); - case 3103: + case 3095: ACCEPT_TOKEN(anon_sym__); - if (lookahead == '_') ADVANCE(3778); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); + if (lookahead == '_') ADVANCE(3769); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); END_STATE(); - case 3104: + case 3096: ACCEPT_TOKEN(anon_sym__); - if (lookahead == '_') ADVANCE(2354); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3327); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == '_') ADVANCE(2353); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3319); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); - case 3105: + case 3097: ACCEPT_TOKEN(anon_sym__); - if (lookahead == '_') ADVANCE(2361); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2361); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == '_') ADVANCE(2358); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2358); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); - case 3106: + case 3098: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(2953); - if (lookahead == '<') ADVANCE(3317); - if (lookahead == '=') ADVANCE(3314); + if (lookahead == '.') ADVANCE(2945); + if (lookahead == '<') ADVANCE(3309); + if (lookahead == '=') ADVANCE(3306); END_STATE(); - case 3107: + case 3099: ACCEPT_TOKEN(anon_sym_DOT_DOT); if (lookahead == '.') ADVANCE(1113); - if (lookahead == '<') ADVANCE(3317); - if (lookahead == '=') ADVANCE(3314); + if (lookahead == '<') ADVANCE(3309); + if (lookahead == '=') ADVANCE(3306); END_STATE(); - case 3108: + case 3100: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(3738); - if (lookahead == '<') ADVANCE(3317); - if (lookahead == '=') ADVANCE(3314); + if (lookahead == '.') ADVANCE(3729); + if (lookahead == '<') ADVANCE(3309); + if (lookahead == '=') ADVANCE(3306); END_STATE(); - case 3109: + case 3101: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(4222); - if (lookahead == '<') ADVANCE(3317); - if (lookahead == '=') ADVANCE(3314); + if (lookahead == '.') ADVANCE(4213); + if (lookahead == '<') ADVANCE(3309); + if (lookahead == '=') ADVANCE(3306); END_STATE(); - case 3110: + case 3102: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '<') ADVANCE(3317); - if (lookahead == '=') ADVANCE(3314); + if (lookahead == '<') ADVANCE(3309); + if (lookahead == '=') ADVANCE(3306); END_STATE(); - case 3111: + case 3103: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '<') ADVANCE(3319); - if (lookahead == '=') ADVANCE(3316); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == '<') ADVANCE(3311); + if (lookahead == '=') ADVANCE(3308); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); - case 3112: + case 3104: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '<') ADVANCE(3318); - if (lookahead == '=') ADVANCE(3315); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (lookahead == '<') ADVANCE(3310); + if (lookahead == '=') ADVANCE(3307); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); - case 3113: + case 3105: ACCEPT_TOKEN(anon_sym_DOLLAR2); END_STATE(); - case 3114: + case 3106: ACCEPT_TOKEN(anon_sym_DOLLAR2); - if (lookahead == '"') ADVANCE(3509); - if (lookahead == '\'') ADVANCE(3505); + if (lookahead == '"') ADVANCE(3500); + if (lookahead == '\'') ADVANCE(3496); END_STATE(); - case 3115: + case 3107: ACCEPT_TOKEN(anon_sym_try); END_STATE(); - case 3116: + case 3108: ACCEPT_TOKEN(anon_sym_try); if (lookahead == ',') ADVANCE(2042); if (lookahead == '-' || @@ -46975,13 +47175,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '?') ADVANCE(2040); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2037); END_STATE(); - case 3117: + case 3109: ACCEPT_TOKEN(anon_sym_try); if (lookahead == ',') ADVANCE(2042); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4627); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4618); END_STATE(); - case 3118: + case 3110: ACCEPT_TOKEN(anon_sym_try); if (lookahead == ',') ADVANCE(2042); if (lookahead == '-' || @@ -46990,26 +47190,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '@') ADVANCE(2040); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2039); END_STATE(); - case 3119: + case 3111: ACCEPT_TOKEN(anon_sym_try); if (lookahead == ',') ADVANCE(2042); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2040); END_STATE(); - case 3120: + case 3112: ACCEPT_TOKEN(anon_sym_try); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || lookahead == '@') ADVANCE(2042); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2041); END_STATE(); - case 3121: + case 3113: ACCEPT_TOKEN(anon_sym_try); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2042); END_STATE(); - case 3122: + case 3114: ACCEPT_TOKEN(anon_sym_catch); END_STATE(); - case 3123: + case 3115: ACCEPT_TOKEN(anon_sym_catch); if (lookahead == ',') ADVANCE(2048); if (lookahead == '-' || @@ -47018,13 +47218,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '?') ADVANCE(2046); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2043); END_STATE(); - case 3124: + case 3116: ACCEPT_TOKEN(anon_sym_catch); if (lookahead == ',') ADVANCE(2048); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4639); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4630); END_STATE(); - case 3125: + case 3117: ACCEPT_TOKEN(anon_sym_catch); if (lookahead == ',') ADVANCE(2048); if (lookahead == '-' || @@ -47033,27 +47233,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '@') ADVANCE(2046); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2045); END_STATE(); - case 3126: + case 3118: ACCEPT_TOKEN(anon_sym_catch); if (lookahead == ',') ADVANCE(2048); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2046); END_STATE(); - case 3127: + case 3119: ACCEPT_TOKEN(anon_sym_catch); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || lookahead == '@') ADVANCE(2048); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2047); END_STATE(); - case 3128: + case 3120: ACCEPT_TOKEN(anon_sym_catch); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); - case 3129: + case 3121: ACCEPT_TOKEN(anon_sym_catch); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2048); END_STATE(); - case 3130: + case 3122: ACCEPT_TOKEN(anon_sym_return); if (lookahead == ',') ADVANCE(2072); if (lookahead == '-' || @@ -47062,13 +47262,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '?') ADVANCE(2070); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2067); END_STATE(); - case 3131: + case 3123: ACCEPT_TOKEN(anon_sym_return); if (lookahead == ',') ADVANCE(2072); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4650); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4641); END_STATE(); - case 3132: + case 3124: ACCEPT_TOKEN(anon_sym_return); if (lookahead == ',') ADVANCE(2072); if (lookahead == '-' || @@ -47077,23 +47277,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '@') ADVANCE(2070); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2069); END_STATE(); - case 3133: + case 3125: ACCEPT_TOKEN(anon_sym_return); if (lookahead == ',') ADVANCE(2072); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2070); END_STATE(); - case 3134: + case 3126: ACCEPT_TOKEN(anon_sym_return); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || lookahead == '@') ADVANCE(2072); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2071); END_STATE(); - case 3135: + case 3127: ACCEPT_TOKEN(anon_sym_return); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2072); END_STATE(); - case 3136: + case 3128: ACCEPT_TOKEN(anon_sym_source); if (lookahead == ',') ADVANCE(1982); if (lookahead == '-') ADVANCE(1963); @@ -47102,7 +47302,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '?') ADVANCE(1972); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1969); END_STATE(); - case 3137: + case 3129: ACCEPT_TOKEN(anon_sym_source); if (lookahead == ',') ADVANCE(1982); if (lookahead == '-') ADVANCE(1964); @@ -47111,20 +47311,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '@') ADVANCE(1972); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1971); END_STATE(); - case 3138: + case 3130: ACCEPT_TOKEN(anon_sym_source); if (lookahead == ',') ADVANCE(1982); if (lookahead == '-') ADVANCE(1964); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1972); END_STATE(); - case 3139: + case 3131: ACCEPT_TOKEN(anon_sym_source); if (lookahead == ',') ADVANCE(1982); - if (lookahead == '-') ADVANCE(4651); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4654); + if (lookahead == '-') ADVANCE(4642); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4645); END_STATE(); - case 3140: + case 3132: ACCEPT_TOKEN(anon_sym_source); if (lookahead == '-') ADVANCE(1975); if ((',' <= lookahead && lookahead <= '.') || @@ -47132,34 +47332,34 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '@') ADVANCE(1982); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1981); END_STATE(); - case 3141: + case 3133: ACCEPT_TOKEN(anon_sym_source); if (lookahead == '-') ADVANCE(1975); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1982); END_STATE(); - case 3142: + case 3134: ACCEPT_TOKEN(anon_sym_source_DASHenv); if (lookahead == ',') ADVANCE(1982); if (lookahead == '.' || lookahead == '?') ADVANCE(1972); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1970); END_STATE(); - case 3143: + case 3135: ACCEPT_TOKEN(anon_sym_source_DASHenv); if (lookahead == ',') ADVANCE(1982); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4654); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4645); END_STATE(); - case 3144: + case 3136: ACCEPT_TOKEN(anon_sym_source_DASHenv); if (lookahead == ',') ADVANCE(1982); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1972); END_STATE(); - case 3145: + case 3137: ACCEPT_TOKEN(anon_sym_source_DASHenv); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1982); END_STATE(); - case 3146: + case 3138: ACCEPT_TOKEN(anon_sym_register); if (lookahead == ',') ADVANCE(1994); if (lookahead == '-' || @@ -47168,13 +47368,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '?') ADVANCE(1992); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1989); END_STATE(); - case 3147: + case 3139: ACCEPT_TOKEN(anon_sym_register); if (lookahead == ',') ADVANCE(1994); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4657); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4648); END_STATE(); - case 3148: + case 3140: ACCEPT_TOKEN(anon_sym_register); if (lookahead == ',') ADVANCE(1994); if (lookahead == '-' || @@ -47183,26 +47383,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '@') ADVANCE(1992); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1991); END_STATE(); - case 3149: + case 3141: ACCEPT_TOKEN(anon_sym_register); if (lookahead == ',') ADVANCE(1994); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1992); END_STATE(); - case 3150: + case 3142: ACCEPT_TOKEN(anon_sym_register); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || lookahead == '@') ADVANCE(1994); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1993); END_STATE(); - case 3151: + case 3143: ACCEPT_TOKEN(anon_sym_register); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1994); END_STATE(); - case 3152: + case 3144: ACCEPT_TOKEN(anon_sym_hide); END_STATE(); - case 3153: + case 3145: ACCEPT_TOKEN(anon_sym_hide); if (lookahead == ',') ADVANCE(1962); if (lookahead == '-') ADVANCE(1943); @@ -47211,7 +47411,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '?') ADVANCE(1952); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1949); END_STATE(); - case 3154: + case 3146: ACCEPT_TOKEN(anon_sym_hide); if (lookahead == ',') ADVANCE(1962); if (lookahead == '-') ADVANCE(1944); @@ -47220,20 +47420,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '@') ADVANCE(1952); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1951); END_STATE(); - case 3155: + case 3147: ACCEPT_TOKEN(anon_sym_hide); if (lookahead == ',') ADVANCE(1962); if (lookahead == '-') ADVANCE(1944); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); - case 3156: + case 3148: ACCEPT_TOKEN(anon_sym_hide); if (lookahead == ',') ADVANCE(1962); - if (lookahead == '-') ADVANCE(4630); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); + if (lookahead == '-') ADVANCE(4621); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4624); END_STATE(); - case 3157: + case 3149: ACCEPT_TOKEN(anon_sym_hide); if (lookahead == '-') ADVANCE(1955); if ((',' <= lookahead && lookahead <= '.') || @@ -47241,34 +47441,34 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '@') ADVANCE(1962); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1961); END_STATE(); - case 3158: + case 3150: ACCEPT_TOKEN(anon_sym_hide); if (lookahead == '-') ADVANCE(1955); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1962); END_STATE(); - case 3159: + case 3151: ACCEPT_TOKEN(anon_sym_hide_DASHenv); if (lookahead == ',') ADVANCE(1962); if (lookahead == '.' || lookahead == '?') ADVANCE(1952); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1950); END_STATE(); - case 3160: + case 3152: ACCEPT_TOKEN(anon_sym_hide_DASHenv); if (lookahead == ',') ADVANCE(1962); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4624); END_STATE(); - case 3161: + case 3153: ACCEPT_TOKEN(anon_sym_hide_DASHenv); if (lookahead == ',') ADVANCE(1962); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1952); END_STATE(); - case 3162: + case 3154: ACCEPT_TOKEN(anon_sym_hide_DASHenv); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1962); END_STATE(); - case 3163: + case 3155: ACCEPT_TOKEN(anon_sym_overlay); if (lookahead == ',') ADVANCE(1988); if (lookahead == '-' || @@ -47277,13 +47477,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '?') ADVANCE(1986); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1983); END_STATE(); - case 3164: + case 3156: ACCEPT_TOKEN(anon_sym_overlay); if (lookahead == ',') ADVANCE(1988); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4655); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4646); END_STATE(); - case 3165: + case 3157: ACCEPT_TOKEN(anon_sym_overlay); if (lookahead == ',') ADVANCE(1988); if (lookahead == '-' || @@ -47292,26 +47492,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '@') ADVANCE(1986); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1985); END_STATE(); - case 3166: + case 3158: ACCEPT_TOKEN(anon_sym_overlay); if (lookahead == ',') ADVANCE(1988); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1986); END_STATE(); - case 3167: + case 3159: ACCEPT_TOKEN(anon_sym_overlay); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || lookahead == '@') ADVANCE(1988); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(1987); END_STATE(); - case 3168: + case 3160: ACCEPT_TOKEN(anon_sym_overlay); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(1988); END_STATE(); - case 3169: + case 3161: ACCEPT_TOKEN(anon_sym_new); END_STATE(); - case 3170: + case 3162: ACCEPT_TOKEN(anon_sym_new); if (lookahead == ',') ADVANCE(2123); if (lookahead == '-' || @@ -47320,13 +47520,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '?') ADVANCE(2121); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2118); END_STATE(); - case 3171: + case 3163: ACCEPT_TOKEN(anon_sym_new); if (lookahead == ',') ADVANCE(2123); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4626); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4617); END_STATE(); - case 3172: + case 3164: ACCEPT_TOKEN(anon_sym_new); if (lookahead == ',') ADVANCE(2123); if (lookahead == '-' || @@ -47335,26 +47535,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '@') ADVANCE(2121); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2120); END_STATE(); - case 3173: + case 3165: ACCEPT_TOKEN(anon_sym_new); if (lookahead == ',') ADVANCE(2123); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2121); END_STATE(); - case 3174: + case 3166: ACCEPT_TOKEN(anon_sym_new); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || lookahead == '@') ADVANCE(2123); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2122); END_STATE(); - case 3175: + case 3167: ACCEPT_TOKEN(anon_sym_new); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2123); END_STATE(); - case 3176: + case 3168: ACCEPT_TOKEN(anon_sym_as); END_STATE(); - case 3177: + case 3169: ACCEPT_TOKEN(anon_sym_as); if (lookahead == ',') ADVANCE(2078); if (lookahead == '-' || @@ -47363,13 +47563,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '?') ADVANCE(2076); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2073); END_STATE(); - case 3178: + case 3170: ACCEPT_TOKEN(anon_sym_as); if (lookahead == ',') ADVANCE(2078); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4610); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4601); END_STATE(); - case 3179: + case 3171: ACCEPT_TOKEN(anon_sym_as); if (lookahead == ',') ADVANCE(2078); if (lookahead == '-' || @@ -47378,1596 +47578,1589 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '@') ADVANCE(2076); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2075); END_STATE(); - case 3180: + case 3172: ACCEPT_TOKEN(anon_sym_as); if (lookahead == ',') ADVANCE(2078); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2076); END_STATE(); - case 3181: + case 3173: ACCEPT_TOKEN(anon_sym_as); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || lookahead == '@') ADVANCE(2078); if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2077); END_STATE(); - case 3182: + case 3174: ACCEPT_TOKEN(anon_sym_as); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); - case 3183: + case 3175: ACCEPT_TOKEN(anon_sym_as); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); - case 3184: + case 3176: ACCEPT_TOKEN(anon_sym_as); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2078); END_STATE(); - case 3185: + case 3177: ACCEPT_TOKEN(anon_sym_as); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); - case 3186: + case 3178: ACCEPT_TOKEN(sym_wild_card); END_STATE(); - case 3187: + case 3179: ACCEPT_TOKEN(sym_wild_card); if (lookahead == '*') ADVANCE(1106); if (lookahead == '=') ADVANCE(1103); END_STATE(); - case 3188: + case 3180: ACCEPT_TOKEN(sym_wild_card); if (lookahead == '=') ADVANCE(1103); END_STATE(); - case 3189: + case 3181: ACCEPT_TOKEN(anon_sym_QMARK2); END_STATE(); - case 3190: + case 3182: ACCEPT_TOKEN(anon_sym_where); END_STATE(); - case 3191: + case 3183: ACCEPT_TOKEN(anon_sym_where); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); - case 3192: + case 3184: ACCEPT_TOKEN(anon_sym_and); END_STATE(); - case 3193: + case 3185: ACCEPT_TOKEN(anon_sym_and); - if (lookahead == '\n') ADVANCE(3264); + if (lookahead == '\n') ADVANCE(3256); if (lookahead == '\r') ADVANCE(13); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3236); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + lookahead == ' ') ADVANCE(3228); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); - case 3194: + case 3186: ACCEPT_TOKEN(anon_sym_and); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); - case 3195: + case 3187: ACCEPT_TOKEN(anon_sym_and); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); - case 3196: + case 3188: ACCEPT_TOKEN(anon_sym_xor); END_STATE(); - case 3197: + case 3189: ACCEPT_TOKEN(anon_sym_xor); - if (lookahead == '\n') ADVANCE(3265); + if (lookahead == '\n') ADVANCE(3257); if (lookahead == '\r') ADVANCE(15); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3237); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + lookahead == ' ') ADVANCE(3229); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); - case 3198: + case 3190: ACCEPT_TOKEN(anon_sym_xor); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); - case 3199: + case 3191: ACCEPT_TOKEN(anon_sym_xor); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); - case 3200: + case 3192: ACCEPT_TOKEN(anon_sym_or); END_STATE(); - case 3201: + case 3193: ACCEPT_TOKEN(anon_sym_or); - if (lookahead == '\n') ADVANCE(3266); + if (lookahead == '\n') ADVANCE(3258); if (lookahead == '\r') ADVANCE(12); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3238); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + lookahead == ' ') ADVANCE(3230); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); - case 3202: + case 3194: ACCEPT_TOKEN(anon_sym_or); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); - case 3203: + case 3195: ACCEPT_TOKEN(anon_sym_or); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); - case 3204: + case 3196: ACCEPT_TOKEN(anon_sym_not_DASHin); END_STATE(); - case 3205: + case 3197: ACCEPT_TOKEN(anon_sym_not_DASHin); - if (lookahead == '\n') ADVANCE(3268); + if (lookahead == '\n') ADVANCE(3260); if (lookahead == '\r') ADVANCE(17); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3240); + lookahead == ' ') ADVANCE(3232); END_STATE(); - case 3206: + case 3198: ACCEPT_TOKEN(anon_sym_starts_DASHwith); END_STATE(); - case 3207: + case 3199: ACCEPT_TOKEN(anon_sym_starts_DASHwith); - if (lookahead == '\n') ADVANCE(3269); + if (lookahead == '\n') ADVANCE(3261); if (lookahead == '\r') ADVANCE(23); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3241); + lookahead == ' ') ADVANCE(3233); END_STATE(); - case 3208: + case 3200: ACCEPT_TOKEN(anon_sym_ends_DASHwith); END_STATE(); - case 3209: + case 3201: ACCEPT_TOKEN(anon_sym_ends_DASHwith); - if (lookahead == '\n') ADVANCE(3270); + if (lookahead == '\n') ADVANCE(3262); if (lookahead == '\r') ADVANCE(22); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3242); + lookahead == ' ') ADVANCE(3234); END_STATE(); - case 3210: + case 3202: ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); - case 3211: + case 3203: ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); - case 3212: + case 3204: ACCEPT_TOKEN(anon_sym_BANG_EQ); - if (lookahead == '\n') ADVANCE(3272); + if (lookahead == '\n') ADVANCE(3264); if (lookahead == '\r') ADVANCE(5); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3244); + lookahead == ' ') ADVANCE(3236); END_STATE(); - case 3213: + case 3205: ACCEPT_TOKEN(anon_sym_LT2); - if (lookahead == '=') ADVANCE(3214); + if (lookahead == '=') ADVANCE(3206); END_STATE(); - case 3214: + case 3206: ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); - case 3215: + case 3207: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 3216: + case 3208: ACCEPT_TOKEN(anon_sym_EQ_TILDE); END_STATE(); - case 3217: + case 3209: ACCEPT_TOKEN(anon_sym_BANG_TILDE); END_STATE(); - case 3218: + case 3210: ACCEPT_TOKEN(anon_sym_BANG_TILDE); - if (lookahead == '\n') ADVANCE(3260); + if (lookahead == '\n') ADVANCE(3252); if (lookahead == '\r') ADVANCE(6); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3232); + lookahead == ' ') ADVANCE(3224); END_STATE(); - case 3219: + case 3211: ACCEPT_TOKEN(aux_sym_expr_unary_token1); END_STATE(); - case 3220: + case 3212: ACCEPT_TOKEN(anon_sym_LPAREN2); END_STATE(); - case 3221: + case 3213: ACCEPT_TOKEN(aux_sym_expr_binary_token1); END_STATE(); - case 3222: + case 3214: ACCEPT_TOKEN(aux_sym_expr_binary_token2); END_STATE(); - case 3223: + case 3215: ACCEPT_TOKEN(aux_sym_expr_binary_token3); END_STATE(); - case 3224: + case 3216: ACCEPT_TOKEN(aux_sym_expr_binary_token4); END_STATE(); - case 3225: + case 3217: ACCEPT_TOKEN(aux_sym_expr_binary_token5); END_STATE(); - case 3226: + case 3218: ACCEPT_TOKEN(aux_sym_expr_binary_token6); END_STATE(); - case 3227: + case 3219: ACCEPT_TOKEN(aux_sym_expr_binary_token7); END_STATE(); - case 3228: + case 3220: ACCEPT_TOKEN(aux_sym_expr_binary_token8); END_STATE(); - case 3229: + case 3221: ACCEPT_TOKEN(aux_sym_expr_binary_token9); END_STATE(); - case 3230: + case 3222: ACCEPT_TOKEN(aux_sym_expr_binary_token10); END_STATE(); - case 3231: + case 3223: ACCEPT_TOKEN(aux_sym_expr_binary_token11); END_STATE(); - case 3232: + case 3224: ACCEPT_TOKEN(aux_sym_expr_binary_token12); END_STATE(); - case 3233: + case 3225: ACCEPT_TOKEN(aux_sym_expr_binary_token13); END_STATE(); - case 3234: + case 3226: ACCEPT_TOKEN(aux_sym_expr_binary_token14); END_STATE(); - case 3235: + case 3227: ACCEPT_TOKEN(aux_sym_expr_binary_token15); END_STATE(); - case 3236: + case 3228: ACCEPT_TOKEN(aux_sym_expr_binary_token16); END_STATE(); - case 3237: + case 3229: ACCEPT_TOKEN(aux_sym_expr_binary_token17); END_STATE(); - case 3238: + case 3230: ACCEPT_TOKEN(aux_sym_expr_binary_token18); END_STATE(); - case 3239: + case 3231: ACCEPT_TOKEN(aux_sym_expr_binary_token19); END_STATE(); - case 3240: + case 3232: ACCEPT_TOKEN(aux_sym_expr_binary_token20); END_STATE(); - case 3241: + case 3233: ACCEPT_TOKEN(aux_sym_expr_binary_token21); END_STATE(); - case 3242: + case 3234: ACCEPT_TOKEN(aux_sym_expr_binary_token22); END_STATE(); - case 3243: + case 3235: ACCEPT_TOKEN(aux_sym_expr_binary_token23); END_STATE(); - case 3244: + case 3236: ACCEPT_TOKEN(aux_sym_expr_binary_token24); END_STATE(); - case 3245: + case 3237: ACCEPT_TOKEN(aux_sym_expr_binary_token25); END_STATE(); - case 3246: + case 3238: ACCEPT_TOKEN(aux_sym_expr_binary_token26); END_STATE(); - case 3247: + case 3239: ACCEPT_TOKEN(aux_sym_expr_binary_token27); END_STATE(); - case 3248: + case 3240: ACCEPT_TOKEN(aux_sym_expr_binary_token28); END_STATE(); - case 3249: + case 3241: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token1); END_STATE(); - case 3250: + case 3242: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token2); END_STATE(); - case 3251: + case 3243: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token3); END_STATE(); - case 3252: + case 3244: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token4); END_STATE(); - case 3253: + case 3245: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token5); END_STATE(); - case 3254: + case 3246: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token6); END_STATE(); - case 3255: + case 3247: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token7); END_STATE(); - case 3256: + case 3248: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token8); END_STATE(); - case 3257: + case 3249: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token9); END_STATE(); - case 3258: + case 3250: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token10); END_STATE(); - case 3259: + case 3251: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token11); END_STATE(); - case 3260: + case 3252: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token12); END_STATE(); - case 3261: + case 3253: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token13); END_STATE(); - case 3262: + case 3254: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token14); END_STATE(); - case 3263: + case 3255: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token15); END_STATE(); - case 3264: + case 3256: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token16); END_STATE(); - case 3265: + case 3257: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token17); END_STATE(); - case 3266: + case 3258: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token18); END_STATE(); - case 3267: + case 3259: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token19); END_STATE(); - case 3268: + case 3260: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token20); END_STATE(); - case 3269: + case 3261: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token21); END_STATE(); - case 3270: + case 3262: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token22); END_STATE(); - case 3271: + case 3263: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token23); END_STATE(); - case 3272: + case 3264: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token24); END_STATE(); - case 3273: + case 3265: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token25); END_STATE(); - case 3274: + case 3266: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token26); END_STATE(); - case 3275: + case 3267: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token27); END_STATE(); - case 3276: + case 3268: ACCEPT_TOKEN(aux_sym_expr_binary_parenthesized_token28); END_STATE(); - case 3277: + case 3269: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LPAREN); END_STATE(); - case 3278: + case 3270: ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '.') ADVANCE(2953); - if (lookahead == '<') ADVANCE(3321); - if (lookahead == '=') ADVANCE(3320); + if (lookahead == '.') ADVANCE(2945); + if (lookahead == '<') ADVANCE(3313); + if (lookahead == '=') ADVANCE(3312); END_STATE(); - case 3279: + case 3271: ACCEPT_TOKEN(anon_sym_DOT_DOT2); if (lookahead == '.') ADVANCE(1113); - if (lookahead == '<') ADVANCE(3321); - if (lookahead == '=') ADVANCE(3320); + if (lookahead == '<') ADVANCE(3313); + if (lookahead == '=') ADVANCE(3312); END_STATE(); - case 3280: + case 3272: ACCEPT_TOKEN(anon_sym_DOT_DOT2); if (lookahead == '.') ADVANCE(1112); - if (lookahead == '<') ADVANCE(3321); - if (lookahead == '=') ADVANCE(3320); + if (lookahead == '<') ADVANCE(3313); + if (lookahead == '=') ADVANCE(3312); END_STATE(); - case 3281: + case 3273: ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '.') ADVANCE(2952); - if (lookahead == '<') ADVANCE(3321); - if (lookahead == '=') ADVANCE(3320); + if (lookahead == '.') ADVANCE(2944); + if (lookahead == '<') ADVANCE(3313); + if (lookahead == '=') ADVANCE(3312); END_STATE(); - case 3282: + case 3274: ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '<') ADVANCE(3321); - if (lookahead == '=') ADVANCE(3320); + if (lookahead == '<') ADVANCE(3313); + if (lookahead == '=') ADVANCE(3312); + END_STATE(); + case 3275: + ACCEPT_TOKEN(anon_sym_DOT); + END_STATE(); + case 3276: + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(3270); + if (lookahead == '_') ADVANCE(1148); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3346); + END_STATE(); + case 3277: + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(3102); + if (lookahead == '_') ADVANCE(3771); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3404); + END_STATE(); + case 3278: + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(3102); + if (lookahead == '_') ADVANCE(4246); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3405); + END_STATE(); + case 3279: + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(3102); + if (lookahead == '_') ADVANCE(3893); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3349); + END_STATE(); + case 3280: + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(3102); + if (lookahead == '_') ADVANCE(4341); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + END_STATE(); + case 3281: + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(3102); + if (lookahead == '_') ADVANCE(616); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3406); + END_STATE(); + case 3282: + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(3102); + if (lookahead == '_') ADVANCE(3775); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3350); END_STATE(); case 3283: ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(3102); + if (lookahead == '_') ADVANCE(4251); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3353); END_STATE(); case 3284: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3278); - if (lookahead == '_') ADVANCE(1148); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3354); + if (lookahead == '.') ADVANCE(3102); + if (lookahead == '_') ADVANCE(3898); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); END_STATE(); case 3285: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3110); - if (lookahead == '_') ADVANCE(613); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3414); + if (lookahead == '.') ADVANCE(3102); + if (lookahead == '_') ADVANCE(4346); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3409); END_STATE(); case 3286: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3110); - if (lookahead == '_') ADVANCE(3780); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3412); + if (lookahead == '.') ADVANCE(1339); + if (lookahead == '_') ADVANCE(1593); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3401); END_STATE(); case 3287: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3110); - if (lookahead == '_') ADVANCE(4255); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3413); + if (lookahead == '.') ADVANCE(1133); + if (lookahead == '_') ADVANCE(1148); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3346); END_STATE(); case 3288: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3110); - if (lookahead == '_') ADVANCE(3902); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3357); + if (lookahead == '.') ADVANCE(1133); + if (lookahead == '_') ADVANCE(1153); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3403); END_STATE(); case 3289: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3110); - if (lookahead == '_') ADVANCE(4350); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3360); + if (lookahead == '.') ADVANCE(3274); END_STATE(); case 3290: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3110); - if (lookahead == '_') ADVANCE(3784); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3358); + if (lookahead == '.') ADVANCE(3274); + if (lookahead == '_') ADVANCE(1593); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3401); END_STATE(); case 3291: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3110); - if (lookahead == '_') ADVANCE(4259); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3361); + if (lookahead == '.') ADVANCE(3274); + if (lookahead == '_') ADVANCE(3771); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3404); END_STATE(); case 3292: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3110); - if (lookahead == '_') ADVANCE(3907); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3416); + if (lookahead == '.') ADVANCE(3274); + if (lookahead == '_') ADVANCE(4246); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3405); END_STATE(); case 3293: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3110); - if (lookahead == '_') ADVANCE(4355); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3417); + if (lookahead == '.') ADVANCE(3274); + if (lookahead == '_') ADVANCE(3898); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); END_STATE(); case 3294: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1339); - if (lookahead == '_') ADVANCE(1593); + if (lookahead == '.') ADVANCE(3274); + if (lookahead == '_') ADVANCE(4346); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3409); END_STATE(); case 3295: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1133); - if (lookahead == '_') ADVANCE(1148); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3354); + if (lookahead == '.') ADVANCE(4320); END_STATE(); case 3296: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1133); - if (lookahead == '_') ADVANCE(1153); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3411); + if (lookahead == '.') ADVANCE(4320); + if (lookahead == '_') ADVANCE(4341); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); END_STATE(); case 3297: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3282); + if (lookahead == '.') ADVANCE(3271); + if (lookahead == '_') ADVANCE(1593); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3401); END_STATE(); case 3298: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3282); - if (lookahead == '_') ADVANCE(1593); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3409); + if (lookahead == '.') ADVANCE(572); END_STATE(); case 3299: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3282); - if (lookahead == '_') ADVANCE(3780); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3412); + if (lookahead == '.') ADVANCE(3272); + if (lookahead == '_') ADVANCE(1153); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3403); END_STATE(); case 3300: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3282); - if (lookahead == '_') ADVANCE(4255); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3413); + if (lookahead == '.') ADVANCE(3273); END_STATE(); case 3301: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3282); - if (lookahead == '_') ADVANCE(3907); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3416); + if (lookahead == '_') ADVANCE(1593); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3401); END_STATE(); case 3302: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3282); - if (lookahead == '_') ADVANCE(4355); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3417); + if (lookahead == '_') ADVANCE(3893); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3349); END_STATE(); case 3303: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(4329); + if (lookahead == '_') ADVANCE(4341); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); END_STATE(); case 3304: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(4329); - if (lookahead == '_') ADVANCE(4350); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3360); + if (lookahead == '_') ADVANCE(4570); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3354); END_STATE(); case 3305: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3279); - if (lookahead == '_') ADVANCE(1593); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3409); + if (lookahead == '_') ADVANCE(623); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3351); END_STATE(); case 3306: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(570); + ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); END_STATE(); case 3307: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3280); - if (lookahead == '_') ADVANCE(1153); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3411); + ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 3308: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3281); + ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 3309: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(1593); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3409); + ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); END_STATE(); case 3310: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(3902); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3357); + ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 3311: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(4350); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3360); + ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 3312: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(4579); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3362); + ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ2); END_STATE(); case 3313: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(621); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3359); + ACCEPT_TOKEN(anon_sym_DOT_DOT_LT2); END_STATE(); case 3314: - ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '-') ADVANCE(3578); + if (lookahead == '_') ADVANCE(3319); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3322); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2639); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 3315: - ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '-') ADVANCE(3827); + if (lookahead == '_') ADVANCE(3329); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); END_STATE(); case 3316: - ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '-') ADVANCE(4295); + if (lookahead == '_') ADVANCE(3329); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); END_STATE(); case 3317: - ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '-') ADVANCE(3983); + if (lookahead == '_') ADVANCE(3329); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); END_STATE(); case 3318: - ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '-') ADVANCE(4401); + if (lookahead == '_') ADVANCE(3329); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); END_STATE(); case 3319: - ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(3319); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3319); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 3320: - ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ2); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(3319); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3314); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2639); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 3321: - ACCEPT_TOKEN(anon_sym_DOT_DOT_LT2); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); + if (lookahead == '_') ADVANCE(3319); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3320); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2639); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 3322: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '-') ADVANCE(3587); - if (lookahead == '_') ADVANCE(3327); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3330); + if (lookahead == '_') ADVANCE(3319); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3322); if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2647); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2639); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 3323: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '-') ADVANCE(3836); - if (lookahead == '_') ADVANCE(3337); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if (lookahead == '_') ADVANCE(3329); + if (lookahead == 'b') ADVANCE(3415); + if (lookahead == 'o') ADVANCE(3431); + if (lookahead == 'x') ADVANCE(3437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3331); END_STATE(); case 3324: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '-') ADVANCE(4304); - if (lookahead == '_') ADVANCE(3337); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if (lookahead == '_') ADVANCE(3329); + if (lookahead == 'b') ADVANCE(3415); + if (lookahead == 'o') ADVANCE(3431); + if (lookahead == 'x') ADVANCE(3437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3333); END_STATE(); case 3325: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '-') ADVANCE(3992); - if (lookahead == '_') ADVANCE(3337); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if (lookahead == '_') ADVANCE(3329); + if (lookahead == 'b') ADVANCE(3415); + if (lookahead == 'o') ADVANCE(3431); + if (lookahead == 'x') ADVANCE(3437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3335); END_STATE(); case 3326: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '-') ADVANCE(4410); - if (lookahead == '_') ADVANCE(3337); + if (lookahead == '_') ADVANCE(3329); + if (lookahead == 'b') ADVANCE(3415); + if (lookahead == 'o') ADVANCE(3431); + if (lookahead == 'x') ADVANCE(3437); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); END_STATE(); case 3327: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3327); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3327); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == '_') ADVANCE(3329); + if (lookahead == 'b') ADVANCE(1865); + if (lookahead == 'o') ADVANCE(1867); + if (lookahead == 'x') ADVANCE(1874); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); END_STATE(); case 3328: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3327); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3322); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2647); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == '_') ADVANCE(3329); + if (lookahead == 'b') ADVANCE(1322); + if (lookahead == 'o') ADVANCE(1323); + if (lookahead == 'x') ADVANCE(1330); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); END_STATE(); case 3329: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3327); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3328); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2647); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == '_') ADVANCE(3329); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); END_STATE(); case 3330: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3327); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3330); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2647); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == '_') ADVANCE(3329); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3317); END_STATE(); case 3331: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3337); - if (lookahead == 'b') ADVANCE(3424); - if (lookahead == 'o') ADVANCE(3440); - if (lookahead == 'x') ADVANCE(3446); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3339); + if (lookahead == '_') ADVANCE(3329); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3330); END_STATE(); case 3332: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3337); - if (lookahead == 'b') ADVANCE(3424); - if (lookahead == 'o') ADVANCE(3440); - if (lookahead == 'x') ADVANCE(3446); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3341); + if (lookahead == '_') ADVANCE(3329); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3315); END_STATE(); case 3333: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3337); - if (lookahead == 'b') ADVANCE(3424); - if (lookahead == 'o') ADVANCE(3440); - if (lookahead == 'x') ADVANCE(3446); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3343); + if (lookahead == '_') ADVANCE(3329); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3332); END_STATE(); case 3334: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3337); - if (lookahead == 'b') ADVANCE(3424); - if (lookahead == 'o') ADVANCE(3440); - if (lookahead == 'x') ADVANCE(3446); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3345); + if (lookahead == '_') ADVANCE(3329); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3318); END_STATE(); case 3335: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3337); - if (lookahead == 'b') ADVANCE(1865); - if (lookahead == 'o') ADVANCE(1867); - if (lookahead == 'x') ADVANCE(1874); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if (lookahead == '_') ADVANCE(3329); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3334); END_STATE(); case 3336: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3337); - if (lookahead == 'b') ADVANCE(1322); - if (lookahead == 'o') ADVANCE(1323); - if (lookahead == 'x') ADVANCE(1330); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if (lookahead == '_') ADVANCE(3329); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3316); END_STATE(); case 3337: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3337); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); + if (lookahead == '_') ADVANCE(3329); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3336); END_STATE(); case 3338: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3337); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3325); + if (lookahead == '_') ADVANCE(3329); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3331); END_STATE(); case 3339: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3337); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3338); + if (lookahead == '_') ADVANCE(3329); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3333); END_STATE(); case 3340: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3337); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3323); + if (lookahead == '_') ADVANCE(3329); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3335); END_STATE(); case 3341: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3337); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3340); + if (lookahead == '_') ADVANCE(3329); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); END_STATE(); case 3342: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3337); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3326); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); + if (lookahead == '_') ADVANCE(3343); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3342); + if (('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2639); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 3343: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3337); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3342); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); + if (lookahead == '_') ADVANCE(3343); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3343); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 3344: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3337); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3324); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); + if (lookahead == '_') ADVANCE(3344); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); END_STATE(); case 3345: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3337); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token3); + if (lookahead == '_') ADVANCE(3345); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3345); END_STATE(); case 3346: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3337); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3339); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); + if (lookahead == '_') ADVANCE(3346); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1149); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3346); END_STATE(); case 3347: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3337); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3341); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); + if (lookahead == '_') ADVANCE(3347); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3347); END_STATE(); case 3348: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3337); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3343); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); + if (lookahead == '_') ADVANCE(3348); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1599); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3348); END_STATE(); case 3349: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3337); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3345); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); + if (lookahead == '_') ADVANCE(3349); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(3894); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3349); END_STATE(); case 3350: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); - if (lookahead == '_') ADVANCE(3351); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); + if (lookahead == '_') ADVANCE(3350); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(3776); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3350); - if (('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2647); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 3351: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); if (lookahead == '_') ADVANCE(3351); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(624); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3351); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); END_STATE(); case 3352: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); if (lookahead == '_') ADVANCE(3352); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4342); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); END_STATE(); case 3353: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token3); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); if (lookahead == '_') ADVANCE(3353); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4252); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3353); END_STATE(); case 3354: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); if (lookahead == '_') ADVANCE(3354); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1149); + lookahead == 'e') ADVANCE(4571); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3354); END_STATE(); case 3355: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); if (lookahead == '_') ADVANCE(3355); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4418); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3355); END_STATE(); case 3356: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); if (lookahead == '_') ADVANCE(3356); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1599); + lookahead == 'e') ADVANCE(4000); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3356); END_STATE(); case 3357: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); if (lookahead == '_') ADVANCE(3357); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3903); + lookahead == 'e') ADVANCE(4597); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3357); END_STATE(); case 3358: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token5); if (lookahead == '_') ADVANCE(3358); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3785); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3358); END_STATE(); case 3359: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(3359); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(622); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3359); + ACCEPT_TOKEN(anon_sym_RPAREN2); END_STATE(); case 3360: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(3360); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4351); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3360); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_DOLLAR); END_STATE(); case 3361: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(3361); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4260); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3361); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_DOLLAR); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 3362: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(3362); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4580); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3362); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '-') ADVANCE(1870); + if (lookahead == '_') ADVANCE(3399); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); END_STATE(); case 3363: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(3363); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4427); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3363); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '-') ADVANCE(3827); + if (lookahead == '_') ADVANCE(3399); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); END_STATE(); case 3364: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(3364); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4009); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3364); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '-') ADVANCE(4295); + if (lookahead == '_') ADVANCE(3399); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); END_STATE(); case 3365: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); - if (lookahead == '_') ADVANCE(3365); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4606); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3365); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '-') ADVANCE(4554); + if (lookahead == '_') ADVANCE(3399); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); END_STATE(); case 3366: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token5); - if (lookahead == '_') ADVANCE(3366); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3366); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '-') ADVANCE(3983); + if (lookahead == '_') ADVANCE(3399); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); END_STATE(); case 3367: - ACCEPT_TOKEN(anon_sym_RPAREN2); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '-') ADVANCE(4401); + if (lookahead == '_') ADVANCE(3399); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); END_STATE(); case 3368: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_DOLLAR); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '-') ADVANCE(914); + if (lookahead == '_') ADVANCE(3399); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); END_STATE(); case 3369: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_DOLLAR); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); + if (lookahead == '_') ADVANCE(3399); + if (lookahead == 'b') ADVANCE(3415); + if (lookahead == 'o') ADVANCE(3431); + if (lookahead == 'x') ADVANCE(3437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3379); END_STATE(); case 3370: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(1870); - if (lookahead == '_') ADVANCE(3407); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); + if (lookahead == '_') ADVANCE(3399); + if (lookahead == 'b') ADVANCE(3415); + if (lookahead == 'o') ADVANCE(3431); + if (lookahead == 'x') ADVANCE(3437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3381); END_STATE(); case 3371: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(3836); - if (lookahead == '_') ADVANCE(3407); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); + if (lookahead == '_') ADVANCE(3399); + if (lookahead == 'b') ADVANCE(3415); + if (lookahead == 'o') ADVANCE(3431); + if (lookahead == 'x') ADVANCE(3437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3383); END_STATE(); case 3372: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(4304); - if (lookahead == '_') ADVANCE(3407); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); + if (lookahead == '_') ADVANCE(3399); + if (lookahead == 'b') ADVANCE(3415); + if (lookahead == 'o') ADVANCE(3431); + if (lookahead == 'x') ADVANCE(3437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); END_STATE(); case 3373: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(4563); - if (lookahead == '_') ADVANCE(3407); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); + if (lookahead == '_') ADVANCE(3399); + if (lookahead == 'b') ADVANCE(3415); + if (lookahead == 'o') ADVANCE(3431); + if (lookahead == 'x') ADVANCE(3437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3387); END_STATE(); case 3374: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(3992); - if (lookahead == '_') ADVANCE(3407); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); + if (lookahead == '_') ADVANCE(3399); + if (lookahead == 'b') ADVANCE(3415); + if (lookahead == 'o') ADVANCE(3431); + if (lookahead == 'x') ADVANCE(3437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3389); END_STATE(); case 3375: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(4410); - if (lookahead == '_') ADVANCE(3407); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); + if (lookahead == '_') ADVANCE(3399); + if (lookahead == 'b') ADVANCE(3415); + if (lookahead == 'o') ADVANCE(3431); + if (lookahead == 'x') ADVANCE(3437); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3391); END_STATE(); case 3376: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(910); - if (lookahead == '_') ADVANCE(3407); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); + if (lookahead == '_') ADVANCE(3399); + if (lookahead == 'b') ADVANCE(1865); + if (lookahead == 'o') ADVANCE(1867); + if (lookahead == 'x') ADVANCE(1874); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); END_STATE(); case 3377: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3407); - if (lookahead == 'b') ADVANCE(3424); - if (lookahead == 'o') ADVANCE(3440); - if (lookahead == 'x') ADVANCE(3446); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3387); + if (lookahead == '_') ADVANCE(3399); + if (lookahead == 'b') ADVANCE(1322); + if (lookahead == 'o') ADVANCE(1323); + if (lookahead == 'x') ADVANCE(1330); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); END_STATE(); case 3378: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3407); - if (lookahead == 'b') ADVANCE(3424); - if (lookahead == 'o') ADVANCE(3440); - if (lookahead == 'x') ADVANCE(3446); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3389); + if (lookahead == '_') ADVANCE(3399); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3362); END_STATE(); case 3379: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3407); - if (lookahead == 'b') ADVANCE(3424); - if (lookahead == 'o') ADVANCE(3440); - if (lookahead == 'x') ADVANCE(3446); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3391); + if (lookahead == '_') ADVANCE(3399); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3378); END_STATE(); case 3380: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3407); - if (lookahead == 'b') ADVANCE(3424); - if (lookahead == 'o') ADVANCE(3440); - if (lookahead == 'x') ADVANCE(3446); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3393); + if (lookahead == '_') ADVANCE(3399); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3363); END_STATE(); case 3381: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3407); - if (lookahead == 'b') ADVANCE(3424); - if (lookahead == 'o') ADVANCE(3440); - if (lookahead == 'x') ADVANCE(3446); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3395); + if (lookahead == '_') ADVANCE(3399); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3380); END_STATE(); case 3382: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3407); - if (lookahead == 'b') ADVANCE(3424); - if (lookahead == 'o') ADVANCE(3440); - if (lookahead == 'x') ADVANCE(3446); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3397); + if (lookahead == '_') ADVANCE(3399); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3364); END_STATE(); case 3383: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3407); - if (lookahead == 'b') ADVANCE(3424); - if (lookahead == 'o') ADVANCE(3440); - if (lookahead == 'x') ADVANCE(3446); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); + if (lookahead == '_') ADVANCE(3399); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3382); END_STATE(); case 3384: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3407); - if (lookahead == 'b') ADVANCE(1865); - if (lookahead == 'o') ADVANCE(1867); - if (lookahead == 'x') ADVANCE(1874); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); + if (lookahead == '_') ADVANCE(3399); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3368); END_STATE(); case 3385: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3407); - if (lookahead == 'b') ADVANCE(1322); - if (lookahead == 'o') ADVANCE(1323); - if (lookahead == 'x') ADVANCE(1330); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); + if (lookahead == '_') ADVANCE(3399); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3384); END_STATE(); case 3386: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3407); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3370); + if (lookahead == '_') ADVANCE(3399); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3365); END_STATE(); case 3387: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3407); + if (lookahead == '_') ADVANCE(3399); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3386); END_STATE(); case 3388: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3407); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3371); + if (lookahead == '_') ADVANCE(3399); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3366); END_STATE(); case 3389: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3407); + if (lookahead == '_') ADVANCE(3399); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3388); END_STATE(); case 3390: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3407); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3372); + if (lookahead == '_') ADVANCE(3399); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3367); END_STATE(); case 3391: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3407); + if (lookahead == '_') ADVANCE(3399); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3390); END_STATE(); case 3392: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3407); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3376); + if (lookahead == '_') ADVANCE(3399); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3379); END_STATE(); case 3393: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3407); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3392); + if (lookahead == '_') ADVANCE(3399); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3381); END_STATE(); case 3394: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3407); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3373); + if (lookahead == '_') ADVANCE(3399); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3383); END_STATE(); case 3395: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3407); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3394); + if (lookahead == '_') ADVANCE(3399); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3385); END_STATE(); case 3396: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3407); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3374); - END_STATE(); - case 3397: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3407); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3396); - END_STATE(); - case 3398: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3407); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3375); - END_STATE(); - case 3399: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3407); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3398); - END_STATE(); - case 3400: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3407); + if (lookahead == '_') ADVANCE(3399); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3387); END_STATE(); - case 3401: + case 3397: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3407); + if (lookahead == '_') ADVANCE(3399); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3389); END_STATE(); - case 3402: + case 3398: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3407); + if (lookahead == '_') ADVANCE(3399); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3391); END_STATE(); - case 3403: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3407); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3393); - END_STATE(); - case 3404: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3407); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3395); - END_STATE(); - case 3405: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3407); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3397); - END_STATE(); - case 3406: + case 3399: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3407); + if (lookahead == '_') ADVANCE(3399); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); END_STATE(); - case 3407: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3407); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); - END_STATE(); - case 3408: + case 3400: ACCEPT_TOKEN(aux_sym__val_number_decimal_token2); - if (lookahead == '_') ADVANCE(3408); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); + if (lookahead == '_') ADVANCE(3400); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3400); END_STATE(); - case 3409: + case 3401: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(3409); + if (lookahead == '_') ADVANCE(3401); if (lookahead == 'E' || lookahead == 'e') ADVANCE(1594); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3409); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3401); END_STATE(); - case 3410: + case 3402: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(3410); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3410); + if (lookahead == '_') ADVANCE(3402); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3402); END_STATE(); - case 3411: + case 3403: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(3411); + if (lookahead == '_') ADVANCE(3403); if (lookahead == 'E' || lookahead == 'e') ADVANCE(1154); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3411); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3403); END_STATE(); - case 3412: + case 3404: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(3412); + if (lookahead == '_') ADVANCE(3404); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3781); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3412); + lookahead == 'e') ADVANCE(3772); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3404); END_STATE(); - case 3413: + case 3405: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(3413); + if (lookahead == '_') ADVANCE(3405); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4256); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3413); + lookahead == 'e') ADVANCE(4247); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3405); END_STATE(); - case 3414: + case 3406: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(3414); + if (lookahead == '_') ADVANCE(3406); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(614); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3414); + lookahead == 'e') ADVANCE(617); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3406); END_STATE(); - case 3415: + case 3407: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(3415); + if (lookahead == '_') ADVANCE(3407); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4525); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3415); + lookahead == 'e') ADVANCE(4516); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); END_STATE(); - case 3416: + case 3408: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(3416); + if (lookahead == '_') ADVANCE(3408); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3912); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3416); + lookahead == 'e') ADVANCE(3903); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); END_STATE(); - case 3417: + case 3409: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); - if (lookahead == '_') ADVANCE(3417); + if (lookahead == '_') ADVANCE(3409); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4359); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3417); + lookahead == 'e') ADVANCE(4350); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3409); END_STATE(); - case 3418: + case 3410: ACCEPT_TOKEN(aux_sym__val_number_decimal_token4); - if (lookahead == '_') ADVANCE(3418); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3418); + if (lookahead == '_') ADVANCE(3410); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3410); END_STATE(); - case 3419: + case 3411: ACCEPT_TOKEN(aux_sym__val_number_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3419); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3411); END_STATE(); - case 3420: + case 3412: ACCEPT_TOKEN(aux_sym__val_number_token2); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(3420); + lookahead == '_') ADVANCE(3412); END_STATE(); - case 3421: + case 3413: ACCEPT_TOKEN(aux_sym__val_number_token3); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(3421); + lookahead == '_') ADVANCE(3413); END_STATE(); - case 3422: + case 3414: ACCEPT_TOKEN(anon_sym_0b); - if (lookahead == '_') ADVANCE(2644); + if (lookahead == '_') ADVANCE(2636); if (lookahead == '0' || - lookahead == '1') ADVANCE(2353); + lookahead == '1') ADVANCE(2352); if (('2' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2647); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); - END_STATE(); - case 3423: - ACCEPT_TOKEN(anon_sym_0b); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(2644); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2639); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); - case 3424: + case 3415: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(3420); + lookahead == '_') ADVANCE(3412); END_STATE(); - case 3425: + case 3416: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(3716); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + lookahead == '_') ADVANCE(4191); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); - case 3426: + case 3417: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(4200); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + lookahead == '_') ADVANCE(3707); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); - case 3427: + case 3418: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(2815); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + lookahead == '_') ADVANCE(2807); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); - case 3428: + case 3419: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(4489); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + lookahead == '_') ADVANCE(4480); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); - case 3429: + case 3420: ACCEPT_TOKEN(sym_filesize_unit); END_STATE(); - case 3430: + case 3421: ACCEPT_TOKEN(sym_filesize_unit); if (lookahead == 'r') ADVANCE(1198); END_STATE(); - case 3431: + case 3422: ACCEPT_TOKEN(sym_filesize_unit); if (lookahead == 'r') ADVANCE(1668); END_STATE(); - case 3432: + case 3423: ACCEPT_TOKEN(sym_filesize_unit); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2647); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2639); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); - case 3433: + case 3424: ACCEPT_TOKEN(sym_filesize_unit); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); - case 3434: + case 3425: ACCEPT_TOKEN(sym_duration_unit); END_STATE(); - case 3435: + case 3426: ACCEPT_TOKEN(sym_duration_unit); - if (lookahead == 'e') ADVANCE(2906); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (lookahead == 'e') ADVANCE(2898); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); - case 3436: + case 3427: ACCEPT_TOKEN(sym_duration_unit); if (lookahead == 'e') ADVANCE(1895); END_STATE(); - case 3437: + case 3428: ACCEPT_TOKEN(sym_duration_unit); - if (lookahead == 'e') ADVANCE(2909); + if (lookahead == 'e') ADVANCE(2901); END_STATE(); - case 3438: + case 3429: ACCEPT_TOKEN(sym_duration_unit); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); - case 3439: + case 3430: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(2646); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + lookahead == '_') ADVANCE(2638); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); - case 3440: + case 3431: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(3421); + lookahead == '_') ADVANCE(3413); END_STATE(); - case 3441: + case 3432: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(3718); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + lookahead == '_') ADVANCE(4197); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); - case 3442: + case 3433: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(4206); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + lookahead == '_') ADVANCE(3709); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); - case 3443: + case 3434: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(2817); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + lookahead == '_') ADVANCE(2809); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); - case 3444: + case 3435: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(4493); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + lookahead == '_') ADVANCE(4484); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); - case 3445: + case 3436: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2651); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2643); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); - case 3446: + case 3437: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3419); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3411); END_STATE(); - case 3447: + case 3438: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3731); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4211); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); - case 3448: + case 3439: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4220); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3722); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); - case 3449: + case 3440: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2830); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2831); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(2822); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(2823); END_STATE(); - case 3450: + case 3441: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4507); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4498); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); - case 3451: + case 3442: ACCEPT_TOKEN(anon_sym_LBRACK2); END_STATE(); - case 3452: + case 3443: ACCEPT_TOKEN(sym_hex_digit); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3452); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3443); END_STATE(); - case 3453: + case 3444: ACCEPT_TOKEN(sym_val_date); END_STATE(); - case 3454: + case 3445: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(3868); + if (lookahead == '.') ADVANCE(3859); if (lookahead == '+' || - lookahead == '-') ADVANCE(3862); + lookahead == '-') ADVANCE(3853); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3453); + lookahead == 'z') ADVANCE(3444); END_STATE(); - case 3455: + case 3446: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(3756); + if (lookahead == '.') ADVANCE(3747); if (lookahead == '+' || - lookahead == '-') ADVANCE(3748); + lookahead == '-') ADVANCE(3739); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3453); + lookahead == 'z') ADVANCE(3444); END_STATE(); - case 3456: + case 3447: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(905); + if (lookahead == '.') ADVANCE(909); if (lookahead == '+' || - lookahead == '-') ADVANCE(576); + lookahead == '-') ADVANCE(578); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3453); + lookahead == 'z') ADVANCE(3444); END_STATE(); - case 3457: + case 3448: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(3840); + if (lookahead == '.') ADVANCE(3831); if (lookahead == '+' || - lookahead == '-') ADVANCE(3767); + lookahead == '-') ADVANCE(3758); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3453); + lookahead == 'z') ADVANCE(3444); END_STATE(); - case 3458: + case 3449: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(4309); + if (lookahead == '.') ADVANCE(4300); if (lookahead == '+' || - lookahead == '-') ADVANCE(4238); + lookahead == '-') ADVANCE(4229); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3453); + lookahead == 'z') ADVANCE(3444); END_STATE(); - case 3459: + case 3450: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(3997); + if (lookahead == '.') ADVANCE(3988); if (lookahead == '+' || - lookahead == '-') ADVANCE(3882); + lookahead == '-') ADVANCE(3873); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3453); + lookahead == 'z') ADVANCE(3444); END_STATE(); - case 3460: + case 3451: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(4415); + if (lookahead == '.') ADVANCE(4406); if (lookahead == '+' || - lookahead == '-') ADVANCE(4335); + lookahead == '-') ADVANCE(4326); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3453); + lookahead == 'z') ADVANCE(3444); END_STATE(); - case 3461: + case 3452: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(3484); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3867); + if (lookahead == ':') ADVANCE(3475); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3858); END_STATE(); - case 3462: + case 3453: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(3485); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3752); + if (lookahead == ':') ADVANCE(3476); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3743); END_STATE(); - case 3463: + case 3454: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(3486); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(901); + if (lookahead == ':') ADVANCE(3477); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(905); END_STATE(); - case 3464: + case 3455: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(3487); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3833); + if (lookahead == ':') ADVANCE(3478); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3824); END_STATE(); - case 3465: + case 3456: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(3488); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4301); + if (lookahead == ':') ADVANCE(3479); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4292); END_STATE(); - case 3466: + case 3457: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(3489); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3989); + if (lookahead == ':') ADVANCE(3480); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3980); END_STATE(); - case 3467: + case 3458: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(3490); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4407); + if (lookahead == ':') ADVANCE(3481); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4398); END_STATE(); - case 3468: + case 3459: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(3589); + if (lookahead == 'T') ADVANCE(3580); END_STATE(); - case 3469: + case 3460: ACCEPT_TOKEN(sym_val_date); if (lookahead == 'T') ADVANCE(1329); END_STATE(); - case 3470: + case 3461: ACCEPT_TOKEN(sym_val_date); if (lookahead == 'T') ADVANCE(1873); END_STATE(); - case 3471: + case 3462: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(3842); + if (lookahead == 'T') ADVANCE(3833); END_STATE(); - case 3472: + case 3463: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(4306); + if (lookahead == 'T') ADVANCE(4297); END_STATE(); - case 3473: + case 3464: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(4565); + if (lookahead == 'T') ADVANCE(4556); END_STATE(); - case 3474: + case 3465: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(3994); + if (lookahead == 'T') ADVANCE(3985); END_STATE(); - case 3475: + case 3466: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(4412); + if (lookahead == 'T') ADVANCE(4403); END_STATE(); - case 3476: + case 3467: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(913); + if (lookahead == 'T') ADVANCE(917); END_STATE(); - case 3477: + case 3468: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(3862); + lookahead == '-') ADVANCE(3853); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3453); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3477); + lookahead == 'z') ADVANCE(3444); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3468); END_STATE(); - case 3478: + case 3469: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(3748); + lookahead == '-') ADVANCE(3739); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3453); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3478); + lookahead == 'z') ADVANCE(3444); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3469); END_STATE(); - case 3479: + case 3470: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(576); + lookahead == '-') ADVANCE(578); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3453); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3479); + lookahead == 'z') ADVANCE(3444); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3470); END_STATE(); - case 3480: + case 3471: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(3767); + lookahead == '-') ADVANCE(3758); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3453); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3480); + lookahead == 'z') ADVANCE(3444); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3471); END_STATE(); - case 3481: + case 3472: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(4238); + lookahead == '-') ADVANCE(4229); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3453); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3481); + lookahead == 'z') ADVANCE(3444); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3472); END_STATE(); - case 3482: + case 3473: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(3882); + lookahead == '-') ADVANCE(3873); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3453); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3482); + lookahead == 'z') ADVANCE(3444); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3473); END_STATE(); - case 3483: + case 3474: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(4335); + lookahead == '-') ADVANCE(4326); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(3453); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3483); + lookahead == 'z') ADVANCE(3444); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3474); END_STATE(); - case 3484: + case 3475: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3867); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3858); END_STATE(); - case 3485: + case 3476: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3752); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3743); END_STATE(); - case 3486: + case 3477: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(901); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(905); END_STATE(); - case 3487: + case 3478: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3833); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3824); END_STATE(); - case 3488: + case 3479: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4301); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4292); END_STATE(); - case 3489: + case 3480: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3989); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(3980); END_STATE(); - case 3490: + case 3481: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4407); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4398); END_STATE(); - case 3491: + case 3482: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 3492: + case 3483: ACCEPT_TOKEN(anon_sym_DQUOTE); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -48975,28 +49168,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3735); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3726); END_STATE(); - case 3493: + case 3484: ACCEPT_TOKEN(sym__escaped_str_content); - if (lookahead == '#') ADVANCE(3494); + if (lookahead == '#') ADVANCE(3485); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3493); + lookahead == ' ') ADVANCE(3484); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && - lookahead != '\\') ADVANCE(3494); + lookahead != '\\') ADVANCE(3485); END_STATE(); - case 3494: + case 3485: ACCEPT_TOKEN(sym__escaped_str_content); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(3494); + lookahead != '\\') ADVANCE(3485); END_STATE(); - case 3495: + case 3486: ACCEPT_TOKEN(sym__str_single_quotes); END_STATE(); - case 3496: + case 3487: ACCEPT_TOKEN(sym__str_single_quotes); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -49004,12 +49197,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3735); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3726); END_STATE(); - case 3497: + case 3488: ACCEPT_TOKEN(sym__str_back_ticks); END_STATE(); - case 3498: + case 3489: ACCEPT_TOKEN(sym__str_back_ticks); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -49017,52 +49210,52 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3735); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3726); END_STATE(); - case 3499: + case 3490: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 3500: + case 3491: ACCEPT_TOKEN(sym_escape_sequence); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); - case 3501: + case 3492: ACCEPT_TOKEN(sym_escaped_interpolated_content); - if (lookahead == '#') ADVANCE(3502); + if (lookahead == '#') ADVANCE(3493); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3501); + lookahead == ' ') ADVANCE(3492); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && lookahead != '(' && - lookahead != '\\') ADVANCE(3502); + lookahead != '\\') ADVANCE(3493); END_STATE(); - case 3502: + case 3493: ACCEPT_TOKEN(sym_escaped_interpolated_content); if (lookahead != 0 && lookahead != '"' && lookahead != '(' && - lookahead != '\\') ADVANCE(3502); + lookahead != '\\') ADVANCE(3493); END_STATE(); - case 3503: + case 3494: ACCEPT_TOKEN(sym_unescaped_interpolated_content); - if (lookahead == '#') ADVANCE(3504); + if (lookahead == '#') ADVANCE(3495); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3503); + lookahead == ' ') ADVANCE(3494); if (lookahead != 0 && lookahead != '\'' && - lookahead != '(') ADVANCE(3504); + lookahead != '(') ADVANCE(3495); END_STATE(); - case 3504: + case 3495: ACCEPT_TOKEN(sym_unescaped_interpolated_content); if (lookahead != 0 && lookahead != '\'' && - lookahead != '(') ADVANCE(3504); + lookahead != '(') ADVANCE(3495); END_STATE(); - case 3505: + case 3496: ACCEPT_TOKEN(anon_sym_DOLLAR_SQUOTE); END_STATE(); - case 3506: + case 3497: ACCEPT_TOKEN(anon_sym_DOLLAR_SQUOTE); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -49070,14 +49263,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3735); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3726); END_STATE(); - case 3507: + case 3498: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 3508: + case 3499: ACCEPT_TOKEN(anon_sym_SQUOTE); - if (lookahead == '\'') ADVANCE(3495); + if (lookahead == '\'') ADVANCE(3486); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == '(' || @@ -49089,13 +49282,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '?' || lookahead == '[' || lookahead == ']' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(517); - if (lookahead != 0) ADVANCE(3533); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(519); + if (lookahead != 0) ADVANCE(3524); END_STATE(); - case 3509: + case 3500: ACCEPT_TOKEN(anon_sym_DOLLAR_DQUOTE); END_STATE(); - case 3510: + case 3501: ACCEPT_TOKEN(anon_sym_DOLLAR_DQUOTE); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -49103,140 +49296,140 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3735); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3726); END_STATE(); - case 3511: + case 3502: ACCEPT_TOKEN(anon_sym_DQUOTE2); END_STATE(); - case 3512: + case 3503: ACCEPT_TOKEN(sym_inter_escape_sequence); END_STATE(); - case 3513: + case 3504: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LBRACK); END_STATE(); - case 3514: + case 3505: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LBRACE); END_STATE(); - case 3515: + case 3506: ACCEPT_TOKEN(sym__entry_separator); END_STATE(); - case 3516: + case 3507: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ',') ADVANCE(3515); + if (lookahead == ',') ADVANCE(3506); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3516); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3515); + lookahead == ' ') ADVANCE(3507); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3506); END_STATE(); - case 3517: + case 3508: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ',') ADVANCE(3515); + if (lookahead == ',') ADVANCE(3506); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3517); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3518); + lookahead == ' ') ADVANCE(3508); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(3509); END_STATE(); - case 3518: + case 3509: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ';') ADVANCE(3532); + if (lookahead == ';') ADVANCE(3523); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(581); + lookahead == ' ') ADVANCE(583); END_STATE(); - case 3519: + case 3510: ACCEPT_TOKEN(sym__entry_separator); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3519); + lookahead == ' ') ADVANCE(3510); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(3515); + lookahead == ',') ADVANCE(3506); END_STATE(); - case 3520: + case 3511: ACCEPT_TOKEN(aux_sym_record_entry_token1); END_STATE(); - case 3521: + case 3512: ACCEPT_TOKEN(anon_sym_PLUS); ADVANCE_MAP( - '\n', 3255, + '\n', 3247, '\r', 3, '+', 1137, '.', 1147, '=', 1101, '_', 1129, - '\t', 3227, - ' ', 3227, + '\t', 3219, + ' ', 3219, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3353); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3345); END_STATE(); - case 3522: + case 3513: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(3540); + if (lookahead == '+') ADVANCE(3531); if (lookahead == '.') ADVANCE(1147); if (lookahead == '=') ADVANCE(1101); - if (lookahead == '_') ADVANCE(3538); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3353); + if (lookahead == '_') ADVANCE(3529); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3345); END_STATE(); - case 3523: + case 3514: ACCEPT_TOKEN(anon_sym_PLUS); if (lookahead == '+') ADVANCE(1350); if (lookahead == '.') ADVANCE(1592); if (lookahead == '=') ADVANCE(1101); if (lookahead == '_') ADVANCE(1337); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3227); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); + lookahead == ' ') ADVANCE(3219); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3400); END_STATE(); - case 3524: + case 3515: ACCEPT_TOKEN(anon_sym_PLUS); if (lookahead == '+') ADVANCE(1351); if (lookahead == '.') ADVANCE(1592); if (lookahead == '=') ADVANCE(1101); if (lookahead == '_') ADVANCE(1337); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3400); END_STATE(); - case 3525: + case 3516: ACCEPT_TOKEN(anon_sym_PLUS); if (lookahead == '.') ADVANCE(1147); if (lookahead == '_') ADVANCE(1129); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3353); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3345); END_STATE(); - case 3526: + case 3517: ACCEPT_TOKEN(anon_sym_PLUS); if (lookahead == '.') ADVANCE(1592); if (lookahead == '_') ADVANCE(1337); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3400); END_STATE(); - case 3527: + case 3518: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '.') ADVANCE(4666); - if (lookahead == '_') ADVANCE(4659); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4666); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == '.') ADVANCE(4657); + if (lookahead == '_') ADVANCE(4650); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4657); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); - case 3528: + case 3519: ACCEPT_TOKEN(anon_sym_PLUS); if (lookahead == '.') ADVANCE(1152); if (lookahead == '_') ADVANCE(1135); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3400); END_STATE(); - case 3529: + case 3520: ACCEPT_TOKEN(anon_sym_PLUS); if (lookahead == '.') ADVANCE(1597); if (lookahead == '_') ADVANCE(1345); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3353); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3345); END_STATE(); - case 3530: + case 3521: ACCEPT_TOKEN(aux_sym__record_key_token1); - if (lookahead == '#') ADVANCE(4794); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3531); + if (lookahead == '#') ADVANCE(4785); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3522); END_STATE(); - case 3531: + case 3522: ACCEPT_TOKEN(aux_sym__record_key_token1); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3531); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3522); END_STATE(); - case 3532: + case 3523: ACCEPT_TOKEN(sym__table_head_separator); END_STATE(); - case 3533: + case 3524: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == '\'') ADVANCE(3495); + if (lookahead == '\'') ADVANCE(3486); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == '(' || @@ -49248,711 +49441,711 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '?' || lookahead == '[' || lookahead == ']' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(517); - if (lookahead != 0) ADVANCE(3533); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(519); + if (lookahead != 0) ADVANCE(3524); END_STATE(); - case 3534: + case 3525: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == '-') ADVANCE(3564); + if (lookahead == '-') ADVANCE(3555); if (lookahead == '.' || lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3601); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); + lookahead == '`') ADVANCE(3592); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); END_STATE(); - case 3535: + case 3526: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == '-') ADVANCE(3572); + if (lookahead == '-') ADVANCE(3563); if (lookahead == '.' || lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3601); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); + lookahead == '`') ADVANCE(3592); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); END_STATE(); - case 3536: + case 3527: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == '-') ADVANCE(3588); + if (lookahead == '-') ADVANCE(3579); if (lookahead == '.' || lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3601); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); + lookahead == '`') ADVANCE(3592); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); END_STATE(); - case 3537: + case 3528: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == '-') ADVANCE(3569); + if (lookahead == '-') ADVANCE(3560); if (lookahead == '.' || lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3601); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); + lookahead == '`') ADVANCE(3592); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); END_STATE(); - case 3538: + case 3529: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == ',') ADVANCE(1875); if (lookahead == '.') ADVANCE(1147); if (lookahead == '?') ADVANCE(1331); - if (lookahead == '_') ADVANCE(3538); + if (lookahead == '_') ADVANCE(3529); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3601); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3353); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); + lookahead == '`') ADVANCE(3592); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3345); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); END_STATE(); - case 3539: + case 3530: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == ':') ADVANCE(3871); + if (lookahead == ':') ADVANCE(3862); if (lookahead == '.' || lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3601); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3590); + lookahead == '`') ADVANCE(3592); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3581); END_STATE(); - case 3540: + case 3531: ACCEPT_TOKEN(aux_sym_path_token1); ADVANCE_MAP( ',', 1875, '=', 1105, '.', 1331, '?', 1331, - '<', 3600, - '>', 3600, - '"', 3601, - '\'', 3601, - '`', 3601, + '<', 3591, + '>', 3591, + '"', 3592, + '\'', 3592, + '`', 3592, ); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); END_STATE(); - case 3541: + case 3532: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == '_') ADVANCE(3541); + if (lookahead == '_') ADVANCE(3532); if (lookahead == '.' || lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3601); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); + lookahead == '`') ADVANCE(3592); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); END_STATE(); - case 3542: + case 3533: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'a') ADVANCE(3575); + if (lookahead == 'a') ADVANCE(3566); if (lookahead == '.' || lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3601); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); + lookahead == '`') ADVANCE(3592); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); END_STATE(); - case 3543: + case 3534: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'a') ADVANCE(3574); + if (lookahead == 'a') ADVANCE(3565); if (lookahead == '.' || lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3601); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); + lookahead == '`') ADVANCE(3592); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); END_STATE(); - case 3544: + case 3535: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'a') ADVANCE(3579); + if (lookahead == 'a') ADVANCE(3570); if (lookahead == '.' || lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3601); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); + lookahead == '`') ADVANCE(3592); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); END_STATE(); - case 3545: + case 3536: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'c') ADVANCE(3546); + if (lookahead == 'c') ADVANCE(3537); if (lookahead == '.' || lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3601); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); + lookahead == '`') ADVANCE(3592); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); END_STATE(); - case 3546: + case 3537: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'e') ADVANCE(3559); + if (lookahead == 'e') ADVANCE(3550); if (lookahead == '.' || lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3601); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); + lookahead == '`') ADVANCE(3592); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); END_STATE(); - case 3547: + case 3538: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'e') ADVANCE(3570); + if (lookahead == 'e') ADVANCE(3561); if (lookahead == '.' || lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3601); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); + lookahead == '`') ADVANCE(3592); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); END_STATE(); - case 3548: + case 3539: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'e') ADVANCE(2938); + if (lookahead == 'e') ADVANCE(2930); if (lookahead == '.' || lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3601); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); + lookahead == '`') ADVANCE(3592); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); END_STATE(); - case 3549: + case 3540: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'f') ADVANCE(2937); + if (lookahead == 'f') ADVANCE(2929); if (lookahead == '.' || lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3601); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); + lookahead == '`') ADVANCE(3592); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); END_STATE(); - case 3550: + case 3541: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'h') ADVANCE(2927); + if (lookahead == 'h') ADVANCE(2919); if (lookahead == '.' || lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3601); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); + lookahead == '`') ADVANCE(3592); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); END_STATE(); - case 3551: + case 3542: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'h') ADVANCE(3208); + if (lookahead == 'h') ADVANCE(3200); if (lookahead == '.' || lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3601); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); + lookahead == '`') ADVANCE(3592); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); END_STATE(); - case 3552: + case 3543: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'h') ADVANCE(3206); + if (lookahead == 'h') ADVANCE(3198); if (lookahead == '.' || lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3601); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); + lookahead == '`') ADVANCE(3592); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); END_STATE(); - case 3553: + case 3544: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'h') ADVANCE(2935); + if (lookahead == 'h') ADVANCE(2927); if (lookahead == '.' || lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3601); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); + lookahead == '`') ADVANCE(3592); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); END_STATE(); - case 3554: + case 3545: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'h') ADVANCE(3534); + if (lookahead == 'h') ADVANCE(3525); if (lookahead == '.' || lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3601); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); + lookahead == '`') ADVANCE(3592); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); END_STATE(); - case 3555: + case 3546: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'i') ADVANCE(3561); + if (lookahead == 'i') ADVANCE(3552); if (lookahead == '.' || lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3601); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); + lookahead == '`') ADVANCE(3592); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); END_STATE(); - case 3556: + case 3547: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'i') ADVANCE(3571); + if (lookahead == 'i') ADVANCE(3562); if (lookahead == '.' || lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3601); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); + lookahead == '`') ADVANCE(3592); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); END_STATE(); - case 3557: + case 3548: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'i') ADVANCE(3576); + if (lookahead == 'i') ADVANCE(3567); if (lookahead == '.' || lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3601); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); + lookahead == '`') ADVANCE(3592); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); END_STATE(); - case 3558: + case 3549: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'i') ADVANCE(3578); + if (lookahead == 'i') ADVANCE(3569); if (lookahead == '.' || lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3601); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); + lookahead == '`') ADVANCE(3592); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); END_STATE(); - case 3559: + case 3550: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'l') ADVANCE(3560); + if (lookahead == 'l') ADVANCE(3551); if (lookahead == '.' || lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3601); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); + lookahead == '`') ADVANCE(3592); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); END_STATE(); - case 3560: + case 3551: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'l') ADVANCE(3537); + if (lookahead == 'l') ADVANCE(3528); if (lookahead == '.' || lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3601); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); + lookahead == '`') ADVANCE(3592); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); END_STATE(); - case 3561: + case 3552: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'n') ADVANCE(3204); + if (lookahead == 'n') ADVANCE(3196); if (lookahead == '.' || lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3601); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); + lookahead == '`') ADVANCE(3592); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); END_STATE(); - case 3562: + case 3553: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'n') ADVANCE(2936); + if (lookahead == 'n') ADVANCE(2928); if (lookahead == '.' || lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3601); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); + lookahead == '`') ADVANCE(3592); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); END_STATE(); - case 3563: + case 3554: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'o') ADVANCE(3549); + if (lookahead == 'o') ADVANCE(3540); if (lookahead == '.' || lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3601); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); + lookahead == '`') ADVANCE(3592); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); END_STATE(); - case 3564: + case 3555: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'o') ADVANCE(3567); + if (lookahead == 'o') ADVANCE(3558); if (lookahead == '.' || lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3601); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); + lookahead == '`') ADVANCE(3592); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); END_STATE(); - case 3565: + case 3556: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'p') ADVANCE(3543); + if (lookahead == 'p') ADVANCE(3534); if (lookahead == '.' || lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3601); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); + lookahead == '`') ADVANCE(3592); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); END_STATE(); - case 3566: + case 3557: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'p') ADVANCE(3548); + if (lookahead == 'p') ADVANCE(3539); if (lookahead == '.' || lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3601); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); + lookahead == '`') ADVANCE(3592); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); END_STATE(); - case 3567: + case 3558: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'p') ADVANCE(3577); + if (lookahead == 'p') ADVANCE(3568); if (lookahead == '.' || lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3601); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); + lookahead == '`') ADVANCE(3592); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); END_STATE(); - case 3568: + case 3559: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'p') ADVANCE(3542); + if (lookahead == 'p') ADVANCE(3533); if (lookahead == '.' || lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3601); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); + lookahead == '`') ADVANCE(3592); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); END_STATE(); - case 3569: + case 3560: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'p') ADVANCE(3544); + if (lookahead == 'p') ADVANCE(3535); if (lookahead == '.' || lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3601); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); + lookahead == '`') ADVANCE(3592); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); END_STATE(); - case 3570: + case 3561: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'r') ADVANCE(3562); + if (lookahead == 'r') ADVANCE(3553); if (lookahead == '.' || lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3601); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); + lookahead == '`') ADVANCE(3592); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); END_STATE(); - case 3571: + case 3562: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 't') ADVANCE(3554); + if (lookahead == 't') ADVANCE(3545); if (lookahead == '.' || lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3601); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); + lookahead == '`') ADVANCE(3592); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); END_STATE(); - case 3572: + case 3563: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 't') ADVANCE(3583); + if (lookahead == 't') ADVANCE(3574); if (lookahead == '.' || lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3601); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); + lookahead == '`') ADVANCE(3592); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); END_STATE(); - case 3573: + case 3564: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 't') ADVANCE(3547); + if (lookahead == 't') ADVANCE(3538); if (lookahead == '.' || lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3601); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); + lookahead == '`') ADVANCE(3592); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); END_STATE(); - case 3574: + case 3565: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 't') ADVANCE(3550); + if (lookahead == 't') ADVANCE(3541); if (lookahead == '.' || lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3601); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); + lookahead == '`') ADVANCE(3592); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); END_STATE(); - case 3575: + case 3566: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 't') ADVANCE(3573); + if (lookahead == 't') ADVANCE(3564); if (lookahead == '.' || lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3601); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); + lookahead == '`') ADVANCE(3592); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); END_STATE(); - case 3576: + case 3567: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 't') ADVANCE(3551); + if (lookahead == 't') ADVANCE(3542); if (lookahead == '.' || lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3601); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); + lookahead == '`') ADVANCE(3592); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); END_STATE(); - case 3577: + case 3568: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 't') ADVANCE(3535); + if (lookahead == 't') ADVANCE(3526); if (lookahead == '.' || lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3601); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); + lookahead == '`') ADVANCE(3592); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); END_STATE(); - case 3578: + case 3569: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 't') ADVANCE(3552); + if (lookahead == 't') ADVANCE(3543); if (lookahead == '.' || lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3601); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); + lookahead == '`') ADVANCE(3592); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); END_STATE(); - case 3579: + case 3570: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 't') ADVANCE(3553); + if (lookahead == 't') ADVANCE(3544); if (lookahead == '.' || lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3601); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); + lookahead == '`') ADVANCE(3592); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); END_STATE(); - case 3580: + case 3571: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'w') ADVANCE(3556); + if (lookahead == 'w') ADVANCE(3547); if (lookahead == '.' || lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3601); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); + lookahead == '`') ADVANCE(3592); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); END_STATE(); - case 3581: + case 3572: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'w') ADVANCE(3557); + if (lookahead == 'w') ADVANCE(3548); if (lookahead == '.' || lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3601); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); + lookahead == '`') ADVANCE(3592); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); END_STATE(); - case 3582: + case 3573: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'w') ADVANCE(3558); + if (lookahead == 'w') ADVANCE(3549); if (lookahead == '.' || lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3601); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); + lookahead == '`') ADVANCE(3592); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); END_STATE(); - case 3583: + case 3574: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == ',') ADVANCE(1875); - if (lookahead == 'y') ADVANCE(3566); + if (lookahead == 'y') ADVANCE(3557); if (lookahead == '.' || lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3601); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); + lookahead == '`') ADVANCE(3592); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); END_STATE(); - case 3584: + case 3575: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == ',') ADVANCE(1875); if (lookahead == '.' || lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3601); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); + lookahead == '`') ADVANCE(3592); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3527); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); END_STATE(); - case 3585: + case 3576: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == ',') ADVANCE(1875); if (lookahead == '.' || lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3601); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3468); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); + lookahead == '`') ADVANCE(3592); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3459); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); END_STATE(); - case 3586: + case 3577: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == ',') ADVANCE(1875); if (lookahead == '.' || lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3601); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3539); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); + lookahead == '`') ADVANCE(3592); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3530); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); END_STATE(); - case 3587: + case 3578: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == ',') ADVANCE(1875); if (lookahead == '.' || lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3601); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3584); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); + lookahead == '`') ADVANCE(3592); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3575); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); END_STATE(); - case 3588: + case 3579: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == ',') ADVANCE(1875); if (lookahead == '.' || lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3601); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3585); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); + lookahead == '`') ADVANCE(3592); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3576); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); END_STATE(); - case 3589: + case 3580: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == ',') ADVANCE(1875); if (lookahead == '.' || lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3601); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3586); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); + lookahead == '`') ADVANCE(3592); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3577); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); END_STATE(); - case 3590: + case 3581: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == ',') ADVANCE(1875); if (lookahead == '.' || lookahead == '?') ADVANCE(1331); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3601); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); + lookahead == '`') ADVANCE(3592); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3581); END_STATE(); - case 3591: + case 3582: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == '.') ADVANCE(2246); - if (lookahead == '_') ADVANCE(3591); + if (lookahead == '_') ADVANCE(3582); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3601); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3353); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3599); + lookahead == '`') ADVANCE(3592); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3345); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); END_STATE(); - case 3592: + case 3583: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == '`') ADVANCE(3497); + if (lookahead == '`') ADVANCE(3488); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == '(' || @@ -49964,783 +50157,783 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '?' || lookahead == '[' || lookahead == ']' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(624); - if (lookahead != 0) ADVANCE(3592); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(626); + if (lookahead != 0) ADVANCE(3583); END_STATE(); - case 3593: + case 3584: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == 'F' || lookahead == 'f') ADVANCE(2224); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3601); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3599); + lookahead == '`') ADVANCE(3592); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); END_STATE(); - case 3594: + case 3585: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3597); + lookahead == 'i') ADVANCE(3588); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3601); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3599); + lookahead == '`') ADVANCE(3592); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); END_STATE(); - case 3595: + case 3586: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3593); + lookahead == 'n') ADVANCE(3584); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3601); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3599); + lookahead == '`') ADVANCE(3592); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); END_STATE(); - case 3596: + case 3587: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3594); + lookahead == 'n') ADVANCE(3585); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3601); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3599); + lookahead == '`') ADVANCE(3592); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); END_STATE(); - case 3597: + case 3588: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == 'T' || - lookahead == 't') ADVANCE(3598); + lookahead == 't') ADVANCE(3589); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3601); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3599); + lookahead == '`') ADVANCE(3592); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); END_STATE(); - case 3598: + case 3589: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == 'Y' || lookahead == 'y') ADVANCE(2223); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3601); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3599); + lookahead == '`') ADVANCE(3592); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); END_STATE(); - case 3599: + case 3590: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3601); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3600); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3599); + lookahead == '`') ADVANCE(3592); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(3591); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3590); END_STATE(); - case 3600: + case 3591: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead == '"' || lookahead == '\'' || - lookahead == '`') ADVANCE(3601); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3600); + lookahead == '`') ADVANCE(3592); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3591); END_STATE(); - case 3601: + case 3592: ACCEPT_TOKEN(aux_sym_path_token1); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3601); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(3592); END_STATE(); - case 3602: + case 3593: ACCEPT_TOKEN(aux_sym_env_var_token1); END_STATE(); - case 3603: + case 3594: ACCEPT_TOKEN(aux_sym_env_var_token2); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3603); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3594); END_STATE(); - case 3604: + case 3595: ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); - case 3605: + case 3596: ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(3637); + if (lookahead == '>') ADVANCE(3628); END_STATE(); - case 3606: + case 3597: ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(3637); - if (lookahead == '|') ADVANCE(2872); + if (lookahead == '>') ADVANCE(3628); + if (lookahead == '|') ADVANCE(2864); END_STATE(); - case 3607: + case 3598: ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(3639); - if (lookahead == '|') ADVANCE(2872); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == '>') ADVANCE(3630); + if (lookahead == '|') ADVANCE(2864); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); - case 3608: + case 3599: ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(3638); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (lookahead == '>') ADVANCE(3629); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); - case 3609: + case 3600: ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(3640); + if (lookahead == '>') ADVANCE(3631); END_STATE(); - case 3610: + case 3601: ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(3640); - if (lookahead == '|') ADVANCE(2873); + if (lookahead == '>') ADVANCE(3631); + if (lookahead == '|') ADVANCE(2865); END_STATE(); - case 3611: + case 3602: ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(3642); - if (lookahead == '|') ADVANCE(2873); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == '>') ADVANCE(3633); + if (lookahead == '|') ADVANCE(2865); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); - case 3612: + case 3603: ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(3641); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (lookahead == '>') ADVANCE(3632); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); - case 3613: + case 3604: ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == '>') ADVANCE(3643); + if (lookahead == '>') ADVANCE(3634); END_STATE(); - case 3614: + case 3605: ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == '>') ADVANCE(3643); - if (lookahead == '|') ADVANCE(2874); + if (lookahead == '>') ADVANCE(3634); + if (lookahead == '|') ADVANCE(2866); END_STATE(); - case 3615: + case 3606: ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == '>') ADVANCE(3645); - if (lookahead == '|') ADVANCE(2874); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == '>') ADVANCE(3636); + if (lookahead == '|') ADVANCE(2866); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); - case 3616: + case 3607: ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == '>') ADVANCE(3644); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (lookahead == '>') ADVANCE(3635); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); - case 3617: + case 3608: ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == '>') ADVANCE(3646); + if (lookahead == '>') ADVANCE(3637); END_STATE(); - case 3618: + case 3609: ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == '>') ADVANCE(3646); - if (lookahead == '|') ADVANCE(2875); + if (lookahead == '>') ADVANCE(3637); + if (lookahead == '|') ADVANCE(2867); END_STATE(); - case 3619: + case 3610: ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == '>') ADVANCE(3648); - if (lookahead == '|') ADVANCE(2875); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == '>') ADVANCE(3639); + if (lookahead == '|') ADVANCE(2867); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); - case 3620: + case 3611: ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == '>') ADVANCE(3647); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (lookahead == '>') ADVANCE(3638); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); - case 3621: + case 3612: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == '>') ADVANCE(3649); + if (lookahead == '>') ADVANCE(3640); END_STATE(); - case 3622: + case 3613: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == '>') ADVANCE(3649); - if (lookahead == '|') ADVANCE(2876); + if (lookahead == '>') ADVANCE(3640); + if (lookahead == '|') ADVANCE(2868); END_STATE(); - case 3623: + case 3614: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == '>') ADVANCE(3651); - if (lookahead == '|') ADVANCE(2876); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == '>') ADVANCE(3642); + if (lookahead == '|') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); - case 3624: + case 3615: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == '>') ADVANCE(3650); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (lookahead == '>') ADVANCE(3641); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); - case 3625: + case 3616: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == '>') ADVANCE(3652); + if (lookahead == '>') ADVANCE(3643); END_STATE(); - case 3626: + case 3617: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == '>') ADVANCE(3652); - if (lookahead == '|') ADVANCE(2877); + if (lookahead == '>') ADVANCE(3643); + if (lookahead == '|') ADVANCE(2869); END_STATE(); - case 3627: + case 3618: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == '>') ADVANCE(3654); - if (lookahead == '|') ADVANCE(2877); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == '>') ADVANCE(3645); + if (lookahead == '|') ADVANCE(2869); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); - case 3628: + case 3619: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == '>') ADVANCE(3653); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (lookahead == '>') ADVANCE(3644); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); - case 3629: + case 3620: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == '>') ADVANCE(3655); + if (lookahead == '>') ADVANCE(3646); END_STATE(); - case 3630: + case 3621: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == '>') ADVANCE(3655); - if (lookahead == '|') ADVANCE(2878); + if (lookahead == '>') ADVANCE(3646); + if (lookahead == '|') ADVANCE(2870); END_STATE(); - case 3631: + case 3622: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == '>') ADVANCE(3657); - if (lookahead == '|') ADVANCE(2878); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == '>') ADVANCE(3648); + if (lookahead == '|') ADVANCE(2870); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); - case 3632: + case 3623: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == '>') ADVANCE(3656); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (lookahead == '>') ADVANCE(3647); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); - case 3633: + case 3624: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(3658); + if (lookahead == '>') ADVANCE(3649); END_STATE(); - case 3634: + case 3625: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(3658); - if (lookahead == '|') ADVANCE(2879); + if (lookahead == '>') ADVANCE(3649); + if (lookahead == '|') ADVANCE(2871); END_STATE(); - case 3635: + case 3626: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(3660); - if (lookahead == '|') ADVANCE(2879); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == '>') ADVANCE(3651); + if (lookahead == '|') ADVANCE(2871); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); - case 3636: + case 3627: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(3659); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (lookahead == '>') ADVANCE(3650); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); - case 3637: + case 3628: ACCEPT_TOKEN(anon_sym_err_GT_GT); END_STATE(); - case 3638: + case 3629: ACCEPT_TOKEN(anon_sym_err_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); - case 3639: + case 3630: ACCEPT_TOKEN(anon_sym_err_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); - case 3640: + case 3631: ACCEPT_TOKEN(anon_sym_out_GT_GT); END_STATE(); - case 3641: + case 3632: ACCEPT_TOKEN(anon_sym_out_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); - case 3642: + case 3633: ACCEPT_TOKEN(anon_sym_out_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); - case 3643: + case 3634: ACCEPT_TOKEN(anon_sym_e_GT_GT); END_STATE(); - case 3644: + case 3635: ACCEPT_TOKEN(anon_sym_e_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); - case 3645: + case 3636: ACCEPT_TOKEN(anon_sym_e_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); - case 3646: + case 3637: ACCEPT_TOKEN(anon_sym_o_GT_GT); END_STATE(); - case 3647: + case 3638: ACCEPT_TOKEN(anon_sym_o_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); - case 3648: + case 3639: ACCEPT_TOKEN(anon_sym_o_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); - case 3649: + case 3640: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_GT); END_STATE(); - case 3650: + case 3641: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); - case 3651: + case 3642: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); - case 3652: + case 3643: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_GT); END_STATE(); - case 3653: + case 3644: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); - case 3654: + case 3645: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); - case 3655: + case 3646: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_GT); END_STATE(); - case 3656: + case 3647: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); - case 3657: + case 3648: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); - case 3658: + case 3649: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_GT); END_STATE(); - case 3659: + case 3650: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); - case 3660: + case 3651: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); - case 3661: + case 3652: ACCEPT_TOKEN(anon_sym_EQ2); END_STATE(); + case 3653: + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '+') ADVANCE(3792); + if (lookahead == '>') ADVANCE(3605); + if (lookahead == 'r') ADVANCE(3688); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + END_STATE(); + case 3654: + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '+') ADVANCE(3785); + if (lookahead == '>') ADVANCE(3609); + if (lookahead == 'u') ADVANCE(3693); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + END_STATE(); + case 3655: + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '+') ADVANCE(673); + if (lookahead == '>') ADVANCE(856); + if (lookahead == 'u') ADVANCE(3694); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + END_STATE(); + case 3656: + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '+') ADVANCE(3793); + if (lookahead == '>') ADVANCE(3597); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + END_STATE(); + case 3657: + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '+') ADVANCE(3786); + if (lookahead == '>') ADVANCE(3601); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + END_STATE(); + case 3658: + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '+') ADVANCE(741); + if (lookahead == '>') ADVANCE(855); + if (lookahead == 'r') ADVANCE(3689); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + END_STATE(); + case 3659: + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '+') ADVANCE(742); + if (lookahead == '>') ADVANCE(858); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + END_STATE(); + case 3660: + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '+') ADVANCE(671); + if (lookahead == '>') ADVANCE(860); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + END_STATE(); + case 3661: + ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == '-') ADVANCE(3713); + if (lookahead == '_') ADVANCE(3672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3672); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); + END_STATE(); case 3662: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(3801); - if (lookahead == '>') ADVANCE(3614); - if (lookahead == 'r') ADVANCE(3697); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + if (lookahead == '-') ADVANCE(3715); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); case 3663: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(3794); - if (lookahead == '>') ADVANCE(3618); - if (lookahead == 'u') ADVANCE(3702); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + if (lookahead == '-') ADVANCE(3719); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); case 3664: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(3802); - if (lookahead == '>') ADVANCE(3606); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + if (lookahead == '-') ADVANCE(3721); + if (lookahead == '_') ADVANCE(3672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3672); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); case 3665: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(3795); - if (lookahead == '>') ADVANCE(3610); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + if (lookahead == '.') ADVANCE(613); + if (lookahead == '_') ADVANCE(3665); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3672); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); case 3666: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(671); - if (lookahead == '>') ADVANCE(852); - if (lookahead == 'u') ADVANCE(3703); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + if (lookahead == ':') ADVANCE(907); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); case 3667: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(739); - if (lookahead == '>') ADVANCE(851); - if (lookahead == 'r') ADVANCE(3698); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + if (lookahead == ':') ADVANCE(3836); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); case 3668: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(741); - if (lookahead == '>') ADVANCE(854); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + if (lookahead == 'T') ADVANCE(3716); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); case 3669: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(670); - if (lookahead == '>') ADVANCE(856); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + if (lookahead == 'T') ADVANCE(3717); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); case 3670: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '-') ADVANCE(3722); - if (lookahead == '_') ADVANCE(3681); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3681); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + if (lookahead == '_') ADVANCE(3672); + if (lookahead == 'b') ADVANCE(3417); + if (lookahead == 'o') ADVANCE(3433); + if (lookahead == 'x') ADVANCE(3439); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3674); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); case 3671: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '-') ADVANCE(3724); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + if (lookahead == '_') ADVANCE(3672); + if (lookahead == 'b') ADVANCE(3417); + if (lookahead == 'o') ADVANCE(3433); + if (lookahead == 'x') ADVANCE(3439); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3677); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); case 3672: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '-') ADVANCE(3728); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + if (lookahead == '_') ADVANCE(3672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3672); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); case 3673: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '-') ADVANCE(3730); - if (lookahead == '_') ADVANCE(3681); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3681); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + if (lookahead == '_') ADVANCE(3672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3661); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); case 3674: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '.') ADVANCE(611); - if (lookahead == '_') ADVANCE(3674); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3681); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + if (lookahead == '_') ADVANCE(3672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3673); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); case 3675: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == ':') ADVANCE(903); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + if (lookahead == '_') ADVANCE(3672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3674); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); case 3676: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == ':') ADVANCE(3845); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + if (lookahead == '_') ADVANCE(3672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3664); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); case 3677: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'T') ADVANCE(3725); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + if (lookahead == '_') ADVANCE(3672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3676); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); case 3678: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'T') ADVANCE(3726); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + if (lookahead == '_') ADVANCE(3672); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3677); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); case 3679: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(3681); - if (lookahead == 'b') ADVANCE(3425); - if (lookahead == 'o') ADVANCE(3441); - if (lookahead == 'x') ADVANCE(3447); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3683); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + if (lookahead == 'a') ADVANCE(3682); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); case 3680: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(3681); - if (lookahead == 'b') ADVANCE(3425); - if (lookahead == 'o') ADVANCE(3441); - if (lookahead == 'x') ADVANCE(3447); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3686); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + if (lookahead == 'e') ADVANCE(2154); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); case 3681: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(3681); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3681); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + if (lookahead == 'e') ADVANCE(2199); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); case 3682: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(3681); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3670); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + if (lookahead == 'l') ADVANCE(3691); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); case 3683: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(3681); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3682); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + if (lookahead == 'l') ADVANCE(2207); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); case 3684: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(3681); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3683); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + if (lookahead == 'l') ADVANCE(3683); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); case 3685: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(3681); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3673); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + if (lookahead == 'n') ADVANCE(3039); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); case 3686: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(3681); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3685); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + if (lookahead == 'o') ADVANCE(3692); + if (lookahead == 'u') ADVANCE(3684); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3701); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); case 3687: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(3681); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3686); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + if (lookahead == 'r') ADVANCE(3695); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); case 3688: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'a') ADVANCE(3691); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + if (lookahead == 'r') ADVANCE(3656); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); case 3689: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'e') ADVANCE(2154); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + if (lookahead == 'r') ADVANCE(3659); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); case 3690: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'e') ADVANCE(2199); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + if (lookahead == 's') ADVANCE(3175); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); case 3691: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'l') ADVANCE(3700); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + if (lookahead == 's') ADVANCE(3681); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); case 3692: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'l') ADVANCE(2207); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + if (lookahead == 't') ADVANCE(3708); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); case 3693: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'l') ADVANCE(3692); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + if (lookahead == 't') ADVANCE(3657); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); case 3694: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'n') ADVANCE(3047); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + if (lookahead == 't') ADVANCE(3660); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); case 3695: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'o') ADVANCE(3701); - if (lookahead == 'u') ADVANCE(3693); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3710); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + if (lookahead == 'u') ADVANCE(3680); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); case 3696: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'r') ADVANCE(3704); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + if (lookahead == 'u') ADVANCE(3684); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3701); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); case 3697: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'r') ADVANCE(3664); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3701); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); case 3698: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'r') ADVANCE(3668); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(3700); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); case 3699: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 's') ADVANCE(3183); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3704); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); case 3700: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 's') ADVANCE(3690); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3703); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); case 3701: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 't') ADVANCE(3717); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3723); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); case 3702: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 't') ADVANCE(3665); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3698); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); case 3703: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 't') ADVANCE(3669); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3699); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); case 3704: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'u') ADVANCE(3689); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(3705); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); case 3705: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'u') ADVANCE(3693); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3710); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(3723); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); case 3706: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3710); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + if (lookahead == '-' || + lookahead == '?' || + lookahead == '@') ADVANCE(3723); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3706); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2644); END_STATE(); case 3707: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3709); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(3707); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); case 3708: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3713); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(3211); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); case 3709: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3712); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(3709); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); case 3710: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3732); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3662); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); case 3711: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3707); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3668); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); case 3712: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3708); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3667); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); case 3713: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(3714); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3710); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); case 3714: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3732); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3666); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); case 3715: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '-' || - lookahead == '?' || - lookahead == '@') ADVANCE(3732); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3715); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2652); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3711); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); case 3716: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(3716); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3712); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); case 3717: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3219); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3714); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); case 3718: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(3718); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3669); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); case 3719: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3671); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3718); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); case 3720: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3677); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3663); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); case 3721: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3676); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); - END_STATE(); - case 3722: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3719); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); - END_STATE(); - case 3723: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3675); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); - END_STATE(); - case 3724: ACCEPT_TOKEN(sym_short_flag_identifier); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3720); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); - END_STATE(); - case 3725: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3721); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); - case 3726: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3723); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); - END_STATE(); - case 3727: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3678); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); - END_STATE(); - case 3728: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3727); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); - END_STATE(); - case 3729: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3672); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); - END_STATE(); - case 3730: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3729); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); - END_STATE(); - case 3731: + case 3722: ACCEPT_TOKEN(sym_short_flag_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3731); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3722); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); - case 3732: + case 3723: ACCEPT_TOKEN(sym_short_flag_identifier); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3732); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(3723); END_STATE(); - case 3733: + case 3724: ACCEPT_TOKEN(sym__unquoted_naive); - if (lookahead == '\'') ADVANCE(3496); + if (lookahead == '\'') ADVANCE(3487); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == '(' || lookahead == ')' || lookahead == ';' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(517); - if (lookahead != 0) ADVANCE(3733); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(519); + if (lookahead != 0) ADVANCE(3724); END_STATE(); - case 3734: + case 3725: ACCEPT_TOKEN(sym__unquoted_naive); - if (lookahead == '`') ADVANCE(3498); + if (lookahead == '`') ADVANCE(3489); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == '(' || lookahead == ')' || lookahead == ';' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(624); - if (lookahead != 0) ADVANCE(3734); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(626); + if (lookahead != 0) ADVANCE(3725); END_STATE(); - case 3735: + case 3726: ACCEPT_TOKEN(sym__unquoted_naive); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -50748,6480 +50941,6480 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3735); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3726); END_STATE(); - case 3736: + case 3727: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '\n') ADVANCE(3271); + if (lookahead == '\n') ADVANCE(3263); if (lookahead == '\r') ADVANCE(9); - if (lookahead == ',') ADVANCE(3846); - if (lookahead == ':') ADVANCE(3759); + if (lookahead == ',') ADVANCE(3837); + if (lookahead == ':') ADVANCE(3750); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3243); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3749); + lookahead == ' ') ADVANCE(3235); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3740); END_STATE(); - case 3737: + case 3728: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '\n') ADVANCE(3259); + if (lookahead == '\n') ADVANCE(3251); if (lookahead == '\r') ADVANCE(10); - if (lookahead == ',') ADVANCE(3846); - if (lookahead == ':') ADVANCE(3759); + if (lookahead == ',') ADVANCE(3837); + if (lookahead == ':') ADVANCE(3750); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3231); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3749); + lookahead == ' ') ADVANCE(3223); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3740); + END_STATE(); + case 3729: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '$') ADVANCE(3360); + if (lookahead == '(') ADVANCE(3269); + if (lookahead == '[') ADVANCE(3504); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + END_STATE(); + case 3730: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '+') ADVANCE(3792); + if (lookahead == '>') ADVANCE(3605); + if (lookahead == 'r') ADVANCE(3798); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + END_STATE(); + case 3731: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '+') ADVANCE(3785); + if (lookahead == '>') ADVANCE(3609); + if (lookahead == 'u') ADVANCE(3806); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + END_STATE(); + case 3732: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '+') ADVANCE(3779); + if (lookahead == '-') ADVANCE(3781); + if (lookahead == '>') ADVANCE(3605); + if (lookahead == '_') ADVANCE(3781); + if (lookahead == 'r') ADVANCE(3798); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + END_STATE(); + case 3733: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '+') ADVANCE(3793); + if (lookahead == '>') ADVANCE(3597); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + END_STATE(); + case 3734: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '+') ADVANCE(3786); + if (lookahead == '>') ADVANCE(3601); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + END_STATE(); + case 3735: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '+') ADVANCE(3795); + if (lookahead == '>') ADVANCE(3604); + if (lookahead == 'r') ADVANCE(3799); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + END_STATE(); + case 3736: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '+') ADVANCE(3787); + if (lookahead == '>') ADVANCE(3608); + if (lookahead == 'u') ADVANCE(3808); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); + END_STATE(); + case 3737: + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if (lookahead == '+') ADVANCE(3796); + if (lookahead == '>') ADVANCE(3596); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3738: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '$') ADVANCE(3368); - if (lookahead == '(') ADVANCE(3277); - if (lookahead == '[') ADVANCE(3513); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == '+') ADVANCE(3788); + if (lookahead == '>') ADVANCE(3600); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3739: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(3801); - if (lookahead == '>') ADVANCE(3614); - if (lookahead == 'r') ADVANCE(3807); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == ',') ADVANCE(3837); + if (lookahead == '2') ADVANCE(3742); + if (lookahead == '0' || + lookahead == '1') ADVANCE(3748); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3750); END_STATE(); case 3740: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(3794); - if (lookahead == '>') ADVANCE(3618); - if (lookahead == 'u') ADVANCE(3815); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == ',') ADVANCE(3837); + if (lookahead == ':') ADVANCE(3750); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3740); END_STATE(); case 3741: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(3788); - if (lookahead == '-') ADVANCE(3790); - if (lookahead == '>') ADVANCE(3614); - if (lookahead == '_') ADVANCE(3790); - if (lookahead == 'r') ADVANCE(3807); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == ',') ADVANCE(3837); + if (lookahead == ':') ADVANCE(3749); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3750); END_STATE(); case 3742: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(3802); - if (lookahead == '>') ADVANCE(3606); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == ',') ADVANCE(3837); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3453); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3750); END_STATE(); case 3743: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(3795); - if (lookahead == '>') ADVANCE(3610); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == ',') ADVANCE(3837); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3444); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3750); END_STATE(); case 3744: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(3804); - if (lookahead == '>') ADVANCE(3613); - if (lookahead == 'r') ADVANCE(3808); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == ',') ADVANCE(3837); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3741); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3750); END_STATE(); case 3745: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(3796); - if (lookahead == '>') ADVANCE(3617); - if (lookahead == 'u') ADVANCE(3817); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == ',') ADVANCE(3837); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3744); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3750); END_STATE(); case 3746: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(3805); - if (lookahead == '>') ADVANCE(3605); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == ',') ADVANCE(3837); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3446); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3750); END_STATE(); case 3747: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(3797); - if (lookahead == '>') ADVANCE(3609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == ',') ADVANCE(3837); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3469); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3750); END_STATE(); case 3748: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(3846); - if (lookahead == '2') ADVANCE(3751); - if (lookahead == '0' || - lookahead == '1') ADVANCE(3757); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3759); + if (lookahead == ',') ADVANCE(3837); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3453); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3750); END_STATE(); case 3749: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(3846); - if (lookahead == ':') ADVANCE(3759); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3749); + if (lookahead == ',') ADVANCE(3837); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3746); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3750); END_STATE(); case 3750: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(3846); - if (lookahead == ':') ADVANCE(3758); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3759); + if (lookahead == ',') ADVANCE(3837); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3750); END_STATE(); case 3751: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(3846); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3462); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3759); + if (lookahead == '-') ADVANCE(3828); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3752: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(3846); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3453); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3759); + if (lookahead == '.') ADVANCE(3102); + if (lookahead == '_') ADVANCE(3771); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3404); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3753: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(3846); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3750); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3759); + if (lookahead == '.') ADVANCE(3102); + if (lookahead == '_') ADVANCE(3775); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3350); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3754: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(3846); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3753); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3759); + if (lookahead == '.') ADVANCE(3274); + if (lookahead == '_') ADVANCE(3771); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3404); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3755: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(3846); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3455); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3759); + if (lookahead == '.') ADVANCE(3770); + if (lookahead == '_') ADVANCE(3755); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3400); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3756: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(3846); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3478); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3759); + if (lookahead == '.') ADVANCE(3100); + if (lookahead == '_') ADVANCE(3771); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3404); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3757: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(3846); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3462); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3759); + if (lookahead == '.') ADVANCE(3774); + if (lookahead == '_') ADVANCE(3757); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3345); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3758: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(3846); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3755); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3759); + if (lookahead == '2') ADVANCE(3822); + if (lookahead == '0' || + lookahead == '1') ADVANCE(3832); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3759: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ',') ADVANCE(3846); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3759); + if (lookahead == ':') ADVANCE(3834); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3760: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '-') ADVANCE(3837); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == ':') ADVANCE(3836); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3761: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(3110); - if (lookahead == '_') ADVANCE(3780); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3412); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == '>') ADVANCE(3625); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3762: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(3110); - if (lookahead == '_') ADVANCE(3784); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3358); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == '>') ADVANCE(3621); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3763: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(3282); - if (lookahead == '_') ADVANCE(3780); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3412); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == '>') ADVANCE(3613); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3764: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(3779); - if (lookahead == '_') ADVANCE(3764); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == '>') ADVANCE(3617); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3765: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(3108); - if (lookahead == '_') ADVANCE(3780); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3412); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == '>') ADVANCE(3624); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3766: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(3783); - if (lookahead == '_') ADVANCE(3766); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3353); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == '>') ADVANCE(3620); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3767: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '2') ADVANCE(3831); - if (lookahead == '0' || - lookahead == '1') ADVANCE(3841); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == '>') ADVANCE(3612); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3768: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ':') ADVANCE(3843); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == '>') ADVANCE(3616); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3769: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ':') ADVANCE(3845); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == '_') ADVANCE(3769); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3770: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(3634); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == '_') ADVANCE(3770); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3410); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3771: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(3630); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == '_') ADVANCE(3771); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3404); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3772: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(3622); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == '_') ADVANCE(3773); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3773); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3402); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3773: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(3626); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == '_') ADVANCE(3773); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3402); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3774: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(3633); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == '_') ADVANCE(3774); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3358); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3775: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(3629); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == '_') ADVANCE(3775); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3350); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3776: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(3621); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == '_') ADVANCE(3777); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3777); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3347); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3777: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(3625); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == '_') ADVANCE(3777); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3347); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3778: ACCEPT_TOKEN(aux_sym_unquoted_token1); if (lookahead == '_') ADVANCE(3778); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3779: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(3779); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3418); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == '_') ADVANCE(3781); + if (lookahead == 'o') ADVANCE(3761); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3780: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(3780); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3412); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == '_') ADVANCE(3781); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3781); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3781: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(3782); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3782); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3410); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == '_') ADVANCE(3781); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3782: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(3782); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3410); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == 'a') ADVANCE(3790); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3783: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(3783); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3366); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == 'e') ADVANCE(2150); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3784: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(3784); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3358); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == 'e') ADVANCE(2195); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3785: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(3786); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3786); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3355); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == 'e') ADVANCE(3762); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3786: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(3786); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3355); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == 'e') ADVANCE(3800); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3787: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(3787); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == 'e') ADVANCE(3766); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3788: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(3790); - if (lookahead == 'o') ADVANCE(3770); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == 'e') ADVANCE(3803); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3789: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(3790); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3790); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == 'l') ADVANCE(2203); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3790: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(3790); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == 'l') ADVANCE(3804); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3791: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'a') ADVANCE(3799); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == 'l') ADVANCE(3789); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3792: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(2150); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == 'o') ADVANCE(3761); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3793: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(2195); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == 'o') ADVANCE(3812); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3794: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(3771); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == 'o') ADVANCE(3805); + if (lookahead == 'u') ADVANCE(3791); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3817); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3795: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(3809); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == 'o') ADVANCE(3765); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3796: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(3775); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == 'o') ADVANCE(3813); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3797: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(3812); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == 'r') ADVANCE(3811); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3798: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(2203); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == 'r') ADVANCE(3733); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3799: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(3813); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == 'r') ADVANCE(3737); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3800: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(3798); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == 'r') ADVANCE(3801); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3801: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(3770); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == 'r') ADVANCE(3764); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3802: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(3821); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == 'r') ADVANCE(3768); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3803: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(3814); - if (lookahead == 'u') ADVANCE(3800); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3826); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == 'r') ADVANCE(3802); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3804: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(3774); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == 's') ADVANCE(3784); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3805: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(3822); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == 't') ADVANCE(3823); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3806: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(3820); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == 't') ADVANCE(3734); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3807: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(3742); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == 't') ADVANCE(3763); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3808: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(3746); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == 't') ADVANCE(3738); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3809: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(3810); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == 't') ADVANCE(3767); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3810: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(3773); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == 'u') ADVANCE(3791); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3817); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3811: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(3777); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == 'u') ADVANCE(3783); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3812: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(3811); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == 'u') ADVANCE(3807); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3813: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 's') ADVANCE(3793); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == 'u') ADVANCE(3809); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3814: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(3832); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3817); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3815: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(3743); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2216); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3816: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(3772); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3820); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3817: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(3747); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2232); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3818: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(3776); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3815); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3819: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(3800); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3826); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3816); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3820: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(3792); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(3821); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3821: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(3816); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2211); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3822: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(3818); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3455); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3823: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3826); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(3211); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3824: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2216); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3444); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3825: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3829); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3751); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3826: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2232); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3760); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3827: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3824); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3825); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3828: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3825); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3829); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3829: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(3830); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3462); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3830: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2211); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3448); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3831: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3464); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3471); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3832: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3219); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3455); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3833: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3453); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3826); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3834: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3760); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3830); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3835: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3769); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3759); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3836: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3834); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3835); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3837: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3838); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3837); END_STATE(); case 3838: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3471); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '+') ADVANCE(3925); + if (lookahead == '>') ADVANCE(3605); + if (lookahead == 'I') ADVANCE(3964); + if (lookahead == 'i') ADVANCE(3964); + if (lookahead == 'r') ADVANCE(3935); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3420); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3839: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3457); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '+') ADVANCE(3925); + if (lookahead == '>') ADVANCE(3605); + if (lookahead == 'r') ADVANCE(3935); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3840: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3480); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '+') ADVANCE(3913); + if (lookahead == '>') ADVANCE(3609); + if (lookahead == 'u') ADVANCE(3946); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3841: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3464); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + ADVANCE_MAP( + '+', 3899, + '-', 3902, + '>', 3605, + 'I', 3964, + '_', 3902, + 'i', 3964, + 'r', 3935, + 'B', 3420, + 'b', 3420, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3842: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3835); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '+') ADVANCE(3899); + if (lookahead == '-') ADVANCE(3902); + if (lookahead == '>') ADVANCE(3605); + if (lookahead == '_') ADVANCE(3902); + if (lookahead == 'r') ADVANCE(3935); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3843: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3839); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '+') ADVANCE(3926); + if (lookahead == '>') ADVANCE(3597); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3844: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3768); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + ADVANCE_MAP( + '+', 3900, + '-', 3902, + '>', 3955, + 'I', 3964, + '_', 3902, + 'i', 3964, + 'r', 3936, + 'B', 3420, + 'b', 3420, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3845: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3844); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '+') ADVANCE(3900); + if (lookahead == '-') ADVANCE(3902); + if (lookahead == '>') ADVANCE(3955); + if (lookahead == '_') ADVANCE(3902); + if (lookahead == 'r') ADVANCE(3936); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3846: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3846); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '+') ADVANCE(3914); + if (lookahead == '>') ADVANCE(3601); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3847: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3934); - if (lookahead == '>') ADVANCE(3614); - if (lookahead == 'I') ADVANCE(3973); - if (lookahead == 'i') ADVANCE(3973); - if (lookahead == 'r') ADVANCE(3944); + if (lookahead == '+') ADVANCE(3929); + if (lookahead == '>') ADVANCE(3955); + if (lookahead == 'I') ADVANCE(3964); + if (lookahead == 'i') ADVANCE(3964); + if (lookahead == 'r') ADVANCE(3936); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + lookahead == 'b') ADVANCE(3420); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3848: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3934); - if (lookahead == '>') ADVANCE(3614); - if (lookahead == 'r') ADVANCE(3944); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == '+') ADVANCE(3929); + if (lookahead == '>') ADVANCE(3955); + if (lookahead == 'r') ADVANCE(3936); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3849: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3922); - if (lookahead == '>') ADVANCE(3618); - if (lookahead == 'u') ADVANCE(3955); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == '+') ADVANCE(3915); + if (lookahead == '>') ADVANCE(3956); + if (lookahead == 'r') ADVANCE(3192); + if (lookahead == 'u') ADVANCE(3948); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3850: ACCEPT_TOKEN(aux_sym_unquoted_token2); - ADVANCE_MAP( - '+', 3908, - '-', 3911, - '>', 3614, - 'I', 3973, - '_', 3911, - 'i', 3973, - 'r', 3944, - 'B', 3429, - 'b', 3429, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == '+') ADVANCE(3915); + if (lookahead == '>') ADVANCE(3956); + if (lookahead == 'u') ADVANCE(3948); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3851: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3908); - if (lookahead == '-') ADVANCE(3911); - if (lookahead == '>') ADVANCE(3614); - if (lookahead == '_') ADVANCE(3911); - if (lookahead == 'r') ADVANCE(3944); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == '+') ADVANCE(3931); + if (lookahead == '>') ADVANCE(3958); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3852: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3935); - if (lookahead == '>') ADVANCE(3606); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == '+') ADVANCE(3916); + if (lookahead == '>') ADVANCE(3960); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3853: ACCEPT_TOKEN(aux_sym_unquoted_token2); - ADVANCE_MAP( - '+', 3909, - '-', 3911, - '>', 3964, - 'I', 3973, - '_', 3911, - 'i', 3973, - 'r', 3945, - 'B', 3429, - 'b', 3429, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == ',') ADVANCE(3993); + if (lookahead == '2') ADVANCE(3856); + if (lookahead == '0' || + lookahead == '1') ADVANCE(3860); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3864); END_STATE(); case 3854: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3909); - if (lookahead == '-') ADVANCE(3911); - if (lookahead == '>') ADVANCE(3964); - if (lookahead == '_') ADVANCE(3911); - if (lookahead == 'r') ADVANCE(3945); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == ',') ADVANCE(3993); + if (lookahead == ':') ADVANCE(3864); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3854); END_STATE(); case 3855: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3923); - if (lookahead == '>') ADVANCE(3610); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == ',') ADVANCE(3993); + if (lookahead == ':') ADVANCE(3863); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3864); END_STATE(); case 3856: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3938); - if (lookahead == '>') ADVANCE(3964); - if (lookahead == 'I') ADVANCE(3973); - if (lookahead == 'i') ADVANCE(3973); - if (lookahead == 'r') ADVANCE(3945); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == ',') ADVANCE(3993); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3452); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3864); END_STATE(); case 3857: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3938); - if (lookahead == '>') ADVANCE(3964); - if (lookahead == 'r') ADVANCE(3945); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == ',') ADVANCE(3993); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3445); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3864); END_STATE(); case 3858: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3924); - if (lookahead == '>') ADVANCE(3965); - if (lookahead == 'r') ADVANCE(3200); - if (lookahead == 'u') ADVANCE(3957); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == ',') ADVANCE(3993); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3444); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3864); END_STATE(); case 3859: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3924); - if (lookahead == '>') ADVANCE(3965); - if (lookahead == 'u') ADVANCE(3957); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == ',') ADVANCE(3993); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3468); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3864); END_STATE(); case 3860: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3940); - if (lookahead == '>') ADVANCE(3967); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == ',') ADVANCE(3993); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3452); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3864); END_STATE(); case 3861: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(3925); - if (lookahead == '>') ADVANCE(3969); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == ',') ADVANCE(3993); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3855); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3864); END_STATE(); case 3862: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == ',') ADVANCE(4002); - if (lookahead == '2') ADVANCE(3865); - if (lookahead == '0' || - lookahead == '1') ADVANCE(3869); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3873); + if (lookahead == ',') ADVANCE(3993); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3861); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3864); END_STATE(); case 3863: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == ',') ADVANCE(4002); - if (lookahead == ':') ADVANCE(3873); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3863); + if (lookahead == ',') ADVANCE(3993); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3857); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3864); END_STATE(); case 3864: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == ',') ADVANCE(4002); - if (lookahead == ':') ADVANCE(3872); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3873); + if (lookahead == ',') ADVANCE(3993); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3864); END_STATE(); case 3865: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == ',') ADVANCE(4002); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3461); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3873); + if (lookahead == '-') ADVANCE(2948); + if (lookahead == '.') ADVANCE(3897); + if (lookahead == '_') ADVANCE(3872); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3972); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3400); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3866: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == ',') ADVANCE(4002); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3454); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3873); + if (lookahead == '-') ADVANCE(3984); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3867: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == ',') ADVANCE(4002); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3453); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3873); + if (lookahead == '.') ADVANCE(3102); + if (lookahead == '_') ADVANCE(3893); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3349); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3868: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == ',') ADVANCE(4002); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3477); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3873); + if (lookahead == '.') ADVANCE(3102); + if (lookahead == '_') ADVANCE(3898); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3869: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == ',') ADVANCE(4002); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3461); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3873); + if (lookahead == '.') ADVANCE(3274); + if (lookahead == '_') ADVANCE(3898); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3870: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == ',') ADVANCE(4002); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3864); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3873); + if (lookahead == '.') ADVANCE(3274); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3871: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == ',') ADVANCE(4002); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3870); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3873); + if (lookahead == '.') ADVANCE(3892); + if (lookahead == '_') ADVANCE(3871); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3345); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3872: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == ',') ADVANCE(4002); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3866); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3873); + if (lookahead == '.') ADVANCE(3897); + if (lookahead == '_') ADVANCE(3872); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3400); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3873: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == ',') ADVANCE(4002); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(3873); + if (lookahead == '2') ADVANCE(3978); + if (lookahead == '0' || + lookahead == '1') ADVANCE(3989); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3874: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '-') ADVANCE(2956); - if (lookahead == '.') ADVANCE(3906); - if (lookahead == '_') ADVANCE(3881); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3981); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == ':') ADVANCE(3986); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3875: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '-') ADVANCE(3993); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == ':') ADVANCE(3992); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3876: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(3110); - if (lookahead == '_') ADVANCE(3902); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3357); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == '>') ADVANCE(3625); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3877: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(3110); - if (lookahead == '_') ADVANCE(3907); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3416); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == '>') ADVANCE(3621); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3878: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(3282); - if (lookahead == '_') ADVANCE(3907); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3416); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == '>') ADVANCE(3613); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3879: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(3282); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == '>') ADVANCE(3617); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3880: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(3901); - if (lookahead == '_') ADVANCE(3880); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3353); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == '>') ADVANCE(3093); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3881: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(3906); - if (lookahead == '_') ADVANCE(3881); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == '>') ADVANCE(3957); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3882: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '2') ADVANCE(3987); - if (lookahead == '0' || - lookahead == '1') ADVANCE(3998); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == '>') ADVANCE(3959); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3883: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == ':') ADVANCE(3995); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == '>') ADVANCE(3961); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3884: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == ':') ADVANCE(4001); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == '>') ADVANCE(3962); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3885: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(3634); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == 'I') ADVANCE(3964); + if (lookahead == '_') ADVANCE(3902); + if (lookahead == 'i') ADVANCE(3964); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3902); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3420); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3886: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(3630); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == 'I') ADVANCE(3964); + if (lookahead == '_') ADVANCE(3902); + if (lookahead == 'i') ADVANCE(3907); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3902); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3420); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3887: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(3622); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == 'I') ADVANCE(3964); + if (lookahead == 'i') ADVANCE(3964); + if (lookahead == 'r') ADVANCE(3951); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3420); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3888: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(3626); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == 'I') ADVANCE(3964); + if (lookahead == 'i') ADVANCE(3964); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3420); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3889: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(3101); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == 'I') ADVANCE(3964); + if (lookahead == 'i') ADVANCE(3907); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3420); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3890: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(3966); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == 'I') ADVANCE(3964); + if (lookahead == 'i') ADVANCE(3922); + if (lookahead == 's') ADVANCE(3425); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3420); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3891: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(3968); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == '_') ADVANCE(3891); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3892: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(3970); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == '_') ADVANCE(3892); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3358); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3893: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(3971); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == '_') ADVANCE(3893); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3349); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3894: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(3973); - if (lookahead == '_') ADVANCE(3911); - if (lookahead == 'i') ADVANCE(3973); + if (lookahead == '_') ADVANCE(3895); if (lookahead == '+' || - lookahead == '-') ADVANCE(3911); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + lookahead == '-') ADVANCE(3895); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3347); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3895: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(3973); - if (lookahead == '_') ADVANCE(3911); - if (lookahead == 'i') ADVANCE(3916); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3911); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == '_') ADVANCE(3895); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3347); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3896: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(3973); - if (lookahead == 'i') ADVANCE(3973); - if (lookahead == 'r') ADVANCE(3960); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == '_') ADVANCE(3896); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3897: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(3973); - if (lookahead == 'i') ADVANCE(3973); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == '_') ADVANCE(3897); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3410); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3898: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(3973); - if (lookahead == 'i') ADVANCE(3916); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == '_') ADVANCE(3898); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3899: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(3973); - if (lookahead == 'i') ADVANCE(3931); - if (lookahead == 's') ADVANCE(3434); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == '_') ADVANCE(3902); + if (lookahead == 'o') ADVANCE(3876); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3900: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(3900); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == '_') ADVANCE(3902); + if (lookahead == 'o') ADVANCE(3881); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3901: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(3901); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3366); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == '_') ADVANCE(3902); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3902); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3902: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == '_') ADVANCE(3902); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3357); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3903: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == '_') ADVANCE(3904); if (lookahead == '+' || lookahead == '-') ADVANCE(3904); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3355); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3402); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3904: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == '_') ADVANCE(3904); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3355); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3402); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3905: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(3905); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == 'a') ADVANCE(3920); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3906: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(3906); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3418); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == 'a') ADVANCE(3954); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3907: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(3907); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3416); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == 'b') ADVANCE(3420); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3908: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(3911); - if (lookahead == 'o') ADVANCE(3885); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == 'c') ADVANCE(3425); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3909: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(3911); - if (lookahead == 'o') ADVANCE(3890); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == 'd') ADVANCE(3184); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3910: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(3911); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3911); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == 'e') ADVANCE(2150); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3911: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(3911); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == 'e') ADVANCE(2195); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3912: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(3913); - if (lookahead == '+' || - lookahead == '-') ADVANCE(3913); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3410); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == 'e') ADVANCE(3908); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3913: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(3913); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3410); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == 'e') ADVANCE(3877); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3914: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'a') ADVANCE(3929); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == 'e') ADVANCE(3937); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3915: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'a') ADVANCE(3963); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == 'e') ADVANCE(3882); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3916: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'b') ADVANCE(3429); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == 'e') ADVANCE(3939); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3917: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'c') ADVANCE(3434); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == 'f') ADVANCE(3068); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3918: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'd') ADVANCE(3192); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == 'k') ADVANCE(3425); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3919: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(2150); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == 'l') ADVANCE(2203); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3920: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(2195); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == 'l') ADVANCE(3944); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3921: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(3917); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == 'l') ADVANCE(3919); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3922: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(3886); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == 'n') ADVANCE(3425); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3420); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3923: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(3946); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == 'n') ADVANCE(3030); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3924: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(3891); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == 'n') ADVANCE(3909); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3925: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(3948); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == 'o') ADVANCE(3876); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3926: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'f') ADVANCE(3076); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == 'o') ADVANCE(3952); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3927: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'k') ADVANCE(3434); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == 'o') ADVANCE(3945); + if (lookahead == 's') ADVANCE(3425); + if (lookahead == 'u') ADVANCE(3921); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3969); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3928: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'l') ADVANCE(2203); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == 'o') ADVANCE(3945); + if (lookahead == 'u') ADVANCE(3921); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3969); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3929: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'l') ADVANCE(3953); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == 'o') ADVANCE(3881); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3930: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'l') ADVANCE(3928); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == 'o') ADVANCE(3933); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3931: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(3434); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == 'o') ADVANCE(3953); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3932: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(3038); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == 'r') ADVANCE(3425); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3933: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(3918); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == 'r') ADVANCE(3188); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3934: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(3885); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == 'r') ADVANCE(3951); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3935: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(3961); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == 'r') ADVANCE(3843); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3936: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(3954); - if (lookahead == 's') ADVANCE(3434); - if (lookahead == 'u') ADVANCE(3930); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3978); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == 'r') ADVANCE(3851); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3937: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(3954); - if (lookahead == 'u') ADVANCE(3930); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3978); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == 'r') ADVANCE(3938); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3938: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(3890); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == 'r') ADVANCE(3879); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3939: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(3942); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == 'r') ADVANCE(3940); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3940: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(3962); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == 'r') ADVANCE(3884); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3941: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(3434); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == 's') ADVANCE(3425); + if (lookahead == 'u') ADVANCE(3921); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3969); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3942: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(3196); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == 's') ADVANCE(3425); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3943: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(3960); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == 's') ADVANCE(3168); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3944: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(3852); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == 's') ADVANCE(3911); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3945: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(3860); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == 't') ADVANCE(3979); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3946: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(3947); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == 't') ADVANCE(3846); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3947: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(3888); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == 't') ADVANCE(3878); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3948: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(3949); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == 't') ADVANCE(3852); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3949: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(3893); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == 't') ADVANCE(3883); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3950: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 's') ADVANCE(3434); - if (lookahead == 'u') ADVANCE(3930); + if (lookahead == 'u') ADVANCE(3921); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3978); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + lookahead == 'a') ADVANCE(3969); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3951: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 's') ADVANCE(3434); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == 'u') ADVANCE(3910); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3952: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 's') ADVANCE(3176); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == 'u') ADVANCE(3947); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3953: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 's') ADVANCE(3920); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == 'u') ADVANCE(3949); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3954: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(3988); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == 'y') ADVANCE(3425); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3955: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(3855); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == '|') ADVANCE(2866); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3956: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(3887); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == '|') ADVANCE(2867); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3957: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(3861); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == '|') ADVANCE(2871); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3958: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(3892); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == '|') ADVANCE(2864); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3959: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'u') ADVANCE(3930); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3978); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == '|') ADVANCE(2870); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3960: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'u') ADVANCE(3919); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == '|') ADVANCE(2865); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3961: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'u') ADVANCE(3956); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == '|') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3962: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'u') ADVANCE(3958); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == '|') ADVANCE(2869); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3963: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'y') ADVANCE(3434); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3969); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3964: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(2874); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3420); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3965: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(2875); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2230); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3966: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(2879); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2219); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3967: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(2872); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3974); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3968: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(2878); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3975); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3969: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(2873); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2232); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3970: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(2876); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3966); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3971: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(2877); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3967); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3972: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3978); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3965); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3973: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3968); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3974: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2230); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(3977); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3975: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2219); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(3976); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3976: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3983); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2223); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3977: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3984); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2211); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3978: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2232); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3457); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3979: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3975); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(3211); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3980: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3976); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3444); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3981: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3974); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3866); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3982: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3977); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3875); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3983: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(3986); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3981); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3984: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(3985); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3990); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3985: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2223); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3982); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3986: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2211); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3987); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3987: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3466); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3450); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3988: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3219); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3473); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3989: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3453); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3457); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3990: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3875); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3465); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3991: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3884); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3874); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3992: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3990); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3991); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3993: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3999); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3993); END_STATE(); case 3994: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3991); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '$') ADVANCE(2912); + if (lookahead == '(') ADVANCE(3212); + if (lookahead == '.') ADVANCE(3997); + if (lookahead == '_') ADVANCE(3998); + if (lookahead == '\t' || + lookahead == ' ') SKIP(402); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3996); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3995: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3996); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '.') ADVANCE(3997); + if (lookahead == '_') ADVANCE(3998); + if (lookahead == '\t' || + lookahead == ' ') SKIP(477); + if (lookahead == '+' || + lookahead == '-') ADVANCE(3996); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3996: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3459); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == '.') ADVANCE(3999); + if (lookahead == '_') ADVANCE(3996); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3345); if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3997: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3482); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == '_') ADVANCE(3997); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3356); if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3998: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3466); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == '_') ADVANCE(3998); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 3999: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3474); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == '_') ADVANCE(3999); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3358); if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 4000: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3883); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == '_') ADVANCE(4001); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4001); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3347); if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 4001: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4000); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == '_') ADVANCE(4001); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3347); if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 4002: - ACCEPT_TOKEN(aux_sym_unquoted_token2); + ACCEPT_TOKEN(aux_sym_unquoted_token3); if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4002); END_STATE(); case 4003: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '$') ADVANCE(2920); - if (lookahead == '(') ADVANCE(3220); - if (lookahead == '.') ADVANCE(4006); - if (lookahead == '_') ADVANCE(4007); - if (lookahead == '\t' || - lookahead == ' ') SKIP(400); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4005); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4011); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '+') ADVANCE(4106); + if (lookahead == '>') ADVANCE(3606); + if (lookahead == 'r') ADVANCE(4119); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4004: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '.') ADVANCE(4006); - if (lookahead == '_') ADVANCE(4007); - if (lookahead == '\t' || - lookahead == ' ') SKIP(475); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4005); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4011); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '+') ADVANCE(4068); + if (lookahead == '>') ADVANCE(3610); + if (lookahead == 'u') ADVANCE(4146); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4005: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '.') ADVANCE(4008); - if (lookahead == '_') ADVANCE(4005); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3353); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4011); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '+') ADVANCE(4109); + if (lookahead == '>') ADVANCE(3598); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4006: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(4006); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3364); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4011); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '+') ADVANCE(4071); + if (lookahead == '>') ADVANCE(3602); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4007: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(4007); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4011); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '+') ADVANCE(4112); + if (lookahead == '>') ADVANCE(4164); + if (lookahead == 'r') ADVANCE(4126); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4008: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(4008); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3366); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4011); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '+') ADVANCE(4075); + if (lookahead == '>') ADVANCE(4165); + if (lookahead == 'r') ADVANCE(3195); + if (lookahead == 'u') ADVANCE(4148); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4009: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(4010); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4010); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3355); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4011); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '+') ADVANCE(4075); + if (lookahead == '>') ADVANCE(4165); + if (lookahead == 'u') ADVANCE(4148); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4010: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(4010); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3355); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4011); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '+') ADVANCE(4115); + if (lookahead == '>') ADVANCE(4167); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4011: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4011); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if (lookahead == '+') ADVANCE(4077); + if (lookahead == '>') ADVANCE(4169); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4012: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4115); - if (lookahead == '>') ADVANCE(3615); - if (lookahead == 'r') ADVANCE(4128); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == '-') ADVANCE(2951); + if (lookahead == '.') ADVANCE(4037); + if (lookahead == '_') ADVANCE(4016); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4182); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4037); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4013: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4077); - if (lookahead == '>') ADVANCE(3619); - if (lookahead == 'u') ADVANCE(4155); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == '-') ADVANCE(4205); + if (lookahead == '_') ADVANCE(4037); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4037); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4014: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4118); - if (lookahead == '>') ADVANCE(3607); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == '-') ADVANCE(4073); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4015: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4080); - if (lookahead == '>') ADVANCE(3611); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == '-') ADVANCE(4206); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4016: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4121); - if (lookahead == '>') ADVANCE(4173); - if (lookahead == 'r') ADVANCE(4135); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == '.') ADVANCE(4037); + if (lookahead == '_') ADVANCE(4016); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4037); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4017: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4084); - if (lookahead == '>') ADVANCE(4174); - if (lookahead == 'r') ADVANCE(3203); - if (lookahead == 'u') ADVANCE(4157); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == '.') ADVANCE(3103); + if (lookahead == '_') ADVANCE(4044); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4041); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4018: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4084); - if (lookahead == '>') ADVANCE(4174); - if (lookahead == 'u') ADVANCE(4157); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == '.') ADVANCE(4046); + if (lookahead == '_') ADVANCE(4018); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4046); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4019: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4124); - if (lookahead == '>') ADVANCE(4176); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == '.') ADVANCE(4203); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4020); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4020: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4086); - if (lookahead == '>') ADVANCE(4178); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == '2') ADVANCE(4193); + if (lookahead == '0' || + lookahead == '1') ADVANCE(4204); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4021: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '-') ADVANCE(2959); - if (lookahead == '.') ADVANCE(4046); - if (lookahead == '_') ADVANCE(4025); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4191); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4046); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == ':') ADVANCE(4195); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4198); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4022: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '-') ADVANCE(4214); - if (lookahead == '_') ADVANCE(4046); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4046); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == ':') ADVANCE(4208); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4023: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '-') ADVANCE(4082); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + if (lookahead == ':') ADVANCE(4210); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4024: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '-') ADVANCE(4215); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == '>') ADVANCE(3626); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4025: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '.') ADVANCE(4046); - if (lookahead == '_') ADVANCE(4025); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4046); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == '>') ADVANCE(3622); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4026: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '.') ADVANCE(3111); - if (lookahead == '_') ADVANCE(4053); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4050); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == '>') ADVANCE(3614); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4027: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '.') ADVANCE(4055); - if (lookahead == '_') ADVANCE(4027); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4055); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + if (lookahead == '>') ADVANCE(3618); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4028: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '.') ADVANCE(4212); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4029); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == '>') ADVANCE(3094); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4029: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '2') ADVANCE(4202); - if (lookahead == '0' || - lookahead == '1') ADVANCE(4213); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == '>') ADVANCE(4166); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4030: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == ':') ADVANCE(4204); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4207); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == '>') ADVANCE(4168); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4031: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == ':') ADVANCE(4217); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == '>') ADVANCE(4170); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4032: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == ':') ADVANCE(4219); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == '>') ADVANCE(4171); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4033: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(3635); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == 'N') ADVANCE(4176); + if (lookahead == 'f') ADVANCE(4192); + if (lookahead == 'n') ADVANCE(4176); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4034: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(3631); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == 'T') ADVANCE(4207); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4035: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(3623); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == '_') ADVANCE(4037); + if (lookahead == 'b') ADVANCE(3416); + if (lookahead == 'o') ADVANCE(3432); + if (lookahead == 'x') ADVANCE(3438); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4039); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4036: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(3627); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == '_') ADVANCE(4037); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4037); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4037); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4037: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(3102); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == '_') ADVANCE(4037); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4037); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4038: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(4175); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == '_') ADVANCE(4037); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4013); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4039: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(4177); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == '_') ADVANCE(4037); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4038); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4040: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(4179); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == '_') ADVANCE(4037); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4039); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4041: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(4180); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == '_') ADVANCE(4041); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4036); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4041); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4042: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'N') ADVANCE(4185); - if (lookahead == 'f') ADVANCE(4201); - if (lookahead == 'n') ADVANCE(4185); + if (lookahead == '_') ADVANCE(4042); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4043); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4043: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'T') ADVANCE(4216); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == '_') ADVANCE(4043); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4045); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4043); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4044: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4046); - if (lookahead == 'b') ADVANCE(3426); - if (lookahead == 'o') ADVANCE(3442); - if (lookahead == 'x') ADVANCE(3448); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4048); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == '_') ADVANCE(4044); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4041); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4045: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == '_') ADVANCE(4046); if (lookahead == '+' || lookahead == '-') ADVANCE(4046); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4046); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4046: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == '_') ADVANCE(4046); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4046); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4047: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4046); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == 'a') ADVANCE(4090); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4048: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4046); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4047); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == 'a') ADVANCE(4143); + if (lookahead == 'o') ADVANCE(4101); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4049: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4046); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4048); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == 'a') ADVANCE(4099); + if (lookahead == 'o') ADVANCE(4120); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4050: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4050); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4045); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4050); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == 'a') ADVANCE(4089); + if (lookahead == 'o') ADVANCE(4057); + if (lookahead == 'u') ADVANCE(4142); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4051: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4051); + if (lookahead == 'a') ADVANCE(4088); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4052); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4052: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4052); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4054); + if (lookahead == 'a') ADVANCE(4163); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4052); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4053: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4053); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4050); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == 'a') ADVANCE(4134); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4054: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4055); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4055); + if (lookahead == 'c') ADVANCE(4081); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4055); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4055: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4055); + if (lookahead == 'c') ADVANCE(4065); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4055); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4056: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(4099); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == 'd') ADVANCE(3187); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4057: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(4152); - if (lookahead == 'o') ADVANCE(4110); + if (lookahead == 'd') ADVANCE(4155); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4058: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(4108); - if (lookahead == 'o') ADVANCE(4129); + if (lookahead == 'd') ADVANCE(4065); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4059: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(4098); - if (lookahead == 'o') ADVANCE(4066); - if (lookahead == 'u') ADVANCE(4151); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + if (lookahead == 'e') ADVANCE(2157); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4060: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(4097); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + if (lookahead == 'e') ADVANCE(2202); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4061: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(4172); + if (lookahead == 'e') ADVANCE(4192); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4062: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(4143); + if (lookahead == 'e') ADVANCE(4078); + if (lookahead == 'o') ADVANCE(4192); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4063: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'c') ADVANCE(4090); + if (lookahead == 'e') ADVANCE(4162); + if (lookahead == 'u') ADVANCE(4096); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4183); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4064: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'c') ADVANCE(4074); + if (lookahead == 'e') ADVANCE(4080); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4065: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'd') ADVANCE(3195); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == 'e') ADVANCE(4014); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4066: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'd') ADVANCE(4164); + if (lookahead == 'e') ADVANCE(2152); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4067: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'd') ADVANCE(4074); + if (lookahead == 'e') ADVANCE(2197); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4068: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(2157); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == 'e') ADVANCE(4025); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4069: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(2202); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == 'e') ADVANCE(4144); + if (lookahead == 'i') ADVANCE(4138); + if (lookahead == 'o') ADVANCE(4108); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4070: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4201); + if (lookahead == 'e') ADVANCE(4051); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4071: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4087); - if (lookahead == 'o') ADVANCE(4201); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + if (lookahead == 'e') ADVANCE(4129); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4072: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4171); - if (lookahead == 'u') ADVANCE(4105); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4192); + if (lookahead == 'e') ADVANCE(4120); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4073: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4089); + if (lookahead == 'e') ADVANCE(4104); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4074: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4023); + if (lookahead == 'e') ADVANCE(4131); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4075: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(2152); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + if (lookahead == 'e') ADVANCE(4030); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4076: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(2197); + if (lookahead == 'e') ADVANCE(4128); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4077: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4034); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == 'e') ADVANCE(4132); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4078: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4153); - if (lookahead == 'i') ADVANCE(4147); - if (lookahead == 'o') ADVANCE(4117); + if (lookahead == 'f') ADVANCE(4192); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4079: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4060); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + if (lookahead == 'f') ADVANCE(3075); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4080: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4138); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == 'g') ADVANCE(4087); + if (lookahead == 't') ADVANCE(4158); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4081: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4129); + if (lookahead == 'h') ADVANCE(4192); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4082: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4113); + if (lookahead == 'h') ADVANCE(4086); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4083: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4140); + if (lookahead == 'i') ADVANCE(4058); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4084: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4039); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == 'i') ADVANCE(4053); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4085: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4137); + if (lookahead == 'i') ADVANCE(4105); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4086: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4141); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == 'i') ADVANCE(4098); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4087: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'f') ADVANCE(4201); + if (lookahead == 'i') ADVANCE(4140); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4088: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'f') ADVANCE(3083); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == 'k') ADVANCE(4192); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4089: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'g') ADVANCE(4096); - if (lookahead == 't') ADVANCE(4167); + if (lookahead == 'k') ADVANCE(4061); + if (lookahead == 't') ADVANCE(4054); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4090: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'h') ADVANCE(4201); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + if (lookahead == 'l') ADVANCE(4136); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4091: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'h') ADVANCE(4095); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + if (lookahead == 'l') ADVANCE(2210); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4092: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(4067); + if (lookahead == 'l') ADVANCE(4139); + if (lookahead == 'r') ADVANCE(4127); + if (lookahead == 'x') ADVANCE(4117); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4093: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(4062); + if (lookahead == 'l') ADVANCE(2205); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4094: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(4114); + if (lookahead == 'l') ADVANCE(4084); + if (lookahead == 's') ADVANCE(4192); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4095: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(4107); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + if (lookahead == 'l') ADVANCE(4091); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4096: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(4149); + if (lookahead == 'l') ADVANCE(4093); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4097: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'k') ADVANCE(4201); + if (lookahead == 'l') ADVANCE(4052); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4098: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'k') ADVANCE(4070); - if (lookahead == 't') ADVANCE(4063); + if (lookahead == 'l') ADVANCE(4061); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4099: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(4145); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == 'l') ADVANCE(4141); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4100: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(2210); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == 'n') ADVANCE(4192); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4101: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(4148); - if (lookahead == 'r') ADVANCE(4136); - if (lookahead == 'x') ADVANCE(4126); + if (lookahead == 'n') ADVANCE(4137); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4102: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(2205); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + if (lookahead == 'n') ADVANCE(4056); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4103: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(4093); - if (lookahead == 's') ADVANCE(4201); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + if (lookahead == 'n') ADVANCE(3041); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4104: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(4100); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == 'n') ADVANCE(4160); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4105: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(4102); + if (lookahead == 'n') ADVANCE(4154); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4106: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(4061); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + if (lookahead == 'o') ADVANCE(4024); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4107: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(4070); + if (lookahead == 'o') ADVANCE(4156); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4108: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(4150); + if (lookahead == 'o') ADVANCE(4116); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4109: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(4201); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + if (lookahead == 'o') ADVANCE(4153); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4110: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(4146); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + if (lookahead == 'o') ADVANCE(4145); + if (lookahead == 'u') ADVANCE(4095); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4181); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4111: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(4065); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == 'o') ADVANCE(4120); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4112: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(3049); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == 'o') ADVANCE(4029); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4113: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(4169); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + if (lookahead == 'o') ADVANCE(4122); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4114: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(4163); + if (lookahead == 'o') ADVANCE(4124); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4115: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4033); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == 'o') ADVANCE(4159); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4116: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4165); + if (lookahead == 'p') ADVANCE(4192); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4117: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4125); + if (lookahead == 'p') ADVANCE(4114); + if (lookahead == 't') ADVANCE(4076); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4118: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4162); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == 'r') ADVANCE(4152); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4119: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4154); - if (lookahead == 'u') ADVANCE(4104); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4190); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == 'r') ADVANCE(4005); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4120: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4129); + if (lookahead == 'r') ADVANCE(4192); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4121: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4038); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == 'r') ADVANCE(4157); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4122: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4131); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == 'r') ADVANCE(3191); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4123: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4133); + if (lookahead == 'r') ADVANCE(4070); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4124: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4168); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == 'r') ADVANCE(4144); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4125: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'p') ADVANCE(4201); + if (lookahead == 'r') ADVANCE(4055); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4126: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'p') ADVANCE(4123); - if (lookahead == 't') ADVANCE(4085); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + if (lookahead == 'r') ADVANCE(4010); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4127: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4161); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == 'r') ADVANCE(4111); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4128: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4014); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == 'r') ADVANCE(4100); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4129: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4201); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + if (lookahead == 'r') ADVANCE(4130); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4130: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4166); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + if (lookahead == 'r') ADVANCE(4027); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4131: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(3199); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == 'r') ADVANCE(4097); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4132: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4079); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + if (lookahead == 'r') ADVANCE(4133); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4133: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4153); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + if (lookahead == 'r') ADVANCE(4032); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4134: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4064); + if (lookahead == 's') ADVANCE(4192); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4135: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4019); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == 's') ADVANCE(3177); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4136: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4120); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + if (lookahead == 's') ADVANCE(4060); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4137: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4109); + if (lookahead == 's') ADVANCE(4142); + if (lookahead == 't') ADVANCE(4085); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4138: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4139); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == 's') ADVANCE(4142); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4139: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4036); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == 's') ADVANCE(4061); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4140: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4106); + if (lookahead == 's') ADVANCE(4150); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4141: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4142); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == 's') ADVANCE(4067); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4142: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4041); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == 't') ADVANCE(4192); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4143: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(4201); + if (lookahead == 't') ADVANCE(4054); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4144: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(3185); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == 't') ADVANCE(4014); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4145: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(4069); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == 't') ADVANCE(4194); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4146: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(4151); - if (lookahead == 't') ADVANCE(4094); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + if (lookahead == 't') ADVANCE(4006); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4147: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(4151); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + if (lookahead == 't') ADVANCE(4026); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4148: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(4070); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + if (lookahead == 't') ADVANCE(4011); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4149: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(4159); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + if (lookahead == 't') ADVANCE(4031); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4150: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(4076); + if (lookahead == 't') ADVANCE(4072); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4151: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4201); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + if (lookahead == 'u') ADVANCE(4095); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4181); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4152: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4063); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + if (lookahead == 'u') ADVANCE(4059); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4153: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4023); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + if (lookahead == 'u') ADVANCE(4147); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4154: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4203); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == 'u') ADVANCE(4061); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4155: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4015); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == 'u') ADVANCE(4098); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4156: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4035); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == 'u') ADVANCE(4125); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4157: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4020); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == 'u') ADVANCE(4066); + if (lookahead == 'y') ADVANCE(4192); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4158: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4040); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == 'u') ADVANCE(4128); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4159: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4081); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + if (lookahead == 'u') ADVANCE(4149); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4160: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4104); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4190); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == 'v') ADVANCE(4192); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4161: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4068); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == 'v') ADVANCE(4074); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4162: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4156); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == 'w') ADVANCE(4192); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4163: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4070); + if (lookahead == 'y') ADVANCE(4192); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4164: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4107); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + if (lookahead == '|') ADVANCE(2866); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4165: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4134); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + if (lookahead == '|') ADVANCE(2867); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4166: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4075); - if (lookahead == 'y') ADVANCE(4201); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + if (lookahead == '|') ADVANCE(2871); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4167: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4137); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + if (lookahead == '|') ADVANCE(2864); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4168: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4158); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == '|') ADVANCE(2870); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4169: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'v') ADVANCE(4201); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + if (lookahead == '|') ADVANCE(2865); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4170: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'v') ADVANCE(4083); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + if (lookahead == '|') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4171: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'w') ADVANCE(4201); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + if (lookahead == '|') ADVANCE(2869); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4172: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'y') ADVANCE(4201); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4020); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(4212); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4172); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4173: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(2874); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4181); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4174: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(2875); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4183); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4175: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(2879); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(4179); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4176: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(2872); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(4180); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4177: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(2878); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4187); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4178: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(2873); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4188); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4179: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(2876); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4185); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4180: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(2877); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4186); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4181: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4029); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4221); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4181); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4182: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4190); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4175); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4183: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4192); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4192); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4184: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4188); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4176); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4185: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4189); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4177); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4186: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4196); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4178); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4187: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4197); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4189); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4188: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4194); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4190); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4189: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4195); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4190: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(4192); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4191: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4184); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(4191); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4192: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4201); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4192); END_STATE(); case 4193: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4185); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4021); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4194: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4186); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(3211); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4195: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4187); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4198); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4196: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4198); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '@')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4196); END_STATE(); case 4197: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4199); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(4197); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4198: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4212); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4199: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4201); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4015); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4200: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(4200); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4034); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4201: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4201); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4023); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4202: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4030); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4019); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4203: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3219); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4172); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4204: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4207); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4021); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4205: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4205); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4199); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4206: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(4206); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4200); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4207: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4221); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4201); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4208: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4024); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4202); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4209: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4043); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4022); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4210: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4032); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4209); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4211: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4028); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4211); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4212: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4181); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); case 4213: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4030); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '$') ADVANCE(3360); + if (lookahead == '(') ADVANCE(3269); + if (lookahead == '[') ADVANCE(3504); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4214: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4208); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '+') ADVANCE(4265); + if (lookahead == '>') ADVANCE(3604); + if (lookahead == 'r') ADVANCE(4268); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4215: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4209); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '+') ADVANCE(4260); + if (lookahead == '>') ADVANCE(3608); + if (lookahead == 'u') ADVANCE(4272); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4216: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4210); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '+') ADVANCE(4254); + if (lookahead == '-') ADVANCE(4256); + if (lookahead == '>') ADVANCE(3604); + if (lookahead == '_') ADVANCE(4256); + if (lookahead == 'r') ADVANCE(4268); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4217: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4211); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '+') ADVANCE(4266); + if (lookahead == '>') ADVANCE(3596); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4218: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4031); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '+') ADVANCE(4261); + if (lookahead == '>') ADVANCE(3600); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4219: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4218); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '-') ADVANCE(4296); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4220: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4220); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '.') ADVANCE(4230); + if (lookahead == ':') ADVANCE(4305); + if (lookahead == '_') ADVANCE(4220); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3345); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4237); END_STATE(); case 4221: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if (lookahead == '.') ADVANCE(3102); + if (lookahead == '_') ADVANCE(4246); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3405); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4222: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '$') ADVANCE(3368); - if (lookahead == '(') ADVANCE(3277); - if (lookahead == '[') ADVANCE(3513); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (lookahead == '.') ADVANCE(3102); + if (lookahead == '_') ADVANCE(4251); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3353); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4223: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '+') ADVANCE(4274); - if (lookahead == '>') ADVANCE(3613); - if (lookahead == 'r') ADVANCE(4277); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (lookahead == '.') ADVANCE(3274); + if (lookahead == '_') ADVANCE(4246); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3405); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4224: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '+') ADVANCE(4269); - if (lookahead == '>') ADVANCE(3617); - if (lookahead == 'u') ADVANCE(4281); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (lookahead == '.') ADVANCE(4245); + if (lookahead == '_') ADVANCE(4225); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4285); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3400); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4225: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '+') ADVANCE(4263); - if (lookahead == '-') ADVANCE(4265); - if (lookahead == '>') ADVANCE(3613); - if (lookahead == '_') ADVANCE(4265); - if (lookahead == 'r') ADVANCE(4277); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (lookahead == '.') ADVANCE(4245); + if (lookahead == '_') ADVANCE(4225); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3400); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4226: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '+') ADVANCE(4275); - if (lookahead == '>') ADVANCE(3605); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (lookahead == '.') ADVANCE(3101); + if (lookahead == '_') ADVANCE(4246); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3405); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4227: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '+') ADVANCE(4270); - if (lookahead == '>') ADVANCE(3609); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (lookahead == '.') ADVANCE(4250); + if (lookahead == '_') ADVANCE(4228); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4285); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3345); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4228: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '-') ADVANCE(4305); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (lookahead == '.') ADVANCE(4250); + if (lookahead == '_') ADVANCE(4228); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3345); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4229: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(4239); - if (lookahead == ':') ADVANCE(4314); - if (lookahead == '_') ADVANCE(4229); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3353); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4246); + if (lookahead == '2') ADVANCE(4291); + if (lookahead == '0' || + lookahead == '1') ADVANCE(4301); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4230: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(3110); - if (lookahead == '_') ADVANCE(4255); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3413); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (lookahead == ':') ADVANCE(4305); + if (lookahead == '_') ADVANCE(4230); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3358); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4237); END_STATE(); case 4231: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(3110); - if (lookahead == '_') ADVANCE(4259); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3361); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (lookahead == ':') ADVANCE(4305); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2225); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4237); END_STATE(); case 4232: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(3282); - if (lookahead == '_') ADVANCE(4255); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3413); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (lookahead == ':') ADVANCE(4305); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4235); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4237); END_STATE(); case 4233: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(4254); - if (lookahead == '_') ADVANCE(4234); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4294); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (lookahead == ':') ADVANCE(4305); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4231); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4237); END_STATE(); case 4234: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(4254); - if (lookahead == '_') ADVANCE(4234); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (lookahead == ':') ADVANCE(4305); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4232); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4237); END_STATE(); case 4235: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(3109); - if (lookahead == '_') ADVANCE(4255); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3413); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (lookahead == ':') ADVANCE(4305); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4236); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4237); END_STATE(); case 4236: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(4258); - if (lookahead == '_') ADVANCE(4237); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4294); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3353); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (lookahead == ':') ADVANCE(4305); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2223); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4237); END_STATE(); case 4237: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(4258); - if (lookahead == '_') ADVANCE(4237); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3353); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (lookahead == ':') ADVANCE(4305); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4237); END_STATE(); case 4238: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '2') ADVANCE(4300); - if (lookahead == '0' || - lookahead == '1') ADVANCE(4310); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (lookahead == ':') ADVANCE(4302); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4239: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(4314); - if (lookahead == '_') ADVANCE(4239); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3366); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4246); + if (lookahead == ':') ADVANCE(4304); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4240: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(4314); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2225); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4246); + if (lookahead == '>') ADVANCE(3624); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4241: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(4314); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4244); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4246); + if (lookahead == '>') ADVANCE(3620); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4242: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(4314); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4240); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4246); + if (lookahead == '>') ADVANCE(3612); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4243: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(4314); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4241); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4246); + if (lookahead == '>') ADVANCE(3616); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4244: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(4314); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4245); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4246); + if (lookahead == '_') ADVANCE(4244); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4245: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(4314); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2223); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4246); + if (lookahead == '_') ADVANCE(4245); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3410); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4246: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(4314); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4246); + if (lookahead == '_') ADVANCE(4246); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3405); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4247: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(4311); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (lookahead == '_') ADVANCE(4248); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4248); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3402); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4248: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(4313); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (lookahead == '_') ADVANCE(4248); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3402); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4249: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '>') ADVANCE(3633); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (lookahead == '_') ADVANCE(4249); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4250: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '>') ADVANCE(3629); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (lookahead == '_') ADVANCE(4250); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3358); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4251: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '>') ADVANCE(3621); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (lookahead == '_') ADVANCE(4251); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3353); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4252: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '>') ADVANCE(3625); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (lookahead == '_') ADVANCE(4253); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4253); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3347); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4253: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == '_') ADVANCE(4253); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3347); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4254: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4254); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3418); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (lookahead == '_') ADVANCE(4256); + if (lookahead == 'o') ADVANCE(4240); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4255: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4255); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3413); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (lookahead == '_') ADVANCE(4256); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4256); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4256: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4257); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4257); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3410); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (lookahead == '_') ADVANCE(4256); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4257: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4257); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3410); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (lookahead == 'a') ADVANCE(4263); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4258: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4258); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3366); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (lookahead == 'e') ADVANCE(2150); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4259: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4259); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3361); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (lookahead == 'e') ADVANCE(2195); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4260: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4261); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4261); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3355); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (lookahead == 'e') ADVANCE(4241); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4261: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4261); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3355); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (lookahead == 'e') ADVANCE(4269); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4262: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4262); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (lookahead == 'l') ADVANCE(2203); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4263: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4265); - if (lookahead == 'o') ADVANCE(4249); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (lookahead == 'l') ADVANCE(4271); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4264: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4265); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4265); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (lookahead == 'l') ADVANCE(4262); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4265: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4265); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (lookahead == 'o') ADVANCE(4240); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4266: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'a') ADVANCE(4272); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (lookahead == 'o') ADVANCE(4276); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4267: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(2150); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (lookahead == 'r') ADVANCE(4275); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4268: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(2195); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (lookahead == 'r') ADVANCE(4217); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4269: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(4250); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (lookahead == 'r') ADVANCE(4270); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4270: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(4278); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (lookahead == 'r') ADVANCE(4243); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4271: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(2203); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (lookahead == 's') ADVANCE(4259); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4272: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(4280); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (lookahead == 't') ADVANCE(4218); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4273: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(4271); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (lookahead == 't') ADVANCE(4242); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4274: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'o') ADVANCE(4249); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (lookahead == 'u') ADVANCE(4264); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4282); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4275: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'o') ADVANCE(4285); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (lookahead == 'u') ADVANCE(4258); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4276: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(4284); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (lookahead == 'u') ADVANCE(4273); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4277: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(4226); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4282); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4278: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(4279); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2228); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4279: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(4252); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2217); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4280: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 's') ADVANCE(4268); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4287); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4281: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 't') ADVANCE(4227); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4288); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4282: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 't') ADVANCE(4251); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2232); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4283: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'u') ADVANCE(4273); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4291); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4279); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4284: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'u') ADVANCE(4267); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4280); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4285: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'u') ADVANCE(4282); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4278); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4286: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4291); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4281); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4287: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2228); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4290); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4288: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2217); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4289); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4289: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4296); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2223); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4290: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4297); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2211); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4291: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2232); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3456); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4292: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4288); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3444); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4293: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4289); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4219); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4294: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4287); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4239); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4295: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4290); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4293); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4296: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4299); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4298); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4297: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4298); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4294); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4298: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2223); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3463); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4299: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2211); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3449); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4300: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3465); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3472); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4301: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3453); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3456); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4302: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4228); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4299); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4303: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4248); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4238); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4304: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4302); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4303); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4305: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4307); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4305); END_STATE(); case 4306: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4303); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '+') ADVANCE(4366); + if (lookahead == '>') ADVANCE(3604); + if (lookahead == 'I') ADVANCE(4383); + if (lookahead == 'i') ADVANCE(4383); + if (lookahead == 'r') ADVANCE(4370); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3420); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4307: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3472); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '+') ADVANCE(4366); + if (lookahead == '>') ADVANCE(3604); + if (lookahead == 'r') ADVANCE(4370); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4308: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3458); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '+') ADVANCE(4359); + if (lookahead == '>') ADVANCE(3608); + if (lookahead == 'u') ADVANCE(4376); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4309: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3481); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + ADVANCE_MAP( + '+', 4347, + '-', 4349, + '>', 3604, + 'I', 4383, + '_', 4349, + 'i', 4383, + 'r', 4370, + 'B', 3420, + 'b', 3420, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4310: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3465); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '+') ADVANCE(4347); + if (lookahead == '-') ADVANCE(4349); + if (lookahead == '>') ADVANCE(3604); + if (lookahead == '_') ADVANCE(4349); + if (lookahead == 'r') ADVANCE(4370); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4311: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4308); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '+') ADVANCE(4367); + if (lookahead == '>') ADVANCE(3596); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4312: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4247); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '+') ADVANCE(4360); + if (lookahead == '>') ADVANCE(3600); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4313: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4312); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '-') ADVANCE(4402); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4314: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4314); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if (lookahead == '.') ADVANCE(3102); + if (lookahead == '_') ADVANCE(4341); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4315: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '+') ADVANCE(4375); - if (lookahead == '>') ADVANCE(3613); - if (lookahead == 'I') ADVANCE(4392); - if (lookahead == 'i') ADVANCE(4392); - if (lookahead == 'r') ADVANCE(4379); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == '.') ADVANCE(3102); + if (lookahead == '_') ADVANCE(4346); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3409); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4316: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '+') ADVANCE(4375); - if (lookahead == '>') ADVANCE(3613); - if (lookahead == 'r') ADVANCE(4379); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == '.') ADVANCE(3274); + if (lookahead == '_') ADVANCE(4346); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3409); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4317: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '+') ADVANCE(4368); - if (lookahead == '>') ADVANCE(3617); - if (lookahead == 'u') ADVANCE(4385); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == '.') ADVANCE(3274); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4318: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - ADVANCE_MAP( - '+', 4356, - '-', 4358, - '>', 3613, - 'I', 4392, - '_', 4358, - 'i', 4392, - 'r', 4379, - 'B', 3429, - 'b', 3429, - ); + if (lookahead == '.') ADVANCE(4320); + if (lookahead == '_') ADVANCE(4341); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4319: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '+') ADVANCE(4356); - if (lookahead == '-') ADVANCE(4358); - if (lookahead == '>') ADVANCE(3613); - if (lookahead == '_') ADVANCE(4358); - if (lookahead == 'r') ADVANCE(4379); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == '.') ADVANCE(4320); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4320: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '+') ADVANCE(4376); - if (lookahead == '>') ADVANCE(3605); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == '.') ADVANCE(2944); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4321: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '+') ADVANCE(4369); - if (lookahead == '>') ADVANCE(3609); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == '.') ADVANCE(4340); + if (lookahead == '_') ADVANCE(4322); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4391); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3345); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4322: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '-') ADVANCE(4411); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == '.') ADVANCE(4340); + if (lookahead == '_') ADVANCE(4322); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3345); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4323: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(3110); - if (lookahead == '_') ADVANCE(4350); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3360); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == '.') ADVANCE(3273); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4324: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(3110); - if (lookahead == '_') ADVANCE(4355); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3417); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == '.') ADVANCE(4345); + if (lookahead == '_') ADVANCE(4325); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4391); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3400); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4325: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(3282); - if (lookahead == '_') ADVANCE(4355); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3417); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == '.') ADVANCE(4345); + if (lookahead == '_') ADVANCE(4325); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3400); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4326: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(3282); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == '2') ADVANCE(4397); + if (lookahead == '0' || + lookahead == '1') ADVANCE(4407); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4327: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(4329); - if (lookahead == '_') ADVANCE(4350); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3360); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == ':') ADVANCE(4404); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4328: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(4329); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == ':') ADVANCE(4410); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4329: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(2952); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == '>') ADVANCE(3624); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4330: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(4349); - if (lookahead == '_') ADVANCE(4331); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4400); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3353); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == '>') ADVANCE(3620); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4331: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(4349); - if (lookahead == '_') ADVANCE(4331); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3353); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == '>') ADVANCE(3612); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4332: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(3281); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == '>') ADVANCE(3616); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4333: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(4354); - if (lookahead == '_') ADVANCE(4334); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4400); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == 'I') ADVANCE(4383); + if (lookahead == '_') ADVANCE(4349); + if (lookahead == 'i') ADVANCE(4383); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4349); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3420); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4334: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(4354); - if (lookahead == '_') ADVANCE(4334); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == 'I') ADVANCE(4383); + if (lookahead == '_') ADVANCE(4349); + if (lookahead == 'i') ADVANCE(4354); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4349); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3420); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4335: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '2') ADVANCE(4406); - if (lookahead == '0' || - lookahead == '1') ADVANCE(4416); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == 'I') ADVANCE(4383); + if (lookahead == 'i') ADVANCE(4383); + if (lookahead == 'r') ADVANCE(4379); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3420); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4336: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == ':') ADVANCE(4413); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == 'I') ADVANCE(4383); + if (lookahead == 'i') ADVANCE(4383); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3420); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4337: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == ':') ADVANCE(4419); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == 'I') ADVANCE(4383); + if (lookahead == 'i') ADVANCE(4354); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3420); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4338: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '>') ADVANCE(3633); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == 'I') ADVANCE(4383); + if (lookahead == 'i') ADVANCE(4365); + if (lookahead == 's') ADVANCE(3425); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3420); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4339: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '>') ADVANCE(3629); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == '_') ADVANCE(4339); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4340: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '>') ADVANCE(3621); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == '_') ADVANCE(4340); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3358); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4341: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '>') ADVANCE(3625); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == '_') ADVANCE(4341); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4342: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I') ADVANCE(4392); - if (lookahead == '_') ADVANCE(4358); - if (lookahead == 'i') ADVANCE(4392); + if (lookahead == '_') ADVANCE(4343); if (lookahead == '+' || - lookahead == '-') ADVANCE(4358); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + lookahead == '-') ADVANCE(4343); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3347); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4343: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I') ADVANCE(4392); - if (lookahead == '_') ADVANCE(4358); - if (lookahead == 'i') ADVANCE(4363); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4358); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == '_') ADVANCE(4343); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3347); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4344: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I') ADVANCE(4392); - if (lookahead == 'i') ADVANCE(4392); - if (lookahead == 'r') ADVANCE(4388); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == '_') ADVANCE(4344); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4345: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I') ADVANCE(4392); - if (lookahead == 'i') ADVANCE(4392); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == '_') ADVANCE(4345); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3410); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4346: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I') ADVANCE(4392); - if (lookahead == 'i') ADVANCE(4363); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == '_') ADVANCE(4346); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3409); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4347: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I') ADVANCE(4392); - if (lookahead == 'i') ADVANCE(4374); - if (lookahead == 's') ADVANCE(3434); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == '_') ADVANCE(4349); + if (lookahead == 'o') ADVANCE(4329); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4348: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(4348); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == '_') ADVANCE(4349); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4349); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4349: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == '_') ADVANCE(4349); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3366); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4350: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(4350); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3360); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == '_') ADVANCE(4351); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4351); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3402); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4351: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(4352); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4352); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3355); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == '_') ADVANCE(4351); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3402); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4352: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(4352); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3355); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == 'a') ADVANCE(4363); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4353: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(4353); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == 'a') ADVANCE(4381); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4354: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(4354); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3418); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == 'b') ADVANCE(3420); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4355: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(4355); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3417); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == 'c') ADVANCE(3425); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4356: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(4358); - if (lookahead == 'o') ADVANCE(4338); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == 'e') ADVANCE(2150); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4357: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(4358); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4358); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == 'e') ADVANCE(2195); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4358: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(4358); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == 'e') ADVANCE(4355); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4359: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(4360); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4360); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3410); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == 'e') ADVANCE(4330); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4360: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(4360); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3410); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == 'e') ADVANCE(4371); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4361: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'a') ADVANCE(4372); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == 'k') ADVANCE(3425); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4362: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'a') ADVANCE(4390); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == 'l') ADVANCE(2203); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4363: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'b') ADVANCE(3429); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == 'l') ADVANCE(4375); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4364: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'c') ADVANCE(3434); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == 'l') ADVANCE(4362); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4365: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'e') ADVANCE(2150); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == 'n') ADVANCE(3425); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3420); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4366: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'e') ADVANCE(2195); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == 'o') ADVANCE(4329); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4367: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'e') ADVANCE(4364); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == 'o') ADVANCE(4380); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4368: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'e') ADVANCE(4339); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == 'r') ADVANCE(3425); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4369: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'e') ADVANCE(4380); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == 'r') ADVANCE(4379); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4370: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'k') ADVANCE(3434); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == 'r') ADVANCE(4311); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4371: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'l') ADVANCE(2203); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == 'r') ADVANCE(4372); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4372: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'l') ADVANCE(4384); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == 'r') ADVANCE(4332); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4373: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'l') ADVANCE(4371); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == 's') ADVANCE(3425); + if (lookahead == 'u') ADVANCE(4364); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4388); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4374: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'n') ADVANCE(3434); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == 's') ADVANCE(3425); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4375: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'o') ADVANCE(4338); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == 's') ADVANCE(4357); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4376: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'o') ADVANCE(4389); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == 't') ADVANCE(4312); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4377: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'r') ADVANCE(3434); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == 't') ADVANCE(4331); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4378: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'r') ADVANCE(4388); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == 'u') ADVANCE(4364); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4388); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4379: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'r') ADVANCE(4320); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == 'u') ADVANCE(4356); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4380: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'r') ADVANCE(4381); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == 'u') ADVANCE(4377); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4381: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'r') ADVANCE(4341); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == 'y') ADVANCE(3425); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4382: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 's') ADVANCE(3434); - if (lookahead == 'u') ADVANCE(4373); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4397); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + lookahead == 'a') ADVANCE(4388); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4383: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 's') ADVANCE(3434); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3420); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4384: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 's') ADVANCE(4366); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2231); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4385: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 't') ADVANCE(4321); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2220); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4386: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 't') ADVANCE(4340); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4393); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4387: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'u') ADVANCE(4373); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4397); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4394); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4388: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'u') ADVANCE(4365); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2232); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4389: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'u') ADVANCE(4386); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4385); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4390: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'y') ADVANCE(3434); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4386); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4391: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4397); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4384); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4392: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4387); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4393: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2231); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4396); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4394: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2220); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4395); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4395: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4402); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2223); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4396: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4403); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2211); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4397: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2232); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3458); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4398: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4394); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3444); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4399: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4395); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4313); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4400: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4393); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4328); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4401: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4396); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4399); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4402: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4405); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4408); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4403: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4404); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4400); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4404: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2223); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4405); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4405: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2211); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3451); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4406: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(3467); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3474); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4407: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3453); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3458); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4408: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4322); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3466); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4409: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4337); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4327); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4410: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4408); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4409); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4411: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4417); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4411); END_STATE(); case 4412: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4409); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '$') ADVANCE(2912); + if (lookahead == '(') ADVANCE(3212); + if (lookahead == '.') ADVANCE(4415); + if (lookahead == '_') ADVANCE(4416); + if (lookahead == '\t' || + lookahead == ' ') SKIP(402); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4414); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4413: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4414); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '$') ADVANCE(3105); + if (lookahead == '(') ADVANCE(3212); + if (lookahead == '.') ADVANCE(4415); + if (lookahead == ']') ADVANCE(2908); + if (lookahead == '_') ADVANCE(4416); + if (lookahead == '\t' || + lookahead == ' ') SKIP(400); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4414); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4414: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3460); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); + if (lookahead == '.') ADVANCE(4417); + if (lookahead == '_') ADVANCE(4414); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3345); if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4415: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3483); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); + if (lookahead == '_') ADVANCE(4415); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3355); if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4416: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3467); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); + if (lookahead == '_') ADVANCE(4416); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4417: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3475); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); + if (lookahead == '_') ADVANCE(4417); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3358); if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4418: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4336); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); + if (lookahead == '_') ADVANCE(4419); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4419); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3347); if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4419: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4418); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); + if (lookahead == '_') ADVANCE(4419); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3347); if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4420: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4420); END_STATE(); case 4421: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '$') ADVANCE(2920); - if (lookahead == '(') ADVANCE(3220); - if (lookahead == '.') ADVANCE(4424); - if (lookahead == '_') ADVANCE(4425); - if (lookahead == '\t' || - lookahead == ' ') SKIP(400); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4423); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4429); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '+') ADVANCE(4458); + if (lookahead == '>') ADVANCE(3607); + if (lookahead == 'r') ADVANCE(4461); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4422: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '$') ADVANCE(3113); - if (lookahead == '(') ADVANCE(3220); - if (lookahead == '.') ADVANCE(4424); - if (lookahead == ']') ADVANCE(2916); - if (lookahead == '_') ADVANCE(4425); - if (lookahead == '\t' || - lookahead == ' ') SKIP(398); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4423); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4429); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '+') ADVANCE(4453); + if (lookahead == '>') ADVANCE(3611); + if (lookahead == 'u') ADVANCE(4465); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4423: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '.') ADVANCE(4426); - if (lookahead == '_') ADVANCE(4423); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3353); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4429); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '+') ADVANCE(4459); + if (lookahead == '>') ADVANCE(3599); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4424: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '_') ADVANCE(4424); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3363); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4429); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '+') ADVANCE(4454); + if (lookahead == '>') ADVANCE(3603); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4425: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '_') ADVANCE(4425); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4429); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '-') ADVANCE(4492); + if (lookahead == '_') ADVANCE(4444); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4444); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4426: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '_') ADVANCE(4426); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3366); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4429); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '-') ADVANCE(4493); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4427: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '.') ADVANCE(4444); if (lookahead == '_') ADVANCE(4428); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4428); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3355); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4429); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4476); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4444); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4428: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '.') ADVANCE(4444); if (lookahead == '_') ADVANCE(4428); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3355); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4429); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4444); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4429: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4429); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if (lookahead == '.') ADVANCE(3104); + if (lookahead == '_') ADVANCE(4449); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4448); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4430: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '+') ADVANCE(4467); - if (lookahead == '>') ADVANCE(3616); - if (lookahead == 'r') ADVANCE(4470); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (lookahead == '.') ADVANCE(2946); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4431: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '+') ADVANCE(4462); - if (lookahead == '>') ADVANCE(3620); - if (lookahead == 'u') ADVANCE(4474); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (lookahead == '.') ADVANCE(4430); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4432: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '+') ADVANCE(4468); - if (lookahead == '>') ADVANCE(3608); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (lookahead == '.') ADVANCE(4490); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4433); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(4499); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4433: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '+') ADVANCE(4463); - if (lookahead == '>') ADVANCE(3612); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (lookahead == '2') ADVANCE(4481); + if (lookahead == '0' || + lookahead == '1') ADVANCE(4491); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4434: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '-') ADVANCE(4501); - if (lookahead == '_') ADVANCE(4453); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4453); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (lookahead == ':') ADVANCE(4482); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4485); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4435: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '-') ADVANCE(4502); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (lookahead == ':') ADVANCE(4495); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4436: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '.') ADVANCE(4453); - if (lookahead == '_') ADVANCE(4437); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4485); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4453); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (lookahead == ':') ADVANCE(4497); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4437: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '.') ADVANCE(4453); - if (lookahead == '_') ADVANCE(4437); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4453); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (lookahead == '>') ADVANCE(3627); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4438: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '.') ADVANCE(3112); - if (lookahead == '_') ADVANCE(4458); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4457); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (lookahead == '>') ADVANCE(3623); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4439: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '.') ADVANCE(2954); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (lookahead == '>') ADVANCE(3615); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4440: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '.') ADVANCE(4439); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (lookahead == '>') ADVANCE(3619); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4441: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '.') ADVANCE(4499); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4442); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4508); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (lookahead == 'T') ADVANCE(4494); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4442: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '2') ADVANCE(4490); - if (lookahead == '0' || - lookahead == '1') ADVANCE(4500); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (lookahead == '_') ADVANCE(4444); + if (lookahead == 'b') ADVANCE(3419); + if (lookahead == 'o') ADVANCE(3435); + if (lookahead == 'x') ADVANCE(3441); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4446); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4443: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == ':') ADVANCE(4491); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4494); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (lookahead == '_') ADVANCE(4444); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4444); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4444); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4444: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == ':') ADVANCE(4504); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (lookahead == '_') ADVANCE(4444); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4444); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4445: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == ':') ADVANCE(4506); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (lookahead == '_') ADVANCE(4444); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4425); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4446: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '>') ADVANCE(3636); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (lookahead == '_') ADVANCE(4444); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4445); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4447: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '>') ADVANCE(3632); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (lookahead == '_') ADVANCE(4444); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4446); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4448: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '>') ADVANCE(3624); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (lookahead == '_') ADVANCE(4448); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4443); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4448); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4449: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '>') ADVANCE(3628); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (lookahead == '_') ADVANCE(4449); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4448); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4450: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'T') ADVANCE(4503); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (lookahead == 'a') ADVANCE(4455); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4451: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(4453); - if (lookahead == 'b') ADVANCE(3428); - if (lookahead == 'o') ADVANCE(3444); - if (lookahead == 'x') ADVANCE(3450); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4455); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (lookahead == 'e') ADVANCE(2156); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4452: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(4453); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4453); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4453); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (lookahead == 'e') ADVANCE(2201); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4453: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(4453); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4453); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (lookahead == 'e') ADVANCE(4438); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4454: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(4453); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4434); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (lookahead == 'e') ADVANCE(4462); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4455: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(4453); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4454); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (lookahead == 'l') ADVANCE(4464); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4456: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(4453); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4455); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (lookahead == 'l') ADVANCE(2209); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4457: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(4457); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4452); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4457); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (lookahead == 'l') ADVANCE(4456); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4458: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(4458); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4457); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (lookahead == 'o') ADVANCE(4437); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4459: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'a') ADVANCE(4464); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (lookahead == 'o') ADVANCE(4469); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4460: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'e') ADVANCE(2156); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (lookahead == 'r') ADVANCE(4468); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4461: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'e') ADVANCE(2201); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (lookahead == 'r') ADVANCE(4423); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4462: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'e') ADVANCE(4447); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (lookahead == 'r') ADVANCE(4463); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4463: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'e') ADVANCE(4471); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (lookahead == 'r') ADVANCE(4440); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4464: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'l') ADVANCE(4473); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (lookahead == 's') ADVANCE(4452); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4465: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'l') ADVANCE(2209); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (lookahead == 't') ADVANCE(4424); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4466: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'l') ADVANCE(4465); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (lookahead == 't') ADVANCE(4439); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4467: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'o') ADVANCE(4446); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (lookahead == 'u') ADVANCE(4457); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4475); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4468: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'o') ADVANCE(4478); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (lookahead == 'u') ADVANCE(4451); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4469: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'r') ADVANCE(4477); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (lookahead == 'u') ADVANCE(4466); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4470: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'r') ADVANCE(4432); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4433); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(4499); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4470); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4471: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'r') ADVANCE(4472); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4475); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4472: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'r') ADVANCE(4449); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(4474); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4473: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 's') ADVANCE(4461); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4478); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4474: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 't') ADVANCE(4433); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4477); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4475: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 't') ADVANCE(4448); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4499); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4476: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'u') ADVANCE(4466); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4484); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4472); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4477: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'u') ADVANCE(4460); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4473); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4478: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'u') ADVANCE(4475); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4479); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4479: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4442); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4508); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4479); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(4499); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4480: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4484); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(4480); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4481: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4483); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4434); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4482: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4487); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4485); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4483: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4486); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (lookahead == '-' || + lookahead == '.' || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '@')) ADVANCE(4499); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4483); END_STATE(); case 4484: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4508); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(4484); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4485: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4481); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4499); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4486: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4482); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4426); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4487: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4488); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4441); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4488: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4508); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4436); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4489: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(4489); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4432); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4490: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4443); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4470); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4491: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4494); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4434); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4492: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '-' || - lookahead == '.' || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@')) ADVANCE(4508); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4492); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4486); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4493: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(4493); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4487); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4494: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4508); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4488); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4495: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4435); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4489); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4496: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4450); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4435); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4497: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4445); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4496); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4498: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4441); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4498); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4499: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4479); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); case 4500: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4443); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '+') ADVANCE(4526); + if (lookahead == '>') ADVANCE(3604); + if (lookahead == 'r') ADVANCE(4529); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); END_STATE(); case 4501: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4495); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '+') ADVANCE(4521); + if (lookahead == '>') ADVANCE(3608); + if (lookahead == 'u') ADVANCE(4533); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); END_STATE(); case 4502: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4496); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '+') ADVANCE(4527); + if (lookahead == '>') ADVANCE(3596); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); END_STATE(); case 4503: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4497); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '+') ADVANCE(4522); + if (lookahead == '>') ADVANCE(3600); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); END_STATE(); case 4504: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4498); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '-') ADVANCE(4555); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); END_STATE(); case 4505: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4444); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '.') ADVANCE(3102); + if (lookahead == '_') ADVANCE(4515); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); END_STATE(); case 4506: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4505); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '.') ADVANCE(4514); + if (lookahead == '_') ADVANCE(4507); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4546); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3400); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); END_STATE(); case 4507: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4507); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == '.') ADVANCE(4514); + if (lookahead == '_') ADVANCE(4507); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3400); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); END_STATE(); case 4508: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if (lookahead == ':') ADVANCE(907); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4558); END_STATE(); case 4509: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '+') ADVANCE(4535); - if (lookahead == '>') ADVANCE(3613); - if (lookahead == 'r') ADVANCE(4538); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); + if (lookahead == '>') ADVANCE(3624); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); END_STATE(); case 4510: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '+') ADVANCE(4530); - if (lookahead == '>') ADVANCE(3617); - if (lookahead == 'u') ADVANCE(4542); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); + if (lookahead == '>') ADVANCE(3620); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); END_STATE(); case 4511: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '+') ADVANCE(4536); - if (lookahead == '>') ADVANCE(3605); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); + if (lookahead == '>') ADVANCE(3612); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); END_STATE(); case 4512: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '+') ADVANCE(4531); - if (lookahead == '>') ADVANCE(3609); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); + if (lookahead == '>') ADVANCE(3616); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); END_STATE(); case 4513: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '-') ADVANCE(4564); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); + if (lookahead == '_') ADVANCE(4513); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3399); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); END_STATE(); case 4514: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '.') ADVANCE(3110); - if (lookahead == '_') ADVANCE(4524); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3415); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); + if (lookahead == '_') ADVANCE(4514); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3410); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); END_STATE(); case 4515: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '.') ADVANCE(4523); - if (lookahead == '_') ADVANCE(4516); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4555); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); + if (lookahead == '_') ADVANCE(4515); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); END_STATE(); case 4516: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '.') ADVANCE(4523); - if (lookahead == '_') ADVANCE(4516); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); + if (lookahead == '_') ADVANCE(4517); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4517); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3402); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); END_STATE(); case 4517: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == ':') ADVANCE(903); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4567); + if (lookahead == '_') ADVANCE(4517); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3402); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); END_STATE(); case 4518: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '>') ADVANCE(3633); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); + if (lookahead == 'a') ADVANCE(4524); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); END_STATE(); case 4519: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '>') ADVANCE(3629); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); + if (lookahead == 'e') ADVANCE(2150); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); END_STATE(); case 4520: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '>') ADVANCE(3621); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); + if (lookahead == 'e') ADVANCE(2195); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); END_STATE(); case 4521: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '>') ADVANCE(3625); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); + if (lookahead == 'e') ADVANCE(4510); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); END_STATE(); case 4522: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '_') ADVANCE(4522); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3407); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); + if (lookahead == 'e') ADVANCE(4530); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); END_STATE(); case 4523: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '_') ADVANCE(4523); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3418); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); + if (lookahead == 'l') ADVANCE(2203); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); END_STATE(); case 4524: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '_') ADVANCE(4524); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3415); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); + if (lookahead == 'l') ADVANCE(4532); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); END_STATE(); case 4525: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '_') ADVANCE(4526); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4526); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3410); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); + if (lookahead == 'l') ADVANCE(4523); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); END_STATE(); case 4526: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '_') ADVANCE(4526); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3410); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); + if (lookahead == 'o') ADVANCE(4509); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); END_STATE(); case 4527: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'a') ADVANCE(4533); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); + if (lookahead == 'o') ADVANCE(4537); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); END_STATE(); case 4528: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'e') ADVANCE(2150); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); + if (lookahead == 'r') ADVANCE(4536); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); END_STATE(); case 4529: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'e') ADVANCE(2195); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); + if (lookahead == 'r') ADVANCE(4502); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); END_STATE(); case 4530: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'e') ADVANCE(4519); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); + if (lookahead == 'r') ADVANCE(4531); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); END_STATE(); case 4531: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'e') ADVANCE(4539); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); + if (lookahead == 'r') ADVANCE(4512); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); END_STATE(); case 4532: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'l') ADVANCE(2203); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); + if (lookahead == 's') ADVANCE(4520); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); END_STATE(); case 4533: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'l') ADVANCE(4541); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); + if (lookahead == 't') ADVANCE(4503); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); END_STATE(); case 4534: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'l') ADVANCE(4532); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); + if (lookahead == 't') ADVANCE(4511); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); END_STATE(); case 4535: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'o') ADVANCE(4518); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); + if (lookahead == 'u') ADVANCE(4525); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4543); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); END_STATE(); case 4536: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'o') ADVANCE(4546); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); + if (lookahead == 'u') ADVANCE(4519); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); END_STATE(); case 4537: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'r') ADVANCE(4545); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); + if (lookahead == 'u') ADVANCE(4534); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); END_STATE(); case 4538: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'r') ADVANCE(4511); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4543); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); END_STATE(); case 4539: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'r') ADVANCE(4540); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2229); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); END_STATE(); case 4540: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'r') ADVANCE(4521); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2218); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); END_STATE(); case 4541: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 's') ADVANCE(4529); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4548); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); END_STATE(); case 4542: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 't') ADVANCE(4512); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4549); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); END_STATE(); case 4543: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 't') ADVANCE(4520); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2232); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); END_STATE(); case 4544: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'u') ADVANCE(4534); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4552); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4540); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); END_STATE(); case 4545: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'u') ADVANCE(4528); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4541); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); END_STATE(); case 4546: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'u') ADVANCE(4543); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4539); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); END_STATE(); case 4547: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4552); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4542); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); END_STATE(); case 4548: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2229); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4551); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); END_STATE(); case 4549: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2218); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4550); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); END_STATE(); case 4550: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4557); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2223); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); END_STATE(); case 4551: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4558); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2211); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); END_STATE(); case 4552: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2232); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4504); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); END_STATE(); case 4553: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4549); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4508); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); END_STATE(); case 4554: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4550); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4552); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); END_STATE(); case 4555: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4548); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4557); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); END_STATE(); case 4556: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4551); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4553); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); END_STATE(); case 4557: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4560); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3464); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); END_STATE(); case 4558: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4559); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4558); END_STATE(); case 4559: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2223); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '.') ADVANCE(4567); + if (lookahead == '_') ADVANCE(4559); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3400); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); END_STATE(); case 4560: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2211); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '.') ADVANCE(3274); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); END_STATE(); case 4561: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4513); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '.') ADVANCE(4568); + if (lookahead == '_') ADVANCE(4561); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3345); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); END_STATE(); case 4562: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4517); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'I') ADVANCE(4584); + if (lookahead == '_') ADVANCE(4574); + if (lookahead == 'i') ADVANCE(4584); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4574); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3420); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); END_STATE(); case 4563: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4561); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'I') ADVANCE(4584); + if (lookahead == '_') ADVANCE(4574); + if (lookahead == 'i') ADVANCE(4576); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4574); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3420); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); END_STATE(); case 4564: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4566); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'I') ADVANCE(4584); + if (lookahead == 'i') ADVANCE(4584); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3420); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); END_STATE(); case 4565: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4562); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'I') ADVANCE(4584); + if (lookahead == 'i') ADVANCE(4576); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3420); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); END_STATE(); case 4566: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3473); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == 'I') ADVANCE(4584); + if (lookahead == 'i') ADVANCE(4580); + if (lookahead == 's') ADVANCE(3425); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3420); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); END_STATE(); case 4567: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4567); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if (lookahead == '_') ADVANCE(4567); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3410); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); END_STATE(); case 4568: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '.') ADVANCE(4576); if (lookahead == '_') ADVANCE(4568); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3408); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3358); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); END_STATE(); case 4569: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '.') ADVANCE(3282); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); + if (lookahead == '_') ADVANCE(4569); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); END_STATE(); case 4570: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '.') ADVANCE(4577); if (lookahead == '_') ADVANCE(4570); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3353); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3354); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); END_STATE(); case 4571: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'I') ADVANCE(4593); - if (lookahead == '_') ADVANCE(4583); - if (lookahead == 'i') ADVANCE(4593); + if (lookahead == '_') ADVANCE(4572); if (lookahead == '+' || - lookahead == '-') ADVANCE(4583); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); + lookahead == '-') ADVANCE(4572); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3347); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); END_STATE(); case 4572: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'I') ADVANCE(4593); - if (lookahead == '_') ADVANCE(4583); - if (lookahead == 'i') ADVANCE(4585); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4583); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); + if (lookahead == '_') ADVANCE(4572); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3347); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); END_STATE(); case 4573: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'I') ADVANCE(4593); - if (lookahead == 'i') ADVANCE(4593); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); + if (lookahead == '_') ADVANCE(4574); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4574); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); END_STATE(); case 4574: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'I') ADVANCE(4593); - if (lookahead == 'i') ADVANCE(4585); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); + if (lookahead == '_') ADVANCE(4574); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3344); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); END_STATE(); case 4575: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'I') ADVANCE(4593); - if (lookahead == 'i') ADVANCE(4589); - if (lookahead == 's') ADVANCE(3434); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); + if (lookahead == 'a') ADVANCE(4583); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); END_STATE(); case 4576: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(4576); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3418); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); + if (lookahead == 'b') ADVANCE(3420); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); END_STATE(); case 4577: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(4577); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3366); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); + if (lookahead == 'c') ADVANCE(3425); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); END_STATE(); case 4578: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(4578); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); + if (lookahead == 'e') ADVANCE(4577); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); END_STATE(); case 4579: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(4579); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3362); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); + if (lookahead == 'k') ADVANCE(3425); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); END_STATE(); case 4580: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(4581); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4581); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3355); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); + if (lookahead == 'n') ADVANCE(3425); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3420); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); END_STATE(); case 4581: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(4581); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3355); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); + if (lookahead == 'r') ADVANCE(3425); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); END_STATE(); case 4582: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(4583); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4583); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); + if (lookahead == 's') ADVANCE(3425); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); END_STATE(); case 4583: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(4583); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); + if (lookahead == 'y') ADVANCE(3425); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); END_STATE(); case 4584: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'a') ADVANCE(4592); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(3420); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); END_STATE(); case 4585: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'b') ADVANCE(3429); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2227); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); END_STATE(); case 4586: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'c') ADVANCE(3434); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4589); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); END_STATE(); case 4587: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'e') ADVANCE(4586); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4585); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); END_STATE(); case 4588: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'k') ADVANCE(3434); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4586); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); END_STATE(); case 4589: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'n') ADVANCE(3434); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4590); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); END_STATE(); case 4590: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'r') ADVANCE(3434); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(2223); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); END_STATE(); case 4591: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 's') ADVANCE(3434); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4591); END_STATE(); case 4592: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'y') ADVANCE(3434); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); + if (lookahead == '#') ADVANCE(4780); + if (lookahead == '$') ADVANCE(2912); + if (lookahead == '(') ADVANCE(3212); + if (lookahead == '.') ADVANCE(4594); + if (lookahead == '_') ADVANCE(4595); + if (lookahead == '\t' || + lookahead == ' ') SKIP(402); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4593); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(4599); END_STATE(); case 4593: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(3429); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); + if (lookahead == '.') ADVANCE(4596); + if (lookahead == '_') ADVANCE(4593); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3345); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4599); END_STATE(); case 4594: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2227); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); + if (lookahead == '_') ADVANCE(4594); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3357); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4599); END_STATE(); case 4595: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4598); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); + if (lookahead == '_') ADVANCE(4595); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3329); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4599); END_STATE(); case 4596: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4594); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); + if (lookahead == '_') ADVANCE(4596); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3358); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4599); END_STATE(); case 4597: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4595); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); + if (lookahead == '_') ADVANCE(4598); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4598); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3347); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4599); END_STATE(); case 4598: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4599); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); + if (lookahead == '_') ADVANCE(4598); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3347); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4599); END_STATE(); case 4599: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(2223); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4599); END_STATE(); case 4600: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4600); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == '$') ADVANCE(3361); + if (lookahead == '(') ADVANCE(3269); + if (lookahead == '{') ADVANCE(3505); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(4772); END_STATE(); case 4601: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '#') ADVANCE(4789); - if (lookahead == '$') ADVANCE(2920); - if (lookahead == '(') ADVANCE(3220); - if (lookahead == '.') ADVANCE(4603); - if (lookahead == '_') ADVANCE(4604); - if (lookahead == '\t' || - lookahead == ' ') SKIP(400); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4602); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(4608); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(2078); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4601); END_STATE(); case 4602: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '.') ADVANCE(4605); - if (lookahead == '_') ADVANCE(4602); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3353); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4608); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(2024); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4602); END_STATE(); case 4603: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '_') ADVANCE(4603); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3365); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4608); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(2030); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4603); END_STATE(); case 4604: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '_') ADVANCE(4604); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3337); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4608); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(2111); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4606); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4609); END_STATE(); case 4605: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '_') ADVANCE(4605); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3366); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4608); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(2111); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4607); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4609); END_STATE(); case 4606: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '_') ADVANCE(4607); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4607); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3355); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4608); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(2111); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4605); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4609); END_STATE(); case 4607: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '_') ADVANCE(4607); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3355); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4608); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(2111); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4608); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4609); END_STATE(); case 4608: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4608); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (lookahead == ',') ADVANCE(2111); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(4609); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4609); END_STATE(); case 4609: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '$') ADVANCE(3369); - if (lookahead == '(') ADVANCE(3277); - if (lookahead == '{') ADVANCE(3514); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(4781); + if (lookahead == ',') ADVANCE(2111); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4609); END_STATE(); case 4610: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2078); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if (lookahead == ',') ADVANCE(1883); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4610); END_STATE(); case 4611: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2024); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if (lookahead == ',') ADVANCE(2000); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4611); END_STATE(); case 4612: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2030); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4612); + if (lookahead == ',') ADVANCE(1930); + if (lookahead == 'e') ADVANCE(4613); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4615); END_STATE(); case 4613: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2111); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4615); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4618); + if (lookahead == ',') ADVANCE(1930); + if (lookahead == 'n') ADVANCE(4614); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4615); END_STATE(); case 4614: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2111); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4616); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4618); + if (lookahead == ',') ADVANCE(1930); + if (lookahead == 'v') ADVANCE(1085); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4615); END_STATE(); case 4615: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2111); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4614); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4618); + if (lookahead == ',') ADVANCE(1930); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4615); END_STATE(); case 4616: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2111); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4617); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4618); + if (lookahead == ',') ADVANCE(1936); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4616); END_STATE(); case 4617: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2111); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4618); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4618); + if (lookahead == ',') ADVANCE(2123); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4617); END_STATE(); case 4618: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2111); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if (lookahead == ',') ADVANCE(2042); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4618); END_STATE(); case 4619: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1883); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if (lookahead == ',') ADVANCE(1895); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4619); END_STATE(); case 4620: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2000); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if (lookahead == ',') ADVANCE(2036); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4620); END_STATE(); case 4621: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1930); + if (lookahead == ',') ADVANCE(1962); if (lookahead == 'e') ADVANCE(4622); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4624); END_STATE(); case 4622: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1930); + if (lookahead == ',') ADVANCE(1962); if (lookahead == 'n') ADVANCE(4623); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4624); END_STATE(); case 4623: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1930); - if (lookahead == 'v') ADVANCE(1085); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if (lookahead == ',') ADVANCE(1962); + if (lookahead == 'v') ADVANCE(3152); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4624); END_STATE(); case 4624: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1930); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if (lookahead == ',') ADVANCE(1962); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4624); END_STATE(); case 4625: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1936); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if (lookahead == ',') ADVANCE(2117); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4625); END_STATE(); case 4626: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2123); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if (lookahead == ',') ADVANCE(2006); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4626); END_STATE(); case 4627: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2042); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if (lookahead == ',') ADVANCE(2129); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4627); END_STATE(); case 4628: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1895); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if (lookahead == ',') ADVANCE(1889); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4628); END_STATE(); case 4629: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2036); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if (lookahead == ',') ADVANCE(2060); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4629); END_STATE(); case 4630: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1962); - if (lookahead == 'e') ADVANCE(4631); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); + if (lookahead == ',') ADVANCE(2048); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4630); END_STATE(); case 4631: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1962); - if (lookahead == 'n') ADVANCE(4632); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); + if (lookahead == ',') ADVANCE(1942); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4631); END_STATE(); case 4632: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1962); - if (lookahead == 'v') ADVANCE(3160); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); + if (lookahead == ',') ADVANCE(2018); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4632); END_STATE(); case 4633: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1962); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if (lookahead == ',') ADVANCE(2054); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4633); END_STATE(); case 4634: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2117); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if (lookahead == ',') ADVANCE(2012); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4634); END_STATE(); case 4635: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2006); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4635); + if (lookahead == ',') ADVANCE(2149); + if (lookahead == 'e') ADVANCE(4636); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4638); END_STATE(); case 4636: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2129); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4636); + if (lookahead == ',') ADVANCE(2149); + if (lookahead == 'n') ADVANCE(4637); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4638); END_STATE(); case 4637: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1889); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4637); + if (lookahead == ',') ADVANCE(2149); + if (lookahead == 'v') ADVANCE(2880); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4638); END_STATE(); case 4638: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2060); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if (lookahead == ',') ADVANCE(2149); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4638); END_STATE(); case 4639: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2048); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if (lookahead == ',') ADVANCE(1904); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4639); END_STATE(); case 4640: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1942); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if (lookahead == ',') ADVANCE(1910); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4640); END_STATE(); case 4641: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2018); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if (lookahead == ',') ADVANCE(2072); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4641); END_STATE(); case 4642: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2054); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4642); + if (lookahead == ',') ADVANCE(1982); + if (lookahead == 'e') ADVANCE(4643); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4645); END_STATE(); case 4643: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2012); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4643); + if (lookahead == ',') ADVANCE(1982); + if (lookahead == 'n') ADVANCE(4644); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4645); END_STATE(); case 4644: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2149); - if (lookahead == 'e') ADVANCE(4645); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4647); + if (lookahead == ',') ADVANCE(1982); + if (lookahead == 'v') ADVANCE(3135); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4645); END_STATE(); case 4645: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2149); - if (lookahead == 'n') ADVANCE(4646); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4647); + if (lookahead == ',') ADVANCE(1982); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4645); END_STATE(); case 4646: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2149); - if (lookahead == 'v') ADVANCE(2888); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4647); + if (lookahead == ',') ADVANCE(1988); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4646); END_STATE(); case 4647: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2149); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if (lookahead == ',') ADVANCE(2066); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4647); END_STATE(); case 4648: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1904); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if (lookahead == ',') ADVANCE(1994); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4648); END_STATE(); case 4649: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1910); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if (lookahead == ',') ADVANCE(1898); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4649); END_STATE(); case 4650: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2072); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4650); + if (lookahead == '.') ADVANCE(4657); + if (lookahead == '_') ADVANCE(4650); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4657); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4651: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1982); - if (lookahead == 'e') ADVANCE(4652); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4654); + if (lookahead == '.') ADVANCE(4658); + if (lookahead == '_') ADVANCE(4651); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4658); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4773); END_STATE(); case 4652: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1982); - if (lookahead == 'n') ADVANCE(4653); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4654); + if (lookahead == '.') ADVANCE(4653); + if (lookahead == '_') ADVANCE(4660); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4659); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4653: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1982); - if (lookahead == 'v') ADVANCE(3143); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4654); + if (lookahead == '.') ADVANCE(4600); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4654: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1982); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4654); + if (lookahead == 'N') ADVANCE(4754); + if (lookahead == 'f') ADVANCE(3070); + if (lookahead == 'n') ADVANCE(3034); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4655: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1988); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4655); + if (lookahead == '_') ADVANCE(4657); + if (lookahead == 'b') ADVANCE(4769); + if (lookahead == 'o') ADVANCE(4770); + if (lookahead == 'x') ADVANCE(4771); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4657); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4656: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2066); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4656); + if (lookahead == '_') ADVANCE(4657); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4657); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4657); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4657: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1994); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4657); + if (lookahead == '_') ADVANCE(4657); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4657); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4658: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(1898); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4658); + if (lookahead == '_') ADVANCE(4658); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4658); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4773); END_STATE(); case 4659: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '.') ADVANCE(4666); if (lookahead == '_') ADVANCE(4659); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4666); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4656); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4659); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4660: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '.') ADVANCE(4667); if (lookahead == '_') ADVANCE(4660); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4667); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4782); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4659); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4661: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '.') ADVANCE(4662); - if (lookahead == '_') ADVANCE(4669); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4668); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'a') ADVANCE(4738); + if (lookahead == 'o') ADVANCE(4710); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4662: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '.') ADVANCE(4609); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'a') ADVANCE(4709); + if (lookahead == 'o') ADVANCE(4721); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4663: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'N') ADVANCE(4763); - if (lookahead == 'f') ADVANCE(3078); - if (lookahead == 'n') ADVANCE(3042); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'a') ADVANCE(4701); + if (lookahead == 'o') ADVANCE(4670); + if (lookahead == 'u') ADVANCE(4740); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4664: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '_') ADVANCE(4666); - if (lookahead == 'b') ADVANCE(4778); - if (lookahead == 'o') ADVANCE(4779); - if (lookahead == 'x') ADVANCE(4780); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4666); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'a') ADVANCE(4700); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4665: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '_') ADVANCE(4666); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4666); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4666); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'a') ADVANCE(4752); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4666: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '_') ADVANCE(4666); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4666); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'a') ADVANCE(4731); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4667: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '_') ADVANCE(4667); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4667); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4782); + if (lookahead == 'c') ADVANCE(4692); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4668: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '_') ADVANCE(4668); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4665); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4668); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'c') ADVANCE(4693); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4669: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '_') ADVANCE(4669); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4668); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'c') ADVANCE(4683); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4670: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'a') ADVANCE(4747); - if (lookahead == 'o') ADVANCE(4719); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'd') ADVANCE(4749); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4671: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'a') ADVANCE(4718); - if (lookahead == 'o') ADVANCE(4730); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'd') ADVANCE(4677); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4672: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'a') ADVANCE(4710); - if (lookahead == 'o') ADVANCE(4679); - if (lookahead == 'u') ADVANCE(4749); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'e') ADVANCE(4690); + if (lookahead == 'o') ADVANCE(3063); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4673: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'a') ADVANCE(4709); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'e') ADVANCE(4751); + if (lookahead == 'u') ADVANCE(4704); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4760); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4674: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'a') ADVANCE(4761); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'e') ADVANCE(4691); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4675: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'a') ADVANCE(4740); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'e') ADVANCE(2899); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4676: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'c') ADVANCE(4701); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'e') ADVANCE(3078); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4677: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'c') ADVANCE(4702); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'e') ADVANCE(3148); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4678: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'c') ADVANCE(4692); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'e') ADVANCE(3050); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4679: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'd') ADVANCE(4758); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'e') ADVANCE(2151); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4680: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'd') ADVANCE(4686); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'e') ADVANCE(2196); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4681: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(4699); - if (lookahead == 'o') ADVANCE(3071); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'e') ADVANCE(3056); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4682: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(4760); - if (lookahead == 'u') ADVANCE(4713); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4769); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'e') ADVANCE(2892); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4683: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(4700); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'e') ADVANCE(3131); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4684: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(2907); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'e') ADVANCE(3019); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4685: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(3086); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'e') ADVANCE(4739); + if (lookahead == 'i') ADVANCE(4733); + if (lookahead == 'o') ADVANCE(4715); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4686: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(3156); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'e') ADVANCE(4664); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4687: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(3058); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'e') ADVANCE(4729); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4688: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(2151); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'e') ADVANCE(4727); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4689: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(2196); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'e') ADVANCE(4723); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4690: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(3064); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'f') ADVANCE(2874); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4691: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(2900); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'g') ADVANCE(4699); + if (lookahead == 't') ADVANCE(4747); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4692: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(3139); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'h') ADVANCE(3116); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4693: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(3027); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'h') ADVANCE(3086); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4694: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(4748); - if (lookahead == 'i') ADVANCE(4742); - if (lookahead == 'o') ADVANCE(4724); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'h') ADVANCE(4698); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4695: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(4673); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'i') ADVANCE(4671); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4696: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(4738); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'i') ADVANCE(4666); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4697: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(4736); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'i') ADVANCE(4713); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4698: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(4732); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'i') ADVANCE(4706); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4699: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'f') ADVANCE(2882); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'i') ADVANCE(4736); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4700: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'g') ADVANCE(4708); - if (lookahead == 't') ADVANCE(4756); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'k') ADVANCE(3013); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4701: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'h') ADVANCE(3124); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'k') ADVANCE(4678); + if (lookahead == 't') ADVANCE(4668); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4702: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'h') ADVANCE(3094); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'l') ADVANCE(2204); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4703: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'h') ADVANCE(4707); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'l') ADVANCE(4696); + if (lookahead == 's') ADVANCE(3170); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4704: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'i') ADVANCE(4680); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'l') ADVANCE(4702); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4705: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'i') ADVANCE(4675); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'l') ADVANCE(4665); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4706: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'i') ADVANCE(4722); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'l') ADVANCE(4681); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4707: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'i') ADVANCE(4715); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'l') ADVANCE(4682); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4708: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'i') ADVANCE(4745); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'l') ADVANCE(4734); + if (lookahead == 'r') ADVANCE(4726); + if (lookahead == 'x') ADVANCE(4719); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4709: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'k') ADVANCE(3021); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'l') ADVANCE(4737); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4710: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'k') ADVANCE(4687); - if (lookahead == 't') ADVANCE(4677); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'n') ADVANCE(4735); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4711: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(2204); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'n') ADVANCE(2885); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4712: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(4705); - if (lookahead == 's') ADVANCE(3178); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'n') ADVANCE(3123); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4713: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(4711); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'n') ADVANCE(4748); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4714: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(4674); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'o') ADVANCE(4745); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4715: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(4690); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'o') ADVANCE(4718); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4716: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(4691); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'o') ADVANCE(4722); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4717: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(4743); - if (lookahead == 'r') ADVANCE(4735); - if (lookahead == 'x') ADVANCE(4728); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'o') ADVANCE(4730); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4718: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(4746); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'p') ADVANCE(3043); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4719: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'n') ADVANCE(4744); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'p') ADVANCE(4717); + if (lookahead == 't') ADVANCE(4688); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4720: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'n') ADVANCE(2893); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'r') ADVANCE(4746); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4721: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'n') ADVANCE(3131); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'r') ADVANCE(3025); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4722: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'n') ADVANCE(4757); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'r') ADVANCE(2921); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4723: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'o') ADVANCE(4754); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'r') ADVANCE(3139); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4724: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'o') ADVANCE(4727); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'r') ADVANCE(4686); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4725: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'o') ADVANCE(4731); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'r') ADVANCE(4669); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4726: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'o') ADVANCE(4739); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'r') ADVANCE(4716); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4727: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'p') ADVANCE(3051); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'r') ADVANCE(4711); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4728: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'p') ADVANCE(4726); - if (lookahead == 't') ADVANCE(4697); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'r') ADVANCE(4712); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4729: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(4755); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'r') ADVANCE(4705); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4730: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(3033); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'r') ADVANCE(4743); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4731: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(2929); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 's') ADVANCE(1068); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4732: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(3147); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 's') ADVANCE(4675); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4733: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(4695); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 's') ADVANCE(4741); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4734: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(4678); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 's') ADVANCE(4676); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4735: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(4725); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 's') ADVANCE(4742); + if (lookahead == 't') ADVANCE(4697); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4736: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(4720); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 's') ADVANCE(4744); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4737: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(4721); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 's') ADVANCE(4680); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4738: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(4714); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 't') ADVANCE(4667); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4739: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(4752); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 't') ADVANCE(1081); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4740: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 's') ADVANCE(1068); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 't') ADVANCE(1089); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4741: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 's') ADVANCE(4684); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 't') ADVANCE(2933); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4742: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 's') ADVANCE(4750); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 't') ADVANCE(1096); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4743: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 's') ADVANCE(4685); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 't') ADVANCE(1063); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4744: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 's') ADVANCE(4751); - if (lookahead == 't') ADVANCE(4706); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 't') ADVANCE(4689); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4745: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 's') ADVANCE(4753); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'u') ADVANCE(4725); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4746: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 's') ADVANCE(4689); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'u') ADVANCE(4679); + if (lookahead == 'y') ADVANCE(3109); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4747: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 't') ADVANCE(4676); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'u') ADVANCE(4728); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4748: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 't') ADVANCE(1081); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'u') ADVANCE(4684); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4749: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 't') ADVANCE(1089); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'u') ADVANCE(4707); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4750: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 't') ADVANCE(2941); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'v') ADVANCE(4687); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4751: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 't') ADVANCE(1096); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'w') ADVANCE(3163); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4752: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 't') ADVANCE(1063); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (lookahead == 'y') ADVANCE(3156); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); case 4753: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 't') ADVANCE(4698); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); - END_STATE(); - case 4754: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'u') ADVANCE(4734); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); - END_STATE(); - case 4755: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'u') ADVANCE(4688); - if (lookahead == 'y') ADVANCE(3117); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); - END_STATE(); - case 4756: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'u') ADVANCE(4737); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); - END_STATE(); - case 4757: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'u') ADVANCE(4693); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); - END_STATE(); - case 4758: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'u') ADVANCE(4716); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); - END_STATE(); - case 4759: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'v') ADVANCE(4696); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); - END_STATE(); - case 4760: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'w') ADVANCE(3171); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); - END_STATE(); - case 4761: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'y') ADVANCE(3164); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); - END_STATE(); - case 4762: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4769); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + lookahead == 'a') ADVANCE(4760); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); - case 4763: + case 4754: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4768); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + lookahead == 'f') ADVANCE(4759); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); - case 4764: + case 4755: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4767); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4782); + lookahead == 'f') ADVANCE(4758); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4773); END_STATE(); - case 4765: + case 4756: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4774); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + lookahead == 'i') ADVANCE(4765); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); - case 4766: + case 4757: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4775); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4782); + lookahead == 'i') ADVANCE(4766); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4773); END_STATE(); - case 4767: + case 4758: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4773); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4782); + lookahead == 'i') ADVANCE(4764); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4773); END_STATE(); - case 4768: + case 4759: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4772); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + lookahead == 'i') ADVANCE(4763); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); - case 4769: + case 4760: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4781); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + lookahead == 'n') ADVANCE(4772); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); - case 4770: + case 4761: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4763); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + lookahead == 'n') ADVANCE(4754); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); - case 4771: + case 4762: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4764); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4782); + lookahead == 'n') ADVANCE(4755); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4773); END_STATE(); - case 4772: + case 4763: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4765); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + lookahead == 'n') ADVANCE(4756); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); - case 4773: + case 4764: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4766); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4782); + lookahead == 'n') ADVANCE(4757); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4773); END_STATE(); - case 4774: + case 4765: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'T' || - lookahead == 't') ADVANCE(4777); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + lookahead == 't') ADVANCE(4768); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); - case 4775: + case 4766: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'T' || - lookahead == 't') ADVANCE(4776); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4782); + lookahead == 't') ADVANCE(4767); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4773); END_STATE(); - case 4776: + case 4767: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4782); + lookahead == 'y') ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4773); END_STATE(); - case 4777: + case 4768: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4781); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + lookahead == 'y') ADVANCE(4772); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); - case 4778: + case 4769: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(4778); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + lookahead == '_') ADVANCE(4769); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); - case 4779: + case 4770: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(4779); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + lookahead == '_') ADVANCE(4770); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); - case 4780: + case 4771: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4780); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4771); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); - case 4781: + case 4772: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4782); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4781); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(4773); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4772); END_STATE(); - case 4782: + case 4773: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4773); END_STATE(); - case 4783: + case 4774: ACCEPT_TOKEN(aux_sym__unquoted_with_expr_token1); - if (lookahead == '#') ADVANCE(4800); + if (lookahead == '#') ADVANCE(4791); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(4784); + lookahead != '|') ADVANCE(4775); END_STATE(); - case 4784: + case 4775: ACCEPT_TOKEN(aux_sym__unquoted_with_expr_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -57229,20 +57422,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(4784); + lookahead != '|') ADVANCE(4775); END_STATE(); - case 4785: + case 4776: ACCEPT_TOKEN(aux_sym__unquoted_in_list_with_expr_token1); - if (lookahead == '#') ADVANCE(4798); - if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(4786); + if (lookahead == '#') ADVANCE(4789); + if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(4777); END_STATE(); - case 4786: + case 4777: ACCEPT_TOKEN(aux_sym__unquoted_in_list_with_expr_token1); - if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(4786); + if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(4777); END_STATE(); - case 4787: + case 4778: ACCEPT_TOKEN(aux_sym__unquoted_in_record_with_expr_token1); - if (lookahead == '#') ADVANCE(4797); + if (lookahead == '#') ADVANCE(4788); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -57251,9 +57444,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4788); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4779); END_STATE(); - case 4788: + case 4779: ACCEPT_TOKEN(aux_sym__unquoted_in_record_with_expr_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -57263,42 +57456,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4788); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4779); END_STATE(); - case 4789: + case 4780: ACCEPT_TOKEN(anon_sym_POUND); END_STATE(); - case 4790: + case 4781: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead == '\n') ADVANCE(1057); if (lookahead == '\r') ADVANCE(1059); if (lookahead != 0) ADVANCE(1059); END_STATE(); - case 4791: + case 4782: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead == '!') ADVANCE(1056); END_STATE(); - case 4792: + case 4783: ACCEPT_TOKEN(anon_sym_POUND); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2194); END_STATE(); - case 4793: + case 4784: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4782); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4773); END_STATE(); - case 4794: + case 4785: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3531); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(3522); END_STATE(); - case 4795: + case 4786: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4508); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4499); END_STATE(); - case 4796: + case 4787: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4221); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4212); END_STATE(); - case 4797: + case 4788: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -57308,13 +57501,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4788); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4779); END_STATE(); - case 4798: + case 4789: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(4786); + if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(4777); END_STATE(); - case 4799: + case 4790: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -57322,9 +57515,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3735); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3726); END_STATE(); - case 4800: + case 4791: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -57332,26 +57525,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(4784); + lookahead != '|') ADVANCE(4775); END_STATE(); - case 4801: + case 4792: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && - lookahead != '\n') ADVANCE(4803); + lookahead != '\n') ADVANCE(4794); END_STATE(); - case 4802: + case 4793: ACCEPT_TOKEN(aux_sym_comment_token1); - if (lookahead == '#') ADVANCE(4801); + if (lookahead == '#') ADVANCE(4792); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4802); + lookahead == ' ') ADVANCE(4793); if (lookahead != 0 && lookahead != '\t' && - lookahead != '\n') ADVANCE(4803); + lookahead != '\n') ADVANCE(4794); END_STATE(); - case 4803: + case 4794: ACCEPT_TOKEN(aux_sym_comment_token1); if (lookahead != 0 && - lookahead != '\n') ADVANCE(4803); + lookahead != '\n') ADVANCE(4794); END_STATE(); default: return false; @@ -57859,7733 +58052,8086 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { } static const TSLexMode ts_lex_modes[STATE_COUNT] = { - [0] = {.lex_state = 0}, - [1] = {.lex_state = 926}, - [2] = {.lex_state = 948}, - [3] = {.lex_state = 948}, - [4] = {.lex_state = 948}, - [5] = {.lex_state = 948}, - [6] = {.lex_state = 948}, - [7] = {.lex_state = 948}, - [8] = {.lex_state = 948}, - [9] = {.lex_state = 948}, - [10] = {.lex_state = 948}, - [11] = {.lex_state = 948}, - [12] = {.lex_state = 948}, - [13] = {.lex_state = 948}, - [14] = {.lex_state = 948}, - [15] = {.lex_state = 948}, - [16] = {.lex_state = 948}, - [17] = {.lex_state = 948}, - [18] = {.lex_state = 948}, - [19] = {.lex_state = 948}, - [20] = {.lex_state = 948}, - [21] = {.lex_state = 948}, - [22] = {.lex_state = 948}, - [23] = {.lex_state = 948}, - [24] = {.lex_state = 948}, - [25] = {.lex_state = 948}, - [26] = {.lex_state = 948}, - [27] = {.lex_state = 948}, - [28] = {.lex_state = 948}, - [29] = {.lex_state = 948}, - [30] = {.lex_state = 948}, - [31] = {.lex_state = 948}, - [32] = {.lex_state = 948}, - [33] = {.lex_state = 948}, - [34] = {.lex_state = 948}, - [35] = {.lex_state = 948}, - [36] = {.lex_state = 948}, - [37] = {.lex_state = 948}, - [38] = {.lex_state = 948}, - [39] = {.lex_state = 948}, - [40] = {.lex_state = 944}, - [41] = {.lex_state = 944}, - [42] = {.lex_state = 944}, - [43] = {.lex_state = 944}, - [44] = {.lex_state = 944}, - [45] = {.lex_state = 944}, - [46] = {.lex_state = 944}, - [47] = {.lex_state = 944}, - [48] = {.lex_state = 944}, - [49] = {.lex_state = 944}, - [50] = {.lex_state = 944}, - [51] = {.lex_state = 944}, - [52] = {.lex_state = 944}, - [53] = {.lex_state = 944}, - [54] = {.lex_state = 944}, - [55] = {.lex_state = 944}, - [56] = {.lex_state = 944}, - [57] = {.lex_state = 944}, - [58] = {.lex_state = 944}, - [59] = {.lex_state = 944}, - [60] = {.lex_state = 944}, - [61] = {.lex_state = 944}, - [62] = {.lex_state = 944}, - [63] = {.lex_state = 944}, - [64] = {.lex_state = 944}, - [65] = {.lex_state = 944}, - [66] = {.lex_state = 944}, - [67] = {.lex_state = 944}, - [68] = {.lex_state = 944}, - [69] = {.lex_state = 944}, - [70] = {.lex_state = 944}, - [71] = {.lex_state = 944}, - [72] = {.lex_state = 944}, - [73] = {.lex_state = 30}, - [74] = {.lex_state = 30}, - [75] = {.lex_state = 30}, - [76] = {.lex_state = 30}, - [77] = {.lex_state = 30}, - [78] = {.lex_state = 30}, - [79] = {.lex_state = 30}, - [80] = {.lex_state = 30}, - [81] = {.lex_state = 30}, - [82] = {.lex_state = 30}, - [83] = {.lex_state = 30}, - [84] = {.lex_state = 30}, - [85] = {.lex_state = 30}, - [86] = {.lex_state = 30}, - [87] = {.lex_state = 30}, - [88] = {.lex_state = 30}, - [89] = {.lex_state = 30}, - [90] = {.lex_state = 30}, - [91] = {.lex_state = 30}, - [92] = {.lex_state = 30}, - [93] = {.lex_state = 30}, - [94] = {.lex_state = 30}, - [95] = {.lex_state = 944}, - [96] = {.lex_state = 30}, - [97] = {.lex_state = 30}, - [98] = {.lex_state = 30}, - [99] = {.lex_state = 30}, - [100] = {.lex_state = 30}, - [101] = {.lex_state = 30}, - [102] = {.lex_state = 944}, - [103] = {.lex_state = 30}, - [104] = {.lex_state = 30}, - [105] = {.lex_state = 30}, - [106] = {.lex_state = 30}, - [107] = {.lex_state = 30}, - [108] = {.lex_state = 30}, - [109] = {.lex_state = 30}, - [110] = {.lex_state = 30}, - [111] = {.lex_state = 30}, - [112] = {.lex_state = 944}, - [113] = {.lex_state = 944}, - [114] = {.lex_state = 30}, - [115] = {.lex_state = 30}, - [116] = {.lex_state = 944}, - [117] = {.lex_state = 944}, - [118] = {.lex_state = 30}, - [119] = {.lex_state = 944}, - [120] = {.lex_state = 944}, - [121] = {.lex_state = 944}, - [122] = {.lex_state = 944}, - [123] = {.lex_state = 944}, - [124] = {.lex_state = 944}, - [125] = {.lex_state = 944}, - [126] = {.lex_state = 944}, - [127] = {.lex_state = 944}, - [128] = {.lex_state = 944}, - [129] = {.lex_state = 944}, - [130] = {.lex_state = 944}, - [131] = {.lex_state = 944}, - [132] = {.lex_state = 944}, - [133] = {.lex_state = 944}, - [134] = {.lex_state = 944}, - [135] = {.lex_state = 944}, - [136] = {.lex_state = 944}, - [137] = {.lex_state = 944}, - [138] = {.lex_state = 944}, - [139] = {.lex_state = 944}, - [140] = {.lex_state = 944}, - [141] = {.lex_state = 944}, - [142] = {.lex_state = 944}, - [143] = {.lex_state = 944}, - [144] = {.lex_state = 944}, - [145] = {.lex_state = 944}, - [146] = {.lex_state = 944}, - [147] = {.lex_state = 944}, - [148] = {.lex_state = 944}, - [149] = {.lex_state = 944}, - [150] = {.lex_state = 944}, - [151] = {.lex_state = 944}, - [152] = {.lex_state = 944}, - [153] = {.lex_state = 944}, - [154] = {.lex_state = 944}, - [155] = {.lex_state = 944}, - [156] = {.lex_state = 944}, - [157] = {.lex_state = 944}, - [158] = {.lex_state = 944}, - [159] = {.lex_state = 944}, - [160] = {.lex_state = 944}, - [161] = {.lex_state = 97}, - [162] = {.lex_state = 97}, - [163] = {.lex_state = 97}, - [164] = {.lex_state = 96}, - [165] = {.lex_state = 96}, - [166] = {.lex_state = 96}, - [167] = {.lex_state = 96}, - [168] = {.lex_state = 96}, - [169] = {.lex_state = 97}, - [170] = {.lex_state = 97}, - [171] = {.lex_state = 97}, - [172] = {.lex_state = 98}, - [173] = {.lex_state = 98}, - [174] = {.lex_state = 197}, - [175] = {.lex_state = 197}, - [176] = {.lex_state = 197}, - [177] = {.lex_state = 197}, - [178] = {.lex_state = 197}, - [179] = {.lex_state = 197}, - [180] = {.lex_state = 197}, - [181] = {.lex_state = 197}, - [182] = {.lex_state = 197}, - [183] = {.lex_state = 197}, - [184] = {.lex_state = 197}, - [185] = {.lex_state = 197}, - [186] = {.lex_state = 197}, - [187] = {.lex_state = 197}, - [188] = {.lex_state = 197}, - [189] = {.lex_state = 197}, - [190] = {.lex_state = 197}, - [191] = {.lex_state = 197}, - [192] = {.lex_state = 197}, - [193] = {.lex_state = 197}, - [194] = {.lex_state = 948}, - [195] = {.lex_state = 948}, - [196] = {.lex_state = 47}, - [197] = {.lex_state = 47}, - [198] = {.lex_state = 47}, - [199] = {.lex_state = 948}, - [200] = {.lex_state = 47}, - [201] = {.lex_state = 47}, - [202] = {.lex_state = 47}, - [203] = {.lex_state = 47}, - [204] = {.lex_state = 47}, - [205] = {.lex_state = 47}, - [206] = {.lex_state = 47}, - [207] = {.lex_state = 47}, - [208] = {.lex_state = 47}, - [209] = {.lex_state = 47}, - [210] = {.lex_state = 47}, - [211] = {.lex_state = 256}, - [212] = {.lex_state = 256}, - [213] = {.lex_state = 257}, - [214] = {.lex_state = 233}, - [215] = {.lex_state = 254}, - [216] = {.lex_state = 236}, - [217] = {.lex_state = 257}, - [218] = {.lex_state = 238}, - [219] = {.lex_state = 239}, - [220] = {.lex_state = 257}, - [221] = {.lex_state = 257}, - [222] = {.lex_state = 255}, - [223] = {.lex_state = 255}, - [224] = {.lex_state = 238}, - [225] = {.lex_state = 257}, - [226] = {.lex_state = 257}, - [227] = {.lex_state = 224}, - [228] = {.lex_state = 221}, - [229] = {.lex_state = 254}, - [230] = {.lex_state = 239}, - [231] = {.lex_state = 255}, - [232] = {.lex_state = 255}, - [233] = {.lex_state = 226}, - [234] = {.lex_state = 30}, - [235] = {.lex_state = 266}, - [236] = {.lex_state = 30}, - [237] = {.lex_state = 239}, - [238] = {.lex_state = 266}, - [239] = {.lex_state = 239}, - [240] = {.lex_state = 255}, - [241] = {.lex_state = 226}, - [242] = {.lex_state = 239}, - [243] = {.lex_state = 30}, - [244] = {.lex_state = 237}, - [245] = {.lex_state = 234}, - [246] = {.lex_state = 266}, - [247] = {.lex_state = 227}, - [248] = {.lex_state = 30}, - [249] = {.lex_state = 255}, - [250] = {.lex_state = 926}, - [251] = {.lex_state = 266}, - [252] = {.lex_state = 225}, - [253] = {.lex_state = 227}, - [254] = {.lex_state = 944}, - [255] = {.lex_state = 227}, - [256] = {.lex_state = 227}, - [257] = {.lex_state = 227}, - [258] = {.lex_state = 944}, - [259] = {.lex_state = 240}, - [260] = {.lex_state = 944}, - [261] = {.lex_state = 944}, - [262] = {.lex_state = 240}, - [263] = {.lex_state = 944}, - [264] = {.lex_state = 222}, - [265] = {.lex_state = 944}, - [266] = {.lex_state = 944}, - [267] = {.lex_state = 944}, - [268] = {.lex_state = 279}, - [269] = {.lex_state = 279}, - [270] = {.lex_state = 279}, - [271] = {.lex_state = 30}, - [272] = {.lex_state = 266}, - [273] = {.lex_state = 944}, - [274] = {.lex_state = 228}, - [275] = {.lex_state = 241}, - [276] = {.lex_state = 241}, - [277] = {.lex_state = 241}, - [278] = {.lex_state = 944}, - [279] = {.lex_state = 944}, - [280] = {.lex_state = 36}, - [281] = {.lex_state = 944}, - [282] = {.lex_state = 276}, - [283] = {.lex_state = 268}, - [284] = {.lex_state = 228}, - [285] = {.lex_state = 36}, - [286] = {.lex_state = 267}, - [287] = {.lex_state = 944}, - [288] = {.lex_state = 36}, - [289] = {.lex_state = 36}, - [290] = {.lex_state = 36}, - [291] = {.lex_state = 36}, - [292] = {.lex_state = 36}, - [293] = {.lex_state = 241}, - [294] = {.lex_state = 36}, - [295] = {.lex_state = 36}, - [296] = {.lex_state = 241}, - [297] = {.lex_state = 36}, - [298] = {.lex_state = 36}, - [299] = {.lex_state = 36}, - [300] = {.lex_state = 30}, - [301] = {.lex_state = 36}, - [302] = {.lex_state = 36}, - [303] = {.lex_state = 36}, - [304] = {.lex_state = 36}, - [305] = {.lex_state = 36}, - [306] = {.lex_state = 36}, - [307] = {.lex_state = 36}, - [308] = {.lex_state = 36}, - [309] = {.lex_state = 265}, - [310] = {.lex_state = 36}, - [311] = {.lex_state = 36}, - [312] = {.lex_state = 36}, - [313] = {.lex_state = 36}, - [314] = {.lex_state = 944}, - [315] = {.lex_state = 279}, - [316] = {.lex_state = 279}, - [317] = {.lex_state = 267}, - [318] = {.lex_state = 267}, - [319] = {.lex_state = 267}, - [320] = {.lex_state = 267}, - [321] = {.lex_state = 241}, - [322] = {.lex_state = 229}, - [323] = {.lex_state = 273}, - [324] = {.lex_state = 273}, - [325] = {.lex_state = 273}, - [326] = {.lex_state = 273}, - [327] = {.lex_state = 273}, - [328] = {.lex_state = 273}, - [329] = {.lex_state = 273}, - [330] = {.lex_state = 273}, - [331] = {.lex_state = 273}, - [332] = {.lex_state = 273}, - [333] = {.lex_state = 273}, - [334] = {.lex_state = 273}, - [335] = {.lex_state = 273}, - [336] = {.lex_state = 273}, - [337] = {.lex_state = 273}, - [338] = {.lex_state = 273}, - [339] = {.lex_state = 273}, - [340] = {.lex_state = 273}, - [341] = {.lex_state = 273}, - [342] = {.lex_state = 273}, - [343] = {.lex_state = 273}, - [344] = {.lex_state = 235}, - [345] = {.lex_state = 229}, - [346] = {.lex_state = 273}, - [347] = {.lex_state = 230}, - [348] = {.lex_state = 944}, - [349] = {.lex_state = 265}, - [350] = {.lex_state = 265}, - [351] = {.lex_state = 277}, - [352] = {.lex_state = 273}, - [353] = {.lex_state = 277}, - [354] = {.lex_state = 277}, - [355] = {.lex_state = 229}, - [356] = {.lex_state = 273}, - [357] = {.lex_state = 273}, - [358] = {.lex_state = 944}, - [359] = {.lex_state = 229}, - [360] = {.lex_state = 944}, - [361] = {.lex_state = 944}, - [362] = {.lex_state = 273}, - [363] = {.lex_state = 273}, - [364] = {.lex_state = 273}, - [365] = {.lex_state = 277}, - [366] = {.lex_state = 277}, - [367] = {.lex_state = 274}, - [368] = {.lex_state = 289}, - [369] = {.lex_state = 266}, - [370] = {.lex_state = 229}, - [371] = {.lex_state = 274}, - [372] = {.lex_state = 278}, - [373] = {.lex_state = 229}, - [374] = {.lex_state = 266}, - [375] = {.lex_state = 266}, - [376] = {.lex_state = 944}, - [377] = {.lex_state = 279}, - [378] = {.lex_state = 198}, - [379] = {.lex_state = 275}, - [380] = {.lex_state = 218}, - [381] = {.lex_state = 275}, - [382] = {.lex_state = 286}, - [383] = {.lex_state = 275}, - [384] = {.lex_state = 275}, - [385] = {.lex_state = 275}, - [386] = {.lex_state = 275}, - [387] = {.lex_state = 275}, - [388] = {.lex_state = 286}, - [389] = {.lex_state = 286}, - [390] = {.lex_state = 286}, - [391] = {.lex_state = 287}, - [392] = {.lex_state = 275}, - [393] = {.lex_state = 275}, - [394] = {.lex_state = 275}, - [395] = {.lex_state = 287}, - [396] = {.lex_state = 275}, - [397] = {.lex_state = 275}, - [398] = {.lex_state = 275}, - [399] = {.lex_state = 264}, - [400] = {.lex_state = 949}, - [401] = {.lex_state = 264}, - [402] = {.lex_state = 223}, - [403] = {.lex_state = 264}, - [404] = {.lex_state = 36}, - [405] = {.lex_state = 275}, - [406] = {.lex_state = 286}, - [407] = {.lex_state = 286}, - [408] = {.lex_state = 264}, - [409] = {.lex_state = 264}, - [410] = {.lex_state = 286}, - [411] = {.lex_state = 198}, - [412] = {.lex_state = 286}, - [413] = {.lex_state = 198}, - [414] = {.lex_state = 231}, - [415] = {.lex_state = 36}, - [416] = {.lex_state = 286}, - [417] = {.lex_state = 286}, - [418] = {.lex_state = 275}, - [419] = {.lex_state = 286}, - [420] = {.lex_state = 275}, - [421] = {.lex_state = 286}, - [422] = {.lex_state = 286}, - [423] = {.lex_state = 286}, - [424] = {.lex_state = 286}, - [425] = {.lex_state = 273}, - [426] = {.lex_state = 273}, - [427] = {.lex_state = 286}, - [428] = {.lex_state = 279}, - [429] = {.lex_state = 286}, - [430] = {.lex_state = 286}, - [431] = {.lex_state = 286}, - [432] = {.lex_state = 286}, - [433] = {.lex_state = 279}, - [434] = {.lex_state = 286}, - [435] = {.lex_state = 286}, - [436] = {.lex_state = 286}, - [437] = {.lex_state = 286}, - [438] = {.lex_state = 286}, - [439] = {.lex_state = 286}, - [440] = {.lex_state = 286}, - [441] = {.lex_state = 286}, - [442] = {.lex_state = 231}, - [443] = {.lex_state = 288}, - [444] = {.lex_state = 232}, - [445] = {.lex_state = 288}, - [446] = {.lex_state = 288}, - [447] = {.lex_state = 949}, - [448] = {.lex_state = 288}, - [449] = {.lex_state = 288}, - [450] = {.lex_state = 232}, - [451] = {.lex_state = 232}, - [452] = {.lex_state = 949}, - [453] = {.lex_state = 232}, - [454] = {.lex_state = 232}, - [455] = {.lex_state = 288}, - [456] = {.lex_state = 265}, - [457] = {.lex_state = 265}, - [458] = {.lex_state = 265}, - [459] = {.lex_state = 286}, - [460] = {.lex_state = 286}, - [461] = {.lex_state = 355}, - [462] = {.lex_state = 355}, - [463] = {.lex_state = 355}, - [464] = {.lex_state = 355}, - [465] = {.lex_state = 271}, - [466] = {.lex_state = 271}, - [467] = {.lex_state = 271}, - [468] = {.lex_state = 271}, - [469] = {.lex_state = 271}, - [470] = {.lex_state = 355}, - [471] = {.lex_state = 219}, - [472] = {.lex_state = 219}, - [473] = {.lex_state = 288}, - [474] = {.lex_state = 288}, - [475] = {.lex_state = 288}, - [476] = {.lex_state = 288}, - [477] = {.lex_state = 232}, - [478] = {.lex_state = 232}, - [479] = {.lex_state = 232}, - [480] = {.lex_state = 232}, - [481] = {.lex_state = 270}, - [482] = {.lex_state = 272}, - [483] = {.lex_state = 288}, - [484] = {.lex_state = 288}, - [485] = {.lex_state = 288}, - [486] = {.lex_state = 288}, - [487] = {.lex_state = 232}, - [488] = {.lex_state = 232}, - [489] = {.lex_state = 232}, - [490] = {.lex_state = 232}, - [491] = {.lex_state = 232}, - [492] = {.lex_state = 232}, - [493] = {.lex_state = 288}, - [494] = {.lex_state = 288}, - [495] = {.lex_state = 320}, - [496] = {.lex_state = 220}, - [497] = {.lex_state = 284}, - [498] = {.lex_state = 220}, - [499] = {.lex_state = 220}, - [500] = {.lex_state = 354}, - [501] = {.lex_state = 320}, - [502] = {.lex_state = 354}, - [503] = {.lex_state = 320}, - [504] = {.lex_state = 320}, - [505] = {.lex_state = 283}, - [506] = {.lex_state = 354}, - [507] = {.lex_state = 220}, - [508] = {.lex_state = 320}, - [509] = {.lex_state = 320}, - [510] = {.lex_state = 220}, - [511] = {.lex_state = 320}, - [512] = {.lex_state = 320}, - [513] = {.lex_state = 263}, - [514] = {.lex_state = 320}, - [515] = {.lex_state = 220}, - [516] = {.lex_state = 320}, - [517] = {.lex_state = 220}, - [518] = {.lex_state = 220}, - [519] = {.lex_state = 220}, - [520] = {.lex_state = 320}, - [521] = {.lex_state = 320}, - [522] = {.lex_state = 320}, - [523] = {.lex_state = 320}, - [524] = {.lex_state = 320}, - [525] = {.lex_state = 320}, - [526] = {.lex_state = 269}, - [527] = {.lex_state = 273}, - [528] = {.lex_state = 269}, - [529] = {.lex_state = 285}, - [530] = {.lex_state = 232}, - [531] = {.lex_state = 320}, - [532] = {.lex_state = 320}, - [533] = {.lex_state = 320}, - [534] = {.lex_state = 320}, - [535] = {.lex_state = 320}, - [536] = {.lex_state = 220}, - [537] = {.lex_state = 284}, - [538] = {.lex_state = 273}, - [539] = {.lex_state = 273}, - [540] = {.lex_state = 220}, - [541] = {.lex_state = 220}, - [542] = {.lex_state = 220}, - [543] = {.lex_state = 220}, - [544] = {.lex_state = 284}, - [545] = {.lex_state = 354}, - [546] = {.lex_state = 263}, - [547] = {.lex_state = 232}, - [548] = {.lex_state = 284}, - [549] = {.lex_state = 320}, - [550] = {.lex_state = 320}, - [551] = {.lex_state = 354}, - [552] = {.lex_state = 220}, - [553] = {.lex_state = 284}, - [554] = {.lex_state = 320}, - [555] = {.lex_state = 320}, - [556] = {.lex_state = 320}, - [557] = {.lex_state = 320}, - [558] = {.lex_state = 320}, - [559] = {.lex_state = 320}, - [560] = {.lex_state = 320}, - [561] = {.lex_state = 320}, - [562] = {.lex_state = 320}, - [563] = {.lex_state = 320}, - [564] = {.lex_state = 320}, - [565] = {.lex_state = 281}, - [566] = {.lex_state = 320}, - [567] = {.lex_state = 320}, - [568] = {.lex_state = 47}, - [569] = {.lex_state = 281}, - [570] = {.lex_state = 220}, - [571] = {.lex_state = 320}, - [572] = {.lex_state = 320}, - [573] = {.lex_state = 320}, - [574] = {.lex_state = 320}, - [575] = {.lex_state = 320}, - [576] = {.lex_state = 220}, - [577] = {.lex_state = 320}, - [578] = {.lex_state = 286}, - [579] = {.lex_state = 320}, - [580] = {.lex_state = 320}, - [581] = {.lex_state = 320}, - [582] = {.lex_state = 320}, - [583] = {.lex_state = 286}, - [584] = {.lex_state = 286}, - [585] = {.lex_state = 320}, - [586] = {.lex_state = 320}, - [587] = {.lex_state = 320}, - [588] = {.lex_state = 320}, - [589] = {.lex_state = 320}, - [590] = {.lex_state = 320}, - [591] = {.lex_state = 320}, - [592] = {.lex_state = 320}, - [593] = {.lex_state = 320}, - [594] = {.lex_state = 47}, - [595] = {.lex_state = 320}, - [596] = {.lex_state = 320}, - [597] = {.lex_state = 320}, - [598] = {.lex_state = 320}, - [599] = {.lex_state = 320}, - [600] = {.lex_state = 320}, - [601] = {.lex_state = 320}, - [602] = {.lex_state = 320}, - [603] = {.lex_state = 320}, - [604] = {.lex_state = 320}, - [605] = {.lex_state = 320}, - [606] = {.lex_state = 320}, - [607] = {.lex_state = 320}, - [608] = {.lex_state = 320}, - [609] = {.lex_state = 320}, - [610] = {.lex_state = 320}, - [611] = {.lex_state = 320}, - [612] = {.lex_state = 320}, - [613] = {.lex_state = 320}, - [614] = {.lex_state = 320}, - [615] = {.lex_state = 320}, - [616] = {.lex_state = 320}, - [617] = {.lex_state = 320}, - [618] = {.lex_state = 320}, - [619] = {.lex_state = 320}, - [620] = {.lex_state = 320}, - [621] = {.lex_state = 47}, - [622] = {.lex_state = 320}, - [623] = {.lex_state = 47}, - [624] = {.lex_state = 47}, - [625] = {.lex_state = 47}, - [626] = {.lex_state = 47}, - [627] = {.lex_state = 47}, - [628] = {.lex_state = 47}, - [629] = {.lex_state = 47}, - [630] = {.lex_state = 47}, - [631] = {.lex_state = 47}, - [632] = {.lex_state = 47}, - [633] = {.lex_state = 47}, - [634] = {.lex_state = 47}, - [635] = {.lex_state = 47}, - [636] = {.lex_state = 47}, - [637] = {.lex_state = 47}, - [638] = {.lex_state = 47}, - [639] = {.lex_state = 47}, - [640] = {.lex_state = 47}, - [641] = {.lex_state = 47}, - [642] = {.lex_state = 47}, - [643] = {.lex_state = 47}, - [644] = {.lex_state = 47}, - [645] = {.lex_state = 47}, - [646] = {.lex_state = 47}, - [647] = {.lex_state = 47}, - [648] = {.lex_state = 47}, - [649] = {.lex_state = 47}, - [650] = {.lex_state = 47}, - [651] = {.lex_state = 47}, - [652] = {.lex_state = 47}, - [653] = {.lex_state = 47}, - [654] = {.lex_state = 47}, - [655] = {.lex_state = 47}, - [656] = {.lex_state = 47}, - [657] = {.lex_state = 47}, - [658] = {.lex_state = 47}, - [659] = {.lex_state = 47}, - [660] = {.lex_state = 47}, - [661] = {.lex_state = 47}, - [662] = {.lex_state = 47}, - [663] = {.lex_state = 47}, - [664] = {.lex_state = 47}, - [665] = {.lex_state = 47}, - [666] = {.lex_state = 47}, - [667] = {.lex_state = 47}, - [668] = {.lex_state = 47}, - [669] = {.lex_state = 47}, - [670] = {.lex_state = 47}, - [671] = {.lex_state = 47}, - [672] = {.lex_state = 47}, - [673] = {.lex_state = 47}, - [674] = {.lex_state = 47}, - [675] = {.lex_state = 47}, - [676] = {.lex_state = 47}, - [677] = {.lex_state = 47}, - [678] = {.lex_state = 47}, - [679] = {.lex_state = 47}, - [680] = {.lex_state = 47}, - [681] = {.lex_state = 47}, - [682] = {.lex_state = 47}, - [683] = {.lex_state = 47}, - [684] = {.lex_state = 47}, - [685] = {.lex_state = 47}, - [686] = {.lex_state = 47}, - [687] = {.lex_state = 47}, - [688] = {.lex_state = 47}, - [689] = {.lex_state = 47}, - [690] = {.lex_state = 47}, - [691] = {.lex_state = 47}, - [692] = {.lex_state = 47}, - [693] = {.lex_state = 47}, - [694] = {.lex_state = 47}, - [695] = {.lex_state = 47}, - [696] = {.lex_state = 47}, - [697] = {.lex_state = 47}, - [698] = {.lex_state = 41}, - [699] = {.lex_state = 41}, - [700] = {.lex_state = 955}, - [701] = {.lex_state = 955}, - [702] = {.lex_state = 955}, - [703] = {.lex_state = 955}, - [704] = {.lex_state = 955}, - [705] = {.lex_state = 955}, - [706] = {.lex_state = 955}, - [707] = {.lex_state = 955}, - [708] = {.lex_state = 955}, - [709] = {.lex_state = 955}, - [710] = {.lex_state = 955}, - [711] = {.lex_state = 955}, - [712] = {.lex_state = 955}, - [713] = {.lex_state = 955}, - [714] = {.lex_state = 955}, - [715] = {.lex_state = 35}, - [716] = {.lex_state = 35}, - [717] = {.lex_state = 35}, - [718] = {.lex_state = 35}, - [719] = {.lex_state = 35}, - [720] = {.lex_state = 35}, - [721] = {.lex_state = 35}, - [722] = {.lex_state = 35}, - [723] = {.lex_state = 35}, - [724] = {.lex_state = 41}, - [725] = {.lex_state = 41}, - [726] = {.lex_state = 41}, - [727] = {.lex_state = 41}, - [728] = {.lex_state = 41}, - [729] = {.lex_state = 41}, - [730] = {.lex_state = 41}, - [731] = {.lex_state = 41}, - [732] = {.lex_state = 41}, - [733] = {.lex_state = 41}, - [734] = {.lex_state = 41}, - [735] = {.lex_state = 41}, - [736] = {.lex_state = 41}, - [737] = {.lex_state = 41}, - [738] = {.lex_state = 41}, - [739] = {.lex_state = 41}, - [740] = {.lex_state = 41}, - [741] = {.lex_state = 41}, - [742] = {.lex_state = 41}, - [743] = {.lex_state = 41}, - [744] = {.lex_state = 41}, - [745] = {.lex_state = 41}, - [746] = {.lex_state = 41}, - [747] = {.lex_state = 41}, - [748] = {.lex_state = 41}, - [749] = {.lex_state = 32}, - [750] = {.lex_state = 32}, - [751] = {.lex_state = 41}, - [752] = {.lex_state = 41}, - [753] = {.lex_state = 41}, - [754] = {.lex_state = 41}, - [755] = {.lex_state = 41}, - [756] = {.lex_state = 41}, - [757] = {.lex_state = 41}, - [758] = {.lex_state = 41}, - [759] = {.lex_state = 41}, - [760] = {.lex_state = 41}, - [761] = {.lex_state = 41}, - [762] = {.lex_state = 41}, - [763] = {.lex_state = 41}, - [764] = {.lex_state = 41}, - [765] = {.lex_state = 41}, - [766] = {.lex_state = 41}, - [767] = {.lex_state = 41}, - [768] = {.lex_state = 41}, - [769] = {.lex_state = 41}, - [770] = {.lex_state = 41}, - [771] = {.lex_state = 41}, - [772] = {.lex_state = 41}, - [773] = {.lex_state = 41}, - [774] = {.lex_state = 41}, - [775] = {.lex_state = 41}, - [776] = {.lex_state = 39}, - [777] = {.lex_state = 39}, - [778] = {.lex_state = 39}, - [779] = {.lex_state = 39}, - [780] = {.lex_state = 39}, - [781] = {.lex_state = 39}, - [782] = {.lex_state = 39}, - [783] = {.lex_state = 39}, - [784] = {.lex_state = 39}, - [785] = {.lex_state = 39}, - [786] = {.lex_state = 40}, - [787] = {.lex_state = 39}, - [788] = {.lex_state = 39}, - [789] = {.lex_state = 39}, - [790] = {.lex_state = 39}, - [791] = {.lex_state = 39}, - [792] = {.lex_state = 39}, - [793] = {.lex_state = 39}, - [794] = {.lex_state = 39}, - [795] = {.lex_state = 39}, - [796] = {.lex_state = 39}, - [797] = {.lex_state = 39}, - [798] = {.lex_state = 39}, - [799] = {.lex_state = 39}, - [800] = {.lex_state = 39}, - [801] = {.lex_state = 39}, - [802] = {.lex_state = 39}, - [803] = {.lex_state = 39}, - [804] = {.lex_state = 39}, - [805] = {.lex_state = 39}, - [806] = {.lex_state = 39}, - [807] = {.lex_state = 39}, - [808] = {.lex_state = 39}, - [809] = {.lex_state = 39}, - [810] = {.lex_state = 39}, - [811] = {.lex_state = 39}, - [812] = {.lex_state = 39}, - [813] = {.lex_state = 39}, - [814] = {.lex_state = 39}, - [815] = {.lex_state = 39}, - [816] = {.lex_state = 39}, - [817] = {.lex_state = 39}, - [818] = {.lex_state = 39}, - [819] = {.lex_state = 39}, - [820] = {.lex_state = 39}, - [821] = {.lex_state = 39}, - [822] = {.lex_state = 39}, - [823] = {.lex_state = 39}, - [824] = {.lex_state = 39}, - [825] = {.lex_state = 39}, - [826] = {.lex_state = 39}, - [827] = {.lex_state = 39}, - [828] = {.lex_state = 39}, - [829] = {.lex_state = 39}, - [830] = {.lex_state = 39}, - [831] = {.lex_state = 39}, - [832] = {.lex_state = 39}, - [833] = {.lex_state = 39}, - [834] = {.lex_state = 39}, - [835] = {.lex_state = 39}, - [836] = {.lex_state = 39}, - [837] = {.lex_state = 39}, - [838] = {.lex_state = 39}, - [839] = {.lex_state = 39}, - [840] = {.lex_state = 39}, - [841] = {.lex_state = 39}, - [842] = {.lex_state = 39}, - [843] = {.lex_state = 39}, - [844] = {.lex_state = 39}, - [845] = {.lex_state = 39}, - [846] = {.lex_state = 39}, - [847] = {.lex_state = 39}, - [848] = {.lex_state = 39}, - [849] = {.lex_state = 39}, - [850] = {.lex_state = 39}, - [851] = {.lex_state = 39}, - [852] = {.lex_state = 39}, - [853] = {.lex_state = 39}, - [854] = {.lex_state = 39}, - [855] = {.lex_state = 39}, - [856] = {.lex_state = 39}, - [857] = {.lex_state = 39}, - [858] = {.lex_state = 39}, - [859] = {.lex_state = 39}, - [860] = {.lex_state = 39}, - [861] = {.lex_state = 39}, - [862] = {.lex_state = 39}, - [863] = {.lex_state = 39}, - [864] = {.lex_state = 39}, - [865] = {.lex_state = 39}, - [866] = {.lex_state = 39}, - [867] = {.lex_state = 39}, - [868] = {.lex_state = 39}, - [869] = {.lex_state = 39}, - [870] = {.lex_state = 39}, - [871] = {.lex_state = 39}, - [872] = {.lex_state = 39}, - [873] = {.lex_state = 39}, - [874] = {.lex_state = 39}, - [875] = {.lex_state = 39}, - [876] = {.lex_state = 39}, - [877] = {.lex_state = 39}, - [878] = {.lex_state = 39}, - [879] = {.lex_state = 39}, - [880] = {.lex_state = 39}, - [881] = {.lex_state = 39}, - [882] = {.lex_state = 39}, - [883] = {.lex_state = 39}, - [884] = {.lex_state = 39}, - [885] = {.lex_state = 39}, - [886] = {.lex_state = 39}, - [887] = {.lex_state = 39}, - [888] = {.lex_state = 39}, - [889] = {.lex_state = 39}, - [890] = {.lex_state = 39}, - [891] = {.lex_state = 39}, - [892] = {.lex_state = 39}, - [893] = {.lex_state = 39}, - [894] = {.lex_state = 39}, - [895] = {.lex_state = 39}, - [896] = {.lex_state = 39}, - [897] = {.lex_state = 39}, - [898] = {.lex_state = 39}, - [899] = {.lex_state = 39}, - [900] = {.lex_state = 39}, - [901] = {.lex_state = 39}, - [902] = {.lex_state = 39}, - [903] = {.lex_state = 39}, - [904] = {.lex_state = 39}, - [905] = {.lex_state = 39}, - [906] = {.lex_state = 39}, - [907] = {.lex_state = 39}, - [908] = {.lex_state = 39}, - [909] = {.lex_state = 39}, - [910] = {.lex_state = 39}, - [911] = {.lex_state = 39}, - [912] = {.lex_state = 39}, - [913] = {.lex_state = 39}, - [914] = {.lex_state = 39}, - [915] = {.lex_state = 39}, - [916] = {.lex_state = 39}, - [917] = {.lex_state = 39}, - [918] = {.lex_state = 39}, - [919] = {.lex_state = 39}, - [920] = {.lex_state = 39}, - [921] = {.lex_state = 39}, - [922] = {.lex_state = 39}, - [923] = {.lex_state = 39}, - [924] = {.lex_state = 39}, - [925] = {.lex_state = 39}, - [926] = {.lex_state = 39}, - [927] = {.lex_state = 39}, - [928] = {.lex_state = 39}, - [929] = {.lex_state = 39}, - [930] = {.lex_state = 39}, - [931] = {.lex_state = 39}, - [932] = {.lex_state = 39}, - [933] = {.lex_state = 947}, - [934] = {.lex_state = 95}, - [935] = {.lex_state = 95}, - [936] = {.lex_state = 39}, - [937] = {.lex_state = 39}, - [938] = {.lex_state = 39}, - [939] = {.lex_state = 39}, - [940] = {.lex_state = 39}, - [941] = {.lex_state = 39}, - [942] = {.lex_state = 39}, - [943] = {.lex_state = 39}, - [944] = {.lex_state = 39}, - [945] = {.lex_state = 39}, - [946] = {.lex_state = 39}, - [947] = {.lex_state = 39}, - [948] = {.lex_state = 39}, - [949] = {.lex_state = 39}, - [950] = {.lex_state = 39}, - [951] = {.lex_state = 39}, - [952] = {.lex_state = 39}, - [953] = {.lex_state = 39}, - [954] = {.lex_state = 39}, - [955] = {.lex_state = 39}, - [956] = {.lex_state = 39}, - [957] = {.lex_state = 39}, - [958] = {.lex_state = 39}, - [959] = {.lex_state = 39}, - [960] = {.lex_state = 39}, - [961] = {.lex_state = 39}, - [962] = {.lex_state = 39}, - [963] = {.lex_state = 39}, - [964] = {.lex_state = 39}, - [965] = {.lex_state = 39}, - [966] = {.lex_state = 39}, - [967] = {.lex_state = 947}, - [968] = {.lex_state = 39}, - [969] = {.lex_state = 39}, - [970] = {.lex_state = 39}, - [971] = {.lex_state = 39}, - [972] = {.lex_state = 39}, - [973] = {.lex_state = 39}, - [974] = {.lex_state = 39}, - [975] = {.lex_state = 39}, - [976] = {.lex_state = 39}, - [977] = {.lex_state = 39}, - [978] = {.lex_state = 39}, - [979] = {.lex_state = 39}, - [980] = {.lex_state = 39}, - [981] = {.lex_state = 39}, - [982] = {.lex_state = 39}, - [983] = {.lex_state = 39}, - [984] = {.lex_state = 39}, - [985] = {.lex_state = 39}, - [986] = {.lex_state = 39}, - [987] = {.lex_state = 39}, - [988] = {.lex_state = 39}, - [989] = {.lex_state = 39}, - [990] = {.lex_state = 39}, - [991] = {.lex_state = 39}, - [992] = {.lex_state = 39}, - [993] = {.lex_state = 39}, - [994] = {.lex_state = 39}, - [995] = {.lex_state = 39}, - [996] = {.lex_state = 39}, - [997] = {.lex_state = 39}, - [998] = {.lex_state = 39}, - [999] = {.lex_state = 39}, - [1000] = {.lex_state = 39}, - [1001] = {.lex_state = 39}, - [1002] = {.lex_state = 39}, - [1003] = {.lex_state = 39}, - [1004] = {.lex_state = 39}, - [1005] = {.lex_state = 39}, - [1006] = {.lex_state = 39}, - [1007] = {.lex_state = 39}, - [1008] = {.lex_state = 39}, - [1009] = {.lex_state = 39}, - [1010] = {.lex_state = 39}, - [1011] = {.lex_state = 39}, - [1012] = {.lex_state = 39}, - [1013] = {.lex_state = 39}, - [1014] = {.lex_state = 39}, - [1015] = {.lex_state = 39}, - [1016] = {.lex_state = 39}, - [1017] = {.lex_state = 39}, - [1018] = {.lex_state = 39}, - [1019] = {.lex_state = 39}, - [1020] = {.lex_state = 39}, - [1021] = {.lex_state = 39}, - [1022] = {.lex_state = 39}, - [1023] = {.lex_state = 39}, - [1024] = {.lex_state = 39}, - [1025] = {.lex_state = 39}, - [1026] = {.lex_state = 39}, - [1027] = {.lex_state = 39}, - [1028] = {.lex_state = 39}, - [1029] = {.lex_state = 39}, - [1030] = {.lex_state = 39}, - [1031] = {.lex_state = 39}, - [1032] = {.lex_state = 39}, - [1033] = {.lex_state = 39}, - [1034] = {.lex_state = 42}, - [1035] = {.lex_state = 42}, - [1036] = {.lex_state = 42}, - [1037] = {.lex_state = 46}, - [1038] = {.lex_state = 46}, - [1039] = {.lex_state = 42}, - [1040] = {.lex_state = 46}, - [1041] = {.lex_state = 46}, - [1042] = {.lex_state = 46}, - [1043] = {.lex_state = 46}, - [1044] = {.lex_state = 46}, - [1045] = {.lex_state = 46}, - [1046] = {.lex_state = 34}, - [1047] = {.lex_state = 34}, - [1048] = {.lex_state = 207}, - [1049] = {.lex_state = 207}, - [1050] = {.lex_state = 207}, - [1051] = {.lex_state = 207}, - [1052] = {.lex_state = 207}, - [1053] = {.lex_state = 207}, - [1054] = {.lex_state = 99}, - [1055] = {.lex_state = 46}, - [1056] = {.lex_state = 34}, - [1057] = {.lex_state = 42}, - [1058] = {.lex_state = 46}, - [1059] = {.lex_state = 46}, - [1060] = {.lex_state = 198}, - [1061] = {.lex_state = 36}, - [1062] = {.lex_state = 46}, - [1063] = {.lex_state = 46}, - [1064] = {.lex_state = 46}, - [1065] = {.lex_state = 198}, - [1066] = {.lex_state = 42}, - [1067] = {.lex_state = 34}, - [1068] = {.lex_state = 929}, - [1069] = {.lex_state = 203}, - [1070] = {.lex_state = 34}, - [1071] = {.lex_state = 203}, - [1072] = {.lex_state = 46}, - [1073] = {.lex_state = 46}, - [1074] = {.lex_state = 46}, - [1075] = {.lex_state = 40}, - [1076] = {.lex_state = 939}, - [1077] = {.lex_state = 930}, - [1078] = {.lex_state = 99}, - [1079] = {.lex_state = 99}, - [1080] = {.lex_state = 928}, - [1081] = {.lex_state = 928}, - [1082] = {.lex_state = 929}, - [1083] = {.lex_state = 36}, - [1084] = {.lex_state = 990}, - [1085] = {.lex_state = 943}, - [1086] = {.lex_state = 118}, - [1087] = {.lex_state = 40}, - [1088] = {.lex_state = 34}, - [1089] = {.lex_state = 928}, - [1090] = {.lex_state = 942}, - [1091] = {.lex_state = 99}, - [1092] = {.lex_state = 99}, - [1093] = {.lex_state = 99}, - [1094] = {.lex_state = 943}, - [1095] = {.lex_state = 99}, - [1096] = {.lex_state = 939}, - [1097] = {.lex_state = 930}, - [1098] = {.lex_state = 932}, - [1099] = {.lex_state = 118}, - [1100] = {.lex_state = 932}, - [1101] = {.lex_state = 971}, - [1102] = {.lex_state = 967}, - [1103] = {.lex_state = 118}, - [1104] = {.lex_state = 928}, - [1105] = {.lex_state = 942}, - [1106] = {.lex_state = 933}, - [1107] = {.lex_state = 990}, - [1108] = {.lex_state = 942}, - [1109] = {.lex_state = 942}, - [1110] = {.lex_state = 990}, - [1111] = {.lex_state = 990}, - [1112] = {.lex_state = 99}, - [1113] = {.lex_state = 40}, - [1114] = {.lex_state = 962}, - [1115] = {.lex_state = 40}, - [1116] = {.lex_state = 933}, - [1117] = {.lex_state = 932}, - [1118] = {.lex_state = 933}, - [1119] = {.lex_state = 933}, - [1120] = {.lex_state = 933}, - [1121] = {.lex_state = 962}, - [1122] = {.lex_state = 940}, - [1123] = {.lex_state = 971}, - [1124] = {.lex_state = 967}, - [1125] = {.lex_state = 42}, - [1126] = {.lex_state = 968}, - [1127] = {.lex_state = 968}, - [1128] = {.lex_state = 118}, - [1129] = {.lex_state = 118}, - [1130] = {.lex_state = 118}, - [1131] = {.lex_state = 118}, - [1132] = {.lex_state = 118}, - [1133] = {.lex_state = 990}, - [1134] = {.lex_state = 990}, - [1135] = {.lex_state = 99}, - [1136] = {.lex_state = 942}, - [1137] = {.lex_state = 990}, - [1138] = {.lex_state = 990}, - [1139] = {.lex_state = 990}, - [1140] = {.lex_state = 40}, - [1141] = {.lex_state = 40}, - [1142] = {.lex_state = 40}, - [1143] = {.lex_state = 40}, - [1144] = {.lex_state = 40}, - [1145] = {.lex_state = 40}, - [1146] = {.lex_state = 99}, - [1147] = {.lex_state = 42}, - [1148] = {.lex_state = 933}, - [1149] = {.lex_state = 40}, - [1150] = {.lex_state = 40}, - [1151] = {.lex_state = 99}, - [1152] = {.lex_state = 40}, - [1153] = {.lex_state = 942}, - [1154] = {.lex_state = 942}, - [1155] = {.lex_state = 40}, - [1156] = {.lex_state = 40}, - [1157] = {.lex_state = 40}, - [1158] = {.lex_state = 40}, - [1159] = {.lex_state = 40}, - [1160] = {.lex_state = 40}, - [1161] = {.lex_state = 40}, - [1162] = {.lex_state = 40}, - [1163] = {.lex_state = 40}, - [1164] = {.lex_state = 40}, - [1165] = {.lex_state = 40}, - [1166] = {.lex_state = 40}, - [1167] = {.lex_state = 40}, - [1168] = {.lex_state = 40}, - [1169] = {.lex_state = 40}, - [1170] = {.lex_state = 40}, - [1171] = {.lex_state = 40}, - [1172] = {.lex_state = 40}, - [1173] = {.lex_state = 40}, - [1174] = {.lex_state = 40}, - [1175] = {.lex_state = 40}, - [1176] = {.lex_state = 40}, - [1177] = {.lex_state = 40}, - [1178] = {.lex_state = 40}, - [1179] = {.lex_state = 40}, - [1180] = {.lex_state = 40}, - [1181] = {.lex_state = 40}, - [1182] = {.lex_state = 40}, - [1183] = {.lex_state = 40}, - [1184] = {.lex_state = 40}, - [1185] = {.lex_state = 40}, - [1186] = {.lex_state = 40}, - [1187] = {.lex_state = 40}, - [1188] = {.lex_state = 40}, - [1189] = {.lex_state = 990}, - [1190] = {.lex_state = 40}, - [1191] = {.lex_state = 40}, - [1192] = {.lex_state = 40}, - [1193] = {.lex_state = 40}, - [1194] = {.lex_state = 40}, - [1195] = {.lex_state = 40}, - [1196] = {.lex_state = 40}, - [1197] = {.lex_state = 40}, - [1198] = {.lex_state = 40}, - [1199] = {.lex_state = 40}, - [1200] = {.lex_state = 942}, - [1201] = {.lex_state = 40}, - [1202] = {.lex_state = 932}, - [1203] = {.lex_state = 40}, - [1204] = {.lex_state = 990}, - [1205] = {.lex_state = 962}, - [1206] = {.lex_state = 40}, - [1207] = {.lex_state = 931}, - [1208] = {.lex_state = 962}, - [1209] = {.lex_state = 968}, - [1210] = {.lex_state = 933}, - [1211] = {.lex_state = 969}, - [1212] = {.lex_state = 118}, - [1213] = {.lex_state = 969}, - [1214] = {.lex_state = 969}, - [1215] = {.lex_state = 933}, - [1216] = {.lex_state = 969}, - [1217] = {.lex_state = 99}, - [1218] = {.lex_state = 118}, - [1219] = {.lex_state = 990}, - [1220] = {.lex_state = 118}, - [1221] = {.lex_state = 933}, - [1222] = {.lex_state = 934}, - [1223] = {.lex_state = 940}, + [0] = {.lex_state = 0, .external_lex_state = 1}, + [1] = {.lex_state = 930, .external_lex_state = 2}, + [2] = {.lex_state = 951, .external_lex_state = 2}, + [3] = {.lex_state = 951, .external_lex_state = 2}, + [4] = {.lex_state = 951, .external_lex_state = 2}, + [5] = {.lex_state = 951, .external_lex_state = 2}, + [6] = {.lex_state = 951, .external_lex_state = 2}, + [7] = {.lex_state = 951, .external_lex_state = 2}, + [8] = {.lex_state = 951, .external_lex_state = 2}, + [9] = {.lex_state = 951, .external_lex_state = 2}, + [10] = {.lex_state = 951, .external_lex_state = 2}, + [11] = {.lex_state = 951, .external_lex_state = 2}, + [12] = {.lex_state = 951, .external_lex_state = 2}, + [13] = {.lex_state = 951, .external_lex_state = 2}, + [14] = {.lex_state = 951, .external_lex_state = 2}, + [15] = {.lex_state = 951, .external_lex_state = 2}, + [16] = {.lex_state = 951, .external_lex_state = 2}, + [17] = {.lex_state = 951, .external_lex_state = 2}, + [18] = {.lex_state = 951, .external_lex_state = 2}, + [19] = {.lex_state = 951, .external_lex_state = 2}, + [20] = {.lex_state = 951, .external_lex_state = 2}, + [21] = {.lex_state = 951, .external_lex_state = 2}, + [22] = {.lex_state = 951, .external_lex_state = 2}, + [23] = {.lex_state = 951, .external_lex_state = 2}, + [24] = {.lex_state = 951, .external_lex_state = 2}, + [25] = {.lex_state = 951, .external_lex_state = 2}, + [26] = {.lex_state = 951, .external_lex_state = 2}, + [27] = {.lex_state = 951, .external_lex_state = 2}, + [28] = {.lex_state = 951, .external_lex_state = 2}, + [29] = {.lex_state = 951, .external_lex_state = 2}, + [30] = {.lex_state = 951, .external_lex_state = 2}, + [31] = {.lex_state = 951, .external_lex_state = 2}, + [32] = {.lex_state = 951, .external_lex_state = 2}, + [33] = {.lex_state = 951, .external_lex_state = 2}, + [34] = {.lex_state = 951, .external_lex_state = 2}, + [35] = {.lex_state = 951, .external_lex_state = 2}, + [36] = {.lex_state = 951, .external_lex_state = 2}, + [37] = {.lex_state = 951, .external_lex_state = 2}, + [38] = {.lex_state = 951, .external_lex_state = 2}, + [39] = {.lex_state = 951, .external_lex_state = 2}, + [40] = {.lex_state = 951, .external_lex_state = 2}, + [41] = {.lex_state = 948, .external_lex_state = 2}, + [42] = {.lex_state = 948, .external_lex_state = 2}, + [43] = {.lex_state = 948, .external_lex_state = 2}, + [44] = {.lex_state = 948, .external_lex_state = 2}, + [45] = {.lex_state = 948, .external_lex_state = 2}, + [46] = {.lex_state = 948, .external_lex_state = 2}, + [47] = {.lex_state = 948, .external_lex_state = 2}, + [48] = {.lex_state = 948, .external_lex_state = 2}, + [49] = {.lex_state = 948, .external_lex_state = 2}, + [50] = {.lex_state = 948, .external_lex_state = 2}, + [51] = {.lex_state = 948, .external_lex_state = 2}, + [52] = {.lex_state = 948, .external_lex_state = 2}, + [53] = {.lex_state = 948, .external_lex_state = 2}, + [54] = {.lex_state = 948, .external_lex_state = 2}, + [55] = {.lex_state = 948, .external_lex_state = 2}, + [56] = {.lex_state = 948, .external_lex_state = 2}, + [57] = {.lex_state = 948, .external_lex_state = 2}, + [58] = {.lex_state = 948, .external_lex_state = 2}, + [59] = {.lex_state = 948, .external_lex_state = 2}, + [60] = {.lex_state = 948, .external_lex_state = 2}, + [61] = {.lex_state = 948, .external_lex_state = 2}, + [62] = {.lex_state = 948, .external_lex_state = 2}, + [63] = {.lex_state = 948, .external_lex_state = 2}, + [64] = {.lex_state = 948, .external_lex_state = 2}, + [65] = {.lex_state = 948, .external_lex_state = 2}, + [66] = {.lex_state = 948, .external_lex_state = 2}, + [67] = {.lex_state = 948, .external_lex_state = 2}, + [68] = {.lex_state = 948, .external_lex_state = 2}, + [69] = {.lex_state = 948, .external_lex_state = 2}, + [70] = {.lex_state = 948, .external_lex_state = 2}, + [71] = {.lex_state = 948, .external_lex_state = 2}, + [72] = {.lex_state = 948, .external_lex_state = 2}, + [73] = {.lex_state = 948, .external_lex_state = 2}, + [74] = {.lex_state = 29, .external_lex_state = 2}, + [75] = {.lex_state = 29, .external_lex_state = 2}, + [76] = {.lex_state = 29, .external_lex_state = 2}, + [77] = {.lex_state = 29, .external_lex_state = 2}, + [78] = {.lex_state = 29, .external_lex_state = 2}, + [79] = {.lex_state = 29, .external_lex_state = 2}, + [80] = {.lex_state = 29, .external_lex_state = 2}, + [81] = {.lex_state = 29, .external_lex_state = 2}, + [82] = {.lex_state = 29, .external_lex_state = 2}, + [83] = {.lex_state = 948, .external_lex_state = 2}, + [84] = {.lex_state = 29, .external_lex_state = 2}, + [85] = {.lex_state = 29, .external_lex_state = 2}, + [86] = {.lex_state = 29, .external_lex_state = 2}, + [87] = {.lex_state = 29, .external_lex_state = 2}, + [88] = {.lex_state = 29, .external_lex_state = 2}, + [89] = {.lex_state = 29, .external_lex_state = 2}, + [90] = {.lex_state = 29, .external_lex_state = 2}, + [91] = {.lex_state = 29, .external_lex_state = 2}, + [92] = {.lex_state = 29, .external_lex_state = 2}, + [93] = {.lex_state = 948, .external_lex_state = 2}, + [94] = {.lex_state = 29, .external_lex_state = 2}, + [95] = {.lex_state = 29, .external_lex_state = 2}, + [96] = {.lex_state = 29, .external_lex_state = 2}, + [97] = {.lex_state = 29, .external_lex_state = 2}, + [98] = {.lex_state = 29, .external_lex_state = 2}, + [99] = {.lex_state = 948, .external_lex_state = 2}, + [100] = {.lex_state = 29, .external_lex_state = 2}, + [101] = {.lex_state = 29, .external_lex_state = 2}, + [102] = {.lex_state = 29, .external_lex_state = 2}, + [103] = {.lex_state = 29, .external_lex_state = 2}, + [104] = {.lex_state = 29, .external_lex_state = 2}, + [105] = {.lex_state = 29, .external_lex_state = 2}, + [106] = {.lex_state = 29, .external_lex_state = 2}, + [107] = {.lex_state = 29, .external_lex_state = 2}, + [108] = {.lex_state = 29, .external_lex_state = 2}, + [109] = {.lex_state = 29, .external_lex_state = 2}, + [110] = {.lex_state = 29, .external_lex_state = 2}, + [111] = {.lex_state = 29, .external_lex_state = 2}, + [112] = {.lex_state = 29, .external_lex_state = 2}, + [113] = {.lex_state = 29, .external_lex_state = 2}, + [114] = {.lex_state = 29, .external_lex_state = 2}, + [115] = {.lex_state = 29, .external_lex_state = 2}, + [116] = {.lex_state = 948, .external_lex_state = 2}, + [117] = {.lex_state = 948, .external_lex_state = 2}, + [118] = {.lex_state = 29, .external_lex_state = 2}, + [119] = {.lex_state = 948, .external_lex_state = 2}, + [120] = {.lex_state = 948, .external_lex_state = 2}, + [121] = {.lex_state = 948, .external_lex_state = 2}, + [122] = {.lex_state = 948, .external_lex_state = 2}, + [123] = {.lex_state = 948, .external_lex_state = 2}, + [124] = {.lex_state = 948, .external_lex_state = 2}, + [125] = {.lex_state = 948, .external_lex_state = 2}, + [126] = {.lex_state = 948, .external_lex_state = 2}, + [127] = {.lex_state = 948, .external_lex_state = 2}, + [128] = {.lex_state = 948, .external_lex_state = 2}, + [129] = {.lex_state = 948, .external_lex_state = 2}, + [130] = {.lex_state = 948, .external_lex_state = 2}, + [131] = {.lex_state = 948, .external_lex_state = 2}, + [132] = {.lex_state = 948, .external_lex_state = 2}, + [133] = {.lex_state = 948, .external_lex_state = 2}, + [134] = {.lex_state = 948, .external_lex_state = 2}, + [135] = {.lex_state = 948, .external_lex_state = 2}, + [136] = {.lex_state = 948, .external_lex_state = 2}, + [137] = {.lex_state = 948, .external_lex_state = 2}, + [138] = {.lex_state = 948, .external_lex_state = 2}, + [139] = {.lex_state = 948, .external_lex_state = 2}, + [140] = {.lex_state = 948, .external_lex_state = 2}, + [141] = {.lex_state = 948, .external_lex_state = 2}, + [142] = {.lex_state = 948, .external_lex_state = 2}, + [143] = {.lex_state = 948, .external_lex_state = 2}, + [144] = {.lex_state = 948, .external_lex_state = 2}, + [145] = {.lex_state = 948, .external_lex_state = 2}, + [146] = {.lex_state = 948, .external_lex_state = 2}, + [147] = {.lex_state = 948, .external_lex_state = 2}, + [148] = {.lex_state = 948, .external_lex_state = 2}, + [149] = {.lex_state = 948, .external_lex_state = 2}, + [150] = {.lex_state = 948, .external_lex_state = 2}, + [151] = {.lex_state = 948, .external_lex_state = 2}, + [152] = {.lex_state = 948, .external_lex_state = 2}, + [153] = {.lex_state = 948, .external_lex_state = 2}, + [154] = {.lex_state = 948, .external_lex_state = 2}, + [155] = {.lex_state = 948, .external_lex_state = 2}, + [156] = {.lex_state = 948, .external_lex_state = 2}, + [157] = {.lex_state = 948, .external_lex_state = 2}, + [158] = {.lex_state = 948, .external_lex_state = 2}, + [159] = {.lex_state = 948, .external_lex_state = 2}, + [160] = {.lex_state = 948, .external_lex_state = 2}, + [161] = {.lex_state = 948, .external_lex_state = 2}, + [162] = {.lex_state = 948, .external_lex_state = 2}, + [163] = {.lex_state = 100, .external_lex_state = 2}, + [164] = {.lex_state = 100, .external_lex_state = 2}, + [165] = {.lex_state = 100, .external_lex_state = 2}, + [166] = {.lex_state = 99, .external_lex_state = 2}, + [167] = {.lex_state = 99, .external_lex_state = 2}, + [168] = {.lex_state = 99, .external_lex_state = 2}, + [169] = {.lex_state = 99, .external_lex_state = 2}, + [170] = {.lex_state = 99, .external_lex_state = 2}, + [171] = {.lex_state = 99, .external_lex_state = 2}, + [172] = {.lex_state = 100, .external_lex_state = 2}, + [173] = {.lex_state = 100, .external_lex_state = 2}, + [174] = {.lex_state = 100, .external_lex_state = 2}, + [175] = {.lex_state = 101, .external_lex_state = 2}, + [176] = {.lex_state = 101, .external_lex_state = 2}, + [177] = {.lex_state = 200, .external_lex_state = 2}, + [178] = {.lex_state = 200, .external_lex_state = 2}, + [179] = {.lex_state = 200, .external_lex_state = 2}, + [180] = {.lex_state = 200, .external_lex_state = 2}, + [181] = {.lex_state = 200, .external_lex_state = 2}, + [182] = {.lex_state = 200, .external_lex_state = 2}, + [183] = {.lex_state = 200, .external_lex_state = 2}, + [184] = {.lex_state = 200, .external_lex_state = 2}, + [185] = {.lex_state = 200, .external_lex_state = 2}, + [186] = {.lex_state = 200, .external_lex_state = 2}, + [187] = {.lex_state = 200, .external_lex_state = 2}, + [188] = {.lex_state = 200, .external_lex_state = 2}, + [189] = {.lex_state = 200, .external_lex_state = 2}, + [190] = {.lex_state = 200, .external_lex_state = 2}, + [191] = {.lex_state = 200, .external_lex_state = 2}, + [192] = {.lex_state = 200, .external_lex_state = 2}, + [193] = {.lex_state = 200, .external_lex_state = 2}, + [194] = {.lex_state = 200, .external_lex_state = 2}, + [195] = {.lex_state = 200, .external_lex_state = 2}, + [196] = {.lex_state = 200, .external_lex_state = 2}, + [197] = {.lex_state = 42, .external_lex_state = 2}, + [198] = {.lex_state = 951, .external_lex_state = 2}, + [199] = {.lex_state = 951, .external_lex_state = 2}, + [200] = {.lex_state = 42, .external_lex_state = 2}, + [201] = {.lex_state = 42, .external_lex_state = 2}, + [202] = {.lex_state = 42, .external_lex_state = 2}, + [203] = {.lex_state = 42, .external_lex_state = 2}, + [204] = {.lex_state = 951, .external_lex_state = 2}, + [205] = {.lex_state = 42, .external_lex_state = 2}, + [206] = {.lex_state = 42, .external_lex_state = 2}, + [207] = {.lex_state = 42, .external_lex_state = 2}, + [208] = {.lex_state = 42, .external_lex_state = 2}, + [209] = {.lex_state = 42, .external_lex_state = 2}, + [210] = {.lex_state = 42, .external_lex_state = 2}, + [211] = {.lex_state = 42, .external_lex_state = 2}, + [212] = {.lex_state = 42, .external_lex_state = 2}, + [213] = {.lex_state = 42, .external_lex_state = 2}, + [214] = {.lex_state = 262, .external_lex_state = 2}, + [215] = {.lex_state = 241, .external_lex_state = 2}, + [216] = {.lex_state = 239, .external_lex_state = 2}, + [217] = {.lex_state = 263, .external_lex_state = 2}, + [218] = {.lex_state = 262, .external_lex_state = 2}, + [219] = {.lex_state = 263, .external_lex_state = 2}, + [220] = {.lex_state = 260, .external_lex_state = 2}, + [221] = {.lex_state = 260, .external_lex_state = 2}, + [222] = {.lex_state = 243, .external_lex_state = 2}, + [223] = {.lex_state = 243, .external_lex_state = 2}, + [224] = {.lex_state = 263, .external_lex_state = 2}, + [225] = {.lex_state = 263, .external_lex_state = 2}, + [226] = {.lex_state = 263, .external_lex_state = 2}, + [227] = {.lex_state = 227, .external_lex_state = 2}, + [228] = {.lex_state = 263, .external_lex_state = 2}, + [229] = {.lex_state = 229, .external_lex_state = 2}, + [230] = {.lex_state = 244, .external_lex_state = 2}, + [231] = {.lex_state = 261, .external_lex_state = 2}, + [232] = {.lex_state = 261, .external_lex_state = 2}, + [233] = {.lex_state = 29, .external_lex_state = 2}, + [234] = {.lex_state = 231, .external_lex_state = 2}, + [235] = {.lex_state = 272, .external_lex_state = 2}, + [236] = {.lex_state = 272, .external_lex_state = 2}, + [237] = {.lex_state = 29, .external_lex_state = 2}, + [238] = {.lex_state = 29, .external_lex_state = 2}, + [239] = {.lex_state = 261, .external_lex_state = 2}, + [240] = {.lex_state = 272, .external_lex_state = 2}, + [241] = {.lex_state = 261, .external_lex_state = 2}, + [242] = {.lex_state = 231, .external_lex_state = 2}, + [243] = {.lex_state = 261, .external_lex_state = 2}, + [244] = {.lex_state = 232, .external_lex_state = 2}, + [245] = {.lex_state = 29, .external_lex_state = 2}, + [246] = {.lex_state = 244, .external_lex_state = 2}, + [247] = {.lex_state = 242, .external_lex_state = 2}, + [248] = {.lex_state = 244, .external_lex_state = 2}, + [249] = {.lex_state = 244, .external_lex_state = 2}, + [250] = {.lex_state = 240, .external_lex_state = 2}, + [251] = {.lex_state = 244, .external_lex_state = 2}, + [252] = {.lex_state = 261, .external_lex_state = 2}, + [253] = {.lex_state = 33, .external_lex_state = 2}, + [254] = {.lex_state = 228, .external_lex_state = 2}, + [255] = {.lex_state = 948, .external_lex_state = 2}, + [256] = {.lex_state = 33, .external_lex_state = 2}, + [257] = {.lex_state = 272, .external_lex_state = 2}, + [258] = {.lex_state = 272, .external_lex_state = 2}, + [259] = {.lex_state = 33, .external_lex_state = 2}, + [260] = {.lex_state = 33, .external_lex_state = 2}, + [261] = {.lex_state = 33, .external_lex_state = 2}, + [262] = {.lex_state = 230, .external_lex_state = 2}, + [263] = {.lex_state = 948, .external_lex_state = 2}, + [264] = {.lex_state = 33, .external_lex_state = 2}, + [265] = {.lex_state = 33, .external_lex_state = 2}, + [266] = {.lex_state = 33, .external_lex_state = 2}, + [267] = {.lex_state = 33, .external_lex_state = 2}, + [268] = {.lex_state = 33, .external_lex_state = 2}, + [269] = {.lex_state = 33, .external_lex_state = 2}, + [270] = {.lex_state = 33, .external_lex_state = 2}, + [271] = {.lex_state = 930, .external_lex_state = 2}, + [272] = {.lex_state = 33, .external_lex_state = 2}, + [273] = {.lex_state = 285, .external_lex_state = 2}, + [274] = {.lex_state = 33, .external_lex_state = 2}, + [275] = {.lex_state = 33, .external_lex_state = 2}, + [276] = {.lex_state = 33, .external_lex_state = 2}, + [277] = {.lex_state = 33, .external_lex_state = 2}, + [278] = {.lex_state = 33, .external_lex_state = 2}, + [279] = {.lex_state = 33, .external_lex_state = 2}, + [280] = {.lex_state = 33, .external_lex_state = 2}, + [281] = {.lex_state = 33, .external_lex_state = 2}, + [282] = {.lex_state = 33, .external_lex_state = 2}, + [283] = {.lex_state = 33, .external_lex_state = 2}, + [284] = {.lex_state = 29, .external_lex_state = 2}, + [285] = {.lex_state = 232, .external_lex_state = 2}, + [286] = {.lex_state = 948, .external_lex_state = 2}, + [287] = {.lex_state = 285, .external_lex_state = 2}, + [288] = {.lex_state = 232, .external_lex_state = 2}, + [289] = {.lex_state = 232, .external_lex_state = 2}, + [290] = {.lex_state = 232, .external_lex_state = 2}, + [291] = {.lex_state = 948, .external_lex_state = 2}, + [292] = {.lex_state = 245, .external_lex_state = 2}, + [293] = {.lex_state = 948, .external_lex_state = 2}, + [294] = {.lex_state = 245, .external_lex_state = 2}, + [295] = {.lex_state = 948, .external_lex_state = 2}, + [296] = {.lex_state = 948, .external_lex_state = 2}, + [297] = {.lex_state = 948, .external_lex_state = 2}, + [298] = {.lex_state = 285, .external_lex_state = 2}, + [299] = {.lex_state = 33, .external_lex_state = 2}, + [300] = {.lex_state = 246, .external_lex_state = 2}, + [301] = {.lex_state = 285, .external_lex_state = 2}, + [302] = {.lex_state = 273, .external_lex_state = 2}, + [303] = {.lex_state = 948, .external_lex_state = 2}, + [304] = {.lex_state = 948, .external_lex_state = 2}, + [305] = {.lex_state = 29, .external_lex_state = 2}, + [306] = {.lex_state = 233, .external_lex_state = 2}, + [307] = {.lex_state = 273, .external_lex_state = 2}, + [308] = {.lex_state = 246, .external_lex_state = 2}, + [309] = {.lex_state = 948, .external_lex_state = 2}, + [310] = {.lex_state = 282, .external_lex_state = 2}, + [311] = {.lex_state = 273, .external_lex_state = 2}, + [312] = {.lex_state = 273, .external_lex_state = 2}, + [313] = {.lex_state = 246, .external_lex_state = 2}, + [314] = {.lex_state = 948, .external_lex_state = 2}, + [315] = {.lex_state = 273, .external_lex_state = 2}, + [316] = {.lex_state = 285, .external_lex_state = 2}, + [317] = {.lex_state = 273, .external_lex_state = 2}, + [318] = {.lex_state = 948, .external_lex_state = 2}, + [319] = {.lex_state = 246, .external_lex_state = 2}, + [320] = {.lex_state = 246, .external_lex_state = 2}, + [321] = {.lex_state = 948, .external_lex_state = 2}, + [322] = {.lex_state = 271, .external_lex_state = 2}, + [323] = {.lex_state = 274, .external_lex_state = 2}, + [324] = {.lex_state = 246, .external_lex_state = 2}, + [325] = {.lex_state = 233, .external_lex_state = 2}, + [326] = {.lex_state = 279, .external_lex_state = 2}, + [327] = {.lex_state = 271, .external_lex_state = 2}, + [328] = {.lex_state = 271, .external_lex_state = 2}, + [329] = {.lex_state = 948, .external_lex_state = 2}, + [330] = {.lex_state = 948, .external_lex_state = 2}, + [331] = {.lex_state = 33, .external_lex_state = 2}, + [332] = {.lex_state = 948, .external_lex_state = 2}, + [333] = {.lex_state = 283, .external_lex_state = 2}, + [334] = {.lex_state = 279, .external_lex_state = 2}, + [335] = {.lex_state = 283, .external_lex_state = 2}, + [336] = {.lex_state = 283, .external_lex_state = 2}, + [337] = {.lex_state = 283, .external_lex_state = 2}, + [338] = {.lex_state = 283, .external_lex_state = 2}, + [339] = {.lex_state = 283, .external_lex_state = 2}, + [340] = {.lex_state = 272, .external_lex_state = 2}, + [341] = {.lex_state = 272, .external_lex_state = 2}, + [342] = {.lex_state = 272, .external_lex_state = 2}, + [343] = {.lex_state = 234, .external_lex_state = 2}, + [344] = {.lex_state = 234, .external_lex_state = 2}, + [345] = {.lex_state = 234, .external_lex_state = 2}, + [346] = {.lex_state = 234, .external_lex_state = 2}, + [347] = {.lex_state = 295, .external_lex_state = 2}, + [348] = {.lex_state = 279, .external_lex_state = 2}, + [349] = {.lex_state = 279, .external_lex_state = 2}, + [350] = {.lex_state = 279, .external_lex_state = 2}, + [351] = {.lex_state = 236, .external_lex_state = 2}, + [352] = {.lex_state = 279, .external_lex_state = 2}, + [353] = {.lex_state = 280, .external_lex_state = 2}, + [354] = {.lex_state = 201, .external_lex_state = 2}, + [355] = {.lex_state = 284, .external_lex_state = 2}, + [356] = {.lex_state = 247, .external_lex_state = 2}, + [357] = {.lex_state = 948, .external_lex_state = 2}, + [358] = {.lex_state = 201, .external_lex_state = 2}, + [359] = {.lex_state = 948, .external_lex_state = 2}, + [360] = {.lex_state = 279, .external_lex_state = 2}, + [361] = {.lex_state = 201, .external_lex_state = 2}, + [362] = {.lex_state = 952, .external_lex_state = 2}, + [363] = {.lex_state = 279, .external_lex_state = 2}, + [364] = {.lex_state = 279, .external_lex_state = 2}, + [365] = {.lex_state = 279, .external_lex_state = 2}, + [366] = {.lex_state = 279, .external_lex_state = 2}, + [367] = {.lex_state = 279, .external_lex_state = 2}, + [368] = {.lex_state = 279, .external_lex_state = 2}, + [369] = {.lex_state = 279, .external_lex_state = 2}, + [370] = {.lex_state = 279, .external_lex_state = 2}, + [371] = {.lex_state = 33, .external_lex_state = 2}, + [372] = {.lex_state = 279, .external_lex_state = 2}, + [373] = {.lex_state = 279, .external_lex_state = 2}, + [374] = {.lex_state = 279, .external_lex_state = 2}, + [375] = {.lex_state = 279, .external_lex_state = 2}, + [376] = {.lex_state = 279, .external_lex_state = 2}, + [377] = {.lex_state = 279, .external_lex_state = 2}, + [378] = {.lex_state = 279, .external_lex_state = 2}, + [379] = {.lex_state = 279, .external_lex_state = 2}, + [380] = {.lex_state = 279, .external_lex_state = 2}, + [381] = {.lex_state = 279, .external_lex_state = 2}, + [382] = {.lex_state = 279, .external_lex_state = 2}, + [383] = {.lex_state = 279, .external_lex_state = 2}, + [384] = {.lex_state = 234, .external_lex_state = 2}, + [385] = {.lex_state = 279, .external_lex_state = 2}, + [386] = {.lex_state = 234, .external_lex_state = 2}, + [387] = {.lex_state = 280, .external_lex_state = 2}, + [388] = {.lex_state = 281, .external_lex_state = 2}, + [389] = {.lex_state = 281, .external_lex_state = 2}, + [390] = {.lex_state = 281, .external_lex_state = 2}, + [391] = {.lex_state = 952, .external_lex_state = 2}, + [392] = {.lex_state = 292, .external_lex_state = 2}, + [393] = {.lex_state = 292, .external_lex_state = 2}, + [394] = {.lex_state = 292, .external_lex_state = 2}, + [395] = {.lex_state = 292, .external_lex_state = 2}, + [396] = {.lex_state = 292, .external_lex_state = 2}, + [397] = {.lex_state = 292, .external_lex_state = 2}, + [398] = {.lex_state = 292, .external_lex_state = 2}, + [399] = {.lex_state = 292, .external_lex_state = 2}, + [400] = {.lex_state = 292, .external_lex_state = 2}, + [401] = {.lex_state = 292, .external_lex_state = 2}, + [402] = {.lex_state = 292, .external_lex_state = 2}, + [403] = {.lex_state = 292, .external_lex_state = 2}, + [404] = {.lex_state = 292, .external_lex_state = 2}, + [405] = {.lex_state = 292, .external_lex_state = 2}, + [406] = {.lex_state = 292, .external_lex_state = 2}, + [407] = {.lex_state = 292, .external_lex_state = 2}, + [408] = {.lex_state = 292, .external_lex_state = 2}, + [409] = {.lex_state = 292, .external_lex_state = 2}, + [410] = {.lex_state = 270, .external_lex_state = 2}, + [411] = {.lex_state = 279, .external_lex_state = 2}, + [412] = {.lex_state = 279, .external_lex_state = 2}, + [413] = {.lex_state = 292, .external_lex_state = 2}, + [414] = {.lex_state = 270, .external_lex_state = 2}, + [415] = {.lex_state = 270, .external_lex_state = 2}, + [416] = {.lex_state = 281, .external_lex_state = 2}, + [417] = {.lex_state = 224, .external_lex_state = 2}, + [418] = {.lex_state = 293, .external_lex_state = 2}, + [419] = {.lex_state = 952, .external_lex_state = 2}, + [420] = {.lex_state = 292, .external_lex_state = 2}, + [421] = {.lex_state = 293, .external_lex_state = 2}, + [422] = {.lex_state = 292, .external_lex_state = 2}, + [423] = {.lex_state = 285, .external_lex_state = 2}, + [424] = {.lex_state = 292, .external_lex_state = 2}, + [425] = {.lex_state = 270, .external_lex_state = 2}, + [426] = {.lex_state = 292, .external_lex_state = 2}, + [427] = {.lex_state = 270, .external_lex_state = 2}, + [428] = {.lex_state = 237, .external_lex_state = 2}, + [429] = {.lex_state = 270, .external_lex_state = 2}, + [430] = {.lex_state = 281, .external_lex_state = 2}, + [431] = {.lex_state = 285, .external_lex_state = 2}, + [432] = {.lex_state = 281, .external_lex_state = 2}, + [433] = {.lex_state = 281, .external_lex_state = 2}, + [434] = {.lex_state = 237, .external_lex_state = 2}, + [435] = {.lex_state = 292, .external_lex_state = 2}, + [436] = {.lex_state = 292, .external_lex_state = 2}, + [437] = {.lex_state = 292, .external_lex_state = 2}, + [438] = {.lex_state = 281, .external_lex_state = 2}, + [439] = {.lex_state = 285, .external_lex_state = 2}, + [440] = {.lex_state = 281, .external_lex_state = 2}, + [441] = {.lex_state = 281, .external_lex_state = 2}, + [442] = {.lex_state = 281, .external_lex_state = 2}, + [443] = {.lex_state = 281, .external_lex_state = 2}, + [444] = {.lex_state = 235, .external_lex_state = 2}, + [445] = {.lex_state = 281, .external_lex_state = 2}, + [446] = {.lex_state = 281, .external_lex_state = 2}, + [447] = {.lex_state = 281, .external_lex_state = 2}, + [448] = {.lex_state = 292, .external_lex_state = 2}, + [449] = {.lex_state = 281, .external_lex_state = 2}, + [450] = {.lex_state = 292, .external_lex_state = 2}, + [451] = {.lex_state = 238, .external_lex_state = 2}, + [452] = {.lex_state = 238, .external_lex_state = 2}, + [453] = {.lex_state = 238, .external_lex_state = 2}, + [454] = {.lex_state = 294, .external_lex_state = 2}, + [455] = {.lex_state = 238, .external_lex_state = 2}, + [456] = {.lex_state = 292, .external_lex_state = 2}, + [457] = {.lex_state = 238, .external_lex_state = 2}, + [458] = {.lex_state = 238, .external_lex_state = 2}, + [459] = {.lex_state = 277, .external_lex_state = 2}, + [460] = {.lex_state = 277, .external_lex_state = 2}, + [461] = {.lex_state = 277, .external_lex_state = 2}, + [462] = {.lex_state = 276, .external_lex_state = 2}, + [463] = {.lex_state = 277, .external_lex_state = 2}, + [464] = {.lex_state = 277, .external_lex_state = 2}, + [465] = {.lex_state = 277, .external_lex_state = 2}, + [466] = {.lex_state = 292, .external_lex_state = 2}, + [467] = {.lex_state = 278, .external_lex_state = 2}, + [468] = {.lex_state = 271, .external_lex_state = 2}, + [469] = {.lex_state = 355, .external_lex_state = 2}, + [470] = {.lex_state = 238, .external_lex_state = 2}, + [471] = {.lex_state = 294, .external_lex_state = 2}, + [472] = {.lex_state = 294, .external_lex_state = 2}, + [473] = {.lex_state = 355, .external_lex_state = 2}, + [474] = {.lex_state = 355, .external_lex_state = 2}, + [475] = {.lex_state = 294, .external_lex_state = 2}, + [476] = {.lex_state = 225, .external_lex_state = 2}, + [477] = {.lex_state = 355, .external_lex_state = 2}, + [478] = {.lex_state = 294, .external_lex_state = 2}, + [479] = {.lex_state = 225, .external_lex_state = 2}, + [480] = {.lex_state = 294, .external_lex_state = 2}, + [481] = {.lex_state = 238, .external_lex_state = 2}, + [482] = {.lex_state = 355, .external_lex_state = 2}, + [483] = {.lex_state = 238, .external_lex_state = 2}, + [484] = {.lex_state = 238, .external_lex_state = 2}, + [485] = {.lex_state = 238, .external_lex_state = 2}, + [486] = {.lex_state = 238, .external_lex_state = 2}, + [487] = {.lex_state = 294, .external_lex_state = 2}, + [488] = {.lex_state = 294, .external_lex_state = 2}, + [489] = {.lex_state = 294, .external_lex_state = 2}, + [490] = {.lex_state = 294, .external_lex_state = 2}, + [491] = {.lex_state = 294, .external_lex_state = 2}, + [492] = {.lex_state = 294, .external_lex_state = 2}, + [493] = {.lex_state = 294, .external_lex_state = 2}, + [494] = {.lex_state = 271, .external_lex_state = 2}, + [495] = {.lex_state = 294, .external_lex_state = 2}, + [496] = {.lex_state = 294, .external_lex_state = 2}, + [497] = {.lex_state = 238, .external_lex_state = 2}, + [498] = {.lex_state = 238, .external_lex_state = 2}, + [499] = {.lex_state = 238, .external_lex_state = 2}, + [500] = {.lex_state = 271, .external_lex_state = 2}, + [501] = {.lex_state = 294, .external_lex_state = 2}, + [502] = {.lex_state = 226, .external_lex_state = 2}, + [503] = {.lex_state = 326, .external_lex_state = 2}, + [504] = {.lex_state = 290, .external_lex_state = 2}, + [505] = {.lex_state = 290, .external_lex_state = 2}, + [506] = {.lex_state = 290, .external_lex_state = 2}, + [507] = {.lex_state = 354, .external_lex_state = 2}, + [508] = {.lex_state = 326, .external_lex_state = 2}, + [509] = {.lex_state = 290, .external_lex_state = 2}, + [510] = {.lex_state = 354, .external_lex_state = 2}, + [511] = {.lex_state = 269, .external_lex_state = 2}, + [512] = {.lex_state = 326, .external_lex_state = 2}, + [513] = {.lex_state = 354, .external_lex_state = 2}, + [514] = {.lex_state = 354, .external_lex_state = 2}, + [515] = {.lex_state = 326, .external_lex_state = 2}, + [516] = {.lex_state = 326, .external_lex_state = 2}, + [517] = {.lex_state = 226, .external_lex_state = 2}, + [518] = {.lex_state = 279, .external_lex_state = 2}, + [519] = {.lex_state = 226, .external_lex_state = 2}, + [520] = {.lex_state = 290, .external_lex_state = 2}, + [521] = {.lex_state = 226, .external_lex_state = 2}, + [522] = {.lex_state = 354, .external_lex_state = 2}, + [523] = {.lex_state = 226, .external_lex_state = 2}, + [524] = {.lex_state = 226, .external_lex_state = 2}, + [525] = {.lex_state = 226, .external_lex_state = 2}, + [526] = {.lex_state = 226, .external_lex_state = 2}, + [527] = {.lex_state = 226, .external_lex_state = 2}, + [528] = {.lex_state = 326, .external_lex_state = 2}, + [529] = {.lex_state = 238, .external_lex_state = 2}, + [530] = {.lex_state = 226, .external_lex_state = 2}, + [531] = {.lex_state = 275, .external_lex_state = 2}, + [532] = {.lex_state = 275, .external_lex_state = 2}, + [533] = {.lex_state = 238, .external_lex_state = 2}, + [534] = {.lex_state = 291, .external_lex_state = 2}, + [535] = {.lex_state = 226, .external_lex_state = 2}, + [536] = {.lex_state = 289, .external_lex_state = 2}, + [537] = {.lex_state = 290, .external_lex_state = 2}, + [538] = {.lex_state = 279, .external_lex_state = 2}, + [539] = {.lex_state = 326, .external_lex_state = 2}, + [540] = {.lex_state = 326, .external_lex_state = 2}, + [541] = {.lex_state = 226, .external_lex_state = 2}, + [542] = {.lex_state = 226, .external_lex_state = 2}, + [543] = {.lex_state = 226, .external_lex_state = 2}, + [544] = {.lex_state = 269, .external_lex_state = 2}, + [545] = {.lex_state = 279, .external_lex_state = 2}, + [546] = {.lex_state = 226, .external_lex_state = 2}, + [547] = {.lex_state = 326, .external_lex_state = 2}, + [548] = {.lex_state = 326, .external_lex_state = 2}, + [549] = {.lex_state = 326, .external_lex_state = 2}, + [550] = {.lex_state = 326, .external_lex_state = 2}, + [551] = {.lex_state = 326, .external_lex_state = 2}, + [552] = {.lex_state = 326, .external_lex_state = 2}, + [553] = {.lex_state = 326, .external_lex_state = 2}, + [554] = {.lex_state = 326, .external_lex_state = 2}, + [555] = {.lex_state = 326, .external_lex_state = 2}, + [556] = {.lex_state = 326, .external_lex_state = 2}, + [557] = {.lex_state = 326, .external_lex_state = 2}, + [558] = {.lex_state = 42, .external_lex_state = 2}, + [559] = {.lex_state = 226, .external_lex_state = 2}, + [560] = {.lex_state = 326, .external_lex_state = 2}, + [561] = {.lex_state = 326, .external_lex_state = 2}, + [562] = {.lex_state = 326, .external_lex_state = 2}, + [563] = {.lex_state = 326, .external_lex_state = 2}, + [564] = {.lex_state = 326, .external_lex_state = 2}, + [565] = {.lex_state = 326, .external_lex_state = 2}, + [566] = {.lex_state = 326, .external_lex_state = 2}, + [567] = {.lex_state = 226, .external_lex_state = 2}, + [568] = {.lex_state = 326, .external_lex_state = 2}, + [569] = {.lex_state = 326, .external_lex_state = 2}, + [570] = {.lex_state = 326, .external_lex_state = 2}, + [571] = {.lex_state = 326, .external_lex_state = 2}, + [572] = {.lex_state = 326, .external_lex_state = 2}, + [573] = {.lex_state = 326, .external_lex_state = 2}, + [574] = {.lex_state = 326, .external_lex_state = 2}, + [575] = {.lex_state = 326, .external_lex_state = 2}, + [576] = {.lex_state = 326, .external_lex_state = 2}, + [577] = {.lex_state = 326, .external_lex_state = 2}, + [578] = {.lex_state = 326, .external_lex_state = 2}, + [579] = {.lex_state = 326, .external_lex_state = 2}, + [580] = {.lex_state = 326, .external_lex_state = 2}, + [581] = {.lex_state = 326, .external_lex_state = 2}, + [582] = {.lex_state = 326, .external_lex_state = 2}, + [583] = {.lex_state = 326, .external_lex_state = 2}, + [584] = {.lex_state = 326, .external_lex_state = 2}, + [585] = {.lex_state = 326, .external_lex_state = 2}, + [586] = {.lex_state = 326, .external_lex_state = 2}, + [587] = {.lex_state = 326, .external_lex_state = 2}, + [588] = {.lex_state = 326, .external_lex_state = 2}, + [589] = {.lex_state = 326, .external_lex_state = 2}, + [590] = {.lex_state = 326, .external_lex_state = 2}, + [591] = {.lex_state = 326, .external_lex_state = 2}, + [592] = {.lex_state = 326, .external_lex_state = 2}, + [593] = {.lex_state = 326, .external_lex_state = 2}, + [594] = {.lex_state = 326, .external_lex_state = 2}, + [595] = {.lex_state = 326, .external_lex_state = 2}, + [596] = {.lex_state = 326, .external_lex_state = 2}, + [597] = {.lex_state = 326, .external_lex_state = 2}, + [598] = {.lex_state = 326, .external_lex_state = 2}, + [599] = {.lex_state = 326, .external_lex_state = 2}, + [600] = {.lex_state = 42, .external_lex_state = 2}, + [601] = {.lex_state = 326, .external_lex_state = 2}, + [602] = {.lex_state = 326, .external_lex_state = 2}, + [603] = {.lex_state = 287, .external_lex_state = 2}, + [604] = {.lex_state = 326, .external_lex_state = 2}, + [605] = {.lex_state = 42, .external_lex_state = 2}, + [606] = {.lex_state = 326, .external_lex_state = 2}, + [607] = {.lex_state = 326, .external_lex_state = 2}, + [608] = {.lex_state = 326, .external_lex_state = 2}, + [609] = {.lex_state = 326, .external_lex_state = 2}, + [610] = {.lex_state = 326, .external_lex_state = 2}, + [611] = {.lex_state = 326, .external_lex_state = 2}, + [612] = {.lex_state = 326, .external_lex_state = 2}, + [613] = {.lex_state = 326, .external_lex_state = 2}, + [614] = {.lex_state = 326, .external_lex_state = 2}, + [615] = {.lex_state = 326, .external_lex_state = 2}, + [616] = {.lex_state = 326, .external_lex_state = 2}, + [617] = {.lex_state = 287, .external_lex_state = 2}, + [618] = {.lex_state = 326, .external_lex_state = 2}, + [619] = {.lex_state = 326, .external_lex_state = 2}, + [620] = {.lex_state = 326, .external_lex_state = 2}, + [621] = {.lex_state = 326, .external_lex_state = 2}, + [622] = {.lex_state = 326, .external_lex_state = 2}, + [623] = {.lex_state = 326, .external_lex_state = 2}, + [624] = {.lex_state = 292, .external_lex_state = 2}, + [625] = {.lex_state = 292, .external_lex_state = 2}, + [626] = {.lex_state = 326, .external_lex_state = 2}, + [627] = {.lex_state = 326, .external_lex_state = 2}, + [628] = {.lex_state = 326, .external_lex_state = 2}, + [629] = {.lex_state = 326, .external_lex_state = 2}, + [630] = {.lex_state = 326, .external_lex_state = 2}, + [631] = {.lex_state = 292, .external_lex_state = 2}, + [632] = {.lex_state = 42, .external_lex_state = 2}, + [633] = {.lex_state = 42, .external_lex_state = 2}, + [634] = {.lex_state = 42, .external_lex_state = 2}, + [635] = {.lex_state = 42, .external_lex_state = 2}, + [636] = {.lex_state = 42, .external_lex_state = 2}, + [637] = {.lex_state = 42, .external_lex_state = 2}, + [638] = {.lex_state = 42, .external_lex_state = 2}, + [639] = {.lex_state = 42, .external_lex_state = 2}, + [640] = {.lex_state = 42, .external_lex_state = 2}, + [641] = {.lex_state = 42, .external_lex_state = 2}, + [642] = {.lex_state = 42, .external_lex_state = 2}, + [643] = {.lex_state = 42, .external_lex_state = 2}, + [644] = {.lex_state = 42, .external_lex_state = 2}, + [645] = {.lex_state = 42, .external_lex_state = 2}, + [646] = {.lex_state = 42, .external_lex_state = 2}, + [647] = {.lex_state = 42, .external_lex_state = 2}, + [648] = {.lex_state = 42, .external_lex_state = 2}, + [649] = {.lex_state = 42, .external_lex_state = 2}, + [650] = {.lex_state = 42, .external_lex_state = 2}, + [651] = {.lex_state = 42, .external_lex_state = 2}, + [652] = {.lex_state = 42, .external_lex_state = 2}, + [653] = {.lex_state = 42, .external_lex_state = 2}, + [654] = {.lex_state = 42, .external_lex_state = 2}, + [655] = {.lex_state = 42, .external_lex_state = 2}, + [656] = {.lex_state = 42, .external_lex_state = 2}, + [657] = {.lex_state = 42, .external_lex_state = 2}, + [658] = {.lex_state = 42, .external_lex_state = 2}, + [659] = {.lex_state = 42, .external_lex_state = 2}, + [660] = {.lex_state = 42, .external_lex_state = 2}, + [661] = {.lex_state = 42, .external_lex_state = 2}, + [662] = {.lex_state = 42, .external_lex_state = 2}, + [663] = {.lex_state = 42, .external_lex_state = 2}, + [664] = {.lex_state = 42, .external_lex_state = 2}, + [665] = {.lex_state = 42, .external_lex_state = 2}, + [666] = {.lex_state = 42, .external_lex_state = 2}, + [667] = {.lex_state = 42, .external_lex_state = 2}, + [668] = {.lex_state = 42, .external_lex_state = 2}, + [669] = {.lex_state = 42, .external_lex_state = 2}, + [670] = {.lex_state = 42, .external_lex_state = 2}, + [671] = {.lex_state = 42, .external_lex_state = 2}, + [672] = {.lex_state = 42, .external_lex_state = 2}, + [673] = {.lex_state = 42, .external_lex_state = 2}, + [674] = {.lex_state = 42, .external_lex_state = 2}, + [675] = {.lex_state = 42, .external_lex_state = 2}, + [676] = {.lex_state = 42, .external_lex_state = 2}, + [677] = {.lex_state = 42, .external_lex_state = 2}, + [678] = {.lex_state = 42, .external_lex_state = 2}, + [679] = {.lex_state = 42, .external_lex_state = 2}, + [680] = {.lex_state = 42, .external_lex_state = 2}, + [681] = {.lex_state = 42, .external_lex_state = 2}, + [682] = {.lex_state = 42, .external_lex_state = 2}, + [683] = {.lex_state = 42, .external_lex_state = 2}, + [684] = {.lex_state = 42, .external_lex_state = 2}, + [685] = {.lex_state = 42, .external_lex_state = 2}, + [686] = {.lex_state = 42, .external_lex_state = 2}, + [687] = {.lex_state = 42, .external_lex_state = 2}, + [688] = {.lex_state = 42, .external_lex_state = 2}, + [689] = {.lex_state = 42, .external_lex_state = 2}, + [690] = {.lex_state = 42, .external_lex_state = 2}, + [691] = {.lex_state = 42, .external_lex_state = 2}, + [692] = {.lex_state = 42, .external_lex_state = 2}, + [693] = {.lex_state = 42, .external_lex_state = 2}, + [694] = {.lex_state = 42, .external_lex_state = 2}, + [695] = {.lex_state = 42, .external_lex_state = 2}, + [696] = {.lex_state = 42, .external_lex_state = 2}, + [697] = {.lex_state = 42, .external_lex_state = 2}, + [698] = {.lex_state = 42, .external_lex_state = 2}, + [699] = {.lex_state = 42, .external_lex_state = 2}, + [700] = {.lex_state = 42, .external_lex_state = 2}, + [701] = {.lex_state = 42, .external_lex_state = 2}, + [702] = {.lex_state = 42, .external_lex_state = 2}, + [703] = {.lex_state = 42, .external_lex_state = 2}, + [704] = {.lex_state = 42, .external_lex_state = 2}, + [705] = {.lex_state = 42, .external_lex_state = 2}, + [706] = {.lex_state = 42, .external_lex_state = 2}, + [707] = {.lex_state = 42, .external_lex_state = 2}, + [708] = {.lex_state = 36, .external_lex_state = 2}, + [709] = {.lex_state = 36, .external_lex_state = 2}, + [710] = {.lex_state = 958, .external_lex_state = 2}, + [711] = {.lex_state = 958, .external_lex_state = 2}, + [712] = {.lex_state = 958, .external_lex_state = 2}, + [713] = {.lex_state = 958, .external_lex_state = 2}, + [714] = {.lex_state = 958, .external_lex_state = 2}, + [715] = {.lex_state = 958, .external_lex_state = 2}, + [716] = {.lex_state = 958, .external_lex_state = 2}, + [717] = {.lex_state = 958, .external_lex_state = 2}, + [718] = {.lex_state = 958, .external_lex_state = 2}, + [719] = {.lex_state = 958, .external_lex_state = 2}, + [720] = {.lex_state = 958, .external_lex_state = 2}, + [721] = {.lex_state = 958, .external_lex_state = 2}, + [722] = {.lex_state = 958, .external_lex_state = 2}, + [723] = {.lex_state = 958, .external_lex_state = 2}, + [724] = {.lex_state = 958, .external_lex_state = 2}, + [725] = {.lex_state = 32, .external_lex_state = 2}, + [726] = {.lex_state = 32, .external_lex_state = 2}, + [727] = {.lex_state = 32, .external_lex_state = 2}, + [728] = {.lex_state = 32, .external_lex_state = 2}, + [729] = {.lex_state = 32, .external_lex_state = 2}, + [730] = {.lex_state = 36, .external_lex_state = 2}, + [731] = {.lex_state = 36, .external_lex_state = 2}, + [732] = {.lex_state = 36, .external_lex_state = 2}, + [733] = {.lex_state = 36, .external_lex_state = 2}, + [734] = {.lex_state = 32, .external_lex_state = 2}, + [735] = {.lex_state = 36, .external_lex_state = 2}, + [736] = {.lex_state = 36, .external_lex_state = 2}, + [737] = {.lex_state = 36, .external_lex_state = 2}, + [738] = {.lex_state = 36, .external_lex_state = 2}, + [739] = {.lex_state = 36, .external_lex_state = 2}, + [740] = {.lex_state = 36, .external_lex_state = 2}, + [741] = {.lex_state = 36, .external_lex_state = 2}, + [742] = {.lex_state = 36, .external_lex_state = 2}, + [743] = {.lex_state = 36, .external_lex_state = 2}, + [744] = {.lex_state = 36, .external_lex_state = 2}, + [745] = {.lex_state = 36, .external_lex_state = 2}, + [746] = {.lex_state = 32, .external_lex_state = 2}, + [747] = {.lex_state = 36, .external_lex_state = 2}, + [748] = {.lex_state = 36, .external_lex_state = 2}, + [749] = {.lex_state = 36, .external_lex_state = 2}, + [750] = {.lex_state = 36, .external_lex_state = 2}, + [751] = {.lex_state = 36, .external_lex_state = 2}, + [752] = {.lex_state = 36, .external_lex_state = 2}, + [753] = {.lex_state = 36, .external_lex_state = 2}, + [754] = {.lex_state = 36, .external_lex_state = 2}, + [755] = {.lex_state = 32, .external_lex_state = 2}, + [756] = {.lex_state = 36, .external_lex_state = 2}, + [757] = {.lex_state = 32, .external_lex_state = 2}, + [758] = {.lex_state = 36, .external_lex_state = 2}, + [759] = {.lex_state = 36, .external_lex_state = 2}, + [760] = {.lex_state = 36, .external_lex_state = 2}, + [761] = {.lex_state = 36, .external_lex_state = 2}, + [762] = {.lex_state = 36, .external_lex_state = 2}, + [763] = {.lex_state = 36, .external_lex_state = 2}, + [764] = {.lex_state = 36, .external_lex_state = 2}, + [765] = {.lex_state = 36, .external_lex_state = 2}, + [766] = {.lex_state = 36, .external_lex_state = 2}, + [767] = {.lex_state = 36, .external_lex_state = 2}, + [768] = {.lex_state = 36, .external_lex_state = 2}, + [769] = {.lex_state = 36, .external_lex_state = 2}, + [770] = {.lex_state = 36, .external_lex_state = 2}, + [771] = {.lex_state = 36, .external_lex_state = 2}, + [772] = {.lex_state = 36, .external_lex_state = 2}, + [773] = {.lex_state = 36, .external_lex_state = 2}, + [774] = {.lex_state = 36, .external_lex_state = 2}, + [775] = {.lex_state = 36, .external_lex_state = 2}, + [776] = {.lex_state = 36, .external_lex_state = 2}, + [777] = {.lex_state = 36, .external_lex_state = 2}, + [778] = {.lex_state = 36, .external_lex_state = 2}, + [779] = {.lex_state = 36, .external_lex_state = 2}, + [780] = {.lex_state = 36, .external_lex_state = 2}, + [781] = {.lex_state = 36, .external_lex_state = 2}, + [782] = {.lex_state = 36, .external_lex_state = 2}, + [783] = {.lex_state = 36, .external_lex_state = 2}, + [784] = {.lex_state = 34, .external_lex_state = 2}, + [785] = {.lex_state = 35, .external_lex_state = 2}, + [786] = {.lex_state = 34, .external_lex_state = 2}, + [787] = {.lex_state = 34, .external_lex_state = 2}, + [788] = {.lex_state = 34, .external_lex_state = 2}, + [789] = {.lex_state = 34, .external_lex_state = 2}, + [790] = {.lex_state = 34, .external_lex_state = 2}, + [791] = {.lex_state = 34, .external_lex_state = 2}, + [792] = {.lex_state = 34, .external_lex_state = 2}, + [793] = {.lex_state = 34, .external_lex_state = 2}, + [794] = {.lex_state = 34, .external_lex_state = 2}, + [795] = {.lex_state = 34, .external_lex_state = 2}, + [796] = {.lex_state = 34, .external_lex_state = 2}, + [797] = {.lex_state = 34, .external_lex_state = 2}, + [798] = {.lex_state = 34, .external_lex_state = 2}, + [799] = {.lex_state = 34, .external_lex_state = 2}, + [800] = {.lex_state = 34, .external_lex_state = 2}, + [801] = {.lex_state = 34, .external_lex_state = 2}, + [802] = {.lex_state = 34, .external_lex_state = 2}, + [803] = {.lex_state = 34, .external_lex_state = 2}, + [804] = {.lex_state = 34, .external_lex_state = 2}, + [805] = {.lex_state = 34, .external_lex_state = 2}, + [806] = {.lex_state = 34, .external_lex_state = 2}, + [807] = {.lex_state = 34, .external_lex_state = 2}, + [808] = {.lex_state = 34, .external_lex_state = 2}, + [809] = {.lex_state = 34, .external_lex_state = 2}, + [810] = {.lex_state = 34, .external_lex_state = 2}, + [811] = {.lex_state = 34, .external_lex_state = 2}, + [812] = {.lex_state = 34, .external_lex_state = 2}, + [813] = {.lex_state = 34, .external_lex_state = 2}, + [814] = {.lex_state = 34, .external_lex_state = 2}, + [815] = {.lex_state = 34, .external_lex_state = 2}, + [816] = {.lex_state = 34, .external_lex_state = 2}, + [817] = {.lex_state = 34, .external_lex_state = 2}, + [818] = {.lex_state = 34, .external_lex_state = 2}, + [819] = {.lex_state = 34, .external_lex_state = 2}, + [820] = {.lex_state = 34, .external_lex_state = 2}, + [821] = {.lex_state = 34, .external_lex_state = 2}, + [822] = {.lex_state = 34, .external_lex_state = 2}, + [823] = {.lex_state = 34, .external_lex_state = 2}, + [824] = {.lex_state = 34, .external_lex_state = 2}, + [825] = {.lex_state = 34, .external_lex_state = 2}, + [826] = {.lex_state = 34, .external_lex_state = 2}, + [827] = {.lex_state = 34, .external_lex_state = 2}, + [828] = {.lex_state = 34, .external_lex_state = 2}, + [829] = {.lex_state = 34, .external_lex_state = 2}, + [830] = {.lex_state = 34, .external_lex_state = 2}, + [831] = {.lex_state = 34, .external_lex_state = 2}, + [832] = {.lex_state = 34, .external_lex_state = 2}, + [833] = {.lex_state = 34, .external_lex_state = 2}, + [834] = {.lex_state = 34, .external_lex_state = 2}, + [835] = {.lex_state = 34, .external_lex_state = 2}, + [836] = {.lex_state = 34, .external_lex_state = 2}, + [837] = {.lex_state = 34, .external_lex_state = 2}, + [838] = {.lex_state = 34, .external_lex_state = 2}, + [839] = {.lex_state = 34, .external_lex_state = 2}, + [840] = {.lex_state = 34, .external_lex_state = 2}, + [841] = {.lex_state = 34, .external_lex_state = 2}, + [842] = {.lex_state = 34, .external_lex_state = 2}, + [843] = {.lex_state = 34, .external_lex_state = 2}, + [844] = {.lex_state = 34, .external_lex_state = 2}, + [845] = {.lex_state = 34, .external_lex_state = 2}, + [846] = {.lex_state = 34, .external_lex_state = 2}, + [847] = {.lex_state = 34, .external_lex_state = 2}, + [848] = {.lex_state = 34, .external_lex_state = 2}, + [849] = {.lex_state = 34, .external_lex_state = 2}, + [850] = {.lex_state = 34, .external_lex_state = 2}, + [851] = {.lex_state = 34, .external_lex_state = 2}, + [852] = {.lex_state = 34, .external_lex_state = 2}, + [853] = {.lex_state = 34, .external_lex_state = 2}, + [854] = {.lex_state = 34, .external_lex_state = 2}, + [855] = {.lex_state = 34, .external_lex_state = 2}, + [856] = {.lex_state = 34, .external_lex_state = 2}, + [857] = {.lex_state = 34, .external_lex_state = 2}, + [858] = {.lex_state = 34, .external_lex_state = 2}, + [859] = {.lex_state = 34, .external_lex_state = 2}, + [860] = {.lex_state = 34, .external_lex_state = 2}, + [861] = {.lex_state = 34, .external_lex_state = 2}, + [862] = {.lex_state = 34, .external_lex_state = 2}, + [863] = {.lex_state = 34, .external_lex_state = 2}, + [864] = {.lex_state = 34, .external_lex_state = 2}, + [865] = {.lex_state = 34, .external_lex_state = 2}, + [866] = {.lex_state = 34, .external_lex_state = 2}, + [867] = {.lex_state = 34, .external_lex_state = 2}, + [868] = {.lex_state = 34, .external_lex_state = 2}, + [869] = {.lex_state = 34, .external_lex_state = 2}, + [870] = {.lex_state = 34, .external_lex_state = 2}, + [871] = {.lex_state = 34, .external_lex_state = 2}, + [872] = {.lex_state = 34, .external_lex_state = 2}, + [873] = {.lex_state = 34, .external_lex_state = 2}, + [874] = {.lex_state = 34, .external_lex_state = 2}, + [875] = {.lex_state = 34, .external_lex_state = 2}, + [876] = {.lex_state = 34, .external_lex_state = 2}, + [877] = {.lex_state = 34, .external_lex_state = 2}, + [878] = {.lex_state = 34, .external_lex_state = 2}, + [879] = {.lex_state = 34, .external_lex_state = 2}, + [880] = {.lex_state = 34, .external_lex_state = 2}, + [881] = {.lex_state = 34, .external_lex_state = 2}, + [882] = {.lex_state = 34, .external_lex_state = 2}, + [883] = {.lex_state = 34, .external_lex_state = 2}, + [884] = {.lex_state = 34, .external_lex_state = 2}, + [885] = {.lex_state = 34, .external_lex_state = 2}, + [886] = {.lex_state = 34, .external_lex_state = 2}, + [887] = {.lex_state = 34, .external_lex_state = 2}, + [888] = {.lex_state = 34, .external_lex_state = 2}, + [889] = {.lex_state = 34, .external_lex_state = 2}, + [890] = {.lex_state = 34, .external_lex_state = 2}, + [891] = {.lex_state = 34, .external_lex_state = 2}, + [892] = {.lex_state = 34, .external_lex_state = 2}, + [893] = {.lex_state = 34, .external_lex_state = 2}, + [894] = {.lex_state = 34, .external_lex_state = 2}, + [895] = {.lex_state = 34, .external_lex_state = 2}, + [896] = {.lex_state = 34, .external_lex_state = 2}, + [897] = {.lex_state = 34, .external_lex_state = 2}, + [898] = {.lex_state = 34, .external_lex_state = 2}, + [899] = {.lex_state = 34, .external_lex_state = 2}, + [900] = {.lex_state = 34, .external_lex_state = 2}, + [901] = {.lex_state = 34, .external_lex_state = 2}, + [902] = {.lex_state = 34, .external_lex_state = 2}, + [903] = {.lex_state = 34, .external_lex_state = 2}, + [904] = {.lex_state = 34, .external_lex_state = 2}, + [905] = {.lex_state = 34, .external_lex_state = 2}, + [906] = {.lex_state = 34, .external_lex_state = 2}, + [907] = {.lex_state = 34, .external_lex_state = 2}, + [908] = {.lex_state = 34, .external_lex_state = 2}, + [909] = {.lex_state = 34, .external_lex_state = 2}, + [910] = {.lex_state = 34, .external_lex_state = 2}, + [911] = {.lex_state = 34, .external_lex_state = 2}, + [912] = {.lex_state = 34, .external_lex_state = 2}, + [913] = {.lex_state = 34, .external_lex_state = 2}, + [914] = {.lex_state = 34, .external_lex_state = 2}, + [915] = {.lex_state = 34, .external_lex_state = 2}, + [916] = {.lex_state = 34, .external_lex_state = 2}, + [917] = {.lex_state = 34, .external_lex_state = 2}, + [918] = {.lex_state = 34, .external_lex_state = 2}, + [919] = {.lex_state = 34, .external_lex_state = 2}, + [920] = {.lex_state = 34, .external_lex_state = 2}, + [921] = {.lex_state = 34, .external_lex_state = 2}, + [922] = {.lex_state = 34, .external_lex_state = 2}, + [923] = {.lex_state = 34, .external_lex_state = 2}, + [924] = {.lex_state = 34, .external_lex_state = 2}, + [925] = {.lex_state = 34, .external_lex_state = 2}, + [926] = {.lex_state = 34, .external_lex_state = 2}, + [927] = {.lex_state = 34, .external_lex_state = 2}, + [928] = {.lex_state = 34, .external_lex_state = 2}, + [929] = {.lex_state = 34, .external_lex_state = 2}, + [930] = {.lex_state = 34, .external_lex_state = 2}, + [931] = {.lex_state = 34, .external_lex_state = 2}, + [932] = {.lex_state = 34, .external_lex_state = 2}, + [933] = {.lex_state = 34, .external_lex_state = 2}, + [934] = {.lex_state = 34, .external_lex_state = 2}, + [935] = {.lex_state = 34, .external_lex_state = 2}, + [936] = {.lex_state = 34, .external_lex_state = 2}, + [937] = {.lex_state = 34, .external_lex_state = 2}, + [938] = {.lex_state = 34, .external_lex_state = 2}, + [939] = {.lex_state = 34, .external_lex_state = 2}, + [940] = {.lex_state = 34, .external_lex_state = 2}, + [941] = {.lex_state = 98, .external_lex_state = 2}, + [942] = {.lex_state = 98, .external_lex_state = 2}, + [943] = {.lex_state = 950, .external_lex_state = 2}, + [944] = {.lex_state = 34, .external_lex_state = 2}, + [945] = {.lex_state = 34, .external_lex_state = 2}, + [946] = {.lex_state = 34, .external_lex_state = 2}, + [947] = {.lex_state = 34, .external_lex_state = 2}, + [948] = {.lex_state = 34, .external_lex_state = 2}, + [949] = {.lex_state = 34, .external_lex_state = 2}, + [950] = {.lex_state = 34, .external_lex_state = 2}, + [951] = {.lex_state = 34, .external_lex_state = 2}, + [952] = {.lex_state = 34, .external_lex_state = 2}, + [953] = {.lex_state = 34, .external_lex_state = 2}, + [954] = {.lex_state = 34, .external_lex_state = 2}, + [955] = {.lex_state = 34, .external_lex_state = 2}, + [956] = {.lex_state = 34, .external_lex_state = 2}, + [957] = {.lex_state = 34, .external_lex_state = 2}, + [958] = {.lex_state = 34, .external_lex_state = 2}, + [959] = {.lex_state = 34, .external_lex_state = 2}, + [960] = {.lex_state = 34, .external_lex_state = 2}, + [961] = {.lex_state = 34, .external_lex_state = 2}, + [962] = {.lex_state = 34, .external_lex_state = 2}, + [963] = {.lex_state = 34, .external_lex_state = 2}, + [964] = {.lex_state = 34, .external_lex_state = 2}, + [965] = {.lex_state = 34, .external_lex_state = 2}, + [966] = {.lex_state = 34, .external_lex_state = 2}, + [967] = {.lex_state = 34, .external_lex_state = 2}, + [968] = {.lex_state = 34, .external_lex_state = 2}, + [969] = {.lex_state = 34, .external_lex_state = 2}, + [970] = {.lex_state = 34, .external_lex_state = 2}, + [971] = {.lex_state = 34, .external_lex_state = 2}, + [972] = {.lex_state = 34, .external_lex_state = 2}, + [973] = {.lex_state = 34, .external_lex_state = 2}, + [974] = {.lex_state = 34, .external_lex_state = 2}, + [975] = {.lex_state = 34, .external_lex_state = 2}, + [976] = {.lex_state = 34, .external_lex_state = 2}, + [977] = {.lex_state = 34, .external_lex_state = 2}, + [978] = {.lex_state = 34, .external_lex_state = 2}, + [979] = {.lex_state = 34, .external_lex_state = 2}, + [980] = {.lex_state = 34, .external_lex_state = 2}, + [981] = {.lex_state = 34, .external_lex_state = 2}, + [982] = {.lex_state = 34, .external_lex_state = 2}, + [983] = {.lex_state = 34, .external_lex_state = 2}, + [984] = {.lex_state = 34, .external_lex_state = 2}, + [985] = {.lex_state = 34, .external_lex_state = 2}, + [986] = {.lex_state = 34, .external_lex_state = 2}, + [987] = {.lex_state = 34, .external_lex_state = 2}, + [988] = {.lex_state = 34, .external_lex_state = 2}, + [989] = {.lex_state = 34, .external_lex_state = 2}, + [990] = {.lex_state = 34, .external_lex_state = 2}, + [991] = {.lex_state = 950, .external_lex_state = 2}, + [992] = {.lex_state = 34, .external_lex_state = 2}, + [993] = {.lex_state = 34, .external_lex_state = 2}, + [994] = {.lex_state = 34, .external_lex_state = 2}, + [995] = {.lex_state = 34, .external_lex_state = 2}, + [996] = {.lex_state = 34, .external_lex_state = 2}, + [997] = {.lex_state = 34, .external_lex_state = 2}, + [998] = {.lex_state = 34, .external_lex_state = 2}, + [999] = {.lex_state = 34, .external_lex_state = 2}, + [1000] = {.lex_state = 34, .external_lex_state = 2}, + [1001] = {.lex_state = 34, .external_lex_state = 2}, + [1002] = {.lex_state = 34, .external_lex_state = 2}, + [1003] = {.lex_state = 34, .external_lex_state = 2}, + [1004] = {.lex_state = 34, .external_lex_state = 2}, + [1005] = {.lex_state = 34, .external_lex_state = 2}, + [1006] = {.lex_state = 34, .external_lex_state = 2}, + [1007] = {.lex_state = 34, .external_lex_state = 2}, + [1008] = {.lex_state = 34, .external_lex_state = 2}, + [1009] = {.lex_state = 34, .external_lex_state = 2}, + [1010] = {.lex_state = 34, .external_lex_state = 2}, + [1011] = {.lex_state = 34, .external_lex_state = 2}, + [1012] = {.lex_state = 34, .external_lex_state = 2}, + [1013] = {.lex_state = 34, .external_lex_state = 2}, + [1014] = {.lex_state = 34, .external_lex_state = 2}, + [1015] = {.lex_state = 34, .external_lex_state = 2}, + [1016] = {.lex_state = 34, .external_lex_state = 2}, + [1017] = {.lex_state = 34, .external_lex_state = 2}, + [1018] = {.lex_state = 34, .external_lex_state = 2}, + [1019] = {.lex_state = 34, .external_lex_state = 2}, + [1020] = {.lex_state = 34, .external_lex_state = 2}, + [1021] = {.lex_state = 34, .external_lex_state = 2}, + [1022] = {.lex_state = 34, .external_lex_state = 2}, + [1023] = {.lex_state = 34, .external_lex_state = 2}, + [1024] = {.lex_state = 34, .external_lex_state = 2}, + [1025] = {.lex_state = 34, .external_lex_state = 2}, + [1026] = {.lex_state = 34, .external_lex_state = 2}, + [1027] = {.lex_state = 34, .external_lex_state = 2}, + [1028] = {.lex_state = 34, .external_lex_state = 2}, + [1029] = {.lex_state = 34, .external_lex_state = 2}, + [1030] = {.lex_state = 34, .external_lex_state = 2}, + [1031] = {.lex_state = 34, .external_lex_state = 2}, + [1032] = {.lex_state = 34, .external_lex_state = 2}, + [1033] = {.lex_state = 34, .external_lex_state = 2}, + [1034] = {.lex_state = 34, .external_lex_state = 2}, + [1035] = {.lex_state = 34, .external_lex_state = 2}, + [1036] = {.lex_state = 34, .external_lex_state = 2}, + [1037] = {.lex_state = 34, .external_lex_state = 2}, + [1038] = {.lex_state = 34, .external_lex_state = 2}, + [1039] = {.lex_state = 34, .external_lex_state = 2}, + [1040] = {.lex_state = 34, .external_lex_state = 2}, + [1041] = {.lex_state = 34, .external_lex_state = 2}, + [1042] = {.lex_state = 37, .external_lex_state = 2}, + [1043] = {.lex_state = 37, .external_lex_state = 2}, + [1044] = {.lex_state = 37, .external_lex_state = 2}, + [1045] = {.lex_state = 41, .external_lex_state = 2}, + [1046] = {.lex_state = 41, .external_lex_state = 2}, + [1047] = {.lex_state = 37, .external_lex_state = 2}, + [1048] = {.lex_state = 41, .external_lex_state = 2}, + [1049] = {.lex_state = 41, .external_lex_state = 2}, + [1050] = {.lex_state = 41, .external_lex_state = 2}, + [1051] = {.lex_state = 41, .external_lex_state = 2}, + [1052] = {.lex_state = 41, .external_lex_state = 2}, + [1053] = {.lex_state = 41, .external_lex_state = 2}, + [1054] = {.lex_state = 213, .external_lex_state = 2}, + [1055] = {.lex_state = 213, .external_lex_state = 2}, + [1056] = {.lex_state = 213, .external_lex_state = 2}, + [1057] = {.lex_state = 213, .external_lex_state = 2}, + [1058] = {.lex_state = 213, .external_lex_state = 2}, + [1059] = {.lex_state = 213, .external_lex_state = 2}, + [1060] = {.lex_state = 37, .external_lex_state = 2}, + [1061] = {.lex_state = 37, .external_lex_state = 2}, + [1062] = {.lex_state = 31, .external_lex_state = 2}, + [1063] = {.lex_state = 31, .external_lex_state = 2}, + [1064] = {.lex_state = 209, .external_lex_state = 2}, + [1065] = {.lex_state = 41, .external_lex_state = 2}, + [1066] = {.lex_state = 41, .external_lex_state = 2}, + [1067] = {.lex_state = 41, .external_lex_state = 2}, + [1068] = {.lex_state = 41, .external_lex_state = 2}, + [1069] = {.lex_state = 41, .external_lex_state = 2}, + [1070] = {.lex_state = 41, .external_lex_state = 2}, + [1071] = {.lex_state = 41, .external_lex_state = 2}, + [1072] = {.lex_state = 41, .external_lex_state = 2}, + [1073] = {.lex_state = 41, .external_lex_state = 2}, + [1074] = {.lex_state = 209, .external_lex_state = 2}, + [1075] = {.lex_state = 201, .external_lex_state = 2}, + [1076] = {.lex_state = 31, .external_lex_state = 2}, + [1077] = {.lex_state = 31, .external_lex_state = 2}, + [1078] = {.lex_state = 201, .external_lex_state = 2}, + [1079] = {.lex_state = 33, .external_lex_state = 2}, + [1080] = {.lex_state = 35, .external_lex_state = 2}, + [1081] = {.lex_state = 31, .external_lex_state = 2}, + [1082] = {.lex_state = 35, .external_lex_state = 2}, + [1083] = {.lex_state = 933, .external_lex_state = 2}, + [1084] = {.lex_state = 947, .external_lex_state = 2}, + [1085] = {.lex_state = 932, .external_lex_state = 2}, + [1086] = {.lex_state = 31, .external_lex_state = 2}, + [1087] = {.lex_state = 943, .external_lex_state = 2}, + [1088] = {.lex_state = 934, .external_lex_state = 2}, + [1089] = {.lex_state = 933, .external_lex_state = 2}, + [1090] = {.lex_state = 33, .external_lex_state = 2}, + [1091] = {.lex_state = 932, .external_lex_state = 2}, + [1092] = {.lex_state = 102}, + [1093] = {.lex_state = 121}, + [1094] = {.lex_state = 35, .external_lex_state = 2}, + [1095] = {.lex_state = 102}, + [1096] = {.lex_state = 102}, + [1097] = {.lex_state = 35, .external_lex_state = 2}, + [1098] = {.lex_state = 35, .external_lex_state = 2}, + [1099] = {.lex_state = 936, .external_lex_state = 2}, + [1100] = {.lex_state = 974, .external_lex_state = 2}, + [1101] = {.lex_state = 946, .external_lex_state = 2}, + [1102] = {.lex_state = 37, .external_lex_state = 2}, + [1103] = {.lex_state = 970, .external_lex_state = 2}, + [1104] = {.lex_state = 936, .external_lex_state = 2}, + [1105] = {.lex_state = 35, .external_lex_state = 2}, + [1106] = {.lex_state = 35, .external_lex_state = 2}, + [1107] = {.lex_state = 35, .external_lex_state = 2}, + [1108] = {.lex_state = 990}, + [1109] = {.lex_state = 35, .external_lex_state = 2}, + [1110] = {.lex_state = 35, .external_lex_state = 2}, + [1111] = {.lex_state = 35, .external_lex_state = 2}, + [1112] = {.lex_state = 35, .external_lex_state = 2}, + [1113] = {.lex_state = 35, .external_lex_state = 2}, + [1114] = {.lex_state = 932, .external_lex_state = 2}, + [1115] = {.lex_state = 35, .external_lex_state = 2}, + [1116] = {.lex_state = 35, .external_lex_state = 2}, + [1117] = {.lex_state = 35, .external_lex_state = 2}, + [1118] = {.lex_state = 35, .external_lex_state = 2}, + [1119] = {.lex_state = 35, .external_lex_state = 2}, + [1120] = {.lex_state = 35, .external_lex_state = 2}, + [1121] = {.lex_state = 35, .external_lex_state = 2}, + [1122] = {.lex_state = 35, .external_lex_state = 2}, + [1123] = {.lex_state = 35, .external_lex_state = 2}, + [1124] = {.lex_state = 934, .external_lex_state = 2}, + [1125] = {.lex_state = 35, .external_lex_state = 2}, + [1126] = {.lex_state = 35, .external_lex_state = 2}, + [1127] = {.lex_state = 35, .external_lex_state = 2}, + [1128] = {.lex_state = 35, .external_lex_state = 2}, + [1129] = {.lex_state = 35, .external_lex_state = 2}, + [1130] = {.lex_state = 35, .external_lex_state = 2}, + [1131] = {.lex_state = 35, .external_lex_state = 2}, + [1132] = {.lex_state = 35, .external_lex_state = 2}, + [1133] = {.lex_state = 35, .external_lex_state = 2}, + [1134] = {.lex_state = 35, .external_lex_state = 2}, + [1135] = {.lex_state = 35, .external_lex_state = 2}, + [1136] = {.lex_state = 35, .external_lex_state = 2}, + [1137] = {.lex_state = 35, .external_lex_state = 2}, + [1138] = {.lex_state = 35, .external_lex_state = 2}, + [1139] = {.lex_state = 35, .external_lex_state = 2}, + [1140] = {.lex_state = 35, .external_lex_state = 2}, + [1141] = {.lex_state = 35, .external_lex_state = 2}, + [1142] = {.lex_state = 35, .external_lex_state = 2}, + [1143] = {.lex_state = 946, .external_lex_state = 2}, + [1144] = {.lex_state = 35, .external_lex_state = 2}, + [1145] = {.lex_state = 35, .external_lex_state = 2}, + [1146] = {.lex_state = 35, .external_lex_state = 2}, + [1147] = {.lex_state = 35, .external_lex_state = 2}, + [1148] = {.lex_state = 37, .external_lex_state = 2}, + [1149] = {.lex_state = 35, .external_lex_state = 2}, + [1150] = {.lex_state = 35, .external_lex_state = 2}, + [1151] = {.lex_state = 35, .external_lex_state = 2}, + [1152] = {.lex_state = 35, .external_lex_state = 2}, + [1153] = {.lex_state = 35, .external_lex_state = 2}, + [1154] = {.lex_state = 35, .external_lex_state = 2}, + [1155] = {.lex_state = 35, .external_lex_state = 2}, + [1156] = {.lex_state = 35, .external_lex_state = 2}, + [1157] = {.lex_state = 35, .external_lex_state = 2}, + [1158] = {.lex_state = 35, .external_lex_state = 2}, + [1159] = {.lex_state = 35, .external_lex_state = 2}, + [1160] = {.lex_state = 946, .external_lex_state = 2}, + [1161] = {.lex_state = 932, .external_lex_state = 2}, + [1162] = {.lex_state = 946, .external_lex_state = 2}, + [1163] = {.lex_state = 943, .external_lex_state = 2}, + [1164] = {.lex_state = 35, .external_lex_state = 2}, + [1165] = {.lex_state = 937, .external_lex_state = 2}, + [1166] = {.lex_state = 947, .external_lex_state = 2}, + [1167] = {.lex_state = 35, .external_lex_state = 2}, + [1168] = {.lex_state = 35, .external_lex_state = 2}, + [1169] = {.lex_state = 35, .external_lex_state = 2}, + [1170] = {.lex_state = 35, .external_lex_state = 2}, + [1171] = {.lex_state = 102}, + [1172] = {.lex_state = 937, .external_lex_state = 2}, + [1173] = {.lex_state = 936, .external_lex_state = 2}, + [1174] = {.lex_state = 937, .external_lex_state = 2}, + [1175] = {.lex_state = 937, .external_lex_state = 2}, + [1176] = {.lex_state = 971, .external_lex_state = 2}, + [1177] = {.lex_state = 102}, + [1178] = {.lex_state = 965, .external_lex_state = 2}, + [1179] = {.lex_state = 944, .external_lex_state = 2}, + [1180] = {.lex_state = 974, .external_lex_state = 2}, + [1181] = {.lex_state = 970, .external_lex_state = 2}, + [1182] = {.lex_state = 936, .external_lex_state = 2}, + [1183] = {.lex_state = 965, .external_lex_state = 2}, + [1184] = {.lex_state = 965, .external_lex_state = 2}, + [1185] = {.lex_state = 937, .external_lex_state = 2}, + [1186] = {.lex_state = 937, .external_lex_state = 2}, + [1187] = {.lex_state = 935, .external_lex_state = 2}, + [1188] = {.lex_state = 102}, + [1189] = {.lex_state = 102}, + [1190] = {.lex_state = 102}, + [1191] = {.lex_state = 102}, + [1192] = {.lex_state = 121}, + [1193] = {.lex_state = 990}, + [1194] = {.lex_state = 990}, + [1195] = {.lex_state = 121}, + [1196] = {.lex_state = 971, .external_lex_state = 2}, + [1197] = {.lex_state = 946, .external_lex_state = 2}, + [1198] = {.lex_state = 37, .external_lex_state = 2}, + [1199] = {.lex_state = 946, .external_lex_state = 2}, + [1200] = {.lex_state = 946, .external_lex_state = 2}, + [1201] = {.lex_state = 946, .external_lex_state = 2}, + [1202] = {.lex_state = 990}, + [1203] = {.lex_state = 965, .external_lex_state = 2}, + [1204] = {.lex_state = 121}, + [1205] = {.lex_state = 121}, + [1206] = {.lex_state = 35, .external_lex_state = 2}, + [1207] = {.lex_state = 102}, + [1208] = {.lex_state = 965, .external_lex_state = 2}, + [1209] = {.lex_state = 937, .external_lex_state = 2}, + [1210] = {.lex_state = 121}, + [1211] = {.lex_state = 965, .external_lex_state = 2}, + [1212] = {.lex_state = 937, .external_lex_state = 2}, + [1213] = {.lex_state = 938, .external_lex_state = 2}, + [1214] = {.lex_state = 972, .external_lex_state = 2}, + [1215] = {.lex_state = 972, .external_lex_state = 2}, + [1216] = {.lex_state = 102}, + [1217] = {.lex_state = 990}, + [1218] = {.lex_state = 990}, + [1219] = {.lex_state = 121}, + [1220] = {.lex_state = 972, .external_lex_state = 2}, + [1221] = {.lex_state = 971, .external_lex_state = 2}, + [1222] = {.lex_state = 121}, + [1223] = {.lex_state = 965, .external_lex_state = 2}, [1224] = {.lex_state = 990}, [1225] = {.lex_state = 990}, - [1226] = {.lex_state = 990}, - [1227] = {.lex_state = 990}, - [1228] = {.lex_state = 990}, - [1229] = {.lex_state = 931}, - [1230] = {.lex_state = 962}, - [1231] = {.lex_state = 962}, - [1232] = {.lex_state = 42}, - [1233] = {.lex_state = 969}, - [1234] = {.lex_state = 962}, - [1235] = {.lex_state = 968}, - [1236] = {.lex_state = 933}, - [1237] = {.lex_state = 962}, - [1238] = {.lex_state = 934}, + [1226] = {.lex_state = 937, .external_lex_state = 2}, + [1227] = {.lex_state = 121}, + [1228] = {.lex_state = 938, .external_lex_state = 2}, + [1229] = {.lex_state = 990}, + [1230] = {.lex_state = 990}, + [1231] = {.lex_state = 944, .external_lex_state = 2}, + [1232] = {.lex_state = 965, .external_lex_state = 2}, + [1233] = {.lex_state = 102}, + [1234] = {.lex_state = 971, .external_lex_state = 2}, + [1235] = {.lex_state = 935, .external_lex_state = 2}, + [1236] = {.lex_state = 972, .external_lex_state = 2}, + [1237] = {.lex_state = 990}, + [1238] = {.lex_state = 972, .external_lex_state = 2}, [1239] = {.lex_state = 990}, - [1240] = {.lex_state = 990}, - [1241] = {.lex_state = 990}, - [1242] = {.lex_state = 934}, - [1243] = {.lex_state = 935}, - [1244] = {.lex_state = 969}, - [1245] = {.lex_state = 961}, - [1246] = {.lex_state = 990}, - [1247] = {.lex_state = 935}, - [1248] = {.lex_state = 935}, - [1249] = {.lex_state = 960}, - [1250] = {.lex_state = 969}, - [1251] = {.lex_state = 935}, - [1252] = {.lex_state = 40}, - [1253] = {.lex_state = 102}, - [1254] = {.lex_state = 118}, - [1255] = {.lex_state = 960}, - [1256] = {.lex_state = 990}, - [1257] = {.lex_state = 990}, - [1258] = {.lex_state = 962}, - [1259] = {.lex_state = 960}, - [1260] = {.lex_state = 959}, - [1261] = {.lex_state = 960}, - [1262] = {.lex_state = 969}, - [1263] = {.lex_state = 103}, - [1264] = {.lex_state = 935}, - [1265] = {.lex_state = 960}, - [1266] = {.lex_state = 962}, - [1267] = {.lex_state = 99}, - [1268] = {.lex_state = 990}, - [1269] = {.lex_state = 969}, - [1270] = {.lex_state = 935}, - [1271] = {.lex_state = 992}, - [1272] = {.lex_state = 998}, - [1273] = {.lex_state = 934}, - [1274] = {.lex_state = 969}, - [1275] = {.lex_state = 990}, - [1276] = {.lex_state = 99}, - [1277] = {.lex_state = 119}, - [1278] = {.lex_state = 121}, - [1279] = {.lex_state = 104}, - [1280] = {.lex_state = 960}, - [1281] = {.lex_state = 965}, - [1282] = {.lex_state = 961}, - [1283] = {.lex_state = 960}, - [1284] = {.lex_state = 960}, - [1285] = {.lex_state = 960}, - [1286] = {.lex_state = 960}, - [1287] = {.lex_state = 1006}, - [1288] = {.lex_state = 104}, - [1289] = {.lex_state = 936}, - [1290] = {.lex_state = 1002}, - [1291] = {.lex_state = 1002}, - [1292] = {.lex_state = 962}, - [1293] = {.lex_state = 935}, - [1294] = {.lex_state = 962}, - [1295] = {.lex_state = 962}, - [1296] = {.lex_state = 941}, - [1297] = {.lex_state = 935}, - [1298] = {.lex_state = 132}, - [1299] = {.lex_state = 935}, - [1300] = {.lex_state = 957}, - [1301] = {.lex_state = 957}, - [1302] = {.lex_state = 935}, - [1303] = {.lex_state = 118}, - [1304] = {.lex_state = 935}, - [1305] = {.lex_state = 1035}, - [1306] = {.lex_state = 99}, - [1307] = {.lex_state = 134}, - [1308] = {.lex_state = 965}, - [1309] = {.lex_state = 965}, - [1310] = {.lex_state = 965}, - [1311] = {.lex_state = 965}, - [1312] = {.lex_state = 965}, - [1313] = {.lex_state = 965}, - [1314] = {.lex_state = 965}, - [1315] = {.lex_state = 965}, - [1316] = {.lex_state = 965}, - [1317] = {.lex_state = 965}, - [1318] = {.lex_state = 965}, - [1319] = {.lex_state = 965}, - [1320] = {.lex_state = 965}, - [1321] = {.lex_state = 965}, - [1322] = {.lex_state = 965}, - [1323] = {.lex_state = 965}, - [1324] = {.lex_state = 965}, - [1325] = {.lex_state = 965}, - [1326] = {.lex_state = 965}, - [1327] = {.lex_state = 965}, - [1328] = {.lex_state = 992}, - [1329] = {.lex_state = 965}, - [1330] = {.lex_state = 990}, - [1331] = {.lex_state = 998}, - [1332] = {.lex_state = 965}, - [1333] = {.lex_state = 935}, - [1334] = {.lex_state = 959}, + [1240] = {.lex_state = 937, .external_lex_state = 2}, + [1241] = {.lex_state = 939, .external_lex_state = 2}, + [1242] = {.lex_state = 939, .external_lex_state = 2}, + [1243] = {.lex_state = 990}, + [1244] = {.lex_state = 990}, + [1245] = {.lex_state = 990}, + [1246] = {.lex_state = 972, .external_lex_state = 2}, + [1247] = {.lex_state = 990}, + [1248] = {.lex_state = 990}, + [1249] = {.lex_state = 990}, + [1250] = {.lex_state = 939, .external_lex_state = 2}, + [1251] = {.lex_state = 965, .external_lex_state = 2}, + [1252] = {.lex_state = 963, .external_lex_state = 2}, + [1253] = {.lex_state = 963, .external_lex_state = 2}, + [1254] = {.lex_state = 963, .external_lex_state = 2}, + [1255] = {.lex_state = 939, .external_lex_state = 2}, + [1256] = {.lex_state = 972, .external_lex_state = 2}, + [1257] = {.lex_state = 972, .external_lex_state = 2}, + [1258] = {.lex_state = 121}, + [1259] = {.lex_state = 121}, + [1260] = {.lex_state = 938, .external_lex_state = 2}, + [1261] = {.lex_state = 938, .external_lex_state = 2}, + [1262] = {.lex_state = 972, .external_lex_state = 2}, + [1263] = {.lex_state = 990}, + [1264] = {.lex_state = 963, .external_lex_state = 2}, + [1265] = {.lex_state = 964, .external_lex_state = 2}, + [1266] = {.lex_state = 990}, + [1267] = {.lex_state = 939, .external_lex_state = 2}, + [1268] = {.lex_state = 121}, + [1269] = {.lex_state = 972, .external_lex_state = 2}, + [1270] = {.lex_state = 963, .external_lex_state = 2}, + [1271] = {.lex_state = 939, .external_lex_state = 2}, + [1272] = {.lex_state = 963, .external_lex_state = 2}, + [1273] = {.lex_state = 990}, + [1274] = {.lex_state = 965, .external_lex_state = 2}, + [1275] = {.lex_state = 102}, + [1276] = {.lex_state = 962, .external_lex_state = 2}, + [1277] = {.lex_state = 963, .external_lex_state = 2}, + [1278] = {.lex_state = 963, .external_lex_state = 2}, + [1279] = {.lex_state = 939, .external_lex_state = 2}, + [1280] = {.lex_state = 939, .external_lex_state = 2}, + [1281] = {.lex_state = 940, .external_lex_state = 2}, + [1282] = {.lex_state = 993}, + [1283] = {.lex_state = 999}, + [1284] = {.lex_state = 939, .external_lex_state = 2}, + [1285] = {.lex_state = 963, .external_lex_state = 2}, + [1286] = {.lex_state = 963, .external_lex_state = 2}, + [1287] = {.lex_state = 963, .external_lex_state = 2}, + [1288] = {.lex_state = 965, .external_lex_state = 2}, + [1289] = {.lex_state = 965, .external_lex_state = 2}, + [1290] = {.lex_state = 965, .external_lex_state = 2}, + [1291] = {.lex_state = 945, .external_lex_state = 2}, + [1292] = {.lex_state = 939, .external_lex_state = 2}, + [1293] = {.lex_state = 960, .external_lex_state = 2}, + [1294] = {.lex_state = 990}, + [1295] = {.lex_state = 960, .external_lex_state = 2}, + [1296] = {.lex_state = 990}, + [1297] = {.lex_state = 968, .external_lex_state = 2}, + [1298] = {.lex_state = 968, .external_lex_state = 2}, + [1299] = {.lex_state = 990}, + [1300] = {.lex_state = 939, .external_lex_state = 2}, + [1301] = {.lex_state = 963, .external_lex_state = 2}, + [1302] = {.lex_state = 968, .external_lex_state = 2}, + [1303] = {.lex_state = 968, .external_lex_state = 2}, + [1304] = {.lex_state = 968, .external_lex_state = 2}, + [1305] = {.lex_state = 968, .external_lex_state = 2}, + [1306] = {.lex_state = 968, .external_lex_state = 2}, + [1307] = {.lex_state = 968, .external_lex_state = 2}, + [1308] = {.lex_state = 968, .external_lex_state = 2}, + [1309] = {.lex_state = 968, .external_lex_state = 2}, + [1310] = {.lex_state = 968, .external_lex_state = 2}, + [1311] = {.lex_state = 968, .external_lex_state = 2}, + [1312] = {.lex_state = 968, .external_lex_state = 2}, + [1313] = {.lex_state = 968, .external_lex_state = 2}, + [1314] = {.lex_state = 968, .external_lex_state = 2}, + [1315] = {.lex_state = 939, .external_lex_state = 2}, + [1316] = {.lex_state = 968, .external_lex_state = 2}, + [1317] = {.lex_state = 968, .external_lex_state = 2}, + [1318] = {.lex_state = 968, .external_lex_state = 2}, + [1319] = {.lex_state = 968, .external_lex_state = 2}, + [1320] = {.lex_state = 990}, + [1321] = {.lex_state = 968, .external_lex_state = 2}, + [1322] = {.lex_state = 968, .external_lex_state = 2}, + [1323] = {.lex_state = 102}, + [1324] = {.lex_state = 990}, + [1325] = {.lex_state = 990}, + [1326] = {.lex_state = 121}, + [1327] = {.lex_state = 962, .external_lex_state = 2}, + [1328] = {.lex_state = 105}, + [1329] = {.lex_state = 106}, + [1330] = {.lex_state = 968, .external_lex_state = 2}, + [1331] = {.lex_state = 964, .external_lex_state = 2}, + [1332] = {.lex_state = 968, .external_lex_state = 2}, + [1333] = {.lex_state = 968, .external_lex_state = 2}, + [1334] = {.lex_state = 968, .external_lex_state = 2}, [1335] = {.lex_state = 1033}, - [1336] = {.lex_state = 123}, - [1337] = {.lex_state = 965}, - [1338] = {.lex_state = 965}, - [1339] = {.lex_state = 105}, - [1340] = {.lex_state = 937}, - [1341] = {.lex_state = 937}, - [1342] = {.lex_state = 105}, - [1343] = {.lex_state = 1006}, - [1344] = {.lex_state = 1006}, - [1345] = {.lex_state = 1006}, - [1346] = {.lex_state = 1006}, - [1347] = {.lex_state = 965}, - [1348] = {.lex_state = 1035}, - [1349] = {.lex_state = 965}, - [1350] = {.lex_state = 990}, - [1351] = {.lex_state = 990}, - [1352] = {.lex_state = 958}, - [1353] = {.lex_state = 958}, - [1354] = {.lex_state = 958}, - [1355] = {.lex_state = 958}, - [1356] = {.lex_state = 958}, - [1357] = {.lex_state = 958}, - [1358] = {.lex_state = 958}, - [1359] = {.lex_state = 105}, - [1360] = {.lex_state = 965}, - [1361] = {.lex_state = 1033}, - [1362] = {.lex_state = 957}, - [1363] = {.lex_state = 1037}, - [1364] = {.lex_state = 958}, - [1365] = {.lex_state = 136}, - [1366] = {.lex_state = 936}, - [1367] = {.lex_state = 1037}, - [1368] = {.lex_state = 965}, - [1369] = {.lex_state = 965}, - [1370] = {.lex_state = 958}, - [1371] = {.lex_state = 100}, - [1372] = {.lex_state = 965}, - [1373] = {.lex_state = 136}, - [1374] = {.lex_state = 965}, - [1375] = {.lex_state = 100}, - [1376] = {.lex_state = 962}, - [1377] = {.lex_state = 965}, - [1378] = {.lex_state = 123}, - [1379] = {.lex_state = 962}, - [1380] = {.lex_state = 962}, - [1381] = {.lex_state = 118}, - [1382] = {.lex_state = 105}, - [1383] = {.lex_state = 965}, - [1384] = {.lex_state = 1002}, - [1385] = {.lex_state = 118}, - [1386] = {.lex_state = 1006}, - [1387] = {.lex_state = 958}, - [1388] = {.lex_state = 1002}, - [1389] = {.lex_state = 958}, - [1390] = {.lex_state = 941}, - [1391] = {.lex_state = 958}, - [1392] = {.lex_state = 965}, - [1393] = {.lex_state = 965}, - [1394] = {.lex_state = 965}, - [1395] = {.lex_state = 958}, - [1396] = {.lex_state = 965}, - [1397] = {.lex_state = 965}, - [1398] = {.lex_state = 965}, - [1399] = {.lex_state = 965}, - [1400] = {.lex_state = 965}, - [1401] = {.lex_state = 958}, - [1402] = {.lex_state = 125}, - [1403] = {.lex_state = 957}, - [1404] = {.lex_state = 965}, - [1405] = {.lex_state = 965}, - [1406] = {.lex_state = 965}, - [1407] = {.lex_state = 965}, - [1408] = {.lex_state = 965}, - [1409] = {.lex_state = 965}, - [1410] = {.lex_state = 958}, - [1411] = {.lex_state = 938}, - [1412] = {.lex_state = 927}, - [1413] = {.lex_state = 927}, - [1414] = {.lex_state = 1039}, - [1415] = {.lex_state = 101}, - [1416] = {.lex_state = 937}, - [1417] = {.lex_state = 71}, - [1418] = {.lex_state = 101}, - [1419] = {.lex_state = 1039}, - [1420] = {.lex_state = 138}, - [1421] = {.lex_state = 1037}, - [1422] = {.lex_state = 71}, - [1423] = {.lex_state = 938}, - [1424] = {.lex_state = 71}, - [1425] = {.lex_state = 1039}, - [1426] = {.lex_state = 937}, - [1427] = {.lex_state = 1039}, - [1428] = {.lex_state = 958}, - [1429] = {.lex_state = 71}, - [1430] = {.lex_state = 958}, - [1431] = {.lex_state = 958}, - [1432] = {.lex_state = 125}, - [1433] = {.lex_state = 990}, - [1434] = {.lex_state = 138}, - [1435] = {.lex_state = 938}, - [1436] = {.lex_state = 105}, - [1437] = {.lex_state = 125}, - [1438] = {.lex_state = 966}, - [1439] = {.lex_state = 958}, - [1440] = {.lex_state = 958}, - [1441] = {.lex_state = 138}, - [1442] = {.lex_state = 938}, - [1443] = {.lex_state = 958}, - [1444] = {.lex_state = 965}, - [1445] = {.lex_state = 71}, - [1446] = {.lex_state = 71}, - [1447] = {.lex_state = 958}, - [1448] = {.lex_state = 963}, - [1449] = {.lex_state = 978}, - [1450] = {.lex_state = 963}, - [1451] = {.lex_state = 963}, - [1452] = {.lex_state = 125}, - [1453] = {.lex_state = 958}, - [1454] = {.lex_state = 1037}, - [1455] = {.lex_state = 958}, - [1456] = {.lex_state = 938}, - [1457] = {.lex_state = 938}, - [1458] = {.lex_state = 1006}, - [1459] = {.lex_state = 125}, - [1460] = {.lex_state = 950}, - [1461] = {.lex_state = 101}, - [1462] = {.lex_state = 138}, - [1463] = {.lex_state = 938}, - [1464] = {.lex_state = 1006}, - [1465] = {.lex_state = 1039}, - [1466] = {.lex_state = 963}, - [1467] = {.lex_state = 958}, - [1468] = {.lex_state = 958}, - [1469] = {.lex_state = 1006}, - [1470] = {.lex_state = 1027}, - [1471] = {.lex_state = 1027}, - [1472] = {.lex_state = 958}, - [1473] = {.lex_state = 938}, - [1474] = {.lex_state = 1006}, - [1475] = {.lex_state = 978}, - [1476] = {.lex_state = 958}, - [1477] = {.lex_state = 963}, - [1478] = {.lex_state = 927}, - [1479] = {.lex_state = 927}, - [1480] = {.lex_state = 938}, - [1481] = {.lex_state = 978}, - [1482] = {.lex_state = 956}, - [1483] = {.lex_state = 927}, - [1484] = {.lex_state = 990}, - [1485] = {.lex_state = 71}, - [1486] = {.lex_state = 71}, - [1487] = {.lex_state = 958}, - [1488] = {.lex_state = 71}, - [1489] = {.lex_state = 71}, - [1490] = {.lex_state = 71}, - [1491] = {.lex_state = 958}, - [1492] = {.lex_state = 964}, - [1493] = {.lex_state = 965}, - [1494] = {.lex_state = 978}, - [1495] = {.lex_state = 71}, - [1496] = {.lex_state = 71}, - [1497] = {.lex_state = 71}, - [1498] = {.lex_state = 71}, - [1499] = {.lex_state = 71}, - [1500] = {.lex_state = 71}, - [1501] = {.lex_state = 71}, - [1502] = {.lex_state = 71}, - [1503] = {.lex_state = 978}, - [1504] = {.lex_state = 958}, - [1505] = {.lex_state = 958}, - [1506] = {.lex_state = 927}, - [1507] = {.lex_state = 927}, - [1508] = {.lex_state = 963}, - [1509] = {.lex_state = 979}, - [1510] = {.lex_state = 978}, - [1511] = {.lex_state = 938}, - [1512] = {.lex_state = 964}, - [1513] = {.lex_state = 954}, - [1514] = {.lex_state = 963}, - [1515] = {.lex_state = 979}, - [1516] = {.lex_state = 973}, - [1517] = {.lex_state = 1027}, - [1518] = {.lex_state = 1027}, - [1519] = {.lex_state = 71}, - [1520] = {.lex_state = 37}, - [1521] = {.lex_state = 965}, - [1522] = {.lex_state = 978}, - [1523] = {.lex_state = 71}, - [1524] = {.lex_state = 978}, - [1525] = {.lex_state = 71}, - [1526] = {.lex_state = 979}, - [1527] = {.lex_state = 979}, - [1528] = {.lex_state = 951}, - [1529] = {.lex_state = 938}, - [1530] = {.lex_state = 37}, - [1531] = {.lex_state = 927}, - [1532] = {.lex_state = 138}, - [1533] = {.lex_state = 927}, - [1534] = {.lex_state = 965}, - [1535] = {.lex_state = 956}, - [1536] = {.lex_state = 927}, - [1537] = {.lex_state = 927}, - [1538] = {.lex_state = 953}, - [1539] = {.lex_state = 963}, - [1540] = {.lex_state = 953}, - [1541] = {.lex_state = 1039}, - [1542] = {.lex_state = 938}, - [1543] = {.lex_state = 963}, - [1544] = {.lex_state = 973}, - [1545] = {.lex_state = 1039}, - [1546] = {.lex_state = 973}, - [1547] = {.lex_state = 966}, - [1548] = {.lex_state = 117}, - [1549] = {.lex_state = 979}, - [1550] = {.lex_state = 963}, - [1551] = {.lex_state = 965}, - [1552] = {.lex_state = 927}, - [1553] = {.lex_state = 950}, - [1554] = {.lex_state = 951}, - [1555] = {.lex_state = 938}, - [1556] = {.lex_state = 978}, - [1557] = {.lex_state = 938}, - [1558] = {.lex_state = 117}, - [1559] = {.lex_state = 970}, - [1560] = {.lex_state = 938}, - [1561] = {.lex_state = 938}, - [1562] = {.lex_state = 978}, - [1563] = {.lex_state = 1039}, - [1564] = {.lex_state = 37}, - [1565] = {.lex_state = 927}, - [1566] = {.lex_state = 927}, - [1567] = {.lex_state = 938}, - [1568] = {.lex_state = 1039}, - [1569] = {.lex_state = 938}, - [1570] = {.lex_state = 1027}, - [1571] = {.lex_state = 970}, - [1572] = {.lex_state = 1039}, - [1573] = {.lex_state = 979}, - [1574] = {.lex_state = 955}, - [1575] = {.lex_state = 955}, - [1576] = {.lex_state = 955}, - [1577] = {.lex_state = 955}, - [1578] = {.lex_state = 955}, - [1579] = {.lex_state = 955}, - [1580] = {.lex_state = 955}, - [1581] = {.lex_state = 955}, - [1582] = {.lex_state = 955}, - [1583] = {.lex_state = 955}, - [1584] = {.lex_state = 955}, - [1585] = {.lex_state = 955}, - [1586] = {.lex_state = 955}, - [1587] = {.lex_state = 140}, - [1588] = {.lex_state = 951}, - [1589] = {.lex_state = 955}, - [1590] = {.lex_state = 955}, - [1591] = {.lex_state = 955}, - [1592] = {.lex_state = 955}, - [1593] = {.lex_state = 973}, - [1594] = {.lex_state = 973}, - [1595] = {.lex_state = 955}, - [1596] = {.lex_state = 140}, - [1597] = {.lex_state = 71}, - [1598] = {.lex_state = 71}, - [1599] = {.lex_state = 202}, - [1600] = {.lex_state = 202}, - [1601] = {.lex_state = 140}, - [1602] = {.lex_state = 140}, - [1603] = {.lex_state = 965}, - [1604] = {.lex_state = 965}, - [1605] = {.lex_state = 965}, - [1606] = {.lex_state = 973}, - [1607] = {.lex_state = 953}, - [1608] = {.lex_state = 140}, - [1609] = {.lex_state = 953}, - [1610] = {.lex_state = 71}, - [1611] = {.lex_state = 955}, - [1612] = {.lex_state = 955}, - [1613] = {.lex_state = 140}, - [1614] = {.lex_state = 140}, - [1615] = {.lex_state = 140}, - [1616] = {.lex_state = 140}, - [1617] = {.lex_state = 140}, - [1618] = {.lex_state = 140}, - [1619] = {.lex_state = 140}, - [1620] = {.lex_state = 140}, - [1621] = {.lex_state = 140}, - [1622] = {.lex_state = 140}, - [1623] = {.lex_state = 979}, - [1624] = {.lex_state = 955}, - [1625] = {.lex_state = 955}, - [1626] = {.lex_state = 979}, - [1627] = {.lex_state = 979}, - [1628] = {.lex_state = 140}, - [1629] = {.lex_state = 140}, - [1630] = {.lex_state = 140}, - [1631] = {.lex_state = 955}, - [1632] = {.lex_state = 140}, - [1633] = {.lex_state = 955}, - [1634] = {.lex_state = 140}, - [1635] = {.lex_state = 140}, - [1636] = {.lex_state = 140}, - [1637] = {.lex_state = 955}, - [1638] = {.lex_state = 955}, - [1639] = {.lex_state = 100}, - [1640] = {.lex_state = 955}, - [1641] = {.lex_state = 979}, - [1642] = {.lex_state = 955}, - [1643] = {.lex_state = 71}, - [1644] = {.lex_state = 1027}, - [1645] = {.lex_state = 1027}, - [1646] = {.lex_state = 71}, - [1647] = {.lex_state = 100}, - [1648] = {.lex_state = 71}, - [1649] = {.lex_state = 1027}, - [1650] = {.lex_state = 951}, - [1651] = {.lex_state = 955}, - [1652] = {.lex_state = 71}, - [1653] = {.lex_state = 955}, - [1654] = {.lex_state = 71}, - [1655] = {.lex_state = 955}, - [1656] = {.lex_state = 955}, - [1657] = {.lex_state = 955}, - [1658] = {.lex_state = 927}, - [1659] = {.lex_state = 71}, - [1660] = {.lex_state = 71}, - [1661] = {.lex_state = 71}, - [1662] = {.lex_state = 202}, - [1663] = {.lex_state = 955}, - [1664] = {.lex_state = 955}, - [1665] = {.lex_state = 140}, - [1666] = {.lex_state = 955}, - [1667] = {.lex_state = 955}, - [1668] = {.lex_state = 71}, - [1669] = {.lex_state = 71}, - [1670] = {.lex_state = 71}, - [1671] = {.lex_state = 71}, - [1672] = {.lex_state = 71}, - [1673] = {.lex_state = 955}, - [1674] = {.lex_state = 202}, - [1675] = {.lex_state = 955}, - [1676] = {.lex_state = 955}, - [1677] = {.lex_state = 970}, - [1678] = {.lex_state = 1027}, - [1679] = {.lex_state = 955}, - [1680] = {.lex_state = 71}, - [1681] = {.lex_state = 71}, - [1682] = {.lex_state = 955}, - [1683] = {.lex_state = 955}, - [1684] = {.lex_state = 71}, - [1685] = {.lex_state = 955}, - [1686] = {.lex_state = 955}, - [1687] = {.lex_state = 71}, - [1688] = {.lex_state = 71}, - [1689] = {.lex_state = 71}, - [1690] = {.lex_state = 71}, - [1691] = {.lex_state = 71}, - [1692] = {.lex_state = 955}, - [1693] = {.lex_state = 955}, - [1694] = {.lex_state = 955}, - [1695] = {.lex_state = 970}, - [1696] = {.lex_state = 955}, - [1697] = {.lex_state = 71}, - [1698] = {.lex_state = 71}, - [1699] = {.lex_state = 955}, - [1700] = {.lex_state = 71}, - [1701] = {.lex_state = 71}, - [1702] = {.lex_state = 955}, - [1703] = {.lex_state = 71}, - [1704] = {.lex_state = 71}, - [1705] = {.lex_state = 71}, - [1706] = {.lex_state = 955}, - [1707] = {.lex_state = 71}, - [1708] = {.lex_state = 955}, - [1709] = {.lex_state = 955}, - [1710] = {.lex_state = 71}, - [1711] = {.lex_state = 71}, - [1712] = {.lex_state = 955}, - [1713] = {.lex_state = 71}, - [1714] = {.lex_state = 955}, - [1715] = {.lex_state = 71}, - [1716] = {.lex_state = 140}, - [1717] = {.lex_state = 71}, - [1718] = {.lex_state = 955}, - [1719] = {.lex_state = 955}, - [1720] = {.lex_state = 955}, - [1721] = {.lex_state = 955}, - [1722] = {.lex_state = 955}, - [1723] = {.lex_state = 954}, - [1724] = {.lex_state = 955}, - [1725] = {.lex_state = 140}, - [1726] = {.lex_state = 955}, - [1727] = {.lex_state = 955}, - [1728] = {.lex_state = 955}, - [1729] = {.lex_state = 71}, - [1730] = {.lex_state = 955}, - [1731] = {.lex_state = 955}, - [1732] = {.lex_state = 71}, - [1733] = {.lex_state = 955}, - [1734] = {.lex_state = 955}, - [1735] = {.lex_state = 955}, - [1736] = {.lex_state = 140}, - [1737] = {.lex_state = 955}, - [1738] = {.lex_state = 71}, - [1739] = {.lex_state = 71}, - [1740] = {.lex_state = 71}, - [1741] = {.lex_state = 955}, - [1742] = {.lex_state = 71}, - [1743] = {.lex_state = 71}, - [1744] = {.lex_state = 71}, - [1745] = {.lex_state = 202}, - [1746] = {.lex_state = 955}, - [1747] = {.lex_state = 71}, - [1748] = {.lex_state = 202}, - [1749] = {.lex_state = 202}, - [1750] = {.lex_state = 202}, - [1751] = {.lex_state = 1027}, - [1752] = {.lex_state = 1027}, - [1753] = {.lex_state = 1027}, - [1754] = {.lex_state = 1027}, - [1755] = {.lex_state = 1027}, - [1756] = {.lex_state = 1027}, - [1757] = {.lex_state = 1027}, - [1758] = {.lex_state = 1027}, - [1759] = {.lex_state = 1027}, - [1760] = {.lex_state = 1027}, - [1761] = {.lex_state = 1027}, - [1762] = {.lex_state = 1027}, - [1763] = {.lex_state = 1027}, - [1764] = {.lex_state = 1027}, - [1765] = {.lex_state = 1027}, - [1766] = {.lex_state = 1027}, - [1767] = {.lex_state = 1027}, - [1768] = {.lex_state = 1027}, - [1769] = {.lex_state = 1027}, - [1770] = {.lex_state = 1027}, - [1771] = {.lex_state = 1027}, - [1772] = {.lex_state = 1027}, - [1773] = {.lex_state = 140}, - [1774] = {.lex_state = 71}, - [1775] = {.lex_state = 140}, - [1776] = {.lex_state = 71}, - [1777] = {.lex_state = 71}, - [1778] = {.lex_state = 71}, - [1779] = {.lex_state = 71}, - [1780] = {.lex_state = 71}, - [1781] = {.lex_state = 71}, - [1782] = {.lex_state = 955}, - [1783] = {.lex_state = 71}, - [1784] = {.lex_state = 71}, - [1785] = {.lex_state = 955}, - [1786] = {.lex_state = 71}, - [1787] = {.lex_state = 955}, - [1788] = {.lex_state = 955}, - [1789] = {.lex_state = 927}, - [1790] = {.lex_state = 955}, - [1791] = {.lex_state = 955}, - [1792] = {.lex_state = 955}, - [1793] = {.lex_state = 1027}, - [1794] = {.lex_state = 140}, - [1795] = {.lex_state = 118}, - [1796] = {.lex_state = 118}, - [1797] = {.lex_state = 118}, - [1798] = {.lex_state = 118}, - [1799] = {.lex_state = 118}, - [1800] = {.lex_state = 955}, - [1801] = {.lex_state = 118}, - [1802] = {.lex_state = 118}, - [1803] = {.lex_state = 118}, - [1804] = {.lex_state = 990}, - [1805] = {.lex_state = 955}, - [1806] = {.lex_state = 955}, - [1807] = {.lex_state = 118}, - [1808] = {.lex_state = 955}, - [1809] = {.lex_state = 140}, - [1810] = {.lex_state = 955}, - [1811] = {.lex_state = 118}, - [1812] = {.lex_state = 990}, - [1813] = {.lex_state = 1027}, - [1814] = {.lex_state = 1027}, - [1815] = {.lex_state = 1027}, - [1816] = {.lex_state = 1027}, - [1817] = {.lex_state = 1027}, - [1818] = {.lex_state = 1027}, - [1819] = {.lex_state = 1027}, - [1820] = {.lex_state = 118}, - [1821] = {.lex_state = 955}, - [1822] = {.lex_state = 117}, - [1823] = {.lex_state = 118}, - [1824] = {.lex_state = 118}, - [1825] = {.lex_state = 955}, - [1826] = {.lex_state = 955}, - [1827] = {.lex_state = 955}, - [1828] = {.lex_state = 955}, - [1829] = {.lex_state = 955}, - [1830] = {.lex_state = 117}, - [1831] = {.lex_state = 955}, - [1832] = {.lex_state = 955}, - [1833] = {.lex_state = 1027}, - [1834] = {.lex_state = 1027}, - [1835] = {.lex_state = 1027}, - [1836] = {.lex_state = 1027}, - [1837] = {.lex_state = 955}, - [1838] = {.lex_state = 1027}, - [1839] = {.lex_state = 118}, - [1840] = {.lex_state = 955}, - [1841] = {.lex_state = 1027}, - [1842] = {.lex_state = 1027}, - [1843] = {.lex_state = 1027}, - [1844] = {.lex_state = 955}, - [1845] = {.lex_state = 1027}, - [1846] = {.lex_state = 118}, - [1847] = {.lex_state = 99}, - [1848] = {.lex_state = 955}, - [1849] = {.lex_state = 118}, - [1850] = {.lex_state = 117}, - [1851] = {.lex_state = 955}, - [1852] = {.lex_state = 955}, - [1853] = {.lex_state = 955}, - [1854] = {.lex_state = 955}, - [1855] = {.lex_state = 955}, - [1856] = {.lex_state = 118}, - [1857] = {.lex_state = 955}, - [1858] = {.lex_state = 955}, - [1859] = {.lex_state = 955}, - [1860] = {.lex_state = 118}, - [1861] = {.lex_state = 955}, - [1862] = {.lex_state = 955}, - [1863] = {.lex_state = 118}, - [1864] = {.lex_state = 118}, - [1865] = {.lex_state = 955}, - [1866] = {.lex_state = 955}, - [1867] = {.lex_state = 955}, - [1868] = {.lex_state = 118}, - [1869] = {.lex_state = 118}, - [1870] = {.lex_state = 955}, - [1871] = {.lex_state = 955}, - [1872] = {.lex_state = 118}, - [1873] = {.lex_state = 955}, - [1874] = {.lex_state = 955}, - [1875] = {.lex_state = 955}, - [1876] = {.lex_state = 955}, - [1877] = {.lex_state = 118}, - [1878] = {.lex_state = 955}, - [1879] = {.lex_state = 955}, - [1880] = {.lex_state = 955}, - [1881] = {.lex_state = 955}, - [1882] = {.lex_state = 955}, - [1883] = {.lex_state = 1027}, - [1884] = {.lex_state = 118}, - [1885] = {.lex_state = 118}, - [1886] = {.lex_state = 955}, - [1887] = {.lex_state = 955}, - [1888] = {.lex_state = 118}, - [1889] = {.lex_state = 955}, - [1890] = {.lex_state = 955}, - [1891] = {.lex_state = 118}, - [1892] = {.lex_state = 1027}, - [1893] = {.lex_state = 955}, - [1894] = {.lex_state = 118}, - [1895] = {.lex_state = 955}, - [1896] = {.lex_state = 118}, - [1897] = {.lex_state = 955}, - [1898] = {.lex_state = 955}, - [1899] = {.lex_state = 118}, - [1900] = {.lex_state = 118}, - [1901] = {.lex_state = 955}, - [1902] = {.lex_state = 955}, - [1903] = {.lex_state = 955}, - [1904] = {.lex_state = 955}, - [1905] = {.lex_state = 955}, - [1906] = {.lex_state = 955}, - [1907] = {.lex_state = 118}, - [1908] = {.lex_state = 955}, - [1909] = {.lex_state = 955}, - [1910] = {.lex_state = 99}, - [1911] = {.lex_state = 118}, - [1912] = {.lex_state = 118}, - [1913] = {.lex_state = 118}, - [1914] = {.lex_state = 118}, - [1915] = {.lex_state = 955}, - [1916] = {.lex_state = 955}, - [1917] = {.lex_state = 1027}, - [1918] = {.lex_state = 118}, - [1919] = {.lex_state = 118}, - [1920] = {.lex_state = 118}, - [1921] = {.lex_state = 955}, - [1922] = {.lex_state = 118}, - [1923] = {.lex_state = 118}, - [1924] = {.lex_state = 118}, - [1925] = {.lex_state = 118}, - [1926] = {.lex_state = 118}, - [1927] = {.lex_state = 118}, - [1928] = {.lex_state = 118}, - [1929] = {.lex_state = 1027}, - [1930] = {.lex_state = 955}, - [1931] = {.lex_state = 955}, - [1932] = {.lex_state = 955}, - [1933] = {.lex_state = 118}, - [1934] = {.lex_state = 955}, - [1935] = {.lex_state = 955}, - [1936] = {.lex_state = 955}, - [1937] = {.lex_state = 955}, - [1938] = {.lex_state = 955}, - [1939] = {.lex_state = 955}, - [1940] = {.lex_state = 955}, - [1941] = {.lex_state = 955}, - [1942] = {.lex_state = 1027}, - [1943] = {.lex_state = 1027}, - [1944] = {.lex_state = 955}, - [1945] = {.lex_state = 955}, - [1946] = {.lex_state = 955}, - [1947] = {.lex_state = 1027}, - [1948] = {.lex_state = 1027}, - [1949] = {.lex_state = 1027}, - [1950] = {.lex_state = 1027}, - [1951] = {.lex_state = 955}, - [1952] = {.lex_state = 955}, - [1953] = {.lex_state = 955}, - [1954] = {.lex_state = 955}, - [1955] = {.lex_state = 955}, - [1956] = {.lex_state = 955}, - [1957] = {.lex_state = 955}, - [1958] = {.lex_state = 955}, - [1959] = {.lex_state = 118}, - [1960] = {.lex_state = 955}, - [1961] = {.lex_state = 118}, - [1962] = {.lex_state = 118}, - [1963] = {.lex_state = 118}, - [1964] = {.lex_state = 955}, - [1965] = {.lex_state = 1027}, - [1966] = {.lex_state = 973}, - [1967] = {.lex_state = 1049}, - [1968] = {.lex_state = 1049}, - [1969] = {.lex_state = 117}, - [1970] = {.lex_state = 1027}, - [1971] = {.lex_state = 975}, - [1972] = {.lex_state = 1027}, - [1973] = {.lex_state = 1027}, - [1974] = {.lex_state = 1027}, - [1975] = {.lex_state = 1027}, - [1976] = {.lex_state = 117}, - [1977] = {.lex_state = 1049}, - [1978] = {.lex_state = 1049}, - [1979] = {.lex_state = 975}, - [1980] = {.lex_state = 117}, - [1981] = {.lex_state = 117}, - [1982] = {.lex_state = 117}, - [1983] = {.lex_state = 975}, - [1984] = {.lex_state = 117}, - [1985] = {.lex_state = 117}, - [1986] = {.lex_state = 117}, - [1987] = {.lex_state = 140}, - [1988] = {.lex_state = 140}, - [1989] = {.lex_state = 117}, - [1990] = {.lex_state = 973}, - [1991] = {.lex_state = 117}, - [1992] = {.lex_state = 117}, - [1993] = {.lex_state = 117}, - [1994] = {.lex_state = 990}, - [1995] = {.lex_state = 117}, - [1996] = {.lex_state = 118}, - [1997] = {.lex_state = 117}, - [1998] = {.lex_state = 118}, - [1999] = {.lex_state = 117}, - [2000] = {.lex_state = 117}, - [2001] = {.lex_state = 973}, - [2002] = {.lex_state = 973}, - [2003] = {.lex_state = 117}, - [2004] = {.lex_state = 990}, - [2005] = {.lex_state = 973}, - [2006] = {.lex_state = 117}, - [2007] = {.lex_state = 117}, - [2008] = {.lex_state = 1027}, - [2009] = {.lex_state = 973}, - [2010] = {.lex_state = 990}, - [2011] = {.lex_state = 117}, - [2012] = {.lex_state = 973}, - [2013] = {.lex_state = 118}, - [2014] = {.lex_state = 117}, - [2015] = {.lex_state = 1027}, - [2016] = {.lex_state = 1027}, - [2017] = {.lex_state = 118}, - [2018] = {.lex_state = 990}, - [2019] = {.lex_state = 39}, - [2020] = {.lex_state = 118}, - [2021] = {.lex_state = 39}, - [2022] = {.lex_state = 117}, - [2023] = {.lex_state = 118}, - [2024] = {.lex_state = 1049}, - [2025] = {.lex_state = 973}, - [2026] = {.lex_state = 117}, - [2027] = {.lex_state = 118}, - [2028] = {.lex_state = 118}, - [2029] = {.lex_state = 118}, - [2030] = {.lex_state = 118}, - [2031] = {.lex_state = 118}, - [2032] = {.lex_state = 118}, - [2033] = {.lex_state = 118}, - [2034] = {.lex_state = 118}, - [2035] = {.lex_state = 118}, - [2036] = {.lex_state = 118}, - [2037] = {.lex_state = 118}, - [2038] = {.lex_state = 118}, - [2039] = {.lex_state = 118}, - [2040] = {.lex_state = 118}, - [2041] = {.lex_state = 118}, - [2042] = {.lex_state = 140}, - [2043] = {.lex_state = 118}, - [2044] = {.lex_state = 1049}, - [2045] = {.lex_state = 118}, - [2046] = {.lex_state = 118}, - [2047] = {.lex_state = 118}, - [2048] = {.lex_state = 118}, - [2049] = {.lex_state = 118}, - [2050] = {.lex_state = 118}, - [2051] = {.lex_state = 118}, - [2052] = {.lex_state = 975}, - [2053] = {.lex_state = 118}, - [2054] = {.lex_state = 118}, - [2055] = {.lex_state = 1049}, - [2056] = {.lex_state = 118}, - [2057] = {.lex_state = 118}, - [2058] = {.lex_state = 990}, - [2059] = {.lex_state = 118}, - [2060] = {.lex_state = 118}, - [2061] = {.lex_state = 990}, - [2062] = {.lex_state = 37}, - [2063] = {.lex_state = 118}, - [2064] = {.lex_state = 118}, - [2065] = {.lex_state = 118}, - [2066] = {.lex_state = 118}, - [2067] = {.lex_state = 118}, - [2068] = {.lex_state = 118}, - [2069] = {.lex_state = 118}, - [2070] = {.lex_state = 118}, - [2071] = {.lex_state = 1044}, - [2072] = {.lex_state = 118}, - [2073] = {.lex_state = 990}, - [2074] = {.lex_state = 118}, - [2075] = {.lex_state = 341}, - [2076] = {.lex_state = 140}, - [2077] = {.lex_state = 140}, - [2078] = {.lex_state = 118}, - [2079] = {.lex_state = 1027}, - [2080] = {.lex_state = 1027}, - [2081] = {.lex_state = 347}, - [2082] = {.lex_state = 37}, - [2083] = {.lex_state = 1049}, - [2084] = {.lex_state = 118}, - [2085] = {.lex_state = 1053}, - [2086] = {.lex_state = 1053}, - [2087] = {.lex_state = 118}, - [2088] = {.lex_state = 118}, - [2089] = {.lex_state = 118}, - [2090] = {.lex_state = 118}, - [2091] = {.lex_state = 118}, - [2092] = {.lex_state = 118}, - [2093] = {.lex_state = 118}, - [2094] = {.lex_state = 1045}, - [2095] = {.lex_state = 1045}, - [2096] = {.lex_state = 118}, - [2097] = {.lex_state = 118}, - [2098] = {.lex_state = 118}, - [2099] = {.lex_state = 118}, - [2100] = {.lex_state = 118}, - [2101] = {.lex_state = 118}, - [2102] = {.lex_state = 118}, - [2103] = {.lex_state = 118}, - [2104] = {.lex_state = 118}, - [2105] = {.lex_state = 95}, - [2106] = {.lex_state = 95}, - [2107] = {.lex_state = 1027}, - [2108] = {.lex_state = 118}, - [2109] = {.lex_state = 118}, - [2110] = {.lex_state = 145}, - [2111] = {.lex_state = 118}, - [2112] = {.lex_state = 118}, - [2113] = {.lex_state = 118}, - [2114] = {.lex_state = 118}, - [2115] = {.lex_state = 118}, - [2116] = {.lex_state = 118}, - [2117] = {.lex_state = 118}, - [2118] = {.lex_state = 50}, - [2119] = {.lex_state = 118}, - [2120] = {.lex_state = 118}, - [2121] = {.lex_state = 118}, - [2122] = {.lex_state = 975}, - [2123] = {.lex_state = 1053}, - [2124] = {.lex_state = 118}, - [2125] = {.lex_state = 975}, - [2126] = {.lex_state = 118}, - [2127] = {.lex_state = 118}, - [2128] = {.lex_state = 118}, - [2129] = {.lex_state = 118}, - [2130] = {.lex_state = 990}, - [2131] = {.lex_state = 975}, - [2132] = {.lex_state = 118}, - [2133] = {.lex_state = 990}, - [2134] = {.lex_state = 990}, - [2135] = {.lex_state = 118}, - [2136] = {.lex_state = 990}, - [2137] = {.lex_state = 107}, - [2138] = {.lex_state = 118}, - [2139] = {.lex_state = 50}, - [2140] = {.lex_state = 118}, - [2141] = {.lex_state = 118}, - [2142] = {.lex_state = 118}, - [2143] = {.lex_state = 145}, - [2144] = {.lex_state = 145}, - [2145] = {.lex_state = 990}, - [2146] = {.lex_state = 1049}, - [2147] = {.lex_state = 975}, - [2148] = {.lex_state = 118}, - [2149] = {.lex_state = 1049}, - [2150] = {.lex_state = 118}, - [2151] = {.lex_state = 118}, - [2152] = {.lex_state = 118}, - [2153] = {.lex_state = 990}, + [1336] = {.lex_state = 961, .external_lex_state = 2}, + [1337] = {.lex_state = 1035}, + [1338] = {.lex_state = 961, .external_lex_state = 2}, + [1339] = {.lex_state = 968, .external_lex_state = 2}, + [1340] = {.lex_state = 968, .external_lex_state = 2}, + [1341] = {.lex_state = 961, .external_lex_state = 2}, + [1342] = {.lex_state = 968, .external_lex_state = 2}, + [1343] = {.lex_state = 961, .external_lex_state = 2}, + [1344] = {.lex_state = 961, .external_lex_state = 2}, + [1345] = {.lex_state = 940, .external_lex_state = 2}, + [1346] = {.lex_state = 961, .external_lex_state = 2}, + [1347] = {.lex_state = 968, .external_lex_state = 2}, + [1348] = {.lex_state = 965, .external_lex_state = 2}, + [1349] = {.lex_state = 961, .external_lex_state = 2}, + [1350] = {.lex_state = 961, .external_lex_state = 2}, + [1351] = {.lex_state = 961, .external_lex_state = 2}, + [1352] = {.lex_state = 961, .external_lex_state = 2}, + [1353] = {.lex_state = 941, .external_lex_state = 2}, + [1354] = {.lex_state = 965, .external_lex_state = 2}, + [1355] = {.lex_state = 941, .external_lex_state = 2}, + [1356] = {.lex_state = 968, .external_lex_state = 2}, + [1357] = {.lex_state = 1003}, + [1358] = {.lex_state = 968, .external_lex_state = 2}, + [1359] = {.lex_state = 968, .external_lex_state = 2}, + [1360] = {.lex_state = 1003}, + [1361] = {.lex_state = 121}, + [1362] = {.lex_state = 993}, + [1363] = {.lex_state = 1007}, + [1364] = {.lex_state = 990}, + [1365] = {.lex_state = 968, .external_lex_state = 2}, + [1366] = {.lex_state = 999}, + [1367] = {.lex_state = 968, .external_lex_state = 2}, + [1368] = {.lex_state = 961, .external_lex_state = 2}, + [1369] = {.lex_state = 965, .external_lex_state = 2}, + [1370] = {.lex_state = 968, .external_lex_state = 2}, + [1371] = {.lex_state = 961, .external_lex_state = 2}, + [1372] = {.lex_state = 102}, + [1373] = {.lex_state = 137}, + [1374] = {.lex_state = 945, .external_lex_state = 2}, + [1375] = {.lex_state = 961, .external_lex_state = 2}, + [1376] = {.lex_state = 968, .external_lex_state = 2}, + [1377] = {.lex_state = 102}, + [1378] = {.lex_state = 968, .external_lex_state = 2}, + [1379] = {.lex_state = 961, .external_lex_state = 2}, + [1380] = {.lex_state = 960, .external_lex_state = 2}, + [1381] = {.lex_state = 968, .external_lex_state = 2}, + [1382] = {.lex_state = 960, .external_lex_state = 2}, + [1383] = {.lex_state = 122}, + [1384] = {.lex_state = 124}, + [1385] = {.lex_state = 107}, + [1386] = {.lex_state = 961, .external_lex_state = 2}, + [1387] = {.lex_state = 968, .external_lex_state = 2}, + [1388] = {.lex_state = 968, .external_lex_state = 2}, + [1389] = {.lex_state = 968, .external_lex_state = 2}, + [1390] = {.lex_state = 107}, + [1391] = {.lex_state = 968, .external_lex_state = 2}, + [1392] = {.lex_state = 968, .external_lex_state = 2}, + [1393] = {.lex_state = 968, .external_lex_state = 2}, + [1394] = {.lex_state = 968, .external_lex_state = 2}, + [1395] = {.lex_state = 968, .external_lex_state = 2}, + [1396] = {.lex_state = 968, .external_lex_state = 2}, + [1397] = {.lex_state = 968, .external_lex_state = 2}, + [1398] = {.lex_state = 135}, + [1399] = {.lex_state = 103}, + [1400] = {.lex_state = 931, .external_lex_state = 2}, + [1401] = {.lex_state = 961, .external_lex_state = 2}, + [1402] = {.lex_state = 931, .external_lex_state = 2}, + [1403] = {.lex_state = 1003}, + [1404] = {.lex_state = 990}, + [1405] = {.lex_state = 139}, + [1406] = {.lex_state = 959, .external_lex_state = 2}, + [1407] = {.lex_state = 961, .external_lex_state = 2}, + [1408] = {.lex_state = 931, .external_lex_state = 2}, + [1409] = {.lex_state = 942, .external_lex_state = 2}, + [1410] = {.lex_state = 961, .external_lex_state = 2}, + [1411] = {.lex_state = 1037}, + [1412] = {.lex_state = 980, .external_lex_state = 2}, + [1413] = {.lex_state = 941, .external_lex_state = 2}, + [1414] = {.lex_state = 961, .external_lex_state = 2}, + [1415] = {.lex_state = 942, .external_lex_state = 2}, + [1416] = {.lex_state = 961, .external_lex_state = 2}, + [1417] = {.lex_state = 128}, + [1418] = {.lex_state = 931, .external_lex_state = 2}, + [1419] = {.lex_state = 931, .external_lex_state = 2}, + [1420] = {.lex_state = 967, .external_lex_state = 2}, + [1421] = {.lex_state = 942, .external_lex_state = 2}, + [1422] = {.lex_state = 961, .external_lex_state = 2}, + [1423] = {.lex_state = 139}, + [1424] = {.lex_state = 942, .external_lex_state = 2}, + [1425] = {.lex_state = 961, .external_lex_state = 2}, + [1426] = {.lex_state = 103}, + [1427] = {.lex_state = 961, .external_lex_state = 2}, + [1428] = {.lex_state = 961, .external_lex_state = 2}, + [1429] = {.lex_state = 980, .external_lex_state = 2}, + [1430] = {.lex_state = 1007}, + [1431] = {.lex_state = 961, .external_lex_state = 2}, + [1432] = {.lex_state = 202, .external_lex_state = 2}, + [1433] = {.lex_state = 961, .external_lex_state = 2}, + [1434] = {.lex_state = 968, .external_lex_state = 2}, + [1435] = {.lex_state = 980, .external_lex_state = 2}, + [1436] = {.lex_state = 980, .external_lex_state = 2}, + [1437] = {.lex_state = 1007}, + [1438] = {.lex_state = 961, .external_lex_state = 2}, + [1439] = {.lex_state = 968, .external_lex_state = 2}, + [1440] = {.lex_state = 966, .external_lex_state = 2}, + [1441] = {.lex_state = 961, .external_lex_state = 2}, + [1442] = {.lex_state = 961, .external_lex_state = 2}, + [1443] = {.lex_state = 966, .external_lex_state = 2}, + [1444] = {.lex_state = 126}, + [1445] = {.lex_state = 1007}, + [1446] = {.lex_state = 126}, + [1447] = {.lex_state = 966, .external_lex_state = 2}, + [1448] = {.lex_state = 108}, + [1449] = {.lex_state = 979, .external_lex_state = 2}, + [1450] = {.lex_state = 1033}, + [1451] = {.lex_state = 961, .external_lex_state = 2}, + [1452] = {.lex_state = 1035}, + [1453] = {.lex_state = 979, .external_lex_state = 2}, + [1454] = {.lex_state = 1007}, + [1455] = {.lex_state = 961, .external_lex_state = 2}, + [1456] = {.lex_state = 108}, + [1457] = {.lex_state = 942, .external_lex_state = 2}, + [1458] = {.lex_state = 1007}, + [1459] = {.lex_state = 1037}, + [1460] = {.lex_state = 108}, + [1461] = {.lex_state = 942, .external_lex_state = 2}, + [1462] = {.lex_state = 942, .external_lex_state = 2}, + [1463] = {.lex_state = 202, .external_lex_state = 2}, + [1464] = {.lex_state = 961, .external_lex_state = 2}, + [1465] = {.lex_state = 966, .external_lex_state = 2}, + [1466] = {.lex_state = 966, .external_lex_state = 2}, + [1467] = {.lex_state = 108}, + [1468] = {.lex_state = 942, .external_lex_state = 2}, + [1469] = {.lex_state = 969, .external_lex_state = 2}, + [1470] = {.lex_state = 1003}, + [1471] = {.lex_state = 121}, + [1472] = {.lex_state = 121}, + [1473] = {.lex_state = 942, .external_lex_state = 2}, + [1474] = {.lex_state = 966, .external_lex_state = 2}, + [1475] = {.lex_state = 979, .external_lex_state = 2}, + [1476] = {.lex_state = 953, .external_lex_state = 2}, + [1477] = {.lex_state = 980, .external_lex_state = 2}, + [1478] = {.lex_state = 941, .external_lex_state = 2}, + [1479] = {.lex_state = 990}, + [1480] = {.lex_state = 202, .external_lex_state = 2}, + [1481] = {.lex_state = 1007}, + [1482] = {.lex_state = 981, .external_lex_state = 2}, + [1483] = {.lex_state = 942, .external_lex_state = 2}, + [1484] = {.lex_state = 981, .external_lex_state = 2}, + [1485] = {.lex_state = 942, .external_lex_state = 2}, + [1486] = {.lex_state = 968, .external_lex_state = 2}, + [1487] = {.lex_state = 968, .external_lex_state = 2}, + [1488] = {.lex_state = 990}, + [1489] = {.lex_state = 954, .external_lex_state = 2}, + [1490] = {.lex_state = 931, .external_lex_state = 2}, + [1491] = {.lex_state = 931, .external_lex_state = 2}, + [1492] = {.lex_state = 931, .external_lex_state = 2}, + [1493] = {.lex_state = 956, .external_lex_state = 2}, + [1494] = {.lex_state = 931, .external_lex_state = 2}, + [1495] = {.lex_state = 973, .external_lex_state = 2}, + [1496] = {.lex_state = 973, .external_lex_state = 2}, + [1497] = {.lex_state = 942, .external_lex_state = 2}, + [1498] = {.lex_state = 1007}, + [1499] = {.lex_state = 956, .external_lex_state = 2}, + [1500] = {.lex_state = 1007}, + [1501] = {.lex_state = 1039}, + [1502] = {.lex_state = 141}, + [1503] = {.lex_state = 991}, + [1504] = {.lex_state = 991}, + [1505] = {.lex_state = 979, .external_lex_state = 2}, + [1506] = {.lex_state = 1007}, + [1507] = {.lex_state = 942, .external_lex_state = 2}, + [1508] = {.lex_state = 1039}, + [1509] = {.lex_state = 981, .external_lex_state = 2}, + [1510] = {.lex_state = 141}, + [1511] = {.lex_state = 979, .external_lex_state = 2}, + [1512] = {.lex_state = 990}, + [1513] = {.lex_state = 942, .external_lex_state = 2}, + [1514] = {.lex_state = 981, .external_lex_state = 2}, + [1515] = {.lex_state = 141}, + [1516] = {.lex_state = 942, .external_lex_state = 2}, + [1517] = {.lex_state = 207, .external_lex_state = 2}, + [1518] = {.lex_state = 942, .external_lex_state = 2}, + [1519] = {.lex_state = 931, .external_lex_state = 2}, + [1520] = {.lex_state = 141}, + [1521] = {.lex_state = 954, .external_lex_state = 2}, + [1522] = {.lex_state = 931, .external_lex_state = 2}, + [1523] = {.lex_state = 957, .external_lex_state = 2}, + [1524] = {.lex_state = 966, .external_lex_state = 2}, + [1525] = {.lex_state = 966, .external_lex_state = 2}, + [1526] = {.lex_state = 207, .external_lex_state = 2}, + [1527] = {.lex_state = 128}, + [1528] = {.lex_state = 942, .external_lex_state = 2}, + [1529] = {.lex_state = 207, .external_lex_state = 2}, + [1530] = {.lex_state = 128}, + [1531] = {.lex_state = 959, .external_lex_state = 2}, + [1532] = {.lex_state = 128}, + [1533] = {.lex_state = 981, .external_lex_state = 2}, + [1534] = {.lex_state = 128}, + [1535] = {.lex_state = 979, .external_lex_state = 2}, + [1536] = {.lex_state = 980, .external_lex_state = 2}, + [1537] = {.lex_state = 980, .external_lex_state = 2}, + [1538] = {.lex_state = 968, .external_lex_state = 2}, + [1539] = {.lex_state = 931, .external_lex_state = 2}, + [1540] = {.lex_state = 104}, + [1541] = {.lex_state = 953, .external_lex_state = 2}, + [1542] = {.lex_state = 969, .external_lex_state = 2}, + [1543] = {.lex_state = 1039}, + [1544] = {.lex_state = 104}, + [1545] = {.lex_state = 104}, + [1546] = {.lex_state = 980, .external_lex_state = 2}, + [1547] = {.lex_state = 942, .external_lex_state = 2}, + [1548] = {.lex_state = 991}, + [1549] = {.lex_state = 104}, + [1550] = {.lex_state = 980, .external_lex_state = 2}, + [1551] = {.lex_state = 980, .external_lex_state = 2}, + [1552] = {.lex_state = 966, .external_lex_state = 2}, + [1553] = {.lex_state = 1037}, + [1554] = {.lex_state = 991}, + [1555] = {.lex_state = 931, .external_lex_state = 2}, + [1556] = {.lex_state = 991}, + [1557] = {.lex_state = 966, .external_lex_state = 2}, + [1558] = {.lex_state = 966, .external_lex_state = 2}, + [1559] = {.lex_state = 966, .external_lex_state = 2}, + [1560] = {.lex_state = 931, .external_lex_state = 2}, + [1561] = {.lex_state = 207, .external_lex_state = 2}, + [1562] = {.lex_state = 1037}, + [1563] = {.lex_state = 207, .external_lex_state = 2}, + [1564] = {.lex_state = 207, .external_lex_state = 2}, + [1565] = {.lex_state = 991}, + [1566] = {.lex_state = 207, .external_lex_state = 2}, + [1567] = {.lex_state = 991}, + [1568] = {.lex_state = 991}, + [1569] = {.lex_state = 1039}, + [1570] = {.lex_state = 991}, + [1571] = {.lex_state = 991}, + [1572] = {.lex_state = 991}, + [1573] = {.lex_state = 991}, + [1574] = {.lex_state = 991}, + [1575] = {.lex_state = 991}, + [1576] = {.lex_state = 991}, + [1577] = {.lex_state = 991}, + [1578] = {.lex_state = 991}, + [1579] = {.lex_state = 967, .external_lex_state = 2}, + [1580] = {.lex_state = 1039}, + [1581] = {.lex_state = 991}, + [1582] = {.lex_state = 991}, + [1583] = {.lex_state = 207, .external_lex_state = 2}, + [1584] = {.lex_state = 108}, + [1585] = {.lex_state = 1039}, + [1586] = {.lex_state = 958, .external_lex_state = 2}, + [1587] = {.lex_state = 958, .external_lex_state = 2}, + [1588] = {.lex_state = 958, .external_lex_state = 2}, + [1589] = {.lex_state = 968, .external_lex_state = 2}, + [1590] = {.lex_state = 958, .external_lex_state = 2}, + [1591] = {.lex_state = 958, .external_lex_state = 2}, + [1592] = {.lex_state = 981, .external_lex_state = 2}, + [1593] = {.lex_state = 958, .external_lex_state = 2}, + [1594] = {.lex_state = 958, .external_lex_state = 2}, + [1595] = {.lex_state = 958, .external_lex_state = 2}, + [1596] = {.lex_state = 958, .external_lex_state = 2}, + [1597] = {.lex_state = 958, .external_lex_state = 2}, + [1598] = {.lex_state = 958, .external_lex_state = 2}, + [1599] = {.lex_state = 958, .external_lex_state = 2}, + [1600] = {.lex_state = 958, .external_lex_state = 2}, + [1601] = {.lex_state = 958, .external_lex_state = 2}, + [1602] = {.lex_state = 968, .external_lex_state = 2}, + [1603] = {.lex_state = 968, .external_lex_state = 2}, + [1604] = {.lex_state = 958, .external_lex_state = 2}, + [1605] = {.lex_state = 981, .external_lex_state = 2}, + [1606] = {.lex_state = 958, .external_lex_state = 2}, + [1607] = {.lex_state = 958, .external_lex_state = 2}, + [1608] = {.lex_state = 991}, + [1609] = {.lex_state = 957, .external_lex_state = 2}, + [1610] = {.lex_state = 956, .external_lex_state = 2}, + [1611] = {.lex_state = 958, .external_lex_state = 2}, + [1612] = {.lex_state = 958, .external_lex_state = 2}, + [1613] = {.lex_state = 991}, + [1614] = {.lex_state = 958, .external_lex_state = 2}, + [1615] = {.lex_state = 958, .external_lex_state = 2}, + [1616] = {.lex_state = 958, .external_lex_state = 2}, + [1617] = {.lex_state = 956, .external_lex_state = 2}, + [1618] = {.lex_state = 958, .external_lex_state = 2}, + [1619] = {.lex_state = 958, .external_lex_state = 2}, + [1620] = {.lex_state = 981, .external_lex_state = 2}, + [1621] = {.lex_state = 931, .external_lex_state = 2}, + [1622] = {.lex_state = 958, .external_lex_state = 2}, + [1623] = {.lex_state = 958, .external_lex_state = 2}, + [1624] = {.lex_state = 958, .external_lex_state = 2}, + [1625] = {.lex_state = 991}, + [1626] = {.lex_state = 991}, + [1627] = {.lex_state = 958, .external_lex_state = 2}, + [1628] = {.lex_state = 958, .external_lex_state = 2}, + [1629] = {.lex_state = 958, .external_lex_state = 2}, + [1630] = {.lex_state = 958, .external_lex_state = 2}, + [1631] = {.lex_state = 958, .external_lex_state = 2}, + [1632] = {.lex_state = 1039}, + [1633] = {.lex_state = 1039}, + [1634] = {.lex_state = 958, .external_lex_state = 2}, + [1635] = {.lex_state = 120}, + [1636] = {.lex_state = 958, .external_lex_state = 2}, + [1637] = {.lex_state = 958, .external_lex_state = 2}, + [1638] = {.lex_state = 958, .external_lex_state = 2}, + [1639] = {.lex_state = 958, .external_lex_state = 2}, + [1640] = {.lex_state = 958, .external_lex_state = 2}, + [1641] = {.lex_state = 958, .external_lex_state = 2}, + [1642] = {.lex_state = 958, .external_lex_state = 2}, + [1643] = {.lex_state = 958, .external_lex_state = 2}, + [1644] = {.lex_state = 958, .external_lex_state = 2}, + [1645] = {.lex_state = 958, .external_lex_state = 2}, + [1646] = {.lex_state = 958, .external_lex_state = 2}, + [1647] = {.lex_state = 958, .external_lex_state = 2}, + [1648] = {.lex_state = 958, .external_lex_state = 2}, + [1649] = {.lex_state = 1039}, + [1650] = {.lex_state = 958, .external_lex_state = 2}, + [1651] = {.lex_state = 958, .external_lex_state = 2}, + [1652] = {.lex_state = 954, .external_lex_state = 2}, + [1653] = {.lex_state = 958, .external_lex_state = 2}, + [1654] = {.lex_state = 958, .external_lex_state = 2}, + [1655] = {.lex_state = 958, .external_lex_state = 2}, + [1656] = {.lex_state = 958, .external_lex_state = 2}, + [1657] = {.lex_state = 958, .external_lex_state = 2}, + [1658] = {.lex_state = 958, .external_lex_state = 2}, + [1659] = {.lex_state = 954, .external_lex_state = 2}, + [1660] = {.lex_state = 931, .external_lex_state = 2}, + [1661] = {.lex_state = 958, .external_lex_state = 2}, + [1662] = {.lex_state = 958, .external_lex_state = 2}, + [1663] = {.lex_state = 958, .external_lex_state = 2}, + [1664] = {.lex_state = 981, .external_lex_state = 2}, + [1665] = {.lex_state = 1039}, + [1666] = {.lex_state = 958, .external_lex_state = 2}, + [1667] = {.lex_state = 958, .external_lex_state = 2}, + [1668] = {.lex_state = 958, .external_lex_state = 2}, + [1669] = {.lex_state = 958, .external_lex_state = 2}, + [1670] = {.lex_state = 973, .external_lex_state = 2}, + [1671] = {.lex_state = 958, .external_lex_state = 2}, + [1672] = {.lex_state = 958, .external_lex_state = 2}, + [1673] = {.lex_state = 958, .external_lex_state = 2}, + [1674] = {.lex_state = 141}, + [1675] = {.lex_state = 958, .external_lex_state = 2}, + [1676] = {.lex_state = 991}, + [1677] = {.lex_state = 981, .external_lex_state = 2}, + [1678] = {.lex_state = 958, .external_lex_state = 2}, + [1679] = {.lex_state = 958, .external_lex_state = 2}, + [1680] = {.lex_state = 958, .external_lex_state = 2}, + [1681] = {.lex_state = 120}, + [1682] = {.lex_state = 958, .external_lex_state = 2}, + [1683] = {.lex_state = 958, .external_lex_state = 2}, + [1684] = {.lex_state = 958, .external_lex_state = 2}, + [1685] = {.lex_state = 958, .external_lex_state = 2}, + [1686] = {.lex_state = 958, .external_lex_state = 2}, + [1687] = {.lex_state = 958, .external_lex_state = 2}, + [1688] = {.lex_state = 958, .external_lex_state = 2}, + [1689] = {.lex_state = 958, .external_lex_state = 2}, + [1690] = {.lex_state = 973, .external_lex_state = 2}, + [1691] = {.lex_state = 958, .external_lex_state = 2}, + [1692] = {.lex_state = 958, .external_lex_state = 2}, + [1693] = {.lex_state = 991}, + [1694] = {.lex_state = 958, .external_lex_state = 2}, + [1695] = {.lex_state = 958, .external_lex_state = 2}, + [1696] = {.lex_state = 958, .external_lex_state = 2}, + [1697] = {.lex_state = 143}, + [1698] = {.lex_state = 958, .external_lex_state = 2}, + [1699] = {.lex_state = 958, .external_lex_state = 2}, + [1700] = {.lex_state = 143}, + [1701] = {.lex_state = 991}, + [1702] = {.lex_state = 991}, + [1703] = {.lex_state = 958, .external_lex_state = 2}, + [1704] = {.lex_state = 958, .external_lex_state = 2}, + [1705] = {.lex_state = 143}, + [1706] = {.lex_state = 958, .external_lex_state = 2}, + [1707] = {.lex_state = 991}, + [1708] = {.lex_state = 958, .external_lex_state = 2}, + [1709] = {.lex_state = 991}, + [1710] = {.lex_state = 991}, + [1711] = {.lex_state = 958, .external_lex_state = 2}, + [1712] = {.lex_state = 958, .external_lex_state = 2}, + [1713] = {.lex_state = 991}, + [1714] = {.lex_state = 991}, + [1715] = {.lex_state = 991}, + [1716] = {.lex_state = 991}, + [1717] = {.lex_state = 991}, + [1718] = {.lex_state = 991}, + [1719] = {.lex_state = 991}, + [1720] = {.lex_state = 958, .external_lex_state = 2}, + [1721] = {.lex_state = 991}, + [1722] = {.lex_state = 143}, + [1723] = {.lex_state = 991}, + [1724] = {.lex_state = 991}, + [1725] = {.lex_state = 958, .external_lex_state = 2}, + [1726] = {.lex_state = 958, .external_lex_state = 2}, + [1727] = {.lex_state = 958, .external_lex_state = 2}, + [1728] = {.lex_state = 958, .external_lex_state = 2}, + [1729] = {.lex_state = 958, .external_lex_state = 2}, + [1730] = {.lex_state = 958, .external_lex_state = 2}, + [1731] = {.lex_state = 991}, + [1732] = {.lex_state = 991}, + [1733] = {.lex_state = 143}, + [1734] = {.lex_state = 958, .external_lex_state = 2}, + [1735] = {.lex_state = 991}, + [1736] = {.lex_state = 991}, + [1737] = {.lex_state = 958, .external_lex_state = 2}, + [1738] = {.lex_state = 991}, + [1739] = {.lex_state = 991}, + [1740] = {.lex_state = 991}, + [1741] = {.lex_state = 34, .external_lex_state = 2}, + [1742] = {.lex_state = 34, .external_lex_state = 2}, + [1743] = {.lex_state = 991}, + [1744] = {.lex_state = 958, .external_lex_state = 2}, + [1745] = {.lex_state = 991}, + [1746] = {.lex_state = 991}, + [1747] = {.lex_state = 958, .external_lex_state = 2}, + [1748] = {.lex_state = 958, .external_lex_state = 2}, + [1749] = {.lex_state = 958, .external_lex_state = 2}, + [1750] = {.lex_state = 958, .external_lex_state = 2}, + [1751] = {.lex_state = 958, .external_lex_state = 2}, + [1752] = {.lex_state = 958, .external_lex_state = 2}, + [1753] = {.lex_state = 958, .external_lex_state = 2}, + [1754] = {.lex_state = 958, .external_lex_state = 2}, + [1755] = {.lex_state = 958, .external_lex_state = 2}, + [1756] = {.lex_state = 991}, + [1757] = {.lex_state = 991}, + [1758] = {.lex_state = 958, .external_lex_state = 2}, + [1759] = {.lex_state = 958, .external_lex_state = 2}, + [1760] = {.lex_state = 958, .external_lex_state = 2}, + [1761] = {.lex_state = 958, .external_lex_state = 2}, + [1762] = {.lex_state = 958, .external_lex_state = 2}, + [1763] = {.lex_state = 958, .external_lex_state = 2}, + [1764] = {.lex_state = 958, .external_lex_state = 2}, + [1765] = {.lex_state = 991}, + [1766] = {.lex_state = 958, .external_lex_state = 2}, + [1767] = {.lex_state = 958, .external_lex_state = 2}, + [1768] = {.lex_state = 958, .external_lex_state = 2}, + [1769] = {.lex_state = 991}, + [1770] = {.lex_state = 958, .external_lex_state = 2}, + [1771] = {.lex_state = 958, .external_lex_state = 2}, + [1772] = {.lex_state = 958, .external_lex_state = 2}, + [1773] = {.lex_state = 958, .external_lex_state = 2}, + [1774] = {.lex_state = 958, .external_lex_state = 2}, + [1775] = {.lex_state = 958, .external_lex_state = 2}, + [1776] = {.lex_state = 958, .external_lex_state = 2}, + [1777] = {.lex_state = 991}, + [1778] = {.lex_state = 958, .external_lex_state = 2}, + [1779] = {.lex_state = 958, .external_lex_state = 2}, + [1780] = {.lex_state = 958, .external_lex_state = 2}, + [1781] = {.lex_state = 958, .external_lex_state = 2}, + [1782] = {.lex_state = 958, .external_lex_state = 2}, + [1783] = {.lex_state = 991}, + [1784] = {.lex_state = 143}, + [1785] = {.lex_state = 958, .external_lex_state = 2}, + [1786] = {.lex_state = 958, .external_lex_state = 2}, + [1787] = {.lex_state = 958, .external_lex_state = 2}, + [1788] = {.lex_state = 958, .external_lex_state = 2}, + [1789] = {.lex_state = 958, .external_lex_state = 2}, + [1790] = {.lex_state = 143}, + [1791] = {.lex_state = 991}, + [1792] = {.lex_state = 958, .external_lex_state = 2}, + [1793] = {.lex_state = 958, .external_lex_state = 2}, + [1794] = {.lex_state = 991}, + [1795] = {.lex_state = 958, .external_lex_state = 2}, + [1796] = {.lex_state = 958, .external_lex_state = 2}, + [1797] = {.lex_state = 958, .external_lex_state = 2}, + [1798] = {.lex_state = 991}, + [1799] = {.lex_state = 991}, + [1800] = {.lex_state = 958, .external_lex_state = 2}, + [1801] = {.lex_state = 991}, + [1802] = {.lex_state = 958, .external_lex_state = 2}, + [1803] = {.lex_state = 991}, + [1804] = {.lex_state = 991}, + [1805] = {.lex_state = 143}, + [1806] = {.lex_state = 958, .external_lex_state = 2}, + [1807] = {.lex_state = 958, .external_lex_state = 2}, + [1808] = {.lex_state = 991}, + [1809] = {.lex_state = 958, .external_lex_state = 2}, + [1810] = {.lex_state = 958, .external_lex_state = 2}, + [1811] = {.lex_state = 958, .external_lex_state = 2}, + [1812] = {.lex_state = 991}, + [1813] = {.lex_state = 143}, + [1814] = {.lex_state = 991}, + [1815] = {.lex_state = 958, .external_lex_state = 2}, + [1816] = {.lex_state = 958, .external_lex_state = 2}, + [1817] = {.lex_state = 143}, + [1818] = {.lex_state = 143}, + [1819] = {.lex_state = 958, .external_lex_state = 2}, + [1820] = {.lex_state = 143}, + [1821] = {.lex_state = 958, .external_lex_state = 2}, + [1822] = {.lex_state = 958, .external_lex_state = 2}, + [1823] = {.lex_state = 991}, + [1824] = {.lex_state = 958, .external_lex_state = 2}, + [1825] = {.lex_state = 958, .external_lex_state = 2}, + [1826] = {.lex_state = 958, .external_lex_state = 2}, + [1827] = {.lex_state = 991}, + [1828] = {.lex_state = 991}, + [1829] = {.lex_state = 958, .external_lex_state = 2}, + [1830] = {.lex_state = 958, .external_lex_state = 2}, + [1831] = {.lex_state = 143}, + [1832] = {.lex_state = 143}, + [1833] = {.lex_state = 958, .external_lex_state = 2}, + [1834] = {.lex_state = 958, .external_lex_state = 2}, + [1835] = {.lex_state = 958, .external_lex_state = 2}, + [1836] = {.lex_state = 143}, + [1837] = {.lex_state = 143}, + [1838] = {.lex_state = 143}, + [1839] = {.lex_state = 991}, + [1840] = {.lex_state = 143}, + [1841] = {.lex_state = 991}, + [1842] = {.lex_state = 991}, + [1843] = {.lex_state = 991}, + [1844] = {.lex_state = 958, .external_lex_state = 2}, + [1845] = {.lex_state = 991}, + [1846] = {.lex_state = 991}, + [1847] = {.lex_state = 991}, + [1848] = {.lex_state = 991}, + [1849] = {.lex_state = 991}, + [1850] = {.lex_state = 991}, + [1851] = {.lex_state = 991}, + [1852] = {.lex_state = 991}, + [1853] = {.lex_state = 991}, + [1854] = {.lex_state = 991}, + [1855] = {.lex_state = 991}, + [1856] = {.lex_state = 991}, + [1857] = {.lex_state = 991}, + [1858] = {.lex_state = 991}, + [1859] = {.lex_state = 991}, + [1860] = {.lex_state = 991}, + [1861] = {.lex_state = 991}, + [1862] = {.lex_state = 991}, + [1863] = {.lex_state = 991}, + [1864] = {.lex_state = 991}, + [1865] = {.lex_state = 991}, + [1866] = {.lex_state = 991}, + [1867] = {.lex_state = 143}, + [1868] = {.lex_state = 143}, + [1869] = {.lex_state = 143}, + [1870] = {.lex_state = 143}, + [1871] = {.lex_state = 143}, + [1872] = {.lex_state = 143}, + [1873] = {.lex_state = 958, .external_lex_state = 2}, + [1874] = {.lex_state = 143}, + [1875] = {.lex_state = 958, .external_lex_state = 2}, + [1876] = {.lex_state = 143}, + [1877] = {.lex_state = 143}, + [1878] = {.lex_state = 143}, + [1879] = {.lex_state = 103}, + [1880] = {.lex_state = 958, .external_lex_state = 2}, + [1881] = {.lex_state = 991}, + [1882] = {.lex_state = 991}, + [1883] = {.lex_state = 103}, + [1884] = {.lex_state = 991}, + [1885] = {.lex_state = 991}, + [1886] = {.lex_state = 958, .external_lex_state = 2}, + [1887] = {.lex_state = 991}, + [1888] = {.lex_state = 143}, + [1889] = {.lex_state = 991}, + [1890] = {.lex_state = 991}, + [1891] = {.lex_state = 991}, + [1892] = {.lex_state = 991}, + [1893] = {.lex_state = 991}, + [1894] = {.lex_state = 991}, + [1895] = {.lex_state = 958, .external_lex_state = 2}, + [1896] = {.lex_state = 991}, + [1897] = {.lex_state = 991}, + [1898] = {.lex_state = 991}, + [1899] = {.lex_state = 121}, + [1900] = {.lex_state = 120}, + [1901] = {.lex_state = 990}, + [1902] = {.lex_state = 991}, + [1903] = {.lex_state = 991}, + [1904] = {.lex_state = 991}, + [1905] = {.lex_state = 121}, + [1906] = {.lex_state = 120}, + [1907] = {.lex_state = 991}, + [1908] = {.lex_state = 121}, + [1909] = {.lex_state = 143}, + [1910] = {.lex_state = 977, .external_lex_state = 2}, + [1911] = {.lex_state = 121}, + [1912] = {.lex_state = 121}, + [1913] = {.lex_state = 102}, + [1914] = {.lex_state = 991}, + [1915] = {.lex_state = 121}, + [1916] = {.lex_state = 121}, + [1917] = {.lex_state = 121}, + [1918] = {.lex_state = 121}, + [1919] = {.lex_state = 121}, + [1920] = {.lex_state = 121}, + [1921] = {.lex_state = 121}, + [1922] = {.lex_state = 990}, + [1923] = {.lex_state = 121}, + [1924] = {.lex_state = 121}, + [1925] = {.lex_state = 991}, + [1926] = {.lex_state = 991}, + [1927] = {.lex_state = 121}, + [1928] = {.lex_state = 121}, + [1929] = {.lex_state = 990}, + [1930] = {.lex_state = 202, .external_lex_state = 2}, + [1931] = {.lex_state = 121}, + [1932] = {.lex_state = 120}, + [1933] = {.lex_state = 121}, + [1934] = {.lex_state = 121}, + [1935] = {.lex_state = 121}, + [1936] = {.lex_state = 121}, + [1937] = {.lex_state = 991}, + [1938] = {.lex_state = 202, .external_lex_state = 2}, + [1939] = {.lex_state = 98, .external_lex_state = 2}, + [1940] = {.lex_state = 98, .external_lex_state = 2}, + [1941] = {.lex_state = 121}, + [1942] = {.lex_state = 121}, + [1943] = {.lex_state = 102}, + [1944] = {.lex_state = 98, .external_lex_state = 2}, + [1945] = {.lex_state = 121}, + [1946] = {.lex_state = 991}, + [1947] = {.lex_state = 121}, + [1948] = {.lex_state = 991}, + [1949] = {.lex_state = 121}, + [1950] = {.lex_state = 121}, + [1951] = {.lex_state = 121}, + [1952] = {.lex_state = 121}, + [1953] = {.lex_state = 121}, + [1954] = {.lex_state = 121}, + [1955] = {.lex_state = 121}, + [1956] = {.lex_state = 143}, + [1957] = {.lex_state = 44, .external_lex_state = 2}, + [1958] = {.lex_state = 121}, + [1959] = {.lex_state = 121}, + [1960] = {.lex_state = 121}, + [1961] = {.lex_state = 121}, + [1962] = {.lex_state = 991}, + [1963] = {.lex_state = 991}, + [1964] = {.lex_state = 991}, + [1965] = {.lex_state = 991}, + [1966] = {.lex_state = 991}, + [1967] = {.lex_state = 98, .external_lex_state = 2}, + [1968] = {.lex_state = 121}, + [1969] = {.lex_state = 121}, + [1970] = {.lex_state = 121}, + [1971] = {.lex_state = 991}, + [1972] = {.lex_state = 121}, + [1973] = {.lex_state = 991}, + [1974] = {.lex_state = 121}, + [1975] = {.lex_state = 977, .external_lex_state = 2}, + [1976] = {.lex_state = 121}, + [1977] = {.lex_state = 121}, + [1978] = {.lex_state = 991}, + [1979] = {.lex_state = 121}, + [1980] = {.lex_state = 991}, + [1981] = {.lex_state = 121}, + [1982] = {.lex_state = 991}, + [1983] = {.lex_state = 44, .external_lex_state = 2}, + [1984] = {.lex_state = 121}, + [1985] = {.lex_state = 121}, + [1986] = {.lex_state = 121}, + [1987] = {.lex_state = 991}, + [1988] = {.lex_state = 121}, + [1989] = {.lex_state = 121}, + [1990] = {.lex_state = 991}, + [1991] = {.lex_state = 121}, + [1992] = {.lex_state = 991}, + [1993] = {.lex_state = 977, .external_lex_state = 2}, + [1994] = {.lex_state = 991}, + [1995] = {.lex_state = 991}, + [1996] = {.lex_state = 990}, + [1997] = {.lex_state = 121}, + [1998] = {.lex_state = 991}, + [1999] = {.lex_state = 202, .external_lex_state = 2}, + [2000] = {.lex_state = 120}, + [2001] = {.lex_state = 121}, + [2002] = {.lex_state = 120}, + [2003] = {.lex_state = 34, .external_lex_state = 2}, + [2004] = {.lex_state = 977, .external_lex_state = 2}, + [2005] = {.lex_state = 120}, + [2006] = {.lex_state = 990}, + [2007] = {.lex_state = 120}, + [2008] = {.lex_state = 34, .external_lex_state = 2}, + [2009] = {.lex_state = 990}, + [2010] = {.lex_state = 121}, + [2011] = {.lex_state = 120}, + [2012] = {.lex_state = 120}, + [2013] = {.lex_state = 120}, + [2014] = {.lex_state = 991}, + [2015] = {.lex_state = 44, .external_lex_state = 2}, + [2016] = {.lex_state = 1049}, + [2017] = {.lex_state = 34, .external_lex_state = 2}, + [2018] = {.lex_state = 991}, + [2019] = {.lex_state = 120}, + [2020] = {.lex_state = 120}, + [2021] = {.lex_state = 977, .external_lex_state = 2}, + [2022] = {.lex_state = 120}, + [2023] = {.lex_state = 120}, + [2024] = {.lex_state = 120}, + [2025] = {.lex_state = 202, .external_lex_state = 2}, + [2026] = {.lex_state = 991}, + [2027] = {.lex_state = 120}, + [2028] = {.lex_state = 121}, + [2029] = {.lex_state = 120}, + [2030] = {.lex_state = 120}, + [2031] = {.lex_state = 120}, + [2032] = {.lex_state = 202, .external_lex_state = 2}, + [2033] = {.lex_state = 120}, + [2034] = {.lex_state = 120}, + [2035] = {.lex_state = 121}, + [2036] = {.lex_state = 991}, + [2037] = {.lex_state = 44, .external_lex_state = 2}, + [2038] = {.lex_state = 1049}, + [2039] = {.lex_state = 34, .external_lex_state = 2}, + [2040] = {.lex_state = 991}, + [2041] = {.lex_state = 34, .external_lex_state = 2}, + [2042] = {.lex_state = 990}, + [2043] = {.lex_state = 34, .external_lex_state = 2}, + [2044] = {.lex_state = 977, .external_lex_state = 2}, + [2045] = {.lex_state = 1049}, + [2046] = {.lex_state = 991}, + [2047] = {.lex_state = 120}, + [2048] = {.lex_state = 1049}, + [2049] = {.lex_state = 120}, + [2050] = {.lex_state = 34, .external_lex_state = 2}, + [2051] = {.lex_state = 991}, + [2052] = {.lex_state = 34, .external_lex_state = 2}, + [2053] = {.lex_state = 121}, + [2054] = {.lex_state = 202, .external_lex_state = 2}, + [2055] = {.lex_state = 990}, + [2056] = {.lex_state = 202, .external_lex_state = 2}, + [2057] = {.lex_state = 202, .external_lex_state = 2}, + [2058] = {.lex_state = 351, .external_lex_state = 2}, + [2059] = {.lex_state = 202, .external_lex_state = 2}, + [2060] = {.lex_state = 120}, + [2061] = {.lex_state = 991}, + [2062] = {.lex_state = 34, .external_lex_state = 2}, + [2063] = {.lex_state = 121}, + [2064] = {.lex_state = 143}, + [2065] = {.lex_state = 991}, + [2066] = {.lex_state = 202, .external_lex_state = 2}, + [2067] = {.lex_state = 34, .external_lex_state = 2}, + [2068] = {.lex_state = 34, .external_lex_state = 2}, + [2069] = {.lex_state = 34, .external_lex_state = 2}, + [2070] = {.lex_state = 977, .external_lex_state = 2}, + [2071] = {.lex_state = 977, .external_lex_state = 2}, + [2072] = {.lex_state = 34, .external_lex_state = 2}, + [2073] = {.lex_state = 143}, + [2074] = {.lex_state = 991}, + [2075] = {.lex_state = 1049}, + [2076] = {.lex_state = 120}, + [2077] = {.lex_state = 349, .external_lex_state = 2}, + [2078] = {.lex_state = 120}, + [2079] = {.lex_state = 990}, + [2080] = {.lex_state = 990}, + [2081] = {.lex_state = 991}, + [2082] = {.lex_state = 991}, + [2083] = {.lex_state = 990}, + [2084] = {.lex_state = 990}, + [2085] = {.lex_state = 990}, + [2086] = {.lex_state = 990}, + [2087] = {.lex_state = 121}, + [2088] = {.lex_state = 121}, + [2089] = {.lex_state = 121}, + [2090] = {.lex_state = 121}, + [2091] = {.lex_state = 121}, + [2092] = {.lex_state = 976, .external_lex_state = 2}, + [2093] = {.lex_state = 121}, + [2094] = {.lex_state = 121}, + [2095] = {.lex_state = 976, .external_lex_state = 2}, + [2096] = {.lex_state = 976, .external_lex_state = 2}, + [2097] = {.lex_state = 121}, + [2098] = {.lex_state = 121}, + [2099] = {.lex_state = 976, .external_lex_state = 2}, + [2100] = {.lex_state = 121}, + [2101] = {.lex_state = 121}, + [2102] = {.lex_state = 121}, + [2103] = {.lex_state = 121}, + [2104] = {.lex_state = 121}, + [2105] = {.lex_state = 121}, + [2106] = {.lex_state = 121}, + [2107] = {.lex_state = 121}, + [2108] = {.lex_state = 121}, + [2109] = {.lex_state = 121}, + [2110] = {.lex_state = 121}, + [2111] = {.lex_state = 121}, + [2112] = {.lex_state = 121}, + [2113] = {.lex_state = 121}, + [2114] = {.lex_state = 121}, + [2115] = {.lex_state = 121}, + [2116] = {.lex_state = 121}, + [2117] = {.lex_state = 121}, + [2118] = {.lex_state = 121}, + [2119] = {.lex_state = 148}, + [2120] = {.lex_state = 148}, + [2121] = {.lex_state = 121}, + [2122] = {.lex_state = 121}, + [2123] = {.lex_state = 121}, + [2124] = {.lex_state = 121}, + [2125] = {.lex_state = 148}, + [2126] = {.lex_state = 148}, + [2127] = {.lex_state = 121}, + [2128] = {.lex_state = 121}, + [2129] = {.lex_state = 121}, + [2130] = {.lex_state = 121}, + [2131] = {.lex_state = 121}, + [2132] = {.lex_state = 143}, + [2133] = {.lex_state = 121}, + [2134] = {.lex_state = 121}, + [2135] = {.lex_state = 121}, + [2136] = {.lex_state = 143}, + [2137] = {.lex_state = 143}, + [2138] = {.lex_state = 121}, + [2139] = {.lex_state = 1049}, + [2140] = {.lex_state = 121}, + [2141] = {.lex_state = 121}, + [2142] = {.lex_state = 223, .external_lex_state = 2}, + [2143] = {.lex_state = 110}, + [2144] = {.lex_state = 121}, + [2145] = {.lex_state = 121}, + [2146] = {.lex_state = 121}, + [2147] = {.lex_state = 990}, + [2148] = {.lex_state = 121}, + [2149] = {.lex_state = 121}, + [2150] = {.lex_state = 121}, + [2151] = {.lex_state = 991}, + [2152] = {.lex_state = 121}, + [2153] = {.lex_state = 121}, [2154] = {.lex_state = 990}, - [2155] = {.lex_state = 118}, - [2156] = {.lex_state = 118}, - [2157] = {.lex_state = 118}, - [2158] = {.lex_state = 341}, - [2159] = {.lex_state = 95}, - [2160] = {.lex_state = 95}, - [2161] = {.lex_state = 118}, - [2162] = {.lex_state = 145}, - [2163] = {.lex_state = 118}, - [2164] = {.lex_state = 118}, - [2165] = {.lex_state = 118}, - [2166] = {.lex_state = 118}, - [2167] = {.lex_state = 145}, - [2168] = {.lex_state = 118}, - [2169] = {.lex_state = 118}, - [2170] = {.lex_state = 118}, - [2171] = {.lex_state = 118}, - [2172] = {.lex_state = 118}, - [2173] = {.lex_state = 118}, - [2174] = {.lex_state = 118}, - [2175] = {.lex_state = 118}, - [2176] = {.lex_state = 118}, - [2177] = {.lex_state = 118}, - [2178] = {.lex_state = 118}, - [2179] = {.lex_state = 118}, - [2180] = {.lex_state = 118}, - [2181] = {.lex_state = 349}, - [2182] = {.lex_state = 118}, - [2183] = {.lex_state = 118}, - [2184] = {.lex_state = 118}, - [2185] = {.lex_state = 118}, - [2186] = {.lex_state = 118}, - [2187] = {.lex_state = 990}, - [2188] = {.lex_state = 118}, - [2189] = {.lex_state = 990}, - [2190] = {.lex_state = 990}, - [2191] = {.lex_state = 990}, - [2192] = {.lex_state = 990}, - [2193] = {.lex_state = 990}, - [2194] = {.lex_state = 990}, - [2195] = {.lex_state = 118}, - [2196] = {.lex_state = 118}, - [2197] = {.lex_state = 118}, - [2198] = {.lex_state = 118}, - [2199] = {.lex_state = 118}, - [2200] = {.lex_state = 118}, - [2201] = {.lex_state = 990}, - [2202] = {.lex_state = 990}, - [2203] = {.lex_state = 118}, - [2204] = {.lex_state = 118}, - [2205] = {.lex_state = 1053}, - [2206] = {.lex_state = 118}, - [2207] = {.lex_state = 1045}, - [2208] = {.lex_state = 990}, - [2209] = {.lex_state = 118}, - [2210] = {.lex_state = 118}, - [2211] = {.lex_state = 118}, - [2212] = {.lex_state = 118}, - [2213] = {.lex_state = 118}, - [2214] = {.lex_state = 118}, + [2155] = {.lex_state = 121}, + [2156] = {.lex_state = 121}, + [2157] = {.lex_state = 121}, + [2158] = {.lex_state = 348, .external_lex_state = 2}, + [2159] = {.lex_state = 121}, + [2160] = {.lex_state = 1044}, + [2161] = {.lex_state = 1053}, + [2162] = {.lex_state = 1053}, + [2163] = {.lex_state = 121}, + [2164] = {.lex_state = 121}, + [2165] = {.lex_state = 121}, + [2166] = {.lex_state = 990}, + [2167] = {.lex_state = 1045}, + [2168] = {.lex_state = 1045}, + [2169] = {.lex_state = 121}, + [2170] = {.lex_state = 121}, + [2171] = {.lex_state = 121}, + [2172] = {.lex_state = 121}, + [2173] = {.lex_state = 990}, + [2174] = {.lex_state = 990}, + [2175] = {.lex_state = 348, .external_lex_state = 2}, + [2176] = {.lex_state = 121}, + [2177] = {.lex_state = 121}, + [2178] = {.lex_state = 121}, + [2179] = {.lex_state = 121}, + [2180] = {.lex_state = 121}, + [2181] = {.lex_state = 121}, + [2182] = {.lex_state = 121}, + [2183] = {.lex_state = 121}, + [2184] = {.lex_state = 121}, + [2185] = {.lex_state = 121}, + [2186] = {.lex_state = 121}, + [2187] = {.lex_state = 121}, + [2188] = {.lex_state = 121}, + [2189] = {.lex_state = 121}, + [2190] = {.lex_state = 121}, + [2191] = {.lex_state = 121}, + [2192] = {.lex_state = 121}, + [2193] = {.lex_state = 1053}, + [2194] = {.lex_state = 121}, + [2195] = {.lex_state = 148}, + [2196] = {.lex_state = 121}, + [2197] = {.lex_state = 121}, + [2198] = {.lex_state = 121}, + [2199] = {.lex_state = 121}, + [2200] = {.lex_state = 121}, + [2201] = {.lex_state = 121}, + [2202] = {.lex_state = 121}, + [2203] = {.lex_state = 121}, + [2204] = {.lex_state = 121}, + [2205] = {.lex_state = 121}, + [2206] = {.lex_state = 121}, + [2207] = {.lex_state = 121}, + [2208] = {.lex_state = 121}, + [2209] = {.lex_state = 121}, + [2210] = {.lex_state = 121}, + [2211] = {.lex_state = 121}, + [2212] = {.lex_state = 121}, + [2213] = {.lex_state = 121}, + [2214] = {.lex_state = 121}, [2215] = {.lex_state = 990}, - [2216] = {.lex_state = 118}, - [2217] = {.lex_state = 1045}, - [2218] = {.lex_state = 118}, - [2219] = {.lex_state = 990}, - [2220] = {.lex_state = 118}, - [2221] = {.lex_state = 118}, - [2222] = {.lex_state = 97}, - [2223] = {.lex_state = 118}, - [2224] = {.lex_state = 37}, - [2225] = {.lex_state = 118}, - [2226] = {.lex_state = 974}, - [2227] = {.lex_state = 974}, - [2228] = {.lex_state = 974}, - [2229] = {.lex_state = 118}, - [2230] = {.lex_state = 37}, - [2231] = {.lex_state = 974}, - [2232] = {.lex_state = 990}, - [2233] = {.lex_state = 974}, - [2234] = {.lex_state = 118}, - [2235] = {.lex_state = 118}, - [2236] = {.lex_state = 118}, - [2237] = {.lex_state = 990}, - [2238] = {.lex_state = 118}, - [2239] = {.lex_state = 118}, - [2240] = {.lex_state = 142}, - [2241] = {.lex_state = 142}, + [2216] = {.lex_state = 990}, + [2217] = {.lex_state = 990}, + [2218] = {.lex_state = 1049}, + [2219] = {.lex_state = 976, .external_lex_state = 2}, + [2220] = {.lex_state = 976, .external_lex_state = 2}, + [2221] = {.lex_state = 1049}, + [2222] = {.lex_state = 990}, + [2223] = {.lex_state = 990}, + [2224] = {.lex_state = 121}, + [2225] = {.lex_state = 121}, + [2226] = {.lex_state = 121}, + [2227] = {.lex_state = 121}, + [2228] = {.lex_state = 121}, + [2229] = {.lex_state = 977, .external_lex_state = 2}, + [2230] = {.lex_state = 121}, + [2231] = {.lex_state = 1049}, + [2232] = {.lex_state = 1049}, + [2233] = {.lex_state = 121}, + [2234] = {.lex_state = 121}, + [2235] = {.lex_state = 121}, + [2236] = {.lex_state = 121}, + [2237] = {.lex_state = 121}, + [2238] = {.lex_state = 121}, + [2239] = {.lex_state = 977, .external_lex_state = 2}, + [2240] = {.lex_state = 121}, + [2241] = {.lex_state = 121}, [2242] = {.lex_state = 990}, - [2243] = {.lex_state = 118}, - [2244] = {.lex_state = 118}, - [2245] = {.lex_state = 118}, - [2246] = {.lex_state = 118}, - [2247] = {.lex_state = 118}, - [2248] = {.lex_state = 118}, - [2249] = {.lex_state = 1044}, - [2250] = {.lex_state = 990}, - [2251] = {.lex_state = 118}, - [2252] = {.lex_state = 118}, - [2253] = {.lex_state = 118}, - [2254] = {.lex_state = 975}, - [2255] = {.lex_state = 118}, - [2256] = {.lex_state = 118}, - [2257] = {.lex_state = 118}, - [2258] = {.lex_state = 118}, - [2259] = {.lex_state = 118}, - [2260] = {.lex_state = 118}, - [2261] = {.lex_state = 118}, - [2262] = {.lex_state = 118}, - [2263] = {.lex_state = 990}, - [2264] = {.lex_state = 118}, - [2265] = {.lex_state = 118}, - [2266] = {.lex_state = 118}, - [2267] = {.lex_state = 990}, - [2268] = {.lex_state = 118}, - [2269] = {.lex_state = 118}, - [2270] = {.lex_state = 118}, - [2271] = {.lex_state = 118}, - [2272] = {.lex_state = 37}, - [2273] = {.lex_state = 118}, - [2274] = {.lex_state = 118}, - [2275] = {.lex_state = 118}, - [2276] = {.lex_state = 118}, - [2277] = {.lex_state = 118}, - [2278] = {.lex_state = 118}, - [2279] = {.lex_state = 118}, - [2280] = {.lex_state = 118}, - [2281] = {.lex_state = 118}, - [2282] = {.lex_state = 118}, - [2283] = {.lex_state = 37}, - [2284] = {.lex_state = 118}, - [2285] = {.lex_state = 118}, - [2286] = {.lex_state = 37}, - [2287] = {.lex_state = 39}, - [2288] = {.lex_state = 39}, - [2289] = {.lex_state = 118}, - [2290] = {.lex_state = 346}, - [2291] = {.lex_state = 39}, - [2292] = {.lex_state = 118}, - [2293] = {.lex_state = 118}, - [2294] = {.lex_state = 118}, - [2295] = {.lex_state = 118}, - [2296] = {.lex_state = 39}, - [2297] = {.lex_state = 990}, - [2298] = {.lex_state = 118}, - [2299] = {.lex_state = 118}, - [2300] = {.lex_state = 118}, - [2301] = {.lex_state = 118}, + [2243] = {.lex_state = 990}, + [2244] = {.lex_state = 990}, + [2245] = {.lex_state = 121}, + [2246] = {.lex_state = 990}, + [2247] = {.lex_state = 990}, + [2248] = {.lex_state = 990}, + [2249] = {.lex_state = 121}, + [2250] = {.lex_state = 121}, + [2251] = {.lex_state = 121}, + [2252] = {.lex_state = 202, .external_lex_state = 2}, + [2253] = {.lex_state = 121}, + [2254] = {.lex_state = 121}, + [2255] = {.lex_state = 350, .external_lex_state = 2}, + [2256] = {.lex_state = 121}, + [2257] = {.lex_state = 121}, + [2258] = {.lex_state = 121}, + [2259] = {.lex_state = 121}, + [2260] = {.lex_state = 121}, + [2261] = {.lex_state = 121}, + [2262] = {.lex_state = 121}, + [2263] = {.lex_state = 202, .external_lex_state = 2}, + [2264] = {.lex_state = 121}, + [2265] = {.lex_state = 1045}, + [2266] = {.lex_state = 121}, + [2267] = {.lex_state = 350, .external_lex_state = 2}, + [2268] = {.lex_state = 121}, + [2269] = {.lex_state = 1045}, + [2270] = {.lex_state = 121}, + [2271] = {.lex_state = 990}, + [2272] = {.lex_state = 144}, + [2273] = {.lex_state = 202, .external_lex_state = 2}, + [2274] = {.lex_state = 121}, + [2275] = {.lex_state = 121}, + [2276] = {.lex_state = 121}, + [2277] = {.lex_state = 121}, + [2278] = {.lex_state = 121}, + [2279] = {.lex_state = 121}, + [2280] = {.lex_state = 151}, + [2281] = {.lex_state = 121}, + [2282] = {.lex_state = 121}, + [2283] = {.lex_state = 121}, + [2284] = {.lex_state = 121}, + [2285] = {.lex_state = 257, .external_lex_state = 2}, + [2286] = {.lex_state = 248, .external_lex_state = 2}, + [2287] = {.lex_state = 350, .external_lex_state = 2}, + [2288] = {.lex_state = 121}, + [2289] = {.lex_state = 121}, + [2290] = {.lex_state = 121}, + [2291] = {.lex_state = 121}, + [2292] = {.lex_state = 121}, + [2293] = {.lex_state = 121}, + [2294] = {.lex_state = 121}, + [2295] = {.lex_state = 121}, + [2296] = {.lex_state = 151}, + [2297] = {.lex_state = 121}, + [2298] = {.lex_state = 121}, + [2299] = {.lex_state = 121}, + [2300] = {.lex_state = 100}, + [2301] = {.lex_state = 121}, [2302] = {.lex_state = 990}, - [2303] = {.lex_state = 37}, - [2304] = {.lex_state = 39}, - [2305] = {.lex_state = 118}, - [2306] = {.lex_state = 118}, - [2307] = {.lex_state = 118}, - [2308] = {.lex_state = 118}, - [2309] = {.lex_state = 118}, - [2310] = {.lex_state = 39}, - [2311] = {.lex_state = 39}, - [2312] = {.lex_state = 39}, - [2313] = {.lex_state = 141}, - [2314] = {.lex_state = 1045}, - [2315] = {.lex_state = 1045}, - [2316] = {.lex_state = 39}, - [2317] = {.lex_state = 118}, - [2318] = {.lex_state = 118}, - [2319] = {.lex_state = 217}, - [2320] = {.lex_state = 118}, - [2321] = {.lex_state = 118}, - [2322] = {.lex_state = 1053}, - [2323] = {.lex_state = 118}, - [2324] = {.lex_state = 118}, - [2325] = {.lex_state = 118}, - [2326] = {.lex_state = 118}, - [2327] = {.lex_state = 118}, - [2328] = {.lex_state = 118}, - [2329] = {.lex_state = 118}, - [2330] = {.lex_state = 990}, - [2331] = {.lex_state = 118}, - [2332] = {.lex_state = 118}, - [2333] = {.lex_state = 990}, - [2334] = {.lex_state = 118}, - [2335] = {.lex_state = 118}, - [2336] = {.lex_state = 118}, - [2337] = {.lex_state = 118}, - [2338] = {.lex_state = 39}, - [2339] = {.lex_state = 39}, - [2340] = {.lex_state = 39}, - [2341] = {.lex_state = 118}, - [2342] = {.lex_state = 118}, - [2343] = {.lex_state = 346}, - [2344] = {.lex_state = 118}, - [2345] = {.lex_state = 118}, - [2346] = {.lex_state = 118}, - [2347] = {.lex_state = 118}, - [2348] = {.lex_state = 118}, - [2349] = {.lex_state = 118}, - [2350] = {.lex_state = 118}, - [2351] = {.lex_state = 39}, - [2352] = {.lex_state = 118}, - [2353] = {.lex_state = 118}, - [2354] = {.lex_state = 118}, - [2355] = {.lex_state = 148}, - [2356] = {.lex_state = 1053}, - [2357] = {.lex_state = 148}, - [2358] = {.lex_state = 1053}, - [2359] = {.lex_state = 148}, - [2360] = {.lex_state = 118}, - [2361] = {.lex_state = 1053}, - [2362] = {.lex_state = 118}, - [2363] = {.lex_state = 990}, - [2364] = {.lex_state = 118}, - [2365] = {.lex_state = 118}, - [2366] = {.lex_state = 118}, - [2367] = {.lex_state = 118}, - [2368] = {.lex_state = 118}, - [2369] = {.lex_state = 990}, - [2370] = {.lex_state = 118}, - [2371] = {.lex_state = 118}, - [2372] = {.lex_state = 37}, - [2373] = {.lex_state = 118}, - [2374] = {.lex_state = 37}, - [2375] = {.lex_state = 37}, - [2376] = {.lex_state = 37}, - [2377] = {.lex_state = 118}, - [2378] = {.lex_state = 118}, - [2379] = {.lex_state = 118}, - [2380] = {.lex_state = 118}, - [2381] = {.lex_state = 975}, - [2382] = {.lex_state = 97}, - [2383] = {.lex_state = 990}, - [2384] = {.lex_state = 990}, - [2385] = {.lex_state = 990}, - [2386] = {.lex_state = 990}, - [2387] = {.lex_state = 215}, - [2388] = {.lex_state = 990}, - [2389] = {.lex_state = 261}, - [2390] = {.lex_state = 990}, - [2391] = {.lex_state = 251}, - [2392] = {.lex_state = 990}, - [2393] = {.lex_state = 242}, - [2394] = {.lex_state = 348}, - [2395] = {.lex_state = 348}, - [2396] = {.lex_state = 990}, - [2397] = {.lex_state = 348}, - [2398] = {.lex_state = 990}, - [2399] = {.lex_state = 990}, - [2400] = {.lex_state = 990}, - [2401] = {.lex_state = 348}, - [2402] = {.lex_state = 990}, - [2403] = {.lex_state = 990}, - [2404] = {.lex_state = 974}, - [2405] = {.lex_state = 974}, - [2406] = {.lex_state = 974}, - [2407] = {.lex_state = 990}, - [2408] = {.lex_state = 990}, - [2409] = {.lex_state = 990}, - [2410] = {.lex_state = 990}, - [2411] = {.lex_state = 990}, - [2412] = {.lex_state = 990}, + [2303] = {.lex_state = 121}, + [2304] = {.lex_state = 121}, + [2305] = {.lex_state = 121}, + [2306] = {.lex_state = 121}, + [2307] = {.lex_state = 121}, + [2308] = {.lex_state = 350, .external_lex_state = 2}, + [2309] = {.lex_state = 121}, + [2310] = {.lex_state = 121}, + [2311] = {.lex_state = 121}, + [2312] = {.lex_state = 121}, + [2313] = {.lex_state = 121}, + [2314] = {.lex_state = 202, .external_lex_state = 2}, + [2315] = {.lex_state = 121}, + [2316] = {.lex_state = 121}, + [2317] = {.lex_state = 121}, + [2318] = {.lex_state = 121}, + [2319] = {.lex_state = 121}, + [2320] = {.lex_state = 350, .external_lex_state = 2}, + [2321] = {.lex_state = 121}, + [2322] = {.lex_state = 121}, + [2323] = {.lex_state = 121}, + [2324] = {.lex_state = 121}, + [2325] = {.lex_state = 121}, + [2326] = {.lex_state = 121}, + [2327] = {.lex_state = 121}, + [2328] = {.lex_state = 121}, + [2329] = {.lex_state = 1044}, + [2330] = {.lex_state = 121}, + [2331] = {.lex_state = 121}, + [2332] = {.lex_state = 121}, + [2333] = {.lex_state = 121}, + [2334] = {.lex_state = 121}, + [2335] = {.lex_state = 121}, + [2336] = {.lex_state = 121}, + [2337] = {.lex_state = 202, .external_lex_state = 2}, + [2338] = {.lex_state = 121}, + [2339] = {.lex_state = 121}, + [2340] = {.lex_state = 222, .external_lex_state = 2}, + [2341] = {.lex_state = 990}, + [2342] = {.lex_state = 121}, + [2343] = {.lex_state = 121}, + [2344] = {.lex_state = 151}, + [2345] = {.lex_state = 121}, + [2346] = {.lex_state = 121}, + [2347] = {.lex_state = 121}, + [2348] = {.lex_state = 1053}, + [2349] = {.lex_state = 121}, + [2350] = {.lex_state = 1053}, + [2351] = {.lex_state = 121}, + [2352] = {.lex_state = 121}, + [2353] = {.lex_state = 121}, + [2354] = {.lex_state = 121}, + [2355] = {.lex_state = 121}, + [2356] = {.lex_state = 121}, + [2357] = {.lex_state = 121}, + [2358] = {.lex_state = 121}, + [2359] = {.lex_state = 121}, + [2360] = {.lex_state = 222, .external_lex_state = 2}, + [2361] = {.lex_state = 121}, + [2362] = {.lex_state = 121}, + [2363] = {.lex_state = 121}, + [2364] = {.lex_state = 121}, + [2365] = {.lex_state = 121}, + [2366] = {.lex_state = 976, .external_lex_state = 2}, + [2367] = {.lex_state = 121}, + [2368] = {.lex_state = 976, .external_lex_state = 2}, + [2369] = {.lex_state = 976, .external_lex_state = 2}, + [2370] = {.lex_state = 202, .external_lex_state = 2}, + [2371] = {.lex_state = 976, .external_lex_state = 2}, + [2372] = {.lex_state = 145}, + [2373] = {.lex_state = 1053}, + [2374] = {.lex_state = 202, .external_lex_state = 2}, + [2375] = {.lex_state = 202, .external_lex_state = 2}, + [2376] = {.lex_state = 202, .external_lex_state = 2}, + [2377] = {.lex_state = 977, .external_lex_state = 2}, + [2378] = {.lex_state = 202, .external_lex_state = 2}, + [2379] = {.lex_state = 100}, + [2380] = {.lex_state = 121}, + [2381] = {.lex_state = 121}, + [2382] = {.lex_state = 145}, + [2383] = {.lex_state = 202, .external_lex_state = 2}, + [2384] = {.lex_state = 121}, + [2385] = {.lex_state = 121}, + [2386] = {.lex_state = 121}, + [2387] = {.lex_state = 202, .external_lex_state = 2}, + [2388] = {.lex_state = 977, .external_lex_state = 2}, + [2389] = {.lex_state = 977, .external_lex_state = 2}, + [2390] = {.lex_state = 121}, + [2391] = {.lex_state = 121}, + [2392] = {.lex_state = 121}, + [2393] = {.lex_state = 121}, + [2394] = {.lex_state = 1053}, + [2395] = {.lex_state = 121}, + [2396] = {.lex_state = 202, .external_lex_state = 2}, + [2397] = {.lex_state = 121}, + [2398] = {.lex_state = 1045}, + [2399] = {.lex_state = 1045}, + [2400] = {.lex_state = 121}, + [2401] = {.lex_state = 121}, + [2402] = {.lex_state = 121}, + [2403] = {.lex_state = 121}, + [2404] = {.lex_state = 121}, + [2405] = {.lex_state = 267, .external_lex_state = 2}, + [2406] = {.lex_state = 121}, + [2407] = {.lex_state = 221, .external_lex_state = 2}, + [2408] = {.lex_state = 121}, + [2409] = {.lex_state = 121}, + [2410] = {.lex_state = 121}, + [2411] = {.lex_state = 121}, + [2412] = {.lex_state = 121}, [2413] = {.lex_state = 990}, - [2414] = {.lex_state = 990}, + [2414] = {.lex_state = 121}, [2415] = {.lex_state = 990}, - [2416] = {.lex_state = 990}, - [2417] = {.lex_state = 990}, + [2416] = {.lex_state = 976, .external_lex_state = 2}, + [2417] = {.lex_state = 976, .external_lex_state = 2}, [2418] = {.lex_state = 990}, - [2419] = {.lex_state = 990}, + [2419] = {.lex_state = 121}, [2420] = {.lex_state = 990}, - [2421] = {.lex_state = 990}, + [2421] = {.lex_state = 121}, [2422] = {.lex_state = 990}, [2423] = {.lex_state = 990}, [2424] = {.lex_state = 990}, - [2425] = {.lex_state = 990}, + [2425] = {.lex_state = 1053}, [2426] = {.lex_state = 990}, [2427] = {.lex_state = 990}, - [2428] = {.lex_state = 990}, + [2428] = {.lex_state = 121}, [2429] = {.lex_state = 990}, - [2430] = {.lex_state = 990}, - [2431] = {.lex_state = 990}, - [2432] = {.lex_state = 990}, - [2433] = {.lex_state = 990}, - [2434] = {.lex_state = 990}, - [2435] = {.lex_state = 990}, - [2436] = {.lex_state = 975}, - [2437] = {.lex_state = 990}, + [2430] = {.lex_state = 979, .external_lex_state = 2}, + [2431] = {.lex_state = 979, .external_lex_state = 2}, + [2432] = {.lex_state = 979, .external_lex_state = 2}, + [2433] = {.lex_state = 979, .external_lex_state = 2}, + [2434] = {.lex_state = 250, .external_lex_state = 2}, + [2435] = {.lex_state = 250, .external_lex_state = 2}, + [2436] = {.lex_state = 990}, + [2437] = {.lex_state = 202, .external_lex_state = 2}, [2438] = {.lex_state = 990}, - [2439] = {.lex_state = 990}, + [2439] = {.lex_state = 265, .external_lex_state = 2}, [2440] = {.lex_state = 990}, [2441] = {.lex_state = 990}, - [2442] = {.lex_state = 990}, - [2443] = {.lex_state = 990}, - [2444] = {.lex_state = 990}, - [2445] = {.lex_state = 975}, - [2446] = {.lex_state = 975}, - [2447] = {.lex_state = 990}, - [2448] = {.lex_state = 990}, - [2449] = {.lex_state = 990}, - [2450] = {.lex_state = 990}, - [2451] = {.lex_state = 990}, - [2452] = {.lex_state = 990}, + [2442] = {.lex_state = 202, .external_lex_state = 2}, + [2443] = {.lex_state = 202, .external_lex_state = 2}, + [2444] = {.lex_state = 202, .external_lex_state = 2}, + [2445] = {.lex_state = 202, .external_lex_state = 2}, + [2446] = {.lex_state = 202, .external_lex_state = 2}, + [2447] = {.lex_state = 202, .external_lex_state = 2}, + [2448] = {.lex_state = 979, .external_lex_state = 2}, + [2449] = {.lex_state = 979, .external_lex_state = 2}, + [2450] = {.lex_state = 979, .external_lex_state = 2}, + [2451] = {.lex_state = 202, .external_lex_state = 2}, + [2452] = {.lex_state = 202, .external_lex_state = 2}, [2453] = {.lex_state = 990}, - [2454] = {.lex_state = 974}, - [2455] = {.lex_state = 974}, - [2456] = {.lex_state = 990}, - [2457] = {.lex_state = 348}, - [2458] = {.lex_state = 216}, - [2459] = {.lex_state = 990}, + [2454] = {.lex_state = 979, .external_lex_state = 2}, + [2455] = {.lex_state = 979, .external_lex_state = 2}, + [2456] = {.lex_state = 251, .external_lex_state = 2}, + [2457] = {.lex_state = 202, .external_lex_state = 2}, + [2458] = {.lex_state = 990}, + [2459] = {.lex_state = 202, .external_lex_state = 2}, [2460] = {.lex_state = 990}, - [2461] = {.lex_state = 990}, + [2461] = {.lex_state = 202, .external_lex_state = 2}, [2462] = {.lex_state = 990}, - [2463] = {.lex_state = 216}, + [2463] = {.lex_state = 990}, [2464] = {.lex_state = 990}, [2465] = {.lex_state = 990}, - [2466] = {.lex_state = 990}, - [2467] = {.lex_state = 990}, - [2468] = {.lex_state = 990}, - [2469] = {.lex_state = 990}, - [2470] = {.lex_state = 990}, - [2471] = {.lex_state = 990}, - [2472] = {.lex_state = 341}, - [2473] = {.lex_state = 973}, - [2474] = {.lex_state = 973}, - [2475] = {.lex_state = 260}, - [2476] = {.lex_state = 973}, - [2477] = {.lex_state = 341}, - [2478] = {.lex_state = 975}, - [2479] = {.lex_state = 214}, - [2480] = {.lex_state = 973}, - [2481] = {.lex_state = 341}, - [2482] = {.lex_state = 341}, - [2483] = {.lex_state = 973}, - [2484] = {.lex_state = 973}, - [2485] = {.lex_state = 259}, - [2486] = {.lex_state = 973}, - [2487] = {.lex_state = 341}, - [2488] = {.lex_state = 341}, - [2489] = {.lex_state = 341}, - [2490] = {.lex_state = 973}, - [2491] = {.lex_state = 244}, - [2492] = {.lex_state = 341}, - [2493] = {.lex_state = 245}, - [2494] = {.lex_state = 37}, - [2495] = {.lex_state = 37}, - [2496] = {.lex_state = 975}, - [2497] = {.lex_state = 975}, - [2498] = {.lex_state = 973}, - [2499] = {.lex_state = 973}, - [2500] = {.lex_state = 37}, - [2501] = {.lex_state = 973}, - [2502] = {.lex_state = 973}, - [2503] = {.lex_state = 214}, - [2504] = {.lex_state = 973}, - [2505] = {.lex_state = 244}, - [2506] = {.lex_state = 973}, - [2507] = {.lex_state = 37}, - [2508] = {.lex_state = 37}, - [2509] = {.lex_state = 973}, - [2510] = {.lex_state = 260}, - [2511] = {.lex_state = 973}, - [2512] = {.lex_state = 260}, - [2513] = {.lex_state = 260}, - [2514] = {.lex_state = 37}, - [2515] = {.lex_state = 340}, - [2516] = {.lex_state = 37}, - [2517] = {.lex_state = 340}, - [2518] = {.lex_state = 37}, - [2519] = {.lex_state = 973}, - [2520] = {.lex_state = 973}, - [2521] = {.lex_state = 973}, - [2522] = {.lex_state = 37}, - [2523] = {.lex_state = 37}, - [2524] = {.lex_state = 340}, - [2525] = {.lex_state = 340}, - [2526] = {.lex_state = 340}, - [2527] = {.lex_state = 340}, - [2528] = {.lex_state = 37}, - [2529] = {.lex_state = 37}, - [2530] = {.lex_state = 973}, - [2531] = {.lex_state = 973}, - [2532] = {.lex_state = 973}, - [2533] = {.lex_state = 37}, - [2534] = {.lex_state = 340}, - [2535] = {.lex_state = 340}, - [2536] = {.lex_state = 340}, - [2537] = {.lex_state = 340}, - [2538] = {.lex_state = 340}, - [2539] = {.lex_state = 37}, - [2540] = {.lex_state = 37}, - [2541] = {.lex_state = 340}, - [2542] = {.lex_state = 245}, - [2543] = {.lex_state = 340}, - [2544] = {.lex_state = 340}, - [2545] = {.lex_state = 340}, - [2546] = {.lex_state = 340}, - [2547] = {.lex_state = 37}, - [2548] = {.lex_state = 340}, - [2549] = {.lex_state = 37}, - [2550] = {.lex_state = 973}, - [2551] = {.lex_state = 37}, - [2552] = {.lex_state = 973}, - [2553] = {.lex_state = 37}, - [2554] = {.lex_state = 315}, - [2555] = {.lex_state = 340}, - [2556] = {.lex_state = 315}, - [2557] = {.lex_state = 973}, - [2558] = {.lex_state = 973}, - [2559] = {.lex_state = 37}, - [2560] = {.lex_state = 37}, - [2561] = {.lex_state = 37}, - [2562] = {.lex_state = 258}, - [2563] = {.lex_state = 37}, - [2564] = {.lex_state = 37}, - [2565] = {.lex_state = 37}, - [2566] = {.lex_state = 37}, - [2567] = {.lex_state = 37}, - [2568] = {.lex_state = 245}, - [2569] = {.lex_state = 340}, - [2570] = {.lex_state = 37}, - [2571] = {.lex_state = 37}, - [2572] = {.lex_state = 245}, - [2573] = {.lex_state = 37}, - [2574] = {.lex_state = 330}, - [2575] = {.lex_state = 37}, - [2576] = {.lex_state = 258}, - [2577] = {.lex_state = 258}, - [2578] = {.lex_state = 258}, - [2579] = {.lex_state = 252}, - [2580] = {.lex_state = 37}, - [2581] = {.lex_state = 340}, - [2582] = {.lex_state = 973}, - [2583] = {.lex_state = 340}, - [2584] = {.lex_state = 321}, - [2585] = {.lex_state = 340}, - [2586] = {.lex_state = 37}, - [2587] = {.lex_state = 973}, - [2588] = {.lex_state = 243}, - [2589] = {.lex_state = 37}, - [2590] = {.lex_state = 37}, - [2591] = {.lex_state = 37}, - [2592] = {.lex_state = 340}, - [2593] = {.lex_state = 315}, - [2594] = {.lex_state = 245}, - [2595] = {.lex_state = 323}, - [2596] = {.lex_state = 340}, - [2597] = {.lex_state = 323}, - [2598] = {.lex_state = 246}, - [2599] = {.lex_state = 302}, - [2600] = {.lex_state = 246}, - [2601] = {.lex_state = 922}, - [2602] = {.lex_state = 302}, - [2603] = {.lex_state = 922}, - [2604] = {.lex_state = 340}, - [2605] = {.lex_state = 315}, - [2606] = {.lex_state = 315}, - [2607] = {.lex_state = 302}, - [2608] = {.lex_state = 339}, - [2609] = {.lex_state = 338}, - [2610] = {.lex_state = 302}, - [2611] = {.lex_state = 313}, - [2612] = {.lex_state = 313}, - [2613] = {.lex_state = 313}, - [2614] = {.lex_state = 338}, - [2615] = {.lex_state = 338}, - [2616] = {.lex_state = 302}, - [2617] = {.lex_state = 206}, - [2618] = {.lex_state = 338}, - [2619] = {.lex_state = 338}, - [2620] = {.lex_state = 338}, - [2621] = {.lex_state = 206}, - [2622] = {.lex_state = 206}, - [2623] = {.lex_state = 338}, - [2624] = {.lex_state = 339}, - [2625] = {.lex_state = 339}, - [2626] = {.lex_state = 37}, - [2627] = {.lex_state = 324}, - [2628] = {.lex_state = 312}, - [2629] = {.lex_state = 342}, - [2630] = {.lex_state = 206}, - [2631] = {.lex_state = 339}, - [2632] = {.lex_state = 922}, - [2633] = {.lex_state = 324}, - [2634] = {.lex_state = 922}, - [2635] = {.lex_state = 922}, - [2636] = {.lex_state = 324}, - [2637] = {.lex_state = 324}, - [2638] = {.lex_state = 338}, - [2639] = {.lex_state = 338}, - [2640] = {.lex_state = 324}, - [2641] = {.lex_state = 331}, - [2642] = {.lex_state = 922}, - [2643] = {.lex_state = 247}, - [2644] = {.lex_state = 322}, - [2645] = {.lex_state = 247}, - [2646] = {.lex_state = 247}, - [2647] = {.lex_state = 247}, - [2648] = {.lex_state = 41}, - [2649] = {.lex_state = 314}, - [2650] = {.lex_state = 313}, - [2651] = {.lex_state = 313}, - [2652] = {.lex_state = 247}, - [2653] = {.lex_state = 247}, - [2654] = {.lex_state = 316}, - [2655] = {.lex_state = 922}, - [2656] = {.lex_state = 339}, - [2657] = {.lex_state = 206}, - [2658] = {.lex_state = 340}, - [2659] = {.lex_state = 303}, - [2660] = {.lex_state = 357}, - [2661] = {.lex_state = 319}, - [2662] = {.lex_state = 357}, - [2663] = {.lex_state = 922}, - [2664] = {.lex_state = 310}, - [2665] = {.lex_state = 204}, - [2666] = {.lex_state = 338}, - [2667] = {.lex_state = 310}, - [2668] = {.lex_state = 206}, - [2669] = {.lex_state = 955}, - [2670] = {.lex_state = 253}, - [2671] = {.lex_state = 955}, - [2672] = {.lex_state = 340}, - [2673] = {.lex_state = 206}, - [2674] = {.lex_state = 345}, - [2675] = {.lex_state = 338}, - [2676] = {.lex_state = 922}, - [2677] = {.lex_state = 341}, - [2678] = {.lex_state = 301}, - [2679] = {.lex_state = 37}, - [2680] = {.lex_state = 340}, - [2681] = {.lex_state = 357}, - [2682] = {.lex_state = 319}, - [2683] = {.lex_state = 357}, - [2684] = {.lex_state = 300}, - [2685] = {.lex_state = 300}, - [2686] = {.lex_state = 325}, - [2687] = {.lex_state = 37}, - [2688] = {.lex_state = 319}, - [2689] = {.lex_state = 319}, - [2690] = {.lex_state = 319}, - [2691] = {.lex_state = 41}, - [2692] = {.lex_state = 319}, - [2693] = {.lex_state = 319}, - [2694] = {.lex_state = 357}, - [2695] = {.lex_state = 319}, - [2696] = {.lex_state = 319}, - [2697] = {.lex_state = 319}, - [2698] = {.lex_state = 319}, - [2699] = {.lex_state = 319}, - [2700] = {.lex_state = 319}, - [2701] = {.lex_state = 319}, - [2702] = {.lex_state = 319}, - [2703] = {.lex_state = 319}, - [2704] = {.lex_state = 319}, - [2705] = {.lex_state = 319}, - [2706] = {.lex_state = 204}, - [2707] = {.lex_state = 325}, - [2708] = {.lex_state = 248}, - [2709] = {.lex_state = 319}, - [2710] = {.lex_state = 204}, - [2711] = {.lex_state = 315}, - [2712] = {.lex_state = 204}, - [2713] = {.lex_state = 299}, - [2714] = {.lex_state = 341}, - [2715] = {.lex_state = 37}, - [2716] = {.lex_state = 37}, - [2717] = {.lex_state = 37}, - [2718] = {.lex_state = 300}, - [2719] = {.lex_state = 315}, - [2720] = {.lex_state = 37}, - [2721] = {.lex_state = 300}, - [2722] = {.lex_state = 300}, - [2723] = {.lex_state = 315}, - [2724] = {.lex_state = 37}, - [2725] = {.lex_state = 922}, - [2726] = {.lex_state = 319}, - [2727] = {.lex_state = 303}, - [2728] = {.lex_state = 311}, - [2729] = {.lex_state = 37}, - [2730] = {.lex_state = 303}, - [2731] = {.lex_state = 37}, - [2732] = {.lex_state = 303}, - [2733] = {.lex_state = 311}, - [2734] = {.lex_state = 205}, - [2735] = {.lex_state = 311}, - [2736] = {.lex_state = 311}, - [2737] = {.lex_state = 303}, - [2738] = {.lex_state = 37}, - [2739] = {.lex_state = 303}, - [2740] = {.lex_state = 311}, - [2741] = {.lex_state = 37}, - [2742] = {.lex_state = 37}, - [2743] = {.lex_state = 37}, - [2744] = {.lex_state = 37}, - [2745] = {.lex_state = 311}, - [2746] = {.lex_state = 994}, - [2747] = {.lex_state = 37}, - [2748] = {.lex_state = 37}, - [2749] = {.lex_state = 37}, - [2750] = {.lex_state = 303}, - [2751] = {.lex_state = 1000}, - [2752] = {.lex_state = 37}, - [2753] = {.lex_state = 311}, - [2754] = {.lex_state = 302}, - [2755] = {.lex_state = 37}, - [2756] = {.lex_state = 37}, - [2757] = {.lex_state = 326}, - [2758] = {.lex_state = 37}, - [2759] = {.lex_state = 37}, - [2760] = {.lex_state = 37}, - [2761] = {.lex_state = 319}, - [2762] = {.lex_state = 249}, - [2763] = {.lex_state = 40}, - [2764] = {.lex_state = 37}, - [2765] = {.lex_state = 37}, - [2766] = {.lex_state = 303}, - [2767] = {.lex_state = 37}, - [2768] = {.lex_state = 249}, - [2769] = {.lex_state = 302}, - [2770] = {.lex_state = 37}, - [2771] = {.lex_state = 205}, - [2772] = {.lex_state = 297}, - [2773] = {.lex_state = 303}, - [2774] = {.lex_state = 303}, - [2775] = {.lex_state = 37}, - [2776] = {.lex_state = 37}, - [2777] = {.lex_state = 37}, - [2778] = {.lex_state = 326}, - [2779] = {.lex_state = 311}, - [2780] = {.lex_state = 37}, - [2781] = {.lex_state = 37}, - [2782] = {.lex_state = 37}, - [2783] = {.lex_state = 326}, - [2784] = {.lex_state = 37}, - [2785] = {.lex_state = 37}, - [2786] = {.lex_state = 37}, - [2787] = {.lex_state = 37}, - [2788] = {.lex_state = 37}, - [2789] = {.lex_state = 326}, - [2790] = {.lex_state = 37}, - [2791] = {.lex_state = 311}, - [2792] = {.lex_state = 37}, - [2793] = {.lex_state = 37}, - [2794] = {.lex_state = 37}, - [2795] = {.lex_state = 41}, - [2796] = {.lex_state = 297}, - [2797] = {.lex_state = 37}, - [2798] = {.lex_state = 303}, - [2799] = {.lex_state = 205}, - [2800] = {.lex_state = 37}, - [2801] = {.lex_state = 37}, - [2802] = {.lex_state = 311}, - [2803] = {.lex_state = 311}, - [2804] = {.lex_state = 37}, - [2805] = {.lex_state = 311}, - [2806] = {.lex_state = 326}, - [2807] = {.lex_state = 302}, - [2808] = {.lex_state = 37}, - [2809] = {.lex_state = 37}, - [2810] = {.lex_state = 303}, - [2811] = {.lex_state = 37}, - [2812] = {.lex_state = 311}, - [2813] = {.lex_state = 303}, - [2814] = {.lex_state = 37}, - [2815] = {.lex_state = 37}, - [2816] = {.lex_state = 303}, - [2817] = {.lex_state = 303}, - [2818] = {.lex_state = 303}, - [2819] = {.lex_state = 326}, - [2820] = {.lex_state = 303}, - [2821] = {.lex_state = 311}, - [2822] = {.lex_state = 205}, - [2823] = {.lex_state = 319}, - [2824] = {.lex_state = 303}, - [2825] = {.lex_state = 205}, - [2826] = {.lex_state = 39}, - [2827] = {.lex_state = 205}, - [2828] = {.lex_state = 311}, - [2829] = {.lex_state = 303}, - [2830] = {.lex_state = 303}, - [2831] = {.lex_state = 303}, - [2832] = {.lex_state = 303}, - [2833] = {.lex_state = 250}, - [2834] = {.lex_state = 122}, - [2835] = {.lex_state = 40}, - [2836] = {.lex_state = 298}, - [2837] = {.lex_state = 298}, - [2838] = {.lex_state = 1004}, - [2839] = {.lex_state = 318}, - [2840] = {.lex_state = 298}, - [2841] = {.lex_state = 298}, - [2842] = {.lex_state = 358}, - [2843] = {.lex_state = 332}, - [2844] = {.lex_state = 250}, - [2845] = {.lex_state = 250}, - [2846] = {.lex_state = 71}, - [2847] = {.lex_state = 250}, - [2848] = {.lex_state = 250}, - [2849] = {.lex_state = 298}, - [2850] = {.lex_state = 298}, - [2851] = {.lex_state = 358}, - [2852] = {.lex_state = 298}, - [2853] = {.lex_state = 213}, - [2854] = {.lex_state = 298}, - [2855] = {.lex_state = 327}, - [2856] = {.lex_state = 317}, - [2857] = {.lex_state = 120}, - [2858] = {.lex_state = 298}, - [2859] = {.lex_state = 994}, - [2860] = {.lex_state = 358}, - [2861] = {.lex_state = 303}, - [2862] = {.lex_state = 358}, - [2863] = {.lex_state = 358}, - [2864] = {.lex_state = 307}, - [2865] = {.lex_state = 298}, - [2866] = {.lex_state = 298}, - [2867] = {.lex_state = 303}, - [2868] = {.lex_state = 298}, - [2869] = {.lex_state = 317}, - [2870] = {.lex_state = 317}, - [2871] = {.lex_state = 317}, - [2872] = {.lex_state = 309}, - [2873] = {.lex_state = 1008}, - [2874] = {.lex_state = 1034}, - [2875] = {.lex_state = 298}, - [2876] = {.lex_state = 1036}, - [2877] = {.lex_state = 1000}, - [2878] = {.lex_state = 39}, - [2879] = {.lex_state = 250}, - [2880] = {.lex_state = 250}, - [2881] = {.lex_state = 1004}, - [2882] = {.lex_state = 250}, - [2883] = {.lex_state = 250}, - [2884] = {.lex_state = 298}, - [2885] = {.lex_state = 298}, - [2886] = {.lex_state = 317}, - [2887] = {.lex_state = 290}, - [2888] = {.lex_state = 304}, - [2889] = {.lex_state = 135}, - [2890] = {.lex_state = 319}, - [2891] = {.lex_state = 290}, - [2892] = {.lex_state = 290}, - [2893] = {.lex_state = 290}, - [2894] = {.lex_state = 290}, - [2895] = {.lex_state = 290}, - [2896] = {.lex_state = 290}, - [2897] = {.lex_state = 1008}, - [2898] = {.lex_state = 319}, - [2899] = {.lex_state = 308}, - [2900] = {.lex_state = 319}, - [2901] = {.lex_state = 42}, - [2902] = {.lex_state = 308}, - [2903] = {.lex_state = 308}, - [2904] = {.lex_state = 290}, - [2905] = {.lex_state = 290}, - [2906] = {.lex_state = 308}, - [2907] = {.lex_state = 308}, - [2908] = {.lex_state = 328}, - [2909] = {.lex_state = 1004}, - [2910] = {.lex_state = 124}, - [2911] = {.lex_state = 308}, - [2912] = {.lex_state = 1004}, - [2913] = {.lex_state = 308}, - [2914] = {.lex_state = 308}, - [2915] = {.lex_state = 308}, - [2916] = {.lex_state = 308}, - [2917] = {.lex_state = 304}, - [2918] = {.lex_state = 304}, - [2919] = {.lex_state = 213}, - [2920] = {.lex_state = 213}, - [2921] = {.lex_state = 308}, - [2922] = {.lex_state = 308}, - [2923] = {.lex_state = 328}, - [2924] = {.lex_state = 308}, - [2925] = {.lex_state = 290}, - [2926] = {.lex_state = 306}, - [2927] = {.lex_state = 308}, - [2928] = {.lex_state = 290}, - [2929] = {.lex_state = 1034}, - [2930] = {.lex_state = 308}, - [2931] = {.lex_state = 306}, - [2932] = {.lex_state = 308}, - [2933] = {.lex_state = 308}, - [2934] = {.lex_state = 1038}, - [2935] = {.lex_state = 308}, - [2936] = {.lex_state = 308}, - [2937] = {.lex_state = 1008}, - [2938] = {.lex_state = 304}, - [2939] = {.lex_state = 1038}, - [2940] = {.lex_state = 308}, - [2941] = {.lex_state = 305}, - [2942] = {.lex_state = 308}, - [2943] = {.lex_state = 126}, - [2944] = {.lex_state = 308}, - [2945] = {.lex_state = 308}, - [2946] = {.lex_state = 1036}, - [2947] = {.lex_state = 308}, - [2948] = {.lex_state = 308}, - [2949] = {.lex_state = 308}, - [2950] = {.lex_state = 1008}, - [2951] = {.lex_state = 308}, - [2952] = {.lex_state = 308}, - [2953] = {.lex_state = 1008}, - [2954] = {.lex_state = 308}, - [2955] = {.lex_state = 308}, - [2956] = {.lex_state = 1008}, - [2957] = {.lex_state = 308}, - [2958] = {.lex_state = 290}, - [2959] = {.lex_state = 308}, - [2960] = {.lex_state = 308}, - [2961] = {.lex_state = 308}, - [2962] = {.lex_state = 308}, - [2963] = {.lex_state = 290}, - [2964] = {.lex_state = 308}, - [2965] = {.lex_state = 333}, - [2966] = {.lex_state = 133}, - [2967] = {.lex_state = 308}, - [2968] = {.lex_state = 304}, - [2969] = {.lex_state = 308}, - [2970] = {.lex_state = 124}, - [2971] = {.lex_state = 296}, - [2972] = {.lex_state = 308}, - [2973] = {.lex_state = 46}, - [2974] = {.lex_state = 329}, - [2975] = {.lex_state = 293}, - [2976] = {.lex_state = 359}, - [2977] = {.lex_state = 1040}, - [2978] = {.lex_state = 1008}, - [2979] = {.lex_state = 137}, - [2980] = {.lex_state = 1040}, - [2981] = {.lex_state = 308}, - [2982] = {.lex_state = 1040}, - [2983] = {.lex_state = 329}, - [2984] = {.lex_state = 329}, - [2985] = {.lex_state = 329}, - [2986] = {.lex_state = 329}, - [2987] = {.lex_state = 303}, - [2988] = {.lex_state = 303}, - [2989] = {.lex_state = 293}, - [2990] = {.lex_state = 126}, - [2991] = {.lex_state = 42}, - [2992] = {.lex_state = 1040}, - [2993] = {.lex_state = 308}, - [2994] = {.lex_state = 359}, - [2995] = {.lex_state = 308}, - [2996] = {.lex_state = 126}, - [2997] = {.lex_state = 308}, - [2998] = {.lex_state = 329}, - [2999] = {.lex_state = 1038}, - [3000] = {.lex_state = 303}, - [3001] = {.lex_state = 290}, - [3002] = {.lex_state = 308}, - [3003] = {.lex_state = 359}, - [3004] = {.lex_state = 359}, - [3005] = {.lex_state = 1008}, - [3006] = {.lex_state = 308}, - [3007] = {.lex_state = 308}, - [3008] = {.lex_state = 329}, - [3009] = {.lex_state = 1038}, - [3010] = {.lex_state = 308}, - [3011] = {.lex_state = 294}, - [3012] = {.lex_state = 1008}, - [3013] = {.lex_state = 308}, - [3014] = {.lex_state = 126}, - [3015] = {.lex_state = 359}, - [3016] = {.lex_state = 308}, - [3017] = {.lex_state = 137}, - [3018] = {.lex_state = 308}, - [3019] = {.lex_state = 1008}, - [3020] = {.lex_state = 329}, - [3021] = {.lex_state = 308}, - [3022] = {.lex_state = 329}, - [3023] = {.lex_state = 126}, - [3024] = {.lex_state = 1040}, - [3025] = {.lex_state = 290}, - [3026] = {.lex_state = 329}, - [3027] = {.lex_state = 42}, - [3028] = {.lex_state = 42}, - [3029] = {.lex_state = 42}, - [3030] = {.lex_state = 139}, - [3031] = {.lex_state = 42}, - [3032] = {.lex_state = 42}, - [3033] = {.lex_state = 42}, - [3034] = {.lex_state = 42}, - [3035] = {.lex_state = 42}, - [3036] = {.lex_state = 42}, - [3037] = {.lex_state = 139}, - [3038] = {.lex_state = 42}, - [3039] = {.lex_state = 42}, - [3040] = {.lex_state = 42}, - [3041] = {.lex_state = 42}, - [3042] = {.lex_state = 42}, - [3043] = {.lex_state = 42}, - [3044] = {.lex_state = 42}, - [3045] = {.lex_state = 42}, - [3046] = {.lex_state = 42}, - [3047] = {.lex_state = 42}, - [3048] = {.lex_state = 42}, - [3049] = {.lex_state = 42}, - [3050] = {.lex_state = 42}, - [3051] = {.lex_state = 42}, - [3052] = {.lex_state = 42}, - [3053] = {.lex_state = 42}, - [3054] = {.lex_state = 42}, - [3055] = {.lex_state = 42}, - [3056] = {.lex_state = 42}, - [3057] = {.lex_state = 42}, - [3058] = {.lex_state = 42}, - [3059] = {.lex_state = 42}, - [3060] = {.lex_state = 42}, - [3061] = {.lex_state = 42}, - [3062] = {.lex_state = 42}, - [3063] = {.lex_state = 46}, - [3064] = {.lex_state = 42}, - [3065] = {.lex_state = 42}, - [3066] = {.lex_state = 1040}, - [3067] = {.lex_state = 42}, - [3068] = {.lex_state = 42}, - [3069] = {.lex_state = 42}, - [3070] = {.lex_state = 139}, - [3071] = {.lex_state = 42}, - [3072] = {.lex_state = 42}, - [3073] = {.lex_state = 1040}, - [3074] = {.lex_state = 42}, - [3075] = {.lex_state = 42}, - [3076] = {.lex_state = 42}, - [3077] = {.lex_state = 1040}, - [3078] = {.lex_state = 139}, - [3079] = {.lex_state = 42}, - [3080] = {.lex_state = 42}, - [3081] = {.lex_state = 42}, - [3082] = {.lex_state = 42}, - [3083] = {.lex_state = 42}, - [3084] = {.lex_state = 42}, - [3085] = {.lex_state = 42}, - [3086] = {.lex_state = 42}, - [3087] = {.lex_state = 139}, - [3088] = {.lex_state = 42}, - [3089] = {.lex_state = 42}, - [3090] = {.lex_state = 42}, - [3091] = {.lex_state = 1040}, - [3092] = {.lex_state = 42}, - [3093] = {.lex_state = 42}, - [3094] = {.lex_state = 42}, - [3095] = {.lex_state = 42}, - [3096] = {.lex_state = 42}, - [3097] = {.lex_state = 1040}, - [3098] = {.lex_state = 42}, - [3099] = {.lex_state = 42}, - [3100] = {.lex_state = 71}, - [3101] = {.lex_state = 76}, - [3102] = {.lex_state = 76}, - [3103] = {.lex_state = 76}, - [3104] = {.lex_state = 76}, - [3105] = {.lex_state = 76}, - [3106] = {.lex_state = 1027}, - [3107] = {.lex_state = 71}, - [3108] = {.lex_state = 76}, - [3109] = {.lex_state = 76}, - [3110] = {.lex_state = 990}, - [3111] = {.lex_state = 42}, - [3112] = {.lex_state = 76}, - [3113] = {.lex_state = 76}, - [3114] = {.lex_state = 76}, - [3115] = {.lex_state = 76}, - [3116] = {.lex_state = 980}, - [3117] = {.lex_state = 76}, - [3118] = {.lex_state = 76}, - [3119] = {.lex_state = 76}, - [3120] = {.lex_state = 76}, - [3121] = {.lex_state = 76}, - [3122] = {.lex_state = 71}, - [3123] = {.lex_state = 1027}, - [3124] = {.lex_state = 980}, - [3125] = {.lex_state = 140}, - [3126] = {.lex_state = 980}, - [3127] = {.lex_state = 980}, - [3128] = {.lex_state = 980}, - [3129] = {.lex_state = 1051}, - [3130] = {.lex_state = 986}, - [3131] = {.lex_state = 924}, - [3132] = {.lex_state = 924}, - [3133] = {.lex_state = 1051}, - [3134] = {.lex_state = 1051}, - [3135] = {.lex_state = 1051}, - [3136] = {.lex_state = 76}, - [3137] = {.lex_state = 1051}, - [3138] = {.lex_state = 146}, - [3139] = {.lex_state = 924}, - [3140] = {.lex_state = 146}, - [3141] = {.lex_state = 146}, - [3142] = {.lex_state = 1051}, - [3143] = {.lex_state = 1051}, - [3144] = {.lex_state = 146}, - [3145] = {.lex_state = 924}, - [3146] = {.lex_state = 924}, - [3147] = {.lex_state = 146}, - [3148] = {.lex_state = 76}, - [3149] = {.lex_state = 1047}, - [3150] = {.lex_state = 922}, - [3151] = {.lex_state = 1051}, - [3152] = {.lex_state = 924}, - [3153] = {.lex_state = 980}, - [3154] = {.lex_state = 986}, - [3155] = {.lex_state = 1047}, - [3156] = {.lex_state = 1051}, - [3157] = {.lex_state = 924}, - [3158] = {.lex_state = 1046}, - [3159] = {.lex_state = 924}, - [3160] = {.lex_state = 1054}, - [3161] = {.lex_state = 924}, - [3162] = {.lex_state = 1054}, + [2466] = {.lex_state = 202, .external_lex_state = 2}, + [2467] = {.lex_state = 266, .external_lex_state = 2}, + [2468] = {.lex_state = 202, .external_lex_state = 2}, + [2469] = {.lex_state = 220, .external_lex_state = 2}, + [2470] = {.lex_state = 202, .external_lex_state = 2}, + [2471] = {.lex_state = 979, .external_lex_state = 2}, + [2472] = {.lex_state = 990}, + [2473] = {.lex_state = 266, .external_lex_state = 2}, + [2474] = {.lex_state = 266, .external_lex_state = 2}, + [2475] = {.lex_state = 266, .external_lex_state = 2}, + [2476] = {.lex_state = 202, .external_lex_state = 2}, + [2477] = {.lex_state = 990}, + [2478] = {.lex_state = 202, .external_lex_state = 2}, + [2479] = {.lex_state = 990}, + [2480] = {.lex_state = 202, .external_lex_state = 2}, + [2481] = {.lex_state = 990}, + [2482] = {.lex_state = 990}, + [2483] = {.lex_state = 990}, + [2484] = {.lex_state = 202, .external_lex_state = 2}, + [2485] = {.lex_state = 220, .external_lex_state = 2}, + [2486] = {.lex_state = 990}, + [2487] = {.lex_state = 202, .external_lex_state = 2}, + [2488] = {.lex_state = 990}, + [2489] = {.lex_state = 990}, + [2490] = {.lex_state = 990}, + [2491] = {.lex_state = 990}, + [2492] = {.lex_state = 202, .external_lex_state = 2}, + [2493] = {.lex_state = 979, .external_lex_state = 2}, + [2494] = {.lex_state = 979, .external_lex_state = 2}, + [2495] = {.lex_state = 990}, + [2496] = {.lex_state = 979, .external_lex_state = 2}, + [2497] = {.lex_state = 990}, + [2498] = {.lex_state = 68}, + [2499] = {.lex_state = 979, .external_lex_state = 2}, + [2500] = {.lex_state = 979, .external_lex_state = 2}, + [2501] = {.lex_state = 979, .external_lex_state = 2}, + [2502] = {.lex_state = 990}, + [2503] = {.lex_state = 202, .external_lex_state = 2}, + [2504] = {.lex_state = 990}, + [2505] = {.lex_state = 979, .external_lex_state = 2}, + [2506] = {.lex_state = 990}, + [2507] = {.lex_state = 990}, + [2508] = {.lex_state = 979, .external_lex_state = 2}, + [2509] = {.lex_state = 990}, + [2510] = {.lex_state = 990}, + [2511] = {.lex_state = 202, .external_lex_state = 2}, + [2512] = {.lex_state = 990}, + [2513] = {.lex_state = 990}, + [2514] = {.lex_state = 990}, + [2515] = {.lex_state = 990}, + [2516] = {.lex_state = 202, .external_lex_state = 2}, + [2517] = {.lex_state = 202, .external_lex_state = 2}, + [2518] = {.lex_state = 202, .external_lex_state = 2}, + [2519] = {.lex_state = 990}, + [2520] = {.lex_state = 202, .external_lex_state = 2}, + [2521] = {.lex_state = 202, .external_lex_state = 2}, + [2522] = {.lex_state = 990}, + [2523] = {.lex_state = 990}, + [2524] = {.lex_state = 990}, + [2525] = {.lex_state = 979, .external_lex_state = 2}, + [2526] = {.lex_state = 990}, + [2527] = {.lex_state = 990}, + [2528] = {.lex_state = 990}, + [2529] = {.lex_state = 990}, + [2530] = {.lex_state = 990}, + [2531] = {.lex_state = 990}, + [2532] = {.lex_state = 990}, + [2533] = {.lex_state = 990}, + [2534] = {.lex_state = 990}, + [2535] = {.lex_state = 202, .external_lex_state = 2}, + [2536] = {.lex_state = 979, .external_lex_state = 2}, + [2537] = {.lex_state = 977, .external_lex_state = 2}, + [2538] = {.lex_state = 990}, + [2539] = {.lex_state = 990}, + [2540] = {.lex_state = 990}, + [2541] = {.lex_state = 990}, + [2542] = {.lex_state = 990}, + [2543] = {.lex_state = 977, .external_lex_state = 2}, + [2544] = {.lex_state = 977, .external_lex_state = 2}, + [2545] = {.lex_state = 990}, + [2546] = {.lex_state = 990}, + [2547] = {.lex_state = 990}, + [2548] = {.lex_state = 990}, + [2549] = {.lex_state = 990}, + [2550] = {.lex_state = 990}, + [2551] = {.lex_state = 990}, + [2552] = {.lex_state = 990}, + [2553] = {.lex_state = 990}, + [2554] = {.lex_state = 990}, + [2555] = {.lex_state = 202, .external_lex_state = 2}, + [2556] = {.lex_state = 990}, + [2557] = {.lex_state = 990}, + [2558] = {.lex_state = 990}, + [2559] = {.lex_state = 990}, + [2560] = {.lex_state = 990}, + [2561] = {.lex_state = 990}, + [2562] = {.lex_state = 202, .external_lex_state = 2}, + [2563] = {.lex_state = 990}, + [2564] = {.lex_state = 344, .external_lex_state = 2}, + [2565] = {.lex_state = 979, .external_lex_state = 2}, + [2566] = {.lex_state = 979, .external_lex_state = 2}, + [2567] = {.lex_state = 979, .external_lex_state = 2}, + [2568] = {.lex_state = 979, .external_lex_state = 2}, + [2569] = {.lex_state = 344, .external_lex_state = 2}, + [2570] = {.lex_state = 979, .external_lex_state = 2}, + [2571] = {.lex_state = 344, .external_lex_state = 2}, + [2572] = {.lex_state = 979, .external_lex_state = 2}, + [2573] = {.lex_state = 344, .external_lex_state = 2}, + [2574] = {.lex_state = 979, .external_lex_state = 2}, + [2575] = {.lex_state = 344, .external_lex_state = 2}, + [2576] = {.lex_state = 344, .external_lex_state = 2}, + [2577] = {.lex_state = 344, .external_lex_state = 2}, + [2578] = {.lex_state = 344, .external_lex_state = 2}, + [2579] = {.lex_state = 344, .external_lex_state = 2}, + [2580] = {.lex_state = 344, .external_lex_state = 2}, + [2581] = {.lex_state = 344, .external_lex_state = 2}, + [2582] = {.lex_state = 979, .external_lex_state = 2}, + [2583] = {.lex_state = 344, .external_lex_state = 2}, + [2584] = {.lex_state = 344, .external_lex_state = 2}, + [2585] = {.lex_state = 344, .external_lex_state = 2}, + [2586] = {.lex_state = 979, .external_lex_state = 2}, + [2587] = {.lex_state = 344, .external_lex_state = 2}, + [2588] = {.lex_state = 344, .external_lex_state = 2}, + [2589] = {.lex_state = 344, .external_lex_state = 2}, + [2590] = {.lex_state = 979, .external_lex_state = 2}, + [2591] = {.lex_state = 344, .external_lex_state = 2}, + [2592] = {.lex_state = 258, .external_lex_state = 2}, + [2593] = {.lex_state = 68}, + [2594] = {.lex_state = 264, .external_lex_state = 2}, + [2595] = {.lex_state = 979, .external_lex_state = 2}, + [2596] = {.lex_state = 251, .external_lex_state = 2}, + [2597] = {.lex_state = 344, .external_lex_state = 2}, + [2598] = {.lex_state = 336, .external_lex_state = 2}, + [2599] = {.lex_state = 327, .external_lex_state = 2}, + [2600] = {.lex_state = 264, .external_lex_state = 2}, + [2601] = {.lex_state = 264, .external_lex_state = 2}, + [2602] = {.lex_state = 344, .external_lex_state = 2}, + [2603] = {.lex_state = 264, .external_lex_state = 2}, + [2604] = {.lex_state = 979, .external_lex_state = 2}, + [2605] = {.lex_state = 249, .external_lex_state = 2}, + [2606] = {.lex_state = 321, .external_lex_state = 2}, + [2607] = {.lex_state = 251, .external_lex_state = 2}, + [2608] = {.lex_state = 251, .external_lex_state = 2}, + [2609] = {.lex_state = 344, .external_lex_state = 2}, + [2610] = {.lex_state = 321, .external_lex_state = 2}, + [2611] = {.lex_state = 979, .external_lex_state = 2}, + [2612] = {.lex_state = 979, .external_lex_state = 2}, + [2613] = {.lex_state = 344, .external_lex_state = 2}, + [2614] = {.lex_state = 979, .external_lex_state = 2}, + [2615] = {.lex_state = 979, .external_lex_state = 2}, + [2616] = {.lex_state = 979, .external_lex_state = 2}, + [2617] = {.lex_state = 979, .external_lex_state = 2}, + [2618] = {.lex_state = 979, .external_lex_state = 2}, + [2619] = {.lex_state = 251, .external_lex_state = 2}, + [2620] = {.lex_state = 979, .external_lex_state = 2}, + [2621] = {.lex_state = 344, .external_lex_state = 2}, + [2622] = {.lex_state = 321, .external_lex_state = 2}, + [2623] = {.lex_state = 321, .external_lex_state = 2}, + [2624] = {.lex_state = 308, .external_lex_state = 2}, + [2625] = {.lex_state = 329, .external_lex_state = 2}, + [2626] = {.lex_state = 329, .external_lex_state = 2}, + [2627] = {.lex_state = 308, .external_lex_state = 2}, + [2628] = {.lex_state = 252, .external_lex_state = 2}, + [2629] = {.lex_state = 252, .external_lex_state = 2}, + [2630] = {.lex_state = 344, .external_lex_state = 2}, + [2631] = {.lex_state = 308, .external_lex_state = 2}, + [2632] = {.lex_state = 344, .external_lex_state = 2}, + [2633] = {.lex_state = 321, .external_lex_state = 2}, + [2634] = {.lex_state = 322, .external_lex_state = 2}, + [2635] = {.lex_state = 342, .external_lex_state = 2}, + [2636] = {.lex_state = 342, .external_lex_state = 2}, + [2637] = {.lex_state = 308, .external_lex_state = 2}, + [2638] = {.lex_state = 343, .external_lex_state = 2}, + [2639] = {.lex_state = 210, .external_lex_state = 2}, + [2640] = {.lex_state = 343, .external_lex_state = 2}, + [2641] = {.lex_state = 345, .external_lex_state = 2}, + [2642] = {.lex_state = 330, .external_lex_state = 2}, + [2643] = {.lex_state = 212, .external_lex_state = 2}, + [2644] = {.lex_state = 330, .external_lex_state = 2}, + [2645] = {.lex_state = 212, .external_lex_state = 2}, + [2646] = {.lex_state = 343, .external_lex_state = 2}, + [2647] = {.lex_state = 958, .external_lex_state = 2}, + [2648] = {.lex_state = 330, .external_lex_state = 2}, + [2649] = {.lex_state = 958, .external_lex_state = 2}, + [2650] = {.lex_state = 210, .external_lex_state = 2}, + [2651] = {.lex_state = 330, .external_lex_state = 2}, + [2652] = {.lex_state = 342, .external_lex_state = 2}, + [2653] = {.lex_state = 337, .external_lex_state = 2}, + [2654] = {.lex_state = 253, .external_lex_state = 2}, + [2655] = {.lex_state = 328, .external_lex_state = 2}, + [2656] = {.lex_state = 342, .external_lex_state = 2}, + [2657] = {.lex_state = 253, .external_lex_state = 2}, + [2658] = {.lex_state = 342, .external_lex_state = 2}, + [2659] = {.lex_state = 253, .external_lex_state = 2}, + [2660] = {.lex_state = 253, .external_lex_state = 2}, + [2661] = {.lex_state = 319, .external_lex_state = 2}, + [2662] = {.lex_state = 342, .external_lex_state = 2}, + [2663] = {.lex_state = 36, .external_lex_state = 2}, + [2664] = {.lex_state = 343, .external_lex_state = 2}, + [2665] = {.lex_state = 343, .external_lex_state = 2}, + [2666] = {.lex_state = 342, .external_lex_state = 2}, + [2667] = {.lex_state = 253, .external_lex_state = 2}, + [2668] = {.lex_state = 319, .external_lex_state = 2}, + [2669] = {.lex_state = 319, .external_lex_state = 2}, + [2670] = {.lex_state = 210, .external_lex_state = 2}, + [2671] = {.lex_state = 343, .external_lex_state = 2}, + [2672] = {.lex_state = 210, .external_lex_state = 2}, + [2673] = {.lex_state = 319, .external_lex_state = 2}, + [2674] = {.lex_state = 320, .external_lex_state = 2}, + [2675] = {.lex_state = 308, .external_lex_state = 2}, + [2676] = {.lex_state = 253, .external_lex_state = 2}, + [2677] = {.lex_state = 319, .external_lex_state = 2}, + [2678] = {.lex_state = 319, .external_lex_state = 2}, + [2679] = {.lex_state = 212, .external_lex_state = 2}, + [2680] = {.lex_state = 212, .external_lex_state = 2}, + [2681] = {.lex_state = 318, .external_lex_state = 2}, + [2682] = {.lex_state = 926}, + [2683] = {.lex_state = 926}, + [2684] = {.lex_state = 342, .external_lex_state = 2}, + [2685] = {.lex_state = 202, .external_lex_state = 2}, + [2686] = {.lex_state = 342, .external_lex_state = 2}, + [2687] = {.lex_state = 330, .external_lex_state = 2}, + [2688] = {.lex_state = 212, .external_lex_state = 2}, + [2689] = {.lex_state = 321, .external_lex_state = 2}, + [2690] = {.lex_state = 344, .external_lex_state = 2}, + [2691] = {.lex_state = 309, .external_lex_state = 2}, + [2692] = {.lex_state = 357, .external_lex_state = 2}, + [2693] = {.lex_state = 357, .external_lex_state = 2}, + [2694] = {.lex_state = 342, .external_lex_state = 2}, + [2695] = {.lex_state = 259, .external_lex_state = 2}, + [2696] = {.lex_state = 342, .external_lex_state = 2}, + [2697] = {.lex_state = 306, .external_lex_state = 2}, + [2698] = {.lex_state = 357, .external_lex_state = 2}, + [2699] = {.lex_state = 212, .external_lex_state = 2}, + [2700] = {.lex_state = 306, .external_lex_state = 2}, + [2701] = {.lex_state = 306, .external_lex_state = 2}, + [2702] = {.lex_state = 331, .external_lex_state = 2}, + [2703] = {.lex_state = 202, .external_lex_state = 2}, + [2704] = {.lex_state = 254, .external_lex_state = 2}, + [2705] = {.lex_state = 307, .external_lex_state = 2}, + [2706] = {.lex_state = 306, .external_lex_state = 2}, + [2707] = {.lex_state = 325, .external_lex_state = 2}, + [2708] = {.lex_state = 325, .external_lex_state = 2}, + [2709] = {.lex_state = 36, .external_lex_state = 2}, + [2710] = {.lex_state = 321, .external_lex_state = 2}, + [2711] = {.lex_state = 325, .external_lex_state = 2}, + [2712] = {.lex_state = 325, .external_lex_state = 2}, + [2713] = {.lex_state = 44, .external_lex_state = 2}, + [2714] = {.lex_state = 325, .external_lex_state = 2}, + [2715] = {.lex_state = 325, .external_lex_state = 2}, + [2716] = {.lex_state = 325, .external_lex_state = 2}, + [2717] = {.lex_state = 212, .external_lex_state = 2}, + [2718] = {.lex_state = 325, .external_lex_state = 2}, + [2719] = {.lex_state = 306, .external_lex_state = 2}, + [2720] = {.lex_state = 325, .external_lex_state = 2}, + [2721] = {.lex_state = 325, .external_lex_state = 2}, + [2722] = {.lex_state = 316, .external_lex_state = 2}, + [2723] = {.lex_state = 325, .external_lex_state = 2}, + [2724] = {.lex_state = 305, .external_lex_state = 2}, + [2725] = {.lex_state = 325, .external_lex_state = 2}, + [2726] = {.lex_state = 325, .external_lex_state = 2}, + [2727] = {.lex_state = 325, .external_lex_state = 2}, + [2728] = {.lex_state = 325, .external_lex_state = 2}, + [2729] = {.lex_state = 211, .external_lex_state = 2}, + [2730] = {.lex_state = 211, .external_lex_state = 2}, + [2731] = {.lex_state = 325, .external_lex_state = 2}, + [2732] = {.lex_state = 325, .external_lex_state = 2}, + [2733] = {.lex_state = 211, .external_lex_state = 2}, + [2734] = {.lex_state = 325, .external_lex_state = 2}, + [2735] = {.lex_state = 325, .external_lex_state = 2}, + [2736] = {.lex_state = 331, .external_lex_state = 2}, + [2737] = {.lex_state = 321, .external_lex_state = 2}, + [2738] = {.lex_state = 316, .external_lex_state = 2}, + [2739] = {.lex_state = 325, .external_lex_state = 2}, + [2740] = {.lex_state = 344, .external_lex_state = 2}, + [2741] = {.lex_state = 926}, + [2742] = {.lex_state = 202, .external_lex_state = 2}, + [2743] = {.lex_state = 357, .external_lex_state = 2}, + [2744] = {.lex_state = 44, .external_lex_state = 2}, + [2745] = {.lex_state = 357, .external_lex_state = 2}, + [2746] = {.lex_state = 211, .external_lex_state = 2}, + [2747] = {.lex_state = 926}, + [2748] = {.lex_state = 306, .external_lex_state = 2}, + [2749] = {.lex_state = 211, .external_lex_state = 2}, + [2750] = {.lex_state = 211, .external_lex_state = 2}, + [2751] = {.lex_state = 344, .external_lex_state = 2}, + [2752] = {.lex_state = 926}, + [2753] = {.lex_state = 202, .external_lex_state = 2}, + [2754] = {.lex_state = 202, .external_lex_state = 2}, + [2755] = {.lex_state = 35, .external_lex_state = 2}, + [2756] = {.lex_state = 202, .external_lex_state = 2}, + [2757] = {.lex_state = 308, .external_lex_state = 2}, + [2758] = {.lex_state = 308, .external_lex_state = 2}, + [2759] = {.lex_state = 202, .external_lex_state = 2}, + [2760] = {.lex_state = 202, .external_lex_state = 2}, + [2761] = {.lex_state = 202, .external_lex_state = 2}, + [2762] = {.lex_state = 309, .external_lex_state = 2}, + [2763] = {.lex_state = 202, .external_lex_state = 2}, + [2764] = {.lex_state = 202, .external_lex_state = 2}, + [2765] = {.lex_state = 202, .external_lex_state = 2}, + [2766] = {.lex_state = 202, .external_lex_state = 2}, + [2767] = {.lex_state = 202, .external_lex_state = 2}, + [2768] = {.lex_state = 202, .external_lex_state = 2}, + [2769] = {.lex_state = 202, .external_lex_state = 2}, + [2770] = {.lex_state = 202, .external_lex_state = 2}, + [2771] = {.lex_state = 202, .external_lex_state = 2}, + [2772] = {.lex_state = 317, .external_lex_state = 2}, + [2773] = {.lex_state = 202, .external_lex_state = 2}, + [2774] = {.lex_state = 202, .external_lex_state = 2}, + [2775] = {.lex_state = 202, .external_lex_state = 2}, + [2776] = {.lex_state = 202, .external_lex_state = 2}, + [2777] = {.lex_state = 317, .external_lex_state = 2}, + [2778] = {.lex_state = 317, .external_lex_state = 2}, + [2779] = {.lex_state = 317, .external_lex_state = 2}, + [2780] = {.lex_state = 317, .external_lex_state = 2}, + [2781] = {.lex_state = 317, .external_lex_state = 2}, + [2782] = {.lex_state = 255, .external_lex_state = 2}, + [2783] = {.lex_state = 202, .external_lex_state = 2}, + [2784] = {.lex_state = 202, .external_lex_state = 2}, + [2785] = {.lex_state = 202, .external_lex_state = 2}, + [2786] = {.lex_state = 202, .external_lex_state = 2}, + [2787] = {.lex_state = 308, .external_lex_state = 2}, + [2788] = {.lex_state = 309, .external_lex_state = 2}, + [2789] = {.lex_state = 202, .external_lex_state = 2}, + [2790] = {.lex_state = 202, .external_lex_state = 2}, + [2791] = {.lex_state = 202, .external_lex_state = 2}, + [2792] = {.lex_state = 44, .external_lex_state = 2}, + [2793] = {.lex_state = 332, .external_lex_state = 2}, + [2794] = {.lex_state = 317, .external_lex_state = 2}, + [2795] = {.lex_state = 202, .external_lex_state = 2}, + [2796] = {.lex_state = 202, .external_lex_state = 2}, + [2797] = {.lex_state = 202, .external_lex_state = 2}, + [2798] = {.lex_state = 202, .external_lex_state = 2}, + [2799] = {.lex_state = 202, .external_lex_state = 2}, + [2800] = {.lex_state = 202, .external_lex_state = 2}, + [2801] = {.lex_state = 317, .external_lex_state = 2}, + [2802] = {.lex_state = 317, .external_lex_state = 2}, + [2803] = {.lex_state = 255, .external_lex_state = 2}, + [2804] = {.lex_state = 202, .external_lex_state = 2}, + [2805] = {.lex_state = 36, .external_lex_state = 2}, + [2806] = {.lex_state = 317, .external_lex_state = 2}, + [2807] = {.lex_state = 317, .external_lex_state = 2}, + [2808] = {.lex_state = 317, .external_lex_state = 2}, + [2809] = {.lex_state = 303, .external_lex_state = 2}, + [2810] = {.lex_state = 202, .external_lex_state = 2}, + [2811] = {.lex_state = 317, .external_lex_state = 2}, + [2812] = {.lex_state = 202, .external_lex_state = 2}, + [2813] = {.lex_state = 202, .external_lex_state = 2}, + [2814] = {.lex_state = 202, .external_lex_state = 2}, + [2815] = {.lex_state = 317, .external_lex_state = 2}, + [2816] = {.lex_state = 202, .external_lex_state = 2}, + [2817] = {.lex_state = 309, .external_lex_state = 2}, + [2818] = {.lex_state = 202, .external_lex_state = 2}, + [2819] = {.lex_state = 332, .external_lex_state = 2}, + [2820] = {.lex_state = 309, .external_lex_state = 2}, + [2821] = {.lex_state = 309, .external_lex_state = 2}, + [2822] = {.lex_state = 309, .external_lex_state = 2}, + [2823] = {.lex_state = 34, .external_lex_state = 2}, + [2824] = {.lex_state = 309, .external_lex_state = 2}, + [2825] = {.lex_state = 309, .external_lex_state = 2}, + [2826] = {.lex_state = 309, .external_lex_state = 2}, + [2827] = {.lex_state = 309, .external_lex_state = 2}, + [2828] = {.lex_state = 309, .external_lex_state = 2}, + [2829] = {.lex_state = 303, .external_lex_state = 2}, + [2830] = {.lex_state = 332, .external_lex_state = 2}, + [2831] = {.lex_state = 309, .external_lex_state = 2}, + [2832] = {.lex_state = 309, .external_lex_state = 2}, + [2833] = {.lex_state = 309, .external_lex_state = 2}, + [2834] = {.lex_state = 332, .external_lex_state = 2}, + [2835] = {.lex_state = 202, .external_lex_state = 2}, + [2836] = {.lex_state = 325, .external_lex_state = 2}, + [2837] = {.lex_state = 309, .external_lex_state = 2}, + [2838] = {.lex_state = 309, .external_lex_state = 2}, + [2839] = {.lex_state = 202, .external_lex_state = 2}, + [2840] = {.lex_state = 309, .external_lex_state = 2}, + [2841] = {.lex_state = 202, .external_lex_state = 2}, + [2842] = {.lex_state = 309, .external_lex_state = 2}, + [2843] = {.lex_state = 202, .external_lex_state = 2}, + [2844] = {.lex_state = 309, .external_lex_state = 2}, + [2845] = {.lex_state = 309, .external_lex_state = 2}, + [2846] = {.lex_state = 202, .external_lex_state = 2}, + [2847] = {.lex_state = 202, .external_lex_state = 2}, + [2848] = {.lex_state = 202, .external_lex_state = 2}, + [2849] = {.lex_state = 332, .external_lex_state = 2}, + [2850] = {.lex_state = 202, .external_lex_state = 2}, + [2851] = {.lex_state = 202, .external_lex_state = 2}, + [2852] = {.lex_state = 202, .external_lex_state = 2}, + [2853] = {.lex_state = 202, .external_lex_state = 2}, + [2854] = {.lex_state = 325, .external_lex_state = 2}, + [2855] = {.lex_state = 317, .external_lex_state = 2}, + [2856] = {.lex_state = 332, .external_lex_state = 2}, + [2857] = {.lex_state = 309, .external_lex_state = 2}, + [2858] = {.lex_state = 256, .external_lex_state = 2}, + [2859] = {.lex_state = 358, .external_lex_state = 2}, + [2860] = {.lex_state = 358, .external_lex_state = 2}, + [2861] = {.lex_state = 34, .external_lex_state = 2}, + [2862] = {.lex_state = 304, .external_lex_state = 2}, + [2863] = {.lex_state = 304, .external_lex_state = 2}, + [2864] = {.lex_state = 358, .external_lex_state = 2}, + [2865] = {.lex_state = 358, .external_lex_state = 2}, + [2866] = {.lex_state = 304, .external_lex_state = 2}, + [2867] = {.lex_state = 323, .external_lex_state = 2}, + [2868] = {.lex_state = 338, .external_lex_state = 2}, + [2869] = {.lex_state = 1001}, + [2870] = {.lex_state = 323, .external_lex_state = 2}, + [2871] = {.lex_state = 323, .external_lex_state = 2}, + [2872] = {.lex_state = 304, .external_lex_state = 2}, + [2873] = {.lex_state = 304, .external_lex_state = 2}, + [2874] = {.lex_state = 304, .external_lex_state = 2}, + [2875] = {.lex_state = 304, .external_lex_state = 2}, + [2876] = {.lex_state = 324, .external_lex_state = 2}, + [2877] = {.lex_state = 304, .external_lex_state = 2}, + [2878] = {.lex_state = 304, .external_lex_state = 2}, + [2879] = {.lex_state = 256, .external_lex_state = 2}, + [2880] = {.lex_state = 323, .external_lex_state = 2}, + [2881] = {.lex_state = 315, .external_lex_state = 2}, + [2882] = {.lex_state = 219, .external_lex_state = 2}, + [2883] = {.lex_state = 256, .external_lex_state = 2}, + [2884] = {.lex_state = 309, .external_lex_state = 2}, + [2885] = {.lex_state = 256, .external_lex_state = 2}, + [2886] = {.lex_state = 995}, + [2887] = {.lex_state = 309, .external_lex_state = 2}, + [2888] = {.lex_state = 304, .external_lex_state = 2}, + [2889] = {.lex_state = 256, .external_lex_state = 2}, + [2890] = {.lex_state = 256, .external_lex_state = 2}, + [2891] = {.lex_state = 926}, + [2892] = {.lex_state = 323, .external_lex_state = 2}, + [2893] = {.lex_state = 256, .external_lex_state = 2}, + [2894] = {.lex_state = 304, .external_lex_state = 2}, + [2895] = {.lex_state = 256, .external_lex_state = 2}, + [2896] = {.lex_state = 323, .external_lex_state = 2}, + [2897] = {.lex_state = 304, .external_lex_state = 2}, + [2898] = {.lex_state = 35, .external_lex_state = 2}, + [2899] = {.lex_state = 926}, + [2900] = {.lex_state = 358, .external_lex_state = 2}, + [2901] = {.lex_state = 304, .external_lex_state = 2}, + [2902] = {.lex_state = 304, .external_lex_state = 2}, + [2903] = {.lex_state = 333, .external_lex_state = 2}, + [2904] = {.lex_state = 304, .external_lex_state = 2}, + [2905] = {.lex_state = 256, .external_lex_state = 2}, + [2906] = {.lex_state = 310, .external_lex_state = 2}, + [2907] = {.lex_state = 296, .external_lex_state = 2}, + [2908] = {.lex_state = 296, .external_lex_state = 2}, + [2909] = {.lex_state = 312, .external_lex_state = 2}, + [2910] = {.lex_state = 296, .external_lex_state = 2}, + [2911] = {.lex_state = 296, .external_lex_state = 2}, + [2912] = {.lex_state = 296, .external_lex_state = 2}, + [2913] = {.lex_state = 296, .external_lex_state = 2}, + [2914] = {.lex_state = 334, .external_lex_state = 2}, + [2915] = {.lex_state = 1034}, + [2916] = {.lex_state = 313, .external_lex_state = 2}, + [2917] = {.lex_state = 1005}, + [2918] = {.lex_state = 37, .external_lex_state = 2}, + [2919] = {.lex_state = 296, .external_lex_state = 2}, + [2920] = {.lex_state = 123}, + [2921] = {.lex_state = 310, .external_lex_state = 2}, + [2922] = {.lex_state = 296, .external_lex_state = 2}, + [2923] = {.lex_state = 296, .external_lex_state = 2}, + [2924] = {.lex_state = 296, .external_lex_state = 2}, + [2925] = {.lex_state = 125}, + [2926] = {.lex_state = 1009}, + [2927] = {.lex_state = 1036}, + [2928] = {.lex_state = 310, .external_lex_state = 2}, + [2929] = {.lex_state = 995}, + [2930] = {.lex_state = 310, .external_lex_state = 2}, + [2931] = {.lex_state = 310, .external_lex_state = 2}, + [2932] = {.lex_state = 926}, + [2933] = {.lex_state = 310, .external_lex_state = 2}, + [2934] = {.lex_state = 312, .external_lex_state = 2}, + [2935] = {.lex_state = 926}, + [2936] = {.lex_state = 339, .external_lex_state = 2}, + [2937] = {.lex_state = 219, .external_lex_state = 2}, + [2938] = {.lex_state = 325, .external_lex_state = 2}, + [2939] = {.lex_state = 926}, + [2940] = {.lex_state = 1005}, + [2941] = {.lex_state = 311, .external_lex_state = 2}, + [2942] = {.lex_state = 926}, + [2943] = {.lex_state = 219, .external_lex_state = 2}, + [2944] = {.lex_state = 1001}, + [2945] = {.lex_state = 334, .external_lex_state = 2}, + [2946] = {.lex_state = 325, .external_lex_state = 2}, + [2947] = {.lex_state = 302, .external_lex_state = 2}, + [2948] = {.lex_state = 296, .external_lex_state = 2}, + [2949] = {.lex_state = 296, .external_lex_state = 2}, + [2950] = {.lex_state = 296, .external_lex_state = 2}, + [2951] = {.lex_state = 325, .external_lex_state = 2}, + [2952] = {.lex_state = 314, .external_lex_state = 2}, + [2953] = {.lex_state = 314, .external_lex_state = 2}, + [2954] = {.lex_state = 309, .external_lex_state = 2}, + [2955] = {.lex_state = 309, .external_lex_state = 2}, + [2956] = {.lex_state = 314, .external_lex_state = 2}, + [2957] = {.lex_state = 127}, + [2958] = {.lex_state = 314, .external_lex_state = 2}, + [2959] = {.lex_state = 314, .external_lex_state = 2}, + [2960] = {.lex_state = 314, .external_lex_state = 2}, + [2961] = {.lex_state = 314, .external_lex_state = 2}, + [2962] = {.lex_state = 314, .external_lex_state = 2}, + [2963] = {.lex_state = 314, .external_lex_state = 2}, + [2964] = {.lex_state = 314, .external_lex_state = 2}, + [2965] = {.lex_state = 314, .external_lex_state = 2}, + [2966] = {.lex_state = 314, .external_lex_state = 2}, + [2967] = {.lex_state = 314, .external_lex_state = 2}, + [2968] = {.lex_state = 314, .external_lex_state = 2}, + [2969] = {.lex_state = 314, .external_lex_state = 2}, + [2970] = {.lex_state = 314, .external_lex_state = 2}, + [2971] = {.lex_state = 314, .external_lex_state = 2}, + [2972] = {.lex_state = 314, .external_lex_state = 2}, + [2973] = {.lex_state = 314, .external_lex_state = 2}, + [2974] = {.lex_state = 314, .external_lex_state = 2}, + [2975] = {.lex_state = 314, .external_lex_state = 2}, + [2976] = {.lex_state = 314, .external_lex_state = 2}, + [2977] = {.lex_state = 314, .external_lex_state = 2}, + [2978] = {.lex_state = 314, .external_lex_state = 2}, + [2979] = {.lex_state = 314, .external_lex_state = 2}, + [2980] = {.lex_state = 335, .external_lex_state = 2}, + [2981] = {.lex_state = 335, .external_lex_state = 2}, + [2982] = {.lex_state = 359, .external_lex_state = 2}, + [2983] = {.lex_state = 314, .external_lex_state = 2}, + [2984] = {.lex_state = 1009}, + [2985] = {.lex_state = 127}, + [2986] = {.lex_state = 359, .external_lex_state = 2}, + [2987] = {.lex_state = 1034}, + [2988] = {.lex_state = 1036}, + [2989] = {.lex_state = 335, .external_lex_state = 2}, + [2990] = {.lex_state = 314, .external_lex_state = 2}, + [2991] = {.lex_state = 1038}, + [2992] = {.lex_state = 314, .external_lex_state = 2}, + [2993] = {.lex_state = 335, .external_lex_state = 2}, + [2994] = {.lex_state = 314, .external_lex_state = 2}, + [2995] = {.lex_state = 314, .external_lex_state = 2}, + [2996] = {.lex_state = 300, .external_lex_state = 2}, + [2997] = {.lex_state = 314, .external_lex_state = 2}, + [2998] = {.lex_state = 359, .external_lex_state = 2}, + [2999] = {.lex_state = 314, .external_lex_state = 2}, + [3000] = {.lex_state = 37, .external_lex_state = 2}, + [3001] = {.lex_state = 314, .external_lex_state = 2}, + [3002] = {.lex_state = 314, .external_lex_state = 2}, + [3003] = {.lex_state = 314, .external_lex_state = 2}, + [3004] = {.lex_state = 1005}, + [3005] = {.lex_state = 335, .external_lex_state = 2}, + [3006] = {.lex_state = 1038}, + [3007] = {.lex_state = 41, .external_lex_state = 2}, + [3008] = {.lex_state = 1009}, + [3009] = {.lex_state = 314, .external_lex_state = 2}, + [3010] = {.lex_state = 1009}, + [3011] = {.lex_state = 314, .external_lex_state = 2}, + [3012] = {.lex_state = 359, .external_lex_state = 2}, + [3013] = {.lex_state = 1009}, + [3014] = {.lex_state = 314, .external_lex_state = 2}, + [3015] = {.lex_state = 314, .external_lex_state = 2}, + [3016] = {.lex_state = 136}, + [3017] = {.lex_state = 296, .external_lex_state = 2}, + [3018] = {.lex_state = 335, .external_lex_state = 2}, + [3019] = {.lex_state = 299, .external_lex_state = 2}, + [3020] = {.lex_state = 138}, + [3021] = {.lex_state = 309, .external_lex_state = 2}, + [3022] = {.lex_state = 314, .external_lex_state = 2}, + [3023] = {.lex_state = 335, .external_lex_state = 2}, + [3024] = {.lex_state = 1009}, + [3025] = {.lex_state = 129}, + [3026] = {.lex_state = 314, .external_lex_state = 2}, + [3027] = {.lex_state = 314, .external_lex_state = 2}, + [3028] = {.lex_state = 314, .external_lex_state = 2}, + [3029] = {.lex_state = 314, .external_lex_state = 2}, + [3030] = {.lex_state = 314, .external_lex_state = 2}, + [3031] = {.lex_state = 314, .external_lex_state = 2}, + [3032] = {.lex_state = 335, .external_lex_state = 2}, + [3033] = {.lex_state = 314, .external_lex_state = 2}, + [3034] = {.lex_state = 296, .external_lex_state = 2}, + [3035] = {.lex_state = 314, .external_lex_state = 2}, + [3036] = {.lex_state = 314, .external_lex_state = 2}, + [3037] = {.lex_state = 314, .external_lex_state = 2}, + [3038] = {.lex_state = 335, .external_lex_state = 2}, + [3039] = {.lex_state = 314, .external_lex_state = 2}, + [3040] = {.lex_state = 1005}, + [3041] = {.lex_state = 314, .external_lex_state = 2}, + [3042] = {.lex_state = 359, .external_lex_state = 2}, + [3043] = {.lex_state = 299, .external_lex_state = 2}, + [3044] = {.lex_state = 335, .external_lex_state = 2}, + [3045] = {.lex_state = 37, .external_lex_state = 2}, + [3046] = {.lex_state = 1040}, + [3047] = {.lex_state = 129}, + [3048] = {.lex_state = 129}, + [3049] = {.lex_state = 1040}, + [3050] = {.lex_state = 37, .external_lex_state = 2}, + [3051] = {.lex_state = 37, .external_lex_state = 2}, + [3052] = {.lex_state = 37, .external_lex_state = 2}, + [3053] = {.lex_state = 1040}, + [3054] = {.lex_state = 37, .external_lex_state = 2}, + [3055] = {.lex_state = 41, .external_lex_state = 2}, + [3056] = {.lex_state = 37, .external_lex_state = 2}, + [3057] = {.lex_state = 37, .external_lex_state = 2}, + [3058] = {.lex_state = 1038}, + [3059] = {.lex_state = 37, .external_lex_state = 2}, + [3060] = {.lex_state = 37, .external_lex_state = 2}, + [3061] = {.lex_state = 37, .external_lex_state = 2}, + [3062] = {.lex_state = 37, .external_lex_state = 2}, + [3063] = {.lex_state = 129}, + [3064] = {.lex_state = 37, .external_lex_state = 2}, + [3065] = {.lex_state = 37, .external_lex_state = 2}, + [3066] = {.lex_state = 37, .external_lex_state = 2}, + [3067] = {.lex_state = 37, .external_lex_state = 2}, + [3068] = {.lex_state = 1009}, + [3069] = {.lex_state = 37, .external_lex_state = 2}, + [3070] = {.lex_state = 140}, + [3071] = {.lex_state = 37, .external_lex_state = 2}, + [3072] = {.lex_state = 37, .external_lex_state = 2}, + [3073] = {.lex_state = 37, .external_lex_state = 2}, + [3074] = {.lex_state = 37, .external_lex_state = 2}, + [3075] = {.lex_state = 37, .external_lex_state = 2}, + [3076] = {.lex_state = 37, .external_lex_state = 2}, + [3077] = {.lex_state = 1009}, + [3078] = {.lex_state = 37, .external_lex_state = 2}, + [3079] = {.lex_state = 37, .external_lex_state = 2}, + [3080] = {.lex_state = 1040}, + [3081] = {.lex_state = 37, .external_lex_state = 2}, + [3082] = {.lex_state = 37, .external_lex_state = 2}, + [3083] = {.lex_state = 37, .external_lex_state = 2}, + [3084] = {.lex_state = 37, .external_lex_state = 2}, + [3085] = {.lex_state = 37, .external_lex_state = 2}, + [3086] = {.lex_state = 140}, + [3087] = {.lex_state = 37, .external_lex_state = 2}, + [3088] = {.lex_state = 37, .external_lex_state = 2}, + [3089] = {.lex_state = 37, .external_lex_state = 2}, + [3090] = {.lex_state = 129}, + [3091] = {.lex_state = 37, .external_lex_state = 2}, + [3092] = {.lex_state = 37, .external_lex_state = 2}, + [3093] = {.lex_state = 37, .external_lex_state = 2}, + [3094] = {.lex_state = 37, .external_lex_state = 2}, + [3095] = {.lex_state = 37, .external_lex_state = 2}, + [3096] = {.lex_state = 1038}, + [3097] = {.lex_state = 37, .external_lex_state = 2}, + [3098] = {.lex_state = 37, .external_lex_state = 2}, + [3099] = {.lex_state = 37, .external_lex_state = 2}, + [3100] = {.lex_state = 37, .external_lex_state = 2}, + [3101] = {.lex_state = 37, .external_lex_state = 2}, + [3102] = {.lex_state = 37, .external_lex_state = 2}, + [3103] = {.lex_state = 37, .external_lex_state = 2}, + [3104] = {.lex_state = 37, .external_lex_state = 2}, + [3105] = {.lex_state = 37, .external_lex_state = 2}, + [3106] = {.lex_state = 37, .external_lex_state = 2}, + [3107] = {.lex_state = 1009}, + [3108] = {.lex_state = 37, .external_lex_state = 2}, + [3109] = {.lex_state = 37, .external_lex_state = 2}, + [3110] = {.lex_state = 37, .external_lex_state = 2}, + [3111] = {.lex_state = 37, .external_lex_state = 2}, + [3112] = {.lex_state = 1040}, + [3113] = {.lex_state = 37, .external_lex_state = 2}, + [3114] = {.lex_state = 37, .external_lex_state = 2}, + [3115] = {.lex_state = 37, .external_lex_state = 2}, + [3116] = {.lex_state = 37, .external_lex_state = 2}, + [3117] = {.lex_state = 37, .external_lex_state = 2}, + [3118] = {.lex_state = 1009}, + [3119] = {.lex_state = 37, .external_lex_state = 2}, + [3120] = {.lex_state = 37, .external_lex_state = 2}, + [3121] = {.lex_state = 37, .external_lex_state = 2}, + [3122] = {.lex_state = 37, .external_lex_state = 2}, + [3123] = {.lex_state = 37, .external_lex_state = 2}, + [3124] = {.lex_state = 37, .external_lex_state = 2}, + [3125] = {.lex_state = 37, .external_lex_state = 2}, + [3126] = {.lex_state = 142}, + [3127] = {.lex_state = 1040}, + [3128] = {.lex_state = 142}, + [3129] = {.lex_state = 37, .external_lex_state = 2}, + [3130] = {.lex_state = 1040}, + [3131] = {.lex_state = 1040}, + [3132] = {.lex_state = 142}, + [3133] = {.lex_state = 1040}, + [3134] = {.lex_state = 142}, + [3135] = {.lex_state = 142}, + [3136] = {.lex_state = 990}, + [3137] = {.lex_state = 1040}, + [3138] = {.lex_state = 77}, + [3139] = {.lex_state = 77}, + [3140] = {.lex_state = 77}, + [3141] = {.lex_state = 77}, + [3142] = {.lex_state = 77}, + [3143] = {.lex_state = 77}, + [3144] = {.lex_state = 990}, + [3145] = {.lex_state = 991}, + [3146] = {.lex_state = 77}, + [3147] = {.lex_state = 77}, + [3148] = {.lex_state = 77}, + [3149] = {.lex_state = 77}, + [3150] = {.lex_state = 77}, + [3151] = {.lex_state = 77}, + [3152] = {.lex_state = 77}, + [3153] = {.lex_state = 77}, + [3154] = {.lex_state = 991}, + [3155] = {.lex_state = 77}, + [3156] = {.lex_state = 991}, + [3157] = {.lex_state = 77}, + [3158] = {.lex_state = 991}, + [3159] = {.lex_state = 143}, + [3160] = {.lex_state = 991}, + [3161] = {.lex_state = 1051}, + [3162] = {.lex_state = 1051}, [3163] = {.lex_state = 1051}, - [3164] = {.lex_state = 1054}, - [3165] = {.lex_state = 924}, - [3166] = {.lex_state = 118}, - [3167] = {.lex_state = 118}, - [3168] = {.lex_state = 118}, - [3169] = {.lex_state = 118}, - [3170] = {.lex_state = 990}, - [3171] = {.lex_state = 118}, - [3172] = {.lex_state = 118}, - [3173] = {.lex_state = 118}, - [3174] = {.lex_state = 118}, - [3175] = {.lex_state = 118}, - [3176] = {.lex_state = 118}, - [3177] = {.lex_state = 118}, - [3178] = {.lex_state = 118}, - [3179] = {.lex_state = 990}, - [3180] = {.lex_state = 118}, - [3181] = {.lex_state = 118}, - [3182] = {.lex_state = 118}, - [3183] = {.lex_state = 990}, - [3184] = {.lex_state = 118}, - [3185] = {.lex_state = 990}, - [3186] = {.lex_state = 118}, - [3187] = {.lex_state = 118}, - [3188] = {.lex_state = 118}, - [3189] = {.lex_state = 118}, - [3190] = {.lex_state = 118}, - [3191] = {.lex_state = 118}, - [3192] = {.lex_state = 118}, - [3193] = {.lex_state = 118}, - [3194] = {.lex_state = 118}, - [3195] = {.lex_state = 118}, - [3196] = {.lex_state = 118}, - [3197] = {.lex_state = 118}, - [3198] = {.lex_state = 118}, - [3199] = {.lex_state = 118}, - [3200] = {.lex_state = 118}, - [3201] = {.lex_state = 118}, - [3202] = {.lex_state = 118}, - [3203] = {.lex_state = 118}, - [3204] = {.lex_state = 118}, - [3205] = {.lex_state = 118}, - [3206] = {.lex_state = 118}, - [3207] = {.lex_state = 118}, - [3208] = {.lex_state = 118}, - [3209] = {.lex_state = 118}, - [3210] = {.lex_state = 118}, - [3211] = {.lex_state = 118}, - [3212] = {.lex_state = 118}, - [3213] = {.lex_state = 118}, - [3214] = {.lex_state = 118}, - [3215] = {.lex_state = 118}, - [3216] = {.lex_state = 118}, - [3217] = {.lex_state = 118}, - [3218] = {.lex_state = 118}, - [3219] = {.lex_state = 118}, - [3220] = {.lex_state = 118}, - [3221] = {.lex_state = 118}, - [3222] = {.lex_state = 118}, - [3223] = {.lex_state = 118}, - [3224] = {.lex_state = 118}, - [3225] = {.lex_state = 118}, - [3226] = {.lex_state = 118}, - [3227] = {.lex_state = 118}, - [3228] = {.lex_state = 118}, - [3229] = {.lex_state = 118}, - [3230] = {.lex_state = 118}, - [3231] = {.lex_state = 118}, - [3232] = {.lex_state = 118}, - [3233] = {.lex_state = 118}, + [3164] = {.lex_state = 1051}, + [3165] = {.lex_state = 928}, + [3166] = {.lex_state = 77}, + [3167] = {.lex_state = 928}, + [3168] = {.lex_state = 69}, + [3169] = {.lex_state = 1051}, + [3170] = {.lex_state = 928}, + [3171] = {.lex_state = 928}, + [3172] = {.lex_state = 928}, + [3173] = {.lex_state = 1051}, + [3174] = {.lex_state = 149}, + [3175] = {.lex_state = 982}, + [3176] = {.lex_state = 928}, + [3177] = {.lex_state = 149}, + [3178] = {.lex_state = 149}, + [3179] = {.lex_state = 149}, + [3180] = {.lex_state = 77}, + [3181] = {.lex_state = 1054}, + [3182] = {.lex_state = 1054}, + [3183] = {.lex_state = 1051}, + [3184] = {.lex_state = 1047}, + [3185] = {.lex_state = 1047}, + [3186] = {.lex_state = 1054}, + [3187] = {.lex_state = 1051}, + [3188] = {.lex_state = 149}, + [3189] = {.lex_state = 928}, + [3190] = {.lex_state = 928}, + [3191] = {.lex_state = 1051}, + [3192] = {.lex_state = 1051}, + [3193] = {.lex_state = 928}, + [3194] = {.lex_state = 928}, + [3195] = {.lex_state = 928}, + [3196] = {.lex_state = 1046}, + [3197] = {.lex_state = 152}, + [3198] = {.lex_state = 77}, + [3199] = {.lex_state = 77}, + [3200] = {.lex_state = 928}, + [3201] = {.lex_state = 928}, + [3202] = {.lex_state = 146}, + [3203] = {.lex_state = 982}, + [3204] = {.lex_state = 982}, + [3205] = {.lex_state = 982}, + [3206] = {.lex_state = 77}, + [3207] = {.lex_state = 77}, + [3208] = {.lex_state = 77}, + [3209] = {.lex_state = 77}, + [3210] = {.lex_state = 77}, + [3211] = {.lex_state = 77}, + [3212] = {.lex_state = 1054}, + [3213] = {.lex_state = 1054}, + [3214] = {.lex_state = 1047}, + [3215] = {.lex_state = 1047}, + [3216] = {.lex_state = 990}, + [3217] = {.lex_state = 152}, + [3218] = {.lex_state = 152}, + [3219] = {.lex_state = 982}, + [3220] = {.lex_state = 77}, + [3221] = {.lex_state = 147}, + [3222] = {.lex_state = 147}, + [3223] = {.lex_state = 990}, + [3224] = {.lex_state = 990}, + [3225] = {.lex_state = 990}, + [3226] = {.lex_state = 990}, + [3227] = {.lex_state = 990}, + [3228] = {.lex_state = 990}, + [3229] = {.lex_state = 990}, + [3230] = {.lex_state = 990}, + [3231] = {.lex_state = 990}, + [3232] = {.lex_state = 990}, + [3233] = {.lex_state = 990}, [3234] = {.lex_state = 990}, - [3235] = {.lex_state = 990}, - [3236] = {.lex_state = 990}, - [3237] = {.lex_state = 990}, - [3238] = {.lex_state = 990}, - [3239] = {.lex_state = 990}, - [3240] = {.lex_state = 143}, - [3241] = {.lex_state = 76}, - [3242] = {.lex_state = 924}, - [3243] = {.lex_state = 76}, - [3244] = {.lex_state = 924}, - [3245] = {.lex_state = 144}, - [3246] = {.lex_state = 144}, - [3247] = {.lex_state = 76}, - [3248] = {.lex_state = 980}, - [3249] = {.lex_state = 149}, - [3250] = {.lex_state = 149}, - [3251] = {.lex_state = 118}, - [3252] = {.lex_state = 118}, - [3253] = {.lex_state = 118}, - [3254] = {.lex_state = 118}, - [3255] = {.lex_state = 980}, - [3256] = {.lex_state = 118}, - [3257] = {.lex_state = 118}, - [3258] = {.lex_state = 149}, - [3259] = {.lex_state = 1054}, - [3260] = {.lex_state = 1047}, - [3261] = {.lex_state = 118}, - [3262] = {.lex_state = 118}, - [3263] = {.lex_state = 118}, - [3264] = {.lex_state = 118}, - [3265] = {.lex_state = 118}, - [3266] = {.lex_state = 76}, - [3267] = {.lex_state = 76}, - [3268] = {.lex_state = 118}, - [3269] = {.lex_state = 924}, - [3270] = {.lex_state = 76}, - [3271] = {.lex_state = 76}, - [3272] = {.lex_state = 76}, - [3273] = {.lex_state = 990}, - [3274] = {.lex_state = 1054}, - [3275] = {.lex_state = 1054}, - [3276] = {.lex_state = 990}, - [3277] = {.lex_state = 76}, - [3278] = {.lex_state = 1047}, - [3279] = {.lex_state = 76}, - [3280] = {.lex_state = 118}, - [3281] = {.lex_state = 118}, - [3282] = {.lex_state = 118}, - [3283] = {.lex_state = 118}, - [3284] = {.lex_state = 118}, - [3285] = {.lex_state = 924}, - [3286] = {.lex_state = 118}, - [3287] = {.lex_state = 118}, - [3288] = {.lex_state = 118}, - [3289] = {.lex_state = 118}, - [3290] = {.lex_state = 118}, - [3291] = {.lex_state = 118}, - [3292] = {.lex_state = 118}, - [3293] = {.lex_state = 118}, - [3294] = {.lex_state = 118}, - [3295] = {.lex_state = 118}, - [3296] = {.lex_state = 118}, - [3297] = {.lex_state = 118}, - [3298] = {.lex_state = 1046}, - [3299] = {.lex_state = 118}, - [3300] = {.lex_state = 118}, - [3301] = {.lex_state = 118}, - [3302] = {.lex_state = 990}, - [3303] = {.lex_state = 76}, - [3304] = {.lex_state = 990}, - [3305] = {.lex_state = 76}, - [3306] = {.lex_state = 405}, - [3307] = {.lex_state = 990}, - [3308] = {.lex_state = 76}, - [3309] = {.lex_state = 76}, - [3310] = {.lex_state = 118}, - [3311] = {.lex_state = 76}, - [3312] = {.lex_state = 76}, - [3313] = {.lex_state = 924}, - [3314] = {.lex_state = 924}, - [3315] = {.lex_state = 924}, - [3316] = {.lex_state = 404}, - [3317] = {.lex_state = 924}, - [3318] = {.lex_state = 76}, - [3319] = {.lex_state = 76}, - [3320] = {.lex_state = 924}, - [3321] = {.lex_state = 990}, - [3322] = {.lex_state = 990}, - [3323] = {.lex_state = 990}, - [3324] = {.lex_state = 990}, - [3325] = {.lex_state = 76}, - [3326] = {.lex_state = 990}, - [3327] = {.lex_state = 990}, - [3328] = {.lex_state = 990}, - [3329] = {.lex_state = 990}, - [3330] = {.lex_state = 990}, - [3331] = {.lex_state = 990}, - [3332] = {.lex_state = 924}, - [3333] = {.lex_state = 76}, - [3334] = {.lex_state = 990}, - [3335] = {.lex_state = 990}, - [3336] = {.lex_state = 990}, - [3337] = {.lex_state = 990}, - [3338] = {.lex_state = 76}, - [3339] = {.lex_state = 127}, - [3340] = {.lex_state = 408}, - [3341] = {.lex_state = 204}, - [3342] = {.lex_state = 414}, - [3343] = {.lex_state = 100}, - [3344] = {.lex_state = 204}, - [3345] = {.lex_state = 406}, - [3346] = {.lex_state = 407}, - [3347] = {.lex_state = 406}, - [3348] = {.lex_state = 208}, - [3349] = {.lex_state = 212}, - [3350] = {.lex_state = 128}, - [3351] = {.lex_state = 100}, - [3352] = {.lex_state = 922}, - [3353] = {.lex_state = 100}, - [3354] = {.lex_state = 409}, - [3355] = {.lex_state = 129}, - [3356] = {.lex_state = 76}, - [3357] = {.lex_state = 980}, - [3358] = {.lex_state = 205}, - [3359] = {.lex_state = 407}, - [3360] = {.lex_state = 209}, - [3361] = {.lex_state = 130}, - [3362] = {.lex_state = 980}, - [3363] = {.lex_state = 129}, - [3364] = {.lex_state = 100}, - [3365] = {.lex_state = 407}, - [3366] = {.lex_state = 986}, - [3367] = {.lex_state = 986}, - [3368] = {.lex_state = 415}, - [3369] = {.lex_state = 407}, - [3370] = {.lex_state = 417}, - [3371] = {.lex_state = 100}, - [3372] = {.lex_state = 205}, - [3373] = {.lex_state = 407}, - [3374] = {.lex_state = 76}, - [3375] = {.lex_state = 76}, - [3376] = {.lex_state = 415}, - [3377] = {.lex_state = 986}, - [3378] = {.lex_state = 76}, - [3379] = {.lex_state = 986}, - [3380] = {.lex_state = 209}, - [3381] = {.lex_state = 922}, - [3382] = {.lex_state = 210}, - [3383] = {.lex_state = 419}, - [3384] = {.lex_state = 418}, - [3385] = {.lex_state = 416}, - [3386] = {.lex_state = 130}, - [3387] = {.lex_state = 210}, - [3388] = {.lex_state = 130}, - [3389] = {.lex_state = 980}, - [3390] = {.lex_state = 491}, - [3391] = {.lex_state = 210}, - [3392] = {.lex_state = 416}, - [3393] = {.lex_state = 922}, - [3394] = {.lex_state = 210}, - [3395] = {.lex_state = 922}, - [3396] = {.lex_state = 922}, - [3397] = {.lex_state = 980}, - [3398] = {.lex_state = 922}, - [3399] = {.lex_state = 491}, - [3400] = {.lex_state = 130}, - [3401] = {.lex_state = 922}, - [3402] = {.lex_state = 922}, - [3403] = {.lex_state = 416}, - [3404] = {.lex_state = 130}, - [3405] = {.lex_state = 980}, - [3406] = {.lex_state = 100}, - [3407] = {.lex_state = 100}, - [3408] = {.lex_state = 416}, - [3409] = {.lex_state = 491}, - [3410] = {.lex_state = 491}, - [3411] = {.lex_state = 980}, - [3412] = {.lex_state = 491}, - [3413] = {.lex_state = 980}, - [3414] = {.lex_state = 210}, - [3415] = {.lex_state = 922}, - [3416] = {.lex_state = 980}, - [3417] = {.lex_state = 922}, - [3418] = {.lex_state = 100}, - [3419] = {.lex_state = 922}, - [3420] = {.lex_state = 100}, - [3421] = {.lex_state = 922}, - [3422] = {.lex_state = 418}, - [3423] = {.lex_state = 922}, - [3424] = {.lex_state = 416}, - [3425] = {.lex_state = 922}, - [3426] = {.lex_state = 922}, - [3427] = {.lex_state = 922}, - [3428] = {.lex_state = 100}, - [3429] = {.lex_state = 101}, - [3430] = {.lex_state = 419}, - [3431] = {.lex_state = 419}, - [3432] = {.lex_state = 101}, - [3433] = {.lex_state = 419}, - [3434] = {.lex_state = 100}, - [3435] = {.lex_state = 101}, - [3436] = {.lex_state = 101}, - [3437] = {.lex_state = 101}, - [3438] = {.lex_state = 419}, - [3439] = {.lex_state = 101}, - [3440] = {.lex_state = 101}, - [3441] = {.lex_state = 101}, - [3442] = {.lex_state = 101}, - [3443] = {.lex_state = 101}, - [3444] = {.lex_state = 101}, - [3445] = {.lex_state = 101}, - [3446] = {.lex_state = 986}, - [3447] = {.lex_state = 100}, - [3448] = {.lex_state = 101}, - [3449] = {.lex_state = 101}, - [3450] = {.lex_state = 101}, - [3451] = {.lex_state = 101}, - [3452] = {.lex_state = 101}, - [3453] = {.lex_state = 491}, - [3454] = {.lex_state = 491}, - [3455] = {.lex_state = 101}, - [3456] = {.lex_state = 101}, - [3457] = {.lex_state = 101}, - [3458] = {.lex_state = 101}, - [3459] = {.lex_state = 101}, - [3460] = {.lex_state = 986}, - [3461] = {.lex_state = 101}, - [3462] = {.lex_state = 101}, - [3463] = {.lex_state = 101}, - [3464] = {.lex_state = 100}, - [3465] = {.lex_state = 922}, - [3466] = {.lex_state = 947}, - [3467] = {.lex_state = 947}, - [3468] = {.lex_state = 947}, - [3469] = {.lex_state = 947}, - [3470] = {.lex_state = 947}, - [3471] = {.lex_state = 947}, - [3472] = {.lex_state = 100}, - [3473] = {.lex_state = 947}, - [3474] = {.lex_state = 986}, - [3475] = {.lex_state = 947}, - [3476] = {.lex_state = 101}, - [3477] = {.lex_state = 947}, - [3478] = {.lex_state = 947}, - [3479] = {.lex_state = 947}, - [3480] = {.lex_state = 986}, - [3481] = {.lex_state = 947}, - [3482] = {.lex_state = 947}, - [3483] = {.lex_state = 922}, - [3484] = {.lex_state = 947}, - [3485] = {.lex_state = 947}, - [3486] = {.lex_state = 947}, - [3487] = {.lex_state = 947}, - [3488] = {.lex_state = 947}, - [3489] = {.lex_state = 947}, - [3490] = {.lex_state = 101}, - [3491] = {.lex_state = 986}, - [3492] = {.lex_state = 947}, - [3493] = {.lex_state = 118}, - [3494] = {.lex_state = 947}, - [3495] = {.lex_state = 986}, - [3496] = {.lex_state = 947}, - [3497] = {.lex_state = 947}, - [3498] = {.lex_state = 986}, - [3499] = {.lex_state = 986}, - [3500] = {.lex_state = 947}, - [3501] = {.lex_state = 986}, - [3502] = {.lex_state = 196}, - [3503] = {.lex_state = 986}, - [3504] = {.lex_state = 102}, - [3505] = {.lex_state = 986}, - [3506] = {.lex_state = 947}, - [3507] = {.lex_state = 99}, - [3508] = {.lex_state = 986}, - [3509] = {.lex_state = 922}, - [3510] = {.lex_state = 947}, - [3511] = {.lex_state = 947}, - [3512] = {.lex_state = 947}, - [3513] = {.lex_state = 922}, - [3514] = {.lex_state = 507}, - [3515] = {.lex_state = 507}, - [3516] = {.lex_state = 507}, - [3517] = {.lex_state = 507}, - [3518] = {.lex_state = 118}, - [3519] = {.lex_state = 947}, - [3520] = {.lex_state = 922}, - [3521] = {.lex_state = 922}, - [3522] = {.lex_state = 507}, - [3523] = {.lex_state = 922}, - [3524] = {.lex_state = 922}, - [3525] = {.lex_state = 922}, - [3526] = {.lex_state = 118}, - [3527] = {.lex_state = 922}, - [3528] = {.lex_state = 101}, - [3529] = {.lex_state = 947}, - [3530] = {.lex_state = 201}, - [3531] = {.lex_state = 922}, - [3532] = {.lex_state = 922}, - [3533] = {.lex_state = 356}, - [3534] = {.lex_state = 356}, - [3535] = {.lex_state = 356}, - [3536] = {.lex_state = 356}, - [3537] = {.lex_state = 508}, - [3538] = {.lex_state = 508}, - [3539] = {.lex_state = 508}, - [3540] = {.lex_state = 356}, - [3541] = {.lex_state = 65}, - [3542] = {.lex_state = 147}, - [3543] = {.lex_state = 947}, - [3544] = {.lex_state = 947}, - [3545] = {.lex_state = 947}, - [3546] = {.lex_state = 508}, - [3547] = {.lex_state = 147}, - [3548] = {.lex_state = 449}, - [3549] = {.lex_state = 147}, - [3550] = {.lex_state = 147}, - [3551] = {.lex_state = 922}, - [3552] = {.lex_state = 922}, - [3553] = {.lex_state = 922}, - [3554] = {.lex_state = 922}, - [3555] = {.lex_state = 947}, - [3556] = {.lex_state = 99}, - [3557] = {.lex_state = 922}, - [3558] = {.lex_state = 922}, - [3559] = {.lex_state = 99}, - [3560] = {.lex_state = 199}, - [3561] = {.lex_state = 947}, - [3562] = {.lex_state = 211}, - [3563] = {.lex_state = 65}, - [3564] = {.lex_state = 102}, - [3565] = {.lex_state = 102}, - [3566] = {.lex_state = 147}, - [3567] = {.lex_state = 39}, - [3568] = {.lex_state = 509}, - [3569] = {.lex_state = 990}, - [3570] = {.lex_state = 990}, - [3571] = {.lex_state = 990}, - [3572] = {.lex_state = 990}, - [3573] = {.lex_state = 131}, - [3574] = {.lex_state = 924}, - [3575] = {.lex_state = 118}, - [3576] = {.lex_state = 118}, - [3577] = {.lex_state = 118}, - [3578] = {.lex_state = 118}, - [3579] = {.lex_state = 118}, - [3580] = {.lex_state = 118}, - [3581] = {.lex_state = 118}, - [3582] = {.lex_state = 118}, - [3583] = {.lex_state = 118}, - [3584] = {.lex_state = 118}, - [3585] = {.lex_state = 118}, - [3586] = {.lex_state = 118}, - [3587] = {.lex_state = 118}, - [3588] = {.lex_state = 118}, - [3589] = {.lex_state = 118}, - [3590] = {.lex_state = 118}, - [3591] = {.lex_state = 118}, - [3592] = {.lex_state = 118}, - [3593] = {.lex_state = 118}, - [3594] = {.lex_state = 118}, - [3595] = {.lex_state = 118}, - [3596] = {.lex_state = 118}, - [3597] = {.lex_state = 118}, - [3598] = {.lex_state = 118}, - [3599] = {.lex_state = 118}, - [3600] = {.lex_state = 118}, - [3601] = {.lex_state = 118}, - [3602] = {.lex_state = 118}, - [3603] = {.lex_state = 118}, - [3604] = {.lex_state = 118}, - [3605] = {.lex_state = 118}, - [3606] = {.lex_state = 118}, - [3607] = {.lex_state = 118}, - [3608] = {.lex_state = 118}, - [3609] = {.lex_state = 118}, - [3610] = {.lex_state = 118}, - [3611] = {.lex_state = 118}, - [3612] = {.lex_state = 118}, - [3613] = {.lex_state = 118}, - [3614] = {.lex_state = 118}, - [3615] = {.lex_state = 118}, - [3616] = {.lex_state = 118}, - [3617] = {.lex_state = 118}, - [3618] = {.lex_state = 118}, - [3619] = {.lex_state = 118}, - [3620] = {.lex_state = 118}, - [3621] = {.lex_state = 118}, - [3622] = {.lex_state = 118}, - [3623] = {.lex_state = 118}, - [3624] = {.lex_state = 118}, - [3625] = {.lex_state = 118}, - [3626] = {.lex_state = 118}, - [3627] = {.lex_state = 118}, - [3628] = {.lex_state = 118}, - [3629] = {.lex_state = 118}, - [3630] = {.lex_state = 118}, - [3631] = {.lex_state = 118}, - [3632] = {.lex_state = 118}, - [3633] = {.lex_state = 118}, - [3634] = {.lex_state = 118}, - [3635] = {.lex_state = 118}, - [3636] = {.lex_state = 118}, - [3637] = {.lex_state = 118}, - [3638] = {.lex_state = 118}, - [3639] = {.lex_state = 118}, - [3640] = {.lex_state = 118}, - [3641] = {.lex_state = 118}, - [3642] = {.lex_state = 118}, - [3643] = {.lex_state = 118}, - [3644] = {.lex_state = 118}, - [3645] = {.lex_state = 118}, - [3646] = {.lex_state = 118}, - [3647] = {.lex_state = 118}, - [3648] = {.lex_state = 118}, - [3649] = {.lex_state = 118}, - [3650] = {.lex_state = 118}, - [3651] = {.lex_state = 118}, - [3652] = {.lex_state = 118}, - [3653] = {.lex_state = 118}, - [3654] = {.lex_state = 118}, - [3655] = {.lex_state = 118}, - [3656] = {.lex_state = 118}, - [3657] = {.lex_state = 118}, - [3658] = {.lex_state = 118}, - [3659] = {.lex_state = 118}, - [3660] = {.lex_state = 118}, - [3661] = {.lex_state = 118}, - [3662] = {.lex_state = 118}, - [3663] = {.lex_state = 509}, - [3664] = {.lex_state = 118}, - [3665] = {.lex_state = 118}, - [3666] = {.lex_state = 118}, - [3667] = {.lex_state = 118}, - [3668] = {.lex_state = 118}, - [3669] = {.lex_state = 118}, - [3670] = {.lex_state = 118}, - [3671] = {.lex_state = 39}, - [3672] = {.lex_state = 39}, - [3673] = {.lex_state = 508}, - [3674] = {.lex_state = 39}, - [3675] = {.lex_state = 39}, - [3676] = {.lex_state = 39}, - [3677] = {.lex_state = 922}, - [3678] = {.lex_state = 39}, - [3679] = {.lex_state = 39}, - [3680] = {.lex_state = 39}, - [3681] = {.lex_state = 39}, - [3682] = {.lex_state = 39}, - [3683] = {.lex_state = 39}, - [3684] = {.lex_state = 39}, - [3685] = {.lex_state = 922}, - [3686] = {.lex_state = 922}, - [3687] = {.lex_state = 39}, - [3688] = {.lex_state = 39}, - [3689] = {.lex_state = 39}, - [3690] = {.lex_state = 39}, - [3691] = {.lex_state = 39}, - [3692] = {.lex_state = 39}, - [3693] = {.lex_state = 39}, - [3694] = {.lex_state = 509}, - [3695] = {.lex_state = 100}, - [3696] = {.lex_state = 100}, - [3697] = {.lex_state = 100}, - [3698] = {.lex_state = 100}, - [3699] = {.lex_state = 100}, - [3700] = {.lex_state = 100}, - [3701] = {.lex_state = 100}, - [3702] = {.lex_state = 100}, - [3703] = {.lex_state = 100}, - [3704] = {.lex_state = 100}, - [3705] = {.lex_state = 100}, - [3706] = {.lex_state = 100}, - [3707] = {.lex_state = 509}, - [3708] = {.lex_state = 922}, - [3709] = {.lex_state = 39}, - [3710] = {.lex_state = 39}, - [3711] = {.lex_state = 39}, - [3712] = {.lex_state = 39}, - [3713] = {.lex_state = 39}, - [3714] = {.lex_state = 39}, - [3715] = {.lex_state = 39}, - [3716] = {.lex_state = 39}, - [3717] = {.lex_state = 922}, - [3718] = {.lex_state = 39}, - [3719] = {.lex_state = 990}, - [3720] = {.lex_state = 39}, - [3721] = {.lex_state = 990}, - [3722] = {.lex_state = 39}, - [3723] = {.lex_state = 39}, - [3724] = {.lex_state = 39}, - [3725] = {.lex_state = 39}, - [3726] = {.lex_state = 39}, - [3727] = {.lex_state = 39}, - [3728] = {.lex_state = 39}, - [3729] = {.lex_state = 924}, - [3730] = {.lex_state = 39}, - [3731] = {.lex_state = 39}, - [3732] = {.lex_state = 39}, - [3733] = {.lex_state = 39}, - [3734] = {.lex_state = 39}, - [3735] = {.lex_state = 39}, - [3736] = {.lex_state = 39}, - [3737] = {.lex_state = 39}, - [3738] = {.lex_state = 39}, - [3739] = {.lex_state = 39}, - [3740] = {.lex_state = 39}, - [3741] = {.lex_state = 39}, - [3742] = {.lex_state = 39}, - [3743] = {.lex_state = 509}, - [3744] = {.lex_state = 118}, - [3745] = {.lex_state = 924}, - [3746] = {.lex_state = 118}, - [3747] = {.lex_state = 65}, - [3748] = {.lex_state = 489}, - [3749] = {.lex_state = 118}, - [3750] = {.lex_state = 924}, - [3751] = {.lex_state = 65}, - [3752] = {.lex_state = 65}, - [3753] = {.lex_state = 65}, - [3754] = {.lex_state = 65}, - [3755] = {.lex_state = 65}, - [3756] = {.lex_state = 65}, - [3757] = {.lex_state = 65}, - [3758] = {.lex_state = 65}, - [3759] = {.lex_state = 65}, - [3760] = {.lex_state = 65}, - [3761] = {.lex_state = 65}, - [3762] = {.lex_state = 65}, - [3763] = {.lex_state = 118}, - [3764] = {.lex_state = 65}, - [3765] = {.lex_state = 65}, - [3766] = {.lex_state = 118}, - [3767] = {.lex_state = 65}, - [3768] = {.lex_state = 118}, - [3769] = {.lex_state = 65}, - [3770] = {.lex_state = 496}, - [3771] = {.lex_state = 65}, - [3772] = {.lex_state = 65}, - [3773] = {.lex_state = 955}, - [3774] = {.lex_state = 118}, - [3775] = {.lex_state = 65}, - [3776] = {.lex_state = 65}, - [3777] = {.lex_state = 65}, - [3778] = {.lex_state = 118}, - [3779] = {.lex_state = 65}, - [3780] = {.lex_state = 65}, - [3781] = {.lex_state = 65}, - [3782] = {.lex_state = 955}, - [3783] = {.lex_state = 118}, - [3784] = {.lex_state = 65}, - [3785] = {.lex_state = 118}, - [3786] = {.lex_state = 97}, - [3787] = {.lex_state = 97}, - [3788] = {.lex_state = 102}, - [3789] = {.lex_state = 955}, - [3790] = {.lex_state = 102}, - [3791] = {.lex_state = 97}, - [3792] = {.lex_state = 102}, - [3793] = {.lex_state = 955}, - [3794] = {.lex_state = 102}, - [3795] = {.lex_state = 102}, - [3796] = {.lex_state = 955}, - [3797] = {.lex_state = 97}, - [3798] = {.lex_state = 97}, - [3799] = {.lex_state = 955}, - [3800] = {.lex_state = 102}, - [3801] = {.lex_state = 102}, - [3802] = {.lex_state = 102}, - [3803] = {.lex_state = 97}, - [3804] = {.lex_state = 102}, - [3805] = {.lex_state = 102}, - [3806] = {.lex_state = 102}, - [3807] = {.lex_state = 955}, - [3808] = {.lex_state = 102}, - [3809] = {.lex_state = 97}, - [3810] = {.lex_state = 97}, - [3811] = {.lex_state = 97}, - [3812] = {.lex_state = 97}, - [3813] = {.lex_state = 97}, - [3814] = {.lex_state = 97}, - [3815] = {.lex_state = 955}, - [3816] = {.lex_state = 65}, - [3817] = {.lex_state = 955}, - [3818] = {.lex_state = 955}, - [3819] = {.lex_state = 97}, - [3820] = {.lex_state = 97}, - [3821] = {.lex_state = 955}, - [3822] = {.lex_state = 97}, - [3823] = {.lex_state = 97}, - [3824] = {.lex_state = 65}, - [3825] = {.lex_state = 65}, - [3826] = {.lex_state = 65}, - [3827] = {.lex_state = 65}, - [3828] = {.lex_state = 65}, - [3829] = {.lex_state = 922}, - [3830] = {.lex_state = 955}, - [3831] = {.lex_state = 65}, - [3832] = {.lex_state = 97}, - [3833] = {.lex_state = 97}, - [3834] = {.lex_state = 65}, - [3835] = {.lex_state = 955}, - [3836] = {.lex_state = 97}, - [3837] = {.lex_state = 65}, - [3838] = {.lex_state = 65}, - [3839] = {.lex_state = 65}, - [3840] = {.lex_state = 65}, - [3841] = {.lex_state = 922}, - [3842] = {.lex_state = 984}, - [3843] = {.lex_state = 981}, - [3844] = {.lex_state = 984}, - [3845] = {.lex_state = 981}, - [3846] = {.lex_state = 981}, - [3847] = {.lex_state = 981}, - [3848] = {.lex_state = 983}, - [3849] = {.lex_state = 997}, - [3850] = {.lex_state = 991}, - [3851] = {.lex_state = 980}, - [3852] = {.lex_state = 991}, - [3853] = {.lex_state = 922}, - [3854] = {.lex_state = 922}, - [3855] = {.lex_state = 922}, - [3856] = {.lex_state = 1001}, - [3857] = {.lex_state = 982}, - [3858] = {.lex_state = 922}, - [3859] = {.lex_state = 922}, - [3860] = {.lex_state = 922}, - [3861] = {.lex_state = 922}, - [3862] = {.lex_state = 922}, - [3863] = {.lex_state = 922}, - [3864] = {.lex_state = 922}, - [3865] = {.lex_state = 997}, - [3866] = {.lex_state = 922}, - [3867] = {.lex_state = 983}, - [3868] = {.lex_state = 922}, - [3869] = {.lex_state = 980}, - [3870] = {.lex_state = 922}, - [3871] = {.lex_state = 922}, - [3872] = {.lex_state = 922}, - [3873] = {.lex_state = 922}, - [3874] = {.lex_state = 922}, - [3875] = {.lex_state = 922}, - [3876] = {.lex_state = 922}, - [3877] = {.lex_state = 1005}, - [3878] = {.lex_state = 922}, - [3879] = {.lex_state = 922}, - [3880] = {.lex_state = 1001}, - [3881] = {.lex_state = 980}, - [3882] = {.lex_state = 980}, - [3883] = {.lex_state = 980}, - [3884] = {.lex_state = 982}, - [3885] = {.lex_state = 983}, - [3886] = {.lex_state = 922}, - [3887] = {.lex_state = 999}, - [3888] = {.lex_state = 1005}, - [3889] = {.lex_state = 1005}, - [3890] = {.lex_state = 993}, - [3891] = {.lex_state = 1001}, - [3892] = {.lex_state = 1005}, - [3893] = {.lex_state = 1001}, - [3894] = {.lex_state = 995}, - [3895] = {.lex_state = 983}, - [3896] = {.lex_state = 1005}, - [3897] = {.lex_state = 983}, - [3898] = {.lex_state = 983}, - [3899] = {.lex_state = 983}, - [3900] = {.lex_state = 982}, - [3901] = {.lex_state = 1009}, - [3902] = {.lex_state = 982}, - [3903] = {.lex_state = 986}, + [3235] = {.lex_state = 1046}, + [3236] = {.lex_state = 121}, + [3237] = {.lex_state = 121}, + [3238] = {.lex_state = 121}, + [3239] = {.lex_state = 121}, + [3240] = {.lex_state = 121}, + [3241] = {.lex_state = 121}, + [3242] = {.lex_state = 121}, + [3243] = {.lex_state = 121}, + [3244] = {.lex_state = 121}, + [3245] = {.lex_state = 121}, + [3246] = {.lex_state = 121}, + [3247] = {.lex_state = 121}, + [3248] = {.lex_state = 77}, + [3249] = {.lex_state = 121}, + [3250] = {.lex_state = 121}, + [3251] = {.lex_state = 121}, + [3252] = {.lex_state = 121}, + [3253] = {.lex_state = 121}, + [3254] = {.lex_state = 121}, + [3255] = {.lex_state = 121}, + [3256] = {.lex_state = 121}, + [3257] = {.lex_state = 121}, + [3258] = {.lex_state = 121}, + [3259] = {.lex_state = 121}, + [3260] = {.lex_state = 121}, + [3261] = {.lex_state = 121}, + [3262] = {.lex_state = 121}, + [3263] = {.lex_state = 121}, + [3264] = {.lex_state = 121}, + [3265] = {.lex_state = 121}, + [3266] = {.lex_state = 121}, + [3267] = {.lex_state = 121}, + [3268] = {.lex_state = 121}, + [3269] = {.lex_state = 121}, + [3270] = {.lex_state = 121}, + [3271] = {.lex_state = 121}, + [3272] = {.lex_state = 121}, + [3273] = {.lex_state = 121}, + [3274] = {.lex_state = 121}, + [3275] = {.lex_state = 121}, + [3276] = {.lex_state = 121}, + [3277] = {.lex_state = 121}, + [3278] = {.lex_state = 121}, + [3279] = {.lex_state = 121}, + [3280] = {.lex_state = 121}, + [3281] = {.lex_state = 121}, + [3282] = {.lex_state = 121}, + [3283] = {.lex_state = 121}, + [3284] = {.lex_state = 121}, + [3285] = {.lex_state = 121}, + [3286] = {.lex_state = 121}, + [3287] = {.lex_state = 121}, + [3288] = {.lex_state = 121}, + [3289] = {.lex_state = 121}, + [3290] = {.lex_state = 121}, + [3291] = {.lex_state = 121}, + [3292] = {.lex_state = 121}, + [3293] = {.lex_state = 121}, + [3294] = {.lex_state = 121}, + [3295] = {.lex_state = 121}, + [3296] = {.lex_state = 121}, + [3297] = {.lex_state = 121}, + [3298] = {.lex_state = 121}, + [3299] = {.lex_state = 121}, + [3300] = {.lex_state = 121}, + [3301] = {.lex_state = 121}, + [3302] = {.lex_state = 121}, + [3303] = {.lex_state = 121}, + [3304] = {.lex_state = 121}, + [3305] = {.lex_state = 121}, + [3306] = {.lex_state = 121}, + [3307] = {.lex_state = 121}, + [3308] = {.lex_state = 121}, + [3309] = {.lex_state = 121}, + [3310] = {.lex_state = 121}, + [3311] = {.lex_state = 121}, + [3312] = {.lex_state = 121}, + [3313] = {.lex_state = 121}, + [3314] = {.lex_state = 121}, + [3315] = {.lex_state = 121}, + [3316] = {.lex_state = 121}, + [3317] = {.lex_state = 121}, + [3318] = {.lex_state = 121}, + [3319] = {.lex_state = 121}, + [3320] = {.lex_state = 121}, + [3321] = {.lex_state = 121}, + [3322] = {.lex_state = 121}, + [3323] = {.lex_state = 121}, + [3324] = {.lex_state = 121}, + [3325] = {.lex_state = 121}, + [3326] = {.lex_state = 121}, + [3327] = {.lex_state = 121}, + [3328] = {.lex_state = 121}, + [3329] = {.lex_state = 121}, + [3330] = {.lex_state = 121}, + [3331] = {.lex_state = 121}, + [3332] = {.lex_state = 121}, + [3333] = {.lex_state = 77}, + [3334] = {.lex_state = 1054}, + [3335] = {.lex_state = 928}, + [3336] = {.lex_state = 928}, + [3337] = {.lex_state = 928}, + [3338] = {.lex_state = 990}, + [3339] = {.lex_state = 77}, + [3340] = {.lex_state = 77}, + [3341] = {.lex_state = 77}, + [3342] = {.lex_state = 990}, + [3343] = {.lex_state = 77}, + [3344] = {.lex_state = 990}, + [3345] = {.lex_state = 928}, + [3346] = {.lex_state = 77}, + [3347] = {.lex_state = 928}, + [3348] = {.lex_state = 121}, + [3349] = {.lex_state = 77}, + [3350] = {.lex_state = 218, .external_lex_state = 2}, + [3351] = {.lex_state = 990}, + [3352] = {.lex_state = 990}, + [3353] = {.lex_state = 990}, + [3354] = {.lex_state = 990}, + [3355] = {.lex_state = 990}, + [3356] = {.lex_state = 990}, + [3357] = {.lex_state = 990}, + [3358] = {.lex_state = 990}, + [3359] = {.lex_state = 990}, + [3360] = {.lex_state = 990}, + [3361] = {.lex_state = 990}, + [3362] = {.lex_state = 990}, + [3363] = {.lex_state = 214, .external_lex_state = 2}, + [3364] = {.lex_state = 77}, + [3365] = {.lex_state = 77}, + [3366] = {.lex_state = 928}, + [3367] = {.lex_state = 926}, + [3368] = {.lex_state = 77}, + [3369] = {.lex_state = 77}, + [3370] = {.lex_state = 928}, + [3371] = {.lex_state = 77}, + [3372] = {.lex_state = 928}, + [3373] = {.lex_state = 406}, + [3374] = {.lex_state = 407}, + [3375] = {.lex_state = 928}, + [3376] = {.lex_state = 990}, + [3377] = {.lex_state = 130}, + [3378] = {.lex_state = 131}, + [3379] = {.lex_state = 103}, + [3380] = {.lex_state = 215, .external_lex_state = 2}, + [3381] = {.lex_state = 103}, + [3382] = {.lex_state = 410}, + [3383] = {.lex_state = 210}, + [3384] = {.lex_state = 409}, + [3385] = {.lex_state = 210}, + [3386] = {.lex_state = 416}, + [3387] = {.lex_state = 982}, + [3388] = {.lex_state = 408}, + [3389] = {.lex_state = 926}, + [3390] = {.lex_state = 408}, + [3391] = {.lex_state = 215, .external_lex_state = 2}, + [3392] = {.lex_state = 103}, + [3393] = {.lex_state = 409}, + [3394] = {.lex_state = 77}, + [3395] = {.lex_state = 419}, + [3396] = {.lex_state = 982}, + [3397] = {.lex_state = 216, .external_lex_state = 2}, + [3398] = {.lex_state = 211}, + [3399] = {.lex_state = 132}, + [3400] = {.lex_state = 493}, + [3401] = {.lex_state = 77}, + [3402] = {.lex_state = 132}, + [3403] = {.lex_state = 411}, + [3404] = {.lex_state = 211}, + [3405] = {.lex_state = 103}, + [3406] = {.lex_state = 77}, + [3407] = {.lex_state = 216, .external_lex_state = 2}, + [3408] = {.lex_state = 216, .external_lex_state = 2}, + [3409] = {.lex_state = 133}, + [3410] = {.lex_state = 216, .external_lex_state = 2}, + [3411] = {.lex_state = 103}, + [3412] = {.lex_state = 417}, + [3413] = {.lex_state = 216, .external_lex_state = 2}, + [3414] = {.lex_state = 417}, + [3415] = {.lex_state = 982}, + [3416] = {.lex_state = 409}, + [3417] = {.lex_state = 77}, + [3418] = {.lex_state = 982}, + [3419] = {.lex_state = 409}, + [3420] = {.lex_state = 409}, + [3421] = {.lex_state = 982}, + [3422] = {.lex_state = 926}, + [3423] = {.lex_state = 926}, + [3424] = {.lex_state = 926}, + [3425] = {.lex_state = 926}, + [3426] = {.lex_state = 493}, + [3427] = {.lex_state = 926}, + [3428] = {.lex_state = 926}, + [3429] = {.lex_state = 418}, + [3430] = {.lex_state = 926}, + [3431] = {.lex_state = 926}, + [3432] = {.lex_state = 418}, + [3433] = {.lex_state = 926}, + [3434] = {.lex_state = 418}, + [3435] = {.lex_state = 493}, + [3436] = {.lex_state = 418}, + [3437] = {.lex_state = 493}, + [3438] = {.lex_state = 420}, + [3439] = {.lex_state = 926}, + [3440] = {.lex_state = 982}, + [3441] = {.lex_state = 926}, + [3442] = {.lex_state = 493}, + [3443] = {.lex_state = 103}, + [3444] = {.lex_state = 103}, + [3445] = {.lex_state = 418}, + [3446] = {.lex_state = 982}, + [3447] = {.lex_state = 982}, + [3448] = {.lex_state = 982}, + [3449] = {.lex_state = 982}, + [3450] = {.lex_state = 133}, + [3451] = {.lex_state = 982}, + [3452] = {.lex_state = 133}, + [3453] = {.lex_state = 926}, + [3454] = {.lex_state = 133}, + [3455] = {.lex_state = 133}, + [3456] = {.lex_state = 103}, + [3457] = {.lex_state = 420}, + [3458] = {.lex_state = 103}, + [3459] = {.lex_state = 421}, + [3460] = {.lex_state = 103}, + [3461] = {.lex_state = 926}, + [3462] = {.lex_state = 103}, + [3463] = {.lex_state = 926}, + [3464] = {.lex_state = 493}, + [3465] = {.lex_state = 926}, + [3466] = {.lex_state = 98, .external_lex_state = 2}, + [3467] = {.lex_state = 928}, + [3468] = {.lex_state = 103}, + [3469] = {.lex_state = 103}, + [3470] = {.lex_state = 493}, + [3471] = {.lex_state = 991}, + [3472] = {.lex_state = 991}, + [3473] = {.lex_state = 991}, + [3474] = {.lex_state = 991}, + [3475] = {.lex_state = 991}, + [3476] = {.lex_state = 991}, + [3477] = {.lex_state = 991}, + [3478] = {.lex_state = 991}, + [3479] = {.lex_state = 991}, + [3480] = {.lex_state = 98, .external_lex_state = 2}, + [3481] = {.lex_state = 991}, + [3482] = {.lex_state = 98, .external_lex_state = 2}, + [3483] = {.lex_state = 421}, + [3484] = {.lex_state = 991}, + [3485] = {.lex_state = 421}, + [3486] = {.lex_state = 991}, + [3487] = {.lex_state = 991}, + [3488] = {.lex_state = 98, .external_lex_state = 2}, + [3489] = {.lex_state = 421}, + [3490] = {.lex_state = 928}, + [3491] = {.lex_state = 421}, + [3492] = {.lex_state = 98, .external_lex_state = 2}, + [3493] = {.lex_state = 991}, + [3494] = {.lex_state = 103}, + [3495] = {.lex_state = 98, .external_lex_state = 2}, + [3496] = {.lex_state = 98, .external_lex_state = 2}, + [3497] = {.lex_state = 98, .external_lex_state = 2}, + [3498] = {.lex_state = 98, .external_lex_state = 2}, + [3499] = {.lex_state = 98, .external_lex_state = 2}, + [3500] = {.lex_state = 98, .external_lex_state = 2}, + [3501] = {.lex_state = 98, .external_lex_state = 2}, + [3502] = {.lex_state = 98, .external_lex_state = 2}, + [3503] = {.lex_state = 103}, + [3504] = {.lex_state = 98, .external_lex_state = 2}, + [3505] = {.lex_state = 98, .external_lex_state = 2}, + [3506] = {.lex_state = 98, .external_lex_state = 2}, + [3507] = {.lex_state = 98, .external_lex_state = 2}, + [3508] = {.lex_state = 991}, + [3509] = {.lex_state = 991}, + [3510] = {.lex_state = 98, .external_lex_state = 2}, + [3511] = {.lex_state = 98, .external_lex_state = 2}, + [3512] = {.lex_state = 98, .external_lex_state = 2}, + [3513] = {.lex_state = 98, .external_lex_state = 2}, + [3514] = {.lex_state = 991}, + [3515] = {.lex_state = 991}, + [3516] = {.lex_state = 991}, + [3517] = {.lex_state = 98, .external_lex_state = 2}, + [3518] = {.lex_state = 991}, + [3519] = {.lex_state = 991}, + [3520] = {.lex_state = 991}, + [3521] = {.lex_state = 991}, + [3522] = {.lex_state = 991}, + [3523] = {.lex_state = 991}, + [3524] = {.lex_state = 98, .external_lex_state = 2}, + [3525] = {.lex_state = 928}, + [3526] = {.lex_state = 121}, + [3527] = {.lex_state = 98, .external_lex_state = 2}, + [3528] = {.lex_state = 199, .external_lex_state = 2}, + [3529] = {.lex_state = 926}, + [3530] = {.lex_state = 928}, + [3531] = {.lex_state = 991}, + [3532] = {.lex_state = 103}, + [3533] = {.lex_state = 928}, + [3534] = {.lex_state = 928}, + [3535] = {.lex_state = 928}, + [3536] = {.lex_state = 928}, + [3537] = {.lex_state = 926}, + [3538] = {.lex_state = 98, .external_lex_state = 2}, + [3539] = {.lex_state = 991}, + [3540] = {.lex_state = 928}, + [3541] = {.lex_state = 98, .external_lex_state = 2}, + [3542] = {.lex_state = 103}, + [3543] = {.lex_state = 103}, + [3544] = {.lex_state = 98, .external_lex_state = 2}, + [3545] = {.lex_state = 98, .external_lex_state = 2}, + [3546] = {.lex_state = 928}, + [3547] = {.lex_state = 105}, + [3548] = {.lex_state = 98, .external_lex_state = 2}, + [3549] = {.lex_state = 98, .external_lex_state = 2}, + [3550] = {.lex_state = 98, .external_lex_state = 2}, + [3551] = {.lex_state = 206, .external_lex_state = 2}, + [3552] = {.lex_state = 928}, + [3553] = {.lex_state = 928}, + [3554] = {.lex_state = 928}, + [3555] = {.lex_state = 928}, + [3556] = {.lex_state = 102}, + [3557] = {.lex_state = 926}, + [3558] = {.lex_state = 98, .external_lex_state = 2}, + [3559] = {.lex_state = 98, .external_lex_state = 2}, + [3560] = {.lex_state = 356, .external_lex_state = 2}, + [3561] = {.lex_state = 509}, + [3562] = {.lex_state = 926}, + [3563] = {.lex_state = 121}, + [3564] = {.lex_state = 926}, + [3565] = {.lex_state = 356, .external_lex_state = 2}, + [3566] = {.lex_state = 356, .external_lex_state = 2}, + [3567] = {.lex_state = 356, .external_lex_state = 2}, + [3568] = {.lex_state = 926}, + [3569] = {.lex_state = 926}, + [3570] = {.lex_state = 509}, + [3571] = {.lex_state = 509}, + [3572] = {.lex_state = 509}, + [3573] = {.lex_state = 926}, + [3574] = {.lex_state = 926}, + [3575] = {.lex_state = 204, .external_lex_state = 2}, + [3576] = {.lex_state = 926}, + [3577] = {.lex_state = 991}, + [3578] = {.lex_state = 98, .external_lex_state = 2}, + [3579] = {.lex_state = 217, .external_lex_state = 2}, + [3580] = {.lex_state = 121}, + [3581] = {.lex_state = 926}, + [3582] = {.lex_state = 356, .external_lex_state = 2}, + [3583] = {.lex_state = 98, .external_lex_state = 2}, + [3584] = {.lex_state = 98, .external_lex_state = 2}, + [3585] = {.lex_state = 509}, + [3586] = {.lex_state = 105}, + [3587] = {.lex_state = 926}, + [3588] = {.lex_state = 34, .external_lex_state = 2}, + [3589] = {.lex_state = 34, .external_lex_state = 2}, + [3590] = {.lex_state = 926}, + [3591] = {.lex_state = 34, .external_lex_state = 2}, + [3592] = {.lex_state = 150}, + [3593] = {.lex_state = 34, .external_lex_state = 2}, + [3594] = {.lex_state = 102}, + [3595] = {.lex_state = 510}, + [3596] = {.lex_state = 510}, + [3597] = {.lex_state = 510}, + [3598] = {.lex_state = 34, .external_lex_state = 2}, + [3599] = {.lex_state = 34, .external_lex_state = 2}, + [3600] = {.lex_state = 34, .external_lex_state = 2}, + [3601] = {.lex_state = 990}, + [3602] = {.lex_state = 510}, + [3603] = {.lex_state = 34, .external_lex_state = 2}, + [3604] = {.lex_state = 34, .external_lex_state = 2}, + [3605] = {.lex_state = 34, .external_lex_state = 2}, + [3606] = {.lex_state = 926}, + [3607] = {.lex_state = 34, .external_lex_state = 2}, + [3608] = {.lex_state = 34, .external_lex_state = 2}, + [3609] = {.lex_state = 34, .external_lex_state = 2}, + [3610] = {.lex_state = 34, .external_lex_state = 2}, + [3611] = {.lex_state = 926}, + [3612] = {.lex_state = 926}, + [3613] = {.lex_state = 34, .external_lex_state = 2}, + [3614] = {.lex_state = 150}, + [3615] = {.lex_state = 34, .external_lex_state = 2}, + [3616] = {.lex_state = 926}, + [3617] = {.lex_state = 926}, + [3618] = {.lex_state = 926}, + [3619] = {.lex_state = 34, .external_lex_state = 2}, + [3620] = {.lex_state = 34, .external_lex_state = 2}, + [3621] = {.lex_state = 34, .external_lex_state = 2}, + [3622] = {.lex_state = 34, .external_lex_state = 2}, + [3623] = {.lex_state = 34, .external_lex_state = 2}, + [3624] = {.lex_state = 34, .external_lex_state = 2}, + [3625] = {.lex_state = 34, .external_lex_state = 2}, + [3626] = {.lex_state = 990}, + [3627] = {.lex_state = 34, .external_lex_state = 2}, + [3628] = {.lex_state = 34, .external_lex_state = 2}, + [3629] = {.lex_state = 34, .external_lex_state = 2}, + [3630] = {.lex_state = 34, .external_lex_state = 2}, + [3631] = {.lex_state = 34, .external_lex_state = 2}, + [3632] = {.lex_state = 34, .external_lex_state = 2}, + [3633] = {.lex_state = 34, .external_lex_state = 2}, + [3634] = {.lex_state = 34, .external_lex_state = 2}, + [3635] = {.lex_state = 34, .external_lex_state = 2}, + [3636] = {.lex_state = 34, .external_lex_state = 2}, + [3637] = {.lex_state = 34, .external_lex_state = 2}, + [3638] = {.lex_state = 34, .external_lex_state = 2}, + [3639] = {.lex_state = 34, .external_lex_state = 2}, + [3640] = {.lex_state = 34, .external_lex_state = 2}, + [3641] = {.lex_state = 34, .external_lex_state = 2}, + [3642] = {.lex_state = 61}, + [3643] = {.lex_state = 34, .external_lex_state = 2}, + [3644] = {.lex_state = 34, .external_lex_state = 2}, + [3645] = {.lex_state = 61}, + [3646] = {.lex_state = 34, .external_lex_state = 2}, + [3647] = {.lex_state = 34, .external_lex_state = 2}, + [3648] = {.lex_state = 34, .external_lex_state = 2}, + [3649] = {.lex_state = 102}, + [3650] = {.lex_state = 34, .external_lex_state = 2}, + [3651] = {.lex_state = 150}, + [3652] = {.lex_state = 34, .external_lex_state = 2}, + [3653] = {.lex_state = 34, .external_lex_state = 2}, + [3654] = {.lex_state = 150}, + [3655] = {.lex_state = 451}, + [3656] = {.lex_state = 105}, + [3657] = {.lex_state = 34, .external_lex_state = 2}, + [3658] = {.lex_state = 34, .external_lex_state = 2}, + [3659] = {.lex_state = 34, .external_lex_state = 2}, + [3660] = {.lex_state = 150}, + [3661] = {.lex_state = 34, .external_lex_state = 2}, + [3662] = {.lex_state = 103}, + [3663] = {.lex_state = 121}, + [3664] = {.lex_state = 121}, + [3665] = {.lex_state = 950}, + [3666] = {.lex_state = 950}, + [3667] = {.lex_state = 950}, + [3668] = {.lex_state = 950}, + [3669] = {.lex_state = 121}, + [3670] = {.lex_state = 926}, + [3671] = {.lex_state = 950}, + [3672] = {.lex_state = 950}, + [3673] = {.lex_state = 950}, + [3674] = {.lex_state = 950}, + [3675] = {.lex_state = 121}, + [3676] = {.lex_state = 121}, + [3677] = {.lex_state = 121}, + [3678] = {.lex_state = 950}, + [3679] = {.lex_state = 121}, + [3680] = {.lex_state = 121}, + [3681] = {.lex_state = 950}, + [3682] = {.lex_state = 121}, + [3683] = {.lex_state = 990}, + [3684] = {.lex_state = 121}, + [3685] = {.lex_state = 511}, + [3686] = {.lex_state = 121}, + [3687] = {.lex_state = 121}, + [3688] = {.lex_state = 511}, + [3689] = {.lex_state = 121}, + [3690] = {.lex_state = 950}, + [3691] = {.lex_state = 121}, + [3692] = {.lex_state = 121}, + [3693] = {.lex_state = 121}, + [3694] = {.lex_state = 990}, + [3695] = {.lex_state = 950}, + [3696] = {.lex_state = 990}, + [3697] = {.lex_state = 121}, + [3698] = {.lex_state = 121}, + [3699] = {.lex_state = 121}, + [3700] = {.lex_state = 121}, + [3701] = {.lex_state = 121}, + [3702] = {.lex_state = 121}, + [3703] = {.lex_state = 990}, + [3704] = {.lex_state = 121}, + [3705] = {.lex_state = 121}, + [3706] = {.lex_state = 990}, + [3707] = {.lex_state = 950}, + [3708] = {.lex_state = 990}, + [3709] = {.lex_state = 121}, + [3710] = {.lex_state = 121}, + [3711] = {.lex_state = 121}, + [3712] = {.lex_state = 121}, + [3713] = {.lex_state = 121}, + [3714] = {.lex_state = 121}, + [3715] = {.lex_state = 121}, + [3716] = {.lex_state = 121}, + [3717] = {.lex_state = 121}, + [3718] = {.lex_state = 103}, + [3719] = {.lex_state = 103}, + [3720] = {.lex_state = 103}, + [3721] = {.lex_state = 103}, + [3722] = {.lex_state = 103}, + [3723] = {.lex_state = 103}, + [3724] = {.lex_state = 103}, + [3725] = {.lex_state = 103}, + [3726] = {.lex_state = 103}, + [3727] = {.lex_state = 103}, + [3728] = {.lex_state = 103}, + [3729] = {.lex_state = 121}, + [3730] = {.lex_state = 121}, + [3731] = {.lex_state = 121}, + [3732] = {.lex_state = 121}, + [3733] = {.lex_state = 121}, + [3734] = {.lex_state = 121}, + [3735] = {.lex_state = 121}, + [3736] = {.lex_state = 121}, + [3737] = {.lex_state = 121}, + [3738] = {.lex_state = 121}, + [3739] = {.lex_state = 121}, + [3740] = {.lex_state = 950}, + [3741] = {.lex_state = 121}, + [3742] = {.lex_state = 121}, + [3743] = {.lex_state = 121}, + [3744] = {.lex_state = 926}, + [3745] = {.lex_state = 121}, + [3746] = {.lex_state = 121}, + [3747] = {.lex_state = 121}, + [3748] = {.lex_state = 121}, + [3749] = {.lex_state = 121}, + [3750] = {.lex_state = 121}, + [3751] = {.lex_state = 511}, + [3752] = {.lex_state = 121}, + [3753] = {.lex_state = 926}, + [3754] = {.lex_state = 926}, + [3755] = {.lex_state = 121}, + [3756] = {.lex_state = 121}, + [3757] = {.lex_state = 121}, + [3758] = {.lex_state = 121}, + [3759] = {.lex_state = 121}, + [3760] = {.lex_state = 121}, + [3761] = {.lex_state = 121}, + [3762] = {.lex_state = 121}, + [3763] = {.lex_state = 121}, + [3764] = {.lex_state = 121}, + [3765] = {.lex_state = 121}, + [3766] = {.lex_state = 121}, + [3767] = {.lex_state = 121}, + [3768] = {.lex_state = 121}, + [3769] = {.lex_state = 121}, + [3770] = {.lex_state = 121}, + [3771] = {.lex_state = 121}, + [3772] = {.lex_state = 121}, + [3773] = {.lex_state = 134}, + [3774] = {.lex_state = 121}, + [3775] = {.lex_state = 121}, + [3776] = {.lex_state = 121}, + [3777] = {.lex_state = 121}, + [3778] = {.lex_state = 121}, + [3779] = {.lex_state = 121}, + [3780] = {.lex_state = 928}, + [3781] = {.lex_state = 950}, + [3782] = {.lex_state = 121}, + [3783] = {.lex_state = 121}, + [3784] = {.lex_state = 121}, + [3785] = {.lex_state = 121}, + [3786] = {.lex_state = 121}, + [3787] = {.lex_state = 121}, + [3788] = {.lex_state = 121}, + [3789] = {.lex_state = 510}, + [3790] = {.lex_state = 928}, + [3791] = {.lex_state = 121}, + [3792] = {.lex_state = 926}, + [3793] = {.lex_state = 121}, + [3794] = {.lex_state = 121}, + [3795] = {.lex_state = 121}, + [3796] = {.lex_state = 121}, + [3797] = {.lex_state = 511}, + [3798] = {.lex_state = 511}, + [3799] = {.lex_state = 121}, + [3800] = {.lex_state = 121}, + [3801] = {.lex_state = 121}, + [3802] = {.lex_state = 121}, + [3803] = {.lex_state = 121}, + [3804] = {.lex_state = 121}, + [3805] = {.lex_state = 61}, + [3806] = {.lex_state = 61}, + [3807] = {.lex_state = 61}, + [3808] = {.lex_state = 61}, + [3809] = {.lex_state = 61}, + [3810] = {.lex_state = 61}, + [3811] = {.lex_state = 121}, + [3812] = {.lex_state = 61}, + [3813] = {.lex_state = 61}, + [3814] = {.lex_state = 491}, + [3815] = {.lex_state = 61}, + [3816] = {.lex_state = 61}, + [3817] = {.lex_state = 61}, + [3818] = {.lex_state = 61}, + [3819] = {.lex_state = 61}, + [3820] = {.lex_state = 61}, + [3821] = {.lex_state = 61}, + [3822] = {.lex_state = 121}, + [3823] = {.lex_state = 61}, + [3824] = {.lex_state = 61}, + [3825] = {.lex_state = 61}, + [3826] = {.lex_state = 61}, + [3827] = {.lex_state = 928}, + [3828] = {.lex_state = 61}, + [3829] = {.lex_state = 121}, + [3830] = {.lex_state = 61}, + [3831] = {.lex_state = 121}, + [3832] = {.lex_state = 958}, + [3833] = {.lex_state = 61}, + [3834] = {.lex_state = 121}, + [3835] = {.lex_state = 61}, + [3836] = {.lex_state = 498}, + [3837] = {.lex_state = 958}, + [3838] = {.lex_state = 928}, + [3839] = {.lex_state = 121}, + [3840] = {.lex_state = 121}, + [3841] = {.lex_state = 121}, + [3842] = {.lex_state = 61}, + [3843] = {.lex_state = 61}, + [3844] = {.lex_state = 61}, + [3845] = {.lex_state = 121}, + [3846] = {.lex_state = 100}, + [3847] = {.lex_state = 958}, + [3848] = {.lex_state = 100}, + [3849] = {.lex_state = 100}, + [3850] = {.lex_state = 100}, + [3851] = {.lex_state = 100}, + [3852] = {.lex_state = 958}, + [3853] = {.lex_state = 100}, + [3854] = {.lex_state = 100}, + [3855] = {.lex_state = 958}, + [3856] = {.lex_state = 958}, + [3857] = {.lex_state = 105}, + [3858] = {.lex_state = 100}, + [3859] = {.lex_state = 100}, + [3860] = {.lex_state = 105}, + [3861] = {.lex_state = 100}, + [3862] = {.lex_state = 105}, + [3863] = {.lex_state = 105}, + [3864] = {.lex_state = 105}, + [3865] = {.lex_state = 105}, + [3866] = {.lex_state = 105}, + [3867] = {.lex_state = 105}, + [3868] = {.lex_state = 100}, + [3869] = {.lex_state = 105}, + [3870] = {.lex_state = 105}, + [3871] = {.lex_state = 105}, + [3872] = {.lex_state = 105}, + [3873] = {.lex_state = 958}, + [3874] = {.lex_state = 100}, + [3875] = {.lex_state = 61}, + [3876] = {.lex_state = 100}, + [3877] = {.lex_state = 100}, + [3878] = {.lex_state = 958}, + [3879] = {.lex_state = 100}, + [3880] = {.lex_state = 958}, + [3881] = {.lex_state = 100}, + [3882] = {.lex_state = 61}, + [3883] = {.lex_state = 61}, + [3884] = {.lex_state = 100}, + [3885] = {.lex_state = 61}, + [3886] = {.lex_state = 958}, + [3887] = {.lex_state = 61}, + [3888] = {.lex_state = 958}, + [3889] = {.lex_state = 958}, + [3890] = {.lex_state = 61}, + [3891] = {.lex_state = 61}, + [3892] = {.lex_state = 61}, + [3893] = {.lex_state = 61}, + [3894] = {.lex_state = 100}, + [3895] = {.lex_state = 100}, + [3896] = {.lex_state = 61}, + [3897] = {.lex_state = 61}, + [3898] = {.lex_state = 926}, + [3899] = {.lex_state = 61}, + [3900] = {.lex_state = 958}, + [3901] = {.lex_state = 986}, + [3902] = {.lex_state = 926}, + [3903] = {.lex_state = 983}, [3904] = {.lex_state = 986}, [3905] = {.lex_state = 983}, - [3906] = {.lex_state = 1005}, - [3907] = {.lex_state = 922}, - [3908] = {.lex_state = 922}, - [3909] = {.lex_state = 1005}, - [3910] = {.lex_state = 1003}, - [3911] = {.lex_state = 1005}, - [3912] = {.lex_state = 983}, - [3913] = {.lex_state = 922}, - [3914] = {.lex_state = 922}, - [3915] = {.lex_state = 922}, - [3916] = {.lex_state = 922}, - [3917] = {.lex_state = 922}, - [3918] = {.lex_state = 922}, - [3919] = {.lex_state = 993}, - [3920] = {.lex_state = 1011}, - [3921] = {.lex_state = 983}, - [3922] = {.lex_state = 1005}, - [3923] = {.lex_state = 922}, - [3924] = {.lex_state = 983}, - [3925] = {.lex_state = 922}, - [3926] = {.lex_state = 986}, - [3927] = {.lex_state = 52}, - [3928] = {.lex_state = 922}, - [3929] = {.lex_state = 922}, - [3930] = {.lex_state = 922}, - [3931] = {.lex_state = 986}, - [3932] = {.lex_state = 922}, - [3933] = {.lex_state = 922}, - [3934] = {.lex_state = 922}, - [3935] = {.lex_state = 1007}, - [3936] = {.lex_state = 983}, - [3937] = {.lex_state = 999}, - [3938] = {.lex_state = 1009}, - [3939] = {.lex_state = 922}, - [3940] = {.lex_state = 1003}, - [3941] = {.lex_state = 922}, - [3942] = {.lex_state = 922}, - [3943] = {.lex_state = 1005}, - [3944] = {.lex_state = 922}, - [3945] = {.lex_state = 995}, - [3946] = {.lex_state = 922}, - [3947] = {.lex_state = 922}, - [3948] = {.lex_state = 922}, - [3949] = {.lex_state = 1011}, - [3950] = {.lex_state = 986}, - [3951] = {.lex_state = 986}, - [3952] = {.lex_state = 1011}, - [3953] = {.lex_state = 986}, - [3954] = {.lex_state = 1007}, - [3955] = {.lex_state = 1011}, - [3956] = {.lex_state = 1010}, - [3957] = {.lex_state = 1013}, - [3958] = {.lex_state = 1013}, - [3959] = {.lex_state = 1007}, - [3960] = {.lex_state = 922}, - [3961] = {.lex_state = 922}, - [3962] = {.lex_state = 922}, - [3963] = {.lex_state = 51}, - [3964] = {.lex_state = 1013}, - [3965] = {.lex_state = 996}, - [3966] = {.lex_state = 1013}, - [3967] = {.lex_state = 1013}, - [3968] = {.lex_state = 993}, - [3969] = {.lex_state = 51}, - [3970] = {.lex_state = 993}, - [3971] = {.lex_state = 53}, - [3972] = {.lex_state = 55}, - [3973] = {.lex_state = 1007}, - [3974] = {.lex_state = 1003}, - [3975] = {.lex_state = 1007}, - [3976] = {.lex_state = 986}, - [3977] = {.lex_state = 52}, - [3978] = {.lex_state = 1013}, - [3979] = {.lex_state = 1007}, - [3980] = {.lex_state = 993}, - [3981] = {.lex_state = 1003}, - [3982] = {.lex_state = 1015}, - [3983] = {.lex_state = 986}, - [3984] = {.lex_state = 986}, - [3985] = {.lex_state = 1013}, - [3986] = {.lex_state = 993}, - [3987] = {.lex_state = 52}, - [3988] = {.lex_state = 922}, - [3989] = {.lex_state = 922}, - [3990] = {.lex_state = 993}, - [3991] = {.lex_state = 922}, - [3992] = {.lex_state = 922}, - [3993] = {.lex_state = 1010}, - [3994] = {.lex_state = 1013}, - [3995] = {.lex_state = 922}, - [3996] = {.lex_state = 922}, - [3997] = {.lex_state = 922}, - [3998] = {.lex_state = 922}, - [3999] = {.lex_state = 57}, - [4000] = {.lex_state = 922}, - [4001] = {.lex_state = 922}, - [4002] = {.lex_state = 922}, - [4003] = {.lex_state = 1012}, - [4004] = {.lex_state = 922}, - [4005] = {.lex_state = 922}, - [4006] = {.lex_state = 922}, - [4007] = {.lex_state = 52}, - [4008] = {.lex_state = 922}, - [4009] = {.lex_state = 922}, - [4010] = {.lex_state = 993}, - [4011] = {.lex_state = 922}, - [4012] = {.lex_state = 922}, - [4013] = {.lex_state = 1013}, - [4014] = {.lex_state = 922}, - [4015] = {.lex_state = 922}, - [4016] = {.lex_state = 922}, - [4017] = {.lex_state = 922}, - [4018] = {.lex_state = 1007}, - [4019] = {.lex_state = 922}, - [4020] = {.lex_state = 56}, - [4021] = {.lex_state = 922}, - [4022] = {.lex_state = 922}, - [4023] = {.lex_state = 922}, - [4024] = {.lex_state = 52}, - [4025] = {.lex_state = 922}, - [4026] = {.lex_state = 922}, - [4027] = {.lex_state = 922}, - [4028] = {.lex_state = 1007}, - [4029] = {.lex_state = 56}, - [4030] = {.lex_state = 922}, - [4031] = {.lex_state = 1013}, - [4032] = {.lex_state = 1017}, - [4033] = {.lex_state = 993}, - [4034] = {.lex_state = 986}, - [4035] = {.lex_state = 996}, - [4036] = {.lex_state = 1007}, - [4037] = {.lex_state = 986}, - [4038] = {.lex_state = 1007}, - [4039] = {.lex_state = 65}, - [4040] = {.lex_state = 922}, - [4041] = {.lex_state = 993}, - [4042] = {.lex_state = 922}, - [4043] = {.lex_state = 52}, - [4044] = {.lex_state = 922}, - [4045] = {.lex_state = 922}, - [4046] = {.lex_state = 922}, - [4047] = {.lex_state = 986}, - [4048] = {.lex_state = 1013}, - [4049] = {.lex_state = 1012}, - [4050] = {.lex_state = 1007}, - [4051] = {.lex_state = 1013}, - [4052] = {.lex_state = 922}, - [4053] = {.lex_state = 986}, - [4054] = {.lex_state = 922}, - [4055] = {.lex_state = 986}, - [4056] = {.lex_state = 58}, - [4057] = {.lex_state = 987}, - [4058] = {.lex_state = 987}, - [4059] = {.lex_state = 987}, - [4060] = {.lex_state = 1014}, - [4061] = {.lex_state = 986}, - [4062] = {.lex_state = 986}, - [4063] = {.lex_state = 1014}, - [4064] = {.lex_state = 1017}, - [4065] = {.lex_state = 65}, - [4066] = {.lex_state = 922}, - [4067] = {.lex_state = 43}, - [4068] = {.lex_state = 1007}, - [4069] = {.lex_state = 1014}, - [4070] = {.lex_state = 1012}, - [4071] = {.lex_state = 1014}, - [4072] = {.lex_state = 1014}, - [4073] = {.lex_state = 43}, - [4074] = {.lex_state = 1015}, - [4075] = {.lex_state = 922}, - [4076] = {.lex_state = 1014}, - [4077] = {.lex_state = 987}, - [4078] = {.lex_state = 57}, - [4079] = {.lex_state = 1012}, - [4080] = {.lex_state = 57}, - [4081] = {.lex_state = 986}, - [4082] = {.lex_state = 57}, - [4083] = {.lex_state = 57}, - [4084] = {.lex_state = 987}, - [4085] = {.lex_state = 43}, - [4086] = {.lex_state = 1019}, - [4087] = {.lex_state = 54}, - [4088] = {.lex_state = 986}, - [4089] = {.lex_state = 986}, - [4090] = {.lex_state = 993}, - [4091] = {.lex_state = 993}, - [4092] = {.lex_state = 43}, - [4093] = {.lex_state = 1019}, - [4094] = {.lex_state = 987}, - [4095] = {.lex_state = 1016}, - [4096] = {.lex_state = 922}, - [4097] = {.lex_state = 922}, - [4098] = {.lex_state = 922}, - [4099] = {.lex_state = 922}, - [4100] = {.lex_state = 1016}, - [4101] = {.lex_state = 1018}, - [4102] = {.lex_state = 1016}, - [4103] = {.lex_state = 922}, - [4104] = {.lex_state = 1014}, - [4105] = {.lex_state = 1016}, - [4106] = {.lex_state = 922}, - [4107] = {.lex_state = 922}, - [4108] = {.lex_state = 1016}, - [4109] = {.lex_state = 1016}, - [4110] = {.lex_state = 922}, - [4111] = {.lex_state = 922}, - [4112] = {.lex_state = 1016}, - [4113] = {.lex_state = 1016}, - [4114] = {.lex_state = 922}, - [4115] = {.lex_state = 922}, - [4116] = {.lex_state = 1016}, - [4117] = {.lex_state = 993}, - [4118] = {.lex_state = 922}, - [4119] = {.lex_state = 922}, - [4120] = {.lex_state = 987}, - [4121] = {.lex_state = 922}, - [4122] = {.lex_state = 1048}, - [4123] = {.lex_state = 1014}, - [4124] = {.lex_state = 922}, - [4125] = {.lex_state = 1016}, - [4126] = {.lex_state = 1021}, - [4127] = {.lex_state = 1016}, - [4128] = {.lex_state = 922}, - [4129] = {.lex_state = 1016}, - [4130] = {.lex_state = 922}, - [4131] = {.lex_state = 922}, - [4132] = {.lex_state = 1021}, - [4133] = {.lex_state = 1016}, - [4134] = {.lex_state = 922}, - [4135] = {.lex_state = 922}, - [4136] = {.lex_state = 1014}, - [4137] = {.lex_state = 922}, - [4138] = {.lex_state = 922}, - [4139] = {.lex_state = 1016}, - [4140] = {.lex_state = 922}, - [4141] = {.lex_state = 993}, - [4142] = {.lex_state = 922}, - [4143] = {.lex_state = 922}, - [4144] = {.lex_state = 1014}, - [4145] = {.lex_state = 922}, - [4146] = {.lex_state = 1019}, - [4147] = {.lex_state = 922}, - [4148] = {.lex_state = 922}, - [4149] = {.lex_state = 1016}, - [4150] = {.lex_state = 43}, - [4151] = {.lex_state = 1016}, - [4152] = {.lex_state = 993}, - [4153] = {.lex_state = 922}, - [4154] = {.lex_state = 1016}, - [4155] = {.lex_state = 1016}, - [4156] = {.lex_state = 922}, - [4157] = {.lex_state = 922}, - [4158] = {.lex_state = 1048}, - [4159] = {.lex_state = 43}, - [4160] = {.lex_state = 59}, - [4161] = {.lex_state = 1016}, - [4162] = {.lex_state = 1021}, - [4163] = {.lex_state = 922}, - [4164] = {.lex_state = 1016}, - [4165] = {.lex_state = 1016}, - [4166] = {.lex_state = 986}, - [4167] = {.lex_state = 1014}, - [4168] = {.lex_state = 1016}, + [3906] = {.lex_state = 998}, + [3907] = {.lex_state = 983}, + [3908] = {.lex_state = 983}, + [3909] = {.lex_state = 985}, + [3910] = {.lex_state = 982}, + [3911] = {.lex_state = 992}, + [3912] = {.lex_state = 926}, + [3913] = {.lex_state = 984}, + [3914] = {.lex_state = 926}, + [3915] = {.lex_state = 926}, + [3916] = {.lex_state = 992}, + [3917] = {.lex_state = 926}, + [3918] = {.lex_state = 926}, + [3919] = {.lex_state = 926}, + [3920] = {.lex_state = 1002}, + [3921] = {.lex_state = 1006}, + [3922] = {.lex_state = 985}, + [3923] = {.lex_state = 982}, + [3924] = {.lex_state = 982}, + [3925] = {.lex_state = 982}, + [3926] = {.lex_state = 982}, + [3927] = {.lex_state = 926}, + [3928] = {.lex_state = 1002}, + [3929] = {.lex_state = 984}, + [3930] = {.lex_state = 926}, + [3931] = {.lex_state = 926}, + [3932] = {.lex_state = 926}, + [3933] = {.lex_state = 926}, + [3934] = {.lex_state = 926}, + [3935] = {.lex_state = 926}, + [3936] = {.lex_state = 926}, + [3937] = {.lex_state = 926}, + [3938] = {.lex_state = 926}, + [3939] = {.lex_state = 926}, + [3940] = {.lex_state = 926}, + [3941] = {.lex_state = 926}, + [3942] = {.lex_state = 926}, + [3943] = {.lex_state = 926}, + [3944] = {.lex_state = 985}, + [3945] = {.lex_state = 998}, + [3946] = {.lex_state = 926}, + [3947] = {.lex_state = 985}, + [3948] = {.lex_state = 984}, + [3949] = {.lex_state = 1006}, + [3950] = {.lex_state = 1006}, + [3951] = {.lex_state = 984}, + [3952] = {.lex_state = 985}, + [3953] = {.lex_state = 985}, + [3954] = {.lex_state = 1000}, + [3955] = {.lex_state = 1006}, + [3956] = {.lex_state = 985}, + [3957] = {.lex_state = 928}, + [3958] = {.lex_state = 1010}, + [3959] = {.lex_state = 996}, + [3960] = {.lex_state = 985}, + [3961] = {.lex_state = 1006}, + [3962] = {.lex_state = 928}, + [3963] = {.lex_state = 1006}, + [3964] = {.lex_state = 994}, + [3965] = {.lex_state = 1002}, + [3966] = {.lex_state = 1002}, + [3967] = {.lex_state = 926}, + [3968] = {.lex_state = 928}, + [3969] = {.lex_state = 926}, + [3970] = {.lex_state = 926}, + [3971] = {.lex_state = 1012}, + [3972] = {.lex_state = 1010}, + [3973] = {.lex_state = 985}, + [3974] = {.lex_state = 928}, + [3975] = {.lex_state = 926}, + [3976] = {.lex_state = 926}, + [3977] = {.lex_state = 1012}, + [3978] = {.lex_state = 1006}, + [3979] = {.lex_state = 926}, + [3980] = {.lex_state = 926}, + [3981] = {.lex_state = 926}, + [3982] = {.lex_state = 926}, + [3983] = {.lex_state = 926}, + [3984] = {.lex_state = 926}, + [3985] = {.lex_state = 1006}, + [3986] = {.lex_state = 926}, + [3987] = {.lex_state = 994}, + [3988] = {.lex_state = 926}, + [3989] = {.lex_state = 1006}, + [3990] = {.lex_state = 1000}, + [3991] = {.lex_state = 926}, + [3992] = {.lex_state = 928}, + [3993] = {.lex_state = 926}, + [3994] = {.lex_state = 926}, + [3995] = {.lex_state = 926}, + [3996] = {.lex_state = 1008}, + [3997] = {.lex_state = 1006}, + [3998] = {.lex_state = 1004}, + [3999] = {.lex_state = 985}, + [4000] = {.lex_state = 985}, + [4001] = {.lex_state = 926}, + [4002] = {.lex_state = 926}, + [4003] = {.lex_state = 985}, + [4004] = {.lex_state = 46}, + [4005] = {.lex_state = 926}, + [4006] = {.lex_state = 926}, + [4007] = {.lex_state = 926}, + [4008] = {.lex_state = 1004}, + [4009] = {.lex_state = 926}, + [4010] = {.lex_state = 996}, + [4011] = {.lex_state = 928}, + [4012] = {.lex_state = 997}, + [4013] = {.lex_state = 1014}, + [4014] = {.lex_state = 1012}, + [4015] = {.lex_state = 1014}, + [4016] = {.lex_state = 1008}, + [4017] = {.lex_state = 926}, + [4018] = {.lex_state = 1014}, + [4019] = {.lex_state = 45}, + [4020] = {.lex_state = 994}, + [4021] = {.lex_state = 928}, + [4022] = {.lex_state = 47}, + [4023] = {.lex_state = 926}, + [4024] = {.lex_state = 1014}, + [4025] = {.lex_state = 1008}, + [4026] = {.lex_state = 1011}, + [4027] = {.lex_state = 1012}, + [4028] = {.lex_state = 926}, + [4029] = {.lex_state = 928}, + [4030] = {.lex_state = 1014}, + [4031] = {.lex_state = 994}, + [4032] = {.lex_state = 1008}, + [4033] = {.lex_state = 1004}, + [4034] = {.lex_state = 46}, + [4035] = {.lex_state = 1014}, + [4036] = {.lex_state = 49}, + [4037] = {.lex_state = 45}, + [4038] = {.lex_state = 1008}, + [4039] = {.lex_state = 1008}, + [4040] = {.lex_state = 994}, + [4041] = {.lex_state = 1004}, + [4042] = {.lex_state = 926}, + [4043] = {.lex_state = 928}, + [4044] = {.lex_state = 928}, + [4045] = {.lex_state = 928}, + [4046] = {.lex_state = 928}, + [4047] = {.lex_state = 926}, + [4048] = {.lex_state = 926}, + [4049] = {.lex_state = 994}, + [4050] = {.lex_state = 926}, + [4051] = {.lex_state = 926}, + [4052] = {.lex_state = 926}, + [4053] = {.lex_state = 926}, + [4054] = {.lex_state = 926}, + [4055] = {.lex_state = 926}, + [4056] = {.lex_state = 926}, + [4057] = {.lex_state = 926}, + [4058] = {.lex_state = 926}, + [4059] = {.lex_state = 1016}, + [4060] = {.lex_state = 1011}, + [4061] = {.lex_state = 926}, + [4062] = {.lex_state = 926}, + [4063] = {.lex_state = 926}, + [4064] = {.lex_state = 926}, + [4065] = {.lex_state = 926}, + [4066] = {.lex_state = 50}, + [4067] = {.lex_state = 926}, + [4068] = {.lex_state = 926}, + [4069] = {.lex_state = 926}, + [4070] = {.lex_state = 926}, + [4071] = {.lex_state = 926}, + [4072] = {.lex_state = 926}, + [4073] = {.lex_state = 50}, + [4074] = {.lex_state = 926}, + [4075] = {.lex_state = 926}, + [4076] = {.lex_state = 926}, + [4077] = {.lex_state = 926}, + [4078] = {.lex_state = 994}, + [4079] = {.lex_state = 926}, + [4080] = {.lex_state = 997}, + [4081] = {.lex_state = 1008}, + [4082] = {.lex_state = 926}, + [4083] = {.lex_state = 1014}, + [4084] = {.lex_state = 1008}, + [4085] = {.lex_state = 46}, + [4086] = {.lex_state = 1008}, + [4087] = {.lex_state = 926}, + [4088] = {.lex_state = 1014}, + [4089] = {.lex_state = 1014}, + [4090] = {.lex_state = 1014}, + [4091] = {.lex_state = 1014}, + [4092] = {.lex_state = 1008}, + [4093] = {.lex_state = 46}, + [4094] = {.lex_state = 46}, + [4095] = {.lex_state = 46}, + [4096] = {.lex_state = 994}, + [4097] = {.lex_state = 994}, + [4098] = {.lex_state = 51}, + [4099] = {.lex_state = 1014}, + [4100] = {.lex_state = 1013}, + [4101] = {.lex_state = 926}, + [4102] = {.lex_state = 926}, + [4103] = {.lex_state = 926}, + [4104] = {.lex_state = 926}, + [4105] = {.lex_state = 926}, + [4106] = {.lex_state = 61}, + [4107] = {.lex_state = 1018}, + [4108] = {.lex_state = 1008}, + [4109] = {.lex_state = 1013}, + [4110] = {.lex_state = 928}, + [4111] = {.lex_state = 928}, + [4112] = {.lex_state = 994}, + [4113] = {.lex_state = 926}, + [4114] = {.lex_state = 988}, + [4115] = {.lex_state = 51}, + [4116] = {.lex_state = 1013}, + [4117] = {.lex_state = 988}, + [4118] = {.lex_state = 51}, + [4119] = {.lex_state = 38}, + [4120] = {.lex_state = 48}, + [4121] = {.lex_state = 53}, + [4122] = {.lex_state = 1008}, + [4123] = {.lex_state = 994}, + [4124] = {.lex_state = 1013}, + [4125] = {.lex_state = 38}, + [4126] = {.lex_state = 51}, + [4127] = {.lex_state = 38}, + [4128] = {.lex_state = 1018}, + [4129] = {.lex_state = 988}, + [4130] = {.lex_state = 988}, + [4131] = {.lex_state = 1015}, + [4132] = {.lex_state = 994}, + [4133] = {.lex_state = 926}, + [4134] = {.lex_state = 988}, + [4135] = {.lex_state = 1015}, + [4136] = {.lex_state = 51}, + [4137] = {.lex_state = 1015}, + [4138] = {.lex_state = 1015}, + [4139] = {.lex_state = 1020}, + [4140] = {.lex_state = 38}, + [4141] = {.lex_state = 928}, + [4142] = {.lex_state = 1016}, + [4143] = {.lex_state = 1015}, + [4144] = {.lex_state = 1020}, + [4145] = {.lex_state = 1015}, + [4146] = {.lex_state = 928}, + [4147] = {.lex_state = 928}, + [4148] = {.lex_state = 928}, + [4149] = {.lex_state = 928}, + [4150] = {.lex_state = 926}, + [4151] = {.lex_state = 928}, + [4152] = {.lex_state = 988}, + [4153] = {.lex_state = 926}, + [4154] = {.lex_state = 61}, + [4155] = {.lex_state = 928}, + [4156] = {.lex_state = 1015}, + [4157] = {.lex_state = 1017}, + [4158] = {.lex_state = 1017}, + [4159] = {.lex_state = 1022}, + [4160] = {.lex_state = 1019}, + [4161] = {.lex_state = 1017}, + [4162] = {.lex_state = 38}, + [4163] = {.lex_state = 38}, + [4164] = {.lex_state = 1015}, + [4165] = {.lex_state = 928}, + [4166] = {.lex_state = 1015}, + [4167] = {.lex_state = 1017}, + [4168] = {.lex_state = 38}, [4169] = {.lex_state = 1048}, - [4170] = {.lex_state = 1016}, - [4171] = {.lex_state = 922}, - [4172] = {.lex_state = 922}, - [4173] = {.lex_state = 922}, - [4174] = {.lex_state = 1048}, - [4175] = {.lex_state = 1048}, - [4176] = {.lex_state = 922}, - [4177] = {.lex_state = 986}, - [4178] = {.lex_state = 1021}, - [4179] = {.lex_state = 922}, - [4180] = {.lex_state = 986}, - [4181] = {.lex_state = 986}, - [4182] = {.lex_state = 986}, - [4183] = {.lex_state = 922}, - [4184] = {.lex_state = 922}, - [4185] = {.lex_state = 1014}, - [4186] = {.lex_state = 1021}, - [4187] = {.lex_state = 1019}, - [4188] = {.lex_state = 922}, - [4189] = {.lex_state = 986}, - [4190] = {.lex_state = 922}, - [4191] = {.lex_state = 922}, - [4192] = {.lex_state = 1016}, - [4193] = {.lex_state = 1016}, - [4194] = {.lex_state = 986}, - [4195] = {.lex_state = 986}, - [4196] = {.lex_state = 59}, - [4197] = {.lex_state = 1021}, - [4198] = {.lex_state = 1021}, - [4199] = {.lex_state = 924}, - [4200] = {.lex_state = 1016}, - [4201] = {.lex_state = 987}, - [4202] = {.lex_state = 987}, - [4203] = {.lex_state = 1016}, - [4204] = {.lex_state = 1016}, - [4205] = {.lex_state = 922}, - [4206] = {.lex_state = 922}, - [4207] = {.lex_state = 987}, - [4208] = {.lex_state = 1016}, - [4209] = {.lex_state = 1016}, - [4210] = {.lex_state = 1021}, - [4211] = {.lex_state = 1016}, - [4212] = {.lex_state = 1021}, - [4213] = {.lex_state = 922}, - [4214] = {.lex_state = 1016}, - [4215] = {.lex_state = 1016}, - [4216] = {.lex_state = 43}, - [4217] = {.lex_state = 999}, - [4218] = {.lex_state = 60}, - [4219] = {.lex_state = 1016}, - [4220] = {.lex_state = 1016}, - [4221] = {.lex_state = 1016}, - [4222] = {.lex_state = 1016}, - [4223] = {.lex_state = 1021}, - [4224] = {.lex_state = 999}, - [4225] = {.lex_state = 43}, - [4226] = {.lex_state = 43}, - [4227] = {.lex_state = 1021}, - [4228] = {.lex_state = 1021}, - [4229] = {.lex_state = 1016}, - [4230] = {.lex_state = 1016}, - [4231] = {.lex_state = 1048}, - [4232] = {.lex_state = 1048}, - [4233] = {.lex_state = 922}, - [4234] = {.lex_state = 43}, - [4235] = {.lex_state = 1016}, - [4236] = {.lex_state = 1016}, - [4237] = {.lex_state = 43}, - [4238] = {.lex_state = 43}, - [4239] = {.lex_state = 999}, - [4240] = {.lex_state = 1021}, - [4241] = {.lex_state = 43}, - [4242] = {.lex_state = 60}, - [4243] = {.lex_state = 1021}, - [4244] = {.lex_state = 1021}, - [4245] = {.lex_state = 1020}, - [4246] = {.lex_state = 1020}, - [4247] = {.lex_state = 1016}, - [4248] = {.lex_state = 922}, - [4249] = {.lex_state = 1048}, - [4250] = {.lex_state = 43}, - [4251] = {.lex_state = 1016}, - [4252] = {.lex_state = 922}, - [4253] = {.lex_state = 999}, - [4254] = {.lex_state = 60}, - [4255] = {.lex_state = 1016}, - [4256] = {.lex_state = 1021}, - [4257] = {.lex_state = 60}, - [4258] = {.lex_state = 1016}, - [4259] = {.lex_state = 1016}, - [4260] = {.lex_state = 922}, - [4261] = {.lex_state = 1016}, - [4262] = {.lex_state = 1021}, - [4263] = {.lex_state = 1016}, - [4264] = {.lex_state = 1016}, - [4265] = {.lex_state = 1016}, - [4266] = {.lex_state = 999}, - [4267] = {.lex_state = 922}, - [4268] = {.lex_state = 1016}, - [4269] = {.lex_state = 1016}, - [4270] = {.lex_state = 999}, - [4271] = {.lex_state = 1016}, - [4272] = {.lex_state = 999}, - [4273] = {.lex_state = 922}, - [4274] = {.lex_state = 1048}, - [4275] = {.lex_state = 922}, - [4276] = {.lex_state = 1016}, - [4277] = {.lex_state = 60}, - [4278] = {.lex_state = 1016}, - [4279] = {.lex_state = 1018}, - [4280] = {.lex_state = 993}, - [4281] = {.lex_state = 60}, - [4282] = {.lex_state = 1016}, - [4283] = {.lex_state = 1016}, - [4284] = {.lex_state = 1016}, - [4285] = {.lex_state = 922}, - [4286] = {.lex_state = 922}, - [4287] = {.lex_state = 999}, - [4288] = {.lex_state = 993}, - [4289] = {.lex_state = 993}, - [4290] = {.lex_state = 1016}, - [4291] = {.lex_state = 1048}, - [4292] = {.lex_state = 999}, - [4293] = {.lex_state = 1016}, - [4294] = {.lex_state = 1016}, - [4295] = {.lex_state = 1016}, - [4296] = {.lex_state = 43}, - [4297] = {.lex_state = 1021}, - [4298] = {.lex_state = 1016}, - [4299] = {.lex_state = 1016}, - [4300] = {.lex_state = 43}, - [4301] = {.lex_state = 1021}, - [4302] = {.lex_state = 999}, - [4303] = {.lex_state = 999}, - [4304] = {.lex_state = 947}, - [4305] = {.lex_state = 67}, - [4306] = {.lex_state = 1022}, - [4307] = {.lex_state = 922}, - [4308] = {.lex_state = 983}, - [4309] = {.lex_state = 983}, - [4310] = {.lex_state = 1022}, - [4311] = {.lex_state = 43}, - [4312] = {.lex_state = 983}, - [4313] = {.lex_state = 983}, - [4314] = {.lex_state = 947}, - [4315] = {.lex_state = 947}, - [4316] = {.lex_state = 947}, - [4317] = {.lex_state = 947}, - [4318] = {.lex_state = 947}, - [4319] = {.lex_state = 947}, - [4320] = {.lex_state = 947}, - [4321] = {.lex_state = 947}, - [4322] = {.lex_state = 947}, - [4323] = {.lex_state = 947}, - [4324] = {.lex_state = 947}, - [4325] = {.lex_state = 947}, - [4326] = {.lex_state = 67}, - [4327] = {.lex_state = 947}, - [4328] = {.lex_state = 947}, - [4329] = {.lex_state = 947}, - [4330] = {.lex_state = 947}, - [4331] = {.lex_state = 947}, - [4332] = {.lex_state = 947}, - [4333] = {.lex_state = 947}, - [4334] = {.lex_state = 947}, - [4335] = {.lex_state = 947}, - [4336] = {.lex_state = 947}, - [4337] = {.lex_state = 947}, - [4338] = {.lex_state = 947}, - [4339] = {.lex_state = 947}, - [4340] = {.lex_state = 947}, - [4341] = {.lex_state = 947}, - [4342] = {.lex_state = 947}, - [4343] = {.lex_state = 947}, - [4344] = {.lex_state = 947}, - [4345] = {.lex_state = 947}, - [4346] = {.lex_state = 947}, - [4347] = {.lex_state = 947}, - [4348] = {.lex_state = 947}, - [4349] = {.lex_state = 61}, - [4350] = {.lex_state = 947}, - [4351] = {.lex_state = 947}, - [4352] = {.lex_state = 947}, - [4353] = {.lex_state = 947}, - [4354] = {.lex_state = 947}, - [4355] = {.lex_state = 947}, - [4356] = {.lex_state = 947}, - [4357] = {.lex_state = 947}, - [4358] = {.lex_state = 947}, - [4359] = {.lex_state = 947}, - [4360] = {.lex_state = 947}, - [4361] = {.lex_state = 947}, - [4362] = {.lex_state = 947}, - [4363] = {.lex_state = 947}, - [4364] = {.lex_state = 947}, - [4365] = {.lex_state = 947}, - [4366] = {.lex_state = 947}, - [4367] = {.lex_state = 947}, - [4368] = {.lex_state = 947}, - [4369] = {.lex_state = 947}, - [4370] = {.lex_state = 947}, - [4371] = {.lex_state = 947}, - [4372] = {.lex_state = 947}, - [4373] = {.lex_state = 947}, - [4374] = {.lex_state = 947}, - [4375] = {.lex_state = 947}, - [4376] = {.lex_state = 947}, - [4377] = {.lex_state = 947}, - [4378] = {.lex_state = 947}, - [4379] = {.lex_state = 947}, - [4380] = {.lex_state = 947}, - [4381] = {.lex_state = 999}, - [4382] = {.lex_state = 947}, - [4383] = {.lex_state = 947}, - [4384] = {.lex_state = 947}, - [4385] = {.lex_state = 947}, - [4386] = {.lex_state = 947}, - [4387] = {.lex_state = 947}, - [4388] = {.lex_state = 947}, - [4389] = {.lex_state = 947}, - [4390] = {.lex_state = 947}, - [4391] = {.lex_state = 947}, - [4392] = {.lex_state = 947}, - [4393] = {.lex_state = 947}, - [4394] = {.lex_state = 947}, - [4395] = {.lex_state = 947}, - [4396] = {.lex_state = 947}, - [4397] = {.lex_state = 947}, - [4398] = {.lex_state = 947}, - [4399] = {.lex_state = 947}, - [4400] = {.lex_state = 947}, - [4401] = {.lex_state = 947}, - [4402] = {.lex_state = 947}, - [4403] = {.lex_state = 947}, - [4404] = {.lex_state = 947}, - [4405] = {.lex_state = 947}, - [4406] = {.lex_state = 67}, - [4407] = {.lex_state = 947}, - [4408] = {.lex_state = 947}, - [4409] = {.lex_state = 947}, - [4410] = {.lex_state = 947}, - [4411] = {.lex_state = 67}, - [4412] = {.lex_state = 947}, - [4413] = {.lex_state = 947}, - [4414] = {.lex_state = 947}, - [4415] = {.lex_state = 947}, - [4416] = {.lex_state = 1020}, - [4417] = {.lex_state = 947}, - [4418] = {.lex_state = 67}, - [4419] = {.lex_state = 947}, - [4420] = {.lex_state = 947}, - [4421] = {.lex_state = 947}, - [4422] = {.lex_state = 947}, - [4423] = {.lex_state = 947}, - [4424] = {.lex_state = 947}, - [4425] = {.lex_state = 67}, - [4426] = {.lex_state = 67}, - [4427] = {.lex_state = 947}, - [4428] = {.lex_state = 67}, - [4429] = {.lex_state = 67}, - [4430] = {.lex_state = 67}, - [4431] = {.lex_state = 67}, - [4432] = {.lex_state = 67}, - [4433] = {.lex_state = 67}, - [4434] = {.lex_state = 67}, - [4435] = {.lex_state = 67}, - [4436] = {.lex_state = 67}, - [4437] = {.lex_state = 67}, - [4438] = {.lex_state = 999}, - [4439] = {.lex_state = 67}, - [4440] = {.lex_state = 67}, - [4441] = {.lex_state = 67}, - [4442] = {.lex_state = 67}, - [4443] = {.lex_state = 67}, - [4444] = {.lex_state = 947}, - [4445] = {.lex_state = 1022}, - [4446] = {.lex_state = 1021}, - [4447] = {.lex_state = 43}, - [4448] = {.lex_state = 1016}, - [4449] = {.lex_state = 987}, - [4450] = {.lex_state = 1016}, - [4451] = {.lex_state = 1016}, - [4452] = {.lex_state = 43}, - [4453] = {.lex_state = 947}, - [4454] = {.lex_state = 947}, - [4455] = {.lex_state = 1050}, - [4456] = {.lex_state = 1050}, - [4457] = {.lex_state = 999}, - [4458] = {.lex_state = 999}, - [4459] = {.lex_state = 1050}, - [4460] = {.lex_state = 999}, - [4461] = {.lex_state = 999}, - [4462] = {.lex_state = 999}, - [4463] = {.lex_state = 1022}, - [4464] = {.lex_state = 67}, - [4465] = {.lex_state = 922}, - [4466] = {.lex_state = 947}, - [4467] = {.lex_state = 947}, - [4468] = {.lex_state = 922}, - [4469] = {.lex_state = 43}, - [4470] = {.lex_state = 947}, - [4471] = {.lex_state = 1050}, - [4472] = {.lex_state = 1050}, - [4473] = {.lex_state = 947}, - [4474] = {.lex_state = 999}, - [4475] = {.lex_state = 947}, - [4476] = {.lex_state = 1042}, - [4477] = {.lex_state = 43}, - [4478] = {.lex_state = 947}, - [4479] = {.lex_state = 947}, - [4480] = {.lex_state = 947}, - [4481] = {.lex_state = 1022}, - [4482] = {.lex_state = 43}, - [4483] = {.lex_state = 43}, - [4484] = {.lex_state = 947}, - [4485] = {.lex_state = 947}, - [4486] = {.lex_state = 983}, - [4487] = {.lex_state = 947}, - [4488] = {.lex_state = 947}, - [4489] = {.lex_state = 999}, - [4490] = {.lex_state = 947}, - [4491] = {.lex_state = 1041}, - [4492] = {.lex_state = 1041}, - [4493] = {.lex_state = 1022}, - [4494] = {.lex_state = 1020}, - [4495] = {.lex_state = 947}, - [4496] = {.lex_state = 1022}, - [4497] = {.lex_state = 947}, - [4498] = {.lex_state = 947}, - [4499] = {.lex_state = 947}, - [4500] = {.lex_state = 947}, - [4501] = {.lex_state = 1041}, - [4502] = {.lex_state = 922}, - [4503] = {.lex_state = 1022}, - [4504] = {.lex_state = 1041}, - [4505] = {.lex_state = 64}, - [4506] = {.lex_state = 1022}, - [4507] = {.lex_state = 999}, - [4508] = {.lex_state = 999}, - [4509] = {.lex_state = 1041}, - [4510] = {.lex_state = 947}, - [4511] = {.lex_state = 947}, - [4512] = {.lex_state = 947}, - [4513] = {.lex_state = 983}, - [4514] = {.lex_state = 949}, - [4515] = {.lex_state = 955}, - [4516] = {.lex_state = 983}, - [4517] = {.lex_state = 43}, - [4518] = {.lex_state = 1022}, - [4519] = {.lex_state = 1042}, - [4520] = {.lex_state = 43}, - [4521] = {.lex_state = 947}, - [4522] = {.lex_state = 43}, - [4523] = {.lex_state = 62}, - [4524] = {.lex_state = 947}, - [4525] = {.lex_state = 43}, - [4526] = {.lex_state = 947}, + [4170] = {.lex_state = 926}, + [4171] = {.lex_state = 1020}, + [4172] = {.lex_state = 988}, + [4173] = {.lex_state = 1017}, + [4174] = {.lex_state = 54}, + [4175] = {.lex_state = 988}, + [4176] = {.lex_state = 994}, + [4177] = {.lex_state = 926}, + [4178] = {.lex_state = 1017}, + [4179] = {.lex_state = 1017}, + [4180] = {.lex_state = 1017}, + [4181] = {.lex_state = 1017}, + [4182] = {.lex_state = 926}, + [4183] = {.lex_state = 1020}, + [4184] = {.lex_state = 994}, + [4185] = {.lex_state = 38}, + [4186] = {.lex_state = 994}, + [4187] = {.lex_state = 38}, + [4188] = {.lex_state = 1048}, + [4189] = {.lex_state = 1017}, + [4190] = {.lex_state = 1017}, + [4191] = {.lex_state = 1017}, + [4192] = {.lex_state = 38}, + [4193] = {.lex_state = 1022}, + [4194] = {.lex_state = 1022}, + [4195] = {.lex_state = 1017}, + [4196] = {.lex_state = 926}, + [4197] = {.lex_state = 1017}, + [4198] = {.lex_state = 926}, + [4199] = {.lex_state = 1017}, + [4200] = {.lex_state = 926}, + [4201] = {.lex_state = 926}, + [4202] = {.lex_state = 1015}, + [4203] = {.lex_state = 1017}, + [4204] = {.lex_state = 1017}, + [4205] = {.lex_state = 1017}, + [4206] = {.lex_state = 1048}, + [4207] = {.lex_state = 1017}, + [4208] = {.lex_state = 926}, + [4209] = {.lex_state = 928}, + [4210] = {.lex_state = 926}, + [4211] = {.lex_state = 1048}, + [4212] = {.lex_state = 1048}, + [4213] = {.lex_state = 1022}, + [4214] = {.lex_state = 1017}, + [4215] = {.lex_state = 1017}, + [4216] = {.lex_state = 926}, + [4217] = {.lex_state = 926}, + [4218] = {.lex_state = 926}, + [4219] = {.lex_state = 1017}, + [4220] = {.lex_state = 928}, + [4221] = {.lex_state = 1017}, + [4222] = {.lex_state = 1022}, + [4223] = {.lex_state = 926}, + [4224] = {.lex_state = 926}, + [4225] = {.lex_state = 926}, + [4226] = {.lex_state = 1017}, + [4227] = {.lex_state = 926}, + [4228] = {.lex_state = 926}, + [4229] = {.lex_state = 926}, + [4230] = {.lex_state = 1017}, + [4231] = {.lex_state = 1015}, + [4232] = {.lex_state = 926}, + [4233] = {.lex_state = 1022}, + [4234] = {.lex_state = 926}, + [4235] = {.lex_state = 926}, + [4236] = {.lex_state = 926}, + [4237] = {.lex_state = 1017}, + [4238] = {.lex_state = 1022}, + [4239] = {.lex_state = 926}, + [4240] = {.lex_state = 54}, + [4241] = {.lex_state = 1022}, + [4242] = {.lex_state = 926}, + [4243] = {.lex_state = 926}, + [4244] = {.lex_state = 926}, + [4245] = {.lex_state = 926}, + [4246] = {.lex_state = 926}, + [4247] = {.lex_state = 928}, + [4248] = {.lex_state = 926}, + [4249] = {.lex_state = 1017}, + [4250] = {.lex_state = 926}, + [4251] = {.lex_state = 926}, + [4252] = {.lex_state = 1015}, + [4253] = {.lex_state = 926}, + [4254] = {.lex_state = 926}, + [4255] = {.lex_state = 1017}, + [4256] = {.lex_state = 926}, + [4257] = {.lex_state = 988}, + [4258] = {.lex_state = 926}, + [4259] = {.lex_state = 1017}, + [4260] = {.lex_state = 926}, + [4261] = {.lex_state = 928}, + [4262] = {.lex_state = 1017}, + [4263] = {.lex_state = 926}, + [4264] = {.lex_state = 988}, + [4265] = {.lex_state = 1017}, + [4266] = {.lex_state = 988}, + [4267] = {.lex_state = 926}, + [4268] = {.lex_state = 926}, + [4269] = {.lex_state = 926}, + [4270] = {.lex_state = 928}, + [4271] = {.lex_state = 926}, + [4272] = {.lex_state = 928}, + [4273] = {.lex_state = 928}, + [4274] = {.lex_state = 928}, + [4275] = {.lex_state = 988}, + [4276] = {.lex_state = 926}, + [4277] = {.lex_state = 926}, + [4278] = {.lex_state = 1022}, + [4279] = {.lex_state = 926}, + [4280] = {.lex_state = 926}, + [4281] = {.lex_state = 38}, + [4282] = {.lex_state = 1022}, + [4283] = {.lex_state = 1000}, + [4284] = {.lex_state = 926}, + [4285] = {.lex_state = 1017}, + [4286] = {.lex_state = 1000}, + [4287] = {.lex_state = 1017}, + [4288] = {.lex_state = 1017}, + [4289] = {.lex_state = 1017}, + [4290] = {.lex_state = 361, .external_lex_state = 2}, + [4291] = {.lex_state = 1017}, + [4292] = {.lex_state = 926}, + [4293] = {.lex_state = 1017}, + [4294] = {.lex_state = 38}, + [4295] = {.lex_state = 1017}, + [4296] = {.lex_state = 38}, + [4297] = {.lex_state = 1017}, + [4298] = {.lex_state = 38}, + [4299] = {.lex_state = 1017}, + [4300] = {.lex_state = 1017}, + [4301] = {.lex_state = 361, .external_lex_state = 2}, + [4302] = {.lex_state = 994}, + [4303] = {.lex_state = 52}, + [4304] = {.lex_state = 926}, + [4305] = {.lex_state = 994}, + [4306] = {.lex_state = 1048}, + [4307] = {.lex_state = 38}, + [4308] = {.lex_state = 1017}, + [4309] = {.lex_state = 38}, + [4310] = {.lex_state = 1000}, + [4311] = {.lex_state = 1019}, + [4312] = {.lex_state = 52}, + [4313] = {.lex_state = 1022}, + [4314] = {.lex_state = 1022}, + [4315] = {.lex_state = 1017}, + [4316] = {.lex_state = 1017}, + [4317] = {.lex_state = 1017}, + [4318] = {.lex_state = 52}, + [4319] = {.lex_state = 52}, + [4320] = {.lex_state = 1000}, + [4321] = {.lex_state = 1022}, + [4322] = {.lex_state = 1017}, + [4323] = {.lex_state = 1022}, + [4324] = {.lex_state = 1017}, + [4325] = {.lex_state = 361, .external_lex_state = 2}, + [4326] = {.lex_state = 1017}, + [4327] = {.lex_state = 1022}, + [4328] = {.lex_state = 1021}, + [4329] = {.lex_state = 1022}, + [4330] = {.lex_state = 1000}, + [4331] = {.lex_state = 361, .external_lex_state = 2}, + [4332] = {.lex_state = 926}, + [4333] = {.lex_state = 1017}, + [4334] = {.lex_state = 1017}, + [4335] = {.lex_state = 1017}, + [4336] = {.lex_state = 926}, + [4337] = {.lex_state = 1017}, + [4338] = {.lex_state = 1022}, + [4339] = {.lex_state = 1017}, + [4340] = {.lex_state = 1017}, + [4341] = {.lex_state = 1017}, + [4342] = {.lex_state = 1017}, + [4343] = {.lex_state = 1000}, + [4344] = {.lex_state = 1017}, + [4345] = {.lex_state = 38}, + [4346] = {.lex_state = 38}, + [4347] = {.lex_state = 38}, + [4348] = {.lex_state = 1048}, + [4349] = {.lex_state = 1000}, + [4350] = {.lex_state = 1000}, + [4351] = {.lex_state = 38}, + [4352] = {.lex_state = 1022}, + [4353] = {.lex_state = 52}, + [4354] = {.lex_state = 1000}, + [4355] = {.lex_state = 1017}, + [4356] = {.lex_state = 1017}, + [4357] = {.lex_state = 1017}, + [4358] = {.lex_state = 1017}, + [4359] = {.lex_state = 926}, + [4360] = {.lex_state = 926}, + [4361] = {.lex_state = 38}, + [4362] = {.lex_state = 1000}, + [4363] = {.lex_state = 1000}, + [4364] = {.lex_state = 926}, + [4365] = {.lex_state = 1017}, + [4366] = {.lex_state = 1017}, + [4367] = {.lex_state = 926}, + [4368] = {.lex_state = 1021}, + [4369] = {.lex_state = 1048}, + [4370] = {.lex_state = 38}, + [4371] = {.lex_state = 1017}, + [4372] = {.lex_state = 1048}, + [4373] = {.lex_state = 1048}, + [4374] = {.lex_state = 994}, + [4375] = {.lex_state = 52}, + [4376] = {.lex_state = 1022}, + [4377] = {.lex_state = 950}, + [4378] = {.lex_state = 950}, + [4379] = {.lex_state = 950}, + [4380] = {.lex_state = 1000}, + [4381] = {.lex_state = 1000}, + [4382] = {.lex_state = 950}, + [4383] = {.lex_state = 1000}, + [4384] = {.lex_state = 950}, + [4385] = {.lex_state = 63}, + [4386] = {.lex_state = 950}, + [4387] = {.lex_state = 950}, + [4388] = {.lex_state = 950}, + [4389] = {.lex_state = 985}, + [4390] = {.lex_state = 950}, + [4391] = {.lex_state = 63}, + [4392] = {.lex_state = 950}, + [4393] = {.lex_state = 1021}, + [4394] = {.lex_state = 926}, + [4395] = {.lex_state = 950}, + [4396] = {.lex_state = 950}, + [4397] = {.lex_state = 38}, + [4398] = {.lex_state = 950}, + [4399] = {.lex_state = 950}, + [4400] = {.lex_state = 950}, + [4401] = {.lex_state = 950}, + [4402] = {.lex_state = 58}, + [4403] = {.lex_state = 950}, + [4404] = {.lex_state = 950}, + [4405] = {.lex_state = 950}, + [4406] = {.lex_state = 950}, + [4407] = {.lex_state = 950}, + [4408] = {.lex_state = 950}, + [4409] = {.lex_state = 950}, + [4410] = {.lex_state = 950}, + [4411] = {.lex_state = 950}, + [4412] = {.lex_state = 950}, + [4413] = {.lex_state = 950}, + [4414] = {.lex_state = 1041}, + [4415] = {.lex_state = 950}, + [4416] = {.lex_state = 950}, + [4417] = {.lex_state = 1000}, + [4418] = {.lex_state = 38}, + [4419] = {.lex_state = 950}, + [4420] = {.lex_state = 950}, + [4421] = {.lex_state = 950}, + [4422] = {.lex_state = 950}, + [4423] = {.lex_state = 950}, + [4424] = {.lex_state = 950}, + [4425] = {.lex_state = 1000}, + [4426] = {.lex_state = 950}, + [4427] = {.lex_state = 950}, + [4428] = {.lex_state = 950}, + [4429] = {.lex_state = 950}, + [4430] = {.lex_state = 950}, + [4431] = {.lex_state = 988}, + [4432] = {.lex_state = 1021}, + [4433] = {.lex_state = 950}, + [4434] = {.lex_state = 59}, + [4435] = {.lex_state = 1050}, + [4436] = {.lex_state = 950}, + [4437] = {.lex_state = 950}, + [4438] = {.lex_state = 950}, + [4439] = {.lex_state = 1050}, + [4440] = {.lex_state = 950}, + [4441] = {.lex_state = 950}, + [4442] = {.lex_state = 950}, + [4443] = {.lex_state = 950}, + [4444] = {.lex_state = 950}, + [4445] = {.lex_state = 950}, + [4446] = {.lex_state = 950}, + [4447] = {.lex_state = 950}, + [4448] = {.lex_state = 1000}, + [4449] = {.lex_state = 950}, + [4450] = {.lex_state = 950}, + [4451] = {.lex_state = 1023}, + [4452] = {.lex_state = 950}, + [4453] = {.lex_state = 950}, + [4454] = {.lex_state = 1023}, + [4455] = {.lex_state = 950}, + [4456] = {.lex_state = 950}, + [4457] = {.lex_state = 950}, + [4458] = {.lex_state = 950}, + [4459] = {.lex_state = 950}, + [4460] = {.lex_state = 1023}, + [4461] = {.lex_state = 1050}, + [4462] = {.lex_state = 950}, + [4463] = {.lex_state = 950}, + [4464] = {.lex_state = 1000}, + [4465] = {.lex_state = 950}, + [4466] = {.lex_state = 950}, + [4467] = {.lex_state = 950}, + [4468] = {.lex_state = 985}, + [4469] = {.lex_state = 950}, + [4470] = {.lex_state = 926}, + [4471] = {.lex_state = 950}, + [4472] = {.lex_state = 1042}, + [4473] = {.lex_state = 950}, + [4474] = {.lex_state = 950}, + [4475] = {.lex_state = 63}, + [4476] = {.lex_state = 950}, + [4477] = {.lex_state = 950}, + [4478] = {.lex_state = 950}, + [4479] = {.lex_state = 950}, + [4480] = {.lex_state = 1000}, + [4481] = {.lex_state = 59}, + [4482] = {.lex_state = 950}, + [4483] = {.lex_state = 950}, + [4484] = {.lex_state = 1023}, + [4485] = {.lex_state = 1000}, + [4486] = {.lex_state = 63}, + [4487] = {.lex_state = 1050}, + [4488] = {.lex_state = 38}, + [4489] = {.lex_state = 1023}, + [4490] = {.lex_state = 38}, + [4491] = {.lex_state = 950}, + [4492] = {.lex_state = 1050}, + [4493] = {.lex_state = 950}, + [4494] = {.lex_state = 55}, + [4495] = {.lex_state = 63}, + [4496] = {.lex_state = 950}, + [4497] = {.lex_state = 1041}, + [4498] = {.lex_state = 63}, + [4499] = {.lex_state = 63}, + [4500] = {.lex_state = 63}, + [4501] = {.lex_state = 63}, + [4502] = {.lex_state = 63}, + [4503] = {.lex_state = 63}, + [4504] = {.lex_state = 950}, + [4505] = {.lex_state = 63}, + [4506] = {.lex_state = 63}, + [4507] = {.lex_state = 63}, + [4508] = {.lex_state = 950}, + [4509] = {.lex_state = 63}, + [4510] = {.lex_state = 63}, + [4511] = {.lex_state = 63}, + [4512] = {.lex_state = 63}, + [4513] = {.lex_state = 1000}, + [4514] = {.lex_state = 63}, + [4515] = {.lex_state = 63}, + [4516] = {.lex_state = 950}, + [4517] = {.lex_state = 63}, + [4518] = {.lex_state = 63}, + [4519] = {.lex_state = 950}, + [4520] = {.lex_state = 950}, + [4521] = {.lex_state = 950}, + [4522] = {.lex_state = 950}, + [4523] = {.lex_state = 950}, + [4524] = {.lex_state = 950}, + [4525] = {.lex_state = 950}, + [4526] = {.lex_state = 950}, [4527] = {.lex_state = 1023}, - [4528] = {.lex_state = 1041}, - [4529] = {.lex_state = 983}, - [4530] = {.lex_state = 947}, - [4531] = {.lex_state = 43}, - [4532] = {.lex_state = 1022}, - [4533] = {.lex_state = 947}, - [4534] = {.lex_state = 43}, - [4535] = {.lex_state = 947}, - [4536] = {.lex_state = 1024}, - [4537] = {.lex_state = 1022}, - [4538] = {.lex_state = 43}, - [4539] = {.lex_state = 983}, - [4540] = {.lex_state = 949}, - [4541] = {.lex_state = 361}, - [4542] = {.lex_state = 983}, - [4543] = {.lex_state = 43}, - [4544] = {.lex_state = 43}, - [4545] = {.lex_state = 922}, - [4546] = {.lex_state = 947}, - [4547] = {.lex_state = 947}, + [4528] = {.lex_state = 950}, + [4529] = {.lex_state = 1022}, + [4530] = {.lex_state = 1041}, + [4531] = {.lex_state = 950}, + [4532] = {.lex_state = 985}, + [4533] = {.lex_state = 985}, + [4534] = {.lex_state = 1017}, + [4535] = {.lex_state = 950}, + [4536] = {.lex_state = 950}, + [4537] = {.lex_state = 950}, + [4538] = {.lex_state = 950}, + [4539] = {.lex_state = 950}, + [4540] = {.lex_state = 950}, + [4541] = {.lex_state = 1023}, + [4542] = {.lex_state = 1017}, + [4543] = {.lex_state = 1023}, + [4544] = {.lex_state = 950}, + [4545] = {.lex_state = 950}, + [4546] = {.lex_state = 950}, + [4547] = {.lex_state = 59}, [4548] = {.lex_state = 1041}, - [4549] = {.lex_state = 1050}, - [4550] = {.lex_state = 1050}, - [4551] = {.lex_state = 1050}, - [4552] = {.lex_state = 43}, - [4553] = {.lex_state = 947}, - [4554] = {.lex_state = 106}, - [4555] = {.lex_state = 1022}, - [4556] = {.lex_state = 43}, - [4557] = {.lex_state = 947}, - [4558] = {.lex_state = 947}, - [4559] = {.lex_state = 947}, - [4560] = {.lex_state = 983}, - [4561] = {.lex_state = 983}, - [4562] = {.lex_state = 1050}, - [4563] = {.lex_state = 947}, - [4564] = {.lex_state = 949}, - [4565] = {.lex_state = 43}, - [4566] = {.lex_state = 1016}, - [4567] = {.lex_state = 947}, - [4568] = {.lex_state = 947}, - [4569] = {.lex_state = 1016}, - [4570] = {.lex_state = 1016}, - [4571] = {.lex_state = 1041}, - [4572] = {.lex_state = 949}, - [4573] = {.lex_state = 43}, - [4574] = {.lex_state = 1022}, - [4575] = {.lex_state = 1022}, - [4576] = {.lex_state = 987}, - [4577] = {.lex_state = 947}, - [4578] = {.lex_state = 1022}, - [4579] = {.lex_state = 43}, - [4580] = {.lex_state = 43}, - [4581] = {.lex_state = 43}, - [4582] = {.lex_state = 106}, - [4583] = {.lex_state = 1016}, - [4584] = {.lex_state = 1050}, - [4585] = {.lex_state = 43}, - [4586] = {.lex_state = 43}, - [4587] = {.lex_state = 947}, - [4588] = {.lex_state = 947}, - [4589] = {.lex_state = 361}, - [4590] = {.lex_state = 947}, - [4591] = {.lex_state = 955}, - [4592] = {.lex_state = 43}, - [4593] = {.lex_state = 947}, - [4594] = {.lex_state = 1022}, - [4595] = {.lex_state = 947}, - [4596] = {.lex_state = 947}, - [4597] = {.lex_state = 983}, - [4598] = {.lex_state = 947}, - [4599] = {.lex_state = 947}, - [4600] = {.lex_state = 987}, - [4601] = {.lex_state = 987}, - [4602] = {.lex_state = 1022}, - [4603] = {.lex_state = 949}, - [4604] = {.lex_state = 947}, - [4605] = {.lex_state = 947}, - [4606] = {.lex_state = 361}, - [4607] = {.lex_state = 922}, - [4608] = {.lex_state = 922}, - [4609] = {.lex_state = 1022}, - [4610] = {.lex_state = 947}, - [4611] = {.lex_state = 43}, - [4612] = {.lex_state = 67}, - [4613] = {.lex_state = 947}, - [4614] = {.lex_state = 62}, - [4615] = {.lex_state = 43}, - [4616] = {.lex_state = 947}, - [4617] = {.lex_state = 947}, - [4618] = {.lex_state = 947}, - [4619] = {.lex_state = 947}, - [4620] = {.lex_state = 947}, - [4621] = {.lex_state = 43}, - [4622] = {.lex_state = 67}, - [4623] = {.lex_state = 43}, - [4624] = {.lex_state = 947}, - [4625] = {.lex_state = 43}, - [4626] = {.lex_state = 1041}, - [4627] = {.lex_state = 361}, - [4628] = {.lex_state = 947}, - [4629] = {.lex_state = 947}, - [4630] = {.lex_state = 947}, - [4631] = {.lex_state = 947}, - [4632] = {.lex_state = 947}, - [4633] = {.lex_state = 947}, - [4634] = {.lex_state = 947}, - [4635] = {.lex_state = 1041}, - [4636] = {.lex_state = 949}, - [4637] = {.lex_state = 1022}, - [4638] = {.lex_state = 106}, - [4639] = {.lex_state = 64}, - [4640] = {.lex_state = 949}, - [4641] = {.lex_state = 1016}, - [4642] = {.lex_state = 1016}, - [4643] = {.lex_state = 1023}, - [4644] = {.lex_state = 63}, - [4645] = {.lex_state = 63}, - [4646] = {.lex_state = 949}, - [4647] = {.lex_state = 922}, - [4648] = {.lex_state = 949}, - [4649] = {.lex_state = 60}, - [4650] = {.lex_state = 949}, - [4651] = {.lex_state = 67}, - [4652] = {.lex_state = 67}, - [4653] = {.lex_state = 63}, - [4654] = {.lex_state = 947}, - [4655] = {.lex_state = 947}, - [4656] = {.lex_state = 947}, + [4549] = {.lex_state = 950}, + [4550] = {.lex_state = 1000}, + [4551] = {.lex_state = 950}, + [4552] = {.lex_state = 950}, + [4553] = {.lex_state = 950}, + [4554] = {.lex_state = 1041}, + [4555] = {.lex_state = 926}, + [4556] = {.lex_state = 985}, + [4557] = {.lex_state = 926}, + [4558] = {.lex_state = 1023}, + [4559] = {.lex_state = 1041}, + [4560] = {.lex_state = 950}, + [4561] = {.lex_state = 950}, + [4562] = {.lex_state = 950}, + [4563] = {.lex_state = 950}, + [4564] = {.lex_state = 950}, + [4565] = {.lex_state = 950}, + [4566] = {.lex_state = 950}, + [4567] = {.lex_state = 63}, + [4568] = {.lex_state = 950}, + [4569] = {.lex_state = 950}, + [4570] = {.lex_state = 950}, + [4571] = {.lex_state = 950}, + [4572] = {.lex_state = 59}, + [4573] = {.lex_state = 950}, + [4574] = {.lex_state = 950}, + [4575] = {.lex_state = 950}, + [4576] = {.lex_state = 950}, + [4577] = {.lex_state = 950}, + [4578] = {.lex_state = 950}, + [4579] = {.lex_state = 950}, + [4580] = {.lex_state = 950}, + [4581] = {.lex_state = 950}, + [4582] = {.lex_state = 950}, + [4583] = {.lex_state = 950}, + [4584] = {.lex_state = 950}, + [4585] = {.lex_state = 1017}, + [4586] = {.lex_state = 950}, + [4587] = {.lex_state = 38}, + [4588] = {.lex_state = 958}, + [4589] = {.lex_state = 950}, + [4590] = {.lex_state = 950}, + [4591] = {.lex_state = 950}, + [4592] = {.lex_state = 950}, + [4593] = {.lex_state = 38}, + [4594] = {.lex_state = 985}, + [4595] = {.lex_state = 950}, + [4596] = {.lex_state = 950}, + [4597] = {.lex_state = 38}, + [4598] = {.lex_state = 1023}, + [4599] = {.lex_state = 926}, + [4600] = {.lex_state = 1023}, + [4601] = {.lex_state = 950}, + [4602] = {.lex_state = 38}, + [4603] = {.lex_state = 1023}, + [4604] = {.lex_state = 38}, + [4605] = {.lex_state = 38}, + [4606] = {.lex_state = 1050}, + [4607] = {.lex_state = 950}, + [4608] = {.lex_state = 950}, + [4609] = {.lex_state = 950}, + [4610] = {.lex_state = 63}, + [4611] = {.lex_state = 38}, + [4612] = {.lex_state = 1017}, + [4613] = {.lex_state = 952}, + [4614] = {.lex_state = 926}, + [4615] = {.lex_state = 1024}, + [4616] = {.lex_state = 952}, + [4617] = {.lex_state = 950}, + [4618] = {.lex_state = 958}, + [4619] = {.lex_state = 950}, + [4620] = {.lex_state = 1025}, + [4621] = {.lex_state = 950}, + [4622] = {.lex_state = 1023}, + [4623] = {.lex_state = 950}, + [4624] = {.lex_state = 1050}, + [4625] = {.lex_state = 56}, + [4626] = {.lex_state = 38}, + [4627] = {.lex_state = 1050}, + [4628] = {.lex_state = 926}, + [4629] = {.lex_state = 952}, + [4630] = {.lex_state = 1041}, + [4631] = {.lex_state = 950}, + [4632] = {.lex_state = 950}, + [4633] = {.lex_state = 985}, + [4634] = {.lex_state = 1042}, + [4635] = {.lex_state = 38}, + [4636] = {.lex_state = 985}, + [4637] = {.lex_state = 1041}, + [4638] = {.lex_state = 38}, + [4639] = {.lex_state = 1023}, + [4640] = {.lex_state = 38}, + [4641] = {.lex_state = 38}, + [4642] = {.lex_state = 109}, + [4643] = {.lex_state = 985}, + [4644] = {.lex_state = 1023}, + [4645] = {.lex_state = 38}, + [4646] = {.lex_state = 1023}, + [4647] = {.lex_state = 38}, + [4648] = {.lex_state = 38}, + [4649] = {.lex_state = 950}, + [4650] = {.lex_state = 38}, + [4651] = {.lex_state = 950}, + [4652] = {.lex_state = 1041}, + [4653] = {.lex_state = 1041}, + [4654] = {.lex_state = 38}, + [4655] = {.lex_state = 38}, + [4656] = {.lex_state = 109}, [4657] = {.lex_state = 63}, - [4658] = {.lex_state = 1024}, - [4659] = {.lex_state = 949}, - [4660] = {.lex_state = 60}, - [4661] = {.lex_state = 947}, - [4662] = {.lex_state = 949}, - [4663] = {.lex_state = 947}, - [4664] = {.lex_state = 947}, - [4665] = {.lex_state = 949}, - [4666] = {.lex_state = 949}, - [4667] = {.lex_state = 949}, - [4668] = {.lex_state = 949}, - [4669] = {.lex_state = 949}, - [4670] = {.lex_state = 63}, - [4671] = {.lex_state = 949}, - [4672] = {.lex_state = 106}, - [4673] = {.lex_state = 922}, - [4674] = {.lex_state = 987}, - [4675] = {.lex_state = 949}, - [4676] = {.lex_state = 949}, - [4677] = {.lex_state = 949}, - [4678] = {.lex_state = 949}, - [4679] = {.lex_state = 949}, - [4680] = {.lex_state = 67}, - [4681] = {.lex_state = 949}, - [4682] = {.lex_state = 67}, - [4683] = {.lex_state = 67}, - [4684] = {.lex_state = 987}, - [4685] = {.lex_state = 949}, - [4686] = {.lex_state = 949}, - [4687] = {.lex_state = 947}, - [4688] = {.lex_state = 947}, - [4689] = {.lex_state = 949}, - [4690] = {.lex_state = 106}, - [4691] = {.lex_state = 87}, - [4692] = {.lex_state = 949}, - [4693] = {.lex_state = 949}, - [4694] = {.lex_state = 87}, - [4695] = {.lex_state = 922}, - [4696] = {.lex_state = 983}, - [4697] = {.lex_state = 60}, - [4698] = {.lex_state = 955}, - [4699] = {.lex_state = 947}, - [4700] = {.lex_state = 949}, - [4701] = {.lex_state = 955}, - [4702] = {.lex_state = 1025}, - [4703] = {.lex_state = 949}, - [4704] = {.lex_state = 949}, - [4705] = {.lex_state = 947}, - [4706] = {.lex_state = 949}, - [4707] = {.lex_state = 949}, - [4708] = {.lex_state = 949}, - [4709] = {.lex_state = 949}, - [4710] = {.lex_state = 949}, - [4711] = {.lex_state = 63}, - [4712] = {.lex_state = 947}, - [4713] = {.lex_state = 987}, - [4714] = {.lex_state = 947}, - [4715] = {.lex_state = 949}, - [4716] = {.lex_state = 949}, - [4717] = {.lex_state = 987}, - [4718] = {.lex_state = 43}, - [4719] = {.lex_state = 43}, - [4720] = {.lex_state = 922}, - [4721] = {.lex_state = 955}, - [4722] = {.lex_state = 949}, - [4723] = {.lex_state = 63}, - [4724] = {.lex_state = 1025}, - [4725] = {.lex_state = 87}, - [4726] = {.lex_state = 949}, - [4727] = {.lex_state = 48}, - [4728] = {.lex_state = 949}, - [4729] = {.lex_state = 947}, - [4730] = {.lex_state = 949}, - [4731] = {.lex_state = 947}, - [4732] = {.lex_state = 949}, - [4733] = {.lex_state = 949}, - [4734] = {.lex_state = 947}, - [4735] = {.lex_state = 947}, - [4736] = {.lex_state = 949}, - [4737] = {.lex_state = 949}, - [4738] = {.lex_state = 947}, - [4739] = {.lex_state = 947}, - [4740] = {.lex_state = 949}, - [4741] = {.lex_state = 60}, - [4742] = {.lex_state = 949}, - [4743] = {.lex_state = 949}, - [4744] = {.lex_state = 48}, - [4745] = {.lex_state = 949}, - [4746] = {.lex_state = 983}, - [4747] = {.lex_state = 949}, - [4748] = {.lex_state = 949}, - [4749] = {.lex_state = 949}, - [4750] = {.lex_state = 949}, - [4751] = {.lex_state = 949}, - [4752] = {.lex_state = 43}, - [4753] = {.lex_state = 947}, - [4754] = {.lex_state = 43}, - [4755] = {.lex_state = 43}, - [4756] = {.lex_state = 949}, - [4757] = {.lex_state = 947}, - [4758] = {.lex_state = 949}, - [4759] = {.lex_state = 949}, - [4760] = {.lex_state = 949}, - [4761] = {.lex_state = 949}, - [4762] = {.lex_state = 949}, - [4763] = {.lex_state = 949}, - [4764] = {.lex_state = 949}, - [4765] = {.lex_state = 949}, - [4766] = {.lex_state = 949}, - [4767] = {.lex_state = 949}, - [4768] = {.lex_state = 949}, - [4769] = {.lex_state = 949}, - [4770] = {.lex_state = 87}, - [4771] = {.lex_state = 63}, - [4772] = {.lex_state = 949}, - [4773] = {.lex_state = 949}, - [4774] = {.lex_state = 949}, - [4775] = {.lex_state = 955}, - [4776] = {.lex_state = 949}, - [4777] = {.lex_state = 43}, - [4778] = {.lex_state = 43}, - [4779] = {.lex_state = 60}, - [4780] = {.lex_state = 949}, - [4781] = {.lex_state = 48}, - [4782] = {.lex_state = 949}, - [4783] = {.lex_state = 949}, - [4784] = {.lex_state = 949}, - [4785] = {.lex_state = 949}, - [4786] = {.lex_state = 60}, - [4787] = {.lex_state = 87}, - [4788] = {.lex_state = 60}, - [4789] = {.lex_state = 949}, - [4790] = {.lex_state = 949}, - [4791] = {.lex_state = 949}, - [4792] = {.lex_state = 949}, - [4793] = {.lex_state = 949}, - [4794] = {.lex_state = 949}, - [4795] = {.lex_state = 949}, - [4796] = {.lex_state = 949}, - [4797] = {.lex_state = 949}, - [4798] = {.lex_state = 63}, - [4799] = {.lex_state = 949}, - [4800] = {.lex_state = 949}, - [4801] = {.lex_state = 949}, - [4802] = {.lex_state = 949}, - [4803] = {.lex_state = 947}, - [4804] = {.lex_state = 1016}, - [4805] = {.lex_state = 949}, - [4806] = {.lex_state = 947}, - [4807] = {.lex_state = 366}, - [4808] = {.lex_state = 949}, - [4809] = {.lex_state = 983}, - [4810] = {.lex_state = 955}, - [4811] = {.lex_state = 949}, - [4812] = {.lex_state = 97}, - [4813] = {.lex_state = 949}, - [4814] = {.lex_state = 949}, - [4815] = {.lex_state = 43}, - [4816] = {.lex_state = 949}, - [4817] = {.lex_state = 949}, - [4818] = {.lex_state = 43}, - [4819] = {.lex_state = 949}, - [4820] = {.lex_state = 949}, - [4821] = {.lex_state = 947}, - [4822] = {.lex_state = 43}, - [4823] = {.lex_state = 949}, - [4824] = {.lex_state = 949}, - [4825] = {.lex_state = 43}, - [4826] = {.lex_state = 43}, - [4827] = {.lex_state = 949}, - [4828] = {.lex_state = 43}, - [4829] = {.lex_state = 367}, - [4830] = {.lex_state = 371}, - [4831] = {.lex_state = 43}, - [4832] = {.lex_state = 43}, - [4833] = {.lex_state = 43}, - [4834] = {.lex_state = 949}, - [4835] = {.lex_state = 949}, - [4836] = {.lex_state = 949}, - [4837] = {.lex_state = 949}, - [4838] = {.lex_state = 1026}, - [4839] = {.lex_state = 949}, - [4840] = {.lex_state = 955}, - [4841] = {.lex_state = 949}, - [4842] = {.lex_state = 949}, - [4843] = {.lex_state = 949}, - [4844] = {.lex_state = 949}, - [4845] = {.lex_state = 949}, - [4846] = {.lex_state = 949}, - [4847] = {.lex_state = 363}, - [4848] = {.lex_state = 949}, - [4849] = {.lex_state = 67}, - [4850] = {.lex_state = 60}, - [4851] = {.lex_state = 97}, - [4852] = {.lex_state = 955}, - [4853] = {.lex_state = 949}, - [4854] = {.lex_state = 955}, - [4855] = {.lex_state = 43}, - [4856] = {.lex_state = 97}, - [4857] = {.lex_state = 97}, - [4858] = {.lex_state = 949}, - [4859] = {.lex_state = 336}, - [4860] = {.lex_state = 43}, - [4861] = {.lex_state = 43}, - [4862] = {.lex_state = 949}, - [4863] = {.lex_state = 949}, - [4864] = {.lex_state = 949}, - [4865] = {.lex_state = 949}, - [4866] = {.lex_state = 949}, - [4867] = {.lex_state = 1025}, - [4868] = {.lex_state = 43}, - [4869] = {.lex_state = 43}, - [4870] = {.lex_state = 336}, - [4871] = {.lex_state = 43}, - [4872] = {.lex_state = 949}, - [4873] = {.lex_state = 949}, - [4874] = {.lex_state = 43}, - [4875] = {.lex_state = 949}, - [4876] = {.lex_state = 955}, - [4877] = {.lex_state = 68}, - [4878] = {.lex_state = 955}, - [4879] = {.lex_state = 43}, - [4880] = {.lex_state = 949}, - [4881] = {.lex_state = 371}, - [4882] = {.lex_state = 949}, - [4883] = {.lex_state = 949}, - [4884] = {.lex_state = 949}, - [4885] = {.lex_state = 955}, - [4886] = {.lex_state = 949}, - [4887] = {.lex_state = 43}, - [4888] = {.lex_state = 955}, - [4889] = {.lex_state = 955}, - [4890] = {.lex_state = 949}, - [4891] = {.lex_state = 949}, - [4892] = {.lex_state = 949}, - [4893] = {.lex_state = 949}, - [4894] = {.lex_state = 43}, - [4895] = {.lex_state = 43}, - [4896] = {.lex_state = 43}, - [4897] = {.lex_state = 980}, - [4898] = {.lex_state = 43}, - [4899] = {.lex_state = 955}, - [4900] = {.lex_state = 43}, - [4901] = {.lex_state = 43}, - [4902] = {.lex_state = 955}, - [4903] = {.lex_state = 949}, - [4904] = {.lex_state = 955}, - [4905] = {.lex_state = 949}, - [4906] = {.lex_state = 955}, - [4907] = {.lex_state = 63}, - [4908] = {.lex_state = 949}, - [4909] = {.lex_state = 43}, - [4910] = {.lex_state = 949}, - [4911] = {.lex_state = 949}, - [4912] = {.lex_state = 955}, - [4913] = {.lex_state = 43}, - [4914] = {.lex_state = 949}, - [4915] = {.lex_state = 949}, - [4916] = {.lex_state = 949}, - [4917] = {.lex_state = 1026}, - [4918] = {.lex_state = 43}, - [4919] = {.lex_state = 955}, - [4920] = {.lex_state = 1026}, - [4921] = {.lex_state = 949}, - [4922] = {.lex_state = 43}, - [4923] = {.lex_state = 955}, - [4924] = {.lex_state = 955}, - [4925] = {.lex_state = 43}, - [4926] = {.lex_state = 949}, - [4927] = {.lex_state = 43}, - [4928] = {.lex_state = 949}, - [4929] = {.lex_state = 43}, - [4930] = {.lex_state = 67}, - [4931] = {.lex_state = 949}, - [4932] = {.lex_state = 949}, - [4933] = {.lex_state = 949}, - [4934] = {.lex_state = 43}, - [4935] = {.lex_state = 949}, - [4936] = {.lex_state = 43}, - [4937] = {.lex_state = 949}, + [4658] = {.lex_state = 38}, + [4659] = {.lex_state = 1041}, + [4660] = {.lex_state = 1041}, + [4661] = {.lex_state = 988}, + [4662] = {.lex_state = 988}, + [4663] = {.lex_state = 950}, + [4664] = {.lex_state = 985}, + [4665] = {.lex_state = 950}, + [4666] = {.lex_state = 985}, + [4667] = {.lex_state = 950}, + [4668] = {.lex_state = 952}, + [4669] = {.lex_state = 38}, + [4670] = {.lex_state = 1050}, + [4671] = {.lex_state = 1050}, + [4672] = {.lex_state = 1017}, + [4673] = {.lex_state = 1017}, + [4674] = {.lex_state = 952}, + [4675] = {.lex_state = 950}, + [4676] = {.lex_state = 1023}, + [4677] = {.lex_state = 985}, + [4678] = {.lex_state = 950}, + [4679] = {.lex_state = 38}, + [4680] = {.lex_state = 38}, + [4681] = {.lex_state = 1023}, + [4682] = {.lex_state = 38}, + [4683] = {.lex_state = 985}, + [4684] = {.lex_state = 950}, + [4685] = {.lex_state = 950}, + [4686] = {.lex_state = 38}, + [4687] = {.lex_state = 950}, + [4688] = {.lex_state = 1023}, + [4689] = {.lex_state = 1017}, + [4690] = {.lex_state = 988}, + [4691] = {.lex_state = 56}, + [4692] = {.lex_state = 950}, + [4693] = {.lex_state = 952}, + [4694] = {.lex_state = 952}, + [4695] = {.lex_state = 1025}, + [4696] = {.lex_state = 57}, + [4697] = {.lex_state = 63}, + [4698] = {.lex_state = 988}, + [4699] = {.lex_state = 52}, + [4700] = {.lex_state = 952}, + [4701] = {.lex_state = 952}, + [4702] = {.lex_state = 63}, + [4703] = {.lex_state = 952}, + [4704] = {.lex_state = 952}, + [4705] = {.lex_state = 988}, + [4706] = {.lex_state = 952}, + [4707] = {.lex_state = 952}, + [4708] = {.lex_state = 952}, + [4709] = {.lex_state = 952}, + [4710] = {.lex_state = 52}, + [4711] = {.lex_state = 952}, + [4712] = {.lex_state = 958}, + [4713] = {.lex_state = 958}, + [4714] = {.lex_state = 952}, + [4715] = {.lex_state = 57}, + [4716] = {.lex_state = 952}, + [4717] = {.lex_state = 950}, + [4718] = {.lex_state = 952}, + [4719] = {.lex_state = 950}, + [4720] = {.lex_state = 952}, + [4721] = {.lex_state = 58}, + [4722] = {.lex_state = 52}, + [4723] = {.lex_state = 952}, + [4724] = {.lex_state = 952}, + [4725] = {.lex_state = 952}, + [4726] = {.lex_state = 952}, + [4727] = {.lex_state = 1017}, + [4728] = {.lex_state = 952}, + [4729] = {.lex_state = 952}, + [4730] = {.lex_state = 38}, + [4731] = {.lex_state = 109}, + [4732] = {.lex_state = 57}, + [4733] = {.lex_state = 38}, + [4734] = {.lex_state = 38}, + [4735] = {.lex_state = 952}, + [4736] = {.lex_state = 38}, + [4737] = {.lex_state = 950}, + [4738] = {.lex_state = 952}, + [4739] = {.lex_state = 952}, + [4740] = {.lex_state = 952}, + [4741] = {.lex_state = 952}, + [4742] = {.lex_state = 952}, + [4743] = {.lex_state = 952}, + [4744] = {.lex_state = 952}, + [4745] = {.lex_state = 952}, + [4746] = {.lex_state = 952}, + [4747] = {.lex_state = 950}, + [4748] = {.lex_state = 52}, + [4749] = {.lex_state = 88}, + [4750] = {.lex_state = 109}, + [4751] = {.lex_state = 988}, + [4752] = {.lex_state = 952}, + [4753] = {.lex_state = 952}, + [4754] = {.lex_state = 952}, + [4755] = {.lex_state = 952}, + [4756] = {.lex_state = 952}, + [4757] = {.lex_state = 952}, + [4758] = {.lex_state = 985}, + [4759] = {.lex_state = 952}, + [4760] = {.lex_state = 1017}, + [4761] = {.lex_state = 1017}, + [4762] = {.lex_state = 952}, + [4763] = {.lex_state = 57}, + [4764] = {.lex_state = 88}, + [4765] = {.lex_state = 958}, + [4766] = {.lex_state = 1026}, + [4767] = {.lex_state = 88}, + [4768] = {.lex_state = 63}, + [4769] = {.lex_state = 952}, + [4770] = {.lex_state = 985}, + [4771] = {.lex_state = 366}, + [4772] = {.lex_state = 952}, + [4773] = {.lex_state = 926}, + [4774] = {.lex_state = 952}, + [4775] = {.lex_state = 926}, + [4776] = {.lex_state = 950}, + [4777] = {.lex_state = 52}, + [4778] = {.lex_state = 952}, + [4779] = {.lex_state = 952}, + [4780] = {.lex_state = 950}, + [4781] = {.lex_state = 1024}, + [4782] = {.lex_state = 958}, + [4783] = {.lex_state = 63}, + [4784] = {.lex_state = 57}, + [4785] = {.lex_state = 57}, + [4786] = {.lex_state = 952}, + [4787] = {.lex_state = 952}, + [4788] = {.lex_state = 952}, + [4789] = {.lex_state = 952}, + [4790] = {.lex_state = 57}, + [4791] = {.lex_state = 952}, + [4792] = {.lex_state = 950}, + [4793] = {.lex_state = 952}, + [4794] = {.lex_state = 950}, + [4795] = {.lex_state = 952}, + [4796] = {.lex_state = 952}, + [4797] = {.lex_state = 63}, + [4798] = {.lex_state = 952}, + [4799] = {.lex_state = 952}, + [4800] = {.lex_state = 952}, + [4801] = {.lex_state = 950}, + [4802] = {.lex_state = 952}, + [4803] = {.lex_state = 952}, + [4804] = {.lex_state = 926}, + [4805] = {.lex_state = 952}, + [4806] = {.lex_state = 952}, + [4807] = {.lex_state = 952}, + [4808] = {.lex_state = 950}, + [4809] = {.lex_state = 52}, + [4810] = {.lex_state = 952}, + [4811] = {.lex_state = 950}, + [4812] = {.lex_state = 952}, + [4813] = {.lex_state = 952}, + [4814] = {.lex_state = 950}, + [4815] = {.lex_state = 952}, + [4816] = {.lex_state = 88}, + [4817] = {.lex_state = 952}, + [4818] = {.lex_state = 950}, + [4819] = {.lex_state = 952}, + [4820] = {.lex_state = 38}, + [4821] = {.lex_state = 952}, + [4822] = {.lex_state = 952}, + [4823] = {.lex_state = 88}, + [4824] = {.lex_state = 950}, + [4825] = {.lex_state = 952}, + [4826] = {.lex_state = 952}, + [4827] = {.lex_state = 1026}, + [4828] = {.lex_state = 63}, + [4829] = {.lex_state = 952}, + [4830] = {.lex_state = 988}, + [4831] = {.lex_state = 950}, + [4832] = {.lex_state = 950}, + [4833] = {.lex_state = 952}, + [4834] = {.lex_state = 952}, + [4835] = {.lex_state = 952}, + [4836] = {.lex_state = 950}, + [4837] = {.lex_state = 952}, + [4838] = {.lex_state = 952}, + [4839] = {.lex_state = 952}, + [4840] = {.lex_state = 952}, + [4841] = {.lex_state = 952}, + [4842] = {.lex_state = 57}, + [4843] = {.lex_state = 38}, + [4844] = {.lex_state = 57}, + [4845] = {.lex_state = 952}, + [4846] = {.lex_state = 952}, + [4847] = {.lex_state = 1023}, + [4848] = {.lex_state = 952}, + [4849] = {.lex_state = 950}, + [4850] = {.lex_state = 985}, + [4851] = {.lex_state = 926}, + [4852] = {.lex_state = 950}, + [4853] = {.lex_state = 952}, + [4854] = {.lex_state = 950}, + [4855] = {.lex_state = 52}, + [4856] = {.lex_state = 952}, + [4857] = {.lex_state = 109}, + [4858] = {.lex_state = 950}, + [4859] = {.lex_state = 52}, + [4860] = {.lex_state = 952}, + [4861] = {.lex_state = 952}, + [4862] = {.lex_state = 950}, + [4863] = {.lex_state = 952}, + [4864] = {.lex_state = 952}, + [4865] = {.lex_state = 952}, + [4866] = {.lex_state = 952}, + [4867] = {.lex_state = 952}, + [4868] = {.lex_state = 952}, + [4869] = {.lex_state = 958}, + [4870] = {.lex_state = 952}, + [4871] = {.lex_state = 952}, + [4872] = {.lex_state = 952}, + [4873] = {.lex_state = 958}, + [4874] = {.lex_state = 958}, + [4875] = {.lex_state = 958}, + [4876] = {.lex_state = 958}, + [4877] = {.lex_state = 38}, + [4878] = {.lex_state = 958}, + [4879] = {.lex_state = 958}, + [4880] = {.lex_state = 952}, + [4881] = {.lex_state = 952}, + [4882] = {.lex_state = 952}, + [4883] = {.lex_state = 371}, + [4884] = {.lex_state = 38}, + [4885] = {.lex_state = 958}, + [4886] = {.lex_state = 958}, + [4887] = {.lex_state = 38}, + [4888] = {.lex_state = 958}, + [4889] = {.lex_state = 363}, + [4890] = {.lex_state = 958}, + [4891] = {.lex_state = 38}, + [4892] = {.lex_state = 38}, + [4893] = {.lex_state = 63}, + [4894] = {.lex_state = 38}, + [4895] = {.lex_state = 63}, + [4896] = {.lex_state = 63}, + [4897] = {.lex_state = 38}, + [4898] = {.lex_state = 958}, + [4899] = {.lex_state = 38}, + [4900] = {.lex_state = 958}, + [4901] = {.lex_state = 38}, + [4902] = {.lex_state = 38}, + [4903] = {.lex_state = 38}, + [4904] = {.lex_state = 38}, + [4905] = {.lex_state = 38}, + [4906] = {.lex_state = 38}, + [4907] = {.lex_state = 38}, + [4908] = {.lex_state = 38}, + [4909] = {.lex_state = 38}, + [4910] = {.lex_state = 38}, + [4911] = {.lex_state = 38}, + [4912] = {.lex_state = 38}, + [4913] = {.lex_state = 38}, + [4914] = {.lex_state = 38}, + [4915] = {.lex_state = 38}, + [4916] = {.lex_state = 38}, + [4917] = {.lex_state = 38}, + [4918] = {.lex_state = 38}, + [4919] = {.lex_state = 958}, + [4920] = {.lex_state = 958}, + [4921] = {.lex_state = 958}, + [4922] = {.lex_state = 958}, + [4923] = {.lex_state = 38}, + [4924] = {.lex_state = 57}, + [4925] = {.lex_state = 52}, + [4926] = {.lex_state = 958}, + [4927] = {.lex_state = 38}, + [4928] = {.lex_state = 38}, + [4929] = {.lex_state = 38}, + [4930] = {.lex_state = 38}, + [4931] = {.lex_state = 100}, + [4932] = {.lex_state = 100}, + [4933] = {.lex_state = 383}, + [4934] = {.lex_state = 52}, + [4935] = {.lex_state = 1026}, + [4936] = {.lex_state = 38}, + [4937] = {.lex_state = 38}, [4938] = {.lex_state = 1026}, - [4939] = {.lex_state = 955}, - [4940] = {.lex_state = 43}, - [4941] = {.lex_state = 955}, - [4942] = {.lex_state = 60}, - [4943] = {.lex_state = 955}, - [4944] = {.lex_state = 947}, - [4945] = {.lex_state = 955}, - [4946] = {.lex_state = 949}, - [4947] = {.lex_state = 43}, - [4948] = {.lex_state = 949}, - [4949] = {.lex_state = 43}, - [4950] = {.lex_state = 955}, - [4951] = {.lex_state = 43}, - [4952] = {.lex_state = 43}, - [4953] = {.lex_state = 43}, - [4954] = {.lex_state = 949}, - [4955] = {.lex_state = 949}, - [4956] = {.lex_state = 43}, - [4957] = {.lex_state = 949}, - [4958] = {.lex_state = 949}, - [4959] = {.lex_state = 949}, - [4960] = {.lex_state = 67}, - [4961] = {.lex_state = 43}, - [4962] = {.lex_state = 1025}, - [4963] = {.lex_state = 43}, - [4964] = {.lex_state = 43}, - [4965] = {.lex_state = 949}, - [4966] = {.lex_state = 949}, - [4967] = {.lex_state = 43}, - [4968] = {.lex_state = 43}, - [4969] = {.lex_state = 43}, - [4970] = {.lex_state = 43}, - [4971] = {.lex_state = 949}, - [4972] = {.lex_state = 955}, - [4973] = {.lex_state = 949}, - [4974] = {.lex_state = 43}, - [4975] = {.lex_state = 43}, - [4976] = {.lex_state = 955}, - [4977] = {.lex_state = 43}, - [4978] = {.lex_state = 43}, - [4979] = {.lex_state = 955}, - [4980] = {.lex_state = 43}, - [4981] = {.lex_state = 955}, - [4982] = {.lex_state = 949}, - [4983] = {.lex_state = 955}, - [4984] = {.lex_state = 949}, - [4985] = {.lex_state = 1026}, - [4986] = {.lex_state = 43}, - [4987] = {.lex_state = 372}, - [4988] = {.lex_state = 949}, - [4989] = {.lex_state = 363}, - [4990] = {.lex_state = 949}, - [4991] = {.lex_state = 949}, - [4992] = {.lex_state = 949}, - [4993] = {.lex_state = 949}, - [4994] = {.lex_state = 43}, - [4995] = {.lex_state = 949}, - [4996] = {.lex_state = 43}, - [4997] = {.lex_state = 949}, - [4998] = {.lex_state = 949}, - [4999] = {.lex_state = 949}, - [5000] = {.lex_state = 43}, - [5001] = {.lex_state = 955}, - [5002] = {.lex_state = 955}, - [5003] = {.lex_state = 955}, - [5004] = {.lex_state = 955}, - [5005] = {.lex_state = 955}, - [5006] = {.lex_state = 955}, - [5007] = {.lex_state = 955}, - [5008] = {.lex_state = 410}, - [5009] = {.lex_state = 43}, - [5010] = {.lex_state = 955}, - [5011] = {.lex_state = 955}, - [5012] = {.lex_state = 429}, - [5013] = {.lex_state = 955}, - [5014] = {.lex_state = 955}, - [5015] = {.lex_state = 371}, - [5016] = {.lex_state = 955}, - [5017] = {.lex_state = 955}, - [5018] = {.lex_state = 955}, - [5019] = {.lex_state = 955}, - [5020] = {.lex_state = 955}, - [5021] = {.lex_state = 955}, - [5022] = {.lex_state = 955}, - [5023] = {.lex_state = 955}, - [5024] = {.lex_state = 955}, - [5025] = {.lex_state = 955}, - [5026] = {.lex_state = 364}, - [5027] = {.lex_state = 955}, - [5028] = {.lex_state = 955}, - [5029] = {.lex_state = 955}, - [5030] = {.lex_state = 955}, - [5031] = {.lex_state = 955}, - [5032] = {.lex_state = 955}, - [5033] = {.lex_state = 955}, - [5034] = {.lex_state = 955}, - [5035] = {.lex_state = 955}, - [5036] = {.lex_state = 955}, - [5037] = {.lex_state = 955}, - [5038] = {.lex_state = 955}, - [5039] = {.lex_state = 955}, - [5040] = {.lex_state = 955}, - [5041] = {.lex_state = 955}, - [5042] = {.lex_state = 955}, - [5043] = {.lex_state = 955}, - [5044] = {.lex_state = 955}, - [5045] = {.lex_state = 955}, - [5046] = {.lex_state = 364}, - [5047] = {.lex_state = 922}, - [5048] = {.lex_state = 43}, - [5049] = {.lex_state = 1026}, - [5050] = {.lex_state = 369}, - [5051] = {.lex_state = 1026}, - [5052] = {.lex_state = 1026}, - [5053] = {.lex_state = 1026}, - [5054] = {.lex_state = 922}, - [5055] = {.lex_state = 370}, - [5056] = {.lex_state = 371}, - [5057] = {.lex_state = 955}, - [5058] = {.lex_state = 955}, - [5059] = {.lex_state = 370}, - [5060] = {.lex_state = 4422}, - [5061] = {.lex_state = 955}, - [5062] = {.lex_state = 955}, - [5063] = {.lex_state = 955}, - [5064] = {.lex_state = 43}, - [5065] = {.lex_state = 43}, - [5066] = {.lex_state = 922}, - [5067] = {.lex_state = 922}, - [5068] = {.lex_state = 955}, - [5069] = {.lex_state = 43}, - [5070] = {.lex_state = 43}, - [5071] = {.lex_state = 1026}, - [5072] = {.lex_state = 955}, - [5073] = {.lex_state = 955}, - [5074] = {.lex_state = 955}, - [5075] = {.lex_state = 955}, - [5076] = {.lex_state = 4422}, - [5077] = {.lex_state = 955}, - [5078] = {.lex_state = 955}, - [5079] = {.lex_state = 368}, - [5080] = {.lex_state = 955}, - [5081] = {.lex_state = 955}, - [5082] = {.lex_state = 43}, - [5083] = {.lex_state = 955}, - [5084] = {.lex_state = 4422}, - [5085] = {.lex_state = 43}, - [5086] = {.lex_state = 371}, - [5087] = {.lex_state = 371}, - [5088] = {.lex_state = 371}, - [5089] = {.lex_state = 955}, - [5090] = {.lex_state = 43}, - [5091] = {.lex_state = 955}, - [5092] = {.lex_state = 43}, - [5093] = {.lex_state = 43}, - [5094] = {.lex_state = 43}, - [5095] = {.lex_state = 43}, - [5096] = {.lex_state = 43}, - [5097] = {.lex_state = 43}, - [5098] = {.lex_state = 43}, - [5099] = {.lex_state = 43}, - [5100] = {.lex_state = 43}, - [5101] = {.lex_state = 43}, - [5102] = {.lex_state = 43}, - [5103] = {.lex_state = 43}, - [5104] = {.lex_state = 43}, - [5105] = {.lex_state = 43}, - [5106] = {.lex_state = 43}, - [5107] = {.lex_state = 43}, - [5108] = {.lex_state = 43}, - [5109] = {.lex_state = 43}, - [5110] = {.lex_state = 375}, - [5111] = {.lex_state = 377}, - [5112] = {.lex_state = 43}, - [5113] = {.lex_state = 955}, - [5114] = {.lex_state = 43}, - [5115] = {.lex_state = 922}, - [5116] = {.lex_state = 955}, - [5117] = {.lex_state = 922}, - [5118] = {.lex_state = 922}, - [5119] = {.lex_state = 43}, - [5120] = {.lex_state = 955}, - [5121] = {.lex_state = 922}, - [5122] = {.lex_state = 922}, - [5123] = {.lex_state = 955}, - [5124] = {.lex_state = 4422}, - [5125] = {.lex_state = 4422}, - [5126] = {.lex_state = 955}, - [5127] = {.lex_state = 955}, - [5128] = {.lex_state = 376}, - [5129] = {.lex_state = 43}, - [5130] = {.lex_state = 381}, - [5131] = {.lex_state = 43}, - [5132] = {.lex_state = 43}, - [5133] = {.lex_state = 43}, - [5134] = {.lex_state = 922}, - [5135] = {.lex_state = 955}, - [5136] = {.lex_state = 117}, - [5137] = {.lex_state = 980}, - [5138] = {.lex_state = 117}, - [5139] = {.lex_state = 117}, - [5140] = {.lex_state = 117}, - [5141] = {.lex_state = 955}, - [5142] = {.lex_state = 980}, - [5143] = {.lex_state = 955}, - [5144] = {.lex_state = 955}, - [5145] = {.lex_state = 955}, - [5146] = {.lex_state = 955}, - [5147] = {.lex_state = 955}, - [5148] = {.lex_state = 955}, - [5149] = {.lex_state = 955}, - [5150] = {.lex_state = 955}, - [5151] = {.lex_state = 43}, - [5152] = {.lex_state = 43}, - [5153] = {.lex_state = 369}, - [5154] = {.lex_state = 955}, - [5155] = {.lex_state = 43}, - [5156] = {.lex_state = 365}, - [5157] = {.lex_state = 922}, - [5158] = {.lex_state = 922}, - [5159] = {.lex_state = 43}, - [5160] = {.lex_state = 980}, - [5161] = {.lex_state = 43}, - [5162] = {.lex_state = 336}, - [5163] = {.lex_state = 382}, - [5164] = {.lex_state = 371}, - [5165] = {.lex_state = 447}, - [5166] = {.lex_state = 980}, - [5167] = {.lex_state = 43}, - [5168] = {.lex_state = 382}, - [5169] = {.lex_state = 922}, - [5170] = {.lex_state = 373}, - [5171] = {.lex_state = 378}, - [5172] = {.lex_state = 336}, - [5173] = {.lex_state = 43}, - [5174] = {.lex_state = 922}, - [5175] = {.lex_state = 980}, - [5176] = {.lex_state = 43}, - [5177] = {.lex_state = 371}, - [5178] = {.lex_state = 378}, - [5179] = {.lex_state = 373}, - [5180] = {.lex_state = 922}, - [5181] = {.lex_state = 350}, - [5182] = {.lex_state = 452}, - [5183] = {.lex_state = 350}, - [5184] = {.lex_state = 457}, - [5185] = {.lex_state = 445}, - [5186] = {.lex_state = 411}, - [5187] = {.lex_state = 43}, - [5188] = {.lex_state = 423}, - [5189] = {.lex_state = 373}, - [5190] = {.lex_state = 373}, - [5191] = {.lex_state = 373}, - [5192] = {.lex_state = 955}, - [5193] = {.lex_state = 373}, - [5194] = {.lex_state = 373}, - [5195] = {.lex_state = 365}, - [5196] = {.lex_state = 43}, - [5197] = {.lex_state = 980}, - [5198] = {.lex_state = 980}, - [5199] = {.lex_state = 980}, - [5200] = {.lex_state = 980}, - [5201] = {.lex_state = 980}, - [5202] = {.lex_state = 980}, - [5203] = {.lex_state = 430}, - [5204] = {.lex_state = 430}, - [5205] = {.lex_state = 100}, - [5206] = {.lex_state = 4003}, - [5207] = {.lex_state = 922}, - [5208] = {.lex_state = 4003}, - [5209] = {.lex_state = 4003}, - [5210] = {.lex_state = 350}, - [5211] = {.lex_state = 350}, - [5212] = {.lex_state = 380}, - [5213] = {.lex_state = 4601}, - [5214] = {.lex_state = 4601}, - [5215] = {.lex_state = 392}, - [5216] = {.lex_state = 4003}, - [5217] = {.lex_state = 4003}, - [5218] = {.lex_state = 394}, - [5219] = {.lex_state = 48}, - [5220] = {.lex_state = 431}, - [5221] = {.lex_state = 43}, - [5222] = {.lex_state = 448}, - [5223] = {.lex_state = 117}, - [5224] = {.lex_state = 431}, - [5225] = {.lex_state = 117}, - [5226] = {.lex_state = 117}, - [5227] = {.lex_state = 117}, - [5228] = {.lex_state = 431}, - [5229] = {.lex_state = 100}, - [5230] = {.lex_state = 100}, - [5231] = {.lex_state = 4601}, - [5232] = {.lex_state = 4601}, - [5233] = {.lex_state = 448}, - [5234] = {.lex_state = 4421}, - [5235] = {.lex_state = 4003}, - [5236] = {.lex_state = 4003}, - [5237] = {.lex_state = 425}, - [5238] = {.lex_state = 43}, - [5239] = {.lex_state = 4003}, - [5240] = {.lex_state = 4003}, - [5241] = {.lex_state = 379}, - [5242] = {.lex_state = 48}, - [5243] = {.lex_state = 43}, - [5244] = {.lex_state = 379}, - [5245] = {.lex_state = 4601}, - [5246] = {.lex_state = 4601}, - [5247] = {.lex_state = 379}, - [5248] = {.lex_state = 379}, - [5249] = {.lex_state = 4421}, - [5250] = {.lex_state = 4421}, - [5251] = {.lex_state = 412}, - [5252] = {.lex_state = 350}, - [5253] = {.lex_state = 458}, - [5254] = {.lex_state = 458}, - [5255] = {.lex_state = 43}, - [5256] = {.lex_state = 4421}, - [5257] = {.lex_state = 424}, - [5258] = {.lex_state = 922}, - [5259] = {.lex_state = 922}, - [5260] = {.lex_state = 922}, - [5261] = {.lex_state = 424}, - [5262] = {.lex_state = 4003}, - [5263] = {.lex_state = 4003}, - [5264] = {.lex_state = 431}, - [5265] = {.lex_state = 78}, - [5266] = {.lex_state = 43}, - [5267] = {.lex_state = 4003}, - [5268] = {.lex_state = 4003}, - [5269] = {.lex_state = 4003}, - [5270] = {.lex_state = 4003}, - [5271] = {.lex_state = 410}, - [5272] = {.lex_state = 4003}, - [5273] = {.lex_state = 4003}, - [5274] = {.lex_state = 117}, - [5275] = {.lex_state = 380}, - [5276] = {.lex_state = 380}, - [5277] = {.lex_state = 380}, - [5278] = {.lex_state = 410}, - [5279] = {.lex_state = 380}, - [5280] = {.lex_state = 410}, - [5281] = {.lex_state = 350}, - [5282] = {.lex_state = 350}, - [5283] = {.lex_state = 350}, - [5284] = {.lex_state = 336}, - [5285] = {.lex_state = 79}, - [5286] = {.lex_state = 4421}, - [5287] = {.lex_state = 117}, - [5288] = {.lex_state = 117}, - [5289] = {.lex_state = 922}, - [5290] = {.lex_state = 379}, - [5291] = {.lex_state = 432}, - [5292] = {.lex_state = 43}, - [5293] = {.lex_state = 336}, - [5294] = {.lex_state = 431}, - [5295] = {.lex_state = 4421}, - [5296] = {.lex_state = 4421}, - [5297] = {.lex_state = 4003}, - [5298] = {.lex_state = 117}, - [5299] = {.lex_state = 350}, - [5300] = {.lex_state = 395}, - [5301] = {.lex_state = 425}, - [5302] = {.lex_state = 425}, - [5303] = {.lex_state = 446}, - [5304] = {.lex_state = 117}, - [5305] = {.lex_state = 117}, - [5306] = {.lex_state = 117}, - [5307] = {.lex_state = 1032}, - [5308] = {.lex_state = 117}, - [5309] = {.lex_state = 117}, - [5310] = {.lex_state = 117}, - [5311] = {.lex_state = 117}, - [5312] = {.lex_state = 117}, - [5313] = {.lex_state = 117}, - [5314] = {.lex_state = 433}, - [5315] = {.lex_state = 48}, - [5316] = {.lex_state = 117}, - [5317] = {.lex_state = 117}, - [5318] = {.lex_state = 413}, - [5319] = {.lex_state = 426}, - [5320] = {.lex_state = 117}, - [5321] = {.lex_state = 410}, - [5322] = {.lex_state = 117}, - [5323] = {.lex_state = 117}, - [5324] = {.lex_state = 117}, - [5325] = {.lex_state = 117}, - [5326] = {.lex_state = 72}, - [5327] = {.lex_state = 117}, - [5328] = {.lex_state = 117}, - [5329] = {.lex_state = 460}, - [5330] = {.lex_state = 117}, - [5331] = {.lex_state = 117}, - [5332] = {.lex_state = 395}, - [5333] = {.lex_state = 117}, - [5334] = {.lex_state = 117}, - [5335] = {.lex_state = 117}, - [5336] = {.lex_state = 117}, - [5337] = {.lex_state = 117}, - [5338] = {.lex_state = 117}, - [5339] = {.lex_state = 446}, - [5340] = {.lex_state = 1028}, - [5341] = {.lex_state = 446}, - [5342] = {.lex_state = 80}, - [5343] = {.lex_state = 43}, - [5344] = {.lex_state = 117}, - [5345] = {.lex_state = 117}, - [5346] = {.lex_state = 459}, - [5347] = {.lex_state = 43}, - [5348] = {.lex_state = 117}, - [5349] = {.lex_state = 459}, - [5350] = {.lex_state = 117}, - [5351] = {.lex_state = 117}, - [5352] = {.lex_state = 117}, - [5353] = {.lex_state = 433}, - [5354] = {.lex_state = 459}, - [5355] = {.lex_state = 459}, - [5356] = {.lex_state = 117}, - [5357] = {.lex_state = 117}, - [5358] = {.lex_state = 117}, - [5359] = {.lex_state = 986}, - [5360] = {.lex_state = 80}, - [5361] = {.lex_state = 117}, - [5362] = {.lex_state = 459}, - [5363] = {.lex_state = 48}, - [5364] = {.lex_state = 117}, - [5365] = {.lex_state = 425}, - [5366] = {.lex_state = 986}, - [5367] = {.lex_state = 117}, - [5368] = {.lex_state = 117}, - [5369] = {.lex_state = 117}, - [5370] = {.lex_state = 117}, - [5371] = {.lex_state = 117}, - [5372] = {.lex_state = 117}, - [5373] = {.lex_state = 410}, - [5374] = {.lex_state = 456}, - [5375] = {.lex_state = 446}, - [5376] = {.lex_state = 466}, - [5377] = {.lex_state = 73}, - [5378] = {.lex_state = 117}, - [5379] = {.lex_state = 117}, - [5380] = {.lex_state = 117}, - [5381] = {.lex_state = 117}, - [5382] = {.lex_state = 117}, - [5383] = {.lex_state = 453}, - [5384] = {.lex_state = 117}, - [5385] = {.lex_state = 425}, - [5386] = {.lex_state = 117}, - [5387] = {.lex_state = 43}, - [5388] = {.lex_state = 446}, - [5389] = {.lex_state = 922}, - [5390] = {.lex_state = 922}, - [5391] = {.lex_state = 393}, - [5392] = {.lex_state = 427}, - [5393] = {.lex_state = 43}, - [5394] = {.lex_state = 461}, - [5395] = {.lex_state = 74}, - [5396] = {.lex_state = 43}, - [5397] = {.lex_state = 427}, - [5398] = {.lex_state = 81}, + [4939] = {.lex_state = 1027}, + [4940] = {.lex_state = 1027}, + [4941] = {.lex_state = 38}, + [4942] = {.lex_state = 38}, + [4943] = {.lex_state = 1027}, + [4944] = {.lex_state = 1027}, + [4945] = {.lex_state = 38}, + [4946] = {.lex_state = 38}, + [4947] = {.lex_state = 38}, + [4948] = {.lex_state = 38}, + [4949] = {.lex_state = 38}, + [4950] = {.lex_state = 952}, + [4951] = {.lex_state = 950}, + [4952] = {.lex_state = 64}, + [4953] = {.lex_state = 38}, + [4954] = {.lex_state = 952}, + [4955] = {.lex_state = 38}, + [4956] = {.lex_state = 958}, + [4957] = {.lex_state = 38}, + [4958] = {.lex_state = 958}, + [4959] = {.lex_state = 367}, + [4960] = {.lex_state = 38}, + [4961] = {.lex_state = 38}, + [4962] = {.lex_state = 38}, + [4963] = {.lex_state = 950}, + [4964] = {.lex_state = 952}, + [4965] = {.lex_state = 952}, + [4966] = {.lex_state = 38}, + [4967] = {.lex_state = 38}, + [4968] = {.lex_state = 952}, + [4969] = {.lex_state = 952}, + [4970] = {.lex_state = 38}, + [4971] = {.lex_state = 38}, + [4972] = {.lex_state = 38}, + [4973] = {.lex_state = 952}, + [4974] = {.lex_state = 38}, + [4975] = {.lex_state = 38}, + [4976] = {.lex_state = 982}, + [4977] = {.lex_state = 952}, + [4978] = {.lex_state = 372}, + [4979] = {.lex_state = 952}, + [4980] = {.lex_state = 952}, + [4981] = {.lex_state = 952}, + [4982] = {.lex_state = 952}, + [4983] = {.lex_state = 952}, + [4984] = {.lex_state = 952}, + [4985] = {.lex_state = 952}, + [4986] = {.lex_state = 952}, + [4987] = {.lex_state = 952}, + [4988] = {.lex_state = 952}, + [4989] = {.lex_state = 952}, + [4990] = {.lex_state = 1027}, + [4991] = {.lex_state = 952}, + [4992] = {.lex_state = 952}, + [4993] = {.lex_state = 952}, + [4994] = {.lex_state = 952}, + [4995] = {.lex_state = 952}, + [4996] = {.lex_state = 952}, + [4997] = {.lex_state = 952}, + [4998] = {.lex_state = 952}, + [4999] = {.lex_state = 952}, + [5000] = {.lex_state = 952}, + [5001] = {.lex_state = 952}, + [5002] = {.lex_state = 952}, + [5003] = {.lex_state = 952}, + [5004] = {.lex_state = 952}, + [5005] = {.lex_state = 958}, + [5006] = {.lex_state = 958}, + [5007] = {.lex_state = 958}, + [5008] = {.lex_state = 958}, + [5009] = {.lex_state = 958}, + [5010] = {.lex_state = 952}, + [5011] = {.lex_state = 952}, + [5012] = {.lex_state = 952}, + [5013] = {.lex_state = 958}, + [5014] = {.lex_state = 952}, + [5015] = {.lex_state = 952}, + [5016] = {.lex_state = 952}, + [5017] = {.lex_state = 952}, + [5018] = {.lex_state = 952}, + [5019] = {.lex_state = 952}, + [5020] = {.lex_state = 952}, + [5021] = {.lex_state = 952}, + [5022] = {.lex_state = 958}, + [5023] = {.lex_state = 952}, + [5024] = {.lex_state = 958}, + [5025] = {.lex_state = 952}, + [5026] = {.lex_state = 952}, + [5027] = {.lex_state = 958}, + [5028] = {.lex_state = 952}, + [5029] = {.lex_state = 952}, + [5030] = {.lex_state = 371}, + [5031] = {.lex_state = 952}, + [5032] = {.lex_state = 100}, + [5033] = {.lex_state = 100}, + [5034] = {.lex_state = 383}, + [5035] = {.lex_state = 952}, + [5036] = {.lex_state = 952}, + [5037] = {.lex_state = 952}, + [5038] = {.lex_state = 952}, + [5039] = {.lex_state = 952}, + [5040] = {.lex_state = 952}, + [5041] = {.lex_state = 952}, + [5042] = {.lex_state = 952}, + [5043] = {.lex_state = 952}, + [5044] = {.lex_state = 952}, + [5045] = {.lex_state = 982}, + [5046] = {.lex_state = 982}, + [5047] = {.lex_state = 952}, + [5048] = {.lex_state = 952}, + [5049] = {.lex_state = 952}, + [5050] = {.lex_state = 952}, + [5051] = {.lex_state = 952}, + [5052] = {.lex_state = 952}, + [5053] = {.lex_state = 952}, + [5054] = {.lex_state = 952}, + [5055] = {.lex_state = 38}, + [5056] = {.lex_state = 38}, + [5057] = {.lex_state = 952}, + [5058] = {.lex_state = 363}, + [5059] = {.lex_state = 38}, + [5060] = {.lex_state = 982}, + [5061] = {.lex_state = 958}, + [5062] = {.lex_state = 958}, + [5063] = {.lex_state = 958}, + [5064] = {.lex_state = 958}, + [5065] = {.lex_state = 958}, + [5066] = {.lex_state = 958}, + [5067] = {.lex_state = 926}, + [5068] = {.lex_state = 958}, + [5069] = {.lex_state = 958}, + [5070] = {.lex_state = 381}, + [5071] = {.lex_state = 364}, + [5072] = {.lex_state = 958}, + [5073] = {.lex_state = 958}, + [5074] = {.lex_state = 958}, + [5075] = {.lex_state = 38}, + [5076] = {.lex_state = 38}, + [5077] = {.lex_state = 38}, + [5078] = {.lex_state = 38}, + [5079] = {.lex_state = 38}, + [5080] = {.lex_state = 4413}, + [5081] = {.lex_state = 38}, + [5082] = {.lex_state = 38}, + [5083] = {.lex_state = 364}, + [5084] = {.lex_state = 958}, + [5085] = {.lex_state = 958}, + [5086] = {.lex_state = 4413}, + [5087] = {.lex_state = 958}, + [5088] = {.lex_state = 38}, + [5089] = {.lex_state = 958}, + [5090] = {.lex_state = 369}, + [5091] = {.lex_state = 38}, + [5092] = {.lex_state = 958}, + [5093] = {.lex_state = 926}, + [5094] = {.lex_state = 958}, + [5095] = {.lex_state = 38}, + [5096] = {.lex_state = 958}, + [5097] = {.lex_state = 958}, + [5098] = {.lex_state = 958}, + [5099] = {.lex_state = 1027}, + [5100] = {.lex_state = 958}, + [5101] = {.lex_state = 958}, + [5102] = {.lex_state = 958}, + [5103] = {.lex_state = 958}, + [5104] = {.lex_state = 958}, + [5105] = {.lex_state = 958}, + [5106] = {.lex_state = 926}, + [5107] = {.lex_state = 926}, + [5108] = {.lex_state = 958}, + [5109] = {.lex_state = 958}, + [5110] = {.lex_state = 958}, + [5111] = {.lex_state = 38}, + [5112] = {.lex_state = 370}, + [5113] = {.lex_state = 958}, + [5114] = {.lex_state = 958}, + [5115] = {.lex_state = 68}, + [5116] = {.lex_state = 38}, + [5117] = {.lex_state = 958}, + [5118] = {.lex_state = 958}, + [5119] = {.lex_state = 958}, + [5120] = {.lex_state = 38}, + [5121] = {.lex_state = 958}, + [5122] = {.lex_state = 958}, + [5123] = {.lex_state = 958}, + [5124] = {.lex_state = 958}, + [5125] = {.lex_state = 958}, + [5126] = {.lex_state = 958}, + [5127] = {.lex_state = 958}, + [5128] = {.lex_state = 371}, + [5129] = {.lex_state = 958}, + [5130] = {.lex_state = 958}, + [5131] = {.lex_state = 371}, + [5132] = {.lex_state = 958}, + [5133] = {.lex_state = 958}, + [5134] = {.lex_state = 958}, + [5135] = {.lex_state = 958}, + [5136] = {.lex_state = 958}, + [5137] = {.lex_state = 958}, + [5138] = {.lex_state = 958}, + [5139] = {.lex_state = 1027}, + [5140] = {.lex_state = 958}, + [5141] = {.lex_state = 958}, + [5142] = {.lex_state = 958}, + [5143] = {.lex_state = 370}, + [5144] = {.lex_state = 958}, + [5145] = {.lex_state = 958}, + [5146] = {.lex_state = 958}, + [5147] = {.lex_state = 958}, + [5148] = {.lex_state = 1027}, + [5149] = {.lex_state = 371}, + [5150] = {.lex_state = 38}, + [5151] = {.lex_state = 1027}, + [5152] = {.lex_state = 1027}, + [5153] = {.lex_state = 38}, + [5154] = {.lex_state = 958}, + [5155] = {.lex_state = 958}, + [5156] = {.lex_state = 38}, + [5157] = {.lex_state = 38}, + [5158] = {.lex_state = 68}, + [5159] = {.lex_state = 38}, + [5160] = {.lex_state = 38}, + [5161] = {.lex_state = 38}, + [5162] = {.lex_state = 958}, + [5163] = {.lex_state = 38}, + [5164] = {.lex_state = 38}, + [5165] = {.lex_state = 958}, + [5166] = {.lex_state = 38}, + [5167] = {.lex_state = 38}, + [5168] = {.lex_state = 38}, + [5169] = {.lex_state = 38}, + [5170] = {.lex_state = 958}, + [5171] = {.lex_state = 4413}, + [5172] = {.lex_state = 38}, + [5173] = {.lex_state = 375}, + [5174] = {.lex_state = 38}, + [5175] = {.lex_state = 958}, + [5176] = {.lex_state = 377}, + [5177] = {.lex_state = 958}, + [5178] = {.lex_state = 958}, + [5179] = {.lex_state = 958}, + [5180] = {.lex_state = 958}, + [5181] = {.lex_state = 369}, + [5182] = {.lex_state = 4413}, + [5183] = {.lex_state = 368}, + [5184] = {.lex_state = 958}, + [5185] = {.lex_state = 958}, + [5186] = {.lex_state = 958}, + [5187] = {.lex_state = 4413}, + [5188] = {.lex_state = 958}, + [5189] = {.lex_state = 958}, + [5190] = {.lex_state = 68}, + [5191] = {.lex_state = 958}, + [5192] = {.lex_state = 371}, + [5193] = {.lex_state = 68}, + [5194] = {.lex_state = 958}, + [5195] = {.lex_state = 926}, + [5196] = {.lex_state = 926}, + [5197] = {.lex_state = 38}, + [5198] = {.lex_state = 38}, + [5199] = {.lex_state = 68}, + [5200] = {.lex_state = 38}, + [5201] = {.lex_state = 412}, + [5202] = {.lex_state = 982}, + [5203] = {.lex_state = 38}, + [5204] = {.lex_state = 982}, + [5205] = {.lex_state = 982}, + [5206] = {.lex_state = 982}, + [5207] = {.lex_state = 982}, + [5208] = {.lex_state = 982}, + [5209] = {.lex_state = 38}, + [5210] = {.lex_state = 38}, + [5211] = {.lex_state = 982}, + [5212] = {.lex_state = 376}, + [5213] = {.lex_state = 38}, + [5214] = {.lex_state = 958}, + [5215] = {.lex_state = 120}, + [5216] = {.lex_state = 120}, + [5217] = {.lex_state = 120}, + [5218] = {.lex_state = 120}, + [5219] = {.lex_state = 431}, + [5220] = {.lex_state = 958}, + [5221] = {.lex_state = 371}, + [5222] = {.lex_state = 982}, + [5223] = {.lex_state = 454}, + [5224] = {.lex_state = 68}, + [5225] = {.lex_state = 383}, + [5226] = {.lex_state = 68}, + [5227] = {.lex_state = 378}, + [5228] = {.lex_state = 371}, + [5229] = {.lex_state = 373}, + [5230] = {.lex_state = 459}, + [5231] = {.lex_state = 38}, + [5232] = {.lex_state = 38}, + [5233] = {.lex_state = 38}, + [5234] = {.lex_state = 383}, + [5235] = {.lex_state = 982}, + [5236] = {.lex_state = 38}, + [5237] = {.lex_state = 982}, + [5238] = {.lex_state = 378}, + [5239] = {.lex_state = 432}, + [5240] = {.lex_state = 926}, + [5241] = {.lex_state = 373}, + [5242] = {.lex_state = 982}, + [5243] = {.lex_state = 926}, + [5244] = {.lex_state = 432}, + [5245] = {.lex_state = 371}, + [5246] = {.lex_state = 373}, + [5247] = {.lex_state = 38}, + [5248] = {.lex_state = 449}, + [5249] = {.lex_state = 38}, + [5250] = {.lex_state = 38}, + [5251] = {.lex_state = 382}, + [5252] = {.lex_state = 365}, + [5253] = {.lex_state = 373}, + [5254] = {.lex_state = 926}, + [5255] = {.lex_state = 72}, + [5256] = {.lex_state = 413}, + [5257] = {.lex_state = 373}, + [5258] = {.lex_state = 982}, + [5259] = {.lex_state = 926}, + [5260] = {.lex_state = 72}, + [5261] = {.lex_state = 365}, + [5262] = {.lex_state = 982}, + [5263] = {.lex_state = 425}, + [5264] = {.lex_state = 373}, + [5265] = {.lex_state = 958}, + [5266] = {.lex_state = 982}, + [5267] = {.lex_state = 982}, + [5268] = {.lex_state = 373}, + [5269] = {.lex_state = 382}, + [5270] = {.lex_state = 982}, + [5271] = {.lex_state = 926}, + [5272] = {.lex_state = 447}, + [5273] = {.lex_state = 103}, + [5274] = {.lex_state = 926}, + [5275] = {.lex_state = 38}, + [5276] = {.lex_state = 4412}, + [5277] = {.lex_state = 4412}, + [5278] = {.lex_state = 926}, + [5279] = {.lex_state = 3994}, + [5280] = {.lex_state = 926}, + [5281] = {.lex_state = 38, .external_lex_state = 2}, + [5282] = {.lex_state = 433}, + [5283] = {.lex_state = 3994}, + [5284] = {.lex_state = 3994}, + [5285] = {.lex_state = 412}, + [5286] = {.lex_state = 450}, + [5287] = {.lex_state = 926}, + [5288] = {.lex_state = 433}, + [5289] = {.lex_state = 450}, + [5290] = {.lex_state = 59}, + [5291] = {.lex_state = 4412}, + [5292] = {.lex_state = 4592}, + [5293] = {.lex_state = 4592}, + [5294] = {.lex_state = 38, .external_lex_state = 2}, + [5295] = {.lex_state = 79}, + [5296] = {.lex_state = 434}, + [5297] = {.lex_state = 433}, + [5298] = {.lex_state = 80}, + [5299] = {.lex_state = 380}, + [5300] = {.lex_state = 59}, + [5301] = {.lex_state = 38, .external_lex_state = 2}, + [5302] = {.lex_state = 38, .external_lex_state = 2}, + [5303] = {.lex_state = 433}, + [5304] = {.lex_state = 926}, + [5305] = {.lex_state = 4412}, + [5306] = {.lex_state = 38, .external_lex_state = 2}, + [5307] = {.lex_state = 103}, + [5308] = {.lex_state = 103}, + [5309] = {.lex_state = 38}, + [5310] = {.lex_state = 4412}, + [5311] = {.lex_state = 3994}, + [5312] = {.lex_state = 3994}, + [5313] = {.lex_state = 414}, + [5314] = {.lex_state = 3994}, + [5315] = {.lex_state = 3994}, + [5316] = {.lex_state = 380}, + [5317] = {.lex_state = 394}, + [5318] = {.lex_state = 4592}, + [5319] = {.lex_state = 4592}, + [5320] = {.lex_state = 38, .external_lex_state = 2}, + [5321] = {.lex_state = 396}, + [5322] = {.lex_state = 38}, + [5323] = {.lex_state = 412}, + [5324] = {.lex_state = 38, .external_lex_state = 2}, + [5325] = {.lex_state = 3994}, + [5326] = {.lex_state = 3994}, + [5327] = {.lex_state = 4412}, + [5328] = {.lex_state = 4412}, + [5329] = {.lex_state = 383}, + [5330] = {.lex_state = 3994}, + [5331] = {.lex_state = 3994}, + [5332] = {.lex_state = 38, .external_lex_state = 2}, + [5333] = {.lex_state = 380}, + [5334] = {.lex_state = 38, .external_lex_state = 2}, + [5335] = {.lex_state = 3994}, + [5336] = {.lex_state = 3994}, + [5337] = {.lex_state = 3994}, + [5338] = {.lex_state = 3994}, + [5339] = {.lex_state = 433}, + [5340] = {.lex_state = 379}, + [5341] = {.lex_state = 412}, + [5342] = {.lex_state = 379}, + [5343] = {.lex_state = 380}, + [5344] = {.lex_state = 379}, + [5345] = {.lex_state = 38}, + [5346] = {.lex_state = 379}, + [5347] = {.lex_state = 380}, + [5348] = {.lex_state = 383}, + [5349] = {.lex_state = 460}, + [5350] = {.lex_state = 38}, + [5351] = {.lex_state = 4592}, + [5352] = {.lex_state = 4592}, + [5353] = {.lex_state = 460}, + [5354] = {.lex_state = 379}, + [5355] = {.lex_state = 427}, + [5356] = {.lex_state = 3994}, + [5357] = {.lex_state = 3994}, + [5358] = {.lex_state = 426}, + [5359] = {.lex_state = 120}, + [5360] = {.lex_state = 120}, + [5361] = {.lex_state = 38}, + [5362] = {.lex_state = 426}, + [5363] = {.lex_state = 3994}, + [5364] = {.lex_state = 120}, + [5365] = {.lex_state = 120}, + [5366] = {.lex_state = 120}, + [5367] = {.lex_state = 120}, + [5368] = {.lex_state = 120}, + [5369] = {.lex_state = 120}, + [5370] = {.lex_state = 415}, + [5371] = {.lex_state = 38, .external_lex_state = 2}, + [5372] = {.lex_state = 120}, + [5373] = {.lex_state = 120}, + [5374] = {.lex_state = 38, .external_lex_state = 2}, + [5375] = {.lex_state = 81}, + [5376] = {.lex_state = 458}, + [5377] = {.lex_state = 120}, + [5378] = {.lex_state = 448}, + [5379] = {.lex_state = 1028}, + [5380] = {.lex_state = 120}, + [5381] = {.lex_state = 120}, + [5382] = {.lex_state = 120}, + [5383] = {.lex_state = 120}, + [5384] = {.lex_state = 120}, + [5385] = {.lex_state = 120}, + [5386] = {.lex_state = 448}, + [5387] = {.lex_state = 120}, + [5388] = {.lex_state = 120}, + [5389] = {.lex_state = 69}, + [5390] = {.lex_state = 120}, + [5391] = {.lex_state = 448}, + [5392] = {.lex_state = 120}, + [5393] = {.lex_state = 448}, + [5394] = {.lex_state = 120}, + [5395] = {.lex_state = 461}, + [5396] = {.lex_state = 120}, + [5397] = {.lex_state = 120}, + [5398] = {.lex_state = 120}, [5399] = {.lex_state = 1032}, - [5400] = {.lex_state = 43}, - [5401] = {.lex_state = 434}, - [5402] = {.lex_state = 393}, - [5403] = {.lex_state = 43}, - [5404] = {.lex_state = 922}, - [5405] = {.lex_state = 43}, - [5406] = {.lex_state = 48}, - [5407] = {.lex_state = 434}, - [5408] = {.lex_state = 462}, - [5409] = {.lex_state = 393}, - [5410] = {.lex_state = 48}, - [5411] = {.lex_state = 48}, - [5412] = {.lex_state = 1027}, - [5413] = {.lex_state = 455}, - [5414] = {.lex_state = 74}, - [5415] = {.lex_state = 454}, - [5416] = {.lex_state = 455}, - [5417] = {.lex_state = 455}, - [5418] = {.lex_state = 1052}, - [5419] = {.lex_state = 101}, - [5420] = {.lex_state = 101}, - [5421] = {.lex_state = 101}, - [5422] = {.lex_state = 101}, - [5423] = {.lex_state = 101}, - [5424] = {.lex_state = 101}, - [5425] = {.lex_state = 101}, - [5426] = {.lex_state = 101}, - [5427] = {.lex_state = 101}, - [5428] = {.lex_state = 101}, - [5429] = {.lex_state = 101}, - [5430] = {.lex_state = 101}, - [5431] = {.lex_state = 101}, - [5432] = {.lex_state = 101}, - [5433] = {.lex_state = 101}, - [5434] = {.lex_state = 101}, - [5435] = {.lex_state = 101}, - [5436] = {.lex_state = 101}, - [5437] = {.lex_state = 81}, - [5438] = {.lex_state = 416}, - [5439] = {.lex_state = 1027}, - [5440] = {.lex_state = 922}, - [5441] = {.lex_state = 1027}, - [5442] = {.lex_state = 99}, - [5443] = {.lex_state = 922}, - [5444] = {.lex_state = 922}, - [5445] = {.lex_state = 922}, - [5446] = {.lex_state = 922}, - [5447] = {.lex_state = 922}, - [5448] = {.lex_state = 922}, - [5449] = {.lex_state = 922}, - [5450] = {.lex_state = 922}, - [5451] = {.lex_state = 922}, - [5452] = {.lex_state = 922}, - [5453] = {.lex_state = 48}, - [5454] = {.lex_state = 922}, - [5455] = {.lex_state = 922}, - [5456] = {.lex_state = 43}, - [5457] = {.lex_state = 922}, - [5458] = {.lex_state = 922}, - [5459] = {.lex_state = 922}, - [5460] = {.lex_state = 922}, - [5461] = {.lex_state = 922}, - [5462] = {.lex_state = 922}, - [5463] = {.lex_state = 922}, - [5464] = {.lex_state = 1052}, - [5465] = {.lex_state = 922}, - [5466] = {.lex_state = 43}, - [5467] = {.lex_state = 48}, - [5468] = {.lex_state = 922}, - [5469] = {.lex_state = 922}, - [5470] = {.lex_state = 987}, - [5471] = {.lex_state = 455}, - [5472] = {.lex_state = 48}, - [5473] = {.lex_state = 1030}, - [5474] = {.lex_state = 81}, - [5475] = {.lex_state = 43}, - [5476] = {.lex_state = 1029}, - [5477] = {.lex_state = 43}, - [5478] = {.lex_state = 393}, - [5479] = {.lex_state = 1029}, - [5480] = {.lex_state = 43}, - [5481] = {.lex_state = 81}, - [5482] = {.lex_state = 81}, - [5483] = {.lex_state = 1052}, - [5484] = {.lex_state = 99}, - [5485] = {.lex_state = 922}, - [5486] = {.lex_state = 99}, - [5487] = {.lex_state = 922}, - [5488] = {.lex_state = 48}, - [5489] = {.lex_state = 48}, - [5490] = {.lex_state = 434}, - [5491] = {.lex_state = 48}, - [5492] = {.lex_state = 48}, - [5493] = {.lex_state = 48}, - [5494] = {.lex_state = 48}, - [5495] = {.lex_state = 922}, - [5496] = {.lex_state = 922}, - [5497] = {.lex_state = 48}, - [5498] = {.lex_state = 48}, - [5499] = {.lex_state = 48}, - [5500] = {.lex_state = 48}, - [5501] = {.lex_state = 48}, - [5502] = {.lex_state = 48}, - [5503] = {.lex_state = 48}, - [5504] = {.lex_state = 434}, - [5505] = {.lex_state = 48}, - [5506] = {.lex_state = 48}, - [5507] = {.lex_state = 48}, - [5508] = {.lex_state = 467}, - [5509] = {.lex_state = 48}, - [5510] = {.lex_state = 1052}, - [5511] = {.lex_state = 462}, - [5512] = {.lex_state = 1052}, - [5513] = {.lex_state = 48}, - [5514] = {.lex_state = 467}, - [5515] = {.lex_state = 48}, - [5516] = {.lex_state = 1027}, - [5517] = {.lex_state = 48}, - [5518] = {.lex_state = 1028}, - [5519] = {.lex_state = 455}, - [5520] = {.lex_state = 43}, - [5521] = {.lex_state = 393}, - [5522] = {.lex_state = 922}, - [5523] = {.lex_state = 922}, - [5524] = {.lex_state = 99}, - [5525] = {.lex_state = 420}, - [5526] = {.lex_state = 420}, - [5527] = {.lex_state = 420}, - [5528] = {.lex_state = 76}, - [5529] = {.lex_state = 420}, - [5530] = {.lex_state = 468}, - [5531] = {.lex_state = 428}, - [5532] = {.lex_state = 43}, - [5533] = {.lex_state = 428}, - [5534] = {.lex_state = 464}, - [5535] = {.lex_state = 1030}, - [5536] = {.lex_state = 95}, - [5537] = {.lex_state = 922}, - [5538] = {.lex_state = 428}, - [5539] = {.lex_state = 444}, - [5540] = {.lex_state = 1052}, - [5541] = {.lex_state = 922}, - [5542] = {.lex_state = 463}, - [5543] = {.lex_state = 95}, - [5544] = {.lex_state = 43}, - [5545] = {.lex_state = 420}, - [5546] = {.lex_state = 101}, - [5547] = {.lex_state = 922}, - [5548] = {.lex_state = 922}, - [5549] = {.lex_state = 420}, - [5550] = {.lex_state = 43}, - [5551] = {.lex_state = 922}, - [5552] = {.lex_state = 444}, - [5553] = {.lex_state = 420}, - [5554] = {.lex_state = 922}, - [5555] = {.lex_state = 101}, - [5556] = {.lex_state = 101}, - [5557] = {.lex_state = 75}, - [5558] = {.lex_state = 410}, - [5559] = {.lex_state = 922}, - [5560] = {.lex_state = 420}, - [5561] = {.lex_state = 922}, - [5562] = {.lex_state = 336}, - [5563] = {.lex_state = 420}, - [5564] = {.lex_state = 987}, - [5565] = {.lex_state = 463}, - [5566] = {.lex_state = 922}, - [5567] = {.lex_state = 420}, - [5568] = {.lex_state = 420}, - [5569] = {.lex_state = 420}, - [5570] = {.lex_state = 463}, - [5571] = {.lex_state = 463}, - [5572] = {.lex_state = 922}, - [5573] = {.lex_state = 420}, - [5574] = {.lex_state = 922}, + [5400] = {.lex_state = 120}, + [5401] = {.lex_state = 120}, + [5402] = {.lex_state = 428}, + [5403] = {.lex_state = 120}, + [5404] = {.lex_state = 59}, + [5405] = {.lex_state = 59}, + [5406] = {.lex_state = 120}, + [5407] = {.lex_state = 120}, + [5408] = {.lex_state = 120}, + [5409] = {.lex_state = 120}, + [5410] = {.lex_state = 448}, + [5411] = {.lex_state = 120}, + [5412] = {.lex_state = 38}, + [5413] = {.lex_state = 397}, + [5414] = {.lex_state = 461}, + [5415] = {.lex_state = 120}, + [5416] = {.lex_state = 69}, + [5417] = {.lex_state = 120}, + [5418] = {.lex_state = 461}, + [5419] = {.lex_state = 120}, + [5420] = {.lex_state = 120}, + [5421] = {.lex_state = 435}, + [5422] = {.lex_state = 120}, + [5423] = {.lex_state = 461}, + [5424] = {.lex_state = 38, .external_lex_state = 2}, + [5425] = {.lex_state = 38, .external_lex_state = 2}, + [5426] = {.lex_state = 120}, + [5427] = {.lex_state = 120}, + [5428] = {.lex_state = 462}, + [5429] = {.lex_state = 397}, + [5430] = {.lex_state = 461}, + [5431] = {.lex_state = 81}, + [5432] = {.lex_state = 120}, + [5433] = {.lex_state = 120}, + [5434] = {.lex_state = 120}, + [5435] = {.lex_state = 427}, + [5436] = {.lex_state = 120}, + [5437] = {.lex_state = 435}, + [5438] = {.lex_state = 455}, + [5439] = {.lex_state = 468}, + [5440] = {.lex_state = 120}, + [5441] = {.lex_state = 412}, + [5442] = {.lex_state = 120}, + [5443] = {.lex_state = 120}, + [5444] = {.lex_state = 120}, + [5445] = {.lex_state = 427}, + [5446] = {.lex_state = 120}, + [5447] = {.lex_state = 73}, + [5448] = {.lex_state = 427}, + [5449] = {.lex_state = 38}, + [5450] = {.lex_state = 427}, + [5451] = {.lex_state = 38}, + [5452] = {.lex_state = 412}, + [5453] = {.lex_state = 120}, + [5454] = {.lex_state = 120}, + [5455] = {.lex_state = 74}, + [5456] = {.lex_state = 120}, + [5457] = {.lex_state = 120}, + [5458] = {.lex_state = 38, .external_lex_state = 2}, + [5459] = {.lex_state = 68}, + [5460] = {.lex_state = 68}, + [5461] = {.lex_state = 68}, + [5462] = {.lex_state = 68}, + [5463] = {.lex_state = 68}, + [5464] = {.lex_state = 68}, + [5465] = {.lex_state = 68}, + [5466] = {.lex_state = 68}, + [5467] = {.lex_state = 68}, + [5468] = {.lex_state = 436}, + [5469] = {.lex_state = 457}, + [5470] = {.lex_state = 457}, + [5471] = {.lex_state = 38, .external_lex_state = 2}, + [5472] = {.lex_state = 59}, + [5473] = {.lex_state = 102}, + [5474] = {.lex_state = 991}, + [5475] = {.lex_state = 59}, + [5476] = {.lex_state = 991}, + [5477] = {.lex_state = 353, .external_lex_state = 2}, + [5478] = {.lex_state = 59}, + [5479] = {.lex_state = 353, .external_lex_state = 2}, + [5480] = {.lex_state = 68}, + [5481] = {.lex_state = 68}, + [5482] = {.lex_state = 59}, + [5483] = {.lex_state = 59}, + [5484] = {.lex_state = 59}, + [5485] = {.lex_state = 353, .external_lex_state = 2}, + [5486] = {.lex_state = 59}, + [5487] = {.lex_state = 59}, + [5488] = {.lex_state = 59}, + [5489] = {.lex_state = 59}, + [5490] = {.lex_state = 353, .external_lex_state = 2}, + [5491] = {.lex_state = 59}, + [5492] = {.lex_state = 59}, + [5493] = {.lex_state = 59}, + [5494] = {.lex_state = 926}, + [5495] = {.lex_state = 353, .external_lex_state = 2}, + [5496] = {.lex_state = 59}, + [5497] = {.lex_state = 59}, + [5498] = {.lex_state = 59}, + [5499] = {.lex_state = 59}, + [5500] = {.lex_state = 353, .external_lex_state = 2}, + [5501] = {.lex_state = 59}, + [5502] = {.lex_state = 926}, + [5503] = {.lex_state = 59}, + [5504] = {.lex_state = 926}, + [5505] = {.lex_state = 59}, + [5506] = {.lex_state = 353, .external_lex_state = 2}, + [5507] = {.lex_state = 353, .external_lex_state = 2}, + [5508] = {.lex_state = 38}, + [5509] = {.lex_state = 75}, + [5510] = {.lex_state = 926}, + [5511] = {.lex_state = 429}, + [5512] = {.lex_state = 353, .external_lex_state = 2}, + [5513] = {.lex_state = 457}, + [5514] = {.lex_state = 457}, + [5515] = {.lex_state = 82}, + [5516] = {.lex_state = 353, .external_lex_state = 2}, + [5517] = {.lex_state = 991}, + [5518] = {.lex_state = 988}, + [5519] = {.lex_state = 59}, + [5520] = {.lex_state = 353, .external_lex_state = 2}, + [5521] = {.lex_state = 457}, + [5522] = {.lex_state = 38}, + [5523] = {.lex_state = 469}, + [5524] = {.lex_state = 353, .external_lex_state = 2}, + [5525] = {.lex_state = 1032}, + [5526] = {.lex_state = 429}, + [5527] = {.lex_state = 353, .external_lex_state = 2}, + [5528] = {.lex_state = 436}, + [5529] = {.lex_state = 463}, + [5530] = {.lex_state = 353, .external_lex_state = 2}, + [5531] = {.lex_state = 353, .external_lex_state = 2}, + [5532] = {.lex_state = 926}, + [5533] = {.lex_state = 353, .external_lex_state = 2}, + [5534] = {.lex_state = 353, .external_lex_state = 2}, + [5535] = {.lex_state = 456}, + [5536] = {.lex_state = 353, .external_lex_state = 2}, + [5537] = {.lex_state = 353, .external_lex_state = 2}, + [5538] = {.lex_state = 353, .external_lex_state = 2}, + [5539] = {.lex_state = 353, .external_lex_state = 2}, + [5540] = {.lex_state = 353, .external_lex_state = 2}, + [5541] = {.lex_state = 353, .external_lex_state = 2}, + [5542] = {.lex_state = 353, .external_lex_state = 2}, + [5543] = {.lex_state = 353, .external_lex_state = 2}, + [5544] = {.lex_state = 353, .external_lex_state = 2}, + [5545] = {.lex_state = 353, .external_lex_state = 2}, + [5546] = {.lex_state = 353, .external_lex_state = 2}, + [5547] = {.lex_state = 353, .external_lex_state = 2}, + [5548] = {.lex_state = 353, .external_lex_state = 2}, + [5549] = {.lex_state = 353, .external_lex_state = 2}, + [5550] = {.lex_state = 1028}, + [5551] = {.lex_state = 353, .external_lex_state = 2}, + [5552] = {.lex_state = 353, .external_lex_state = 2}, + [5553] = {.lex_state = 353, .external_lex_state = 2}, + [5554] = {.lex_state = 353, .external_lex_state = 2}, + [5555] = {.lex_state = 353, .external_lex_state = 2}, + [5556] = {.lex_state = 353, .external_lex_state = 2}, + [5557] = {.lex_state = 353, .external_lex_state = 2}, + [5558] = {.lex_state = 353, .external_lex_state = 2}, + [5559] = {.lex_state = 353, .external_lex_state = 2}, + [5560] = {.lex_state = 353, .external_lex_state = 2}, + [5561] = {.lex_state = 1052}, + [5562] = {.lex_state = 395}, + [5563] = {.lex_state = 38, .external_lex_state = 2}, + [5564] = {.lex_state = 82}, + [5565] = {.lex_state = 1030}, + [5566] = {.lex_state = 59}, + [5567] = {.lex_state = 59}, + [5568] = {.lex_state = 991}, + [5569] = {.lex_state = 395}, + [5570] = {.lex_state = 1052}, + [5571] = {.lex_state = 464}, + [5572] = {.lex_state = 38, .external_lex_state = 2}, + [5573] = {.lex_state = 395}, + [5574] = {.lex_state = 38, .external_lex_state = 2}, [5575] = {.lex_state = 1052}, - [5576] = {.lex_state = 474}, - [5577] = {.lex_state = 420}, - [5578] = {.lex_state = 101}, - [5579] = {.lex_state = 434}, - [5580] = {.lex_state = 1029}, - [5581] = {.lex_state = 410}, - [5582] = {.lex_state = 922}, - [5583] = {.lex_state = 410}, - [5584] = {.lex_state = 420}, - [5585] = {.lex_state = 43}, - [5586] = {.lex_state = 410}, - [5587] = {.lex_state = 420}, - [5588] = {.lex_state = 922}, - [5589] = {.lex_state = 922}, - [5590] = {.lex_state = 420}, - [5591] = {.lex_state = 1029}, - [5592] = {.lex_state = 428}, - [5593] = {.lex_state = 43}, - [5594] = {.lex_state = 1052}, - [5595] = {.lex_state = 1052}, - [5596] = {.lex_state = 474}, - [5597] = {.lex_state = 43}, - [5598] = {.lex_state = 101}, - [5599] = {.lex_state = 420}, - [5600] = {.lex_state = 463}, - [5601] = {.lex_state = 420}, - [5602] = {.lex_state = 1052}, - [5603] = {.lex_state = 468}, - [5604] = {.lex_state = 130}, - [5605] = {.lex_state = 75}, - [5606] = {.lex_state = 420}, - [5607] = {.lex_state = 922}, - [5608] = {.lex_state = 336}, - [5609] = {.lex_state = 428}, - [5610] = {.lex_state = 468}, - [5611] = {.lex_state = 43}, - [5612] = {.lex_state = 434}, - [5613] = {.lex_state = 420}, - [5614] = {.lex_state = 468}, - [5615] = {.lex_state = 922}, - [5616] = {.lex_state = 336}, - [5617] = {.lex_state = 468}, - [5618] = {.lex_state = 75}, - [5619] = {.lex_state = 463}, - [5620] = {.lex_state = 922}, - [5621] = {.lex_state = 922}, - [5622] = {.lex_state = 922}, - [5623] = {.lex_state = 420}, - [5624] = {.lex_state = 428}, - [5625] = {.lex_state = 420}, - [5626] = {.lex_state = 420}, - [5627] = {.lex_state = 75}, - [5628] = {.lex_state = 420}, - [5629] = {.lex_state = 130}, - [5630] = {.lex_state = 464}, - [5631] = {.lex_state = 43}, - [5632] = {.lex_state = 420}, - [5633] = {.lex_state = 99}, - [5634] = {.lex_state = 922}, - [5635] = {.lex_state = 444}, - [5636] = {.lex_state = 465}, - [5637] = {.lex_state = 4004}, - [5638] = {.lex_state = 4004}, - [5639] = {.lex_state = 465}, - [5640] = {.lex_state = 505}, - [5641] = {.lex_state = 465}, - [5642] = {.lex_state = 948}, - [5643] = {.lex_state = 444}, - [5644] = {.lex_state = 410}, - [5645] = {.lex_state = 410}, - [5646] = {.lex_state = 410}, - [5647] = {.lex_state = 922}, - [5648] = {.lex_state = 948}, - [5649] = {.lex_state = 948}, - [5650] = {.lex_state = 948}, - [5651] = {.lex_state = 465}, - [5652] = {.lex_state = 4004}, - [5653] = {.lex_state = 505}, - [5654] = {.lex_state = 4004}, - [5655] = {.lex_state = 465}, - [5656] = {.lex_state = 130}, - [5657] = {.lex_state = 948}, - [5658] = {.lex_state = 948}, - [5659] = {.lex_state = 948}, - [5660] = {.lex_state = 948}, - [5661] = {.lex_state = 948}, - [5662] = {.lex_state = 922}, - [5663] = {.lex_state = 473}, - [5664] = {.lex_state = 410}, - [5665] = {.lex_state = 353}, - [5666] = {.lex_state = 469}, - [5667] = {.lex_state = 100}, - [5668] = {.lex_state = 100}, - [5669] = {.lex_state = 353}, - [5670] = {.lex_state = 485}, - [5671] = {.lex_state = 420}, - [5672] = {.lex_state = 362}, - [5673] = {.lex_state = 420}, - [5674] = {.lex_state = 948}, - [5675] = {.lex_state = 362}, - [5676] = {.lex_state = 390}, - [5677] = {.lex_state = 4004}, - [5678] = {.lex_state = 4004}, - [5679] = {.lex_state = 362}, - [5680] = {.lex_state = 948}, - [5681] = {.lex_state = 948}, - [5682] = {.lex_state = 922}, - [5683] = {.lex_state = 948}, - [5684] = {.lex_state = 4004}, - [5685] = {.lex_state = 4004}, - [5686] = {.lex_state = 948}, - [5687] = {.lex_state = 410}, - [5688] = {.lex_state = 420}, - [5689] = {.lex_state = 948}, - [5690] = {.lex_state = 948}, - [5691] = {.lex_state = 948}, - [5692] = {.lex_state = 420}, - [5693] = {.lex_state = 435}, - [5694] = {.lex_state = 948}, - [5695] = {.lex_state = 476}, - [5696] = {.lex_state = 922}, - [5697] = {.lex_state = 439}, - [5698] = {.lex_state = 410}, - [5699] = {.lex_state = 420}, - [5700] = {.lex_state = 987}, - [5701] = {.lex_state = 948}, - [5702] = {.lex_state = 948}, - [5703] = {.lex_state = 353}, - [5704] = {.lex_state = 948}, - [5705] = {.lex_state = 465}, - [5706] = {.lex_state = 420}, - [5707] = {.lex_state = 362}, - [5708] = {.lex_state = 4004}, - [5709] = {.lex_state = 4004}, - [5710] = {.lex_state = 362}, - [5711] = {.lex_state = 948}, - [5712] = {.lex_state = 948}, - [5713] = {.lex_state = 922}, - [5714] = {.lex_state = 948}, - [5715] = {.lex_state = 948}, - [5716] = {.lex_state = 470}, - [5717] = {.lex_state = 353}, - [5718] = {.lex_state = 922}, - [5719] = {.lex_state = 410}, - [5720] = {.lex_state = 922}, - [5721] = {.lex_state = 922}, - [5722] = {.lex_state = 362}, - [5723] = {.lex_state = 4004}, - [5724] = {.lex_state = 4004}, - [5725] = {.lex_state = 383}, - [5726] = {.lex_state = 362}, - [5727] = {.lex_state = 948}, - [5728] = {.lex_state = 353}, - [5729] = {.lex_state = 948}, - [5730] = {.lex_state = 353}, - [5731] = {.lex_state = 336}, - [5732] = {.lex_state = 362}, - [5733] = {.lex_state = 4004}, - [5734] = {.lex_state = 4004}, - [5735] = {.lex_state = 362}, - [5736] = {.lex_state = 336}, - [5737] = {.lex_state = 948}, - [5738] = {.lex_state = 336}, - [5739] = {.lex_state = 948}, - [5740] = {.lex_state = 353}, - [5741] = {.lex_state = 391}, - [5742] = {.lex_state = 362}, - [5743] = {.lex_state = 473}, - [5744] = {.lex_state = 4004}, - [5745] = {.lex_state = 4004}, - [5746] = {.lex_state = 362}, - [5747] = {.lex_state = 948}, - [5748] = {.lex_state = 948}, - [5749] = {.lex_state = 353}, - [5750] = {.lex_state = 362}, - [5751] = {.lex_state = 4004}, - [5752] = {.lex_state = 4004}, - [5753] = {.lex_state = 362}, - [5754] = {.lex_state = 948}, - [5755] = {.lex_state = 948}, - [5756] = {.lex_state = 353}, - [5757] = {.lex_state = 362}, - [5758] = {.lex_state = 4004}, - [5759] = {.lex_state = 4004}, + [5576] = {.lex_state = 1052}, + [5577] = {.lex_state = 82}, + [5578] = {.lex_state = 436}, + [5579] = {.lex_state = 1029}, + [5580] = {.lex_state = 82}, + [5581] = {.lex_state = 926}, + [5582] = {.lex_state = 395}, + [5583] = {.lex_state = 926}, + [5584] = {.lex_state = 75}, + [5585] = {.lex_state = 38, .external_lex_state = 2}, + [5586] = {.lex_state = 102}, + [5587] = {.lex_state = 1029}, + [5588] = {.lex_state = 102}, + [5589] = {.lex_state = 38, .external_lex_state = 2}, + [5590] = {.lex_state = 1052}, + [5591] = {.lex_state = 469}, + [5592] = {.lex_state = 464}, + [5593] = {.lex_state = 395}, + [5594] = {.lex_state = 418}, + [5595] = {.lex_state = 353, .external_lex_state = 2}, + [5596] = {.lex_state = 38, .external_lex_state = 2}, + [5597] = {.lex_state = 82}, + [5598] = {.lex_state = 38, .external_lex_state = 2}, + [5599] = {.lex_state = 353, .external_lex_state = 2}, + [5600] = {.lex_state = 59}, + [5601] = {.lex_state = 436}, + [5602] = {.lex_state = 38, .external_lex_state = 2}, + [5603] = {.lex_state = 38, .external_lex_state = 2}, + [5604] = {.lex_state = 353, .external_lex_state = 2}, + [5605] = {.lex_state = 353, .external_lex_state = 2}, + [5606] = {.lex_state = 38, .external_lex_state = 2}, + [5607] = {.lex_state = 457}, + [5608] = {.lex_state = 68}, + [5609] = {.lex_state = 38, .external_lex_state = 2}, + [5610] = {.lex_state = 38, .external_lex_state = 2}, + [5611] = {.lex_state = 926}, + [5612] = {.lex_state = 59}, + [5613] = {.lex_state = 926}, + [5614] = {.lex_state = 68}, + [5615] = {.lex_state = 59}, + [5616] = {.lex_state = 68}, + [5617] = {.lex_state = 68}, + [5618] = {.lex_state = 68}, + [5619] = {.lex_state = 68}, + [5620] = {.lex_state = 68}, + [5621] = {.lex_state = 68}, + [5622] = {.lex_state = 68}, + [5623] = {.lex_state = 68}, + [5624] = {.lex_state = 68}, + [5625] = {.lex_state = 68}, + [5626] = {.lex_state = 353, .external_lex_state = 2}, + [5627] = {.lex_state = 68}, + [5628] = {.lex_state = 422}, + [5629] = {.lex_state = 422}, + [5630] = {.lex_state = 470}, + [5631] = {.lex_state = 422}, + [5632] = {.lex_state = 465}, + [5633] = {.lex_state = 470}, + [5634] = {.lex_state = 926}, + [5635] = {.lex_state = 465}, + [5636] = {.lex_state = 38}, + [5637] = {.lex_state = 470}, + [5638] = {.lex_state = 133}, + [5639] = {.lex_state = 98}, + [5640] = {.lex_state = 68}, + [5641] = {.lex_state = 68}, + [5642] = {.lex_state = 68}, + [5643] = {.lex_state = 76}, + [5644] = {.lex_state = 991}, + [5645] = {.lex_state = 68}, + [5646] = {.lex_state = 68}, + [5647] = {.lex_state = 38}, + [5648] = {.lex_state = 38, .external_lex_state = 2}, + [5649] = {.lex_state = 68}, + [5650] = {.lex_state = 38, .external_lex_state = 2}, + [5651] = {.lex_state = 991}, + [5652] = {.lex_state = 991}, + [5653] = {.lex_state = 991}, + [5654] = {.lex_state = 38, .external_lex_state = 2}, + [5655] = {.lex_state = 991}, + [5656] = {.lex_state = 422}, + [5657] = {.lex_state = 68}, + [5658] = {.lex_state = 991}, + [5659] = {.lex_state = 991}, + [5660] = {.lex_state = 38, .external_lex_state = 2}, + [5661] = {.lex_state = 991}, + [5662] = {.lex_state = 991}, + [5663] = {.lex_state = 991}, + [5664] = {.lex_state = 991}, + [5665] = {.lex_state = 991}, + [5666] = {.lex_state = 422}, + [5667] = {.lex_state = 991}, + [5668] = {.lex_state = 991}, + [5669] = {.lex_state = 446}, + [5670] = {.lex_state = 991}, + [5671] = {.lex_state = 991}, + [5672] = {.lex_state = 991}, + [5673] = {.lex_state = 991}, + [5674] = {.lex_state = 422}, + [5675] = {.lex_state = 68}, + [5676] = {.lex_state = 991}, + [5677] = {.lex_state = 465}, + [5678] = {.lex_state = 68}, + [5679] = {.lex_state = 68}, + [5680] = {.lex_state = 422}, + [5681] = {.lex_state = 436}, + [5682] = {.lex_state = 422}, + [5683] = {.lex_state = 422}, + [5684] = {.lex_state = 68}, + [5685] = {.lex_state = 422}, + [5686] = {.lex_state = 76}, + [5687] = {.lex_state = 430}, + [5688] = {.lex_state = 38, .external_lex_state = 2}, + [5689] = {.lex_state = 470}, + [5690] = {.lex_state = 412}, + [5691] = {.lex_state = 422}, + [5692] = {.lex_state = 430}, + [5693] = {.lex_state = 1030}, + [5694] = {.lex_state = 422}, + [5695] = {.lex_state = 422}, + [5696] = {.lex_state = 38}, + [5697] = {.lex_state = 476}, + [5698] = {.lex_state = 430}, + [5699] = {.lex_state = 430}, + [5700] = {.lex_state = 422}, + [5701] = {.lex_state = 422}, + [5702] = {.lex_state = 422}, + [5703] = {.lex_state = 422}, + [5704] = {.lex_state = 466}, + [5705] = {.lex_state = 470}, + [5706] = {.lex_state = 422}, + [5707] = {.lex_state = 422}, + [5708] = {.lex_state = 38}, + [5709] = {.lex_state = 412}, + [5710] = {.lex_state = 98}, + [5711] = {.lex_state = 991}, + [5712] = {.lex_state = 1029}, + [5713] = {.lex_state = 430}, + [5714] = {.lex_state = 76}, + [5715] = {.lex_state = 466}, + [5716] = {.lex_state = 1052}, + [5717] = {.lex_state = 476}, + [5718] = {.lex_state = 1029}, + [5719] = {.lex_state = 422}, + [5720] = {.lex_state = 38, .external_lex_state = 2}, + [5721] = {.lex_state = 436}, + [5722] = {.lex_state = 38, .external_lex_state = 2}, + [5723] = {.lex_state = 38, .external_lex_state = 2}, + [5724] = {.lex_state = 1052}, + [5725] = {.lex_state = 1052}, + [5726] = {.lex_state = 991}, + [5727] = {.lex_state = 102}, + [5728] = {.lex_state = 102}, + [5729] = {.lex_state = 38}, + [5730] = {.lex_state = 988}, + [5731] = {.lex_state = 422}, + [5732] = {.lex_state = 1052}, + [5733] = {.lex_state = 133}, + [5734] = {.lex_state = 1052}, + [5735] = {.lex_state = 465}, + [5736] = {.lex_state = 68}, + [5737] = {.lex_state = 68}, + [5738] = {.lex_state = 68}, + [5739] = {.lex_state = 68}, + [5740] = {.lex_state = 68}, + [5741] = {.lex_state = 68}, + [5742] = {.lex_state = 430}, + [5743] = {.lex_state = 422}, + [5744] = {.lex_state = 446}, + [5745] = {.lex_state = 422}, + [5746] = {.lex_state = 412}, + [5747] = {.lex_state = 68}, + [5748] = {.lex_state = 422}, + [5749] = {.lex_state = 465}, + [5750] = {.lex_state = 465}, + [5751] = {.lex_state = 422}, + [5752] = {.lex_state = 76}, + [5753] = {.lex_state = 412}, + [5754] = {.lex_state = 422}, + [5755] = {.lex_state = 383}, + [5756] = {.lex_state = 362}, + [5757] = {.lex_state = 3995}, + [5758] = {.lex_state = 3995}, + [5759] = {.lex_state = 383}, [5760] = {.lex_state = 362}, - [5761] = {.lex_state = 948}, - [5762] = {.lex_state = 948}, - [5763] = {.lex_state = 353}, - [5764] = {.lex_state = 420}, - [5765] = {.lex_state = 362}, - [5766] = {.lex_state = 4004}, - [5767] = {.lex_state = 4004}, - [5768] = {.lex_state = 362}, - [5769] = {.lex_state = 948}, - [5770] = {.lex_state = 948}, - [5771] = {.lex_state = 353}, - [5772] = {.lex_state = 362}, - [5773] = {.lex_state = 4004}, - [5774] = {.lex_state = 4004}, - [5775] = {.lex_state = 362}, - [5776] = {.lex_state = 948}, - [5777] = {.lex_state = 948}, - [5778] = {.lex_state = 353}, + [5761] = {.lex_state = 362}, + [5762] = {.lex_state = 951}, + [5763] = {.lex_state = 383}, + [5764] = {.lex_state = 951}, + [5765] = {.lex_state = 951}, + [5766] = {.lex_state = 362}, + [5767] = {.lex_state = 3995}, + [5768] = {.lex_state = 3995}, + [5769] = {.lex_state = 362}, + [5770] = {.lex_state = 951}, + [5771] = {.lex_state = 446}, + [5772] = {.lex_state = 412}, + [5773] = {.lex_state = 951}, + [5774] = {.lex_state = 412}, + [5775] = {.lex_state = 471}, + [5776] = {.lex_state = 362}, + [5777] = {.lex_state = 3995}, + [5778] = {.lex_state = 3995}, [5779] = {.lex_state = 362}, - [5780] = {.lex_state = 362}, - [5781] = {.lex_state = 948}, - [5782] = {.lex_state = 948}, - [5783] = {.lex_state = 353}, - [5784] = {.lex_state = 947}, - [5785] = {.lex_state = 362}, - [5786] = {.lex_state = 362}, + [5780] = {.lex_state = 951}, + [5781] = {.lex_state = 926}, + [5782] = {.lex_state = 392}, + [5783] = {.lex_state = 412}, + [5784] = {.lex_state = 951}, + [5785] = {.lex_state = 926}, + [5786] = {.lex_state = 507}, [5787] = {.lex_state = 362}, - [5788] = {.lex_state = 948}, - [5789] = {.lex_state = 948}, - [5790] = {.lex_state = 353}, - [5791] = {.lex_state = 362}, - [5792] = {.lex_state = 362}, - [5793] = {.lex_state = 948}, - [5794] = {.lex_state = 948}, - [5795] = {.lex_state = 353}, + [5788] = {.lex_state = 3995}, + [5789] = {.lex_state = 3995}, + [5790] = {.lex_state = 362}, + [5791] = {.lex_state = 951}, + [5792] = {.lex_state = 951}, + [5793] = {.lex_state = 422}, + [5794] = {.lex_state = 412}, + [5795] = {.lex_state = 926}, [5796] = {.lex_state = 362}, - [5797] = {.lex_state = 948}, - [5798] = {.lex_state = 362}, - [5799] = {.lex_state = 948}, - [5800] = {.lex_state = 948}, - [5801] = {.lex_state = 353}, - [5802] = {.lex_state = 362}, - [5803] = {.lex_state = 362}, - [5804] = {.lex_state = 948}, - [5805] = {.lex_state = 948}, - [5806] = {.lex_state = 353}, - [5807] = {.lex_state = 410}, - [5808] = {.lex_state = 948}, - [5809] = {.lex_state = 948}, - [5810] = {.lex_state = 353}, - [5811] = {.lex_state = 473}, - [5812] = {.lex_state = 948}, - [5813] = {.lex_state = 948}, - [5814] = {.lex_state = 353}, - [5815] = {.lex_state = 948}, - [5816] = {.lex_state = 948}, - [5817] = {.lex_state = 353}, - [5818] = {.lex_state = 948}, - [5819] = {.lex_state = 948}, - [5820] = {.lex_state = 353}, - [5821] = {.lex_state = 353}, - [5822] = {.lex_state = 353}, - [5823] = {.lex_state = 353}, - [5824] = {.lex_state = 353}, - [5825] = {.lex_state = 353}, - [5826] = {.lex_state = 353}, - [5827] = {.lex_state = 353}, - [5828] = {.lex_state = 353}, - [5829] = {.lex_state = 353}, - [5830] = {.lex_state = 353}, - [5831] = {.lex_state = 353}, - [5832] = {.lex_state = 353}, - [5833] = {.lex_state = 353}, - [5834] = {.lex_state = 353}, - [5835] = {.lex_state = 353}, - [5836] = {.lex_state = 353}, - [5837] = {.lex_state = 353}, - [5838] = {.lex_state = 353}, - [5839] = {.lex_state = 353}, - [5840] = {.lex_state = 353}, - [5841] = {.lex_state = 353}, - [5842] = {.lex_state = 353}, - [5843] = {.lex_state = 353}, - [5844] = {.lex_state = 353}, - [5845] = {.lex_state = 336}, - [5846] = {.lex_state = 336}, - [5847] = {.lex_state = 336}, - [5848] = {.lex_state = 362}, - [5849] = {.lex_state = 922}, - [5850] = {.lex_state = 922}, + [5797] = {.lex_state = 3995}, + [5798] = {.lex_state = 3995}, + [5799] = {.lex_state = 362}, + [5800] = {.lex_state = 951}, + [5801] = {.lex_state = 475}, + [5802] = {.lex_state = 951}, + [5803] = {.lex_state = 951}, + [5804] = {.lex_state = 951}, + [5805] = {.lex_state = 362}, + [5806] = {.lex_state = 98}, + [5807] = {.lex_state = 3995}, + [5808] = {.lex_state = 3995}, + [5809] = {.lex_state = 3995}, + [5810] = {.lex_state = 362}, + [5811] = {.lex_state = 951}, + [5812] = {.lex_state = 951}, + [5813] = {.lex_state = 412}, + [5814] = {.lex_state = 412}, + [5815] = {.lex_state = 951}, + [5816] = {.lex_state = 951}, + [5817] = {.lex_state = 38, .external_lex_state = 2}, + [5818] = {.lex_state = 38, .external_lex_state = 2}, + [5819] = {.lex_state = 362}, + [5820] = {.lex_state = 3995}, + [5821] = {.lex_state = 3995}, + [5822] = {.lex_state = 3995}, + [5823] = {.lex_state = 362}, + [5824] = {.lex_state = 926}, + [5825] = {.lex_state = 951}, + [5826] = {.lex_state = 467}, + [5827] = {.lex_state = 951}, + [5828] = {.lex_state = 446}, + [5829] = {.lex_state = 362}, + [5830] = {.lex_state = 951}, + [5831] = {.lex_state = 3995}, + [5832] = {.lex_state = 3995}, + [5833] = {.lex_state = 951}, + [5834] = {.lex_state = 362}, + [5835] = {.lex_state = 951}, + [5836] = {.lex_state = 951}, + [5837] = {.lex_state = 38, .external_lex_state = 2}, + [5838] = {.lex_state = 951}, + [5839] = {.lex_state = 362}, + [5840] = {.lex_state = 362}, + [5841] = {.lex_state = 951}, + [5842] = {.lex_state = 926}, + [5843] = {.lex_state = 951}, + [5844] = {.lex_state = 362}, + [5845] = {.lex_state = 362}, + [5846] = {.lex_state = 951}, + [5847] = {.lex_state = 951}, + [5848] = {.lex_state = 951}, + [5849] = {.lex_state = 507}, + [5850] = {.lex_state = 422}, [5851] = {.lex_state = 362}, - [5852] = {.lex_state = 922}, - [5853] = {.lex_state = 384}, - [5854] = {.lex_state = 922}, - [5855] = {.lex_state = 410}, - [5856] = {.lex_state = 4004}, - [5857] = {.lex_state = 4004}, - [5858] = {.lex_state = 130}, - [5859] = {.lex_state = 420}, - [5860] = {.lex_state = 505}, - [5861] = {.lex_state = 43}, - [5862] = {.lex_state = 947}, - [5863] = {.lex_state = 410}, + [5852] = {.lex_state = 362}, + [5853] = {.lex_state = 951}, + [5854] = {.lex_state = 951}, + [5855] = {.lex_state = 362}, + [5856] = {.lex_state = 926}, + [5857] = {.lex_state = 362}, + [5858] = {.lex_state = 478}, + [5859] = {.lex_state = 362}, + [5860] = {.lex_state = 951}, + [5861] = {.lex_state = 951}, + [5862] = {.lex_state = 3995}, + [5863] = {.lex_state = 3995}, [5864] = {.lex_state = 362}, - [5865] = {.lex_state = 948}, - [5866] = {.lex_state = 43}, - [5867] = {.lex_state = 948}, - [5868] = {.lex_state = 948}, - [5869] = {.lex_state = 948}, - [5870] = {.lex_state = 948}, - [5871] = {.lex_state = 421}, - [5872] = {.lex_state = 947}, - [5873] = {.lex_state = 473}, - [5874] = {.lex_state = 4004}, - [5875] = {.lex_state = 4004}, - [5876] = {.lex_state = 505}, - [5877] = {.lex_state = 505}, - [5878] = {.lex_state = 922}, - [5879] = {.lex_state = 100}, - [5880] = {.lex_state = 948}, - [5881] = {.lex_state = 100}, - [5882] = {.lex_state = 100}, - [5883] = {.lex_state = 100}, - [5884] = {.lex_state = 948}, - [5885] = {.lex_state = 516}, - [5886] = {.lex_state = 948}, - [5887] = {.lex_state = 516}, - [5888] = {.lex_state = 516}, - [5889] = {.lex_state = 43}, - [5890] = {.lex_state = 516}, - [5891] = {.lex_state = 43}, - [5892] = {.lex_state = 477}, - [5893] = {.lex_state = 43}, - [5894] = {.lex_state = 948}, - [5895] = {.lex_state = 95}, - [5896] = {.lex_state = 516}, - [5897] = {.lex_state = 516}, - [5898] = {.lex_state = 43}, - [5899] = {.lex_state = 516}, - [5900] = {.lex_state = 472}, - [5901] = {.lex_state = 444}, - [5902] = {.lex_state = 43}, - [5903] = {.lex_state = 75}, - [5904] = {.lex_state = 516}, - [5905] = {.lex_state = 43}, - [5906] = {.lex_state = 516}, - [5907] = {.lex_state = 516}, - [5908] = {.lex_state = 43}, - [5909] = {.lex_state = 487}, - [5910] = {.lex_state = 949}, - [5911] = {.lex_state = 43}, - [5912] = {.lex_state = 516}, - [5913] = {.lex_state = 516}, - [5914] = {.lex_state = 101}, - [5915] = {.lex_state = 101}, - [5916] = {.lex_state = 75}, - [5917] = {.lex_state = 117}, - [5918] = {.lex_state = 410}, - [5919] = {.lex_state = 471}, - [5920] = {.lex_state = 948}, - [5921] = {.lex_state = 101}, - [5922] = {.lex_state = 516}, - [5923] = {.lex_state = 948}, - [5924] = {.lex_state = 472}, - [5925] = {.lex_state = 43}, - [5926] = {.lex_state = 441}, - [5927] = {.lex_state = 43}, - [5928] = {.lex_state = 516}, - [5929] = {.lex_state = 948}, - [5930] = {.lex_state = 948}, - [5931] = {.lex_state = 101}, - [5932] = {.lex_state = 43}, - [5933] = {.lex_state = 516}, - [5934] = {.lex_state = 441}, - [5935] = {.lex_state = 43}, - [5936] = {.lex_state = 486}, - [5937] = {.lex_state = 410}, - [5938] = {.lex_state = 516}, - [5939] = {.lex_state = 43}, - [5940] = {.lex_state = 516}, - [5941] = {.lex_state = 43}, - [5942] = {.lex_state = 948}, - [5943] = {.lex_state = 948}, - [5944] = {.lex_state = 516}, - [5945] = {.lex_state = 516}, - [5946] = {.lex_state = 949}, - [5947] = {.lex_state = 43}, - [5948] = {.lex_state = 43}, - [5949] = {.lex_state = 516}, - [5950] = {.lex_state = 436}, - [5951] = {.lex_state = 43}, - [5952] = {.lex_state = 948}, - [5953] = {.lex_state = 43}, - [5954] = {.lex_state = 472}, - [5955] = {.lex_state = 43}, - [5956] = {.lex_state = 438}, - [5957] = {.lex_state = 516}, - [5958] = {.lex_state = 948}, - [5959] = {.lex_state = 95}, - [5960] = {.lex_state = 516}, - [5961] = {.lex_state = 410}, - [5962] = {.lex_state = 43}, - [5963] = {.lex_state = 336}, - [5964] = {.lex_state = 422}, - [5965] = {.lex_state = 948}, - [5966] = {.lex_state = 410}, - [5967] = {.lex_state = 948}, - [5968] = {.lex_state = 101}, - [5969] = {.lex_state = 516}, - [5970] = {.lex_state = 948}, - [5971] = {.lex_state = 336}, - [5972] = {.lex_state = 391}, - [5973] = {.lex_state = 336}, - [5974] = {.lex_state = 410}, - [5975] = {.lex_state = 336}, - [5976] = {.lex_state = 472}, - [5977] = {.lex_state = 472}, - [5978] = {.lex_state = 410}, - [5979] = {.lex_state = 43}, - [5980] = {.lex_state = 516}, - [5981] = {.lex_state = 75}, - [5982] = {.lex_state = 948}, - [5983] = {.lex_state = 43}, - [5984] = {.lex_state = 444}, - [5985] = {.lex_state = 101}, - [5986] = {.lex_state = 516}, - [5987] = {.lex_state = 487}, - [5988] = {.lex_state = 101}, - [5989] = {.lex_state = 948}, - [5990] = {.lex_state = 516}, - [5991] = {.lex_state = 477}, - [5992] = {.lex_state = 516}, - [5993] = {.lex_state = 516}, - [5994] = {.lex_state = 444}, - [5995] = {.lex_state = 336}, - [5996] = {.lex_state = 948}, - [5997] = {.lex_state = 948}, - [5998] = {.lex_state = 384}, - [5999] = {.lex_state = 336}, - [6000] = {.lex_state = 516}, - [6001] = {.lex_state = 948}, - [6002] = {.lex_state = 948}, - [6003] = {.lex_state = 948}, - [6004] = {.lex_state = 948}, - [6005] = {.lex_state = 948}, - [6006] = {.lex_state = 43}, - [6007] = {.lex_state = 386}, - [6008] = {.lex_state = 43}, - [6009] = {.lex_state = 948}, - [6010] = {.lex_state = 948}, - [6011] = {.lex_state = 948}, - [6012] = {.lex_state = 948}, - [6013] = {.lex_state = 948}, - [6014] = {.lex_state = 948}, - [6015] = {.lex_state = 948}, - [6016] = {.lex_state = 948}, - [6017] = {.lex_state = 948}, - [6018] = {.lex_state = 948}, - [6019] = {.lex_state = 948}, - [6020] = {.lex_state = 948}, - [6021] = {.lex_state = 95}, - [6022] = {.lex_state = 444}, - [6023] = {.lex_state = 948}, - [6024] = {.lex_state = 948}, - [6025] = {.lex_state = 43}, - [6026] = {.lex_state = 948}, - [6027] = {.lex_state = 948}, - [6028] = {.lex_state = 43}, - [6029] = {.lex_state = 948}, - [6030] = {.lex_state = 948}, - [6031] = {.lex_state = 948}, - [6032] = {.lex_state = 948}, - [6033] = {.lex_state = 948}, - [6034] = {.lex_state = 948}, - [6035] = {.lex_state = 948}, - [6036] = {.lex_state = 948}, - [6037] = {.lex_state = 948}, - [6038] = {.lex_state = 948}, - [6039] = {.lex_state = 948}, - [6040] = {.lex_state = 948}, - [6041] = {.lex_state = 948}, - [6042] = {.lex_state = 948}, - [6043] = {.lex_state = 948}, - [6044] = {.lex_state = 948}, - [6045] = {.lex_state = 410}, - [6046] = {.lex_state = 43}, - [6047] = {.lex_state = 949}, - [6048] = {.lex_state = 516}, - [6049] = {.lex_state = 948}, - [6050] = {.lex_state = 43}, - [6051] = {.lex_state = 117}, - [6052] = {.lex_state = 516}, - [6053] = {.lex_state = 436}, - [6054] = {.lex_state = 516}, - [6055] = {.lex_state = 990}, - [6056] = {.lex_state = 75}, - [6057] = {.lex_state = 990}, - [6058] = {.lex_state = 990}, - [6059] = {.lex_state = 990}, - [6060] = {.lex_state = 990}, - [6061] = {.lex_state = 990}, - [6062] = {.lex_state = 101}, - [6063] = {.lex_state = 420}, - [6064] = {.lex_state = 43}, - [6065] = {.lex_state = 948}, - [6066] = {.lex_state = 43}, - [6067] = {.lex_state = 388}, - [6068] = {.lex_state = 444}, - [6069] = {.lex_state = 516}, - [6070] = {.lex_state = 256}, - [6071] = {.lex_state = 256}, - [6072] = {.lex_state = 256}, - [6073] = {.lex_state = 256}, - [6074] = {.lex_state = 256}, - [6075] = {.lex_state = 256}, - [6076] = {.lex_state = 256}, - [6077] = {.lex_state = 494}, - [6078] = {.lex_state = 440}, - [6079] = {.lex_state = 360}, - [6080] = {.lex_state = 478}, - [6081] = {.lex_state = 948}, - [6082] = {.lex_state = 514}, - [6083] = {.lex_state = 948}, - [6084] = {.lex_state = 488}, - [6085] = {.lex_state = 360}, - [6086] = {.lex_state = 511}, - [6087] = {.lex_state = 948}, - [6088] = {.lex_state = 947}, - [6089] = {.lex_state = 256}, - [6090] = {.lex_state = 948}, - [6091] = {.lex_state = 256}, - [6092] = {.lex_state = 256}, - [6093] = {.lex_state = 256}, - [6094] = {.lex_state = 256}, - [6095] = {.lex_state = 256}, - [6096] = {.lex_state = 256}, - [6097] = {.lex_state = 256}, - [6098] = {.lex_state = 256}, - [6099] = {.lex_state = 948}, - [6100] = {.lex_state = 256}, - [6101] = {.lex_state = 494}, - [6102] = {.lex_state = 360}, - [6103] = {.lex_state = 256}, - [6104] = {.lex_state = 256}, - [6105] = {.lex_state = 948}, - [6106] = {.lex_state = 948}, - [6107] = {.lex_state = 360}, - [6108] = {.lex_state = 948}, - [6109] = {.lex_state = 442}, - [6110] = {.lex_state = 948}, - [6111] = {.lex_state = 511}, - [6112] = {.lex_state = 948}, - [6113] = {.lex_state = 256}, - [6114] = {.lex_state = 256}, - [6115] = {.lex_state = 256}, - [6116] = {.lex_state = 256}, - [6117] = {.lex_state = 256}, - [6118] = {.lex_state = 256}, - [6119] = {.lex_state = 256}, - [6120] = {.lex_state = 256}, - [6121] = {.lex_state = 503}, - [6122] = {.lex_state = 948}, - [6123] = {.lex_state = 494}, - [6124] = {.lex_state = 948}, - [6125] = {.lex_state = 360}, - [6126] = {.lex_state = 478}, - [6127] = {.lex_state = 444}, - [6128] = {.lex_state = 511}, - [6129] = {.lex_state = 948}, - [6130] = {.lex_state = 360}, - [6131] = {.lex_state = 478}, - [6132] = {.lex_state = 948}, - [6133] = {.lex_state = 444}, - [6134] = {.lex_state = 256}, - [6135] = {.lex_state = 511}, - [6136] = {.lex_state = 948}, - [6137] = {.lex_state = 256}, - [6138] = {.lex_state = 256}, - [6139] = {.lex_state = 256}, - [6140] = {.lex_state = 256}, - [6141] = {.lex_state = 256}, - [6142] = {.lex_state = 256}, - [6143] = {.lex_state = 256}, - [6144] = {.lex_state = 256}, - [6145] = {.lex_state = 948}, - [6146] = {.lex_state = 948}, - [6147] = {.lex_state = 948}, - [6148] = {.lex_state = 494}, - [6149] = {.lex_state = 360}, - [6150] = {.lex_state = 948}, - [6151] = {.lex_state = 948}, - [6152] = {.lex_state = 948}, - [6153] = {.lex_state = 948}, - [6154] = {.lex_state = 360}, - [6155] = {.lex_state = 362}, - [6156] = {.lex_state = 256}, - [6157] = {.lex_state = 948}, - [6158] = {.lex_state = 948}, - [6159] = {.lex_state = 256}, - [6160] = {.lex_state = 256}, - [6161] = {.lex_state = 256}, - [6162] = {.lex_state = 256}, - [6163] = {.lex_state = 256}, - [6164] = {.lex_state = 256}, - [6165] = {.lex_state = 256}, - [6166] = {.lex_state = 256}, - [6167] = {.lex_state = 948}, - [6168] = {.lex_state = 494}, - [6169] = {.lex_state = 360}, - [6170] = {.lex_state = 948}, - [6171] = {.lex_state = 948}, - [6172] = {.lex_state = 360}, - [6173] = {.lex_state = 948}, - [6174] = {.lex_state = 437}, - [6175] = {.lex_state = 948}, - [6176] = {.lex_state = 948}, - [6177] = {.lex_state = 948}, - [6178] = {.lex_state = 1027}, - [6179] = {.lex_state = 256}, - [6180] = {.lex_state = 256}, - [6181] = {.lex_state = 256}, - [6182] = {.lex_state = 256}, - [6183] = {.lex_state = 256}, - [6184] = {.lex_state = 256}, - [6185] = {.lex_state = 256}, - [6186] = {.lex_state = 256}, - [6187] = {.lex_state = 99}, - [6188] = {.lex_state = 494}, - [6189] = {.lex_state = 99}, + [5865] = {.lex_state = 362}, + [5866] = {.lex_state = 951}, + [5867] = {.lex_state = 951}, + [5868] = {.lex_state = 133}, + [5869] = {.lex_state = 951}, + [5870] = {.lex_state = 951}, + [5871] = {.lex_state = 422}, + [5872] = {.lex_state = 951}, + [5873] = {.lex_state = 951}, + [5874] = {.lex_state = 951}, + [5875] = {.lex_state = 951}, + [5876] = {.lex_state = 951}, + [5877] = {.lex_state = 3995}, + [5878] = {.lex_state = 951}, + [5879] = {.lex_state = 951}, + [5880] = {.lex_state = 951}, + [5881] = {.lex_state = 475}, + [5882] = {.lex_state = 362}, + [5883] = {.lex_state = 951}, + [5884] = {.lex_state = 3995}, + [5885] = {.lex_state = 3995}, + [5886] = {.lex_state = 467}, + [5887] = {.lex_state = 362}, + [5888] = {.lex_state = 951}, + [5889] = {.lex_state = 133}, + [5890] = {.lex_state = 3995}, + [5891] = {.lex_state = 3995}, + [5892] = {.lex_state = 951}, + [5893] = {.lex_state = 951}, + [5894] = {.lex_state = 133}, + [5895] = {.lex_state = 383}, + [5896] = {.lex_state = 383}, + [5897] = {.lex_state = 383}, + [5898] = {.lex_state = 467}, + [5899] = {.lex_state = 103}, + [5900] = {.lex_state = 103}, + [5901] = {.lex_state = 422}, + [5902] = {.lex_state = 951}, + [5903] = {.lex_state = 926}, + [5904] = {.lex_state = 412}, + [5905] = {.lex_state = 951}, + [5906] = {.lex_state = 467}, + [5907] = {.lex_state = 951}, + [5908] = {.lex_state = 951}, + [5909] = {.lex_state = 77}, + [5910] = {.lex_state = 77}, + [5911] = {.lex_state = 441}, + [5912] = {.lex_state = 437}, + [5913] = {.lex_state = 98}, + [5914] = {.lex_state = 386}, + [5915] = {.lex_state = 467}, + [5916] = {.lex_state = 3995}, + [5917] = {.lex_state = 3995}, + [5918] = {.lex_state = 362}, + [5919] = {.lex_state = 991}, + [5920] = {.lex_state = 991}, + [5921] = {.lex_state = 362}, + [5922] = {.lex_state = 38, .external_lex_state = 2}, + [5923] = {.lex_state = 926}, + [5924] = {.lex_state = 3995}, + [5925] = {.lex_state = 3995}, + [5926] = {.lex_state = 412}, + [5927] = {.lex_state = 38, .external_lex_state = 2}, + [5928] = {.lex_state = 133}, + [5929] = {.lex_state = 507}, + [5930] = {.lex_state = 951}, + [5931] = {.lex_state = 951}, + [5932] = {.lex_state = 507}, + [5933] = {.lex_state = 951}, + [5934] = {.lex_state = 951}, + [5935] = {.lex_state = 362}, + [5936] = {.lex_state = 507}, + [5937] = {.lex_state = 951}, + [5938] = {.lex_state = 951}, + [5939] = {.lex_state = 951}, + [5940] = {.lex_state = 362}, + [5941] = {.lex_state = 3995}, + [5942] = {.lex_state = 951}, + [5943] = {.lex_state = 951}, + [5944] = {.lex_state = 951}, + [5945] = {.lex_state = 422}, + [5946] = {.lex_state = 393}, + [5947] = {.lex_state = 467}, + [5948] = {.lex_state = 951}, + [5949] = {.lex_state = 926}, + [5950] = {.lex_state = 38, .external_lex_state = 2}, + [5951] = {.lex_state = 951}, + [5952] = {.lex_state = 951}, + [5953] = {.lex_state = 422}, + [5954] = {.lex_state = 988}, + [5955] = {.lex_state = 385}, + [5956] = {.lex_state = 926}, + [5957] = {.lex_state = 422}, + [5958] = {.lex_state = 487}, + [5959] = {.lex_state = 412}, + [5960] = {.lex_state = 926}, + [5961] = {.lex_state = 472}, + [5962] = {.lex_state = 98}, + [5963] = {.lex_state = 475}, + [5964] = {.lex_state = 926}, + [5965] = {.lex_state = 926}, + [5966] = {.lex_state = 928}, + [5967] = {.lex_state = 928}, + [5968] = {.lex_state = 928}, + [5969] = {.lex_state = 928}, + [5970] = {.lex_state = 928}, + [5971] = {.lex_state = 928}, + [5972] = {.lex_state = 362}, + [5973] = {.lex_state = 103}, + [5974] = {.lex_state = 103}, + [5975] = {.lex_state = 103}, + [5976] = {.lex_state = 103}, + [5977] = {.lex_state = 422}, + [5978] = {.lex_state = 412}, + [5979] = {.lex_state = 926}, + [5980] = {.lex_state = 424}, + [5981] = {.lex_state = 475}, + [5982] = {.lex_state = 951}, + [5983] = {.lex_state = 474}, + [5984] = {.lex_state = 38}, + [5985] = {.lex_state = 440}, + [5986] = {.lex_state = 38}, + [5987] = {.lex_state = 388}, + [5988] = {.lex_state = 76}, + [5989] = {.lex_state = 951}, + [5990] = {.lex_state = 77}, + [5991] = {.lex_state = 104}, + [5992] = {.lex_state = 76}, + [5993] = {.lex_state = 518}, + [5994] = {.lex_state = 951}, + [5995] = {.lex_state = 952}, + [5996] = {.lex_state = 950}, + [5997] = {.lex_state = 38}, + [5998] = {.lex_state = 474}, + [5999] = {.lex_state = 390}, + [6000] = {.lex_state = 473}, + [6001] = {.lex_state = 518}, + [6002] = {.lex_state = 951}, + [6003] = {.lex_state = 991}, + [6004] = {.lex_state = 991}, + [6005] = {.lex_state = 38}, + [6006] = {.lex_state = 474}, + [6007] = {.lex_state = 474}, + [6008] = {.lex_state = 98}, + [6009] = {.lex_state = 38}, + [6010] = {.lex_state = 951}, + [6011] = {.lex_state = 76}, + [6012] = {.lex_state = 383}, + [6013] = {.lex_state = 38}, + [6014] = {.lex_state = 518}, + [6015] = {.lex_state = 383}, + [6016] = {.lex_state = 38}, + [6017] = {.lex_state = 443}, + [6018] = {.lex_state = 38}, + [6019] = {.lex_state = 446}, + [6020] = {.lex_state = 951}, + [6021] = {.lex_state = 951}, + [6022] = {.lex_state = 77}, + [6023] = {.lex_state = 951}, + [6024] = {.lex_state = 77}, + [6025] = {.lex_state = 412}, + [6026] = {.lex_state = 383}, + [6027] = {.lex_state = 991}, + [6028] = {.lex_state = 518}, + [6029] = {.lex_state = 991}, + [6030] = {.lex_state = 952}, + [6031] = {.lex_state = 951}, + [6032] = {.lex_state = 518}, + [6033] = {.lex_state = 991}, + [6034] = {.lex_state = 991}, + [6035] = {.lex_state = 951}, + [6036] = {.lex_state = 518}, + [6037] = {.lex_state = 412}, + [6038] = {.lex_state = 518}, + [6039] = {.lex_state = 383}, + [6040] = {.lex_state = 991}, + [6041] = {.lex_state = 518}, + [6042] = {.lex_state = 38}, + [6043] = {.lex_state = 393}, + [6044] = {.lex_state = 38}, + [6045] = {.lex_state = 518}, + [6046] = {.lex_state = 412}, + [6047] = {.lex_state = 951}, + [6048] = {.lex_state = 518}, + [6049] = {.lex_state = 474}, + [6050] = {.lex_state = 518}, + [6051] = {.lex_state = 518}, + [6052] = {.lex_state = 38}, + [6053] = {.lex_state = 991}, + [6054] = {.lex_state = 518}, + [6055] = {.lex_state = 991}, + [6056] = {.lex_state = 991}, + [6057] = {.lex_state = 951}, + [6058] = {.lex_state = 518}, + [6059] = {.lex_state = 518}, + [6060] = {.lex_state = 443}, + [6061] = {.lex_state = 518}, + [6062] = {.lex_state = 38}, + [6063] = {.lex_state = 991}, + [6064] = {.lex_state = 518}, + [6065] = {.lex_state = 446}, + [6066] = {.lex_state = 479}, + [6067] = {.lex_state = 991}, + [6068] = {.lex_state = 951}, + [6069] = {.lex_state = 98}, + [6070] = {.lex_state = 38}, + [6071] = {.lex_state = 518}, + [6072] = {.lex_state = 77}, + [6073] = {.lex_state = 518}, + [6074] = {.lex_state = 518}, + [6075] = {.lex_state = 991}, + [6076] = {.lex_state = 38}, + [6077] = {.lex_state = 518}, + [6078] = {.lex_state = 38}, + [6079] = {.lex_state = 518}, + [6080] = {.lex_state = 77}, + [6081] = {.lex_state = 38}, + [6082] = {.lex_state = 518}, + [6083] = {.lex_state = 38}, + [6084] = {.lex_state = 991}, + [6085] = {.lex_state = 991}, + [6086] = {.lex_state = 951}, + [6087] = {.lex_state = 518}, + [6088] = {.lex_state = 383}, + [6089] = {.lex_state = 38}, + [6090] = {.lex_state = 951}, + [6091] = {.lex_state = 951}, + [6092] = {.lex_state = 386}, + [6093] = {.lex_state = 991}, + [6094] = {.lex_state = 383}, + [6095] = {.lex_state = 991}, + [6096] = {.lex_state = 990}, + [6097] = {.lex_state = 412}, + [6098] = {.lex_state = 990}, + [6099] = {.lex_state = 518}, + [6100] = {.lex_state = 991}, + [6101] = {.lex_state = 446}, + [6102] = {.lex_state = 423}, + [6103] = {.lex_state = 518}, + [6104] = {.lex_state = 446}, + [6105] = {.lex_state = 951}, + [6106] = {.lex_state = 488}, + [6107] = {.lex_state = 412}, + [6108] = {.lex_state = 991}, + [6109] = {.lex_state = 951}, + [6110] = {.lex_state = 951}, + [6111] = {.lex_state = 990}, + [6112] = {.lex_state = 951}, + [6113] = {.lex_state = 951}, + [6114] = {.lex_state = 446}, + [6115] = {.lex_state = 951}, + [6116] = {.lex_state = 951}, + [6117] = {.lex_state = 412}, + [6118] = {.lex_state = 952}, + [6119] = {.lex_state = 104}, + [6120] = {.lex_state = 951}, + [6121] = {.lex_state = 951}, + [6122] = {.lex_state = 518}, + [6123] = {.lex_state = 951}, + [6124] = {.lex_state = 951}, + [6125] = {.lex_state = 951}, + [6126] = {.lex_state = 951}, + [6127] = {.lex_state = 77}, + [6128] = {.lex_state = 38}, + [6129] = {.lex_state = 951}, + [6130] = {.lex_state = 951}, + [6131] = {.lex_state = 951}, + [6132] = {.lex_state = 951}, + [6133] = {.lex_state = 951}, + [6134] = {.lex_state = 951}, + [6135] = {.lex_state = 518}, + [6136] = {.lex_state = 518}, + [6137] = {.lex_state = 951}, + [6138] = {.lex_state = 951}, + [6139] = {.lex_state = 951}, + [6140] = {.lex_state = 991}, + [6141] = {.lex_state = 951}, + [6142] = {.lex_state = 951}, + [6143] = {.lex_state = 518}, + [6144] = {.lex_state = 518}, + [6145] = {.lex_state = 951}, + [6146] = {.lex_state = 951}, + [6147] = {.lex_state = 951}, + [6148] = {.lex_state = 951}, + [6149] = {.lex_state = 951}, + [6150] = {.lex_state = 951}, + [6151] = {.lex_state = 951}, + [6152] = {.lex_state = 951}, + [6153] = {.lex_state = 951}, + [6154] = {.lex_state = 951}, + [6155] = {.lex_state = 951}, + [6156] = {.lex_state = 951}, + [6157] = {.lex_state = 951}, + [6158] = {.lex_state = 951}, + [6159] = {.lex_state = 951}, + [6160] = {.lex_state = 951}, + [6161] = {.lex_state = 120}, + [6162] = {.lex_state = 990}, + [6163] = {.lex_state = 446}, + [6164] = {.lex_state = 412}, + [6165] = {.lex_state = 518}, + [6166] = {.lex_state = 104}, + [6167] = {.lex_state = 422}, + [6168] = {.lex_state = 518}, + [6169] = {.lex_state = 951}, + [6170] = {.lex_state = 991}, + [6171] = {.lex_state = 518}, + [6172] = {.lex_state = 438}, + [6173] = {.lex_state = 991}, + [6174] = {.lex_state = 38}, + [6175] = {.lex_state = 120}, + [6176] = {.lex_state = 951}, + [6177] = {.lex_state = 474}, + [6178] = {.lex_state = 76}, + [6179] = {.lex_state = 77}, + [6180] = {.lex_state = 489}, + [6181] = {.lex_state = 38}, + [6182] = {.lex_state = 489}, + [6183] = {.lex_state = 951}, + [6184] = {.lex_state = 438}, + [6185] = {.lex_state = 990}, + [6186] = {.lex_state = 479}, + [6187] = {.lex_state = 38}, + [6188] = {.lex_state = 518}, + [6189] = {.lex_state = 990}, [6190] = {.lex_state = 360}, - [6191] = {.lex_state = 948}, - [6192] = {.lex_state = 478}, - [6193] = {.lex_state = 488}, - [6194] = {.lex_state = 360}, - [6195] = {.lex_state = 948}, - [6196] = {.lex_state = 948}, - [6197] = {.lex_state = 948}, - [6198] = {.lex_state = 948}, - [6199] = {.lex_state = 510}, - [6200] = {.lex_state = 99}, - [6201] = {.lex_state = 362}, - [6202] = {.lex_state = 256}, - [6203] = {.lex_state = 256}, - [6204] = {.lex_state = 256}, - [6205] = {.lex_state = 256}, - [6206] = {.lex_state = 256}, - [6207] = {.lex_state = 256}, - [6208] = {.lex_state = 256}, - [6209] = {.lex_state = 256}, - [6210] = {.lex_state = 82}, - [6211] = {.lex_state = 494}, + [6191] = {.lex_state = 951}, + [6192] = {.lex_state = 360}, + [6193] = {.lex_state = 262}, + [6194] = {.lex_state = 951}, + [6195] = {.lex_state = 951}, + [6196] = {.lex_state = 951}, + [6197] = {.lex_state = 360}, + [6198] = {.lex_state = 951}, + [6199] = {.lex_state = 951}, + [6200] = {.lex_state = 951}, + [6201] = {.lex_state = 951}, + [6202] = {.lex_state = 951}, + [6203] = {.lex_state = 439}, + [6204] = {.lex_state = 513}, + [6205] = {.lex_state = 513}, + [6206] = {.lex_state = 513}, + [6207] = {.lex_state = 951}, + [6208] = {.lex_state = 516}, + [6209] = {.lex_state = 951}, + [6210] = {.lex_state = 439}, + [6211] = {.lex_state = 444}, [6212] = {.lex_state = 360}, - [6213] = {.lex_state = 256}, - [6214] = {.lex_state = 488}, - [6215] = {.lex_state = 514}, - [6216] = {.lex_state = 360}, - [6217] = {.lex_state = 442}, - [6218] = {.lex_state = 948}, - [6219] = {.lex_state = 948}, - [6220] = {.lex_state = 490}, - [6221] = {.lex_state = 83}, - [6222] = {.lex_state = 256}, - [6223] = {.lex_state = 256}, - [6224] = {.lex_state = 256}, - [6225] = {.lex_state = 256}, - [6226] = {.lex_state = 256}, - [6227] = {.lex_state = 256}, - [6228] = {.lex_state = 256}, - [6229] = {.lex_state = 256}, - [6230] = {.lex_state = 948}, - [6231] = {.lex_state = 494}, - [6232] = {.lex_state = 360}, - [6233] = {.lex_state = 256}, - [6234] = {.lex_state = 256}, - [6235] = {.lex_state = 256}, - [6236] = {.lex_state = 360}, - [6237] = {.lex_state = 948}, - [6238] = {.lex_state = 948}, - [6239] = {.lex_state = 948}, - [6240] = {.lex_state = 948}, - [6241] = {.lex_state = 256}, - [6242] = {.lex_state = 256}, - [6243] = {.lex_state = 256}, - [6244] = {.lex_state = 256}, - [6245] = {.lex_state = 256}, - [6246] = {.lex_state = 256}, - [6247] = {.lex_state = 256}, - [6248] = {.lex_state = 256}, - [6249] = {.lex_state = 442}, - [6250] = {.lex_state = 510}, - [6251] = {.lex_state = 494}, - [6252] = {.lex_state = 510}, - [6253] = {.lex_state = 360}, - [6254] = {.lex_state = 99}, - [6255] = {.lex_state = 948}, - [6256] = {.lex_state = 360}, - [6257] = {.lex_state = 948}, - [6258] = {.lex_state = 948}, - [6259] = {.lex_state = 948}, - [6260] = {.lex_state = 948}, - [6261] = {.lex_state = 256}, - [6262] = {.lex_state = 256}, - [6263] = {.lex_state = 256}, - [6264] = {.lex_state = 256}, - [6265] = {.lex_state = 256}, - [6266] = {.lex_state = 256}, - [6267] = {.lex_state = 256}, - [6268] = {.lex_state = 256}, - [6269] = {.lex_state = 948}, - [6270] = {.lex_state = 442}, - [6271] = {.lex_state = 494}, - [6272] = {.lex_state = 948}, - [6273] = {.lex_state = 360}, - [6274] = {.lex_state = 494}, - [6275] = {.lex_state = 360}, - [6276] = {.lex_state = 442}, - [6277] = {.lex_state = 948}, - [6278] = {.lex_state = 256}, - [6279] = {.lex_state = 256}, - [6280] = {.lex_state = 256}, - [6281] = {.lex_state = 256}, - [6282] = {.lex_state = 256}, - [6283] = {.lex_state = 256}, - [6284] = {.lex_state = 256}, - [6285] = {.lex_state = 256}, - [6286] = {.lex_state = 442}, - [6287] = {.lex_state = 494}, - [6288] = {.lex_state = 360}, - [6289] = {.lex_state = 948}, - [6290] = {.lex_state = 360}, - [6291] = {.lex_state = 442}, - [6292] = {.lex_state = 420}, - [6293] = {.lex_state = 256}, - [6294] = {.lex_state = 256}, - [6295] = {.lex_state = 256}, - [6296] = {.lex_state = 256}, - [6297] = {.lex_state = 256}, - [6298] = {.lex_state = 256}, - [6299] = {.lex_state = 256}, - [6300] = {.lex_state = 256}, - [6301] = {.lex_state = 948}, - [6302] = {.lex_state = 494}, - [6303] = {.lex_state = 360}, + [6213] = {.lex_state = 439}, + [6214] = {.lex_state = 512}, + [6215] = {.lex_state = 262}, + [6216] = {.lex_state = 951}, + [6217] = {.lex_state = 262}, + [6218] = {.lex_state = 951}, + [6219] = {.lex_state = 951}, + [6220] = {.lex_state = 951}, + [6221] = {.lex_state = 951}, + [6222] = {.lex_state = 490}, + [6223] = {.lex_state = 490}, + [6224] = {.lex_state = 262}, + [6225] = {.lex_state = 38}, + [6226] = {.lex_state = 444}, + [6227] = {.lex_state = 951}, + [6228] = {.lex_state = 444}, + [6229] = {.lex_state = 951}, + [6230] = {.lex_state = 490}, + [6231] = {.lex_state = 439}, + [6232] = {.lex_state = 951}, + [6233] = {.lex_state = 262}, + [6234] = {.lex_state = 262}, + [6235] = {.lex_state = 262}, + [6236] = {.lex_state = 262}, + [6237] = {.lex_state = 442}, + [6238] = {.lex_state = 444}, + [6239] = {.lex_state = 496}, + [6240] = {.lex_state = 951}, + [6241] = {.lex_state = 951}, + [6242] = {.lex_state = 951}, + [6243] = {.lex_state = 439}, + [6244] = {.lex_state = 951}, + [6245] = {.lex_state = 444}, + [6246] = {.lex_state = 262}, + [6247] = {.lex_state = 262}, + [6248] = {.lex_state = 262}, + [6249] = {.lex_state = 951}, + [6250] = {.lex_state = 262}, + [6251] = {.lex_state = 951}, + [6252] = {.lex_state = 951}, + [6253] = {.lex_state = 480}, + [6254] = {.lex_state = 505}, + [6255] = {.lex_state = 241}, + [6256] = {.lex_state = 512}, + [6257] = {.lex_state = 512}, + [6258] = {.lex_state = 516}, + [6259] = {.lex_state = 513}, + [6260] = {.lex_state = 951}, + [6261] = {.lex_state = 951}, + [6262] = {.lex_state = 951}, + [6263] = {.lex_state = 951}, + [6264] = {.lex_state = 490}, + [6265] = {.lex_state = 496}, + [6266] = {.lex_state = 951}, + [6267] = {.lex_state = 98}, + [6268] = {.lex_state = 360}, + [6269] = {.lex_state = 951}, + [6270] = {.lex_state = 496}, + [6271] = {.lex_state = 951}, + [6272] = {.lex_state = 360}, + [6273] = {.lex_state = 951}, + [6274] = {.lex_state = 951}, + [6275] = {.lex_state = 951}, + [6276] = {.lex_state = 422}, + [6277] = {.lex_state = 360}, + [6278] = {.lex_state = 360}, + [6279] = {.lex_state = 422}, + [6280] = {.lex_state = 951}, + [6281] = {.lex_state = 262}, + [6282] = {.lex_state = 951}, + [6283] = {.lex_state = 262}, + [6284] = {.lex_state = 262}, + [6285] = {.lex_state = 262}, + [6286] = {.lex_state = 262}, + [6287] = {.lex_state = 262}, + [6288] = {.lex_state = 262}, + [6289] = {.lex_state = 262}, + [6290] = {.lex_state = 951}, + [6291] = {.lex_state = 951}, + [6292] = {.lex_state = 490}, + [6293] = {.lex_state = 362}, + [6294] = {.lex_state = 362}, + [6295] = {.lex_state = 360}, + [6296] = {.lex_state = 951}, + [6297] = {.lex_state = 951}, + [6298] = {.lex_state = 490}, + [6299] = {.lex_state = 951}, + [6300] = {.lex_state = 951}, + [6301] = {.lex_state = 951}, + [6302] = {.lex_state = 496}, + [6303] = {.lex_state = 951}, [6304] = {.lex_state = 360}, - [6305] = {.lex_state = 948}, - [6306] = {.lex_state = 948}, - [6307] = {.lex_state = 256}, - [6308] = {.lex_state = 256}, - [6309] = {.lex_state = 256}, - [6310] = {.lex_state = 256}, - [6311] = {.lex_state = 256}, - [6312] = {.lex_state = 256}, - [6313] = {.lex_state = 256}, - [6314] = {.lex_state = 256}, - [6315] = {.lex_state = 948}, - [6316] = {.lex_state = 494}, - [6317] = {.lex_state = 360}, - [6318] = {.lex_state = 360}, - [6319] = {.lex_state = 948}, - [6320] = {.lex_state = 948}, - [6321] = {.lex_state = 256}, - [6322] = {.lex_state = 256}, - [6323] = {.lex_state = 256}, - [6324] = {.lex_state = 256}, - [6325] = {.lex_state = 256}, - [6326] = {.lex_state = 256}, - [6327] = {.lex_state = 256}, - [6328] = {.lex_state = 256}, - [6329] = {.lex_state = 948}, - [6330] = {.lex_state = 494}, - [6331] = {.lex_state = 360}, - [6332] = {.lex_state = 360}, - [6333] = {.lex_state = 948}, - [6334] = {.lex_state = 256}, - [6335] = {.lex_state = 494}, - [6336] = {.lex_state = 360}, - [6337] = {.lex_state = 360}, - [6338] = {.lex_state = 256}, - [6339] = {.lex_state = 494}, - [6340] = {.lex_state = 360}, + [6305] = {.lex_state = 262}, + [6306] = {.lex_state = 490}, + [6307] = {.lex_state = 262}, + [6308] = {.lex_state = 951}, + [6309] = {.lex_state = 360}, + [6310] = {.lex_state = 505}, + [6311] = {.lex_state = 386}, + [6312] = {.lex_state = 505}, + [6313] = {.lex_state = 951}, + [6314] = {.lex_state = 951}, + [6315] = {.lex_state = 516}, + [6316] = {.lex_state = 262}, + [6317] = {.lex_state = 262}, + [6318] = {.lex_state = 262}, + [6319] = {.lex_state = 262}, + [6320] = {.lex_state = 262}, + [6321] = {.lex_state = 262}, + [6322] = {.lex_state = 262}, + [6323] = {.lex_state = 262}, + [6324] = {.lex_state = 496}, + [6325] = {.lex_state = 360}, + [6326] = {.lex_state = 951}, + [6327] = {.lex_state = 951}, + [6328] = {.lex_state = 360}, + [6329] = {.lex_state = 446}, + [6330] = {.lex_state = 951}, + [6331] = {.lex_state = 262}, + [6332] = {.lex_state = 262}, + [6333] = {.lex_state = 262}, + [6334] = {.lex_state = 262}, + [6335] = {.lex_state = 262}, + [6336] = {.lex_state = 262}, + [6337] = {.lex_state = 262}, + [6338] = {.lex_state = 262}, + [6339] = {.lex_state = 83}, + [6340] = {.lex_state = 496}, [6341] = {.lex_state = 360}, - [6342] = {.lex_state = 256}, - [6343] = {.lex_state = 494}, - [6344] = {.lex_state = 360}, - [6345] = {.lex_state = 360}, - [6346] = {.lex_state = 948}, - [6347] = {.lex_state = 494}, - [6348] = {.lex_state = 360}, - [6349] = {.lex_state = 360}, - [6350] = {.lex_state = 948}, - [6351] = {.lex_state = 494}, - [6352] = {.lex_state = 360}, - [6353] = {.lex_state = 360}, - [6354] = {.lex_state = 256}, - [6355] = {.lex_state = 494}, - [6356] = {.lex_state = 360}, - [6357] = {.lex_state = 360}, - [6358] = {.lex_state = 948}, - [6359] = {.lex_state = 494}, - [6360] = {.lex_state = 360}, - [6361] = {.lex_state = 360}, - [6362] = {.lex_state = 948}, - [6363] = {.lex_state = 494}, - [6364] = {.lex_state = 360}, - [6365] = {.lex_state = 360}, - [6366] = {.lex_state = 401}, - [6367] = {.lex_state = 494}, - [6368] = {.lex_state = 360}, - [6369] = {.lex_state = 360}, - [6370] = {.lex_state = 450}, - [6371] = {.lex_state = 494}, - [6372] = {.lex_state = 360}, - [6373] = {.lex_state = 360}, - [6374] = {.lex_state = 256}, - [6375] = {.lex_state = 494}, - [6376] = {.lex_state = 360}, - [6377] = {.lex_state = 360}, - [6378] = {.lex_state = 75}, - [6379] = {.lex_state = 494}, - [6380] = {.lex_state = 360}, - [6381] = {.lex_state = 360}, - [6382] = {.lex_state = 437}, - [6383] = {.lex_state = 494}, + [6342] = {.lex_state = 439}, + [6343] = {.lex_state = 360}, + [6344] = {.lex_state = 262}, + [6345] = {.lex_state = 262}, + [6346] = {.lex_state = 262}, + [6347] = {.lex_state = 262}, + [6348] = {.lex_state = 262}, + [6349] = {.lex_state = 262}, + [6350] = {.lex_state = 262}, + [6351] = {.lex_state = 262}, + [6352] = {.lex_state = 951}, + [6353] = {.lex_state = 496}, + [6354] = {.lex_state = 360}, + [6355] = {.lex_state = 360}, + [6356] = {.lex_state = 951}, + [6357] = {.lex_state = 262}, + [6358] = {.lex_state = 262}, + [6359] = {.lex_state = 262}, + [6360] = {.lex_state = 262}, + [6361] = {.lex_state = 262}, + [6362] = {.lex_state = 262}, + [6363] = {.lex_state = 262}, + [6364] = {.lex_state = 262}, + [6365] = {.lex_state = 262}, + [6366] = {.lex_state = 951}, + [6367] = {.lex_state = 496}, + [6368] = {.lex_state = 480}, + [6369] = {.lex_state = 951}, + [6370] = {.lex_state = 360}, + [6371] = {.lex_state = 951}, + [6372] = {.lex_state = 262}, + [6373] = {.lex_state = 505}, + [6374] = {.lex_state = 262}, + [6375] = {.lex_state = 262}, + [6376] = {.lex_state = 262}, + [6377] = {.lex_state = 262}, + [6378] = {.lex_state = 262}, + [6379] = {.lex_state = 262}, + [6380] = {.lex_state = 262}, + [6381] = {.lex_state = 262}, + [6382] = {.lex_state = 36}, + [6383] = {.lex_state = 496}, [6384] = {.lex_state = 360}, [6385] = {.lex_state = 360}, - [6386] = {.lex_state = 948}, - [6387] = {.lex_state = 494}, - [6388] = {.lex_state = 360}, - [6389] = {.lex_state = 360}, - [6390] = {.lex_state = 948}, - [6391] = {.lex_state = 494}, - [6392] = {.lex_state = 360}, - [6393] = {.lex_state = 360}, - [6394] = {.lex_state = 948}, - [6395] = {.lex_state = 494}, + [6386] = {.lex_state = 490}, + [6387] = {.lex_state = 262}, + [6388] = {.lex_state = 262}, + [6389] = {.lex_state = 262}, + [6390] = {.lex_state = 262}, + [6391] = {.lex_state = 262}, + [6392] = {.lex_state = 262}, + [6393] = {.lex_state = 262}, + [6394] = {.lex_state = 262}, + [6395] = {.lex_state = 496}, [6396] = {.lex_state = 360}, - [6397] = {.lex_state = 360}, - [6398] = {.lex_state = 43}, - [6399] = {.lex_state = 494}, - [6400] = {.lex_state = 360}, + [6397] = {.lex_state = 951}, + [6398] = {.lex_state = 951}, + [6399] = {.lex_state = 262}, + [6400] = {.lex_state = 951}, [6401] = {.lex_state = 360}, - [6402] = {.lex_state = 256}, - [6403] = {.lex_state = 494}, - [6404] = {.lex_state = 360}, - [6405] = {.lex_state = 360}, - [6406] = {.lex_state = 948}, - [6407] = {.lex_state = 494}, - [6408] = {.lex_state = 360}, - [6409] = {.lex_state = 360}, - [6410] = {.lex_state = 488}, - [6411] = {.lex_state = 494}, - [6412] = {.lex_state = 360}, - [6413] = {.lex_state = 360}, - [6414] = {.lex_state = 948}, - [6415] = {.lex_state = 494}, - [6416] = {.lex_state = 360}, - [6417] = {.lex_state = 360}, - [6418] = {.lex_state = 948}, - [6419] = {.lex_state = 494}, - [6420] = {.lex_state = 360}, - [6421] = {.lex_state = 360}, - [6422] = {.lex_state = 948}, - [6423] = {.lex_state = 494}, - [6424] = {.lex_state = 360}, - [6425] = {.lex_state = 360}, - [6426] = {.lex_state = 442}, - [6427] = {.lex_state = 494}, - [6428] = {.lex_state = 360}, - [6429] = {.lex_state = 360}, - [6430] = {.lex_state = 494}, - [6431] = {.lex_state = 360}, - [6432] = {.lex_state = 360}, - [6433] = {.lex_state = 360}, - [6434] = {.lex_state = 360}, - [6435] = {.lex_state = 360}, - [6436] = {.lex_state = 360}, - [6437] = {.lex_state = 360}, + [6402] = {.lex_state = 951}, + [6403] = {.lex_state = 480}, + [6404] = {.lex_state = 262}, + [6405] = {.lex_state = 362}, + [6406] = {.lex_state = 262}, + [6407] = {.lex_state = 262}, + [6408] = {.lex_state = 262}, + [6409] = {.lex_state = 262}, + [6410] = {.lex_state = 262}, + [6411] = {.lex_state = 262}, + [6412] = {.lex_state = 262}, + [6413] = {.lex_state = 262}, + [6414] = {.lex_state = 480}, + [6415] = {.lex_state = 951}, + [6416] = {.lex_state = 496}, + [6417] = {.lex_state = 951}, + [6418] = {.lex_state = 360}, + [6419] = {.lex_state = 951}, + [6420] = {.lex_state = 951}, + [6421] = {.lex_state = 951}, + [6422] = {.lex_state = 360}, + [6423] = {.lex_state = 951}, + [6424] = {.lex_state = 951}, + [6425] = {.lex_state = 84}, + [6426] = {.lex_state = 951}, + [6427] = {.lex_state = 951}, + [6428] = {.lex_state = 262}, + [6429] = {.lex_state = 262}, + [6430] = {.lex_state = 262}, + [6431] = {.lex_state = 262}, + [6432] = {.lex_state = 262}, + [6433] = {.lex_state = 262}, + [6434] = {.lex_state = 262}, + [6435] = {.lex_state = 262}, + [6436] = {.lex_state = 496}, + [6437] = {.lex_state = 403}, [6438] = {.lex_state = 360}, - [6439] = {.lex_state = 360}, - [6440] = {.lex_state = 360}, + [6439] = {.lex_state = 951}, + [6440] = {.lex_state = 951}, [6441] = {.lex_state = 360}, - [6442] = {.lex_state = 360}, - [6443] = {.lex_state = 948}, - [6444] = {.lex_state = 488}, - [6445] = {.lex_state = 948}, - [6446] = {.lex_state = 948}, - [6447] = {.lex_state = 947}, - [6448] = {.lex_state = 99}, - [6449] = {.lex_state = 948}, - [6450] = {.lex_state = 948}, - [6451] = {.lex_state = 948}, - [6452] = {.lex_state = 99}, - [6453] = {.lex_state = 360}, - [6454] = {.lex_state = 494}, - [6455] = {.lex_state = 99}, - [6456] = {.lex_state = 99}, - [6457] = {.lex_state = 948}, - [6458] = {.lex_state = 360}, - [6459] = {.lex_state = 503}, - [6460] = {.lex_state = 948}, - [6461] = {.lex_state = 948}, - [6462] = {.lex_state = 514}, - [6463] = {.lex_state = 362}, - [6464] = {.lex_state = 948}, - [6465] = {.lex_state = 256}, - [6466] = {.lex_state = 948}, - [6467] = {.lex_state = 256}, - [6468] = {.lex_state = 948}, - [6469] = {.lex_state = 256}, - [6470] = {.lex_state = 75}, - [6471] = {.lex_state = 437}, - [6472] = {.lex_state = 256}, - [6473] = {.lex_state = 948}, - [6474] = {.lex_state = 360}, - [6475] = {.lex_state = 511}, - [6476] = {.lex_state = 488}, - [6477] = {.lex_state = 948}, - [6478] = {.lex_state = 503}, - [6479] = {.lex_state = 494}, - [6480] = {.lex_state = 488}, - [6481] = {.lex_state = 948}, - [6482] = {.lex_state = 256}, - [6483] = {.lex_state = 948}, - [6484] = {.lex_state = 437}, - [6485] = {.lex_state = 41}, - [6486] = {.lex_state = 256}, - [6487] = {.lex_state = 948}, - [6488] = {.lex_state = 256}, - [6489] = {.lex_state = 256}, - [6490] = {.lex_state = 948}, - [6491] = {.lex_state = 948}, - [6492] = {.lex_state = 948}, - [6493] = {.lex_state = 256}, - [6494] = {.lex_state = 948}, - [6495] = {.lex_state = 336}, - [6496] = {.lex_state = 336}, - [6497] = {.lex_state = 360}, - [6498] = {.lex_state = 256}, - [6499] = {.lex_state = 256}, - [6500] = {.lex_state = 256}, - [6501] = {.lex_state = 256}, - [6502] = {.lex_state = 948}, - [6503] = {.lex_state = 948}, - [6504] = {.lex_state = 948}, - [6505] = {.lex_state = 948}, - [6506] = {.lex_state = 948}, - [6507] = {.lex_state = 948}, - [6508] = {.lex_state = 478}, - [6509] = {.lex_state = 948}, - [6510] = {.lex_state = 948}, - [6511] = {.lex_state = 256}, - [6512] = {.lex_state = 256}, - [6513] = {.lex_state = 256}, - [6514] = {.lex_state = 256}, - [6515] = {.lex_state = 256}, - [6516] = {.lex_state = 256}, - [6517] = {.lex_state = 256}, - [6518] = {.lex_state = 256}, - [6519] = {.lex_state = 494}, - [6520] = {.lex_state = 494}, - [6521] = {.lex_state = 948}, - [6522] = {.lex_state = 360}, - [6523] = {.lex_state = 948}, - [6524] = {.lex_state = 420}, - [6525] = {.lex_state = 420}, - [6526] = {.lex_state = 490}, - [6527] = {.lex_state = 384}, - [6528] = {.lex_state = 336}, - [6529] = {.lex_state = 494}, - [6530] = {.lex_state = 948}, - [6531] = {.lex_state = 336}, - [6532] = {.lex_state = 360}, - [6533] = {.lex_state = 948}, - [6534] = {.lex_state = 948}, - [6535] = {.lex_state = 948}, - [6536] = {.lex_state = 514}, - [6537] = {.lex_state = 437}, - [6538] = {.lex_state = 101}, - [6539] = {.lex_state = 360}, - [6540] = {.lex_state = 437}, - [6541] = {.lex_state = 948}, - [6542] = {.lex_state = 503}, - [6543] = {.lex_state = 503}, - [6544] = {.lex_state = 437}, - [6545] = {.lex_state = 510}, - [6546] = {.lex_state = 442}, - [6547] = {.lex_state = 440}, - [6548] = {.lex_state = 336}, - [6549] = {.lex_state = 336}, - [6550] = {.lex_state = 948}, - [6551] = {.lex_state = 256}, - [6552] = {.lex_state = 948}, - [6553] = {.lex_state = 256}, - [6554] = {.lex_state = 256}, - [6555] = {.lex_state = 256}, - [6556] = {.lex_state = 256}, - [6557] = {.lex_state = 256}, - [6558] = {.lex_state = 256}, - [6559] = {.lex_state = 76}, - [6560] = {.lex_state = 256}, - [6561] = {.lex_state = 101}, - [6562] = {.lex_state = 948}, - [6563] = {.lex_state = 494}, - [6564] = {.lex_state = 360}, - [6565] = {.lex_state = 948}, - [6566] = {.lex_state = 488}, - [6567] = {.lex_state = 256}, - [6568] = {.lex_state = 494}, + [6442] = {.lex_state = 512}, + [6443] = {.lex_state = 951}, + [6444] = {.lex_state = 262}, + [6445] = {.lex_state = 262}, + [6446] = {.lex_state = 262}, + [6447] = {.lex_state = 262}, + [6448] = {.lex_state = 262}, + [6449] = {.lex_state = 262}, + [6450] = {.lex_state = 262}, + [6451] = {.lex_state = 262}, + [6452] = {.lex_state = 951}, + [6453] = {.lex_state = 496}, + [6454] = {.lex_state = 360}, + [6455] = {.lex_state = 951}, + [6456] = {.lex_state = 951}, + [6457] = {.lex_state = 360}, + [6458] = {.lex_state = 262}, + [6459] = {.lex_state = 262}, + [6460] = {.lex_state = 262}, + [6461] = {.lex_state = 262}, + [6462] = {.lex_state = 262}, + [6463] = {.lex_state = 262}, + [6464] = {.lex_state = 262}, + [6465] = {.lex_state = 262}, + [6466] = {.lex_state = 951}, + [6467] = {.lex_state = 496}, + [6468] = {.lex_state = 360}, + [6469] = {.lex_state = 951}, + [6470] = {.lex_state = 951}, + [6471] = {.lex_state = 360}, + [6472] = {.lex_state = 951}, + [6473] = {.lex_state = 262}, + [6474] = {.lex_state = 262}, + [6475] = {.lex_state = 262}, + [6476] = {.lex_state = 262}, + [6477] = {.lex_state = 262}, + [6478] = {.lex_state = 262}, + [6479] = {.lex_state = 262}, + [6480] = {.lex_state = 262}, + [6481] = {.lex_state = 496}, + [6482] = {.lex_state = 360}, + [6483] = {.lex_state = 262}, + [6484] = {.lex_state = 360}, + [6485] = {.lex_state = 492}, + [6486] = {.lex_state = 951}, + [6487] = {.lex_state = 951}, + [6488] = {.lex_state = 262}, + [6489] = {.lex_state = 262}, + [6490] = {.lex_state = 262}, + [6491] = {.lex_state = 262}, + [6492] = {.lex_state = 262}, + [6493] = {.lex_state = 262}, + [6494] = {.lex_state = 262}, + [6495] = {.lex_state = 262}, + [6496] = {.lex_state = 480}, + [6497] = {.lex_state = 496}, + [6498] = {.lex_state = 360}, + [6499] = {.lex_state = 360}, + [6500] = {.lex_state = 951}, + [6501] = {.lex_state = 262}, + [6502] = {.lex_state = 262}, + [6503] = {.lex_state = 262}, + [6504] = {.lex_state = 262}, + [6505] = {.lex_state = 262}, + [6506] = {.lex_state = 496}, + [6507] = {.lex_state = 262}, + [6508] = {.lex_state = 262}, + [6509] = {.lex_state = 446}, + [6510] = {.lex_state = 446}, + [6511] = {.lex_state = 496}, + [6512] = {.lex_state = 360}, + [6513] = {.lex_state = 360}, + [6514] = {.lex_state = 262}, + [6515] = {.lex_state = 262}, + [6516] = {.lex_state = 262}, + [6517] = {.lex_state = 262}, + [6518] = {.lex_state = 262}, + [6519] = {.lex_state = 262}, + [6520] = {.lex_state = 262}, + [6521] = {.lex_state = 262}, + [6522] = {.lex_state = 496}, + [6523] = {.lex_state = 360}, + [6524] = {.lex_state = 360}, + [6525] = {.lex_state = 262}, + [6526] = {.lex_state = 262}, + [6527] = {.lex_state = 262}, + [6528] = {.lex_state = 262}, + [6529] = {.lex_state = 262}, + [6530] = {.lex_state = 262}, + [6531] = {.lex_state = 262}, + [6532] = {.lex_state = 262}, + [6533] = {.lex_state = 496}, + [6534] = {.lex_state = 360}, + [6535] = {.lex_state = 360}, + [6536] = {.lex_state = 262}, + [6537] = {.lex_state = 262}, + [6538] = {.lex_state = 262}, + [6539] = {.lex_state = 262}, + [6540] = {.lex_state = 262}, + [6541] = {.lex_state = 262}, + [6542] = {.lex_state = 262}, + [6543] = {.lex_state = 262}, + [6544] = {.lex_state = 951}, + [6545] = {.lex_state = 496}, + [6546] = {.lex_state = 360}, + [6547] = {.lex_state = 951}, + [6548] = {.lex_state = 360}, + [6549] = {.lex_state = 262}, + [6550] = {.lex_state = 262}, + [6551] = {.lex_state = 262}, + [6552] = {.lex_state = 262}, + [6553] = {.lex_state = 262}, + [6554] = {.lex_state = 262}, + [6555] = {.lex_state = 262}, + [6556] = {.lex_state = 262}, + [6557] = {.lex_state = 496}, + [6558] = {.lex_state = 360}, + [6559] = {.lex_state = 360}, + [6560] = {.lex_state = 492}, + [6561] = {.lex_state = 496}, + [6562] = {.lex_state = 360}, + [6563] = {.lex_state = 360}, + [6564] = {.lex_state = 496}, + [6565] = {.lex_state = 360}, + [6566] = {.lex_state = 360}, + [6567] = {.lex_state = 951}, + [6568] = {.lex_state = 496}, [6569] = {.lex_state = 360}, - [6570] = {.lex_state = 514}, - [6571] = {.lex_state = 360}, - [6572] = {.lex_state = 256}, - [6573] = {.lex_state = 256}, - [6574] = {.lex_state = 437}, - [6575] = {.lex_state = 488}, - [6576] = {.lex_state = 948}, - [6577] = {.lex_state = 256}, - [6578] = {.lex_state = 256}, - [6579] = {.lex_state = 256}, - [6580] = {.lex_state = 256}, - [6581] = {.lex_state = 256}, - [6582] = {.lex_state = 256}, - [6583] = {.lex_state = 256}, - [6584] = {.lex_state = 256}, - [6585] = {.lex_state = 948}, - [6586] = {.lex_state = 102}, - [6587] = {.lex_state = 102}, - [6588] = {.lex_state = 256}, - [6589] = {.lex_state = 948}, - [6590] = {.lex_state = 948}, - [6591] = {.lex_state = 948}, - [6592] = {.lex_state = 948}, - [6593] = {.lex_state = 494}, - [6594] = {.lex_state = 360}, - [6595] = {.lex_state = 948}, - [6596] = {.lex_state = 948}, - [6597] = {.lex_state = 437}, - [6598] = {.lex_state = 256}, + [6570] = {.lex_state = 360}, + [6571] = {.lex_state = 951}, + [6572] = {.lex_state = 496}, + [6573] = {.lex_state = 360}, + [6574] = {.lex_state = 360}, + [6575] = {.lex_state = 496}, + [6576] = {.lex_state = 360}, + [6577] = {.lex_state = 360}, + [6578] = {.lex_state = 496}, + [6579] = {.lex_state = 360}, + [6580] = {.lex_state = 360}, + [6581] = {.lex_state = 951}, + [6582] = {.lex_state = 496}, + [6583] = {.lex_state = 360}, + [6584] = {.lex_state = 360}, + [6585] = {.lex_state = 496}, + [6586] = {.lex_state = 360}, + [6587] = {.lex_state = 360}, + [6588] = {.lex_state = 496}, + [6589] = {.lex_state = 360}, + [6590] = {.lex_state = 360}, + [6591] = {.lex_state = 496}, + [6592] = {.lex_state = 360}, + [6593] = {.lex_state = 360}, + [6594] = {.lex_state = 496}, + [6595] = {.lex_state = 360}, + [6596] = {.lex_state = 360}, + [6597] = {.lex_state = 496}, + [6598] = {.lex_state = 360}, [6599] = {.lex_state = 360}, - [6600] = {.lex_state = 360}, - [6601] = {.lex_state = 948}, - [6602] = {.lex_state = 488}, - [6603] = {.lex_state = 444}, - [6604] = {.lex_state = 360}, - [6605] = {.lex_state = 510}, - [6606] = {.lex_state = 256}, - [6607] = {.lex_state = 948}, + [6600] = {.lex_state = 496}, + [6601] = {.lex_state = 360}, + [6602] = {.lex_state = 360}, + [6603] = {.lex_state = 951}, + [6604] = {.lex_state = 496}, + [6605] = {.lex_state = 360}, + [6606] = {.lex_state = 360}, + [6607] = {.lex_state = 496}, [6608] = {.lex_state = 360}, - [6609] = {.lex_state = 948}, - [6610] = {.lex_state = 256}, - [6611] = {.lex_state = 256}, - [6612] = {.lex_state = 256}, - [6613] = {.lex_state = 43}, - [6614] = {.lex_state = 948}, - [6615] = {.lex_state = 256}, - [6616] = {.lex_state = 256}, - [6617] = {.lex_state = 95}, - [6618] = {.lex_state = 147}, - [6619] = {.lex_state = 443}, - [6620] = {.lex_state = 256}, - [6621] = {.lex_state = 948}, - [6622] = {.lex_state = 147}, - [6623] = {.lex_state = 256}, - [6624] = {.lex_state = 256}, - [6625] = {.lex_state = 256}, - [6626] = {.lex_state = 489}, - [6627] = {.lex_state = 256}, - [6628] = {.lex_state = 256}, - [6629] = {.lex_state = 256}, - [6630] = {.lex_state = 256}, - [6631] = {.lex_state = 443}, - [6632] = {.lex_state = 256}, - [6633] = {.lex_state = 336}, - [6634] = {.lex_state = 95}, - [6635] = {.lex_state = 948}, - [6636] = {.lex_state = 256}, - [6637] = {.lex_state = 336}, - [6638] = {.lex_state = 443}, - [6639] = {.lex_state = 948}, - [6640] = {.lex_state = 948}, - [6641] = {.lex_state = 95}, - [6642] = {.lex_state = 147}, - [6643] = {.lex_state = 443}, - [6644] = {.lex_state = 86}, - [6645] = {.lex_state = 948}, - [6646] = {.lex_state = 256}, - [6647] = {.lex_state = 32}, - [6648] = {.lex_state = 256}, - [6649] = {.lex_state = 256}, - [6650] = {.lex_state = 256}, - [6651] = {.lex_state = 256}, - [6652] = {.lex_state = 948}, - [6653] = {.lex_state = 948}, - [6654] = {.lex_state = 256}, - [6655] = {.lex_state = 256}, - [6656] = {.lex_state = 489}, - [6657] = {.lex_state = 256}, - [6658] = {.lex_state = 256}, - [6659] = {.lex_state = 948}, - [6660] = {.lex_state = 948}, - [6661] = {.lex_state = 948}, - [6662] = {.lex_state = 256}, - [6663] = {.lex_state = 336}, - [6664] = {.lex_state = 256}, - [6665] = {.lex_state = 256}, - [6666] = {.lex_state = 86}, - [6667] = {.lex_state = 443}, - [6668] = {.lex_state = 489}, - [6669] = {.lex_state = 948}, - [6670] = {.lex_state = 948}, - [6671] = {.lex_state = 443}, - [6672] = {.lex_state = 256}, - [6673] = {.lex_state = 948}, - [6674] = {.lex_state = 256}, - [6675] = {.lex_state = 256}, - [6676] = {.lex_state = 256}, - [6677] = {.lex_state = 437}, - [6678] = {.lex_state = 256}, - [6679] = {.lex_state = 256}, - [6680] = {.lex_state = 256}, - [6681] = {.lex_state = 256}, - [6682] = {.lex_state = 34}, - [6683] = {.lex_state = 944}, - [6684] = {.lex_state = 316}, - [6685] = {.lex_state = 926}, - [6686] = {.lex_state = 948}, - [6687] = {.lex_state = 443}, - [6688] = {.lex_state = 256}, - [6689] = {.lex_state = 256}, - [6690] = {.lex_state = 948}, - [6691] = {.lex_state = 256}, - [6692] = {.lex_state = 443}, - [6693] = {.lex_state = 506}, - [6694] = {.lex_state = 256}, - [6695] = {.lex_state = 256}, - [6696] = {.lex_state = 256}, - [6697] = {.lex_state = 256}, - [6698] = {.lex_state = 256}, - [6699] = {.lex_state = 256}, - [6700] = {.lex_state = 256}, - [6701] = {.lex_state = 948}, - [6702] = {.lex_state = 948}, - [6703] = {.lex_state = 256}, - [6704] = {.lex_state = 256}, - [6705] = {.lex_state = 482}, - [6706] = {.lex_state = 256}, - [6707] = {.lex_state = 948}, - [6708] = {.lex_state = 948}, - [6709] = {.lex_state = 506}, - [6710] = {.lex_state = 256}, - [6711] = {.lex_state = 443}, - [6712] = {.lex_state = 948}, - [6713] = {.lex_state = 256}, - [6714] = {.lex_state = 443}, - [6715] = {.lex_state = 256}, - [6716] = {.lex_state = 443}, - [6717] = {.lex_state = 256}, - [6718] = {.lex_state = 256}, - [6719] = {.lex_state = 256}, - [6720] = {.lex_state = 256}, - [6721] = {.lex_state = 95}, - [6722] = {.lex_state = 256}, - [6723] = {.lex_state = 256}, - [6724] = {.lex_state = 256}, - [6725] = {.lex_state = 256}, - [6726] = {.lex_state = 256}, - [6727] = {.lex_state = 256}, - [6728] = {.lex_state = 948}, - [6729] = {.lex_state = 256}, - [6730] = {.lex_state = 256}, - [6731] = {.lex_state = 443}, - [6732] = {.lex_state = 443}, - [6733] = {.lex_state = 256}, - [6734] = {.lex_state = 948}, - [6735] = {.lex_state = 256}, - [6736] = {.lex_state = 256}, - [6737] = {.lex_state = 256}, - [6738] = {.lex_state = 256}, - [6739] = {.lex_state = 948}, - [6740] = {.lex_state = 256}, - [6741] = {.lex_state = 256}, - [6742] = {.lex_state = 402}, - [6743] = {.lex_state = 256}, - [6744] = {.lex_state = 948}, - [6745] = {.lex_state = 948}, - [6746] = {.lex_state = 948}, - [6747] = {.lex_state = 32}, - [6748] = {.lex_state = 489}, - [6749] = {.lex_state = 256}, - [6750] = {.lex_state = 948}, - [6751] = {.lex_state = 443}, - [6752] = {.lex_state = 256}, - [6753] = {.lex_state = 256}, - [6754] = {.lex_state = 256}, - [6755] = {.lex_state = 948}, - [6756] = {.lex_state = 443}, - [6757] = {.lex_state = 256}, - [6758] = {.lex_state = 948}, - [6759] = {.lex_state = 256}, - [6760] = {.lex_state = 256}, - [6761] = {.lex_state = 256}, - [6762] = {.lex_state = 256}, - [6763] = {.lex_state = 489}, - [6764] = {.lex_state = 256}, - [6765] = {.lex_state = 256}, - [6766] = {.lex_state = 948}, - [6767] = {.lex_state = 32}, - [6768] = {.lex_state = 256}, - [6769] = {.lex_state = 256}, - [6770] = {.lex_state = 95}, - [6771] = {.lex_state = 95}, - [6772] = {.lex_state = 95}, - [6773] = {.lex_state = 443}, - [6774] = {.lex_state = 95}, - [6775] = {.lex_state = 266}, - [6776] = {.lex_state = 95}, - [6777] = {.lex_state = 266}, - [6778] = {.lex_state = 443}, - [6779] = {.lex_state = 256}, - [6780] = {.lex_state = 95}, - [6781] = {.lex_state = 256}, - [6782] = {.lex_state = 256}, - [6783] = {.lex_state = 256}, - [6784] = {.lex_state = 948}, - [6785] = {.lex_state = 256}, - [6786] = {.lex_state = 948}, - [6787] = {.lex_state = 256}, - [6788] = {.lex_state = 256}, - [6789] = {.lex_state = 489}, - [6790] = {.lex_state = 256}, - [6791] = {.lex_state = 948}, - [6792] = {.lex_state = 256}, - [6793] = {.lex_state = 948}, - [6794] = {.lex_state = 948}, - [6795] = {.lex_state = 443}, - [6796] = {.lex_state = 256}, - [6797] = {.lex_state = 443}, - [6798] = {.lex_state = 256}, - [6799] = {.lex_state = 256}, - [6800] = {.lex_state = 256}, - [6801] = {.lex_state = 256}, - [6802] = {.lex_state = 256}, - [6803] = {.lex_state = 256}, - [6804] = {.lex_state = 256}, - [6805] = {.lex_state = 489}, - [6806] = {.lex_state = 256}, - [6807] = {.lex_state = 256}, - [6808] = {.lex_state = 948}, - [6809] = {.lex_state = 86}, - [6810] = {.lex_state = 948}, - [6811] = {.lex_state = 256}, - [6812] = {.lex_state = 948}, - [6813] = {.lex_state = 256}, - [6814] = {.lex_state = 948}, - [6815] = {.lex_state = 256}, - [6816] = {.lex_state = 256}, - [6817] = {.lex_state = 256}, - [6818] = {.lex_state = 256}, - [6819] = {.lex_state = 948}, - [6820] = {.lex_state = 504}, - [6821] = {.lex_state = 256}, - [6822] = {.lex_state = 256}, - [6823] = {.lex_state = 256}, - [6824] = {.lex_state = 256}, - [6825] = {.lex_state = 948}, - [6826] = {.lex_state = 948}, - [6827] = {.lex_state = 256}, - [6828] = {.lex_state = 948}, - [6829] = {.lex_state = 256}, - [6830] = {.lex_state = 256}, - [6831] = {.lex_state = 256}, - [6832] = {.lex_state = 256}, - [6833] = {.lex_state = 95}, - [6834] = {.lex_state = 948}, - [6835] = {.lex_state = 256}, - [6836] = {.lex_state = 256}, - [6837] = {.lex_state = 256}, - [6838] = {.lex_state = 32}, - [6839] = {.lex_state = 489}, - [6840] = {.lex_state = 948}, - [6841] = {.lex_state = 948}, - [6842] = {.lex_state = 948}, - [6843] = {.lex_state = 948}, - [6844] = {.lex_state = 256}, - [6845] = {.lex_state = 948}, - [6846] = {.lex_state = 256}, - [6847] = {.lex_state = 948}, - [6848] = {.lex_state = 256}, - [6849] = {.lex_state = 256}, - [6850] = {.lex_state = 256}, - [6851] = {.lex_state = 256}, - [6852] = {.lex_state = 336}, - [6853] = {.lex_state = 256}, - [6854] = {.lex_state = 256}, - [6855] = {.lex_state = 256}, - [6856] = {.lex_state = 948}, - [6857] = {.lex_state = 948}, - [6858] = {.lex_state = 478}, - [6859] = {.lex_state = 506}, - [6860] = {.lex_state = 256}, - [6861] = {.lex_state = 256}, - [6862] = {.lex_state = 256}, - [6863] = {.lex_state = 256}, - [6864] = {.lex_state = 256}, - [6865] = {.lex_state = 256}, - [6866] = {.lex_state = 256}, - [6867] = {.lex_state = 256}, - [6868] = {.lex_state = 256}, - [6869] = {.lex_state = 256}, - [6870] = {.lex_state = 256}, - [6871] = {.lex_state = 256}, - [6872] = {.lex_state = 443}, - [6873] = {.lex_state = 506}, - [6874] = {.lex_state = 256}, - [6875] = {.lex_state = 256}, - [6876] = {.lex_state = 256}, - [6877] = {.lex_state = 256}, - [6878] = {.lex_state = 147}, - [6879] = {.lex_state = 443}, - [6880] = {.lex_state = 256}, - [6881] = {.lex_state = 256}, - [6882] = {.lex_state = 85}, - [6883] = {.lex_state = 256}, - [6884] = {.lex_state = 256}, - [6885] = {.lex_state = 256}, - [6886] = {.lex_state = 948}, - [6887] = {.lex_state = 256}, - [6888] = {.lex_state = 256}, - [6889] = {.lex_state = 95}, - [6890] = {.lex_state = 948}, - [6891] = {.lex_state = 256}, - [6892] = {.lex_state = 256}, - [6893] = {.lex_state = 948}, - [6894] = {.lex_state = 256}, - [6895] = {.lex_state = 948}, - [6896] = {.lex_state = 948}, - [6897] = {.lex_state = 948}, - [6898] = {.lex_state = 443}, - [6899] = {.lex_state = 360}, - [6900] = {.lex_state = 948}, - [6901] = {.lex_state = 316}, - [6902] = {.lex_state = 516}, - [6903] = {.lex_state = 443}, - [6904] = {.lex_state = 256}, - [6905] = {.lex_state = 443}, - [6906] = {.lex_state = 948}, - [6907] = {.lex_state = 948}, - [6908] = {.lex_state = 948}, - [6909] = {.lex_state = 948}, - [6910] = {.lex_state = 316}, - [6911] = {.lex_state = 256}, - [6912] = {.lex_state = 948}, - [6913] = {.lex_state = 478}, - [6914] = {.lex_state = 95}, - [6915] = {.lex_state = 948}, - [6916] = {.lex_state = 336}, - [6917] = {.lex_state = 443}, - [6918] = {.lex_state = 489}, - [6919] = {.lex_state = 481}, - [6920] = {.lex_state = 256}, - [6921] = {.lex_state = 147}, - [6922] = {.lex_state = 443}, - [6923] = {.lex_state = 86}, - [6924] = {.lex_state = 316}, - [6925] = {.lex_state = 256}, - [6926] = {.lex_state = 316}, - [6927] = {.lex_state = 383}, - [6928] = {.lex_state = 948}, - [6929] = {.lex_state = 97}, - [6930] = {.lex_state = 131}, - [6931] = {.lex_state = 948}, - [6932] = {.lex_state = 256}, - [6933] = {.lex_state = 256}, - [6934] = {.lex_state = 97}, - [6935] = {.lex_state = 443}, - [6936] = {.lex_state = 86}, - [6937] = {.lex_state = 86}, - [6938] = {.lex_state = 97}, - [6939] = {.lex_state = 32}, - [6940] = {.lex_state = 256}, - [6941] = {.lex_state = 948}, - [6942] = {.lex_state = 948}, - [6943] = {.lex_state = 948}, - [6944] = {.lex_state = 948}, - [6945] = {.lex_state = 95}, - [6946] = {.lex_state = 256}, - [6947] = {.lex_state = 32}, - [6948] = {.lex_state = 948}, - [6949] = {.lex_state = 336}, - [6950] = {.lex_state = 316}, - [6951] = {.lex_state = 948}, - [6952] = {.lex_state = 256}, - [6953] = {.lex_state = 256}, - [6954] = {.lex_state = 147}, - [6955] = {.lex_state = 86}, - [6956] = {.lex_state = 336}, - [6957] = {.lex_state = 948}, - [6958] = {.lex_state = 256}, - [6959] = {.lex_state = 442}, - [6960] = {.lex_state = 515}, - [6961] = {.lex_state = 948}, - [6962] = {.lex_state = 948}, - [6963] = {.lex_state = 256}, - [6964] = {.lex_state = 948}, - [6965] = {.lex_state = 948}, - [6966] = {.lex_state = 948}, - [6967] = {.lex_state = 256}, - [6968] = {.lex_state = 256}, - [6969] = {.lex_state = 948}, - [6970] = {.lex_state = 443}, - [6971] = {.lex_state = 478}, - [6972] = {.lex_state = 256}, - [6973] = {.lex_state = 948}, - [6974] = {.lex_state = 478}, - [6975] = {.lex_state = 516}, - [6976] = {.lex_state = 948}, - [6977] = {.lex_state = 948}, - [6978] = {.lex_state = 515}, - [6979] = {.lex_state = 948}, - [6980] = {.lex_state = 948}, - [6981] = {.lex_state = 948}, - [6982] = {.lex_state = 948}, - [6983] = {.lex_state = 948}, - [6984] = {.lex_state = 443}, - [6985] = {.lex_state = 948}, - [6986] = {.lex_state = 480}, - [6987] = {.lex_state = 443}, - [6988] = {.lex_state = 948}, - [6989] = {.lex_state = 948}, - [6990] = {.lex_state = 147}, - [6991] = {.lex_state = 443}, - [6992] = {.lex_state = 948}, - [6993] = {.lex_state = 256}, - [6994] = {.lex_state = 256}, - [6995] = {.lex_state = 256}, - [6996] = {.lex_state = 256}, - [6997] = {.lex_state = 256}, - [6998] = {.lex_state = 256}, - [6999] = {.lex_state = 256}, - [7000] = {.lex_state = 256}, - [7001] = {.lex_state = 478}, - [7002] = {.lex_state = 256}, - [7003] = {.lex_state = 256}, - [7004] = {.lex_state = 256}, - [7005] = {.lex_state = 256}, - [7006] = {.lex_state = 316}, - [7007] = {.lex_state = 508}, - [7008] = {.lex_state = 97}, - [7009] = {.lex_state = 316}, - [7010] = {.lex_state = 131}, - [7011] = {.lex_state = 32}, - [7012] = {.lex_state = 948}, - [7013] = {.lex_state = 256}, - [7014] = {.lex_state = 948}, - [7015] = {.lex_state = 948}, - [7016] = {.lex_state = 948}, - [7017] = {.lex_state = 948}, - [7018] = {.lex_state = 948}, - [7019] = {.lex_state = 256}, - [7020] = {.lex_state = 256}, - [7021] = {.lex_state = 316}, - [7022] = {.lex_state = 948}, - [7023] = {.lex_state = 256}, - [7024] = {.lex_state = 316}, - [7025] = {.lex_state = 489}, - [7026] = {.lex_state = 948}, - [7027] = {.lex_state = 256}, - [7028] = {.lex_state = 926}, - [7029] = {.lex_state = 948}, - [7030] = {.lex_state = 948}, - [7031] = {.lex_state = 256}, - [7032] = {.lex_state = 948}, - [7033] = {.lex_state = 948}, - [7034] = {.lex_state = 316}, - [7035] = {.lex_state = 316}, - [7036] = {.lex_state = 948}, - [7037] = {.lex_state = 948}, - [7038] = {.lex_state = 948}, - [7039] = {.lex_state = 147}, - [7040] = {.lex_state = 948}, - [7041] = {.lex_state = 948}, - [7042] = {.lex_state = 316}, - [7043] = {.lex_state = 316}, - [7044] = {.lex_state = 948}, - [7045] = {.lex_state = 948}, - [7046] = {.lex_state = 948}, - [7047] = {.lex_state = 948}, - [7048] = {.lex_state = 948}, - [7049] = {.lex_state = 316}, - [7050] = {.lex_state = 948}, - [7051] = {.lex_state = 316}, - [7052] = {.lex_state = 948}, - [7053] = {.lex_state = 948}, - [7054] = {.lex_state = 478}, - [7055] = {.lex_state = 948}, - [7056] = {.lex_state = 948}, - [7057] = {.lex_state = 316}, - [7058] = {.lex_state = 97}, - [7059] = {.lex_state = 316}, - [7060] = {.lex_state = 948}, - [7061] = {.lex_state = 948}, - [7062] = {.lex_state = 948}, - [7063] = {.lex_state = 948}, - [7064] = {.lex_state = 316}, - [7065] = {.lex_state = 316}, - [7066] = {.lex_state = 948}, - [7067] = {.lex_state = 948}, - [7068] = {.lex_state = 948}, - [7069] = {.lex_state = 948}, - [7070] = {.lex_state = 316}, - [7071] = {.lex_state = 131}, - [7072] = {.lex_state = 948}, - [7073] = {.lex_state = 316}, - [7074] = {.lex_state = 948}, - [7075] = {.lex_state = 948}, - [7076] = {.lex_state = 948}, - [7077] = {.lex_state = 948}, - [7078] = {.lex_state = 316}, - [7079] = {.lex_state = 948}, - [7080] = {.lex_state = 316}, - [7081] = {.lex_state = 948}, - [7082] = {.lex_state = 948}, - [7083] = {.lex_state = 443}, - [7084] = {.lex_state = 948}, - [7085] = {.lex_state = 948}, - [7086] = {.lex_state = 316}, - [7087] = {.lex_state = 316}, - [7088] = {.lex_state = 443}, - [7089] = {.lex_state = 948}, - [7090] = {.lex_state = 948}, - [7091] = {.lex_state = 948}, - [7092] = {.lex_state = 948}, - [7093] = {.lex_state = 316}, - [7094] = {.lex_state = 478}, - [7095] = {.lex_state = 316}, - [7096] = {.lex_state = 948}, - [7097] = {.lex_state = 948}, - [7098] = {.lex_state = 948}, - [7099] = {.lex_state = 147}, - [7100] = {.lex_state = 948}, - [7101] = {.lex_state = 948}, - [7102] = {.lex_state = 316}, - [7103] = {.lex_state = 316}, - [7104] = {.lex_state = 948}, - [7105] = {.lex_state = 948}, - [7106] = {.lex_state = 948}, - [7107] = {.lex_state = 948}, - [7108] = {.lex_state = 948}, - [7109] = {.lex_state = 316}, - [7110] = {.lex_state = 316}, - [7111] = {.lex_state = 443}, - [7112] = {.lex_state = 948}, - [7113] = {.lex_state = 948}, - [7114] = {.lex_state = 97}, - [7115] = {.lex_state = 948}, - [7116] = {.lex_state = 948}, - [7117] = {.lex_state = 316}, - [7118] = {.lex_state = 316}, - [7119] = {.lex_state = 948}, - [7120] = {.lex_state = 948}, - [7121] = {.lex_state = 944}, - [7122] = {.lex_state = 948}, - [7123] = {.lex_state = 948}, - [7124] = {.lex_state = 316}, - [7125] = {.lex_state = 316}, - [7126] = {.lex_state = 256}, - [7127] = {.lex_state = 948}, - [7128] = {.lex_state = 948}, - [7129] = {.lex_state = 948}, - [7130] = {.lex_state = 948}, - [7131] = {.lex_state = 948}, - [7132] = {.lex_state = 316}, - [7133] = {.lex_state = 316}, - [7134] = {.lex_state = 948}, - [7135] = {.lex_state = 948}, - [7136] = {.lex_state = 948}, - [7137] = {.lex_state = 948}, - [7138] = {.lex_state = 316}, - [7139] = {.lex_state = 316}, - [7140] = {.lex_state = 948}, - [7141] = {.lex_state = 948}, - [7142] = {.lex_state = 948}, - [7143] = {.lex_state = 948}, - [7144] = {.lex_state = 316}, - [7145] = {.lex_state = 316}, - [7146] = {.lex_state = 948}, - [7147] = {.lex_state = 948}, - [7148] = {.lex_state = 256}, - [7149] = {.lex_state = 948}, - [7150] = {.lex_state = 948}, - [7151] = {.lex_state = 316}, - [7152] = {.lex_state = 316}, - [7153] = {.lex_state = 256}, - [7154] = {.lex_state = 948}, - [7155] = {.lex_state = 948}, - [7156] = {.lex_state = 256}, - [7157] = {.lex_state = 948}, - [7158] = {.lex_state = 948}, - [7159] = {.lex_state = 256}, - [7160] = {.lex_state = 256}, - [7161] = {.lex_state = 256}, - [7162] = {.lex_state = 256}, - [7163] = {.lex_state = 256}, - [7164] = {.lex_state = 948}, - [7165] = {.lex_state = 949}, - [7166] = {.lex_state = 506}, - [7167] = {.lex_state = 256}, - [7168] = {.lex_state = 336}, - [7169] = {.lex_state = 948}, - [7170] = {.lex_state = 34}, - [7171] = {.lex_state = 131}, - [7172] = {.lex_state = 504}, - [7173] = {.lex_state = 948}, - [7174] = {.lex_state = 256}, - [7175] = {.lex_state = 948}, - [7176] = {.lex_state = 516}, - [7177] = {.lex_state = 948}, - [7178] = {.lex_state = 256}, - [7179] = {.lex_state = 948}, - [7180] = {.lex_state = 948}, - [7181] = {.lex_state = 256}, - [7182] = {.lex_state = 948}, - [7183] = {.lex_state = 256}, - [7184] = {.lex_state = 948}, - [7185] = {.lex_state = 948}, - [7186] = {.lex_state = 256}, - [7187] = {.lex_state = 4783}, - [7188] = {.lex_state = 948}, - [7189] = {.lex_state = 254}, - [7190] = {.lex_state = 948}, - [7191] = {.lex_state = 256}, - [7192] = {.lex_state = 948}, - [7193] = {.lex_state = 373}, - [7194] = {.lex_state = 254}, - [7195] = {.lex_state = 256}, - [7196] = {.lex_state = 948}, - [7197] = {.lex_state = 513}, - [7198] = {.lex_state = 256}, - [7199] = {.lex_state = 4783}, - [7200] = {.lex_state = 4783}, - [7201] = {.lex_state = 443}, - [7202] = {.lex_state = 256}, - [7203] = {.lex_state = 4785}, - [7204] = {.lex_state = 4787}, - [7205] = {.lex_state = 948}, - [7206] = {.lex_state = 948}, - [7207] = {.lex_state = 515}, - [7208] = {.lex_state = 256}, - [7209] = {.lex_state = 256}, - [7210] = {.lex_state = 4785}, - [7211] = {.lex_state = 254}, - [7212] = {.lex_state = 254}, - [7213] = {.lex_state = 256}, - [7214] = {.lex_state = 948}, - [7215] = {.lex_state = 256}, - [7216] = {.lex_state = 4785}, - [7217] = {.lex_state = 256}, - [7218] = {.lex_state = 948}, - [7219] = {.lex_state = 948}, - [7220] = {.lex_state = 504}, - [7221] = {.lex_state = 512}, - [7222] = {.lex_state = 3530}, - [7223] = {.lex_state = 254}, - [7224] = {.lex_state = 4783}, - [7225] = {.lex_state = 4783}, - [7226] = {.lex_state = 256}, - [7227] = {.lex_state = 95}, - [7228] = {.lex_state = 4787}, - [7229] = {.lex_state = 4783}, - [7230] = {.lex_state = 4783}, - [7231] = {.lex_state = 948}, - [7232] = {.lex_state = 4787}, - [7233] = {.lex_state = 256}, - [7234] = {.lex_state = 4785}, - [7235] = {.lex_state = 944}, - [7236] = {.lex_state = 949}, - [7237] = {.lex_state = 4783}, - [7238] = {.lex_state = 256}, - [7239] = {.lex_state = 4783}, - [7240] = {.lex_state = 256}, - [7241] = {.lex_state = 256}, - [7242] = {.lex_state = 256}, - [7243] = {.lex_state = 948}, - [7244] = {.lex_state = 256}, - [7245] = {.lex_state = 256}, - [7246] = {.lex_state = 256}, - [7247] = {.lex_state = 4783}, - [7248] = {.lex_state = 254}, - [7249] = {.lex_state = 949}, - [7250] = {.lex_state = 4785}, - [7251] = {.lex_state = 256}, - [7252] = {.lex_state = 254}, - [7253] = {.lex_state = 948}, - [7254] = {.lex_state = 4783}, - [7255] = {.lex_state = 256}, - [7256] = {.lex_state = 256}, - [7257] = {.lex_state = 4783}, - [7258] = {.lex_state = 948}, - [7259] = {.lex_state = 948}, - [7260] = {.lex_state = 948}, - [7261] = {.lex_state = 254}, - [7262] = {.lex_state = 4783}, - [7263] = {.lex_state = 948}, - [7264] = {.lex_state = 256}, - [7265] = {.lex_state = 131}, - [7266] = {.lex_state = 4783}, - [7267] = {.lex_state = 948}, - [7268] = {.lex_state = 4783}, - [7269] = {.lex_state = 948}, - [7270] = {.lex_state = 948}, - [7271] = {.lex_state = 948}, - [7272] = {.lex_state = 256}, - [7273] = {.lex_state = 948}, - [7274] = {.lex_state = 948}, - [7275] = {.lex_state = 4783}, - [7276] = {.lex_state = 256}, - [7277] = {.lex_state = 948}, - [7278] = {.lex_state = 948}, - [7279] = {.lex_state = 256}, - [7280] = {.lex_state = 131}, - [7281] = {.lex_state = 4783}, - [7282] = {.lex_state = 4783}, - [7283] = {.lex_state = 4783}, - [7284] = {.lex_state = 948}, - [7285] = {.lex_state = 4787}, - [7286] = {.lex_state = 4783}, - [7287] = {.lex_state = 948}, - [7288] = {.lex_state = 256}, - [7289] = {.lex_state = 4783}, - [7290] = {.lex_state = 948}, - [7291] = {.lex_state = 949}, - [7292] = {.lex_state = 254}, - [7293] = {.lex_state = 131}, - [7294] = {.lex_state = 256}, - [7295] = {.lex_state = 256}, - [7296] = {.lex_state = 512}, - [7297] = {.lex_state = 948}, - [7298] = {.lex_state = 4783}, - [7299] = {.lex_state = 4783}, - [7300] = {.lex_state = 948}, - [7301] = {.lex_state = 373}, - [7302] = {.lex_state = 254}, - [7303] = {.lex_state = 4783}, - [7304] = {.lex_state = 948}, - [7305] = {.lex_state = 256}, - [7306] = {.lex_state = 254}, - [7307] = {.lex_state = 373}, - [7308] = {.lex_state = 4783}, - [7309] = {.lex_state = 4783}, - [7310] = {.lex_state = 4787}, - [7311] = {.lex_state = 131}, - [7312] = {.lex_state = 254}, - [7313] = {.lex_state = 256}, - [7314] = {.lex_state = 512}, - [7315] = {.lex_state = 512}, - [7316] = {.lex_state = 256}, - [7317] = {.lex_state = 254}, - [7318] = {.lex_state = 948}, - [7319] = {.lex_state = 131}, - [7320] = {.lex_state = 254}, - [7321] = {.lex_state = 948}, - [7322] = {.lex_state = 95}, - [7323] = {.lex_state = 254}, - [7324] = {.lex_state = 131}, - [7325] = {.lex_state = 4787}, - [7326] = {.lex_state = 30}, - [7327] = {.lex_state = 131}, - [7328] = {.lex_state = 254}, - [7329] = {.lex_state = 43}, - [7330] = {.lex_state = 256}, - [7331] = {.lex_state = 948}, - [7332] = {.lex_state = 948}, - [7333] = {.lex_state = 948}, - [7334] = {.lex_state = 4787}, - [7335] = {.lex_state = 4787}, - [7336] = {.lex_state = 948}, - [7337] = {.lex_state = 256}, - [7338] = {.lex_state = 4785}, - [7339] = {.lex_state = 948}, - [7340] = {.lex_state = 949}, - [7341] = {.lex_state = 948}, - [7342] = {.lex_state = 948}, - [7343] = {.lex_state = 256}, - [7344] = {.lex_state = 131}, - [7345] = {.lex_state = 256}, - [7346] = {.lex_state = 4783}, - [7347] = {.lex_state = 4783}, - [7348] = {.lex_state = 256}, - [7349] = {.lex_state = 256}, - [7350] = {.lex_state = 948}, - [7351] = {.lex_state = 512}, - [7352] = {.lex_state = 4783}, - [7353] = {.lex_state = 926}, - [7354] = {.lex_state = 948}, - [7355] = {.lex_state = 256}, - [7356] = {.lex_state = 30}, - [7357] = {.lex_state = 492}, - [7358] = {.lex_state = 948}, - [7359] = {.lex_state = 4783}, - [7360] = {.lex_state = 4783}, - [7361] = {.lex_state = 4785}, - [7362] = {.lex_state = 4787}, - [7363] = {.lex_state = 948}, - [7364] = {.lex_state = 4783}, - [7365] = {.lex_state = 4783}, - [7366] = {.lex_state = 4785}, - [7367] = {.lex_state = 4785}, - [7368] = {.lex_state = 131}, - [7369] = {.lex_state = 4783}, - [7370] = {.lex_state = 4783}, - [7371] = {.lex_state = 147}, - [7372] = {.lex_state = 256}, - [7373] = {.lex_state = 131}, - [7374] = {.lex_state = 948}, - [7375] = {.lex_state = 4783}, - [7376] = {.lex_state = 4783}, - [7377] = {.lex_state = 501}, - [7378] = {.lex_state = 502}, - [7379] = {.lex_state = 948}, - [7380] = {.lex_state = 948}, - [7381] = {.lex_state = 948}, - [7382] = {.lex_state = 948}, - [7383] = {.lex_state = 948}, - [7384] = {.lex_state = 948}, - [7385] = {.lex_state = 948}, - [7386] = {.lex_state = 948}, - [7387] = {.lex_state = 948}, - [7388] = {.lex_state = 131}, - [7389] = {.lex_state = 948}, - [7390] = {.lex_state = 947}, - [7391] = {.lex_state = 944}, - [7392] = {.lex_state = 948}, - [7393] = {.lex_state = 97}, - [7394] = {.lex_state = 948}, - [7395] = {.lex_state = 948}, - [7396] = {.lex_state = 948}, - [7397] = {.lex_state = 131}, - [7398] = {.lex_state = 1058}, - [7399] = {.lex_state = 948}, - [7400] = {.lex_state = 1058}, - [7401] = {.lex_state = 948}, - [7402] = {.lex_state = 948}, - [7403] = {.lex_state = 948}, - [7404] = {.lex_state = 948}, - [7405] = {.lex_state = 948}, - [7406] = {.lex_state = 948}, - [7407] = {.lex_state = 500}, - [7408] = {.lex_state = 147}, - [7409] = {.lex_state = 4802}, - [7410] = {.lex_state = 97}, - [7411] = {.lex_state = 948}, - [7412] = {.lex_state = 4787}, - [7413] = {.lex_state = 948}, - [7414] = {.lex_state = 949}, - [7415] = {.lex_state = 3530}, - [7416] = {.lex_state = 948}, - [7417] = {.lex_state = 948}, - [7418] = {.lex_state = 948}, - [7419] = {.lex_state = 948}, - [7420] = {.lex_state = 131}, - [7421] = {.lex_state = 944}, - [7422] = {.lex_state = 948}, - [7423] = {.lex_state = 948}, - [7424] = {.lex_state = 948}, - [7425] = {.lex_state = 944}, - [7426] = {.lex_state = 948}, - [7427] = {.lex_state = 948}, - [7428] = {.lex_state = 513}, - [7429] = {.lex_state = 948}, - [7430] = {.lex_state = 948}, - [7431] = {.lex_state = 948}, - [7432] = {.lex_state = 948}, - [7433] = {.lex_state = 43}, - [7434] = {.lex_state = 948}, - [7435] = {.lex_state = 948}, - [7436] = {.lex_state = 948}, - [7437] = {.lex_state = 948}, - [7438] = {.lex_state = 948}, - [7439] = {.lex_state = 4783}, - [7440] = {.lex_state = 948}, - [7441] = {.lex_state = 948}, - [7442] = {.lex_state = 197}, - [7443] = {.lex_state = 948}, - [7444] = {.lex_state = 948}, - [7445] = {.lex_state = 97}, - [7446] = {.lex_state = 4785}, - [7447] = {.lex_state = 948}, - [7448] = {.lex_state = 948}, - [7449] = {.lex_state = 97}, - [7450] = {.lex_state = 944}, - [7451] = {.lex_state = 948}, - [7452] = {.lex_state = 948}, - [7453] = {.lex_state = 948}, - [7454] = {.lex_state = 515}, - [7455] = {.lex_state = 948}, - [7456] = {.lex_state = 97}, - [7457] = {.lex_state = 948}, - [7458] = {.lex_state = 97}, - [7459] = {.lex_state = 944}, - [7460] = {.lex_state = 948}, - [7461] = {.lex_state = 131}, - [7462] = {.lex_state = 944}, - [7463] = {.lex_state = 131}, - [7464] = {.lex_state = 922}, - [7465] = {.lex_state = 944}, - [7466] = {.lex_state = 948}, - [7467] = {.lex_state = 97}, - [7468] = {.lex_state = 131}, - [7469] = {.lex_state = 502}, - [7470] = {.lex_state = 513}, - [7471] = {.lex_state = 948}, - [7472] = {.lex_state = 948}, - [7473] = {.lex_state = 948}, - [7474] = {.lex_state = 948}, - [7475] = {.lex_state = 948}, - [7476] = {.lex_state = 948}, - [7477] = {.lex_state = 948}, - [7478] = {.lex_state = 948}, - [7479] = {.lex_state = 948}, - [7480] = {.lex_state = 131}, - [7481] = {.lex_state = 948}, - [7482] = {.lex_state = 948}, - [7483] = {.lex_state = 147}, - [7484] = {.lex_state = 97}, - [7485] = {.lex_state = 948}, - [7486] = {.lex_state = 948}, - [7487] = {.lex_state = 948}, - [7488] = {.lex_state = 949}, - [7489] = {.lex_state = 948}, - [7490] = {.lex_state = 948}, - [7491] = {.lex_state = 97}, - [7492] = {.lex_state = 43}, - [7493] = {.lex_state = 948}, - [7494] = {.lex_state = 131}, - [7495] = {.lex_state = 948}, - [7496] = {.lex_state = 147}, - [7497] = {.lex_state = 131}, - [7498] = {.lex_state = 97}, - [7499] = {.lex_state = 131}, - [7500] = {.lex_state = 502}, - [7501] = {.lex_state = 948}, - [7502] = {.lex_state = 948}, - [7503] = {.lex_state = 131}, - [7504] = {.lex_state = 147}, - [7505] = {.lex_state = 948}, - [7506] = {.lex_state = 948}, - [7507] = {.lex_state = 43}, - [7508] = {.lex_state = 501}, - [7509] = {.lex_state = 948}, - [7510] = {.lex_state = 948}, - [7511] = {.lex_state = 97}, - [7512] = {.lex_state = 948}, - [7513] = {.lex_state = 948}, - [7514] = {.lex_state = 948}, - [7515] = {.lex_state = 948}, - [7516] = {.lex_state = 97}, - [7517] = {.lex_state = 500}, - [7518] = {.lex_state = 513}, - [7519] = {.lex_state = 948}, - [7520] = {.lex_state = 947}, - [7521] = {.lex_state = 948}, - [7522] = {.lex_state = 948}, - [7523] = {.lex_state = 948}, - [7524] = {.lex_state = 97}, - [7525] = {.lex_state = 948}, - [7526] = {.lex_state = 948}, - [7527] = {.lex_state = 131}, - [7528] = {.lex_state = 948}, - [7529] = {.lex_state = 948}, - [7530] = {.lex_state = 948}, - [7531] = {.lex_state = 948}, - [7532] = {.lex_state = 948}, - [7533] = {.lex_state = 948}, - [7534] = {.lex_state = 948}, - [7535] = {.lex_state = 97}, - [7536] = {.lex_state = 948}, - [7537] = {.lex_state = 97}, - [7538] = {.lex_state = 147}, - [7539] = {.lex_state = 131}, - [7540] = {.lex_state = 4785}, - [7541] = {.lex_state = 948}, - [7542] = {.lex_state = 948}, - [7543] = {.lex_state = 948}, - [7544] = {.lex_state = 147}, - [7545] = {.lex_state = 944}, - [7546] = {.lex_state = 43}, - [7547] = {.lex_state = 948}, - [7548] = {.lex_state = 948}, - [7549] = {.lex_state = 147}, - [7550] = {.lex_state = 97}, - [7551] = {.lex_state = 948}, - [7552] = {.lex_state = 383}, - [7553] = {.lex_state = 948}, - [7554] = {.lex_state = 948}, - [7555] = {.lex_state = 948}, - [7556] = {.lex_state = 948}, - [7557] = {.lex_state = 948}, - [7558] = {.lex_state = 948}, - [7559] = {.lex_state = 948}, - [7560] = {.lex_state = 147}, - [7561] = {.lex_state = 948}, - [7562] = {.lex_state = 97}, - [7563] = {.lex_state = 948}, - [7564] = {.lex_state = 948}, - [7565] = {.lex_state = 500}, - [7566] = {.lex_state = 948}, - [7567] = {.lex_state = 4785}, - [7568] = {.lex_state = 948}, - [7569] = {.lex_state = 948}, - [7570] = {.lex_state = 948}, - [7571] = {.lex_state = 498}, - [7572] = {.lex_state = 948}, - [7573] = {.lex_state = 97}, - [7574] = {.lex_state = 948}, - [7575] = {.lex_state = 948}, - [7576] = {.lex_state = 948}, - [7577] = {.lex_state = 948}, - [7578] = {.lex_state = 948}, - [7579] = {.lex_state = 948}, - [7580] = {.lex_state = 131}, - [7581] = {.lex_state = 948}, - [7582] = {.lex_state = 500}, - [7583] = {.lex_state = 944}, - [7584] = {.lex_state = 948}, - [7585] = {.lex_state = 97}, - [7586] = {.lex_state = 948}, - [7587] = {.lex_state = 948}, - [7588] = {.lex_state = 948}, - [7589] = {.lex_state = 948}, - [7590] = {.lex_state = 948}, - [7591] = {.lex_state = 513}, - [7592] = {.lex_state = 147}, - [7593] = {.lex_state = 948}, - [7594] = {.lex_state = 254}, - [7595] = {.lex_state = 948}, - [7596] = {.lex_state = 948}, - [7597] = {.lex_state = 97}, - [7598] = {.lex_state = 948}, - [7599] = {.lex_state = 948}, - [7600] = {.lex_state = 948}, - [7601] = {.lex_state = 948}, - [7602] = {.lex_state = 948}, - [7603] = {.lex_state = 948}, - [7604] = {.lex_state = 197}, - [7605] = {.lex_state = 147}, - [7606] = {.lex_state = 948}, - [7607] = {.lex_state = 948}, - [7608] = {.lex_state = 944}, - [7609] = {.lex_state = 97}, - [7610] = {.lex_state = 948}, - [7611] = {.lex_state = 513}, - [7612] = {.lex_state = 948}, - [7613] = {.lex_state = 948}, - [7614] = {.lex_state = 131}, - [7615] = {.lex_state = 948}, - [7616] = {.lex_state = 948}, - [7617] = {.lex_state = 43}, - [7618] = {.lex_state = 97}, - [7619] = {.lex_state = 948}, - [7620] = {.lex_state = 499}, - [7621] = {.lex_state = 944}, - [7622] = {.lex_state = 948}, - [7623] = {.lex_state = 948}, - [7624] = {.lex_state = 948}, - [7625] = {.lex_state = 147}, - [7626] = {.lex_state = 948}, - [7627] = {.lex_state = 948}, - [7628] = {.lex_state = 948}, - [7629] = {.lex_state = 131}, - [7630] = {.lex_state = 948}, - [7631] = {.lex_state = 43}, - [7632] = {.lex_state = 948}, + [6609] = {.lex_state = 360}, + [6610] = {.lex_state = 951}, + [6611] = {.lex_state = 496}, + [6612] = {.lex_state = 360}, + [6613] = {.lex_state = 360}, + [6614] = {.lex_state = 439}, + [6615] = {.lex_state = 496}, + [6616] = {.lex_state = 360}, + [6617] = {.lex_state = 360}, + [6618] = {.lex_state = 496}, + [6619] = {.lex_state = 360}, + [6620] = {.lex_state = 360}, + [6621] = {.lex_state = 496}, + [6622] = {.lex_state = 360}, + [6623] = {.lex_state = 360}, + [6624] = {.lex_state = 496}, + [6625] = {.lex_state = 360}, + [6626] = {.lex_state = 360}, + [6627] = {.lex_state = 496}, + [6628] = {.lex_state = 360}, + [6629] = {.lex_state = 360}, + [6630] = {.lex_state = 496}, + [6631] = {.lex_state = 360}, + [6632] = {.lex_state = 360}, + [6633] = {.lex_state = 496}, + [6634] = {.lex_state = 360}, + [6635] = {.lex_state = 360}, + [6636] = {.lex_state = 496}, + [6637] = {.lex_state = 360}, + [6638] = {.lex_state = 360}, + [6639] = {.lex_state = 496}, + [6640] = {.lex_state = 360}, + [6641] = {.lex_state = 360}, + [6642] = {.lex_state = 360}, + [6643] = {.lex_state = 360}, + [6644] = {.lex_state = 360}, + [6645] = {.lex_state = 360}, + [6646] = {.lex_state = 360}, + [6647] = {.lex_state = 360}, + [6648] = {.lex_state = 360}, + [6649] = {.lex_state = 360}, + [6650] = {.lex_state = 360}, + [6651] = {.lex_state = 360}, + [6652] = {.lex_state = 951}, + [6653] = {.lex_state = 951}, + [6654] = {.lex_state = 951}, + [6655] = {.lex_state = 102}, + [6656] = {.lex_state = 951}, + [6657] = {.lex_state = 951}, + [6658] = {.lex_state = 951}, + [6659] = {.lex_state = 262}, + [6660] = {.lex_state = 262}, + [6661] = {.lex_state = 262}, + [6662] = {.lex_state = 951}, + [6663] = {.lex_state = 951}, + [6664] = {.lex_state = 444}, + [6665] = {.lex_state = 951}, + [6666] = {.lex_state = 951}, + [6667] = {.lex_state = 262}, + [6668] = {.lex_state = 951}, + [6669] = {.lex_state = 444}, + [6670] = {.lex_state = 951}, + [6671] = {.lex_state = 439}, + [6672] = {.lex_state = 439}, + [6673] = {.lex_state = 951}, + [6674] = {.lex_state = 262}, + [6675] = {.lex_state = 442}, + [6676] = {.lex_state = 951}, + [6677] = {.lex_state = 444}, + [6678] = {.lex_state = 77}, + [6679] = {.lex_state = 444}, + [6680] = {.lex_state = 951}, + [6681] = {.lex_state = 951}, + [6682] = {.lex_state = 262}, + [6683] = {.lex_state = 951}, + [6684] = {.lex_state = 262}, + [6685] = {.lex_state = 951}, + [6686] = {.lex_state = 262}, + [6687] = {.lex_state = 951}, + [6688] = {.lex_state = 951}, + [6689] = {.lex_state = 383}, + [6690] = {.lex_state = 383}, + [6691] = {.lex_state = 951}, + [6692] = {.lex_state = 102}, + [6693] = {.lex_state = 262}, + [6694] = {.lex_state = 262}, + [6695] = {.lex_state = 262}, + [6696] = {.lex_state = 262}, + [6697] = {.lex_state = 262}, + [6698] = {.lex_state = 262}, + [6699] = {.lex_state = 262}, + [6700] = {.lex_state = 262}, + [6701] = {.lex_state = 262}, + [6702] = {.lex_state = 496}, + [6703] = {.lex_state = 490}, + [6704] = {.lex_state = 452}, + [6705] = {.lex_state = 262}, + [6706] = {.lex_state = 262}, + [6707] = {.lex_state = 512}, + [6708] = {.lex_state = 991}, + [6709] = {.lex_state = 360}, + [6710] = {.lex_state = 383}, + [6711] = {.lex_state = 262}, + [6712] = {.lex_state = 262}, + [6713] = {.lex_state = 383}, + [6714] = {.lex_state = 262}, + [6715] = {.lex_state = 98}, + [6716] = {.lex_state = 262}, + [6717] = {.lex_state = 951}, + [6718] = {.lex_state = 951}, + [6719] = {.lex_state = 516}, + [6720] = {.lex_state = 516}, + [6721] = {.lex_state = 951}, + [6722] = {.lex_state = 951}, + [6723] = {.lex_state = 262}, + [6724] = {.lex_state = 104}, + [6725] = {.lex_state = 422}, + [6726] = {.lex_state = 951}, + [6727] = {.lex_state = 383}, + [6728] = {.lex_state = 383}, + [6729] = {.lex_state = 104}, + [6730] = {.lex_state = 76}, + [6731] = {.lex_state = 951}, + [6732] = {.lex_state = 490}, + [6733] = {.lex_state = 951}, + [6734] = {.lex_state = 951}, + [6735] = {.lex_state = 951}, + [6736] = {.lex_state = 951}, + [6737] = {.lex_state = 951}, + [6738] = {.lex_state = 105}, + [6739] = {.lex_state = 105}, + [6740] = {.lex_state = 951}, + [6741] = {.lex_state = 76}, + [6742] = {.lex_state = 513}, + [6743] = {.lex_state = 951}, + [6744] = {.lex_state = 951}, + [6745] = {.lex_state = 951}, + [6746] = {.lex_state = 951}, + [6747] = {.lex_state = 505}, + [6748] = {.lex_state = 951}, + [6749] = {.lex_state = 951}, + [6750] = {.lex_state = 38}, + [6751] = {.lex_state = 262}, + [6752] = {.lex_state = 445}, + [6753] = {.lex_state = 262}, + [6754] = {.lex_state = 445}, + [6755] = {.lex_state = 262}, + [6756] = {.lex_state = 262}, + [6757] = {.lex_state = 150}, + [6758] = {.lex_state = 445}, + [6759] = {.lex_state = 262}, + [6760] = {.lex_state = 951}, + [6761] = {.lex_state = 262}, + [6762] = {.lex_state = 150}, + [6763] = {.lex_state = 262}, + [6764] = {.lex_state = 262}, + [6765] = {.lex_state = 262}, + [6766] = {.lex_state = 262}, + [6767] = {.lex_state = 262}, + [6768] = {.lex_state = 262}, + [6769] = {.lex_state = 262}, + [6770] = {.lex_state = 951}, + [6771] = {.lex_state = 262}, + [6772] = {.lex_state = 510}, + [6773] = {.lex_state = 480}, + [6774] = {.lex_state = 951}, + [6775] = {.lex_state = 480}, + [6776] = {.lex_state = 322}, + [6777] = {.lex_state = 445}, + [6778] = {.lex_state = 262}, + [6779] = {.lex_state = 262}, + [6780] = {.lex_state = 951}, + [6781] = {.lex_state = 150}, + [6782] = {.lex_state = 445}, + [6783] = {.lex_state = 262}, + [6784] = {.lex_state = 262}, + [6785] = {.lex_state = 262}, + [6786] = {.lex_state = 262}, + [6787] = {.lex_state = 262}, + [6788] = {.lex_state = 262}, + [6789] = {.lex_state = 262}, + [6790] = {.lex_state = 87}, + [6791] = {.lex_state = 951}, + [6792] = {.lex_state = 262}, + [6793] = {.lex_state = 262}, + [6794] = {.lex_state = 951}, + [6795] = {.lex_state = 951}, + [6796] = {.lex_state = 517}, + [6797] = {.lex_state = 951}, + [6798] = {.lex_state = 445}, + [6799] = {.lex_state = 385}, + [6800] = {.lex_state = 134}, + [6801] = {.lex_state = 445}, + [6802] = {.lex_state = 262}, + [6803] = {.lex_state = 262}, + [6804] = {.lex_state = 951}, + [6805] = {.lex_state = 150}, + [6806] = {.lex_state = 445}, + [6807] = {.lex_state = 98}, + [6808] = {.lex_state = 262}, + [6809] = {.lex_state = 262}, + [6810] = {.lex_state = 951}, + [6811] = {.lex_state = 262}, + [6812] = {.lex_state = 262}, + [6813] = {.lex_state = 262}, + [6814] = {.lex_state = 262}, + [6815] = {.lex_state = 482}, + [6816] = {.lex_state = 262}, + [6817] = {.lex_state = 262}, + [6818] = {.lex_state = 262}, + [6819] = {.lex_state = 262}, + [6820] = {.lex_state = 262}, + [6821] = {.lex_state = 262}, + [6822] = {.lex_state = 262}, + [6823] = {.lex_state = 951}, + [6824] = {.lex_state = 951}, + [6825] = {.lex_state = 484}, + [6826] = {.lex_state = 951}, + [6827] = {.lex_state = 262}, + [6828] = {.lex_state = 930}, + [6829] = {.lex_state = 262}, + [6830] = {.lex_state = 262}, + [6831] = {.lex_state = 445}, + [6832] = {.lex_state = 134}, + [6833] = {.lex_state = 951}, + [6834] = {.lex_state = 445}, + [6835] = {.lex_state = 262}, + [6836] = {.lex_state = 951}, + [6837] = {.lex_state = 262}, + [6838] = {.lex_state = 951}, + [6839] = {.lex_state = 262}, + [6840] = {.lex_state = 262}, + [6841] = {.lex_state = 262}, + [6842] = {.lex_state = 262}, + [6843] = {.lex_state = 262}, + [6844] = {.lex_state = 951}, + [6845] = {.lex_state = 262}, + [6846] = {.lex_state = 262}, + [6847] = {.lex_state = 951}, + [6848] = {.lex_state = 262}, + [6849] = {.lex_state = 262}, + [6850] = {.lex_state = 262}, + [6851] = {.lex_state = 262}, + [6852] = {.lex_state = 951}, + [6853] = {.lex_state = 262}, + [6854] = {.lex_state = 262}, + [6855] = {.lex_state = 262}, + [6856] = {.lex_state = 262}, + [6857] = {.lex_state = 445}, + [6858] = {.lex_state = 150}, + [6859] = {.lex_state = 445}, + [6860] = {.lex_state = 262}, + [6861] = {.lex_state = 262}, + [6862] = {.lex_state = 262}, + [6863] = {.lex_state = 262}, + [6864] = {.lex_state = 262}, + [6865] = {.lex_state = 262}, + [6866] = {.lex_state = 262}, + [6867] = {.lex_state = 262}, + [6868] = {.lex_state = 262}, + [6869] = {.lex_state = 383}, + [6870] = {.lex_state = 262}, + [6871] = {.lex_state = 262}, + [6872] = {.lex_state = 262}, + [6873] = {.lex_state = 383}, + [6874] = {.lex_state = 383}, + [6875] = {.lex_state = 262}, + [6876] = {.lex_state = 383}, + [6877] = {.lex_state = 951}, + [6878] = {.lex_state = 262}, + [6879] = {.lex_state = 262}, + [6880] = {.lex_state = 951}, + [6881] = {.lex_state = 262}, + [6882] = {.lex_state = 262}, + [6883] = {.lex_state = 445}, + [6884] = {.lex_state = 262}, + [6885] = {.lex_state = 262}, + [6886] = {.lex_state = 150}, + [6887] = {.lex_state = 445}, + [6888] = {.lex_state = 262}, + [6889] = {.lex_state = 951}, + [6890] = {.lex_state = 262}, + [6891] = {.lex_state = 950}, + [6892] = {.lex_state = 951}, + [6893] = {.lex_state = 262}, + [6894] = {.lex_state = 262}, + [6895] = {.lex_state = 262}, + [6896] = {.lex_state = 262}, + [6897] = {.lex_state = 262}, + [6898] = {.lex_state = 262}, + [6899] = {.lex_state = 134}, + [6900] = {.lex_state = 445}, + [6901] = {.lex_state = 262}, + [6902] = {.lex_state = 950}, + [6903] = {.lex_state = 445}, + [6904] = {.lex_state = 951}, + [6905] = {.lex_state = 950}, + [6906] = {.lex_state = 445}, + [6907] = {.lex_state = 262}, + [6908] = {.lex_state = 951}, + [6909] = {.lex_state = 445}, + [6910] = {.lex_state = 951}, + [6911] = {.lex_state = 262}, + [6912] = {.lex_state = 951}, + [6913] = {.lex_state = 951}, + [6914] = {.lex_state = 262}, + [6915] = {.lex_state = 262}, + [6916] = {.lex_state = 262}, + [6917] = {.lex_state = 262}, + [6918] = {.lex_state = 262}, + [6919] = {.lex_state = 262}, + [6920] = {.lex_state = 262}, + [6921] = {.lex_state = 262}, + [6922] = {.lex_state = 262}, + [6923] = {.lex_state = 262}, + [6924] = {.lex_state = 445}, + [6925] = {.lex_state = 950}, + [6926] = {.lex_state = 950}, + [6927] = {.lex_state = 262}, + [6928] = {.lex_state = 262}, + [6929] = {.lex_state = 950}, + [6930] = {.lex_state = 262}, + [6931] = {.lex_state = 445}, + [6932] = {.lex_state = 506}, + [6933] = {.lex_state = 445}, + [6934] = {.lex_state = 262}, + [6935] = {.lex_state = 262}, + [6936] = {.lex_state = 262}, + [6937] = {.lex_state = 262}, + [6938] = {.lex_state = 262}, + [6939] = {.lex_state = 950}, + [6940] = {.lex_state = 262}, + [6941] = {.lex_state = 262}, + [6942] = {.lex_state = 262}, + [6943] = {.lex_state = 262}, + [6944] = {.lex_state = 262}, + [6945] = {.lex_state = 951}, + [6946] = {.lex_state = 518}, + [6947] = {.lex_state = 491}, + [6948] = {.lex_state = 262}, + [6949] = {.lex_state = 404}, + [6950] = {.lex_state = 445}, + [6951] = {.lex_state = 262}, + [6952] = {.lex_state = 445}, + [6953] = {.lex_state = 262}, + [6954] = {.lex_state = 491}, + [6955] = {.lex_state = 262}, + [6956] = {.lex_state = 262}, + [6957] = {.lex_state = 262}, + [6958] = {.lex_state = 262}, + [6959] = {.lex_state = 262}, + [6960] = {.lex_state = 951}, + [6961] = {.lex_state = 262}, + [6962] = {.lex_state = 262}, + [6963] = {.lex_state = 262}, + [6964] = {.lex_state = 262}, + [6965] = {.lex_state = 262}, + [6966] = {.lex_state = 262}, + [6967] = {.lex_state = 950}, + [6968] = {.lex_state = 262}, + [6969] = {.lex_state = 262}, + [6970] = {.lex_state = 262}, + [6971] = {.lex_state = 951}, + [6972] = {.lex_state = 262}, + [6973] = {.lex_state = 262}, + [6974] = {.lex_state = 445}, + [6975] = {.lex_state = 262}, + [6976] = {.lex_state = 445}, + [6977] = {.lex_state = 262}, + [6978] = {.lex_state = 262}, + [6979] = {.lex_state = 262}, + [6980] = {.lex_state = 262}, + [6981] = {.lex_state = 480}, + [6982] = {.lex_state = 262}, + [6983] = {.lex_state = 950}, + [6984] = {.lex_state = 262}, + [6985] = {.lex_state = 262}, + [6986] = {.lex_state = 360}, + [6987] = {.lex_state = 262}, + [6988] = {.lex_state = 951}, + [6989] = {.lex_state = 951}, + [6990] = {.lex_state = 445}, + [6991] = {.lex_state = 262}, + [6992] = {.lex_state = 951}, + [6993] = {.lex_state = 445}, + [6994] = {.lex_state = 445}, + [6995] = {.lex_state = 491}, + [6996] = {.lex_state = 951}, + [6997] = {.lex_state = 262}, + [6998] = {.lex_state = 262}, + [6999] = {.lex_state = 262}, + [7000] = {.lex_state = 262}, + [7001] = {.lex_state = 262}, + [7002] = {.lex_state = 480}, + [7003] = {.lex_state = 262}, + [7004] = {.lex_state = 262}, + [7005] = {.lex_state = 262}, + [7006] = {.lex_state = 262}, + [7007] = {.lex_state = 439}, + [7008] = {.lex_state = 98}, + [7009] = {.lex_state = 262}, + [7010] = {.lex_state = 951}, + [7011] = {.lex_state = 951}, + [7012] = {.lex_state = 262}, + [7013] = {.lex_state = 262}, + [7014] = {.lex_state = 262}, + [7015] = {.lex_state = 262}, + [7016] = {.lex_state = 262}, + [7017] = {.lex_state = 262}, + [7018] = {.lex_state = 262}, + [7019] = {.lex_state = 262}, + [7020] = {.lex_state = 445}, + [7021] = {.lex_state = 950}, + [7022] = {.lex_state = 262}, + [7023] = {.lex_state = 948}, + [7024] = {.lex_state = 262}, + [7025] = {.lex_state = 930}, + [7026] = {.lex_state = 951}, + [7027] = {.lex_state = 951}, + [7028] = {.lex_state = 262}, + [7029] = {.lex_state = 951}, + [7030] = {.lex_state = 262}, + [7031] = {.lex_state = 262}, + [7032] = {.lex_state = 262}, + [7033] = {.lex_state = 262}, + [7034] = {.lex_state = 951}, + [7035] = {.lex_state = 262}, + [7036] = {.lex_state = 262}, + [7037] = {.lex_state = 517}, + [7038] = {.lex_state = 262}, + [7039] = {.lex_state = 150}, + [7040] = {.lex_state = 951}, + [7041] = {.lex_state = 445}, + [7042] = {.lex_state = 951}, + [7043] = {.lex_state = 262}, + [7044] = {.lex_state = 262}, + [7045] = {.lex_state = 518}, + [7046] = {.lex_state = 262}, + [7047] = {.lex_state = 262}, + [7048] = {.lex_state = 262}, + [7049] = {.lex_state = 262}, + [7050] = {.lex_state = 262}, + [7051] = {.lex_state = 262}, + [7052] = {.lex_state = 262}, + [7053] = {.lex_state = 262}, + [7054] = {.lex_state = 262}, + [7055] = {.lex_state = 262}, + [7056] = {.lex_state = 262}, + [7057] = {.lex_state = 951}, + [7058] = {.lex_state = 262}, + [7059] = {.lex_state = 262}, + [7060] = {.lex_state = 262}, + [7061] = {.lex_state = 262}, + [7062] = {.lex_state = 262}, + [7063] = {.lex_state = 262}, + [7064] = {.lex_state = 262}, + [7065] = {.lex_state = 262}, + [7066] = {.lex_state = 262}, + [7067] = {.lex_state = 262}, + [7068] = {.lex_state = 951}, + [7069] = {.lex_state = 262}, + [7070] = {.lex_state = 98}, + [7071] = {.lex_state = 951}, + [7072] = {.lex_state = 951}, + [7073] = {.lex_state = 262}, + [7074] = {.lex_state = 262}, + [7075] = {.lex_state = 262}, + [7076] = {.lex_state = 491}, + [7077] = {.lex_state = 262}, + [7078] = {.lex_state = 951}, + [7079] = {.lex_state = 951}, + [7080] = {.lex_state = 262}, + [7081] = {.lex_state = 31}, + [7082] = {.lex_state = 951}, + [7083] = {.lex_state = 262}, + [7084] = {.lex_state = 262}, + [7085] = {.lex_state = 518}, + [7086] = {.lex_state = 951}, + [7087] = {.lex_state = 951}, + [7088] = {.lex_state = 262}, + [7089] = {.lex_state = 207}, + [7090] = {.lex_state = 445}, + [7091] = {.lex_state = 951}, + [7092] = {.lex_state = 262}, + [7093] = {.lex_state = 207}, + [7094] = {.lex_state = 272}, + [7095] = {.lex_state = 517}, + [7096] = {.lex_state = 262}, + [7097] = {.lex_state = 951}, + [7098] = {.lex_state = 951}, + [7099] = {.lex_state = 951}, + [7100] = {.lex_state = 491}, + [7101] = {.lex_state = 207}, + [7102] = {.lex_state = 951}, + [7103] = {.lex_state = 444}, + [7104] = {.lex_state = 272}, + [7105] = {.lex_state = 262}, + [7106] = {.lex_state = 262}, + [7107] = {.lex_state = 480}, + [7108] = {.lex_state = 491}, + [7109] = {.lex_state = 87}, + [7110] = {.lex_state = 445}, + [7111] = {.lex_state = 491}, + [7112] = {.lex_state = 506}, + [7113] = {.lex_state = 951}, + [7114] = {.lex_state = 948}, + [7115] = {.lex_state = 383}, + [7116] = {.lex_state = 150}, + [7117] = {.lex_state = 445}, + [7118] = {.lex_state = 262}, + [7119] = {.lex_state = 951}, + [7120] = {.lex_state = 262}, + [7121] = {.lex_state = 262}, + [7122] = {.lex_state = 262}, + [7123] = {.lex_state = 87}, + [7124] = {.lex_state = 951}, + [7125] = {.lex_state = 951}, + [7126] = {.lex_state = 262}, + [7127] = {.lex_state = 262}, + [7128] = {.lex_state = 951}, + [7129] = {.lex_state = 322}, + [7130] = {.lex_state = 951}, + [7131] = {.lex_state = 262}, + [7132] = {.lex_state = 100}, + [7133] = {.lex_state = 262}, + [7134] = {.lex_state = 262}, + [7135] = {.lex_state = 100}, + [7136] = {.lex_state = 262}, + [7137] = {.lex_state = 100}, + [7138] = {.lex_state = 98}, + [7139] = {.lex_state = 262}, + [7140] = {.lex_state = 951}, + [7141] = {.lex_state = 262}, + [7142] = {.lex_state = 262}, + [7143] = {.lex_state = 951}, + [7144] = {.lex_state = 262}, + [7145] = {.lex_state = 262}, + [7146] = {.lex_state = 262}, + [7147] = {.lex_state = 951}, + [7148] = {.lex_state = 322}, + [7149] = {.lex_state = 262}, + [7150] = {.lex_state = 262}, + [7151] = {.lex_state = 951}, + [7152] = {.lex_state = 262}, + [7153] = {.lex_state = 951}, + [7154] = {.lex_state = 87}, + [7155] = {.lex_state = 951}, + [7156] = {.lex_state = 950}, + [7157] = {.lex_state = 951}, + [7158] = {.lex_state = 951}, + [7159] = {.lex_state = 951}, + [7160] = {.lex_state = 951}, + [7161] = {.lex_state = 951}, + [7162] = {.lex_state = 951}, + [7163] = {.lex_state = 951}, + [7164] = {.lex_state = 951}, + [7165] = {.lex_state = 951}, + [7166] = {.lex_state = 951}, + [7167] = {.lex_state = 951}, + [7168] = {.lex_state = 262}, + [7169] = {.lex_state = 951}, + [7170] = {.lex_state = 207}, + [7171] = {.lex_state = 491}, + [7172] = {.lex_state = 951}, + [7173] = {.lex_state = 262}, + [7174] = {.lex_state = 262}, + [7175] = {.lex_state = 951}, + [7176] = {.lex_state = 951}, + [7177] = {.lex_state = 951}, + [7178] = {.lex_state = 87}, + [7179] = {.lex_state = 262}, + [7180] = {.lex_state = 951}, + [7181] = {.lex_state = 445}, + [7182] = {.lex_state = 951}, + [7183] = {.lex_state = 508}, + [7184] = {.lex_state = 134}, + [7185] = {.lex_state = 951}, + [7186] = {.lex_state = 951}, + [7187] = {.lex_state = 262}, + [7188] = {.lex_state = 951}, + [7189] = {.lex_state = 262}, + [7190] = {.lex_state = 951}, + [7191] = {.lex_state = 480}, + [7192] = {.lex_state = 383}, + [7193] = {.lex_state = 951}, + [7194] = {.lex_state = 262}, + [7195] = {.lex_state = 262}, + [7196] = {.lex_state = 951}, + [7197] = {.lex_state = 445}, + [7198] = {.lex_state = 951}, + [7199] = {.lex_state = 262}, + [7200] = {.lex_state = 951}, + [7201] = {.lex_state = 491}, + [7202] = {.lex_state = 508}, + [7203] = {.lex_state = 262}, + [7204] = {.lex_state = 262}, + [7205] = {.lex_state = 262}, + [7206] = {.lex_state = 262}, + [7207] = {.lex_state = 483}, + [7208] = {.lex_state = 262}, + [7209] = {.lex_state = 262}, + [7210] = {.lex_state = 262}, + [7211] = {.lex_state = 262}, + [7212] = {.lex_state = 150}, + [7213] = {.lex_state = 322}, + [7214] = {.lex_state = 322}, + [7215] = {.lex_state = 322}, + [7216] = {.lex_state = 445}, + [7217] = {.lex_state = 951}, + [7218] = {.lex_state = 951}, + [7219] = {.lex_state = 951}, + [7220] = {.lex_state = 951}, + [7221] = {.lex_state = 950}, + [7222] = {.lex_state = 950}, + [7223] = {.lex_state = 262}, + [7224] = {.lex_state = 262}, + [7225] = {.lex_state = 508}, + [7226] = {.lex_state = 950}, + [7227] = {.lex_state = 951}, + [7228] = {.lex_state = 322}, + [7229] = {.lex_state = 262}, + [7230] = {.lex_state = 951}, + [7231] = {.lex_state = 262}, + [7232] = {.lex_state = 322}, + [7233] = {.lex_state = 951}, + [7234] = {.lex_state = 951}, + [7235] = {.lex_state = 951}, + [7236] = {.lex_state = 951}, + [7237] = {.lex_state = 951}, + [7238] = {.lex_state = 322}, + [7239] = {.lex_state = 322}, + [7240] = {.lex_state = 951}, + [7241] = {.lex_state = 951}, + [7242] = {.lex_state = 951}, + [7243] = {.lex_state = 951}, + [7244] = {.lex_state = 322}, + [7245] = {.lex_state = 262}, + [7246] = {.lex_state = 951}, + [7247] = {.lex_state = 322}, + [7248] = {.lex_state = 100}, + [7249] = {.lex_state = 951}, + [7250] = {.lex_state = 951}, + [7251] = {.lex_state = 951}, + [7252] = {.lex_state = 951}, + [7253] = {.lex_state = 951}, + [7254] = {.lex_state = 322}, + [7255] = {.lex_state = 951}, + [7256] = {.lex_state = 322}, + [7257] = {.lex_state = 951}, + [7258] = {.lex_state = 951}, + [7259] = {.lex_state = 951}, + [7260] = {.lex_state = 951}, + [7261] = {.lex_state = 322}, + [7262] = {.lex_state = 322}, + [7263] = {.lex_state = 951}, + [7264] = {.lex_state = 951}, + [7265] = {.lex_state = 951}, + [7266] = {.lex_state = 951}, + [7267] = {.lex_state = 322}, + [7268] = {.lex_state = 322}, + [7269] = {.lex_state = 951}, + [7270] = {.lex_state = 951}, + [7271] = {.lex_state = 951}, + [7272] = {.lex_state = 262}, + [7273] = {.lex_state = 951}, + [7274] = {.lex_state = 951}, + [7275] = {.lex_state = 322}, + [7276] = {.lex_state = 322}, + [7277] = {.lex_state = 951}, + [7278] = {.lex_state = 951}, + [7279] = {.lex_state = 951}, + [7280] = {.lex_state = 951}, + [7281] = {.lex_state = 262}, + [7282] = {.lex_state = 951}, + [7283] = {.lex_state = 951}, + [7284] = {.lex_state = 322}, + [7285] = {.lex_state = 262}, + [7286] = {.lex_state = 322}, + [7287] = {.lex_state = 951}, + [7288] = {.lex_state = 951}, + [7289] = {.lex_state = 951}, + [7290] = {.lex_state = 951}, + [7291] = {.lex_state = 951}, + [7292] = {.lex_state = 322}, + [7293] = {.lex_state = 31}, + [7294] = {.lex_state = 322}, + [7295] = {.lex_state = 262}, + [7296] = {.lex_state = 951}, + [7297] = {.lex_state = 951}, + [7298] = {.lex_state = 951}, + [7299] = {.lex_state = 951}, + [7300] = {.lex_state = 322}, + [7301] = {.lex_state = 262}, + [7302] = {.lex_state = 322}, + [7303] = {.lex_state = 322}, + [7304] = {.lex_state = 951}, + [7305] = {.lex_state = 951}, + [7306] = {.lex_state = 100}, + [7307] = {.lex_state = 951}, + [7308] = {.lex_state = 951}, + [7309] = {.lex_state = 322}, + [7310] = {.lex_state = 86}, + [7311] = {.lex_state = 322}, + [7312] = {.lex_state = 480}, + [7313] = {.lex_state = 262}, + [7314] = {.lex_state = 951}, + [7315] = {.lex_state = 951}, + [7316] = {.lex_state = 262}, + [7317] = {.lex_state = 951}, + [7318] = {.lex_state = 951}, + [7319] = {.lex_state = 322}, + [7320] = {.lex_state = 262}, + [7321] = {.lex_state = 322}, + [7322] = {.lex_state = 951}, + [7323] = {.lex_state = 383}, + [7324] = {.lex_state = 951}, + [7325] = {.lex_state = 951}, + [7326] = {.lex_state = 951}, + [7327] = {.lex_state = 951}, + [7328] = {.lex_state = 322}, + [7329] = {.lex_state = 322}, + [7330] = {.lex_state = 951}, + [7331] = {.lex_state = 951}, + [7332] = {.lex_state = 951}, + [7333] = {.lex_state = 262}, + [7334] = {.lex_state = 951}, + [7335] = {.lex_state = 951}, + [7336] = {.lex_state = 322}, + [7337] = {.lex_state = 322}, + [7338] = {.lex_state = 262}, + [7339] = {.lex_state = 951}, + [7340] = {.lex_state = 951}, + [7341] = {.lex_state = 262}, + [7342] = {.lex_state = 951}, + [7343] = {.lex_state = 951}, + [7344] = {.lex_state = 322}, + [7345] = {.lex_state = 322}, + [7346] = {.lex_state = 262}, + [7347] = {.lex_state = 951}, + [7348] = {.lex_state = 951}, + [7349] = {.lex_state = 506}, + [7350] = {.lex_state = 951}, + [7351] = {.lex_state = 951}, + [7352] = {.lex_state = 322}, + [7353] = {.lex_state = 322}, + [7354] = {.lex_state = 951}, + [7355] = {.lex_state = 951}, + [7356] = {.lex_state = 262}, + [7357] = {.lex_state = 951}, + [7358] = {.lex_state = 951}, + [7359] = {.lex_state = 322}, + [7360] = {.lex_state = 322}, + [7361] = {.lex_state = 951}, + [7362] = {.lex_state = 951}, + [7363] = {.lex_state = 262}, + [7364] = {.lex_state = 951}, + [7365] = {.lex_state = 951}, + [7366] = {.lex_state = 322}, + [7367] = {.lex_state = 322}, + [7368] = {.lex_state = 87}, + [7369] = {.lex_state = 951}, + [7370] = {.lex_state = 951}, + [7371] = {.lex_state = 262}, + [7372] = {.lex_state = 951}, + [7373] = {.lex_state = 951}, + [7374] = {.lex_state = 383}, + [7375] = {.lex_state = 951}, + [7376] = {.lex_state = 951}, + [7377] = {.lex_state = 383}, + [7378] = {.lex_state = 951}, + [7379] = {.lex_state = 951}, + [7380] = {.lex_state = 951}, + [7381] = {.lex_state = 951}, + [7382] = {.lex_state = 951}, + [7383] = {.lex_state = 262}, + [7384] = {.lex_state = 952}, + [7385] = {.lex_state = 262}, + [7386] = {.lex_state = 262}, + [7387] = {.lex_state = 262}, + [7388] = {.lex_state = 262}, + [7389] = {.lex_state = 951}, + [7390] = {.lex_state = 87}, + [7391] = {.lex_state = 951}, + [7392] = {.lex_state = 491}, + [7393] = {.lex_state = 951}, + [7394] = {.lex_state = 951}, + [7395] = {.lex_state = 322}, + [7396] = {.lex_state = 508}, + [7397] = {.lex_state = 508}, + [7398] = {.lex_state = 262}, + [7399] = {.lex_state = 262}, + [7400] = {.lex_state = 100}, + [7401] = {.lex_state = 951}, + [7402] = {.lex_state = 951}, + [7403] = {.lex_state = 480}, + [7404] = {.lex_state = 262}, + [7405] = {.lex_state = 951}, + [7406] = {.lex_state = 262}, + [7407] = {.lex_state = 262}, + [7408] = {.lex_state = 951}, + [7409] = {.lex_state = 262}, + [7410] = {.lex_state = 134}, + [7411] = {.lex_state = 134}, + [7412] = {.lex_state = 952}, + [7413] = {.lex_state = 951}, + [7414] = {.lex_state = 262}, + [7415] = {.lex_state = 262}, + [7416] = {.lex_state = 4774}, + [7417] = {.lex_state = 4774}, + [7418] = {.lex_state = 951}, + [7419] = {.lex_state = 506}, + [7420] = {.lex_state = 4774}, + [7421] = {.lex_state = 4774}, + [7422] = {.lex_state = 260}, + [7423] = {.lex_state = 262}, + [7424] = {.lex_state = 4774}, + [7425] = {.lex_state = 262}, + [7426] = {.lex_state = 4778}, + [7427] = {.lex_state = 4778}, + [7428] = {.lex_state = 262}, + [7429] = {.lex_state = 951}, + [7430] = {.lex_state = 262}, + [7431] = {.lex_state = 262}, + [7432] = {.lex_state = 951}, + [7433] = {.lex_state = 260}, + [7434] = {.lex_state = 262}, + [7435] = {.lex_state = 4778}, + [7436] = {.lex_state = 262}, + [7437] = {.lex_state = 262}, + [7438] = {.lex_state = 4774}, + [7439] = {.lex_state = 4774}, + [7440] = {.lex_state = 4774}, + [7441] = {.lex_state = 951}, + [7442] = {.lex_state = 4774}, + [7443] = {.lex_state = 260}, + [7444] = {.lex_state = 4774}, + [7445] = {.lex_state = 4774}, + [7446] = {.lex_state = 4774}, + [7447] = {.lex_state = 4776}, + [7448] = {.lex_state = 98}, + [7449] = {.lex_state = 4778}, + [7450] = {.lex_state = 4778}, + [7451] = {.lex_state = 951}, + [7452] = {.lex_state = 951}, + [7453] = {.lex_state = 262}, + [7454] = {.lex_state = 951}, + [7455] = {.lex_state = 951}, + [7456] = {.lex_state = 262}, + [7457] = {.lex_state = 262}, + [7458] = {.lex_state = 262}, + [7459] = {.lex_state = 514}, + [7460] = {.lex_state = 4774}, + [7461] = {.lex_state = 951}, + [7462] = {.lex_state = 494}, + [7463] = {.lex_state = 260}, + [7464] = {.lex_state = 951}, + [7465] = {.lex_state = 262}, + [7466] = {.lex_state = 262}, + [7467] = {.lex_state = 952}, + [7468] = {.lex_state = 951}, + [7469] = {.lex_state = 260}, + [7470] = {.lex_state = 951}, + [7471] = {.lex_state = 951}, + [7472] = {.lex_state = 4774}, + [7473] = {.lex_state = 262}, + [7474] = {.lex_state = 134}, + [7475] = {.lex_state = 517}, + [7476] = {.lex_state = 951}, + [7477] = {.lex_state = 134}, + [7478] = {.lex_state = 262}, + [7479] = {.lex_state = 4774}, + [7480] = {.lex_state = 951}, + [7481] = {.lex_state = 4776}, + [7482] = {.lex_state = 260}, + [7483] = {.lex_state = 951}, + [7484] = {.lex_state = 262}, + [7485] = {.lex_state = 951}, + [7486] = {.lex_state = 951}, + [7487] = {.lex_state = 951}, + [7488] = {.lex_state = 4776}, + [7489] = {.lex_state = 951}, + [7490] = {.lex_state = 260}, + [7491] = {.lex_state = 951}, + [7492] = {.lex_state = 262}, + [7493] = {.lex_state = 4774}, + [7494] = {.lex_state = 4778}, + [7495] = {.lex_state = 4778}, + [7496] = {.lex_state = 4778}, + [7497] = {.lex_state = 262}, + [7498] = {.lex_state = 951}, + [7499] = {.lex_state = 4774}, + [7500] = {.lex_state = 4774}, + [7501] = {.lex_state = 262}, + [7502] = {.lex_state = 4776}, + [7503] = {.lex_state = 134}, + [7504] = {.lex_state = 951}, + [7505] = {.lex_state = 951}, + [7506] = {.lex_state = 262}, + [7507] = {.lex_state = 262}, + [7508] = {.lex_state = 951}, + [7509] = {.lex_state = 260}, + [7510] = {.lex_state = 514}, + [7511] = {.lex_state = 262}, + [7512] = {.lex_state = 951}, + [7513] = {.lex_state = 952}, + [7514] = {.lex_state = 4776}, + [7515] = {.lex_state = 29}, + [7516] = {.lex_state = 4774}, + [7517] = {.lex_state = 4774}, + [7518] = {.lex_state = 4776}, + [7519] = {.lex_state = 262}, + [7520] = {.lex_state = 951}, + [7521] = {.lex_state = 514}, + [7522] = {.lex_state = 951}, + [7523] = {.lex_state = 4776}, + [7524] = {.lex_state = 260}, + [7525] = {.lex_state = 4776}, + [7526] = {.lex_state = 260}, + [7527] = {.lex_state = 262}, + [7528] = {.lex_state = 951}, + [7529] = {.lex_state = 262}, + [7530] = {.lex_state = 262}, + [7531] = {.lex_state = 262}, + [7532] = {.lex_state = 262}, + [7533] = {.lex_state = 260}, + [7534] = {.lex_state = 4774}, + [7535] = {.lex_state = 4774}, + [7536] = {.lex_state = 514}, + [7537] = {.lex_state = 514}, + [7538] = {.lex_state = 951}, + [7539] = {.lex_state = 262}, + [7540] = {.lex_state = 260}, + [7541] = {.lex_state = 4778}, + [7542] = {.lex_state = 262}, + [7543] = {.lex_state = 134}, + [7544] = {.lex_state = 4774}, + [7545] = {.lex_state = 951}, + [7546] = {.lex_state = 260}, + [7547] = {.lex_state = 951}, + [7548] = {.lex_state = 134}, + [7549] = {.lex_state = 260}, + [7550] = {.lex_state = 98}, + [7551] = {.lex_state = 951}, + [7552] = {.lex_state = 260}, + [7553] = {.lex_state = 4774}, + [7554] = {.lex_state = 515}, + [7555] = {.lex_state = 4774}, + [7556] = {.lex_state = 373}, + [7557] = {.lex_state = 260}, + [7558] = {.lex_state = 951}, + [7559] = {.lex_state = 262}, + [7560] = {.lex_state = 98}, + [7561] = {.lex_state = 951}, + [7562] = {.lex_state = 3521}, + [7563] = {.lex_state = 373}, + [7564] = {.lex_state = 4774}, + [7565] = {.lex_state = 948}, + [7566] = {.lex_state = 4774}, + [7567] = {.lex_state = 4774}, + [7568] = {.lex_state = 260}, + [7569] = {.lex_state = 4778}, + [7570] = {.lex_state = 4778}, + [7571] = {.lex_state = 262}, + [7572] = {.lex_state = 951}, + [7573] = {.lex_state = 4778}, + [7574] = {.lex_state = 4778}, + [7575] = {.lex_state = 29}, + [7576] = {.lex_state = 951}, + [7577] = {.lex_state = 373}, + [7578] = {.lex_state = 951}, + [7579] = {.lex_state = 930}, + [7580] = {.lex_state = 4774}, + [7581] = {.lex_state = 134}, + [7582] = {.lex_state = 4774}, + [7583] = {.lex_state = 4774}, + [7584] = {.lex_state = 951}, + [7585] = {.lex_state = 952}, + [7586] = {.lex_state = 4774}, + [7587] = {.lex_state = 4774}, + [7588] = {.lex_state = 262}, + [7589] = {.lex_state = 4774}, + [7590] = {.lex_state = 38}, + [7591] = {.lex_state = 4774}, + [7592] = {.lex_state = 951}, + [7593] = {.lex_state = 4776}, + [7594] = {.lex_state = 951}, + [7595] = {.lex_state = 4774}, + [7596] = {.lex_state = 262}, + [7597] = {.lex_state = 445}, + [7598] = {.lex_state = 134}, + [7599] = {.lex_state = 262}, + [7600] = {.lex_state = 262}, + [7601] = {.lex_state = 150}, + [7602] = {.lex_state = 134}, + [7603] = {.lex_state = 4774}, + [7604] = {.lex_state = 262}, + [7605] = {.lex_state = 262}, + [7606] = {.lex_state = 262}, + [7607] = {.lex_state = 951}, + [7608] = {.lex_state = 951, .external_lex_state = 3}, + [7609] = {.lex_state = 100}, + [7610] = {.lex_state = 150}, + [7611] = {.lex_state = 200}, + [7612] = {.lex_state = 500}, + [7613] = {.lex_state = 951}, + [7614] = {.lex_state = 926}, + [7615] = {.lex_state = 951}, + [7616] = {.lex_state = 502}, + [7617] = {.lex_state = 951}, + [7618] = {.lex_state = 951}, + [7619] = {.lex_state = 502}, + [7620] = {.lex_state = 948}, + [7621] = {.lex_state = 951}, + [7622] = {.lex_state = 150}, + [7623] = {.lex_state = 952}, + [7624] = {.lex_state = 951}, + [7625] = {.lex_state = 951, .external_lex_state = 3}, + [7626] = {.lex_state = 951}, + [7627] = {.lex_state = 951, .external_lex_state = 3}, + [7628] = {.lex_state = 951}, + [7629] = {.lex_state = 951}, + [7630] = {.lex_state = 134}, + [7631] = {.lex_state = 951, .external_lex_state = 3}, + [7632] = {.lex_state = 134}, [7633] = {.lex_state = 948}, - [7634] = {.lex_state = 948}, - [7635] = {.lex_state = 948}, - [7636] = {.lex_state = 948}, - [7637] = {.lex_state = 948}, - [7638] = {.lex_state = 948}, - [7639] = {.lex_state = 948}, - [7640] = {.lex_state = 948}, - [7641] = {.lex_state = 922}, - [7642] = {.lex_state = 948}, - [7643] = {.lex_state = 948}, - [7644] = {.lex_state = 197}, - [7645] = {.lex_state = 513}, - [7646] = {.lex_state = 948}, - [7647] = {.lex_state = 948}, - [7648] = {.lex_state = 948}, - [7649] = {.lex_state = 948}, - [7650] = {.lex_state = 944}, - [7651] = {.lex_state = 948}, - [7652] = {.lex_state = 500}, - [7653] = {.lex_state = 500}, - [7654] = {.lex_state = 948}, - [7655] = {.lex_state = 948}, - [7656] = {.lex_state = 948}, - [7657] = {.lex_state = 948}, - [7658] = {.lex_state = 948}, - [7659] = {.lex_state = 4783}, - [7660] = {.lex_state = 948}, - [7661] = {.lex_state = 197}, - [7662] = {.lex_state = 948}, - [7663] = {.lex_state = 948}, - [7664] = {.lex_state = 948}, - [7665] = {.lex_state = 948}, - [7666] = {.lex_state = 948}, - [7667] = {.lex_state = 948}, - [7668] = {.lex_state = 254}, - [7669] = {.lex_state = 948}, - [7670] = {.lex_state = 948}, - [7671] = {.lex_state = 4787}, - [7672] = {.lex_state = 948}, - [7673] = {.lex_state = 948}, - [7674] = {.lex_state = 948}, - [7675] = {.lex_state = 948}, - [7676] = {.lex_state = 922}, - [7677] = {.lex_state = 948}, - [7678] = {.lex_state = 922}, - [7679] = {.lex_state = 948}, - [7680] = {.lex_state = 948}, - [7681] = {.lex_state = 131}, - [7682] = {.lex_state = 4783}, - [7683] = {.lex_state = 513}, - [7684] = {.lex_state = 948}, - [7685] = {.lex_state = 944}, - [7686] = {.lex_state = 948}, - [7687] = {.lex_state = 131}, - [7688] = {.lex_state = 948}, - [7689] = {.lex_state = 948}, - [7690] = {.lex_state = 948}, - [7691] = {.lex_state = 948}, - [7692] = {.lex_state = 948}, - [7693] = {.lex_state = 948}, - [7694] = {.lex_state = 948}, - [7695] = {.lex_state = 147}, - [7696] = {.lex_state = 948}, - [7697] = {.lex_state = 4787}, + [7634] = {.lex_state = 4778}, + [7635] = {.lex_state = 951}, + [7636] = {.lex_state = 150}, + [7637] = {.lex_state = 200}, + [7638] = {.lex_state = 951}, + [7639] = {.lex_state = 951, .external_lex_state = 3}, + [7640] = {.lex_state = 100}, + [7641] = {.lex_state = 951}, + [7642] = {.lex_state = 200}, + [7643] = {.lex_state = 951, .external_lex_state = 3}, + [7644] = {.lex_state = 951}, + [7645] = {.lex_state = 134}, + [7646] = {.lex_state = 951}, + [7647] = {.lex_state = 951}, + [7648] = {.lex_state = 951}, + [7649] = {.lex_state = 951}, + [7650] = {.lex_state = 951}, + [7651] = {.lex_state = 951, .external_lex_state = 3}, + [7652] = {.lex_state = 504}, + [7653] = {.lex_state = 134}, + [7654] = {.lex_state = 951, .external_lex_state = 3}, + [7655] = {.lex_state = 951, .external_lex_state = 3}, + [7656] = {.lex_state = 515}, + [7657] = {.lex_state = 4776}, + [7658] = {.lex_state = 951}, + [7659] = {.lex_state = 134}, + [7660] = {.lex_state = 951}, + [7661] = {.lex_state = 951, .external_lex_state = 3}, + [7662] = {.lex_state = 951}, + [7663] = {.lex_state = 951}, + [7664] = {.lex_state = 951}, + [7665] = {.lex_state = 951}, + [7666] = {.lex_state = 98}, + [7667] = {.lex_state = 951}, + [7668] = {.lex_state = 951}, + [7669] = {.lex_state = 951, .external_lex_state = 3}, + [7670] = {.lex_state = 150}, + [7671] = {.lex_state = 951}, + [7672] = {.lex_state = 951}, + [7673] = {.lex_state = 515}, + [7674] = {.lex_state = 951}, + [7675] = {.lex_state = 951, .external_lex_state = 3}, + [7676] = {.lex_state = 134}, + [7677] = {.lex_state = 38}, + [7678] = {.lex_state = 951}, + [7679] = {.lex_state = 951}, + [7680] = {.lex_state = 951}, + [7681] = {.lex_state = 951}, + [7682] = {.lex_state = 951, .external_lex_state = 3}, + [7683] = {.lex_state = 951}, + [7684] = {.lex_state = 951}, + [7685] = {.lex_state = 150}, + [7686] = {.lex_state = 951}, + [7687] = {.lex_state = 951}, + [7688] = {.lex_state = 951}, + [7689] = {.lex_state = 503}, + [7690] = {.lex_state = 951}, + [7691] = {.lex_state = 951}, + [7692] = {.lex_state = 951, .external_lex_state = 3}, + [7693] = {.lex_state = 502}, + [7694] = {.lex_state = 501}, + [7695] = {.lex_state = 951, .external_lex_state = 3}, + [7696] = {.lex_state = 951}, + [7697] = {.lex_state = 4776}, [7698] = {.lex_state = 948}, - [7699] = {.lex_state = 131}, - [7700] = {.lex_state = 948}, - [7701] = {.lex_state = 254}, - [7702] = {.lex_state = 948}, - [7703] = {.lex_state = 254}, - [7704] = {.lex_state = 46}, - [7705] = {.lex_state = 254}, - [7706] = {.lex_state = 131}, - [7707] = {.lex_state = 948}, - [7708] = {.lex_state = 500}, - [7709] = {.lex_state = 43}, - [7710] = {.lex_state = 948}, - [7711] = {.lex_state = 948}, - [7712] = {.lex_state = 948}, - [7713] = {.lex_state = 147}, - [7714] = {.lex_state = 948}, - [7715] = {.lex_state = 948}, - [7716] = {.lex_state = 948}, - [7717] = {.lex_state = 46}, - [7718] = {.lex_state = 948}, - [7719] = {.lex_state = 948}, - [7720] = {.lex_state = 147}, - [7721] = {.lex_state = 948}, - [7722] = {.lex_state = 948}, - [7723] = {.lex_state = 948}, - [7724] = {.lex_state = 43}, - [7725] = {.lex_state = 948}, - [7726] = {(TSStateId)(-1)}, + [7699] = {.lex_state = 948}, + [7700] = {.lex_state = 951}, + [7701] = {.lex_state = 951}, + [7702] = {.lex_state = 502}, + [7703] = {.lex_state = 951, .external_lex_state = 3}, + [7704] = {.lex_state = 951}, + [7705] = {.lex_state = 951}, + [7706] = {.lex_state = 951}, + [7707] = {.lex_state = 951}, + [7708] = {.lex_state = 951}, + [7709] = {.lex_state = 951}, + [7710] = {.lex_state = 502}, + [7711] = {.lex_state = 951}, + [7712] = {.lex_state = 502}, + [7713] = {.lex_state = 951, .external_lex_state = 3}, + [7714] = {.lex_state = 951}, + [7715] = {.lex_state = 951}, + [7716] = {.lex_state = 951}, + [7717] = {.lex_state = 951}, + [7718] = {.lex_state = 951}, + [7719] = {.lex_state = 951}, + [7720] = {.lex_state = 951}, + [7721] = {.lex_state = 951}, + [7722] = {.lex_state = 951}, + [7723] = {.lex_state = 951, .external_lex_state = 3}, + [7724] = {.lex_state = 951, .external_lex_state = 3}, + [7725] = {.lex_state = 951}, + [7726] = {.lex_state = 951}, + [7727] = {.lex_state = 951}, + [7728] = {.lex_state = 951, .external_lex_state = 4}, + [7729] = {.lex_state = 100}, + [7730] = {.lex_state = 951, .external_lex_state = 3}, + [7731] = {.lex_state = 951}, + [7732] = {.lex_state = 951, .external_lex_state = 3}, + [7733] = {.lex_state = 100}, + [7734] = {.lex_state = 134}, + [7735] = {.lex_state = 951, .external_lex_state = 3}, + [7736] = {.lex_state = 951}, + [7737] = {.lex_state = 951}, + [7738] = {.lex_state = 951}, + [7739] = {.lex_state = 951}, + [7740] = {.lex_state = 948}, + [7741] = {.lex_state = 951}, + [7742] = {.lex_state = 951}, + [7743] = {.lex_state = 951}, + [7744] = {.lex_state = 951, .external_lex_state = 3}, + [7745] = {.lex_state = 951}, + [7746] = {.lex_state = 951}, + [7747] = {.lex_state = 951}, + [7748] = {.lex_state = 951, .external_lex_state = 3}, + [7749] = {.lex_state = 951}, + [7750] = {.lex_state = 3521}, + [7751] = {.lex_state = 951, .external_lex_state = 3}, + [7752] = {.lex_state = 951}, + [7753] = {.lex_state = 948}, + [7754] = {.lex_state = 951}, + [7755] = {.lex_state = 948}, + [7756] = {.lex_state = 515}, + [7757] = {.lex_state = 951}, + [7758] = {.lex_state = 951}, + [7759] = {.lex_state = 951, .external_lex_state = 4}, + [7760] = {.lex_state = 502}, + [7761] = {.lex_state = 951}, + [7762] = {.lex_state = 951, .external_lex_state = 3}, + [7763] = {.lex_state = 951}, + [7764] = {.lex_state = 951, .external_lex_state = 4}, + [7765] = {.lex_state = 100}, + [7766] = {.lex_state = 150}, + [7767] = {.lex_state = 134}, + [7768] = {.lex_state = 948}, + [7769] = {.lex_state = 951}, + [7770] = {.lex_state = 150}, + [7771] = {.lex_state = 1058}, + [7772] = {.lex_state = 951, .external_lex_state = 3}, + [7773] = {.lex_state = 38}, + [7774] = {.lex_state = 4778}, + [7775] = {.lex_state = 951}, + [7776] = {.lex_state = 150}, + [7777] = {.lex_state = 951}, + [7778] = {.lex_state = 951}, + [7779] = {.lex_state = 951}, + [7780] = {.lex_state = 134}, + [7781] = {.lex_state = 951, .external_lex_state = 4}, + [7782] = {.lex_state = 100}, + [7783] = {.lex_state = 951}, + [7784] = {.lex_state = 951, .external_lex_state = 3}, + [7785] = {.lex_state = 951}, + [7786] = {.lex_state = 951}, + [7787] = {.lex_state = 951, .external_lex_state = 3}, + [7788] = {.lex_state = 951}, + [7789] = {.lex_state = 951}, + [7790] = {.lex_state = 951, .external_lex_state = 3}, + [7791] = {.lex_state = 4774}, + [7792] = {.lex_state = 951, .external_lex_state = 3}, + [7793] = {.lex_state = 951}, + [7794] = {.lex_state = 134}, + [7795] = {.lex_state = 951}, + [7796] = {.lex_state = 951, .external_lex_state = 4}, + [7797] = {.lex_state = 100}, + [7798] = {.lex_state = 951}, + [7799] = {.lex_state = 951}, + [7800] = {.lex_state = 951, .external_lex_state = 3}, + [7801] = {.lex_state = 4778}, + [7802] = {.lex_state = 150}, + [7803] = {.lex_state = 503}, + [7804] = {.lex_state = 951}, + [7805] = {.lex_state = 134}, + [7806] = {.lex_state = 100}, + [7807] = {.lex_state = 951, .external_lex_state = 3}, + [7808] = {.lex_state = 951}, + [7809] = {.lex_state = 951}, + [7810] = {.lex_state = 951, .external_lex_state = 4}, + [7811] = {.lex_state = 100}, + [7812] = {.lex_state = 951}, + [7813] = {.lex_state = 951, .external_lex_state = 4}, + [7814] = {.lex_state = 200}, + [7815] = {.lex_state = 4793}, + [7816] = {.lex_state = 951}, + [7817] = {.lex_state = 515}, + [7818] = {.lex_state = 948}, + [7819] = {.lex_state = 200}, + [7820] = {.lex_state = 951, .external_lex_state = 3}, + [7821] = {.lex_state = 951}, + [7822] = {.lex_state = 951}, + [7823] = {.lex_state = 951}, + [7824] = {.lex_state = 951, .external_lex_state = 4}, + [7825] = {.lex_state = 100}, + [7826] = {.lex_state = 951}, + [7827] = {.lex_state = 98}, + [7828] = {.lex_state = 951, .external_lex_state = 3}, + [7829] = {.lex_state = 951}, + [7830] = {.lex_state = 100}, + [7831] = {.lex_state = 951}, + [7832] = {.lex_state = 951}, + [7833] = {.lex_state = 100}, + [7834] = {.lex_state = 134}, + [7835] = {.lex_state = 951}, + [7836] = {.lex_state = 515}, + [7837] = {.lex_state = 951}, + [7838] = {.lex_state = 951, .external_lex_state = 4}, + [7839] = {.lex_state = 100}, + [7840] = {.lex_state = 951, .external_lex_state = 3}, + [7841] = {.lex_state = 951}, + [7842] = {.lex_state = 41}, + [7843] = {.lex_state = 134}, + [7844] = {.lex_state = 951}, + [7845] = {.lex_state = 517}, + [7846] = {.lex_state = 951}, + [7847] = {.lex_state = 951}, + [7848] = {.lex_state = 134}, + [7849] = {.lex_state = 951}, + [7850] = {.lex_state = 951, .external_lex_state = 3}, + [7851] = {.lex_state = 515}, + [7852] = {.lex_state = 951, .external_lex_state = 4}, + [7853] = {.lex_state = 100}, + [7854] = {.lex_state = 134}, + [7855] = {.lex_state = 951}, + [7856] = {.lex_state = 951, .external_lex_state = 3}, + [7857] = {.lex_state = 951}, + [7858] = {.lex_state = 951}, + [7859] = {.lex_state = 150}, + [7860] = {.lex_state = 150}, + [7861] = {.lex_state = 951}, + [7862] = {.lex_state = 951}, + [7863] = {.lex_state = 38}, + [7864] = {.lex_state = 504}, + [7865] = {.lex_state = 951, .external_lex_state = 4}, + [7866] = {.lex_state = 100}, + [7867] = {.lex_state = 1058}, + [7868] = {.lex_state = 951}, + [7869] = {.lex_state = 134}, + [7870] = {.lex_state = 41}, + [7871] = {.lex_state = 951}, + [7872] = {.lex_state = 100}, + [7873] = {.lex_state = 951}, + [7874] = {.lex_state = 951}, + [7875] = {.lex_state = 951}, + [7876] = {.lex_state = 100}, + [7877] = {.lex_state = 951}, + [7878] = {.lex_state = 951, .external_lex_state = 4}, + [7879] = {.lex_state = 100}, + [7880] = {.lex_state = 951}, + [7881] = {.lex_state = 951}, + [7882] = {.lex_state = 951}, + [7883] = {.lex_state = 150}, + [7884] = {.lex_state = 951}, + [7885] = {.lex_state = 951}, + [7886] = {.lex_state = 951}, + [7887] = {.lex_state = 951}, + [7888] = {.lex_state = 951}, + [7889] = {.lex_state = 951}, + [7890] = {.lex_state = 951}, + [7891] = {.lex_state = 951, .external_lex_state = 4}, + [7892] = {.lex_state = 100}, + [7893] = {.lex_state = 951}, + [7894] = {.lex_state = 4774}, + [7895] = {.lex_state = 951, .external_lex_state = 3}, + [7896] = {.lex_state = 951}, + [7897] = {.lex_state = 38}, + [7898] = {.lex_state = 951}, + [7899] = {.lex_state = 951}, + [7900] = {.lex_state = 951}, + [7901] = {.lex_state = 951}, + [7902] = {.lex_state = 385}, + [7903] = {.lex_state = 951}, + [7904] = {.lex_state = 951, .external_lex_state = 4}, + [7905] = {.lex_state = 100}, + [7906] = {.lex_state = 38}, + [7907] = {.lex_state = 951}, + [7908] = {.lex_state = 951}, + [7909] = {.lex_state = 951, .external_lex_state = 3}, + [7910] = {.lex_state = 502}, + [7911] = {.lex_state = 100}, + [7912] = {.lex_state = 502}, + [7913] = {.lex_state = 503}, + [7914] = {.lex_state = 951, .external_lex_state = 3}, + [7915] = {.lex_state = 951}, + [7916] = {.lex_state = 951}, + [7917] = {.lex_state = 951, .external_lex_state = 4}, + [7918] = {.lex_state = 100}, + [7919] = {.lex_state = 951}, + [7920] = {.lex_state = 951}, + [7921] = {.lex_state = 951}, + [7922] = {.lex_state = 951}, + [7923] = {.lex_state = 100}, + [7924] = {.lex_state = 951}, + [7925] = {.lex_state = 951}, + [7926] = {.lex_state = 951, .external_lex_state = 3}, + [7927] = {.lex_state = 951, .external_lex_state = 3}, + [7928] = {.lex_state = 504}, + [7929] = {.lex_state = 134}, + [7930] = {.lex_state = 951, .external_lex_state = 4}, + [7931] = {.lex_state = 100}, + [7932] = {.lex_state = 951}, + [7933] = {.lex_state = 951}, + [7934] = {.lex_state = 951}, + [7935] = {.lex_state = 951}, + [7936] = {.lex_state = 150}, + [7937] = {.lex_state = 951}, + [7938] = {.lex_state = 951}, + [7939] = {.lex_state = 951}, + [7940] = {.lex_state = 951, .external_lex_state = 4}, + [7941] = {.lex_state = 100}, + [7942] = {.lex_state = 951}, + [7943] = {.lex_state = 951}, + [7944] = {.lex_state = 951}, + [7945] = {.lex_state = 951, .external_lex_state = 3}, + [7946] = {.lex_state = 951}, + [7947] = {.lex_state = 951}, + [7948] = {.lex_state = 515}, + [7949] = {.lex_state = 951}, + [7950] = {.lex_state = 951, .external_lex_state = 4}, + [7951] = {.lex_state = 951}, + [7952] = {.lex_state = 951, .external_lex_state = 3}, + [7953] = {.lex_state = 951}, + [7954] = {.lex_state = 951}, + [7955] = {.lex_state = 951}, + [7956] = {.lex_state = 948}, + [7957] = {.lex_state = 951}, + [7958] = {.lex_state = 951}, + [7959] = {.lex_state = 951, .external_lex_state = 4}, + [7960] = {.lex_state = 951}, + [7961] = {.lex_state = 951}, + [7962] = {.lex_state = 4776}, + [7963] = {.lex_state = 951}, + [7964] = {.lex_state = 951}, + [7965] = {.lex_state = 951}, + [7966] = {.lex_state = 951}, + [7967] = {.lex_state = 948}, + [7968] = {.lex_state = 951, .external_lex_state = 4}, + [7969] = {.lex_state = 951}, + [7970] = {.lex_state = 504}, + [7971] = {.lex_state = 260}, + [7972] = {.lex_state = 951}, + [7973] = {.lex_state = 134}, + [7974] = {.lex_state = 951}, + [7975] = {.lex_state = 951}, + [7976] = {.lex_state = 948}, + [7977] = {.lex_state = 951, .external_lex_state = 4}, + [7978] = {.lex_state = 951}, + [7979] = {.lex_state = 951}, + [7980] = {.lex_state = 951}, + [7981] = {.lex_state = 951}, + [7982] = {.lex_state = 951}, + [7983] = {.lex_state = 951}, + [7984] = {.lex_state = 951}, + [7985] = {.lex_state = 951, .external_lex_state = 3}, + [7986] = {.lex_state = 951, .external_lex_state = 4}, + [7987] = {.lex_state = 951}, + [7988] = {.lex_state = 951}, + [7989] = {.lex_state = 951}, + [7990] = {.lex_state = 38}, + [7991] = {.lex_state = 951}, + [7992] = {.lex_state = 150}, + [7993] = {.lex_state = 951, .external_lex_state = 4}, + [7994] = {.lex_state = 951, .external_lex_state = 4}, + [7995] = {.lex_state = 951, .external_lex_state = 4}, + [7996] = {.lex_state = 951, .external_lex_state = 4}, + [7997] = {.lex_state = 951, .external_lex_state = 4}, + [7998] = {.lex_state = 951, .external_lex_state = 4}, + [7999] = {.lex_state = 951, .external_lex_state = 4}, + [8000] = {.lex_state = 951, .external_lex_state = 4}, + [8001] = {.lex_state = 951, .external_lex_state = 4}, + [8002] = {.lex_state = 951, .external_lex_state = 4}, + [8003] = {.lex_state = 951, .external_lex_state = 4}, + [8004] = {.lex_state = 951, .external_lex_state = 4}, + [8005] = {.lex_state = 951, .external_lex_state = 4}, + [8006] = {.lex_state = 951, .external_lex_state = 4}, + [8007] = {.lex_state = 951, .external_lex_state = 4}, + [8008] = {.lex_state = 951, .external_lex_state = 4}, + [8009] = {.lex_state = 951, .external_lex_state = 4}, + [8010] = {.lex_state = 951, .external_lex_state = 4}, + [8011] = {.lex_state = 951, .external_lex_state = 4}, + [8012] = {.lex_state = 951, .external_lex_state = 4}, + [8013] = {.lex_state = 951, .external_lex_state = 4}, + [8014] = {.lex_state = 951, .external_lex_state = 4}, + [8015] = {.lex_state = 951, .external_lex_state = 4}, + [8016] = {.lex_state = 951, .external_lex_state = 4}, + [8017] = {.lex_state = 951, .external_lex_state = 4}, + [8018] = {.lex_state = 951, .external_lex_state = 4}, + [8019] = {.lex_state = 951, .external_lex_state = 4}, + [8020] = {.lex_state = 951, .external_lex_state = 4}, + [8021] = {.lex_state = 951, .external_lex_state = 4}, + [8022] = {.lex_state = 951, .external_lex_state = 4}, + [8023] = {.lex_state = 951}, + [8024] = {.lex_state = 260}, + [8025] = {.lex_state = 951}, + [8026] = {.lex_state = 951, .external_lex_state = 3}, + [8027] = {.lex_state = 38}, + [8028] = {.lex_state = 951}, + [8029] = {.lex_state = 951}, + [8030] = {.lex_state = 200}, + [8031] = {.lex_state = 951}, + [8032] = {.lex_state = 926}, + [8033] = {.lex_state = 515}, + [8034] = {.lex_state = 951}, + [8035] = {.lex_state = 951}, + [8036] = {.lex_state = 134}, + [8037] = {.lex_state = 926}, + [8038] = {.lex_state = 951}, + [8039] = {.lex_state = 951}, + [8040] = {.lex_state = 951}, + [8041] = {.lex_state = 951}, + [8042] = {.lex_state = 951}, + [8043] = {.lex_state = 951}, + [8044] = {.lex_state = 38}, + [8045] = {.lex_state = 952}, + [8046] = {.lex_state = 260}, + [8047] = {.lex_state = 4774}, + [8048] = {.lex_state = 951, .external_lex_state = 3}, + [8049] = {.lex_state = 951}, + [8050] = {.lex_state = 951}, + [8051] = {.lex_state = 948}, + [8052] = {.lex_state = 951, .external_lex_state = 3}, + [8053] = {.lex_state = 951}, + [8054] = {.lex_state = 260}, + [8055] = {.lex_state = 926}, + [8056] = {.lex_state = 260}, + [8057] = {.lex_state = 951}, + [8058] = {.lex_state = 951, .external_lex_state = 3}, + [8059] = {.lex_state = 951}, + [8060] = {.lex_state = 951}, + [8061] = {.lex_state = 951}, + [8062] = {.lex_state = 515}, + [8063] = {.lex_state = 951, .external_lex_state = 3}, + [8064] = {.lex_state = 951}, + [8065] = {.lex_state = 951}, + [8066] = {.lex_state = 951}, + [8067] = {.lex_state = 134}, + [8068] = {.lex_state = 951}, + [8069] = {.lex_state = 951}, + [8070] = {.lex_state = 100}, + [8071] = {.lex_state = 150}, + [8072] = {.lex_state = 951}, + [8073] = {.lex_state = 951}, + [8074] = {.lex_state = 951}, + [8075] = {.lex_state = 951}, + [8076] = {.lex_state = 951}, + [8077] = {.lex_state = 951}, + [8078] = {.lex_state = 951, .external_lex_state = 3}, + [8079] = {(TSStateId)(-1)}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -65870,84 +66416,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__unquoted_in_record_token1] = ACTIONS(1), [aux_sym__unquoted_in_record_token2] = ACTIONS(1), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1), + [sym_raw_string_content] = ACTIONS(1), + [sym_raw_string_end] = ACTIONS(1), }, [1] = { - [sym_nu_script] = STATE(7486), - [sym_shebang] = STATE(113), - [sym__block_body_statement] = STATE(6552), - [sym__declaration] = STATE(7079), - [sym_decl_alias] = STATE(7169), - [sym_stmt_let] = STATE(6842), - [sym_stmt_mut] = STATE(6842), - [sym_stmt_const] = STATE(6842), - [sym_assignment] = STATE(6842), - [sym__mutable_assignment_pattern] = STATE(6847), - [sym__statement] = STATE(7079), - [sym_pipeline] = STATE(6842), - [sym__block_body] = STATE(7406), - [sym_cmd_identifier] = STATE(4801), - [sym_decl_def] = STATE(7169), - [sym_decl_export] = STATE(7169), - [sym_decl_extern] = STATE(7169), - [sym_decl_module] = STATE(7169), - [sym_decl_use] = STATE(7169), - [sym__ctrl_statement] = STATE(6842), - [sym__ctrl_expression] = STATE(5080), - [sym_ctrl_for] = STATE(6702), - [sym_ctrl_loop] = STATE(6702), - [sym_ctrl_error] = STATE(6702), - [sym_ctrl_while] = STATE(6702), - [sym_ctrl_do] = STATE(5113), - [sym_ctrl_if] = STATE(5113), - [sym_ctrl_match] = STATE(5113), - [sym_ctrl_try] = STATE(5113), - [sym_ctrl_return] = STATE(5113), - [sym_pipe_element] = STATE(4775), - [sym_stmt_source] = STATE(6842), - [sym_stmt_register] = STATE(6842), - [sym__stmt_hide] = STATE(6842), - [sym_hide_mod] = STATE(6758), - [sym_hide_env] = STATE(6758), - [sym__stmt_overlay] = STATE(6842), - [sym_overlay_list] = STATE(6961), - [sym_overlay_hide] = STATE(6961), - [sym_overlay_new] = STATE(6961), - [sym_overlay_use] = STATE(6961), - [sym_where_command] = STATE(5143), - [sym__expression] = STATE(3799), - [sym_expr_unary] = STATE(2430), - [sym__expr_unary_minus] = STATE(2432), - [sym_expr_binary] = STATE(2430), - [sym__expr_binary_expression] = STATE(3832), - [sym_expr_parenthesized] = STATE(2004), - [sym_val_range] = STATE(3821), - [sym__value] = STATE(2430), - [sym_val_nothing] = STATE(2399), - [sym_val_bool] = STATE(2399), - [sym_val_variable] = STATE(1330), - [sym_val_number] = STATE(2399), - [sym__val_number_decimal] = STATE(1568), - [sym__val_number] = STATE(2385), - [sym_val_duration] = STATE(2399), - [sym_val_filesize] = STATE(2399), - [sym_val_binary] = STATE(2399), - [sym_val_string] = STATE(2399), - [sym__str_double_quotes] = STATE(1975), - [sym_val_interpolated] = STATE(2399), - [sym__inter_single_quotes] = STATE(2384), - [sym__inter_double_quotes] = STATE(2390), - [sym_val_list] = STATE(2399), - [sym_val_record] = STATE(2399), - [sym_val_table] = STATE(2399), - [sym_val_closure] = STATE(2399), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(5143), + [sym_nu_script] = STATE(7964), + [sym_shebang] = STATE(93), + [sym__block_body_statement] = STATE(6369), + [sym__declaration] = STATE(6892), + [sym_decl_alias] = STATE(7011), + [sym_stmt_let] = STATE(6877), + [sym_stmt_mut] = STATE(6877), + [sym_stmt_const] = STATE(6877), + [sym_assignment] = STATE(6877), + [sym__mutable_assignment_pattern] = STATE(6904), + [sym__statement] = STATE(6892), + [sym_pipeline] = STATE(6877), + [sym__block_body] = STATE(7875), + [sym_cmd_identifier] = STATE(4714), + [sym_decl_def] = STATE(7011), + [sym_decl_export] = STATE(7011), + [sym_decl_extern] = STATE(7011), + [sym_decl_module] = STATE(7011), + [sym_decl_use] = STATE(7011), + [sym__ctrl_statement] = STATE(6877), + [sym__ctrl_expression] = STATE(5155), + [sym_ctrl_for] = STATE(7034), + [sym_ctrl_loop] = STATE(7034), + [sym_ctrl_error] = STATE(7034), + [sym_ctrl_while] = STATE(7034), + [sym_ctrl_do] = STATE(5175), + [sym_ctrl_if] = STATE(5175), + [sym_ctrl_match] = STATE(5175), + [sym_ctrl_try] = STATE(5175), + [sym_ctrl_return] = STATE(5175), + [sym_pipe_element] = STATE(4782), + [sym_stmt_source] = STATE(6877), + [sym_stmt_register] = STATE(6877), + [sym__stmt_hide] = STATE(6877), + [sym_hide_mod] = STATE(6852), + [sym_hide_env] = STATE(6852), + [sym__stmt_overlay] = STATE(6877), + [sym_overlay_list] = STATE(6913), + [sym_overlay_hide] = STATE(6913), + [sym_overlay_new] = STATE(6913), + [sym_overlay_use] = STATE(6913), + [sym_where_command] = STATE(5180), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2509), + [sym__expr_unary_minus] = STATE(2510), + [sym_expr_binary] = STATE(2509), + [sym__expr_binary_expression] = STATE(3876), + [sym_expr_parenthesized] = STATE(2042), + [sym_val_range] = STATE(3900), + [sym__value] = STATE(2509), + [sym_val_nothing] = STATE(2441), + [sym_val_bool] = STATE(2441), + [sym_val_variable] = STATE(1364), + [sym_val_number] = STATE(2441), + [sym__val_number_decimal] = STATE(1665), + [sym__val_number] = STATE(2488), + [sym_val_duration] = STATE(2441), + [sym_val_filesize] = STATE(2441), + [sym_val_binary] = STATE(2441), + [sym_val_string] = STATE(2441), + [sym__raw_str] = STATE(2065), + [sym__str_double_quotes] = STATE(2065), + [sym_val_interpolated] = STATE(2441), + [sym__inter_single_quotes] = STATE(2563), + [sym__inter_double_quotes] = STATE(2436), + [sym_val_list] = STATE(2441), + [sym_val_record] = STATE(2441), + [sym_val_table] = STATE(2441), + [sym_val_closure] = STATE(2441), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5180), [sym_comment] = STATE(1), - [aux_sym_shebang_repeat1] = STATE(6685), - [aux_sym_pipeline_repeat1] = STATE(193), - [aux_sym__block_body_repeat1] = STATE(151), - [aux_sym__block_body_repeat2] = STATE(153), - [aux_sym_pipe_element_repeat2] = STATE(413), + [aux_sym_shebang_repeat1] = STATE(6828), + [aux_sym_pipeline_repeat1] = STATE(194), + [aux_sym__block_body_repeat1] = STATE(121), + [aux_sym__block_body_repeat2] = STATE(159), + [aux_sym_pipe_element_repeat2] = STATE(354), [ts_builtin_sym_end] = ACTIONS(5), [anon_sym_POUND_BANG] = ACTIONS(7), [anon_sym_export] = ACTIONS(9), @@ -66051,20548 +66601,17211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_env_var_token1] = ACTIONS(119), [anon_sym_CARET] = ACTIONS(121), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(123), }, [2] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7401), - [sym_cmd_identifier] = STATE(4582), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym_parameter_pipes] = STATE(123), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym__match_pattern_record_variable] = STATE(656), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1910), - [sym__spread_parenthesized] = STATE(567), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym__spread_variable] = STATE(571), - [sym_val_variable] = STATE(173), - [sym_val_number] = STATE(2382), - [sym__val_number_decimal] = STATE(1436), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(2382), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym__spread_record] = STATE(567), - [sym_record_body] = STATE(7402), - [sym_record_entry] = STATE(516), - [sym__record_key] = STATE(7449), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7678), + [sym_cmd_identifier] = STATE(4642), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym_parameter_pipes] = STATE(124), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym__match_pattern_record_variable] = STATE(688), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1943), + [sym__spread_parenthesized] = STATE(572), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym__spread_variable] = STATE(573), + [sym_val_variable] = STATE(176), + [sym_val_number] = STATE(2379), + [sym__val_number_decimal] = STATE(1584), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(2379), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym__spread_record] = STATE(572), + [sym_record_body] = STATE(7711), + [sym_record_entry] = STATE(508), + [sym__record_key] = STATE(7733), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(2), [aux_sym_shebang_repeat1] = STATE(29), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym__match_pattern_record_repeat1] = STATE(203), - [aux_sym_pipe_element_repeat2] = STATE(411), - [aux_sym_record_body_repeat1] = STATE(210), - [anon_sym_export] = ACTIONS(123), - [anon_sym_alias] = ACTIONS(125), - [anon_sym_let] = ACTIONS(127), - [anon_sym_let_DASHenv] = ACTIONS(127), - [anon_sym_mut] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(133), - [aux_sym_cmd_identifier_token3] = ACTIONS(133), - [aux_sym_cmd_identifier_token4] = ACTIONS(133), - [aux_sym_cmd_identifier_token5] = ACTIONS(133), - [aux_sym_cmd_identifier_token6] = ACTIONS(133), - [aux_sym_cmd_identifier_token7] = ACTIONS(133), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(133), - [aux_sym_cmd_identifier_token11] = ACTIONS(133), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(133), - [aux_sym_cmd_identifier_token17] = ACTIONS(133), - [aux_sym_cmd_identifier_token18] = ACTIONS(133), - [aux_sym_cmd_identifier_token19] = ACTIONS(133), - [aux_sym_cmd_identifier_token20] = ACTIONS(133), - [aux_sym_cmd_identifier_token21] = ACTIONS(133), - [aux_sym_cmd_identifier_token22] = ACTIONS(133), - [aux_sym_cmd_identifier_token23] = ACTIONS(133), - [aux_sym_cmd_identifier_token24] = ACTIONS(133), - [aux_sym_cmd_identifier_token25] = ACTIONS(133), - [aux_sym_cmd_identifier_token26] = ACTIONS(133), - [aux_sym_cmd_identifier_token27] = ACTIONS(133), - [aux_sym_cmd_identifier_token28] = ACTIONS(133), - [aux_sym_cmd_identifier_token29] = ACTIONS(133), - [aux_sym_cmd_identifier_token30] = ACTIONS(133), - [aux_sym_cmd_identifier_token31] = ACTIONS(133), - [aux_sym_cmd_identifier_token32] = ACTIONS(133), - [aux_sym_cmd_identifier_token33] = ACTIONS(133), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(133), - [aux_sym_cmd_identifier_token36] = ACTIONS(133), - [anon_sym_true] = ACTIONS(135), - [anon_sym_false] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(139), - [aux_sym_cmd_identifier_token39] = ACTIONS(141), - [aux_sym_cmd_identifier_token40] = ACTIONS(141), - [sym__newline] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(149), - [anon_sym_export_DASHenv] = ACTIONS(151), - [anon_sym_extern] = ACTIONS(153), - [anon_sym_module] = ACTIONS(155), - [anon_sym_use] = ACTIONS(157), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(163), - [anon_sym_error] = ACTIONS(165), - [anon_sym_list] = ACTIONS(167), - [anon_sym_DASH] = ACTIONS(169), - [anon_sym_break] = ACTIONS(171), - [anon_sym_continue] = ACTIONS(173), - [anon_sym_for] = ACTIONS(175), - [anon_sym_in] = ACTIONS(167), - [anon_sym_loop] = ACTIONS(177), - [anon_sym_make] = ACTIONS(167), - [anon_sym_while] = ACTIONS(179), - [anon_sym_do] = ACTIONS(181), - [anon_sym_if] = ACTIONS(183), - [anon_sym_else] = ACTIONS(167), - [anon_sym_match] = ACTIONS(185), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(189), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(193), - [anon_sym_catch] = ACTIONS(167), - [anon_sym_return] = ACTIONS(195), - [anon_sym_source] = ACTIONS(197), - [anon_sym_source_DASHenv] = ACTIONS(197), - [anon_sym_register] = ACTIONS(199), - [anon_sym_hide] = ACTIONS(201), - [anon_sym_hide_DASHenv] = ACTIONS(203), - [anon_sym_overlay] = ACTIONS(205), - [anon_sym_new] = ACTIONS(167), - [anon_sym_as] = ACTIONS(167), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(211), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(241), - [anon_sym_PLUS] = ACTIONS(243), + [aux_sym__match_pattern_record_repeat1] = STATE(210), + [aux_sym_pipe_element_repeat2] = STATE(361), + [aux_sym_record_body_repeat1] = STATE(211), + [anon_sym_export] = ACTIONS(125), + [anon_sym_alias] = ACTIONS(127), + [anon_sym_let] = ACTIONS(129), + [anon_sym_let_DASHenv] = ACTIONS(129), + [anon_sym_mut] = ACTIONS(131), + [anon_sym_const] = ACTIONS(133), + [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(135), + [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [aux_sym_cmd_identifier_token12] = ACTIONS(135), + [aux_sym_cmd_identifier_token13] = ACTIONS(135), + [aux_sym_cmd_identifier_token14] = ACTIONS(135), + [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [aux_sym_cmd_identifier_token16] = ACTIONS(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(135), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(135), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [anon_sym_true] = ACTIONS(137), + [anon_sym_false] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(141), + [aux_sym_cmd_identifier_token39] = ACTIONS(143), + [aux_sym_cmd_identifier_token40] = ACTIONS(143), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_def] = ACTIONS(151), + [anon_sym_export_DASHenv] = ACTIONS(153), + [anon_sym_extern] = ACTIONS(155), + [anon_sym_module] = ACTIONS(157), + [anon_sym_use] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(163), + [anon_sym_DOLLAR] = ACTIONS(165), + [anon_sym_error] = ACTIONS(167), + [anon_sym_list] = ACTIONS(169), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_break] = ACTIONS(173), + [anon_sym_continue] = ACTIONS(175), + [anon_sym_for] = ACTIONS(177), + [anon_sym_in] = ACTIONS(169), + [anon_sym_loop] = ACTIONS(179), + [anon_sym_make] = ACTIONS(169), + [anon_sym_while] = ACTIONS(181), + [anon_sym_do] = ACTIONS(183), + [anon_sym_if] = ACTIONS(185), + [anon_sym_else] = ACTIONS(169), + [anon_sym_match] = ACTIONS(187), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_RBRACE] = ACTIONS(191), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(195), + [anon_sym_catch] = ACTIONS(169), + [anon_sym_return] = ACTIONS(197), + [anon_sym_source] = ACTIONS(199), + [anon_sym_source_DASHenv] = ACTIONS(199), + [anon_sym_register] = ACTIONS(201), + [anon_sym_hide] = ACTIONS(203), + [anon_sym_hide_DASHenv] = ACTIONS(205), + [anon_sym_overlay] = ACTIONS(207), + [anon_sym_new] = ACTIONS(169), + [anon_sym_as] = ACTIONS(169), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(217), + [aux_sym__val_number_decimal_token1] = ACTIONS(219), + [aux_sym__val_number_decimal_token2] = ACTIONS(221), + [aux_sym__val_number_decimal_token3] = ACTIONS(223), + [aux_sym__val_number_decimal_token4] = ACTIONS(225), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(243), + [anon_sym_PLUS] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [3] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7479), - [sym_cmd_identifier] = STATE(4554), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym_parameter_pipes] = STATE(121), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1847), - [sym__spread_parenthesized] = STATE(567), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym__spread_variable] = STATE(571), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2222), - [sym__val_number_decimal] = STATE(1436), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(2222), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym__spread_record] = STATE(567), - [sym_record_body] = STATE(7481), - [sym_record_entry] = STATE(6911), - [sym__record_key] = STATE(7516), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7747), + [sym_cmd_identifier] = STATE(4656), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym_parameter_pipes] = STATE(122), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1913), + [sym__spread_parenthesized] = STATE(7465), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym__spread_variable] = STATE(7436), + [sym_val_variable] = STATE(1323), + [sym_val_number] = STATE(2300), + [sym__val_number_decimal] = STATE(1584), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(2300), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym__spread_record] = STATE(7465), + [sym_record_body] = STATE(7933), + [sym_record_entry] = STATE(6808), + [sym__record_key] = STATE(7872), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(3), [aux_sym_shebang_repeat1] = STATE(27), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [aux_sym_record_body_repeat1] = STATE(210), - [anon_sym_export] = ACTIONS(249), - [anon_sym_alias] = ACTIONS(251), - [anon_sym_let] = ACTIONS(253), - [anon_sym_let_DASHenv] = ACTIONS(253), - [anon_sym_mut] = ACTIONS(255), - [anon_sym_const] = ACTIONS(257), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(133), - [aux_sym_cmd_identifier_token3] = ACTIONS(133), - [aux_sym_cmd_identifier_token4] = ACTIONS(133), - [aux_sym_cmd_identifier_token5] = ACTIONS(133), - [aux_sym_cmd_identifier_token6] = ACTIONS(133), - [aux_sym_cmd_identifier_token7] = ACTIONS(133), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(133), - [aux_sym_cmd_identifier_token11] = ACTIONS(133), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(133), - [aux_sym_cmd_identifier_token17] = ACTIONS(133), - [aux_sym_cmd_identifier_token18] = ACTIONS(133), - [aux_sym_cmd_identifier_token19] = ACTIONS(133), - [aux_sym_cmd_identifier_token20] = ACTIONS(133), - [aux_sym_cmd_identifier_token21] = ACTIONS(133), - [aux_sym_cmd_identifier_token22] = ACTIONS(133), - [aux_sym_cmd_identifier_token23] = ACTIONS(133), - [aux_sym_cmd_identifier_token24] = ACTIONS(133), - [aux_sym_cmd_identifier_token25] = ACTIONS(133), - [aux_sym_cmd_identifier_token26] = ACTIONS(133), - [aux_sym_cmd_identifier_token27] = ACTIONS(133), - [aux_sym_cmd_identifier_token28] = ACTIONS(133), - [aux_sym_cmd_identifier_token29] = ACTIONS(133), - [aux_sym_cmd_identifier_token30] = ACTIONS(133), - [aux_sym_cmd_identifier_token31] = ACTIONS(133), - [aux_sym_cmd_identifier_token32] = ACTIONS(133), - [aux_sym_cmd_identifier_token33] = ACTIONS(133), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(133), - [aux_sym_cmd_identifier_token36] = ACTIONS(133), - [anon_sym_true] = ACTIONS(135), - [anon_sym_false] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(139), - [aux_sym_cmd_identifier_token39] = ACTIONS(141), - [aux_sym_cmd_identifier_token40] = ACTIONS(141), - [sym__newline] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(259), - [anon_sym_export_DASHenv] = ACTIONS(261), - [anon_sym_extern] = ACTIONS(263), - [anon_sym_module] = ACTIONS(265), - [anon_sym_use] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(269), - [anon_sym_error] = ACTIONS(271), - [anon_sym_list] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(169), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(273), - [anon_sym_loop] = ACTIONS(281), - [anon_sym_make] = ACTIONS(273), - [anon_sym_while] = ACTIONS(283), - [anon_sym_do] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), - [anon_sym_else] = ACTIONS(273), - [anon_sym_match] = ACTIONS(289), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(291), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(293), - [anon_sym_catch] = ACTIONS(273), - [anon_sym_return] = ACTIONS(295), - [anon_sym_source] = ACTIONS(297), - [anon_sym_source_DASHenv] = ACTIONS(297), - [anon_sym_register] = ACTIONS(299), - [anon_sym_hide] = ACTIONS(301), - [anon_sym_hide_DASHenv] = ACTIONS(303), - [anon_sym_overlay] = ACTIONS(305), - [anon_sym_new] = ACTIONS(273), - [anon_sym_as] = ACTIONS(273), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(243), + [aux_sym_pipe_element_repeat2] = STATE(361), + [aux_sym_record_body_repeat1] = STATE(211), + [anon_sym_export] = ACTIONS(253), + [anon_sym_alias] = ACTIONS(255), + [anon_sym_let] = ACTIONS(257), + [anon_sym_let_DASHenv] = ACTIONS(257), + [anon_sym_mut] = ACTIONS(259), + [anon_sym_const] = ACTIONS(261), + [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(135), + [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [aux_sym_cmd_identifier_token12] = ACTIONS(135), + [aux_sym_cmd_identifier_token13] = ACTIONS(135), + [aux_sym_cmd_identifier_token14] = ACTIONS(135), + [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [aux_sym_cmd_identifier_token16] = ACTIONS(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(135), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(135), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [anon_sym_true] = ACTIONS(137), + [anon_sym_false] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(141), + [aux_sym_cmd_identifier_token39] = ACTIONS(143), + [aux_sym_cmd_identifier_token40] = ACTIONS(143), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_def] = ACTIONS(263), + [anon_sym_export_DASHenv] = ACTIONS(265), + [anon_sym_extern] = ACTIONS(267), + [anon_sym_module] = ACTIONS(269), + [anon_sym_use] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(163), + [anon_sym_DOLLAR] = ACTIONS(273), + [anon_sym_error] = ACTIONS(275), + [anon_sym_list] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_for] = ACTIONS(283), + [anon_sym_in] = ACTIONS(277), + [anon_sym_loop] = ACTIONS(285), + [anon_sym_make] = ACTIONS(277), + [anon_sym_while] = ACTIONS(287), + [anon_sym_do] = ACTIONS(289), + [anon_sym_if] = ACTIONS(291), + [anon_sym_else] = ACTIONS(277), + [anon_sym_match] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_RBRACE] = ACTIONS(295), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(297), + [anon_sym_catch] = ACTIONS(277), + [anon_sym_return] = ACTIONS(299), + [anon_sym_source] = ACTIONS(301), + [anon_sym_source_DASHenv] = ACTIONS(301), + [anon_sym_register] = ACTIONS(303), + [anon_sym_hide] = ACTIONS(305), + [anon_sym_hide_DASHenv] = ACTIONS(307), + [anon_sym_overlay] = ACTIONS(309), + [anon_sym_new] = ACTIONS(277), + [anon_sym_as] = ACTIONS(277), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(219), + [aux_sym__val_number_decimal_token2] = ACTIONS(221), + [aux_sym__val_number_decimal_token3] = ACTIONS(223), + [aux_sym__val_number_decimal_token4] = ACTIONS(225), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [4] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7636), - [sym_cmd_identifier] = STATE(4554), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym_parameter_pipes] = STATE(130), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1847), - [sym__spread_parenthesized] = STATE(567), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym__spread_variable] = STATE(571), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2222), - [sym__val_number_decimal] = STATE(1436), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(2222), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym__spread_record] = STATE(567), - [sym_record_body] = STATE(7424), - [sym_record_entry] = STATE(6911), - [sym__record_key] = STATE(7516), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7893), + [sym_cmd_identifier] = STATE(4656), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym_parameter_pipes] = STATE(131), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1913), + [sym__spread_parenthesized] = STATE(7465), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym__spread_variable] = STATE(7436), + [sym_val_variable] = STATE(1323), + [sym_val_number] = STATE(2300), + [sym__val_number_decimal] = STATE(1584), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(2300), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym__spread_record] = STATE(7465), + [sym_record_body] = STATE(7708), + [sym_record_entry] = STATE(6808), + [sym__record_key] = STATE(7872), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(4), - [aux_sym_shebang_repeat1] = STATE(30), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_shebang_repeat1] = STATE(28), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [aux_sym_record_body_repeat1] = STATE(210), - [anon_sym_export] = ACTIONS(249), - [anon_sym_alias] = ACTIONS(251), - [anon_sym_let] = ACTIONS(253), - [anon_sym_let_DASHenv] = ACTIONS(253), - [anon_sym_mut] = ACTIONS(255), - [anon_sym_const] = ACTIONS(257), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(133), - [aux_sym_cmd_identifier_token3] = ACTIONS(133), - [aux_sym_cmd_identifier_token4] = ACTIONS(133), - [aux_sym_cmd_identifier_token5] = ACTIONS(133), - [aux_sym_cmd_identifier_token6] = ACTIONS(133), - [aux_sym_cmd_identifier_token7] = ACTIONS(133), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(133), - [aux_sym_cmd_identifier_token11] = ACTIONS(133), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(133), - [aux_sym_cmd_identifier_token17] = ACTIONS(133), - [aux_sym_cmd_identifier_token18] = ACTIONS(133), - [aux_sym_cmd_identifier_token19] = ACTIONS(133), - [aux_sym_cmd_identifier_token20] = ACTIONS(133), - [aux_sym_cmd_identifier_token21] = ACTIONS(133), - [aux_sym_cmd_identifier_token22] = ACTIONS(133), - [aux_sym_cmd_identifier_token23] = ACTIONS(133), - [aux_sym_cmd_identifier_token24] = ACTIONS(133), - [aux_sym_cmd_identifier_token25] = ACTIONS(133), - [aux_sym_cmd_identifier_token26] = ACTIONS(133), - [aux_sym_cmd_identifier_token27] = ACTIONS(133), - [aux_sym_cmd_identifier_token28] = ACTIONS(133), - [aux_sym_cmd_identifier_token29] = ACTIONS(133), - [aux_sym_cmd_identifier_token30] = ACTIONS(133), - [aux_sym_cmd_identifier_token31] = ACTIONS(133), - [aux_sym_cmd_identifier_token32] = ACTIONS(133), - [aux_sym_cmd_identifier_token33] = ACTIONS(133), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(133), - [aux_sym_cmd_identifier_token36] = ACTIONS(133), - [anon_sym_true] = ACTIONS(135), - [anon_sym_false] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(139), - [aux_sym_cmd_identifier_token39] = ACTIONS(141), - [aux_sym_cmd_identifier_token40] = ACTIONS(141), - [sym__newline] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(259), - [anon_sym_export_DASHenv] = ACTIONS(261), - [anon_sym_extern] = ACTIONS(263), - [anon_sym_module] = ACTIONS(265), - [anon_sym_use] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(269), - [anon_sym_error] = ACTIONS(271), - [anon_sym_list] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(169), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(273), - [anon_sym_loop] = ACTIONS(281), - [anon_sym_make] = ACTIONS(273), - [anon_sym_while] = ACTIONS(283), - [anon_sym_do] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), - [anon_sym_else] = ACTIONS(273), - [anon_sym_match] = ACTIONS(289), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(313), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(293), - [anon_sym_catch] = ACTIONS(273), - [anon_sym_return] = ACTIONS(295), - [anon_sym_source] = ACTIONS(297), - [anon_sym_source_DASHenv] = ACTIONS(297), - [anon_sym_register] = ACTIONS(299), - [anon_sym_hide] = ACTIONS(301), - [anon_sym_hide_DASHenv] = ACTIONS(303), - [anon_sym_overlay] = ACTIONS(305), - [anon_sym_new] = ACTIONS(273), - [anon_sym_as] = ACTIONS(273), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(243), + [aux_sym_pipe_element_repeat2] = STATE(361), + [aux_sym_record_body_repeat1] = STATE(211), + [anon_sym_export] = ACTIONS(253), + [anon_sym_alias] = ACTIONS(255), + [anon_sym_let] = ACTIONS(257), + [anon_sym_let_DASHenv] = ACTIONS(257), + [anon_sym_mut] = ACTIONS(259), + [anon_sym_const] = ACTIONS(261), + [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(135), + [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [aux_sym_cmd_identifier_token12] = ACTIONS(135), + [aux_sym_cmd_identifier_token13] = ACTIONS(135), + [aux_sym_cmd_identifier_token14] = ACTIONS(135), + [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [aux_sym_cmd_identifier_token16] = ACTIONS(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(135), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(135), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [anon_sym_true] = ACTIONS(137), + [anon_sym_false] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(141), + [aux_sym_cmd_identifier_token39] = ACTIONS(143), + [aux_sym_cmd_identifier_token40] = ACTIONS(143), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_def] = ACTIONS(263), + [anon_sym_export_DASHenv] = ACTIONS(265), + [anon_sym_extern] = ACTIONS(267), + [anon_sym_module] = ACTIONS(269), + [anon_sym_use] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(163), + [anon_sym_DOLLAR] = ACTIONS(273), + [anon_sym_error] = ACTIONS(275), + [anon_sym_list] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_for] = ACTIONS(283), + [anon_sym_in] = ACTIONS(277), + [anon_sym_loop] = ACTIONS(285), + [anon_sym_make] = ACTIONS(277), + [anon_sym_while] = ACTIONS(287), + [anon_sym_do] = ACTIONS(289), + [anon_sym_if] = ACTIONS(291), + [anon_sym_else] = ACTIONS(277), + [anon_sym_match] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_RBRACE] = ACTIONS(317), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(297), + [anon_sym_catch] = ACTIONS(277), + [anon_sym_return] = ACTIONS(299), + [anon_sym_source] = ACTIONS(301), + [anon_sym_source_DASHenv] = ACTIONS(301), + [anon_sym_register] = ACTIONS(303), + [anon_sym_hide] = ACTIONS(305), + [anon_sym_hide_DASHenv] = ACTIONS(307), + [anon_sym_overlay] = ACTIONS(309), + [anon_sym_new] = ACTIONS(277), + [anon_sym_as] = ACTIONS(277), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(219), + [aux_sym__val_number_decimal_token2] = ACTIONS(221), + [aux_sym__val_number_decimal_token3] = ACTIONS(223), + [aux_sym__val_number_decimal_token4] = ACTIONS(225), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [5] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7452), - [sym_cmd_identifier] = STATE(4554), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym_parameter_pipes] = STATE(121), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1847), - [sym__spread_parenthesized] = STATE(567), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym__spread_variable] = STATE(571), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2222), - [sym__val_number_decimal] = STATE(1436), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(2222), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym__spread_record] = STATE(567), - [sym_record_body] = STATE(7481), - [sym_record_entry] = STATE(6911), - [sym__record_key] = STATE(7516), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7935), + [sym_cmd_identifier] = STATE(4656), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym_parameter_pipes] = STATE(122), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1913), + [sym__spread_parenthesized] = STATE(7465), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym__spread_variable] = STATE(7436), + [sym_val_variable] = STATE(1323), + [sym_val_number] = STATE(2300), + [sym__val_number_decimal] = STATE(1584), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(2300), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym__spread_record] = STATE(7465), + [sym_record_body] = STATE(7933), + [sym_record_entry] = STATE(6808), + [sym__record_key] = STATE(7872), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(5), [aux_sym_shebang_repeat1] = STATE(27), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [aux_sym_record_body_repeat1] = STATE(210), - [anon_sym_export] = ACTIONS(249), - [anon_sym_alias] = ACTIONS(251), - [anon_sym_let] = ACTIONS(253), - [anon_sym_let_DASHenv] = ACTIONS(253), - [anon_sym_mut] = ACTIONS(255), - [anon_sym_const] = ACTIONS(257), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(133), - [aux_sym_cmd_identifier_token3] = ACTIONS(133), - [aux_sym_cmd_identifier_token4] = ACTIONS(133), - [aux_sym_cmd_identifier_token5] = ACTIONS(133), - [aux_sym_cmd_identifier_token6] = ACTIONS(133), - [aux_sym_cmd_identifier_token7] = ACTIONS(133), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(133), - [aux_sym_cmd_identifier_token11] = ACTIONS(133), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(133), - [aux_sym_cmd_identifier_token17] = ACTIONS(133), - [aux_sym_cmd_identifier_token18] = ACTIONS(133), - [aux_sym_cmd_identifier_token19] = ACTIONS(133), - [aux_sym_cmd_identifier_token20] = ACTIONS(133), - [aux_sym_cmd_identifier_token21] = ACTIONS(133), - [aux_sym_cmd_identifier_token22] = ACTIONS(133), - [aux_sym_cmd_identifier_token23] = ACTIONS(133), - [aux_sym_cmd_identifier_token24] = ACTIONS(133), - [aux_sym_cmd_identifier_token25] = ACTIONS(133), - [aux_sym_cmd_identifier_token26] = ACTIONS(133), - [aux_sym_cmd_identifier_token27] = ACTIONS(133), - [aux_sym_cmd_identifier_token28] = ACTIONS(133), - [aux_sym_cmd_identifier_token29] = ACTIONS(133), - [aux_sym_cmd_identifier_token30] = ACTIONS(133), - [aux_sym_cmd_identifier_token31] = ACTIONS(133), - [aux_sym_cmd_identifier_token32] = ACTIONS(133), - [aux_sym_cmd_identifier_token33] = ACTIONS(133), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(133), - [aux_sym_cmd_identifier_token36] = ACTIONS(133), - [anon_sym_true] = ACTIONS(135), - [anon_sym_false] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(139), - [aux_sym_cmd_identifier_token39] = ACTIONS(141), - [aux_sym_cmd_identifier_token40] = ACTIONS(141), - [sym__newline] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(259), - [anon_sym_export_DASHenv] = ACTIONS(261), - [anon_sym_extern] = ACTIONS(263), - [anon_sym_module] = ACTIONS(265), - [anon_sym_use] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(269), - [anon_sym_error] = ACTIONS(271), - [anon_sym_list] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(169), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(273), - [anon_sym_loop] = ACTIONS(281), - [anon_sym_make] = ACTIONS(273), - [anon_sym_while] = ACTIONS(283), - [anon_sym_do] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), - [anon_sym_else] = ACTIONS(273), - [anon_sym_match] = ACTIONS(289), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(315), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(293), - [anon_sym_catch] = ACTIONS(273), - [anon_sym_return] = ACTIONS(295), - [anon_sym_source] = ACTIONS(297), - [anon_sym_source_DASHenv] = ACTIONS(297), - [anon_sym_register] = ACTIONS(299), - [anon_sym_hide] = ACTIONS(301), - [anon_sym_hide_DASHenv] = ACTIONS(303), - [anon_sym_overlay] = ACTIONS(305), - [anon_sym_new] = ACTIONS(273), - [anon_sym_as] = ACTIONS(273), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(243), + [aux_sym_pipe_element_repeat2] = STATE(361), + [aux_sym_record_body_repeat1] = STATE(211), + [anon_sym_export] = ACTIONS(253), + [anon_sym_alias] = ACTIONS(255), + [anon_sym_let] = ACTIONS(257), + [anon_sym_let_DASHenv] = ACTIONS(257), + [anon_sym_mut] = ACTIONS(259), + [anon_sym_const] = ACTIONS(261), + [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(135), + [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [aux_sym_cmd_identifier_token12] = ACTIONS(135), + [aux_sym_cmd_identifier_token13] = ACTIONS(135), + [aux_sym_cmd_identifier_token14] = ACTIONS(135), + [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [aux_sym_cmd_identifier_token16] = ACTIONS(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(135), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(135), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [anon_sym_true] = ACTIONS(137), + [anon_sym_false] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(141), + [aux_sym_cmd_identifier_token39] = ACTIONS(143), + [aux_sym_cmd_identifier_token40] = ACTIONS(143), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_def] = ACTIONS(263), + [anon_sym_export_DASHenv] = ACTIONS(265), + [anon_sym_extern] = ACTIONS(267), + [anon_sym_module] = ACTIONS(269), + [anon_sym_use] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(163), + [anon_sym_DOLLAR] = ACTIONS(273), + [anon_sym_error] = ACTIONS(275), + [anon_sym_list] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_for] = ACTIONS(283), + [anon_sym_in] = ACTIONS(277), + [anon_sym_loop] = ACTIONS(285), + [anon_sym_make] = ACTIONS(277), + [anon_sym_while] = ACTIONS(287), + [anon_sym_do] = ACTIONS(289), + [anon_sym_if] = ACTIONS(291), + [anon_sym_else] = ACTIONS(277), + [anon_sym_match] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_RBRACE] = ACTIONS(319), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(297), + [anon_sym_catch] = ACTIONS(277), + [anon_sym_return] = ACTIONS(299), + [anon_sym_source] = ACTIONS(301), + [anon_sym_source_DASHenv] = ACTIONS(301), + [anon_sym_register] = ACTIONS(303), + [anon_sym_hide] = ACTIONS(305), + [anon_sym_hide_DASHenv] = ACTIONS(307), + [anon_sym_overlay] = ACTIONS(309), + [anon_sym_new] = ACTIONS(277), + [anon_sym_as] = ACTIONS(277), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(219), + [aux_sym__val_number_decimal_token2] = ACTIONS(221), + [aux_sym__val_number_decimal_token3] = ACTIONS(223), + [aux_sym__val_number_decimal_token4] = ACTIONS(225), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [6] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7401), - [sym_cmd_identifier] = STATE(4554), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym_parameter_pipes] = STATE(123), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1847), - [sym__spread_parenthesized] = STATE(567), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym__spread_variable] = STATE(571), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2222), - [sym__val_number_decimal] = STATE(1436), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(2222), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym__spread_record] = STATE(567), - [sym_record_body] = STATE(7402), - [sym_record_entry] = STATE(6911), - [sym__record_key] = STATE(7516), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7678), + [sym_cmd_identifier] = STATE(4656), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym_parameter_pipes] = STATE(124), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1913), + [sym__spread_parenthesized] = STATE(7465), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym__spread_variable] = STATE(7436), + [sym_val_variable] = STATE(1323), + [sym_val_number] = STATE(2300), + [sym__val_number_decimal] = STATE(1584), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(2300), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym__spread_record] = STATE(7465), + [sym_record_body] = STATE(7711), + [sym_record_entry] = STATE(6808), + [sym__record_key] = STATE(7872), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(6), [aux_sym_shebang_repeat1] = STATE(29), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [aux_sym_record_body_repeat1] = STATE(210), - [anon_sym_export] = ACTIONS(249), - [anon_sym_alias] = ACTIONS(251), - [anon_sym_let] = ACTIONS(253), - [anon_sym_let_DASHenv] = ACTIONS(253), - [anon_sym_mut] = ACTIONS(255), - [anon_sym_const] = ACTIONS(257), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(133), - [aux_sym_cmd_identifier_token3] = ACTIONS(133), - [aux_sym_cmd_identifier_token4] = ACTIONS(133), - [aux_sym_cmd_identifier_token5] = ACTIONS(133), - [aux_sym_cmd_identifier_token6] = ACTIONS(133), - [aux_sym_cmd_identifier_token7] = ACTIONS(133), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(133), - [aux_sym_cmd_identifier_token11] = ACTIONS(133), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(133), - [aux_sym_cmd_identifier_token17] = ACTIONS(133), - [aux_sym_cmd_identifier_token18] = ACTIONS(133), - [aux_sym_cmd_identifier_token19] = ACTIONS(133), - [aux_sym_cmd_identifier_token20] = ACTIONS(133), - [aux_sym_cmd_identifier_token21] = ACTIONS(133), - [aux_sym_cmd_identifier_token22] = ACTIONS(133), - [aux_sym_cmd_identifier_token23] = ACTIONS(133), - [aux_sym_cmd_identifier_token24] = ACTIONS(133), - [aux_sym_cmd_identifier_token25] = ACTIONS(133), - [aux_sym_cmd_identifier_token26] = ACTIONS(133), - [aux_sym_cmd_identifier_token27] = ACTIONS(133), - [aux_sym_cmd_identifier_token28] = ACTIONS(133), - [aux_sym_cmd_identifier_token29] = ACTIONS(133), - [aux_sym_cmd_identifier_token30] = ACTIONS(133), - [aux_sym_cmd_identifier_token31] = ACTIONS(133), - [aux_sym_cmd_identifier_token32] = ACTIONS(133), - [aux_sym_cmd_identifier_token33] = ACTIONS(133), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(133), - [aux_sym_cmd_identifier_token36] = ACTIONS(133), - [anon_sym_true] = ACTIONS(135), - [anon_sym_false] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(139), - [aux_sym_cmd_identifier_token39] = ACTIONS(141), - [aux_sym_cmd_identifier_token40] = ACTIONS(141), - [sym__newline] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(259), - [anon_sym_export_DASHenv] = ACTIONS(261), - [anon_sym_extern] = ACTIONS(263), - [anon_sym_module] = ACTIONS(265), - [anon_sym_use] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(269), - [anon_sym_error] = ACTIONS(271), - [anon_sym_list] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(169), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(273), - [anon_sym_loop] = ACTIONS(281), - [anon_sym_make] = ACTIONS(273), - [anon_sym_while] = ACTIONS(283), - [anon_sym_do] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), - [anon_sym_else] = ACTIONS(273), - [anon_sym_match] = ACTIONS(289), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(317), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(293), - [anon_sym_catch] = ACTIONS(273), - [anon_sym_return] = ACTIONS(295), - [anon_sym_source] = ACTIONS(297), - [anon_sym_source_DASHenv] = ACTIONS(297), - [anon_sym_register] = ACTIONS(299), - [anon_sym_hide] = ACTIONS(301), - [anon_sym_hide_DASHenv] = ACTIONS(303), - [anon_sym_overlay] = ACTIONS(305), - [anon_sym_new] = ACTIONS(273), - [anon_sym_as] = ACTIONS(273), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(243), + [aux_sym_pipe_element_repeat2] = STATE(361), + [aux_sym_record_body_repeat1] = STATE(211), + [anon_sym_export] = ACTIONS(253), + [anon_sym_alias] = ACTIONS(255), + [anon_sym_let] = ACTIONS(257), + [anon_sym_let_DASHenv] = ACTIONS(257), + [anon_sym_mut] = ACTIONS(259), + [anon_sym_const] = ACTIONS(261), + [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(135), + [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [aux_sym_cmd_identifier_token12] = ACTIONS(135), + [aux_sym_cmd_identifier_token13] = ACTIONS(135), + [aux_sym_cmd_identifier_token14] = ACTIONS(135), + [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [aux_sym_cmd_identifier_token16] = ACTIONS(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(135), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(135), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [anon_sym_true] = ACTIONS(137), + [anon_sym_false] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(141), + [aux_sym_cmd_identifier_token39] = ACTIONS(143), + [aux_sym_cmd_identifier_token40] = ACTIONS(143), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_def] = ACTIONS(263), + [anon_sym_export_DASHenv] = ACTIONS(265), + [anon_sym_extern] = ACTIONS(267), + [anon_sym_module] = ACTIONS(269), + [anon_sym_use] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(163), + [anon_sym_DOLLAR] = ACTIONS(273), + [anon_sym_error] = ACTIONS(275), + [anon_sym_list] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_for] = ACTIONS(283), + [anon_sym_in] = ACTIONS(277), + [anon_sym_loop] = ACTIONS(285), + [anon_sym_make] = ACTIONS(277), + [anon_sym_while] = ACTIONS(287), + [anon_sym_do] = ACTIONS(289), + [anon_sym_if] = ACTIONS(291), + [anon_sym_else] = ACTIONS(277), + [anon_sym_match] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_RBRACE] = ACTIONS(321), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(297), + [anon_sym_catch] = ACTIONS(277), + [anon_sym_return] = ACTIONS(299), + [anon_sym_source] = ACTIONS(301), + [anon_sym_source_DASHenv] = ACTIONS(301), + [anon_sym_register] = ACTIONS(303), + [anon_sym_hide] = ACTIONS(305), + [anon_sym_hide_DASHenv] = ACTIONS(307), + [anon_sym_overlay] = ACTIONS(309), + [anon_sym_new] = ACTIONS(277), + [anon_sym_as] = ACTIONS(277), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(219), + [aux_sym__val_number_decimal_token2] = ACTIONS(221), + [aux_sym__val_number_decimal_token3] = ACTIONS(223), + [aux_sym__val_number_decimal_token4] = ACTIONS(225), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [7] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7660), - [sym_cmd_identifier] = STATE(4554), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym_parameter_pipes] = STATE(127), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1847), - [sym__spread_parenthesized] = STATE(567), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym__spread_variable] = STATE(571), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2222), - [sym__val_number_decimal] = STATE(1436), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(2222), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym__spread_record] = STATE(567), - [sym_record_body] = STATE(7575), - [sym_record_entry] = STATE(6911), - [sym__record_key] = STATE(7516), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7731), + [sym_cmd_identifier] = STATE(4656), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym_parameter_pipes] = STATE(128), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1913), + [sym__spread_parenthesized] = STATE(7465), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym__spread_variable] = STATE(7436), + [sym_val_variable] = STATE(1323), + [sym_val_number] = STATE(2300), + [sym__val_number_decimal] = STATE(1584), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(2300), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym__spread_record] = STATE(7465), + [sym_record_body] = STATE(8065), + [sym_record_entry] = STATE(6808), + [sym__record_key] = STATE(7872), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(7), - [aux_sym_shebang_repeat1] = STATE(28), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_shebang_repeat1] = STATE(31), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [aux_sym_record_body_repeat1] = STATE(210), - [anon_sym_export] = ACTIONS(249), - [anon_sym_alias] = ACTIONS(251), - [anon_sym_let] = ACTIONS(253), - [anon_sym_let_DASHenv] = ACTIONS(253), - [anon_sym_mut] = ACTIONS(255), - [anon_sym_const] = ACTIONS(257), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(133), - [aux_sym_cmd_identifier_token3] = ACTIONS(133), - [aux_sym_cmd_identifier_token4] = ACTIONS(133), - [aux_sym_cmd_identifier_token5] = ACTIONS(133), - [aux_sym_cmd_identifier_token6] = ACTIONS(133), - [aux_sym_cmd_identifier_token7] = ACTIONS(133), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(133), - [aux_sym_cmd_identifier_token11] = ACTIONS(133), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(133), - [aux_sym_cmd_identifier_token17] = ACTIONS(133), - [aux_sym_cmd_identifier_token18] = ACTIONS(133), - [aux_sym_cmd_identifier_token19] = ACTIONS(133), - [aux_sym_cmd_identifier_token20] = ACTIONS(133), - [aux_sym_cmd_identifier_token21] = ACTIONS(133), - [aux_sym_cmd_identifier_token22] = ACTIONS(133), - [aux_sym_cmd_identifier_token23] = ACTIONS(133), - [aux_sym_cmd_identifier_token24] = ACTIONS(133), - [aux_sym_cmd_identifier_token25] = ACTIONS(133), - [aux_sym_cmd_identifier_token26] = ACTIONS(133), - [aux_sym_cmd_identifier_token27] = ACTIONS(133), - [aux_sym_cmd_identifier_token28] = ACTIONS(133), - [aux_sym_cmd_identifier_token29] = ACTIONS(133), - [aux_sym_cmd_identifier_token30] = ACTIONS(133), - [aux_sym_cmd_identifier_token31] = ACTIONS(133), - [aux_sym_cmd_identifier_token32] = ACTIONS(133), - [aux_sym_cmd_identifier_token33] = ACTIONS(133), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(133), - [aux_sym_cmd_identifier_token36] = ACTIONS(133), - [anon_sym_true] = ACTIONS(135), - [anon_sym_false] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(139), - [aux_sym_cmd_identifier_token39] = ACTIONS(141), - [aux_sym_cmd_identifier_token40] = ACTIONS(141), - [sym__newline] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(259), - [anon_sym_export_DASHenv] = ACTIONS(261), - [anon_sym_extern] = ACTIONS(263), - [anon_sym_module] = ACTIONS(265), - [anon_sym_use] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(269), - [anon_sym_error] = ACTIONS(271), - [anon_sym_list] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(169), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(273), - [anon_sym_loop] = ACTIONS(281), - [anon_sym_make] = ACTIONS(273), - [anon_sym_while] = ACTIONS(283), - [anon_sym_do] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), - [anon_sym_else] = ACTIONS(273), - [anon_sym_match] = ACTIONS(289), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(319), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(293), - [anon_sym_catch] = ACTIONS(273), - [anon_sym_return] = ACTIONS(295), - [anon_sym_source] = ACTIONS(297), - [anon_sym_source_DASHenv] = ACTIONS(297), - [anon_sym_register] = ACTIONS(299), - [anon_sym_hide] = ACTIONS(301), - [anon_sym_hide_DASHenv] = ACTIONS(303), - [anon_sym_overlay] = ACTIONS(305), - [anon_sym_new] = ACTIONS(273), - [anon_sym_as] = ACTIONS(273), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(243), + [aux_sym_pipe_element_repeat2] = STATE(361), + [aux_sym_record_body_repeat1] = STATE(211), + [anon_sym_export] = ACTIONS(253), + [anon_sym_alias] = ACTIONS(255), + [anon_sym_let] = ACTIONS(257), + [anon_sym_let_DASHenv] = ACTIONS(257), + [anon_sym_mut] = ACTIONS(259), + [anon_sym_const] = ACTIONS(261), + [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(135), + [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [aux_sym_cmd_identifier_token12] = ACTIONS(135), + [aux_sym_cmd_identifier_token13] = ACTIONS(135), + [aux_sym_cmd_identifier_token14] = ACTIONS(135), + [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [aux_sym_cmd_identifier_token16] = ACTIONS(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(135), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(135), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [anon_sym_true] = ACTIONS(137), + [anon_sym_false] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(141), + [aux_sym_cmd_identifier_token39] = ACTIONS(143), + [aux_sym_cmd_identifier_token40] = ACTIONS(143), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_def] = ACTIONS(263), + [anon_sym_export_DASHenv] = ACTIONS(265), + [anon_sym_extern] = ACTIONS(267), + [anon_sym_module] = ACTIONS(269), + [anon_sym_use] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(163), + [anon_sym_DOLLAR] = ACTIONS(273), + [anon_sym_error] = ACTIONS(275), + [anon_sym_list] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_for] = ACTIONS(283), + [anon_sym_in] = ACTIONS(277), + [anon_sym_loop] = ACTIONS(285), + [anon_sym_make] = ACTIONS(277), + [anon_sym_while] = ACTIONS(287), + [anon_sym_do] = ACTIONS(289), + [anon_sym_if] = ACTIONS(291), + [anon_sym_else] = ACTIONS(277), + [anon_sym_match] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_RBRACE] = ACTIONS(323), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(297), + [anon_sym_catch] = ACTIONS(277), + [anon_sym_return] = ACTIONS(299), + [anon_sym_source] = ACTIONS(301), + [anon_sym_source_DASHenv] = ACTIONS(301), + [anon_sym_register] = ACTIONS(303), + [anon_sym_hide] = ACTIONS(305), + [anon_sym_hide_DASHenv] = ACTIONS(307), + [anon_sym_overlay] = ACTIONS(309), + [anon_sym_new] = ACTIONS(277), + [anon_sym_as] = ACTIONS(277), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(219), + [aux_sym__val_number_decimal_token2] = ACTIONS(221), + [aux_sym__val_number_decimal_token3] = ACTIONS(223), + [aux_sym__val_number_decimal_token4] = ACTIONS(225), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [8] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7543), - [sym_cmd_identifier] = STATE(4554), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym_parameter_pipes] = STATE(127), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1847), - [sym__spread_parenthesized] = STATE(567), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym__spread_variable] = STATE(571), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2222), - [sym__val_number_decimal] = STATE(1436), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(2222), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym__spread_record] = STATE(567), - [sym_record_body] = STATE(7575), - [sym_record_entry] = STATE(6911), - [sym__record_key] = STATE(7516), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(8061), + [sym_cmd_identifier] = STATE(4656), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym_parameter_pipes] = STATE(128), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1913), + [sym__spread_parenthesized] = STATE(7465), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym__spread_variable] = STATE(7436), + [sym_val_variable] = STATE(1323), + [sym_val_number] = STATE(2300), + [sym__val_number_decimal] = STATE(1584), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(2300), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym__spread_record] = STATE(7465), + [sym_record_body] = STATE(8065), + [sym_record_entry] = STATE(6808), + [sym__record_key] = STATE(7872), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(8), - [aux_sym_shebang_repeat1] = STATE(28), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_shebang_repeat1] = STATE(31), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [aux_sym_record_body_repeat1] = STATE(210), - [anon_sym_export] = ACTIONS(249), - [anon_sym_alias] = ACTIONS(251), - [anon_sym_let] = ACTIONS(253), - [anon_sym_let_DASHenv] = ACTIONS(253), - [anon_sym_mut] = ACTIONS(255), - [anon_sym_const] = ACTIONS(257), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(133), - [aux_sym_cmd_identifier_token3] = ACTIONS(133), - [aux_sym_cmd_identifier_token4] = ACTIONS(133), - [aux_sym_cmd_identifier_token5] = ACTIONS(133), - [aux_sym_cmd_identifier_token6] = ACTIONS(133), - [aux_sym_cmd_identifier_token7] = ACTIONS(133), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(133), - [aux_sym_cmd_identifier_token11] = ACTIONS(133), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(133), - [aux_sym_cmd_identifier_token17] = ACTIONS(133), - [aux_sym_cmd_identifier_token18] = ACTIONS(133), - [aux_sym_cmd_identifier_token19] = ACTIONS(133), - [aux_sym_cmd_identifier_token20] = ACTIONS(133), - [aux_sym_cmd_identifier_token21] = ACTIONS(133), - [aux_sym_cmd_identifier_token22] = ACTIONS(133), - [aux_sym_cmd_identifier_token23] = ACTIONS(133), - [aux_sym_cmd_identifier_token24] = ACTIONS(133), - [aux_sym_cmd_identifier_token25] = ACTIONS(133), - [aux_sym_cmd_identifier_token26] = ACTIONS(133), - [aux_sym_cmd_identifier_token27] = ACTIONS(133), - [aux_sym_cmd_identifier_token28] = ACTIONS(133), - [aux_sym_cmd_identifier_token29] = ACTIONS(133), - [aux_sym_cmd_identifier_token30] = ACTIONS(133), - [aux_sym_cmd_identifier_token31] = ACTIONS(133), - [aux_sym_cmd_identifier_token32] = ACTIONS(133), - [aux_sym_cmd_identifier_token33] = ACTIONS(133), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(133), - [aux_sym_cmd_identifier_token36] = ACTIONS(133), - [anon_sym_true] = ACTIONS(135), - [anon_sym_false] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(139), - [aux_sym_cmd_identifier_token39] = ACTIONS(141), - [aux_sym_cmd_identifier_token40] = ACTIONS(141), - [sym__newline] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(259), - [anon_sym_export_DASHenv] = ACTIONS(261), - [anon_sym_extern] = ACTIONS(263), - [anon_sym_module] = ACTIONS(265), - [anon_sym_use] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(269), - [anon_sym_error] = ACTIONS(271), - [anon_sym_list] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(169), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(273), - [anon_sym_loop] = ACTIONS(281), - [anon_sym_make] = ACTIONS(273), - [anon_sym_while] = ACTIONS(283), - [anon_sym_do] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), - [anon_sym_else] = ACTIONS(273), - [anon_sym_match] = ACTIONS(289), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(321), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(293), - [anon_sym_catch] = ACTIONS(273), - [anon_sym_return] = ACTIONS(295), - [anon_sym_source] = ACTIONS(297), - [anon_sym_source_DASHenv] = ACTIONS(297), - [anon_sym_register] = ACTIONS(299), - [anon_sym_hide] = ACTIONS(301), - [anon_sym_hide_DASHenv] = ACTIONS(303), - [anon_sym_overlay] = ACTIONS(305), - [anon_sym_new] = ACTIONS(273), - [anon_sym_as] = ACTIONS(273), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(243), + [aux_sym_pipe_element_repeat2] = STATE(361), + [aux_sym_record_body_repeat1] = STATE(211), + [anon_sym_export] = ACTIONS(253), + [anon_sym_alias] = ACTIONS(255), + [anon_sym_let] = ACTIONS(257), + [anon_sym_let_DASHenv] = ACTIONS(257), + [anon_sym_mut] = ACTIONS(259), + [anon_sym_const] = ACTIONS(261), + [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(135), + [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [aux_sym_cmd_identifier_token12] = ACTIONS(135), + [aux_sym_cmd_identifier_token13] = ACTIONS(135), + [aux_sym_cmd_identifier_token14] = ACTIONS(135), + [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [aux_sym_cmd_identifier_token16] = ACTIONS(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(135), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(135), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [anon_sym_true] = ACTIONS(137), + [anon_sym_false] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(141), + [aux_sym_cmd_identifier_token39] = ACTIONS(143), + [aux_sym_cmd_identifier_token40] = ACTIONS(143), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_def] = ACTIONS(263), + [anon_sym_export_DASHenv] = ACTIONS(265), + [anon_sym_extern] = ACTIONS(267), + [anon_sym_module] = ACTIONS(269), + [anon_sym_use] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(163), + [anon_sym_DOLLAR] = ACTIONS(273), + [anon_sym_error] = ACTIONS(275), + [anon_sym_list] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_for] = ACTIONS(283), + [anon_sym_in] = ACTIONS(277), + [anon_sym_loop] = ACTIONS(285), + [anon_sym_make] = ACTIONS(277), + [anon_sym_while] = ACTIONS(287), + [anon_sym_do] = ACTIONS(289), + [anon_sym_if] = ACTIONS(291), + [anon_sym_else] = ACTIONS(277), + [anon_sym_match] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_RBRACE] = ACTIONS(325), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(297), + [anon_sym_catch] = ACTIONS(277), + [anon_sym_return] = ACTIONS(299), + [anon_sym_source] = ACTIONS(301), + [anon_sym_source_DASHenv] = ACTIONS(301), + [anon_sym_register] = ACTIONS(303), + [anon_sym_hide] = ACTIONS(305), + [anon_sym_hide_DASHenv] = ACTIONS(307), + [anon_sym_overlay] = ACTIONS(309), + [anon_sym_new] = ACTIONS(277), + [anon_sym_as] = ACTIONS(277), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(219), + [aux_sym__val_number_decimal_token2] = ACTIONS(221), + [aux_sym__val_number_decimal_token3] = ACTIONS(223), + [aux_sym__val_number_decimal_token4] = ACTIONS(225), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [9] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7643), - [sym_cmd_identifier] = STATE(4554), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym_parameter_pipes] = STATE(123), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1847), - [sym__spread_parenthesized] = STATE(567), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym__spread_variable] = STATE(571), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2222), - [sym__val_number_decimal] = STATE(1436), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(2222), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym__spread_record] = STATE(567), - [sym_record_body] = STATE(7402), - [sym_record_entry] = STATE(6911), - [sym__record_key] = STATE(7516), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7722), + [sym_cmd_identifier] = STATE(4656), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym_parameter_pipes] = STATE(124), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1913), + [sym__spread_parenthesized] = STATE(7465), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym__spread_variable] = STATE(7436), + [sym_val_variable] = STATE(1323), + [sym_val_number] = STATE(2300), + [sym__val_number_decimal] = STATE(1584), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(2300), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym__spread_record] = STATE(7465), + [sym_record_body] = STATE(7711), + [sym_record_entry] = STATE(6808), + [sym__record_key] = STATE(7872), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(9), [aux_sym_shebang_repeat1] = STATE(29), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [aux_sym_record_body_repeat1] = STATE(210), - [anon_sym_export] = ACTIONS(249), - [anon_sym_alias] = ACTIONS(251), - [anon_sym_let] = ACTIONS(253), - [anon_sym_let_DASHenv] = ACTIONS(253), - [anon_sym_mut] = ACTIONS(255), - [anon_sym_const] = ACTIONS(257), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(133), - [aux_sym_cmd_identifier_token3] = ACTIONS(133), - [aux_sym_cmd_identifier_token4] = ACTIONS(133), - [aux_sym_cmd_identifier_token5] = ACTIONS(133), - [aux_sym_cmd_identifier_token6] = ACTIONS(133), - [aux_sym_cmd_identifier_token7] = ACTIONS(133), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(133), - [aux_sym_cmd_identifier_token11] = ACTIONS(133), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(133), - [aux_sym_cmd_identifier_token17] = ACTIONS(133), - [aux_sym_cmd_identifier_token18] = ACTIONS(133), - [aux_sym_cmd_identifier_token19] = ACTIONS(133), - [aux_sym_cmd_identifier_token20] = ACTIONS(133), - [aux_sym_cmd_identifier_token21] = ACTIONS(133), - [aux_sym_cmd_identifier_token22] = ACTIONS(133), - [aux_sym_cmd_identifier_token23] = ACTIONS(133), - [aux_sym_cmd_identifier_token24] = ACTIONS(133), - [aux_sym_cmd_identifier_token25] = ACTIONS(133), - [aux_sym_cmd_identifier_token26] = ACTIONS(133), - [aux_sym_cmd_identifier_token27] = ACTIONS(133), - [aux_sym_cmd_identifier_token28] = ACTIONS(133), - [aux_sym_cmd_identifier_token29] = ACTIONS(133), - [aux_sym_cmd_identifier_token30] = ACTIONS(133), - [aux_sym_cmd_identifier_token31] = ACTIONS(133), - [aux_sym_cmd_identifier_token32] = ACTIONS(133), - [aux_sym_cmd_identifier_token33] = ACTIONS(133), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(133), - [aux_sym_cmd_identifier_token36] = ACTIONS(133), - [anon_sym_true] = ACTIONS(135), - [anon_sym_false] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(139), - [aux_sym_cmd_identifier_token39] = ACTIONS(141), - [aux_sym_cmd_identifier_token40] = ACTIONS(141), - [sym__newline] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(259), - [anon_sym_export_DASHenv] = ACTIONS(261), - [anon_sym_extern] = ACTIONS(263), - [anon_sym_module] = ACTIONS(265), - [anon_sym_use] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(269), - [anon_sym_error] = ACTIONS(271), - [anon_sym_list] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(169), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(273), - [anon_sym_loop] = ACTIONS(281), - [anon_sym_make] = ACTIONS(273), - [anon_sym_while] = ACTIONS(283), - [anon_sym_do] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), - [anon_sym_else] = ACTIONS(273), - [anon_sym_match] = ACTIONS(289), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(323), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(293), - [anon_sym_catch] = ACTIONS(273), - [anon_sym_return] = ACTIONS(295), - [anon_sym_source] = ACTIONS(297), - [anon_sym_source_DASHenv] = ACTIONS(297), - [anon_sym_register] = ACTIONS(299), - [anon_sym_hide] = ACTIONS(301), - [anon_sym_hide_DASHenv] = ACTIONS(303), - [anon_sym_overlay] = ACTIONS(305), - [anon_sym_new] = ACTIONS(273), - [anon_sym_as] = ACTIONS(273), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(243), + [aux_sym_pipe_element_repeat2] = STATE(361), + [aux_sym_record_body_repeat1] = STATE(211), + [anon_sym_export] = ACTIONS(253), + [anon_sym_alias] = ACTIONS(255), + [anon_sym_let] = ACTIONS(257), + [anon_sym_let_DASHenv] = ACTIONS(257), + [anon_sym_mut] = ACTIONS(259), + [anon_sym_const] = ACTIONS(261), + [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(135), + [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [aux_sym_cmd_identifier_token12] = ACTIONS(135), + [aux_sym_cmd_identifier_token13] = ACTIONS(135), + [aux_sym_cmd_identifier_token14] = ACTIONS(135), + [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [aux_sym_cmd_identifier_token16] = ACTIONS(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(135), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(135), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [anon_sym_true] = ACTIONS(137), + [anon_sym_false] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(141), + [aux_sym_cmd_identifier_token39] = ACTIONS(143), + [aux_sym_cmd_identifier_token40] = ACTIONS(143), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_def] = ACTIONS(263), + [anon_sym_export_DASHenv] = ACTIONS(265), + [anon_sym_extern] = ACTIONS(267), + [anon_sym_module] = ACTIONS(269), + [anon_sym_use] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(163), + [anon_sym_DOLLAR] = ACTIONS(273), + [anon_sym_error] = ACTIONS(275), + [anon_sym_list] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_for] = ACTIONS(283), + [anon_sym_in] = ACTIONS(277), + [anon_sym_loop] = ACTIONS(285), + [anon_sym_make] = ACTIONS(277), + [anon_sym_while] = ACTIONS(287), + [anon_sym_do] = ACTIONS(289), + [anon_sym_if] = ACTIONS(291), + [anon_sym_else] = ACTIONS(277), + [anon_sym_match] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_RBRACE] = ACTIONS(327), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(297), + [anon_sym_catch] = ACTIONS(277), + [anon_sym_return] = ACTIONS(299), + [anon_sym_source] = ACTIONS(301), + [anon_sym_source_DASHenv] = ACTIONS(301), + [anon_sym_register] = ACTIONS(303), + [anon_sym_hide] = ACTIONS(305), + [anon_sym_hide_DASHenv] = ACTIONS(307), + [anon_sym_overlay] = ACTIONS(309), + [anon_sym_new] = ACTIONS(277), + [anon_sym_as] = ACTIONS(277), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(219), + [aux_sym__val_number_decimal_token2] = ACTIONS(221), + [aux_sym__val_number_decimal_token3] = ACTIONS(223), + [aux_sym__val_number_decimal_token4] = ACTIONS(225), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [10] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7636), - [sym_cmd_identifier] = STATE(4554), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym_parameter_pipes] = STATE(130), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1847), - [sym__spread_parenthesized] = STATE(567), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym__spread_variable] = STATE(571), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2222), - [sym__val_number_decimal] = STATE(1436), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(2222), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym__spread_record] = STATE(567), - [sym_record_body] = STATE(7639), - [sym_record_entry] = STATE(6911), - [sym__record_key] = STATE(7516), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7893), + [sym_cmd_identifier] = STATE(4656), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym_parameter_pipes] = STATE(131), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1913), + [sym__spread_parenthesized] = STATE(7465), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym__spread_variable] = STATE(7436), + [sym_val_variable] = STATE(1323), + [sym_val_number] = STATE(2300), + [sym__val_number_decimal] = STATE(1584), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(2300), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym__spread_record] = STATE(7465), + [sym_record_body] = STATE(7896), + [sym_record_entry] = STATE(6808), + [sym__record_key] = STATE(7872), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(10), - [aux_sym_shebang_repeat1] = STATE(30), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_shebang_repeat1] = STATE(28), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [aux_sym_record_body_repeat1] = STATE(210), - [anon_sym_export] = ACTIONS(249), - [anon_sym_alias] = ACTIONS(251), - [anon_sym_let] = ACTIONS(253), - [anon_sym_let_DASHenv] = ACTIONS(253), - [anon_sym_mut] = ACTIONS(255), - [anon_sym_const] = ACTIONS(257), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(133), - [aux_sym_cmd_identifier_token3] = ACTIONS(133), - [aux_sym_cmd_identifier_token4] = ACTIONS(133), - [aux_sym_cmd_identifier_token5] = ACTIONS(133), - [aux_sym_cmd_identifier_token6] = ACTIONS(133), - [aux_sym_cmd_identifier_token7] = ACTIONS(133), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(133), - [aux_sym_cmd_identifier_token11] = ACTIONS(133), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(133), - [aux_sym_cmd_identifier_token17] = ACTIONS(133), - [aux_sym_cmd_identifier_token18] = ACTIONS(133), - [aux_sym_cmd_identifier_token19] = ACTIONS(133), - [aux_sym_cmd_identifier_token20] = ACTIONS(133), - [aux_sym_cmd_identifier_token21] = ACTIONS(133), - [aux_sym_cmd_identifier_token22] = ACTIONS(133), - [aux_sym_cmd_identifier_token23] = ACTIONS(133), - [aux_sym_cmd_identifier_token24] = ACTIONS(133), - [aux_sym_cmd_identifier_token25] = ACTIONS(133), - [aux_sym_cmd_identifier_token26] = ACTIONS(133), - [aux_sym_cmd_identifier_token27] = ACTIONS(133), - [aux_sym_cmd_identifier_token28] = ACTIONS(133), - [aux_sym_cmd_identifier_token29] = ACTIONS(133), - [aux_sym_cmd_identifier_token30] = ACTIONS(133), - [aux_sym_cmd_identifier_token31] = ACTIONS(133), - [aux_sym_cmd_identifier_token32] = ACTIONS(133), - [aux_sym_cmd_identifier_token33] = ACTIONS(133), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(133), - [aux_sym_cmd_identifier_token36] = ACTIONS(133), - [anon_sym_true] = ACTIONS(135), - [anon_sym_false] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(139), - [aux_sym_cmd_identifier_token39] = ACTIONS(141), - [aux_sym_cmd_identifier_token40] = ACTIONS(141), - [sym__newline] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(259), - [anon_sym_export_DASHenv] = ACTIONS(261), - [anon_sym_extern] = ACTIONS(263), - [anon_sym_module] = ACTIONS(265), - [anon_sym_use] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(269), - [anon_sym_error] = ACTIONS(271), - [anon_sym_list] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(169), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(273), - [anon_sym_loop] = ACTIONS(281), - [anon_sym_make] = ACTIONS(273), - [anon_sym_while] = ACTIONS(283), - [anon_sym_do] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), - [anon_sym_else] = ACTIONS(273), - [anon_sym_match] = ACTIONS(289), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(325), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(293), - [anon_sym_catch] = ACTIONS(273), - [anon_sym_return] = ACTIONS(295), - [anon_sym_source] = ACTIONS(297), - [anon_sym_source_DASHenv] = ACTIONS(297), - [anon_sym_register] = ACTIONS(299), - [anon_sym_hide] = ACTIONS(301), - [anon_sym_hide_DASHenv] = ACTIONS(303), - [anon_sym_overlay] = ACTIONS(305), - [anon_sym_new] = ACTIONS(273), - [anon_sym_as] = ACTIONS(273), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(243), + [aux_sym_pipe_element_repeat2] = STATE(361), + [aux_sym_record_body_repeat1] = STATE(211), + [anon_sym_export] = ACTIONS(253), + [anon_sym_alias] = ACTIONS(255), + [anon_sym_let] = ACTIONS(257), + [anon_sym_let_DASHenv] = ACTIONS(257), + [anon_sym_mut] = ACTIONS(259), + [anon_sym_const] = ACTIONS(261), + [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(135), + [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [aux_sym_cmd_identifier_token12] = ACTIONS(135), + [aux_sym_cmd_identifier_token13] = ACTIONS(135), + [aux_sym_cmd_identifier_token14] = ACTIONS(135), + [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [aux_sym_cmd_identifier_token16] = ACTIONS(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(135), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(135), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [anon_sym_true] = ACTIONS(137), + [anon_sym_false] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(141), + [aux_sym_cmd_identifier_token39] = ACTIONS(143), + [aux_sym_cmd_identifier_token40] = ACTIONS(143), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_def] = ACTIONS(263), + [anon_sym_export_DASHenv] = ACTIONS(265), + [anon_sym_extern] = ACTIONS(267), + [anon_sym_module] = ACTIONS(269), + [anon_sym_use] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(163), + [anon_sym_DOLLAR] = ACTIONS(273), + [anon_sym_error] = ACTIONS(275), + [anon_sym_list] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_for] = ACTIONS(283), + [anon_sym_in] = ACTIONS(277), + [anon_sym_loop] = ACTIONS(285), + [anon_sym_make] = ACTIONS(277), + [anon_sym_while] = ACTIONS(287), + [anon_sym_do] = ACTIONS(289), + [anon_sym_if] = ACTIONS(291), + [anon_sym_else] = ACTIONS(277), + [anon_sym_match] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_RBRACE] = ACTIONS(329), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(297), + [anon_sym_catch] = ACTIONS(277), + [anon_sym_return] = ACTIONS(299), + [anon_sym_source] = ACTIONS(301), + [anon_sym_source_DASHenv] = ACTIONS(301), + [anon_sym_register] = ACTIONS(303), + [anon_sym_hide] = ACTIONS(305), + [anon_sym_hide_DASHenv] = ACTIONS(307), + [anon_sym_overlay] = ACTIONS(309), + [anon_sym_new] = ACTIONS(277), + [anon_sym_as] = ACTIONS(277), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(219), + [aux_sym__val_number_decimal_token2] = ACTIONS(221), + [aux_sym__val_number_decimal_token3] = ACTIONS(223), + [aux_sym__val_number_decimal_token4] = ACTIONS(225), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [11] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7411), - [sym_cmd_identifier] = STATE(4554), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym_parameter_pipes] = STATE(130), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1847), - [sym__spread_parenthesized] = STATE(567), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym__spread_variable] = STATE(571), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2222), - [sym__val_number_decimal] = STATE(1436), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(2222), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym__spread_record] = STATE(567), - [sym_record_body] = STATE(7424), - [sym_record_entry] = STATE(6911), - [sym__record_key] = STATE(7516), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7937), + [sym_cmd_identifier] = STATE(4656), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym_parameter_pipes] = STATE(131), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1913), + [sym__spread_parenthesized] = STATE(7465), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym__spread_variable] = STATE(7436), + [sym_val_variable] = STATE(1323), + [sym_val_number] = STATE(2300), + [sym__val_number_decimal] = STATE(1584), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(2300), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym__spread_record] = STATE(7465), + [sym_record_body] = STATE(7708), + [sym_record_entry] = STATE(6808), + [sym__record_key] = STATE(7872), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(11), - [aux_sym_shebang_repeat1] = STATE(30), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_shebang_repeat1] = STATE(28), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [aux_sym_record_body_repeat1] = STATE(210), - [anon_sym_export] = ACTIONS(249), - [anon_sym_alias] = ACTIONS(251), - [anon_sym_let] = ACTIONS(253), - [anon_sym_let_DASHenv] = ACTIONS(253), - [anon_sym_mut] = ACTIONS(255), - [anon_sym_const] = ACTIONS(257), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(133), - [aux_sym_cmd_identifier_token3] = ACTIONS(133), - [aux_sym_cmd_identifier_token4] = ACTIONS(133), - [aux_sym_cmd_identifier_token5] = ACTIONS(133), - [aux_sym_cmd_identifier_token6] = ACTIONS(133), - [aux_sym_cmd_identifier_token7] = ACTIONS(133), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(133), - [aux_sym_cmd_identifier_token11] = ACTIONS(133), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(133), - [aux_sym_cmd_identifier_token17] = ACTIONS(133), - [aux_sym_cmd_identifier_token18] = ACTIONS(133), - [aux_sym_cmd_identifier_token19] = ACTIONS(133), - [aux_sym_cmd_identifier_token20] = ACTIONS(133), - [aux_sym_cmd_identifier_token21] = ACTIONS(133), - [aux_sym_cmd_identifier_token22] = ACTIONS(133), - [aux_sym_cmd_identifier_token23] = ACTIONS(133), - [aux_sym_cmd_identifier_token24] = ACTIONS(133), - [aux_sym_cmd_identifier_token25] = ACTIONS(133), - [aux_sym_cmd_identifier_token26] = ACTIONS(133), - [aux_sym_cmd_identifier_token27] = ACTIONS(133), - [aux_sym_cmd_identifier_token28] = ACTIONS(133), - [aux_sym_cmd_identifier_token29] = ACTIONS(133), - [aux_sym_cmd_identifier_token30] = ACTIONS(133), - [aux_sym_cmd_identifier_token31] = ACTIONS(133), - [aux_sym_cmd_identifier_token32] = ACTIONS(133), - [aux_sym_cmd_identifier_token33] = ACTIONS(133), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(133), - [aux_sym_cmd_identifier_token36] = ACTIONS(133), - [anon_sym_true] = ACTIONS(135), - [anon_sym_false] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(139), - [aux_sym_cmd_identifier_token39] = ACTIONS(141), - [aux_sym_cmd_identifier_token40] = ACTIONS(141), - [sym__newline] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(259), - [anon_sym_export_DASHenv] = ACTIONS(261), - [anon_sym_extern] = ACTIONS(263), - [anon_sym_module] = ACTIONS(265), - [anon_sym_use] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(269), - [anon_sym_error] = ACTIONS(271), - [anon_sym_list] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(169), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(273), - [anon_sym_loop] = ACTIONS(281), - [anon_sym_make] = ACTIONS(273), - [anon_sym_while] = ACTIONS(283), - [anon_sym_do] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), - [anon_sym_else] = ACTIONS(273), - [anon_sym_match] = ACTIONS(289), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(327), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(293), - [anon_sym_catch] = ACTIONS(273), - [anon_sym_return] = ACTIONS(295), - [anon_sym_source] = ACTIONS(297), - [anon_sym_source_DASHenv] = ACTIONS(297), - [anon_sym_register] = ACTIONS(299), - [anon_sym_hide] = ACTIONS(301), - [anon_sym_hide_DASHenv] = ACTIONS(303), - [anon_sym_overlay] = ACTIONS(305), - [anon_sym_new] = ACTIONS(273), - [anon_sym_as] = ACTIONS(273), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(243), + [aux_sym_pipe_element_repeat2] = STATE(361), + [aux_sym_record_body_repeat1] = STATE(211), + [anon_sym_export] = ACTIONS(253), + [anon_sym_alias] = ACTIONS(255), + [anon_sym_let] = ACTIONS(257), + [anon_sym_let_DASHenv] = ACTIONS(257), + [anon_sym_mut] = ACTIONS(259), + [anon_sym_const] = ACTIONS(261), + [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(135), + [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [aux_sym_cmd_identifier_token12] = ACTIONS(135), + [aux_sym_cmd_identifier_token13] = ACTIONS(135), + [aux_sym_cmd_identifier_token14] = ACTIONS(135), + [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [aux_sym_cmd_identifier_token16] = ACTIONS(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(135), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(135), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [anon_sym_true] = ACTIONS(137), + [anon_sym_false] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(141), + [aux_sym_cmd_identifier_token39] = ACTIONS(143), + [aux_sym_cmd_identifier_token40] = ACTIONS(143), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_def] = ACTIONS(263), + [anon_sym_export_DASHenv] = ACTIONS(265), + [anon_sym_extern] = ACTIONS(267), + [anon_sym_module] = ACTIONS(269), + [anon_sym_use] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(163), + [anon_sym_DOLLAR] = ACTIONS(273), + [anon_sym_error] = ACTIONS(275), + [anon_sym_list] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_for] = ACTIONS(283), + [anon_sym_in] = ACTIONS(277), + [anon_sym_loop] = ACTIONS(285), + [anon_sym_make] = ACTIONS(277), + [anon_sym_while] = ACTIONS(287), + [anon_sym_do] = ACTIONS(289), + [anon_sym_if] = ACTIONS(291), + [anon_sym_else] = ACTIONS(277), + [anon_sym_match] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_RBRACE] = ACTIONS(331), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(297), + [anon_sym_catch] = ACTIONS(277), + [anon_sym_return] = ACTIONS(299), + [anon_sym_source] = ACTIONS(301), + [anon_sym_source_DASHenv] = ACTIONS(301), + [anon_sym_register] = ACTIONS(303), + [anon_sym_hide] = ACTIONS(305), + [anon_sym_hide_DASHenv] = ACTIONS(307), + [anon_sym_overlay] = ACTIONS(309), + [anon_sym_new] = ACTIONS(277), + [anon_sym_as] = ACTIONS(277), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(219), + [aux_sym__val_number_decimal_token2] = ACTIONS(221), + [aux_sym__val_number_decimal_token3] = ACTIONS(223), + [aux_sym__val_number_decimal_token4] = ACTIONS(225), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [12] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7543), - [sym_cmd_identifier] = STATE(4554), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym_parameter_pipes] = STATE(127), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1847), - [sym__spread_parenthesized] = STATE(567), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym__spread_variable] = STATE(571), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2222), - [sym__val_number_decimal] = STATE(1436), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(2222), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym__spread_record] = STATE(567), - [sym_record_body] = STATE(7519), - [sym_record_entry] = STATE(6911), - [sym__record_key] = STATE(7516), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(8061), + [sym_cmd_identifier] = STATE(4656), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym_parameter_pipes] = STATE(128), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1913), + [sym__spread_parenthesized] = STATE(7465), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym__spread_variable] = STATE(7436), + [sym_val_variable] = STATE(1323), + [sym_val_number] = STATE(2300), + [sym__val_number_decimal] = STATE(1584), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(2300), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym__spread_record] = STATE(7465), + [sym_record_body] = STATE(7687), + [sym_record_entry] = STATE(6808), + [sym__record_key] = STATE(7872), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(12), - [aux_sym_shebang_repeat1] = STATE(28), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_shebang_repeat1] = STATE(31), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [aux_sym_record_body_repeat1] = STATE(210), - [anon_sym_export] = ACTIONS(249), - [anon_sym_alias] = ACTIONS(251), - [anon_sym_let] = ACTIONS(253), - [anon_sym_let_DASHenv] = ACTIONS(253), - [anon_sym_mut] = ACTIONS(255), - [anon_sym_const] = ACTIONS(257), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(133), - [aux_sym_cmd_identifier_token3] = ACTIONS(133), - [aux_sym_cmd_identifier_token4] = ACTIONS(133), - [aux_sym_cmd_identifier_token5] = ACTIONS(133), - [aux_sym_cmd_identifier_token6] = ACTIONS(133), - [aux_sym_cmd_identifier_token7] = ACTIONS(133), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(133), - [aux_sym_cmd_identifier_token11] = ACTIONS(133), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(133), - [aux_sym_cmd_identifier_token17] = ACTIONS(133), - [aux_sym_cmd_identifier_token18] = ACTIONS(133), - [aux_sym_cmd_identifier_token19] = ACTIONS(133), - [aux_sym_cmd_identifier_token20] = ACTIONS(133), - [aux_sym_cmd_identifier_token21] = ACTIONS(133), - [aux_sym_cmd_identifier_token22] = ACTIONS(133), - [aux_sym_cmd_identifier_token23] = ACTIONS(133), - [aux_sym_cmd_identifier_token24] = ACTIONS(133), - [aux_sym_cmd_identifier_token25] = ACTIONS(133), - [aux_sym_cmd_identifier_token26] = ACTIONS(133), - [aux_sym_cmd_identifier_token27] = ACTIONS(133), - [aux_sym_cmd_identifier_token28] = ACTIONS(133), - [aux_sym_cmd_identifier_token29] = ACTIONS(133), - [aux_sym_cmd_identifier_token30] = ACTIONS(133), - [aux_sym_cmd_identifier_token31] = ACTIONS(133), - [aux_sym_cmd_identifier_token32] = ACTIONS(133), - [aux_sym_cmd_identifier_token33] = ACTIONS(133), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(133), - [aux_sym_cmd_identifier_token36] = ACTIONS(133), - [anon_sym_true] = ACTIONS(135), - [anon_sym_false] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(139), - [aux_sym_cmd_identifier_token39] = ACTIONS(141), - [aux_sym_cmd_identifier_token40] = ACTIONS(141), - [sym__newline] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(259), - [anon_sym_export_DASHenv] = ACTIONS(261), - [anon_sym_extern] = ACTIONS(263), - [anon_sym_module] = ACTIONS(265), - [anon_sym_use] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(269), - [anon_sym_error] = ACTIONS(271), - [anon_sym_list] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(169), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(273), - [anon_sym_loop] = ACTIONS(281), - [anon_sym_make] = ACTIONS(273), - [anon_sym_while] = ACTIONS(283), - [anon_sym_do] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), - [anon_sym_else] = ACTIONS(273), - [anon_sym_match] = ACTIONS(289), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(329), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(293), - [anon_sym_catch] = ACTIONS(273), - [anon_sym_return] = ACTIONS(295), - [anon_sym_source] = ACTIONS(297), - [anon_sym_source_DASHenv] = ACTIONS(297), - [anon_sym_register] = ACTIONS(299), - [anon_sym_hide] = ACTIONS(301), - [anon_sym_hide_DASHenv] = ACTIONS(303), - [anon_sym_overlay] = ACTIONS(305), - [anon_sym_new] = ACTIONS(273), - [anon_sym_as] = ACTIONS(273), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(243), + [aux_sym_pipe_element_repeat2] = STATE(361), + [aux_sym_record_body_repeat1] = STATE(211), + [anon_sym_export] = ACTIONS(253), + [anon_sym_alias] = ACTIONS(255), + [anon_sym_let] = ACTIONS(257), + [anon_sym_let_DASHenv] = ACTIONS(257), + [anon_sym_mut] = ACTIONS(259), + [anon_sym_const] = ACTIONS(261), + [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(135), + [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [aux_sym_cmd_identifier_token12] = ACTIONS(135), + [aux_sym_cmd_identifier_token13] = ACTIONS(135), + [aux_sym_cmd_identifier_token14] = ACTIONS(135), + [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [aux_sym_cmd_identifier_token16] = ACTIONS(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(135), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(135), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [anon_sym_true] = ACTIONS(137), + [anon_sym_false] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(141), + [aux_sym_cmd_identifier_token39] = ACTIONS(143), + [aux_sym_cmd_identifier_token40] = ACTIONS(143), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_def] = ACTIONS(263), + [anon_sym_export_DASHenv] = ACTIONS(265), + [anon_sym_extern] = ACTIONS(267), + [anon_sym_module] = ACTIONS(269), + [anon_sym_use] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(163), + [anon_sym_DOLLAR] = ACTIONS(273), + [anon_sym_error] = ACTIONS(275), + [anon_sym_list] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_for] = ACTIONS(283), + [anon_sym_in] = ACTIONS(277), + [anon_sym_loop] = ACTIONS(285), + [anon_sym_make] = ACTIONS(277), + [anon_sym_while] = ACTIONS(287), + [anon_sym_do] = ACTIONS(289), + [anon_sym_if] = ACTIONS(291), + [anon_sym_else] = ACTIONS(277), + [anon_sym_match] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_RBRACE] = ACTIONS(333), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(297), + [anon_sym_catch] = ACTIONS(277), + [anon_sym_return] = ACTIONS(299), + [anon_sym_source] = ACTIONS(301), + [anon_sym_source_DASHenv] = ACTIONS(301), + [anon_sym_register] = ACTIONS(303), + [anon_sym_hide] = ACTIONS(305), + [anon_sym_hide_DASHenv] = ACTIONS(307), + [anon_sym_overlay] = ACTIONS(309), + [anon_sym_new] = ACTIONS(277), + [anon_sym_as] = ACTIONS(277), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(219), + [aux_sym__val_number_decimal_token2] = ACTIONS(221), + [aux_sym__val_number_decimal_token3] = ACTIONS(223), + [aux_sym__val_number_decimal_token4] = ACTIONS(225), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [13] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7515), - [sym_cmd_identifier] = STATE(4554), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym_parameter_pipes] = STATE(133), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1847), - [sym__spread_parenthesized] = STATE(567), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym__spread_variable] = STATE(571), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2222), - [sym__val_number_decimal] = STATE(1436), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(2222), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym__spread_record] = STATE(567), - [sym_record_body] = STATE(7389), - [sym_record_entry] = STATE(6911), - [sym__record_key] = STATE(7516), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7683), + [sym_cmd_identifier] = STATE(4656), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym_parameter_pipes] = STATE(134), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1913), + [sym__spread_parenthesized] = STATE(7465), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym__spread_variable] = STATE(7436), + [sym_val_variable] = STATE(1323), + [sym_val_number] = STATE(2300), + [sym__val_number_decimal] = STATE(1584), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(2300), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym__spread_record] = STATE(7465), + [sym_record_body] = STATE(7691), + [sym_record_entry] = STATE(6808), + [sym__record_key] = STATE(7872), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(13), - [aux_sym_shebang_repeat1] = STATE(26), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_shebang_repeat1] = STATE(30), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [aux_sym_record_body_repeat1] = STATE(210), - [anon_sym_export] = ACTIONS(249), - [anon_sym_alias] = ACTIONS(251), - [anon_sym_let] = ACTIONS(253), - [anon_sym_let_DASHenv] = ACTIONS(253), - [anon_sym_mut] = ACTIONS(255), - [anon_sym_const] = ACTIONS(257), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(133), - [aux_sym_cmd_identifier_token3] = ACTIONS(133), - [aux_sym_cmd_identifier_token4] = ACTIONS(133), - [aux_sym_cmd_identifier_token5] = ACTIONS(133), - [aux_sym_cmd_identifier_token6] = ACTIONS(133), - [aux_sym_cmd_identifier_token7] = ACTIONS(133), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(133), - [aux_sym_cmd_identifier_token11] = ACTIONS(133), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(133), - [aux_sym_cmd_identifier_token17] = ACTIONS(133), - [aux_sym_cmd_identifier_token18] = ACTIONS(133), - [aux_sym_cmd_identifier_token19] = ACTIONS(133), - [aux_sym_cmd_identifier_token20] = ACTIONS(133), - [aux_sym_cmd_identifier_token21] = ACTIONS(133), - [aux_sym_cmd_identifier_token22] = ACTIONS(133), - [aux_sym_cmd_identifier_token23] = ACTIONS(133), - [aux_sym_cmd_identifier_token24] = ACTIONS(133), - [aux_sym_cmd_identifier_token25] = ACTIONS(133), - [aux_sym_cmd_identifier_token26] = ACTIONS(133), - [aux_sym_cmd_identifier_token27] = ACTIONS(133), - [aux_sym_cmd_identifier_token28] = ACTIONS(133), - [aux_sym_cmd_identifier_token29] = ACTIONS(133), - [aux_sym_cmd_identifier_token30] = ACTIONS(133), - [aux_sym_cmd_identifier_token31] = ACTIONS(133), - [aux_sym_cmd_identifier_token32] = ACTIONS(133), - [aux_sym_cmd_identifier_token33] = ACTIONS(133), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(133), - [aux_sym_cmd_identifier_token36] = ACTIONS(133), - [anon_sym_true] = ACTIONS(135), - [anon_sym_false] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(139), - [aux_sym_cmd_identifier_token39] = ACTIONS(141), - [aux_sym_cmd_identifier_token40] = ACTIONS(141), - [sym__newline] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(259), - [anon_sym_export_DASHenv] = ACTIONS(261), - [anon_sym_extern] = ACTIONS(263), - [anon_sym_module] = ACTIONS(265), - [anon_sym_use] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(269), - [anon_sym_error] = ACTIONS(271), - [anon_sym_list] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(169), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(273), - [anon_sym_loop] = ACTIONS(281), - [anon_sym_make] = ACTIONS(273), - [anon_sym_while] = ACTIONS(283), - [anon_sym_do] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), - [anon_sym_else] = ACTIONS(273), - [anon_sym_match] = ACTIONS(289), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(331), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(293), - [anon_sym_catch] = ACTIONS(273), - [anon_sym_return] = ACTIONS(295), - [anon_sym_source] = ACTIONS(297), - [anon_sym_source_DASHenv] = ACTIONS(297), - [anon_sym_register] = ACTIONS(299), - [anon_sym_hide] = ACTIONS(301), - [anon_sym_hide_DASHenv] = ACTIONS(303), - [anon_sym_overlay] = ACTIONS(305), - [anon_sym_new] = ACTIONS(273), - [anon_sym_as] = ACTIONS(273), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(243), + [aux_sym_pipe_element_repeat2] = STATE(361), + [aux_sym_record_body_repeat1] = STATE(211), + [anon_sym_export] = ACTIONS(253), + [anon_sym_alias] = ACTIONS(255), + [anon_sym_let] = ACTIONS(257), + [anon_sym_let_DASHenv] = ACTIONS(257), + [anon_sym_mut] = ACTIONS(259), + [anon_sym_const] = ACTIONS(261), + [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(135), + [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [aux_sym_cmd_identifier_token12] = ACTIONS(135), + [aux_sym_cmd_identifier_token13] = ACTIONS(135), + [aux_sym_cmd_identifier_token14] = ACTIONS(135), + [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [aux_sym_cmd_identifier_token16] = ACTIONS(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(135), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(135), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [anon_sym_true] = ACTIONS(137), + [anon_sym_false] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(141), + [aux_sym_cmd_identifier_token39] = ACTIONS(143), + [aux_sym_cmd_identifier_token40] = ACTIONS(143), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_def] = ACTIONS(263), + [anon_sym_export_DASHenv] = ACTIONS(265), + [anon_sym_extern] = ACTIONS(267), + [anon_sym_module] = ACTIONS(269), + [anon_sym_use] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(163), + [anon_sym_DOLLAR] = ACTIONS(273), + [anon_sym_error] = ACTIONS(275), + [anon_sym_list] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_for] = ACTIONS(283), + [anon_sym_in] = ACTIONS(277), + [anon_sym_loop] = ACTIONS(285), + [anon_sym_make] = ACTIONS(277), + [anon_sym_while] = ACTIONS(287), + [anon_sym_do] = ACTIONS(289), + [anon_sym_if] = ACTIONS(291), + [anon_sym_else] = ACTIONS(277), + [anon_sym_match] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_RBRACE] = ACTIONS(335), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(297), + [anon_sym_catch] = ACTIONS(277), + [anon_sym_return] = ACTIONS(299), + [anon_sym_source] = ACTIONS(301), + [anon_sym_source_DASHenv] = ACTIONS(301), + [anon_sym_register] = ACTIONS(303), + [anon_sym_hide] = ACTIONS(305), + [anon_sym_hide_DASHenv] = ACTIONS(307), + [anon_sym_overlay] = ACTIONS(309), + [anon_sym_new] = ACTIONS(277), + [anon_sym_as] = ACTIONS(277), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(219), + [aux_sym__val_number_decimal_token2] = ACTIONS(221), + [aux_sym__val_number_decimal_token3] = ACTIONS(223), + [aux_sym__val_number_decimal_token4] = ACTIONS(225), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [14] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7386), - [sym_cmd_identifier] = STATE(4554), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym_parameter_pipes] = STATE(137), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1847), - [sym__spread_parenthesized] = STATE(567), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym__spread_variable] = STATE(571), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2222), - [sym__val_number_decimal] = STATE(1436), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(2222), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym__spread_record] = STATE(567), - [sym_record_body] = STATE(7564), - [sym_record_entry] = STATE(6911), - [sym__record_key] = STATE(7516), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7690), + [sym_cmd_identifier] = STATE(4656), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym_parameter_pipes] = STATE(138), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1913), + [sym__spread_parenthesized] = STATE(7465), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym__spread_variable] = STATE(7436), + [sym_val_variable] = STATE(1323), + [sym_val_number] = STATE(2300), + [sym__val_number_decimal] = STATE(1584), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(2300), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym__spread_record] = STATE(7465), + [sym_record_body] = STATE(8035), + [sym_record_entry] = STATE(6808), + [sym__record_key] = STATE(7872), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(14), - [aux_sym_shebang_repeat1] = STATE(33), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_shebang_repeat1] = STATE(32), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [aux_sym_record_body_repeat1] = STATE(210), - [anon_sym_export] = ACTIONS(249), - [anon_sym_alias] = ACTIONS(251), - [anon_sym_let] = ACTIONS(253), - [anon_sym_let_DASHenv] = ACTIONS(253), - [anon_sym_mut] = ACTIONS(255), - [anon_sym_const] = ACTIONS(257), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(133), - [aux_sym_cmd_identifier_token3] = ACTIONS(133), - [aux_sym_cmd_identifier_token4] = ACTIONS(133), - [aux_sym_cmd_identifier_token5] = ACTIONS(133), - [aux_sym_cmd_identifier_token6] = ACTIONS(133), - [aux_sym_cmd_identifier_token7] = ACTIONS(133), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(133), - [aux_sym_cmd_identifier_token11] = ACTIONS(133), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(133), - [aux_sym_cmd_identifier_token17] = ACTIONS(133), - [aux_sym_cmd_identifier_token18] = ACTIONS(133), - [aux_sym_cmd_identifier_token19] = ACTIONS(133), - [aux_sym_cmd_identifier_token20] = ACTIONS(133), - [aux_sym_cmd_identifier_token21] = ACTIONS(133), - [aux_sym_cmd_identifier_token22] = ACTIONS(133), - [aux_sym_cmd_identifier_token23] = ACTIONS(133), - [aux_sym_cmd_identifier_token24] = ACTIONS(133), - [aux_sym_cmd_identifier_token25] = ACTIONS(133), - [aux_sym_cmd_identifier_token26] = ACTIONS(133), - [aux_sym_cmd_identifier_token27] = ACTIONS(133), - [aux_sym_cmd_identifier_token28] = ACTIONS(133), - [aux_sym_cmd_identifier_token29] = ACTIONS(133), - [aux_sym_cmd_identifier_token30] = ACTIONS(133), - [aux_sym_cmd_identifier_token31] = ACTIONS(133), - [aux_sym_cmd_identifier_token32] = ACTIONS(133), - [aux_sym_cmd_identifier_token33] = ACTIONS(133), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(133), - [aux_sym_cmd_identifier_token36] = ACTIONS(133), - [anon_sym_true] = ACTIONS(135), - [anon_sym_false] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(139), - [aux_sym_cmd_identifier_token39] = ACTIONS(141), - [aux_sym_cmd_identifier_token40] = ACTIONS(141), - [sym__newline] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(259), - [anon_sym_export_DASHenv] = ACTIONS(261), - [anon_sym_extern] = ACTIONS(263), - [anon_sym_module] = ACTIONS(265), - [anon_sym_use] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(269), - [anon_sym_error] = ACTIONS(271), - [anon_sym_list] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(169), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(273), - [anon_sym_loop] = ACTIONS(281), - [anon_sym_make] = ACTIONS(273), - [anon_sym_while] = ACTIONS(283), - [anon_sym_do] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), - [anon_sym_else] = ACTIONS(273), - [anon_sym_match] = ACTIONS(289), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(333), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(293), - [anon_sym_catch] = ACTIONS(273), - [anon_sym_return] = ACTIONS(295), - [anon_sym_source] = ACTIONS(297), - [anon_sym_source_DASHenv] = ACTIONS(297), - [anon_sym_register] = ACTIONS(299), - [anon_sym_hide] = ACTIONS(301), - [anon_sym_hide_DASHenv] = ACTIONS(303), - [anon_sym_overlay] = ACTIONS(305), - [anon_sym_new] = ACTIONS(273), - [anon_sym_as] = ACTIONS(273), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(243), + [aux_sym_pipe_element_repeat2] = STATE(361), + [aux_sym_record_body_repeat1] = STATE(211), + [anon_sym_export] = ACTIONS(253), + [anon_sym_alias] = ACTIONS(255), + [anon_sym_let] = ACTIONS(257), + [anon_sym_let_DASHenv] = ACTIONS(257), + [anon_sym_mut] = ACTIONS(259), + [anon_sym_const] = ACTIONS(261), + [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(135), + [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [aux_sym_cmd_identifier_token12] = ACTIONS(135), + [aux_sym_cmd_identifier_token13] = ACTIONS(135), + [aux_sym_cmd_identifier_token14] = ACTIONS(135), + [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [aux_sym_cmd_identifier_token16] = ACTIONS(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(135), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(135), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [anon_sym_true] = ACTIONS(137), + [anon_sym_false] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(141), + [aux_sym_cmd_identifier_token39] = ACTIONS(143), + [aux_sym_cmd_identifier_token40] = ACTIONS(143), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_def] = ACTIONS(263), + [anon_sym_export_DASHenv] = ACTIONS(265), + [anon_sym_extern] = ACTIONS(267), + [anon_sym_module] = ACTIONS(269), + [anon_sym_use] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(163), + [anon_sym_DOLLAR] = ACTIONS(273), + [anon_sym_error] = ACTIONS(275), + [anon_sym_list] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_for] = ACTIONS(283), + [anon_sym_in] = ACTIONS(277), + [anon_sym_loop] = ACTIONS(285), + [anon_sym_make] = ACTIONS(277), + [anon_sym_while] = ACTIONS(287), + [anon_sym_do] = ACTIONS(289), + [anon_sym_if] = ACTIONS(291), + [anon_sym_else] = ACTIONS(277), + [anon_sym_match] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_RBRACE] = ACTIONS(337), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(297), + [anon_sym_catch] = ACTIONS(277), + [anon_sym_return] = ACTIONS(299), + [anon_sym_source] = ACTIONS(301), + [anon_sym_source_DASHenv] = ACTIONS(301), + [anon_sym_register] = ACTIONS(303), + [anon_sym_hide] = ACTIONS(305), + [anon_sym_hide_DASHenv] = ACTIONS(307), + [anon_sym_overlay] = ACTIONS(309), + [anon_sym_new] = ACTIONS(277), + [anon_sym_as] = ACTIONS(277), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(219), + [aux_sym__val_number_decimal_token2] = ACTIONS(221), + [aux_sym__val_number_decimal_token3] = ACTIONS(223), + [aux_sym__val_number_decimal_token4] = ACTIONS(225), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [15] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7559), - [sym_cmd_identifier] = STATE(4554), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym_parameter_pipes] = STATE(139), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1847), - [sym__spread_parenthesized] = STATE(567), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym__spread_variable] = STATE(571), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2222), - [sym__val_number_decimal] = STATE(1436), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(2222), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym__spread_record] = STATE(567), - [sym_record_body] = STATE(7719), - [sym_record_entry] = STATE(6911), - [sym__record_key] = STATE(7516), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(8077), + [sym_cmd_identifier] = STATE(4656), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym_parameter_pipes] = STATE(140), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1913), + [sym__spread_parenthesized] = STATE(7465), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym__spread_variable] = STATE(7436), + [sym_val_variable] = STATE(1323), + [sym_val_number] = STATE(2300), + [sym__val_number_decimal] = STATE(1584), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(2300), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym__spread_record] = STATE(7465), + [sym_record_body] = STATE(8042), + [sym_record_entry] = STATE(6808), + [sym__record_key] = STATE(7872), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(15), - [aux_sym_shebang_repeat1] = STATE(31), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_shebang_repeat1] = STATE(33), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [aux_sym_record_body_repeat1] = STATE(210), - [anon_sym_export] = ACTIONS(249), - [anon_sym_alias] = ACTIONS(251), - [anon_sym_let] = ACTIONS(253), - [anon_sym_let_DASHenv] = ACTIONS(253), - [anon_sym_mut] = ACTIONS(255), - [anon_sym_const] = ACTIONS(257), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(133), - [aux_sym_cmd_identifier_token3] = ACTIONS(133), - [aux_sym_cmd_identifier_token4] = ACTIONS(133), - [aux_sym_cmd_identifier_token5] = ACTIONS(133), - [aux_sym_cmd_identifier_token6] = ACTIONS(133), - [aux_sym_cmd_identifier_token7] = ACTIONS(133), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(133), - [aux_sym_cmd_identifier_token11] = ACTIONS(133), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(133), - [aux_sym_cmd_identifier_token17] = ACTIONS(133), - [aux_sym_cmd_identifier_token18] = ACTIONS(133), - [aux_sym_cmd_identifier_token19] = ACTIONS(133), - [aux_sym_cmd_identifier_token20] = ACTIONS(133), - [aux_sym_cmd_identifier_token21] = ACTIONS(133), - [aux_sym_cmd_identifier_token22] = ACTIONS(133), - [aux_sym_cmd_identifier_token23] = ACTIONS(133), - [aux_sym_cmd_identifier_token24] = ACTIONS(133), - [aux_sym_cmd_identifier_token25] = ACTIONS(133), - [aux_sym_cmd_identifier_token26] = ACTIONS(133), - [aux_sym_cmd_identifier_token27] = ACTIONS(133), - [aux_sym_cmd_identifier_token28] = ACTIONS(133), - [aux_sym_cmd_identifier_token29] = ACTIONS(133), - [aux_sym_cmd_identifier_token30] = ACTIONS(133), - [aux_sym_cmd_identifier_token31] = ACTIONS(133), - [aux_sym_cmd_identifier_token32] = ACTIONS(133), - [aux_sym_cmd_identifier_token33] = ACTIONS(133), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(133), - [aux_sym_cmd_identifier_token36] = ACTIONS(133), - [anon_sym_true] = ACTIONS(135), - [anon_sym_false] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(139), - [aux_sym_cmd_identifier_token39] = ACTIONS(141), - [aux_sym_cmd_identifier_token40] = ACTIONS(141), - [sym__newline] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(259), - [anon_sym_export_DASHenv] = ACTIONS(261), - [anon_sym_extern] = ACTIONS(263), - [anon_sym_module] = ACTIONS(265), - [anon_sym_use] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(269), - [anon_sym_error] = ACTIONS(271), - [anon_sym_list] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(169), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(273), - [anon_sym_loop] = ACTIONS(281), - [anon_sym_make] = ACTIONS(273), - [anon_sym_while] = ACTIONS(283), - [anon_sym_do] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), - [anon_sym_else] = ACTIONS(273), - [anon_sym_match] = ACTIONS(289), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(335), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(293), - [anon_sym_catch] = ACTIONS(273), - [anon_sym_return] = ACTIONS(295), - [anon_sym_source] = ACTIONS(297), - [anon_sym_source_DASHenv] = ACTIONS(297), - [anon_sym_register] = ACTIONS(299), - [anon_sym_hide] = ACTIONS(301), - [anon_sym_hide_DASHenv] = ACTIONS(303), - [anon_sym_overlay] = ACTIONS(305), - [anon_sym_new] = ACTIONS(273), - [anon_sym_as] = ACTIONS(273), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(243), + [aux_sym_pipe_element_repeat2] = STATE(361), + [aux_sym_record_body_repeat1] = STATE(211), + [anon_sym_export] = ACTIONS(253), + [anon_sym_alias] = ACTIONS(255), + [anon_sym_let] = ACTIONS(257), + [anon_sym_let_DASHenv] = ACTIONS(257), + [anon_sym_mut] = ACTIONS(259), + [anon_sym_const] = ACTIONS(261), + [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(135), + [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [aux_sym_cmd_identifier_token12] = ACTIONS(135), + [aux_sym_cmd_identifier_token13] = ACTIONS(135), + [aux_sym_cmd_identifier_token14] = ACTIONS(135), + [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [aux_sym_cmd_identifier_token16] = ACTIONS(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(135), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(135), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [anon_sym_true] = ACTIONS(137), + [anon_sym_false] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(141), + [aux_sym_cmd_identifier_token39] = ACTIONS(143), + [aux_sym_cmd_identifier_token40] = ACTIONS(143), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_def] = ACTIONS(263), + [anon_sym_export_DASHenv] = ACTIONS(265), + [anon_sym_extern] = ACTIONS(267), + [anon_sym_module] = ACTIONS(269), + [anon_sym_use] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(163), + [anon_sym_DOLLAR] = ACTIONS(273), + [anon_sym_error] = ACTIONS(275), + [anon_sym_list] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_for] = ACTIONS(283), + [anon_sym_in] = ACTIONS(277), + [anon_sym_loop] = ACTIONS(285), + [anon_sym_make] = ACTIONS(277), + [anon_sym_while] = ACTIONS(287), + [anon_sym_do] = ACTIONS(289), + [anon_sym_if] = ACTIONS(291), + [anon_sym_else] = ACTIONS(277), + [anon_sym_match] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_RBRACE] = ACTIONS(339), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(297), + [anon_sym_catch] = ACTIONS(277), + [anon_sym_return] = ACTIONS(299), + [anon_sym_source] = ACTIONS(301), + [anon_sym_source_DASHenv] = ACTIONS(301), + [anon_sym_register] = ACTIONS(303), + [anon_sym_hide] = ACTIONS(305), + [anon_sym_hide_DASHenv] = ACTIONS(307), + [anon_sym_overlay] = ACTIONS(309), + [anon_sym_new] = ACTIONS(277), + [anon_sym_as] = ACTIONS(277), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(219), + [aux_sym__val_number_decimal_token2] = ACTIONS(221), + [aux_sym__val_number_decimal_token3] = ACTIONS(223), + [aux_sym__val_number_decimal_token4] = ACTIONS(225), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [16] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7718), - [sym_cmd_identifier] = STATE(4554), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym_parameter_pipes] = STATE(141), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1847), - [sym__spread_parenthesized] = STATE(567), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym__spread_variable] = STATE(571), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2222), - [sym__val_number_decimal] = STATE(1436), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(2222), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym__spread_record] = STATE(567), - [sym_record_body] = STATE(7602), - [sym_record_entry] = STATE(6911), - [sym__record_key] = STATE(7516), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(8041), + [sym_cmd_identifier] = STATE(4656), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym_parameter_pipes] = STATE(142), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1913), + [sym__spread_parenthesized] = STATE(7465), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym__spread_variable] = STATE(7436), + [sym_val_variable] = STATE(1323), + [sym_val_number] = STATE(2300), + [sym__val_number_decimal] = STATE(1584), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(2300), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym__spread_record] = STATE(7465), + [sym_record_body] = STATE(8049), + [sym_record_entry] = STATE(6808), + [sym__record_key] = STATE(7872), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(16), - [aux_sym_shebang_repeat1] = STATE(35), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_shebang_repeat1] = STATE(34), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [aux_sym_record_body_repeat1] = STATE(210), - [anon_sym_export] = ACTIONS(249), - [anon_sym_alias] = ACTIONS(251), - [anon_sym_let] = ACTIONS(253), - [anon_sym_let_DASHenv] = ACTIONS(253), - [anon_sym_mut] = ACTIONS(255), - [anon_sym_const] = ACTIONS(257), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(133), - [aux_sym_cmd_identifier_token3] = ACTIONS(133), - [aux_sym_cmd_identifier_token4] = ACTIONS(133), - [aux_sym_cmd_identifier_token5] = ACTIONS(133), - [aux_sym_cmd_identifier_token6] = ACTIONS(133), - [aux_sym_cmd_identifier_token7] = ACTIONS(133), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(133), - [aux_sym_cmd_identifier_token11] = ACTIONS(133), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(133), - [aux_sym_cmd_identifier_token17] = ACTIONS(133), - [aux_sym_cmd_identifier_token18] = ACTIONS(133), - [aux_sym_cmd_identifier_token19] = ACTIONS(133), - [aux_sym_cmd_identifier_token20] = ACTIONS(133), - [aux_sym_cmd_identifier_token21] = ACTIONS(133), - [aux_sym_cmd_identifier_token22] = ACTIONS(133), - [aux_sym_cmd_identifier_token23] = ACTIONS(133), - [aux_sym_cmd_identifier_token24] = ACTIONS(133), - [aux_sym_cmd_identifier_token25] = ACTIONS(133), - [aux_sym_cmd_identifier_token26] = ACTIONS(133), - [aux_sym_cmd_identifier_token27] = ACTIONS(133), - [aux_sym_cmd_identifier_token28] = ACTIONS(133), - [aux_sym_cmd_identifier_token29] = ACTIONS(133), - [aux_sym_cmd_identifier_token30] = ACTIONS(133), - [aux_sym_cmd_identifier_token31] = ACTIONS(133), - [aux_sym_cmd_identifier_token32] = ACTIONS(133), - [aux_sym_cmd_identifier_token33] = ACTIONS(133), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(133), - [aux_sym_cmd_identifier_token36] = ACTIONS(133), - [anon_sym_true] = ACTIONS(135), - [anon_sym_false] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(139), - [aux_sym_cmd_identifier_token39] = ACTIONS(141), - [aux_sym_cmd_identifier_token40] = ACTIONS(141), - [sym__newline] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(259), - [anon_sym_export_DASHenv] = ACTIONS(261), - [anon_sym_extern] = ACTIONS(263), - [anon_sym_module] = ACTIONS(265), - [anon_sym_use] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(269), - [anon_sym_error] = ACTIONS(271), - [anon_sym_list] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(169), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(273), - [anon_sym_loop] = ACTIONS(281), - [anon_sym_make] = ACTIONS(273), - [anon_sym_while] = ACTIONS(283), - [anon_sym_do] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), - [anon_sym_else] = ACTIONS(273), - [anon_sym_match] = ACTIONS(289), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(337), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(293), - [anon_sym_catch] = ACTIONS(273), - [anon_sym_return] = ACTIONS(295), - [anon_sym_source] = ACTIONS(297), - [anon_sym_source_DASHenv] = ACTIONS(297), - [anon_sym_register] = ACTIONS(299), - [anon_sym_hide] = ACTIONS(301), - [anon_sym_hide_DASHenv] = ACTIONS(303), - [anon_sym_overlay] = ACTIONS(305), - [anon_sym_new] = ACTIONS(273), - [anon_sym_as] = ACTIONS(273), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(243), + [aux_sym_pipe_element_repeat2] = STATE(361), + [aux_sym_record_body_repeat1] = STATE(211), + [anon_sym_export] = ACTIONS(253), + [anon_sym_alias] = ACTIONS(255), + [anon_sym_let] = ACTIONS(257), + [anon_sym_let_DASHenv] = ACTIONS(257), + [anon_sym_mut] = ACTIONS(259), + [anon_sym_const] = ACTIONS(261), + [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(135), + [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [aux_sym_cmd_identifier_token12] = ACTIONS(135), + [aux_sym_cmd_identifier_token13] = ACTIONS(135), + [aux_sym_cmd_identifier_token14] = ACTIONS(135), + [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [aux_sym_cmd_identifier_token16] = ACTIONS(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(135), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(135), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [anon_sym_true] = ACTIONS(137), + [anon_sym_false] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(141), + [aux_sym_cmd_identifier_token39] = ACTIONS(143), + [aux_sym_cmd_identifier_token40] = ACTIONS(143), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_def] = ACTIONS(263), + [anon_sym_export_DASHenv] = ACTIONS(265), + [anon_sym_extern] = ACTIONS(267), + [anon_sym_module] = ACTIONS(269), + [anon_sym_use] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(163), + [anon_sym_DOLLAR] = ACTIONS(273), + [anon_sym_error] = ACTIONS(275), + [anon_sym_list] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_for] = ACTIONS(283), + [anon_sym_in] = ACTIONS(277), + [anon_sym_loop] = ACTIONS(285), + [anon_sym_make] = ACTIONS(277), + [anon_sym_while] = ACTIONS(287), + [anon_sym_do] = ACTIONS(289), + [anon_sym_if] = ACTIONS(291), + [anon_sym_else] = ACTIONS(277), + [anon_sym_match] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_RBRACE] = ACTIONS(341), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(297), + [anon_sym_catch] = ACTIONS(277), + [anon_sym_return] = ACTIONS(299), + [anon_sym_source] = ACTIONS(301), + [anon_sym_source_DASHenv] = ACTIONS(301), + [anon_sym_register] = ACTIONS(303), + [anon_sym_hide] = ACTIONS(305), + [anon_sym_hide_DASHenv] = ACTIONS(307), + [anon_sym_overlay] = ACTIONS(309), + [anon_sym_new] = ACTIONS(277), + [anon_sym_as] = ACTIONS(277), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(219), + [aux_sym__val_number_decimal_token2] = ACTIONS(221), + [aux_sym__val_number_decimal_token3] = ACTIONS(223), + [aux_sym__val_number_decimal_token4] = ACTIONS(225), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [17] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7588), - [sym_cmd_identifier] = STATE(4554), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym_parameter_pipes] = STATE(143), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1847), - [sym__spread_parenthesized] = STATE(567), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym__spread_variable] = STATE(571), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2222), - [sym__val_number_decimal] = STATE(1436), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(2222), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym__spread_record] = STATE(567), - [sym_record_body] = STATE(7576), - [sym_record_entry] = STATE(6911), - [sym__record_key] = STATE(7516), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7889), + [sym_cmd_identifier] = STATE(4656), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym_parameter_pipes] = STATE(116), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1913), + [sym__spread_parenthesized] = STATE(7465), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym__spread_variable] = STATE(7436), + [sym_val_variable] = STATE(1323), + [sym_val_number] = STATE(2300), + [sym__val_number_decimal] = STATE(1584), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(2300), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym__spread_record] = STATE(7465), + [sym_record_body] = STATE(7783), + [sym_record_entry] = STATE(6808), + [sym__record_key] = STATE(7872), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(17), - [aux_sym_shebang_repeat1] = STATE(36), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_shebang_repeat1] = STATE(26), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [aux_sym_record_body_repeat1] = STATE(210), - [anon_sym_export] = ACTIONS(249), - [anon_sym_alias] = ACTIONS(251), - [anon_sym_let] = ACTIONS(253), - [anon_sym_let_DASHenv] = ACTIONS(253), - [anon_sym_mut] = ACTIONS(255), - [anon_sym_const] = ACTIONS(257), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(133), - [aux_sym_cmd_identifier_token3] = ACTIONS(133), - [aux_sym_cmd_identifier_token4] = ACTIONS(133), - [aux_sym_cmd_identifier_token5] = ACTIONS(133), - [aux_sym_cmd_identifier_token6] = ACTIONS(133), - [aux_sym_cmd_identifier_token7] = ACTIONS(133), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(133), - [aux_sym_cmd_identifier_token11] = ACTIONS(133), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(133), - [aux_sym_cmd_identifier_token17] = ACTIONS(133), - [aux_sym_cmd_identifier_token18] = ACTIONS(133), - [aux_sym_cmd_identifier_token19] = ACTIONS(133), - [aux_sym_cmd_identifier_token20] = ACTIONS(133), - [aux_sym_cmd_identifier_token21] = ACTIONS(133), - [aux_sym_cmd_identifier_token22] = ACTIONS(133), - [aux_sym_cmd_identifier_token23] = ACTIONS(133), - [aux_sym_cmd_identifier_token24] = ACTIONS(133), - [aux_sym_cmd_identifier_token25] = ACTIONS(133), - [aux_sym_cmd_identifier_token26] = ACTIONS(133), - [aux_sym_cmd_identifier_token27] = ACTIONS(133), - [aux_sym_cmd_identifier_token28] = ACTIONS(133), - [aux_sym_cmd_identifier_token29] = ACTIONS(133), - [aux_sym_cmd_identifier_token30] = ACTIONS(133), - [aux_sym_cmd_identifier_token31] = ACTIONS(133), - [aux_sym_cmd_identifier_token32] = ACTIONS(133), - [aux_sym_cmd_identifier_token33] = ACTIONS(133), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(133), - [aux_sym_cmd_identifier_token36] = ACTIONS(133), - [anon_sym_true] = ACTIONS(135), - [anon_sym_false] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(139), - [aux_sym_cmd_identifier_token39] = ACTIONS(141), - [aux_sym_cmd_identifier_token40] = ACTIONS(141), - [sym__newline] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(259), - [anon_sym_export_DASHenv] = ACTIONS(261), - [anon_sym_extern] = ACTIONS(263), - [anon_sym_module] = ACTIONS(265), - [anon_sym_use] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(269), - [anon_sym_error] = ACTIONS(271), - [anon_sym_list] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(169), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(273), - [anon_sym_loop] = ACTIONS(281), - [anon_sym_make] = ACTIONS(273), - [anon_sym_while] = ACTIONS(283), - [anon_sym_do] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), - [anon_sym_else] = ACTIONS(273), - [anon_sym_match] = ACTIONS(289), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(339), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(293), - [anon_sym_catch] = ACTIONS(273), - [anon_sym_return] = ACTIONS(295), - [anon_sym_source] = ACTIONS(297), - [anon_sym_source_DASHenv] = ACTIONS(297), - [anon_sym_register] = ACTIONS(299), - [anon_sym_hide] = ACTIONS(301), - [anon_sym_hide_DASHenv] = ACTIONS(303), - [anon_sym_overlay] = ACTIONS(305), - [anon_sym_new] = ACTIONS(273), - [anon_sym_as] = ACTIONS(273), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(243), + [aux_sym_pipe_element_repeat2] = STATE(361), + [aux_sym_record_body_repeat1] = STATE(211), + [anon_sym_export] = ACTIONS(253), + [anon_sym_alias] = ACTIONS(255), + [anon_sym_let] = ACTIONS(257), + [anon_sym_let_DASHenv] = ACTIONS(257), + [anon_sym_mut] = ACTIONS(259), + [anon_sym_const] = ACTIONS(261), + [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(135), + [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [aux_sym_cmd_identifier_token12] = ACTIONS(135), + [aux_sym_cmd_identifier_token13] = ACTIONS(135), + [aux_sym_cmd_identifier_token14] = ACTIONS(135), + [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [aux_sym_cmd_identifier_token16] = ACTIONS(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(135), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(135), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [anon_sym_true] = ACTIONS(137), + [anon_sym_false] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(141), + [aux_sym_cmd_identifier_token39] = ACTIONS(143), + [aux_sym_cmd_identifier_token40] = ACTIONS(143), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_def] = ACTIONS(263), + [anon_sym_export_DASHenv] = ACTIONS(265), + [anon_sym_extern] = ACTIONS(267), + [anon_sym_module] = ACTIONS(269), + [anon_sym_use] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(163), + [anon_sym_DOLLAR] = ACTIONS(273), + [anon_sym_error] = ACTIONS(275), + [anon_sym_list] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_for] = ACTIONS(283), + [anon_sym_in] = ACTIONS(277), + [anon_sym_loop] = ACTIONS(285), + [anon_sym_make] = ACTIONS(277), + [anon_sym_while] = ACTIONS(287), + [anon_sym_do] = ACTIONS(289), + [anon_sym_if] = ACTIONS(291), + [anon_sym_else] = ACTIONS(277), + [anon_sym_match] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_RBRACE] = ACTIONS(343), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(297), + [anon_sym_catch] = ACTIONS(277), + [anon_sym_return] = ACTIONS(299), + [anon_sym_source] = ACTIONS(301), + [anon_sym_source_DASHenv] = ACTIONS(301), + [anon_sym_register] = ACTIONS(303), + [anon_sym_hide] = ACTIONS(305), + [anon_sym_hide_DASHenv] = ACTIONS(307), + [anon_sym_overlay] = ACTIONS(309), + [anon_sym_new] = ACTIONS(277), + [anon_sym_as] = ACTIONS(277), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(219), + [aux_sym__val_number_decimal_token2] = ACTIONS(221), + [aux_sym__val_number_decimal_token3] = ACTIONS(223), + [aux_sym__val_number_decimal_token4] = ACTIONS(225), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [18] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7588), - [sym_cmd_identifier] = STATE(4554), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym_parameter_pipes] = STATE(143), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1847), - [sym__spread_parenthesized] = STATE(567), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym__spread_variable] = STATE(571), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2222), - [sym__val_number_decimal] = STATE(1436), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(2222), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym__spread_record] = STATE(567), - [sym_record_body] = STATE(7532), - [sym_record_entry] = STATE(6911), - [sym__record_key] = STATE(7516), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7889), + [sym_cmd_identifier] = STATE(4656), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym_parameter_pipes] = STATE(116), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1913), + [sym__spread_parenthesized] = STATE(7465), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym__spread_variable] = STATE(7436), + [sym_val_variable] = STATE(1323), + [sym_val_number] = STATE(2300), + [sym__val_number_decimal] = STATE(1584), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(2300), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym__spread_record] = STATE(7465), + [sym_record_body] = STATE(7944), + [sym_record_entry] = STATE(6808), + [sym__record_key] = STATE(7872), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(18), - [aux_sym_shebang_repeat1] = STATE(36), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_shebang_repeat1] = STATE(26), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [aux_sym_record_body_repeat1] = STATE(210), - [anon_sym_export] = ACTIONS(249), - [anon_sym_alias] = ACTIONS(251), - [anon_sym_let] = ACTIONS(253), - [anon_sym_let_DASHenv] = ACTIONS(253), - [anon_sym_mut] = ACTIONS(255), - [anon_sym_const] = ACTIONS(257), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(133), - [aux_sym_cmd_identifier_token3] = ACTIONS(133), - [aux_sym_cmd_identifier_token4] = ACTIONS(133), - [aux_sym_cmd_identifier_token5] = ACTIONS(133), - [aux_sym_cmd_identifier_token6] = ACTIONS(133), - [aux_sym_cmd_identifier_token7] = ACTIONS(133), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(133), - [aux_sym_cmd_identifier_token11] = ACTIONS(133), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(133), - [aux_sym_cmd_identifier_token17] = ACTIONS(133), - [aux_sym_cmd_identifier_token18] = ACTIONS(133), - [aux_sym_cmd_identifier_token19] = ACTIONS(133), - [aux_sym_cmd_identifier_token20] = ACTIONS(133), - [aux_sym_cmd_identifier_token21] = ACTIONS(133), - [aux_sym_cmd_identifier_token22] = ACTIONS(133), - [aux_sym_cmd_identifier_token23] = ACTIONS(133), - [aux_sym_cmd_identifier_token24] = ACTIONS(133), - [aux_sym_cmd_identifier_token25] = ACTIONS(133), - [aux_sym_cmd_identifier_token26] = ACTIONS(133), - [aux_sym_cmd_identifier_token27] = ACTIONS(133), - [aux_sym_cmd_identifier_token28] = ACTIONS(133), - [aux_sym_cmd_identifier_token29] = ACTIONS(133), - [aux_sym_cmd_identifier_token30] = ACTIONS(133), - [aux_sym_cmd_identifier_token31] = ACTIONS(133), - [aux_sym_cmd_identifier_token32] = ACTIONS(133), - [aux_sym_cmd_identifier_token33] = ACTIONS(133), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(133), - [aux_sym_cmd_identifier_token36] = ACTIONS(133), - [anon_sym_true] = ACTIONS(135), - [anon_sym_false] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(139), - [aux_sym_cmd_identifier_token39] = ACTIONS(141), - [aux_sym_cmd_identifier_token40] = ACTIONS(141), - [sym__newline] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(259), - [anon_sym_export_DASHenv] = ACTIONS(261), - [anon_sym_extern] = ACTIONS(263), - [anon_sym_module] = ACTIONS(265), - [anon_sym_use] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(269), - [anon_sym_error] = ACTIONS(271), - [anon_sym_list] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(169), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(273), - [anon_sym_loop] = ACTIONS(281), - [anon_sym_make] = ACTIONS(273), - [anon_sym_while] = ACTIONS(283), - [anon_sym_do] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), - [anon_sym_else] = ACTIONS(273), - [anon_sym_match] = ACTIONS(289), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(341), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(293), - [anon_sym_catch] = ACTIONS(273), - [anon_sym_return] = ACTIONS(295), - [anon_sym_source] = ACTIONS(297), - [anon_sym_source_DASHenv] = ACTIONS(297), - [anon_sym_register] = ACTIONS(299), - [anon_sym_hide] = ACTIONS(301), - [anon_sym_hide_DASHenv] = ACTIONS(303), - [anon_sym_overlay] = ACTIONS(305), - [anon_sym_new] = ACTIONS(273), - [anon_sym_as] = ACTIONS(273), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(243), + [aux_sym_pipe_element_repeat2] = STATE(361), + [aux_sym_record_body_repeat1] = STATE(211), + [anon_sym_export] = ACTIONS(253), + [anon_sym_alias] = ACTIONS(255), + [anon_sym_let] = ACTIONS(257), + [anon_sym_let_DASHenv] = ACTIONS(257), + [anon_sym_mut] = ACTIONS(259), + [anon_sym_const] = ACTIONS(261), + [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(135), + [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [aux_sym_cmd_identifier_token12] = ACTIONS(135), + [aux_sym_cmd_identifier_token13] = ACTIONS(135), + [aux_sym_cmd_identifier_token14] = ACTIONS(135), + [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [aux_sym_cmd_identifier_token16] = ACTIONS(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(135), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(135), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [anon_sym_true] = ACTIONS(137), + [anon_sym_false] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(141), + [aux_sym_cmd_identifier_token39] = ACTIONS(143), + [aux_sym_cmd_identifier_token40] = ACTIONS(143), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_def] = ACTIONS(263), + [anon_sym_export_DASHenv] = ACTIONS(265), + [anon_sym_extern] = ACTIONS(267), + [anon_sym_module] = ACTIONS(269), + [anon_sym_use] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(163), + [anon_sym_DOLLAR] = ACTIONS(273), + [anon_sym_error] = ACTIONS(275), + [anon_sym_list] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_for] = ACTIONS(283), + [anon_sym_in] = ACTIONS(277), + [anon_sym_loop] = ACTIONS(285), + [anon_sym_make] = ACTIONS(277), + [anon_sym_while] = ACTIONS(287), + [anon_sym_do] = ACTIONS(289), + [anon_sym_if] = ACTIONS(291), + [anon_sym_else] = ACTIONS(277), + [anon_sym_match] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_RBRACE] = ACTIONS(345), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(297), + [anon_sym_catch] = ACTIONS(277), + [anon_sym_return] = ACTIONS(299), + [anon_sym_source] = ACTIONS(301), + [anon_sym_source_DASHenv] = ACTIONS(301), + [anon_sym_register] = ACTIONS(303), + [anon_sym_hide] = ACTIONS(305), + [anon_sym_hide_DASHenv] = ACTIONS(307), + [anon_sym_overlay] = ACTIONS(309), + [anon_sym_new] = ACTIONS(277), + [anon_sym_as] = ACTIONS(277), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(219), + [aux_sym__val_number_decimal_token2] = ACTIONS(221), + [aux_sym__val_number_decimal_token3] = ACTIONS(223), + [aux_sym__val_number_decimal_token4] = ACTIONS(225), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [19] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7601), - [sym_cmd_identifier] = STATE(4554), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym_parameter_pipes] = STATE(135), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1847), - [sym__spread_parenthesized] = STATE(567), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym__spread_variable] = STATE(571), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2222), - [sym__val_number_decimal] = STATE(1436), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(2222), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym__spread_record] = STATE(567), - [sym_record_body] = STATE(7638), - [sym_record_entry] = STATE(6911), - [sym__record_key] = STATE(7516), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7980), + [sym_cmd_identifier] = STATE(4656), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym_parameter_pipes] = STATE(136), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1913), + [sym__spread_parenthesized] = STATE(7465), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym__spread_variable] = STATE(7436), + [sym_val_variable] = STATE(1323), + [sym_val_number] = STATE(2300), + [sym__val_number_decimal] = STATE(1584), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(2300), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym__spread_record] = STATE(7465), + [sym_record_body] = STATE(7717), + [sym_record_entry] = STATE(6808), + [sym__record_key] = STATE(7872), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(19), - [aux_sym_shebang_repeat1] = STATE(34), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_shebang_repeat1] = STATE(36), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [aux_sym_record_body_repeat1] = STATE(210), - [anon_sym_export] = ACTIONS(249), - [anon_sym_alias] = ACTIONS(251), - [anon_sym_let] = ACTIONS(253), - [anon_sym_let_DASHenv] = ACTIONS(253), - [anon_sym_mut] = ACTIONS(255), - [anon_sym_const] = ACTIONS(257), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(133), - [aux_sym_cmd_identifier_token3] = ACTIONS(133), - [aux_sym_cmd_identifier_token4] = ACTIONS(133), - [aux_sym_cmd_identifier_token5] = ACTIONS(133), - [aux_sym_cmd_identifier_token6] = ACTIONS(133), - [aux_sym_cmd_identifier_token7] = ACTIONS(133), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(133), - [aux_sym_cmd_identifier_token11] = ACTIONS(133), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(133), - [aux_sym_cmd_identifier_token17] = ACTIONS(133), - [aux_sym_cmd_identifier_token18] = ACTIONS(133), - [aux_sym_cmd_identifier_token19] = ACTIONS(133), - [aux_sym_cmd_identifier_token20] = ACTIONS(133), - [aux_sym_cmd_identifier_token21] = ACTIONS(133), - [aux_sym_cmd_identifier_token22] = ACTIONS(133), - [aux_sym_cmd_identifier_token23] = ACTIONS(133), - [aux_sym_cmd_identifier_token24] = ACTIONS(133), - [aux_sym_cmd_identifier_token25] = ACTIONS(133), - [aux_sym_cmd_identifier_token26] = ACTIONS(133), - [aux_sym_cmd_identifier_token27] = ACTIONS(133), - [aux_sym_cmd_identifier_token28] = ACTIONS(133), - [aux_sym_cmd_identifier_token29] = ACTIONS(133), - [aux_sym_cmd_identifier_token30] = ACTIONS(133), - [aux_sym_cmd_identifier_token31] = ACTIONS(133), - [aux_sym_cmd_identifier_token32] = ACTIONS(133), - [aux_sym_cmd_identifier_token33] = ACTIONS(133), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(133), - [aux_sym_cmd_identifier_token36] = ACTIONS(133), - [anon_sym_true] = ACTIONS(135), - [anon_sym_false] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(139), - [aux_sym_cmd_identifier_token39] = ACTIONS(141), - [aux_sym_cmd_identifier_token40] = ACTIONS(141), - [sym__newline] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(259), - [anon_sym_export_DASHenv] = ACTIONS(261), - [anon_sym_extern] = ACTIONS(263), - [anon_sym_module] = ACTIONS(265), - [anon_sym_use] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(269), - [anon_sym_error] = ACTIONS(271), - [anon_sym_list] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(169), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(273), - [anon_sym_loop] = ACTIONS(281), - [anon_sym_make] = ACTIONS(273), - [anon_sym_while] = ACTIONS(283), - [anon_sym_do] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), - [anon_sym_else] = ACTIONS(273), - [anon_sym_match] = ACTIONS(289), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(343), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(293), - [anon_sym_catch] = ACTIONS(273), - [anon_sym_return] = ACTIONS(295), - [anon_sym_source] = ACTIONS(297), - [anon_sym_source_DASHenv] = ACTIONS(297), - [anon_sym_register] = ACTIONS(299), - [anon_sym_hide] = ACTIONS(301), - [anon_sym_hide_DASHenv] = ACTIONS(303), - [anon_sym_overlay] = ACTIONS(305), - [anon_sym_new] = ACTIONS(273), - [anon_sym_as] = ACTIONS(273), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(243), + [aux_sym_pipe_element_repeat2] = STATE(361), + [aux_sym_record_body_repeat1] = STATE(211), + [anon_sym_export] = ACTIONS(253), + [anon_sym_alias] = ACTIONS(255), + [anon_sym_let] = ACTIONS(257), + [anon_sym_let_DASHenv] = ACTIONS(257), + [anon_sym_mut] = ACTIONS(259), + [anon_sym_const] = ACTIONS(261), + [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(135), + [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [aux_sym_cmd_identifier_token12] = ACTIONS(135), + [aux_sym_cmd_identifier_token13] = ACTIONS(135), + [aux_sym_cmd_identifier_token14] = ACTIONS(135), + [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [aux_sym_cmd_identifier_token16] = ACTIONS(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(135), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(135), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [anon_sym_true] = ACTIONS(137), + [anon_sym_false] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(141), + [aux_sym_cmd_identifier_token39] = ACTIONS(143), + [aux_sym_cmd_identifier_token40] = ACTIONS(143), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_def] = ACTIONS(263), + [anon_sym_export_DASHenv] = ACTIONS(265), + [anon_sym_extern] = ACTIONS(267), + [anon_sym_module] = ACTIONS(269), + [anon_sym_use] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(163), + [anon_sym_DOLLAR] = ACTIONS(273), + [anon_sym_error] = ACTIONS(275), + [anon_sym_list] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_for] = ACTIONS(283), + [anon_sym_in] = ACTIONS(277), + [anon_sym_loop] = ACTIONS(285), + [anon_sym_make] = ACTIONS(277), + [anon_sym_while] = ACTIONS(287), + [anon_sym_do] = ACTIONS(289), + [anon_sym_if] = ACTIONS(291), + [anon_sym_else] = ACTIONS(277), + [anon_sym_match] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_RBRACE] = ACTIONS(347), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(297), + [anon_sym_catch] = ACTIONS(277), + [anon_sym_return] = ACTIONS(299), + [anon_sym_source] = ACTIONS(301), + [anon_sym_source_DASHenv] = ACTIONS(301), + [anon_sym_register] = ACTIONS(303), + [anon_sym_hide] = ACTIONS(305), + [anon_sym_hide_DASHenv] = ACTIONS(307), + [anon_sym_overlay] = ACTIONS(309), + [anon_sym_new] = ACTIONS(277), + [anon_sym_as] = ACTIONS(277), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(219), + [aux_sym__val_number_decimal_token2] = ACTIONS(221), + [aux_sym__val_number_decimal_token3] = ACTIONS(223), + [aux_sym__val_number_decimal_token4] = ACTIONS(225), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [20] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7566), - [sym_cmd_identifier] = STATE(4554), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym_parameter_pipes] = STATE(116), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1847), - [sym__spread_parenthesized] = STATE(567), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym__spread_variable] = STATE(571), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2222), - [sym__val_number_decimal] = STATE(1436), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(2222), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym__spread_record] = STATE(567), - [sym_record_body] = STATE(7522), - [sym_record_entry] = STATE(6911), - [sym__record_key] = STATE(7516), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7779), + [sym_cmd_identifier] = STATE(4656), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym_parameter_pipes] = STATE(146), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1913), + [sym__spread_parenthesized] = STATE(7465), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym__spread_variable] = STATE(7436), + [sym_val_variable] = STATE(1323), + [sym_val_number] = STATE(2300), + [sym__val_number_decimal] = STATE(1584), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(2300), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym__spread_record] = STATE(7465), + [sym_record_body] = STATE(7903), + [sym_record_entry] = STATE(6808), + [sym__record_key] = STATE(7872), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(20), - [aux_sym_shebang_repeat1] = STATE(32), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_shebang_repeat1] = STATE(37), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [aux_sym_record_body_repeat1] = STATE(210), - [anon_sym_export] = ACTIONS(249), - [anon_sym_alias] = ACTIONS(251), - [anon_sym_let] = ACTIONS(253), - [anon_sym_let_DASHenv] = ACTIONS(253), - [anon_sym_mut] = ACTIONS(255), - [anon_sym_const] = ACTIONS(257), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(133), - [aux_sym_cmd_identifier_token3] = ACTIONS(133), - [aux_sym_cmd_identifier_token4] = ACTIONS(133), - [aux_sym_cmd_identifier_token5] = ACTIONS(133), - [aux_sym_cmd_identifier_token6] = ACTIONS(133), - [aux_sym_cmd_identifier_token7] = ACTIONS(133), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(133), - [aux_sym_cmd_identifier_token11] = ACTIONS(133), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(133), - [aux_sym_cmd_identifier_token17] = ACTIONS(133), - [aux_sym_cmd_identifier_token18] = ACTIONS(133), - [aux_sym_cmd_identifier_token19] = ACTIONS(133), - [aux_sym_cmd_identifier_token20] = ACTIONS(133), - [aux_sym_cmd_identifier_token21] = ACTIONS(133), - [aux_sym_cmd_identifier_token22] = ACTIONS(133), - [aux_sym_cmd_identifier_token23] = ACTIONS(133), - [aux_sym_cmd_identifier_token24] = ACTIONS(133), - [aux_sym_cmd_identifier_token25] = ACTIONS(133), - [aux_sym_cmd_identifier_token26] = ACTIONS(133), - [aux_sym_cmd_identifier_token27] = ACTIONS(133), - [aux_sym_cmd_identifier_token28] = ACTIONS(133), - [aux_sym_cmd_identifier_token29] = ACTIONS(133), - [aux_sym_cmd_identifier_token30] = ACTIONS(133), - [aux_sym_cmd_identifier_token31] = ACTIONS(133), - [aux_sym_cmd_identifier_token32] = ACTIONS(133), - [aux_sym_cmd_identifier_token33] = ACTIONS(133), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(133), - [aux_sym_cmd_identifier_token36] = ACTIONS(133), - [anon_sym_true] = ACTIONS(135), - [anon_sym_false] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(139), - [aux_sym_cmd_identifier_token39] = ACTIONS(141), - [aux_sym_cmd_identifier_token40] = ACTIONS(141), - [sym__newline] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(259), - [anon_sym_export_DASHenv] = ACTIONS(261), - [anon_sym_extern] = ACTIONS(263), - [anon_sym_module] = ACTIONS(265), - [anon_sym_use] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(269), - [anon_sym_error] = ACTIONS(271), - [anon_sym_list] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(169), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(273), - [anon_sym_loop] = ACTIONS(281), - [anon_sym_make] = ACTIONS(273), - [anon_sym_while] = ACTIONS(283), - [anon_sym_do] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), - [anon_sym_else] = ACTIONS(273), - [anon_sym_match] = ACTIONS(289), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(345), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(293), - [anon_sym_catch] = ACTIONS(273), - [anon_sym_return] = ACTIONS(295), - [anon_sym_source] = ACTIONS(297), - [anon_sym_source_DASHenv] = ACTIONS(297), - [anon_sym_register] = ACTIONS(299), - [anon_sym_hide] = ACTIONS(301), - [anon_sym_hide_DASHenv] = ACTIONS(303), - [anon_sym_overlay] = ACTIONS(305), - [anon_sym_new] = ACTIONS(273), - [anon_sym_as] = ACTIONS(273), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(243), + [aux_sym_pipe_element_repeat2] = STATE(361), + [aux_sym_record_body_repeat1] = STATE(211), + [anon_sym_export] = ACTIONS(253), + [anon_sym_alias] = ACTIONS(255), + [anon_sym_let] = ACTIONS(257), + [anon_sym_let_DASHenv] = ACTIONS(257), + [anon_sym_mut] = ACTIONS(259), + [anon_sym_const] = ACTIONS(261), + [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(135), + [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [aux_sym_cmd_identifier_token12] = ACTIONS(135), + [aux_sym_cmd_identifier_token13] = ACTIONS(135), + [aux_sym_cmd_identifier_token14] = ACTIONS(135), + [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [aux_sym_cmd_identifier_token16] = ACTIONS(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(135), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(135), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [anon_sym_true] = ACTIONS(137), + [anon_sym_false] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(141), + [aux_sym_cmd_identifier_token39] = ACTIONS(143), + [aux_sym_cmd_identifier_token40] = ACTIONS(143), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_def] = ACTIONS(263), + [anon_sym_export_DASHenv] = ACTIONS(265), + [anon_sym_extern] = ACTIONS(267), + [anon_sym_module] = ACTIONS(269), + [anon_sym_use] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(163), + [anon_sym_DOLLAR] = ACTIONS(273), + [anon_sym_error] = ACTIONS(275), + [anon_sym_list] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_for] = ACTIONS(283), + [anon_sym_in] = ACTIONS(277), + [anon_sym_loop] = ACTIONS(285), + [anon_sym_make] = ACTIONS(277), + [anon_sym_while] = ACTIONS(287), + [anon_sym_do] = ACTIONS(289), + [anon_sym_if] = ACTIONS(291), + [anon_sym_else] = ACTIONS(277), + [anon_sym_match] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_RBRACE] = ACTIONS(349), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(297), + [anon_sym_catch] = ACTIONS(277), + [anon_sym_return] = ACTIONS(299), + [anon_sym_source] = ACTIONS(301), + [anon_sym_source_DASHenv] = ACTIONS(301), + [anon_sym_register] = ACTIONS(303), + [anon_sym_hide] = ACTIONS(305), + [anon_sym_hide_DASHenv] = ACTIONS(307), + [anon_sym_overlay] = ACTIONS(309), + [anon_sym_new] = ACTIONS(277), + [anon_sym_as] = ACTIONS(277), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(219), + [aux_sym__val_number_decimal_token2] = ACTIONS(221), + [aux_sym__val_number_decimal_token3] = ACTIONS(223), + [aux_sym__val_number_decimal_token4] = ACTIONS(225), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [21] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7523), - [sym_cmd_identifier] = STATE(4554), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym_parameter_pipes] = STATE(146), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1847), - [sym__spread_parenthesized] = STATE(567), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym__spread_variable] = STATE(571), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2222), - [sym__val_number_decimal] = STATE(1436), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(2222), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym__spread_record] = STATE(567), - [sym_record_body] = STATE(7555), - [sym_record_entry] = STATE(6911), - [sym__record_key] = STATE(7516), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7943), + [sym_cmd_identifier] = STATE(4656), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym_parameter_pipes] = STATE(148), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1913), + [sym__spread_parenthesized] = STATE(7465), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym__spread_variable] = STATE(7436), + [sym_val_variable] = STATE(1323), + [sym_val_number] = STATE(2300), + [sym__val_number_decimal] = STATE(1584), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(2300), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym__spread_record] = STATE(7465), + [sym_record_body] = STATE(7649), + [sym_record_entry] = STATE(6808), + [sym__record_key] = STATE(7872), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(21), - [aux_sym_shebang_repeat1] = STATE(37), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_shebang_repeat1] = STATE(38), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [aux_sym_record_body_repeat1] = STATE(210), - [anon_sym_export] = ACTIONS(249), - [anon_sym_alias] = ACTIONS(251), - [anon_sym_let] = ACTIONS(253), - [anon_sym_let_DASHenv] = ACTIONS(253), - [anon_sym_mut] = ACTIONS(255), - [anon_sym_const] = ACTIONS(257), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(133), - [aux_sym_cmd_identifier_token3] = ACTIONS(133), - [aux_sym_cmd_identifier_token4] = ACTIONS(133), - [aux_sym_cmd_identifier_token5] = ACTIONS(133), - [aux_sym_cmd_identifier_token6] = ACTIONS(133), - [aux_sym_cmd_identifier_token7] = ACTIONS(133), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(133), - [aux_sym_cmd_identifier_token11] = ACTIONS(133), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(133), - [aux_sym_cmd_identifier_token17] = ACTIONS(133), - [aux_sym_cmd_identifier_token18] = ACTIONS(133), - [aux_sym_cmd_identifier_token19] = ACTIONS(133), - [aux_sym_cmd_identifier_token20] = ACTIONS(133), - [aux_sym_cmd_identifier_token21] = ACTIONS(133), - [aux_sym_cmd_identifier_token22] = ACTIONS(133), - [aux_sym_cmd_identifier_token23] = ACTIONS(133), - [aux_sym_cmd_identifier_token24] = ACTIONS(133), - [aux_sym_cmd_identifier_token25] = ACTIONS(133), - [aux_sym_cmd_identifier_token26] = ACTIONS(133), - [aux_sym_cmd_identifier_token27] = ACTIONS(133), - [aux_sym_cmd_identifier_token28] = ACTIONS(133), - [aux_sym_cmd_identifier_token29] = ACTIONS(133), - [aux_sym_cmd_identifier_token30] = ACTIONS(133), - [aux_sym_cmd_identifier_token31] = ACTIONS(133), - [aux_sym_cmd_identifier_token32] = ACTIONS(133), - [aux_sym_cmd_identifier_token33] = ACTIONS(133), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(133), - [aux_sym_cmd_identifier_token36] = ACTIONS(133), - [anon_sym_true] = ACTIONS(135), - [anon_sym_false] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(139), - [aux_sym_cmd_identifier_token39] = ACTIONS(141), - [aux_sym_cmd_identifier_token40] = ACTIONS(141), - [sym__newline] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(259), - [anon_sym_export_DASHenv] = ACTIONS(261), - [anon_sym_extern] = ACTIONS(263), - [anon_sym_module] = ACTIONS(265), - [anon_sym_use] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(269), - [anon_sym_error] = ACTIONS(271), - [anon_sym_list] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(169), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(273), - [anon_sym_loop] = ACTIONS(281), - [anon_sym_make] = ACTIONS(273), - [anon_sym_while] = ACTIONS(283), - [anon_sym_do] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), - [anon_sym_else] = ACTIONS(273), - [anon_sym_match] = ACTIONS(289), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(347), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(293), - [anon_sym_catch] = ACTIONS(273), - [anon_sym_return] = ACTIONS(295), - [anon_sym_source] = ACTIONS(297), - [anon_sym_source_DASHenv] = ACTIONS(297), - [anon_sym_register] = ACTIONS(299), - [anon_sym_hide] = ACTIONS(301), - [anon_sym_hide_DASHenv] = ACTIONS(303), - [anon_sym_overlay] = ACTIONS(305), - [anon_sym_new] = ACTIONS(273), - [anon_sym_as] = ACTIONS(273), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(243), + [aux_sym_pipe_element_repeat2] = STATE(361), + [aux_sym_record_body_repeat1] = STATE(211), + [anon_sym_export] = ACTIONS(253), + [anon_sym_alias] = ACTIONS(255), + [anon_sym_let] = ACTIONS(257), + [anon_sym_let_DASHenv] = ACTIONS(257), + [anon_sym_mut] = ACTIONS(259), + [anon_sym_const] = ACTIONS(261), + [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(135), + [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [aux_sym_cmd_identifier_token12] = ACTIONS(135), + [aux_sym_cmd_identifier_token13] = ACTIONS(135), + [aux_sym_cmd_identifier_token14] = ACTIONS(135), + [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [aux_sym_cmd_identifier_token16] = ACTIONS(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(135), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(135), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [anon_sym_true] = ACTIONS(137), + [anon_sym_false] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(141), + [aux_sym_cmd_identifier_token39] = ACTIONS(143), + [aux_sym_cmd_identifier_token40] = ACTIONS(143), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_def] = ACTIONS(263), + [anon_sym_export_DASHenv] = ACTIONS(265), + [anon_sym_extern] = ACTIONS(267), + [anon_sym_module] = ACTIONS(269), + [anon_sym_use] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(163), + [anon_sym_DOLLAR] = ACTIONS(273), + [anon_sym_error] = ACTIONS(275), + [anon_sym_list] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_for] = ACTIONS(283), + [anon_sym_in] = ACTIONS(277), + [anon_sym_loop] = ACTIONS(285), + [anon_sym_make] = ACTIONS(277), + [anon_sym_while] = ACTIONS(287), + [anon_sym_do] = ACTIONS(289), + [anon_sym_if] = ACTIONS(291), + [anon_sym_else] = ACTIONS(277), + [anon_sym_match] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_RBRACE] = ACTIONS(351), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(297), + [anon_sym_catch] = ACTIONS(277), + [anon_sym_return] = ACTIONS(299), + [anon_sym_source] = ACTIONS(301), + [anon_sym_source_DASHenv] = ACTIONS(301), + [anon_sym_register] = ACTIONS(303), + [anon_sym_hide] = ACTIONS(305), + [anon_sym_hide_DASHenv] = ACTIONS(307), + [anon_sym_overlay] = ACTIONS(309), + [anon_sym_new] = ACTIONS(277), + [anon_sym_as] = ACTIONS(277), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(219), + [aux_sym__val_number_decimal_token2] = ACTIONS(221), + [aux_sym__val_number_decimal_token3] = ACTIONS(223), + [aux_sym__val_number_decimal_token4] = ACTIONS(225), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [22] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7588), - [sym_cmd_identifier] = STATE(4554), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym_parameter_pipes] = STATE(143), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1847), - [sym__spread_parenthesized] = STATE(567), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym__spread_variable] = STATE(571), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2222), - [sym__val_number_decimal] = STATE(1436), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(2222), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym__spread_record] = STATE(567), - [sym_record_body] = STATE(7429), - [sym_record_entry] = STATE(6911), - [sym__record_key] = STATE(7516), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7889), + [sym_cmd_identifier] = STATE(4656), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym_parameter_pipes] = STATE(116), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1913), + [sym__spread_parenthesized] = STATE(7465), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym__spread_variable] = STATE(7436), + [sym_val_variable] = STATE(1323), + [sym_val_number] = STATE(2300), + [sym__val_number_decimal] = STATE(1584), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(2300), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym__spread_record] = STATE(7465), + [sym_record_body] = STATE(7743), + [sym_record_entry] = STATE(6808), + [sym__record_key] = STATE(7872), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(22), - [aux_sym_shebang_repeat1] = STATE(36), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_shebang_repeat1] = STATE(26), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [aux_sym_record_body_repeat1] = STATE(210), - [anon_sym_export] = ACTIONS(249), - [anon_sym_alias] = ACTIONS(251), - [anon_sym_let] = ACTIONS(253), - [anon_sym_let_DASHenv] = ACTIONS(253), - [anon_sym_mut] = ACTIONS(255), - [anon_sym_const] = ACTIONS(257), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(133), - [aux_sym_cmd_identifier_token3] = ACTIONS(133), - [aux_sym_cmd_identifier_token4] = ACTIONS(133), - [aux_sym_cmd_identifier_token5] = ACTIONS(133), - [aux_sym_cmd_identifier_token6] = ACTIONS(133), - [aux_sym_cmd_identifier_token7] = ACTIONS(133), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(133), - [aux_sym_cmd_identifier_token11] = ACTIONS(133), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(133), - [aux_sym_cmd_identifier_token17] = ACTIONS(133), - [aux_sym_cmd_identifier_token18] = ACTIONS(133), - [aux_sym_cmd_identifier_token19] = ACTIONS(133), - [aux_sym_cmd_identifier_token20] = ACTIONS(133), - [aux_sym_cmd_identifier_token21] = ACTIONS(133), - [aux_sym_cmd_identifier_token22] = ACTIONS(133), - [aux_sym_cmd_identifier_token23] = ACTIONS(133), - [aux_sym_cmd_identifier_token24] = ACTIONS(133), - [aux_sym_cmd_identifier_token25] = ACTIONS(133), - [aux_sym_cmd_identifier_token26] = ACTIONS(133), - [aux_sym_cmd_identifier_token27] = ACTIONS(133), - [aux_sym_cmd_identifier_token28] = ACTIONS(133), - [aux_sym_cmd_identifier_token29] = ACTIONS(133), - [aux_sym_cmd_identifier_token30] = ACTIONS(133), - [aux_sym_cmd_identifier_token31] = ACTIONS(133), - [aux_sym_cmd_identifier_token32] = ACTIONS(133), - [aux_sym_cmd_identifier_token33] = ACTIONS(133), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(133), - [aux_sym_cmd_identifier_token36] = ACTIONS(133), - [anon_sym_true] = ACTIONS(135), - [anon_sym_false] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(139), - [aux_sym_cmd_identifier_token39] = ACTIONS(141), - [aux_sym_cmd_identifier_token40] = ACTIONS(141), - [sym__newline] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(259), - [anon_sym_export_DASHenv] = ACTIONS(261), - [anon_sym_extern] = ACTIONS(263), - [anon_sym_module] = ACTIONS(265), - [anon_sym_use] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(269), - [anon_sym_error] = ACTIONS(271), - [anon_sym_list] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(169), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(273), - [anon_sym_loop] = ACTIONS(281), - [anon_sym_make] = ACTIONS(273), - [anon_sym_while] = ACTIONS(283), - [anon_sym_do] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), - [anon_sym_else] = ACTIONS(273), - [anon_sym_match] = ACTIONS(289), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(349), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(293), - [anon_sym_catch] = ACTIONS(273), - [anon_sym_return] = ACTIONS(295), - [anon_sym_source] = ACTIONS(297), - [anon_sym_source_DASHenv] = ACTIONS(297), - [anon_sym_register] = ACTIONS(299), - [anon_sym_hide] = ACTIONS(301), - [anon_sym_hide_DASHenv] = ACTIONS(303), - [anon_sym_overlay] = ACTIONS(305), - [anon_sym_new] = ACTIONS(273), - [anon_sym_as] = ACTIONS(273), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(243), + [aux_sym_pipe_element_repeat2] = STATE(361), + [aux_sym_record_body_repeat1] = STATE(211), + [anon_sym_export] = ACTIONS(253), + [anon_sym_alias] = ACTIONS(255), + [anon_sym_let] = ACTIONS(257), + [anon_sym_let_DASHenv] = ACTIONS(257), + [anon_sym_mut] = ACTIONS(259), + [anon_sym_const] = ACTIONS(261), + [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(135), + [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [aux_sym_cmd_identifier_token12] = ACTIONS(135), + [aux_sym_cmd_identifier_token13] = ACTIONS(135), + [aux_sym_cmd_identifier_token14] = ACTIONS(135), + [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [aux_sym_cmd_identifier_token16] = ACTIONS(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(135), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(135), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [anon_sym_true] = ACTIONS(137), + [anon_sym_false] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(141), + [aux_sym_cmd_identifier_token39] = ACTIONS(143), + [aux_sym_cmd_identifier_token40] = ACTIONS(143), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_def] = ACTIONS(263), + [anon_sym_export_DASHenv] = ACTIONS(265), + [anon_sym_extern] = ACTIONS(267), + [anon_sym_module] = ACTIONS(269), + [anon_sym_use] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(163), + [anon_sym_DOLLAR] = ACTIONS(273), + [anon_sym_error] = ACTIONS(275), + [anon_sym_list] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_for] = ACTIONS(283), + [anon_sym_in] = ACTIONS(277), + [anon_sym_loop] = ACTIONS(285), + [anon_sym_make] = ACTIONS(277), + [anon_sym_while] = ACTIONS(287), + [anon_sym_do] = ACTIONS(289), + [anon_sym_if] = ACTIONS(291), + [anon_sym_else] = ACTIONS(277), + [anon_sym_match] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_RBRACE] = ACTIONS(353), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(297), + [anon_sym_catch] = ACTIONS(277), + [anon_sym_return] = ACTIONS(299), + [anon_sym_source] = ACTIONS(301), + [anon_sym_source_DASHenv] = ACTIONS(301), + [anon_sym_register] = ACTIONS(303), + [anon_sym_hide] = ACTIONS(305), + [anon_sym_hide_DASHenv] = ACTIONS(307), + [anon_sym_overlay] = ACTIONS(309), + [anon_sym_new] = ACTIONS(277), + [anon_sym_as] = ACTIONS(277), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(219), + [aux_sym__val_number_decimal_token2] = ACTIONS(221), + [aux_sym__val_number_decimal_token3] = ACTIONS(223), + [aux_sym__val_number_decimal_token4] = ACTIONS(225), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [23] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7634), - [sym_cmd_identifier] = STATE(4554), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym_parameter_pipes] = STATE(148), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1847), - [sym__spread_parenthesized] = STATE(567), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym__spread_variable] = STATE(571), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2222), - [sym__val_number_decimal] = STATE(1436), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(2222), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym__spread_record] = STATE(567), - [sym_record_body] = STATE(7478), - [sym_record_entry] = STATE(6911), - [sym__record_key] = STATE(7516), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7674), + [sym_cmd_identifier] = STATE(4656), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym_parameter_pipes] = STATE(150), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1913), + [sym__spread_parenthesized] = STATE(7465), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym__spread_variable] = STATE(7436), + [sym_val_variable] = STATE(1323), + [sym_val_number] = STATE(2300), + [sym__val_number_decimal] = STATE(1584), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(2300), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym__spread_record] = STATE(7465), + [sym_record_body] = STATE(7812), + [sym_record_entry] = STATE(6808), + [sym__record_key] = STATE(7872), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(23), - [aux_sym_shebang_repeat1] = STATE(38), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_shebang_repeat1] = STATE(39), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [aux_sym_record_body_repeat1] = STATE(210), - [anon_sym_export] = ACTIONS(249), - [anon_sym_alias] = ACTIONS(251), - [anon_sym_let] = ACTIONS(253), - [anon_sym_let_DASHenv] = ACTIONS(253), - [anon_sym_mut] = ACTIONS(255), - [anon_sym_const] = ACTIONS(257), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(133), - [aux_sym_cmd_identifier_token3] = ACTIONS(133), - [aux_sym_cmd_identifier_token4] = ACTIONS(133), - [aux_sym_cmd_identifier_token5] = ACTIONS(133), - [aux_sym_cmd_identifier_token6] = ACTIONS(133), - [aux_sym_cmd_identifier_token7] = ACTIONS(133), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(133), - [aux_sym_cmd_identifier_token11] = ACTIONS(133), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(133), - [aux_sym_cmd_identifier_token17] = ACTIONS(133), - [aux_sym_cmd_identifier_token18] = ACTIONS(133), - [aux_sym_cmd_identifier_token19] = ACTIONS(133), - [aux_sym_cmd_identifier_token20] = ACTIONS(133), - [aux_sym_cmd_identifier_token21] = ACTIONS(133), - [aux_sym_cmd_identifier_token22] = ACTIONS(133), - [aux_sym_cmd_identifier_token23] = ACTIONS(133), - [aux_sym_cmd_identifier_token24] = ACTIONS(133), - [aux_sym_cmd_identifier_token25] = ACTIONS(133), - [aux_sym_cmd_identifier_token26] = ACTIONS(133), - [aux_sym_cmd_identifier_token27] = ACTIONS(133), - [aux_sym_cmd_identifier_token28] = ACTIONS(133), - [aux_sym_cmd_identifier_token29] = ACTIONS(133), - [aux_sym_cmd_identifier_token30] = ACTIONS(133), - [aux_sym_cmd_identifier_token31] = ACTIONS(133), - [aux_sym_cmd_identifier_token32] = ACTIONS(133), - [aux_sym_cmd_identifier_token33] = ACTIONS(133), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(133), - [aux_sym_cmd_identifier_token36] = ACTIONS(133), - [anon_sym_true] = ACTIONS(135), - [anon_sym_false] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(139), - [aux_sym_cmd_identifier_token39] = ACTIONS(141), - [aux_sym_cmd_identifier_token40] = ACTIONS(141), - [sym__newline] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(259), - [anon_sym_export_DASHenv] = ACTIONS(261), - [anon_sym_extern] = ACTIONS(263), - [anon_sym_module] = ACTIONS(265), - [anon_sym_use] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(269), - [anon_sym_error] = ACTIONS(271), - [anon_sym_list] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(169), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(273), - [anon_sym_loop] = ACTIONS(281), - [anon_sym_make] = ACTIONS(273), - [anon_sym_while] = ACTIONS(283), - [anon_sym_do] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), - [anon_sym_else] = ACTIONS(273), - [anon_sym_match] = ACTIONS(289), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(351), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(293), - [anon_sym_catch] = ACTIONS(273), - [anon_sym_return] = ACTIONS(295), - [anon_sym_source] = ACTIONS(297), - [anon_sym_source_DASHenv] = ACTIONS(297), - [anon_sym_register] = ACTIONS(299), - [anon_sym_hide] = ACTIONS(301), - [anon_sym_hide_DASHenv] = ACTIONS(303), - [anon_sym_overlay] = ACTIONS(305), - [anon_sym_new] = ACTIONS(273), - [anon_sym_as] = ACTIONS(273), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(243), + [aux_sym_pipe_element_repeat2] = STATE(361), + [aux_sym_record_body_repeat1] = STATE(211), + [anon_sym_export] = ACTIONS(253), + [anon_sym_alias] = ACTIONS(255), + [anon_sym_let] = ACTIONS(257), + [anon_sym_let_DASHenv] = ACTIONS(257), + [anon_sym_mut] = ACTIONS(259), + [anon_sym_const] = ACTIONS(261), + [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(135), + [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [aux_sym_cmd_identifier_token12] = ACTIONS(135), + [aux_sym_cmd_identifier_token13] = ACTIONS(135), + [aux_sym_cmd_identifier_token14] = ACTIONS(135), + [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [aux_sym_cmd_identifier_token16] = ACTIONS(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(135), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(135), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [anon_sym_true] = ACTIONS(137), + [anon_sym_false] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(141), + [aux_sym_cmd_identifier_token39] = ACTIONS(143), + [aux_sym_cmd_identifier_token40] = ACTIONS(143), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_def] = ACTIONS(263), + [anon_sym_export_DASHenv] = ACTIONS(265), + [anon_sym_extern] = ACTIONS(267), + [anon_sym_module] = ACTIONS(269), + [anon_sym_use] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(163), + [anon_sym_DOLLAR] = ACTIONS(273), + [anon_sym_error] = ACTIONS(275), + [anon_sym_list] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_for] = ACTIONS(283), + [anon_sym_in] = ACTIONS(277), + [anon_sym_loop] = ACTIONS(285), + [anon_sym_make] = ACTIONS(277), + [anon_sym_while] = ACTIONS(287), + [anon_sym_do] = ACTIONS(289), + [anon_sym_if] = ACTIONS(291), + [anon_sym_else] = ACTIONS(277), + [anon_sym_match] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_RBRACE] = ACTIONS(355), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(297), + [anon_sym_catch] = ACTIONS(277), + [anon_sym_return] = ACTIONS(299), + [anon_sym_source] = ACTIONS(301), + [anon_sym_source_DASHenv] = ACTIONS(301), + [anon_sym_register] = ACTIONS(303), + [anon_sym_hide] = ACTIONS(305), + [anon_sym_hide_DASHenv] = ACTIONS(307), + [anon_sym_overlay] = ACTIONS(309), + [anon_sym_new] = ACTIONS(277), + [anon_sym_as] = ACTIONS(277), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(219), + [aux_sym__val_number_decimal_token2] = ACTIONS(221), + [aux_sym__val_number_decimal_token3] = ACTIONS(223), + [aux_sym__val_number_decimal_token4] = ACTIONS(225), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [24] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7502), - [sym_cmd_identifier] = STATE(4554), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym_parameter_pipes] = STATE(150), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1847), - [sym__spread_parenthesized] = STATE(567), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym__spread_variable] = STATE(571), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2222), - [sym__val_number_decimal] = STATE(1436), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(2222), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym__spread_record] = STATE(567), - [sym_record_body] = STATE(7528), - [sym_record_entry] = STATE(6911), - [sym__record_key] = STATE(7516), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7901), + [sym_cmd_identifier] = STATE(4656), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym_parameter_pipes] = STATE(152), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1913), + [sym__spread_parenthesized] = STATE(7465), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym__spread_variable] = STATE(7436), + [sym_val_variable] = STATE(1323), + [sym_val_number] = STATE(2300), + [sym__val_number_decimal] = STATE(1584), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(2300), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym__spread_record] = STATE(7465), + [sym_record_body] = STATE(7874), + [sym_record_entry] = STATE(6808), + [sym__record_key] = STATE(7872), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(24), - [aux_sym_shebang_repeat1] = STATE(39), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_shebang_repeat1] = STATE(40), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [aux_sym_record_body_repeat1] = STATE(210), - [anon_sym_export] = ACTIONS(249), - [anon_sym_alias] = ACTIONS(251), - [anon_sym_let] = ACTIONS(253), - [anon_sym_let_DASHenv] = ACTIONS(253), - [anon_sym_mut] = ACTIONS(255), - [anon_sym_const] = ACTIONS(257), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(133), - [aux_sym_cmd_identifier_token3] = ACTIONS(133), - [aux_sym_cmd_identifier_token4] = ACTIONS(133), - [aux_sym_cmd_identifier_token5] = ACTIONS(133), - [aux_sym_cmd_identifier_token6] = ACTIONS(133), - [aux_sym_cmd_identifier_token7] = ACTIONS(133), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(133), - [aux_sym_cmd_identifier_token11] = ACTIONS(133), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(133), - [aux_sym_cmd_identifier_token17] = ACTIONS(133), - [aux_sym_cmd_identifier_token18] = ACTIONS(133), - [aux_sym_cmd_identifier_token19] = ACTIONS(133), - [aux_sym_cmd_identifier_token20] = ACTIONS(133), - [aux_sym_cmd_identifier_token21] = ACTIONS(133), - [aux_sym_cmd_identifier_token22] = ACTIONS(133), - [aux_sym_cmd_identifier_token23] = ACTIONS(133), - [aux_sym_cmd_identifier_token24] = ACTIONS(133), - [aux_sym_cmd_identifier_token25] = ACTIONS(133), - [aux_sym_cmd_identifier_token26] = ACTIONS(133), - [aux_sym_cmd_identifier_token27] = ACTIONS(133), - [aux_sym_cmd_identifier_token28] = ACTIONS(133), - [aux_sym_cmd_identifier_token29] = ACTIONS(133), - [aux_sym_cmd_identifier_token30] = ACTIONS(133), - [aux_sym_cmd_identifier_token31] = ACTIONS(133), - [aux_sym_cmd_identifier_token32] = ACTIONS(133), - [aux_sym_cmd_identifier_token33] = ACTIONS(133), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(133), - [aux_sym_cmd_identifier_token36] = ACTIONS(133), - [anon_sym_true] = ACTIONS(135), - [anon_sym_false] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(139), - [aux_sym_cmd_identifier_token39] = ACTIONS(141), - [aux_sym_cmd_identifier_token40] = ACTIONS(141), - [sym__newline] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(259), - [anon_sym_export_DASHenv] = ACTIONS(261), - [anon_sym_extern] = ACTIONS(263), - [anon_sym_module] = ACTIONS(265), - [anon_sym_use] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(269), - [anon_sym_error] = ACTIONS(271), - [anon_sym_list] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(169), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(273), - [anon_sym_loop] = ACTIONS(281), - [anon_sym_make] = ACTIONS(273), - [anon_sym_while] = ACTIONS(283), - [anon_sym_do] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), - [anon_sym_else] = ACTIONS(273), - [anon_sym_match] = ACTIONS(289), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(353), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(293), - [anon_sym_catch] = ACTIONS(273), - [anon_sym_return] = ACTIONS(295), - [anon_sym_source] = ACTIONS(297), - [anon_sym_source_DASHenv] = ACTIONS(297), - [anon_sym_register] = ACTIONS(299), - [anon_sym_hide] = ACTIONS(301), - [anon_sym_hide_DASHenv] = ACTIONS(303), - [anon_sym_overlay] = ACTIONS(305), - [anon_sym_new] = ACTIONS(273), - [anon_sym_as] = ACTIONS(273), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(243), + [aux_sym_pipe_element_repeat2] = STATE(361), + [aux_sym_record_body_repeat1] = STATE(211), + [anon_sym_export] = ACTIONS(253), + [anon_sym_alias] = ACTIONS(255), + [anon_sym_let] = ACTIONS(257), + [anon_sym_let_DASHenv] = ACTIONS(257), + [anon_sym_mut] = ACTIONS(259), + [anon_sym_const] = ACTIONS(261), + [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(135), + [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [aux_sym_cmd_identifier_token12] = ACTIONS(135), + [aux_sym_cmd_identifier_token13] = ACTIONS(135), + [aux_sym_cmd_identifier_token14] = ACTIONS(135), + [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [aux_sym_cmd_identifier_token16] = ACTIONS(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(135), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(135), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [anon_sym_true] = ACTIONS(137), + [anon_sym_false] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(141), + [aux_sym_cmd_identifier_token39] = ACTIONS(143), + [aux_sym_cmd_identifier_token40] = ACTIONS(143), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_def] = ACTIONS(263), + [anon_sym_export_DASHenv] = ACTIONS(265), + [anon_sym_extern] = ACTIONS(267), + [anon_sym_module] = ACTIONS(269), + [anon_sym_use] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(163), + [anon_sym_DOLLAR] = ACTIONS(273), + [anon_sym_error] = ACTIONS(275), + [anon_sym_list] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_for] = ACTIONS(283), + [anon_sym_in] = ACTIONS(277), + [anon_sym_loop] = ACTIONS(285), + [anon_sym_make] = ACTIONS(277), + [anon_sym_while] = ACTIONS(287), + [anon_sym_do] = ACTIONS(289), + [anon_sym_if] = ACTIONS(291), + [anon_sym_else] = ACTIONS(277), + [anon_sym_match] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_RBRACE] = ACTIONS(357), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(297), + [anon_sym_catch] = ACTIONS(277), + [anon_sym_return] = ACTIONS(299), + [anon_sym_source] = ACTIONS(301), + [anon_sym_source_DASHenv] = ACTIONS(301), + [anon_sym_register] = ACTIONS(303), + [anon_sym_hide] = ACTIONS(305), + [anon_sym_hide_DASHenv] = ACTIONS(307), + [anon_sym_overlay] = ACTIONS(309), + [anon_sym_new] = ACTIONS(277), + [anon_sym_as] = ACTIONS(277), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(219), + [aux_sym__val_number_decimal_token2] = ACTIONS(221), + [aux_sym__val_number_decimal_token3] = ACTIONS(223), + [aux_sym__val_number_decimal_token4] = ACTIONS(225), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [25] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7401), - [sym_cmd_identifier] = STATE(4554), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym_parameter_pipes] = STATE(123), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1847), - [sym__spread_parenthesized] = STATE(567), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym__spread_variable] = STATE(571), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2222), - [sym__val_number_decimal] = STATE(1436), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(2222), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym__spread_record] = STATE(567), - [sym_record_body] = STATE(7579), - [sym_record_entry] = STATE(6911), - [sym__record_key] = STATE(7516), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7648), + [sym_cmd_identifier] = STATE(4656), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym_parameter_pipes] = STATE(117), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1913), + [sym__spread_parenthesized] = STATE(7465), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym__spread_variable] = STATE(7436), + [sym_val_variable] = STATE(1323), + [sym_val_number] = STATE(2300), + [sym__val_number_decimal] = STATE(1584), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(2300), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym__spread_record] = STATE(7465), + [sym_record_body] = STATE(7919), + [sym_record_entry] = STATE(6808), + [sym__record_key] = STATE(7872), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(25), - [aux_sym_shebang_repeat1] = STATE(29), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_shebang_repeat1] = STATE(35), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [aux_sym_record_body_repeat1] = STATE(210), - [anon_sym_export] = ACTIONS(249), - [anon_sym_alias] = ACTIONS(251), - [anon_sym_let] = ACTIONS(253), - [anon_sym_let_DASHenv] = ACTIONS(253), - [anon_sym_mut] = ACTIONS(255), - [anon_sym_const] = ACTIONS(257), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(133), - [aux_sym_cmd_identifier_token3] = ACTIONS(133), - [aux_sym_cmd_identifier_token4] = ACTIONS(133), - [aux_sym_cmd_identifier_token5] = ACTIONS(133), - [aux_sym_cmd_identifier_token6] = ACTIONS(133), - [aux_sym_cmd_identifier_token7] = ACTIONS(133), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(133), - [aux_sym_cmd_identifier_token11] = ACTIONS(133), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(133), - [aux_sym_cmd_identifier_token17] = ACTIONS(133), - [aux_sym_cmd_identifier_token18] = ACTIONS(133), - [aux_sym_cmd_identifier_token19] = ACTIONS(133), - [aux_sym_cmd_identifier_token20] = ACTIONS(133), - [aux_sym_cmd_identifier_token21] = ACTIONS(133), - [aux_sym_cmd_identifier_token22] = ACTIONS(133), - [aux_sym_cmd_identifier_token23] = ACTIONS(133), - [aux_sym_cmd_identifier_token24] = ACTIONS(133), - [aux_sym_cmd_identifier_token25] = ACTIONS(133), - [aux_sym_cmd_identifier_token26] = ACTIONS(133), - [aux_sym_cmd_identifier_token27] = ACTIONS(133), - [aux_sym_cmd_identifier_token28] = ACTIONS(133), - [aux_sym_cmd_identifier_token29] = ACTIONS(133), - [aux_sym_cmd_identifier_token30] = ACTIONS(133), - [aux_sym_cmd_identifier_token31] = ACTIONS(133), - [aux_sym_cmd_identifier_token32] = ACTIONS(133), - [aux_sym_cmd_identifier_token33] = ACTIONS(133), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(133), - [aux_sym_cmd_identifier_token36] = ACTIONS(133), - [anon_sym_true] = ACTIONS(135), - [anon_sym_false] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(139), - [aux_sym_cmd_identifier_token39] = ACTIONS(141), - [aux_sym_cmd_identifier_token40] = ACTIONS(141), - [sym__newline] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(259), - [anon_sym_export_DASHenv] = ACTIONS(261), - [anon_sym_extern] = ACTIONS(263), - [anon_sym_module] = ACTIONS(265), - [anon_sym_use] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(269), - [anon_sym_error] = ACTIONS(271), - [anon_sym_list] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(169), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(273), - [anon_sym_loop] = ACTIONS(281), - [anon_sym_make] = ACTIONS(273), - [anon_sym_while] = ACTIONS(283), - [anon_sym_do] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), - [anon_sym_else] = ACTIONS(273), - [anon_sym_match] = ACTIONS(289), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(355), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(293), - [anon_sym_catch] = ACTIONS(273), - [anon_sym_return] = ACTIONS(295), - [anon_sym_source] = ACTIONS(297), - [anon_sym_source_DASHenv] = ACTIONS(297), - [anon_sym_register] = ACTIONS(299), - [anon_sym_hide] = ACTIONS(301), - [anon_sym_hide_DASHenv] = ACTIONS(303), - [anon_sym_overlay] = ACTIONS(305), - [anon_sym_new] = ACTIONS(273), - [anon_sym_as] = ACTIONS(273), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(243), + [aux_sym_pipe_element_repeat2] = STATE(361), + [aux_sym_record_body_repeat1] = STATE(211), + [anon_sym_export] = ACTIONS(253), + [anon_sym_alias] = ACTIONS(255), + [anon_sym_let] = ACTIONS(257), + [anon_sym_let_DASHenv] = ACTIONS(257), + [anon_sym_mut] = ACTIONS(259), + [anon_sym_const] = ACTIONS(261), + [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(135), + [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [aux_sym_cmd_identifier_token12] = ACTIONS(135), + [aux_sym_cmd_identifier_token13] = ACTIONS(135), + [aux_sym_cmd_identifier_token14] = ACTIONS(135), + [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [aux_sym_cmd_identifier_token16] = ACTIONS(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(135), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(135), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [anon_sym_true] = ACTIONS(137), + [anon_sym_false] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(141), + [aux_sym_cmd_identifier_token39] = ACTIONS(143), + [aux_sym_cmd_identifier_token40] = ACTIONS(143), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_def] = ACTIONS(263), + [anon_sym_export_DASHenv] = ACTIONS(265), + [anon_sym_extern] = ACTIONS(267), + [anon_sym_module] = ACTIONS(269), + [anon_sym_use] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(163), + [anon_sym_DOLLAR] = ACTIONS(273), + [anon_sym_error] = ACTIONS(275), + [anon_sym_list] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_for] = ACTIONS(283), + [anon_sym_in] = ACTIONS(277), + [anon_sym_loop] = ACTIONS(285), + [anon_sym_make] = ACTIONS(277), + [anon_sym_while] = ACTIONS(287), + [anon_sym_do] = ACTIONS(289), + [anon_sym_if] = ACTIONS(291), + [anon_sym_else] = ACTIONS(277), + [anon_sym_match] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_RBRACE] = ACTIONS(359), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(297), + [anon_sym_catch] = ACTIONS(277), + [anon_sym_return] = ACTIONS(299), + [anon_sym_source] = ACTIONS(301), + [anon_sym_source_DASHenv] = ACTIONS(301), + [anon_sym_register] = ACTIONS(303), + [anon_sym_hide] = ACTIONS(305), + [anon_sym_hide_DASHenv] = ACTIONS(307), + [anon_sym_overlay] = ACTIONS(309), + [anon_sym_new] = ACTIONS(277), + [anon_sym_as] = ACTIONS(277), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(219), + [aux_sym__val_number_decimal_token2] = ACTIONS(221), + [aux_sym__val_number_decimal_token3] = ACTIONS(223), + [aux_sym__val_number_decimal_token4] = ACTIONS(225), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [26] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7715), - [sym_cmd_identifier] = STATE(4554), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym_parameter_pipes] = STATE(134), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1847), - [sym__spread_parenthesized] = STATE(567), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym__spread_variable] = STATE(571), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2222), - [sym__val_number_decimal] = STATE(1436), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(2222), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym__spread_record] = STATE(567), - [sym_record_entry] = STATE(6724), - [sym__record_key] = STATE(7516), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7618), + [sym_cmd_identifier] = STATE(4656), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym_parameter_pipes] = STATE(145), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1913), + [sym__spread_parenthesized] = STATE(7465), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym__spread_variable] = STATE(7436), + [sym_val_variable] = STATE(1323), + [sym_val_number] = STATE(2300), + [sym__val_number_decimal] = STATE(1584), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(2300), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym__spread_record] = STATE(7465), + [sym_record_entry] = STATE(7013), + [sym__record_key] = STATE(7872), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(26), - [aux_sym_shebang_repeat1] = STATE(195), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_shebang_repeat1] = STATE(198), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [aux_sym_record_body_repeat1] = STATE(209), - [anon_sym_export] = ACTIONS(249), - [anon_sym_alias] = ACTIONS(251), - [anon_sym_let] = ACTIONS(253), - [anon_sym_let_DASHenv] = ACTIONS(253), - [anon_sym_mut] = ACTIONS(255), - [anon_sym_const] = ACTIONS(257), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(133), - [aux_sym_cmd_identifier_token3] = ACTIONS(133), - [aux_sym_cmd_identifier_token4] = ACTIONS(133), - [aux_sym_cmd_identifier_token5] = ACTIONS(133), - [aux_sym_cmd_identifier_token6] = ACTIONS(133), - [aux_sym_cmd_identifier_token7] = ACTIONS(133), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(133), - [aux_sym_cmd_identifier_token11] = ACTIONS(133), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(133), - [aux_sym_cmd_identifier_token17] = ACTIONS(133), - [aux_sym_cmd_identifier_token18] = ACTIONS(133), - [aux_sym_cmd_identifier_token19] = ACTIONS(133), - [aux_sym_cmd_identifier_token20] = ACTIONS(133), - [aux_sym_cmd_identifier_token21] = ACTIONS(133), - [aux_sym_cmd_identifier_token22] = ACTIONS(133), - [aux_sym_cmd_identifier_token23] = ACTIONS(133), - [aux_sym_cmd_identifier_token24] = ACTIONS(133), - [aux_sym_cmd_identifier_token25] = ACTIONS(133), - [aux_sym_cmd_identifier_token26] = ACTIONS(133), - [aux_sym_cmd_identifier_token27] = ACTIONS(133), - [aux_sym_cmd_identifier_token28] = ACTIONS(133), - [aux_sym_cmd_identifier_token29] = ACTIONS(133), - [aux_sym_cmd_identifier_token30] = ACTIONS(133), - [aux_sym_cmd_identifier_token31] = ACTIONS(133), - [aux_sym_cmd_identifier_token32] = ACTIONS(133), - [aux_sym_cmd_identifier_token33] = ACTIONS(133), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(133), - [aux_sym_cmd_identifier_token36] = ACTIONS(133), - [anon_sym_true] = ACTIONS(135), - [anon_sym_false] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(139), - [aux_sym_cmd_identifier_token39] = ACTIONS(141), - [aux_sym_cmd_identifier_token40] = ACTIONS(141), - [sym__newline] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(259), - [anon_sym_export_DASHenv] = ACTIONS(261), - [anon_sym_extern] = ACTIONS(263), - [anon_sym_module] = ACTIONS(265), - [anon_sym_use] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(269), - [anon_sym_error] = ACTIONS(271), - [anon_sym_list] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(169), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(273), - [anon_sym_loop] = ACTIONS(281), - [anon_sym_make] = ACTIONS(273), - [anon_sym_while] = ACTIONS(283), - [anon_sym_do] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), - [anon_sym_else] = ACTIONS(273), - [anon_sym_match] = ACTIONS(289), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(293), - [anon_sym_catch] = ACTIONS(273), - [anon_sym_return] = ACTIONS(295), - [anon_sym_source] = ACTIONS(297), - [anon_sym_source_DASHenv] = ACTIONS(297), - [anon_sym_register] = ACTIONS(299), - [anon_sym_hide] = ACTIONS(301), - [anon_sym_hide_DASHenv] = ACTIONS(303), - [anon_sym_overlay] = ACTIONS(305), - [anon_sym_new] = ACTIONS(273), - [anon_sym_as] = ACTIONS(273), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(243), + [aux_sym_pipe_element_repeat2] = STATE(361), + [aux_sym_record_body_repeat1] = STATE(212), + [anon_sym_export] = ACTIONS(253), + [anon_sym_alias] = ACTIONS(255), + [anon_sym_let] = ACTIONS(257), + [anon_sym_let_DASHenv] = ACTIONS(257), + [anon_sym_mut] = ACTIONS(259), + [anon_sym_const] = ACTIONS(261), + [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(135), + [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [aux_sym_cmd_identifier_token12] = ACTIONS(135), + [aux_sym_cmd_identifier_token13] = ACTIONS(135), + [aux_sym_cmd_identifier_token14] = ACTIONS(135), + [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [aux_sym_cmd_identifier_token16] = ACTIONS(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(135), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(135), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [anon_sym_true] = ACTIONS(137), + [anon_sym_false] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(141), + [aux_sym_cmd_identifier_token39] = ACTIONS(143), + [aux_sym_cmd_identifier_token40] = ACTIONS(143), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_def] = ACTIONS(263), + [anon_sym_export_DASHenv] = ACTIONS(265), + [anon_sym_extern] = ACTIONS(267), + [anon_sym_module] = ACTIONS(269), + [anon_sym_use] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(163), + [anon_sym_DOLLAR] = ACTIONS(273), + [anon_sym_error] = ACTIONS(275), + [anon_sym_list] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_for] = ACTIONS(283), + [anon_sym_in] = ACTIONS(277), + [anon_sym_loop] = ACTIONS(285), + [anon_sym_make] = ACTIONS(277), + [anon_sym_while] = ACTIONS(287), + [anon_sym_do] = ACTIONS(289), + [anon_sym_if] = ACTIONS(291), + [anon_sym_else] = ACTIONS(277), + [anon_sym_match] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(297), + [anon_sym_catch] = ACTIONS(277), + [anon_sym_return] = ACTIONS(299), + [anon_sym_source] = ACTIONS(301), + [anon_sym_source_DASHenv] = ACTIONS(301), + [anon_sym_register] = ACTIONS(303), + [anon_sym_hide] = ACTIONS(305), + [anon_sym_hide_DASHenv] = ACTIONS(307), + [anon_sym_overlay] = ACTIONS(309), + [anon_sym_new] = ACTIONS(277), + [anon_sym_as] = ACTIONS(277), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(219), + [aux_sym__val_number_decimal_token2] = ACTIONS(221), + [aux_sym__val_number_decimal_token3] = ACTIONS(223), + [aux_sym__val_number_decimal_token4] = ACTIONS(225), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [27] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7593), - [sym_cmd_identifier] = STATE(4554), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7861), + [sym_cmd_identifier] = STATE(4656), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), [sym_parameter_pipes] = STATE(119), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1847), - [sym__spread_parenthesized] = STATE(567), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym__spread_variable] = STATE(571), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2222), - [sym__val_number_decimal] = STATE(1436), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(2222), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym__spread_record] = STATE(567), - [sym_record_entry] = STATE(6724), - [sym__record_key] = STATE(7516), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1913), + [sym__spread_parenthesized] = STATE(7465), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym__spread_variable] = STATE(7436), + [sym_val_variable] = STATE(1323), + [sym_val_number] = STATE(2300), + [sym__val_number_decimal] = STATE(1584), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(2300), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym__spread_record] = STATE(7465), + [sym_record_entry] = STATE(7013), + [sym__record_key] = STATE(7872), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(27), - [aux_sym_shebang_repeat1] = STATE(195), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_shebang_repeat1] = STATE(198), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [aux_sym_record_body_repeat1] = STATE(209), - [anon_sym_export] = ACTIONS(249), - [anon_sym_alias] = ACTIONS(251), - [anon_sym_let] = ACTIONS(253), - [anon_sym_let_DASHenv] = ACTIONS(253), - [anon_sym_mut] = ACTIONS(255), - [anon_sym_const] = ACTIONS(257), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(133), - [aux_sym_cmd_identifier_token3] = ACTIONS(133), - [aux_sym_cmd_identifier_token4] = ACTIONS(133), - [aux_sym_cmd_identifier_token5] = ACTIONS(133), - [aux_sym_cmd_identifier_token6] = ACTIONS(133), - [aux_sym_cmd_identifier_token7] = ACTIONS(133), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(133), - [aux_sym_cmd_identifier_token11] = ACTIONS(133), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(133), - [aux_sym_cmd_identifier_token17] = ACTIONS(133), - [aux_sym_cmd_identifier_token18] = ACTIONS(133), - [aux_sym_cmd_identifier_token19] = ACTIONS(133), - [aux_sym_cmd_identifier_token20] = ACTIONS(133), - [aux_sym_cmd_identifier_token21] = ACTIONS(133), - [aux_sym_cmd_identifier_token22] = ACTIONS(133), - [aux_sym_cmd_identifier_token23] = ACTIONS(133), - [aux_sym_cmd_identifier_token24] = ACTIONS(133), - [aux_sym_cmd_identifier_token25] = ACTIONS(133), - [aux_sym_cmd_identifier_token26] = ACTIONS(133), - [aux_sym_cmd_identifier_token27] = ACTIONS(133), - [aux_sym_cmd_identifier_token28] = ACTIONS(133), - [aux_sym_cmd_identifier_token29] = ACTIONS(133), - [aux_sym_cmd_identifier_token30] = ACTIONS(133), - [aux_sym_cmd_identifier_token31] = ACTIONS(133), - [aux_sym_cmd_identifier_token32] = ACTIONS(133), - [aux_sym_cmd_identifier_token33] = ACTIONS(133), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(133), - [aux_sym_cmd_identifier_token36] = ACTIONS(133), - [anon_sym_true] = ACTIONS(135), - [anon_sym_false] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(139), - [aux_sym_cmd_identifier_token39] = ACTIONS(141), - [aux_sym_cmd_identifier_token40] = ACTIONS(141), - [sym__newline] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(259), - [anon_sym_export_DASHenv] = ACTIONS(261), - [anon_sym_extern] = ACTIONS(263), - [anon_sym_module] = ACTIONS(265), - [anon_sym_use] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(269), - [anon_sym_error] = ACTIONS(271), - [anon_sym_list] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(169), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(273), - [anon_sym_loop] = ACTIONS(281), - [anon_sym_make] = ACTIONS(273), - [anon_sym_while] = ACTIONS(283), - [anon_sym_do] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), - [anon_sym_else] = ACTIONS(273), - [anon_sym_match] = ACTIONS(289), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(293), - [anon_sym_catch] = ACTIONS(273), - [anon_sym_return] = ACTIONS(295), - [anon_sym_source] = ACTIONS(297), - [anon_sym_source_DASHenv] = ACTIONS(297), - [anon_sym_register] = ACTIONS(299), - [anon_sym_hide] = ACTIONS(301), - [anon_sym_hide_DASHenv] = ACTIONS(303), - [anon_sym_overlay] = ACTIONS(305), - [anon_sym_new] = ACTIONS(273), - [anon_sym_as] = ACTIONS(273), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(243), + [aux_sym_pipe_element_repeat2] = STATE(361), + [aux_sym_record_body_repeat1] = STATE(212), + [anon_sym_export] = ACTIONS(253), + [anon_sym_alias] = ACTIONS(255), + [anon_sym_let] = ACTIONS(257), + [anon_sym_let_DASHenv] = ACTIONS(257), + [anon_sym_mut] = ACTIONS(259), + [anon_sym_const] = ACTIONS(261), + [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(135), + [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [aux_sym_cmd_identifier_token12] = ACTIONS(135), + [aux_sym_cmd_identifier_token13] = ACTIONS(135), + [aux_sym_cmd_identifier_token14] = ACTIONS(135), + [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [aux_sym_cmd_identifier_token16] = ACTIONS(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(135), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(135), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [anon_sym_true] = ACTIONS(137), + [anon_sym_false] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(141), + [aux_sym_cmd_identifier_token39] = ACTIONS(143), + [aux_sym_cmd_identifier_token40] = ACTIONS(143), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_def] = ACTIONS(263), + [anon_sym_export_DASHenv] = ACTIONS(265), + [anon_sym_extern] = ACTIONS(267), + [anon_sym_module] = ACTIONS(269), + [anon_sym_use] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(163), + [anon_sym_DOLLAR] = ACTIONS(273), + [anon_sym_error] = ACTIONS(275), + [anon_sym_list] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_for] = ACTIONS(283), + [anon_sym_in] = ACTIONS(277), + [anon_sym_loop] = ACTIONS(285), + [anon_sym_make] = ACTIONS(277), + [anon_sym_while] = ACTIONS(287), + [anon_sym_do] = ACTIONS(289), + [anon_sym_if] = ACTIONS(291), + [anon_sym_else] = ACTIONS(277), + [anon_sym_match] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(297), + [anon_sym_catch] = ACTIONS(277), + [anon_sym_return] = ACTIONS(299), + [anon_sym_source] = ACTIONS(301), + [anon_sym_source_DASHenv] = ACTIONS(301), + [anon_sym_register] = ACTIONS(303), + [anon_sym_hide] = ACTIONS(305), + [anon_sym_hide_DASHenv] = ACTIONS(307), + [anon_sym_overlay] = ACTIONS(309), + [anon_sym_new] = ACTIONS(277), + [anon_sym_as] = ACTIONS(277), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(219), + [aux_sym__val_number_decimal_token2] = ACTIONS(221), + [aux_sym__val_number_decimal_token3] = ACTIONS(223), + [aux_sym__val_number_decimal_token4] = ACTIONS(225), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [28] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7531), - [sym_cmd_identifier] = STATE(4554), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym_parameter_pipes] = STATE(128), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1847), - [sym__spread_parenthesized] = STATE(567), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym__spread_variable] = STATE(571), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2222), - [sym__val_number_decimal] = STATE(1436), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(2222), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym__spread_record] = STATE(567), - [sym_record_entry] = STATE(6724), - [sym__record_key] = STATE(7516), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7949), + [sym_cmd_identifier] = STATE(4656), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym_parameter_pipes] = STATE(132), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1913), + [sym__spread_parenthesized] = STATE(7465), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym__spread_variable] = STATE(7436), + [sym_val_variable] = STATE(1323), + [sym_val_number] = STATE(2300), + [sym__val_number_decimal] = STATE(1584), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(2300), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym__spread_record] = STATE(7465), + [sym_record_entry] = STATE(7013), + [sym__record_key] = STATE(7872), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(28), - [aux_sym_shebang_repeat1] = STATE(195), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_shebang_repeat1] = STATE(198), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [aux_sym_record_body_repeat1] = STATE(209), - [anon_sym_export] = ACTIONS(249), - [anon_sym_alias] = ACTIONS(251), - [anon_sym_let] = ACTIONS(253), - [anon_sym_let_DASHenv] = ACTIONS(253), - [anon_sym_mut] = ACTIONS(255), - [anon_sym_const] = ACTIONS(257), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(133), - [aux_sym_cmd_identifier_token3] = ACTIONS(133), - [aux_sym_cmd_identifier_token4] = ACTIONS(133), - [aux_sym_cmd_identifier_token5] = ACTIONS(133), - [aux_sym_cmd_identifier_token6] = ACTIONS(133), - [aux_sym_cmd_identifier_token7] = ACTIONS(133), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(133), - [aux_sym_cmd_identifier_token11] = ACTIONS(133), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(133), - [aux_sym_cmd_identifier_token17] = ACTIONS(133), - [aux_sym_cmd_identifier_token18] = ACTIONS(133), - [aux_sym_cmd_identifier_token19] = ACTIONS(133), - [aux_sym_cmd_identifier_token20] = ACTIONS(133), - [aux_sym_cmd_identifier_token21] = ACTIONS(133), - [aux_sym_cmd_identifier_token22] = ACTIONS(133), - [aux_sym_cmd_identifier_token23] = ACTIONS(133), - [aux_sym_cmd_identifier_token24] = ACTIONS(133), - [aux_sym_cmd_identifier_token25] = ACTIONS(133), - [aux_sym_cmd_identifier_token26] = ACTIONS(133), - [aux_sym_cmd_identifier_token27] = ACTIONS(133), - [aux_sym_cmd_identifier_token28] = ACTIONS(133), - [aux_sym_cmd_identifier_token29] = ACTIONS(133), - [aux_sym_cmd_identifier_token30] = ACTIONS(133), - [aux_sym_cmd_identifier_token31] = ACTIONS(133), - [aux_sym_cmd_identifier_token32] = ACTIONS(133), - [aux_sym_cmd_identifier_token33] = ACTIONS(133), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(133), - [aux_sym_cmd_identifier_token36] = ACTIONS(133), - [anon_sym_true] = ACTIONS(135), - [anon_sym_false] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(139), - [aux_sym_cmd_identifier_token39] = ACTIONS(141), - [aux_sym_cmd_identifier_token40] = ACTIONS(141), - [sym__newline] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(259), - [anon_sym_export_DASHenv] = ACTIONS(261), - [anon_sym_extern] = ACTIONS(263), - [anon_sym_module] = ACTIONS(265), - [anon_sym_use] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(269), - [anon_sym_error] = ACTIONS(271), - [anon_sym_list] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(169), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(273), - [anon_sym_loop] = ACTIONS(281), - [anon_sym_make] = ACTIONS(273), - [anon_sym_while] = ACTIONS(283), - [anon_sym_do] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), - [anon_sym_else] = ACTIONS(273), - [anon_sym_match] = ACTIONS(289), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(293), - [anon_sym_catch] = ACTIONS(273), - [anon_sym_return] = ACTIONS(295), - [anon_sym_source] = ACTIONS(297), - [anon_sym_source_DASHenv] = ACTIONS(297), - [anon_sym_register] = ACTIONS(299), - [anon_sym_hide] = ACTIONS(301), - [anon_sym_hide_DASHenv] = ACTIONS(303), - [anon_sym_overlay] = ACTIONS(305), - [anon_sym_new] = ACTIONS(273), - [anon_sym_as] = ACTIONS(273), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(243), + [aux_sym_pipe_element_repeat2] = STATE(361), + [aux_sym_record_body_repeat1] = STATE(212), + [anon_sym_export] = ACTIONS(253), + [anon_sym_alias] = ACTIONS(255), + [anon_sym_let] = ACTIONS(257), + [anon_sym_let_DASHenv] = ACTIONS(257), + [anon_sym_mut] = ACTIONS(259), + [anon_sym_const] = ACTIONS(261), + [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(135), + [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [aux_sym_cmd_identifier_token12] = ACTIONS(135), + [aux_sym_cmd_identifier_token13] = ACTIONS(135), + [aux_sym_cmd_identifier_token14] = ACTIONS(135), + [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [aux_sym_cmd_identifier_token16] = ACTIONS(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(135), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(135), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [anon_sym_true] = ACTIONS(137), + [anon_sym_false] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(141), + [aux_sym_cmd_identifier_token39] = ACTIONS(143), + [aux_sym_cmd_identifier_token40] = ACTIONS(143), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_def] = ACTIONS(263), + [anon_sym_export_DASHenv] = ACTIONS(265), + [anon_sym_extern] = ACTIONS(267), + [anon_sym_module] = ACTIONS(269), + [anon_sym_use] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(163), + [anon_sym_DOLLAR] = ACTIONS(273), + [anon_sym_error] = ACTIONS(275), + [anon_sym_list] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_for] = ACTIONS(283), + [anon_sym_in] = ACTIONS(277), + [anon_sym_loop] = ACTIONS(285), + [anon_sym_make] = ACTIONS(277), + [anon_sym_while] = ACTIONS(287), + [anon_sym_do] = ACTIONS(289), + [anon_sym_if] = ACTIONS(291), + [anon_sym_else] = ACTIONS(277), + [anon_sym_match] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(297), + [anon_sym_catch] = ACTIONS(277), + [anon_sym_return] = ACTIONS(299), + [anon_sym_source] = ACTIONS(301), + [anon_sym_source_DASHenv] = ACTIONS(301), + [anon_sym_register] = ACTIONS(303), + [anon_sym_hide] = ACTIONS(305), + [anon_sym_hide_DASHenv] = ACTIONS(307), + [anon_sym_overlay] = ACTIONS(309), + [anon_sym_new] = ACTIONS(277), + [anon_sym_as] = ACTIONS(277), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(219), + [aux_sym__val_number_decimal_token2] = ACTIONS(221), + [aux_sym__val_number_decimal_token3] = ACTIONS(223), + [aux_sym__val_number_decimal_token4] = ACTIONS(225), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [29] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7395), - [sym_cmd_identifier] = STATE(4554), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym_parameter_pipes] = STATE(125), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1847), - [sym__spread_parenthesized] = STATE(567), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym__spread_variable] = STATE(571), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2222), - [sym__val_number_decimal] = STATE(1436), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(2222), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym__spread_record] = STATE(567), - [sym_record_entry] = STATE(6724), - [sym__record_key] = STATE(7516), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7978), + [sym_cmd_identifier] = STATE(4656), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym_parameter_pipes] = STATE(126), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1913), + [sym__spread_parenthesized] = STATE(7465), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym__spread_variable] = STATE(7436), + [sym_val_variable] = STATE(1323), + [sym_val_number] = STATE(2300), + [sym__val_number_decimal] = STATE(1584), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(2300), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym__spread_record] = STATE(7465), + [sym_record_entry] = STATE(7013), + [sym__record_key] = STATE(7872), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(29), - [aux_sym_shebang_repeat1] = STATE(195), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_shebang_repeat1] = STATE(198), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [aux_sym_record_body_repeat1] = STATE(209), - [anon_sym_export] = ACTIONS(249), - [anon_sym_alias] = ACTIONS(251), - [anon_sym_let] = ACTIONS(253), - [anon_sym_let_DASHenv] = ACTIONS(253), - [anon_sym_mut] = ACTIONS(255), - [anon_sym_const] = ACTIONS(257), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(133), - [aux_sym_cmd_identifier_token3] = ACTIONS(133), - [aux_sym_cmd_identifier_token4] = ACTIONS(133), - [aux_sym_cmd_identifier_token5] = ACTIONS(133), - [aux_sym_cmd_identifier_token6] = ACTIONS(133), - [aux_sym_cmd_identifier_token7] = ACTIONS(133), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(133), - [aux_sym_cmd_identifier_token11] = ACTIONS(133), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(133), - [aux_sym_cmd_identifier_token17] = ACTIONS(133), - [aux_sym_cmd_identifier_token18] = ACTIONS(133), - [aux_sym_cmd_identifier_token19] = ACTIONS(133), - [aux_sym_cmd_identifier_token20] = ACTIONS(133), - [aux_sym_cmd_identifier_token21] = ACTIONS(133), - [aux_sym_cmd_identifier_token22] = ACTIONS(133), - [aux_sym_cmd_identifier_token23] = ACTIONS(133), - [aux_sym_cmd_identifier_token24] = ACTIONS(133), - [aux_sym_cmd_identifier_token25] = ACTIONS(133), - [aux_sym_cmd_identifier_token26] = ACTIONS(133), - [aux_sym_cmd_identifier_token27] = ACTIONS(133), - [aux_sym_cmd_identifier_token28] = ACTIONS(133), - [aux_sym_cmd_identifier_token29] = ACTIONS(133), - [aux_sym_cmd_identifier_token30] = ACTIONS(133), - [aux_sym_cmd_identifier_token31] = ACTIONS(133), - [aux_sym_cmd_identifier_token32] = ACTIONS(133), - [aux_sym_cmd_identifier_token33] = ACTIONS(133), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(133), - [aux_sym_cmd_identifier_token36] = ACTIONS(133), - [anon_sym_true] = ACTIONS(135), - [anon_sym_false] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(139), - [aux_sym_cmd_identifier_token39] = ACTIONS(141), - [aux_sym_cmd_identifier_token40] = ACTIONS(141), - [sym__newline] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(259), - [anon_sym_export_DASHenv] = ACTIONS(261), - [anon_sym_extern] = ACTIONS(263), - [anon_sym_module] = ACTIONS(265), - [anon_sym_use] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(269), - [anon_sym_error] = ACTIONS(271), - [anon_sym_list] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(169), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(273), - [anon_sym_loop] = ACTIONS(281), - [anon_sym_make] = ACTIONS(273), - [anon_sym_while] = ACTIONS(283), - [anon_sym_do] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), - [anon_sym_else] = ACTIONS(273), - [anon_sym_match] = ACTIONS(289), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(293), - [anon_sym_catch] = ACTIONS(273), - [anon_sym_return] = ACTIONS(295), - [anon_sym_source] = ACTIONS(297), - [anon_sym_source_DASHenv] = ACTIONS(297), - [anon_sym_register] = ACTIONS(299), - [anon_sym_hide] = ACTIONS(301), - [anon_sym_hide_DASHenv] = ACTIONS(303), - [anon_sym_overlay] = ACTIONS(305), - [anon_sym_new] = ACTIONS(273), - [anon_sym_as] = ACTIONS(273), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(243), + [aux_sym_pipe_element_repeat2] = STATE(361), + [aux_sym_record_body_repeat1] = STATE(212), + [anon_sym_export] = ACTIONS(253), + [anon_sym_alias] = ACTIONS(255), + [anon_sym_let] = ACTIONS(257), + [anon_sym_let_DASHenv] = ACTIONS(257), + [anon_sym_mut] = ACTIONS(259), + [anon_sym_const] = ACTIONS(261), + [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(135), + [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [aux_sym_cmd_identifier_token12] = ACTIONS(135), + [aux_sym_cmd_identifier_token13] = ACTIONS(135), + [aux_sym_cmd_identifier_token14] = ACTIONS(135), + [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [aux_sym_cmd_identifier_token16] = ACTIONS(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(135), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(135), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [anon_sym_true] = ACTIONS(137), + [anon_sym_false] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(141), + [aux_sym_cmd_identifier_token39] = ACTIONS(143), + [aux_sym_cmd_identifier_token40] = ACTIONS(143), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_def] = ACTIONS(263), + [anon_sym_export_DASHenv] = ACTIONS(265), + [anon_sym_extern] = ACTIONS(267), + [anon_sym_module] = ACTIONS(269), + [anon_sym_use] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(163), + [anon_sym_DOLLAR] = ACTIONS(273), + [anon_sym_error] = ACTIONS(275), + [anon_sym_list] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_for] = ACTIONS(283), + [anon_sym_in] = ACTIONS(277), + [anon_sym_loop] = ACTIONS(285), + [anon_sym_make] = ACTIONS(277), + [anon_sym_while] = ACTIONS(287), + [anon_sym_do] = ACTIONS(289), + [anon_sym_if] = ACTIONS(291), + [anon_sym_else] = ACTIONS(277), + [anon_sym_match] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(297), + [anon_sym_catch] = ACTIONS(277), + [anon_sym_return] = ACTIONS(299), + [anon_sym_source] = ACTIONS(301), + [anon_sym_source_DASHenv] = ACTIONS(301), + [anon_sym_register] = ACTIONS(303), + [anon_sym_hide] = ACTIONS(305), + [anon_sym_hide_DASHenv] = ACTIONS(307), + [anon_sym_overlay] = ACTIONS(309), + [anon_sym_new] = ACTIONS(277), + [anon_sym_as] = ACTIONS(277), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(219), + [aux_sym__val_number_decimal_token2] = ACTIONS(221), + [aux_sym__val_number_decimal_token3] = ACTIONS(223), + [aux_sym__val_number_decimal_token4] = ACTIONS(225), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [30] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7666), - [sym_cmd_identifier] = STATE(4554), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym_parameter_pipes] = STATE(131), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1847), - [sym__spread_parenthesized] = STATE(567), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym__spread_variable] = STATE(571), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2222), - [sym__val_number_decimal] = STATE(1436), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(2222), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym__spread_record] = STATE(567), - [sym_record_entry] = STATE(6724), - [sym__record_key] = STATE(7516), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7745), + [sym_cmd_identifier] = STATE(4656), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym_parameter_pipes] = STATE(135), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1913), + [sym__spread_parenthesized] = STATE(7465), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym__spread_variable] = STATE(7436), + [sym_val_variable] = STATE(1323), + [sym_val_number] = STATE(2300), + [sym__val_number_decimal] = STATE(1584), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(2300), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym__spread_record] = STATE(7465), + [sym_record_entry] = STATE(7013), + [sym__record_key] = STATE(7872), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(30), - [aux_sym_shebang_repeat1] = STATE(195), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_shebang_repeat1] = STATE(198), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [aux_sym_record_body_repeat1] = STATE(209), - [anon_sym_export] = ACTIONS(249), - [anon_sym_alias] = ACTIONS(251), - [anon_sym_let] = ACTIONS(253), - [anon_sym_let_DASHenv] = ACTIONS(253), - [anon_sym_mut] = ACTIONS(255), - [anon_sym_const] = ACTIONS(257), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(133), - [aux_sym_cmd_identifier_token3] = ACTIONS(133), - [aux_sym_cmd_identifier_token4] = ACTIONS(133), - [aux_sym_cmd_identifier_token5] = ACTIONS(133), - [aux_sym_cmd_identifier_token6] = ACTIONS(133), - [aux_sym_cmd_identifier_token7] = ACTIONS(133), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(133), - [aux_sym_cmd_identifier_token11] = ACTIONS(133), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(133), - [aux_sym_cmd_identifier_token17] = ACTIONS(133), - [aux_sym_cmd_identifier_token18] = ACTIONS(133), - [aux_sym_cmd_identifier_token19] = ACTIONS(133), - [aux_sym_cmd_identifier_token20] = ACTIONS(133), - [aux_sym_cmd_identifier_token21] = ACTIONS(133), - [aux_sym_cmd_identifier_token22] = ACTIONS(133), - [aux_sym_cmd_identifier_token23] = ACTIONS(133), - [aux_sym_cmd_identifier_token24] = ACTIONS(133), - [aux_sym_cmd_identifier_token25] = ACTIONS(133), - [aux_sym_cmd_identifier_token26] = ACTIONS(133), - [aux_sym_cmd_identifier_token27] = ACTIONS(133), - [aux_sym_cmd_identifier_token28] = ACTIONS(133), - [aux_sym_cmd_identifier_token29] = ACTIONS(133), - [aux_sym_cmd_identifier_token30] = ACTIONS(133), - [aux_sym_cmd_identifier_token31] = ACTIONS(133), - [aux_sym_cmd_identifier_token32] = ACTIONS(133), - [aux_sym_cmd_identifier_token33] = ACTIONS(133), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(133), - [aux_sym_cmd_identifier_token36] = ACTIONS(133), - [anon_sym_true] = ACTIONS(135), - [anon_sym_false] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(139), - [aux_sym_cmd_identifier_token39] = ACTIONS(141), - [aux_sym_cmd_identifier_token40] = ACTIONS(141), - [sym__newline] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(259), - [anon_sym_export_DASHenv] = ACTIONS(261), - [anon_sym_extern] = ACTIONS(263), - [anon_sym_module] = ACTIONS(265), - [anon_sym_use] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(269), - [anon_sym_error] = ACTIONS(271), - [anon_sym_list] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(169), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(273), - [anon_sym_loop] = ACTIONS(281), - [anon_sym_make] = ACTIONS(273), - [anon_sym_while] = ACTIONS(283), - [anon_sym_do] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), - [anon_sym_else] = ACTIONS(273), - [anon_sym_match] = ACTIONS(289), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(293), - [anon_sym_catch] = ACTIONS(273), - [anon_sym_return] = ACTIONS(295), - [anon_sym_source] = ACTIONS(297), - [anon_sym_source_DASHenv] = ACTIONS(297), - [anon_sym_register] = ACTIONS(299), - [anon_sym_hide] = ACTIONS(301), - [anon_sym_hide_DASHenv] = ACTIONS(303), - [anon_sym_overlay] = ACTIONS(305), - [anon_sym_new] = ACTIONS(273), - [anon_sym_as] = ACTIONS(273), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(243), + [aux_sym_pipe_element_repeat2] = STATE(361), + [aux_sym_record_body_repeat1] = STATE(212), + [anon_sym_export] = ACTIONS(253), + [anon_sym_alias] = ACTIONS(255), + [anon_sym_let] = ACTIONS(257), + [anon_sym_let_DASHenv] = ACTIONS(257), + [anon_sym_mut] = ACTIONS(259), + [anon_sym_const] = ACTIONS(261), + [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(135), + [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [aux_sym_cmd_identifier_token12] = ACTIONS(135), + [aux_sym_cmd_identifier_token13] = ACTIONS(135), + [aux_sym_cmd_identifier_token14] = ACTIONS(135), + [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [aux_sym_cmd_identifier_token16] = ACTIONS(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(135), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(135), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [anon_sym_true] = ACTIONS(137), + [anon_sym_false] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(141), + [aux_sym_cmd_identifier_token39] = ACTIONS(143), + [aux_sym_cmd_identifier_token40] = ACTIONS(143), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_def] = ACTIONS(263), + [anon_sym_export_DASHenv] = ACTIONS(265), + [anon_sym_extern] = ACTIONS(267), + [anon_sym_module] = ACTIONS(269), + [anon_sym_use] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(163), + [anon_sym_DOLLAR] = ACTIONS(273), + [anon_sym_error] = ACTIONS(275), + [anon_sym_list] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_for] = ACTIONS(283), + [anon_sym_in] = ACTIONS(277), + [anon_sym_loop] = ACTIONS(285), + [anon_sym_make] = ACTIONS(277), + [anon_sym_while] = ACTIONS(287), + [anon_sym_do] = ACTIONS(289), + [anon_sym_if] = ACTIONS(291), + [anon_sym_else] = ACTIONS(277), + [anon_sym_match] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(297), + [anon_sym_catch] = ACTIONS(277), + [anon_sym_return] = ACTIONS(299), + [anon_sym_source] = ACTIONS(301), + [anon_sym_source_DASHenv] = ACTIONS(301), + [anon_sym_register] = ACTIONS(303), + [anon_sym_hide] = ACTIONS(305), + [anon_sym_hide_DASHenv] = ACTIONS(307), + [anon_sym_overlay] = ACTIONS(309), + [anon_sym_new] = ACTIONS(277), + [anon_sym_as] = ACTIONS(277), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(219), + [aux_sym__val_number_decimal_token2] = ACTIONS(221), + [aux_sym__val_number_decimal_token3] = ACTIONS(223), + [aux_sym__val_number_decimal_token4] = ACTIONS(225), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [31] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7675), - [sym_cmd_identifier] = STATE(4554), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym_parameter_pipes] = STATE(140), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1847), - [sym__spread_parenthesized] = STATE(567), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym__spread_variable] = STATE(571), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2222), - [sym__val_number_decimal] = STATE(1436), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(2222), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym__spread_record] = STATE(567), - [sym_record_entry] = STATE(6724), - [sym__record_key] = STATE(7516), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7635), + [sym_cmd_identifier] = STATE(4656), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym_parameter_pipes] = STATE(129), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1913), + [sym__spread_parenthesized] = STATE(7465), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym__spread_variable] = STATE(7436), + [sym_val_variable] = STATE(1323), + [sym_val_number] = STATE(2300), + [sym__val_number_decimal] = STATE(1584), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(2300), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym__spread_record] = STATE(7465), + [sym_record_entry] = STATE(7013), + [sym__record_key] = STATE(7872), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(31), - [aux_sym_shebang_repeat1] = STATE(195), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_shebang_repeat1] = STATE(198), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [aux_sym_record_body_repeat1] = STATE(209), - [anon_sym_export] = ACTIONS(249), - [anon_sym_alias] = ACTIONS(251), - [anon_sym_let] = ACTIONS(253), - [anon_sym_let_DASHenv] = ACTIONS(253), - [anon_sym_mut] = ACTIONS(255), - [anon_sym_const] = ACTIONS(257), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(133), - [aux_sym_cmd_identifier_token3] = ACTIONS(133), - [aux_sym_cmd_identifier_token4] = ACTIONS(133), - [aux_sym_cmd_identifier_token5] = ACTIONS(133), - [aux_sym_cmd_identifier_token6] = ACTIONS(133), - [aux_sym_cmd_identifier_token7] = ACTIONS(133), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(133), - [aux_sym_cmd_identifier_token11] = ACTIONS(133), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(133), - [aux_sym_cmd_identifier_token17] = ACTIONS(133), - [aux_sym_cmd_identifier_token18] = ACTIONS(133), - [aux_sym_cmd_identifier_token19] = ACTIONS(133), - [aux_sym_cmd_identifier_token20] = ACTIONS(133), - [aux_sym_cmd_identifier_token21] = ACTIONS(133), - [aux_sym_cmd_identifier_token22] = ACTIONS(133), - [aux_sym_cmd_identifier_token23] = ACTIONS(133), - [aux_sym_cmd_identifier_token24] = ACTIONS(133), - [aux_sym_cmd_identifier_token25] = ACTIONS(133), - [aux_sym_cmd_identifier_token26] = ACTIONS(133), - [aux_sym_cmd_identifier_token27] = ACTIONS(133), - [aux_sym_cmd_identifier_token28] = ACTIONS(133), - [aux_sym_cmd_identifier_token29] = ACTIONS(133), - [aux_sym_cmd_identifier_token30] = ACTIONS(133), - [aux_sym_cmd_identifier_token31] = ACTIONS(133), - [aux_sym_cmd_identifier_token32] = ACTIONS(133), - [aux_sym_cmd_identifier_token33] = ACTIONS(133), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(133), - [aux_sym_cmd_identifier_token36] = ACTIONS(133), - [anon_sym_true] = ACTIONS(135), - [anon_sym_false] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(139), - [aux_sym_cmd_identifier_token39] = ACTIONS(141), - [aux_sym_cmd_identifier_token40] = ACTIONS(141), - [sym__newline] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(259), - [anon_sym_export_DASHenv] = ACTIONS(261), - [anon_sym_extern] = ACTIONS(263), - [anon_sym_module] = ACTIONS(265), - [anon_sym_use] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(269), - [anon_sym_error] = ACTIONS(271), - [anon_sym_list] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(169), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(273), - [anon_sym_loop] = ACTIONS(281), - [anon_sym_make] = ACTIONS(273), - [anon_sym_while] = ACTIONS(283), - [anon_sym_do] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), - [anon_sym_else] = ACTIONS(273), - [anon_sym_match] = ACTIONS(289), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(293), - [anon_sym_catch] = ACTIONS(273), - [anon_sym_return] = ACTIONS(295), - [anon_sym_source] = ACTIONS(297), - [anon_sym_source_DASHenv] = ACTIONS(297), - [anon_sym_register] = ACTIONS(299), - [anon_sym_hide] = ACTIONS(301), - [anon_sym_hide_DASHenv] = ACTIONS(303), - [anon_sym_overlay] = ACTIONS(305), - [anon_sym_new] = ACTIONS(273), - [anon_sym_as] = ACTIONS(273), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(243), + [aux_sym_pipe_element_repeat2] = STATE(361), + [aux_sym_record_body_repeat1] = STATE(212), + [anon_sym_export] = ACTIONS(253), + [anon_sym_alias] = ACTIONS(255), + [anon_sym_let] = ACTIONS(257), + [anon_sym_let_DASHenv] = ACTIONS(257), + [anon_sym_mut] = ACTIONS(259), + [anon_sym_const] = ACTIONS(261), + [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(135), + [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [aux_sym_cmd_identifier_token12] = ACTIONS(135), + [aux_sym_cmd_identifier_token13] = ACTIONS(135), + [aux_sym_cmd_identifier_token14] = ACTIONS(135), + [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [aux_sym_cmd_identifier_token16] = ACTIONS(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(135), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(135), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [anon_sym_true] = ACTIONS(137), + [anon_sym_false] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(141), + [aux_sym_cmd_identifier_token39] = ACTIONS(143), + [aux_sym_cmd_identifier_token40] = ACTIONS(143), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_def] = ACTIONS(263), + [anon_sym_export_DASHenv] = ACTIONS(265), + [anon_sym_extern] = ACTIONS(267), + [anon_sym_module] = ACTIONS(269), + [anon_sym_use] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(163), + [anon_sym_DOLLAR] = ACTIONS(273), + [anon_sym_error] = ACTIONS(275), + [anon_sym_list] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_for] = ACTIONS(283), + [anon_sym_in] = ACTIONS(277), + [anon_sym_loop] = ACTIONS(285), + [anon_sym_make] = ACTIONS(277), + [anon_sym_while] = ACTIONS(287), + [anon_sym_do] = ACTIONS(289), + [anon_sym_if] = ACTIONS(291), + [anon_sym_else] = ACTIONS(277), + [anon_sym_match] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(297), + [anon_sym_catch] = ACTIONS(277), + [anon_sym_return] = ACTIONS(299), + [anon_sym_source] = ACTIONS(301), + [anon_sym_source_DASHenv] = ACTIONS(301), + [anon_sym_register] = ACTIONS(303), + [anon_sym_hide] = ACTIONS(305), + [anon_sym_hide_DASHenv] = ACTIONS(307), + [anon_sym_overlay] = ACTIONS(309), + [anon_sym_new] = ACTIONS(277), + [anon_sym_as] = ACTIONS(277), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(219), + [aux_sym__val_number_decimal_token2] = ACTIONS(221), + [aux_sym__val_number_decimal_token3] = ACTIONS(223), + [aux_sym__val_number_decimal_token4] = ACTIONS(225), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [32] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7694), - [sym_cmd_identifier] = STATE(4554), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym_parameter_pipes] = STATE(145), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1847), - [sym__spread_parenthesized] = STATE(567), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym__spread_variable] = STATE(571), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2222), - [sym__val_number_decimal] = STATE(1436), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(2222), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym__spread_record] = STATE(567), - [sym_record_entry] = STATE(6724), - [sym__record_key] = STATE(7516), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7638), + [sym_cmd_identifier] = STATE(4656), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym_parameter_pipes] = STATE(139), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1913), + [sym__spread_parenthesized] = STATE(7465), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym__spread_variable] = STATE(7436), + [sym_val_variable] = STATE(1323), + [sym_val_number] = STATE(2300), + [sym__val_number_decimal] = STATE(1584), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(2300), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym__spread_record] = STATE(7465), + [sym_record_entry] = STATE(7013), + [sym__record_key] = STATE(7872), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(32), - [aux_sym_shebang_repeat1] = STATE(195), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_shebang_repeat1] = STATE(198), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [aux_sym_record_body_repeat1] = STATE(209), - [anon_sym_export] = ACTIONS(249), - [anon_sym_alias] = ACTIONS(251), - [anon_sym_let] = ACTIONS(253), - [anon_sym_let_DASHenv] = ACTIONS(253), - [anon_sym_mut] = ACTIONS(255), - [anon_sym_const] = ACTIONS(257), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(133), - [aux_sym_cmd_identifier_token3] = ACTIONS(133), - [aux_sym_cmd_identifier_token4] = ACTIONS(133), - [aux_sym_cmd_identifier_token5] = ACTIONS(133), - [aux_sym_cmd_identifier_token6] = ACTIONS(133), - [aux_sym_cmd_identifier_token7] = ACTIONS(133), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(133), - [aux_sym_cmd_identifier_token11] = ACTIONS(133), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(133), - [aux_sym_cmd_identifier_token17] = ACTIONS(133), - [aux_sym_cmd_identifier_token18] = ACTIONS(133), - [aux_sym_cmd_identifier_token19] = ACTIONS(133), - [aux_sym_cmd_identifier_token20] = ACTIONS(133), - [aux_sym_cmd_identifier_token21] = ACTIONS(133), - [aux_sym_cmd_identifier_token22] = ACTIONS(133), - [aux_sym_cmd_identifier_token23] = ACTIONS(133), - [aux_sym_cmd_identifier_token24] = ACTIONS(133), - [aux_sym_cmd_identifier_token25] = ACTIONS(133), - [aux_sym_cmd_identifier_token26] = ACTIONS(133), - [aux_sym_cmd_identifier_token27] = ACTIONS(133), - [aux_sym_cmd_identifier_token28] = ACTIONS(133), - [aux_sym_cmd_identifier_token29] = ACTIONS(133), - [aux_sym_cmd_identifier_token30] = ACTIONS(133), - [aux_sym_cmd_identifier_token31] = ACTIONS(133), - [aux_sym_cmd_identifier_token32] = ACTIONS(133), - [aux_sym_cmd_identifier_token33] = ACTIONS(133), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(133), - [aux_sym_cmd_identifier_token36] = ACTIONS(133), - [anon_sym_true] = ACTIONS(135), - [anon_sym_false] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(139), - [aux_sym_cmd_identifier_token39] = ACTIONS(141), - [aux_sym_cmd_identifier_token40] = ACTIONS(141), - [sym__newline] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(259), - [anon_sym_export_DASHenv] = ACTIONS(261), - [anon_sym_extern] = ACTIONS(263), - [anon_sym_module] = ACTIONS(265), - [anon_sym_use] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(269), - [anon_sym_error] = ACTIONS(271), - [anon_sym_list] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(169), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(273), - [anon_sym_loop] = ACTIONS(281), - [anon_sym_make] = ACTIONS(273), - [anon_sym_while] = ACTIONS(283), - [anon_sym_do] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), - [anon_sym_else] = ACTIONS(273), - [anon_sym_match] = ACTIONS(289), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(293), - [anon_sym_catch] = ACTIONS(273), - [anon_sym_return] = ACTIONS(295), - [anon_sym_source] = ACTIONS(297), - [anon_sym_source_DASHenv] = ACTIONS(297), - [anon_sym_register] = ACTIONS(299), - [anon_sym_hide] = ACTIONS(301), - [anon_sym_hide_DASHenv] = ACTIONS(303), - [anon_sym_overlay] = ACTIONS(305), - [anon_sym_new] = ACTIONS(273), - [anon_sym_as] = ACTIONS(273), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(243), + [aux_sym_pipe_element_repeat2] = STATE(361), + [aux_sym_record_body_repeat1] = STATE(212), + [anon_sym_export] = ACTIONS(253), + [anon_sym_alias] = ACTIONS(255), + [anon_sym_let] = ACTIONS(257), + [anon_sym_let_DASHenv] = ACTIONS(257), + [anon_sym_mut] = ACTIONS(259), + [anon_sym_const] = ACTIONS(261), + [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(135), + [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [aux_sym_cmd_identifier_token12] = ACTIONS(135), + [aux_sym_cmd_identifier_token13] = ACTIONS(135), + [aux_sym_cmd_identifier_token14] = ACTIONS(135), + [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [aux_sym_cmd_identifier_token16] = ACTIONS(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(135), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(135), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [anon_sym_true] = ACTIONS(137), + [anon_sym_false] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(141), + [aux_sym_cmd_identifier_token39] = ACTIONS(143), + [aux_sym_cmd_identifier_token40] = ACTIONS(143), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_def] = ACTIONS(263), + [anon_sym_export_DASHenv] = ACTIONS(265), + [anon_sym_extern] = ACTIONS(267), + [anon_sym_module] = ACTIONS(269), + [anon_sym_use] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(163), + [anon_sym_DOLLAR] = ACTIONS(273), + [anon_sym_error] = ACTIONS(275), + [anon_sym_list] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_for] = ACTIONS(283), + [anon_sym_in] = ACTIONS(277), + [anon_sym_loop] = ACTIONS(285), + [anon_sym_make] = ACTIONS(277), + [anon_sym_while] = ACTIONS(287), + [anon_sym_do] = ACTIONS(289), + [anon_sym_if] = ACTIONS(291), + [anon_sym_else] = ACTIONS(277), + [anon_sym_match] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(297), + [anon_sym_catch] = ACTIONS(277), + [anon_sym_return] = ACTIONS(299), + [anon_sym_source] = ACTIONS(301), + [anon_sym_source_DASHenv] = ACTIONS(301), + [anon_sym_register] = ACTIONS(303), + [anon_sym_hide] = ACTIONS(305), + [anon_sym_hide_DASHenv] = ACTIONS(307), + [anon_sym_overlay] = ACTIONS(309), + [anon_sym_new] = ACTIONS(277), + [anon_sym_as] = ACTIONS(277), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(219), + [aux_sym__val_number_decimal_token2] = ACTIONS(221), + [aux_sym__val_number_decimal_token3] = ACTIONS(223), + [aux_sym__val_number_decimal_token4] = ACTIONS(225), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [33] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7603), - [sym_cmd_identifier] = STATE(4554), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym_parameter_pipes] = STATE(138), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1847), - [sym__spread_parenthesized] = STATE(567), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym__spread_variable] = STATE(571), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2222), - [sym__val_number_decimal] = STATE(1436), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(2222), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym__spread_record] = STATE(567), - [sym_record_entry] = STATE(6724), - [sym__record_key] = STATE(7516), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7709), + [sym_cmd_identifier] = STATE(4656), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym_parameter_pipes] = STATE(141), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1913), + [sym__spread_parenthesized] = STATE(7465), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym__spread_variable] = STATE(7436), + [sym_val_variable] = STATE(1323), + [sym_val_number] = STATE(2300), + [sym__val_number_decimal] = STATE(1584), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(2300), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym__spread_record] = STATE(7465), + [sym_record_entry] = STATE(7013), + [sym__record_key] = STATE(7872), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(33), - [aux_sym_shebang_repeat1] = STATE(195), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_shebang_repeat1] = STATE(198), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [aux_sym_record_body_repeat1] = STATE(209), - [anon_sym_export] = ACTIONS(249), - [anon_sym_alias] = ACTIONS(251), - [anon_sym_let] = ACTIONS(253), - [anon_sym_let_DASHenv] = ACTIONS(253), - [anon_sym_mut] = ACTIONS(255), - [anon_sym_const] = ACTIONS(257), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(133), - [aux_sym_cmd_identifier_token3] = ACTIONS(133), - [aux_sym_cmd_identifier_token4] = ACTIONS(133), - [aux_sym_cmd_identifier_token5] = ACTIONS(133), - [aux_sym_cmd_identifier_token6] = ACTIONS(133), - [aux_sym_cmd_identifier_token7] = ACTIONS(133), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(133), - [aux_sym_cmd_identifier_token11] = ACTIONS(133), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(133), - [aux_sym_cmd_identifier_token17] = ACTIONS(133), - [aux_sym_cmd_identifier_token18] = ACTIONS(133), - [aux_sym_cmd_identifier_token19] = ACTIONS(133), - [aux_sym_cmd_identifier_token20] = ACTIONS(133), - [aux_sym_cmd_identifier_token21] = ACTIONS(133), - [aux_sym_cmd_identifier_token22] = ACTIONS(133), - [aux_sym_cmd_identifier_token23] = ACTIONS(133), - [aux_sym_cmd_identifier_token24] = ACTIONS(133), - [aux_sym_cmd_identifier_token25] = ACTIONS(133), - [aux_sym_cmd_identifier_token26] = ACTIONS(133), - [aux_sym_cmd_identifier_token27] = ACTIONS(133), - [aux_sym_cmd_identifier_token28] = ACTIONS(133), - [aux_sym_cmd_identifier_token29] = ACTIONS(133), - [aux_sym_cmd_identifier_token30] = ACTIONS(133), - [aux_sym_cmd_identifier_token31] = ACTIONS(133), - [aux_sym_cmd_identifier_token32] = ACTIONS(133), - [aux_sym_cmd_identifier_token33] = ACTIONS(133), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(133), - [aux_sym_cmd_identifier_token36] = ACTIONS(133), - [anon_sym_true] = ACTIONS(135), - [anon_sym_false] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(139), - [aux_sym_cmd_identifier_token39] = ACTIONS(141), - [aux_sym_cmd_identifier_token40] = ACTIONS(141), - [sym__newline] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(259), - [anon_sym_export_DASHenv] = ACTIONS(261), - [anon_sym_extern] = ACTIONS(263), - [anon_sym_module] = ACTIONS(265), - [anon_sym_use] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(269), - [anon_sym_error] = ACTIONS(271), - [anon_sym_list] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(169), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(273), - [anon_sym_loop] = ACTIONS(281), - [anon_sym_make] = ACTIONS(273), - [anon_sym_while] = ACTIONS(283), - [anon_sym_do] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), - [anon_sym_else] = ACTIONS(273), - [anon_sym_match] = ACTIONS(289), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(293), - [anon_sym_catch] = ACTIONS(273), - [anon_sym_return] = ACTIONS(295), - [anon_sym_source] = ACTIONS(297), - [anon_sym_source_DASHenv] = ACTIONS(297), - [anon_sym_register] = ACTIONS(299), - [anon_sym_hide] = ACTIONS(301), - [anon_sym_hide_DASHenv] = ACTIONS(303), - [anon_sym_overlay] = ACTIONS(305), - [anon_sym_new] = ACTIONS(273), - [anon_sym_as] = ACTIONS(273), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(243), + [aux_sym_pipe_element_repeat2] = STATE(361), + [aux_sym_record_body_repeat1] = STATE(212), + [anon_sym_export] = ACTIONS(253), + [anon_sym_alias] = ACTIONS(255), + [anon_sym_let] = ACTIONS(257), + [anon_sym_let_DASHenv] = ACTIONS(257), + [anon_sym_mut] = ACTIONS(259), + [anon_sym_const] = ACTIONS(261), + [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(135), + [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [aux_sym_cmd_identifier_token12] = ACTIONS(135), + [aux_sym_cmd_identifier_token13] = ACTIONS(135), + [aux_sym_cmd_identifier_token14] = ACTIONS(135), + [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [aux_sym_cmd_identifier_token16] = ACTIONS(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(135), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(135), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [anon_sym_true] = ACTIONS(137), + [anon_sym_false] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(141), + [aux_sym_cmd_identifier_token39] = ACTIONS(143), + [aux_sym_cmd_identifier_token40] = ACTIONS(143), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_def] = ACTIONS(263), + [anon_sym_export_DASHenv] = ACTIONS(265), + [anon_sym_extern] = ACTIONS(267), + [anon_sym_module] = ACTIONS(269), + [anon_sym_use] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(163), + [anon_sym_DOLLAR] = ACTIONS(273), + [anon_sym_error] = ACTIONS(275), + [anon_sym_list] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_for] = ACTIONS(283), + [anon_sym_in] = ACTIONS(277), + [anon_sym_loop] = ACTIONS(285), + [anon_sym_make] = ACTIONS(277), + [anon_sym_while] = ACTIONS(287), + [anon_sym_do] = ACTIONS(289), + [anon_sym_if] = ACTIONS(291), + [anon_sym_else] = ACTIONS(277), + [anon_sym_match] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(297), + [anon_sym_catch] = ACTIONS(277), + [anon_sym_return] = ACTIONS(299), + [anon_sym_source] = ACTIONS(301), + [anon_sym_source_DASHenv] = ACTIONS(301), + [anon_sym_register] = ACTIONS(303), + [anon_sym_hide] = ACTIONS(305), + [anon_sym_hide_DASHenv] = ACTIONS(307), + [anon_sym_overlay] = ACTIONS(309), + [anon_sym_new] = ACTIONS(277), + [anon_sym_as] = ACTIONS(277), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(219), + [aux_sym__val_number_decimal_token2] = ACTIONS(221), + [aux_sym__val_number_decimal_token3] = ACTIONS(223), + [aux_sym__val_number_decimal_token4] = ACTIONS(225), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [34] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7417), - [sym_cmd_identifier] = STATE(4554), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym_parameter_pipes] = STATE(136), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1847), - [sym__spread_parenthesized] = STATE(567), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym__spread_variable] = STATE(571), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2222), - [sym__val_number_decimal] = STATE(1436), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(2222), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym__spread_record] = STATE(567), - [sym_record_entry] = STATE(6724), - [sym__record_key] = STATE(7516), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7960), + [sym_cmd_identifier] = STATE(4656), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym_parameter_pipes] = STATE(143), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1913), + [sym__spread_parenthesized] = STATE(7465), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym__spread_variable] = STATE(7436), + [sym_val_variable] = STATE(1323), + [sym_val_number] = STATE(2300), + [sym__val_number_decimal] = STATE(1584), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(2300), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym__spread_record] = STATE(7465), + [sym_record_entry] = STATE(7013), + [sym__record_key] = STATE(7872), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(34), - [aux_sym_shebang_repeat1] = STATE(195), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_shebang_repeat1] = STATE(198), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [aux_sym_record_body_repeat1] = STATE(209), - [anon_sym_export] = ACTIONS(249), - [anon_sym_alias] = ACTIONS(251), - [anon_sym_let] = ACTIONS(253), - [anon_sym_let_DASHenv] = ACTIONS(253), - [anon_sym_mut] = ACTIONS(255), - [anon_sym_const] = ACTIONS(257), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(133), - [aux_sym_cmd_identifier_token3] = ACTIONS(133), - [aux_sym_cmd_identifier_token4] = ACTIONS(133), - [aux_sym_cmd_identifier_token5] = ACTIONS(133), - [aux_sym_cmd_identifier_token6] = ACTIONS(133), - [aux_sym_cmd_identifier_token7] = ACTIONS(133), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(133), - [aux_sym_cmd_identifier_token11] = ACTIONS(133), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(133), - [aux_sym_cmd_identifier_token17] = ACTIONS(133), - [aux_sym_cmd_identifier_token18] = ACTIONS(133), - [aux_sym_cmd_identifier_token19] = ACTIONS(133), - [aux_sym_cmd_identifier_token20] = ACTIONS(133), - [aux_sym_cmd_identifier_token21] = ACTIONS(133), - [aux_sym_cmd_identifier_token22] = ACTIONS(133), - [aux_sym_cmd_identifier_token23] = ACTIONS(133), - [aux_sym_cmd_identifier_token24] = ACTIONS(133), - [aux_sym_cmd_identifier_token25] = ACTIONS(133), - [aux_sym_cmd_identifier_token26] = ACTIONS(133), - [aux_sym_cmd_identifier_token27] = ACTIONS(133), - [aux_sym_cmd_identifier_token28] = ACTIONS(133), - [aux_sym_cmd_identifier_token29] = ACTIONS(133), - [aux_sym_cmd_identifier_token30] = ACTIONS(133), - [aux_sym_cmd_identifier_token31] = ACTIONS(133), - [aux_sym_cmd_identifier_token32] = ACTIONS(133), - [aux_sym_cmd_identifier_token33] = ACTIONS(133), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(133), - [aux_sym_cmd_identifier_token36] = ACTIONS(133), - [anon_sym_true] = ACTIONS(135), - [anon_sym_false] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(139), - [aux_sym_cmd_identifier_token39] = ACTIONS(141), - [aux_sym_cmd_identifier_token40] = ACTIONS(141), - [sym__newline] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(259), - [anon_sym_export_DASHenv] = ACTIONS(261), - [anon_sym_extern] = ACTIONS(263), - [anon_sym_module] = ACTIONS(265), - [anon_sym_use] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(269), - [anon_sym_error] = ACTIONS(271), - [anon_sym_list] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(169), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(273), - [anon_sym_loop] = ACTIONS(281), - [anon_sym_make] = ACTIONS(273), - [anon_sym_while] = ACTIONS(283), - [anon_sym_do] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), - [anon_sym_else] = ACTIONS(273), - [anon_sym_match] = ACTIONS(289), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(293), - [anon_sym_catch] = ACTIONS(273), - [anon_sym_return] = ACTIONS(295), - [anon_sym_source] = ACTIONS(297), - [anon_sym_source_DASHenv] = ACTIONS(297), - [anon_sym_register] = ACTIONS(299), - [anon_sym_hide] = ACTIONS(301), - [anon_sym_hide_DASHenv] = ACTIONS(303), - [anon_sym_overlay] = ACTIONS(305), - [anon_sym_new] = ACTIONS(273), - [anon_sym_as] = ACTIONS(273), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(243), + [aux_sym_pipe_element_repeat2] = STATE(361), + [aux_sym_record_body_repeat1] = STATE(212), + [anon_sym_export] = ACTIONS(253), + [anon_sym_alias] = ACTIONS(255), + [anon_sym_let] = ACTIONS(257), + [anon_sym_let_DASHenv] = ACTIONS(257), + [anon_sym_mut] = ACTIONS(259), + [anon_sym_const] = ACTIONS(261), + [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(135), + [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [aux_sym_cmd_identifier_token12] = ACTIONS(135), + [aux_sym_cmd_identifier_token13] = ACTIONS(135), + [aux_sym_cmd_identifier_token14] = ACTIONS(135), + [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [aux_sym_cmd_identifier_token16] = ACTIONS(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(135), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(135), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [anon_sym_true] = ACTIONS(137), + [anon_sym_false] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(141), + [aux_sym_cmd_identifier_token39] = ACTIONS(143), + [aux_sym_cmd_identifier_token40] = ACTIONS(143), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_def] = ACTIONS(263), + [anon_sym_export_DASHenv] = ACTIONS(265), + [anon_sym_extern] = ACTIONS(267), + [anon_sym_module] = ACTIONS(269), + [anon_sym_use] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(163), + [anon_sym_DOLLAR] = ACTIONS(273), + [anon_sym_error] = ACTIONS(275), + [anon_sym_list] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_for] = ACTIONS(283), + [anon_sym_in] = ACTIONS(277), + [anon_sym_loop] = ACTIONS(285), + [anon_sym_make] = ACTIONS(277), + [anon_sym_while] = ACTIONS(287), + [anon_sym_do] = ACTIONS(289), + [anon_sym_if] = ACTIONS(291), + [anon_sym_else] = ACTIONS(277), + [anon_sym_match] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(297), + [anon_sym_catch] = ACTIONS(277), + [anon_sym_return] = ACTIONS(299), + [anon_sym_source] = ACTIONS(301), + [anon_sym_source_DASHenv] = ACTIONS(301), + [anon_sym_register] = ACTIONS(303), + [anon_sym_hide] = ACTIONS(305), + [anon_sym_hide_DASHenv] = ACTIONS(307), + [anon_sym_overlay] = ACTIONS(309), + [anon_sym_new] = ACTIONS(277), + [anon_sym_as] = ACTIONS(277), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(219), + [aux_sym__val_number_decimal_token2] = ACTIONS(221), + [aux_sym__val_number_decimal_token3] = ACTIONS(223), + [aux_sym__val_number_decimal_token4] = ACTIONS(225), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [35] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7460), - [sym_cmd_identifier] = STATE(4554), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym_parameter_pipes] = STATE(142), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1847), - [sym__spread_parenthesized] = STATE(567), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym__spread_variable] = STATE(571), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2222), - [sym__val_number_decimal] = STATE(1436), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(2222), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym__spread_record] = STATE(567), - [sym_record_entry] = STATE(6724), - [sym__record_key] = STATE(7516), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7664), + [sym_cmd_identifier] = STATE(4656), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym_parameter_pipes] = STATE(144), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1913), + [sym__spread_parenthesized] = STATE(7465), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym__spread_variable] = STATE(7436), + [sym_val_variable] = STATE(1323), + [sym_val_number] = STATE(2300), + [sym__val_number_decimal] = STATE(1584), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(2300), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym__spread_record] = STATE(7465), + [sym_record_entry] = STATE(7013), + [sym__record_key] = STATE(7872), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(35), - [aux_sym_shebang_repeat1] = STATE(195), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_shebang_repeat1] = STATE(198), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [aux_sym_record_body_repeat1] = STATE(209), - [anon_sym_export] = ACTIONS(249), - [anon_sym_alias] = ACTIONS(251), - [anon_sym_let] = ACTIONS(253), - [anon_sym_let_DASHenv] = ACTIONS(253), - [anon_sym_mut] = ACTIONS(255), - [anon_sym_const] = ACTIONS(257), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(133), - [aux_sym_cmd_identifier_token3] = ACTIONS(133), - [aux_sym_cmd_identifier_token4] = ACTIONS(133), - [aux_sym_cmd_identifier_token5] = ACTIONS(133), - [aux_sym_cmd_identifier_token6] = ACTIONS(133), - [aux_sym_cmd_identifier_token7] = ACTIONS(133), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(133), - [aux_sym_cmd_identifier_token11] = ACTIONS(133), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(133), - [aux_sym_cmd_identifier_token17] = ACTIONS(133), - [aux_sym_cmd_identifier_token18] = ACTIONS(133), - [aux_sym_cmd_identifier_token19] = ACTIONS(133), - [aux_sym_cmd_identifier_token20] = ACTIONS(133), - [aux_sym_cmd_identifier_token21] = ACTIONS(133), - [aux_sym_cmd_identifier_token22] = ACTIONS(133), - [aux_sym_cmd_identifier_token23] = ACTIONS(133), - [aux_sym_cmd_identifier_token24] = ACTIONS(133), - [aux_sym_cmd_identifier_token25] = ACTIONS(133), - [aux_sym_cmd_identifier_token26] = ACTIONS(133), - [aux_sym_cmd_identifier_token27] = ACTIONS(133), - [aux_sym_cmd_identifier_token28] = ACTIONS(133), - [aux_sym_cmd_identifier_token29] = ACTIONS(133), - [aux_sym_cmd_identifier_token30] = ACTIONS(133), - [aux_sym_cmd_identifier_token31] = ACTIONS(133), - [aux_sym_cmd_identifier_token32] = ACTIONS(133), - [aux_sym_cmd_identifier_token33] = ACTIONS(133), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(133), - [aux_sym_cmd_identifier_token36] = ACTIONS(133), - [anon_sym_true] = ACTIONS(135), - [anon_sym_false] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(139), - [aux_sym_cmd_identifier_token39] = ACTIONS(141), - [aux_sym_cmd_identifier_token40] = ACTIONS(141), - [sym__newline] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(259), - [anon_sym_export_DASHenv] = ACTIONS(261), - [anon_sym_extern] = ACTIONS(263), - [anon_sym_module] = ACTIONS(265), - [anon_sym_use] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(269), - [anon_sym_error] = ACTIONS(271), - [anon_sym_list] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(169), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(273), - [anon_sym_loop] = ACTIONS(281), - [anon_sym_make] = ACTIONS(273), - [anon_sym_while] = ACTIONS(283), - [anon_sym_do] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), - [anon_sym_else] = ACTIONS(273), - [anon_sym_match] = ACTIONS(289), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(293), - [anon_sym_catch] = ACTIONS(273), - [anon_sym_return] = ACTIONS(295), - [anon_sym_source] = ACTIONS(297), - [anon_sym_source_DASHenv] = ACTIONS(297), - [anon_sym_register] = ACTIONS(299), - [anon_sym_hide] = ACTIONS(301), - [anon_sym_hide_DASHenv] = ACTIONS(303), - [anon_sym_overlay] = ACTIONS(305), - [anon_sym_new] = ACTIONS(273), - [anon_sym_as] = ACTIONS(273), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(243), + [aux_sym_pipe_element_repeat2] = STATE(361), + [aux_sym_record_body_repeat1] = STATE(212), + [anon_sym_export] = ACTIONS(253), + [anon_sym_alias] = ACTIONS(255), + [anon_sym_let] = ACTIONS(257), + [anon_sym_let_DASHenv] = ACTIONS(257), + [anon_sym_mut] = ACTIONS(259), + [anon_sym_const] = ACTIONS(261), + [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(135), + [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [aux_sym_cmd_identifier_token12] = ACTIONS(135), + [aux_sym_cmd_identifier_token13] = ACTIONS(135), + [aux_sym_cmd_identifier_token14] = ACTIONS(135), + [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [aux_sym_cmd_identifier_token16] = ACTIONS(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(135), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(135), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [anon_sym_true] = ACTIONS(137), + [anon_sym_false] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(141), + [aux_sym_cmd_identifier_token39] = ACTIONS(143), + [aux_sym_cmd_identifier_token40] = ACTIONS(143), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_def] = ACTIONS(263), + [anon_sym_export_DASHenv] = ACTIONS(265), + [anon_sym_extern] = ACTIONS(267), + [anon_sym_module] = ACTIONS(269), + [anon_sym_use] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(163), + [anon_sym_DOLLAR] = ACTIONS(273), + [anon_sym_error] = ACTIONS(275), + [anon_sym_list] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_for] = ACTIONS(283), + [anon_sym_in] = ACTIONS(277), + [anon_sym_loop] = ACTIONS(285), + [anon_sym_make] = ACTIONS(277), + [anon_sym_while] = ACTIONS(287), + [anon_sym_do] = ACTIONS(289), + [anon_sym_if] = ACTIONS(291), + [anon_sym_else] = ACTIONS(277), + [anon_sym_match] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(297), + [anon_sym_catch] = ACTIONS(277), + [anon_sym_return] = ACTIONS(299), + [anon_sym_source] = ACTIONS(301), + [anon_sym_source_DASHenv] = ACTIONS(301), + [anon_sym_register] = ACTIONS(303), + [anon_sym_hide] = ACTIONS(305), + [anon_sym_hide_DASHenv] = ACTIONS(307), + [anon_sym_overlay] = ACTIONS(309), + [anon_sym_new] = ACTIONS(277), + [anon_sym_as] = ACTIONS(277), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(219), + [aux_sym__val_number_decimal_token2] = ACTIONS(221), + [aux_sym__val_number_decimal_token3] = ACTIONS(223), + [aux_sym__val_number_decimal_token4] = ACTIONS(225), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [36] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7723), - [sym_cmd_identifier] = STATE(4554), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym_parameter_pipes] = STATE(144), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1847), - [sym__spread_parenthesized] = STATE(567), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym__spread_variable] = STATE(571), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2222), - [sym__val_number_decimal] = STATE(1436), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(2222), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym__spread_record] = STATE(567), - [sym_record_entry] = STATE(6724), - [sym__record_key] = STATE(7516), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7737), + [sym_cmd_identifier] = STATE(4656), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym_parameter_pipes] = STATE(137), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1913), + [sym__spread_parenthesized] = STATE(7465), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym__spread_variable] = STATE(7436), + [sym_val_variable] = STATE(1323), + [sym_val_number] = STATE(2300), + [sym__val_number_decimal] = STATE(1584), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(2300), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym__spread_record] = STATE(7465), + [sym_record_entry] = STATE(7013), + [sym__record_key] = STATE(7872), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(36), - [aux_sym_shebang_repeat1] = STATE(195), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_shebang_repeat1] = STATE(198), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [aux_sym_record_body_repeat1] = STATE(209), - [anon_sym_export] = ACTIONS(249), - [anon_sym_alias] = ACTIONS(251), - [anon_sym_let] = ACTIONS(253), - [anon_sym_let_DASHenv] = ACTIONS(253), - [anon_sym_mut] = ACTIONS(255), - [anon_sym_const] = ACTIONS(257), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(133), - [aux_sym_cmd_identifier_token3] = ACTIONS(133), - [aux_sym_cmd_identifier_token4] = ACTIONS(133), - [aux_sym_cmd_identifier_token5] = ACTIONS(133), - [aux_sym_cmd_identifier_token6] = ACTIONS(133), - [aux_sym_cmd_identifier_token7] = ACTIONS(133), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(133), - [aux_sym_cmd_identifier_token11] = ACTIONS(133), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(133), - [aux_sym_cmd_identifier_token17] = ACTIONS(133), - [aux_sym_cmd_identifier_token18] = ACTIONS(133), - [aux_sym_cmd_identifier_token19] = ACTIONS(133), - [aux_sym_cmd_identifier_token20] = ACTIONS(133), - [aux_sym_cmd_identifier_token21] = ACTIONS(133), - [aux_sym_cmd_identifier_token22] = ACTIONS(133), - [aux_sym_cmd_identifier_token23] = ACTIONS(133), - [aux_sym_cmd_identifier_token24] = ACTIONS(133), - [aux_sym_cmd_identifier_token25] = ACTIONS(133), - [aux_sym_cmd_identifier_token26] = ACTIONS(133), - [aux_sym_cmd_identifier_token27] = ACTIONS(133), - [aux_sym_cmd_identifier_token28] = ACTIONS(133), - [aux_sym_cmd_identifier_token29] = ACTIONS(133), - [aux_sym_cmd_identifier_token30] = ACTIONS(133), - [aux_sym_cmd_identifier_token31] = ACTIONS(133), - [aux_sym_cmd_identifier_token32] = ACTIONS(133), - [aux_sym_cmd_identifier_token33] = ACTIONS(133), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(133), - [aux_sym_cmd_identifier_token36] = ACTIONS(133), - [anon_sym_true] = ACTIONS(135), - [anon_sym_false] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(139), - [aux_sym_cmd_identifier_token39] = ACTIONS(141), - [aux_sym_cmd_identifier_token40] = ACTIONS(141), - [sym__newline] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(259), - [anon_sym_export_DASHenv] = ACTIONS(261), - [anon_sym_extern] = ACTIONS(263), - [anon_sym_module] = ACTIONS(265), - [anon_sym_use] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(269), - [anon_sym_error] = ACTIONS(271), - [anon_sym_list] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(169), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(273), - [anon_sym_loop] = ACTIONS(281), - [anon_sym_make] = ACTIONS(273), - [anon_sym_while] = ACTIONS(283), - [anon_sym_do] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), - [anon_sym_else] = ACTIONS(273), - [anon_sym_match] = ACTIONS(289), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(293), - [anon_sym_catch] = ACTIONS(273), - [anon_sym_return] = ACTIONS(295), - [anon_sym_source] = ACTIONS(297), - [anon_sym_source_DASHenv] = ACTIONS(297), - [anon_sym_register] = ACTIONS(299), - [anon_sym_hide] = ACTIONS(301), - [anon_sym_hide_DASHenv] = ACTIONS(303), - [anon_sym_overlay] = ACTIONS(305), - [anon_sym_new] = ACTIONS(273), - [anon_sym_as] = ACTIONS(273), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(243), + [aux_sym_pipe_element_repeat2] = STATE(361), + [aux_sym_record_body_repeat1] = STATE(212), + [anon_sym_export] = ACTIONS(253), + [anon_sym_alias] = ACTIONS(255), + [anon_sym_let] = ACTIONS(257), + [anon_sym_let_DASHenv] = ACTIONS(257), + [anon_sym_mut] = ACTIONS(259), + [anon_sym_const] = ACTIONS(261), + [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(135), + [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [aux_sym_cmd_identifier_token12] = ACTIONS(135), + [aux_sym_cmd_identifier_token13] = ACTIONS(135), + [aux_sym_cmd_identifier_token14] = ACTIONS(135), + [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [aux_sym_cmd_identifier_token16] = ACTIONS(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(135), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(135), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [anon_sym_true] = ACTIONS(137), + [anon_sym_false] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(141), + [aux_sym_cmd_identifier_token39] = ACTIONS(143), + [aux_sym_cmd_identifier_token40] = ACTIONS(143), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_def] = ACTIONS(263), + [anon_sym_export_DASHenv] = ACTIONS(265), + [anon_sym_extern] = ACTIONS(267), + [anon_sym_module] = ACTIONS(269), + [anon_sym_use] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(163), + [anon_sym_DOLLAR] = ACTIONS(273), + [anon_sym_error] = ACTIONS(275), + [anon_sym_list] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_for] = ACTIONS(283), + [anon_sym_in] = ACTIONS(277), + [anon_sym_loop] = ACTIONS(285), + [anon_sym_make] = ACTIONS(277), + [anon_sym_while] = ACTIONS(287), + [anon_sym_do] = ACTIONS(289), + [anon_sym_if] = ACTIONS(291), + [anon_sym_else] = ACTIONS(277), + [anon_sym_match] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(297), + [anon_sym_catch] = ACTIONS(277), + [anon_sym_return] = ACTIONS(299), + [anon_sym_source] = ACTIONS(301), + [anon_sym_source_DASHenv] = ACTIONS(301), + [anon_sym_register] = ACTIONS(303), + [anon_sym_hide] = ACTIONS(305), + [anon_sym_hide_DASHenv] = ACTIONS(307), + [anon_sym_overlay] = ACTIONS(309), + [anon_sym_new] = ACTIONS(277), + [anon_sym_as] = ACTIONS(277), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(219), + [aux_sym__val_number_decimal_token2] = ACTIONS(221), + [aux_sym__val_number_decimal_token3] = ACTIONS(223), + [aux_sym__val_number_decimal_token4] = ACTIONS(225), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [37] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7557), - [sym_cmd_identifier] = STATE(4554), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7823), + [sym_cmd_identifier] = STATE(4656), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), [sym_parameter_pipes] = STATE(147), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1847), - [sym__spread_parenthesized] = STATE(567), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym__spread_variable] = STATE(571), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2222), - [sym__val_number_decimal] = STATE(1436), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(2222), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym__spread_record] = STATE(567), - [sym_record_entry] = STATE(6724), - [sym__record_key] = STATE(7516), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1913), + [sym__spread_parenthesized] = STATE(7465), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym__spread_variable] = STATE(7436), + [sym_val_variable] = STATE(1323), + [sym_val_number] = STATE(2300), + [sym__val_number_decimal] = STATE(1584), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(2300), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym__spread_record] = STATE(7465), + [sym_record_entry] = STATE(7013), + [sym__record_key] = STATE(7872), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(37), - [aux_sym_shebang_repeat1] = STATE(195), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_shebang_repeat1] = STATE(198), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [aux_sym_record_body_repeat1] = STATE(209), - [anon_sym_export] = ACTIONS(249), - [anon_sym_alias] = ACTIONS(251), - [anon_sym_let] = ACTIONS(253), - [anon_sym_let_DASHenv] = ACTIONS(253), - [anon_sym_mut] = ACTIONS(255), - [anon_sym_const] = ACTIONS(257), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(133), - [aux_sym_cmd_identifier_token3] = ACTIONS(133), - [aux_sym_cmd_identifier_token4] = ACTIONS(133), - [aux_sym_cmd_identifier_token5] = ACTIONS(133), - [aux_sym_cmd_identifier_token6] = ACTIONS(133), - [aux_sym_cmd_identifier_token7] = ACTIONS(133), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(133), - [aux_sym_cmd_identifier_token11] = ACTIONS(133), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(133), - [aux_sym_cmd_identifier_token17] = ACTIONS(133), - [aux_sym_cmd_identifier_token18] = ACTIONS(133), - [aux_sym_cmd_identifier_token19] = ACTIONS(133), - [aux_sym_cmd_identifier_token20] = ACTIONS(133), - [aux_sym_cmd_identifier_token21] = ACTIONS(133), - [aux_sym_cmd_identifier_token22] = ACTIONS(133), - [aux_sym_cmd_identifier_token23] = ACTIONS(133), - [aux_sym_cmd_identifier_token24] = ACTIONS(133), - [aux_sym_cmd_identifier_token25] = ACTIONS(133), - [aux_sym_cmd_identifier_token26] = ACTIONS(133), - [aux_sym_cmd_identifier_token27] = ACTIONS(133), - [aux_sym_cmd_identifier_token28] = ACTIONS(133), - [aux_sym_cmd_identifier_token29] = ACTIONS(133), - [aux_sym_cmd_identifier_token30] = ACTIONS(133), - [aux_sym_cmd_identifier_token31] = ACTIONS(133), - [aux_sym_cmd_identifier_token32] = ACTIONS(133), - [aux_sym_cmd_identifier_token33] = ACTIONS(133), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(133), - [aux_sym_cmd_identifier_token36] = ACTIONS(133), - [anon_sym_true] = ACTIONS(135), - [anon_sym_false] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(139), - [aux_sym_cmd_identifier_token39] = ACTIONS(141), - [aux_sym_cmd_identifier_token40] = ACTIONS(141), - [sym__newline] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(259), - [anon_sym_export_DASHenv] = ACTIONS(261), - [anon_sym_extern] = ACTIONS(263), - [anon_sym_module] = ACTIONS(265), - [anon_sym_use] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(269), - [anon_sym_error] = ACTIONS(271), - [anon_sym_list] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(169), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(273), - [anon_sym_loop] = ACTIONS(281), - [anon_sym_make] = ACTIONS(273), - [anon_sym_while] = ACTIONS(283), - [anon_sym_do] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), - [anon_sym_else] = ACTIONS(273), - [anon_sym_match] = ACTIONS(289), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(293), - [anon_sym_catch] = ACTIONS(273), - [anon_sym_return] = ACTIONS(295), - [anon_sym_source] = ACTIONS(297), - [anon_sym_source_DASHenv] = ACTIONS(297), - [anon_sym_register] = ACTIONS(299), - [anon_sym_hide] = ACTIONS(301), - [anon_sym_hide_DASHenv] = ACTIONS(303), - [anon_sym_overlay] = ACTIONS(305), - [anon_sym_new] = ACTIONS(273), - [anon_sym_as] = ACTIONS(273), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(243), + [aux_sym_pipe_element_repeat2] = STATE(361), + [aux_sym_record_body_repeat1] = STATE(212), + [anon_sym_export] = ACTIONS(253), + [anon_sym_alias] = ACTIONS(255), + [anon_sym_let] = ACTIONS(257), + [anon_sym_let_DASHenv] = ACTIONS(257), + [anon_sym_mut] = ACTIONS(259), + [anon_sym_const] = ACTIONS(261), + [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(135), + [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [aux_sym_cmd_identifier_token12] = ACTIONS(135), + [aux_sym_cmd_identifier_token13] = ACTIONS(135), + [aux_sym_cmd_identifier_token14] = ACTIONS(135), + [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [aux_sym_cmd_identifier_token16] = ACTIONS(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(135), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(135), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [anon_sym_true] = ACTIONS(137), + [anon_sym_false] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(141), + [aux_sym_cmd_identifier_token39] = ACTIONS(143), + [aux_sym_cmd_identifier_token40] = ACTIONS(143), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_def] = ACTIONS(263), + [anon_sym_export_DASHenv] = ACTIONS(265), + [anon_sym_extern] = ACTIONS(267), + [anon_sym_module] = ACTIONS(269), + [anon_sym_use] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(163), + [anon_sym_DOLLAR] = ACTIONS(273), + [anon_sym_error] = ACTIONS(275), + [anon_sym_list] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_for] = ACTIONS(283), + [anon_sym_in] = ACTIONS(277), + [anon_sym_loop] = ACTIONS(285), + [anon_sym_make] = ACTIONS(277), + [anon_sym_while] = ACTIONS(287), + [anon_sym_do] = ACTIONS(289), + [anon_sym_if] = ACTIONS(291), + [anon_sym_else] = ACTIONS(277), + [anon_sym_match] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(297), + [anon_sym_catch] = ACTIONS(277), + [anon_sym_return] = ACTIONS(299), + [anon_sym_source] = ACTIONS(301), + [anon_sym_source_DASHenv] = ACTIONS(301), + [anon_sym_register] = ACTIONS(303), + [anon_sym_hide] = ACTIONS(305), + [anon_sym_hide_DASHenv] = ACTIONS(307), + [anon_sym_overlay] = ACTIONS(309), + [anon_sym_new] = ACTIONS(277), + [anon_sym_as] = ACTIONS(277), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(219), + [aux_sym__val_number_decimal_token2] = ACTIONS(221), + [aux_sym__val_number_decimal_token3] = ACTIONS(223), + [aux_sym__val_number_decimal_token4] = ACTIONS(225), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [38] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7689), - [sym_cmd_identifier] = STATE(4554), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7966), + [sym_cmd_identifier] = STATE(4656), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), [sym_parameter_pipes] = STATE(149), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1847), - [sym__spread_parenthesized] = STATE(567), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym__spread_variable] = STATE(571), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2222), - [sym__val_number_decimal] = STATE(1436), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(2222), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym__spread_record] = STATE(567), - [sym_record_entry] = STATE(6724), - [sym__record_key] = STATE(7516), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1913), + [sym__spread_parenthesized] = STATE(7465), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym__spread_variable] = STATE(7436), + [sym_val_variable] = STATE(1323), + [sym_val_number] = STATE(2300), + [sym__val_number_decimal] = STATE(1584), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(2300), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym__spread_record] = STATE(7465), + [sym_record_entry] = STATE(7013), + [sym__record_key] = STATE(7872), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(38), - [aux_sym_shebang_repeat1] = STATE(195), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_shebang_repeat1] = STATE(198), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [aux_sym_record_body_repeat1] = STATE(209), - [anon_sym_export] = ACTIONS(249), - [anon_sym_alias] = ACTIONS(251), - [anon_sym_let] = ACTIONS(253), - [anon_sym_let_DASHenv] = ACTIONS(253), - [anon_sym_mut] = ACTIONS(255), - [anon_sym_const] = ACTIONS(257), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(133), - [aux_sym_cmd_identifier_token3] = ACTIONS(133), - [aux_sym_cmd_identifier_token4] = ACTIONS(133), - [aux_sym_cmd_identifier_token5] = ACTIONS(133), - [aux_sym_cmd_identifier_token6] = ACTIONS(133), - [aux_sym_cmd_identifier_token7] = ACTIONS(133), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(133), - [aux_sym_cmd_identifier_token11] = ACTIONS(133), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(133), - [aux_sym_cmd_identifier_token17] = ACTIONS(133), - [aux_sym_cmd_identifier_token18] = ACTIONS(133), - [aux_sym_cmd_identifier_token19] = ACTIONS(133), - [aux_sym_cmd_identifier_token20] = ACTIONS(133), - [aux_sym_cmd_identifier_token21] = ACTIONS(133), - [aux_sym_cmd_identifier_token22] = ACTIONS(133), - [aux_sym_cmd_identifier_token23] = ACTIONS(133), - [aux_sym_cmd_identifier_token24] = ACTIONS(133), - [aux_sym_cmd_identifier_token25] = ACTIONS(133), - [aux_sym_cmd_identifier_token26] = ACTIONS(133), - [aux_sym_cmd_identifier_token27] = ACTIONS(133), - [aux_sym_cmd_identifier_token28] = ACTIONS(133), - [aux_sym_cmd_identifier_token29] = ACTIONS(133), - [aux_sym_cmd_identifier_token30] = ACTIONS(133), - [aux_sym_cmd_identifier_token31] = ACTIONS(133), - [aux_sym_cmd_identifier_token32] = ACTIONS(133), - [aux_sym_cmd_identifier_token33] = ACTIONS(133), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(133), - [aux_sym_cmd_identifier_token36] = ACTIONS(133), - [anon_sym_true] = ACTIONS(135), - [anon_sym_false] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(139), - [aux_sym_cmd_identifier_token39] = ACTIONS(141), - [aux_sym_cmd_identifier_token40] = ACTIONS(141), - [sym__newline] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(259), - [anon_sym_export_DASHenv] = ACTIONS(261), - [anon_sym_extern] = ACTIONS(263), - [anon_sym_module] = ACTIONS(265), - [anon_sym_use] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(269), - [anon_sym_error] = ACTIONS(271), - [anon_sym_list] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(169), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(273), - [anon_sym_loop] = ACTIONS(281), - [anon_sym_make] = ACTIONS(273), - [anon_sym_while] = ACTIONS(283), - [anon_sym_do] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), - [anon_sym_else] = ACTIONS(273), - [anon_sym_match] = ACTIONS(289), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(293), - [anon_sym_catch] = ACTIONS(273), - [anon_sym_return] = ACTIONS(295), - [anon_sym_source] = ACTIONS(297), - [anon_sym_source_DASHenv] = ACTIONS(297), - [anon_sym_register] = ACTIONS(299), - [anon_sym_hide] = ACTIONS(301), - [anon_sym_hide_DASHenv] = ACTIONS(303), - [anon_sym_overlay] = ACTIONS(305), - [anon_sym_new] = ACTIONS(273), - [anon_sym_as] = ACTIONS(273), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(243), + [aux_sym_pipe_element_repeat2] = STATE(361), + [aux_sym_record_body_repeat1] = STATE(212), + [anon_sym_export] = ACTIONS(253), + [anon_sym_alias] = ACTIONS(255), + [anon_sym_let] = ACTIONS(257), + [anon_sym_let_DASHenv] = ACTIONS(257), + [anon_sym_mut] = ACTIONS(259), + [anon_sym_const] = ACTIONS(261), + [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(135), + [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [aux_sym_cmd_identifier_token12] = ACTIONS(135), + [aux_sym_cmd_identifier_token13] = ACTIONS(135), + [aux_sym_cmd_identifier_token14] = ACTIONS(135), + [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [aux_sym_cmd_identifier_token16] = ACTIONS(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(135), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(135), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [anon_sym_true] = ACTIONS(137), + [anon_sym_false] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(141), + [aux_sym_cmd_identifier_token39] = ACTIONS(143), + [aux_sym_cmd_identifier_token40] = ACTIONS(143), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_def] = ACTIONS(263), + [anon_sym_export_DASHenv] = ACTIONS(265), + [anon_sym_extern] = ACTIONS(267), + [anon_sym_module] = ACTIONS(269), + [anon_sym_use] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(163), + [anon_sym_DOLLAR] = ACTIONS(273), + [anon_sym_error] = ACTIONS(275), + [anon_sym_list] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_for] = ACTIONS(283), + [anon_sym_in] = ACTIONS(277), + [anon_sym_loop] = ACTIONS(285), + [anon_sym_make] = ACTIONS(277), + [anon_sym_while] = ACTIONS(287), + [anon_sym_do] = ACTIONS(289), + [anon_sym_if] = ACTIONS(291), + [anon_sym_else] = ACTIONS(277), + [anon_sym_match] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(297), + [anon_sym_catch] = ACTIONS(277), + [anon_sym_return] = ACTIONS(299), + [anon_sym_source] = ACTIONS(301), + [anon_sym_source_DASHenv] = ACTIONS(301), + [anon_sym_register] = ACTIONS(303), + [anon_sym_hide] = ACTIONS(305), + [anon_sym_hide_DASHenv] = ACTIONS(307), + [anon_sym_overlay] = ACTIONS(309), + [anon_sym_new] = ACTIONS(277), + [anon_sym_as] = ACTIONS(277), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(219), + [aux_sym__val_number_decimal_token2] = ACTIONS(221), + [aux_sym__val_number_decimal_token3] = ACTIONS(223), + [aux_sym__val_number_decimal_token4] = ACTIONS(225), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [39] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7399), - [sym_cmd_identifier] = STATE(4554), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym_parameter_pipes] = STATE(132), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1847), - [sym__spread_parenthesized] = STATE(567), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym__spread_variable] = STATE(571), - [sym_val_variable] = STATE(1267), - [sym_val_number] = STATE(2222), - [sym__val_number_decimal] = STATE(1436), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(2222), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym__spread_record] = STATE(567), - [sym_record_entry] = STATE(6724), - [sym__record_key] = STATE(7516), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(8059), + [sym_cmd_identifier] = STATE(4656), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym_parameter_pipes] = STATE(151), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1913), + [sym__spread_parenthesized] = STATE(7465), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym__spread_variable] = STATE(7436), + [sym_val_variable] = STATE(1323), + [sym_val_number] = STATE(2300), + [sym__val_number_decimal] = STATE(1584), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(2300), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym__spread_record] = STATE(7465), + [sym_record_entry] = STATE(7013), + [sym__record_key] = STATE(7872), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(39), - [aux_sym_shebang_repeat1] = STATE(195), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_shebang_repeat1] = STATE(198), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [aux_sym_record_body_repeat1] = STATE(209), - [anon_sym_export] = ACTIONS(249), - [anon_sym_alias] = ACTIONS(251), - [anon_sym_let] = ACTIONS(253), - [anon_sym_let_DASHenv] = ACTIONS(253), - [anon_sym_mut] = ACTIONS(255), - [anon_sym_const] = ACTIONS(257), - [aux_sym_cmd_identifier_token1] = ACTIONS(133), - [aux_sym_cmd_identifier_token2] = ACTIONS(133), - [aux_sym_cmd_identifier_token3] = ACTIONS(133), - [aux_sym_cmd_identifier_token4] = ACTIONS(133), - [aux_sym_cmd_identifier_token5] = ACTIONS(133), - [aux_sym_cmd_identifier_token6] = ACTIONS(133), - [aux_sym_cmd_identifier_token7] = ACTIONS(133), - [aux_sym_cmd_identifier_token8] = ACTIONS(133), - [aux_sym_cmd_identifier_token9] = ACTIONS(133), - [aux_sym_cmd_identifier_token10] = ACTIONS(133), - [aux_sym_cmd_identifier_token11] = ACTIONS(133), - [aux_sym_cmd_identifier_token12] = ACTIONS(133), - [aux_sym_cmd_identifier_token13] = ACTIONS(133), - [aux_sym_cmd_identifier_token14] = ACTIONS(133), - [aux_sym_cmd_identifier_token15] = ACTIONS(133), - [aux_sym_cmd_identifier_token16] = ACTIONS(133), - [aux_sym_cmd_identifier_token17] = ACTIONS(133), - [aux_sym_cmd_identifier_token18] = ACTIONS(133), - [aux_sym_cmd_identifier_token19] = ACTIONS(133), - [aux_sym_cmd_identifier_token20] = ACTIONS(133), - [aux_sym_cmd_identifier_token21] = ACTIONS(133), - [aux_sym_cmd_identifier_token22] = ACTIONS(133), - [aux_sym_cmd_identifier_token23] = ACTIONS(133), - [aux_sym_cmd_identifier_token24] = ACTIONS(133), - [aux_sym_cmd_identifier_token25] = ACTIONS(133), - [aux_sym_cmd_identifier_token26] = ACTIONS(133), - [aux_sym_cmd_identifier_token27] = ACTIONS(133), - [aux_sym_cmd_identifier_token28] = ACTIONS(133), - [aux_sym_cmd_identifier_token29] = ACTIONS(133), - [aux_sym_cmd_identifier_token30] = ACTIONS(133), - [aux_sym_cmd_identifier_token31] = ACTIONS(133), - [aux_sym_cmd_identifier_token32] = ACTIONS(133), - [aux_sym_cmd_identifier_token33] = ACTIONS(133), - [aux_sym_cmd_identifier_token34] = ACTIONS(133), - [aux_sym_cmd_identifier_token35] = ACTIONS(133), - [aux_sym_cmd_identifier_token36] = ACTIONS(133), - [anon_sym_true] = ACTIONS(135), - [anon_sym_false] = ACTIONS(135), - [anon_sym_null] = ACTIONS(137), - [aux_sym_cmd_identifier_token38] = ACTIONS(139), - [aux_sym_cmd_identifier_token39] = ACTIONS(141), - [aux_sym_cmd_identifier_token40] = ACTIONS(141), - [sym__newline] = ACTIONS(143), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(259), - [anon_sym_export_DASHenv] = ACTIONS(261), - [anon_sym_extern] = ACTIONS(263), - [anon_sym_module] = ACTIONS(265), - [anon_sym_use] = ACTIONS(267), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_DOLLAR] = ACTIONS(269), - [anon_sym_error] = ACTIONS(271), - [anon_sym_list] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(169), - [anon_sym_break] = ACTIONS(275), - [anon_sym_continue] = ACTIONS(277), - [anon_sym_for] = ACTIONS(279), - [anon_sym_in] = ACTIONS(273), - [anon_sym_loop] = ACTIONS(281), - [anon_sym_make] = ACTIONS(273), - [anon_sym_while] = ACTIONS(283), - [anon_sym_do] = ACTIONS(285), - [anon_sym_if] = ACTIONS(287), - [anon_sym_else] = ACTIONS(273), - [anon_sym_match] = ACTIONS(289), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(293), - [anon_sym_catch] = ACTIONS(273), - [anon_sym_return] = ACTIONS(295), - [anon_sym_source] = ACTIONS(297), - [anon_sym_source_DASHenv] = ACTIONS(297), - [anon_sym_register] = ACTIONS(299), - [anon_sym_hide] = ACTIONS(301), - [anon_sym_hide_DASHenv] = ACTIONS(303), - [anon_sym_overlay] = ACTIONS(305), - [anon_sym_new] = ACTIONS(273), - [anon_sym_as] = ACTIONS(273), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(217), - [aux_sym__val_number_decimal_token2] = ACTIONS(219), - [aux_sym__val_number_decimal_token3] = ACTIONS(221), - [aux_sym__val_number_decimal_token4] = ACTIONS(223), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(243), + [aux_sym_pipe_element_repeat2] = STATE(361), + [aux_sym_record_body_repeat1] = STATE(212), + [anon_sym_export] = ACTIONS(253), + [anon_sym_alias] = ACTIONS(255), + [anon_sym_let] = ACTIONS(257), + [anon_sym_let_DASHenv] = ACTIONS(257), + [anon_sym_mut] = ACTIONS(259), + [anon_sym_const] = ACTIONS(261), + [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(135), + [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [aux_sym_cmd_identifier_token12] = ACTIONS(135), + [aux_sym_cmd_identifier_token13] = ACTIONS(135), + [aux_sym_cmd_identifier_token14] = ACTIONS(135), + [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [aux_sym_cmd_identifier_token16] = ACTIONS(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(135), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(135), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [anon_sym_true] = ACTIONS(137), + [anon_sym_false] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(141), + [aux_sym_cmd_identifier_token39] = ACTIONS(143), + [aux_sym_cmd_identifier_token40] = ACTIONS(143), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_def] = ACTIONS(263), + [anon_sym_export_DASHenv] = ACTIONS(265), + [anon_sym_extern] = ACTIONS(267), + [anon_sym_module] = ACTIONS(269), + [anon_sym_use] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(163), + [anon_sym_DOLLAR] = ACTIONS(273), + [anon_sym_error] = ACTIONS(275), + [anon_sym_list] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_for] = ACTIONS(283), + [anon_sym_in] = ACTIONS(277), + [anon_sym_loop] = ACTIONS(285), + [anon_sym_make] = ACTIONS(277), + [anon_sym_while] = ACTIONS(287), + [anon_sym_do] = ACTIONS(289), + [anon_sym_if] = ACTIONS(291), + [anon_sym_else] = ACTIONS(277), + [anon_sym_match] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(297), + [anon_sym_catch] = ACTIONS(277), + [anon_sym_return] = ACTIONS(299), + [anon_sym_source] = ACTIONS(301), + [anon_sym_source_DASHenv] = ACTIONS(301), + [anon_sym_register] = ACTIONS(303), + [anon_sym_hide] = ACTIONS(305), + [anon_sym_hide_DASHenv] = ACTIONS(307), + [anon_sym_overlay] = ACTIONS(309), + [anon_sym_new] = ACTIONS(277), + [anon_sym_as] = ACTIONS(277), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(219), + [aux_sym__val_number_decimal_token2] = ACTIONS(221), + [aux_sym__val_number_decimal_token3] = ACTIONS(223), + [aux_sym__val_number_decimal_token4] = ACTIONS(225), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [40] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7394), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym_parameter_pipes] = STATE(130), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1445), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym_val_variable] = STATE(1268), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1465), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(8040), + [sym_cmd_identifier] = STATE(4656), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym_parameter_pipes] = STATE(153), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1913), + [sym__spread_parenthesized] = STATE(7465), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym__spread_variable] = STATE(7436), + [sym_val_variable] = STATE(1323), + [sym_val_number] = STATE(2300), + [sym__val_number_decimal] = STATE(1584), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(2300), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym__spread_record] = STATE(7465), + [sym_record_entry] = STATE(7013), + [sym__record_key] = STATE(7872), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(40), - [aux_sym_shebang_repeat1] = STATE(48), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_shebang_repeat1] = STATE(198), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), - [sym__newline] = ACTIONS(379), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(415), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_pipe_element_repeat2] = STATE(361), + [aux_sym_record_body_repeat1] = STATE(212), + [anon_sym_export] = ACTIONS(253), + [anon_sym_alias] = ACTIONS(255), + [anon_sym_let] = ACTIONS(257), + [anon_sym_let_DASHenv] = ACTIONS(257), + [anon_sym_mut] = ACTIONS(259), + [anon_sym_const] = ACTIONS(261), + [aux_sym_cmd_identifier_token1] = ACTIONS(135), + [aux_sym_cmd_identifier_token2] = ACTIONS(135), + [aux_sym_cmd_identifier_token3] = ACTIONS(135), + [aux_sym_cmd_identifier_token4] = ACTIONS(135), + [aux_sym_cmd_identifier_token5] = ACTIONS(135), + [aux_sym_cmd_identifier_token6] = ACTIONS(135), + [aux_sym_cmd_identifier_token7] = ACTIONS(135), + [aux_sym_cmd_identifier_token8] = ACTIONS(135), + [aux_sym_cmd_identifier_token9] = ACTIONS(135), + [aux_sym_cmd_identifier_token10] = ACTIONS(135), + [aux_sym_cmd_identifier_token11] = ACTIONS(135), + [aux_sym_cmd_identifier_token12] = ACTIONS(135), + [aux_sym_cmd_identifier_token13] = ACTIONS(135), + [aux_sym_cmd_identifier_token14] = ACTIONS(135), + [aux_sym_cmd_identifier_token15] = ACTIONS(135), + [aux_sym_cmd_identifier_token16] = ACTIONS(135), + [aux_sym_cmd_identifier_token17] = ACTIONS(135), + [aux_sym_cmd_identifier_token18] = ACTIONS(135), + [aux_sym_cmd_identifier_token19] = ACTIONS(135), + [aux_sym_cmd_identifier_token20] = ACTIONS(135), + [aux_sym_cmd_identifier_token21] = ACTIONS(135), + [aux_sym_cmd_identifier_token22] = ACTIONS(135), + [aux_sym_cmd_identifier_token23] = ACTIONS(135), + [aux_sym_cmd_identifier_token24] = ACTIONS(135), + [aux_sym_cmd_identifier_token25] = ACTIONS(135), + [aux_sym_cmd_identifier_token26] = ACTIONS(135), + [aux_sym_cmd_identifier_token27] = ACTIONS(135), + [aux_sym_cmd_identifier_token28] = ACTIONS(135), + [aux_sym_cmd_identifier_token29] = ACTIONS(135), + [aux_sym_cmd_identifier_token30] = ACTIONS(135), + [aux_sym_cmd_identifier_token31] = ACTIONS(135), + [aux_sym_cmd_identifier_token32] = ACTIONS(135), + [aux_sym_cmd_identifier_token33] = ACTIONS(135), + [aux_sym_cmd_identifier_token34] = ACTIONS(135), + [aux_sym_cmd_identifier_token35] = ACTIONS(135), + [aux_sym_cmd_identifier_token36] = ACTIONS(135), + [anon_sym_true] = ACTIONS(137), + [anon_sym_false] = ACTIONS(137), + [anon_sym_null] = ACTIONS(139), + [aux_sym_cmd_identifier_token38] = ACTIONS(141), + [aux_sym_cmd_identifier_token39] = ACTIONS(143), + [aux_sym_cmd_identifier_token40] = ACTIONS(143), + [sym__newline] = ACTIONS(145), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_def] = ACTIONS(263), + [anon_sym_export_DASHenv] = ACTIONS(265), + [anon_sym_extern] = ACTIONS(267), + [anon_sym_module] = ACTIONS(269), + [anon_sym_use] = ACTIONS(271), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(163), + [anon_sym_DOLLAR] = ACTIONS(273), + [anon_sym_error] = ACTIONS(275), + [anon_sym_list] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(171), + [anon_sym_break] = ACTIONS(279), + [anon_sym_continue] = ACTIONS(281), + [anon_sym_for] = ACTIONS(283), + [anon_sym_in] = ACTIONS(277), + [anon_sym_loop] = ACTIONS(285), + [anon_sym_make] = ACTIONS(277), + [anon_sym_while] = ACTIONS(287), + [anon_sym_do] = ACTIONS(289), + [anon_sym_if] = ACTIONS(291), + [anon_sym_else] = ACTIONS(277), + [anon_sym_match] = ACTIONS(293), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(297), + [anon_sym_catch] = ACTIONS(277), + [anon_sym_return] = ACTIONS(299), + [anon_sym_source] = ACTIONS(301), + [anon_sym_source_DASHenv] = ACTIONS(301), + [anon_sym_register] = ACTIONS(303), + [anon_sym_hide] = ACTIONS(305), + [anon_sym_hide_DASHenv] = ACTIONS(307), + [anon_sym_overlay] = ACTIONS(309), + [anon_sym_new] = ACTIONS(277), + [anon_sym_as] = ACTIONS(277), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(219), + [aux_sym__val_number_decimal_token2] = ACTIONS(221), + [aux_sym__val_number_decimal_token3] = ACTIONS(223), + [aux_sym__val_number_decimal_token4] = ACTIONS(225), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(245), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [41] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7394), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym_parameter_pipes] = STATE(135), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1445), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym_val_variable] = STATE(1268), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1465), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(8074), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym_parameter_pipes] = STATE(134), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1922), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(1296), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1569), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(41), - [aux_sym_shebang_repeat1] = STATE(49), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_shebang_repeat1] = STATE(46), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), - [sym__newline] = ACTIONS(379), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(445), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_pipe_element_repeat2] = STATE(361), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(375), + [anon_sym_false] = ACTIONS(375), + [anon_sym_null] = ACTIONS(377), + [aux_sym_cmd_identifier_token38] = ACTIONS(379), + [aux_sym_cmd_identifier_token39] = ACTIONS(381), + [aux_sym_cmd_identifier_token40] = ACTIONS(381), + [sym__newline] = ACTIONS(383), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_continue] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_RBRACE] = ACTIONS(419), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(435), + [aux_sym__val_number_decimal_token2] = ACTIONS(437), + [aux_sym__val_number_decimal_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token4] = ACTIONS(441), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [42] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7623), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym_parameter_pipes] = STATE(133), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1445), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym_val_variable] = STATE(1268), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1465), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7937), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym_parameter_pipes] = STATE(131), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1922), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(1296), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1569), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(42), - [aux_sym_shebang_repeat1] = STATE(46), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_shebang_repeat1] = STATE(49), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), - [sym__newline] = ACTIONS(379), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(447), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_pipe_element_repeat2] = STATE(361), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(375), + [anon_sym_false] = ACTIONS(375), + [anon_sym_null] = ACTIONS(377), + [aux_sym_cmd_identifier_token38] = ACTIONS(379), + [aux_sym_cmd_identifier_token39] = ACTIONS(381), + [aux_sym_cmd_identifier_token40] = ACTIONS(381), + [sym__newline] = ACTIONS(383), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_continue] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_RBRACE] = ACTIONS(451), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(435), + [aux_sym__val_number_decimal_token2] = ACTIONS(437), + [aux_sym__val_number_decimal_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token4] = ACTIONS(441), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [43] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7623), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym_parameter_pipes] = STATE(121), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1445), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym_val_variable] = STATE(1268), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1465), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7935), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym_parameter_pipes] = STATE(122), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1922), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(1296), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1569), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(43), - [aux_sym_shebang_repeat1] = STATE(45), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_shebang_repeat1] = STATE(48), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), - [sym__newline] = ACTIONS(379), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(447), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_pipe_element_repeat2] = STATE(361), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(375), + [anon_sym_false] = ACTIONS(375), + [anon_sym_null] = ACTIONS(377), + [aux_sym_cmd_identifier_token38] = ACTIONS(379), + [aux_sym_cmd_identifier_token39] = ACTIONS(381), + [aux_sym_cmd_identifier_token40] = ACTIONS(381), + [sym__newline] = ACTIONS(383), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_continue] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_RBRACE] = ACTIONS(453), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(435), + [aux_sym__val_number_decimal_token2] = ACTIONS(437), + [aux_sym__val_number_decimal_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token4] = ACTIONS(441), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [44] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7479), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym_parameter_pipes] = STATE(121), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1445), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym_val_variable] = STATE(1268), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1465), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7761), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym_parameter_pipes] = STATE(136), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1922), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(1296), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1569), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(44), [aux_sym_shebang_repeat1] = STATE(45), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), - [sym__newline] = ACTIONS(379), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_pipe_element_repeat2] = STATE(361), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(375), + [anon_sym_false] = ACTIONS(375), + [anon_sym_null] = ACTIONS(377), + [aux_sym_cmd_identifier_token38] = ACTIONS(379), + [aux_sym_cmd_identifier_token39] = ACTIONS(381), + [aux_sym_cmd_identifier_token40] = ACTIONS(381), + [sym__newline] = ACTIONS(383), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_continue] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_RBRACE] = ACTIONS(455), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(435), + [aux_sym__val_number_decimal_token2] = ACTIONS(437), + [aux_sym__val_number_decimal_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token4] = ACTIONS(441), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [45] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7593), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym_parameter_pipes] = STATE(119), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1445), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym_val_variable] = STATE(1268), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1465), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7737), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym_parameter_pipes] = STATE(137), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1922), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(1296), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1569), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(45), - [aux_sym_shebang_repeat1] = STATE(267), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_shebang_repeat1] = STATE(296), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), - [sym__newline] = ACTIONS(379), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_pipe_element_repeat2] = STATE(361), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(375), + [anon_sym_false] = ACTIONS(375), + [anon_sym_null] = ACTIONS(377), + [aux_sym_cmd_identifier_token38] = ACTIONS(379), + [aux_sym_cmd_identifier_token39] = ACTIONS(381), + [aux_sym_cmd_identifier_token40] = ACTIONS(381), + [sym__newline] = ACTIONS(383), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_continue] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(435), + [aux_sym__val_number_decimal_token2] = ACTIONS(437), + [aux_sym__val_number_decimal_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token4] = ACTIONS(441), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [46] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7715), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym_parameter_pipes] = STATE(134), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1445), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym_val_variable] = STATE(1268), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1465), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7745), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym_parameter_pipes] = STATE(135), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1922), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(1296), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1569), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(46), - [aux_sym_shebang_repeat1] = STATE(267), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_shebang_repeat1] = STATE(296), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), - [sym__newline] = ACTIONS(379), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_pipe_element_repeat2] = STATE(361), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(375), + [anon_sym_false] = ACTIONS(375), + [anon_sym_null] = ACTIONS(377), + [aux_sym_cmd_identifier_token38] = ACTIONS(379), + [aux_sym_cmd_identifier_token39] = ACTIONS(381), + [aux_sym_cmd_identifier_token40] = ACTIONS(381), + [sym__newline] = ACTIONS(383), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_continue] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(435), + [aux_sym__val_number_decimal_token2] = ACTIONS(437), + [aux_sym__val_number_decimal_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token4] = ACTIONS(441), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [47] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7636), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym_parameter_pipes] = STATE(130), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1445), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym_val_variable] = STATE(1268), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1465), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7747), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym_parameter_pipes] = STATE(122), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1922), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(1296), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1569), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(47), [aux_sym_shebang_repeat1] = STATE(48), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), - [sym__newline] = ACTIONS(379), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_pipe_element_repeat2] = STATE(361), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(375), + [anon_sym_false] = ACTIONS(375), + [anon_sym_null] = ACTIONS(377), + [aux_sym_cmd_identifier_token38] = ACTIONS(379), + [aux_sym_cmd_identifier_token39] = ACTIONS(381), + [aux_sym_cmd_identifier_token40] = ACTIONS(381), + [sym__newline] = ACTIONS(383), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_continue] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(435), + [aux_sym__val_number_decimal_token2] = ACTIONS(437), + [aux_sym__val_number_decimal_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token4] = ACTIONS(441), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [48] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7666), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym_parameter_pipes] = STATE(131), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1445), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym_val_variable] = STATE(1268), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1465), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7861), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym_parameter_pipes] = STATE(119), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1922), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(1296), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1569), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(48), - [aux_sym_shebang_repeat1] = STATE(267), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_shebang_repeat1] = STATE(296), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), - [sym__newline] = ACTIONS(379), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_pipe_element_repeat2] = STATE(361), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(375), + [anon_sym_false] = ACTIONS(375), + [anon_sym_null] = ACTIONS(377), + [aux_sym_cmd_identifier_token38] = ACTIONS(379), + [aux_sym_cmd_identifier_token39] = ACTIONS(381), + [aux_sym_cmd_identifier_token40] = ACTIONS(381), + [sym__newline] = ACTIONS(383), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_continue] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(435), + [aux_sym__val_number_decimal_token2] = ACTIONS(437), + [aux_sym__val_number_decimal_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token4] = ACTIONS(441), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [49] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7417), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym_parameter_pipes] = STATE(136), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1445), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym_val_variable] = STATE(1268), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1465), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7949), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym_parameter_pipes] = STATE(132), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1922), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(1296), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1569), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(49), - [aux_sym_shebang_repeat1] = STATE(267), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_shebang_repeat1] = STATE(296), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), - [sym__newline] = ACTIONS(379), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_pipe_element_repeat2] = STATE(361), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(375), + [anon_sym_false] = ACTIONS(375), + [anon_sym_null] = ACTIONS(377), + [aux_sym_cmd_identifier_token38] = ACTIONS(379), + [aux_sym_cmd_identifier_token39] = ACTIONS(381), + [aux_sym_cmd_identifier_token40] = ACTIONS(381), + [sym__newline] = ACTIONS(383), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_continue] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(435), + [aux_sym__val_number_decimal_token2] = ACTIONS(437), + [aux_sym__val_number_decimal_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token4] = ACTIONS(441), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [50] = { - [sym__block_body_statement_parenthesized] = STATE(5650), - [sym__declaration_parenthesized] = STATE(6810), - [sym_decl_alias_parenthesized] = STATE(6895), - [sym_stmt_let_parenthesized] = STATE(6948), - [sym_stmt_mut_parenthesized] = STATE(6948), - [sym_stmt_const_parenthesized] = STATE(6948), - [sym_assignment_parenthesized] = STATE(6948), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), - [sym__statement_parenthesized] = STATE(6810), - [sym_pipeline_parenthesized] = STATE(6948), - [sym_cmd_identifier] = STATE(4758), - [sym_decl_def] = STATE(6895), - [sym_decl_export] = STATE(6895), - [sym_decl_extern] = STATE(6895), - [sym_decl_module] = STATE(6895), - [sym_decl_use] = STATE(6895), - [sym__ctrl_statement] = STATE(6948), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_stmt_source] = STATE(6948), - [sym_stmt_register] = STATE(6948), - [sym__stmt_hide] = STATE(6948), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6948), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym__parenthesized_body] = STATE(7616), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(1303), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7893), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym_parameter_pipes] = STATE(131), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1922), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(1296), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1569), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(50), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym__parenthesized_body_repeat2] = STATE(156), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_RPAREN] = ACTIONS(471), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(493), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_shebang_repeat1] = STATE(49), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(361), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(375), + [anon_sym_false] = ACTIONS(375), + [anon_sym_null] = ACTIONS(377), + [aux_sym_cmd_identifier_token38] = ACTIONS(379), + [aux_sym_cmd_identifier_token39] = ACTIONS(381), + [aux_sym_cmd_identifier_token40] = ACTIONS(381), + [sym__newline] = ACTIONS(383), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_continue] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(435), + [aux_sym__val_number_decimal_token2] = ACTIONS(437), + [aux_sym__val_number_decimal_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token4] = ACTIONS(441), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [51] = { - [sym__block_body_statement_parenthesized] = STATE(5650), - [sym__declaration_parenthesized] = STATE(6810), - [sym_decl_alias_parenthesized] = STATE(6895), - [sym_stmt_let_parenthesized] = STATE(6948), - [sym_stmt_mut_parenthesized] = STATE(6948), - [sym_stmt_const_parenthesized] = STATE(6948), - [sym_assignment_parenthesized] = STATE(6948), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), - [sym__statement_parenthesized] = STATE(6810), - [sym_pipeline_parenthesized] = STATE(6948), - [sym_cmd_identifier] = STATE(4758), - [sym_decl_def] = STATE(6895), - [sym_decl_export] = STATE(6895), - [sym_decl_extern] = STATE(6895), - [sym_decl_module] = STATE(6895), - [sym_decl_use] = STATE(6895), - [sym__ctrl_statement] = STATE(6948), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_stmt_source] = STATE(6948), - [sym_stmt_register] = STATE(6948), - [sym__stmt_hide] = STATE(6948), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6948), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym__parenthesized_body] = STATE(7383), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(1303), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), + [sym__block_body_statement_parenthesized] = STATE(5872), + [sym__declaration_parenthesized] = STATE(7040), + [sym_decl_alias_parenthesized] = STATE(7072), + [sym_stmt_let_parenthesized] = STATE(7124), + [sym_stmt_mut_parenthesized] = STATE(7124), + [sym_stmt_const_parenthesized] = STATE(7124), + [sym_assignment_parenthesized] = STATE(7124), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), + [sym__statement_parenthesized] = STATE(7040), + [sym_pipeline_parenthesized] = STATE(7124), + [sym_cmd_identifier] = STATE(4817), + [sym_decl_def] = STATE(7072), + [sym_decl_export] = STATE(7072), + [sym_decl_extern] = STATE(7072), + [sym_decl_module] = STATE(7072), + [sym_decl_use] = STATE(7072), + [sym__ctrl_statement] = STATE(7124), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_stmt_source] = STATE(7124), + [sym_stmt_register] = STATE(7124), + [sym__stmt_hide] = STATE(7124), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(7124), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym__parenthesized_body] = STATE(7954), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(1361), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), [sym_comment] = STATE(51), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym__parenthesized_body_repeat2] = STATE(156), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_RPAREN] = ACTIONS(521), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(523), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym__parenthesized_body_repeat2] = STATE(161), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_let_DASHenv] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(479), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [anon_sym_RPAREN2] = ACTIONS(501), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [52] = { - [sym__block_body_statement_parenthesized] = STATE(5650), - [sym__declaration_parenthesized] = STATE(6810), - [sym_decl_alias_parenthesized] = STATE(6895), - [sym_stmt_let_parenthesized] = STATE(6948), - [sym_stmt_mut_parenthesized] = STATE(6948), - [sym_stmt_const_parenthesized] = STATE(6948), - [sym_assignment_parenthesized] = STATE(6948), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), - [sym__statement_parenthesized] = STATE(6810), - [sym_pipeline_parenthesized] = STATE(6948), - [sym_cmd_identifier] = STATE(4758), - [sym_decl_def] = STATE(6895), - [sym_decl_export] = STATE(6895), - [sym_decl_extern] = STATE(6895), - [sym_decl_module] = STATE(6895), - [sym_decl_use] = STATE(6895), - [sym__ctrl_statement] = STATE(6948), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_stmt_source] = STATE(6948), - [sym_stmt_register] = STATE(6948), - [sym__stmt_hide] = STATE(6948), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6948), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym__parenthesized_body] = STATE(7443), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(1303), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), + [sym__block_body_statement_parenthesized] = STATE(5872), + [sym__declaration_parenthesized] = STATE(7040), + [sym_decl_alias_parenthesized] = STATE(7072), + [sym_stmt_let_parenthesized] = STATE(7124), + [sym_stmt_mut_parenthesized] = STATE(7124), + [sym_stmt_const_parenthesized] = STATE(7124), + [sym_assignment_parenthesized] = STATE(7124), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), + [sym__statement_parenthesized] = STATE(7040), + [sym_pipeline_parenthesized] = STATE(7124), + [sym_cmd_identifier] = STATE(4817), + [sym_decl_def] = STATE(7072), + [sym_decl_export] = STATE(7072), + [sym_decl_extern] = STATE(7072), + [sym_decl_module] = STATE(7072), + [sym_decl_use] = STATE(7072), + [sym__ctrl_statement] = STATE(7124), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_stmt_source] = STATE(7124), + [sym_stmt_register] = STATE(7124), + [sym__stmt_hide] = STATE(7124), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(7124), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym__parenthesized_body] = STATE(7916), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(1361), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), [sym_comment] = STATE(52), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym__parenthesized_body_repeat2] = STATE(156), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_RPAREN] = ACTIONS(525), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(523), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym__parenthesized_body_repeat2] = STATE(161), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_let_DASHenv] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(531), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [anon_sym_RPAREN2] = ACTIONS(533), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [53] = { - [sym__block_body_statement_parenthesized] = STATE(5650), - [sym__declaration_parenthesized] = STATE(6810), - [sym_decl_alias_parenthesized] = STATE(6895), - [sym_stmt_let_parenthesized] = STATE(6948), - [sym_stmt_mut_parenthesized] = STATE(6948), - [sym_stmt_const_parenthesized] = STATE(6948), - [sym_assignment_parenthesized] = STATE(6948), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), - [sym__statement_parenthesized] = STATE(6810), - [sym_pipeline_parenthesized] = STATE(6948), - [sym_cmd_identifier] = STATE(4758), - [sym_decl_def] = STATE(6895), - [sym_decl_export] = STATE(6895), - [sym_decl_extern] = STATE(6895), - [sym_decl_module] = STATE(6895), - [sym_decl_use] = STATE(6895), - [sym__ctrl_statement] = STATE(6948), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_stmt_source] = STATE(6948), - [sym_stmt_register] = STATE(6948), - [sym__stmt_hide] = STATE(6948), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6948), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym__parenthesized_body] = STATE(7633), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(1303), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), + [sym__block_body_statement_parenthesized] = STATE(5872), + [sym__declaration_parenthesized] = STATE(7040), + [sym_decl_alias_parenthesized] = STATE(7072), + [sym_stmt_let_parenthesized] = STATE(7124), + [sym_stmt_mut_parenthesized] = STATE(7124), + [sym_stmt_const_parenthesized] = STATE(7124), + [sym_assignment_parenthesized] = STATE(7124), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), + [sym__statement_parenthesized] = STATE(7040), + [sym_pipeline_parenthesized] = STATE(7124), + [sym_cmd_identifier] = STATE(4817), + [sym_decl_def] = STATE(7072), + [sym_decl_export] = STATE(7072), + [sym_decl_extern] = STATE(7072), + [sym_decl_module] = STATE(7072), + [sym_decl_use] = STATE(7072), + [sym__ctrl_statement] = STATE(7124), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_stmt_source] = STATE(7124), + [sym_stmt_register] = STATE(7124), + [sym__stmt_hide] = STATE(7124), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(7124), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym__parenthesized_body] = STATE(7907), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(1361), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), [sym_comment] = STATE(53), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym__parenthesized_body_repeat2] = STATE(156), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_RPAREN] = ACTIONS(527), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(529), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym__parenthesized_body_repeat2] = STATE(161), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_let_DASHenv] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(535), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [anon_sym_RPAREN2] = ACTIONS(537), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [54] = { - [sym__block_body_statement_parenthesized] = STATE(5650), - [sym__declaration_parenthesized] = STATE(6810), - [sym_decl_alias_parenthesized] = STATE(6895), - [sym_stmt_let_parenthesized] = STATE(6948), - [sym_stmt_mut_parenthesized] = STATE(6948), - [sym_stmt_const_parenthesized] = STATE(6948), - [sym_assignment_parenthesized] = STATE(6948), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), - [sym__statement_parenthesized] = STATE(6810), - [sym_pipeline_parenthesized] = STATE(6948), - [sym_cmd_identifier] = STATE(4758), - [sym_decl_def] = STATE(6895), - [sym_decl_export] = STATE(6895), - [sym_decl_extern] = STATE(6895), - [sym_decl_module] = STATE(6895), - [sym_decl_use] = STATE(6895), - [sym__ctrl_statement] = STATE(6948), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_stmt_source] = STATE(6948), - [sym_stmt_register] = STATE(6948), - [sym__stmt_hide] = STATE(6948), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6948), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym__parenthesized_body] = STATE(7647), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(1303), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), + [sym__block_body_statement_parenthesized] = STATE(5872), + [sym__declaration_parenthesized] = STATE(7040), + [sym_decl_alias_parenthesized] = STATE(7072), + [sym_stmt_let_parenthesized] = STATE(7124), + [sym_stmt_mut_parenthesized] = STATE(7124), + [sym_stmt_const_parenthesized] = STATE(7124), + [sym_assignment_parenthesized] = STATE(7124), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), + [sym__statement_parenthesized] = STATE(7040), + [sym_pipeline_parenthesized] = STATE(7124), + [sym_cmd_identifier] = STATE(4817), + [sym_decl_def] = STATE(7072), + [sym_decl_export] = STATE(7072), + [sym_decl_extern] = STATE(7072), + [sym_decl_module] = STATE(7072), + [sym_decl_use] = STATE(7072), + [sym__ctrl_statement] = STATE(7124), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_stmt_source] = STATE(7124), + [sym_stmt_register] = STATE(7124), + [sym__stmt_hide] = STATE(7124), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(7124), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym__parenthesized_body] = STATE(7660), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(1361), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), [sym_comment] = STATE(54), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym__parenthesized_body_repeat2] = STATE(156), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_RPAREN] = ACTIONS(531), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(533), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym__parenthesized_body_repeat2] = STATE(161), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_let_DASHenv] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(539), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [anon_sym_RPAREN2] = ACTIONS(541), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [55] = { - [sym__block_body_statement_parenthesized] = STATE(5650), - [sym__declaration_parenthesized] = STATE(6810), - [sym_decl_alias_parenthesized] = STATE(6895), - [sym_stmt_let_parenthesized] = STATE(6948), - [sym_stmt_mut_parenthesized] = STATE(6948), - [sym_stmt_const_parenthesized] = STATE(6948), - [sym_assignment_parenthesized] = STATE(6948), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), - [sym__statement_parenthesized] = STATE(6810), - [sym_pipeline_parenthesized] = STATE(6948), - [sym_cmd_identifier] = STATE(4758), - [sym_decl_def] = STATE(6895), - [sym_decl_export] = STATE(6895), - [sym_decl_extern] = STATE(6895), - [sym_decl_module] = STATE(6895), - [sym_decl_use] = STATE(6895), - [sym__ctrl_statement] = STATE(6948), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_stmt_source] = STATE(6948), - [sym_stmt_register] = STATE(6948), - [sym__stmt_hide] = STATE(6948), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6948), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym__parenthesized_body] = STATE(7635), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(1303), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), + [sym__block_body_statement_parenthesized] = STATE(5872), + [sym__declaration_parenthesized] = STATE(7040), + [sym_decl_alias_parenthesized] = STATE(7072), + [sym_stmt_let_parenthesized] = STATE(7124), + [sym_stmt_mut_parenthesized] = STATE(7124), + [sym_stmt_const_parenthesized] = STATE(7124), + [sym_assignment_parenthesized] = STATE(7124), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), + [sym__statement_parenthesized] = STATE(7040), + [sym_pipeline_parenthesized] = STATE(7124), + [sym_cmd_identifier] = STATE(4817), + [sym_decl_def] = STATE(7072), + [sym_decl_export] = STATE(7072), + [sym_decl_extern] = STATE(7072), + [sym_decl_module] = STATE(7072), + [sym_decl_use] = STATE(7072), + [sym__ctrl_statement] = STATE(7124), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_stmt_source] = STATE(7124), + [sym_stmt_register] = STATE(7124), + [sym__stmt_hide] = STATE(7124), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(7124), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym__parenthesized_body] = STATE(7877), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(1361), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), [sym_comment] = STATE(55), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym__parenthesized_body_repeat2] = STATE(156), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_RPAREN] = ACTIONS(535), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(529), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym__parenthesized_body_repeat2] = STATE(161), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_let_DASHenv] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(543), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [anon_sym_RPAREN2] = ACTIONS(541), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [56] = { - [sym__block_body_statement_parenthesized] = STATE(5650), - [sym__declaration_parenthesized] = STATE(6810), - [sym_decl_alias_parenthesized] = STATE(6895), - [sym_stmt_let_parenthesized] = STATE(6948), - [sym_stmt_mut_parenthesized] = STATE(6948), - [sym_stmt_const_parenthesized] = STATE(6948), - [sym_assignment_parenthesized] = STATE(6948), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), - [sym__statement_parenthesized] = STATE(6810), - [sym_pipeline_parenthesized] = STATE(6948), - [sym_cmd_identifier] = STATE(4758), - [sym_decl_def] = STATE(6895), - [sym_decl_export] = STATE(6895), - [sym_decl_extern] = STATE(6895), - [sym_decl_module] = STATE(6895), - [sym_decl_use] = STATE(6895), - [sym__ctrl_statement] = STATE(6948), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_stmt_source] = STATE(6948), - [sym_stmt_register] = STATE(6948), - [sym__stmt_hide] = STATE(6948), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6948), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym__parenthesized_body] = STATE(7542), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(1303), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), + [sym__block_body_statement_parenthesized] = STATE(5872), + [sym__declaration_parenthesized] = STATE(7040), + [sym_decl_alias_parenthesized] = STATE(7072), + [sym_stmt_let_parenthesized] = STATE(7124), + [sym_stmt_mut_parenthesized] = STATE(7124), + [sym_stmt_const_parenthesized] = STATE(7124), + [sym_assignment_parenthesized] = STATE(7124), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), + [sym__statement_parenthesized] = STATE(7040), + [sym_pipeline_parenthesized] = STATE(7124), + [sym_cmd_identifier] = STATE(4817), + [sym_decl_def] = STATE(7072), + [sym_decl_export] = STATE(7072), + [sym_decl_extern] = STATE(7072), + [sym_decl_module] = STATE(7072), + [sym_decl_use] = STATE(7072), + [sym__ctrl_statement] = STATE(7124), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_stmt_source] = STATE(7124), + [sym_stmt_register] = STATE(7124), + [sym__stmt_hide] = STATE(7124), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(7124), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym__parenthesized_body] = STATE(7987), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(1361), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), [sym_comment] = STATE(56), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym__parenthesized_body_repeat2] = STATE(156), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_RPAREN] = ACTIONS(537), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(533), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym__parenthesized_body_repeat2] = STATE(161), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_let_DASHenv] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(545), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [anon_sym_RPAREN2] = ACTIONS(547), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [57] = { - [sym__block_body_statement_parenthesized] = STATE(5650), - [sym__declaration_parenthesized] = STATE(6810), - [sym_decl_alias_parenthesized] = STATE(6895), - [sym_stmt_let_parenthesized] = STATE(6948), - [sym_stmt_mut_parenthesized] = STATE(6948), - [sym_stmt_const_parenthesized] = STATE(6948), - [sym_assignment_parenthesized] = STATE(6948), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), - [sym__statement_parenthesized] = STATE(6810), - [sym_pipeline_parenthesized] = STATE(6948), - [sym_cmd_identifier] = STATE(4758), - [sym_decl_def] = STATE(6895), - [sym_decl_export] = STATE(6895), - [sym_decl_extern] = STATE(6895), - [sym_decl_module] = STATE(6895), - [sym_decl_use] = STATE(6895), - [sym__ctrl_statement] = STATE(6948), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_stmt_source] = STATE(6948), - [sym_stmt_register] = STATE(6948), - [sym__stmt_hide] = STATE(6948), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6948), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym__parenthesized_body] = STATE(7657), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(1303), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), + [sym__block_body_statement_parenthesized] = STATE(5872), + [sym__declaration_parenthesized] = STATE(7040), + [sym_decl_alias_parenthesized] = STATE(7072), + [sym_stmt_let_parenthesized] = STATE(7124), + [sym_stmt_mut_parenthesized] = STATE(7124), + [sym_stmt_const_parenthesized] = STATE(7124), + [sym_assignment_parenthesized] = STATE(7124), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), + [sym__statement_parenthesized] = STATE(7040), + [sym_pipeline_parenthesized] = STATE(7124), + [sym_cmd_identifier] = STATE(4817), + [sym_decl_def] = STATE(7072), + [sym_decl_export] = STATE(7072), + [sym_decl_extern] = STATE(7072), + [sym_decl_module] = STATE(7072), + [sym_decl_use] = STATE(7072), + [sym__ctrl_statement] = STATE(7124), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_stmt_source] = STATE(7124), + [sym_stmt_register] = STATE(7124), + [sym__stmt_hide] = STATE(7124), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(7124), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym__parenthesized_body] = STATE(7647), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(1361), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), [sym_comment] = STATE(57), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym__parenthesized_body_repeat2] = STATE(156), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_RPAREN] = ACTIONS(539), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(529), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym__parenthesized_body_repeat2] = STATE(161), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_let_DASHenv] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(549), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [anon_sym_RPAREN2] = ACTIONS(547), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [58] = { - [sym__block_body_statement_parenthesized] = STATE(5650), - [sym__declaration_parenthesized] = STATE(6810), - [sym_decl_alias_parenthesized] = STATE(6895), - [sym_stmt_let_parenthesized] = STATE(6948), - [sym_stmt_mut_parenthesized] = STATE(6948), - [sym_stmt_const_parenthesized] = STATE(6948), - [sym_assignment_parenthesized] = STATE(6948), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), - [sym__statement_parenthesized] = STATE(6810), - [sym_pipeline_parenthesized] = STATE(6948), - [sym_cmd_identifier] = STATE(4758), - [sym_decl_def] = STATE(6895), - [sym_decl_export] = STATE(6895), - [sym_decl_extern] = STATE(6895), - [sym_decl_module] = STATE(6895), - [sym_decl_use] = STATE(6895), - [sym__ctrl_statement] = STATE(6948), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_stmt_source] = STATE(6948), - [sym_stmt_register] = STATE(6948), - [sym__stmt_hide] = STATE(6948), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6948), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym__parenthesized_body] = STATE(7662), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(1303), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), + [sym__block_body_statement_parenthesized] = STATE(5872), + [sym__declaration_parenthesized] = STATE(7040), + [sym_decl_alias_parenthesized] = STATE(7072), + [sym_stmt_let_parenthesized] = STATE(7124), + [sym_stmt_mut_parenthesized] = STATE(7124), + [sym_stmt_const_parenthesized] = STATE(7124), + [sym_assignment_parenthesized] = STATE(7124), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), + [sym__statement_parenthesized] = STATE(7040), + [sym_pipeline_parenthesized] = STATE(7124), + [sym_cmd_identifier] = STATE(4817), + [sym_decl_def] = STATE(7072), + [sym_decl_export] = STATE(7072), + [sym_decl_extern] = STATE(7072), + [sym_decl_module] = STATE(7072), + [sym_decl_use] = STATE(7072), + [sym__ctrl_statement] = STATE(7124), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_stmt_source] = STATE(7124), + [sym_stmt_register] = STATE(7124), + [sym__stmt_hide] = STATE(7124), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(7124), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym__parenthesized_body] = STATE(8064), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(1361), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), [sym_comment] = STATE(58), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym__parenthesized_body_repeat2] = STATE(156), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_RPAREN] = ACTIONS(541), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(543), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym__parenthesized_body_repeat2] = STATE(161), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_let_DASHenv] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(551), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [anon_sym_RPAREN2] = ACTIONS(541), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [59] = { - [sym__block_body_statement_parenthesized] = STATE(5650), - [sym__declaration_parenthesized] = STATE(6810), - [sym_decl_alias_parenthesized] = STATE(6895), - [sym_stmt_let_parenthesized] = STATE(6948), - [sym_stmt_mut_parenthesized] = STATE(6948), - [sym_stmt_const_parenthesized] = STATE(6948), - [sym_assignment_parenthesized] = STATE(6948), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), - [sym__statement_parenthesized] = STATE(6810), - [sym_pipeline_parenthesized] = STATE(6948), - [sym_cmd_identifier] = STATE(4758), - [sym_decl_def] = STATE(6895), - [sym_decl_export] = STATE(6895), - [sym_decl_extern] = STATE(6895), - [sym_decl_module] = STATE(6895), - [sym_decl_use] = STATE(6895), - [sym__ctrl_statement] = STATE(6948), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_stmt_source] = STATE(6948), - [sym_stmt_register] = STATE(6948), - [sym__stmt_hide] = STATE(6948), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6948), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym__parenthesized_body] = STATE(7477), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(1303), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), + [sym__block_body_statement_parenthesized] = STATE(5872), + [sym__declaration_parenthesized] = STATE(7040), + [sym_decl_alias_parenthesized] = STATE(7072), + [sym_stmt_let_parenthesized] = STATE(7124), + [sym_stmt_mut_parenthesized] = STATE(7124), + [sym_stmt_const_parenthesized] = STATE(7124), + [sym_assignment_parenthesized] = STATE(7124), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), + [sym__statement_parenthesized] = STATE(7040), + [sym_pipeline_parenthesized] = STATE(7124), + [sym_cmd_identifier] = STATE(4817), + [sym_decl_def] = STATE(7072), + [sym_decl_export] = STATE(7072), + [sym_decl_extern] = STATE(7072), + [sym_decl_module] = STATE(7072), + [sym_decl_use] = STATE(7072), + [sym__ctrl_statement] = STATE(7124), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_stmt_source] = STATE(7124), + [sym_stmt_register] = STATE(7124), + [sym__stmt_hide] = STATE(7124), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(7124), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym__parenthesized_body] = STATE(7979), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(1361), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), [sym_comment] = STATE(59), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym__parenthesized_body_repeat2] = STATE(156), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_RPAREN] = ACTIONS(545), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(533), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym__parenthesized_body_repeat2] = STATE(161), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_let_DASHenv] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(553), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [anon_sym_RPAREN2] = ACTIONS(555), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [60] = { - [sym__block_body_statement_parenthesized] = STATE(5650), - [sym__declaration_parenthesized] = STATE(6810), - [sym_decl_alias_parenthesized] = STATE(6895), - [sym_stmt_let_parenthesized] = STATE(6948), - [sym_stmt_mut_parenthesized] = STATE(6948), - [sym_stmt_const_parenthesized] = STATE(6948), - [sym_assignment_parenthesized] = STATE(6948), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), - [sym__statement_parenthesized] = STATE(6810), - [sym_pipeline_parenthesized] = STATE(6948), - [sym_cmd_identifier] = STATE(4758), - [sym_decl_def] = STATE(6895), - [sym_decl_export] = STATE(6895), - [sym_decl_extern] = STATE(6895), - [sym_decl_module] = STATE(6895), - [sym_decl_use] = STATE(6895), - [sym__ctrl_statement] = STATE(6948), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_stmt_source] = STATE(6948), - [sym_stmt_register] = STATE(6948), - [sym__stmt_hide] = STATE(6948), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6948), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym__parenthesized_body] = STATE(7673), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(1303), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), + [sym__block_body_statement_parenthesized] = STATE(5872), + [sym__declaration_parenthesized] = STATE(7040), + [sym_decl_alias_parenthesized] = STATE(7072), + [sym_stmt_let_parenthesized] = STATE(7124), + [sym_stmt_mut_parenthesized] = STATE(7124), + [sym_stmt_const_parenthesized] = STATE(7124), + [sym_assignment_parenthesized] = STATE(7124), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), + [sym__statement_parenthesized] = STATE(7040), + [sym_pipeline_parenthesized] = STATE(7124), + [sym_cmd_identifier] = STATE(4817), + [sym_decl_def] = STATE(7072), + [sym_decl_export] = STATE(7072), + [sym_decl_extern] = STATE(7072), + [sym_decl_module] = STATE(7072), + [sym_decl_use] = STATE(7072), + [sym__ctrl_statement] = STATE(7124), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_stmt_source] = STATE(7124), + [sym_stmt_register] = STATE(7124), + [sym__stmt_hide] = STATE(7124), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(7124), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym__parenthesized_body] = STATE(7809), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(1361), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), [sym_comment] = STATE(60), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym__parenthesized_body_repeat2] = STATE(156), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_RPAREN] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(549), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym__parenthesized_body_repeat2] = STATE(161), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_let_DASHenv] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(557), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [anon_sym_RPAREN2] = ACTIONS(547), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [61] = { - [sym__block_body_statement_parenthesized] = STATE(5650), - [sym__declaration_parenthesized] = STATE(6810), - [sym_decl_alias_parenthesized] = STATE(6895), - [sym_stmt_let_parenthesized] = STATE(6948), - [sym_stmt_mut_parenthesized] = STATE(6948), - [sym_stmt_const_parenthesized] = STATE(6948), - [sym_assignment_parenthesized] = STATE(6948), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), - [sym__statement_parenthesized] = STATE(6810), - [sym_pipeline_parenthesized] = STATE(6948), - [sym_cmd_identifier] = STATE(4758), - [sym_decl_def] = STATE(6895), - [sym_decl_export] = STATE(6895), - [sym_decl_extern] = STATE(6895), - [sym_decl_module] = STATE(6895), - [sym_decl_use] = STATE(6895), - [sym__ctrl_statement] = STATE(6948), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_stmt_source] = STATE(6948), - [sym_stmt_register] = STATE(6948), - [sym__stmt_hide] = STATE(6948), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6948), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym__parenthesized_body] = STATE(7686), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(1303), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), + [sym__block_body_statement_parenthesized] = STATE(5872), + [sym__declaration_parenthesized] = STATE(7040), + [sym_decl_alias_parenthesized] = STATE(7072), + [sym_stmt_let_parenthesized] = STATE(7124), + [sym_stmt_mut_parenthesized] = STATE(7124), + [sym_stmt_const_parenthesized] = STATE(7124), + [sym_assignment_parenthesized] = STATE(7124), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), + [sym__statement_parenthesized] = STATE(7040), + [sym_pipeline_parenthesized] = STATE(7124), + [sym_cmd_identifier] = STATE(4817), + [sym_decl_def] = STATE(7072), + [sym_decl_export] = STATE(7072), + [sym_decl_extern] = STATE(7072), + [sym_decl_module] = STATE(7072), + [sym_decl_use] = STATE(7072), + [sym__ctrl_statement] = STATE(7124), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_stmt_source] = STATE(7124), + [sym_stmt_register] = STATE(7124), + [sym__stmt_hide] = STATE(7124), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(7124), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym__parenthesized_body] = STATE(7955), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(1361), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), [sym_comment] = STATE(61), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym__parenthesized_body_repeat2] = STATE(156), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_RPAREN] = ACTIONS(551), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(553), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym__parenthesized_body_repeat2] = STATE(161), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_let_DASHenv] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(559), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [anon_sym_RPAREN2] = ACTIONS(561), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [62] = { - [sym__block_body_statement_parenthesized] = STATE(5650), - [sym__declaration_parenthesized] = STATE(6810), - [sym_decl_alias_parenthesized] = STATE(6895), - [sym_stmt_let_parenthesized] = STATE(6948), - [sym_stmt_mut_parenthesized] = STATE(6948), - [sym_stmt_const_parenthesized] = STATE(6948), - [sym_assignment_parenthesized] = STATE(6948), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), - [sym__statement_parenthesized] = STATE(6810), - [sym_pipeline_parenthesized] = STATE(6948), - [sym_cmd_identifier] = STATE(4758), - [sym_decl_def] = STATE(6895), - [sym_decl_export] = STATE(6895), - [sym_decl_extern] = STATE(6895), - [sym_decl_module] = STATE(6895), - [sym_decl_use] = STATE(6895), - [sym__ctrl_statement] = STATE(6948), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_stmt_source] = STATE(6948), - [sym_stmt_register] = STATE(6948), - [sym__stmt_hide] = STATE(6948), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6948), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym__parenthesized_body] = STATE(7693), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(1303), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), + [sym__block_body_statement_parenthesized] = STATE(5872), + [sym__declaration_parenthesized] = STATE(7040), + [sym_decl_alias_parenthesized] = STATE(7072), + [sym_stmt_let_parenthesized] = STATE(7124), + [sym_stmt_mut_parenthesized] = STATE(7124), + [sym_stmt_const_parenthesized] = STATE(7124), + [sym_assignment_parenthesized] = STATE(7124), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), + [sym__statement_parenthesized] = STATE(7040), + [sym_pipeline_parenthesized] = STATE(7124), + [sym_cmd_identifier] = STATE(4817), + [sym_decl_def] = STATE(7072), + [sym_decl_export] = STATE(7072), + [sym_decl_extern] = STATE(7072), + [sym_decl_module] = STATE(7072), + [sym_decl_use] = STATE(7072), + [sym__ctrl_statement] = STATE(7124), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_stmt_source] = STATE(7124), + [sym_stmt_register] = STATE(7124), + [sym__stmt_hide] = STATE(7124), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(7124), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym__parenthesized_body] = STATE(7629), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(1361), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), [sym_comment] = STATE(62), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym__parenthesized_body_repeat2] = STATE(156), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_RPAREN] = ACTIONS(555), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(557), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym__parenthesized_body_repeat2] = STATE(161), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_let_DASHenv] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(563), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [anon_sym_RPAREN2] = ACTIONS(565), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [63] = { - [sym__block_body_statement_parenthesized] = STATE(5650), - [sym__declaration_parenthesized] = STATE(6810), - [sym_decl_alias_parenthesized] = STATE(6895), - [sym_stmt_let_parenthesized] = STATE(6948), - [sym_stmt_mut_parenthesized] = STATE(6948), - [sym_stmt_const_parenthesized] = STATE(6948), - [sym_assignment_parenthesized] = STATE(6948), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), - [sym__statement_parenthesized] = STATE(6810), - [sym_pipeline_parenthesized] = STATE(6948), - [sym_cmd_identifier] = STATE(4758), - [sym_decl_def] = STATE(6895), - [sym_decl_export] = STATE(6895), - [sym_decl_extern] = STATE(6895), - [sym_decl_module] = STATE(6895), - [sym_decl_use] = STATE(6895), - [sym__ctrl_statement] = STATE(6948), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_stmt_source] = STATE(6948), - [sym_stmt_register] = STATE(6948), - [sym__stmt_hide] = STATE(6948), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6948), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym__parenthesized_body] = STATE(7505), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(1303), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), + [sym__block_body_statement_parenthesized] = STATE(5872), + [sym__declaration_parenthesized] = STATE(7040), + [sym_decl_alias_parenthesized] = STATE(7072), + [sym_stmt_let_parenthesized] = STATE(7124), + [sym_stmt_mut_parenthesized] = STATE(7124), + [sym_stmt_const_parenthesized] = STATE(7124), + [sym_assignment_parenthesized] = STATE(7124), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), + [sym__statement_parenthesized] = STATE(7040), + [sym_pipeline_parenthesized] = STATE(7124), + [sym_cmd_identifier] = STATE(4817), + [sym_decl_def] = STATE(7072), + [sym_decl_export] = STATE(7072), + [sym_decl_extern] = STATE(7072), + [sym_decl_module] = STATE(7072), + [sym_decl_use] = STATE(7072), + [sym__ctrl_statement] = STATE(7124), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_stmt_source] = STATE(7124), + [sym_stmt_register] = STATE(7124), + [sym__stmt_hide] = STATE(7124), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(7124), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym__parenthesized_body] = STATE(8076), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(1361), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), [sym_comment] = STATE(63), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym__parenthesized_body_repeat2] = STATE(156), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_RPAREN] = ACTIONS(559), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(561), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym__parenthesized_body_repeat2] = STATE(161), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_let_DASHenv] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(567), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [anon_sym_RPAREN2] = ACTIONS(569), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [64] = { - [sym__block_body_statement_parenthesized] = STATE(5650), - [sym__declaration_parenthesized] = STATE(6810), - [sym_decl_alias_parenthesized] = STATE(6895), - [sym_stmt_let_parenthesized] = STATE(6948), - [sym_stmt_mut_parenthesized] = STATE(6948), - [sym_stmt_const_parenthesized] = STATE(6948), - [sym_assignment_parenthesized] = STATE(6948), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), - [sym__statement_parenthesized] = STATE(6810), - [sym_pipeline_parenthesized] = STATE(6948), - [sym_cmd_identifier] = STATE(4758), - [sym_decl_def] = STATE(6895), - [sym_decl_export] = STATE(6895), - [sym_decl_extern] = STATE(6895), - [sym_decl_module] = STATE(6895), - [sym_decl_use] = STATE(6895), - [sym__ctrl_statement] = STATE(6948), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_stmt_source] = STATE(6948), - [sym_stmt_register] = STATE(6948), - [sym__stmt_hide] = STATE(6948), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6948), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym__parenthesized_body] = STATE(7702), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(1303), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), + [sym__block_body_statement_parenthesized] = STATE(5872), + [sym__declaration_parenthesized] = STATE(7040), + [sym_decl_alias_parenthesized] = STATE(7072), + [sym_stmt_let_parenthesized] = STATE(7124), + [sym_stmt_mut_parenthesized] = STATE(7124), + [sym_stmt_const_parenthesized] = STATE(7124), + [sym_assignment_parenthesized] = STATE(7124), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), + [sym__statement_parenthesized] = STATE(7040), + [sym_pipeline_parenthesized] = STATE(7124), + [sym_cmd_identifier] = STATE(4817), + [sym_decl_def] = STATE(7072), + [sym_decl_export] = STATE(7072), + [sym_decl_extern] = STATE(7072), + [sym_decl_module] = STATE(7072), + [sym_decl_use] = STATE(7072), + [sym__ctrl_statement] = STATE(7124), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_stmt_source] = STATE(7124), + [sym_stmt_register] = STATE(7124), + [sym__stmt_hide] = STATE(7124), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(7124), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym__parenthesized_body] = STATE(7680), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(1361), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), [sym_comment] = STATE(64), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym__parenthesized_body_repeat2] = STATE(156), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_RPAREN] = ACTIONS(563), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(565), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym__parenthesized_body_repeat2] = STATE(161), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_let_DASHenv] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(571), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [anon_sym_RPAREN2] = ACTIONS(547), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [65] = { - [sym__block_body_statement_parenthesized] = STATE(5650), - [sym__declaration_parenthesized] = STATE(6810), - [sym_decl_alias_parenthesized] = STATE(6895), - [sym_stmt_let_parenthesized] = STATE(6948), - [sym_stmt_mut_parenthesized] = STATE(6948), - [sym_stmt_const_parenthesized] = STATE(6948), - [sym_assignment_parenthesized] = STATE(6948), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), - [sym__statement_parenthesized] = STATE(6810), - [sym_pipeline_parenthesized] = STATE(6948), - [sym_cmd_identifier] = STATE(4758), - [sym_decl_def] = STATE(6895), - [sym_decl_export] = STATE(6895), - [sym_decl_extern] = STATE(6895), - [sym_decl_module] = STATE(6895), - [sym_decl_use] = STATE(6895), - [sym__ctrl_statement] = STATE(6948), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_stmt_source] = STATE(6948), - [sym_stmt_register] = STATE(6948), - [sym__stmt_hide] = STATE(6948), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6948), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym__parenthesized_body] = STATE(7711), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(1303), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), + [sym__block_body_statement_parenthesized] = STATE(5872), + [sym__declaration_parenthesized] = STATE(7040), + [sym_decl_alias_parenthesized] = STATE(7072), + [sym_stmt_let_parenthesized] = STATE(7124), + [sym_stmt_mut_parenthesized] = STATE(7124), + [sym_stmt_const_parenthesized] = STATE(7124), + [sym_assignment_parenthesized] = STATE(7124), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), + [sym__statement_parenthesized] = STATE(7040), + [sym_pipeline_parenthesized] = STATE(7124), + [sym_cmd_identifier] = STATE(4817), + [sym_decl_def] = STATE(7072), + [sym_decl_export] = STATE(7072), + [sym_decl_extern] = STATE(7072), + [sym_decl_module] = STATE(7072), + [sym_decl_use] = STATE(7072), + [sym__ctrl_statement] = STATE(7124), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_stmt_source] = STATE(7124), + [sym_stmt_register] = STATE(7124), + [sym__stmt_hide] = STATE(7124), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(7124), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym__parenthesized_body] = STATE(7658), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(1361), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), [sym_comment] = STATE(65), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym__parenthesized_body_repeat2] = STATE(156), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_RPAREN] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(561), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym__parenthesized_body_repeat2] = STATE(161), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_let_DASHenv] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(573), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [anon_sym_RPAREN2] = ACTIONS(575), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [66] = { - [sym__block_body_statement_parenthesized] = STATE(5650), - [sym__declaration_parenthesized] = STATE(6810), - [sym_decl_alias_parenthesized] = STATE(6895), - [sym_stmt_let_parenthesized] = STATE(6948), - [sym_stmt_mut_parenthesized] = STATE(6948), - [sym_stmt_const_parenthesized] = STATE(6948), - [sym_assignment_parenthesized] = STATE(6948), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), - [sym__statement_parenthesized] = STATE(6810), - [sym_pipeline_parenthesized] = STATE(6948), - [sym_cmd_identifier] = STATE(4758), - [sym_decl_def] = STATE(6895), - [sym_decl_export] = STATE(6895), - [sym_decl_extern] = STATE(6895), - [sym_decl_module] = STATE(6895), - [sym_decl_use] = STATE(6895), - [sym__ctrl_statement] = STATE(6948), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_stmt_source] = STATE(6948), - [sym_stmt_register] = STATE(6948), - [sym__stmt_hide] = STATE(6948), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6948), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym__parenthesized_body] = STATE(7721), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(1303), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), + [sym__block_body_statement_parenthesized] = STATE(5872), + [sym__declaration_parenthesized] = STATE(7040), + [sym_decl_alias_parenthesized] = STATE(7072), + [sym_stmt_let_parenthesized] = STATE(7124), + [sym_stmt_mut_parenthesized] = STATE(7124), + [sym_stmt_const_parenthesized] = STATE(7124), + [sym_assignment_parenthesized] = STATE(7124), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), + [sym__statement_parenthesized] = STATE(7040), + [sym_pipeline_parenthesized] = STATE(7124), + [sym_cmd_identifier] = STATE(4817), + [sym_decl_def] = STATE(7072), + [sym_decl_export] = STATE(7072), + [sym_decl_extern] = STATE(7072), + [sym_decl_module] = STATE(7072), + [sym_decl_use] = STATE(7072), + [sym__ctrl_statement] = STATE(7124), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_stmt_source] = STATE(7124), + [sym_stmt_register] = STATE(7124), + [sym__stmt_hide] = STATE(7124), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(7124), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym__parenthesized_body] = STATE(7700), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(1361), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), [sym_comment] = STATE(66), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym__parenthesized_body_repeat2] = STATE(156), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_RPAREN] = ACTIONS(569), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(571), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym__parenthesized_body_repeat2] = STATE(161), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_let_DASHenv] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(577), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [anon_sym_RPAREN2] = ACTIONS(579), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [67] = { - [sym__block_body_statement_parenthesized] = STATE(5650), - [sym__declaration_parenthesized] = STATE(6810), - [sym_decl_alias_parenthesized] = STATE(6895), - [sym_stmt_let_parenthesized] = STATE(6948), - [sym_stmt_mut_parenthesized] = STATE(6948), - [sym_stmt_const_parenthesized] = STATE(6948), - [sym_assignment_parenthesized] = STATE(6948), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), - [sym__statement_parenthesized] = STATE(6810), - [sym_pipeline_parenthesized] = STATE(6948), - [sym_cmd_identifier] = STATE(4758), - [sym_decl_def] = STATE(6895), - [sym_decl_export] = STATE(6895), - [sym_decl_extern] = STATE(6895), - [sym_decl_module] = STATE(6895), - [sym_decl_use] = STATE(6895), - [sym__ctrl_statement] = STATE(6948), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_stmt_source] = STATE(6948), - [sym_stmt_register] = STATE(6948), - [sym__stmt_hide] = STATE(6948), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6948), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym__parenthesized_body] = STATE(7529), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(1303), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), + [sym__block_body_statement_parenthesized] = STATE(5872), + [sym__declaration_parenthesized] = STATE(7040), + [sym_decl_alias_parenthesized] = STATE(7072), + [sym_stmt_let_parenthesized] = STATE(7124), + [sym_stmt_mut_parenthesized] = STATE(7124), + [sym_stmt_const_parenthesized] = STATE(7124), + [sym_assignment_parenthesized] = STATE(7124), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), + [sym__statement_parenthesized] = STATE(7040), + [sym_pipeline_parenthesized] = STATE(7124), + [sym_cmd_identifier] = STATE(4817), + [sym_decl_def] = STATE(7072), + [sym_decl_export] = STATE(7072), + [sym_decl_extern] = STATE(7072), + [sym_decl_module] = STATE(7072), + [sym_decl_use] = STATE(7072), + [sym__ctrl_statement] = STATE(7124), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_stmt_source] = STATE(7124), + [sym_stmt_register] = STATE(7124), + [sym__stmt_hide] = STATE(7124), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(7124), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym__parenthesized_body] = STATE(7738), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(1361), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), [sym_comment] = STATE(67), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym__parenthesized_body_repeat2] = STATE(156), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_RPAREN] = ACTIONS(573), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(575), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym__parenthesized_body_repeat2] = STATE(161), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_let_DASHenv] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(581), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [anon_sym_RPAREN2] = ACTIONS(583), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [68] = { - [sym__block_body_statement_parenthesized] = STATE(5650), - [sym__declaration_parenthesized] = STATE(6810), - [sym_decl_alias_parenthesized] = STATE(6895), - [sym_stmt_let_parenthesized] = STATE(6948), - [sym_stmt_mut_parenthesized] = STATE(6948), - [sym_stmt_const_parenthesized] = STATE(6948), - [sym_assignment_parenthesized] = STATE(6948), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), - [sym__statement_parenthesized] = STATE(6810), - [sym_pipeline_parenthesized] = STATE(6948), - [sym_cmd_identifier] = STATE(4758), - [sym_decl_def] = STATE(6895), - [sym_decl_export] = STATE(6895), - [sym_decl_extern] = STATE(6895), - [sym_decl_module] = STATE(6895), - [sym_decl_use] = STATE(6895), - [sym__ctrl_statement] = STATE(6948), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_stmt_source] = STATE(6948), - [sym_stmt_register] = STATE(6948), - [sym__stmt_hide] = STATE(6948), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6948), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym__parenthesized_body] = STATE(7512), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(1303), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), + [sym__block_body_statement_parenthesized] = STATE(5872), + [sym__declaration_parenthesized] = STATE(7040), + [sym_decl_alias_parenthesized] = STATE(7072), + [sym_stmt_let_parenthesized] = STATE(7124), + [sym_stmt_mut_parenthesized] = STATE(7124), + [sym_stmt_const_parenthesized] = STATE(7124), + [sym_assignment_parenthesized] = STATE(7124), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), + [sym__statement_parenthesized] = STATE(7040), + [sym_pipeline_parenthesized] = STATE(7124), + [sym_cmd_identifier] = STATE(4817), + [sym_decl_def] = STATE(7072), + [sym_decl_export] = STATE(7072), + [sym_decl_extern] = STATE(7072), + [sym_decl_module] = STATE(7072), + [sym_decl_use] = STATE(7072), + [sym__ctrl_statement] = STATE(7124), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_stmt_source] = STATE(7124), + [sym_stmt_register] = STATE(7124), + [sym__stmt_hide] = STATE(7124), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(7124), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym__parenthesized_body] = STATE(7844), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(1361), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), [sym_comment] = STATE(68), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym__parenthesized_body_repeat2] = STATE(156), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_RPAREN] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(533), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym__parenthesized_body_repeat2] = STATE(161), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_let_DASHenv] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(585), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [anon_sym_RPAREN2] = ACTIONS(587), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [69] = { - [sym__block_body_statement_parenthesized] = STATE(5650), - [sym__declaration_parenthesized] = STATE(6810), - [sym_decl_alias_parenthesized] = STATE(6895), - [sym_stmt_let_parenthesized] = STATE(6948), - [sym_stmt_mut_parenthesized] = STATE(6948), - [sym_stmt_const_parenthesized] = STATE(6948), - [sym_assignment_parenthesized] = STATE(6948), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), - [sym__statement_parenthesized] = STATE(6810), - [sym_pipeline_parenthesized] = STATE(6948), - [sym_cmd_identifier] = STATE(4758), - [sym_decl_def] = STATE(6895), - [sym_decl_export] = STATE(6895), - [sym_decl_extern] = STATE(6895), - [sym_decl_module] = STATE(6895), - [sym_decl_use] = STATE(6895), - [sym__ctrl_statement] = STATE(6948), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_stmt_source] = STATE(6948), - [sym_stmt_register] = STATE(6948), - [sym__stmt_hide] = STATE(6948), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6948), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym__parenthesized_body] = STATE(7423), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(1303), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), + [sym__block_body_statement_parenthesized] = STATE(5872), + [sym__declaration_parenthesized] = STATE(7040), + [sym_decl_alias_parenthesized] = STATE(7072), + [sym_stmt_let_parenthesized] = STATE(7124), + [sym_stmt_mut_parenthesized] = STATE(7124), + [sym_stmt_const_parenthesized] = STATE(7124), + [sym_assignment_parenthesized] = STATE(7124), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), + [sym__statement_parenthesized] = STATE(7040), + [sym_pipeline_parenthesized] = STATE(7124), + [sym_cmd_identifier] = STATE(4817), + [sym_decl_def] = STATE(7072), + [sym_decl_export] = STATE(7072), + [sym_decl_extern] = STATE(7072), + [sym_decl_module] = STATE(7072), + [sym_decl_use] = STATE(7072), + [sym__ctrl_statement] = STATE(7124), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_stmt_source] = STATE(7124), + [sym_stmt_register] = STATE(7124), + [sym__stmt_hide] = STATE(7124), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(7124), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym__parenthesized_body] = STATE(7920), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(1361), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), [sym_comment] = STATE(69), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym__parenthesized_body_repeat2] = STATE(156), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_RPAREN] = ACTIONS(579), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(529), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym__parenthesized_body_repeat2] = STATE(161), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_let_DASHenv] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(589), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [anon_sym_RPAREN2] = ACTIONS(591), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [70] = { - [sym__block_body_statement_parenthesized] = STATE(5650), - [sym__declaration_parenthesized] = STATE(6810), - [sym_decl_alias_parenthesized] = STATE(6895), - [sym_stmt_let_parenthesized] = STATE(6948), - [sym_stmt_mut_parenthesized] = STATE(6948), - [sym_stmt_const_parenthesized] = STATE(6948), - [sym_assignment_parenthesized] = STATE(6948), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), - [sym__statement_parenthesized] = STATE(6810), - [sym_pipeline_parenthesized] = STATE(6948), - [sym_cmd_identifier] = STATE(4758), - [sym_decl_def] = STATE(6895), - [sym_decl_export] = STATE(6895), - [sym_decl_extern] = STATE(6895), - [sym_decl_module] = STATE(6895), - [sym_decl_use] = STATE(6895), - [sym__ctrl_statement] = STATE(6948), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_stmt_source] = STATE(6948), - [sym_stmt_register] = STATE(6948), - [sym__stmt_hide] = STATE(6948), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6948), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym__parenthesized_body] = STATE(7586), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(1303), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), + [sym__block_body_statement_parenthesized] = STATE(5872), + [sym__declaration_parenthesized] = STATE(7040), + [sym_decl_alias_parenthesized] = STATE(7072), + [sym_stmt_let_parenthesized] = STATE(7124), + [sym_stmt_mut_parenthesized] = STATE(7124), + [sym_stmt_const_parenthesized] = STATE(7124), + [sym_assignment_parenthesized] = STATE(7124), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), + [sym__statement_parenthesized] = STATE(7040), + [sym_pipeline_parenthesized] = STATE(7124), + [sym_cmd_identifier] = STATE(4817), + [sym_decl_def] = STATE(7072), + [sym_decl_export] = STATE(7072), + [sym_decl_extern] = STATE(7072), + [sym_decl_module] = STATE(7072), + [sym_decl_use] = STATE(7072), + [sym__ctrl_statement] = STATE(7124), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_stmt_source] = STATE(7124), + [sym_stmt_register] = STATE(7124), + [sym__stmt_hide] = STATE(7124), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(7124), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym__parenthesized_body] = STATE(7707), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(1361), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), [sym_comment] = STATE(70), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym__parenthesized_body_repeat2] = STATE(156), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_RPAREN] = ACTIONS(581), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(533), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym__parenthesized_body_repeat2] = STATE(161), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_let_DASHenv] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(593), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [anon_sym_RPAREN2] = ACTIONS(541), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [71] = { - [sym__block_body_statement_parenthesized] = STATE(5650), - [sym__declaration_parenthesized] = STATE(6810), - [sym_decl_alias_parenthesized] = STATE(6895), - [sym_stmt_let_parenthesized] = STATE(6948), - [sym_stmt_mut_parenthesized] = STATE(6948), - [sym_stmt_const_parenthesized] = STATE(6948), - [sym_assignment_parenthesized] = STATE(6948), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), - [sym__statement_parenthesized] = STATE(6810), - [sym_pipeline_parenthesized] = STATE(6948), - [sym_cmd_identifier] = STATE(4758), - [sym_decl_def] = STATE(6895), - [sym_decl_export] = STATE(6895), - [sym_decl_extern] = STATE(6895), - [sym_decl_module] = STATE(6895), - [sym_decl_use] = STATE(6895), - [sym__ctrl_statement] = STATE(6948), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_stmt_source] = STATE(6948), - [sym_stmt_register] = STATE(6948), - [sym__stmt_hide] = STATE(6948), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6948), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym__parenthesized_body] = STATE(7427), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(1303), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), + [sym__block_body_statement_parenthesized] = STATE(5872), + [sym__declaration_parenthesized] = STATE(7040), + [sym_decl_alias_parenthesized] = STATE(7072), + [sym_stmt_let_parenthesized] = STATE(7124), + [sym_stmt_mut_parenthesized] = STATE(7124), + [sym_stmt_const_parenthesized] = STATE(7124), + [sym_assignment_parenthesized] = STATE(7124), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), + [sym__statement_parenthesized] = STATE(7040), + [sym_pipeline_parenthesized] = STATE(7124), + [sym_cmd_identifier] = STATE(4817), + [sym_decl_def] = STATE(7072), + [sym_decl_export] = STATE(7072), + [sym_decl_extern] = STATE(7072), + [sym_decl_module] = STATE(7072), + [sym_decl_use] = STATE(7072), + [sym__ctrl_statement] = STATE(7124), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_stmt_source] = STATE(7124), + [sym_stmt_register] = STATE(7124), + [sym__stmt_hide] = STATE(7124), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(7124), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym__parenthesized_body] = STATE(7887), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(1361), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), [sym_comment] = STATE(71), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym__parenthesized_body_repeat2] = STATE(156), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_RPAREN] = ACTIONS(583), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(585), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym__parenthesized_body_repeat2] = STATE(161), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_let_DASHenv] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(595), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [anon_sym_RPAREN2] = ACTIONS(547), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [72] = { - [sym__block_body_statement_parenthesized] = STATE(5650), - [sym__declaration_parenthesized] = STATE(6810), - [sym_decl_alias_parenthesized] = STATE(6895), - [sym_stmt_let_parenthesized] = STATE(6948), - [sym_stmt_mut_parenthesized] = STATE(6948), - [sym_stmt_const_parenthesized] = STATE(6948), - [sym_assignment_parenthesized] = STATE(6948), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), - [sym__statement_parenthesized] = STATE(6810), - [sym_pipeline_parenthesized] = STATE(6948), - [sym_cmd_identifier] = STATE(4758), - [sym_decl_def] = STATE(6895), - [sym_decl_export] = STATE(6895), - [sym_decl_extern] = STATE(6895), - [sym_decl_module] = STATE(6895), - [sym_decl_use] = STATE(6895), - [sym__ctrl_statement] = STATE(6948), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_stmt_source] = STATE(6948), - [sym_stmt_register] = STATE(6948), - [sym__stmt_hide] = STATE(6948), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6948), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym__parenthesized_body] = STATE(7577), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(1303), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), + [sym__block_body_statement_parenthesized] = STATE(5872), + [sym__declaration_parenthesized] = STATE(7040), + [sym_decl_alias_parenthesized] = STATE(7072), + [sym_stmt_let_parenthesized] = STATE(7124), + [sym_stmt_mut_parenthesized] = STATE(7124), + [sym_stmt_const_parenthesized] = STATE(7124), + [sym_assignment_parenthesized] = STATE(7124), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), + [sym__statement_parenthesized] = STATE(7040), + [sym_pipeline_parenthesized] = STATE(7124), + [sym_cmd_identifier] = STATE(4817), + [sym_decl_def] = STATE(7072), + [sym_decl_export] = STATE(7072), + [sym_decl_extern] = STATE(7072), + [sym_decl_module] = STATE(7072), + [sym_decl_use] = STATE(7072), + [sym__ctrl_statement] = STATE(7124), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_stmt_source] = STATE(7124), + [sym_stmt_register] = STATE(7124), + [sym__stmt_hide] = STATE(7124), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(7124), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym__parenthesized_body] = STATE(7741), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(1361), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), [sym_comment] = STATE(72), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym__parenthesized_body_repeat2] = STATE(156), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_RPAREN] = ACTIONS(587), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(589), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym__parenthesized_body_repeat2] = STATE(161), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_let_DASHenv] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(597), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [anon_sym_RPAREN2] = ACTIONS(599), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [73] = { - [sym__block_body_statement_parenthesized] = STATE(5650), - [sym__declaration_parenthesized] = STATE(6810), - [sym_decl_alias_parenthesized] = STATE(6895), - [sym_stmt_let_parenthesized] = STATE(6948), - [sym_stmt_mut_parenthesized] = STATE(6948), - [sym_stmt_const_parenthesized] = STATE(6948), - [sym_assignment_parenthesized] = STATE(6948), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), - [sym__statement_parenthesized] = STATE(6810), - [sym_pipeline_parenthesized] = STATE(6948), - [sym_cmd_identifier] = STATE(4758), - [sym_decl_def] = STATE(6895), - [sym_decl_export] = STATE(6895), - [sym_decl_extern] = STATE(6895), - [sym_decl_module] = STATE(6895), - [sym_decl_use] = STATE(6895), - [sym__ctrl_statement] = STATE(6948), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_stmt_source] = STATE(6948), - [sym_stmt_register] = STATE(6948), - [sym__stmt_hide] = STATE(6948), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6948), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym__parenthesized_body] = STATE(7563), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(1303), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), + [sym__block_body_statement_parenthesized] = STATE(5872), + [sym__declaration_parenthesized] = STATE(7040), + [sym_decl_alias_parenthesized] = STATE(7072), + [sym_stmt_let_parenthesized] = STATE(7124), + [sym_stmt_mut_parenthesized] = STATE(7124), + [sym_stmt_const_parenthesized] = STATE(7124), + [sym_assignment_parenthesized] = STATE(7124), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), + [sym__statement_parenthesized] = STATE(7040), + [sym_pipeline_parenthesized] = STATE(7124), + [sym_cmd_identifier] = STATE(4817), + [sym_decl_def] = STATE(7072), + [sym_decl_export] = STATE(7072), + [sym_decl_extern] = STATE(7072), + [sym_decl_module] = STATE(7072), + [sym_decl_use] = STATE(7072), + [sym__ctrl_statement] = STATE(7124), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_stmt_source] = STATE(7124), + [sym_stmt_register] = STATE(7124), + [sym__stmt_hide] = STATE(7124), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(7124), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym__parenthesized_body] = STATE(7688), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(1361), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), [sym_comment] = STATE(73), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym__parenthesized_body_repeat2] = STATE(156), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_RPAREN] = ACTIONS(591), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym__parenthesized_body_repeat2] = STATE(161), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_let_DASHenv] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(601), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [anon_sym_RPAREN2] = ACTIONS(537), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [74] = { - [sym__block_body_statement_parenthesized] = STATE(5650), - [sym__declaration_parenthesized] = STATE(6810), - [sym_decl_alias_parenthesized] = STATE(6895), - [sym_stmt_let_parenthesized] = STATE(6948), - [sym_stmt_mut_parenthesized] = STATE(6948), - [sym_stmt_const_parenthesized] = STATE(6948), - [sym_assignment_parenthesized] = STATE(6948), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), - [sym__statement_parenthesized] = STATE(6810), - [sym_pipeline_parenthesized] = STATE(6948), - [sym_cmd_identifier] = STATE(4758), - [sym_decl_def] = STATE(6895), - [sym_decl_export] = STATE(6895), - [sym_decl_extern] = STATE(6895), - [sym_decl_module] = STATE(6895), - [sym_decl_use] = STATE(6895), - [sym__ctrl_statement] = STATE(6948), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_stmt_source] = STATE(6948), - [sym_stmt_register] = STATE(6948), - [sym__stmt_hide] = STATE(6948), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6948), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym__parenthesized_body] = STATE(7642), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(1303), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), + [sym__block_body_statement_parenthesized] = STATE(5872), + [sym__declaration_parenthesized] = STATE(7040), + [sym_decl_alias_parenthesized] = STATE(7072), + [sym_stmt_let_parenthesized] = STATE(7124), + [sym_stmt_mut_parenthesized] = STATE(7124), + [sym_stmt_const_parenthesized] = STATE(7124), + [sym_assignment_parenthesized] = STATE(7124), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), + [sym__statement_parenthesized] = STATE(7040), + [sym_pipeline_parenthesized] = STATE(7124), + [sym_cmd_identifier] = STATE(4817), + [sym_decl_def] = STATE(7072), + [sym_decl_export] = STATE(7072), + [sym_decl_extern] = STATE(7072), + [sym_decl_module] = STATE(7072), + [sym_decl_use] = STATE(7072), + [sym__ctrl_statement] = STATE(7124), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_stmt_source] = STATE(7124), + [sym_stmt_register] = STATE(7124), + [sym__stmt_hide] = STATE(7124), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(7124), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym__parenthesized_body] = STATE(8075), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(1361), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), [sym_comment] = STATE(74), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym__parenthesized_body_repeat2] = STATE(156), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_RPAREN] = ACTIONS(593), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym__parenthesized_body_repeat2] = STATE(161), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_let_DASHenv] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(603), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [75] = { - [sym__block_body_statement_parenthesized] = STATE(5650), - [sym__declaration_parenthesized] = STATE(6810), - [sym_decl_alias_parenthesized] = STATE(6895), - [sym_stmt_let_parenthesized] = STATE(6948), - [sym_stmt_mut_parenthesized] = STATE(6948), - [sym_stmt_const_parenthesized] = STATE(6948), - [sym_assignment_parenthesized] = STATE(6948), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), - [sym__statement_parenthesized] = STATE(6810), - [sym_pipeline_parenthesized] = STATE(6948), - [sym_cmd_identifier] = STATE(4758), - [sym_decl_def] = STATE(6895), - [sym_decl_export] = STATE(6895), - [sym_decl_extern] = STATE(6895), - [sym_decl_module] = STATE(6895), - [sym_decl_use] = STATE(6895), - [sym__ctrl_statement] = STATE(6948), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_stmt_source] = STATE(6948), - [sym_stmt_register] = STATE(6948), - [sym__stmt_hide] = STATE(6948), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6948), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym__parenthesized_body] = STATE(7556), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(1303), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), + [sym__block_body_statement] = STATE(6021), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1922), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(1296), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1569), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(75), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym__parenthesized_body_repeat2] = STATE(156), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_RPAREN] = ACTIONS(595), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(238), + [aux_sym__block_body_repeat2] = STATE(158), + [aux_sym_pipe_element_repeat2] = STATE(361), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(375), + [anon_sym_false] = ACTIONS(375), + [anon_sym_null] = ACTIONS(377), + [aux_sym_cmd_identifier_token38] = ACTIONS(379), + [aux_sym_cmd_identifier_token39] = ACTIONS(381), + [aux_sym_cmd_identifier_token40] = ACTIONS(381), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_RPAREN] = ACTIONS(605), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_continue] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_RBRACE] = ACTIONS(605), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(435), + [aux_sym__val_number_decimal_token2] = ACTIONS(437), + [aux_sym__val_number_decimal_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token4] = ACTIONS(441), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [76] = { - [sym__block_body_statement_parenthesized] = STATE(5650), - [sym__declaration_parenthesized] = STATE(6810), - [sym_decl_alias_parenthesized] = STATE(6895), - [sym_stmt_let_parenthesized] = STATE(6948), - [sym_stmt_mut_parenthesized] = STATE(6948), - [sym_stmt_const_parenthesized] = STATE(6948), - [sym_assignment_parenthesized] = STATE(6948), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), - [sym__statement_parenthesized] = STATE(6810), - [sym_pipeline_parenthesized] = STATE(6948), - [sym_cmd_identifier] = STATE(4758), - [sym_decl_def] = STATE(6895), - [sym_decl_export] = STATE(6895), - [sym_decl_extern] = STATE(6895), - [sym_decl_module] = STATE(6895), - [sym_decl_use] = STATE(6895), - [sym__ctrl_statement] = STATE(6948), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_stmt_source] = STATE(6948), - [sym_stmt_register] = STATE(6948), - [sym__stmt_hide] = STATE(6948), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6948), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym__parenthesized_body] = STATE(7403), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(1303), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), + [sym__block_body_statement_parenthesized] = STATE(5872), + [sym__declaration_parenthesized] = STATE(7040), + [sym_decl_alias_parenthesized] = STATE(7072), + [sym_stmt_let_parenthesized] = STATE(7124), + [sym_stmt_mut_parenthesized] = STATE(7124), + [sym_stmt_const_parenthesized] = STATE(7124), + [sym_assignment_parenthesized] = STATE(7124), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), + [sym__statement_parenthesized] = STATE(7040), + [sym_pipeline_parenthesized] = STATE(7124), + [sym_cmd_identifier] = STATE(4817), + [sym_decl_def] = STATE(7072), + [sym_decl_export] = STATE(7072), + [sym_decl_extern] = STATE(7072), + [sym_decl_module] = STATE(7072), + [sym_decl_use] = STATE(7072), + [sym__ctrl_statement] = STATE(7124), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_stmt_source] = STATE(7124), + [sym_stmt_register] = STATE(7124), + [sym__stmt_hide] = STATE(7124), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(7124), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym__parenthesized_body] = STATE(8043), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(1361), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), [sym_comment] = STATE(76), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym__parenthesized_body_repeat2] = STATE(156), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_RPAREN] = ACTIONS(597), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym__parenthesized_body_repeat2] = STATE(161), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_let_DASHenv] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(607), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [77] = { - [sym__block_body_statement_parenthesized] = STATE(5650), - [sym__declaration_parenthesized] = STATE(6810), - [sym_decl_alias_parenthesized] = STATE(6895), - [sym_stmt_let_parenthesized] = STATE(6948), - [sym_stmt_mut_parenthesized] = STATE(6948), - [sym_stmt_const_parenthesized] = STATE(6948), - [sym_assignment_parenthesized] = STATE(6948), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), - [sym__statement_parenthesized] = STATE(6810), - [sym_pipeline_parenthesized] = STATE(6948), - [sym_cmd_identifier] = STATE(4758), - [sym_decl_def] = STATE(6895), - [sym_decl_export] = STATE(6895), - [sym_decl_extern] = STATE(6895), - [sym_decl_module] = STATE(6895), - [sym_decl_use] = STATE(6895), - [sym__ctrl_statement] = STATE(6948), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_stmt_source] = STATE(6948), - [sym_stmt_register] = STATE(6948), - [sym__stmt_hide] = STATE(6948), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6948), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym__parenthesized_body] = STATE(7633), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(1303), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), + [sym__block_body_statement_parenthesized] = STATE(5872), + [sym__declaration_parenthesized] = STATE(7040), + [sym_decl_alias_parenthesized] = STATE(7072), + [sym_stmt_let_parenthesized] = STATE(7124), + [sym_stmt_mut_parenthesized] = STATE(7124), + [sym_stmt_const_parenthesized] = STATE(7124), + [sym_assignment_parenthesized] = STATE(7124), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), + [sym__statement_parenthesized] = STATE(7040), + [sym_pipeline_parenthesized] = STATE(7124), + [sym_cmd_identifier] = STATE(4817), + [sym_decl_def] = STATE(7072), + [sym_decl_export] = STATE(7072), + [sym_decl_extern] = STATE(7072), + [sym_decl_module] = STATE(7072), + [sym_decl_use] = STATE(7072), + [sym__ctrl_statement] = STATE(7124), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_stmt_source] = STATE(7124), + [sym_stmt_register] = STATE(7124), + [sym__stmt_hide] = STATE(7124), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(7124), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym__parenthesized_body] = STATE(7660), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(1361), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), [sym_comment] = STATE(77), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym__parenthesized_body_repeat2] = STATE(156), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_RPAREN] = ACTIONS(599), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym__parenthesized_body_repeat2] = STATE(161), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_let_DASHenv] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(609), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [78] = { - [sym__block_body_statement_parenthesized] = STATE(5650), - [sym__declaration_parenthesized] = STATE(6810), - [sym_decl_alias_parenthesized] = STATE(6895), - [sym_stmt_let_parenthesized] = STATE(6948), - [sym_stmt_mut_parenthesized] = STATE(6948), - [sym_stmt_const_parenthesized] = STATE(6948), - [sym_assignment_parenthesized] = STATE(6948), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), - [sym__statement_parenthesized] = STATE(6810), - [sym_pipeline_parenthesized] = STATE(6948), - [sym_cmd_identifier] = STATE(4758), - [sym_decl_def] = STATE(6895), - [sym_decl_export] = STATE(6895), - [sym_decl_extern] = STATE(6895), - [sym_decl_module] = STATE(6895), - [sym_decl_use] = STATE(6895), - [sym__ctrl_statement] = STATE(6948), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_stmt_source] = STATE(6948), - [sym_stmt_register] = STATE(6948), - [sym__stmt_hide] = STATE(6948), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6948), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym__parenthesized_body] = STATE(7677), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(1303), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), + [sym__block_body_statement_parenthesized] = STATE(5872), + [sym__declaration_parenthesized] = STATE(7040), + [sym_decl_alias_parenthesized] = STATE(7072), + [sym_stmt_let_parenthesized] = STATE(7124), + [sym_stmt_mut_parenthesized] = STATE(7124), + [sym_stmt_const_parenthesized] = STATE(7124), + [sym_assignment_parenthesized] = STATE(7124), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), + [sym__statement_parenthesized] = STATE(7040), + [sym_pipeline_parenthesized] = STATE(7124), + [sym_cmd_identifier] = STATE(4817), + [sym_decl_def] = STATE(7072), + [sym_decl_export] = STATE(7072), + [sym_decl_extern] = STATE(7072), + [sym_decl_module] = STATE(7072), + [sym_decl_use] = STATE(7072), + [sym__ctrl_statement] = STATE(7124), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_stmt_source] = STATE(7124), + [sym_stmt_register] = STATE(7124), + [sym__stmt_hide] = STATE(7124), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(7124), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym__parenthesized_body] = STATE(7696), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(1361), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), [sym_comment] = STATE(78), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym__parenthesized_body_repeat2] = STATE(156), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_RPAREN] = ACTIONS(601), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym__parenthesized_body_repeat2] = STATE(161), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_let_DASHenv] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(611), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [79] = { - [sym__block_body_statement_parenthesized] = STATE(5650), - [sym__declaration_parenthesized] = STATE(6810), - [sym_decl_alias_parenthesized] = STATE(6895), - [sym_stmt_let_parenthesized] = STATE(6948), - [sym_stmt_mut_parenthesized] = STATE(6948), - [sym_stmt_const_parenthesized] = STATE(6948), - [sym_assignment_parenthesized] = STATE(6948), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), - [sym__statement_parenthesized] = STATE(6810), - [sym_pipeline_parenthesized] = STATE(6948), - [sym_cmd_identifier] = STATE(4758), - [sym_decl_def] = STATE(6895), - [sym_decl_export] = STATE(6895), - [sym_decl_extern] = STATE(6895), - [sym_decl_module] = STATE(6895), - [sym_decl_use] = STATE(6895), - [sym__ctrl_statement] = STATE(6948), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_stmt_source] = STATE(6948), - [sym_stmt_register] = STATE(6948), - [sym__stmt_hide] = STATE(6948), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6948), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym__parenthesized_body] = STATE(7627), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(1303), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), + [sym__block_body_statement_parenthesized] = STATE(5872), + [sym__declaration_parenthesized] = STATE(7040), + [sym_decl_alias_parenthesized] = STATE(7072), + [sym_stmt_let_parenthesized] = STATE(7124), + [sym_stmt_mut_parenthesized] = STATE(7124), + [sym_stmt_const_parenthesized] = STATE(7124), + [sym_assignment_parenthesized] = STATE(7124), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), + [sym__statement_parenthesized] = STATE(7040), + [sym_pipeline_parenthesized] = STATE(7124), + [sym_cmd_identifier] = STATE(4817), + [sym_decl_def] = STATE(7072), + [sym_decl_export] = STATE(7072), + [sym_decl_extern] = STATE(7072), + [sym_decl_module] = STATE(7072), + [sym_decl_use] = STATE(7072), + [sym__ctrl_statement] = STATE(7124), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_stmt_source] = STATE(7124), + [sym_stmt_register] = STATE(7124), + [sym__stmt_hide] = STATE(7124), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(7124), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym__parenthesized_body] = STATE(7665), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(1361), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), [sym_comment] = STATE(79), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym__parenthesized_body_repeat2] = STATE(156), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_RPAREN] = ACTIONS(603), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym__parenthesized_body_repeat2] = STATE(161), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_let_DASHenv] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(613), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [80] = { - [sym__block_body_statement_parenthesized] = STATE(5650), - [sym__declaration_parenthesized] = STATE(6810), - [sym_decl_alias_parenthesized] = STATE(6895), - [sym_stmt_let_parenthesized] = STATE(6948), - [sym_stmt_mut_parenthesized] = STATE(6948), - [sym_stmt_const_parenthesized] = STATE(6948), - [sym_assignment_parenthesized] = STATE(6948), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), - [sym__statement_parenthesized] = STATE(6810), - [sym_pipeline_parenthesized] = STATE(6948), - [sym_cmd_identifier] = STATE(4758), - [sym_decl_def] = STATE(6895), - [sym_decl_export] = STATE(6895), - [sym_decl_extern] = STATE(6895), - [sym_decl_module] = STATE(6895), - [sym_decl_use] = STATE(6895), - [sym__ctrl_statement] = STATE(6948), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_stmt_source] = STATE(6948), - [sym_stmt_register] = STATE(6948), - [sym__stmt_hide] = STATE(6948), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6948), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym__parenthesized_body] = STATE(7656), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(1303), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), + [sym__block_body_statement_parenthesized] = STATE(5872), + [sym__declaration_parenthesized] = STATE(7040), + [sym_decl_alias_parenthesized] = STATE(7072), + [sym_stmt_let_parenthesized] = STATE(7124), + [sym_stmt_mut_parenthesized] = STATE(7124), + [sym_stmt_const_parenthesized] = STATE(7124), + [sym_assignment_parenthesized] = STATE(7124), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), + [sym__statement_parenthesized] = STATE(7040), + [sym_pipeline_parenthesized] = STATE(7124), + [sym_cmd_identifier] = STATE(4817), + [sym_decl_def] = STATE(7072), + [sym_decl_export] = STATE(7072), + [sym_decl_extern] = STATE(7072), + [sym_decl_module] = STATE(7072), + [sym_decl_use] = STATE(7072), + [sym__ctrl_statement] = STATE(7124), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_stmt_source] = STATE(7124), + [sym_stmt_register] = STATE(7124), + [sym__stmt_hide] = STATE(7124), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(7124), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym__parenthesized_body] = STATE(7647), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(1361), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), [sym_comment] = STATE(80), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym__parenthesized_body_repeat2] = STATE(156), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_RPAREN] = ACTIONS(605), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym__parenthesized_body_repeat2] = STATE(161), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_let_DASHenv] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(615), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [81] = { - [sym__block_body_statement_parenthesized] = STATE(5650), - [sym__declaration_parenthesized] = STATE(6810), - [sym_decl_alias_parenthesized] = STATE(6895), - [sym_stmt_let_parenthesized] = STATE(6948), - [sym_stmt_mut_parenthesized] = STATE(6948), - [sym_stmt_const_parenthesized] = STATE(6948), - [sym_assignment_parenthesized] = STATE(6948), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), - [sym__statement_parenthesized] = STATE(6810), - [sym_pipeline_parenthesized] = STATE(6948), - [sym_cmd_identifier] = STATE(4758), - [sym_decl_def] = STATE(6895), - [sym_decl_export] = STATE(6895), - [sym_decl_extern] = STATE(6895), - [sym_decl_module] = STATE(6895), - [sym_decl_use] = STATE(6895), - [sym__ctrl_statement] = STATE(6948), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_stmt_source] = STATE(6948), - [sym_stmt_register] = STATE(6948), - [sym__stmt_hide] = STATE(6948), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6948), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym__parenthesized_body] = STATE(7382), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(1303), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), + [sym__block_body_statement_parenthesized] = STATE(5872), + [sym__declaration_parenthesized] = STATE(7040), + [sym_decl_alias_parenthesized] = STATE(7072), + [sym_stmt_let_parenthesized] = STATE(7124), + [sym_stmt_mut_parenthesized] = STATE(7124), + [sym_stmt_const_parenthesized] = STATE(7124), + [sym_assignment_parenthesized] = STATE(7124), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), + [sym__statement_parenthesized] = STATE(7040), + [sym_pipeline_parenthesized] = STATE(7124), + [sym_cmd_identifier] = STATE(4817), + [sym_decl_def] = STATE(7072), + [sym_decl_export] = STATE(7072), + [sym_decl_extern] = STATE(7072), + [sym_decl_module] = STATE(7072), + [sym_decl_use] = STATE(7072), + [sym__ctrl_statement] = STATE(7124), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_stmt_source] = STATE(7124), + [sym_stmt_register] = STATE(7124), + [sym__stmt_hide] = STATE(7124), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(7124), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym__parenthesized_body] = STATE(7621), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(1361), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), [sym_comment] = STATE(81), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym__parenthesized_body_repeat2] = STATE(156), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_RPAREN] = ACTIONS(607), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym__parenthesized_body_repeat2] = STATE(161), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_let_DASHenv] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [82] = { - [sym__block_body_statement_parenthesized] = STATE(5650), - [sym__declaration_parenthesized] = STATE(6810), - [sym_decl_alias_parenthesized] = STATE(6895), - [sym_stmt_let_parenthesized] = STATE(6948), - [sym_stmt_mut_parenthesized] = STATE(6948), - [sym_stmt_const_parenthesized] = STATE(6948), - [sym_assignment_parenthesized] = STATE(6948), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), - [sym__statement_parenthesized] = STATE(6810), - [sym_pipeline_parenthesized] = STATE(6948), - [sym_cmd_identifier] = STATE(4758), - [sym_decl_def] = STATE(6895), - [sym_decl_export] = STATE(6895), - [sym_decl_extern] = STATE(6895), - [sym_decl_module] = STATE(6895), - [sym_decl_use] = STATE(6895), - [sym__ctrl_statement] = STATE(6948), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_stmt_source] = STATE(6948), - [sym_stmt_register] = STATE(6948), - [sym__stmt_hide] = STATE(6948), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6948), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym__parenthesized_body] = STATE(7440), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(1303), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), + [sym__block_body_statement_parenthesized] = STATE(5872), + [sym__declaration_parenthesized] = STATE(7040), + [sym_decl_alias_parenthesized] = STATE(7072), + [sym_stmt_let_parenthesized] = STATE(7124), + [sym_stmt_mut_parenthesized] = STATE(7124), + [sym_stmt_const_parenthesized] = STATE(7124), + [sym_assignment_parenthesized] = STATE(7124), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), + [sym__statement_parenthesized] = STATE(7040), + [sym_pipeline_parenthesized] = STATE(7124), + [sym_cmd_identifier] = STATE(4817), + [sym_decl_def] = STATE(7072), + [sym_decl_export] = STATE(7072), + [sym_decl_extern] = STATE(7072), + [sym_decl_module] = STATE(7072), + [sym_decl_use] = STATE(7072), + [sym__ctrl_statement] = STATE(7124), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_stmt_source] = STATE(7124), + [sym_stmt_register] = STATE(7124), + [sym__stmt_hide] = STATE(7124), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(7124), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym__parenthesized_body] = STATE(7757), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(1361), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), [sym_comment] = STATE(82), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym__parenthesized_body_repeat2] = STATE(156), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_RPAREN] = ACTIONS(609), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym__parenthesized_body_repeat2] = STATE(161), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_let_DASHenv] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(619), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [83] = { - [sym__block_body_statement_parenthesized] = STATE(5650), - [sym__declaration_parenthesized] = STATE(6810), - [sym_decl_alias_parenthesized] = STATE(6895), - [sym_stmt_let_parenthesized] = STATE(6948), - [sym_stmt_mut_parenthesized] = STATE(6948), - [sym_stmt_const_parenthesized] = STATE(6948), - [sym_assignment_parenthesized] = STATE(6948), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), - [sym__statement_parenthesized] = STATE(6810), - [sym_pipeline_parenthesized] = STATE(6948), - [sym_cmd_identifier] = STATE(4758), - [sym_decl_def] = STATE(6895), - [sym_decl_export] = STATE(6895), - [sym_decl_extern] = STATE(6895), - [sym_decl_module] = STATE(6895), - [sym_decl_use] = STATE(6895), - [sym__ctrl_statement] = STATE(6948), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_stmt_source] = STATE(6948), - [sym_stmt_register] = STATE(6948), - [sym__stmt_hide] = STATE(6948), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6948), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym__parenthesized_body] = STATE(7542), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(1303), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7988), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1922), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(1296), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1569), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(83), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym__parenthesized_body_repeat2] = STATE(156), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_RPAREN] = ACTIONS(611), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(361), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(375), + [anon_sym_false] = ACTIONS(375), + [anon_sym_null] = ACTIONS(377), + [aux_sym_cmd_identifier_token38] = ACTIONS(379), + [aux_sym_cmd_identifier_token39] = ACTIONS(381), + [aux_sym_cmd_identifier_token40] = ACTIONS(381), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_continue] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_RBRACE] = ACTIONS(453), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(435), + [aux_sym__val_number_decimal_token2] = ACTIONS(437), + [aux_sym__val_number_decimal_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token4] = ACTIONS(441), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [84] = { - [sym__block_body_statement_parenthesized] = STATE(5650), - [sym__declaration_parenthesized] = STATE(6810), - [sym_decl_alias_parenthesized] = STATE(6895), - [sym_stmt_let_parenthesized] = STATE(6948), - [sym_stmt_mut_parenthesized] = STATE(6948), - [sym_stmt_const_parenthesized] = STATE(6948), - [sym_assignment_parenthesized] = STATE(6948), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), - [sym__statement_parenthesized] = STATE(6810), - [sym_pipeline_parenthesized] = STATE(6948), - [sym_cmd_identifier] = STATE(4758), - [sym_decl_def] = STATE(6895), - [sym_decl_export] = STATE(6895), - [sym_decl_extern] = STATE(6895), - [sym_decl_module] = STATE(6895), - [sym_decl_use] = STATE(6895), - [sym__ctrl_statement] = STATE(6948), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_stmt_source] = STATE(6948), - [sym_stmt_register] = STATE(6948), - [sym__stmt_hide] = STATE(6948), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6948), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym__parenthesized_body] = STATE(7667), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(1303), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), + [sym__block_body_statement_parenthesized] = STATE(5872), + [sym__declaration_parenthesized] = STATE(7040), + [sym_decl_alias_parenthesized] = STATE(7072), + [sym_stmt_let_parenthesized] = STATE(7124), + [sym_stmt_mut_parenthesized] = STATE(7124), + [sym_stmt_const_parenthesized] = STATE(7124), + [sym_assignment_parenthesized] = STATE(7124), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), + [sym__statement_parenthesized] = STATE(7040), + [sym_pipeline_parenthesized] = STATE(7124), + [sym_cmd_identifier] = STATE(4817), + [sym_decl_def] = STATE(7072), + [sym_decl_export] = STATE(7072), + [sym_decl_extern] = STATE(7072), + [sym_decl_module] = STATE(7072), + [sym_decl_use] = STATE(7072), + [sym__ctrl_statement] = STATE(7124), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_stmt_source] = STATE(7124), + [sym_stmt_register] = STATE(7124), + [sym__stmt_hide] = STATE(7124), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(7124), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym__parenthesized_body] = STATE(7662), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(1361), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), [sym_comment] = STATE(84), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym__parenthesized_body_repeat2] = STATE(156), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_RPAREN] = ACTIONS(613), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym__parenthesized_body_repeat2] = STATE(161), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_let_DASHenv] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(621), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [85] = { - [sym__block_body_statement_parenthesized] = STATE(5650), - [sym__declaration_parenthesized] = STATE(6810), - [sym_decl_alias_parenthesized] = STATE(6895), - [sym_stmt_let_parenthesized] = STATE(6948), - [sym_stmt_mut_parenthesized] = STATE(6948), - [sym_stmt_const_parenthesized] = STATE(6948), - [sym_assignment_parenthesized] = STATE(6948), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), - [sym__statement_parenthesized] = STATE(6810), - [sym_pipeline_parenthesized] = STATE(6948), - [sym_cmd_identifier] = STATE(4758), - [sym_decl_def] = STATE(6895), - [sym_decl_export] = STATE(6895), - [sym_decl_extern] = STATE(6895), - [sym_decl_module] = STATE(6895), - [sym_decl_use] = STATE(6895), - [sym__ctrl_statement] = STATE(6948), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_stmt_source] = STATE(6948), - [sym_stmt_register] = STATE(6948), - [sym__stmt_hide] = STATE(6948), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6948), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym__parenthesized_body] = STATE(7482), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(1303), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), + [sym__block_body_statement_parenthesized] = STATE(5872), + [sym__declaration_parenthesized] = STATE(7040), + [sym_decl_alias_parenthesized] = STATE(7072), + [sym_stmt_let_parenthesized] = STATE(7124), + [sym_stmt_mut_parenthesized] = STATE(7124), + [sym_stmt_const_parenthesized] = STATE(7124), + [sym_assignment_parenthesized] = STATE(7124), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), + [sym__statement_parenthesized] = STATE(7040), + [sym_pipeline_parenthesized] = STATE(7124), + [sym_cmd_identifier] = STATE(4817), + [sym_decl_def] = STATE(7072), + [sym_decl_export] = STATE(7072), + [sym_decl_extern] = STATE(7072), + [sym_decl_module] = STATE(7072), + [sym_decl_use] = STATE(7072), + [sym__ctrl_statement] = STATE(7124), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_stmt_source] = STATE(7124), + [sym_stmt_register] = STATE(7124), + [sym__stmt_hide] = STATE(7124), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(7124), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym__parenthesized_body] = STATE(7826), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(1361), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), [sym_comment] = STATE(85), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym__parenthesized_body_repeat2] = STATE(156), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_RPAREN] = ACTIONS(615), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym__parenthesized_body_repeat2] = STATE(161), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_let_DASHenv] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(623), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [86] = { - [sym__block_body_statement_parenthesized] = STATE(5650), - [sym__declaration_parenthesized] = STATE(6810), - [sym_decl_alias_parenthesized] = STATE(6895), - [sym_stmt_let_parenthesized] = STATE(6948), - [sym_stmt_mut_parenthesized] = STATE(6948), - [sym_stmt_const_parenthesized] = STATE(6948), - [sym_assignment_parenthesized] = STATE(6948), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), - [sym__statement_parenthesized] = STATE(6810), - [sym_pipeline_parenthesized] = STATE(6948), - [sym_cmd_identifier] = STATE(4758), - [sym_decl_def] = STATE(6895), - [sym_decl_export] = STATE(6895), - [sym_decl_extern] = STATE(6895), - [sym_decl_module] = STATE(6895), - [sym_decl_use] = STATE(6895), - [sym__ctrl_statement] = STATE(6948), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_stmt_source] = STATE(6948), - [sym_stmt_register] = STATE(6948), - [sym__stmt_hide] = STATE(6948), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6948), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym__parenthesized_body] = STATE(7569), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(1303), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), + [sym__block_body_statement_parenthesized] = STATE(5872), + [sym__declaration_parenthesized] = STATE(7040), + [sym_decl_alias_parenthesized] = STATE(7072), + [sym_stmt_let_parenthesized] = STATE(7124), + [sym_stmt_mut_parenthesized] = STATE(7124), + [sym_stmt_const_parenthesized] = STATE(7124), + [sym_assignment_parenthesized] = STATE(7124), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), + [sym__statement_parenthesized] = STATE(7040), + [sym_pipeline_parenthesized] = STATE(7124), + [sym_cmd_identifier] = STATE(4817), + [sym_decl_def] = STATE(7072), + [sym_decl_export] = STATE(7072), + [sym_decl_extern] = STATE(7072), + [sym_decl_module] = STATE(7072), + [sym_decl_use] = STATE(7072), + [sym__ctrl_statement] = STATE(7124), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_stmt_source] = STATE(7124), + [sym_stmt_register] = STATE(7124), + [sym__stmt_hide] = STATE(7124), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(7124), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym__parenthesized_body] = STATE(7809), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(1361), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), [sym_comment] = STATE(86), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym__parenthesized_body_repeat2] = STATE(156), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_RPAREN] = ACTIONS(617), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym__parenthesized_body_repeat2] = STATE(161), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_let_DASHenv] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(625), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [87] = { - [sym__block_body_statement_parenthesized] = STATE(5650), - [sym__declaration_parenthesized] = STATE(6810), - [sym_decl_alias_parenthesized] = STATE(6895), - [sym_stmt_let_parenthesized] = STATE(6948), - [sym_stmt_mut_parenthesized] = STATE(6948), - [sym_stmt_const_parenthesized] = STATE(6948), - [sym_assignment_parenthesized] = STATE(6948), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), - [sym__statement_parenthesized] = STATE(6810), - [sym_pipeline_parenthesized] = STATE(6948), - [sym_cmd_identifier] = STATE(4758), - [sym_decl_def] = STATE(6895), - [sym_decl_export] = STATE(6895), - [sym_decl_extern] = STATE(6895), - [sym_decl_module] = STATE(6895), - [sym_decl_use] = STATE(6895), - [sym__ctrl_statement] = STATE(6948), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_stmt_source] = STATE(6948), - [sym_stmt_register] = STATE(6948), - [sym__stmt_hide] = STATE(6948), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6948), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym__parenthesized_body] = STATE(7437), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(1303), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), + [sym__block_body_statement_parenthesized] = STATE(5872), + [sym__declaration_parenthesized] = STATE(7040), + [sym_decl_alias_parenthesized] = STATE(7072), + [sym_stmt_let_parenthesized] = STATE(7124), + [sym_stmt_mut_parenthesized] = STATE(7124), + [sym_stmt_const_parenthesized] = STATE(7124), + [sym_assignment_parenthesized] = STATE(7124), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), + [sym__statement_parenthesized] = STATE(7040), + [sym_pipeline_parenthesized] = STATE(7124), + [sym_cmd_identifier] = STATE(4817), + [sym_decl_def] = STATE(7072), + [sym_decl_export] = STATE(7072), + [sym_decl_extern] = STATE(7072), + [sym_decl_module] = STATE(7072), + [sym_decl_use] = STATE(7072), + [sym__ctrl_statement] = STATE(7124), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_stmt_source] = STATE(7124), + [sym_stmt_register] = STATE(7124), + [sym__stmt_hide] = STATE(7124), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(7124), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym__parenthesized_body] = STATE(7975), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(1361), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), [sym_comment] = STATE(87), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym__parenthesized_body_repeat2] = STATE(156), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_RPAREN] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym__parenthesized_body_repeat2] = STATE(161), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_let_DASHenv] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(627), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [88] = { - [sym__block_body_statement_parenthesized] = STATE(5650), - [sym__declaration_parenthesized] = STATE(6810), - [sym_decl_alias_parenthesized] = STATE(6895), - [sym_stmt_let_parenthesized] = STATE(6948), - [sym_stmt_mut_parenthesized] = STATE(6948), - [sym_stmt_const_parenthesized] = STATE(6948), - [sym_assignment_parenthesized] = STATE(6948), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), - [sym__statement_parenthesized] = STATE(6810), - [sym_pipeline_parenthesized] = STATE(6948), - [sym_cmd_identifier] = STATE(4758), - [sym_decl_def] = STATE(6895), - [sym_decl_export] = STATE(6895), - [sym_decl_extern] = STATE(6895), - [sym_decl_module] = STATE(6895), - [sym_decl_use] = STATE(6895), - [sym__ctrl_statement] = STATE(6948), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_stmt_source] = STATE(6948), - [sym_stmt_register] = STATE(6948), - [sym__stmt_hide] = STATE(6948), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6948), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym__parenthesized_body] = STATE(7536), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(1303), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), + [sym__block_body_statement_parenthesized] = STATE(5872), + [sym__declaration_parenthesized] = STATE(7040), + [sym_decl_alias_parenthesized] = STATE(7072), + [sym_stmt_let_parenthesized] = STATE(7124), + [sym_stmt_mut_parenthesized] = STATE(7124), + [sym_stmt_const_parenthesized] = STATE(7124), + [sym_assignment_parenthesized] = STATE(7124), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), + [sym__statement_parenthesized] = STATE(7040), + [sym_pipeline_parenthesized] = STATE(7124), + [sym_cmd_identifier] = STATE(4817), + [sym_decl_def] = STATE(7072), + [sym_decl_export] = STATE(7072), + [sym_decl_extern] = STATE(7072), + [sym_decl_module] = STATE(7072), + [sym_decl_use] = STATE(7072), + [sym__ctrl_statement] = STATE(7124), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_stmt_source] = STATE(7124), + [sym_stmt_register] = STATE(7124), + [sym__stmt_hide] = STATE(7124), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(7124), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym__parenthesized_body] = STATE(7882), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(1361), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), [sym_comment] = STATE(88), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym__parenthesized_body_repeat2] = STATE(156), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_RPAREN] = ACTIONS(621), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym__parenthesized_body_repeat2] = STATE(161), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_let_DASHenv] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(629), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [89] = { - [sym__block_body_statement_parenthesized] = STATE(5650), - [sym__declaration_parenthesized] = STATE(6810), - [sym_decl_alias_parenthesized] = STATE(6895), - [sym_stmt_let_parenthesized] = STATE(6948), - [sym_stmt_mut_parenthesized] = STATE(6948), - [sym_stmt_const_parenthesized] = STATE(6948), - [sym_assignment_parenthesized] = STATE(6948), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), - [sym__statement_parenthesized] = STATE(6810), - [sym_pipeline_parenthesized] = STATE(6948), - [sym_cmd_identifier] = STATE(4758), - [sym_decl_def] = STATE(6895), - [sym_decl_export] = STATE(6895), - [sym_decl_extern] = STATE(6895), - [sym_decl_module] = STATE(6895), - [sym_decl_use] = STATE(6895), - [sym__ctrl_statement] = STATE(6948), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_stmt_source] = STATE(6948), - [sym_stmt_register] = STATE(6948), - [sym__stmt_hide] = STATE(6948), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6948), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym__parenthesized_body] = STATE(7405), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(1303), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), + [sym__block_body_statement_parenthesized] = STATE(5872), + [sym__declaration_parenthesized] = STATE(7040), + [sym_decl_alias_parenthesized] = STATE(7072), + [sym_stmt_let_parenthesized] = STATE(7124), + [sym_stmt_mut_parenthesized] = STATE(7124), + [sym_stmt_const_parenthesized] = STATE(7124), + [sym_assignment_parenthesized] = STATE(7124), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), + [sym__statement_parenthesized] = STATE(7040), + [sym_pipeline_parenthesized] = STATE(7124), + [sym_cmd_identifier] = STATE(4817), + [sym_decl_def] = STATE(7072), + [sym_decl_export] = STATE(7072), + [sym_decl_extern] = STATE(7072), + [sym_decl_module] = STATE(7072), + [sym_decl_use] = STATE(7072), + [sym__ctrl_statement] = STATE(7124), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_stmt_source] = STATE(7124), + [sym_stmt_register] = STATE(7124), + [sym__stmt_hide] = STATE(7124), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(7124), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym__parenthesized_body] = STATE(7829), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(1361), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), [sym_comment] = STATE(89), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym__parenthesized_body_repeat2] = STATE(156), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_RPAREN] = ACTIONS(623), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym__parenthesized_body_repeat2] = STATE(161), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_let_DASHenv] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [90] = { - [sym__block_body_statement_parenthesized] = STATE(5650), - [sym__declaration_parenthesized] = STATE(6810), - [sym_decl_alias_parenthesized] = STATE(6895), - [sym_stmt_let_parenthesized] = STATE(6948), - [sym_stmt_mut_parenthesized] = STATE(6948), - [sym_stmt_const_parenthesized] = STATE(6948), - [sym_assignment_parenthesized] = STATE(6948), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), - [sym__statement_parenthesized] = STATE(6810), - [sym_pipeline_parenthesized] = STATE(6948), - [sym_cmd_identifier] = STATE(4758), - [sym_decl_def] = STATE(6895), - [sym_decl_export] = STATE(6895), - [sym_decl_extern] = STATE(6895), - [sym_decl_module] = STATE(6895), - [sym_decl_use] = STATE(6895), - [sym__ctrl_statement] = STATE(6948), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_stmt_source] = STATE(6948), - [sym_stmt_register] = STATE(6948), - [sym__stmt_hide] = STATE(6948), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6948), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym__parenthesized_body] = STATE(7584), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(1303), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), + [sym__block_body_statement_parenthesized] = STATE(5872), + [sym__declaration_parenthesized] = STATE(7040), + [sym_decl_alias_parenthesized] = STATE(7072), + [sym_stmt_let_parenthesized] = STATE(7124), + [sym_stmt_mut_parenthesized] = STATE(7124), + [sym_stmt_const_parenthesized] = STATE(7124), + [sym_assignment_parenthesized] = STATE(7124), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), + [sym__statement_parenthesized] = STATE(7040), + [sym_pipeline_parenthesized] = STATE(7124), + [sym_cmd_identifier] = STATE(4817), + [sym_decl_def] = STATE(7072), + [sym_decl_export] = STATE(7072), + [sym_decl_extern] = STATE(7072), + [sym_decl_module] = STATE(7072), + [sym_decl_use] = STATE(7072), + [sym__ctrl_statement] = STATE(7124), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_stmt_source] = STATE(7124), + [sym_stmt_register] = STATE(7124), + [sym__stmt_hide] = STATE(7124), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(7124), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym__parenthesized_body] = STATE(7924), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(1361), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), [sym_comment] = STATE(90), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym__parenthesized_body_repeat2] = STATE(156), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_RPAREN] = ACTIONS(625), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym__parenthesized_body_repeat2] = STATE(161), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_let_DASHenv] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(633), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [91] = { - [sym__block_body_statement_parenthesized] = STATE(5650), - [sym__declaration_parenthesized] = STATE(6810), - [sym_decl_alias_parenthesized] = STATE(6895), - [sym_stmt_let_parenthesized] = STATE(6948), - [sym_stmt_mut_parenthesized] = STATE(6948), - [sym_stmt_const_parenthesized] = STATE(6948), - [sym_assignment_parenthesized] = STATE(6948), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), - [sym__statement_parenthesized] = STATE(6810), - [sym_pipeline_parenthesized] = STATE(6948), - [sym_cmd_identifier] = STATE(4758), - [sym_decl_def] = STATE(6895), - [sym_decl_export] = STATE(6895), - [sym_decl_extern] = STATE(6895), - [sym_decl_module] = STATE(6895), - [sym_decl_use] = STATE(6895), - [sym__ctrl_statement] = STATE(6948), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_stmt_source] = STATE(6948), - [sym_stmt_register] = STATE(6948), - [sym__stmt_hide] = STATE(6948), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6948), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym__parenthesized_body] = STATE(7477), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(1303), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), + [sym__block_body_statement_parenthesized] = STATE(5872), + [sym__declaration_parenthesized] = STATE(7040), + [sym_decl_alias_parenthesized] = STATE(7072), + [sym_stmt_let_parenthesized] = STATE(7124), + [sym_stmt_mut_parenthesized] = STATE(7124), + [sym_stmt_const_parenthesized] = STATE(7124), + [sym_assignment_parenthesized] = STATE(7124), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), + [sym__statement_parenthesized] = STATE(7040), + [sym_pipeline_parenthesized] = STATE(7124), + [sym_cmd_identifier] = STATE(4817), + [sym_decl_def] = STATE(7072), + [sym_decl_export] = STATE(7072), + [sym_decl_extern] = STATE(7072), + [sym_decl_module] = STATE(7072), + [sym_decl_use] = STATE(7072), + [sym__ctrl_statement] = STATE(7124), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_stmt_source] = STATE(7124), + [sym_stmt_register] = STATE(7124), + [sym__stmt_hide] = STATE(7124), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(7124), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym__parenthesized_body] = STATE(7886), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(1361), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), [sym_comment] = STATE(91), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym__parenthesized_body_repeat2] = STATE(156), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_RPAREN] = ACTIONS(627), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym__parenthesized_body_repeat2] = STATE(161), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_let_DASHenv] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(635), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [92] = { - [sym__block_body_statement_parenthesized] = STATE(5650), - [sym__declaration_parenthesized] = STATE(6810), - [sym_decl_alias_parenthesized] = STATE(6895), - [sym_stmt_let_parenthesized] = STATE(6948), - [sym_stmt_mut_parenthesized] = STATE(6948), - [sym_stmt_const_parenthesized] = STATE(6948), - [sym_assignment_parenthesized] = STATE(6948), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), - [sym__statement_parenthesized] = STATE(6810), - [sym_pipeline_parenthesized] = STATE(6948), - [sym_cmd_identifier] = STATE(4758), - [sym_decl_def] = STATE(6895), - [sym_decl_export] = STATE(6895), - [sym_decl_extern] = STATE(6895), - [sym_decl_module] = STATE(6895), - [sym_decl_use] = STATE(6895), - [sym__ctrl_statement] = STATE(6948), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_stmt_source] = STATE(6948), - [sym_stmt_register] = STATE(6948), - [sym__stmt_hide] = STATE(6948), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6948), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym__parenthesized_body] = STATE(7622), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(1303), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), + [sym__block_body_statement_parenthesized] = STATE(5872), + [sym__declaration_parenthesized] = STATE(7040), + [sym_decl_alias_parenthesized] = STATE(7072), + [sym_stmt_let_parenthesized] = STATE(7124), + [sym_stmt_mut_parenthesized] = STATE(7124), + [sym_stmt_const_parenthesized] = STATE(7124), + [sym_assignment_parenthesized] = STATE(7124), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), + [sym__statement_parenthesized] = STATE(7040), + [sym_pipeline_parenthesized] = STATE(7124), + [sym_cmd_identifier] = STATE(4817), + [sym_decl_def] = STATE(7072), + [sym_decl_export] = STATE(7072), + [sym_decl_extern] = STATE(7072), + [sym_decl_module] = STATE(7072), + [sym_decl_use] = STATE(7072), + [sym__ctrl_statement] = STATE(7124), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_stmt_source] = STATE(7124), + [sym_stmt_register] = STATE(7124), + [sym__stmt_hide] = STATE(7124), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(7124), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym__parenthesized_body] = STATE(7958), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(1361), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), [sym_comment] = STATE(92), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym__parenthesized_body_repeat2] = STATE(156), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_RPAREN] = ACTIONS(629), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym__parenthesized_body_repeat2] = STATE(161), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_let_DASHenv] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(637), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [93] = { - [sym__block_body_statement_parenthesized] = STATE(5650), - [sym__declaration_parenthesized] = STATE(6810), - [sym_decl_alias_parenthesized] = STATE(6895), - [sym_stmt_let_parenthesized] = STATE(6948), - [sym_stmt_mut_parenthesized] = STATE(6948), - [sym_stmt_const_parenthesized] = STATE(6948), - [sym_assignment_parenthesized] = STATE(6948), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), - [sym__statement_parenthesized] = STATE(6810), - [sym_pipeline_parenthesized] = STATE(6948), - [sym_cmd_identifier] = STATE(4758), - [sym_decl_def] = STATE(6895), - [sym_decl_export] = STATE(6895), - [sym_decl_extern] = STATE(6895), - [sym_decl_module] = STATE(6895), - [sym_decl_use] = STATE(6895), - [sym__ctrl_statement] = STATE(6948), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_stmt_source] = STATE(6948), - [sym_stmt_register] = STATE(6948), - [sym__stmt_hide] = STATE(6948), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6948), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym__parenthesized_body] = STATE(7692), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(1303), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), + [sym__block_body_statement] = STATE(6369), + [sym__declaration] = STATE(6892), + [sym_decl_alias] = STATE(7011), + [sym_stmt_let] = STATE(6877), + [sym_stmt_mut] = STATE(6877), + [sym_stmt_const] = STATE(6877), + [sym_assignment] = STATE(6877), + [sym__mutable_assignment_pattern] = STATE(6904), + [sym__statement] = STATE(6892), + [sym_pipeline] = STATE(6877), + [sym__block_body] = STATE(7982), + [sym_cmd_identifier] = STATE(4714), + [sym_decl_def] = STATE(7011), + [sym_decl_export] = STATE(7011), + [sym_decl_extern] = STATE(7011), + [sym_decl_module] = STATE(7011), + [sym_decl_use] = STATE(7011), + [sym__ctrl_statement] = STATE(6877), + [sym__ctrl_expression] = STATE(5155), + [sym_ctrl_for] = STATE(7034), + [sym_ctrl_loop] = STATE(7034), + [sym_ctrl_error] = STATE(7034), + [sym_ctrl_while] = STATE(7034), + [sym_ctrl_do] = STATE(5175), + [sym_ctrl_if] = STATE(5175), + [sym_ctrl_match] = STATE(5175), + [sym_ctrl_try] = STATE(5175), + [sym_ctrl_return] = STATE(5175), + [sym_pipe_element] = STATE(4782), + [sym_stmt_source] = STATE(6877), + [sym_stmt_register] = STATE(6877), + [sym__stmt_hide] = STATE(6877), + [sym_hide_mod] = STATE(6852), + [sym_hide_env] = STATE(6852), + [sym__stmt_overlay] = STATE(6877), + [sym_overlay_list] = STATE(6913), + [sym_overlay_hide] = STATE(6913), + [sym_overlay_new] = STATE(6913), + [sym_overlay_use] = STATE(6913), + [sym_where_command] = STATE(5180), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2509), + [sym__expr_unary_minus] = STATE(2510), + [sym_expr_binary] = STATE(2509), + [sym__expr_binary_expression] = STATE(3876), + [sym_expr_parenthesized] = STATE(2042), + [sym_val_range] = STATE(3900), + [sym__value] = STATE(2509), + [sym_val_nothing] = STATE(2441), + [sym_val_bool] = STATE(2441), + [sym_val_variable] = STATE(1364), + [sym_val_number] = STATE(2441), + [sym__val_number_decimal] = STATE(1665), + [sym__val_number] = STATE(2488), + [sym_val_duration] = STATE(2441), + [sym_val_filesize] = STATE(2441), + [sym_val_binary] = STATE(2441), + [sym_val_string] = STATE(2441), + [sym__raw_str] = STATE(2065), + [sym__str_double_quotes] = STATE(2065), + [sym_val_interpolated] = STATE(2441), + [sym__inter_single_quotes] = STATE(2563), + [sym__inter_double_quotes] = STATE(2436), + [sym_val_list] = STATE(2441), + [sym_val_record] = STATE(2441), + [sym_val_table] = STATE(2441), + [sym_val_closure] = STATE(2441), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5180), [sym_comment] = STATE(93), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym__parenthesized_body_repeat2] = STATE(156), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_RPAREN] = ACTIONS(631), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), - }, - [94] = { - [sym__block_body_statement_parenthesized] = STATE(5650), - [sym__declaration_parenthesized] = STATE(6810), - [sym_decl_alias_parenthesized] = STATE(6895), - [sym_stmt_let_parenthesized] = STATE(6948), - [sym_stmt_mut_parenthesized] = STATE(6948), - [sym_stmt_const_parenthesized] = STATE(6948), - [sym_assignment_parenthesized] = STATE(6948), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), - [sym__statement_parenthesized] = STATE(6810), - [sym_pipeline_parenthesized] = STATE(6948), - [sym_cmd_identifier] = STATE(4758), - [sym_decl_def] = STATE(6895), - [sym_decl_export] = STATE(6895), - [sym_decl_extern] = STATE(6895), - [sym_decl_module] = STATE(6895), - [sym_decl_use] = STATE(6895), - [sym__ctrl_statement] = STATE(6948), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_stmt_source] = STATE(6948), - [sym_stmt_register] = STATE(6948), - [sym__stmt_hide] = STATE(6948), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6948), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym__parenthesized_body] = STATE(7651), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(1303), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), - [sym_comment] = STATE(94), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym__parenthesized_body_repeat2] = STATE(156), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_RPAREN] = ACTIONS(633), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), - }, - [95] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7607), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1445), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym_val_variable] = STATE(1268), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1465), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), - [sym_comment] = STATE(95), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(447), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - }, - [96] = { - [sym__block_body_statement] = STATE(5958), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1445), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym_val_variable] = STATE(1268), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1465), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), - [sym_comment] = STATE(96), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(234), - [aux_sym__block_body_repeat2] = STATE(154), - [aux_sym_pipe_element_repeat2] = STATE(411), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_RPAREN] = ACTIONS(635), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(635), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - }, - [97] = { - [sym__block_body_statement_parenthesized] = STATE(5650), - [sym__declaration_parenthesized] = STATE(6810), - [sym_decl_alias_parenthesized] = STATE(6895), - [sym_stmt_let_parenthesized] = STATE(6948), - [sym_stmt_mut_parenthesized] = STATE(6948), - [sym_stmt_const_parenthesized] = STATE(6948), - [sym_assignment_parenthesized] = STATE(6948), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), - [sym__statement_parenthesized] = STATE(6810), - [sym_pipeline_parenthesized] = STATE(6948), - [sym_cmd_identifier] = STATE(4758), - [sym_decl_def] = STATE(6895), - [sym_decl_export] = STATE(6895), - [sym_decl_extern] = STATE(6895), - [sym_decl_module] = STATE(6895), - [sym_decl_use] = STATE(6895), - [sym__ctrl_statement] = STATE(6948), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_stmt_source] = STATE(6948), - [sym_stmt_register] = STATE(6948), - [sym__stmt_hide] = STATE(6948), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6948), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym__parenthesized_body] = STATE(7690), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(1303), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), - [sym_comment] = STATE(97), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym__parenthesized_body_repeat2] = STATE(156), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_RPAREN] = ACTIONS(637), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), - }, - [98] = { - [sym__block_body_statement_parenthesized] = STATE(5650), - [sym__declaration_parenthesized] = STATE(6810), - [sym_decl_alias_parenthesized] = STATE(6895), - [sym_stmt_let_parenthesized] = STATE(6948), - [sym_stmt_mut_parenthesized] = STATE(6948), - [sym_stmt_const_parenthesized] = STATE(6948), - [sym_assignment_parenthesized] = STATE(6948), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), - [sym__statement_parenthesized] = STATE(6810), - [sym_pipeline_parenthesized] = STATE(6948), - [sym_cmd_identifier] = STATE(4758), - [sym_decl_def] = STATE(6895), - [sym_decl_export] = STATE(6895), - [sym_decl_extern] = STATE(6895), - [sym_decl_module] = STATE(6895), - [sym_decl_use] = STATE(6895), - [sym__ctrl_statement] = STATE(6948), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_stmt_source] = STATE(6948), - [sym_stmt_register] = STATE(6948), - [sym__stmt_hide] = STATE(6948), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6948), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym__parenthesized_body] = STATE(7526), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(1303), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), - [sym_comment] = STATE(98), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym__parenthesized_body_repeat2] = STATE(156), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_RPAREN] = ACTIONS(639), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), - }, - [99] = { - [sym__block_body_statement_parenthesized] = STATE(5650), - [sym__declaration_parenthesized] = STATE(6810), - [sym_decl_alias_parenthesized] = STATE(6895), - [sym_stmt_let_parenthesized] = STATE(6948), - [sym_stmt_mut_parenthesized] = STATE(6948), - [sym_stmt_const_parenthesized] = STATE(6948), - [sym_assignment_parenthesized] = STATE(6948), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), - [sym__statement_parenthesized] = STATE(6810), - [sym_pipeline_parenthesized] = STATE(6948), - [sym_cmd_identifier] = STATE(4758), - [sym_decl_def] = STATE(6895), - [sym_decl_export] = STATE(6895), - [sym_decl_extern] = STATE(6895), - [sym_decl_module] = STATE(6895), - [sym_decl_use] = STATE(6895), - [sym__ctrl_statement] = STATE(6948), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_stmt_source] = STATE(6948), - [sym_stmt_register] = STATE(6948), - [sym__stmt_hide] = STATE(6948), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6948), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym__parenthesized_body] = STATE(7716), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(1303), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), - [sym_comment] = STATE(99), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym__parenthesized_body_repeat2] = STATE(156), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_RPAREN] = ACTIONS(641), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), - }, - [100] = { - [sym__block_body_statement_parenthesized] = STATE(5650), - [sym__declaration_parenthesized] = STATE(6810), - [sym_decl_alias_parenthesized] = STATE(6895), - [sym_stmt_let_parenthesized] = STATE(6948), - [sym_stmt_mut_parenthesized] = STATE(6948), - [sym_stmt_const_parenthesized] = STATE(6948), - [sym_assignment_parenthesized] = STATE(6948), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), - [sym__statement_parenthesized] = STATE(6810), - [sym_pipeline_parenthesized] = STATE(6948), - [sym_cmd_identifier] = STATE(4758), - [sym_decl_def] = STATE(6895), - [sym_decl_export] = STATE(6895), - [sym_decl_extern] = STATE(6895), - [sym_decl_module] = STATE(6895), - [sym_decl_use] = STATE(6895), - [sym__ctrl_statement] = STATE(6948), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_stmt_source] = STATE(6948), - [sym_stmt_register] = STATE(6948), - [sym__stmt_hide] = STATE(6948), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6948), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym__parenthesized_body] = STATE(7655), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(1303), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), - [sym_comment] = STATE(100), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym__parenthesized_body_repeat2] = STATE(156), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_RPAREN] = ACTIONS(643), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), - }, - [101] = { - [sym__block_body_statement_parenthesized] = STATE(5650), - [sym__declaration_parenthesized] = STATE(6810), - [sym_decl_alias_parenthesized] = STATE(6895), - [sym_stmt_let_parenthesized] = STATE(6948), - [sym_stmt_mut_parenthesized] = STATE(6948), - [sym_stmt_const_parenthesized] = STATE(6948), - [sym_assignment_parenthesized] = STATE(6948), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), - [sym__statement_parenthesized] = STATE(6810), - [sym_pipeline_parenthesized] = STATE(6948), - [sym_cmd_identifier] = STATE(4758), - [sym_decl_def] = STATE(6895), - [sym_decl_export] = STATE(6895), - [sym_decl_extern] = STATE(6895), - [sym_decl_module] = STATE(6895), - [sym_decl_use] = STATE(6895), - [sym__ctrl_statement] = STATE(6948), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_stmt_source] = STATE(6948), - [sym_stmt_register] = STATE(6948), - [sym__stmt_hide] = STATE(6948), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6948), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym__parenthesized_body] = STATE(7674), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(1303), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), - [sym_comment] = STATE(101), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym__parenthesized_body_repeat2] = STATE(156), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_RPAREN] = ACTIONS(645), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), - }, - [102] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7607), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1445), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym_val_variable] = STATE(1268), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1465), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), - [sym_comment] = STATE(102), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(647), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - }, - [103] = { - [sym__block_body_statement_parenthesized] = STATE(5650), - [sym__declaration_parenthesized] = STATE(6810), - [sym_decl_alias_parenthesized] = STATE(6895), - [sym_stmt_let_parenthesized] = STATE(6948), - [sym_stmt_mut_parenthesized] = STATE(6948), - [sym_stmt_const_parenthesized] = STATE(6948), - [sym_assignment_parenthesized] = STATE(6948), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), - [sym__statement_parenthesized] = STATE(6810), - [sym_pipeline_parenthesized] = STATE(6948), - [sym_cmd_identifier] = STATE(4758), - [sym_decl_def] = STATE(6895), - [sym_decl_export] = STATE(6895), - [sym_decl_extern] = STATE(6895), - [sym_decl_module] = STATE(6895), - [sym_decl_use] = STATE(6895), - [sym__ctrl_statement] = STATE(6948), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_stmt_source] = STATE(6948), - [sym_stmt_register] = STATE(6948), - [sym__stmt_hide] = STATE(6948), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6948), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym__parenthesized_body] = STATE(7558), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(1303), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), - [sym_comment] = STATE(103), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym__parenthesized_body_repeat2] = STATE(156), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_RPAREN] = ACTIONS(649), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), - }, - [104] = { - [sym__block_body_statement_parenthesized] = STATE(5650), - [sym__declaration_parenthesized] = STATE(6810), - [sym_decl_alias_parenthesized] = STATE(6895), - [sym_stmt_let_parenthesized] = STATE(6948), - [sym_stmt_mut_parenthesized] = STATE(6948), - [sym_stmt_const_parenthesized] = STATE(6948), - [sym_assignment_parenthesized] = STATE(6948), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), - [sym__statement_parenthesized] = STATE(6810), - [sym_pipeline_parenthesized] = STATE(6948), - [sym_cmd_identifier] = STATE(4758), - [sym_decl_def] = STATE(6895), - [sym_decl_export] = STATE(6895), - [sym_decl_extern] = STATE(6895), - [sym_decl_module] = STATE(6895), - [sym_decl_use] = STATE(6895), - [sym__ctrl_statement] = STATE(6948), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_stmt_source] = STATE(6948), - [sym_stmt_register] = STATE(6948), - [sym__stmt_hide] = STATE(6948), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6948), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym__parenthesized_body] = STATE(7383), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(1303), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), - [sym_comment] = STATE(104), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym__parenthesized_body_repeat2] = STATE(156), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_RPAREN] = ACTIONS(651), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), - }, - [105] = { - [sym__block_body_statement_parenthesized] = STATE(5650), - [sym__declaration_parenthesized] = STATE(6810), - [sym_decl_alias_parenthesized] = STATE(6895), - [sym_stmt_let_parenthesized] = STATE(6948), - [sym_stmt_mut_parenthesized] = STATE(6948), - [sym_stmt_const_parenthesized] = STATE(6948), - [sym_assignment_parenthesized] = STATE(6948), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), - [sym__statement_parenthesized] = STATE(6810), - [sym_pipeline_parenthesized] = STATE(6948), - [sym_cmd_identifier] = STATE(4758), - [sym_decl_def] = STATE(6895), - [sym_decl_export] = STATE(6895), - [sym_decl_extern] = STATE(6895), - [sym_decl_module] = STATE(6895), - [sym_decl_use] = STATE(6895), - [sym__ctrl_statement] = STATE(6948), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_stmt_source] = STATE(6948), - [sym_stmt_register] = STATE(6948), - [sym__stmt_hide] = STATE(6948), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6948), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym__parenthesized_body] = STATE(7598), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(1303), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), - [sym_comment] = STATE(105), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym__parenthesized_body_repeat2] = STATE(156), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_RPAREN] = ACTIONS(653), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), - }, - [106] = { - [sym__block_body_statement_parenthesized] = STATE(5650), - [sym__declaration_parenthesized] = STATE(6810), - [sym_decl_alias_parenthesized] = STATE(6895), - [sym_stmt_let_parenthesized] = STATE(6948), - [sym_stmt_mut_parenthesized] = STATE(6948), - [sym_stmt_const_parenthesized] = STATE(6948), - [sym_assignment_parenthesized] = STATE(6948), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), - [sym__statement_parenthesized] = STATE(6810), - [sym_pipeline_parenthesized] = STATE(6948), - [sym_cmd_identifier] = STATE(4758), - [sym_decl_def] = STATE(6895), - [sym_decl_export] = STATE(6895), - [sym_decl_extern] = STATE(6895), - [sym_decl_module] = STATE(6895), - [sym_decl_use] = STATE(6895), - [sym__ctrl_statement] = STATE(6948), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_stmt_source] = STATE(6948), - [sym_stmt_register] = STATE(6948), - [sym__stmt_hide] = STATE(6948), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6948), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym__parenthesized_body] = STATE(7610), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(1303), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), - [sym_comment] = STATE(106), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym__parenthesized_body_repeat2] = STATE(156), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_RPAREN] = ACTIONS(655), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), - }, - [107] = { - [sym__block_body_statement_parenthesized] = STATE(5650), - [sym__declaration_parenthesized] = STATE(6810), - [sym_decl_alias_parenthesized] = STATE(6895), - [sym_stmt_let_parenthesized] = STATE(6948), - [sym_stmt_mut_parenthesized] = STATE(6948), - [sym_stmt_const_parenthesized] = STATE(6948), - [sym_assignment_parenthesized] = STATE(6948), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), - [sym__statement_parenthesized] = STATE(6810), - [sym_pipeline_parenthesized] = STATE(6948), - [sym_cmd_identifier] = STATE(4758), - [sym_decl_def] = STATE(6895), - [sym_decl_export] = STATE(6895), - [sym_decl_extern] = STATE(6895), - [sym_decl_module] = STATE(6895), - [sym_decl_use] = STATE(6895), - [sym__ctrl_statement] = STATE(6948), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_stmt_source] = STATE(6948), - [sym_stmt_register] = STATE(6948), - [sym__stmt_hide] = STATE(6948), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6948), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym__parenthesized_body] = STATE(7380), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(1303), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), - [sym_comment] = STATE(107), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym__parenthesized_body_repeat2] = STATE(156), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_RPAREN] = ACTIONS(657), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), - }, - [108] = { - [sym__block_body_statement_parenthesized] = STATE(5650), - [sym__declaration_parenthesized] = STATE(6810), - [sym_decl_alias_parenthesized] = STATE(6895), - [sym_stmt_let_parenthesized] = STATE(6948), - [sym_stmt_mut_parenthesized] = STATE(6948), - [sym_stmt_const_parenthesized] = STATE(6948), - [sym_assignment_parenthesized] = STATE(6948), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), - [sym__statement_parenthesized] = STATE(6810), - [sym_pipeline_parenthesized] = STATE(6948), - [sym_cmd_identifier] = STATE(4758), - [sym_decl_def] = STATE(6895), - [sym_decl_export] = STATE(6895), - [sym_decl_extern] = STATE(6895), - [sym_decl_module] = STATE(6895), - [sym_decl_use] = STATE(6895), - [sym__ctrl_statement] = STATE(6948), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_stmt_source] = STATE(6948), - [sym_stmt_register] = STATE(6948), - [sym__stmt_hide] = STATE(6948), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6948), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym__parenthesized_body] = STATE(7493), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(1303), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), - [sym_comment] = STATE(108), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym__parenthesized_body_repeat2] = STATE(156), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_RPAREN] = ACTIONS(659), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), - }, - [109] = { - [sym__block_body_statement_parenthesized] = STATE(5650), - [sym__declaration_parenthesized] = STATE(6810), - [sym_decl_alias_parenthesized] = STATE(6895), - [sym_stmt_let_parenthesized] = STATE(6948), - [sym_stmt_mut_parenthesized] = STATE(6948), - [sym_stmt_const_parenthesized] = STATE(6948), - [sym_assignment_parenthesized] = STATE(6948), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), - [sym__statement_parenthesized] = STATE(6810), - [sym_pipeline_parenthesized] = STATE(6948), - [sym_cmd_identifier] = STATE(4758), - [sym_decl_def] = STATE(6895), - [sym_decl_export] = STATE(6895), - [sym_decl_extern] = STATE(6895), - [sym_decl_module] = STATE(6895), - [sym_decl_use] = STATE(6895), - [sym__ctrl_statement] = STATE(6948), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_stmt_source] = STATE(6948), - [sym_stmt_register] = STATE(6948), - [sym__stmt_hide] = STATE(6948), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6948), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym__parenthesized_body] = STATE(7669), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(1303), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), - [sym_comment] = STATE(109), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym__parenthesized_body_repeat2] = STATE(156), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_RPAREN] = ACTIONS(661), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), - }, - [110] = { - [sym__block_body_statement_parenthesized] = STATE(5650), - [sym__declaration_parenthesized] = STATE(6810), - [sym_decl_alias_parenthesized] = STATE(6895), - [sym_stmt_let_parenthesized] = STATE(6948), - [sym_stmt_mut_parenthesized] = STATE(6948), - [sym_stmt_const_parenthesized] = STATE(6948), - [sym_assignment_parenthesized] = STATE(6948), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), - [sym__statement_parenthesized] = STATE(6810), - [sym_pipeline_parenthesized] = STATE(6948), - [sym_cmd_identifier] = STATE(4758), - [sym_decl_def] = STATE(6895), - [sym_decl_export] = STATE(6895), - [sym_decl_extern] = STATE(6895), - [sym_decl_module] = STATE(6895), - [sym_decl_use] = STATE(6895), - [sym__ctrl_statement] = STATE(6948), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_stmt_source] = STATE(6948), - [sym_stmt_register] = STATE(6948), - [sym__stmt_hide] = STATE(6948), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6948), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym__parenthesized_body] = STATE(7606), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(1303), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), - [sym_comment] = STATE(110), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym__parenthesized_body_repeat2] = STATE(156), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_RPAREN] = ACTIONS(663), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), - }, - [111] = { - [sym__block_body_statement_parenthesized] = STATE(5650), - [sym__declaration_parenthesized] = STATE(6810), - [sym_decl_alias_parenthesized] = STATE(6895), - [sym_stmt_let_parenthesized] = STATE(6948), - [sym_stmt_mut_parenthesized] = STATE(6948), - [sym_stmt_const_parenthesized] = STATE(6948), - [sym_assignment_parenthesized] = STATE(6948), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), - [sym__statement_parenthesized] = STATE(6810), - [sym_pipeline_parenthesized] = STATE(6948), - [sym_cmd_identifier] = STATE(4758), - [sym_decl_def] = STATE(6895), - [sym_decl_export] = STATE(6895), - [sym_decl_extern] = STATE(6895), - [sym_decl_module] = STATE(6895), - [sym_decl_use] = STATE(6895), - [sym__ctrl_statement] = STATE(6948), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_stmt_source] = STATE(6948), - [sym_stmt_register] = STATE(6948), - [sym__stmt_hide] = STATE(6948), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6948), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym__parenthesized_body] = STATE(7418), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(1303), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), - [sym_comment] = STATE(111), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym__parenthesized_body_repeat2] = STATE(156), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_RPAREN] = ACTIONS(665), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), - }, - [112] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7600), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1445), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym_val_variable] = STATE(1268), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1465), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), - [sym_comment] = STATE(112), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(415), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - }, - [113] = { - [sym__block_body_statement] = STATE(6552), - [sym__declaration] = STATE(7079), - [sym_decl_alias] = STATE(7169), - [sym_stmt_let] = STATE(6842), - [sym_stmt_mut] = STATE(6842), - [sym_stmt_const] = STATE(6842), - [sym_assignment] = STATE(6842), - [sym__mutable_assignment_pattern] = STATE(6847), - [sym__statement] = STATE(7079), - [sym_pipeline] = STATE(6842), - [sym__block_body] = STATE(7548), - [sym_cmd_identifier] = STATE(4801), - [sym_decl_def] = STATE(7169), - [sym_decl_export] = STATE(7169), - [sym_decl_extern] = STATE(7169), - [sym_decl_module] = STATE(7169), - [sym_decl_use] = STATE(7169), - [sym__ctrl_statement] = STATE(6842), - [sym__ctrl_expression] = STATE(5080), - [sym_ctrl_for] = STATE(6702), - [sym_ctrl_loop] = STATE(6702), - [sym_ctrl_error] = STATE(6702), - [sym_ctrl_while] = STATE(6702), - [sym_ctrl_do] = STATE(5113), - [sym_ctrl_if] = STATE(5113), - [sym_ctrl_match] = STATE(5113), - [sym_ctrl_try] = STATE(5113), - [sym_ctrl_return] = STATE(5113), - [sym_pipe_element] = STATE(4775), - [sym_stmt_source] = STATE(6842), - [sym_stmt_register] = STATE(6842), - [sym__stmt_hide] = STATE(6842), - [sym_hide_mod] = STATE(6758), - [sym_hide_env] = STATE(6758), - [sym__stmt_overlay] = STATE(6842), - [sym_overlay_list] = STATE(6961), - [sym_overlay_hide] = STATE(6961), - [sym_overlay_new] = STATE(6961), - [sym_overlay_use] = STATE(6961), - [sym_where_command] = STATE(5143), - [sym__expression] = STATE(3799), - [sym_expr_unary] = STATE(2430), - [sym__expr_unary_minus] = STATE(2432), - [sym_expr_binary] = STATE(2430), - [sym__expr_binary_expression] = STATE(3832), - [sym_expr_parenthesized] = STATE(2004), - [sym_val_range] = STATE(3821), - [sym__value] = STATE(2430), - [sym_val_nothing] = STATE(2399), - [sym_val_bool] = STATE(2399), - [sym_val_variable] = STATE(1330), - [sym_val_number] = STATE(2399), - [sym__val_number_decimal] = STATE(1568), - [sym__val_number] = STATE(2385), - [sym_val_duration] = STATE(2399), - [sym_val_filesize] = STATE(2399), - [sym_val_binary] = STATE(2399), - [sym_val_string] = STATE(2399), - [sym__str_double_quotes] = STATE(1975), - [sym_val_interpolated] = STATE(2399), - [sym__inter_single_quotes] = STATE(2384), - [sym__inter_double_quotes] = STATE(2390), - [sym_val_list] = STATE(2399), - [sym_val_record] = STATE(2399), - [sym_val_table] = STATE(2399), - [sym_val_closure] = STATE(2399), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(5143), - [sym_comment] = STATE(113), - [aux_sym_pipeline_repeat1] = STATE(193), - [aux_sym__block_body_repeat1] = STATE(151), - [aux_sym__block_body_repeat2] = STATE(153), - [aux_sym_pipe_element_repeat2] = STATE(413), - [ts_builtin_sym_end] = ACTIONS(667), + [aux_sym_pipeline_repeat1] = STATE(194), + [aux_sym__block_body_repeat1] = STATE(121), + [aux_sym__block_body_repeat2] = STATE(159), + [aux_sym_pipe_element_repeat2] = STATE(354), + [ts_builtin_sym_end] = ACTIONS(639), [anon_sym_export] = ACTIONS(9), [anon_sym_alias] = ACTIONS(11), [anon_sym_let] = ACTIONS(13), @@ -86693,6946 +83906,10962 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), [aux_sym_env_var_token1] = ACTIONS(119), [anon_sym_CARET] = ACTIONS(121), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(123), + }, + [94] = { + [sym__block_body_statement_parenthesized] = STATE(5872), + [sym__declaration_parenthesized] = STATE(7040), + [sym_decl_alias_parenthesized] = STATE(7072), + [sym_stmt_let_parenthesized] = STATE(7124), + [sym_stmt_mut_parenthesized] = STATE(7124), + [sym_stmt_const_parenthesized] = STATE(7124), + [sym_assignment_parenthesized] = STATE(7124), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), + [sym__statement_parenthesized] = STATE(7040), + [sym_pipeline_parenthesized] = STATE(7124), + [sym_cmd_identifier] = STATE(4817), + [sym_decl_def] = STATE(7072), + [sym_decl_export] = STATE(7072), + [sym_decl_extern] = STATE(7072), + [sym_decl_module] = STATE(7072), + [sym_decl_use] = STATE(7072), + [sym__ctrl_statement] = STATE(7124), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_stmt_source] = STATE(7124), + [sym_stmt_register] = STATE(7124), + [sym__stmt_hide] = STATE(7124), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(7124), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym__parenthesized_body] = STATE(7785), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(1361), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), + [sym_comment] = STATE(94), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym__parenthesized_body_repeat2] = STATE(161), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_let_DASHenv] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(641), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), + }, + [95] = { + [sym__block_body_statement_parenthesized] = STATE(5872), + [sym__declaration_parenthesized] = STATE(7040), + [sym_decl_alias_parenthesized] = STATE(7072), + [sym_stmt_let_parenthesized] = STATE(7124), + [sym_stmt_mut_parenthesized] = STATE(7124), + [sym_stmt_const_parenthesized] = STATE(7124), + [sym_assignment_parenthesized] = STATE(7124), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), + [sym__statement_parenthesized] = STATE(7040), + [sym_pipeline_parenthesized] = STATE(7124), + [sym_cmd_identifier] = STATE(4817), + [sym_decl_def] = STATE(7072), + [sym_decl_export] = STATE(7072), + [sym_decl_extern] = STATE(7072), + [sym_decl_module] = STATE(7072), + [sym_decl_use] = STATE(7072), + [sym__ctrl_statement] = STATE(7124), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_stmt_source] = STATE(7124), + [sym_stmt_register] = STATE(7124), + [sym__stmt_hide] = STATE(7124), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(7124), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym__parenthesized_body] = STATE(7873), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(1361), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), + [sym_comment] = STATE(95), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym__parenthesized_body_repeat2] = STATE(161), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_let_DASHenv] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(643), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), + }, + [96] = { + [sym__block_body_statement_parenthesized] = STATE(5872), + [sym__declaration_parenthesized] = STATE(7040), + [sym_decl_alias_parenthesized] = STATE(7072), + [sym_stmt_let_parenthesized] = STATE(7124), + [sym_stmt_mut_parenthesized] = STATE(7124), + [sym_stmt_const_parenthesized] = STATE(7124), + [sym_assignment_parenthesized] = STATE(7124), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), + [sym__statement_parenthesized] = STATE(7040), + [sym_pipeline_parenthesized] = STATE(7124), + [sym_cmd_identifier] = STATE(4817), + [sym_decl_def] = STATE(7072), + [sym_decl_export] = STATE(7072), + [sym_decl_extern] = STATE(7072), + [sym_decl_module] = STATE(7072), + [sym_decl_use] = STATE(7072), + [sym__ctrl_statement] = STATE(7124), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_stmt_source] = STATE(7124), + [sym_stmt_register] = STATE(7124), + [sym__stmt_hide] = STATE(7124), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(7124), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym__parenthesized_body] = STATE(8039), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(1361), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), + [sym_comment] = STATE(96), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym__parenthesized_body_repeat2] = STATE(161), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_let_DASHenv] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(645), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), + }, + [97] = { + [sym__block_body_statement_parenthesized] = STATE(5872), + [sym__declaration_parenthesized] = STATE(7040), + [sym_decl_alias_parenthesized] = STATE(7072), + [sym_stmt_let_parenthesized] = STATE(7124), + [sym_stmt_mut_parenthesized] = STATE(7124), + [sym_stmt_const_parenthesized] = STATE(7124), + [sym_assignment_parenthesized] = STATE(7124), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), + [sym__statement_parenthesized] = STATE(7040), + [sym_pipeline_parenthesized] = STATE(7124), + [sym_cmd_identifier] = STATE(4817), + [sym_decl_def] = STATE(7072), + [sym_decl_export] = STATE(7072), + [sym_decl_extern] = STATE(7072), + [sym_decl_module] = STATE(7072), + [sym_decl_use] = STATE(7072), + [sym__ctrl_statement] = STATE(7124), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_stmt_source] = STATE(7124), + [sym_stmt_register] = STATE(7124), + [sym__stmt_hide] = STATE(7124), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(7124), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym__parenthesized_body] = STATE(7922), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(1361), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), + [sym_comment] = STATE(97), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym__parenthesized_body_repeat2] = STATE(161), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_let_DASHenv] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(647), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), + }, + [98] = { + [sym__block_body_statement_parenthesized] = STATE(5872), + [sym__declaration_parenthesized] = STATE(7040), + [sym_decl_alias_parenthesized] = STATE(7072), + [sym_stmt_let_parenthesized] = STATE(7124), + [sym_stmt_mut_parenthesized] = STATE(7124), + [sym_stmt_const_parenthesized] = STATE(7124), + [sym_assignment_parenthesized] = STATE(7124), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), + [sym__statement_parenthesized] = STATE(7040), + [sym_pipeline_parenthesized] = STATE(7124), + [sym_cmd_identifier] = STATE(4817), + [sym_decl_def] = STATE(7072), + [sym_decl_export] = STATE(7072), + [sym_decl_extern] = STATE(7072), + [sym_decl_module] = STATE(7072), + [sym_decl_use] = STATE(7072), + [sym__ctrl_statement] = STATE(7124), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_stmt_source] = STATE(7124), + [sym_stmt_register] = STATE(7124), + [sym__stmt_hide] = STATE(7124), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(7124), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym__parenthesized_body] = STATE(7969), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(1361), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), + [sym_comment] = STATE(98), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym__parenthesized_body_repeat2] = STATE(161), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_let_DASHenv] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(649), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), + }, + [99] = { + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7701), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1922), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(1296), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1569), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), + [sym_comment] = STATE(99), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(361), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(375), + [anon_sym_false] = ACTIONS(375), + [anon_sym_null] = ACTIONS(377), + [aux_sym_cmd_identifier_token38] = ACTIONS(379), + [aux_sym_cmd_identifier_token39] = ACTIONS(381), + [aux_sym_cmd_identifier_token40] = ACTIONS(381), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_continue] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_RBRACE] = ACTIONS(451), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(435), + [aux_sym__val_number_decimal_token2] = ACTIONS(437), + [aux_sym__val_number_decimal_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token4] = ACTIONS(441), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), + }, + [100] = { + [sym__block_body_statement_parenthesized] = STATE(5872), + [sym__declaration_parenthesized] = STATE(7040), + [sym_decl_alias_parenthesized] = STATE(7072), + [sym_stmt_let_parenthesized] = STATE(7124), + [sym_stmt_mut_parenthesized] = STATE(7124), + [sym_stmt_const_parenthesized] = STATE(7124), + [sym_assignment_parenthesized] = STATE(7124), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), + [sym__statement_parenthesized] = STATE(7040), + [sym_pipeline_parenthesized] = STATE(7124), + [sym_cmd_identifier] = STATE(4817), + [sym_decl_def] = STATE(7072), + [sym_decl_export] = STATE(7072), + [sym_decl_extern] = STATE(7072), + [sym_decl_module] = STATE(7072), + [sym_decl_use] = STATE(7072), + [sym__ctrl_statement] = STATE(7124), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_stmt_source] = STATE(7124), + [sym_stmt_register] = STATE(7124), + [sym__stmt_hide] = STATE(7124), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(7124), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym__parenthesized_body] = STATE(7951), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(1361), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), + [sym_comment] = STATE(100), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym__parenthesized_body_repeat2] = STATE(161), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_let_DASHenv] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(651), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), + }, + [101] = { + [sym__block_body_statement_parenthesized] = STATE(5872), + [sym__declaration_parenthesized] = STATE(7040), + [sym_decl_alias_parenthesized] = STATE(7072), + [sym_stmt_let_parenthesized] = STATE(7124), + [sym_stmt_mut_parenthesized] = STATE(7124), + [sym_stmt_const_parenthesized] = STATE(7124), + [sym_assignment_parenthesized] = STATE(7124), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), + [sym__statement_parenthesized] = STATE(7040), + [sym_pipeline_parenthesized] = STATE(7124), + [sym_cmd_identifier] = STATE(4817), + [sym_decl_def] = STATE(7072), + [sym_decl_export] = STATE(7072), + [sym_decl_extern] = STATE(7072), + [sym_decl_module] = STATE(7072), + [sym_decl_use] = STATE(7072), + [sym__ctrl_statement] = STATE(7124), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_stmt_source] = STATE(7124), + [sym_stmt_register] = STATE(7124), + [sym__stmt_hide] = STATE(7124), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(7124), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym__parenthesized_body] = STATE(7688), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(1361), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), + [sym_comment] = STATE(101), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym__parenthesized_body_repeat2] = STATE(161), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_let_DASHenv] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(653), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), + }, + [102] = { + [sym__block_body_statement_parenthesized] = STATE(5872), + [sym__declaration_parenthesized] = STATE(7040), + [sym_decl_alias_parenthesized] = STATE(7072), + [sym_stmt_let_parenthesized] = STATE(7124), + [sym_stmt_mut_parenthesized] = STATE(7124), + [sym_stmt_const_parenthesized] = STATE(7124), + [sym_assignment_parenthesized] = STATE(7124), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), + [sym__statement_parenthesized] = STATE(7040), + [sym_pipeline_parenthesized] = STATE(7124), + [sym_cmd_identifier] = STATE(4817), + [sym_decl_def] = STATE(7072), + [sym_decl_export] = STATE(7072), + [sym_decl_extern] = STATE(7072), + [sym_decl_module] = STATE(7072), + [sym_decl_use] = STATE(7072), + [sym__ctrl_statement] = STATE(7124), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_stmt_source] = STATE(7124), + [sym_stmt_register] = STATE(7124), + [sym__stmt_hide] = STATE(7124), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(7124), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym__parenthesized_body] = STATE(7972), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(1361), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), + [sym_comment] = STATE(102), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym__parenthesized_body_repeat2] = STATE(161), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_let_DASHenv] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(655), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), + }, + [103] = { + [sym__block_body_statement_parenthesized] = STATE(5872), + [sym__declaration_parenthesized] = STATE(7040), + [sym_decl_alias_parenthesized] = STATE(7072), + [sym_stmt_let_parenthesized] = STATE(7124), + [sym_stmt_mut_parenthesized] = STATE(7124), + [sym_stmt_const_parenthesized] = STATE(7124), + [sym_assignment_parenthesized] = STATE(7124), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), + [sym__statement_parenthesized] = STATE(7040), + [sym_pipeline_parenthesized] = STATE(7124), + [sym_cmd_identifier] = STATE(4817), + [sym_decl_def] = STATE(7072), + [sym_decl_export] = STATE(7072), + [sym_decl_extern] = STATE(7072), + [sym_decl_module] = STATE(7072), + [sym_decl_use] = STATE(7072), + [sym__ctrl_statement] = STATE(7124), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_stmt_source] = STATE(7124), + [sym_stmt_register] = STATE(7124), + [sym__stmt_hide] = STATE(7124), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(7124), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym__parenthesized_body] = STATE(7718), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(1361), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), + [sym_comment] = STATE(103), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym__parenthesized_body_repeat2] = STATE(161), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_let_DASHenv] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(657), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), + }, + [104] = { + [sym__block_body_statement_parenthesized] = STATE(5872), + [sym__declaration_parenthesized] = STATE(7040), + [sym_decl_alias_parenthesized] = STATE(7072), + [sym_stmt_let_parenthesized] = STATE(7124), + [sym_stmt_mut_parenthesized] = STATE(7124), + [sym_stmt_const_parenthesized] = STATE(7124), + [sym_assignment_parenthesized] = STATE(7124), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), + [sym__statement_parenthesized] = STATE(7040), + [sym_pipeline_parenthesized] = STATE(7124), + [sym_cmd_identifier] = STATE(4817), + [sym_decl_def] = STATE(7072), + [sym_decl_export] = STATE(7072), + [sym_decl_extern] = STATE(7072), + [sym_decl_module] = STATE(7072), + [sym_decl_use] = STATE(7072), + [sym__ctrl_statement] = STATE(7124), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_stmt_source] = STATE(7124), + [sym_stmt_register] = STATE(7124), + [sym__stmt_hide] = STATE(7124), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(7124), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym__parenthesized_body] = STATE(7947), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(1361), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), + [sym_comment] = STATE(104), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym__parenthesized_body_repeat2] = STATE(161), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_let_DASHenv] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(659), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), + }, + [105] = { + [sym__block_body_statement_parenthesized] = STATE(5872), + [sym__declaration_parenthesized] = STATE(7040), + [sym_decl_alias_parenthesized] = STATE(7072), + [sym_stmt_let_parenthesized] = STATE(7124), + [sym_stmt_mut_parenthesized] = STATE(7124), + [sym_stmt_const_parenthesized] = STATE(7124), + [sym_assignment_parenthesized] = STATE(7124), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), + [sym__statement_parenthesized] = STATE(7040), + [sym_pipeline_parenthesized] = STATE(7124), + [sym_cmd_identifier] = STATE(4817), + [sym_decl_def] = STATE(7072), + [sym_decl_export] = STATE(7072), + [sym_decl_extern] = STATE(7072), + [sym_decl_module] = STATE(7072), + [sym_decl_use] = STATE(7072), + [sym__ctrl_statement] = STATE(7124), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_stmt_source] = STATE(7124), + [sym_stmt_register] = STATE(7124), + [sym__stmt_hide] = STATE(7124), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(7124), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym__parenthesized_body] = STATE(7715), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(1361), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), + [sym_comment] = STATE(105), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym__parenthesized_body_repeat2] = STATE(161), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_let_DASHenv] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(661), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), + }, + [106] = { + [sym__block_body_statement_parenthesized] = STATE(5872), + [sym__declaration_parenthesized] = STATE(7040), + [sym_decl_alias_parenthesized] = STATE(7072), + [sym_stmt_let_parenthesized] = STATE(7124), + [sym_stmt_mut_parenthesized] = STATE(7124), + [sym_stmt_const_parenthesized] = STATE(7124), + [sym_assignment_parenthesized] = STATE(7124), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), + [sym__statement_parenthesized] = STATE(7040), + [sym_pipeline_parenthesized] = STATE(7124), + [sym_cmd_identifier] = STATE(4817), + [sym_decl_def] = STATE(7072), + [sym_decl_export] = STATE(7072), + [sym_decl_extern] = STATE(7072), + [sym_decl_module] = STATE(7072), + [sym_decl_use] = STATE(7072), + [sym__ctrl_statement] = STATE(7124), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_stmt_source] = STATE(7124), + [sym_stmt_register] = STATE(7124), + [sym__stmt_hide] = STATE(7124), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(7124), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym__parenthesized_body] = STATE(7746), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(1361), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), + [sym_comment] = STATE(106), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym__parenthesized_body_repeat2] = STATE(161), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_let_DASHenv] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(663), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), + }, + [107] = { + [sym__block_body_statement_parenthesized] = STATE(5872), + [sym__declaration_parenthesized] = STATE(7040), + [sym_decl_alias_parenthesized] = STATE(7072), + [sym_stmt_let_parenthesized] = STATE(7124), + [sym_stmt_mut_parenthesized] = STATE(7124), + [sym_stmt_const_parenthesized] = STATE(7124), + [sym_assignment_parenthesized] = STATE(7124), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), + [sym__statement_parenthesized] = STATE(7040), + [sym_pipeline_parenthesized] = STATE(7124), + [sym_cmd_identifier] = STATE(4817), + [sym_decl_def] = STATE(7072), + [sym_decl_export] = STATE(7072), + [sym_decl_extern] = STATE(7072), + [sym_decl_module] = STATE(7072), + [sym_decl_use] = STATE(7072), + [sym__ctrl_statement] = STATE(7124), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_stmt_source] = STATE(7124), + [sym_stmt_register] = STATE(7124), + [sym__stmt_hide] = STATE(7124), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(7124), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym__parenthesized_body] = STATE(7799), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(1361), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), + [sym_comment] = STATE(107), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym__parenthesized_body_repeat2] = STATE(161), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_let_DASHenv] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(665), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), + }, + [108] = { + [sym__block_body_statement_parenthesized] = STATE(5872), + [sym__declaration_parenthesized] = STATE(7040), + [sym_decl_alias_parenthesized] = STATE(7072), + [sym_stmt_let_parenthesized] = STATE(7124), + [sym_stmt_mut_parenthesized] = STATE(7124), + [sym_stmt_const_parenthesized] = STATE(7124), + [sym_assignment_parenthesized] = STATE(7124), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), + [sym__statement_parenthesized] = STATE(7040), + [sym_pipeline_parenthesized] = STATE(7124), + [sym_cmd_identifier] = STATE(4817), + [sym_decl_def] = STATE(7072), + [sym_decl_export] = STATE(7072), + [sym_decl_extern] = STATE(7072), + [sym_decl_module] = STATE(7072), + [sym_decl_use] = STATE(7072), + [sym__ctrl_statement] = STATE(7124), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_stmt_source] = STATE(7124), + [sym_stmt_register] = STATE(7124), + [sym__stmt_hide] = STATE(7124), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(7124), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym__parenthesized_body] = STATE(7617), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(1361), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), + [sym_comment] = STATE(108), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym__parenthesized_body_repeat2] = STATE(161), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_let_DASHenv] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(667), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), + }, + [109] = { + [sym__block_body_statement_parenthesized] = STATE(5872), + [sym__declaration_parenthesized] = STATE(7040), + [sym_decl_alias_parenthesized] = STATE(7072), + [sym_stmt_let_parenthesized] = STATE(7124), + [sym_stmt_mut_parenthesized] = STATE(7124), + [sym_stmt_const_parenthesized] = STATE(7124), + [sym_assignment_parenthesized] = STATE(7124), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), + [sym__statement_parenthesized] = STATE(7040), + [sym_pipeline_parenthesized] = STATE(7124), + [sym_cmd_identifier] = STATE(4817), + [sym_decl_def] = STATE(7072), + [sym_decl_export] = STATE(7072), + [sym_decl_extern] = STATE(7072), + [sym_decl_module] = STATE(7072), + [sym_decl_use] = STATE(7072), + [sym__ctrl_statement] = STATE(7124), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_stmt_source] = STATE(7124), + [sym_stmt_register] = STATE(7124), + [sym__stmt_hide] = STATE(7124), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(7124), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym__parenthesized_body] = STATE(7778), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(1361), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), + [sym_comment] = STATE(109), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym__parenthesized_body_repeat2] = STATE(161), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_let_DASHenv] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(669), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), + }, + [110] = { + [sym__block_body_statement_parenthesized] = STATE(5872), + [sym__declaration_parenthesized] = STATE(7040), + [sym_decl_alias_parenthesized] = STATE(7072), + [sym_stmt_let_parenthesized] = STATE(7124), + [sym_stmt_mut_parenthesized] = STATE(7124), + [sym_stmt_const_parenthesized] = STATE(7124), + [sym_assignment_parenthesized] = STATE(7124), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), + [sym__statement_parenthesized] = STATE(7040), + [sym_pipeline_parenthesized] = STATE(7124), + [sym_cmd_identifier] = STATE(4817), + [sym_decl_def] = STATE(7072), + [sym_decl_export] = STATE(7072), + [sym_decl_extern] = STATE(7072), + [sym_decl_module] = STATE(7072), + [sym_decl_use] = STATE(7072), + [sym__ctrl_statement] = STATE(7124), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_stmt_source] = STATE(7124), + [sym_stmt_register] = STATE(7124), + [sym__stmt_hide] = STATE(7124), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(7124), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym__parenthesized_body] = STATE(7739), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(1361), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), + [sym_comment] = STATE(110), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym__parenthesized_body_repeat2] = STATE(161), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_let_DASHenv] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(671), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), + }, + [111] = { + [sym__block_body_statement_parenthesized] = STATE(5872), + [sym__declaration_parenthesized] = STATE(7040), + [sym_decl_alias_parenthesized] = STATE(7072), + [sym_stmt_let_parenthesized] = STATE(7124), + [sym_stmt_mut_parenthesized] = STATE(7124), + [sym_stmt_const_parenthesized] = STATE(7124), + [sym_assignment_parenthesized] = STATE(7124), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), + [sym__statement_parenthesized] = STATE(7040), + [sym_pipeline_parenthesized] = STATE(7124), + [sym_cmd_identifier] = STATE(4817), + [sym_decl_def] = STATE(7072), + [sym_decl_export] = STATE(7072), + [sym_decl_extern] = STATE(7072), + [sym_decl_module] = STATE(7072), + [sym_decl_use] = STATE(7072), + [sym__ctrl_statement] = STATE(7124), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_stmt_source] = STATE(7124), + [sym_stmt_register] = STATE(7124), + [sym__stmt_hide] = STATE(7124), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(7124), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym__parenthesized_body] = STATE(8073), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(1361), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), + [sym_comment] = STATE(111), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym__parenthesized_body_repeat2] = STATE(161), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_let_DASHenv] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(673), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), + }, + [112] = { + [sym__block_body_statement_parenthesized] = STATE(5872), + [sym__declaration_parenthesized] = STATE(7040), + [sym_decl_alias_parenthesized] = STATE(7072), + [sym_stmt_let_parenthesized] = STATE(7124), + [sym_stmt_mut_parenthesized] = STATE(7124), + [sym_stmt_const_parenthesized] = STATE(7124), + [sym_assignment_parenthesized] = STATE(7124), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), + [sym__statement_parenthesized] = STATE(7040), + [sym_pipeline_parenthesized] = STATE(7124), + [sym_cmd_identifier] = STATE(4817), + [sym_decl_def] = STATE(7072), + [sym_decl_export] = STATE(7072), + [sym_decl_extern] = STATE(7072), + [sym_decl_module] = STATE(7072), + [sym_decl_use] = STATE(7072), + [sym__ctrl_statement] = STATE(7124), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_stmt_source] = STATE(7124), + [sym_stmt_register] = STATE(7124), + [sym__stmt_hide] = STATE(7124), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(7124), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym__parenthesized_body] = STATE(7981), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(1361), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), + [sym_comment] = STATE(112), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym__parenthesized_body_repeat2] = STATE(161), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_let_DASHenv] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(675), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), + }, + [113] = { + [sym__block_body_statement_parenthesized] = STATE(5872), + [sym__declaration_parenthesized] = STATE(7040), + [sym_decl_alias_parenthesized] = STATE(7072), + [sym_stmt_let_parenthesized] = STATE(7124), + [sym_stmt_mut_parenthesized] = STATE(7124), + [sym_stmt_const_parenthesized] = STATE(7124), + [sym_assignment_parenthesized] = STATE(7124), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), + [sym__statement_parenthesized] = STATE(7040), + [sym_pipeline_parenthesized] = STATE(7124), + [sym_cmd_identifier] = STATE(4817), + [sym_decl_def] = STATE(7072), + [sym_decl_export] = STATE(7072), + [sym_decl_extern] = STATE(7072), + [sym_decl_module] = STATE(7072), + [sym_decl_use] = STATE(7072), + [sym__ctrl_statement] = STATE(7124), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_stmt_source] = STATE(7124), + [sym_stmt_register] = STATE(7124), + [sym__stmt_hide] = STATE(7124), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(7124), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym__parenthesized_body] = STATE(7939), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(1361), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), + [sym_comment] = STATE(113), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym__parenthesized_body_repeat2] = STATE(161), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_let_DASHenv] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(677), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [114] = { - [sym__block_body_statement_parenthesized] = STATE(5650), - [sym__declaration_parenthesized] = STATE(6810), - [sym_decl_alias_parenthesized] = STATE(6895), - [sym_stmt_let_parenthesized] = STATE(6948), - [sym_stmt_mut_parenthesized] = STATE(6948), - [sym_stmt_const_parenthesized] = STATE(6948), - [sym_assignment_parenthesized] = STATE(6948), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), - [sym__statement_parenthesized] = STATE(6810), - [sym_pipeline_parenthesized] = STATE(6948), - [sym_cmd_identifier] = STATE(4758), - [sym_decl_def] = STATE(6895), - [sym_decl_export] = STATE(6895), - [sym_decl_extern] = STATE(6895), - [sym_decl_module] = STATE(6895), - [sym_decl_use] = STATE(6895), - [sym__ctrl_statement] = STATE(6948), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_stmt_source] = STATE(6948), - [sym_stmt_register] = STATE(6948), - [sym__stmt_hide] = STATE(6948), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6948), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym__parenthesized_body] = STATE(7510), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(1303), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), + [sym__block_body_statement_parenthesized] = STATE(5872), + [sym__declaration_parenthesized] = STATE(7040), + [sym_decl_alias_parenthesized] = STATE(7072), + [sym_stmt_let_parenthesized] = STATE(7124), + [sym_stmt_mut_parenthesized] = STATE(7124), + [sym_stmt_const_parenthesized] = STATE(7124), + [sym_assignment_parenthesized] = STATE(7124), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), + [sym__statement_parenthesized] = STATE(7040), + [sym_pipeline_parenthesized] = STATE(7124), + [sym_cmd_identifier] = STATE(4817), + [sym_decl_def] = STATE(7072), + [sym_decl_export] = STATE(7072), + [sym_decl_extern] = STATE(7072), + [sym_decl_module] = STATE(7072), + [sym_decl_use] = STATE(7072), + [sym__ctrl_statement] = STATE(7124), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_stmt_source] = STATE(7124), + [sym_stmt_register] = STATE(7124), + [sym__stmt_hide] = STATE(7124), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(7124), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym__parenthesized_body] = STATE(7671), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(1361), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), [sym_comment] = STATE(114), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym__parenthesized_body_repeat2] = STATE(156), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_RPAREN] = ACTIONS(669), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym__parenthesized_body_repeat2] = STATE(161), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_let_DASHenv] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(679), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [115] = { - [sym__block_body_statement_parenthesized] = STATE(5650), - [sym__declaration_parenthesized] = STATE(6810), - [sym_decl_alias_parenthesized] = STATE(6895), - [sym_stmt_let_parenthesized] = STATE(6948), - [sym_stmt_mut_parenthesized] = STATE(6948), - [sym_stmt_const_parenthesized] = STATE(6948), - [sym_assignment_parenthesized] = STATE(6948), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), - [sym__statement_parenthesized] = STATE(6810), - [sym_pipeline_parenthesized] = STATE(6948), - [sym_cmd_identifier] = STATE(4758), - [sym_decl_def] = STATE(6895), - [sym_decl_export] = STATE(6895), - [sym_decl_extern] = STATE(6895), - [sym_decl_module] = STATE(6895), - [sym_decl_use] = STATE(6895), - [sym__ctrl_statement] = STATE(6948), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_stmt_source] = STATE(6948), - [sym_stmt_register] = STATE(6948), - [sym__stmt_hide] = STATE(6948), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6948), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym__parenthesized_body] = STATE(7696), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(1303), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), + [sym__block_body_statement_parenthesized] = STATE(5872), + [sym__declaration_parenthesized] = STATE(7040), + [sym_decl_alias_parenthesized] = STATE(7072), + [sym_stmt_let_parenthesized] = STATE(7124), + [sym_stmt_mut_parenthesized] = STATE(7124), + [sym_stmt_const_parenthesized] = STATE(7124), + [sym_assignment_parenthesized] = STATE(7124), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), + [sym__statement_parenthesized] = STATE(7040), + [sym_pipeline_parenthesized] = STATE(7124), + [sym_cmd_identifier] = STATE(4817), + [sym_decl_def] = STATE(7072), + [sym_decl_export] = STATE(7072), + [sym_decl_extern] = STATE(7072), + [sym_decl_module] = STATE(7072), + [sym_decl_use] = STATE(7072), + [sym__ctrl_statement] = STATE(7124), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_stmt_source] = STATE(7124), + [sym_stmt_register] = STATE(7124), + [sym__stmt_hide] = STATE(7124), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(7124), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym__parenthesized_body] = STATE(7991), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(1361), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), [sym_comment] = STATE(115), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym__parenthesized_body_repeat2] = STATE(156), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_RPAREN] = ACTIONS(671), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym__parenthesized_body_repeat2] = STATE(161), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_let_DASHenv] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(681), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [116] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7684), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1445), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym_val_variable] = STATE(1268), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1465), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7615), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1922), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(1296), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1569), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(116), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_pipe_element_repeat2] = STATE(361), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(375), + [anon_sym_false] = ACTIONS(375), + [anon_sym_null] = ACTIONS(377), + [aux_sym_cmd_identifier_token38] = ACTIONS(379), + [aux_sym_cmd_identifier_token39] = ACTIONS(381), + [aux_sym_cmd_identifier_token40] = ACTIONS(381), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_continue] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(435), + [aux_sym__val_number_decimal_token2] = ACTIONS(437), + [aux_sym__val_number_decimal_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token4] = ACTIONS(441), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [117] = { - [sym__block_body_statement_parenthesized] = STATE(5650), - [sym__declaration_parenthesized] = STATE(6810), - [sym_decl_alias_parenthesized] = STATE(6895), - [sym_stmt_let_parenthesized] = STATE(6948), - [sym_stmt_mut_parenthesized] = STATE(6948), - [sym_stmt_const_parenthesized] = STATE(6948), - [sym_assignment_parenthesized] = STATE(6948), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), - [sym__statement_parenthesized] = STATE(6810), - [sym_pipeline_parenthesized] = STATE(6948), - [sym_cmd_identifier] = STATE(4758), - [sym_decl_def] = STATE(6895), - [sym_decl_export] = STATE(6895), - [sym_decl_extern] = STATE(6895), - [sym_decl_module] = STATE(6895), - [sym_decl_use] = STATE(6895), - [sym__ctrl_statement] = STATE(6948), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_stmt_source] = STATE(6948), - [sym_stmt_register] = STATE(6948), - [sym__stmt_hide] = STATE(6948), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6948), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym__parenthesized_body] = STATE(7637), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(1303), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7663), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1922), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(1296), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1569), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(117), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym__parenthesized_body_repeat2] = STATE(156), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(361), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(375), + [anon_sym_false] = ACTIONS(375), + [anon_sym_null] = ACTIONS(377), + [aux_sym_cmd_identifier_token38] = ACTIONS(379), + [aux_sym_cmd_identifier_token39] = ACTIONS(381), + [aux_sym_cmd_identifier_token40] = ACTIONS(381), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_continue] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(435), + [aux_sym__val_number_decimal_token2] = ACTIONS(437), + [aux_sym__val_number_decimal_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token4] = ACTIONS(441), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [118] = { - [sym__block_body_statement_parenthesized] = STATE(5884), - [sym__declaration_parenthesized] = STATE(6810), - [sym_decl_alias_parenthesized] = STATE(6895), - [sym_stmt_let_parenthesized] = STATE(6948), - [sym_stmt_mut_parenthesized] = STATE(6948), - [sym_stmt_const_parenthesized] = STATE(6948), - [sym_assignment_parenthesized] = STATE(6948), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), - [sym__statement_parenthesized] = STATE(6810), - [sym_pipeline_parenthesized] = STATE(6948), - [sym_cmd_identifier] = STATE(4758), - [sym_decl_def] = STATE(6895), - [sym_decl_export] = STATE(6895), - [sym_decl_extern] = STATE(6895), - [sym_decl_module] = STATE(6895), - [sym_decl_use] = STATE(6895), - [sym__ctrl_statement] = STATE(6948), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_stmt_source] = STATE(6948), - [sym_stmt_register] = STATE(6948), - [sym__stmt_hide] = STATE(6948), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6948), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(1303), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), + [sym__block_body_statement_parenthesized] = STATE(5930), + [sym__declaration_parenthesized] = STATE(7040), + [sym_decl_alias_parenthesized] = STATE(7072), + [sym_stmt_let_parenthesized] = STATE(7124), + [sym_stmt_mut_parenthesized] = STATE(7124), + [sym_stmt_const_parenthesized] = STATE(7124), + [sym_assignment_parenthesized] = STATE(7124), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), + [sym__statement_parenthesized] = STATE(7040), + [sym_pipeline_parenthesized] = STATE(7124), + [sym_cmd_identifier] = STATE(4817), + [sym_decl_def] = STATE(7072), + [sym_decl_export] = STATE(7072), + [sym_decl_extern] = STATE(7072), + [sym_decl_module] = STATE(7072), + [sym_decl_use] = STATE(7072), + [sym__ctrl_statement] = STATE(7124), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_stmt_source] = STATE(7124), + [sym_stmt_register] = STATE(7124), + [sym__stmt_hide] = STATE(7124), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(7124), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(1361), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), [sym_comment] = STATE(118), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(234), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym__parenthesized_body_repeat2] = STATE(158), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_RPAREN] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(238), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym__parenthesized_body_repeat2] = STATE(157), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_let_DASHenv] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_RPAREN] = ACTIONS(683), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [119] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7613), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1445), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym_val_variable] = STATE(1268), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1465), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7804), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1922), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(1296), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1569), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(119), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_pipe_element_repeat2] = STATE(361), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(375), + [anon_sym_false] = ACTIONS(375), + [anon_sym_null] = ACTIONS(377), + [aux_sym_cmd_identifier_token38] = ACTIONS(379), + [aux_sym_cmd_identifier_token39] = ACTIONS(381), + [aux_sym_cmd_identifier_token40] = ACTIONS(381), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_continue] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(435), + [aux_sym__val_number_decimal_token2] = ACTIONS(437), + [aux_sym__val_number_decimal_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token4] = ACTIONS(441), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [120] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7435), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1445), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym_val_variable] = STATE(1268), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1465), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(8053), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1922), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(1296), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1569), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(120), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_pipe_element_repeat2] = STATE(361), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(375), + [anon_sym_false] = ACTIONS(375), + [anon_sym_null] = ACTIONS(377), + [aux_sym_cmd_identifier_token38] = ACTIONS(379), + [aux_sym_cmd_identifier_token39] = ACTIONS(381), + [aux_sym_cmd_identifier_token40] = ACTIONS(381), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_continue] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(435), + [aux_sym__val_number_decimal_token2] = ACTIONS(437), + [aux_sym__val_number_decimal_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token4] = ACTIONS(441), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [121] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7628), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1445), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym_val_variable] = STATE(1268), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1465), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6547), + [sym__declaration] = STATE(6892), + [sym_decl_alias] = STATE(7011), + [sym_stmt_let] = STATE(6877), + [sym_stmt_mut] = STATE(6877), + [sym_stmt_const] = STATE(6877), + [sym_assignment] = STATE(6877), + [sym__mutable_assignment_pattern] = STATE(6904), + [sym__statement] = STATE(6892), + [sym_pipeline] = STATE(6877), + [sym_cmd_identifier] = STATE(4714), + [sym_decl_def] = STATE(7011), + [sym_decl_export] = STATE(7011), + [sym_decl_extern] = STATE(7011), + [sym_decl_module] = STATE(7011), + [sym_decl_use] = STATE(7011), + [sym__ctrl_statement] = STATE(6877), + [sym__ctrl_expression] = STATE(5155), + [sym_ctrl_for] = STATE(7034), + [sym_ctrl_loop] = STATE(7034), + [sym_ctrl_error] = STATE(7034), + [sym_ctrl_while] = STATE(7034), + [sym_ctrl_do] = STATE(5175), + [sym_ctrl_if] = STATE(5175), + [sym_ctrl_match] = STATE(5175), + [sym_ctrl_try] = STATE(5175), + [sym_ctrl_return] = STATE(5175), + [sym_pipe_element] = STATE(4782), + [sym_stmt_source] = STATE(6877), + [sym_stmt_register] = STATE(6877), + [sym__stmt_hide] = STATE(6877), + [sym_hide_mod] = STATE(6852), + [sym_hide_env] = STATE(6852), + [sym__stmt_overlay] = STATE(6877), + [sym_overlay_list] = STATE(6913), + [sym_overlay_hide] = STATE(6913), + [sym_overlay_new] = STATE(6913), + [sym_overlay_use] = STATE(6913), + [sym_where_command] = STATE(5180), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2509), + [sym__expr_unary_minus] = STATE(2510), + [sym_expr_binary] = STATE(2509), + [sym__expr_binary_expression] = STATE(3876), + [sym_expr_parenthesized] = STATE(2042), + [sym_val_range] = STATE(3900), + [sym__value] = STATE(2509), + [sym_val_nothing] = STATE(2441), + [sym_val_bool] = STATE(2441), + [sym_val_variable] = STATE(1364), + [sym_val_number] = STATE(2441), + [sym__val_number_decimal] = STATE(1665), + [sym__val_number] = STATE(2488), + [sym_val_duration] = STATE(2441), + [sym_val_filesize] = STATE(2441), + [sym_val_binary] = STATE(2441), + [sym_val_string] = STATE(2441), + [sym__raw_str] = STATE(2065), + [sym__str_double_quotes] = STATE(2065), + [sym_val_interpolated] = STATE(2441), + [sym__inter_single_quotes] = STATE(2563), + [sym__inter_double_quotes] = STATE(2436), + [sym_val_list] = STATE(2441), + [sym_val_record] = STATE(2441), + [sym_val_table] = STATE(2441), + [sym_val_closure] = STATE(2441), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5180), [sym_comment] = STATE(121), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_pipeline_repeat1] = STATE(194), + [aux_sym__block_body_repeat1] = STATE(263), + [aux_sym__block_body_repeat2] = STATE(155), + [aux_sym_pipe_element_repeat2] = STATE(354), + [ts_builtin_sym_end] = ACTIONS(605), + [anon_sym_export] = ACTIONS(9), + [anon_sym_alias] = ACTIONS(11), + [anon_sym_let] = ACTIONS(13), + [anon_sym_let_DASHenv] = ACTIONS(13), + [anon_sym_mut] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [aux_sym_cmd_identifier_token2] = ACTIONS(19), + [aux_sym_cmd_identifier_token3] = ACTIONS(19), + [aux_sym_cmd_identifier_token4] = ACTIONS(19), + [aux_sym_cmd_identifier_token5] = ACTIONS(19), + [aux_sym_cmd_identifier_token6] = ACTIONS(19), + [aux_sym_cmd_identifier_token7] = ACTIONS(19), + [aux_sym_cmd_identifier_token8] = ACTIONS(19), + [aux_sym_cmd_identifier_token9] = ACTIONS(19), + [aux_sym_cmd_identifier_token10] = ACTIONS(19), + [aux_sym_cmd_identifier_token11] = ACTIONS(19), + [aux_sym_cmd_identifier_token12] = ACTIONS(19), + [aux_sym_cmd_identifier_token13] = ACTIONS(19), + [aux_sym_cmd_identifier_token14] = ACTIONS(19), + [aux_sym_cmd_identifier_token15] = ACTIONS(19), + [aux_sym_cmd_identifier_token16] = ACTIONS(19), + [aux_sym_cmd_identifier_token17] = ACTIONS(19), + [aux_sym_cmd_identifier_token18] = ACTIONS(19), + [aux_sym_cmd_identifier_token19] = ACTIONS(19), + [aux_sym_cmd_identifier_token20] = ACTIONS(19), + [aux_sym_cmd_identifier_token21] = ACTIONS(19), + [aux_sym_cmd_identifier_token22] = ACTIONS(19), + [aux_sym_cmd_identifier_token23] = ACTIONS(19), + [aux_sym_cmd_identifier_token24] = ACTIONS(21), + [aux_sym_cmd_identifier_token25] = ACTIONS(19), + [aux_sym_cmd_identifier_token26] = ACTIONS(21), + [aux_sym_cmd_identifier_token27] = ACTIONS(19), + [aux_sym_cmd_identifier_token28] = ACTIONS(19), + [aux_sym_cmd_identifier_token29] = ACTIONS(19), + [aux_sym_cmd_identifier_token30] = ACTIONS(19), + [aux_sym_cmd_identifier_token31] = ACTIONS(21), + [aux_sym_cmd_identifier_token32] = ACTIONS(21), + [aux_sym_cmd_identifier_token33] = ACTIONS(21), + [aux_sym_cmd_identifier_token34] = ACTIONS(21), + [aux_sym_cmd_identifier_token35] = ACTIONS(21), + [aux_sym_cmd_identifier_token36] = ACTIONS(19), + [anon_sym_true] = ACTIONS(23), + [anon_sym_false] = ACTIONS(23), + [anon_sym_null] = ACTIONS(25), + [aux_sym_cmd_identifier_token38] = ACTIONS(27), + [aux_sym_cmd_identifier_token39] = ACTIONS(29), + [aux_sym_cmd_identifier_token40] = ACTIONS(29), + [sym__newline] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_def] = ACTIONS(35), + [anon_sym_export_DASHenv] = ACTIONS(37), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_module] = ACTIONS(41), + [anon_sym_use] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [anon_sym_error] = ACTIONS(51), + [anon_sym_DASH] = ACTIONS(53), + [anon_sym_break] = ACTIONS(55), + [anon_sym_continue] = ACTIONS(57), + [anon_sym_for] = ACTIONS(59), + [anon_sym_loop] = ACTIONS(61), + [anon_sym_while] = ACTIONS(63), + [anon_sym_do] = ACTIONS(65), + [anon_sym_if] = ACTIONS(67), + [anon_sym_match] = ACTIONS(69), + [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(73), + [anon_sym_try] = ACTIONS(75), + [anon_sym_return] = ACTIONS(77), + [anon_sym_source] = ACTIONS(79), + [anon_sym_source_DASHenv] = ACTIONS(79), + [anon_sym_register] = ACTIONS(81), + [anon_sym_hide] = ACTIONS(83), + [anon_sym_hide_DASHenv] = ACTIONS(85), + [anon_sym_overlay] = ACTIONS(87), + [anon_sym_where] = ACTIONS(89), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(93), + [anon_sym_DOT_DOT_LT] = ACTIONS(93), + [aux_sym__val_number_decimal_token1] = ACTIONS(95), + [aux_sym__val_number_decimal_token2] = ACTIONS(97), + [aux_sym__val_number_decimal_token3] = ACTIONS(99), + [aux_sym__val_number_decimal_token4] = ACTIONS(101), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(123), }, [122] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7444), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1445), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym_val_variable] = STATE(1268), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1465), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7963), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1922), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(1296), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1569), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(122), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_pipe_element_repeat2] = STATE(361), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(375), + [anon_sym_false] = ACTIONS(375), + [anon_sym_null] = ACTIONS(377), + [aux_sym_cmd_identifier_token38] = ACTIONS(379), + [aux_sym_cmd_identifier_token39] = ACTIONS(381), + [aux_sym_cmd_identifier_token40] = ACTIONS(381), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_continue] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(435), + [aux_sym__val_number_decimal_token2] = ACTIONS(437), + [aux_sym__val_number_decimal_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token4] = ACTIONS(441), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [123] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7589), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1445), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym_val_variable] = STATE(1268), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1465), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7725), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1922), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(1296), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1569), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(123), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_pipe_element_repeat2] = STATE(361), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(375), + [anon_sym_false] = ACTIONS(375), + [anon_sym_null] = ACTIONS(377), + [aux_sym_cmd_identifier_token38] = ACTIONS(379), + [aux_sym_cmd_identifier_token39] = ACTIONS(381), + [aux_sym_cmd_identifier_token40] = ACTIONS(381), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_continue] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(435), + [aux_sym__val_number_decimal_token2] = ACTIONS(437), + [aux_sym__val_number_decimal_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token4] = ACTIONS(441), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [124] = { - [sym__block_body_statement_parenthesized] = STATE(5650), - [sym__declaration_parenthesized] = STATE(6810), - [sym_decl_alias_parenthesized] = STATE(6895), - [sym_stmt_let_parenthesized] = STATE(6948), - [sym_stmt_mut_parenthesized] = STATE(6948), - [sym_stmt_const_parenthesized] = STATE(6948), - [sym_assignment_parenthesized] = STATE(6948), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), - [sym__statement_parenthesized] = STATE(6810), - [sym_pipeline_parenthesized] = STATE(6948), - [sym_cmd_identifier] = STATE(4758), - [sym_decl_def] = STATE(6895), - [sym_decl_export] = STATE(6895), - [sym_decl_extern] = STATE(6895), - [sym_decl_module] = STATE(6895), - [sym_decl_use] = STATE(6895), - [sym__ctrl_statement] = STATE(6948), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_stmt_source] = STATE(6948), - [sym_stmt_register] = STATE(6948), - [sym__stmt_hide] = STATE(6948), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6948), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym__parenthesized_body] = STATE(7612), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(1303), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7899), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1922), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(1296), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1569), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(124), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym__block_body_repeat1] = STATE(118), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym__parenthesized_body_repeat2] = STATE(156), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(361), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(375), + [anon_sym_false] = ACTIONS(375), + [anon_sym_null] = ACTIONS(377), + [aux_sym_cmd_identifier_token38] = ACTIONS(379), + [aux_sym_cmd_identifier_token39] = ACTIONS(381), + [aux_sym_cmd_identifier_token40] = ACTIONS(381), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_continue] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(435), + [aux_sym__val_number_decimal_token2] = ACTIONS(437), + [aux_sym__val_number_decimal_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token4] = ACTIONS(441), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [125] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7514), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1445), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym_val_variable] = STATE(1268), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1465), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement_parenthesized] = STATE(5872), + [sym__declaration_parenthesized] = STATE(7040), + [sym_decl_alias_parenthesized] = STATE(7072), + [sym_stmt_let_parenthesized] = STATE(7124), + [sym_stmt_mut_parenthesized] = STATE(7124), + [sym_stmt_const_parenthesized] = STATE(7124), + [sym_assignment_parenthesized] = STATE(7124), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), + [sym__statement_parenthesized] = STATE(7040), + [sym_pipeline_parenthesized] = STATE(7124), + [sym_cmd_identifier] = STATE(4817), + [sym_decl_def] = STATE(7072), + [sym_decl_export] = STATE(7072), + [sym_decl_extern] = STATE(7072), + [sym_decl_module] = STATE(7072), + [sym_decl_use] = STATE(7072), + [sym__ctrl_statement] = STATE(7124), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_stmt_source] = STATE(7124), + [sym_stmt_register] = STATE(7124), + [sym__stmt_hide] = STATE(7124), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(7124), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym__parenthesized_body] = STATE(7847), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(1361), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), [sym_comment] = STATE(125), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), - [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym__parenthesized_body_repeat2] = STATE(161), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_let_DASHenv] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [126] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7712), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1445), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym_val_variable] = STATE(1268), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1465), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(8023), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1922), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(1296), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1569), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(126), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_pipe_element_repeat2] = STATE(361), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(375), + [anon_sym_false] = ACTIONS(375), + [anon_sym_null] = ACTIONS(377), + [aux_sym_cmd_identifier_token38] = ACTIONS(379), + [aux_sym_cmd_identifier_token39] = ACTIONS(381), + [aux_sym_cmd_identifier_token40] = ACTIONS(381), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_continue] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(435), + [aux_sym__val_number_decimal_token2] = ACTIONS(437), + [aux_sym__val_number_decimal_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token4] = ACTIONS(441), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [127] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7385), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1445), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym_val_variable] = STATE(1268), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1465), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7858), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1922), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(1296), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1569), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(127), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_pipe_element_repeat2] = STATE(361), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(375), + [anon_sym_false] = ACTIONS(375), + [anon_sym_null] = ACTIONS(377), + [aux_sym_cmd_identifier_token38] = ACTIONS(379), + [aux_sym_cmd_identifier_token39] = ACTIONS(381), + [aux_sym_cmd_identifier_token40] = ACTIONS(381), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_continue] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(435), + [aux_sym__val_number_decimal_token2] = ACTIONS(437), + [aux_sym__val_number_decimal_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token4] = ACTIONS(441), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [128] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7495), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1445), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym_val_variable] = STATE(1268), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1465), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7862), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1922), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(1296), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1569), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(128), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_pipe_element_repeat2] = STATE(361), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(375), + [anon_sym_false] = ACTIONS(375), + [anon_sym_null] = ACTIONS(377), + [aux_sym_cmd_identifier_token38] = ACTIONS(379), + [aux_sym_cmd_identifier_token39] = ACTIONS(381), + [aux_sym_cmd_identifier_token40] = ACTIONS(381), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_continue] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(435), + [aux_sym__val_number_decimal_token2] = ACTIONS(437), + [aux_sym__val_number_decimal_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token4] = ACTIONS(441), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [129] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7658), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1445), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym_val_variable] = STATE(1268), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1465), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7705), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1922), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(1296), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1569), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(129), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_pipe_element_repeat2] = STATE(361), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(375), + [anon_sym_false] = ACTIONS(375), + [anon_sym_null] = ACTIONS(377), + [aux_sym_cmd_identifier_token38] = ACTIONS(379), + [aux_sym_cmd_identifier_token39] = ACTIONS(381), + [aux_sym_cmd_identifier_token40] = ACTIONS(381), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_continue] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(435), + [aux_sym__val_number_decimal_token2] = ACTIONS(437), + [aux_sym__val_number_decimal_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token4] = ACTIONS(441), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [130] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7665), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1445), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym_val_variable] = STATE(1268), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1465), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7934), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1922), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(1296), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1569), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(130), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_pipe_element_repeat2] = STATE(361), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(375), + [anon_sym_false] = ACTIONS(375), + [anon_sym_null] = ACTIONS(377), + [aux_sym_cmd_identifier_token38] = ACTIONS(379), + [aux_sym_cmd_identifier_token39] = ACTIONS(381), + [aux_sym_cmd_identifier_token40] = ACTIONS(381), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_continue] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(435), + [aux_sym__val_number_decimal_token2] = ACTIONS(437), + [aux_sym__val_number_decimal_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token4] = ACTIONS(441), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [131] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7700), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1445), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym_val_variable] = STATE(1268), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1465), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7946), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1922), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(1296), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1569), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(131), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_pipe_element_repeat2] = STATE(361), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(375), + [anon_sym_false] = ACTIONS(375), + [anon_sym_null] = ACTIONS(377), + [aux_sym_cmd_identifier_token38] = ACTIONS(379), + [aux_sym_cmd_identifier_token39] = ACTIONS(381), + [aux_sym_cmd_identifier_token40] = ACTIONS(381), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_continue] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(435), + [aux_sym__val_number_decimal_token2] = ACTIONS(437), + [aux_sym__val_number_decimal_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token4] = ACTIONS(441), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [132] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7457), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1445), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym_val_variable] = STATE(1268), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1465), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7983), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1922), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(1296), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1569), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(132), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_pipe_element_repeat2] = STATE(361), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(375), + [anon_sym_false] = ACTIONS(375), + [anon_sym_null] = ACTIONS(377), + [aux_sym_cmd_identifier_token38] = ACTIONS(379), + [aux_sym_cmd_identifier_token39] = ACTIONS(381), + [aux_sym_cmd_identifier_token40] = ACTIONS(381), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_continue] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(435), + [aux_sym__val_number_decimal_token2] = ACTIONS(437), + [aux_sym__val_number_decimal_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token4] = ACTIONS(441), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [133] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7691), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1445), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym_val_variable] = STATE(1268), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1465), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7721), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1922), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(1296), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1569), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(133), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_pipe_element_repeat2] = STATE(361), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(375), + [anon_sym_false] = ACTIONS(375), + [anon_sym_null] = ACTIONS(377), + [aux_sym_cmd_identifier_token38] = ACTIONS(379), + [aux_sym_cmd_identifier_token39] = ACTIONS(381), + [aux_sym_cmd_identifier_token40] = ACTIONS(381), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_continue] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(435), + [aux_sym__val_number_decimal_token2] = ACTIONS(437), + [aux_sym__val_number_decimal_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token4] = ACTIONS(441), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [134] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7441), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1445), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym_val_variable] = STATE(1268), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1465), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7742), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1922), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(1296), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1569), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(134), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_pipe_element_repeat2] = STATE(361), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(375), + [anon_sym_false] = ACTIONS(375), + [anon_sym_null] = ACTIONS(377), + [aux_sym_cmd_identifier_token38] = ACTIONS(379), + [aux_sym_cmd_identifier_token39] = ACTIONS(381), + [aux_sym_cmd_identifier_token40] = ACTIONS(381), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_continue] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(435), + [aux_sym__val_number_decimal_token2] = ACTIONS(437), + [aux_sym__val_number_decimal_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token4] = ACTIONS(441), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [135] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7416), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1445), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym_val_variable] = STATE(1268), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1465), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7795), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1922), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(1296), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1569), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(135), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_pipe_element_repeat2] = STATE(361), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(375), + [anon_sym_false] = ACTIONS(375), + [anon_sym_null] = ACTIONS(377), + [aux_sym_cmd_identifier_token38] = ACTIONS(379), + [aux_sym_cmd_identifier_token39] = ACTIONS(381), + [aux_sym_cmd_identifier_token40] = ACTIONS(381), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_continue] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(435), + [aux_sym__val_number_decimal_token2] = ACTIONS(437), + [aux_sym__val_number_decimal_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token4] = ACTIONS(441), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [136] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7438), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1445), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym_val_variable] = STATE(1268), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1465), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7727), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1922), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(1296), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1569), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(136), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_pipe_element_repeat2] = STATE(361), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(375), + [anon_sym_false] = ACTIONS(375), + [anon_sym_null] = ACTIONS(377), + [aux_sym_cmd_identifier_token38] = ACTIONS(379), + [aux_sym_cmd_identifier_token39] = ACTIONS(381), + [aux_sym_cmd_identifier_token40] = ACTIONS(381), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_continue] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(435), + [aux_sym__val_number_decimal_token2] = ACTIONS(437), + [aux_sym__val_number_decimal_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token4] = ACTIONS(441), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [137] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7599), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1445), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym_val_variable] = STATE(1268), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1465), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7793), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1922), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(1296), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1569), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(137), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_pipe_element_repeat2] = STATE(361), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(375), + [anon_sym_false] = ACTIONS(375), + [anon_sym_null] = ACTIONS(377), + [aux_sym_cmd_identifier_token38] = ACTIONS(379), + [aux_sym_cmd_identifier_token39] = ACTIONS(381), + [aux_sym_cmd_identifier_token40] = ACTIONS(381), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_continue] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(435), + [aux_sym__val_number_decimal_token2] = ACTIONS(437), + [aux_sym__val_number_decimal_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token4] = ACTIONS(441), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [138] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7648), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1445), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym_val_variable] = STATE(1268), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1465), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7624), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1922), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(1296), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1569), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(138), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_pipe_element_repeat2] = STATE(361), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(375), + [anon_sym_false] = ACTIONS(375), + [anon_sym_null] = ACTIONS(377), + [aux_sym_cmd_identifier_token38] = ACTIONS(379), + [aux_sym_cmd_identifier_token39] = ACTIONS(381), + [aux_sym_cmd_identifier_token40] = ACTIONS(381), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_continue] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(435), + [aux_sym__val_number_decimal_token2] = ACTIONS(437), + [aux_sym__val_number_decimal_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token4] = ACTIONS(441), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [139] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7534), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1445), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym_val_variable] = STATE(1268), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1465), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7974), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1922), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(1296), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1569), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(139), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_pipe_element_repeat2] = STATE(361), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(375), + [anon_sym_false] = ACTIONS(375), + [anon_sym_null] = ACTIONS(377), + [aux_sym_cmd_identifier_token38] = ACTIONS(379), + [aux_sym_cmd_identifier_token39] = ACTIONS(381), + [aux_sym_cmd_identifier_token40] = ACTIONS(381), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_continue] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(435), + [aux_sym__val_number_decimal_token2] = ACTIONS(437), + [aux_sym__val_number_decimal_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token4] = ACTIONS(441), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [140] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7387), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1445), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym_val_variable] = STATE(1268), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1465), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7684), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1922), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(1296), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1569), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(140), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_pipe_element_repeat2] = STATE(361), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(375), + [anon_sym_false] = ACTIONS(375), + [anon_sym_null] = ACTIONS(377), + [aux_sym_cmd_identifier_token38] = ACTIONS(379), + [aux_sym_cmd_identifier_token39] = ACTIONS(381), + [aux_sym_cmd_identifier_token40] = ACTIONS(381), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_continue] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(435), + [aux_sym__val_number_decimal_token2] = ACTIONS(437), + [aux_sym__val_number_decimal_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token4] = ACTIONS(441), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [141] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7392), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1445), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym_val_variable] = STATE(1268), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1465), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7641), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1922), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(1296), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1569), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(141), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_pipe_element_repeat2] = STATE(361), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(375), + [anon_sym_false] = ACTIONS(375), + [anon_sym_null] = ACTIONS(377), + [aux_sym_cmd_identifier_token38] = ACTIONS(379), + [aux_sym_cmd_identifier_token39] = ACTIONS(381), + [aux_sym_cmd_identifier_token40] = ACTIONS(381), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_continue] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(435), + [aux_sym__val_number_decimal_token2] = ACTIONS(437), + [aux_sym__val_number_decimal_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token4] = ACTIONS(441), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [142] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7663), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1445), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym_val_variable] = STATE(1268), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1465), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7957), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1922), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(1296), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1569), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(142), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_pipe_element_repeat2] = STATE(361), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(375), + [anon_sym_false] = ACTIONS(375), + [anon_sym_null] = ACTIONS(377), + [aux_sym_cmd_identifier_token38] = ACTIONS(379), + [aux_sym_cmd_identifier_token39] = ACTIONS(381), + [aux_sym_cmd_identifier_token40] = ACTIONS(381), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_continue] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(435), + [aux_sym__val_number_decimal_token2] = ACTIONS(437), + [aux_sym__val_number_decimal_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token4] = ACTIONS(441), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [143] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7710), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1445), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym_val_variable] = STATE(1268), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1465), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(8031), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1922), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(1296), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1569), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(143), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_pipe_element_repeat2] = STATE(361), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(375), + [anon_sym_false] = ACTIONS(375), + [anon_sym_null] = ACTIONS(377), + [aux_sym_cmd_identifier_token38] = ACTIONS(379), + [aux_sym_cmd_identifier_token39] = ACTIONS(381), + [aux_sym_cmd_identifier_token40] = ACTIONS(381), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_continue] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(435), + [aux_sym__val_number_decimal_token2] = ACTIONS(437), + [aux_sym__val_number_decimal_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token4] = ACTIONS(441), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [144] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7490), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1445), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym_val_variable] = STATE(1268), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1465), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7672), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1922), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(1296), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1569), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(144), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_pipe_element_repeat2] = STATE(361), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(375), + [anon_sym_false] = ACTIONS(375), + [anon_sym_null] = ACTIONS(377), + [aux_sym_cmd_identifier_token38] = ACTIONS(379), + [aux_sym_cmd_identifier_token39] = ACTIONS(381), + [aux_sym_cmd_identifier_token40] = ACTIONS(381), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_continue] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(435), + [aux_sym__val_number_decimal_token2] = ACTIONS(437), + [aux_sym__val_number_decimal_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token4] = ACTIONS(441), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [145] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7430), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1445), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym_val_variable] = STATE(1268), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1465), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7668), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1922), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(1296), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1569), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(145), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_pipe_element_repeat2] = STATE(361), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(375), + [anon_sym_false] = ACTIONS(375), + [anon_sym_null] = ACTIONS(377), + [aux_sym_cmd_identifier_token38] = ACTIONS(379), + [aux_sym_cmd_identifier_token39] = ACTIONS(381), + [aux_sym_cmd_identifier_token40] = ACTIONS(381), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_continue] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(435), + [aux_sym__val_number_decimal_token2] = ACTIONS(437), + [aux_sym__val_number_decimal_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token4] = ACTIONS(441), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [146] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7554), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1445), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym_val_variable] = STATE(1268), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1465), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7822), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1922), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(1296), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1569), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(146), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_pipe_element_repeat2] = STATE(361), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(375), + [anon_sym_false] = ACTIONS(375), + [anon_sym_null] = ACTIONS(377), + [aux_sym_cmd_identifier_token38] = ACTIONS(379), + [aux_sym_cmd_identifier_token39] = ACTIONS(381), + [aux_sym_cmd_identifier_token40] = ACTIONS(381), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_continue] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(435), + [aux_sym__val_number_decimal_token2] = ACTIONS(437), + [aux_sym__val_number_decimal_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token4] = ACTIONS(441), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [147] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7572), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1445), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym_val_variable] = STATE(1268), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1465), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7849), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1922), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(1296), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1569), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(147), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_pipe_element_repeat2] = STATE(361), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(375), + [anon_sym_false] = ACTIONS(375), + [anon_sym_null] = ACTIONS(377), + [aux_sym_cmd_identifier_token38] = ACTIONS(379), + [aux_sym_cmd_identifier_token39] = ACTIONS(381), + [aux_sym_cmd_identifier_token40] = ACTIONS(381), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_continue] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(435), + [aux_sym__val_number_decimal_token2] = ACTIONS(437), + [aux_sym__val_number_decimal_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token4] = ACTIONS(441), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [148] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7688), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1445), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym_val_variable] = STATE(1268), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1465), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7965), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1922), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(1296), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1569), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(148), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_pipe_element_repeat2] = STATE(361), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(375), + [anon_sym_false] = ACTIONS(375), + [anon_sym_null] = ACTIONS(377), + [aux_sym_cmd_identifier_token38] = ACTIONS(379), + [aux_sym_cmd_identifier_token39] = ACTIONS(381), + [aux_sym_cmd_identifier_token40] = ACTIONS(381), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_continue] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(435), + [aux_sym__val_number_decimal_token2] = ACTIONS(437), + [aux_sym__val_number_decimal_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token4] = ACTIONS(441), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [149] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7722), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1445), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym_val_variable] = STATE(1268), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1465), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7989), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1922), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(1296), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1569), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(149), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_pipe_element_repeat2] = STATE(361), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(375), + [anon_sym_false] = ACTIONS(375), + [anon_sym_null] = ACTIONS(377), + [aux_sym_cmd_identifier_token38] = ACTIONS(379), + [aux_sym_cmd_identifier_token39] = ACTIONS(381), + [aux_sym_cmd_identifier_token40] = ACTIONS(381), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_continue] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(435), + [aux_sym__val_number_decimal_token2] = ACTIONS(437), + [aux_sym__val_number_decimal_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token4] = ACTIONS(441), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [150] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7396), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1445), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym_val_variable] = STATE(1268), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1465), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(8050), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1922), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(1296), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1569), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(150), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_pipe_element_repeat2] = STATE(361), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(375), + [anon_sym_false] = ACTIONS(375), + [anon_sym_null] = ACTIONS(377), + [aux_sym_cmd_identifier_token38] = ACTIONS(379), + [aux_sym_cmd_identifier_token39] = ACTIONS(381), + [aux_sym_cmd_identifier_token40] = ACTIONS(381), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_continue] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(435), + [aux_sym__val_number_decimal_token2] = ACTIONS(437), + [aux_sym__val_number_decimal_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token4] = ACTIONS(441), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [151] = { - [sym__block_body_statement] = STATE(6362), - [sym__declaration] = STATE(7079), - [sym_decl_alias] = STATE(7169), - [sym_stmt_let] = STATE(6842), - [sym_stmt_mut] = STATE(6842), - [sym_stmt_const] = STATE(6842), - [sym_assignment] = STATE(6842), - [sym__mutable_assignment_pattern] = STATE(6847), - [sym__statement] = STATE(7079), - [sym_pipeline] = STATE(6842), - [sym_cmd_identifier] = STATE(4801), - [sym_decl_def] = STATE(7169), - [sym_decl_export] = STATE(7169), - [sym_decl_extern] = STATE(7169), - [sym_decl_module] = STATE(7169), - [sym_decl_use] = STATE(7169), - [sym__ctrl_statement] = STATE(6842), - [sym__ctrl_expression] = STATE(5080), - [sym_ctrl_for] = STATE(6702), - [sym_ctrl_loop] = STATE(6702), - [sym_ctrl_error] = STATE(6702), - [sym_ctrl_while] = STATE(6702), - [sym_ctrl_do] = STATE(5113), - [sym_ctrl_if] = STATE(5113), - [sym_ctrl_match] = STATE(5113), - [sym_ctrl_try] = STATE(5113), - [sym_ctrl_return] = STATE(5113), - [sym_pipe_element] = STATE(4775), - [sym_stmt_source] = STATE(6842), - [sym_stmt_register] = STATE(6842), - [sym__stmt_hide] = STATE(6842), - [sym_hide_mod] = STATE(6758), - [sym_hide_env] = STATE(6758), - [sym__stmt_overlay] = STATE(6842), - [sym_overlay_list] = STATE(6961), - [sym_overlay_hide] = STATE(6961), - [sym_overlay_new] = STATE(6961), - [sym_overlay_use] = STATE(6961), - [sym_where_command] = STATE(5143), - [sym__expression] = STATE(3799), - [sym_expr_unary] = STATE(2430), - [sym__expr_unary_minus] = STATE(2432), - [sym_expr_binary] = STATE(2430), - [sym__expr_binary_expression] = STATE(3832), - [sym_expr_parenthesized] = STATE(2004), - [sym_val_range] = STATE(3821), - [sym__value] = STATE(2430), - [sym_val_nothing] = STATE(2399), - [sym_val_bool] = STATE(2399), - [sym_val_variable] = STATE(1330), - [sym_val_number] = STATE(2399), - [sym__val_number_decimal] = STATE(1568), - [sym__val_number] = STATE(2385), - [sym_val_duration] = STATE(2399), - [sym_val_filesize] = STATE(2399), - [sym_val_binary] = STATE(2399), - [sym_val_string] = STATE(2399), - [sym__str_double_quotes] = STATE(1975), - [sym_val_interpolated] = STATE(2399), - [sym__inter_single_quotes] = STATE(2384), - [sym__inter_double_quotes] = STATE(2390), - [sym_val_list] = STATE(2399), - [sym_val_record] = STATE(2399), - [sym_val_table] = STATE(2399), - [sym_val_closure] = STATE(2399), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(5143), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(7628), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1922), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(1296), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1569), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(151), - [aux_sym_pipeline_repeat1] = STATE(193), - [aux_sym__block_body_repeat1] = STATE(260), - [aux_sym__block_body_repeat2] = STATE(155), - [aux_sym_pipe_element_repeat2] = STATE(413), - [ts_builtin_sym_end] = ACTIONS(635), - [anon_sym_export] = ACTIONS(9), - [anon_sym_alias] = ACTIONS(11), - [anon_sym_let] = ACTIONS(13), - [anon_sym_let_DASHenv] = ACTIONS(13), - [anon_sym_mut] = ACTIONS(15), - [anon_sym_const] = ACTIONS(17), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [aux_sym_cmd_identifier_token2] = ACTIONS(19), - [aux_sym_cmd_identifier_token3] = ACTIONS(19), - [aux_sym_cmd_identifier_token4] = ACTIONS(19), - [aux_sym_cmd_identifier_token5] = ACTIONS(19), - [aux_sym_cmd_identifier_token6] = ACTIONS(19), - [aux_sym_cmd_identifier_token7] = ACTIONS(19), - [aux_sym_cmd_identifier_token8] = ACTIONS(19), - [aux_sym_cmd_identifier_token9] = ACTIONS(19), - [aux_sym_cmd_identifier_token10] = ACTIONS(19), - [aux_sym_cmd_identifier_token11] = ACTIONS(19), - [aux_sym_cmd_identifier_token12] = ACTIONS(19), - [aux_sym_cmd_identifier_token13] = ACTIONS(19), - [aux_sym_cmd_identifier_token14] = ACTIONS(19), - [aux_sym_cmd_identifier_token15] = ACTIONS(19), - [aux_sym_cmd_identifier_token16] = ACTIONS(19), - [aux_sym_cmd_identifier_token17] = ACTIONS(19), - [aux_sym_cmd_identifier_token18] = ACTIONS(19), - [aux_sym_cmd_identifier_token19] = ACTIONS(19), - [aux_sym_cmd_identifier_token20] = ACTIONS(19), - [aux_sym_cmd_identifier_token21] = ACTIONS(19), - [aux_sym_cmd_identifier_token22] = ACTIONS(19), - [aux_sym_cmd_identifier_token23] = ACTIONS(19), - [aux_sym_cmd_identifier_token24] = ACTIONS(21), - [aux_sym_cmd_identifier_token25] = ACTIONS(19), - [aux_sym_cmd_identifier_token26] = ACTIONS(21), - [aux_sym_cmd_identifier_token27] = ACTIONS(19), - [aux_sym_cmd_identifier_token28] = ACTIONS(19), - [aux_sym_cmd_identifier_token29] = ACTIONS(19), - [aux_sym_cmd_identifier_token30] = ACTIONS(19), - [aux_sym_cmd_identifier_token31] = ACTIONS(21), - [aux_sym_cmd_identifier_token32] = ACTIONS(21), - [aux_sym_cmd_identifier_token33] = ACTIONS(21), - [aux_sym_cmd_identifier_token34] = ACTIONS(21), - [aux_sym_cmd_identifier_token35] = ACTIONS(21), - [aux_sym_cmd_identifier_token36] = ACTIONS(19), - [anon_sym_true] = ACTIONS(23), - [anon_sym_false] = ACTIONS(23), - [anon_sym_null] = ACTIONS(25), - [aux_sym_cmd_identifier_token38] = ACTIONS(27), - [aux_sym_cmd_identifier_token39] = ACTIONS(29), - [aux_sym_cmd_identifier_token40] = ACTIONS(29), - [sym__newline] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_def] = ACTIONS(35), - [anon_sym_export_DASHenv] = ACTIONS(37), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_module] = ACTIONS(41), - [anon_sym_use] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(47), - [anon_sym_DOLLAR] = ACTIONS(49), - [anon_sym_error] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_break] = ACTIONS(55), - [anon_sym_continue] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_do] = ACTIONS(65), - [anon_sym_if] = ACTIONS(67), - [anon_sym_match] = ACTIONS(69), - [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(73), - [anon_sym_try] = ACTIONS(75), - [anon_sym_return] = ACTIONS(77), - [anon_sym_source] = ACTIONS(79), - [anon_sym_source_DASHenv] = ACTIONS(79), - [anon_sym_register] = ACTIONS(81), - [anon_sym_hide] = ACTIONS(83), - [anon_sym_hide_DASHenv] = ACTIONS(85), - [anon_sym_overlay] = ACTIONS(87), - [anon_sym_where] = ACTIONS(89), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(93), - [anon_sym_DOT_DOT_LT] = ACTIONS(93), - [aux_sym__val_number_decimal_token1] = ACTIONS(95), - [aux_sym__val_number_decimal_token2] = ACTIONS(97), - [aux_sym__val_number_decimal_token3] = ACTIONS(99), - [aux_sym__val_number_decimal_token4] = ACTIONS(101), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(109), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(361), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(375), + [anon_sym_false] = ACTIONS(375), + [anon_sym_null] = ACTIONS(377), + [aux_sym_cmd_identifier_token38] = ACTIONS(379), + [aux_sym_cmd_identifier_token39] = ACTIONS(381), + [aux_sym_cmd_identifier_token40] = ACTIONS(381), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_continue] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(435), + [aux_sym__val_number_decimal_token2] = ACTIONS(437), + [aux_sym__val_number_decimal_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token4] = ACTIONS(441), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(121), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [152] = { - [sym__block_body_statement] = STATE(5894), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym__block_body] = STATE(7640), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1445), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym_val_variable] = STATE(1268), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1465), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(8038), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1922), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(1296), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1569), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(152), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat1] = STATE(96), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), [aux_sym__block_body_repeat2] = STATE(160), - [aux_sym_pipe_element_repeat2] = STATE(411), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_pipe_element_repeat2] = STATE(361), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(375), + [anon_sym_false] = ACTIONS(375), + [anon_sym_null] = ACTIONS(377), + [aux_sym_cmd_identifier_token38] = ACTIONS(379), + [aux_sym_cmd_identifier_token39] = ACTIONS(381), + [aux_sym_cmd_identifier_token40] = ACTIONS(381), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_continue] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(435), + [aux_sym__val_number_decimal_token2] = ACTIONS(437), + [aux_sym__val_number_decimal_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token4] = ACTIONS(441), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [153] = { - [sym__block_body_statement] = STATE(6362), - [sym__declaration] = STATE(7079), - [sym_decl_alias] = STATE(7169), - [sym_stmt_let] = STATE(6842), - [sym_stmt_mut] = STATE(6842), - [sym_stmt_const] = STATE(6842), - [sym_assignment] = STATE(6842), - [sym__mutable_assignment_pattern] = STATE(6847), - [sym__statement] = STATE(7079), - [sym_pipeline] = STATE(6842), - [sym_cmd_identifier] = STATE(4801), - [sym_decl_def] = STATE(7169), - [sym_decl_export] = STATE(7169), - [sym_decl_extern] = STATE(7169), - [sym_decl_module] = STATE(7169), - [sym_decl_use] = STATE(7169), - [sym__ctrl_statement] = STATE(6842), - [sym__ctrl_expression] = STATE(5080), - [sym_ctrl_for] = STATE(6702), - [sym_ctrl_loop] = STATE(6702), - [sym_ctrl_error] = STATE(6702), - [sym_ctrl_while] = STATE(6702), - [sym_ctrl_do] = STATE(5113), - [sym_ctrl_if] = STATE(5113), - [sym_ctrl_match] = STATE(5113), - [sym_ctrl_try] = STATE(5113), - [sym_ctrl_return] = STATE(5113), - [sym_pipe_element] = STATE(4775), - [sym_stmt_source] = STATE(6842), - [sym_stmt_register] = STATE(6842), - [sym__stmt_hide] = STATE(6842), - [sym_hide_mod] = STATE(6758), - [sym_hide_env] = STATE(6758), - [sym__stmt_overlay] = STATE(6842), - [sym_overlay_list] = STATE(6961), - [sym_overlay_hide] = STATE(6961), - [sym_overlay_new] = STATE(6961), - [sym_overlay_use] = STATE(6961), - [sym_where_command] = STATE(5143), - [sym__expression] = STATE(3799), - [sym_expr_unary] = STATE(2430), - [sym__expr_unary_minus] = STATE(2432), - [sym_expr_binary] = STATE(2430), - [sym__expr_binary_expression] = STATE(3832), - [sym_expr_parenthesized] = STATE(2004), - [sym_val_range] = STATE(3821), - [sym__value] = STATE(2430), - [sym_val_nothing] = STATE(2399), - [sym_val_bool] = STATE(2399), - [sym_val_variable] = STATE(1330), - [sym_val_number] = STATE(2399), - [sym__val_number_decimal] = STATE(1568), - [sym__val_number] = STATE(2385), - [sym_val_duration] = STATE(2399), - [sym_val_filesize] = STATE(2399), - [sym_val_binary] = STATE(2399), - [sym_val_string] = STATE(2399), - [sym__str_double_quotes] = STATE(1975), - [sym_val_interpolated] = STATE(2399), - [sym__inter_single_quotes] = STATE(2384), - [sym__inter_double_quotes] = STATE(2390), - [sym_val_list] = STATE(2399), - [sym_val_record] = STATE(2399), - [sym_val_table] = STATE(2399), - [sym_val_closure] = STATE(2399), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(5143), + [sym__block_body_statement] = STATE(6057), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym__block_body] = STATE(8060), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1922), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(1296), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1569), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(153), - [aux_sym_pipeline_repeat1] = STATE(193), - [aux_sym__block_body_repeat2] = STATE(157), - [aux_sym_pipe_element_repeat2] = STATE(413), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat1] = STATE(75), + [aux_sym__block_body_repeat2] = STATE(160), + [aux_sym_pipe_element_repeat2] = STATE(361), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(375), + [anon_sym_false] = ACTIONS(375), + [anon_sym_null] = ACTIONS(377), + [aux_sym_cmd_identifier_token38] = ACTIONS(379), + [aux_sym_cmd_identifier_token39] = ACTIONS(381), + [aux_sym_cmd_identifier_token40] = ACTIONS(381), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_continue] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(435), + [aux_sym__val_number_decimal_token2] = ACTIONS(437), + [aux_sym__val_number_decimal_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token4] = ACTIONS(441), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), + }, + [154] = { + [sym__block_body_statement_parenthesized] = STATE(5872), + [sym__declaration_parenthesized] = STATE(7040), + [sym_decl_alias_parenthesized] = STATE(7072), + [sym_stmt_let_parenthesized] = STATE(7124), + [sym_stmt_mut_parenthesized] = STATE(7124), + [sym_stmt_const_parenthesized] = STATE(7124), + [sym_assignment_parenthesized] = STATE(7124), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), + [sym__statement_parenthesized] = STATE(7040), + [sym_pipeline_parenthesized] = STATE(7124), + [sym_cmd_identifier] = STATE(4817), + [sym_decl_def] = STATE(7072), + [sym_decl_export] = STATE(7072), + [sym_decl_extern] = STATE(7072), + [sym_decl_module] = STATE(7072), + [sym_decl_use] = STATE(7072), + [sym__ctrl_statement] = STATE(7124), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_stmt_source] = STATE(7124), + [sym_stmt_register] = STATE(7124), + [sym__stmt_hide] = STATE(7124), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(7124), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym__parenthesized_body] = STATE(7961), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(1361), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), + [sym_comment] = STATE(154), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym__block_body_repeat1] = STATE(118), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym__parenthesized_body_repeat2] = STATE(161), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_let_DASHenv] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), + }, + [155] = { + [sym__block_body_statement] = STATE(6653), + [sym__declaration] = STATE(6892), + [sym_decl_alias] = STATE(7011), + [sym_stmt_let] = STATE(6877), + [sym_stmt_mut] = STATE(6877), + [sym_stmt_const] = STATE(6877), + [sym_assignment] = STATE(6877), + [sym__mutable_assignment_pattern] = STATE(6904), + [sym__statement] = STATE(6892), + [sym_pipeline] = STATE(6877), + [sym_cmd_identifier] = STATE(4714), + [sym_decl_def] = STATE(7011), + [sym_decl_export] = STATE(7011), + [sym_decl_extern] = STATE(7011), + [sym_decl_module] = STATE(7011), + [sym_decl_use] = STATE(7011), + [sym__ctrl_statement] = STATE(6877), + [sym__ctrl_expression] = STATE(5155), + [sym_ctrl_for] = STATE(7034), + [sym_ctrl_loop] = STATE(7034), + [sym_ctrl_error] = STATE(7034), + [sym_ctrl_while] = STATE(7034), + [sym_ctrl_do] = STATE(5175), + [sym_ctrl_if] = STATE(5175), + [sym_ctrl_match] = STATE(5175), + [sym_ctrl_try] = STATE(5175), + [sym_ctrl_return] = STATE(5175), + [sym_pipe_element] = STATE(4782), + [sym_stmt_source] = STATE(6877), + [sym_stmt_register] = STATE(6877), + [sym__stmt_hide] = STATE(6877), + [sym_hide_mod] = STATE(6852), + [sym_hide_env] = STATE(6852), + [sym__stmt_overlay] = STATE(6877), + [sym_overlay_list] = STATE(6913), + [sym_overlay_hide] = STATE(6913), + [sym_overlay_new] = STATE(6913), + [sym_overlay_use] = STATE(6913), + [sym_where_command] = STATE(5180), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2509), + [sym__expr_unary_minus] = STATE(2510), + [sym_expr_binary] = STATE(2509), + [sym__expr_binary_expression] = STATE(3876), + [sym_expr_parenthesized] = STATE(2042), + [sym_val_range] = STATE(3900), + [sym__value] = STATE(2509), + [sym_val_nothing] = STATE(2441), + [sym_val_bool] = STATE(2441), + [sym_val_variable] = STATE(1364), + [sym_val_number] = STATE(2441), + [sym__val_number_decimal] = STATE(1665), + [sym__val_number] = STATE(2488), + [sym_val_duration] = STATE(2441), + [sym_val_filesize] = STATE(2441), + [sym_val_binary] = STATE(2441), + [sym_val_string] = STATE(2441), + [sym__raw_str] = STATE(2065), + [sym__str_double_quotes] = STATE(2065), + [sym_val_interpolated] = STATE(2441), + [sym__inter_single_quotes] = STATE(2563), + [sym__inter_double_quotes] = STATE(2436), + [sym_val_list] = STATE(2441), + [sym_val_record] = STATE(2441), + [sym_val_table] = STATE(2441), + [sym_val_closure] = STATE(2441), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5180), + [sym_comment] = STATE(155), + [aux_sym_pipeline_repeat1] = STATE(194), + [aux_sym__block_body_repeat2] = STATE(156), + [aux_sym_pipe_element_repeat2] = STATE(354), [anon_sym_export] = ACTIONS(9), [anon_sym_alias] = ACTIONS(11), [anon_sym_let] = ACTIONS(13), @@ -93731,252 +94960,604 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), [aux_sym_env_var_token1] = ACTIONS(119), [anon_sym_CARET] = ACTIONS(121), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(123), }, - [154] = { - [sym__block_body_statement] = STATE(6003), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1445), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym_val_variable] = STATE(1268), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1465), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), - [sym_comment] = STATE(154), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat2] = STATE(157), - [aux_sym_pipe_element_repeat2] = STATE(411), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [156] = { + [sym__block_body_statement] = STATE(7128), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1922), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(1296), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1569), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), + [sym_comment] = STATE(156), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat2] = STATE(156), + [aux_sym_pipe_element_repeat2] = STATE(361), + [anon_sym_export] = ACTIONS(685), + [anon_sym_alias] = ACTIONS(688), + [anon_sym_let] = ACTIONS(691), + [anon_sym_let_DASHenv] = ACTIONS(691), + [anon_sym_mut] = ACTIONS(694), + [anon_sym_const] = ACTIONS(697), + [aux_sym_cmd_identifier_token1] = ACTIONS(700), + [aux_sym_cmd_identifier_token2] = ACTIONS(700), + [aux_sym_cmd_identifier_token3] = ACTIONS(700), + [aux_sym_cmd_identifier_token4] = ACTIONS(700), + [aux_sym_cmd_identifier_token5] = ACTIONS(700), + [aux_sym_cmd_identifier_token6] = ACTIONS(700), + [aux_sym_cmd_identifier_token7] = ACTIONS(700), + [aux_sym_cmd_identifier_token8] = ACTIONS(700), + [aux_sym_cmd_identifier_token9] = ACTIONS(700), + [aux_sym_cmd_identifier_token10] = ACTIONS(700), + [aux_sym_cmd_identifier_token11] = ACTIONS(700), + [aux_sym_cmd_identifier_token12] = ACTIONS(700), + [aux_sym_cmd_identifier_token13] = ACTIONS(700), + [aux_sym_cmd_identifier_token14] = ACTIONS(700), + [aux_sym_cmd_identifier_token15] = ACTIONS(700), + [aux_sym_cmd_identifier_token16] = ACTIONS(700), + [aux_sym_cmd_identifier_token17] = ACTIONS(700), + [aux_sym_cmd_identifier_token18] = ACTIONS(700), + [aux_sym_cmd_identifier_token19] = ACTIONS(700), + [aux_sym_cmd_identifier_token20] = ACTIONS(700), + [aux_sym_cmd_identifier_token21] = ACTIONS(700), + [aux_sym_cmd_identifier_token22] = ACTIONS(700), + [aux_sym_cmd_identifier_token23] = ACTIONS(700), + [aux_sym_cmd_identifier_token24] = ACTIONS(703), + [aux_sym_cmd_identifier_token25] = ACTIONS(700), + [aux_sym_cmd_identifier_token26] = ACTIONS(703), + [aux_sym_cmd_identifier_token27] = ACTIONS(700), + [aux_sym_cmd_identifier_token28] = ACTIONS(700), + [aux_sym_cmd_identifier_token29] = ACTIONS(700), + [aux_sym_cmd_identifier_token30] = ACTIONS(700), + [aux_sym_cmd_identifier_token31] = ACTIONS(703), + [aux_sym_cmd_identifier_token32] = ACTIONS(703), + [aux_sym_cmd_identifier_token33] = ACTIONS(703), + [aux_sym_cmd_identifier_token34] = ACTIONS(703), + [aux_sym_cmd_identifier_token35] = ACTIONS(703), + [aux_sym_cmd_identifier_token36] = ACTIONS(700), + [anon_sym_true] = ACTIONS(706), + [anon_sym_false] = ACTIONS(706), + [anon_sym_null] = ACTIONS(709), + [aux_sym_cmd_identifier_token38] = ACTIONS(712), + [aux_sym_cmd_identifier_token39] = ACTIONS(715), + [aux_sym_cmd_identifier_token40] = ACTIONS(715), + [anon_sym_def] = ACTIONS(718), + [anon_sym_export_DASHenv] = ACTIONS(721), + [anon_sym_extern] = ACTIONS(724), + [anon_sym_module] = ACTIONS(727), + [anon_sym_use] = ACTIONS(730), + [anon_sym_LBRACK] = ACTIONS(733), + [anon_sym_LPAREN] = ACTIONS(736), + [anon_sym_DOLLAR] = ACTIONS(739), + [anon_sym_error] = ACTIONS(742), + [anon_sym_DASH] = ACTIONS(745), + [anon_sym_break] = ACTIONS(748), + [anon_sym_continue] = ACTIONS(751), + [anon_sym_for] = ACTIONS(754), + [anon_sym_loop] = ACTIONS(757), + [anon_sym_while] = ACTIONS(760), + [anon_sym_do] = ACTIONS(763), + [anon_sym_if] = ACTIONS(766), + [anon_sym_match] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(772), + [anon_sym_DOT_DOT] = ACTIONS(775), + [anon_sym_try] = ACTIONS(778), + [anon_sym_return] = ACTIONS(781), + [anon_sym_source] = ACTIONS(784), + [anon_sym_source_DASHenv] = ACTIONS(784), + [anon_sym_register] = ACTIONS(787), + [anon_sym_hide] = ACTIONS(790), + [anon_sym_hide_DASHenv] = ACTIONS(793), + [anon_sym_overlay] = ACTIONS(796), + [anon_sym_where] = ACTIONS(799), + [aux_sym_expr_unary_token1] = ACTIONS(802), + [anon_sym_DOT_DOT_EQ] = ACTIONS(805), + [anon_sym_DOT_DOT_LT] = ACTIONS(805), + [aux_sym__val_number_decimal_token1] = ACTIONS(808), + [aux_sym__val_number_decimal_token2] = ACTIONS(811), + [aux_sym__val_number_decimal_token3] = ACTIONS(814), + [aux_sym__val_number_decimal_token4] = ACTIONS(817), + [aux_sym__val_number_token1] = ACTIONS(820), + [aux_sym__val_number_token2] = ACTIONS(820), + [aux_sym__val_number_token3] = ACTIONS(820), + [anon_sym_0b] = ACTIONS(823), + [anon_sym_0o] = ACTIONS(826), + [anon_sym_0x] = ACTIONS(826), + [sym_val_date] = ACTIONS(829), + [anon_sym_DQUOTE] = ACTIONS(832), + [sym__str_single_quotes] = ACTIONS(835), + [sym__str_back_ticks] = ACTIONS(835), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(838), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(841), + [aux_sym_env_var_token1] = ACTIONS(844), + [anon_sym_CARET] = ACTIONS(847), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(850), + }, + [157] = { + [sym__block_body_statement_parenthesized] = STATE(5879), + [sym__declaration_parenthesized] = STATE(7040), + [sym_decl_alias_parenthesized] = STATE(7072), + [sym_stmt_let_parenthesized] = STATE(7124), + [sym_stmt_mut_parenthesized] = STATE(7124), + [sym_stmt_const_parenthesized] = STATE(7124), + [sym_assignment_parenthesized] = STATE(7124), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), + [sym__statement_parenthesized] = STATE(7040), + [sym_pipeline_parenthesized] = STATE(7124), + [sym_cmd_identifier] = STATE(4817), + [sym_decl_def] = STATE(7072), + [sym_decl_export] = STATE(7072), + [sym_decl_extern] = STATE(7072), + [sym_decl_module] = STATE(7072), + [sym_decl_use] = STATE(7072), + [sym__ctrl_statement] = STATE(7124), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_stmt_source] = STATE(7124), + [sym_stmt_register] = STATE(7124), + [sym__stmt_hide] = STATE(7124), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(7124), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(1361), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), + [sym_comment] = STATE(157), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym__parenthesized_body_repeat2] = STATE(162), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_let_DASHenv] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, - [155] = { - [sym__block_body_statement] = STATE(6087), - [sym__declaration] = STATE(7079), - [sym_decl_alias] = STATE(7169), - [sym_stmt_let] = STATE(6842), - [sym_stmt_mut] = STATE(6842), - [sym_stmt_const] = STATE(6842), - [sym_assignment] = STATE(6842), - [sym__mutable_assignment_pattern] = STATE(6847), - [sym__statement] = STATE(7079), - [sym_pipeline] = STATE(6842), - [sym_cmd_identifier] = STATE(4801), - [sym_decl_def] = STATE(7169), - [sym_decl_export] = STATE(7169), - [sym_decl_extern] = STATE(7169), - [sym_decl_module] = STATE(7169), - [sym_decl_use] = STATE(7169), - [sym__ctrl_statement] = STATE(6842), - [sym__ctrl_expression] = STATE(5080), - [sym_ctrl_for] = STATE(6702), - [sym_ctrl_loop] = STATE(6702), - [sym_ctrl_error] = STATE(6702), - [sym_ctrl_while] = STATE(6702), - [sym_ctrl_do] = STATE(5113), - [sym_ctrl_if] = STATE(5113), - [sym_ctrl_match] = STATE(5113), - [sym_ctrl_try] = STATE(5113), - [sym_ctrl_return] = STATE(5113), - [sym_pipe_element] = STATE(4775), - [sym_stmt_source] = STATE(6842), - [sym_stmt_register] = STATE(6842), - [sym__stmt_hide] = STATE(6842), - [sym_hide_mod] = STATE(6758), - [sym_hide_env] = STATE(6758), - [sym__stmt_overlay] = STATE(6842), - [sym_overlay_list] = STATE(6961), - [sym_overlay_hide] = STATE(6961), - [sym_overlay_new] = STATE(6961), - [sym_overlay_use] = STATE(6961), - [sym_where_command] = STATE(5143), - [sym__expression] = STATE(3799), - [sym_expr_unary] = STATE(2430), - [sym__expr_unary_minus] = STATE(2432), - [sym_expr_binary] = STATE(2430), - [sym__expr_binary_expression] = STATE(3832), - [sym_expr_parenthesized] = STATE(2004), - [sym_val_range] = STATE(3821), - [sym__value] = STATE(2430), - [sym_val_nothing] = STATE(2399), - [sym_val_bool] = STATE(2399), - [sym_val_variable] = STATE(1330), - [sym_val_number] = STATE(2399), - [sym__val_number_decimal] = STATE(1568), - [sym__val_number] = STATE(2385), - [sym_val_duration] = STATE(2399), - [sym_val_filesize] = STATE(2399), - [sym_val_binary] = STATE(2399), - [sym_val_string] = STATE(2399), - [sym__str_double_quotes] = STATE(1975), - [sym_val_interpolated] = STATE(2399), - [sym__inter_single_quotes] = STATE(2384), - [sym__inter_double_quotes] = STATE(2390), - [sym_val_list] = STATE(2399), - [sym_val_record] = STATE(2399), - [sym_val_table] = STATE(2399), - [sym_val_closure] = STATE(2399), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(5143), - [sym_comment] = STATE(155), - [aux_sym_pipeline_repeat1] = STATE(193), - [aux_sym__block_body_repeat2] = STATE(157), - [aux_sym_pipe_element_repeat2] = STATE(413), + [158] = { + [sym__block_body_statement] = STATE(5994), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1922), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(1296), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1569), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), + [sym_comment] = STATE(158), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat2] = STATE(156), + [aux_sym_pipe_element_repeat2] = STATE(361), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(375), + [anon_sym_false] = ACTIONS(375), + [anon_sym_null] = ACTIONS(377), + [aux_sym_cmd_identifier_token38] = ACTIONS(379), + [aux_sym_cmd_identifier_token39] = ACTIONS(381), + [aux_sym_cmd_identifier_token40] = ACTIONS(381), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_continue] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(435), + [aux_sym__val_number_decimal_token2] = ACTIONS(437), + [aux_sym__val_number_decimal_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token4] = ACTIONS(441), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), + }, + [159] = { + [sym__block_body_statement] = STATE(6547), + [sym__declaration] = STATE(6892), + [sym_decl_alias] = STATE(7011), + [sym_stmt_let] = STATE(6877), + [sym_stmt_mut] = STATE(6877), + [sym_stmt_const] = STATE(6877), + [sym_assignment] = STATE(6877), + [sym__mutable_assignment_pattern] = STATE(6904), + [sym__statement] = STATE(6892), + [sym_pipeline] = STATE(6877), + [sym_cmd_identifier] = STATE(4714), + [sym_decl_def] = STATE(7011), + [sym_decl_export] = STATE(7011), + [sym_decl_extern] = STATE(7011), + [sym_decl_module] = STATE(7011), + [sym_decl_use] = STATE(7011), + [sym__ctrl_statement] = STATE(6877), + [sym__ctrl_expression] = STATE(5155), + [sym_ctrl_for] = STATE(7034), + [sym_ctrl_loop] = STATE(7034), + [sym_ctrl_error] = STATE(7034), + [sym_ctrl_while] = STATE(7034), + [sym_ctrl_do] = STATE(5175), + [sym_ctrl_if] = STATE(5175), + [sym_ctrl_match] = STATE(5175), + [sym_ctrl_try] = STATE(5175), + [sym_ctrl_return] = STATE(5175), + [sym_pipe_element] = STATE(4782), + [sym_stmt_source] = STATE(6877), + [sym_stmt_register] = STATE(6877), + [sym__stmt_hide] = STATE(6877), + [sym_hide_mod] = STATE(6852), + [sym_hide_env] = STATE(6852), + [sym__stmt_overlay] = STATE(6877), + [sym_overlay_list] = STATE(6913), + [sym_overlay_hide] = STATE(6913), + [sym_overlay_new] = STATE(6913), + [sym_overlay_use] = STATE(6913), + [sym_where_command] = STATE(5180), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2509), + [sym__expr_unary_minus] = STATE(2510), + [sym_expr_binary] = STATE(2509), + [sym__expr_binary_expression] = STATE(3876), + [sym_expr_parenthesized] = STATE(2042), + [sym_val_range] = STATE(3900), + [sym__value] = STATE(2509), + [sym_val_nothing] = STATE(2441), + [sym_val_bool] = STATE(2441), + [sym_val_variable] = STATE(1364), + [sym_val_number] = STATE(2441), + [sym__val_number_decimal] = STATE(1665), + [sym__val_number] = STATE(2488), + [sym_val_duration] = STATE(2441), + [sym_val_filesize] = STATE(2441), + [sym_val_binary] = STATE(2441), + [sym_val_string] = STATE(2441), + [sym__raw_str] = STATE(2065), + [sym__str_double_quotes] = STATE(2065), + [sym_val_interpolated] = STATE(2441), + [sym__inter_single_quotes] = STATE(2563), + [sym__inter_double_quotes] = STATE(2436), + [sym_val_list] = STATE(2441), + [sym_val_record] = STATE(2441), + [sym_val_table] = STATE(2441), + [sym_val_closure] = STATE(2441), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5180), + [sym_comment] = STATE(159), + [aux_sym_pipeline_repeat1] = STATE(194), + [aux_sym__block_body_repeat2] = STATE(156), + [aux_sym_pipe_element_repeat2] = STATE(354), [anon_sym_export] = ACTIONS(9), [anon_sym_alias] = ACTIONS(11), [anon_sym_let] = ACTIONS(13), @@ -94075,1876 +95656,1041 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), [aux_sym_env_var_token1] = ACTIONS(119), [anon_sym_CARET] = ACTIONS(121), - [anon_sym_POUND] = ACTIONS(247), - }, - [156] = { - [sym__block_body_statement_parenthesized] = STATE(5884), - [sym__declaration_parenthesized] = STATE(6810), - [sym_decl_alias_parenthesized] = STATE(6895), - [sym_stmt_let_parenthesized] = STATE(6948), - [sym_stmt_mut_parenthesized] = STATE(6948), - [sym_stmt_const_parenthesized] = STATE(6948), - [sym_assignment_parenthesized] = STATE(6948), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), - [sym__statement_parenthesized] = STATE(6810), - [sym_pipeline_parenthesized] = STATE(6948), - [sym_cmd_identifier] = STATE(4758), - [sym_decl_def] = STATE(6895), - [sym_decl_export] = STATE(6895), - [sym_decl_extern] = STATE(6895), - [sym_decl_module] = STATE(6895), - [sym_decl_use] = STATE(6895), - [sym__ctrl_statement] = STATE(6948), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_stmt_source] = STATE(6948), - [sym_stmt_register] = STATE(6948), - [sym__stmt_hide] = STATE(6948), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6948), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(1303), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), - [sym_comment] = STATE(156), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym__parenthesized_body_repeat2] = STATE(159), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), - }, - [157] = { - [sym__block_body_statement] = STATE(6652), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1445), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym_val_variable] = STATE(1268), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1465), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), - [sym_comment] = STATE(157), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat2] = STATE(157), - [aux_sym_pipe_element_repeat2] = STATE(411), - [anon_sym_export] = ACTIONS(675), - [anon_sym_alias] = ACTIONS(678), - [anon_sym_let] = ACTIONS(681), - [anon_sym_let_DASHenv] = ACTIONS(681), - [anon_sym_mut] = ACTIONS(684), - [anon_sym_const] = ACTIONS(687), - [aux_sym_cmd_identifier_token1] = ACTIONS(690), - [aux_sym_cmd_identifier_token2] = ACTIONS(690), - [aux_sym_cmd_identifier_token3] = ACTIONS(690), - [aux_sym_cmd_identifier_token4] = ACTIONS(690), - [aux_sym_cmd_identifier_token5] = ACTIONS(690), - [aux_sym_cmd_identifier_token6] = ACTIONS(690), - [aux_sym_cmd_identifier_token7] = ACTIONS(690), - [aux_sym_cmd_identifier_token8] = ACTIONS(690), - [aux_sym_cmd_identifier_token9] = ACTIONS(690), - [aux_sym_cmd_identifier_token10] = ACTIONS(690), - [aux_sym_cmd_identifier_token11] = ACTIONS(690), - [aux_sym_cmd_identifier_token12] = ACTIONS(690), - [aux_sym_cmd_identifier_token13] = ACTIONS(690), - [aux_sym_cmd_identifier_token14] = ACTIONS(690), - [aux_sym_cmd_identifier_token15] = ACTIONS(690), - [aux_sym_cmd_identifier_token16] = ACTIONS(690), - [aux_sym_cmd_identifier_token17] = ACTIONS(690), - [aux_sym_cmd_identifier_token18] = ACTIONS(690), - [aux_sym_cmd_identifier_token19] = ACTIONS(690), - [aux_sym_cmd_identifier_token20] = ACTIONS(690), - [aux_sym_cmd_identifier_token21] = ACTIONS(690), - [aux_sym_cmd_identifier_token22] = ACTIONS(690), - [aux_sym_cmd_identifier_token23] = ACTIONS(690), - [aux_sym_cmd_identifier_token24] = ACTIONS(693), - [aux_sym_cmd_identifier_token25] = ACTIONS(690), - [aux_sym_cmd_identifier_token26] = ACTIONS(693), - [aux_sym_cmd_identifier_token27] = ACTIONS(690), - [aux_sym_cmd_identifier_token28] = ACTIONS(690), - [aux_sym_cmd_identifier_token29] = ACTIONS(690), - [aux_sym_cmd_identifier_token30] = ACTIONS(690), - [aux_sym_cmd_identifier_token31] = ACTIONS(693), - [aux_sym_cmd_identifier_token32] = ACTIONS(693), - [aux_sym_cmd_identifier_token33] = ACTIONS(693), - [aux_sym_cmd_identifier_token34] = ACTIONS(693), - [aux_sym_cmd_identifier_token35] = ACTIONS(693), - [aux_sym_cmd_identifier_token36] = ACTIONS(690), - [anon_sym_true] = ACTIONS(696), - [anon_sym_false] = ACTIONS(696), - [anon_sym_null] = ACTIONS(699), - [aux_sym_cmd_identifier_token38] = ACTIONS(702), - [aux_sym_cmd_identifier_token39] = ACTIONS(705), - [aux_sym_cmd_identifier_token40] = ACTIONS(705), - [anon_sym_def] = ACTIONS(708), - [anon_sym_export_DASHenv] = ACTIONS(711), - [anon_sym_extern] = ACTIONS(714), - [anon_sym_module] = ACTIONS(717), - [anon_sym_use] = ACTIONS(720), - [anon_sym_LBRACK] = ACTIONS(723), - [anon_sym_LPAREN] = ACTIONS(726), - [anon_sym_DOLLAR] = ACTIONS(729), - [anon_sym_error] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(735), - [anon_sym_break] = ACTIONS(738), - [anon_sym_continue] = ACTIONS(741), - [anon_sym_for] = ACTIONS(744), - [anon_sym_loop] = ACTIONS(747), - [anon_sym_while] = ACTIONS(750), - [anon_sym_do] = ACTIONS(753), - [anon_sym_if] = ACTIONS(756), - [anon_sym_match] = ACTIONS(759), - [anon_sym_LBRACE] = ACTIONS(762), - [anon_sym_DOT_DOT] = ACTIONS(765), - [anon_sym_try] = ACTIONS(768), - [anon_sym_return] = ACTIONS(771), - [anon_sym_source] = ACTIONS(774), - [anon_sym_source_DASHenv] = ACTIONS(774), - [anon_sym_register] = ACTIONS(777), - [anon_sym_hide] = ACTIONS(780), - [anon_sym_hide_DASHenv] = ACTIONS(783), - [anon_sym_overlay] = ACTIONS(786), - [anon_sym_where] = ACTIONS(789), - [aux_sym_expr_unary_token1] = ACTIONS(792), - [anon_sym_DOT_DOT_EQ] = ACTIONS(795), - [anon_sym_DOT_DOT_LT] = ACTIONS(795), - [aux_sym__val_number_decimal_token1] = ACTIONS(798), - [aux_sym__val_number_decimal_token2] = ACTIONS(801), - [aux_sym__val_number_decimal_token3] = ACTIONS(804), - [aux_sym__val_number_decimal_token4] = ACTIONS(807), - [aux_sym__val_number_token1] = ACTIONS(810), - [aux_sym__val_number_token2] = ACTIONS(810), - [aux_sym__val_number_token3] = ACTIONS(810), - [anon_sym_0b] = ACTIONS(813), - [anon_sym_0o] = ACTIONS(816), - [anon_sym_0x] = ACTIONS(816), - [sym_val_date] = ACTIONS(819), - [anon_sym_DQUOTE] = ACTIONS(822), - [sym__str_single_quotes] = ACTIONS(825), - [sym__str_back_ticks] = ACTIONS(825), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(831), - [aux_sym_env_var_token1] = ACTIONS(834), - [anon_sym_CARET] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(247), - }, - [158] = { - [sym__block_body_statement_parenthesized] = STATE(5661), - [sym__declaration_parenthesized] = STATE(6810), - [sym_decl_alias_parenthesized] = STATE(6895), - [sym_stmt_let_parenthesized] = STATE(6948), - [sym_stmt_mut_parenthesized] = STATE(6948), - [sym_stmt_const_parenthesized] = STATE(6948), - [sym_assignment_parenthesized] = STATE(6948), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), - [sym__statement_parenthesized] = STATE(6810), - [sym_pipeline_parenthesized] = STATE(6948), - [sym_cmd_identifier] = STATE(4758), - [sym_decl_def] = STATE(6895), - [sym_decl_export] = STATE(6895), - [sym_decl_extern] = STATE(6895), - [sym_decl_module] = STATE(6895), - [sym_decl_use] = STATE(6895), - [sym__ctrl_statement] = STATE(6948), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_stmt_source] = STATE(6948), - [sym_stmt_register] = STATE(6948), - [sym__stmt_hide] = STATE(6948), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6948), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(1303), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), - [sym_comment] = STATE(158), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym__parenthesized_body_repeat2] = STATE(159), - [anon_sym_export] = ACTIONS(449), - [anon_sym_alias] = ACTIONS(451), - [anon_sym_let] = ACTIONS(453), - [anon_sym_let_DASHenv] = ACTIONS(453), - [anon_sym_mut] = ACTIONS(455), - [anon_sym_const] = ACTIONS(457), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), - }, - [159] = { - [sym__block_body_statement_parenthesized] = STATE(6576), - [sym__declaration_parenthesized] = STATE(6810), - [sym_decl_alias_parenthesized] = STATE(6895), - [sym_stmt_let_parenthesized] = STATE(6948), - [sym_stmt_mut_parenthesized] = STATE(6948), - [sym_stmt_const_parenthesized] = STATE(6948), - [sym_assignment_parenthesized] = STATE(6948), - [sym__mutable_assignment_pattern_parenthesized] = STATE(6621), - [sym__statement_parenthesized] = STATE(6810), - [sym_pipeline_parenthesized] = STATE(6948), - [sym_cmd_identifier] = STATE(4758), - [sym_decl_def] = STATE(6895), - [sym_decl_export] = STATE(6895), - [sym_decl_extern] = STATE(6895), - [sym_decl_module] = STATE(6895), - [sym_decl_use] = STATE(6895), - [sym__ctrl_statement] = STATE(6948), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_stmt_source] = STATE(6948), - [sym_stmt_register] = STATE(6948), - [sym__stmt_hide] = STATE(6948), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6948), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(1303), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), - [sym_comment] = STATE(159), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym__parenthesized_body_repeat2] = STATE(159), - [anon_sym_export] = ACTIONS(840), - [anon_sym_alias] = ACTIONS(843), - [anon_sym_let] = ACTIONS(846), - [anon_sym_let_DASHenv] = ACTIONS(846), - [anon_sym_mut] = ACTIONS(849), - [anon_sym_const] = ACTIONS(852), - [aux_sym_cmd_identifier_token1] = ACTIONS(855), - [aux_sym_cmd_identifier_token2] = ACTIONS(855), - [aux_sym_cmd_identifier_token3] = ACTIONS(855), - [aux_sym_cmd_identifier_token4] = ACTIONS(855), - [aux_sym_cmd_identifier_token5] = ACTIONS(855), - [aux_sym_cmd_identifier_token6] = ACTIONS(855), - [aux_sym_cmd_identifier_token7] = ACTIONS(855), - [aux_sym_cmd_identifier_token8] = ACTIONS(855), - [aux_sym_cmd_identifier_token9] = ACTIONS(855), - [aux_sym_cmd_identifier_token10] = ACTIONS(855), - [aux_sym_cmd_identifier_token11] = ACTIONS(855), - [aux_sym_cmd_identifier_token12] = ACTIONS(855), - [aux_sym_cmd_identifier_token13] = ACTIONS(855), - [aux_sym_cmd_identifier_token14] = ACTIONS(855), - [aux_sym_cmd_identifier_token15] = ACTIONS(855), - [aux_sym_cmd_identifier_token16] = ACTIONS(855), - [aux_sym_cmd_identifier_token17] = ACTIONS(855), - [aux_sym_cmd_identifier_token18] = ACTIONS(855), - [aux_sym_cmd_identifier_token19] = ACTIONS(855), - [aux_sym_cmd_identifier_token20] = ACTIONS(855), - [aux_sym_cmd_identifier_token21] = ACTIONS(855), - [aux_sym_cmd_identifier_token22] = ACTIONS(855), - [aux_sym_cmd_identifier_token23] = ACTIONS(855), - [aux_sym_cmd_identifier_token24] = ACTIONS(858), - [aux_sym_cmd_identifier_token25] = ACTIONS(855), - [aux_sym_cmd_identifier_token26] = ACTIONS(858), - [aux_sym_cmd_identifier_token27] = ACTIONS(855), - [aux_sym_cmd_identifier_token28] = ACTIONS(855), - [aux_sym_cmd_identifier_token29] = ACTIONS(855), - [aux_sym_cmd_identifier_token30] = ACTIONS(855), - [aux_sym_cmd_identifier_token31] = ACTIONS(858), - [aux_sym_cmd_identifier_token32] = ACTIONS(858), - [aux_sym_cmd_identifier_token33] = ACTIONS(858), - [aux_sym_cmd_identifier_token34] = ACTIONS(858), - [aux_sym_cmd_identifier_token35] = ACTIONS(858), - [aux_sym_cmd_identifier_token36] = ACTIONS(855), - [anon_sym_true] = ACTIONS(861), - [anon_sym_false] = ACTIONS(861), - [anon_sym_null] = ACTIONS(864), - [aux_sym_cmd_identifier_token38] = ACTIONS(867), - [aux_sym_cmd_identifier_token39] = ACTIONS(870), - [aux_sym_cmd_identifier_token40] = ACTIONS(870), - [anon_sym_def] = ACTIONS(873), - [anon_sym_export_DASHenv] = ACTIONS(876), - [anon_sym_extern] = ACTIONS(879), - [anon_sym_module] = ACTIONS(882), - [anon_sym_use] = ACTIONS(885), - [anon_sym_LBRACK] = ACTIONS(888), - [anon_sym_LPAREN] = ACTIONS(891), - [anon_sym_DOLLAR] = ACTIONS(894), - [anon_sym_error] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(900), - [anon_sym_break] = ACTIONS(903), - [anon_sym_continue] = ACTIONS(906), - [anon_sym_for] = ACTIONS(909), - [anon_sym_loop] = ACTIONS(912), - [anon_sym_while] = ACTIONS(915), - [anon_sym_do] = ACTIONS(918), - [anon_sym_if] = ACTIONS(921), - [anon_sym_match] = ACTIONS(924), - [anon_sym_LBRACE] = ACTIONS(927), - [anon_sym_DOT_DOT] = ACTIONS(930), - [anon_sym_try] = ACTIONS(933), - [anon_sym_return] = ACTIONS(936), - [anon_sym_source] = ACTIONS(939), - [anon_sym_source_DASHenv] = ACTIONS(939), - [anon_sym_register] = ACTIONS(942), - [anon_sym_hide] = ACTIONS(945), - [anon_sym_hide_DASHenv] = ACTIONS(948), - [anon_sym_overlay] = ACTIONS(951), - [anon_sym_where] = ACTIONS(954), - [aux_sym_expr_unary_token1] = ACTIONS(957), - [anon_sym_DOT_DOT_EQ] = ACTIONS(960), - [anon_sym_DOT_DOT_LT] = ACTIONS(960), - [aux_sym__val_number_decimal_token1] = ACTIONS(963), - [aux_sym__val_number_decimal_token2] = ACTIONS(966), - [aux_sym__val_number_decimal_token3] = ACTIONS(969), - [aux_sym__val_number_decimal_token4] = ACTIONS(972), - [aux_sym__val_number_token1] = ACTIONS(975), - [aux_sym__val_number_token2] = ACTIONS(975), - [aux_sym__val_number_token3] = ACTIONS(975), - [anon_sym_0b] = ACTIONS(978), - [anon_sym_0o] = ACTIONS(981), - [anon_sym_0x] = ACTIONS(981), - [sym_val_date] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(987), - [sym__str_single_quotes] = ACTIONS(990), - [sym__str_back_ticks] = ACTIONS(990), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(993), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(996), - [aux_sym_env_var_token1] = ACTIONS(999), - [anon_sym_CARET] = ACTIONS(1002), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(123), }, [160] = { - [sym__block_body_statement] = STATE(5958), - [sym__declaration] = STATE(6090), - [sym_decl_alias] = STATE(6129), - [sym_stmt_let] = STATE(6177), - [sym_stmt_mut] = STATE(6177), - [sym_stmt_const] = STATE(6177), - [sym_assignment] = STATE(6177), - [sym__mutable_assignment_pattern] = STATE(6191), - [sym__statement] = STATE(6090), - [sym_pipeline] = STATE(6177), - [sym_cmd_identifier] = STATE(4514), - [sym_decl_def] = STATE(6129), - [sym_decl_export] = STATE(6129), - [sym_decl_extern] = STATE(6129), - [sym_decl_module] = STATE(6129), - [sym_decl_use] = STATE(6129), - [sym__ctrl_statement] = STATE(6177), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_for] = STATE(6230), - [sym_ctrl_loop] = STATE(6230), - [sym_ctrl_error] = STATE(6230), - [sym_ctrl_while] = STATE(6230), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_stmt_source] = STATE(6177), - [sym_stmt_register] = STATE(6177), - [sym__stmt_hide] = STATE(6177), - [sym_hide_mod] = STATE(6289), - [sym_hide_env] = STATE(6289), - [sym__stmt_overlay] = STATE(6177), - [sym_overlay_list] = STATE(6301), - [sym_overlay_hide] = STATE(6301), - [sym_overlay_new] = STATE(6301), - [sym_overlay_use] = STATE(6301), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1445), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym_val_variable] = STATE(1268), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1465), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym__block_body_statement] = STATE(6021), + [sym__declaration] = STATE(6260), + [sym_decl_alias] = STATE(6261), + [sym_stmt_let] = STATE(6262), + [sym_stmt_mut] = STATE(6262), + [sym_stmt_const] = STATE(6262), + [sym_assignment] = STATE(6262), + [sym__mutable_assignment_pattern] = STATE(6263), + [sym__statement] = STATE(6260), + [sym_pipeline] = STATE(6262), + [sym_cmd_identifier] = STATE(4616), + [sym_decl_def] = STATE(6261), + [sym_decl_export] = STATE(6261), + [sym_decl_extern] = STATE(6261), + [sym_decl_module] = STATE(6261), + [sym_decl_use] = STATE(6261), + [sym__ctrl_statement] = STATE(6262), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_stmt_source] = STATE(6262), + [sym_stmt_register] = STATE(6262), + [sym__stmt_hide] = STATE(6262), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(6262), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1922), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(1296), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1569), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(160), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym__block_body_repeat2] = STATE(157), - [aux_sym_pipe_element_repeat2] = STATE(411), - [anon_sym_export] = ACTIONS(357), - [anon_sym_alias] = ACTIONS(359), - [anon_sym_let] = ACTIONS(361), - [anon_sym_let_DASHenv] = ACTIONS(361), - [anon_sym_mut] = ACTIONS(363), - [anon_sym_const] = ACTIONS(365), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(367), - [aux_sym_cmd_identifier_token3] = ACTIONS(367), - [aux_sym_cmd_identifier_token4] = ACTIONS(367), - [aux_sym_cmd_identifier_token5] = ACTIONS(367), - [aux_sym_cmd_identifier_token6] = ACTIONS(367), - [aux_sym_cmd_identifier_token7] = ACTIONS(367), - [aux_sym_cmd_identifier_token8] = ACTIONS(367), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(367), - [aux_sym_cmd_identifier_token11] = ACTIONS(367), - [aux_sym_cmd_identifier_token12] = ACTIONS(367), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(367), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(367), - [aux_sym_cmd_identifier_token17] = ACTIONS(367), - [aux_sym_cmd_identifier_token18] = ACTIONS(367), - [aux_sym_cmd_identifier_token19] = ACTIONS(367), - [aux_sym_cmd_identifier_token20] = ACTIONS(367), - [aux_sym_cmd_identifier_token21] = ACTIONS(367), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), - [anon_sym_def] = ACTIONS(381), - [anon_sym_export_DASHenv] = ACTIONS(383), - [anon_sym_extern] = ACTIONS(385), - [anon_sym_module] = ACTIONS(387), - [anon_sym_use] = ACTIONS(389), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_error] = ACTIONS(395), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_for] = ACTIONS(403), - [anon_sym_loop] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_source] = ACTIONS(421), - [anon_sym_source_DASHenv] = ACTIONS(421), - [anon_sym_register] = ACTIONS(423), - [anon_sym_hide] = ACTIONS(425), - [anon_sym_hide_DASHenv] = ACTIONS(427), - [anon_sym_overlay] = ACTIONS(429), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym__block_body_repeat2] = STATE(156), + [aux_sym_pipe_element_repeat2] = STATE(361), + [anon_sym_export] = ACTIONS(361), + [anon_sym_alias] = ACTIONS(363), + [anon_sym_let] = ACTIONS(365), + [anon_sym_let_DASHenv] = ACTIONS(365), + [anon_sym_mut] = ACTIONS(367), + [anon_sym_const] = ACTIONS(369), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(375), + [anon_sym_false] = ACTIONS(375), + [anon_sym_null] = ACTIONS(377), + [aux_sym_cmd_identifier_token38] = ACTIONS(379), + [aux_sym_cmd_identifier_token39] = ACTIONS(381), + [aux_sym_cmd_identifier_token40] = ACTIONS(381), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_continue] = ACTIONS(405), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(435), + [aux_sym__val_number_decimal_token2] = ACTIONS(437), + [aux_sym__val_number_decimal_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token4] = ACTIONS(441), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [161] = { - [sym_cell_path] = STATE(172), - [sym_path] = STATE(169), + [sym__block_body_statement_parenthesized] = STATE(5930), + [sym__declaration_parenthesized] = STATE(7040), + [sym_decl_alias_parenthesized] = STATE(7072), + [sym_stmt_let_parenthesized] = STATE(7124), + [sym_stmt_mut_parenthesized] = STATE(7124), + [sym_stmt_const_parenthesized] = STATE(7124), + [sym_assignment_parenthesized] = STATE(7124), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), + [sym__statement_parenthesized] = STATE(7040), + [sym_pipeline_parenthesized] = STATE(7124), + [sym_cmd_identifier] = STATE(4817), + [sym_decl_def] = STATE(7072), + [sym_decl_export] = STATE(7072), + [sym_decl_extern] = STATE(7072), + [sym_decl_module] = STATE(7072), + [sym_decl_use] = STATE(7072), + [sym__ctrl_statement] = STATE(7124), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_stmt_source] = STATE(7124), + [sym_stmt_register] = STATE(7124), + [sym__stmt_hide] = STATE(7124), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(7124), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(1361), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), [sym_comment] = STATE(161), - [aux_sym_cell_path_repeat1] = STATE(162), - [anon_sym_export] = ACTIONS(1005), - [anon_sym_alias] = ACTIONS(1005), - [anon_sym_EQ] = ACTIONS(1005), - [anon_sym_let] = ACTIONS(1005), - [anon_sym_let_DASHenv] = ACTIONS(1005), - [anon_sym_mut] = ACTIONS(1005), - [anon_sym_const] = ACTIONS(1005), - [anon_sym_PLUS_EQ] = ACTIONS(1007), - [anon_sym_DASH_EQ] = ACTIONS(1007), - [anon_sym_STAR_EQ] = ACTIONS(1007), - [anon_sym_SLASH_EQ] = ACTIONS(1007), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1007), - [aux_sym_cmd_identifier_token1] = ACTIONS(1005), - [aux_sym_cmd_identifier_token2] = ACTIONS(1005), - [aux_sym_cmd_identifier_token3] = ACTIONS(1005), - [aux_sym_cmd_identifier_token4] = ACTIONS(1005), - [aux_sym_cmd_identifier_token5] = ACTIONS(1005), - [aux_sym_cmd_identifier_token6] = ACTIONS(1005), - [aux_sym_cmd_identifier_token7] = ACTIONS(1005), - [aux_sym_cmd_identifier_token8] = ACTIONS(1005), - [aux_sym_cmd_identifier_token9] = ACTIONS(1005), - [aux_sym_cmd_identifier_token10] = ACTIONS(1005), - [aux_sym_cmd_identifier_token11] = ACTIONS(1005), - [aux_sym_cmd_identifier_token12] = ACTIONS(1005), - [aux_sym_cmd_identifier_token13] = ACTIONS(1005), - [aux_sym_cmd_identifier_token14] = ACTIONS(1005), - [aux_sym_cmd_identifier_token15] = ACTIONS(1005), - [aux_sym_cmd_identifier_token16] = ACTIONS(1005), - [aux_sym_cmd_identifier_token17] = ACTIONS(1005), - [aux_sym_cmd_identifier_token18] = ACTIONS(1005), - [aux_sym_cmd_identifier_token19] = ACTIONS(1005), - [aux_sym_cmd_identifier_token20] = ACTIONS(1005), - [aux_sym_cmd_identifier_token21] = ACTIONS(1005), - [aux_sym_cmd_identifier_token22] = ACTIONS(1005), - [aux_sym_cmd_identifier_token23] = ACTIONS(1005), - [aux_sym_cmd_identifier_token24] = ACTIONS(1005), - [aux_sym_cmd_identifier_token25] = ACTIONS(1005), - [aux_sym_cmd_identifier_token26] = ACTIONS(1005), - [aux_sym_cmd_identifier_token27] = ACTIONS(1005), - [aux_sym_cmd_identifier_token28] = ACTIONS(1005), - [aux_sym_cmd_identifier_token29] = ACTIONS(1005), - [aux_sym_cmd_identifier_token30] = ACTIONS(1005), - [aux_sym_cmd_identifier_token31] = ACTIONS(1005), - [aux_sym_cmd_identifier_token32] = ACTIONS(1005), - [aux_sym_cmd_identifier_token33] = ACTIONS(1005), - [aux_sym_cmd_identifier_token34] = ACTIONS(1005), - [aux_sym_cmd_identifier_token35] = ACTIONS(1005), - [aux_sym_cmd_identifier_token36] = ACTIONS(1005), - [anon_sym_true] = ACTIONS(1007), - [anon_sym_false] = ACTIONS(1007), - [anon_sym_null] = ACTIONS(1007), - [aux_sym_cmd_identifier_token38] = ACTIONS(1005), - [aux_sym_cmd_identifier_token39] = ACTIONS(1007), - [aux_sym_cmd_identifier_token40] = ACTIONS(1007), - [sym__newline] = ACTIONS(1005), - [anon_sym_SEMI] = ACTIONS(1007), - [anon_sym_PIPE] = ACTIONS(1007), - [anon_sym_err_GT_PIPE] = ACTIONS(1007), - [anon_sym_out_GT_PIPE] = ACTIONS(1007), - [anon_sym_e_GT_PIPE] = ACTIONS(1007), - [anon_sym_o_GT_PIPE] = ACTIONS(1007), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1007), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1007), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1007), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1007), - [anon_sym_def] = ACTIONS(1005), - [anon_sym_export_DASHenv] = ACTIONS(1005), - [anon_sym_extern] = ACTIONS(1005), - [anon_sym_module] = ACTIONS(1005), - [anon_sym_use] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1007), - [anon_sym_COMMA] = ACTIONS(1007), - [anon_sym_DOLLAR] = ACTIONS(1007), - [anon_sym_error] = ACTIONS(1005), - [anon_sym_list] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_break] = ACTIONS(1005), - [anon_sym_continue] = ACTIONS(1005), - [anon_sym_for] = ACTIONS(1005), - [anon_sym_in] = ACTIONS(1005), - [anon_sym_loop] = ACTIONS(1005), - [anon_sym_make] = ACTIONS(1005), - [anon_sym_while] = ACTIONS(1005), - [anon_sym_do] = ACTIONS(1005), - [anon_sym_if] = ACTIONS(1005), - [anon_sym_else] = ACTIONS(1005), - [anon_sym_match] = ACTIONS(1005), - [anon_sym_RBRACE] = ACTIONS(1007), - [anon_sym_try] = ACTIONS(1005), - [anon_sym_catch] = ACTIONS(1005), - [anon_sym_return] = ACTIONS(1005), - [anon_sym_source] = ACTIONS(1005), - [anon_sym_source_DASHenv] = ACTIONS(1005), - [anon_sym_register] = ACTIONS(1005), - [anon_sym_hide] = ACTIONS(1005), - [anon_sym_hide_DASHenv] = ACTIONS(1005), - [anon_sym_overlay] = ACTIONS(1005), - [anon_sym_new] = ACTIONS(1005), - [anon_sym_as] = ACTIONS(1005), - [aux_sym_expr_binary_token1] = ACTIONS(1007), - [aux_sym_expr_binary_token2] = ACTIONS(1007), - [aux_sym_expr_binary_token3] = ACTIONS(1007), - [aux_sym_expr_binary_token4] = ACTIONS(1007), - [aux_sym_expr_binary_token5] = ACTIONS(1007), - [aux_sym_expr_binary_token6] = ACTIONS(1007), - [aux_sym_expr_binary_token7] = ACTIONS(1007), - [aux_sym_expr_binary_token8] = ACTIONS(1007), - [aux_sym_expr_binary_token9] = ACTIONS(1007), - [aux_sym_expr_binary_token10] = ACTIONS(1007), - [aux_sym_expr_binary_token11] = ACTIONS(1007), - [aux_sym_expr_binary_token12] = ACTIONS(1007), - [aux_sym_expr_binary_token13] = ACTIONS(1007), - [aux_sym_expr_binary_token14] = ACTIONS(1007), - [aux_sym_expr_binary_token15] = ACTIONS(1007), - [aux_sym_expr_binary_token16] = ACTIONS(1007), - [aux_sym_expr_binary_token17] = ACTIONS(1007), - [aux_sym_expr_binary_token18] = ACTIONS(1007), - [aux_sym_expr_binary_token19] = ACTIONS(1007), - [aux_sym_expr_binary_token20] = ACTIONS(1007), - [aux_sym_expr_binary_token21] = ACTIONS(1007), - [aux_sym_expr_binary_token22] = ACTIONS(1007), - [aux_sym_expr_binary_token23] = ACTIONS(1007), - [aux_sym_expr_binary_token24] = ACTIONS(1007), - [aux_sym_expr_binary_token25] = ACTIONS(1007), - [aux_sym_expr_binary_token26] = ACTIONS(1007), - [aux_sym_expr_binary_token27] = ACTIONS(1007), - [aux_sym_expr_binary_token28] = ACTIONS(1007), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1007), - [anon_sym_DOT_DOT2] = ACTIONS(1005), - [anon_sym_DOT] = ACTIONS(1009), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1007), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1007), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1007), - [aux_sym__val_number_decimal_token1] = ACTIONS(1005), - [aux_sym__val_number_decimal_token2] = ACTIONS(1007), - [aux_sym__val_number_decimal_token3] = ACTIONS(1007), - [aux_sym__val_number_decimal_token4] = ACTIONS(1007), - [aux_sym__val_number_token1] = ACTIONS(1007), - [aux_sym__val_number_token2] = ACTIONS(1007), - [aux_sym__val_number_token3] = ACTIONS(1007), - [anon_sym_DQUOTE] = ACTIONS(1007), - [sym__str_single_quotes] = ACTIONS(1007), - [sym__str_back_ticks] = ACTIONS(1007), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1007), - [aux_sym_record_entry_token1] = ACTIONS(1007), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_err_GT] = ACTIONS(1005), - [anon_sym_out_GT] = ACTIONS(1005), - [anon_sym_e_GT] = ACTIONS(1005), - [anon_sym_o_GT] = ACTIONS(1005), - [anon_sym_err_PLUSout_GT] = ACTIONS(1005), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1005), - [anon_sym_o_PLUSe_GT] = ACTIONS(1005), - [anon_sym_e_PLUSo_GT] = ACTIONS(1005), - [anon_sym_err_GT_GT] = ACTIONS(1007), - [anon_sym_out_GT_GT] = ACTIONS(1007), - [anon_sym_e_GT_GT] = ACTIONS(1007), - [anon_sym_o_GT_GT] = ACTIONS(1007), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1007), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1007), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1007), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1007), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym__parenthesized_body_repeat2] = STATE(162), + [anon_sym_export] = ACTIONS(457), + [anon_sym_alias] = ACTIONS(459), + [anon_sym_let] = ACTIONS(461), + [anon_sym_let_DASHenv] = ACTIONS(461), + [anon_sym_mut] = ACTIONS(463), + [anon_sym_const] = ACTIONS(465), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(371), + [aux_sym_cmd_identifier_token3] = ACTIONS(371), + [aux_sym_cmd_identifier_token4] = ACTIONS(371), + [aux_sym_cmd_identifier_token5] = ACTIONS(371), + [aux_sym_cmd_identifier_token6] = ACTIONS(371), + [aux_sym_cmd_identifier_token7] = ACTIONS(371), + [aux_sym_cmd_identifier_token8] = ACTIONS(371), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(371), + [aux_sym_cmd_identifier_token11] = ACTIONS(371), + [aux_sym_cmd_identifier_token12] = ACTIONS(371), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(371), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(371), + [aux_sym_cmd_identifier_token17] = ACTIONS(371), + [aux_sym_cmd_identifier_token18] = ACTIONS(371), + [aux_sym_cmd_identifier_token19] = ACTIONS(371), + [aux_sym_cmd_identifier_token20] = ACTIONS(371), + [aux_sym_cmd_identifier_token21] = ACTIONS(371), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [anon_sym_def] = ACTIONS(385), + [anon_sym_export_DASHenv] = ACTIONS(387), + [anon_sym_extern] = ACTIONS(389), + [anon_sym_module] = ACTIONS(391), + [anon_sym_use] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_error] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_for] = ACTIONS(407), + [anon_sym_loop] = ACTIONS(409), + [anon_sym_while] = ACTIONS(411), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_source] = ACTIONS(425), + [anon_sym_source_DASHenv] = ACTIONS(425), + [anon_sym_register] = ACTIONS(427), + [anon_sym_hide] = ACTIONS(429), + [anon_sym_hide_DASHenv] = ACTIONS(431), + [anon_sym_overlay] = ACTIONS(433), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [162] = { - [sym_path] = STATE(169), + [sym__block_body_statement_parenthesized] = STATE(6731), + [sym__declaration_parenthesized] = STATE(7040), + [sym_decl_alias_parenthesized] = STATE(7072), + [sym_stmt_let_parenthesized] = STATE(7124), + [sym_stmt_mut_parenthesized] = STATE(7124), + [sym_stmt_const_parenthesized] = STATE(7124), + [sym_assignment_parenthesized] = STATE(7124), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7125), + [sym__statement_parenthesized] = STATE(7040), + [sym_pipeline_parenthesized] = STATE(7124), + [sym_cmd_identifier] = STATE(4817), + [sym_decl_def] = STATE(7072), + [sym_decl_export] = STATE(7072), + [sym_decl_extern] = STATE(7072), + [sym_decl_module] = STATE(7072), + [sym_decl_use] = STATE(7072), + [sym__ctrl_statement] = STATE(7124), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_for] = STATE(6269), + [sym_ctrl_loop] = STATE(6269), + [sym_ctrl_error] = STATE(6269), + [sym_ctrl_while] = STATE(6269), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_stmt_source] = STATE(7124), + [sym_stmt_register] = STATE(7124), + [sym__stmt_hide] = STATE(7124), + [sym_hide_mod] = STATE(6273), + [sym_hide_env] = STATE(6273), + [sym__stmt_overlay] = STATE(7124), + [sym_overlay_list] = STATE(6274), + [sym_overlay_hide] = STATE(6274), + [sym_overlay_new] = STATE(6274), + [sym_overlay_use] = STATE(6274), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(1361), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), [sym_comment] = STATE(162), - [aux_sym_cell_path_repeat1] = STATE(163), - [anon_sym_export] = ACTIONS(1011), - [anon_sym_alias] = ACTIONS(1011), - [anon_sym_EQ] = ACTIONS(1011), - [anon_sym_let] = ACTIONS(1011), - [anon_sym_let_DASHenv] = ACTIONS(1011), - [anon_sym_mut] = ACTIONS(1011), - [anon_sym_const] = ACTIONS(1011), - [anon_sym_PLUS_EQ] = ACTIONS(1013), - [anon_sym_DASH_EQ] = ACTIONS(1013), - [anon_sym_STAR_EQ] = ACTIONS(1013), - [anon_sym_SLASH_EQ] = ACTIONS(1013), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1013), - [aux_sym_cmd_identifier_token1] = ACTIONS(1011), - [aux_sym_cmd_identifier_token2] = ACTIONS(1011), - [aux_sym_cmd_identifier_token3] = ACTIONS(1011), - [aux_sym_cmd_identifier_token4] = ACTIONS(1011), - [aux_sym_cmd_identifier_token5] = ACTIONS(1011), - [aux_sym_cmd_identifier_token6] = ACTIONS(1011), - [aux_sym_cmd_identifier_token7] = ACTIONS(1011), - [aux_sym_cmd_identifier_token8] = ACTIONS(1011), - [aux_sym_cmd_identifier_token9] = ACTIONS(1011), - [aux_sym_cmd_identifier_token10] = ACTIONS(1011), - [aux_sym_cmd_identifier_token11] = ACTIONS(1011), - [aux_sym_cmd_identifier_token12] = ACTIONS(1011), - [aux_sym_cmd_identifier_token13] = ACTIONS(1011), - [aux_sym_cmd_identifier_token14] = ACTIONS(1011), - [aux_sym_cmd_identifier_token15] = ACTIONS(1011), - [aux_sym_cmd_identifier_token16] = ACTIONS(1011), - [aux_sym_cmd_identifier_token17] = ACTIONS(1011), - [aux_sym_cmd_identifier_token18] = ACTIONS(1011), - [aux_sym_cmd_identifier_token19] = ACTIONS(1011), - [aux_sym_cmd_identifier_token20] = ACTIONS(1011), - [aux_sym_cmd_identifier_token21] = ACTIONS(1011), - [aux_sym_cmd_identifier_token22] = ACTIONS(1011), - [aux_sym_cmd_identifier_token23] = ACTIONS(1011), - [aux_sym_cmd_identifier_token24] = ACTIONS(1011), - [aux_sym_cmd_identifier_token25] = ACTIONS(1011), - [aux_sym_cmd_identifier_token26] = ACTIONS(1011), - [aux_sym_cmd_identifier_token27] = ACTIONS(1011), - [aux_sym_cmd_identifier_token28] = ACTIONS(1011), - [aux_sym_cmd_identifier_token29] = ACTIONS(1011), - [aux_sym_cmd_identifier_token30] = ACTIONS(1011), - [aux_sym_cmd_identifier_token31] = ACTIONS(1011), - [aux_sym_cmd_identifier_token32] = ACTIONS(1011), - [aux_sym_cmd_identifier_token33] = ACTIONS(1011), - [aux_sym_cmd_identifier_token34] = ACTIONS(1011), - [aux_sym_cmd_identifier_token35] = ACTIONS(1011), - [aux_sym_cmd_identifier_token36] = ACTIONS(1011), - [anon_sym_true] = ACTIONS(1013), - [anon_sym_false] = ACTIONS(1013), - [anon_sym_null] = ACTIONS(1013), - [aux_sym_cmd_identifier_token38] = ACTIONS(1011), - [aux_sym_cmd_identifier_token39] = ACTIONS(1013), - [aux_sym_cmd_identifier_token40] = ACTIONS(1013), - [sym__newline] = ACTIONS(1011), - [anon_sym_SEMI] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1013), - [anon_sym_err_GT_PIPE] = ACTIONS(1013), - [anon_sym_out_GT_PIPE] = ACTIONS(1013), - [anon_sym_e_GT_PIPE] = ACTIONS(1013), - [anon_sym_o_GT_PIPE] = ACTIONS(1013), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1013), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1013), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1013), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1013), - [anon_sym_def] = ACTIONS(1011), - [anon_sym_export_DASHenv] = ACTIONS(1011), - [anon_sym_extern] = ACTIONS(1011), - [anon_sym_module] = ACTIONS(1011), - [anon_sym_use] = ACTIONS(1011), - [anon_sym_LPAREN] = ACTIONS(1013), - [anon_sym_COMMA] = ACTIONS(1013), - [anon_sym_DOLLAR] = ACTIONS(1013), - [anon_sym_error] = ACTIONS(1011), - [anon_sym_list] = ACTIONS(1011), - [anon_sym_DASH] = ACTIONS(1011), - [anon_sym_break] = ACTIONS(1011), - [anon_sym_continue] = ACTIONS(1011), - [anon_sym_for] = ACTIONS(1011), - [anon_sym_in] = ACTIONS(1011), - [anon_sym_loop] = ACTIONS(1011), - [anon_sym_make] = ACTIONS(1011), - [anon_sym_while] = ACTIONS(1011), - [anon_sym_do] = ACTIONS(1011), - [anon_sym_if] = ACTIONS(1011), - [anon_sym_else] = ACTIONS(1011), - [anon_sym_match] = ACTIONS(1011), - [anon_sym_RBRACE] = ACTIONS(1013), - [anon_sym_try] = ACTIONS(1011), - [anon_sym_catch] = ACTIONS(1011), - [anon_sym_return] = ACTIONS(1011), - [anon_sym_source] = ACTIONS(1011), - [anon_sym_source_DASHenv] = ACTIONS(1011), - [anon_sym_register] = ACTIONS(1011), - [anon_sym_hide] = ACTIONS(1011), - [anon_sym_hide_DASHenv] = ACTIONS(1011), - [anon_sym_overlay] = ACTIONS(1011), - [anon_sym_new] = ACTIONS(1011), - [anon_sym_as] = ACTIONS(1011), - [aux_sym_expr_binary_token1] = ACTIONS(1013), - [aux_sym_expr_binary_token2] = ACTIONS(1013), - [aux_sym_expr_binary_token3] = ACTIONS(1013), - [aux_sym_expr_binary_token4] = ACTIONS(1013), - [aux_sym_expr_binary_token5] = ACTIONS(1013), - [aux_sym_expr_binary_token6] = ACTIONS(1013), - [aux_sym_expr_binary_token7] = ACTIONS(1013), - [aux_sym_expr_binary_token8] = ACTIONS(1013), - [aux_sym_expr_binary_token9] = ACTIONS(1013), - [aux_sym_expr_binary_token10] = ACTIONS(1013), - [aux_sym_expr_binary_token11] = ACTIONS(1013), - [aux_sym_expr_binary_token12] = ACTIONS(1013), - [aux_sym_expr_binary_token13] = ACTIONS(1013), - [aux_sym_expr_binary_token14] = ACTIONS(1013), - [aux_sym_expr_binary_token15] = ACTIONS(1013), - [aux_sym_expr_binary_token16] = ACTIONS(1013), - [aux_sym_expr_binary_token17] = ACTIONS(1013), - [aux_sym_expr_binary_token18] = ACTIONS(1013), - [aux_sym_expr_binary_token19] = ACTIONS(1013), - [aux_sym_expr_binary_token20] = ACTIONS(1013), - [aux_sym_expr_binary_token21] = ACTIONS(1013), - [aux_sym_expr_binary_token22] = ACTIONS(1013), - [aux_sym_expr_binary_token23] = ACTIONS(1013), - [aux_sym_expr_binary_token24] = ACTIONS(1013), - [aux_sym_expr_binary_token25] = ACTIONS(1013), - [aux_sym_expr_binary_token26] = ACTIONS(1013), - [aux_sym_expr_binary_token27] = ACTIONS(1013), - [aux_sym_expr_binary_token28] = ACTIONS(1013), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1013), - [anon_sym_DOT_DOT2] = ACTIONS(1011), - [anon_sym_DOT] = ACTIONS(1009), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1013), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1013), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1013), - [aux_sym__val_number_decimal_token1] = ACTIONS(1011), - [aux_sym__val_number_decimal_token2] = ACTIONS(1013), - [aux_sym__val_number_decimal_token3] = ACTIONS(1013), - [aux_sym__val_number_decimal_token4] = ACTIONS(1013), - [aux_sym__val_number_token1] = ACTIONS(1013), - [aux_sym__val_number_token2] = ACTIONS(1013), - [aux_sym__val_number_token3] = ACTIONS(1013), - [anon_sym_DQUOTE] = ACTIONS(1013), - [sym__str_single_quotes] = ACTIONS(1013), - [sym__str_back_ticks] = ACTIONS(1013), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1013), - [aux_sym_record_entry_token1] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(1011), - [anon_sym_err_GT] = ACTIONS(1011), - [anon_sym_out_GT] = ACTIONS(1011), - [anon_sym_e_GT] = ACTIONS(1011), - [anon_sym_o_GT] = ACTIONS(1011), - [anon_sym_err_PLUSout_GT] = ACTIONS(1011), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1011), - [anon_sym_o_PLUSe_GT] = ACTIONS(1011), - [anon_sym_e_PLUSo_GT] = ACTIONS(1011), - [anon_sym_err_GT_GT] = ACTIONS(1013), - [anon_sym_out_GT_GT] = ACTIONS(1013), - [anon_sym_e_GT_GT] = ACTIONS(1013), - [anon_sym_o_GT_GT] = ACTIONS(1013), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1013), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1013), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1013), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1013), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym__parenthesized_body_repeat2] = STATE(162), + [anon_sym_export] = ACTIONS(853), + [anon_sym_alias] = ACTIONS(856), + [anon_sym_let] = ACTIONS(859), + [anon_sym_let_DASHenv] = ACTIONS(859), + [anon_sym_mut] = ACTIONS(862), + [anon_sym_const] = ACTIONS(865), + [aux_sym_cmd_identifier_token1] = ACTIONS(868), + [aux_sym_cmd_identifier_token2] = ACTIONS(868), + [aux_sym_cmd_identifier_token3] = ACTIONS(868), + [aux_sym_cmd_identifier_token4] = ACTIONS(868), + [aux_sym_cmd_identifier_token5] = ACTIONS(868), + [aux_sym_cmd_identifier_token6] = ACTIONS(868), + [aux_sym_cmd_identifier_token7] = ACTIONS(868), + [aux_sym_cmd_identifier_token8] = ACTIONS(868), + [aux_sym_cmd_identifier_token9] = ACTIONS(868), + [aux_sym_cmd_identifier_token10] = ACTIONS(868), + [aux_sym_cmd_identifier_token11] = ACTIONS(868), + [aux_sym_cmd_identifier_token12] = ACTIONS(868), + [aux_sym_cmd_identifier_token13] = ACTIONS(868), + [aux_sym_cmd_identifier_token14] = ACTIONS(868), + [aux_sym_cmd_identifier_token15] = ACTIONS(868), + [aux_sym_cmd_identifier_token16] = ACTIONS(868), + [aux_sym_cmd_identifier_token17] = ACTIONS(868), + [aux_sym_cmd_identifier_token18] = ACTIONS(868), + [aux_sym_cmd_identifier_token19] = ACTIONS(868), + [aux_sym_cmd_identifier_token20] = ACTIONS(868), + [aux_sym_cmd_identifier_token21] = ACTIONS(868), + [aux_sym_cmd_identifier_token22] = ACTIONS(868), + [aux_sym_cmd_identifier_token23] = ACTIONS(868), + [aux_sym_cmd_identifier_token24] = ACTIONS(871), + [aux_sym_cmd_identifier_token25] = ACTIONS(868), + [aux_sym_cmd_identifier_token26] = ACTIONS(871), + [aux_sym_cmd_identifier_token27] = ACTIONS(868), + [aux_sym_cmd_identifier_token28] = ACTIONS(868), + [aux_sym_cmd_identifier_token29] = ACTIONS(868), + [aux_sym_cmd_identifier_token30] = ACTIONS(868), + [aux_sym_cmd_identifier_token31] = ACTIONS(871), + [aux_sym_cmd_identifier_token32] = ACTIONS(871), + [aux_sym_cmd_identifier_token33] = ACTIONS(871), + [aux_sym_cmd_identifier_token34] = ACTIONS(871), + [aux_sym_cmd_identifier_token35] = ACTIONS(871), + [aux_sym_cmd_identifier_token36] = ACTIONS(868), + [anon_sym_true] = ACTIONS(874), + [anon_sym_false] = ACTIONS(874), + [anon_sym_null] = ACTIONS(877), + [aux_sym_cmd_identifier_token38] = ACTIONS(880), + [aux_sym_cmd_identifier_token39] = ACTIONS(883), + [aux_sym_cmd_identifier_token40] = ACTIONS(883), + [anon_sym_def] = ACTIONS(886), + [anon_sym_export_DASHenv] = ACTIONS(889), + [anon_sym_extern] = ACTIONS(892), + [anon_sym_module] = ACTIONS(895), + [anon_sym_use] = ACTIONS(898), + [anon_sym_LBRACK] = ACTIONS(901), + [anon_sym_LPAREN] = ACTIONS(904), + [anon_sym_DOLLAR] = ACTIONS(907), + [anon_sym_error] = ACTIONS(910), + [anon_sym_DASH] = ACTIONS(913), + [anon_sym_break] = ACTIONS(916), + [anon_sym_continue] = ACTIONS(919), + [anon_sym_for] = ACTIONS(922), + [anon_sym_loop] = ACTIONS(925), + [anon_sym_while] = ACTIONS(928), + [anon_sym_do] = ACTIONS(931), + [anon_sym_if] = ACTIONS(934), + [anon_sym_match] = ACTIONS(937), + [anon_sym_LBRACE] = ACTIONS(940), + [anon_sym_DOT_DOT] = ACTIONS(943), + [anon_sym_try] = ACTIONS(946), + [anon_sym_return] = ACTIONS(949), + [anon_sym_source] = ACTIONS(952), + [anon_sym_source_DASHenv] = ACTIONS(952), + [anon_sym_register] = ACTIONS(955), + [anon_sym_hide] = ACTIONS(958), + [anon_sym_hide_DASHenv] = ACTIONS(961), + [anon_sym_overlay] = ACTIONS(964), + [anon_sym_where] = ACTIONS(967), + [aux_sym_expr_unary_token1] = ACTIONS(970), + [anon_sym_DOT_DOT_EQ] = ACTIONS(973), + [anon_sym_DOT_DOT_LT] = ACTIONS(973), + [aux_sym__val_number_decimal_token1] = ACTIONS(976), + [aux_sym__val_number_decimal_token2] = ACTIONS(979), + [aux_sym__val_number_decimal_token3] = ACTIONS(982), + [aux_sym__val_number_decimal_token4] = ACTIONS(985), + [aux_sym__val_number_token1] = ACTIONS(988), + [aux_sym__val_number_token2] = ACTIONS(988), + [aux_sym__val_number_token3] = ACTIONS(988), + [anon_sym_0b] = ACTIONS(991), + [anon_sym_0o] = ACTIONS(994), + [anon_sym_0x] = ACTIONS(994), + [sym_val_date] = ACTIONS(997), + [anon_sym_DQUOTE] = ACTIONS(1000), + [sym__str_single_quotes] = ACTIONS(1003), + [sym__str_back_ticks] = ACTIONS(1003), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1006), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1009), + [aux_sym_env_var_token1] = ACTIONS(1012), + [anon_sym_CARET] = ACTIONS(1015), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1018), }, [163] = { - [sym_path] = STATE(169), + [sym_cell_path] = STATE(175), + [sym_path] = STATE(174), [sym_comment] = STATE(163), - [aux_sym_cell_path_repeat1] = STATE(163), - [anon_sym_export] = ACTIONS(1015), - [anon_sym_alias] = ACTIONS(1015), - [anon_sym_EQ] = ACTIONS(1015), - [anon_sym_let] = ACTIONS(1015), - [anon_sym_let_DASHenv] = ACTIONS(1015), - [anon_sym_mut] = ACTIONS(1015), - [anon_sym_const] = ACTIONS(1015), - [anon_sym_PLUS_EQ] = ACTIONS(1017), - [anon_sym_DASH_EQ] = ACTIONS(1017), - [anon_sym_STAR_EQ] = ACTIONS(1017), - [anon_sym_SLASH_EQ] = ACTIONS(1017), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1017), - [aux_sym_cmd_identifier_token1] = ACTIONS(1015), - [aux_sym_cmd_identifier_token2] = ACTIONS(1015), - [aux_sym_cmd_identifier_token3] = ACTIONS(1015), - [aux_sym_cmd_identifier_token4] = ACTIONS(1015), - [aux_sym_cmd_identifier_token5] = ACTIONS(1015), - [aux_sym_cmd_identifier_token6] = ACTIONS(1015), - [aux_sym_cmd_identifier_token7] = ACTIONS(1015), - [aux_sym_cmd_identifier_token8] = ACTIONS(1015), - [aux_sym_cmd_identifier_token9] = ACTIONS(1015), - [aux_sym_cmd_identifier_token10] = ACTIONS(1015), - [aux_sym_cmd_identifier_token11] = ACTIONS(1015), - [aux_sym_cmd_identifier_token12] = ACTIONS(1015), - [aux_sym_cmd_identifier_token13] = ACTIONS(1015), - [aux_sym_cmd_identifier_token14] = ACTIONS(1015), - [aux_sym_cmd_identifier_token15] = ACTIONS(1015), - [aux_sym_cmd_identifier_token16] = ACTIONS(1015), - [aux_sym_cmd_identifier_token17] = ACTIONS(1015), - [aux_sym_cmd_identifier_token18] = ACTIONS(1015), - [aux_sym_cmd_identifier_token19] = ACTIONS(1015), - [aux_sym_cmd_identifier_token20] = ACTIONS(1015), - [aux_sym_cmd_identifier_token21] = ACTIONS(1015), - [aux_sym_cmd_identifier_token22] = ACTIONS(1015), - [aux_sym_cmd_identifier_token23] = ACTIONS(1015), - [aux_sym_cmd_identifier_token24] = ACTIONS(1015), - [aux_sym_cmd_identifier_token25] = ACTIONS(1015), - [aux_sym_cmd_identifier_token26] = ACTIONS(1015), - [aux_sym_cmd_identifier_token27] = ACTIONS(1015), - [aux_sym_cmd_identifier_token28] = ACTIONS(1015), - [aux_sym_cmd_identifier_token29] = ACTIONS(1015), - [aux_sym_cmd_identifier_token30] = ACTIONS(1015), - [aux_sym_cmd_identifier_token31] = ACTIONS(1015), - [aux_sym_cmd_identifier_token32] = ACTIONS(1015), - [aux_sym_cmd_identifier_token33] = ACTIONS(1015), - [aux_sym_cmd_identifier_token34] = ACTIONS(1015), - [aux_sym_cmd_identifier_token35] = ACTIONS(1015), - [aux_sym_cmd_identifier_token36] = ACTIONS(1015), - [anon_sym_true] = ACTIONS(1017), - [anon_sym_false] = ACTIONS(1017), - [anon_sym_null] = ACTIONS(1017), - [aux_sym_cmd_identifier_token38] = ACTIONS(1015), - [aux_sym_cmd_identifier_token39] = ACTIONS(1017), - [aux_sym_cmd_identifier_token40] = ACTIONS(1017), - [sym__newline] = ACTIONS(1015), - [anon_sym_SEMI] = ACTIONS(1017), - [anon_sym_PIPE] = ACTIONS(1017), - [anon_sym_err_GT_PIPE] = ACTIONS(1017), - [anon_sym_out_GT_PIPE] = ACTIONS(1017), - [anon_sym_e_GT_PIPE] = ACTIONS(1017), - [anon_sym_o_GT_PIPE] = ACTIONS(1017), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1017), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1017), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1017), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1017), - [anon_sym_def] = ACTIONS(1015), - [anon_sym_export_DASHenv] = ACTIONS(1015), - [anon_sym_extern] = ACTIONS(1015), - [anon_sym_module] = ACTIONS(1015), - [anon_sym_use] = ACTIONS(1015), - [anon_sym_LPAREN] = ACTIONS(1017), - [anon_sym_COMMA] = ACTIONS(1017), - [anon_sym_DOLLAR] = ACTIONS(1017), - [anon_sym_error] = ACTIONS(1015), - [anon_sym_list] = ACTIONS(1015), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_break] = ACTIONS(1015), - [anon_sym_continue] = ACTIONS(1015), - [anon_sym_for] = ACTIONS(1015), - [anon_sym_in] = ACTIONS(1015), - [anon_sym_loop] = ACTIONS(1015), - [anon_sym_make] = ACTIONS(1015), - [anon_sym_while] = ACTIONS(1015), - [anon_sym_do] = ACTIONS(1015), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_else] = ACTIONS(1015), - [anon_sym_match] = ACTIONS(1015), - [anon_sym_RBRACE] = ACTIONS(1017), - [anon_sym_try] = ACTIONS(1015), - [anon_sym_catch] = ACTIONS(1015), - [anon_sym_return] = ACTIONS(1015), - [anon_sym_source] = ACTIONS(1015), - [anon_sym_source_DASHenv] = ACTIONS(1015), - [anon_sym_register] = ACTIONS(1015), - [anon_sym_hide] = ACTIONS(1015), - [anon_sym_hide_DASHenv] = ACTIONS(1015), - [anon_sym_overlay] = ACTIONS(1015), - [anon_sym_new] = ACTIONS(1015), - [anon_sym_as] = ACTIONS(1015), - [aux_sym_expr_binary_token1] = ACTIONS(1017), - [aux_sym_expr_binary_token2] = ACTIONS(1017), - [aux_sym_expr_binary_token3] = ACTIONS(1017), - [aux_sym_expr_binary_token4] = ACTIONS(1017), - [aux_sym_expr_binary_token5] = ACTIONS(1017), - [aux_sym_expr_binary_token6] = ACTIONS(1017), - [aux_sym_expr_binary_token7] = ACTIONS(1017), - [aux_sym_expr_binary_token8] = ACTIONS(1017), - [aux_sym_expr_binary_token9] = ACTIONS(1017), - [aux_sym_expr_binary_token10] = ACTIONS(1017), - [aux_sym_expr_binary_token11] = ACTIONS(1017), - [aux_sym_expr_binary_token12] = ACTIONS(1017), - [aux_sym_expr_binary_token13] = ACTIONS(1017), - [aux_sym_expr_binary_token14] = ACTIONS(1017), - [aux_sym_expr_binary_token15] = ACTIONS(1017), - [aux_sym_expr_binary_token16] = ACTIONS(1017), - [aux_sym_expr_binary_token17] = ACTIONS(1017), - [aux_sym_expr_binary_token18] = ACTIONS(1017), - [aux_sym_expr_binary_token19] = ACTIONS(1017), - [aux_sym_expr_binary_token20] = ACTIONS(1017), - [aux_sym_expr_binary_token21] = ACTIONS(1017), - [aux_sym_expr_binary_token22] = ACTIONS(1017), - [aux_sym_expr_binary_token23] = ACTIONS(1017), - [aux_sym_expr_binary_token24] = ACTIONS(1017), - [aux_sym_expr_binary_token25] = ACTIONS(1017), - [aux_sym_expr_binary_token26] = ACTIONS(1017), - [aux_sym_expr_binary_token27] = ACTIONS(1017), - [aux_sym_expr_binary_token28] = ACTIONS(1017), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1017), - [anon_sym_DOT_DOT2] = ACTIONS(1015), - [anon_sym_DOT] = ACTIONS(1019), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1017), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1017), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1017), - [aux_sym__val_number_decimal_token1] = ACTIONS(1015), - [aux_sym__val_number_decimal_token2] = ACTIONS(1017), - [aux_sym__val_number_decimal_token3] = ACTIONS(1017), - [aux_sym__val_number_decimal_token4] = ACTIONS(1017), - [aux_sym__val_number_token1] = ACTIONS(1017), - [aux_sym__val_number_token2] = ACTIONS(1017), - [aux_sym__val_number_token3] = ACTIONS(1017), - [anon_sym_DQUOTE] = ACTIONS(1017), - [sym__str_single_quotes] = ACTIONS(1017), - [sym__str_back_ticks] = ACTIONS(1017), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1017), - [aux_sym_record_entry_token1] = ACTIONS(1017), - [anon_sym_PLUS] = ACTIONS(1015), - [anon_sym_err_GT] = ACTIONS(1015), - [anon_sym_out_GT] = ACTIONS(1015), - [anon_sym_e_GT] = ACTIONS(1015), - [anon_sym_o_GT] = ACTIONS(1015), - [anon_sym_err_PLUSout_GT] = ACTIONS(1015), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1015), - [anon_sym_o_PLUSe_GT] = ACTIONS(1015), - [anon_sym_e_PLUSo_GT] = ACTIONS(1015), - [anon_sym_err_GT_GT] = ACTIONS(1017), - [anon_sym_out_GT_GT] = ACTIONS(1017), - [anon_sym_e_GT_GT] = ACTIONS(1017), - [anon_sym_o_GT_GT] = ACTIONS(1017), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1017), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1017), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1017), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1017), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(164), + [anon_sym_export] = ACTIONS(1021), + [anon_sym_alias] = ACTIONS(1021), + [anon_sym_EQ] = ACTIONS(1021), + [anon_sym_let] = ACTIONS(1021), + [anon_sym_let_DASHenv] = ACTIONS(1021), + [anon_sym_mut] = ACTIONS(1021), + [anon_sym_const] = ACTIONS(1021), + [anon_sym_PLUS_EQ] = ACTIONS(1023), + [anon_sym_DASH_EQ] = ACTIONS(1023), + [anon_sym_STAR_EQ] = ACTIONS(1023), + [anon_sym_SLASH_EQ] = ACTIONS(1023), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1023), + [aux_sym_cmd_identifier_token1] = ACTIONS(1021), + [aux_sym_cmd_identifier_token2] = ACTIONS(1021), + [aux_sym_cmd_identifier_token3] = ACTIONS(1021), + [aux_sym_cmd_identifier_token4] = ACTIONS(1021), + [aux_sym_cmd_identifier_token5] = ACTIONS(1021), + [aux_sym_cmd_identifier_token6] = ACTIONS(1021), + [aux_sym_cmd_identifier_token7] = ACTIONS(1021), + [aux_sym_cmd_identifier_token8] = ACTIONS(1021), + [aux_sym_cmd_identifier_token9] = ACTIONS(1021), + [aux_sym_cmd_identifier_token10] = ACTIONS(1021), + [aux_sym_cmd_identifier_token11] = ACTIONS(1021), + [aux_sym_cmd_identifier_token12] = ACTIONS(1021), + [aux_sym_cmd_identifier_token13] = ACTIONS(1021), + [aux_sym_cmd_identifier_token14] = ACTIONS(1021), + [aux_sym_cmd_identifier_token15] = ACTIONS(1021), + [aux_sym_cmd_identifier_token16] = ACTIONS(1021), + [aux_sym_cmd_identifier_token17] = ACTIONS(1021), + [aux_sym_cmd_identifier_token18] = ACTIONS(1021), + [aux_sym_cmd_identifier_token19] = ACTIONS(1021), + [aux_sym_cmd_identifier_token20] = ACTIONS(1021), + [aux_sym_cmd_identifier_token21] = ACTIONS(1021), + [aux_sym_cmd_identifier_token22] = ACTIONS(1021), + [aux_sym_cmd_identifier_token23] = ACTIONS(1021), + [aux_sym_cmd_identifier_token24] = ACTIONS(1021), + [aux_sym_cmd_identifier_token25] = ACTIONS(1021), + [aux_sym_cmd_identifier_token26] = ACTIONS(1021), + [aux_sym_cmd_identifier_token27] = ACTIONS(1021), + [aux_sym_cmd_identifier_token28] = ACTIONS(1021), + [aux_sym_cmd_identifier_token29] = ACTIONS(1021), + [aux_sym_cmd_identifier_token30] = ACTIONS(1021), + [aux_sym_cmd_identifier_token31] = ACTIONS(1021), + [aux_sym_cmd_identifier_token32] = ACTIONS(1021), + [aux_sym_cmd_identifier_token33] = ACTIONS(1021), + [aux_sym_cmd_identifier_token34] = ACTIONS(1021), + [aux_sym_cmd_identifier_token35] = ACTIONS(1021), + [aux_sym_cmd_identifier_token36] = ACTIONS(1021), + [anon_sym_true] = ACTIONS(1023), + [anon_sym_false] = ACTIONS(1023), + [anon_sym_null] = ACTIONS(1023), + [aux_sym_cmd_identifier_token38] = ACTIONS(1021), + [aux_sym_cmd_identifier_token39] = ACTIONS(1023), + [aux_sym_cmd_identifier_token40] = ACTIONS(1023), + [sym__newline] = ACTIONS(1021), + [anon_sym_SEMI] = ACTIONS(1023), + [anon_sym_PIPE] = ACTIONS(1023), + [anon_sym_err_GT_PIPE] = ACTIONS(1023), + [anon_sym_out_GT_PIPE] = ACTIONS(1023), + [anon_sym_e_GT_PIPE] = ACTIONS(1023), + [anon_sym_o_GT_PIPE] = ACTIONS(1023), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1023), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1023), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1023), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1023), + [anon_sym_def] = ACTIONS(1021), + [anon_sym_export_DASHenv] = ACTIONS(1021), + [anon_sym_extern] = ACTIONS(1021), + [anon_sym_module] = ACTIONS(1021), + [anon_sym_use] = ACTIONS(1021), + [anon_sym_LPAREN] = ACTIONS(1023), + [anon_sym_COMMA] = ACTIONS(1023), + [anon_sym_DOLLAR] = ACTIONS(1023), + [anon_sym_error] = ACTIONS(1021), + [anon_sym_list] = ACTIONS(1021), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_break] = ACTIONS(1021), + [anon_sym_continue] = ACTIONS(1021), + [anon_sym_for] = ACTIONS(1021), + [anon_sym_in] = ACTIONS(1021), + [anon_sym_loop] = ACTIONS(1021), + [anon_sym_make] = ACTIONS(1021), + [anon_sym_while] = ACTIONS(1021), + [anon_sym_do] = ACTIONS(1021), + [anon_sym_if] = ACTIONS(1021), + [anon_sym_else] = ACTIONS(1021), + [anon_sym_match] = ACTIONS(1021), + [anon_sym_RBRACE] = ACTIONS(1023), + [anon_sym_try] = ACTIONS(1021), + [anon_sym_catch] = ACTIONS(1021), + [anon_sym_return] = ACTIONS(1021), + [anon_sym_source] = ACTIONS(1021), + [anon_sym_source_DASHenv] = ACTIONS(1021), + [anon_sym_register] = ACTIONS(1021), + [anon_sym_hide] = ACTIONS(1021), + [anon_sym_hide_DASHenv] = ACTIONS(1021), + [anon_sym_overlay] = ACTIONS(1021), + [anon_sym_new] = ACTIONS(1021), + [anon_sym_as] = ACTIONS(1021), + [aux_sym_expr_binary_token1] = ACTIONS(1023), + [aux_sym_expr_binary_token2] = ACTIONS(1023), + [aux_sym_expr_binary_token3] = ACTIONS(1023), + [aux_sym_expr_binary_token4] = ACTIONS(1023), + [aux_sym_expr_binary_token5] = ACTIONS(1023), + [aux_sym_expr_binary_token6] = ACTIONS(1023), + [aux_sym_expr_binary_token7] = ACTIONS(1023), + [aux_sym_expr_binary_token8] = ACTIONS(1023), + [aux_sym_expr_binary_token9] = ACTIONS(1023), + [aux_sym_expr_binary_token10] = ACTIONS(1023), + [aux_sym_expr_binary_token11] = ACTIONS(1023), + [aux_sym_expr_binary_token12] = ACTIONS(1023), + [aux_sym_expr_binary_token13] = ACTIONS(1023), + [aux_sym_expr_binary_token14] = ACTIONS(1023), + [aux_sym_expr_binary_token15] = ACTIONS(1023), + [aux_sym_expr_binary_token16] = ACTIONS(1023), + [aux_sym_expr_binary_token17] = ACTIONS(1023), + [aux_sym_expr_binary_token18] = ACTIONS(1023), + [aux_sym_expr_binary_token19] = ACTIONS(1023), + [aux_sym_expr_binary_token20] = ACTIONS(1023), + [aux_sym_expr_binary_token21] = ACTIONS(1023), + [aux_sym_expr_binary_token22] = ACTIONS(1023), + [aux_sym_expr_binary_token23] = ACTIONS(1023), + [aux_sym_expr_binary_token24] = ACTIONS(1023), + [aux_sym_expr_binary_token25] = ACTIONS(1023), + [aux_sym_expr_binary_token26] = ACTIONS(1023), + [aux_sym_expr_binary_token27] = ACTIONS(1023), + [aux_sym_expr_binary_token28] = ACTIONS(1023), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1023), + [anon_sym_DOT_DOT2] = ACTIONS(1021), + [anon_sym_DOT] = ACTIONS(1025), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1023), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1023), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1023), + [aux_sym__val_number_decimal_token1] = ACTIONS(1021), + [aux_sym__val_number_decimal_token2] = ACTIONS(1023), + [aux_sym__val_number_decimal_token3] = ACTIONS(1023), + [aux_sym__val_number_decimal_token4] = ACTIONS(1023), + [aux_sym__val_number_token1] = ACTIONS(1023), + [aux_sym__val_number_token2] = ACTIONS(1023), + [aux_sym__val_number_token3] = ACTIONS(1023), + [anon_sym_DQUOTE] = ACTIONS(1023), + [sym__str_single_quotes] = ACTIONS(1023), + [sym__str_back_ticks] = ACTIONS(1023), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1023), + [aux_sym_record_entry_token1] = ACTIONS(1023), + [anon_sym_PLUS] = ACTIONS(1021), + [anon_sym_err_GT] = ACTIONS(1021), + [anon_sym_out_GT] = ACTIONS(1021), + [anon_sym_e_GT] = ACTIONS(1021), + [anon_sym_o_GT] = ACTIONS(1021), + [anon_sym_err_PLUSout_GT] = ACTIONS(1021), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1021), + [anon_sym_o_PLUSe_GT] = ACTIONS(1021), + [anon_sym_e_PLUSo_GT] = ACTIONS(1021), + [anon_sym_err_GT_GT] = ACTIONS(1023), + [anon_sym_out_GT_GT] = ACTIONS(1023), + [anon_sym_e_GT_GT] = ACTIONS(1023), + [anon_sym_o_GT_GT] = ACTIONS(1023), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1023), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1023), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1023), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1023), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1023), }, [164] = { + [sym_path] = STATE(174), [sym_comment] = STATE(164), - [anon_sym_export] = ACTIONS(1022), - [anon_sym_alias] = ACTIONS(1022), - [anon_sym_EQ] = ACTIONS(1022), - [anon_sym_let] = ACTIONS(1022), - [anon_sym_let_DASHenv] = ACTIONS(1022), - [anon_sym_mut] = ACTIONS(1022), - [anon_sym_const] = ACTIONS(1022), - [anon_sym_PLUS_EQ] = ACTIONS(1024), - [anon_sym_DASH_EQ] = ACTIONS(1024), - [anon_sym_STAR_EQ] = ACTIONS(1024), - [anon_sym_SLASH_EQ] = ACTIONS(1024), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1024), - [aux_sym_cmd_identifier_token1] = ACTIONS(1022), - [aux_sym_cmd_identifier_token2] = ACTIONS(1022), - [aux_sym_cmd_identifier_token3] = ACTIONS(1022), - [aux_sym_cmd_identifier_token4] = ACTIONS(1022), - [aux_sym_cmd_identifier_token5] = ACTIONS(1022), - [aux_sym_cmd_identifier_token6] = ACTIONS(1022), - [aux_sym_cmd_identifier_token7] = ACTIONS(1022), - [aux_sym_cmd_identifier_token8] = ACTIONS(1022), - [aux_sym_cmd_identifier_token9] = ACTIONS(1022), - [aux_sym_cmd_identifier_token10] = ACTIONS(1022), - [aux_sym_cmd_identifier_token11] = ACTIONS(1022), - [aux_sym_cmd_identifier_token12] = ACTIONS(1022), - [aux_sym_cmd_identifier_token13] = ACTIONS(1022), - [aux_sym_cmd_identifier_token14] = ACTIONS(1022), - [aux_sym_cmd_identifier_token15] = ACTIONS(1022), - [aux_sym_cmd_identifier_token16] = ACTIONS(1022), - [aux_sym_cmd_identifier_token17] = ACTIONS(1022), - [aux_sym_cmd_identifier_token18] = ACTIONS(1022), - [aux_sym_cmd_identifier_token19] = ACTIONS(1022), - [aux_sym_cmd_identifier_token20] = ACTIONS(1022), - [aux_sym_cmd_identifier_token21] = ACTIONS(1022), - [aux_sym_cmd_identifier_token22] = ACTIONS(1022), - [aux_sym_cmd_identifier_token23] = ACTIONS(1022), - [aux_sym_cmd_identifier_token24] = ACTIONS(1022), - [aux_sym_cmd_identifier_token25] = ACTIONS(1022), - [aux_sym_cmd_identifier_token26] = ACTIONS(1022), - [aux_sym_cmd_identifier_token27] = ACTIONS(1022), - [aux_sym_cmd_identifier_token28] = ACTIONS(1022), - [aux_sym_cmd_identifier_token29] = ACTIONS(1022), - [aux_sym_cmd_identifier_token30] = ACTIONS(1022), - [aux_sym_cmd_identifier_token31] = ACTIONS(1022), - [aux_sym_cmd_identifier_token32] = ACTIONS(1022), - [aux_sym_cmd_identifier_token33] = ACTIONS(1022), - [aux_sym_cmd_identifier_token34] = ACTIONS(1022), - [aux_sym_cmd_identifier_token35] = ACTIONS(1022), - [aux_sym_cmd_identifier_token36] = ACTIONS(1022), - [anon_sym_true] = ACTIONS(1024), - [anon_sym_false] = ACTIONS(1024), - [anon_sym_null] = ACTIONS(1024), - [aux_sym_cmd_identifier_token38] = ACTIONS(1022), - [aux_sym_cmd_identifier_token39] = ACTIONS(1024), - [aux_sym_cmd_identifier_token40] = ACTIONS(1024), - [sym__newline] = ACTIONS(1022), - [anon_sym_SEMI] = ACTIONS(1024), - [anon_sym_PIPE] = ACTIONS(1024), - [anon_sym_err_GT_PIPE] = ACTIONS(1024), - [anon_sym_out_GT_PIPE] = ACTIONS(1024), - [anon_sym_e_GT_PIPE] = ACTIONS(1024), - [anon_sym_o_GT_PIPE] = ACTIONS(1024), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1024), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1024), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1024), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1024), - [anon_sym_def] = ACTIONS(1022), - [anon_sym_export_DASHenv] = ACTIONS(1022), - [anon_sym_extern] = ACTIONS(1022), - [anon_sym_module] = ACTIONS(1022), - [anon_sym_use] = ACTIONS(1022), - [anon_sym_LPAREN] = ACTIONS(1024), - [anon_sym_COMMA] = ACTIONS(1024), - [anon_sym_DOLLAR] = ACTIONS(1024), - [anon_sym_error] = ACTIONS(1022), - [anon_sym_list] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1022), - [anon_sym_break] = ACTIONS(1022), - [anon_sym_continue] = ACTIONS(1022), - [anon_sym_for] = ACTIONS(1022), - [anon_sym_in] = ACTIONS(1022), - [anon_sym_loop] = ACTIONS(1022), - [anon_sym_make] = ACTIONS(1022), - [anon_sym_while] = ACTIONS(1022), - [anon_sym_do] = ACTIONS(1022), - [anon_sym_if] = ACTIONS(1022), - [anon_sym_else] = ACTIONS(1022), - [anon_sym_match] = ACTIONS(1022), - [anon_sym_RBRACE] = ACTIONS(1024), - [anon_sym_try] = ACTIONS(1022), - [anon_sym_catch] = ACTIONS(1022), - [anon_sym_return] = ACTIONS(1022), - [anon_sym_source] = ACTIONS(1022), - [anon_sym_source_DASHenv] = ACTIONS(1022), - [anon_sym_register] = ACTIONS(1022), - [anon_sym_hide] = ACTIONS(1022), - [anon_sym_hide_DASHenv] = ACTIONS(1022), - [anon_sym_overlay] = ACTIONS(1022), - [anon_sym_new] = ACTIONS(1022), - [anon_sym_as] = ACTIONS(1022), - [anon_sym_QMARK2] = ACTIONS(1026), - [aux_sym_expr_binary_token1] = ACTIONS(1024), - [aux_sym_expr_binary_token2] = ACTIONS(1024), - [aux_sym_expr_binary_token3] = ACTIONS(1024), - [aux_sym_expr_binary_token4] = ACTIONS(1024), - [aux_sym_expr_binary_token5] = ACTIONS(1024), - [aux_sym_expr_binary_token6] = ACTIONS(1024), - [aux_sym_expr_binary_token7] = ACTIONS(1024), - [aux_sym_expr_binary_token8] = ACTIONS(1024), - [aux_sym_expr_binary_token9] = ACTIONS(1024), - [aux_sym_expr_binary_token10] = ACTIONS(1024), - [aux_sym_expr_binary_token11] = ACTIONS(1024), - [aux_sym_expr_binary_token12] = ACTIONS(1024), - [aux_sym_expr_binary_token13] = ACTIONS(1024), - [aux_sym_expr_binary_token14] = ACTIONS(1024), - [aux_sym_expr_binary_token15] = ACTIONS(1024), - [aux_sym_expr_binary_token16] = ACTIONS(1024), - [aux_sym_expr_binary_token17] = ACTIONS(1024), - [aux_sym_expr_binary_token18] = ACTIONS(1024), - [aux_sym_expr_binary_token19] = ACTIONS(1024), - [aux_sym_expr_binary_token20] = ACTIONS(1024), - [aux_sym_expr_binary_token21] = ACTIONS(1024), - [aux_sym_expr_binary_token22] = ACTIONS(1024), - [aux_sym_expr_binary_token23] = ACTIONS(1024), - [aux_sym_expr_binary_token24] = ACTIONS(1024), - [aux_sym_expr_binary_token25] = ACTIONS(1024), - [aux_sym_expr_binary_token26] = ACTIONS(1024), - [aux_sym_expr_binary_token27] = ACTIONS(1024), - [aux_sym_expr_binary_token28] = ACTIONS(1024), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1024), - [anon_sym_DOT_DOT2] = ACTIONS(1022), - [anon_sym_DOT] = ACTIONS(1022), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1024), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1024), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1024), - [aux_sym__val_number_decimal_token1] = ACTIONS(1022), - [aux_sym__val_number_decimal_token2] = ACTIONS(1024), - [aux_sym__val_number_decimal_token3] = ACTIONS(1024), - [aux_sym__val_number_decimal_token4] = ACTIONS(1024), - [aux_sym__val_number_token1] = ACTIONS(1024), - [aux_sym__val_number_token2] = ACTIONS(1024), - [aux_sym__val_number_token3] = ACTIONS(1024), - [anon_sym_DQUOTE] = ACTIONS(1024), - [sym__str_single_quotes] = ACTIONS(1024), - [sym__str_back_ticks] = ACTIONS(1024), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1024), - [aux_sym_record_entry_token1] = ACTIONS(1024), - [anon_sym_PLUS] = ACTIONS(1022), - [anon_sym_err_GT] = ACTIONS(1022), - [anon_sym_out_GT] = ACTIONS(1022), - [anon_sym_e_GT] = ACTIONS(1022), - [anon_sym_o_GT] = ACTIONS(1022), - [anon_sym_err_PLUSout_GT] = ACTIONS(1022), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1022), - [anon_sym_o_PLUSe_GT] = ACTIONS(1022), - [anon_sym_e_PLUSo_GT] = ACTIONS(1022), - [anon_sym_err_GT_GT] = ACTIONS(1024), - [anon_sym_out_GT_GT] = ACTIONS(1024), - [anon_sym_e_GT_GT] = ACTIONS(1024), - [anon_sym_o_GT_GT] = ACTIONS(1024), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1024), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1024), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1024), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1024), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(165), + [anon_sym_export] = ACTIONS(1027), + [anon_sym_alias] = ACTIONS(1027), + [anon_sym_EQ] = ACTIONS(1027), + [anon_sym_let] = ACTIONS(1027), + [anon_sym_let_DASHenv] = ACTIONS(1027), + [anon_sym_mut] = ACTIONS(1027), + [anon_sym_const] = ACTIONS(1027), + [anon_sym_PLUS_EQ] = ACTIONS(1029), + [anon_sym_DASH_EQ] = ACTIONS(1029), + [anon_sym_STAR_EQ] = ACTIONS(1029), + [anon_sym_SLASH_EQ] = ACTIONS(1029), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1029), + [aux_sym_cmd_identifier_token1] = ACTIONS(1027), + [aux_sym_cmd_identifier_token2] = ACTIONS(1027), + [aux_sym_cmd_identifier_token3] = ACTIONS(1027), + [aux_sym_cmd_identifier_token4] = ACTIONS(1027), + [aux_sym_cmd_identifier_token5] = ACTIONS(1027), + [aux_sym_cmd_identifier_token6] = ACTIONS(1027), + [aux_sym_cmd_identifier_token7] = ACTIONS(1027), + [aux_sym_cmd_identifier_token8] = ACTIONS(1027), + [aux_sym_cmd_identifier_token9] = ACTIONS(1027), + [aux_sym_cmd_identifier_token10] = ACTIONS(1027), + [aux_sym_cmd_identifier_token11] = ACTIONS(1027), + [aux_sym_cmd_identifier_token12] = ACTIONS(1027), + [aux_sym_cmd_identifier_token13] = ACTIONS(1027), + [aux_sym_cmd_identifier_token14] = ACTIONS(1027), + [aux_sym_cmd_identifier_token15] = ACTIONS(1027), + [aux_sym_cmd_identifier_token16] = ACTIONS(1027), + [aux_sym_cmd_identifier_token17] = ACTIONS(1027), + [aux_sym_cmd_identifier_token18] = ACTIONS(1027), + [aux_sym_cmd_identifier_token19] = ACTIONS(1027), + [aux_sym_cmd_identifier_token20] = ACTIONS(1027), + [aux_sym_cmd_identifier_token21] = ACTIONS(1027), + [aux_sym_cmd_identifier_token22] = ACTIONS(1027), + [aux_sym_cmd_identifier_token23] = ACTIONS(1027), + [aux_sym_cmd_identifier_token24] = ACTIONS(1027), + [aux_sym_cmd_identifier_token25] = ACTIONS(1027), + [aux_sym_cmd_identifier_token26] = ACTIONS(1027), + [aux_sym_cmd_identifier_token27] = ACTIONS(1027), + [aux_sym_cmd_identifier_token28] = ACTIONS(1027), + [aux_sym_cmd_identifier_token29] = ACTIONS(1027), + [aux_sym_cmd_identifier_token30] = ACTIONS(1027), + [aux_sym_cmd_identifier_token31] = ACTIONS(1027), + [aux_sym_cmd_identifier_token32] = ACTIONS(1027), + [aux_sym_cmd_identifier_token33] = ACTIONS(1027), + [aux_sym_cmd_identifier_token34] = ACTIONS(1027), + [aux_sym_cmd_identifier_token35] = ACTIONS(1027), + [aux_sym_cmd_identifier_token36] = ACTIONS(1027), + [anon_sym_true] = ACTIONS(1029), + [anon_sym_false] = ACTIONS(1029), + [anon_sym_null] = ACTIONS(1029), + [aux_sym_cmd_identifier_token38] = ACTIONS(1027), + [aux_sym_cmd_identifier_token39] = ACTIONS(1029), + [aux_sym_cmd_identifier_token40] = ACTIONS(1029), + [sym__newline] = ACTIONS(1027), + [anon_sym_SEMI] = ACTIONS(1029), + [anon_sym_PIPE] = ACTIONS(1029), + [anon_sym_err_GT_PIPE] = ACTIONS(1029), + [anon_sym_out_GT_PIPE] = ACTIONS(1029), + [anon_sym_e_GT_PIPE] = ACTIONS(1029), + [anon_sym_o_GT_PIPE] = ACTIONS(1029), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1029), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1029), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1029), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1029), + [anon_sym_def] = ACTIONS(1027), + [anon_sym_export_DASHenv] = ACTIONS(1027), + [anon_sym_extern] = ACTIONS(1027), + [anon_sym_module] = ACTIONS(1027), + [anon_sym_use] = ACTIONS(1027), + [anon_sym_LPAREN] = ACTIONS(1029), + [anon_sym_COMMA] = ACTIONS(1029), + [anon_sym_DOLLAR] = ACTIONS(1029), + [anon_sym_error] = ACTIONS(1027), + [anon_sym_list] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_break] = ACTIONS(1027), + [anon_sym_continue] = ACTIONS(1027), + [anon_sym_for] = ACTIONS(1027), + [anon_sym_in] = ACTIONS(1027), + [anon_sym_loop] = ACTIONS(1027), + [anon_sym_make] = ACTIONS(1027), + [anon_sym_while] = ACTIONS(1027), + [anon_sym_do] = ACTIONS(1027), + [anon_sym_if] = ACTIONS(1027), + [anon_sym_else] = ACTIONS(1027), + [anon_sym_match] = ACTIONS(1027), + [anon_sym_RBRACE] = ACTIONS(1029), + [anon_sym_try] = ACTIONS(1027), + [anon_sym_catch] = ACTIONS(1027), + [anon_sym_return] = ACTIONS(1027), + [anon_sym_source] = ACTIONS(1027), + [anon_sym_source_DASHenv] = ACTIONS(1027), + [anon_sym_register] = ACTIONS(1027), + [anon_sym_hide] = ACTIONS(1027), + [anon_sym_hide_DASHenv] = ACTIONS(1027), + [anon_sym_overlay] = ACTIONS(1027), + [anon_sym_new] = ACTIONS(1027), + [anon_sym_as] = ACTIONS(1027), + [aux_sym_expr_binary_token1] = ACTIONS(1029), + [aux_sym_expr_binary_token2] = ACTIONS(1029), + [aux_sym_expr_binary_token3] = ACTIONS(1029), + [aux_sym_expr_binary_token4] = ACTIONS(1029), + [aux_sym_expr_binary_token5] = ACTIONS(1029), + [aux_sym_expr_binary_token6] = ACTIONS(1029), + [aux_sym_expr_binary_token7] = ACTIONS(1029), + [aux_sym_expr_binary_token8] = ACTIONS(1029), + [aux_sym_expr_binary_token9] = ACTIONS(1029), + [aux_sym_expr_binary_token10] = ACTIONS(1029), + [aux_sym_expr_binary_token11] = ACTIONS(1029), + [aux_sym_expr_binary_token12] = ACTIONS(1029), + [aux_sym_expr_binary_token13] = ACTIONS(1029), + [aux_sym_expr_binary_token14] = ACTIONS(1029), + [aux_sym_expr_binary_token15] = ACTIONS(1029), + [aux_sym_expr_binary_token16] = ACTIONS(1029), + [aux_sym_expr_binary_token17] = ACTIONS(1029), + [aux_sym_expr_binary_token18] = ACTIONS(1029), + [aux_sym_expr_binary_token19] = ACTIONS(1029), + [aux_sym_expr_binary_token20] = ACTIONS(1029), + [aux_sym_expr_binary_token21] = ACTIONS(1029), + [aux_sym_expr_binary_token22] = ACTIONS(1029), + [aux_sym_expr_binary_token23] = ACTIONS(1029), + [aux_sym_expr_binary_token24] = ACTIONS(1029), + [aux_sym_expr_binary_token25] = ACTIONS(1029), + [aux_sym_expr_binary_token26] = ACTIONS(1029), + [aux_sym_expr_binary_token27] = ACTIONS(1029), + [aux_sym_expr_binary_token28] = ACTIONS(1029), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1029), + [anon_sym_DOT_DOT2] = ACTIONS(1027), + [anon_sym_DOT] = ACTIONS(1025), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1029), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1029), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1029), + [aux_sym__val_number_decimal_token1] = ACTIONS(1027), + [aux_sym__val_number_decimal_token2] = ACTIONS(1029), + [aux_sym__val_number_decimal_token3] = ACTIONS(1029), + [aux_sym__val_number_decimal_token4] = ACTIONS(1029), + [aux_sym__val_number_token1] = ACTIONS(1029), + [aux_sym__val_number_token2] = ACTIONS(1029), + [aux_sym__val_number_token3] = ACTIONS(1029), + [anon_sym_DQUOTE] = ACTIONS(1029), + [sym__str_single_quotes] = ACTIONS(1029), + [sym__str_back_ticks] = ACTIONS(1029), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1029), + [aux_sym_record_entry_token1] = ACTIONS(1029), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_err_GT] = ACTIONS(1027), + [anon_sym_out_GT] = ACTIONS(1027), + [anon_sym_e_GT] = ACTIONS(1027), + [anon_sym_o_GT] = ACTIONS(1027), + [anon_sym_err_PLUSout_GT] = ACTIONS(1027), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1027), + [anon_sym_o_PLUSe_GT] = ACTIONS(1027), + [anon_sym_e_PLUSo_GT] = ACTIONS(1027), + [anon_sym_err_GT_GT] = ACTIONS(1029), + [anon_sym_out_GT_GT] = ACTIONS(1029), + [anon_sym_e_GT_GT] = ACTIONS(1029), + [anon_sym_o_GT_GT] = ACTIONS(1029), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1029), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1029), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1029), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1029), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1029), }, [165] = { + [sym_path] = STATE(174), [sym_comment] = STATE(165), - [anon_sym_export] = ACTIONS(1028), - [anon_sym_alias] = ACTIONS(1028), - [anon_sym_EQ] = ACTIONS(1028), - [anon_sym_let] = ACTIONS(1028), - [anon_sym_let_DASHenv] = ACTIONS(1028), - [anon_sym_mut] = ACTIONS(1028), - [anon_sym_const] = ACTIONS(1028), - [anon_sym_PLUS_EQ] = ACTIONS(1030), - [anon_sym_DASH_EQ] = ACTIONS(1030), - [anon_sym_STAR_EQ] = ACTIONS(1030), - [anon_sym_SLASH_EQ] = ACTIONS(1030), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1030), - [aux_sym_cmd_identifier_token1] = ACTIONS(1028), - [aux_sym_cmd_identifier_token2] = ACTIONS(1028), - [aux_sym_cmd_identifier_token3] = ACTIONS(1028), - [aux_sym_cmd_identifier_token4] = ACTIONS(1028), - [aux_sym_cmd_identifier_token5] = ACTIONS(1028), - [aux_sym_cmd_identifier_token6] = ACTIONS(1028), - [aux_sym_cmd_identifier_token7] = ACTIONS(1028), - [aux_sym_cmd_identifier_token8] = ACTIONS(1028), - [aux_sym_cmd_identifier_token9] = ACTIONS(1028), - [aux_sym_cmd_identifier_token10] = ACTIONS(1028), - [aux_sym_cmd_identifier_token11] = ACTIONS(1028), - [aux_sym_cmd_identifier_token12] = ACTIONS(1028), - [aux_sym_cmd_identifier_token13] = ACTIONS(1028), - [aux_sym_cmd_identifier_token14] = ACTIONS(1028), - [aux_sym_cmd_identifier_token15] = ACTIONS(1028), - [aux_sym_cmd_identifier_token16] = ACTIONS(1028), - [aux_sym_cmd_identifier_token17] = ACTIONS(1028), - [aux_sym_cmd_identifier_token18] = ACTIONS(1028), - [aux_sym_cmd_identifier_token19] = ACTIONS(1028), - [aux_sym_cmd_identifier_token20] = ACTIONS(1028), - [aux_sym_cmd_identifier_token21] = ACTIONS(1028), - [aux_sym_cmd_identifier_token22] = ACTIONS(1028), - [aux_sym_cmd_identifier_token23] = ACTIONS(1028), - [aux_sym_cmd_identifier_token24] = ACTIONS(1028), - [aux_sym_cmd_identifier_token25] = ACTIONS(1028), - [aux_sym_cmd_identifier_token26] = ACTIONS(1028), - [aux_sym_cmd_identifier_token27] = ACTIONS(1028), - [aux_sym_cmd_identifier_token28] = ACTIONS(1028), - [aux_sym_cmd_identifier_token29] = ACTIONS(1028), - [aux_sym_cmd_identifier_token30] = ACTIONS(1028), - [aux_sym_cmd_identifier_token31] = ACTIONS(1028), - [aux_sym_cmd_identifier_token32] = ACTIONS(1028), - [aux_sym_cmd_identifier_token33] = ACTIONS(1028), - [aux_sym_cmd_identifier_token34] = ACTIONS(1028), - [aux_sym_cmd_identifier_token35] = ACTIONS(1028), - [aux_sym_cmd_identifier_token36] = ACTIONS(1028), - [anon_sym_true] = ACTIONS(1030), - [anon_sym_false] = ACTIONS(1030), - [anon_sym_null] = ACTIONS(1030), - [aux_sym_cmd_identifier_token38] = ACTIONS(1028), - [aux_sym_cmd_identifier_token39] = ACTIONS(1030), - [aux_sym_cmd_identifier_token40] = ACTIONS(1030), - [sym__newline] = ACTIONS(1028), - [anon_sym_SEMI] = ACTIONS(1030), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_err_GT_PIPE] = ACTIONS(1030), - [anon_sym_out_GT_PIPE] = ACTIONS(1030), - [anon_sym_e_GT_PIPE] = ACTIONS(1030), - [anon_sym_o_GT_PIPE] = ACTIONS(1030), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1030), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1030), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1030), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1030), - [anon_sym_def] = ACTIONS(1028), - [anon_sym_export_DASHenv] = ACTIONS(1028), - [anon_sym_extern] = ACTIONS(1028), - [anon_sym_module] = ACTIONS(1028), - [anon_sym_use] = ACTIONS(1028), - [anon_sym_LPAREN] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(1030), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_error] = ACTIONS(1028), - [anon_sym_list] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1028), - [anon_sym_break] = ACTIONS(1028), - [anon_sym_continue] = ACTIONS(1028), - [anon_sym_for] = ACTIONS(1028), - [anon_sym_in] = ACTIONS(1028), - [anon_sym_loop] = ACTIONS(1028), - [anon_sym_make] = ACTIONS(1028), - [anon_sym_while] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1028), - [anon_sym_if] = ACTIONS(1028), - [anon_sym_else] = ACTIONS(1028), - [anon_sym_match] = ACTIONS(1028), - [anon_sym_RBRACE] = ACTIONS(1030), - [anon_sym_try] = ACTIONS(1028), - [anon_sym_catch] = ACTIONS(1028), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_source] = ACTIONS(1028), - [anon_sym_source_DASHenv] = ACTIONS(1028), - [anon_sym_register] = ACTIONS(1028), - [anon_sym_hide] = ACTIONS(1028), - [anon_sym_hide_DASHenv] = ACTIONS(1028), - [anon_sym_overlay] = ACTIONS(1028), - [anon_sym_new] = ACTIONS(1028), - [anon_sym_as] = ACTIONS(1028), - [anon_sym_QMARK2] = ACTIONS(1032), - [aux_sym_expr_binary_token1] = ACTIONS(1030), - [aux_sym_expr_binary_token2] = ACTIONS(1030), - [aux_sym_expr_binary_token3] = ACTIONS(1030), - [aux_sym_expr_binary_token4] = ACTIONS(1030), - [aux_sym_expr_binary_token5] = ACTIONS(1030), - [aux_sym_expr_binary_token6] = ACTIONS(1030), - [aux_sym_expr_binary_token7] = ACTIONS(1030), - [aux_sym_expr_binary_token8] = ACTIONS(1030), - [aux_sym_expr_binary_token9] = ACTIONS(1030), - [aux_sym_expr_binary_token10] = ACTIONS(1030), - [aux_sym_expr_binary_token11] = ACTIONS(1030), - [aux_sym_expr_binary_token12] = ACTIONS(1030), - [aux_sym_expr_binary_token13] = ACTIONS(1030), - [aux_sym_expr_binary_token14] = ACTIONS(1030), - [aux_sym_expr_binary_token15] = ACTIONS(1030), - [aux_sym_expr_binary_token16] = ACTIONS(1030), - [aux_sym_expr_binary_token17] = ACTIONS(1030), - [aux_sym_expr_binary_token18] = ACTIONS(1030), - [aux_sym_expr_binary_token19] = ACTIONS(1030), - [aux_sym_expr_binary_token20] = ACTIONS(1030), - [aux_sym_expr_binary_token21] = ACTIONS(1030), - [aux_sym_expr_binary_token22] = ACTIONS(1030), - [aux_sym_expr_binary_token23] = ACTIONS(1030), - [aux_sym_expr_binary_token24] = ACTIONS(1030), - [aux_sym_expr_binary_token25] = ACTIONS(1030), - [aux_sym_expr_binary_token26] = ACTIONS(1030), - [aux_sym_expr_binary_token27] = ACTIONS(1030), - [aux_sym_expr_binary_token28] = ACTIONS(1030), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1030), - [anon_sym_DOT_DOT2] = ACTIONS(1028), - [anon_sym_DOT] = ACTIONS(1028), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1030), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1030), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1030), - [aux_sym__val_number_decimal_token1] = ACTIONS(1028), - [aux_sym__val_number_decimal_token2] = ACTIONS(1030), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), - [aux_sym__val_number_token1] = ACTIONS(1030), - [aux_sym__val_number_token2] = ACTIONS(1030), - [aux_sym__val_number_token3] = ACTIONS(1030), - [anon_sym_DQUOTE] = ACTIONS(1030), - [sym__str_single_quotes] = ACTIONS(1030), - [sym__str_back_ticks] = ACTIONS(1030), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1030), - [aux_sym_record_entry_token1] = ACTIONS(1030), - [anon_sym_PLUS] = ACTIONS(1028), - [anon_sym_err_GT] = ACTIONS(1028), - [anon_sym_out_GT] = ACTIONS(1028), - [anon_sym_e_GT] = ACTIONS(1028), - [anon_sym_o_GT] = ACTIONS(1028), - [anon_sym_err_PLUSout_GT] = ACTIONS(1028), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1028), - [anon_sym_o_PLUSe_GT] = ACTIONS(1028), - [anon_sym_e_PLUSo_GT] = ACTIONS(1028), - [anon_sym_err_GT_GT] = ACTIONS(1030), - [anon_sym_out_GT_GT] = ACTIONS(1030), - [anon_sym_e_GT_GT] = ACTIONS(1030), - [anon_sym_o_GT_GT] = ACTIONS(1030), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1030), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1030), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1030), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1030), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(165), + [anon_sym_export] = ACTIONS(1031), + [anon_sym_alias] = ACTIONS(1031), + [anon_sym_EQ] = ACTIONS(1031), + [anon_sym_let] = ACTIONS(1031), + [anon_sym_let_DASHenv] = ACTIONS(1031), + [anon_sym_mut] = ACTIONS(1031), + [anon_sym_const] = ACTIONS(1031), + [anon_sym_PLUS_EQ] = ACTIONS(1033), + [anon_sym_DASH_EQ] = ACTIONS(1033), + [anon_sym_STAR_EQ] = ACTIONS(1033), + [anon_sym_SLASH_EQ] = ACTIONS(1033), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1033), + [aux_sym_cmd_identifier_token1] = ACTIONS(1031), + [aux_sym_cmd_identifier_token2] = ACTIONS(1031), + [aux_sym_cmd_identifier_token3] = ACTIONS(1031), + [aux_sym_cmd_identifier_token4] = ACTIONS(1031), + [aux_sym_cmd_identifier_token5] = ACTIONS(1031), + [aux_sym_cmd_identifier_token6] = ACTIONS(1031), + [aux_sym_cmd_identifier_token7] = ACTIONS(1031), + [aux_sym_cmd_identifier_token8] = ACTIONS(1031), + [aux_sym_cmd_identifier_token9] = ACTIONS(1031), + [aux_sym_cmd_identifier_token10] = ACTIONS(1031), + [aux_sym_cmd_identifier_token11] = ACTIONS(1031), + [aux_sym_cmd_identifier_token12] = ACTIONS(1031), + [aux_sym_cmd_identifier_token13] = ACTIONS(1031), + [aux_sym_cmd_identifier_token14] = ACTIONS(1031), + [aux_sym_cmd_identifier_token15] = ACTIONS(1031), + [aux_sym_cmd_identifier_token16] = ACTIONS(1031), + [aux_sym_cmd_identifier_token17] = ACTIONS(1031), + [aux_sym_cmd_identifier_token18] = ACTIONS(1031), + [aux_sym_cmd_identifier_token19] = ACTIONS(1031), + [aux_sym_cmd_identifier_token20] = ACTIONS(1031), + [aux_sym_cmd_identifier_token21] = ACTIONS(1031), + [aux_sym_cmd_identifier_token22] = ACTIONS(1031), + [aux_sym_cmd_identifier_token23] = ACTIONS(1031), + [aux_sym_cmd_identifier_token24] = ACTIONS(1031), + [aux_sym_cmd_identifier_token25] = ACTIONS(1031), + [aux_sym_cmd_identifier_token26] = ACTIONS(1031), + [aux_sym_cmd_identifier_token27] = ACTIONS(1031), + [aux_sym_cmd_identifier_token28] = ACTIONS(1031), + [aux_sym_cmd_identifier_token29] = ACTIONS(1031), + [aux_sym_cmd_identifier_token30] = ACTIONS(1031), + [aux_sym_cmd_identifier_token31] = ACTIONS(1031), + [aux_sym_cmd_identifier_token32] = ACTIONS(1031), + [aux_sym_cmd_identifier_token33] = ACTIONS(1031), + [aux_sym_cmd_identifier_token34] = ACTIONS(1031), + [aux_sym_cmd_identifier_token35] = ACTIONS(1031), + [aux_sym_cmd_identifier_token36] = ACTIONS(1031), + [anon_sym_true] = ACTIONS(1033), + [anon_sym_false] = ACTIONS(1033), + [anon_sym_null] = ACTIONS(1033), + [aux_sym_cmd_identifier_token38] = ACTIONS(1031), + [aux_sym_cmd_identifier_token39] = ACTIONS(1033), + [aux_sym_cmd_identifier_token40] = ACTIONS(1033), + [sym__newline] = ACTIONS(1031), + [anon_sym_SEMI] = ACTIONS(1033), + [anon_sym_PIPE] = ACTIONS(1033), + [anon_sym_err_GT_PIPE] = ACTIONS(1033), + [anon_sym_out_GT_PIPE] = ACTIONS(1033), + [anon_sym_e_GT_PIPE] = ACTIONS(1033), + [anon_sym_o_GT_PIPE] = ACTIONS(1033), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1033), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1033), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1033), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1033), + [anon_sym_def] = ACTIONS(1031), + [anon_sym_export_DASHenv] = ACTIONS(1031), + [anon_sym_extern] = ACTIONS(1031), + [anon_sym_module] = ACTIONS(1031), + [anon_sym_use] = ACTIONS(1031), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_COMMA] = ACTIONS(1033), + [anon_sym_DOLLAR] = ACTIONS(1033), + [anon_sym_error] = ACTIONS(1031), + [anon_sym_list] = ACTIONS(1031), + [anon_sym_DASH] = ACTIONS(1031), + [anon_sym_break] = ACTIONS(1031), + [anon_sym_continue] = ACTIONS(1031), + [anon_sym_for] = ACTIONS(1031), + [anon_sym_in] = ACTIONS(1031), + [anon_sym_loop] = ACTIONS(1031), + [anon_sym_make] = ACTIONS(1031), + [anon_sym_while] = ACTIONS(1031), + [anon_sym_do] = ACTIONS(1031), + [anon_sym_if] = ACTIONS(1031), + [anon_sym_else] = ACTIONS(1031), + [anon_sym_match] = ACTIONS(1031), + [anon_sym_RBRACE] = ACTIONS(1033), + [anon_sym_try] = ACTIONS(1031), + [anon_sym_catch] = ACTIONS(1031), + [anon_sym_return] = ACTIONS(1031), + [anon_sym_source] = ACTIONS(1031), + [anon_sym_source_DASHenv] = ACTIONS(1031), + [anon_sym_register] = ACTIONS(1031), + [anon_sym_hide] = ACTIONS(1031), + [anon_sym_hide_DASHenv] = ACTIONS(1031), + [anon_sym_overlay] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1031), + [anon_sym_as] = ACTIONS(1031), + [aux_sym_expr_binary_token1] = ACTIONS(1033), + [aux_sym_expr_binary_token2] = ACTIONS(1033), + [aux_sym_expr_binary_token3] = ACTIONS(1033), + [aux_sym_expr_binary_token4] = ACTIONS(1033), + [aux_sym_expr_binary_token5] = ACTIONS(1033), + [aux_sym_expr_binary_token6] = ACTIONS(1033), + [aux_sym_expr_binary_token7] = ACTIONS(1033), + [aux_sym_expr_binary_token8] = ACTIONS(1033), + [aux_sym_expr_binary_token9] = ACTIONS(1033), + [aux_sym_expr_binary_token10] = ACTIONS(1033), + [aux_sym_expr_binary_token11] = ACTIONS(1033), + [aux_sym_expr_binary_token12] = ACTIONS(1033), + [aux_sym_expr_binary_token13] = ACTIONS(1033), + [aux_sym_expr_binary_token14] = ACTIONS(1033), + [aux_sym_expr_binary_token15] = ACTIONS(1033), + [aux_sym_expr_binary_token16] = ACTIONS(1033), + [aux_sym_expr_binary_token17] = ACTIONS(1033), + [aux_sym_expr_binary_token18] = ACTIONS(1033), + [aux_sym_expr_binary_token19] = ACTIONS(1033), + [aux_sym_expr_binary_token20] = ACTIONS(1033), + [aux_sym_expr_binary_token21] = ACTIONS(1033), + [aux_sym_expr_binary_token22] = ACTIONS(1033), + [aux_sym_expr_binary_token23] = ACTIONS(1033), + [aux_sym_expr_binary_token24] = ACTIONS(1033), + [aux_sym_expr_binary_token25] = ACTIONS(1033), + [aux_sym_expr_binary_token26] = ACTIONS(1033), + [aux_sym_expr_binary_token27] = ACTIONS(1033), + [aux_sym_expr_binary_token28] = ACTIONS(1033), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1033), + [anon_sym_DOT_DOT2] = ACTIONS(1031), + [anon_sym_DOT] = ACTIONS(1035), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1033), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1033), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1033), + [aux_sym__val_number_decimal_token1] = ACTIONS(1031), + [aux_sym__val_number_decimal_token2] = ACTIONS(1033), + [aux_sym__val_number_decimal_token3] = ACTIONS(1033), + [aux_sym__val_number_decimal_token4] = ACTIONS(1033), + [aux_sym__val_number_token1] = ACTIONS(1033), + [aux_sym__val_number_token2] = ACTIONS(1033), + [aux_sym__val_number_token3] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(1033), + [sym__str_single_quotes] = ACTIONS(1033), + [sym__str_back_ticks] = ACTIONS(1033), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1033), + [aux_sym_record_entry_token1] = ACTIONS(1033), + [anon_sym_PLUS] = ACTIONS(1031), + [anon_sym_err_GT] = ACTIONS(1031), + [anon_sym_out_GT] = ACTIONS(1031), + [anon_sym_e_GT] = ACTIONS(1031), + [anon_sym_o_GT] = ACTIONS(1031), + [anon_sym_err_PLUSout_GT] = ACTIONS(1031), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1031), + [anon_sym_o_PLUSe_GT] = ACTIONS(1031), + [anon_sym_e_PLUSo_GT] = ACTIONS(1031), + [anon_sym_err_GT_GT] = ACTIONS(1033), + [anon_sym_out_GT_GT] = ACTIONS(1033), + [anon_sym_e_GT_GT] = ACTIONS(1033), + [anon_sym_o_GT_GT] = ACTIONS(1033), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1033), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1033), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1033), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1033), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1033), }, [166] = { [sym_comment] = STATE(166), - [anon_sym_export] = ACTIONS(1034), - [anon_sym_alias] = ACTIONS(1034), - [anon_sym_EQ] = ACTIONS(1034), - [anon_sym_let] = ACTIONS(1034), - [anon_sym_let_DASHenv] = ACTIONS(1034), - [anon_sym_mut] = ACTIONS(1034), - [anon_sym_const] = ACTIONS(1034), - [anon_sym_PLUS_EQ] = ACTIONS(1036), - [anon_sym_DASH_EQ] = ACTIONS(1036), - [anon_sym_STAR_EQ] = ACTIONS(1036), - [anon_sym_SLASH_EQ] = ACTIONS(1036), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1036), - [aux_sym_cmd_identifier_token1] = ACTIONS(1034), - [aux_sym_cmd_identifier_token2] = ACTIONS(1034), - [aux_sym_cmd_identifier_token3] = ACTIONS(1034), - [aux_sym_cmd_identifier_token4] = ACTIONS(1034), - [aux_sym_cmd_identifier_token5] = ACTIONS(1034), - [aux_sym_cmd_identifier_token6] = ACTIONS(1034), - [aux_sym_cmd_identifier_token7] = ACTIONS(1034), - [aux_sym_cmd_identifier_token8] = ACTIONS(1034), - [aux_sym_cmd_identifier_token9] = ACTIONS(1034), - [aux_sym_cmd_identifier_token10] = ACTIONS(1034), - [aux_sym_cmd_identifier_token11] = ACTIONS(1034), - [aux_sym_cmd_identifier_token12] = ACTIONS(1034), - [aux_sym_cmd_identifier_token13] = ACTIONS(1034), - [aux_sym_cmd_identifier_token14] = ACTIONS(1034), - [aux_sym_cmd_identifier_token15] = ACTIONS(1034), - [aux_sym_cmd_identifier_token16] = ACTIONS(1034), - [aux_sym_cmd_identifier_token17] = ACTIONS(1034), - [aux_sym_cmd_identifier_token18] = ACTIONS(1034), - [aux_sym_cmd_identifier_token19] = ACTIONS(1034), - [aux_sym_cmd_identifier_token20] = ACTIONS(1034), - [aux_sym_cmd_identifier_token21] = ACTIONS(1034), - [aux_sym_cmd_identifier_token22] = ACTIONS(1034), - [aux_sym_cmd_identifier_token23] = ACTIONS(1034), - [aux_sym_cmd_identifier_token24] = ACTIONS(1034), - [aux_sym_cmd_identifier_token25] = ACTIONS(1034), - [aux_sym_cmd_identifier_token26] = ACTIONS(1034), - [aux_sym_cmd_identifier_token27] = ACTIONS(1034), - [aux_sym_cmd_identifier_token28] = ACTIONS(1034), - [aux_sym_cmd_identifier_token29] = ACTIONS(1034), - [aux_sym_cmd_identifier_token30] = ACTIONS(1034), - [aux_sym_cmd_identifier_token31] = ACTIONS(1034), - [aux_sym_cmd_identifier_token32] = ACTIONS(1034), - [aux_sym_cmd_identifier_token33] = ACTIONS(1034), - [aux_sym_cmd_identifier_token34] = ACTIONS(1034), - [aux_sym_cmd_identifier_token35] = ACTIONS(1034), - [aux_sym_cmd_identifier_token36] = ACTIONS(1034), - [anon_sym_true] = ACTIONS(1036), - [anon_sym_false] = ACTIONS(1036), - [anon_sym_null] = ACTIONS(1036), - [aux_sym_cmd_identifier_token38] = ACTIONS(1034), - [aux_sym_cmd_identifier_token39] = ACTIONS(1036), - [aux_sym_cmd_identifier_token40] = ACTIONS(1036), - [sym__newline] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1036), - [anon_sym_PIPE] = ACTIONS(1036), - [anon_sym_err_GT_PIPE] = ACTIONS(1036), - [anon_sym_out_GT_PIPE] = ACTIONS(1036), - [anon_sym_e_GT_PIPE] = ACTIONS(1036), - [anon_sym_o_GT_PIPE] = ACTIONS(1036), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1036), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1036), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1036), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1036), - [anon_sym_def] = ACTIONS(1034), - [anon_sym_export_DASHenv] = ACTIONS(1034), - [anon_sym_extern] = ACTIONS(1034), - [anon_sym_module] = ACTIONS(1034), - [anon_sym_use] = ACTIONS(1034), - [anon_sym_LPAREN] = ACTIONS(1036), - [anon_sym_COMMA] = ACTIONS(1036), - [anon_sym_DOLLAR] = ACTIONS(1036), - [anon_sym_error] = ACTIONS(1034), - [anon_sym_list] = ACTIONS(1034), - [anon_sym_DASH] = ACTIONS(1034), - [anon_sym_break] = ACTIONS(1034), - [anon_sym_continue] = ACTIONS(1034), - [anon_sym_for] = ACTIONS(1034), - [anon_sym_in] = ACTIONS(1034), - [anon_sym_loop] = ACTIONS(1034), - [anon_sym_make] = ACTIONS(1034), - [anon_sym_while] = ACTIONS(1034), - [anon_sym_do] = ACTIONS(1034), - [anon_sym_if] = ACTIONS(1034), - [anon_sym_else] = ACTIONS(1034), - [anon_sym_match] = ACTIONS(1034), - [anon_sym_RBRACE] = ACTIONS(1036), - [anon_sym_try] = ACTIONS(1034), - [anon_sym_catch] = ACTIONS(1034), - [anon_sym_return] = ACTIONS(1034), - [anon_sym_source] = ACTIONS(1034), - [anon_sym_source_DASHenv] = ACTIONS(1034), - [anon_sym_register] = ACTIONS(1034), - [anon_sym_hide] = ACTIONS(1034), - [anon_sym_hide_DASHenv] = ACTIONS(1034), - [anon_sym_overlay] = ACTIONS(1034), - [anon_sym_new] = ACTIONS(1034), - [anon_sym_as] = ACTIONS(1034), - [anon_sym_QMARK2] = ACTIONS(1036), - [aux_sym_expr_binary_token1] = ACTIONS(1036), - [aux_sym_expr_binary_token2] = ACTIONS(1036), - [aux_sym_expr_binary_token3] = ACTIONS(1036), - [aux_sym_expr_binary_token4] = ACTIONS(1036), - [aux_sym_expr_binary_token5] = ACTIONS(1036), - [aux_sym_expr_binary_token6] = ACTIONS(1036), - [aux_sym_expr_binary_token7] = ACTIONS(1036), - [aux_sym_expr_binary_token8] = ACTIONS(1036), - [aux_sym_expr_binary_token9] = ACTIONS(1036), - [aux_sym_expr_binary_token10] = ACTIONS(1036), - [aux_sym_expr_binary_token11] = ACTIONS(1036), - [aux_sym_expr_binary_token12] = ACTIONS(1036), - [aux_sym_expr_binary_token13] = ACTIONS(1036), - [aux_sym_expr_binary_token14] = ACTIONS(1036), - [aux_sym_expr_binary_token15] = ACTIONS(1036), - [aux_sym_expr_binary_token16] = ACTIONS(1036), - [aux_sym_expr_binary_token17] = ACTIONS(1036), - [aux_sym_expr_binary_token18] = ACTIONS(1036), - [aux_sym_expr_binary_token19] = ACTIONS(1036), - [aux_sym_expr_binary_token20] = ACTIONS(1036), - [aux_sym_expr_binary_token21] = ACTIONS(1036), - [aux_sym_expr_binary_token22] = ACTIONS(1036), - [aux_sym_expr_binary_token23] = ACTIONS(1036), - [aux_sym_expr_binary_token24] = ACTIONS(1036), - [aux_sym_expr_binary_token25] = ACTIONS(1036), - [aux_sym_expr_binary_token26] = ACTIONS(1036), - [aux_sym_expr_binary_token27] = ACTIONS(1036), - [aux_sym_expr_binary_token28] = ACTIONS(1036), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1036), - [anon_sym_DOT_DOT2] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(1034), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1036), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1036), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1036), - [aux_sym__val_number_decimal_token1] = ACTIONS(1034), - [aux_sym__val_number_decimal_token2] = ACTIONS(1036), - [aux_sym__val_number_decimal_token3] = ACTIONS(1036), - [aux_sym__val_number_decimal_token4] = ACTIONS(1036), - [aux_sym__val_number_token1] = ACTIONS(1036), - [aux_sym__val_number_token2] = ACTIONS(1036), - [aux_sym__val_number_token3] = ACTIONS(1036), - [anon_sym_DQUOTE] = ACTIONS(1036), - [sym__str_single_quotes] = ACTIONS(1036), - [sym__str_back_ticks] = ACTIONS(1036), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1036), - [aux_sym_record_entry_token1] = ACTIONS(1036), - [anon_sym_PLUS] = ACTIONS(1034), - [anon_sym_err_GT] = ACTIONS(1034), - [anon_sym_out_GT] = ACTIONS(1034), - [anon_sym_e_GT] = ACTIONS(1034), - [anon_sym_o_GT] = ACTIONS(1034), - [anon_sym_err_PLUSout_GT] = ACTIONS(1034), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1034), - [anon_sym_o_PLUSe_GT] = ACTIONS(1034), - [anon_sym_e_PLUSo_GT] = ACTIONS(1034), - [anon_sym_err_GT_GT] = ACTIONS(1036), - [anon_sym_out_GT_GT] = ACTIONS(1036), - [anon_sym_e_GT_GT] = ACTIONS(1036), - [anon_sym_o_GT_GT] = ACTIONS(1036), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1036), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1036), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1036), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1036), - [anon_sym_POUND] = ACTIONS(247), - }, - [167] = { - [sym_comment] = STATE(167), [anon_sym_export] = ACTIONS(1038), [anon_sym_alias] = ACTIONS(1038), [anon_sym_EQ] = ACTIONS(1038), @@ -96108,10 +96854,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1040), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1040), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1040), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1040), }, - [168] = { - [sym_comment] = STATE(168), + [167] = { + [sym_comment] = STATE(167), [anon_sym_export] = ACTIONS(1042), [anon_sym_alias] = ACTIONS(1042), [anon_sym_EQ] = ACTIONS(1042), @@ -96211,7 +96958,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(1042), [anon_sym_new] = ACTIONS(1042), [anon_sym_as] = ACTIONS(1042), - [anon_sym_QMARK2] = ACTIONS(1044), + [anon_sym_QMARK2] = ACTIONS(1046), [aux_sym_expr_binary_token1] = ACTIONS(1044), [aux_sym_expr_binary_token2] = ACTIONS(1044), [aux_sym_expr_binary_token3] = ACTIONS(1044), @@ -96275,342 +97022,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1044), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1044), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1044), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1044), + }, + [168] = { + [sym_comment] = STATE(168), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_alias] = ACTIONS(1048), + [anon_sym_EQ] = ACTIONS(1048), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_let_DASHenv] = ACTIONS(1048), + [anon_sym_mut] = ACTIONS(1048), + [anon_sym_const] = ACTIONS(1048), + [anon_sym_PLUS_EQ] = ACTIONS(1050), + [anon_sym_DASH_EQ] = ACTIONS(1050), + [anon_sym_STAR_EQ] = ACTIONS(1050), + [anon_sym_SLASH_EQ] = ACTIONS(1050), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1050), + [aux_sym_cmd_identifier_token1] = ACTIONS(1048), + [aux_sym_cmd_identifier_token2] = ACTIONS(1048), + [aux_sym_cmd_identifier_token3] = ACTIONS(1048), + [aux_sym_cmd_identifier_token4] = ACTIONS(1048), + [aux_sym_cmd_identifier_token5] = ACTIONS(1048), + [aux_sym_cmd_identifier_token6] = ACTIONS(1048), + [aux_sym_cmd_identifier_token7] = ACTIONS(1048), + [aux_sym_cmd_identifier_token8] = ACTIONS(1048), + [aux_sym_cmd_identifier_token9] = ACTIONS(1048), + [aux_sym_cmd_identifier_token10] = ACTIONS(1048), + [aux_sym_cmd_identifier_token11] = ACTIONS(1048), + [aux_sym_cmd_identifier_token12] = ACTIONS(1048), + [aux_sym_cmd_identifier_token13] = ACTIONS(1048), + [aux_sym_cmd_identifier_token14] = ACTIONS(1048), + [aux_sym_cmd_identifier_token15] = ACTIONS(1048), + [aux_sym_cmd_identifier_token16] = ACTIONS(1048), + [aux_sym_cmd_identifier_token17] = ACTIONS(1048), + [aux_sym_cmd_identifier_token18] = ACTIONS(1048), + [aux_sym_cmd_identifier_token19] = ACTIONS(1048), + [aux_sym_cmd_identifier_token20] = ACTIONS(1048), + [aux_sym_cmd_identifier_token21] = ACTIONS(1048), + [aux_sym_cmd_identifier_token22] = ACTIONS(1048), + [aux_sym_cmd_identifier_token23] = ACTIONS(1048), + [aux_sym_cmd_identifier_token24] = ACTIONS(1048), + [aux_sym_cmd_identifier_token25] = ACTIONS(1048), + [aux_sym_cmd_identifier_token26] = ACTIONS(1048), + [aux_sym_cmd_identifier_token27] = ACTIONS(1048), + [aux_sym_cmd_identifier_token28] = ACTIONS(1048), + [aux_sym_cmd_identifier_token29] = ACTIONS(1048), + [aux_sym_cmd_identifier_token30] = ACTIONS(1048), + [aux_sym_cmd_identifier_token31] = ACTIONS(1048), + [aux_sym_cmd_identifier_token32] = ACTIONS(1048), + [aux_sym_cmd_identifier_token33] = ACTIONS(1048), + [aux_sym_cmd_identifier_token34] = ACTIONS(1048), + [aux_sym_cmd_identifier_token35] = ACTIONS(1048), + [aux_sym_cmd_identifier_token36] = ACTIONS(1048), + [anon_sym_true] = ACTIONS(1050), + [anon_sym_false] = ACTIONS(1050), + [anon_sym_null] = ACTIONS(1050), + [aux_sym_cmd_identifier_token38] = ACTIONS(1048), + [aux_sym_cmd_identifier_token39] = ACTIONS(1050), + [aux_sym_cmd_identifier_token40] = ACTIONS(1050), + [sym__newline] = ACTIONS(1048), + [anon_sym_SEMI] = ACTIONS(1050), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_err_GT_PIPE] = ACTIONS(1050), + [anon_sym_out_GT_PIPE] = ACTIONS(1050), + [anon_sym_e_GT_PIPE] = ACTIONS(1050), + [anon_sym_o_GT_PIPE] = ACTIONS(1050), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1050), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1050), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1050), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1050), + [anon_sym_def] = ACTIONS(1048), + [anon_sym_export_DASHenv] = ACTIONS(1048), + [anon_sym_extern] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_use] = ACTIONS(1048), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_COMMA] = ACTIONS(1050), + [anon_sym_DOLLAR] = ACTIONS(1050), + [anon_sym_error] = ACTIONS(1048), + [anon_sym_list] = ACTIONS(1048), + [anon_sym_DASH] = ACTIONS(1048), + [anon_sym_break] = ACTIONS(1048), + [anon_sym_continue] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1048), + [anon_sym_in] = ACTIONS(1048), + [anon_sym_loop] = ACTIONS(1048), + [anon_sym_make] = ACTIONS(1048), + [anon_sym_while] = ACTIONS(1048), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_if] = ACTIONS(1048), + [anon_sym_else] = ACTIONS(1048), + [anon_sym_match] = ACTIONS(1048), + [anon_sym_RBRACE] = ACTIONS(1050), + [anon_sym_try] = ACTIONS(1048), + [anon_sym_catch] = ACTIONS(1048), + [anon_sym_return] = ACTIONS(1048), + [anon_sym_source] = ACTIONS(1048), + [anon_sym_source_DASHenv] = ACTIONS(1048), + [anon_sym_register] = ACTIONS(1048), + [anon_sym_hide] = ACTIONS(1048), + [anon_sym_hide_DASHenv] = ACTIONS(1048), + [anon_sym_overlay] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1048), + [anon_sym_as] = ACTIONS(1048), + [anon_sym_QMARK2] = ACTIONS(1052), + [aux_sym_expr_binary_token1] = ACTIONS(1050), + [aux_sym_expr_binary_token2] = ACTIONS(1050), + [aux_sym_expr_binary_token3] = ACTIONS(1050), + [aux_sym_expr_binary_token4] = ACTIONS(1050), + [aux_sym_expr_binary_token5] = ACTIONS(1050), + [aux_sym_expr_binary_token6] = ACTIONS(1050), + [aux_sym_expr_binary_token7] = ACTIONS(1050), + [aux_sym_expr_binary_token8] = ACTIONS(1050), + [aux_sym_expr_binary_token9] = ACTIONS(1050), + [aux_sym_expr_binary_token10] = ACTIONS(1050), + [aux_sym_expr_binary_token11] = ACTIONS(1050), + [aux_sym_expr_binary_token12] = ACTIONS(1050), + [aux_sym_expr_binary_token13] = ACTIONS(1050), + [aux_sym_expr_binary_token14] = ACTIONS(1050), + [aux_sym_expr_binary_token15] = ACTIONS(1050), + [aux_sym_expr_binary_token16] = ACTIONS(1050), + [aux_sym_expr_binary_token17] = ACTIONS(1050), + [aux_sym_expr_binary_token18] = ACTIONS(1050), + [aux_sym_expr_binary_token19] = ACTIONS(1050), + [aux_sym_expr_binary_token20] = ACTIONS(1050), + [aux_sym_expr_binary_token21] = ACTIONS(1050), + [aux_sym_expr_binary_token22] = ACTIONS(1050), + [aux_sym_expr_binary_token23] = ACTIONS(1050), + [aux_sym_expr_binary_token24] = ACTIONS(1050), + [aux_sym_expr_binary_token25] = ACTIONS(1050), + [aux_sym_expr_binary_token26] = ACTIONS(1050), + [aux_sym_expr_binary_token27] = ACTIONS(1050), + [aux_sym_expr_binary_token28] = ACTIONS(1050), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1050), + [anon_sym_DOT_DOT2] = ACTIONS(1048), + [anon_sym_DOT] = ACTIONS(1048), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1050), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1050), + [aux_sym__val_number_decimal_token1] = ACTIONS(1048), + [aux_sym__val_number_decimal_token2] = ACTIONS(1050), + [aux_sym__val_number_decimal_token3] = ACTIONS(1050), + [aux_sym__val_number_decimal_token4] = ACTIONS(1050), + [aux_sym__val_number_token1] = ACTIONS(1050), + [aux_sym__val_number_token2] = ACTIONS(1050), + [aux_sym__val_number_token3] = ACTIONS(1050), + [anon_sym_DQUOTE] = ACTIONS(1050), + [sym__str_single_quotes] = ACTIONS(1050), + [sym__str_back_ticks] = ACTIONS(1050), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1050), + [aux_sym_record_entry_token1] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1048), + [anon_sym_err_GT] = ACTIONS(1048), + [anon_sym_out_GT] = ACTIONS(1048), + [anon_sym_e_GT] = ACTIONS(1048), + [anon_sym_o_GT] = ACTIONS(1048), + [anon_sym_err_PLUSout_GT] = ACTIONS(1048), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1048), + [anon_sym_o_PLUSe_GT] = ACTIONS(1048), + [anon_sym_e_PLUSo_GT] = ACTIONS(1048), + [anon_sym_err_GT_GT] = ACTIONS(1050), + [anon_sym_out_GT_GT] = ACTIONS(1050), + [anon_sym_e_GT_GT] = ACTIONS(1050), + [anon_sym_o_GT_GT] = ACTIONS(1050), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1050), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1050), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1050), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1050), }, [169] = { [sym_comment] = STATE(169), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_alias] = ACTIONS(1046), - [anon_sym_EQ] = ACTIONS(1046), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_let_DASHenv] = ACTIONS(1046), - [anon_sym_mut] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_PLUS_EQ] = ACTIONS(1048), - [anon_sym_DASH_EQ] = ACTIONS(1048), - [anon_sym_STAR_EQ] = ACTIONS(1048), - [anon_sym_SLASH_EQ] = ACTIONS(1048), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1048), - [aux_sym_cmd_identifier_token1] = ACTIONS(1046), - [aux_sym_cmd_identifier_token2] = ACTIONS(1046), - [aux_sym_cmd_identifier_token3] = ACTIONS(1046), - [aux_sym_cmd_identifier_token4] = ACTIONS(1046), - [aux_sym_cmd_identifier_token5] = ACTIONS(1046), - [aux_sym_cmd_identifier_token6] = ACTIONS(1046), - [aux_sym_cmd_identifier_token7] = ACTIONS(1046), - [aux_sym_cmd_identifier_token8] = ACTIONS(1046), - [aux_sym_cmd_identifier_token9] = ACTIONS(1046), - [aux_sym_cmd_identifier_token10] = ACTIONS(1046), - [aux_sym_cmd_identifier_token11] = ACTIONS(1046), - [aux_sym_cmd_identifier_token12] = ACTIONS(1046), - [aux_sym_cmd_identifier_token13] = ACTIONS(1046), - [aux_sym_cmd_identifier_token14] = ACTIONS(1046), - [aux_sym_cmd_identifier_token15] = ACTIONS(1046), - [aux_sym_cmd_identifier_token16] = ACTIONS(1046), - [aux_sym_cmd_identifier_token17] = ACTIONS(1046), - [aux_sym_cmd_identifier_token18] = ACTIONS(1046), - [aux_sym_cmd_identifier_token19] = ACTIONS(1046), - [aux_sym_cmd_identifier_token20] = ACTIONS(1046), - [aux_sym_cmd_identifier_token21] = ACTIONS(1046), - [aux_sym_cmd_identifier_token22] = ACTIONS(1046), - [aux_sym_cmd_identifier_token23] = ACTIONS(1046), - [aux_sym_cmd_identifier_token24] = ACTIONS(1046), - [aux_sym_cmd_identifier_token25] = ACTIONS(1046), - [aux_sym_cmd_identifier_token26] = ACTIONS(1046), - [aux_sym_cmd_identifier_token27] = ACTIONS(1046), - [aux_sym_cmd_identifier_token28] = ACTIONS(1046), - [aux_sym_cmd_identifier_token29] = ACTIONS(1046), - [aux_sym_cmd_identifier_token30] = ACTIONS(1046), - [aux_sym_cmd_identifier_token31] = ACTIONS(1046), - [aux_sym_cmd_identifier_token32] = ACTIONS(1046), - [aux_sym_cmd_identifier_token33] = ACTIONS(1046), - [aux_sym_cmd_identifier_token34] = ACTIONS(1046), - [aux_sym_cmd_identifier_token35] = ACTIONS(1046), - [aux_sym_cmd_identifier_token36] = ACTIONS(1046), - [anon_sym_true] = ACTIONS(1048), - [anon_sym_false] = ACTIONS(1048), - [anon_sym_null] = ACTIONS(1048), - [aux_sym_cmd_identifier_token38] = ACTIONS(1046), - [aux_sym_cmd_identifier_token39] = ACTIONS(1048), - [aux_sym_cmd_identifier_token40] = ACTIONS(1048), - [sym__newline] = ACTIONS(1046), - [anon_sym_SEMI] = ACTIONS(1048), - [anon_sym_PIPE] = ACTIONS(1048), - [anon_sym_err_GT_PIPE] = ACTIONS(1048), - [anon_sym_out_GT_PIPE] = ACTIONS(1048), - [anon_sym_e_GT_PIPE] = ACTIONS(1048), - [anon_sym_o_GT_PIPE] = ACTIONS(1048), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1048), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1048), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1048), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1048), - [anon_sym_def] = ACTIONS(1046), - [anon_sym_export_DASHenv] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_use] = ACTIONS(1046), - [anon_sym_LPAREN] = ACTIONS(1048), - [anon_sym_COMMA] = ACTIONS(1048), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_error] = ACTIONS(1046), - [anon_sym_list] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_break] = ACTIONS(1046), - [anon_sym_continue] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1046), - [anon_sym_in] = ACTIONS(1046), - [anon_sym_loop] = ACTIONS(1046), - [anon_sym_make] = ACTIONS(1046), - [anon_sym_while] = ACTIONS(1046), - [anon_sym_do] = ACTIONS(1046), - [anon_sym_if] = ACTIONS(1046), - [anon_sym_else] = ACTIONS(1046), - [anon_sym_match] = ACTIONS(1046), - [anon_sym_RBRACE] = ACTIONS(1048), - [anon_sym_try] = ACTIONS(1046), - [anon_sym_catch] = ACTIONS(1046), - [anon_sym_return] = ACTIONS(1046), - [anon_sym_source] = ACTIONS(1046), - [anon_sym_source_DASHenv] = ACTIONS(1046), - [anon_sym_register] = ACTIONS(1046), - [anon_sym_hide] = ACTIONS(1046), - [anon_sym_hide_DASHenv] = ACTIONS(1046), - [anon_sym_overlay] = ACTIONS(1046), - [anon_sym_new] = ACTIONS(1046), - [anon_sym_as] = ACTIONS(1046), - [aux_sym_expr_binary_token1] = ACTIONS(1048), - [aux_sym_expr_binary_token2] = ACTIONS(1048), - [aux_sym_expr_binary_token3] = ACTIONS(1048), - [aux_sym_expr_binary_token4] = ACTIONS(1048), - [aux_sym_expr_binary_token5] = ACTIONS(1048), - [aux_sym_expr_binary_token6] = ACTIONS(1048), - [aux_sym_expr_binary_token7] = ACTIONS(1048), - [aux_sym_expr_binary_token8] = ACTIONS(1048), - [aux_sym_expr_binary_token9] = ACTIONS(1048), - [aux_sym_expr_binary_token10] = ACTIONS(1048), - [aux_sym_expr_binary_token11] = ACTIONS(1048), - [aux_sym_expr_binary_token12] = ACTIONS(1048), - [aux_sym_expr_binary_token13] = ACTIONS(1048), - [aux_sym_expr_binary_token14] = ACTIONS(1048), - [aux_sym_expr_binary_token15] = ACTIONS(1048), - [aux_sym_expr_binary_token16] = ACTIONS(1048), - [aux_sym_expr_binary_token17] = ACTIONS(1048), - [aux_sym_expr_binary_token18] = ACTIONS(1048), - [aux_sym_expr_binary_token19] = ACTIONS(1048), - [aux_sym_expr_binary_token20] = ACTIONS(1048), - [aux_sym_expr_binary_token21] = ACTIONS(1048), - [aux_sym_expr_binary_token22] = ACTIONS(1048), - [aux_sym_expr_binary_token23] = ACTIONS(1048), - [aux_sym_expr_binary_token24] = ACTIONS(1048), - [aux_sym_expr_binary_token25] = ACTIONS(1048), - [aux_sym_expr_binary_token26] = ACTIONS(1048), - [aux_sym_expr_binary_token27] = ACTIONS(1048), - [aux_sym_expr_binary_token28] = ACTIONS(1048), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1048), - [anon_sym_DOT_DOT2] = ACTIONS(1046), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1048), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1048), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1048), - [aux_sym__val_number_decimal_token1] = ACTIONS(1046), - [aux_sym__val_number_decimal_token2] = ACTIONS(1048), - [aux_sym__val_number_decimal_token3] = ACTIONS(1048), - [aux_sym__val_number_decimal_token4] = ACTIONS(1048), - [aux_sym__val_number_token1] = ACTIONS(1048), - [aux_sym__val_number_token2] = ACTIONS(1048), - [aux_sym__val_number_token3] = ACTIONS(1048), - [anon_sym_DQUOTE] = ACTIONS(1048), - [sym__str_single_quotes] = ACTIONS(1048), - [sym__str_back_ticks] = ACTIONS(1048), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1048), - [aux_sym_record_entry_token1] = ACTIONS(1048), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_err_GT] = ACTIONS(1046), - [anon_sym_out_GT] = ACTIONS(1046), - [anon_sym_e_GT] = ACTIONS(1046), - [anon_sym_o_GT] = ACTIONS(1046), - [anon_sym_err_PLUSout_GT] = ACTIONS(1046), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1046), - [anon_sym_o_PLUSe_GT] = ACTIONS(1046), - [anon_sym_e_PLUSo_GT] = ACTIONS(1046), - [anon_sym_err_GT_GT] = ACTIONS(1048), - [anon_sym_out_GT_GT] = ACTIONS(1048), - [anon_sym_e_GT_GT] = ACTIONS(1048), - [anon_sym_o_GT_GT] = ACTIONS(1048), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1048), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1048), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1048), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1048), - [anon_sym_POUND] = ACTIONS(247), - }, - [170] = { - [sym_comment] = STATE(170), - [anon_sym_export] = ACTIONS(1050), - [anon_sym_alias] = ACTIONS(1050), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_let] = ACTIONS(1050), - [anon_sym_let_DASHenv] = ACTIONS(1050), - [anon_sym_mut] = ACTIONS(1050), - [anon_sym_const] = ACTIONS(1050), - [anon_sym_PLUS_EQ] = ACTIONS(1052), - [anon_sym_DASH_EQ] = ACTIONS(1052), - [anon_sym_STAR_EQ] = ACTIONS(1052), - [anon_sym_SLASH_EQ] = ACTIONS(1052), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1052), - [aux_sym_cmd_identifier_token1] = ACTIONS(1050), - [aux_sym_cmd_identifier_token2] = ACTIONS(1050), - [aux_sym_cmd_identifier_token3] = ACTIONS(1050), - [aux_sym_cmd_identifier_token4] = ACTIONS(1050), - [aux_sym_cmd_identifier_token5] = ACTIONS(1050), - [aux_sym_cmd_identifier_token6] = ACTIONS(1050), - [aux_sym_cmd_identifier_token7] = ACTIONS(1050), - [aux_sym_cmd_identifier_token8] = ACTIONS(1050), - [aux_sym_cmd_identifier_token9] = ACTIONS(1050), - [aux_sym_cmd_identifier_token10] = ACTIONS(1050), - [aux_sym_cmd_identifier_token11] = ACTIONS(1050), - [aux_sym_cmd_identifier_token12] = ACTIONS(1050), - [aux_sym_cmd_identifier_token13] = ACTIONS(1050), - [aux_sym_cmd_identifier_token14] = ACTIONS(1050), - [aux_sym_cmd_identifier_token15] = ACTIONS(1050), - [aux_sym_cmd_identifier_token16] = ACTIONS(1050), - [aux_sym_cmd_identifier_token17] = ACTIONS(1050), - [aux_sym_cmd_identifier_token18] = ACTIONS(1050), - [aux_sym_cmd_identifier_token19] = ACTIONS(1050), - [aux_sym_cmd_identifier_token20] = ACTIONS(1050), - [aux_sym_cmd_identifier_token21] = ACTIONS(1050), - [aux_sym_cmd_identifier_token22] = ACTIONS(1050), - [aux_sym_cmd_identifier_token23] = ACTIONS(1050), - [aux_sym_cmd_identifier_token24] = ACTIONS(1050), - [aux_sym_cmd_identifier_token25] = ACTIONS(1050), - [aux_sym_cmd_identifier_token26] = ACTIONS(1050), - [aux_sym_cmd_identifier_token27] = ACTIONS(1050), - [aux_sym_cmd_identifier_token28] = ACTIONS(1050), - [aux_sym_cmd_identifier_token29] = ACTIONS(1050), - [aux_sym_cmd_identifier_token30] = ACTIONS(1050), - [aux_sym_cmd_identifier_token31] = ACTIONS(1050), - [aux_sym_cmd_identifier_token32] = ACTIONS(1050), - [aux_sym_cmd_identifier_token33] = ACTIONS(1050), - [aux_sym_cmd_identifier_token34] = ACTIONS(1050), - [aux_sym_cmd_identifier_token35] = ACTIONS(1050), - [aux_sym_cmd_identifier_token36] = ACTIONS(1050), - [anon_sym_true] = ACTIONS(1052), - [anon_sym_false] = ACTIONS(1052), - [anon_sym_null] = ACTIONS(1052), - [aux_sym_cmd_identifier_token38] = ACTIONS(1050), - [aux_sym_cmd_identifier_token39] = ACTIONS(1052), - [aux_sym_cmd_identifier_token40] = ACTIONS(1052), - [sym__newline] = ACTIONS(1050), - [anon_sym_SEMI] = ACTIONS(1052), - [anon_sym_PIPE] = ACTIONS(1052), - [anon_sym_err_GT_PIPE] = ACTIONS(1052), - [anon_sym_out_GT_PIPE] = ACTIONS(1052), - [anon_sym_e_GT_PIPE] = ACTIONS(1052), - [anon_sym_o_GT_PIPE] = ACTIONS(1052), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1052), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1052), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1052), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1052), - [anon_sym_def] = ACTIONS(1050), - [anon_sym_export_DASHenv] = ACTIONS(1050), - [anon_sym_extern] = ACTIONS(1050), - [anon_sym_module] = ACTIONS(1050), - [anon_sym_use] = ACTIONS(1050), - [anon_sym_LPAREN] = ACTIONS(1052), - [anon_sym_COMMA] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(1052), - [anon_sym_error] = ACTIONS(1050), - [anon_sym_list] = ACTIONS(1050), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_break] = ACTIONS(1050), - [anon_sym_continue] = ACTIONS(1050), - [anon_sym_for] = ACTIONS(1050), - [anon_sym_in] = ACTIONS(1050), - [anon_sym_loop] = ACTIONS(1050), - [anon_sym_make] = ACTIONS(1050), - [anon_sym_while] = ACTIONS(1050), - [anon_sym_do] = ACTIONS(1050), - [anon_sym_if] = ACTIONS(1050), - [anon_sym_else] = ACTIONS(1050), - [anon_sym_match] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(1052), - [anon_sym_try] = ACTIONS(1050), - [anon_sym_catch] = ACTIONS(1050), - [anon_sym_return] = ACTIONS(1050), - [anon_sym_source] = ACTIONS(1050), - [anon_sym_source_DASHenv] = ACTIONS(1050), - [anon_sym_register] = ACTIONS(1050), - [anon_sym_hide] = ACTIONS(1050), - [anon_sym_hide_DASHenv] = ACTIONS(1050), - [anon_sym_overlay] = ACTIONS(1050), - [anon_sym_new] = ACTIONS(1050), - [anon_sym_as] = ACTIONS(1050), - [aux_sym_expr_binary_token1] = ACTIONS(1052), - [aux_sym_expr_binary_token2] = ACTIONS(1052), - [aux_sym_expr_binary_token3] = ACTIONS(1052), - [aux_sym_expr_binary_token4] = ACTIONS(1052), - [aux_sym_expr_binary_token5] = ACTIONS(1052), - [aux_sym_expr_binary_token6] = ACTIONS(1052), - [aux_sym_expr_binary_token7] = ACTIONS(1052), - [aux_sym_expr_binary_token8] = ACTIONS(1052), - [aux_sym_expr_binary_token9] = ACTIONS(1052), - [aux_sym_expr_binary_token10] = ACTIONS(1052), - [aux_sym_expr_binary_token11] = ACTIONS(1052), - [aux_sym_expr_binary_token12] = ACTIONS(1052), - [aux_sym_expr_binary_token13] = ACTIONS(1052), - [aux_sym_expr_binary_token14] = ACTIONS(1052), - [aux_sym_expr_binary_token15] = ACTIONS(1052), - [aux_sym_expr_binary_token16] = ACTIONS(1052), - [aux_sym_expr_binary_token17] = ACTIONS(1052), - [aux_sym_expr_binary_token18] = ACTIONS(1052), - [aux_sym_expr_binary_token19] = ACTIONS(1052), - [aux_sym_expr_binary_token20] = ACTIONS(1052), - [aux_sym_expr_binary_token21] = ACTIONS(1052), - [aux_sym_expr_binary_token22] = ACTIONS(1052), - [aux_sym_expr_binary_token23] = ACTIONS(1052), - [aux_sym_expr_binary_token24] = ACTIONS(1052), - [aux_sym_expr_binary_token25] = ACTIONS(1052), - [aux_sym_expr_binary_token26] = ACTIONS(1052), - [aux_sym_expr_binary_token27] = ACTIONS(1052), - [aux_sym_expr_binary_token28] = ACTIONS(1052), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1052), - [anon_sym_DOT_DOT2] = ACTIONS(1050), - [anon_sym_DOT] = ACTIONS(1050), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1052), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1052), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1052), - [aux_sym__val_number_decimal_token1] = ACTIONS(1050), - [aux_sym__val_number_decimal_token2] = ACTIONS(1052), - [aux_sym__val_number_decimal_token3] = ACTIONS(1052), - [aux_sym__val_number_decimal_token4] = ACTIONS(1052), - [aux_sym__val_number_token1] = ACTIONS(1052), - [aux_sym__val_number_token2] = ACTIONS(1052), - [aux_sym__val_number_token3] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(1052), - [sym__str_single_quotes] = ACTIONS(1052), - [sym__str_back_ticks] = ACTIONS(1052), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1052), - [aux_sym_record_entry_token1] = ACTIONS(1052), - [anon_sym_PLUS] = ACTIONS(1050), - [anon_sym_err_GT] = ACTIONS(1050), - [anon_sym_out_GT] = ACTIONS(1050), - [anon_sym_e_GT] = ACTIONS(1050), - [anon_sym_o_GT] = ACTIONS(1050), - [anon_sym_err_PLUSout_GT] = ACTIONS(1050), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1050), - [anon_sym_o_PLUSe_GT] = ACTIONS(1050), - [anon_sym_e_PLUSo_GT] = ACTIONS(1050), - [anon_sym_err_GT_GT] = ACTIONS(1052), - [anon_sym_out_GT_GT] = ACTIONS(1052), - [anon_sym_e_GT_GT] = ACTIONS(1052), - [anon_sym_o_GT_GT] = ACTIONS(1052), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1052), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1052), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1052), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1052), - [anon_sym_POUND] = ACTIONS(247), - }, - [171] = { - [sym_comment] = STATE(171), [anon_sym_export] = ACTIONS(1054), [anon_sym_alias] = ACTIONS(1054), [anon_sym_EQ] = ACTIONS(1054), @@ -96710,6 +97294,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(1054), [anon_sym_new] = ACTIONS(1054), [anon_sym_as] = ACTIONS(1054), + [anon_sym_QMARK2] = ACTIONS(1056), [aux_sym_expr_binary_token1] = ACTIONS(1056), [aux_sym_expr_binary_token2] = ACTIONS(1056), [aux_sym_expr_binary_token3] = ACTIONS(1056), @@ -96773,10 +97358,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1056), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1056), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1056), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1056), }, - [172] = { - [sym_comment] = STATE(172), + [170] = { + [sym_comment] = STATE(170), [anon_sym_export] = ACTIONS(1058), [anon_sym_alias] = ACTIONS(1058), [anon_sym_EQ] = ACTIONS(1058), @@ -96876,6 +97462,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(1058), [anon_sym_new] = ACTIONS(1058), [anon_sym_as] = ACTIONS(1058), + [anon_sym_QMARK2] = ACTIONS(1060), [aux_sym_expr_binary_token1] = ACTIONS(1060), [aux_sym_expr_binary_token2] = ACTIONS(1060), [aux_sym_expr_binary_token3] = ACTIONS(1060), @@ -96906,6 +97493,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_binary_token28] = ACTIONS(1060), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1060), [anon_sym_DOT_DOT2] = ACTIONS(1058), + [anon_sym_DOT] = ACTIONS(1058), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1060), [anon_sym_DOT_DOT_LT2] = ACTIONS(1060), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1060), @@ -96938,22 +97526,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1060), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1060), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1060), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1060), }, - [173] = { - [sym_comment] = STATE(173), + [171] = { + [sym_comment] = STATE(171), [anon_sym_export] = ACTIONS(1062), [anon_sym_alias] = ACTIONS(1062), - [anon_sym_EQ] = ACTIONS(1064), + [anon_sym_EQ] = ACTIONS(1062), [anon_sym_let] = ACTIONS(1062), [anon_sym_let_DASHenv] = ACTIONS(1062), [anon_sym_mut] = ACTIONS(1062), [anon_sym_const] = ACTIONS(1062), - [anon_sym_PLUS_EQ] = ACTIONS(1066), - [anon_sym_DASH_EQ] = ACTIONS(1066), - [anon_sym_STAR_EQ] = ACTIONS(1066), - [anon_sym_SLASH_EQ] = ACTIONS(1066), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1066), + [anon_sym_PLUS_EQ] = ACTIONS(1064), + [anon_sym_DASH_EQ] = ACTIONS(1064), + [anon_sym_STAR_EQ] = ACTIONS(1064), + [anon_sym_SLASH_EQ] = ACTIONS(1064), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1064), [aux_sym_cmd_identifier_token1] = ACTIONS(1062), [aux_sym_cmd_identifier_token2] = ACTIONS(1062), [aux_sym_cmd_identifier_token3] = ACTIONS(1062), @@ -96990,31 +97579,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(1062), [aux_sym_cmd_identifier_token35] = ACTIONS(1062), [aux_sym_cmd_identifier_token36] = ACTIONS(1062), - [anon_sym_true] = ACTIONS(1068), - [anon_sym_false] = ACTIONS(1068), - [anon_sym_null] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1064), + [anon_sym_false] = ACTIONS(1064), + [anon_sym_null] = ACTIONS(1064), [aux_sym_cmd_identifier_token38] = ACTIONS(1062), - [aux_sym_cmd_identifier_token39] = ACTIONS(1068), - [aux_sym_cmd_identifier_token40] = ACTIONS(1068), - [sym__newline] = ACTIONS(1070), - [anon_sym_SEMI] = ACTIONS(1072), - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_err_GT_PIPE] = ACTIONS(1072), - [anon_sym_out_GT_PIPE] = ACTIONS(1072), - [anon_sym_e_GT_PIPE] = ACTIONS(1072), - [anon_sym_o_GT_PIPE] = ACTIONS(1072), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1072), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1072), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1072), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1072), + [aux_sym_cmd_identifier_token39] = ACTIONS(1064), + [aux_sym_cmd_identifier_token40] = ACTIONS(1064), + [sym__newline] = ACTIONS(1062), + [anon_sym_SEMI] = ACTIONS(1064), + [anon_sym_PIPE] = ACTIONS(1064), + [anon_sym_err_GT_PIPE] = ACTIONS(1064), + [anon_sym_out_GT_PIPE] = ACTIONS(1064), + [anon_sym_e_GT_PIPE] = ACTIONS(1064), + [anon_sym_o_GT_PIPE] = ACTIONS(1064), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1064), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1064), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1064), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1064), [anon_sym_def] = ACTIONS(1062), [anon_sym_export_DASHenv] = ACTIONS(1062), [anon_sym_extern] = ACTIONS(1062), [anon_sym_module] = ACTIONS(1062), [anon_sym_use] = ACTIONS(1062), - [anon_sym_LPAREN] = ACTIONS(1068), - [anon_sym_COMMA] = ACTIONS(1074), - [anon_sym_DOLLAR] = ACTIONS(1068), + [anon_sym_LPAREN] = ACTIONS(1064), + [anon_sym_COMMA] = ACTIONS(1064), + [anon_sym_DOLLAR] = ACTIONS(1064), [anon_sym_error] = ACTIONS(1062), [anon_sym_list] = ACTIONS(1062), [anon_sym_DASH] = ACTIONS(1062), @@ -97029,7 +97618,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1062), [anon_sym_else] = ACTIONS(1062), [anon_sym_match] = ACTIONS(1062), - [anon_sym_RBRACE] = ACTIONS(1076), + [anon_sym_RBRACE] = ACTIONS(1064), [anon_sym_try] = ACTIONS(1062), [anon_sym_catch] = ACTIONS(1062), [anon_sym_return] = ACTIONS(1062), @@ -97041,6 +97630,341 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(1062), [anon_sym_new] = ACTIONS(1062), [anon_sym_as] = ACTIONS(1062), + [anon_sym_QMARK2] = ACTIONS(1064), + [aux_sym_expr_binary_token1] = ACTIONS(1064), + [aux_sym_expr_binary_token2] = ACTIONS(1064), + [aux_sym_expr_binary_token3] = ACTIONS(1064), + [aux_sym_expr_binary_token4] = ACTIONS(1064), + [aux_sym_expr_binary_token5] = ACTIONS(1064), + [aux_sym_expr_binary_token6] = ACTIONS(1064), + [aux_sym_expr_binary_token7] = ACTIONS(1064), + [aux_sym_expr_binary_token8] = ACTIONS(1064), + [aux_sym_expr_binary_token9] = ACTIONS(1064), + [aux_sym_expr_binary_token10] = ACTIONS(1064), + [aux_sym_expr_binary_token11] = ACTIONS(1064), + [aux_sym_expr_binary_token12] = ACTIONS(1064), + [aux_sym_expr_binary_token13] = ACTIONS(1064), + [aux_sym_expr_binary_token14] = ACTIONS(1064), + [aux_sym_expr_binary_token15] = ACTIONS(1064), + [aux_sym_expr_binary_token16] = ACTIONS(1064), + [aux_sym_expr_binary_token17] = ACTIONS(1064), + [aux_sym_expr_binary_token18] = ACTIONS(1064), + [aux_sym_expr_binary_token19] = ACTIONS(1064), + [aux_sym_expr_binary_token20] = ACTIONS(1064), + [aux_sym_expr_binary_token21] = ACTIONS(1064), + [aux_sym_expr_binary_token22] = ACTIONS(1064), + [aux_sym_expr_binary_token23] = ACTIONS(1064), + [aux_sym_expr_binary_token24] = ACTIONS(1064), + [aux_sym_expr_binary_token25] = ACTIONS(1064), + [aux_sym_expr_binary_token26] = ACTIONS(1064), + [aux_sym_expr_binary_token27] = ACTIONS(1064), + [aux_sym_expr_binary_token28] = ACTIONS(1064), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1064), + [anon_sym_DOT_DOT2] = ACTIONS(1062), + [anon_sym_DOT] = ACTIONS(1062), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1064), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1064), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1064), + [aux_sym__val_number_decimal_token1] = ACTIONS(1062), + [aux_sym__val_number_decimal_token2] = ACTIONS(1064), + [aux_sym__val_number_decimal_token3] = ACTIONS(1064), + [aux_sym__val_number_decimal_token4] = ACTIONS(1064), + [aux_sym__val_number_token1] = ACTIONS(1064), + [aux_sym__val_number_token2] = ACTIONS(1064), + [aux_sym__val_number_token3] = ACTIONS(1064), + [anon_sym_DQUOTE] = ACTIONS(1064), + [sym__str_single_quotes] = ACTIONS(1064), + [sym__str_back_ticks] = ACTIONS(1064), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1064), + [aux_sym_record_entry_token1] = ACTIONS(1064), + [anon_sym_PLUS] = ACTIONS(1062), + [anon_sym_err_GT] = ACTIONS(1062), + [anon_sym_out_GT] = ACTIONS(1062), + [anon_sym_e_GT] = ACTIONS(1062), + [anon_sym_o_GT] = ACTIONS(1062), + [anon_sym_err_PLUSout_GT] = ACTIONS(1062), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1062), + [anon_sym_o_PLUSe_GT] = ACTIONS(1062), + [anon_sym_e_PLUSo_GT] = ACTIONS(1062), + [anon_sym_err_GT_GT] = ACTIONS(1064), + [anon_sym_out_GT_GT] = ACTIONS(1064), + [anon_sym_e_GT_GT] = ACTIONS(1064), + [anon_sym_o_GT_GT] = ACTIONS(1064), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1064), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1064), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1064), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1064), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1064), + }, + [172] = { + [sym_comment] = STATE(172), + [anon_sym_export] = ACTIONS(1066), + [anon_sym_alias] = ACTIONS(1066), + [anon_sym_EQ] = ACTIONS(1066), + [anon_sym_let] = ACTIONS(1066), + [anon_sym_let_DASHenv] = ACTIONS(1066), + [anon_sym_mut] = ACTIONS(1066), + [anon_sym_const] = ACTIONS(1066), + [anon_sym_PLUS_EQ] = ACTIONS(1068), + [anon_sym_DASH_EQ] = ACTIONS(1068), + [anon_sym_STAR_EQ] = ACTIONS(1068), + [anon_sym_SLASH_EQ] = ACTIONS(1068), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1068), + [aux_sym_cmd_identifier_token1] = ACTIONS(1066), + [aux_sym_cmd_identifier_token2] = ACTIONS(1066), + [aux_sym_cmd_identifier_token3] = ACTIONS(1066), + [aux_sym_cmd_identifier_token4] = ACTIONS(1066), + [aux_sym_cmd_identifier_token5] = ACTIONS(1066), + [aux_sym_cmd_identifier_token6] = ACTIONS(1066), + [aux_sym_cmd_identifier_token7] = ACTIONS(1066), + [aux_sym_cmd_identifier_token8] = ACTIONS(1066), + [aux_sym_cmd_identifier_token9] = ACTIONS(1066), + [aux_sym_cmd_identifier_token10] = ACTIONS(1066), + [aux_sym_cmd_identifier_token11] = ACTIONS(1066), + [aux_sym_cmd_identifier_token12] = ACTIONS(1066), + [aux_sym_cmd_identifier_token13] = ACTIONS(1066), + [aux_sym_cmd_identifier_token14] = ACTIONS(1066), + [aux_sym_cmd_identifier_token15] = ACTIONS(1066), + [aux_sym_cmd_identifier_token16] = ACTIONS(1066), + [aux_sym_cmd_identifier_token17] = ACTIONS(1066), + [aux_sym_cmd_identifier_token18] = ACTIONS(1066), + [aux_sym_cmd_identifier_token19] = ACTIONS(1066), + [aux_sym_cmd_identifier_token20] = ACTIONS(1066), + [aux_sym_cmd_identifier_token21] = ACTIONS(1066), + [aux_sym_cmd_identifier_token22] = ACTIONS(1066), + [aux_sym_cmd_identifier_token23] = ACTIONS(1066), + [aux_sym_cmd_identifier_token24] = ACTIONS(1066), + [aux_sym_cmd_identifier_token25] = ACTIONS(1066), + [aux_sym_cmd_identifier_token26] = ACTIONS(1066), + [aux_sym_cmd_identifier_token27] = ACTIONS(1066), + [aux_sym_cmd_identifier_token28] = ACTIONS(1066), + [aux_sym_cmd_identifier_token29] = ACTIONS(1066), + [aux_sym_cmd_identifier_token30] = ACTIONS(1066), + [aux_sym_cmd_identifier_token31] = ACTIONS(1066), + [aux_sym_cmd_identifier_token32] = ACTIONS(1066), + [aux_sym_cmd_identifier_token33] = ACTIONS(1066), + [aux_sym_cmd_identifier_token34] = ACTIONS(1066), + [aux_sym_cmd_identifier_token35] = ACTIONS(1066), + [aux_sym_cmd_identifier_token36] = ACTIONS(1066), + [anon_sym_true] = ACTIONS(1068), + [anon_sym_false] = ACTIONS(1068), + [anon_sym_null] = ACTIONS(1068), + [aux_sym_cmd_identifier_token38] = ACTIONS(1066), + [aux_sym_cmd_identifier_token39] = ACTIONS(1068), + [aux_sym_cmd_identifier_token40] = ACTIONS(1068), + [sym__newline] = ACTIONS(1066), + [anon_sym_SEMI] = ACTIONS(1068), + [anon_sym_PIPE] = ACTIONS(1068), + [anon_sym_err_GT_PIPE] = ACTIONS(1068), + [anon_sym_out_GT_PIPE] = ACTIONS(1068), + [anon_sym_e_GT_PIPE] = ACTIONS(1068), + [anon_sym_o_GT_PIPE] = ACTIONS(1068), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1068), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1068), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1068), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1068), + [anon_sym_def] = ACTIONS(1066), + [anon_sym_export_DASHenv] = ACTIONS(1066), + [anon_sym_extern] = ACTIONS(1066), + [anon_sym_module] = ACTIONS(1066), + [anon_sym_use] = ACTIONS(1066), + [anon_sym_LPAREN] = ACTIONS(1068), + [anon_sym_COMMA] = ACTIONS(1068), + [anon_sym_DOLLAR] = ACTIONS(1068), + [anon_sym_error] = ACTIONS(1066), + [anon_sym_list] = ACTIONS(1066), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_break] = ACTIONS(1066), + [anon_sym_continue] = ACTIONS(1066), + [anon_sym_for] = ACTIONS(1066), + [anon_sym_in] = ACTIONS(1066), + [anon_sym_loop] = ACTIONS(1066), + [anon_sym_make] = ACTIONS(1066), + [anon_sym_while] = ACTIONS(1066), + [anon_sym_do] = ACTIONS(1066), + [anon_sym_if] = ACTIONS(1066), + [anon_sym_else] = ACTIONS(1066), + [anon_sym_match] = ACTIONS(1066), + [anon_sym_RBRACE] = ACTIONS(1068), + [anon_sym_try] = ACTIONS(1066), + [anon_sym_catch] = ACTIONS(1066), + [anon_sym_return] = ACTIONS(1066), + [anon_sym_source] = ACTIONS(1066), + [anon_sym_source_DASHenv] = ACTIONS(1066), + [anon_sym_register] = ACTIONS(1066), + [anon_sym_hide] = ACTIONS(1066), + [anon_sym_hide_DASHenv] = ACTIONS(1066), + [anon_sym_overlay] = ACTIONS(1066), + [anon_sym_new] = ACTIONS(1066), + [anon_sym_as] = ACTIONS(1066), + [aux_sym_expr_binary_token1] = ACTIONS(1068), + [aux_sym_expr_binary_token2] = ACTIONS(1068), + [aux_sym_expr_binary_token3] = ACTIONS(1068), + [aux_sym_expr_binary_token4] = ACTIONS(1068), + [aux_sym_expr_binary_token5] = ACTIONS(1068), + [aux_sym_expr_binary_token6] = ACTIONS(1068), + [aux_sym_expr_binary_token7] = ACTIONS(1068), + [aux_sym_expr_binary_token8] = ACTIONS(1068), + [aux_sym_expr_binary_token9] = ACTIONS(1068), + [aux_sym_expr_binary_token10] = ACTIONS(1068), + [aux_sym_expr_binary_token11] = ACTIONS(1068), + [aux_sym_expr_binary_token12] = ACTIONS(1068), + [aux_sym_expr_binary_token13] = ACTIONS(1068), + [aux_sym_expr_binary_token14] = ACTIONS(1068), + [aux_sym_expr_binary_token15] = ACTIONS(1068), + [aux_sym_expr_binary_token16] = ACTIONS(1068), + [aux_sym_expr_binary_token17] = ACTIONS(1068), + [aux_sym_expr_binary_token18] = ACTIONS(1068), + [aux_sym_expr_binary_token19] = ACTIONS(1068), + [aux_sym_expr_binary_token20] = ACTIONS(1068), + [aux_sym_expr_binary_token21] = ACTIONS(1068), + [aux_sym_expr_binary_token22] = ACTIONS(1068), + [aux_sym_expr_binary_token23] = ACTIONS(1068), + [aux_sym_expr_binary_token24] = ACTIONS(1068), + [aux_sym_expr_binary_token25] = ACTIONS(1068), + [aux_sym_expr_binary_token26] = ACTIONS(1068), + [aux_sym_expr_binary_token27] = ACTIONS(1068), + [aux_sym_expr_binary_token28] = ACTIONS(1068), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1068), + [anon_sym_DOT_DOT2] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(1066), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1068), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1068), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1068), + [aux_sym__val_number_decimal_token1] = ACTIONS(1066), + [aux_sym__val_number_decimal_token2] = ACTIONS(1068), + [aux_sym__val_number_decimal_token3] = ACTIONS(1068), + [aux_sym__val_number_decimal_token4] = ACTIONS(1068), + [aux_sym__val_number_token1] = ACTIONS(1068), + [aux_sym__val_number_token2] = ACTIONS(1068), + [aux_sym__val_number_token3] = ACTIONS(1068), + [anon_sym_DQUOTE] = ACTIONS(1068), + [sym__str_single_quotes] = ACTIONS(1068), + [sym__str_back_ticks] = ACTIONS(1068), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1068), + [aux_sym_record_entry_token1] = ACTIONS(1068), + [anon_sym_PLUS] = ACTIONS(1066), + [anon_sym_err_GT] = ACTIONS(1066), + [anon_sym_out_GT] = ACTIONS(1066), + [anon_sym_e_GT] = ACTIONS(1066), + [anon_sym_o_GT] = ACTIONS(1066), + [anon_sym_err_PLUSout_GT] = ACTIONS(1066), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1066), + [anon_sym_o_PLUSe_GT] = ACTIONS(1066), + [anon_sym_e_PLUSo_GT] = ACTIONS(1066), + [anon_sym_err_GT_GT] = ACTIONS(1068), + [anon_sym_out_GT_GT] = ACTIONS(1068), + [anon_sym_e_GT_GT] = ACTIONS(1068), + [anon_sym_o_GT_GT] = ACTIONS(1068), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1068), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1068), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1068), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1068), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1068), + }, + [173] = { + [sym_comment] = STATE(173), + [anon_sym_export] = ACTIONS(1070), + [anon_sym_alias] = ACTIONS(1070), + [anon_sym_EQ] = ACTIONS(1070), + [anon_sym_let] = ACTIONS(1070), + [anon_sym_let_DASHenv] = ACTIONS(1070), + [anon_sym_mut] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(1070), + [anon_sym_PLUS_EQ] = ACTIONS(1072), + [anon_sym_DASH_EQ] = ACTIONS(1072), + [anon_sym_STAR_EQ] = ACTIONS(1072), + [anon_sym_SLASH_EQ] = ACTIONS(1072), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1072), + [aux_sym_cmd_identifier_token1] = ACTIONS(1070), + [aux_sym_cmd_identifier_token2] = ACTIONS(1070), + [aux_sym_cmd_identifier_token3] = ACTIONS(1070), + [aux_sym_cmd_identifier_token4] = ACTIONS(1070), + [aux_sym_cmd_identifier_token5] = ACTIONS(1070), + [aux_sym_cmd_identifier_token6] = ACTIONS(1070), + [aux_sym_cmd_identifier_token7] = ACTIONS(1070), + [aux_sym_cmd_identifier_token8] = ACTIONS(1070), + [aux_sym_cmd_identifier_token9] = ACTIONS(1070), + [aux_sym_cmd_identifier_token10] = ACTIONS(1070), + [aux_sym_cmd_identifier_token11] = ACTIONS(1070), + [aux_sym_cmd_identifier_token12] = ACTIONS(1070), + [aux_sym_cmd_identifier_token13] = ACTIONS(1070), + [aux_sym_cmd_identifier_token14] = ACTIONS(1070), + [aux_sym_cmd_identifier_token15] = ACTIONS(1070), + [aux_sym_cmd_identifier_token16] = ACTIONS(1070), + [aux_sym_cmd_identifier_token17] = ACTIONS(1070), + [aux_sym_cmd_identifier_token18] = ACTIONS(1070), + [aux_sym_cmd_identifier_token19] = ACTIONS(1070), + [aux_sym_cmd_identifier_token20] = ACTIONS(1070), + [aux_sym_cmd_identifier_token21] = ACTIONS(1070), + [aux_sym_cmd_identifier_token22] = ACTIONS(1070), + [aux_sym_cmd_identifier_token23] = ACTIONS(1070), + [aux_sym_cmd_identifier_token24] = ACTIONS(1070), + [aux_sym_cmd_identifier_token25] = ACTIONS(1070), + [aux_sym_cmd_identifier_token26] = ACTIONS(1070), + [aux_sym_cmd_identifier_token27] = ACTIONS(1070), + [aux_sym_cmd_identifier_token28] = ACTIONS(1070), + [aux_sym_cmd_identifier_token29] = ACTIONS(1070), + [aux_sym_cmd_identifier_token30] = ACTIONS(1070), + [aux_sym_cmd_identifier_token31] = ACTIONS(1070), + [aux_sym_cmd_identifier_token32] = ACTIONS(1070), + [aux_sym_cmd_identifier_token33] = ACTIONS(1070), + [aux_sym_cmd_identifier_token34] = ACTIONS(1070), + [aux_sym_cmd_identifier_token35] = ACTIONS(1070), + [aux_sym_cmd_identifier_token36] = ACTIONS(1070), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_null] = ACTIONS(1072), + [aux_sym_cmd_identifier_token38] = ACTIONS(1070), + [aux_sym_cmd_identifier_token39] = ACTIONS(1072), + [aux_sym_cmd_identifier_token40] = ACTIONS(1072), + [sym__newline] = ACTIONS(1070), + [anon_sym_SEMI] = ACTIONS(1072), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_err_GT_PIPE] = ACTIONS(1072), + [anon_sym_out_GT_PIPE] = ACTIONS(1072), + [anon_sym_e_GT_PIPE] = ACTIONS(1072), + [anon_sym_o_GT_PIPE] = ACTIONS(1072), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1072), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1072), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1072), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1072), + [anon_sym_def] = ACTIONS(1070), + [anon_sym_export_DASHenv] = ACTIONS(1070), + [anon_sym_extern] = ACTIONS(1070), + [anon_sym_module] = ACTIONS(1070), + [anon_sym_use] = ACTIONS(1070), + [anon_sym_LPAREN] = ACTIONS(1072), + [anon_sym_COMMA] = ACTIONS(1072), + [anon_sym_DOLLAR] = ACTIONS(1072), + [anon_sym_error] = ACTIONS(1070), + [anon_sym_list] = ACTIONS(1070), + [anon_sym_DASH] = ACTIONS(1070), + [anon_sym_break] = ACTIONS(1070), + [anon_sym_continue] = ACTIONS(1070), + [anon_sym_for] = ACTIONS(1070), + [anon_sym_in] = ACTIONS(1070), + [anon_sym_loop] = ACTIONS(1070), + [anon_sym_make] = ACTIONS(1070), + [anon_sym_while] = ACTIONS(1070), + [anon_sym_do] = ACTIONS(1070), + [anon_sym_if] = ACTIONS(1070), + [anon_sym_else] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_RBRACE] = ACTIONS(1072), + [anon_sym_try] = ACTIONS(1070), + [anon_sym_catch] = ACTIONS(1070), + [anon_sym_return] = ACTIONS(1070), + [anon_sym_source] = ACTIONS(1070), + [anon_sym_source_DASHenv] = ACTIONS(1070), + [anon_sym_register] = ACTIONS(1070), + [anon_sym_hide] = ACTIONS(1070), + [anon_sym_hide_DASHenv] = ACTIONS(1070), + [anon_sym_overlay] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1070), + [anon_sym_as] = ACTIONS(1070), [aux_sym_expr_binary_token1] = ACTIONS(1072), [aux_sym_expr_binary_token2] = ACTIONS(1072), [aux_sym_expr_binary_token3] = ACTIONS(1072), @@ -97069,24 +97993,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_binary_token26] = ACTIONS(1072), [aux_sym_expr_binary_token27] = ACTIONS(1072), [aux_sym_expr_binary_token28] = ACTIONS(1072), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1068), - [anon_sym_DOT_DOT2] = ACTIONS(1079), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1081), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1081), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1068), - [aux_sym__val_number_decimal_token1] = ACTIONS(1062), - [aux_sym__val_number_decimal_token2] = ACTIONS(1068), - [aux_sym__val_number_decimal_token3] = ACTIONS(1068), - [aux_sym__val_number_decimal_token4] = ACTIONS(1068), - [aux_sym__val_number_token1] = ACTIONS(1068), - [aux_sym__val_number_token2] = ACTIONS(1068), - [aux_sym__val_number_token3] = ACTIONS(1068), - [anon_sym_DQUOTE] = ACTIONS(1068), - [sym__str_single_quotes] = ACTIONS(1068), - [sym__str_back_ticks] = ACTIONS(1068), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1068), - [aux_sym_record_entry_token1] = ACTIONS(1083), - [anon_sym_PLUS] = ACTIONS(1062), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1072), + [anon_sym_DOT_DOT2] = ACTIONS(1070), + [anon_sym_DOT] = ACTIONS(1070), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1072), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1072), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1072), + [aux_sym__val_number_decimal_token1] = ACTIONS(1070), + [aux_sym__val_number_decimal_token2] = ACTIONS(1072), + [aux_sym__val_number_decimal_token3] = ACTIONS(1072), + [aux_sym__val_number_decimal_token4] = ACTIONS(1072), + [aux_sym__val_number_token1] = ACTIONS(1072), + [aux_sym__val_number_token2] = ACTIONS(1072), + [aux_sym__val_number_token3] = ACTIONS(1072), + [anon_sym_DQUOTE] = ACTIONS(1072), + [sym__str_single_quotes] = ACTIONS(1072), + [sym__str_back_ticks] = ACTIONS(1072), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1072), + [aux_sym_record_entry_token1] = ACTIONS(1072), + [anon_sym_PLUS] = ACTIONS(1070), [anon_sym_err_GT] = ACTIONS(1070), [anon_sym_out_GT] = ACTIONS(1070), [anon_sym_e_GT] = ACTIONS(1070), @@ -97103,534 +98028,674 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1072), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1072), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1072), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1072), }, [174] = { - [sym_pipeline] = STATE(6614), - [sym_cmd_identifier] = STATE(4514), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1445), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym_val_variable] = STATE(1446), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1465), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), [sym_comment] = STATE(174), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym_pipe_element_repeat2] = STATE(411), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_alias] = ACTIONS(1074), + [anon_sym_EQ] = ACTIONS(1074), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_let_DASHenv] = ACTIONS(1074), + [anon_sym_mut] = ACTIONS(1074), + [anon_sym_const] = ACTIONS(1074), + [anon_sym_PLUS_EQ] = ACTIONS(1076), + [anon_sym_DASH_EQ] = ACTIONS(1076), + [anon_sym_STAR_EQ] = ACTIONS(1076), + [anon_sym_SLASH_EQ] = ACTIONS(1076), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1076), + [aux_sym_cmd_identifier_token1] = ACTIONS(1074), + [aux_sym_cmd_identifier_token2] = ACTIONS(1074), + [aux_sym_cmd_identifier_token3] = ACTIONS(1074), + [aux_sym_cmd_identifier_token4] = ACTIONS(1074), + [aux_sym_cmd_identifier_token5] = ACTIONS(1074), + [aux_sym_cmd_identifier_token6] = ACTIONS(1074), + [aux_sym_cmd_identifier_token7] = ACTIONS(1074), + [aux_sym_cmd_identifier_token8] = ACTIONS(1074), + [aux_sym_cmd_identifier_token9] = ACTIONS(1074), + [aux_sym_cmd_identifier_token10] = ACTIONS(1074), + [aux_sym_cmd_identifier_token11] = ACTIONS(1074), + [aux_sym_cmd_identifier_token12] = ACTIONS(1074), + [aux_sym_cmd_identifier_token13] = ACTIONS(1074), + [aux_sym_cmd_identifier_token14] = ACTIONS(1074), + [aux_sym_cmd_identifier_token15] = ACTIONS(1074), + [aux_sym_cmd_identifier_token16] = ACTIONS(1074), + [aux_sym_cmd_identifier_token17] = ACTIONS(1074), + [aux_sym_cmd_identifier_token18] = ACTIONS(1074), + [aux_sym_cmd_identifier_token19] = ACTIONS(1074), + [aux_sym_cmd_identifier_token20] = ACTIONS(1074), + [aux_sym_cmd_identifier_token21] = ACTIONS(1074), + [aux_sym_cmd_identifier_token22] = ACTIONS(1074), + [aux_sym_cmd_identifier_token23] = ACTIONS(1074), + [aux_sym_cmd_identifier_token24] = ACTIONS(1074), + [aux_sym_cmd_identifier_token25] = ACTIONS(1074), + [aux_sym_cmd_identifier_token26] = ACTIONS(1074), + [aux_sym_cmd_identifier_token27] = ACTIONS(1074), + [aux_sym_cmd_identifier_token28] = ACTIONS(1074), + [aux_sym_cmd_identifier_token29] = ACTIONS(1074), + [aux_sym_cmd_identifier_token30] = ACTIONS(1074), + [aux_sym_cmd_identifier_token31] = ACTIONS(1074), + [aux_sym_cmd_identifier_token32] = ACTIONS(1074), + [aux_sym_cmd_identifier_token33] = ACTIONS(1074), + [aux_sym_cmd_identifier_token34] = ACTIONS(1074), + [aux_sym_cmd_identifier_token35] = ACTIONS(1074), + [aux_sym_cmd_identifier_token36] = ACTIONS(1074), + [anon_sym_true] = ACTIONS(1076), + [anon_sym_false] = ACTIONS(1076), + [anon_sym_null] = ACTIONS(1076), + [aux_sym_cmd_identifier_token38] = ACTIONS(1074), + [aux_sym_cmd_identifier_token39] = ACTIONS(1076), + [aux_sym_cmd_identifier_token40] = ACTIONS(1076), + [sym__newline] = ACTIONS(1074), + [anon_sym_SEMI] = ACTIONS(1076), + [anon_sym_PIPE] = ACTIONS(1076), + [anon_sym_err_GT_PIPE] = ACTIONS(1076), + [anon_sym_out_GT_PIPE] = ACTIONS(1076), + [anon_sym_e_GT_PIPE] = ACTIONS(1076), + [anon_sym_o_GT_PIPE] = ACTIONS(1076), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1076), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1076), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1076), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1076), + [anon_sym_def] = ACTIONS(1074), + [anon_sym_export_DASHenv] = ACTIONS(1074), + [anon_sym_extern] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_use] = ACTIONS(1074), + [anon_sym_LPAREN] = ACTIONS(1076), + [anon_sym_COMMA] = ACTIONS(1076), + [anon_sym_DOLLAR] = ACTIONS(1076), + [anon_sym_error] = ACTIONS(1074), + [anon_sym_list] = ACTIONS(1074), + [anon_sym_DASH] = ACTIONS(1074), + [anon_sym_break] = ACTIONS(1074), + [anon_sym_continue] = ACTIONS(1074), + [anon_sym_for] = ACTIONS(1074), + [anon_sym_in] = ACTIONS(1074), + [anon_sym_loop] = ACTIONS(1074), + [anon_sym_make] = ACTIONS(1074), + [anon_sym_while] = ACTIONS(1074), + [anon_sym_do] = ACTIONS(1074), + [anon_sym_if] = ACTIONS(1074), + [anon_sym_else] = ACTIONS(1074), + [anon_sym_match] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(1076), + [anon_sym_try] = ACTIONS(1074), + [anon_sym_catch] = ACTIONS(1074), + [anon_sym_return] = ACTIONS(1074), + [anon_sym_source] = ACTIONS(1074), + [anon_sym_source_DASHenv] = ACTIONS(1074), + [anon_sym_register] = ACTIONS(1074), + [anon_sym_hide] = ACTIONS(1074), + [anon_sym_hide_DASHenv] = ACTIONS(1074), + [anon_sym_overlay] = ACTIONS(1074), + [anon_sym_new] = ACTIONS(1074), + [anon_sym_as] = ACTIONS(1074), + [aux_sym_expr_binary_token1] = ACTIONS(1076), + [aux_sym_expr_binary_token2] = ACTIONS(1076), + [aux_sym_expr_binary_token3] = ACTIONS(1076), + [aux_sym_expr_binary_token4] = ACTIONS(1076), + [aux_sym_expr_binary_token5] = ACTIONS(1076), + [aux_sym_expr_binary_token6] = ACTIONS(1076), + [aux_sym_expr_binary_token7] = ACTIONS(1076), + [aux_sym_expr_binary_token8] = ACTIONS(1076), + [aux_sym_expr_binary_token9] = ACTIONS(1076), + [aux_sym_expr_binary_token10] = ACTIONS(1076), + [aux_sym_expr_binary_token11] = ACTIONS(1076), + [aux_sym_expr_binary_token12] = ACTIONS(1076), + [aux_sym_expr_binary_token13] = ACTIONS(1076), + [aux_sym_expr_binary_token14] = ACTIONS(1076), + [aux_sym_expr_binary_token15] = ACTIONS(1076), + [aux_sym_expr_binary_token16] = ACTIONS(1076), + [aux_sym_expr_binary_token17] = ACTIONS(1076), + [aux_sym_expr_binary_token18] = ACTIONS(1076), + [aux_sym_expr_binary_token19] = ACTIONS(1076), + [aux_sym_expr_binary_token20] = ACTIONS(1076), + [aux_sym_expr_binary_token21] = ACTIONS(1076), + [aux_sym_expr_binary_token22] = ACTIONS(1076), + [aux_sym_expr_binary_token23] = ACTIONS(1076), + [aux_sym_expr_binary_token24] = ACTIONS(1076), + [aux_sym_expr_binary_token25] = ACTIONS(1076), + [aux_sym_expr_binary_token26] = ACTIONS(1076), + [aux_sym_expr_binary_token27] = ACTIONS(1076), + [aux_sym_expr_binary_token28] = ACTIONS(1076), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1076), + [anon_sym_DOT_DOT2] = ACTIONS(1074), + [anon_sym_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1076), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1076), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1076), + [aux_sym__val_number_decimal_token1] = ACTIONS(1074), + [aux_sym__val_number_decimal_token2] = ACTIONS(1076), + [aux_sym__val_number_decimal_token3] = ACTIONS(1076), + [aux_sym__val_number_decimal_token4] = ACTIONS(1076), + [aux_sym__val_number_token1] = ACTIONS(1076), + [aux_sym__val_number_token2] = ACTIONS(1076), + [aux_sym__val_number_token3] = ACTIONS(1076), + [anon_sym_DQUOTE] = ACTIONS(1076), + [sym__str_single_quotes] = ACTIONS(1076), + [sym__str_back_ticks] = ACTIONS(1076), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1076), + [aux_sym_record_entry_token1] = ACTIONS(1076), + [anon_sym_PLUS] = ACTIONS(1074), + [anon_sym_err_GT] = ACTIONS(1074), + [anon_sym_out_GT] = ACTIONS(1074), + [anon_sym_e_GT] = ACTIONS(1074), + [anon_sym_o_GT] = ACTIONS(1074), + [anon_sym_err_PLUSout_GT] = ACTIONS(1074), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1074), + [anon_sym_o_PLUSe_GT] = ACTIONS(1074), + [anon_sym_e_PLUSo_GT] = ACTIONS(1074), + [anon_sym_err_GT_GT] = ACTIONS(1076), + [anon_sym_out_GT_GT] = ACTIONS(1076), + [anon_sym_e_GT_GT] = ACTIONS(1076), + [anon_sym_o_GT_GT] = ACTIONS(1076), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1076), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1076), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1076), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1076), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1076), }, [175] = { - [sym_pipeline] = STATE(6350), - [sym_cmd_identifier] = STATE(4514), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1445), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym_val_variable] = STATE(1446), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1465), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), [sym_comment] = STATE(175), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym_pipe_element_repeat2] = STATE(411), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(1078), + [anon_sym_alias] = ACTIONS(1078), + [anon_sym_EQ] = ACTIONS(1078), + [anon_sym_let] = ACTIONS(1078), + [anon_sym_let_DASHenv] = ACTIONS(1078), + [anon_sym_mut] = ACTIONS(1078), + [anon_sym_const] = ACTIONS(1078), + [anon_sym_PLUS_EQ] = ACTIONS(1080), + [anon_sym_DASH_EQ] = ACTIONS(1080), + [anon_sym_STAR_EQ] = ACTIONS(1080), + [anon_sym_SLASH_EQ] = ACTIONS(1080), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1080), + [aux_sym_cmd_identifier_token1] = ACTIONS(1078), + [aux_sym_cmd_identifier_token2] = ACTIONS(1078), + [aux_sym_cmd_identifier_token3] = ACTIONS(1078), + [aux_sym_cmd_identifier_token4] = ACTIONS(1078), + [aux_sym_cmd_identifier_token5] = ACTIONS(1078), + [aux_sym_cmd_identifier_token6] = ACTIONS(1078), + [aux_sym_cmd_identifier_token7] = ACTIONS(1078), + [aux_sym_cmd_identifier_token8] = ACTIONS(1078), + [aux_sym_cmd_identifier_token9] = ACTIONS(1078), + [aux_sym_cmd_identifier_token10] = ACTIONS(1078), + [aux_sym_cmd_identifier_token11] = ACTIONS(1078), + [aux_sym_cmd_identifier_token12] = ACTIONS(1078), + [aux_sym_cmd_identifier_token13] = ACTIONS(1078), + [aux_sym_cmd_identifier_token14] = ACTIONS(1078), + [aux_sym_cmd_identifier_token15] = ACTIONS(1078), + [aux_sym_cmd_identifier_token16] = ACTIONS(1078), + [aux_sym_cmd_identifier_token17] = ACTIONS(1078), + [aux_sym_cmd_identifier_token18] = ACTIONS(1078), + [aux_sym_cmd_identifier_token19] = ACTIONS(1078), + [aux_sym_cmd_identifier_token20] = ACTIONS(1078), + [aux_sym_cmd_identifier_token21] = ACTIONS(1078), + [aux_sym_cmd_identifier_token22] = ACTIONS(1078), + [aux_sym_cmd_identifier_token23] = ACTIONS(1078), + [aux_sym_cmd_identifier_token24] = ACTIONS(1078), + [aux_sym_cmd_identifier_token25] = ACTIONS(1078), + [aux_sym_cmd_identifier_token26] = ACTIONS(1078), + [aux_sym_cmd_identifier_token27] = ACTIONS(1078), + [aux_sym_cmd_identifier_token28] = ACTIONS(1078), + [aux_sym_cmd_identifier_token29] = ACTIONS(1078), + [aux_sym_cmd_identifier_token30] = ACTIONS(1078), + [aux_sym_cmd_identifier_token31] = ACTIONS(1078), + [aux_sym_cmd_identifier_token32] = ACTIONS(1078), + [aux_sym_cmd_identifier_token33] = ACTIONS(1078), + [aux_sym_cmd_identifier_token34] = ACTIONS(1078), + [aux_sym_cmd_identifier_token35] = ACTIONS(1078), + [aux_sym_cmd_identifier_token36] = ACTIONS(1078), + [anon_sym_true] = ACTIONS(1080), + [anon_sym_false] = ACTIONS(1080), + [anon_sym_null] = ACTIONS(1080), + [aux_sym_cmd_identifier_token38] = ACTIONS(1078), + [aux_sym_cmd_identifier_token39] = ACTIONS(1080), + [aux_sym_cmd_identifier_token40] = ACTIONS(1080), + [sym__newline] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(1080), + [anon_sym_PIPE] = ACTIONS(1080), + [anon_sym_err_GT_PIPE] = ACTIONS(1080), + [anon_sym_out_GT_PIPE] = ACTIONS(1080), + [anon_sym_e_GT_PIPE] = ACTIONS(1080), + [anon_sym_o_GT_PIPE] = ACTIONS(1080), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1080), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1080), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1080), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1080), + [anon_sym_def] = ACTIONS(1078), + [anon_sym_export_DASHenv] = ACTIONS(1078), + [anon_sym_extern] = ACTIONS(1078), + [anon_sym_module] = ACTIONS(1078), + [anon_sym_use] = ACTIONS(1078), + [anon_sym_LPAREN] = ACTIONS(1080), + [anon_sym_COMMA] = ACTIONS(1080), + [anon_sym_DOLLAR] = ACTIONS(1080), + [anon_sym_error] = ACTIONS(1078), + [anon_sym_list] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_break] = ACTIONS(1078), + [anon_sym_continue] = ACTIONS(1078), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_in] = ACTIONS(1078), + [anon_sym_loop] = ACTIONS(1078), + [anon_sym_make] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1078), + [anon_sym_do] = ACTIONS(1078), + [anon_sym_if] = ACTIONS(1078), + [anon_sym_else] = ACTIONS(1078), + [anon_sym_match] = ACTIONS(1078), + [anon_sym_RBRACE] = ACTIONS(1080), + [anon_sym_try] = ACTIONS(1078), + [anon_sym_catch] = ACTIONS(1078), + [anon_sym_return] = ACTIONS(1078), + [anon_sym_source] = ACTIONS(1078), + [anon_sym_source_DASHenv] = ACTIONS(1078), + [anon_sym_register] = ACTIONS(1078), + [anon_sym_hide] = ACTIONS(1078), + [anon_sym_hide_DASHenv] = ACTIONS(1078), + [anon_sym_overlay] = ACTIONS(1078), + [anon_sym_new] = ACTIONS(1078), + [anon_sym_as] = ACTIONS(1078), + [aux_sym_expr_binary_token1] = ACTIONS(1080), + [aux_sym_expr_binary_token2] = ACTIONS(1080), + [aux_sym_expr_binary_token3] = ACTIONS(1080), + [aux_sym_expr_binary_token4] = ACTIONS(1080), + [aux_sym_expr_binary_token5] = ACTIONS(1080), + [aux_sym_expr_binary_token6] = ACTIONS(1080), + [aux_sym_expr_binary_token7] = ACTIONS(1080), + [aux_sym_expr_binary_token8] = ACTIONS(1080), + [aux_sym_expr_binary_token9] = ACTIONS(1080), + [aux_sym_expr_binary_token10] = ACTIONS(1080), + [aux_sym_expr_binary_token11] = ACTIONS(1080), + [aux_sym_expr_binary_token12] = ACTIONS(1080), + [aux_sym_expr_binary_token13] = ACTIONS(1080), + [aux_sym_expr_binary_token14] = ACTIONS(1080), + [aux_sym_expr_binary_token15] = ACTIONS(1080), + [aux_sym_expr_binary_token16] = ACTIONS(1080), + [aux_sym_expr_binary_token17] = ACTIONS(1080), + [aux_sym_expr_binary_token18] = ACTIONS(1080), + [aux_sym_expr_binary_token19] = ACTIONS(1080), + [aux_sym_expr_binary_token20] = ACTIONS(1080), + [aux_sym_expr_binary_token21] = ACTIONS(1080), + [aux_sym_expr_binary_token22] = ACTIONS(1080), + [aux_sym_expr_binary_token23] = ACTIONS(1080), + [aux_sym_expr_binary_token24] = ACTIONS(1080), + [aux_sym_expr_binary_token25] = ACTIONS(1080), + [aux_sym_expr_binary_token26] = ACTIONS(1080), + [aux_sym_expr_binary_token27] = ACTIONS(1080), + [aux_sym_expr_binary_token28] = ACTIONS(1080), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1080), + [anon_sym_DOT_DOT2] = ACTIONS(1078), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1080), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1080), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1080), + [aux_sym__val_number_decimal_token1] = ACTIONS(1078), + [aux_sym__val_number_decimal_token2] = ACTIONS(1080), + [aux_sym__val_number_decimal_token3] = ACTIONS(1080), + [aux_sym__val_number_decimal_token4] = ACTIONS(1080), + [aux_sym__val_number_token1] = ACTIONS(1080), + [aux_sym__val_number_token2] = ACTIONS(1080), + [aux_sym__val_number_token3] = ACTIONS(1080), + [anon_sym_DQUOTE] = ACTIONS(1080), + [sym__str_single_quotes] = ACTIONS(1080), + [sym__str_back_ticks] = ACTIONS(1080), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1080), + [aux_sym_record_entry_token1] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_err_GT] = ACTIONS(1078), + [anon_sym_out_GT] = ACTIONS(1078), + [anon_sym_e_GT] = ACTIONS(1078), + [anon_sym_o_GT] = ACTIONS(1078), + [anon_sym_err_PLUSout_GT] = ACTIONS(1078), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1078), + [anon_sym_o_PLUSe_GT] = ACTIONS(1078), + [anon_sym_e_PLUSo_GT] = ACTIONS(1078), + [anon_sym_err_GT_GT] = ACTIONS(1080), + [anon_sym_out_GT_GT] = ACTIONS(1080), + [anon_sym_e_GT_GT] = ACTIONS(1080), + [anon_sym_o_GT_GT] = ACTIONS(1080), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1080), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1080), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1080), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1080), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1080), }, [176] = { - [sym_pipeline_parenthesized] = STATE(7185), - [sym_cmd_identifier] = STATE(4758), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(2013), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), [sym_comment] = STATE(176), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(1082), + [anon_sym_alias] = ACTIONS(1082), + [anon_sym_EQ] = ACTIONS(1084), + [anon_sym_let] = ACTIONS(1082), + [anon_sym_let_DASHenv] = ACTIONS(1082), + [anon_sym_mut] = ACTIONS(1082), + [anon_sym_const] = ACTIONS(1082), + [anon_sym_PLUS_EQ] = ACTIONS(1086), + [anon_sym_DASH_EQ] = ACTIONS(1086), + [anon_sym_STAR_EQ] = ACTIONS(1086), + [anon_sym_SLASH_EQ] = ACTIONS(1086), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1086), + [aux_sym_cmd_identifier_token1] = ACTIONS(1082), + [aux_sym_cmd_identifier_token2] = ACTIONS(1082), + [aux_sym_cmd_identifier_token3] = ACTIONS(1082), + [aux_sym_cmd_identifier_token4] = ACTIONS(1082), + [aux_sym_cmd_identifier_token5] = ACTIONS(1082), + [aux_sym_cmd_identifier_token6] = ACTIONS(1082), + [aux_sym_cmd_identifier_token7] = ACTIONS(1082), + [aux_sym_cmd_identifier_token8] = ACTIONS(1082), + [aux_sym_cmd_identifier_token9] = ACTIONS(1082), + [aux_sym_cmd_identifier_token10] = ACTIONS(1082), + [aux_sym_cmd_identifier_token11] = ACTIONS(1082), + [aux_sym_cmd_identifier_token12] = ACTIONS(1082), + [aux_sym_cmd_identifier_token13] = ACTIONS(1082), + [aux_sym_cmd_identifier_token14] = ACTIONS(1082), + [aux_sym_cmd_identifier_token15] = ACTIONS(1082), + [aux_sym_cmd_identifier_token16] = ACTIONS(1082), + [aux_sym_cmd_identifier_token17] = ACTIONS(1082), + [aux_sym_cmd_identifier_token18] = ACTIONS(1082), + [aux_sym_cmd_identifier_token19] = ACTIONS(1082), + [aux_sym_cmd_identifier_token20] = ACTIONS(1082), + [aux_sym_cmd_identifier_token21] = ACTIONS(1082), + [aux_sym_cmd_identifier_token22] = ACTIONS(1082), + [aux_sym_cmd_identifier_token23] = ACTIONS(1082), + [aux_sym_cmd_identifier_token24] = ACTIONS(1082), + [aux_sym_cmd_identifier_token25] = ACTIONS(1082), + [aux_sym_cmd_identifier_token26] = ACTIONS(1082), + [aux_sym_cmd_identifier_token27] = ACTIONS(1082), + [aux_sym_cmd_identifier_token28] = ACTIONS(1082), + [aux_sym_cmd_identifier_token29] = ACTIONS(1082), + [aux_sym_cmd_identifier_token30] = ACTIONS(1082), + [aux_sym_cmd_identifier_token31] = ACTIONS(1082), + [aux_sym_cmd_identifier_token32] = ACTIONS(1082), + [aux_sym_cmd_identifier_token33] = ACTIONS(1082), + [aux_sym_cmd_identifier_token34] = ACTIONS(1082), + [aux_sym_cmd_identifier_token35] = ACTIONS(1082), + [aux_sym_cmd_identifier_token36] = ACTIONS(1082), + [anon_sym_true] = ACTIONS(1088), + [anon_sym_false] = ACTIONS(1088), + [anon_sym_null] = ACTIONS(1088), + [aux_sym_cmd_identifier_token38] = ACTIONS(1082), + [aux_sym_cmd_identifier_token39] = ACTIONS(1088), + [aux_sym_cmd_identifier_token40] = ACTIONS(1088), + [sym__newline] = ACTIONS(1090), + [anon_sym_SEMI] = ACTIONS(1092), + [anon_sym_PIPE] = ACTIONS(1092), + [anon_sym_err_GT_PIPE] = ACTIONS(1092), + [anon_sym_out_GT_PIPE] = ACTIONS(1092), + [anon_sym_e_GT_PIPE] = ACTIONS(1092), + [anon_sym_o_GT_PIPE] = ACTIONS(1092), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1092), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1092), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1092), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1092), + [anon_sym_def] = ACTIONS(1082), + [anon_sym_export_DASHenv] = ACTIONS(1082), + [anon_sym_extern] = ACTIONS(1082), + [anon_sym_module] = ACTIONS(1082), + [anon_sym_use] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(1088), + [anon_sym_COMMA] = ACTIONS(1094), + [anon_sym_DOLLAR] = ACTIONS(1088), + [anon_sym_error] = ACTIONS(1082), + [anon_sym_list] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_break] = ACTIONS(1082), + [anon_sym_continue] = ACTIONS(1082), + [anon_sym_for] = ACTIONS(1082), + [anon_sym_in] = ACTIONS(1082), + [anon_sym_loop] = ACTIONS(1082), + [anon_sym_make] = ACTIONS(1082), + [anon_sym_while] = ACTIONS(1082), + [anon_sym_do] = ACTIONS(1082), + [anon_sym_if] = ACTIONS(1082), + [anon_sym_else] = ACTIONS(1082), + [anon_sym_match] = ACTIONS(1082), + [anon_sym_RBRACE] = ACTIONS(1096), + [anon_sym_try] = ACTIONS(1082), + [anon_sym_catch] = ACTIONS(1082), + [anon_sym_return] = ACTIONS(1082), + [anon_sym_source] = ACTIONS(1082), + [anon_sym_source_DASHenv] = ACTIONS(1082), + [anon_sym_register] = ACTIONS(1082), + [anon_sym_hide] = ACTIONS(1082), + [anon_sym_hide_DASHenv] = ACTIONS(1082), + [anon_sym_overlay] = ACTIONS(1082), + [anon_sym_new] = ACTIONS(1082), + [anon_sym_as] = ACTIONS(1082), + [aux_sym_expr_binary_token1] = ACTIONS(1092), + [aux_sym_expr_binary_token2] = ACTIONS(1092), + [aux_sym_expr_binary_token3] = ACTIONS(1092), + [aux_sym_expr_binary_token4] = ACTIONS(1092), + [aux_sym_expr_binary_token5] = ACTIONS(1092), + [aux_sym_expr_binary_token6] = ACTIONS(1092), + [aux_sym_expr_binary_token7] = ACTIONS(1092), + [aux_sym_expr_binary_token8] = ACTIONS(1092), + [aux_sym_expr_binary_token9] = ACTIONS(1092), + [aux_sym_expr_binary_token10] = ACTIONS(1092), + [aux_sym_expr_binary_token11] = ACTIONS(1092), + [aux_sym_expr_binary_token12] = ACTIONS(1092), + [aux_sym_expr_binary_token13] = ACTIONS(1092), + [aux_sym_expr_binary_token14] = ACTIONS(1092), + [aux_sym_expr_binary_token15] = ACTIONS(1092), + [aux_sym_expr_binary_token16] = ACTIONS(1092), + [aux_sym_expr_binary_token17] = ACTIONS(1092), + [aux_sym_expr_binary_token18] = ACTIONS(1092), + [aux_sym_expr_binary_token19] = ACTIONS(1092), + [aux_sym_expr_binary_token20] = ACTIONS(1092), + [aux_sym_expr_binary_token21] = ACTIONS(1092), + [aux_sym_expr_binary_token22] = ACTIONS(1092), + [aux_sym_expr_binary_token23] = ACTIONS(1092), + [aux_sym_expr_binary_token24] = ACTIONS(1092), + [aux_sym_expr_binary_token25] = ACTIONS(1092), + [aux_sym_expr_binary_token26] = ACTIONS(1092), + [aux_sym_expr_binary_token27] = ACTIONS(1092), + [aux_sym_expr_binary_token28] = ACTIONS(1092), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1088), + [anon_sym_DOT_DOT2] = ACTIONS(1099), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1101), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1101), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1088), + [aux_sym__val_number_decimal_token1] = ACTIONS(1082), + [aux_sym__val_number_decimal_token2] = ACTIONS(1088), + [aux_sym__val_number_decimal_token3] = ACTIONS(1088), + [aux_sym__val_number_decimal_token4] = ACTIONS(1088), + [aux_sym__val_number_token1] = ACTIONS(1088), + [aux_sym__val_number_token2] = ACTIONS(1088), + [aux_sym__val_number_token3] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1088), + [sym__str_single_quotes] = ACTIONS(1088), + [sym__str_back_ticks] = ACTIONS(1088), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1088), + [aux_sym_record_entry_token1] = ACTIONS(1103), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_err_GT] = ACTIONS(1090), + [anon_sym_out_GT] = ACTIONS(1090), + [anon_sym_e_GT] = ACTIONS(1090), + [anon_sym_o_GT] = ACTIONS(1090), + [anon_sym_err_PLUSout_GT] = ACTIONS(1090), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1090), + [anon_sym_o_PLUSe_GT] = ACTIONS(1090), + [anon_sym_e_PLUSo_GT] = ACTIONS(1090), + [anon_sym_err_GT_GT] = ACTIONS(1092), + [anon_sym_out_GT_GT] = ACTIONS(1092), + [anon_sym_e_GT_GT] = ACTIONS(1092), + [anon_sym_o_GT_GT] = ACTIONS(1092), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1092), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1092), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1092), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1092), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1088), }, [177] = { - [sym_pipeline_parenthesized] = STATE(7184), - [sym_cmd_identifier] = STATE(4758), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(2013), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), + [sym_pipeline] = STATE(6439), + [sym_cmd_identifier] = STATE(4616), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1922), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(1929), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1569), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(177), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym_pipe_element_repeat2] = STATE(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(373), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(375), + [anon_sym_false] = ACTIONS(375), + [anon_sym_null] = ACTIONS(377), + [aux_sym_cmd_identifier_token38] = ACTIONS(379), + [aux_sym_cmd_identifier_token39] = ACTIONS(381), + [aux_sym_cmd_identifier_token40] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_continue] = ACTIONS(405), + [anon_sym_do] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(435), + [aux_sym__val_number_decimal_token2] = ACTIONS(437), + [aux_sym__val_number_decimal_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token4] = ACTIONS(441), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [178] = { - [sym_pipeline] = STATE(6857), - [sym_cmd_identifier] = STATE(4801), - [sym__ctrl_expression] = STATE(5080), - [sym_ctrl_do] = STATE(5113), - [sym_ctrl_if] = STATE(5113), - [sym_ctrl_match] = STATE(5113), - [sym_ctrl_try] = STATE(5113), - [sym_ctrl_return] = STATE(5113), - [sym_pipe_element] = STATE(4775), - [sym_where_command] = STATE(5143), - [sym__expression] = STATE(3799), - [sym_expr_unary] = STATE(2430), - [sym__expr_unary_minus] = STATE(2432), - [sym_expr_binary] = STATE(2430), - [sym__expr_binary_expression] = STATE(3832), - [sym_expr_parenthesized] = STATE(2004), - [sym_val_range] = STATE(3821), - [sym__value] = STATE(2430), - [sym_val_nothing] = STATE(2399), - [sym_val_bool] = STATE(2399), - [sym_val_variable] = STATE(1994), - [sym_val_number] = STATE(2399), - [sym__val_number_decimal] = STATE(1568), - [sym__val_number] = STATE(2385), - [sym_val_duration] = STATE(2399), - [sym_val_filesize] = STATE(2399), - [sym_val_binary] = STATE(2399), - [sym_val_string] = STATE(2399), - [sym__str_double_quotes] = STATE(1975), - [sym_val_interpolated] = STATE(2399), - [sym__inter_single_quotes] = STATE(2384), - [sym__inter_double_quotes] = STATE(2390), - [sym_val_list] = STATE(2399), - [sym_val_record] = STATE(2399), - [sym_val_table] = STATE(2399), - [sym_val_closure] = STATE(2399), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(5143), + [sym_pipeline] = STATE(7158), + [sym_cmd_identifier] = STATE(4714), + [sym__ctrl_expression] = STATE(5155), + [sym_ctrl_do] = STATE(5175), + [sym_ctrl_if] = STATE(5175), + [sym_ctrl_match] = STATE(5175), + [sym_ctrl_try] = STATE(5175), + [sym_ctrl_return] = STATE(5175), + [sym_pipe_element] = STATE(4782), + [sym_where_command] = STATE(5180), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2509), + [sym__expr_unary_minus] = STATE(2510), + [sym_expr_binary] = STATE(2509), + [sym__expr_binary_expression] = STATE(3876), + [sym_expr_parenthesized] = STATE(2042), + [sym_val_range] = STATE(3900), + [sym__value] = STATE(2509), + [sym_val_nothing] = STATE(2441), + [sym_val_bool] = STATE(2441), + [sym_val_variable] = STATE(2055), + [sym_val_number] = STATE(2441), + [sym__val_number_decimal] = STATE(1665), + [sym__val_number] = STATE(2488), + [sym_val_duration] = STATE(2441), + [sym_val_filesize] = STATE(2441), + [sym_val_binary] = STATE(2441), + [sym_val_string] = STATE(2441), + [sym__raw_str] = STATE(2065), + [sym__str_double_quotes] = STATE(2065), + [sym_val_interpolated] = STATE(2441), + [sym__inter_single_quotes] = STATE(2563), + [sym__inter_double_quotes] = STATE(2436), + [sym_val_list] = STATE(2441), + [sym_val_record] = STATE(2441), + [sym_val_table] = STATE(2441), + [sym_val_closure] = STATE(2441), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5180), [sym_comment] = STATE(178), - [aux_sym_pipeline_repeat1] = STATE(193), - [aux_sym_pipe_element_repeat2] = STATE(413), + [aux_sym_pipeline_repeat1] = STATE(194), + [aux_sym_pipe_element_repeat2] = STATE(354), [aux_sym_cmd_identifier_token1] = ACTIONS(19), [aux_sym_cmd_identifier_token2] = ACTIONS(21), [aux_sym_cmd_identifier_token3] = ACTIONS(21), @@ -97708,50 +98773,544 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), [aux_sym_env_var_token1] = ACTIONS(119), [anon_sym_CARET] = ACTIONS(121), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(123), }, [179] = { - [sym_pipeline] = STATE(6766), - [sym_cmd_identifier] = STATE(4801), - [sym__ctrl_expression] = STATE(5080), - [sym_ctrl_do] = STATE(5113), - [sym_ctrl_if] = STATE(5113), - [sym_ctrl_match] = STATE(5113), - [sym_ctrl_try] = STATE(5113), - [sym_ctrl_return] = STATE(5113), - [sym_pipe_element] = STATE(4775), - [sym_where_command] = STATE(5143), - [sym__expression] = STATE(3799), - [sym_expr_unary] = STATE(2430), - [sym__expr_unary_minus] = STATE(2432), - [sym_expr_binary] = STATE(2430), - [sym__expr_binary_expression] = STATE(3832), - [sym_expr_parenthesized] = STATE(2004), - [sym_val_range] = STATE(3821), - [sym__value] = STATE(2430), - [sym_val_nothing] = STATE(2399), - [sym_val_bool] = STATE(2399), - [sym_val_variable] = STATE(1994), - [sym_val_number] = STATE(2399), - [sym__val_number_decimal] = STATE(1568), - [sym__val_number] = STATE(2385), - [sym_val_duration] = STATE(2399), - [sym_val_filesize] = STATE(2399), - [sym_val_binary] = STATE(2399), - [sym_val_string] = STATE(2399), - [sym__str_double_quotes] = STATE(1975), - [sym_val_interpolated] = STATE(2399), - [sym__inter_single_quotes] = STATE(2384), - [sym__inter_double_quotes] = STATE(2390), - [sym_val_list] = STATE(2399), - [sym_val_record] = STATE(2399), - [sym_val_table] = STATE(2399), - [sym_val_closure] = STATE(2399), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(5143), + [sym_pipeline_parenthesized] = STATE(6960), + [sym_cmd_identifier] = STATE(4817), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(2028), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), [sym_comment] = STATE(179), - [aux_sym_pipeline_repeat1] = STATE(193), - [aux_sym_pipe_element_repeat2] = STATE(413), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(373), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), + }, + [180] = { + [sym_pipeline] = STATE(6466), + [sym_cmd_identifier] = STATE(4616), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1922), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(1929), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1569), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), + [sym_comment] = STATE(180), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym_pipe_element_repeat2] = STATE(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(373), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(375), + [anon_sym_false] = ACTIONS(375), + [anon_sym_null] = ACTIONS(377), + [aux_sym_cmd_identifier_token38] = ACTIONS(379), + [aux_sym_cmd_identifier_token39] = ACTIONS(381), + [aux_sym_cmd_identifier_token40] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_continue] = ACTIONS(405), + [anon_sym_do] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(435), + [aux_sym__val_number_decimal_token2] = ACTIONS(437), + [aux_sym__val_number_decimal_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token4] = ACTIONS(441), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), + }, + [181] = { + [sym_pipeline_parenthesized] = STATE(7026), + [sym_cmd_identifier] = STATE(4817), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(2028), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), + [sym_comment] = STATE(181), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(373), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), + }, + [182] = { + [sym_pipeline_parenthesized] = STATE(7172), + [sym_cmd_identifier] = STATE(4817), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(2028), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), + [sym_comment] = STATE(182), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(373), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), + }, + [183] = { + [sym_pipeline] = STATE(7151), + [sym_cmd_identifier] = STATE(4714), + [sym__ctrl_expression] = STATE(5155), + [sym_ctrl_do] = STATE(5175), + [sym_ctrl_if] = STATE(5175), + [sym_ctrl_match] = STATE(5175), + [sym_ctrl_try] = STATE(5175), + [sym_ctrl_return] = STATE(5175), + [sym_pipe_element] = STATE(4782), + [sym_where_command] = STATE(5180), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2509), + [sym__expr_unary_minus] = STATE(2510), + [sym_expr_binary] = STATE(2509), + [sym__expr_binary_expression] = STATE(3876), + [sym_expr_parenthesized] = STATE(2042), + [sym_val_range] = STATE(3900), + [sym__value] = STATE(2509), + [sym_val_nothing] = STATE(2441), + [sym_val_bool] = STATE(2441), + [sym_val_variable] = STATE(2055), + [sym_val_number] = STATE(2441), + [sym__val_number_decimal] = STATE(1665), + [sym__val_number] = STATE(2488), + [sym_val_duration] = STATE(2441), + [sym_val_filesize] = STATE(2441), + [sym_val_binary] = STATE(2441), + [sym_val_string] = STATE(2441), + [sym__raw_str] = STATE(2065), + [sym__str_double_quotes] = STATE(2065), + [sym_val_interpolated] = STATE(2441), + [sym__inter_single_quotes] = STATE(2563), + [sym__inter_double_quotes] = STATE(2436), + [sym_val_list] = STATE(2441), + [sym_val_record] = STATE(2441), + [sym_val_table] = STATE(2441), + [sym_val_closure] = STATE(2441), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5180), + [sym_comment] = STATE(183), + [aux_sym_pipeline_repeat1] = STATE(194), + [aux_sym_pipe_element_repeat2] = STATE(354), [aux_sym_cmd_identifier_token1] = ACTIONS(19), [aux_sym_cmd_identifier_token2] = ACTIONS(21), [aux_sym_cmd_identifier_token3] = ACTIONS(21), @@ -97829,50 +99388,298 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), [aux_sym_env_var_token1] = ACTIONS(119), [anon_sym_CARET] = ACTIONS(121), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(123), }, - [180] = { - [sym_pipeline] = STATE(6640), - [sym_cmd_identifier] = STATE(4801), - [sym__ctrl_expression] = STATE(5080), - [sym_ctrl_do] = STATE(5113), - [sym_ctrl_if] = STATE(5113), - [sym_ctrl_match] = STATE(5113), - [sym_ctrl_try] = STATE(5113), - [sym_ctrl_return] = STATE(5113), - [sym_pipe_element] = STATE(4775), - [sym_where_command] = STATE(5143), - [sym__expression] = STATE(3799), - [sym_expr_unary] = STATE(2430), - [sym__expr_unary_minus] = STATE(2432), - [sym_expr_binary] = STATE(2430), - [sym__expr_binary_expression] = STATE(3832), - [sym_expr_parenthesized] = STATE(2004), - [sym_val_range] = STATE(3821), - [sym__value] = STATE(2430), - [sym_val_nothing] = STATE(2399), - [sym_val_bool] = STATE(2399), - [sym_val_variable] = STATE(1994), - [sym_val_number] = STATE(2399), - [sym__val_number_decimal] = STATE(1568), - [sym__val_number] = STATE(2385), - [sym_val_duration] = STATE(2399), - [sym_val_filesize] = STATE(2399), - [sym_val_binary] = STATE(2399), - [sym_val_string] = STATE(2399), - [sym__str_double_quotes] = STATE(1975), - [sym_val_interpolated] = STATE(2399), - [sym__inter_single_quotes] = STATE(2384), - [sym__inter_double_quotes] = STATE(2390), - [sym_val_list] = STATE(2399), - [sym_val_record] = STATE(2399), - [sym_val_table] = STATE(2399), - [sym_val_closure] = STATE(2399), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(5143), - [sym_comment] = STATE(180), - [aux_sym_pipeline_repeat1] = STATE(193), - [aux_sym_pipe_element_repeat2] = STATE(413), + [184] = { + [sym_pipeline_parenthesized] = STATE(7180), + [sym_cmd_identifier] = STATE(4817), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(2028), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), + [sym_comment] = STATE(184), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(373), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), + }, + [185] = { + [sym_pipeline_parenthesized] = STATE(7330), + [sym_cmd_identifier] = STATE(4817), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4765), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(2028), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), + [sym_comment] = STATE(185), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(196), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(373), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), + }, + [186] = { + [sym_pipeline] = STATE(7027), + [sym_cmd_identifier] = STATE(4714), + [sym__ctrl_expression] = STATE(5155), + [sym_ctrl_do] = STATE(5175), + [sym_ctrl_if] = STATE(5175), + [sym_ctrl_match] = STATE(5175), + [sym_ctrl_try] = STATE(5175), + [sym_ctrl_return] = STATE(5175), + [sym_pipe_element] = STATE(4782), + [sym_where_command] = STATE(5180), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2509), + [sym__expr_unary_minus] = STATE(2510), + [sym_expr_binary] = STATE(2509), + [sym__expr_binary_expression] = STATE(3876), + [sym_expr_parenthesized] = STATE(2042), + [sym_val_range] = STATE(3900), + [sym__value] = STATE(2509), + [sym_val_nothing] = STATE(2441), + [sym_val_bool] = STATE(2441), + [sym_val_variable] = STATE(2055), + [sym_val_number] = STATE(2441), + [sym__val_number_decimal] = STATE(1665), + [sym__val_number] = STATE(2488), + [sym_val_duration] = STATE(2441), + [sym_val_filesize] = STATE(2441), + [sym_val_binary] = STATE(2441), + [sym_val_string] = STATE(2441), + [sym__raw_str] = STATE(2065), + [sym__str_double_quotes] = STATE(2065), + [sym_val_interpolated] = STATE(2441), + [sym__inter_single_quotes] = STATE(2563), + [sym__inter_double_quotes] = STATE(2436), + [sym_val_list] = STATE(2441), + [sym_val_record] = STATE(2441), + [sym_val_table] = STATE(2441), + [sym_val_closure] = STATE(2441), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5180), + [sym_comment] = STATE(186), + [aux_sym_pipeline_repeat1] = STATE(194), + [aux_sym_pipe_element_repeat2] = STATE(354), [aux_sym_cmd_identifier_token1] = ACTIONS(19), [aux_sym_cmd_identifier_token2] = ACTIONS(21), [aux_sym_cmd_identifier_token3] = ACTIONS(21), @@ -97950,50 +99757,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), [aux_sym_env_var_token1] = ACTIONS(119), [anon_sym_CARET] = ACTIONS(121), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(123), }, - [181] = { - [sym_pipeline] = STATE(6942), - [sym_cmd_identifier] = STATE(4801), - [sym__ctrl_expression] = STATE(5080), - [sym_ctrl_do] = STATE(5113), - [sym_ctrl_if] = STATE(5113), - [sym_ctrl_match] = STATE(5113), - [sym_ctrl_try] = STATE(5113), - [sym_ctrl_return] = STATE(5113), - [sym_pipe_element] = STATE(4775), - [sym_where_command] = STATE(5143), - [sym__expression] = STATE(3799), - [sym_expr_unary] = STATE(2430), - [sym__expr_unary_minus] = STATE(2432), - [sym_expr_binary] = STATE(2430), - [sym__expr_binary_expression] = STATE(3832), - [sym_expr_parenthesized] = STATE(2004), - [sym_val_range] = STATE(3821), - [sym__value] = STATE(2430), - [sym_val_nothing] = STATE(2399), - [sym_val_bool] = STATE(2399), - [sym_val_variable] = STATE(1994), - [sym_val_number] = STATE(2399), - [sym__val_number_decimal] = STATE(1568), - [sym__val_number] = STATE(2385), - [sym_val_duration] = STATE(2399), - [sym_val_filesize] = STATE(2399), - [sym_val_binary] = STATE(2399), - [sym_val_string] = STATE(2399), - [sym__str_double_quotes] = STATE(1975), - [sym_val_interpolated] = STATE(2399), - [sym__inter_single_quotes] = STATE(2384), - [sym__inter_double_quotes] = STATE(2390), - [sym_val_list] = STATE(2399), - [sym_val_record] = STATE(2399), - [sym_val_table] = STATE(2399), - [sym_val_closure] = STATE(2399), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(5143), - [sym_comment] = STATE(181), - [aux_sym_pipeline_repeat1] = STATE(193), - [aux_sym_pipe_element_repeat2] = STATE(413), + [187] = { + [sym_pipeline] = STATE(7091), + [sym_cmd_identifier] = STATE(4714), + [sym__ctrl_expression] = STATE(5155), + [sym_ctrl_do] = STATE(5175), + [sym_ctrl_if] = STATE(5175), + [sym_ctrl_match] = STATE(5175), + [sym_ctrl_try] = STATE(5175), + [sym_ctrl_return] = STATE(5175), + [sym_pipe_element] = STATE(4782), + [sym_where_command] = STATE(5180), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2509), + [sym__expr_unary_minus] = STATE(2510), + [sym_expr_binary] = STATE(2509), + [sym__expr_binary_expression] = STATE(3876), + [sym_expr_parenthesized] = STATE(2042), + [sym_val_range] = STATE(3900), + [sym__value] = STATE(2509), + [sym_val_nothing] = STATE(2441), + [sym_val_bool] = STATE(2441), + [sym_val_variable] = STATE(2055), + [sym_val_number] = STATE(2441), + [sym__val_number_decimal] = STATE(1665), + [sym__val_number] = STATE(2488), + [sym_val_duration] = STATE(2441), + [sym_val_filesize] = STATE(2441), + [sym_val_binary] = STATE(2441), + [sym_val_string] = STATE(2441), + [sym__raw_str] = STATE(2065), + [sym__str_double_quotes] = STATE(2065), + [sym_val_interpolated] = STATE(2441), + [sym__inter_single_quotes] = STATE(2563), + [sym__inter_double_quotes] = STATE(2436), + [sym_val_list] = STATE(2441), + [sym_val_record] = STATE(2441), + [sym_val_table] = STATE(2441), + [sym_val_closure] = STATE(2441), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5180), + [sym_comment] = STATE(187), + [aux_sym_pipeline_repeat1] = STATE(194), + [aux_sym_pipe_element_repeat2] = STATE(354), [aux_sym_cmd_identifier_token1] = ACTIONS(19), [aux_sym_cmd_identifier_token2] = ACTIONS(21), [aux_sym_cmd_identifier_token3] = ACTIONS(21), @@ -98071,534 +99880,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), [aux_sym_env_var_token1] = ACTIONS(119), [anon_sym_CARET] = ACTIONS(121), - [anon_sym_POUND] = ACTIONS(247), - }, - [182] = { - [sym_pipeline_parenthesized] = STATE(7179), - [sym_cmd_identifier] = STATE(4758), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(2013), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), - [sym_comment] = STATE(182), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), - }, - [183] = { - [sym_pipeline_parenthesized] = STATE(6890), - [sym_cmd_identifier] = STATE(4758), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(2013), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), - [sym_comment] = STATE(183), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), - }, - [184] = { - [sym_pipeline_parenthesized] = STATE(6893), - [sym_cmd_identifier] = STATE(4758), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4698), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(2013), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), - [sym_comment] = STATE(184), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(190), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), - }, - [185] = { - [sym_pipeline] = STATE(6099), - [sym_cmd_identifier] = STATE(4514), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1445), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym_val_variable] = STATE(1446), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1465), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), - [sym_comment] = STATE(185), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym_pipe_element_repeat2] = STATE(411), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(123), }, - [186] = { - [sym_pipeline] = STATE(6690), - [sym_cmd_identifier] = STATE(4801), - [sym__ctrl_expression] = STATE(5080), - [sym_ctrl_do] = STATE(5113), - [sym_ctrl_if] = STATE(5113), - [sym_ctrl_match] = STATE(5113), - [sym_ctrl_try] = STATE(5113), - [sym_ctrl_return] = STATE(5113), - [sym_pipe_element] = STATE(4775), - [sym_where_command] = STATE(5143), - [sym__expression] = STATE(3799), - [sym_expr_unary] = STATE(2430), - [sym__expr_unary_minus] = STATE(2432), - [sym_expr_binary] = STATE(2430), - [sym__expr_binary_expression] = STATE(3832), - [sym_expr_parenthesized] = STATE(2004), - [sym_val_range] = STATE(3821), - [sym__value] = STATE(2430), - [sym_val_nothing] = STATE(2399), - [sym_val_bool] = STATE(2399), - [sym_val_variable] = STATE(1994), - [sym_val_number] = STATE(2399), - [sym__val_number_decimal] = STATE(1568), - [sym__val_number] = STATE(2385), - [sym_val_duration] = STATE(2399), - [sym_val_filesize] = STATE(2399), - [sym_val_binary] = STATE(2399), - [sym_val_string] = STATE(2399), - [sym__str_double_quotes] = STATE(1975), - [sym_val_interpolated] = STATE(2399), - [sym__inter_single_quotes] = STATE(2384), - [sym__inter_double_quotes] = STATE(2390), - [sym_val_list] = STATE(2399), - [sym_val_record] = STATE(2399), - [sym_val_table] = STATE(2399), - [sym_val_closure] = STATE(2399), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(5143), - [sym_comment] = STATE(186), - [aux_sym_pipeline_repeat1] = STATE(193), - [aux_sym_pipe_element_repeat2] = STATE(413), + [188] = { + [sym_pipeline] = STATE(7010), + [sym_cmd_identifier] = STATE(4714), + [sym__ctrl_expression] = STATE(5155), + [sym_ctrl_do] = STATE(5175), + [sym_ctrl_if] = STATE(5175), + [sym_ctrl_match] = STATE(5175), + [sym_ctrl_try] = STATE(5175), + [sym_ctrl_return] = STATE(5175), + [sym_pipe_element] = STATE(4782), + [sym_where_command] = STATE(5180), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2509), + [sym__expr_unary_minus] = STATE(2510), + [sym_expr_binary] = STATE(2509), + [sym__expr_binary_expression] = STATE(3876), + [sym_expr_parenthesized] = STATE(2042), + [sym_val_range] = STATE(3900), + [sym__value] = STATE(2509), + [sym_val_nothing] = STATE(2441), + [sym_val_bool] = STATE(2441), + [sym_val_variable] = STATE(2055), + [sym_val_number] = STATE(2441), + [sym__val_number_decimal] = STATE(1665), + [sym__val_number] = STATE(2488), + [sym_val_duration] = STATE(2441), + [sym_val_filesize] = STATE(2441), + [sym_val_binary] = STATE(2441), + [sym_val_string] = STATE(2441), + [sym__raw_str] = STATE(2065), + [sym__str_double_quotes] = STATE(2065), + [sym_val_interpolated] = STATE(2441), + [sym__inter_single_quotes] = STATE(2563), + [sym__inter_double_quotes] = STATE(2436), + [sym_val_list] = STATE(2441), + [sym_val_record] = STATE(2441), + [sym_val_table] = STATE(2441), + [sym_val_closure] = STATE(2441), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5180), + [sym_comment] = STATE(188), + [aux_sym_pipeline_repeat1] = STATE(194), + [aux_sym_pipe_element_repeat2] = STATE(354), [aux_sym_cmd_identifier_token1] = ACTIONS(19), [aux_sym_cmd_identifier_token2] = ACTIONS(21), [aux_sym_cmd_identifier_token3] = ACTIONS(21), @@ -98676,771 +100003,664 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), [aux_sym_env_var_token1] = ACTIONS(119), [anon_sym_CARET] = ACTIONS(121), - [anon_sym_POUND] = ACTIONS(247), - }, - [187] = { - [sym_pipeline] = STATE(6105), - [sym_cmd_identifier] = STATE(4514), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1445), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym_val_variable] = STATE(1446), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1465), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), - [sym_comment] = STATE(187), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym_pipe_element_repeat2] = STATE(411), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - }, - [188] = { - [sym_pipeline] = STATE(6240), - [sym_cmd_identifier] = STATE(4514), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4515), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1445), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym_val_variable] = STATE(1446), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1465), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), - [sym_comment] = STATE(188), - [aux_sym_pipeline_repeat1] = STATE(191), - [aux_sym_pipe_element_repeat2] = STATE(411), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(123), }, [189] = { - [sym_cmd_identifier] = STATE(4758), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(5077), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(2013), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), + [sym_pipeline] = STATE(6227), + [sym_cmd_identifier] = STATE(4616), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1922), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(1929), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1569), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(189), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(189), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym_cmd_identifier_token1] = ACTIONS(1085), - [aux_sym_cmd_identifier_token2] = ACTIONS(1088), - [aux_sym_cmd_identifier_token3] = ACTIONS(1088), - [aux_sym_cmd_identifier_token4] = ACTIONS(1088), - [aux_sym_cmd_identifier_token5] = ACTIONS(1088), - [aux_sym_cmd_identifier_token6] = ACTIONS(1088), - [aux_sym_cmd_identifier_token7] = ACTIONS(1088), - [aux_sym_cmd_identifier_token8] = ACTIONS(1088), - [aux_sym_cmd_identifier_token9] = ACTIONS(1085), - [aux_sym_cmd_identifier_token10] = ACTIONS(1088), - [aux_sym_cmd_identifier_token11] = ACTIONS(1088), - [aux_sym_cmd_identifier_token12] = ACTIONS(1088), - [aux_sym_cmd_identifier_token13] = ACTIONS(1085), - [aux_sym_cmd_identifier_token14] = ACTIONS(1088), - [aux_sym_cmd_identifier_token15] = ACTIONS(1085), - [aux_sym_cmd_identifier_token16] = ACTIONS(1088), - [aux_sym_cmd_identifier_token17] = ACTIONS(1088), - [aux_sym_cmd_identifier_token18] = ACTIONS(1088), - [aux_sym_cmd_identifier_token19] = ACTIONS(1088), - [aux_sym_cmd_identifier_token20] = ACTIONS(1088), - [aux_sym_cmd_identifier_token21] = ACTIONS(1088), - [aux_sym_cmd_identifier_token22] = ACTIONS(1085), - [aux_sym_cmd_identifier_token23] = ACTIONS(1085), - [aux_sym_cmd_identifier_token24] = ACTIONS(1088), - [aux_sym_cmd_identifier_token25] = ACTIONS(1085), - [aux_sym_cmd_identifier_token26] = ACTIONS(1088), - [aux_sym_cmd_identifier_token27] = ACTIONS(1085), - [aux_sym_cmd_identifier_token28] = ACTIONS(1085), - [aux_sym_cmd_identifier_token29] = ACTIONS(1085), - [aux_sym_cmd_identifier_token30] = ACTIONS(1085), - [aux_sym_cmd_identifier_token31] = ACTIONS(1088), - [aux_sym_cmd_identifier_token32] = ACTIONS(1088), - [aux_sym_cmd_identifier_token33] = ACTIONS(1088), - [aux_sym_cmd_identifier_token34] = ACTIONS(1088), - [aux_sym_cmd_identifier_token35] = ACTIONS(1088), - [aux_sym_cmd_identifier_token36] = ACTIONS(1085), - [anon_sym_true] = ACTIONS(1091), - [anon_sym_false] = ACTIONS(1091), - [anon_sym_null] = ACTIONS(1094), - [aux_sym_cmd_identifier_token38] = ACTIONS(1097), - [aux_sym_cmd_identifier_token39] = ACTIONS(1100), - [aux_sym_cmd_identifier_token40] = ACTIONS(1100), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(1106), - [anon_sym_DOLLAR] = ACTIONS(1109), - [anon_sym_DASH] = ACTIONS(1112), - [anon_sym_break] = ACTIONS(1115), - [anon_sym_continue] = ACTIONS(1118), - [anon_sym_do] = ACTIONS(1121), - [anon_sym_if] = ACTIONS(1124), - [anon_sym_match] = ACTIONS(1127), - [anon_sym_LBRACE] = ACTIONS(1130), - [anon_sym_DOT_DOT] = ACTIONS(1133), - [anon_sym_try] = ACTIONS(1136), - [anon_sym_return] = ACTIONS(1139), - [anon_sym_where] = ACTIONS(1142), - [aux_sym_expr_unary_token1] = ACTIONS(1145), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1148), - [anon_sym_DOT_DOT_LT] = ACTIONS(1148), - [aux_sym__val_number_decimal_token1] = ACTIONS(1151), - [aux_sym__val_number_decimal_token2] = ACTIONS(1154), - [aux_sym__val_number_decimal_token3] = ACTIONS(1157), - [aux_sym__val_number_decimal_token4] = ACTIONS(1160), - [aux_sym__val_number_token1] = ACTIONS(1163), - [aux_sym__val_number_token2] = ACTIONS(1163), - [aux_sym__val_number_token3] = ACTIONS(1163), - [anon_sym_0b] = ACTIONS(1166), - [anon_sym_0o] = ACTIONS(1169), - [anon_sym_0x] = ACTIONS(1169), - [sym_val_date] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(1175), - [sym__str_single_quotes] = ACTIONS(1178), - [sym__str_back_ticks] = ACTIONS(1178), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1181), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1184), - [aux_sym_env_var_token1] = ACTIONS(1187), - [anon_sym_CARET] = ACTIONS(1190), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym_pipe_element_repeat2] = STATE(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(373), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(375), + [anon_sym_false] = ACTIONS(375), + [anon_sym_null] = ACTIONS(377), + [aux_sym_cmd_identifier_token38] = ACTIONS(379), + [aux_sym_cmd_identifier_token39] = ACTIONS(381), + [aux_sym_cmd_identifier_token40] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_continue] = ACTIONS(405), + [anon_sym_do] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(435), + [aux_sym__val_number_decimal_token2] = ACTIONS(437), + [aux_sym__val_number_decimal_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token4] = ACTIONS(441), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [190] = { - [sym_cmd_identifier] = STATE(4758), - [sym__ctrl_expression_parenthesized] = STATE(5002), - [sym_ctrl_do_parenthesized] = STATE(5003), - [sym_ctrl_if_parenthesized] = STATE(5003), - [sym_ctrl_match] = STATE(5003), - [sym_ctrl_try_parenthesized] = STATE(5003), - [sym_ctrl_return] = STATE(5003), - [sym_pipe_element_parenthesized] = STATE(4701), - [sym_where_command_parenthesized] = STATE(5004), - [sym__expression_parenthesized] = STATE(3796), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(2013), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5010), + [sym_pipeline] = STATE(6282), + [sym_cmd_identifier] = STATE(4616), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1922), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(1929), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1569), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(190), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(189), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(378), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_break] = ACTIONS(477), - [anon_sym_continue] = ACTIONS(479), - [anon_sym_do] = ACTIONS(481), - [anon_sym_if] = ACTIONS(483), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(487), - [anon_sym_return] = ACTIONS(419), - [anon_sym_where] = ACTIONS(489), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym_pipe_element_repeat2] = STATE(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(373), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(375), + [anon_sym_false] = ACTIONS(375), + [anon_sym_null] = ACTIONS(377), + [aux_sym_cmd_identifier_token38] = ACTIONS(379), + [aux_sym_cmd_identifier_token39] = ACTIONS(381), + [aux_sym_cmd_identifier_token40] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_continue] = ACTIONS(405), + [anon_sym_do] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(435), + [aux_sym__val_number_decimal_token2] = ACTIONS(437), + [aux_sym__val_number_decimal_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token4] = ACTIONS(441), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [191] = { - [sym_cmd_identifier] = STATE(4514), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(4591), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1445), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym_val_variable] = STATE(1446), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1465), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym_pipeline] = STATE(6290), + [sym_cmd_identifier] = STATE(4616), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4618), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1922), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(1929), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1569), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(191), - [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym_pipe_element_repeat2] = STATE(411), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(367), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(367), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(367), - [aux_sym_cmd_identifier_token28] = ACTIONS(367), - [aux_sym_cmd_identifier_token29] = ACTIONS(367), - [aux_sym_cmd_identifier_token30] = ACTIONS(367), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_break] = ACTIONS(399), - [anon_sym_continue] = ACTIONS(401), - [anon_sym_do] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_match] = ACTIONS(413), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(417), - [anon_sym_return] = ACTIONS(419), - [anon_sym_where] = ACTIONS(207), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), + [aux_sym_pipeline_repeat1] = STATE(195), + [aux_sym_pipe_element_repeat2] = STATE(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(373), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(375), + [anon_sym_false] = ACTIONS(375), + [anon_sym_null] = ACTIONS(377), + [aux_sym_cmd_identifier_token38] = ACTIONS(379), + [aux_sym_cmd_identifier_token39] = ACTIONS(381), + [aux_sym_cmd_identifier_token40] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_continue] = ACTIONS(405), + [anon_sym_do] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(435), + [aux_sym__val_number_decimal_token2] = ACTIONS(437), + [aux_sym__val_number_decimal_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token4] = ACTIONS(441), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [192] = { - [sym_cmd_identifier] = STATE(4514), - [sym__ctrl_expression] = STATE(4840), - [sym_ctrl_do] = STATE(4854), - [sym_ctrl_if] = STATE(4854), - [sym_ctrl_match] = STATE(4854), - [sym_ctrl_try] = STATE(4854), - [sym_ctrl_return] = STATE(4854), - [sym_pipe_element] = STATE(5020), - [sym_where_command] = STATE(4904), - [sym__expression] = STATE(3773), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1445), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym_val_variable] = STATE(1446), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1465), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4904), + [sym_cmd_identifier] = STATE(4616), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(5184), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1922), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(1929), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1569), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(192), [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym_pipe_element_repeat2] = STATE(411), - [aux_sym_cmd_identifier_token1] = ACTIONS(1193), - [aux_sym_cmd_identifier_token2] = ACTIONS(1196), - [aux_sym_cmd_identifier_token3] = ACTIONS(1196), - [aux_sym_cmd_identifier_token4] = ACTIONS(1196), - [aux_sym_cmd_identifier_token5] = ACTIONS(1196), - [aux_sym_cmd_identifier_token6] = ACTIONS(1196), - [aux_sym_cmd_identifier_token7] = ACTIONS(1196), - [aux_sym_cmd_identifier_token8] = ACTIONS(1196), - [aux_sym_cmd_identifier_token9] = ACTIONS(1193), - [aux_sym_cmd_identifier_token10] = ACTIONS(1196), - [aux_sym_cmd_identifier_token11] = ACTIONS(1196), - [aux_sym_cmd_identifier_token12] = ACTIONS(1196), - [aux_sym_cmd_identifier_token13] = ACTIONS(1193), - [aux_sym_cmd_identifier_token14] = ACTIONS(1196), - [aux_sym_cmd_identifier_token15] = ACTIONS(1193), - [aux_sym_cmd_identifier_token16] = ACTIONS(1196), - [aux_sym_cmd_identifier_token17] = ACTIONS(1196), - [aux_sym_cmd_identifier_token18] = ACTIONS(1196), - [aux_sym_cmd_identifier_token19] = ACTIONS(1196), - [aux_sym_cmd_identifier_token20] = ACTIONS(1196), - [aux_sym_cmd_identifier_token21] = ACTIONS(1196), - [aux_sym_cmd_identifier_token22] = ACTIONS(1193), - [aux_sym_cmd_identifier_token23] = ACTIONS(1193), - [aux_sym_cmd_identifier_token24] = ACTIONS(1196), - [aux_sym_cmd_identifier_token25] = ACTIONS(1193), - [aux_sym_cmd_identifier_token26] = ACTIONS(1196), - [aux_sym_cmd_identifier_token27] = ACTIONS(1193), - [aux_sym_cmd_identifier_token28] = ACTIONS(1193), - [aux_sym_cmd_identifier_token29] = ACTIONS(1193), - [aux_sym_cmd_identifier_token30] = ACTIONS(1193), - [aux_sym_cmd_identifier_token31] = ACTIONS(1196), - [aux_sym_cmd_identifier_token32] = ACTIONS(1196), - [aux_sym_cmd_identifier_token33] = ACTIONS(1196), - [aux_sym_cmd_identifier_token34] = ACTIONS(1196), - [aux_sym_cmd_identifier_token35] = ACTIONS(1196), - [aux_sym_cmd_identifier_token36] = ACTIONS(1193), - [anon_sym_true] = ACTIONS(1199), - [anon_sym_false] = ACTIONS(1199), - [anon_sym_null] = ACTIONS(1202), - [aux_sym_cmd_identifier_token38] = ACTIONS(1205), - [aux_sym_cmd_identifier_token39] = ACTIONS(1208), - [aux_sym_cmd_identifier_token40] = ACTIONS(1208), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_LPAREN] = ACTIONS(1214), - [anon_sym_DOLLAR] = ACTIONS(1217), - [anon_sym_DASH] = ACTIONS(1220), - [anon_sym_break] = ACTIONS(1223), - [anon_sym_continue] = ACTIONS(1226), - [anon_sym_do] = ACTIONS(1229), - [anon_sym_if] = ACTIONS(1232), - [anon_sym_match] = ACTIONS(1235), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_DOT_DOT] = ACTIONS(1241), - [anon_sym_try] = ACTIONS(1244), - [anon_sym_return] = ACTIONS(1247), - [anon_sym_where] = ACTIONS(1250), - [aux_sym_expr_unary_token1] = ACTIONS(1253), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1256), - [anon_sym_DOT_DOT_LT] = ACTIONS(1256), - [aux_sym__val_number_decimal_token1] = ACTIONS(1259), - [aux_sym__val_number_decimal_token2] = ACTIONS(1262), - [aux_sym__val_number_decimal_token3] = ACTIONS(1265), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), - [aux_sym__val_number_token1] = ACTIONS(1271), - [aux_sym__val_number_token2] = ACTIONS(1271), - [aux_sym__val_number_token3] = ACTIONS(1271), - [anon_sym_0b] = ACTIONS(1274), - [anon_sym_0o] = ACTIONS(1277), - [anon_sym_0x] = ACTIONS(1277), - [sym_val_date] = ACTIONS(1280), - [anon_sym_DQUOTE] = ACTIONS(1283), - [sym__str_single_quotes] = ACTIONS(1286), - [sym__str_back_ticks] = ACTIONS(1286), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1292), - [aux_sym_env_var_token1] = ACTIONS(1295), - [anon_sym_CARET] = ACTIONS(1298), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_pipe_element_repeat2] = STATE(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(1105), + [aux_sym_cmd_identifier_token2] = ACTIONS(1108), + [aux_sym_cmd_identifier_token3] = ACTIONS(1108), + [aux_sym_cmd_identifier_token4] = ACTIONS(1108), + [aux_sym_cmd_identifier_token5] = ACTIONS(1108), + [aux_sym_cmd_identifier_token6] = ACTIONS(1108), + [aux_sym_cmd_identifier_token7] = ACTIONS(1108), + [aux_sym_cmd_identifier_token8] = ACTIONS(1108), + [aux_sym_cmd_identifier_token9] = ACTIONS(1105), + [aux_sym_cmd_identifier_token10] = ACTIONS(1108), + [aux_sym_cmd_identifier_token11] = ACTIONS(1108), + [aux_sym_cmd_identifier_token12] = ACTIONS(1108), + [aux_sym_cmd_identifier_token13] = ACTIONS(1105), + [aux_sym_cmd_identifier_token14] = ACTIONS(1108), + [aux_sym_cmd_identifier_token15] = ACTIONS(1105), + [aux_sym_cmd_identifier_token16] = ACTIONS(1108), + [aux_sym_cmd_identifier_token17] = ACTIONS(1108), + [aux_sym_cmd_identifier_token18] = ACTIONS(1108), + [aux_sym_cmd_identifier_token19] = ACTIONS(1108), + [aux_sym_cmd_identifier_token20] = ACTIONS(1108), + [aux_sym_cmd_identifier_token21] = ACTIONS(1108), + [aux_sym_cmd_identifier_token22] = ACTIONS(1105), + [aux_sym_cmd_identifier_token23] = ACTIONS(1105), + [aux_sym_cmd_identifier_token24] = ACTIONS(1108), + [aux_sym_cmd_identifier_token25] = ACTIONS(1105), + [aux_sym_cmd_identifier_token26] = ACTIONS(1108), + [aux_sym_cmd_identifier_token27] = ACTIONS(1105), + [aux_sym_cmd_identifier_token28] = ACTIONS(1105), + [aux_sym_cmd_identifier_token29] = ACTIONS(1105), + [aux_sym_cmd_identifier_token30] = ACTIONS(1105), + [aux_sym_cmd_identifier_token31] = ACTIONS(1108), + [aux_sym_cmd_identifier_token32] = ACTIONS(1108), + [aux_sym_cmd_identifier_token33] = ACTIONS(1108), + [aux_sym_cmd_identifier_token34] = ACTIONS(1108), + [aux_sym_cmd_identifier_token35] = ACTIONS(1108), + [aux_sym_cmd_identifier_token36] = ACTIONS(1105), + [anon_sym_true] = ACTIONS(1111), + [anon_sym_false] = ACTIONS(1111), + [anon_sym_null] = ACTIONS(1114), + [aux_sym_cmd_identifier_token38] = ACTIONS(1117), + [aux_sym_cmd_identifier_token39] = ACTIONS(1120), + [aux_sym_cmd_identifier_token40] = ACTIONS(1120), + [anon_sym_LBRACK] = ACTIONS(1123), + [anon_sym_LPAREN] = ACTIONS(1126), + [anon_sym_DOLLAR] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1132), + [anon_sym_break] = ACTIONS(1135), + [anon_sym_continue] = ACTIONS(1138), + [anon_sym_do] = ACTIONS(1141), + [anon_sym_if] = ACTIONS(1144), + [anon_sym_match] = ACTIONS(1147), + [anon_sym_LBRACE] = ACTIONS(1150), + [anon_sym_DOT_DOT] = ACTIONS(1153), + [anon_sym_try] = ACTIONS(1156), + [anon_sym_return] = ACTIONS(1159), + [anon_sym_where] = ACTIONS(1162), + [aux_sym_expr_unary_token1] = ACTIONS(1165), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1168), + [anon_sym_DOT_DOT_LT] = ACTIONS(1168), + [aux_sym__val_number_decimal_token1] = ACTIONS(1171), + [aux_sym__val_number_decimal_token2] = ACTIONS(1174), + [aux_sym__val_number_decimal_token3] = ACTIONS(1177), + [aux_sym__val_number_decimal_token4] = ACTIONS(1180), + [aux_sym__val_number_token1] = ACTIONS(1183), + [aux_sym__val_number_token2] = ACTIONS(1183), + [aux_sym__val_number_token3] = ACTIONS(1183), + [anon_sym_0b] = ACTIONS(1186), + [anon_sym_0o] = ACTIONS(1189), + [anon_sym_0x] = ACTIONS(1189), + [sym_val_date] = ACTIONS(1192), + [anon_sym_DQUOTE] = ACTIONS(1195), + [sym__str_single_quotes] = ACTIONS(1198), + [sym__str_back_ticks] = ACTIONS(1198), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1201), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1204), + [aux_sym_env_var_token1] = ACTIONS(1207), + [anon_sym_CARET] = ACTIONS(1210), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1213), }, [193] = { - [sym_cmd_identifier] = STATE(4801), - [sym__ctrl_expression] = STATE(5080), - [sym_ctrl_do] = STATE(5113), - [sym_ctrl_if] = STATE(5113), - [sym_ctrl_match] = STATE(5113), - [sym_ctrl_try] = STATE(5113), - [sym_ctrl_return] = STATE(5113), - [sym_pipe_element] = STATE(4721), - [sym_where_command] = STATE(5143), - [sym__expression] = STATE(3799), - [sym_expr_unary] = STATE(2430), - [sym__expr_unary_minus] = STATE(2432), - [sym_expr_binary] = STATE(2430), - [sym__expr_binary_expression] = STATE(3832), - [sym_expr_parenthesized] = STATE(2004), - [sym_val_range] = STATE(3821), - [sym__value] = STATE(2430), - [sym_val_nothing] = STATE(2399), - [sym_val_bool] = STATE(2399), - [sym_val_variable] = STATE(1994), - [sym_val_number] = STATE(2399), - [sym__val_number_decimal] = STATE(1568), - [sym__val_number] = STATE(2385), - [sym_val_duration] = STATE(2399), - [sym_val_filesize] = STATE(2399), - [sym_val_binary] = STATE(2399), - [sym_val_string] = STATE(2399), - [sym__str_double_quotes] = STATE(1975), - [sym_val_interpolated] = STATE(2399), - [sym__inter_single_quotes] = STATE(2384), - [sym__inter_double_quotes] = STATE(2390), - [sym_val_list] = STATE(2399), - [sym_val_record] = STATE(2399), - [sym_val_table] = STATE(2399), - [sym_val_closure] = STATE(2399), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(5143), + [sym_cmd_identifier] = STATE(4817), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(5135), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(2028), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), [sym_comment] = STATE(193), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(193), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym_cmd_identifier_token1] = ACTIONS(1216), + [aux_sym_cmd_identifier_token2] = ACTIONS(1219), + [aux_sym_cmd_identifier_token3] = ACTIONS(1219), + [aux_sym_cmd_identifier_token4] = ACTIONS(1219), + [aux_sym_cmd_identifier_token5] = ACTIONS(1219), + [aux_sym_cmd_identifier_token6] = ACTIONS(1219), + [aux_sym_cmd_identifier_token7] = ACTIONS(1219), + [aux_sym_cmd_identifier_token8] = ACTIONS(1219), + [aux_sym_cmd_identifier_token9] = ACTIONS(1216), + [aux_sym_cmd_identifier_token10] = ACTIONS(1219), + [aux_sym_cmd_identifier_token11] = ACTIONS(1219), + [aux_sym_cmd_identifier_token12] = ACTIONS(1219), + [aux_sym_cmd_identifier_token13] = ACTIONS(1216), + [aux_sym_cmd_identifier_token14] = ACTIONS(1219), + [aux_sym_cmd_identifier_token15] = ACTIONS(1216), + [aux_sym_cmd_identifier_token16] = ACTIONS(1219), + [aux_sym_cmd_identifier_token17] = ACTIONS(1219), + [aux_sym_cmd_identifier_token18] = ACTIONS(1219), + [aux_sym_cmd_identifier_token19] = ACTIONS(1219), + [aux_sym_cmd_identifier_token20] = ACTIONS(1219), + [aux_sym_cmd_identifier_token21] = ACTIONS(1219), + [aux_sym_cmd_identifier_token22] = ACTIONS(1216), + [aux_sym_cmd_identifier_token23] = ACTIONS(1216), + [aux_sym_cmd_identifier_token24] = ACTIONS(1219), + [aux_sym_cmd_identifier_token25] = ACTIONS(1216), + [aux_sym_cmd_identifier_token26] = ACTIONS(1219), + [aux_sym_cmd_identifier_token27] = ACTIONS(1216), + [aux_sym_cmd_identifier_token28] = ACTIONS(1216), + [aux_sym_cmd_identifier_token29] = ACTIONS(1216), + [aux_sym_cmd_identifier_token30] = ACTIONS(1216), + [aux_sym_cmd_identifier_token31] = ACTIONS(1219), + [aux_sym_cmd_identifier_token32] = ACTIONS(1219), + [aux_sym_cmd_identifier_token33] = ACTIONS(1219), + [aux_sym_cmd_identifier_token34] = ACTIONS(1219), + [aux_sym_cmd_identifier_token35] = ACTIONS(1219), + [aux_sym_cmd_identifier_token36] = ACTIONS(1216), + [anon_sym_true] = ACTIONS(1222), + [anon_sym_false] = ACTIONS(1222), + [anon_sym_null] = ACTIONS(1225), + [aux_sym_cmd_identifier_token38] = ACTIONS(1228), + [aux_sym_cmd_identifier_token39] = ACTIONS(1231), + [aux_sym_cmd_identifier_token40] = ACTIONS(1231), + [anon_sym_LBRACK] = ACTIONS(1234), + [anon_sym_LPAREN] = ACTIONS(1237), + [anon_sym_DOLLAR] = ACTIONS(1240), + [anon_sym_DASH] = ACTIONS(1243), + [anon_sym_break] = ACTIONS(1246), + [anon_sym_continue] = ACTIONS(1249), + [anon_sym_do] = ACTIONS(1252), + [anon_sym_if] = ACTIONS(1255), + [anon_sym_match] = ACTIONS(1258), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_DOT_DOT] = ACTIONS(1264), + [anon_sym_try] = ACTIONS(1267), + [anon_sym_return] = ACTIONS(1270), + [anon_sym_where] = ACTIONS(1273), + [aux_sym_expr_unary_token1] = ACTIONS(1276), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1279), + [anon_sym_DOT_DOT_LT] = ACTIONS(1279), + [aux_sym__val_number_decimal_token1] = ACTIONS(1282), + [aux_sym__val_number_decimal_token2] = ACTIONS(1285), + [aux_sym__val_number_decimal_token3] = ACTIONS(1288), + [aux_sym__val_number_decimal_token4] = ACTIONS(1291), + [aux_sym__val_number_token1] = ACTIONS(1294), + [aux_sym__val_number_token2] = ACTIONS(1294), + [aux_sym__val_number_token3] = ACTIONS(1294), + [anon_sym_0b] = ACTIONS(1297), + [anon_sym_0o] = ACTIONS(1300), + [anon_sym_0x] = ACTIONS(1300), + [sym_val_date] = ACTIONS(1303), + [anon_sym_DQUOTE] = ACTIONS(1306), + [sym__str_single_quotes] = ACTIONS(1309), + [sym__str_back_ticks] = ACTIONS(1309), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1312), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1315), + [aux_sym_env_var_token1] = ACTIONS(1318), + [anon_sym_CARET] = ACTIONS(1321), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1324), + }, + [194] = { + [sym_cmd_identifier] = STATE(4714), + [sym__ctrl_expression] = STATE(5155), + [sym_ctrl_do] = STATE(5175), + [sym_ctrl_if] = STATE(5175), + [sym_ctrl_match] = STATE(5175), + [sym_ctrl_try] = STATE(5175), + [sym_ctrl_return] = STATE(5175), + [sym_pipe_element] = STATE(4713), + [sym_where_command] = STATE(5180), + [sym__expression] = STATE(3852), + [sym_expr_unary] = STATE(2509), + [sym__expr_unary_minus] = STATE(2510), + [sym_expr_binary] = STATE(2509), + [sym__expr_binary_expression] = STATE(3876), + [sym_expr_parenthesized] = STATE(2042), + [sym_val_range] = STATE(3900), + [sym__value] = STATE(2509), + [sym_val_nothing] = STATE(2441), + [sym_val_bool] = STATE(2441), + [sym_val_variable] = STATE(2055), + [sym_val_number] = STATE(2441), + [sym__val_number_decimal] = STATE(1665), + [sym__val_number] = STATE(2488), + [sym_val_duration] = STATE(2441), + [sym_val_filesize] = STATE(2441), + [sym_val_binary] = STATE(2441), + [sym_val_string] = STATE(2441), + [sym__raw_str] = STATE(2065), + [sym__str_double_quotes] = STATE(2065), + [sym_val_interpolated] = STATE(2441), + [sym__inter_single_quotes] = STATE(2563), + [sym__inter_double_quotes] = STATE(2436), + [sym_val_list] = STATE(2441), + [sym_val_record] = STATE(2441), + [sym_val_table] = STATE(2441), + [sym_val_closure] = STATE(2441), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5180), + [sym_comment] = STATE(194), [aux_sym_pipeline_repeat1] = STATE(192), - [aux_sym_pipe_element_repeat2] = STATE(413), + [aux_sym_pipe_element_repeat2] = STATE(354), [aux_sym_cmd_identifier_token1] = ACTIONS(19), [aux_sym_cmd_identifier_token2] = ACTIONS(21), [aux_sym_cmd_identifier_token3] = ACTIONS(21), @@ -99518,1242 +100738,1143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), [aux_sym_env_var_token1] = ACTIONS(119), [anon_sym_CARET] = ACTIONS(121), - [anon_sym_POUND] = ACTIONS(247), - }, - [194] = { - [sym_comment] = STATE(194), - [anon_sym_export] = ACTIONS(1301), - [anon_sym_alias] = ACTIONS(1301), - [anon_sym_let] = ACTIONS(1301), - [anon_sym_let_DASHenv] = ACTIONS(1301), - [anon_sym_mut] = ACTIONS(1301), - [anon_sym_const] = ACTIONS(1301), - [aux_sym_cmd_identifier_token1] = ACTIONS(1301), - [aux_sym_cmd_identifier_token2] = ACTIONS(1301), - [aux_sym_cmd_identifier_token3] = ACTIONS(1301), - [aux_sym_cmd_identifier_token4] = ACTIONS(1301), - [aux_sym_cmd_identifier_token5] = ACTIONS(1301), - [aux_sym_cmd_identifier_token6] = ACTIONS(1301), - [aux_sym_cmd_identifier_token7] = ACTIONS(1301), - [aux_sym_cmd_identifier_token8] = ACTIONS(1301), - [aux_sym_cmd_identifier_token9] = ACTIONS(1301), - [aux_sym_cmd_identifier_token10] = ACTIONS(1301), - [aux_sym_cmd_identifier_token11] = ACTIONS(1301), - [aux_sym_cmd_identifier_token12] = ACTIONS(1301), - [aux_sym_cmd_identifier_token13] = ACTIONS(1301), - [aux_sym_cmd_identifier_token14] = ACTIONS(1301), - [aux_sym_cmd_identifier_token15] = ACTIONS(1301), - [aux_sym_cmd_identifier_token16] = ACTIONS(1301), - [aux_sym_cmd_identifier_token17] = ACTIONS(1301), - [aux_sym_cmd_identifier_token18] = ACTIONS(1301), - [aux_sym_cmd_identifier_token19] = ACTIONS(1301), - [aux_sym_cmd_identifier_token20] = ACTIONS(1301), - [aux_sym_cmd_identifier_token21] = ACTIONS(1301), - [aux_sym_cmd_identifier_token22] = ACTIONS(1301), - [aux_sym_cmd_identifier_token23] = ACTIONS(1301), - [aux_sym_cmd_identifier_token24] = ACTIONS(1301), - [aux_sym_cmd_identifier_token25] = ACTIONS(1301), - [aux_sym_cmd_identifier_token26] = ACTIONS(1301), - [aux_sym_cmd_identifier_token27] = ACTIONS(1301), - [aux_sym_cmd_identifier_token28] = ACTIONS(1301), - [aux_sym_cmd_identifier_token29] = ACTIONS(1301), - [aux_sym_cmd_identifier_token30] = ACTIONS(1301), - [aux_sym_cmd_identifier_token31] = ACTIONS(1301), - [aux_sym_cmd_identifier_token32] = ACTIONS(1301), - [aux_sym_cmd_identifier_token33] = ACTIONS(1301), - [aux_sym_cmd_identifier_token34] = ACTIONS(1301), - [aux_sym_cmd_identifier_token35] = ACTIONS(1301), - [aux_sym_cmd_identifier_token36] = ACTIONS(1301), - [anon_sym_true] = ACTIONS(1304), - [anon_sym_false] = ACTIONS(1304), - [anon_sym_null] = ACTIONS(1304), - [aux_sym_cmd_identifier_token38] = ACTIONS(1301), - [aux_sym_cmd_identifier_token39] = ACTIONS(1304), - [aux_sym_cmd_identifier_token40] = ACTIONS(1304), - [sym__newline] = ACTIONS(1304), - [anon_sym_SEMI] = ACTIONS(1304), - [anon_sym_PIPE] = ACTIONS(1307), - [anon_sym_def] = ACTIONS(1301), - [anon_sym_export_DASHenv] = ACTIONS(1301), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_module] = ACTIONS(1301), - [anon_sym_use] = ACTIONS(1301), - [anon_sym_LBRACK] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1304), - [anon_sym_RPAREN] = ACTIONS(1309), - [anon_sym_DOLLAR] = ACTIONS(1301), - [anon_sym_error] = ACTIONS(1301), - [anon_sym_list] = ACTIONS(1311), - [anon_sym_DASH] = ACTIONS(1301), - [anon_sym_break] = ACTIONS(1301), - [anon_sym_continue] = ACTIONS(1301), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_in] = ACTIONS(1311), - [anon_sym_loop] = ACTIONS(1301), - [anon_sym_make] = ACTIONS(1311), - [anon_sym_while] = ACTIONS(1301), - [anon_sym_do] = ACTIONS(1301), - [anon_sym_if] = ACTIONS(1301), - [anon_sym_else] = ACTIONS(1311), - [anon_sym_match] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_RBRACE] = ACTIONS(1309), - [anon_sym_DOT_DOT] = ACTIONS(1301), - [anon_sym_try] = ACTIONS(1301), - [anon_sym_catch] = ACTIONS(1311), - [anon_sym_return] = ACTIONS(1301), - [anon_sym_source] = ACTIONS(1301), - [anon_sym_source_DASHenv] = ACTIONS(1301), - [anon_sym_register] = ACTIONS(1301), - [anon_sym_hide] = ACTIONS(1301), - [anon_sym_hide_DASHenv] = ACTIONS(1301), - [anon_sym_overlay] = ACTIONS(1301), - [anon_sym_new] = ACTIONS(1311), - [anon_sym_as] = ACTIONS(1311), - [anon_sym_where] = ACTIONS(1304), - [aux_sym_expr_unary_token1] = ACTIONS(1304), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1304), - [anon_sym_DOT_DOT_LT] = ACTIONS(1304), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1307), - [aux_sym__val_number_decimal_token1] = ACTIONS(1301), - [aux_sym__val_number_decimal_token2] = ACTIONS(1304), - [aux_sym__val_number_decimal_token3] = ACTIONS(1304), - [aux_sym__val_number_decimal_token4] = ACTIONS(1304), - [aux_sym__val_number_token1] = ACTIONS(1304), - [aux_sym__val_number_token2] = ACTIONS(1304), - [aux_sym__val_number_token3] = ACTIONS(1304), - [anon_sym_0b] = ACTIONS(1301), - [anon_sym_0o] = ACTIONS(1301), - [anon_sym_0x] = ACTIONS(1301), - [sym_val_date] = ACTIONS(1304), - [anon_sym_DQUOTE] = ACTIONS(1304), - [sym__str_single_quotes] = ACTIONS(1304), - [sym__str_back_ticks] = ACTIONS(1304), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1304), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1304), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(1311), - [aux_sym_env_var_token1] = ACTIONS(1301), - [anon_sym_CARET] = ACTIONS(1304), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(123), }, [195] = { + [sym_cmd_identifier] = STATE(4616), + [sym__ctrl_expression] = STATE(5007), + [sym_ctrl_do] = STATE(5008), + [sym_ctrl_if] = STATE(5008), + [sym_ctrl_match] = STATE(5008), + [sym_ctrl_try] = STATE(5008), + [sym_ctrl_return] = STATE(5008), + [sym_pipe_element] = STATE(4588), + [sym_where_command] = STATE(5009), + [sym__expression] = STATE(3832), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1922), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(1929), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1569), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5009), [sym_comment] = STATE(195), - [aux_sym_shebang_repeat1] = STATE(195), - [anon_sym_export] = ACTIONS(1313), - [anon_sym_alias] = ACTIONS(1313), - [anon_sym_let] = ACTIONS(1313), - [anon_sym_let_DASHenv] = ACTIONS(1313), - [anon_sym_mut] = ACTIONS(1313), - [anon_sym_const] = ACTIONS(1313), - [aux_sym_cmd_identifier_token1] = ACTIONS(1313), - [aux_sym_cmd_identifier_token2] = ACTIONS(1313), - [aux_sym_cmd_identifier_token3] = ACTIONS(1313), - [aux_sym_cmd_identifier_token4] = ACTIONS(1313), - [aux_sym_cmd_identifier_token5] = ACTIONS(1313), - [aux_sym_cmd_identifier_token6] = ACTIONS(1313), - [aux_sym_cmd_identifier_token7] = ACTIONS(1313), - [aux_sym_cmd_identifier_token8] = ACTIONS(1313), - [aux_sym_cmd_identifier_token9] = ACTIONS(1313), - [aux_sym_cmd_identifier_token10] = ACTIONS(1313), - [aux_sym_cmd_identifier_token11] = ACTIONS(1313), - [aux_sym_cmd_identifier_token12] = ACTIONS(1313), - [aux_sym_cmd_identifier_token13] = ACTIONS(1313), - [aux_sym_cmd_identifier_token14] = ACTIONS(1313), - [aux_sym_cmd_identifier_token15] = ACTIONS(1313), - [aux_sym_cmd_identifier_token16] = ACTIONS(1313), - [aux_sym_cmd_identifier_token17] = ACTIONS(1313), - [aux_sym_cmd_identifier_token18] = ACTIONS(1313), - [aux_sym_cmd_identifier_token19] = ACTIONS(1313), - [aux_sym_cmd_identifier_token20] = ACTIONS(1313), - [aux_sym_cmd_identifier_token21] = ACTIONS(1313), - [aux_sym_cmd_identifier_token22] = ACTIONS(1313), - [aux_sym_cmd_identifier_token23] = ACTIONS(1313), - [aux_sym_cmd_identifier_token24] = ACTIONS(1313), - [aux_sym_cmd_identifier_token25] = ACTIONS(1313), - [aux_sym_cmd_identifier_token26] = ACTIONS(1313), - [aux_sym_cmd_identifier_token27] = ACTIONS(1313), - [aux_sym_cmd_identifier_token28] = ACTIONS(1313), - [aux_sym_cmd_identifier_token29] = ACTIONS(1313), - [aux_sym_cmd_identifier_token30] = ACTIONS(1313), - [aux_sym_cmd_identifier_token31] = ACTIONS(1313), - [aux_sym_cmd_identifier_token32] = ACTIONS(1313), - [aux_sym_cmd_identifier_token33] = ACTIONS(1313), - [aux_sym_cmd_identifier_token34] = ACTIONS(1313), - [aux_sym_cmd_identifier_token35] = ACTIONS(1313), - [aux_sym_cmd_identifier_token36] = ACTIONS(1313), - [anon_sym_true] = ACTIONS(1315), - [anon_sym_false] = ACTIONS(1315), - [anon_sym_null] = ACTIONS(1315), - [aux_sym_cmd_identifier_token38] = ACTIONS(1313), - [aux_sym_cmd_identifier_token39] = ACTIONS(1315), - [aux_sym_cmd_identifier_token40] = ACTIONS(1315), - [sym__newline] = ACTIONS(1317), - [anon_sym_SEMI] = ACTIONS(1315), - [anon_sym_PIPE] = ACTIONS(1315), - [anon_sym_def] = ACTIONS(1313), - [anon_sym_export_DASHenv] = ACTIONS(1313), - [anon_sym_extern] = ACTIONS(1313), - [anon_sym_module] = ACTIONS(1313), - [anon_sym_use] = ACTIONS(1313), - [anon_sym_LBRACK] = ACTIONS(1315), - [anon_sym_LPAREN] = ACTIONS(1315), - [anon_sym_DOLLAR] = ACTIONS(1313), - [anon_sym_error] = ACTIONS(1313), - [anon_sym_list] = ACTIONS(1313), - [anon_sym_DASH] = ACTIONS(1313), - [anon_sym_break] = ACTIONS(1313), - [anon_sym_continue] = ACTIONS(1313), - [anon_sym_for] = ACTIONS(1313), - [anon_sym_in] = ACTIONS(1313), - [anon_sym_loop] = ACTIONS(1313), - [anon_sym_make] = ACTIONS(1313), - [anon_sym_while] = ACTIONS(1313), - [anon_sym_do] = ACTIONS(1313), - [anon_sym_if] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1313), - [anon_sym_match] = ACTIONS(1313), - [anon_sym_LBRACE] = ACTIONS(1315), - [anon_sym_DOT_DOT] = ACTIONS(1313), - [anon_sym_try] = ACTIONS(1313), - [anon_sym_catch] = ACTIONS(1313), - [anon_sym_return] = ACTIONS(1313), - [anon_sym_source] = ACTIONS(1313), - [anon_sym_source_DASHenv] = ACTIONS(1313), - [anon_sym_register] = ACTIONS(1313), - [anon_sym_hide] = ACTIONS(1313), - [anon_sym_hide_DASHenv] = ACTIONS(1313), - [anon_sym_overlay] = ACTIONS(1313), - [anon_sym_new] = ACTIONS(1313), - [anon_sym_as] = ACTIONS(1313), - [anon_sym_where] = ACTIONS(1315), - [aux_sym_expr_unary_token1] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1315), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1315), - [anon_sym_DOT_DOT_LT] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1315), - [aux_sym__val_number_decimal_token1] = ACTIONS(1313), - [aux_sym__val_number_decimal_token2] = ACTIONS(1315), - [aux_sym__val_number_decimal_token3] = ACTIONS(1315), - [aux_sym__val_number_decimal_token4] = ACTIONS(1315), - [aux_sym__val_number_token1] = ACTIONS(1315), - [aux_sym__val_number_token2] = ACTIONS(1315), - [aux_sym__val_number_token3] = ACTIONS(1315), - [anon_sym_0b] = ACTIONS(1313), - [anon_sym_0o] = ACTIONS(1313), - [anon_sym_0x] = ACTIONS(1313), - [sym_val_date] = ACTIONS(1315), - [anon_sym_DQUOTE] = ACTIONS(1315), - [sym__str_single_quotes] = ACTIONS(1315), - [sym__str_back_ticks] = ACTIONS(1315), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1315), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1315), - [anon_sym_PLUS] = ACTIONS(1313), - [aux_sym_env_var_token1] = ACTIONS(1313), - [anon_sym_CARET] = ACTIONS(1315), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_pipeline_repeat1] = STATE(192), + [aux_sym_pipe_element_repeat2] = STATE(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(373), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(375), + [anon_sym_false] = ACTIONS(375), + [anon_sym_null] = ACTIONS(377), + [aux_sym_cmd_identifier_token38] = ACTIONS(379), + [aux_sym_cmd_identifier_token39] = ACTIONS(381), + [aux_sym_cmd_identifier_token40] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_break] = ACTIONS(403), + [anon_sym_continue] = ACTIONS(405), + [anon_sym_do] = ACTIONS(413), + [anon_sym_if] = ACTIONS(415), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_where] = ACTIONS(209), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(435), + [aux_sym__val_number_decimal_token2] = ACTIONS(437), + [aux_sym__val_number_decimal_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token4] = ACTIONS(441), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [196] = { - [sym_cmd_identifier] = STATE(7516), - [sym_expr_parenthesized] = STATE(7410), - [sym__spread_parenthesized] = STATE(567), - [sym__spread_variable] = STATE(571), - [sym_val_variable] = STATE(7410), - [sym_val_number] = STATE(7410), - [sym__val_number_decimal] = STATE(6126), - [sym__val_number] = STATE(1647), - [sym_val_string] = STATE(7410), - [sym__str_double_quotes] = STATE(1418), - [sym__spread_record] = STATE(567), - [sym_record_body] = STATE(7481), - [sym_record_entry] = STATE(6911), - [sym__record_key] = STATE(7516), + [sym_cmd_identifier] = STATE(4817), + [sym__ctrl_expression_parenthesized] = STATE(5186), + [sym_ctrl_do_parenthesized] = STATE(5188), + [sym_ctrl_if_parenthesized] = STATE(5188), + [sym_ctrl_match] = STATE(5188), + [sym_ctrl_try_parenthesized] = STATE(5188), + [sym_ctrl_return] = STATE(5188), + [sym_pipe_element_parenthesized] = STATE(4712), + [sym_where_command_parenthesized] = STATE(5214), + [sym__expression_parenthesized] = STATE(3873), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(2028), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5061), [sym_comment] = STATE(196), - [aux_sym_shebang_repeat1] = STATE(207), - [aux_sym_record_body_repeat1] = STATE(210), - [anon_sym_export] = ACTIONS(273), - [anon_sym_alias] = ACTIONS(273), - [anon_sym_let] = ACTIONS(273), - [anon_sym_let_DASHenv] = ACTIONS(273), - [anon_sym_mut] = ACTIONS(273), - [anon_sym_const] = ACTIONS(273), - [aux_sym_cmd_identifier_token1] = ACTIONS(1320), - [aux_sym_cmd_identifier_token2] = ACTIONS(1320), - [aux_sym_cmd_identifier_token3] = ACTIONS(1320), - [aux_sym_cmd_identifier_token4] = ACTIONS(1320), - [aux_sym_cmd_identifier_token5] = ACTIONS(1320), - [aux_sym_cmd_identifier_token6] = ACTIONS(1320), - [aux_sym_cmd_identifier_token7] = ACTIONS(1320), - [aux_sym_cmd_identifier_token8] = ACTIONS(1320), - [aux_sym_cmd_identifier_token9] = ACTIONS(1320), - [aux_sym_cmd_identifier_token10] = ACTIONS(1320), - [aux_sym_cmd_identifier_token11] = ACTIONS(1320), - [aux_sym_cmd_identifier_token12] = ACTIONS(1320), - [aux_sym_cmd_identifier_token13] = ACTIONS(1320), - [aux_sym_cmd_identifier_token14] = ACTIONS(1320), - [aux_sym_cmd_identifier_token15] = ACTIONS(1320), - [aux_sym_cmd_identifier_token16] = ACTIONS(1320), - [aux_sym_cmd_identifier_token17] = ACTIONS(1320), - [aux_sym_cmd_identifier_token18] = ACTIONS(1320), - [aux_sym_cmd_identifier_token19] = ACTIONS(1320), - [aux_sym_cmd_identifier_token20] = ACTIONS(1320), - [aux_sym_cmd_identifier_token21] = ACTIONS(1320), - [aux_sym_cmd_identifier_token22] = ACTIONS(1320), - [aux_sym_cmd_identifier_token23] = ACTIONS(1320), - [aux_sym_cmd_identifier_token24] = ACTIONS(1320), - [aux_sym_cmd_identifier_token25] = ACTIONS(1320), - [aux_sym_cmd_identifier_token26] = ACTIONS(1320), - [aux_sym_cmd_identifier_token27] = ACTIONS(1320), - [aux_sym_cmd_identifier_token28] = ACTIONS(1320), - [aux_sym_cmd_identifier_token29] = ACTIONS(1320), - [aux_sym_cmd_identifier_token30] = ACTIONS(1320), - [aux_sym_cmd_identifier_token31] = ACTIONS(1320), - [aux_sym_cmd_identifier_token32] = ACTIONS(1320), - [aux_sym_cmd_identifier_token33] = ACTIONS(1320), - [aux_sym_cmd_identifier_token34] = ACTIONS(1320), - [aux_sym_cmd_identifier_token35] = ACTIONS(1320), - [aux_sym_cmd_identifier_token36] = ACTIONS(1320), - [anon_sym_true] = ACTIONS(1322), - [anon_sym_false] = ACTIONS(1322), - [anon_sym_null] = ACTIONS(1322), - [aux_sym_cmd_identifier_token38] = ACTIONS(1324), - [aux_sym_cmd_identifier_token39] = ACTIONS(1326), - [aux_sym_cmd_identifier_token40] = ACTIONS(1326), - [sym__newline] = ACTIONS(1328), - [anon_sym_def] = ACTIONS(273), - [anon_sym_export_DASHenv] = ACTIONS(273), - [anon_sym_extern] = ACTIONS(273), - [anon_sym_module] = ACTIONS(273), - [anon_sym_use] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(1330), - [anon_sym_DOLLAR] = ACTIONS(1332), - [anon_sym_error] = ACTIONS(273), - [anon_sym_list] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(243), - [anon_sym_break] = ACTIONS(273), - [anon_sym_continue] = ACTIONS(273), - [anon_sym_for] = ACTIONS(273), - [anon_sym_in] = ACTIONS(273), - [anon_sym_loop] = ACTIONS(273), - [anon_sym_make] = ACTIONS(273), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(273), - [anon_sym_if] = ACTIONS(273), - [anon_sym_else] = ACTIONS(273), - [anon_sym_match] = ACTIONS(273), - [anon_sym_RBRACE] = ACTIONS(291), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(273), - [anon_sym_return] = ACTIONS(273), - [anon_sym_source] = ACTIONS(273), - [anon_sym_source_DASHenv] = ACTIONS(273), - [anon_sym_register] = ACTIONS(273), - [anon_sym_hide] = ACTIONS(273), - [anon_sym_hide_DASHenv] = ACTIONS(273), - [anon_sym_overlay] = ACTIONS(273), - [anon_sym_new] = ACTIONS(273), - [anon_sym_as] = ACTIONS(273), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(1334), - [aux_sym__val_number_decimal_token2] = ACTIONS(1336), - [aux_sym__val_number_decimal_token3] = ACTIONS(1338), - [aux_sym__val_number_decimal_token4] = ACTIONS(1340), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(243), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(193), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(358), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(373), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(371), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(371), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(371), + [aux_sym_cmd_identifier_token28] = ACTIONS(371), + [aux_sym_cmd_identifier_token29] = ACTIONS(371), + [aux_sym_cmd_identifier_token30] = ACTIONS(371), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_do] = ACTIONS(489), + [anon_sym_if] = ACTIONS(491), + [anon_sym_match] = ACTIONS(417), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(495), + [anon_sym_return] = ACTIONS(423), + [anon_sym_where] = ACTIONS(497), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [197] = { - [sym_cmd_identifier] = STATE(7516), - [sym_expr_parenthesized] = STATE(7410), - [sym__spread_parenthesized] = STATE(567), - [sym__spread_variable] = STATE(571), - [sym_val_variable] = STATE(7410), - [sym_val_number] = STATE(7410), - [sym__val_number_decimal] = STATE(6126), - [sym__val_number] = STATE(1647), - [sym_val_string] = STATE(7410), - [sym__str_double_quotes] = STATE(1418), - [sym__spread_record] = STATE(567), - [sym_record_body] = STATE(7384), - [sym_record_entry] = STATE(6911), - [sym__record_key] = STATE(7516), + [sym_cmd_identifier] = STATE(7872), + [sym_expr_parenthesized] = STATE(7806), + [sym__spread_parenthesized] = STATE(7465), + [sym__spread_variable] = STATE(7436), + [sym_val_variable] = STATE(7806), + [sym_val_number] = STATE(7806), + [sym__val_number_decimal] = STATE(6414), + [sym__val_number] = STATE(1883), + [sym_val_string] = STATE(7806), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym__spread_record] = STATE(7465), + [sym_record_body] = STATE(7933), + [sym_record_entry] = STATE(6808), + [sym__record_key] = STATE(7872), [sym_comment] = STATE(197), [aux_sym_shebang_repeat1] = STATE(207), - [aux_sym_record_body_repeat1] = STATE(210), - [anon_sym_export] = ACTIONS(273), - [anon_sym_alias] = ACTIONS(273), - [anon_sym_let] = ACTIONS(273), - [anon_sym_let_DASHenv] = ACTIONS(273), - [anon_sym_mut] = ACTIONS(273), - [anon_sym_const] = ACTIONS(273), - [aux_sym_cmd_identifier_token1] = ACTIONS(1320), - [aux_sym_cmd_identifier_token2] = ACTIONS(1320), - [aux_sym_cmd_identifier_token3] = ACTIONS(1320), - [aux_sym_cmd_identifier_token4] = ACTIONS(1320), - [aux_sym_cmd_identifier_token5] = ACTIONS(1320), - [aux_sym_cmd_identifier_token6] = ACTIONS(1320), - [aux_sym_cmd_identifier_token7] = ACTIONS(1320), - [aux_sym_cmd_identifier_token8] = ACTIONS(1320), - [aux_sym_cmd_identifier_token9] = ACTIONS(1320), - [aux_sym_cmd_identifier_token10] = ACTIONS(1320), - [aux_sym_cmd_identifier_token11] = ACTIONS(1320), - [aux_sym_cmd_identifier_token12] = ACTIONS(1320), - [aux_sym_cmd_identifier_token13] = ACTIONS(1320), - [aux_sym_cmd_identifier_token14] = ACTIONS(1320), - [aux_sym_cmd_identifier_token15] = ACTIONS(1320), - [aux_sym_cmd_identifier_token16] = ACTIONS(1320), - [aux_sym_cmd_identifier_token17] = ACTIONS(1320), - [aux_sym_cmd_identifier_token18] = ACTIONS(1320), - [aux_sym_cmd_identifier_token19] = ACTIONS(1320), - [aux_sym_cmd_identifier_token20] = ACTIONS(1320), - [aux_sym_cmd_identifier_token21] = ACTIONS(1320), - [aux_sym_cmd_identifier_token22] = ACTIONS(1320), - [aux_sym_cmd_identifier_token23] = ACTIONS(1320), - [aux_sym_cmd_identifier_token24] = ACTIONS(1320), - [aux_sym_cmd_identifier_token25] = ACTIONS(1320), - [aux_sym_cmd_identifier_token26] = ACTIONS(1320), - [aux_sym_cmd_identifier_token27] = ACTIONS(1320), - [aux_sym_cmd_identifier_token28] = ACTIONS(1320), - [aux_sym_cmd_identifier_token29] = ACTIONS(1320), - [aux_sym_cmd_identifier_token30] = ACTIONS(1320), - [aux_sym_cmd_identifier_token31] = ACTIONS(1320), - [aux_sym_cmd_identifier_token32] = ACTIONS(1320), - [aux_sym_cmd_identifier_token33] = ACTIONS(1320), - [aux_sym_cmd_identifier_token34] = ACTIONS(1320), - [aux_sym_cmd_identifier_token35] = ACTIONS(1320), - [aux_sym_cmd_identifier_token36] = ACTIONS(1320), - [anon_sym_true] = ACTIONS(1322), - [anon_sym_false] = ACTIONS(1322), - [anon_sym_null] = ACTIONS(1322), - [aux_sym_cmd_identifier_token38] = ACTIONS(1324), - [aux_sym_cmd_identifier_token39] = ACTIONS(1326), - [aux_sym_cmd_identifier_token40] = ACTIONS(1326), - [sym__newline] = ACTIONS(1328), - [anon_sym_def] = ACTIONS(273), - [anon_sym_export_DASHenv] = ACTIONS(273), - [anon_sym_extern] = ACTIONS(273), - [anon_sym_module] = ACTIONS(273), - [anon_sym_use] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(1330), - [anon_sym_DOLLAR] = ACTIONS(1332), - [anon_sym_error] = ACTIONS(273), - [anon_sym_list] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(243), - [anon_sym_break] = ACTIONS(273), - [anon_sym_continue] = ACTIONS(273), - [anon_sym_for] = ACTIONS(273), - [anon_sym_in] = ACTIONS(273), - [anon_sym_loop] = ACTIONS(273), - [anon_sym_make] = ACTIONS(273), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(273), - [anon_sym_if] = ACTIONS(273), - [anon_sym_else] = ACTIONS(273), - [anon_sym_match] = ACTIONS(273), - [anon_sym_RBRACE] = ACTIONS(1342), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(273), - [anon_sym_return] = ACTIONS(273), - [anon_sym_source] = ACTIONS(273), - [anon_sym_source_DASHenv] = ACTIONS(273), - [anon_sym_register] = ACTIONS(273), - [anon_sym_hide] = ACTIONS(273), - [anon_sym_hide_DASHenv] = ACTIONS(273), - [anon_sym_overlay] = ACTIONS(273), - [anon_sym_new] = ACTIONS(273), - [anon_sym_as] = ACTIONS(273), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(1334), - [aux_sym__val_number_decimal_token2] = ACTIONS(1336), - [aux_sym__val_number_decimal_token3] = ACTIONS(1338), - [aux_sym__val_number_decimal_token4] = ACTIONS(1340), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(243), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_record_body_repeat1] = STATE(211), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(277), + [anon_sym_let] = ACTIONS(277), + [anon_sym_let_DASHenv] = ACTIONS(277), + [anon_sym_mut] = ACTIONS(277), + [anon_sym_const] = ACTIONS(277), + [aux_sym_cmd_identifier_token1] = ACTIONS(1327), + [aux_sym_cmd_identifier_token2] = ACTIONS(1327), + [aux_sym_cmd_identifier_token3] = ACTIONS(1327), + [aux_sym_cmd_identifier_token4] = ACTIONS(1327), + [aux_sym_cmd_identifier_token5] = ACTIONS(1327), + [aux_sym_cmd_identifier_token6] = ACTIONS(1327), + [aux_sym_cmd_identifier_token7] = ACTIONS(1327), + [aux_sym_cmd_identifier_token8] = ACTIONS(1327), + [aux_sym_cmd_identifier_token9] = ACTIONS(1327), + [aux_sym_cmd_identifier_token10] = ACTIONS(1327), + [aux_sym_cmd_identifier_token11] = ACTIONS(1327), + [aux_sym_cmd_identifier_token12] = ACTIONS(1327), + [aux_sym_cmd_identifier_token13] = ACTIONS(1327), + [aux_sym_cmd_identifier_token14] = ACTIONS(1327), + [aux_sym_cmd_identifier_token15] = ACTIONS(1327), + [aux_sym_cmd_identifier_token16] = ACTIONS(1327), + [aux_sym_cmd_identifier_token17] = ACTIONS(1327), + [aux_sym_cmd_identifier_token18] = ACTIONS(1327), + [aux_sym_cmd_identifier_token19] = ACTIONS(1327), + [aux_sym_cmd_identifier_token20] = ACTIONS(1327), + [aux_sym_cmd_identifier_token21] = ACTIONS(1327), + [aux_sym_cmd_identifier_token22] = ACTIONS(1327), + [aux_sym_cmd_identifier_token23] = ACTIONS(1327), + [aux_sym_cmd_identifier_token24] = ACTIONS(1327), + [aux_sym_cmd_identifier_token25] = ACTIONS(1327), + [aux_sym_cmd_identifier_token26] = ACTIONS(1327), + [aux_sym_cmd_identifier_token27] = ACTIONS(1327), + [aux_sym_cmd_identifier_token28] = ACTIONS(1327), + [aux_sym_cmd_identifier_token29] = ACTIONS(1327), + [aux_sym_cmd_identifier_token30] = ACTIONS(1327), + [aux_sym_cmd_identifier_token31] = ACTIONS(1327), + [aux_sym_cmd_identifier_token32] = ACTIONS(1327), + [aux_sym_cmd_identifier_token33] = ACTIONS(1327), + [aux_sym_cmd_identifier_token34] = ACTIONS(1327), + [aux_sym_cmd_identifier_token35] = ACTIONS(1327), + [aux_sym_cmd_identifier_token36] = ACTIONS(1327), + [anon_sym_true] = ACTIONS(1329), + [anon_sym_false] = ACTIONS(1329), + [anon_sym_null] = ACTIONS(1329), + [aux_sym_cmd_identifier_token38] = ACTIONS(1331), + [aux_sym_cmd_identifier_token39] = ACTIONS(1333), + [aux_sym_cmd_identifier_token40] = ACTIONS(1333), + [sym__newline] = ACTIONS(1335), + [anon_sym_def] = ACTIONS(277), + [anon_sym_export_DASHenv] = ACTIONS(277), + [anon_sym_extern] = ACTIONS(277), + [anon_sym_module] = ACTIONS(277), + [anon_sym_use] = ACTIONS(277), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_DOLLAR] = ACTIONS(1339), + [anon_sym_error] = ACTIONS(277), + [anon_sym_list] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(245), + [anon_sym_break] = ACTIONS(277), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(277), + [anon_sym_in] = ACTIONS(277), + [anon_sym_loop] = ACTIONS(277), + [anon_sym_make] = ACTIONS(277), + [anon_sym_while] = ACTIONS(277), + [anon_sym_do] = ACTIONS(277), + [anon_sym_if] = ACTIONS(277), + [anon_sym_else] = ACTIONS(277), + [anon_sym_match] = ACTIONS(277), + [anon_sym_RBRACE] = ACTIONS(295), + [anon_sym_try] = ACTIONS(277), + [anon_sym_catch] = ACTIONS(277), + [anon_sym_return] = ACTIONS(277), + [anon_sym_source] = ACTIONS(277), + [anon_sym_source_DASHenv] = ACTIONS(277), + [anon_sym_register] = ACTIONS(277), + [anon_sym_hide] = ACTIONS(277), + [anon_sym_hide_DASHenv] = ACTIONS(277), + [anon_sym_overlay] = ACTIONS(277), + [anon_sym_new] = ACTIONS(277), + [anon_sym_as] = ACTIONS(277), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(1341), + [aux_sym__val_number_decimal_token2] = ACTIONS(1343), + [aux_sym__val_number_decimal_token3] = ACTIONS(1345), + [aux_sym__val_number_decimal_token4] = ACTIONS(1347), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [198] = { - [sym_cmd_identifier] = STATE(7516), - [sym_expr_parenthesized] = STATE(7410), - [sym__spread_parenthesized] = STATE(567), - [sym__spread_variable] = STATE(571), - [sym_val_variable] = STATE(7410), - [sym_val_number] = STATE(7410), - [sym__val_number_decimal] = STATE(6126), - [sym__val_number] = STATE(1647), - [sym_val_string] = STATE(7410), - [sym__str_double_quotes] = STATE(1418), - [sym__spread_record] = STATE(567), - [sym_record_body] = STATE(7725), - [sym_record_entry] = STATE(6911), - [sym__record_key] = STATE(7516), [sym_comment] = STATE(198), - [aux_sym_shebang_repeat1] = STATE(207), - [aux_sym_record_body_repeat1] = STATE(210), - [anon_sym_export] = ACTIONS(273), - [anon_sym_alias] = ACTIONS(273), - [anon_sym_let] = ACTIONS(273), - [anon_sym_let_DASHenv] = ACTIONS(273), - [anon_sym_mut] = ACTIONS(273), - [anon_sym_const] = ACTIONS(273), - [aux_sym_cmd_identifier_token1] = ACTIONS(1320), - [aux_sym_cmd_identifier_token2] = ACTIONS(1320), - [aux_sym_cmd_identifier_token3] = ACTIONS(1320), - [aux_sym_cmd_identifier_token4] = ACTIONS(1320), - [aux_sym_cmd_identifier_token5] = ACTIONS(1320), - [aux_sym_cmd_identifier_token6] = ACTIONS(1320), - [aux_sym_cmd_identifier_token7] = ACTIONS(1320), - [aux_sym_cmd_identifier_token8] = ACTIONS(1320), - [aux_sym_cmd_identifier_token9] = ACTIONS(1320), - [aux_sym_cmd_identifier_token10] = ACTIONS(1320), - [aux_sym_cmd_identifier_token11] = ACTIONS(1320), - [aux_sym_cmd_identifier_token12] = ACTIONS(1320), - [aux_sym_cmd_identifier_token13] = ACTIONS(1320), - [aux_sym_cmd_identifier_token14] = ACTIONS(1320), - [aux_sym_cmd_identifier_token15] = ACTIONS(1320), - [aux_sym_cmd_identifier_token16] = ACTIONS(1320), - [aux_sym_cmd_identifier_token17] = ACTIONS(1320), - [aux_sym_cmd_identifier_token18] = ACTIONS(1320), - [aux_sym_cmd_identifier_token19] = ACTIONS(1320), - [aux_sym_cmd_identifier_token20] = ACTIONS(1320), - [aux_sym_cmd_identifier_token21] = ACTIONS(1320), - [aux_sym_cmd_identifier_token22] = ACTIONS(1320), - [aux_sym_cmd_identifier_token23] = ACTIONS(1320), - [aux_sym_cmd_identifier_token24] = ACTIONS(1320), - [aux_sym_cmd_identifier_token25] = ACTIONS(1320), - [aux_sym_cmd_identifier_token26] = ACTIONS(1320), - [aux_sym_cmd_identifier_token27] = ACTIONS(1320), - [aux_sym_cmd_identifier_token28] = ACTIONS(1320), - [aux_sym_cmd_identifier_token29] = ACTIONS(1320), - [aux_sym_cmd_identifier_token30] = ACTIONS(1320), - [aux_sym_cmd_identifier_token31] = ACTIONS(1320), - [aux_sym_cmd_identifier_token32] = ACTIONS(1320), - [aux_sym_cmd_identifier_token33] = ACTIONS(1320), - [aux_sym_cmd_identifier_token34] = ACTIONS(1320), - [aux_sym_cmd_identifier_token35] = ACTIONS(1320), - [aux_sym_cmd_identifier_token36] = ACTIONS(1320), - [anon_sym_true] = ACTIONS(1322), - [anon_sym_false] = ACTIONS(1322), - [anon_sym_null] = ACTIONS(1322), - [aux_sym_cmd_identifier_token38] = ACTIONS(1324), - [aux_sym_cmd_identifier_token39] = ACTIONS(1326), - [aux_sym_cmd_identifier_token40] = ACTIONS(1326), - [sym__newline] = ACTIONS(1328), - [anon_sym_def] = ACTIONS(273), - [anon_sym_export_DASHenv] = ACTIONS(273), - [anon_sym_extern] = ACTIONS(273), - [anon_sym_module] = ACTIONS(273), - [anon_sym_use] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(1330), - [anon_sym_DOLLAR] = ACTIONS(1332), - [anon_sym_error] = ACTIONS(273), - [anon_sym_list] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(243), - [anon_sym_break] = ACTIONS(273), - [anon_sym_continue] = ACTIONS(273), - [anon_sym_for] = ACTIONS(273), - [anon_sym_in] = ACTIONS(273), - [anon_sym_loop] = ACTIONS(273), - [anon_sym_make] = ACTIONS(273), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(273), - [anon_sym_if] = ACTIONS(273), - [anon_sym_else] = ACTIONS(273), - [anon_sym_match] = ACTIONS(273), - [anon_sym_RBRACE] = ACTIONS(1344), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(273), - [anon_sym_return] = ACTIONS(273), - [anon_sym_source] = ACTIONS(273), - [anon_sym_source_DASHenv] = ACTIONS(273), - [anon_sym_register] = ACTIONS(273), - [anon_sym_hide] = ACTIONS(273), - [anon_sym_hide_DASHenv] = ACTIONS(273), - [anon_sym_overlay] = ACTIONS(273), - [anon_sym_new] = ACTIONS(273), - [anon_sym_as] = ACTIONS(273), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(1334), - [aux_sym__val_number_decimal_token2] = ACTIONS(1336), - [aux_sym__val_number_decimal_token3] = ACTIONS(1338), - [aux_sym__val_number_decimal_token4] = ACTIONS(1340), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(243), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(198), + [anon_sym_export] = ACTIONS(1349), + [anon_sym_alias] = ACTIONS(1349), + [anon_sym_let] = ACTIONS(1349), + [anon_sym_let_DASHenv] = ACTIONS(1349), + [anon_sym_mut] = ACTIONS(1349), + [anon_sym_const] = ACTIONS(1349), + [aux_sym_cmd_identifier_token1] = ACTIONS(1349), + [aux_sym_cmd_identifier_token2] = ACTIONS(1349), + [aux_sym_cmd_identifier_token3] = ACTIONS(1349), + [aux_sym_cmd_identifier_token4] = ACTIONS(1349), + [aux_sym_cmd_identifier_token5] = ACTIONS(1349), + [aux_sym_cmd_identifier_token6] = ACTIONS(1349), + [aux_sym_cmd_identifier_token7] = ACTIONS(1349), + [aux_sym_cmd_identifier_token8] = ACTIONS(1349), + [aux_sym_cmd_identifier_token9] = ACTIONS(1349), + [aux_sym_cmd_identifier_token10] = ACTIONS(1349), + [aux_sym_cmd_identifier_token11] = ACTIONS(1349), + [aux_sym_cmd_identifier_token12] = ACTIONS(1349), + [aux_sym_cmd_identifier_token13] = ACTIONS(1349), + [aux_sym_cmd_identifier_token14] = ACTIONS(1349), + [aux_sym_cmd_identifier_token15] = ACTIONS(1349), + [aux_sym_cmd_identifier_token16] = ACTIONS(1349), + [aux_sym_cmd_identifier_token17] = ACTIONS(1349), + [aux_sym_cmd_identifier_token18] = ACTIONS(1349), + [aux_sym_cmd_identifier_token19] = ACTIONS(1349), + [aux_sym_cmd_identifier_token20] = ACTIONS(1349), + [aux_sym_cmd_identifier_token21] = ACTIONS(1349), + [aux_sym_cmd_identifier_token22] = ACTIONS(1349), + [aux_sym_cmd_identifier_token23] = ACTIONS(1349), + [aux_sym_cmd_identifier_token24] = ACTIONS(1349), + [aux_sym_cmd_identifier_token25] = ACTIONS(1349), + [aux_sym_cmd_identifier_token26] = ACTIONS(1349), + [aux_sym_cmd_identifier_token27] = ACTIONS(1349), + [aux_sym_cmd_identifier_token28] = ACTIONS(1349), + [aux_sym_cmd_identifier_token29] = ACTIONS(1349), + [aux_sym_cmd_identifier_token30] = ACTIONS(1349), + [aux_sym_cmd_identifier_token31] = ACTIONS(1349), + [aux_sym_cmd_identifier_token32] = ACTIONS(1349), + [aux_sym_cmd_identifier_token33] = ACTIONS(1349), + [aux_sym_cmd_identifier_token34] = ACTIONS(1349), + [aux_sym_cmd_identifier_token35] = ACTIONS(1349), + [aux_sym_cmd_identifier_token36] = ACTIONS(1349), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_null] = ACTIONS(1351), + [aux_sym_cmd_identifier_token38] = ACTIONS(1349), + [aux_sym_cmd_identifier_token39] = ACTIONS(1351), + [aux_sym_cmd_identifier_token40] = ACTIONS(1351), + [sym__newline] = ACTIONS(1353), + [anon_sym_SEMI] = ACTIONS(1351), + [anon_sym_PIPE] = ACTIONS(1351), + [anon_sym_def] = ACTIONS(1349), + [anon_sym_export_DASHenv] = ACTIONS(1349), + [anon_sym_extern] = ACTIONS(1349), + [anon_sym_module] = ACTIONS(1349), + [anon_sym_use] = ACTIONS(1349), + [anon_sym_LBRACK] = ACTIONS(1351), + [anon_sym_LPAREN] = ACTIONS(1351), + [anon_sym_DOLLAR] = ACTIONS(1349), + [anon_sym_error] = ACTIONS(1349), + [anon_sym_list] = ACTIONS(1349), + [anon_sym_DASH] = ACTIONS(1349), + [anon_sym_break] = ACTIONS(1349), + [anon_sym_continue] = ACTIONS(1349), + [anon_sym_for] = ACTIONS(1349), + [anon_sym_in] = ACTIONS(1349), + [anon_sym_loop] = ACTIONS(1349), + [anon_sym_make] = ACTIONS(1349), + [anon_sym_while] = ACTIONS(1349), + [anon_sym_do] = ACTIONS(1349), + [anon_sym_if] = ACTIONS(1349), + [anon_sym_else] = ACTIONS(1349), + [anon_sym_match] = ACTIONS(1349), + [anon_sym_LBRACE] = ACTIONS(1351), + [anon_sym_DOT_DOT] = ACTIONS(1349), + [anon_sym_try] = ACTIONS(1349), + [anon_sym_catch] = ACTIONS(1349), + [anon_sym_return] = ACTIONS(1349), + [anon_sym_source] = ACTIONS(1349), + [anon_sym_source_DASHenv] = ACTIONS(1349), + [anon_sym_register] = ACTIONS(1349), + [anon_sym_hide] = ACTIONS(1349), + [anon_sym_hide_DASHenv] = ACTIONS(1349), + [anon_sym_overlay] = ACTIONS(1349), + [anon_sym_new] = ACTIONS(1349), + [anon_sym_as] = ACTIONS(1349), + [anon_sym_where] = ACTIONS(1351), + [aux_sym_expr_unary_token1] = ACTIONS(1351), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1351), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1351), + [anon_sym_DOT_DOT_LT] = ACTIONS(1351), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1351), + [aux_sym__val_number_decimal_token1] = ACTIONS(1349), + [aux_sym__val_number_decimal_token2] = ACTIONS(1351), + [aux_sym__val_number_decimal_token3] = ACTIONS(1351), + [aux_sym__val_number_decimal_token4] = ACTIONS(1351), + [aux_sym__val_number_token1] = ACTIONS(1351), + [aux_sym__val_number_token2] = ACTIONS(1351), + [aux_sym__val_number_token3] = ACTIONS(1351), + [anon_sym_0b] = ACTIONS(1349), + [anon_sym_0o] = ACTIONS(1349), + [anon_sym_0x] = ACTIONS(1349), + [sym_val_date] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1351), + [sym__str_single_quotes] = ACTIONS(1351), + [sym__str_back_ticks] = ACTIONS(1351), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1351), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1351), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1351), + [anon_sym_PLUS] = ACTIONS(1349), + [aux_sym_env_var_token1] = ACTIONS(1349), + [anon_sym_CARET] = ACTIONS(1351), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1351), }, [199] = { [sym_comment] = STATE(199), - [anon_sym_export] = ACTIONS(1311), - [anon_sym_alias] = ACTIONS(1311), - [anon_sym_let] = ACTIONS(1311), - [anon_sym_let_DASHenv] = ACTIONS(1311), - [anon_sym_mut] = ACTIONS(1311), - [anon_sym_const] = ACTIONS(1311), - [aux_sym_cmd_identifier_token1] = ACTIONS(1311), - [aux_sym_cmd_identifier_token2] = ACTIONS(1311), - [aux_sym_cmd_identifier_token3] = ACTIONS(1311), - [aux_sym_cmd_identifier_token4] = ACTIONS(1311), - [aux_sym_cmd_identifier_token5] = ACTIONS(1311), - [aux_sym_cmd_identifier_token6] = ACTIONS(1311), - [aux_sym_cmd_identifier_token7] = ACTIONS(1311), - [aux_sym_cmd_identifier_token8] = ACTIONS(1311), - [aux_sym_cmd_identifier_token9] = ACTIONS(1311), - [aux_sym_cmd_identifier_token10] = ACTIONS(1311), - [aux_sym_cmd_identifier_token11] = ACTIONS(1311), - [aux_sym_cmd_identifier_token12] = ACTIONS(1311), - [aux_sym_cmd_identifier_token13] = ACTIONS(1311), - [aux_sym_cmd_identifier_token14] = ACTIONS(1311), - [aux_sym_cmd_identifier_token15] = ACTIONS(1311), - [aux_sym_cmd_identifier_token16] = ACTIONS(1311), - [aux_sym_cmd_identifier_token17] = ACTIONS(1311), - [aux_sym_cmd_identifier_token18] = ACTIONS(1311), - [aux_sym_cmd_identifier_token19] = ACTIONS(1311), - [aux_sym_cmd_identifier_token20] = ACTIONS(1311), - [aux_sym_cmd_identifier_token21] = ACTIONS(1311), - [aux_sym_cmd_identifier_token22] = ACTIONS(1311), - [aux_sym_cmd_identifier_token23] = ACTIONS(1311), - [aux_sym_cmd_identifier_token24] = ACTIONS(1311), - [aux_sym_cmd_identifier_token25] = ACTIONS(1311), - [aux_sym_cmd_identifier_token26] = ACTIONS(1311), - [aux_sym_cmd_identifier_token27] = ACTIONS(1311), - [aux_sym_cmd_identifier_token28] = ACTIONS(1311), - [aux_sym_cmd_identifier_token29] = ACTIONS(1311), - [aux_sym_cmd_identifier_token30] = ACTIONS(1311), - [aux_sym_cmd_identifier_token31] = ACTIONS(1311), - [aux_sym_cmd_identifier_token32] = ACTIONS(1311), - [aux_sym_cmd_identifier_token33] = ACTIONS(1311), - [aux_sym_cmd_identifier_token34] = ACTIONS(1311), - [aux_sym_cmd_identifier_token35] = ACTIONS(1311), - [aux_sym_cmd_identifier_token36] = ACTIONS(1311), - [anon_sym_true] = ACTIONS(1307), - [anon_sym_false] = ACTIONS(1307), - [anon_sym_null] = ACTIONS(1307), - [aux_sym_cmd_identifier_token38] = ACTIONS(1311), - [aux_sym_cmd_identifier_token39] = ACTIONS(1307), - [aux_sym_cmd_identifier_token40] = ACTIONS(1307), - [sym__newline] = ACTIONS(1307), - [anon_sym_SEMI] = ACTIONS(1307), - [anon_sym_PIPE] = ACTIONS(1307), - [anon_sym_def] = ACTIONS(1311), - [anon_sym_export_DASHenv] = ACTIONS(1311), - [anon_sym_extern] = ACTIONS(1311), - [anon_sym_module] = ACTIONS(1311), - [anon_sym_use] = ACTIONS(1311), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1307), - [anon_sym_DOLLAR] = ACTIONS(1311), - [anon_sym_error] = ACTIONS(1311), - [anon_sym_list] = ACTIONS(1311), - [anon_sym_DASH] = ACTIONS(1311), - [anon_sym_break] = ACTIONS(1311), - [anon_sym_continue] = ACTIONS(1311), - [anon_sym_for] = ACTIONS(1311), - [anon_sym_in] = ACTIONS(1311), - [anon_sym_loop] = ACTIONS(1311), - [anon_sym_make] = ACTIONS(1311), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_do] = ACTIONS(1311), - [anon_sym_if] = ACTIONS(1311), - [anon_sym_else] = ACTIONS(1311), - [anon_sym_match] = ACTIONS(1311), - [anon_sym_LBRACE] = ACTIONS(1307), - [anon_sym_DOT_DOT] = ACTIONS(1311), - [anon_sym_try] = ACTIONS(1311), - [anon_sym_catch] = ACTIONS(1311), - [anon_sym_return] = ACTIONS(1311), - [anon_sym_source] = ACTIONS(1311), - [anon_sym_source_DASHenv] = ACTIONS(1311), - [anon_sym_register] = ACTIONS(1311), - [anon_sym_hide] = ACTIONS(1311), - [anon_sym_hide_DASHenv] = ACTIONS(1311), - [anon_sym_overlay] = ACTIONS(1311), - [anon_sym_new] = ACTIONS(1311), - [anon_sym_as] = ACTIONS(1311), - [anon_sym_where] = ACTIONS(1307), - [aux_sym_expr_unary_token1] = ACTIONS(1307), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1307), - [anon_sym_DOT_DOT_LT] = ACTIONS(1307), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1307), - [aux_sym__val_number_decimal_token1] = ACTIONS(1311), - [aux_sym__val_number_decimal_token2] = ACTIONS(1307), - [aux_sym__val_number_decimal_token3] = ACTIONS(1307), - [aux_sym__val_number_decimal_token4] = ACTIONS(1307), - [aux_sym__val_number_token1] = ACTIONS(1307), - [aux_sym__val_number_token2] = ACTIONS(1307), - [aux_sym__val_number_token3] = ACTIONS(1307), - [anon_sym_0b] = ACTIONS(1311), - [anon_sym_0o] = ACTIONS(1311), - [anon_sym_0x] = ACTIONS(1311), - [sym_val_date] = ACTIONS(1307), - [anon_sym_DQUOTE] = ACTIONS(1307), - [sym__str_single_quotes] = ACTIONS(1307), - [sym__str_back_ticks] = ACTIONS(1307), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1307), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1307), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(1311), - [aux_sym_env_var_token1] = ACTIONS(1311), - [anon_sym_CARET] = ACTIONS(1307), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(1356), + [anon_sym_alias] = ACTIONS(1356), + [anon_sym_let] = ACTIONS(1356), + [anon_sym_let_DASHenv] = ACTIONS(1356), + [anon_sym_mut] = ACTIONS(1356), + [anon_sym_const] = ACTIONS(1356), + [aux_sym_cmd_identifier_token1] = ACTIONS(1356), + [aux_sym_cmd_identifier_token2] = ACTIONS(1356), + [aux_sym_cmd_identifier_token3] = ACTIONS(1356), + [aux_sym_cmd_identifier_token4] = ACTIONS(1356), + [aux_sym_cmd_identifier_token5] = ACTIONS(1356), + [aux_sym_cmd_identifier_token6] = ACTIONS(1356), + [aux_sym_cmd_identifier_token7] = ACTIONS(1356), + [aux_sym_cmd_identifier_token8] = ACTIONS(1356), + [aux_sym_cmd_identifier_token9] = ACTIONS(1356), + [aux_sym_cmd_identifier_token10] = ACTIONS(1356), + [aux_sym_cmd_identifier_token11] = ACTIONS(1356), + [aux_sym_cmd_identifier_token12] = ACTIONS(1356), + [aux_sym_cmd_identifier_token13] = ACTIONS(1356), + [aux_sym_cmd_identifier_token14] = ACTIONS(1356), + [aux_sym_cmd_identifier_token15] = ACTIONS(1356), + [aux_sym_cmd_identifier_token16] = ACTIONS(1356), + [aux_sym_cmd_identifier_token17] = ACTIONS(1356), + [aux_sym_cmd_identifier_token18] = ACTIONS(1356), + [aux_sym_cmd_identifier_token19] = ACTIONS(1356), + [aux_sym_cmd_identifier_token20] = ACTIONS(1356), + [aux_sym_cmd_identifier_token21] = ACTIONS(1356), + [aux_sym_cmd_identifier_token22] = ACTIONS(1356), + [aux_sym_cmd_identifier_token23] = ACTIONS(1356), + [aux_sym_cmd_identifier_token24] = ACTIONS(1356), + [aux_sym_cmd_identifier_token25] = ACTIONS(1356), + [aux_sym_cmd_identifier_token26] = ACTIONS(1356), + [aux_sym_cmd_identifier_token27] = ACTIONS(1356), + [aux_sym_cmd_identifier_token28] = ACTIONS(1356), + [aux_sym_cmd_identifier_token29] = ACTIONS(1356), + [aux_sym_cmd_identifier_token30] = ACTIONS(1356), + [aux_sym_cmd_identifier_token31] = ACTIONS(1356), + [aux_sym_cmd_identifier_token32] = ACTIONS(1356), + [aux_sym_cmd_identifier_token33] = ACTIONS(1356), + [aux_sym_cmd_identifier_token34] = ACTIONS(1356), + [aux_sym_cmd_identifier_token35] = ACTIONS(1356), + [aux_sym_cmd_identifier_token36] = ACTIONS(1356), + [anon_sym_true] = ACTIONS(1359), + [anon_sym_false] = ACTIONS(1359), + [anon_sym_null] = ACTIONS(1359), + [aux_sym_cmd_identifier_token38] = ACTIONS(1356), + [aux_sym_cmd_identifier_token39] = ACTIONS(1359), + [aux_sym_cmd_identifier_token40] = ACTIONS(1359), + [sym__newline] = ACTIONS(1359), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_PIPE] = ACTIONS(1362), + [anon_sym_def] = ACTIONS(1356), + [anon_sym_export_DASHenv] = ACTIONS(1356), + [anon_sym_extern] = ACTIONS(1356), + [anon_sym_module] = ACTIONS(1356), + [anon_sym_use] = ACTIONS(1356), + [anon_sym_LBRACK] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(1359), + [anon_sym_DOLLAR] = ACTIONS(1356), + [anon_sym_error] = ACTIONS(1356), + [anon_sym_list] = ACTIONS(1364), + [anon_sym_DASH] = ACTIONS(1356), + [anon_sym_break] = ACTIONS(1356), + [anon_sym_continue] = ACTIONS(1356), + [anon_sym_for] = ACTIONS(1356), + [anon_sym_in] = ACTIONS(1364), + [anon_sym_loop] = ACTIONS(1356), + [anon_sym_make] = ACTIONS(1364), + [anon_sym_while] = ACTIONS(1356), + [anon_sym_do] = ACTIONS(1356), + [anon_sym_if] = ACTIONS(1356), + [anon_sym_else] = ACTIONS(1364), + [anon_sym_match] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(1359), + [anon_sym_RBRACE] = ACTIONS(1366), + [anon_sym_DOT_DOT] = ACTIONS(1356), + [anon_sym_try] = ACTIONS(1356), + [anon_sym_catch] = ACTIONS(1364), + [anon_sym_return] = ACTIONS(1356), + [anon_sym_source] = ACTIONS(1356), + [anon_sym_source_DASHenv] = ACTIONS(1356), + [anon_sym_register] = ACTIONS(1356), + [anon_sym_hide] = ACTIONS(1356), + [anon_sym_hide_DASHenv] = ACTIONS(1356), + [anon_sym_overlay] = ACTIONS(1356), + [anon_sym_new] = ACTIONS(1364), + [anon_sym_as] = ACTIONS(1364), + [anon_sym_where] = ACTIONS(1359), + [aux_sym_expr_unary_token1] = ACTIONS(1359), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1362), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1359), + [anon_sym_DOT_DOT_LT] = ACTIONS(1359), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1362), + [aux_sym__val_number_decimal_token1] = ACTIONS(1356), + [aux_sym__val_number_decimal_token2] = ACTIONS(1359), + [aux_sym__val_number_decimal_token3] = ACTIONS(1359), + [aux_sym__val_number_decimal_token4] = ACTIONS(1359), + [aux_sym__val_number_token1] = ACTIONS(1359), + [aux_sym__val_number_token2] = ACTIONS(1359), + [aux_sym__val_number_token3] = ACTIONS(1359), + [anon_sym_0b] = ACTIONS(1356), + [anon_sym_0o] = ACTIONS(1356), + [anon_sym_0x] = ACTIONS(1356), + [sym_val_date] = ACTIONS(1359), + [anon_sym_DQUOTE] = ACTIONS(1359), + [sym__str_single_quotes] = ACTIONS(1359), + [sym__str_back_ticks] = ACTIONS(1359), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1359), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1359), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1362), + [anon_sym_PLUS] = ACTIONS(1364), + [aux_sym_env_var_token1] = ACTIONS(1356), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1359), }, [200] = { - [sym_cmd_identifier] = STATE(7516), - [sym_expr_parenthesized] = STATE(7410), - [sym__spread_parenthesized] = STATE(567), - [sym__spread_variable] = STATE(571), - [sym_val_variable] = STATE(7410), - [sym_val_number] = STATE(7410), - [sym__val_number_decimal] = STATE(6126), - [sym__val_number] = STATE(1647), - [sym_val_string] = STATE(7410), - [sym__str_double_quotes] = STATE(1418), - [sym__spread_record] = STATE(567), - [sym_record_body] = STATE(7553), - [sym_record_entry] = STATE(6911), - [sym__record_key] = STATE(7516), + [sym_cmd_identifier] = STATE(7872), + [sym_expr_parenthesized] = STATE(7806), + [sym__spread_parenthesized] = STATE(7465), + [sym__spread_variable] = STATE(7436), + [sym_val_variable] = STATE(7806), + [sym_val_number] = STATE(7806), + [sym__val_number_decimal] = STATE(6414), + [sym__val_number] = STATE(1883), + [sym_val_string] = STATE(7806), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym__spread_record] = STATE(7465), + [sym_record_body] = STATE(7880), + [sym_record_entry] = STATE(6808), + [sym__record_key] = STATE(7872), [sym_comment] = STATE(200), [aux_sym_shebang_repeat1] = STATE(207), - [aux_sym_record_body_repeat1] = STATE(210), - [anon_sym_export] = ACTIONS(273), - [anon_sym_alias] = ACTIONS(273), - [anon_sym_let] = ACTIONS(273), - [anon_sym_let_DASHenv] = ACTIONS(273), - [anon_sym_mut] = ACTIONS(273), - [anon_sym_const] = ACTIONS(273), - [aux_sym_cmd_identifier_token1] = ACTIONS(1320), - [aux_sym_cmd_identifier_token2] = ACTIONS(1320), - [aux_sym_cmd_identifier_token3] = ACTIONS(1320), - [aux_sym_cmd_identifier_token4] = ACTIONS(1320), - [aux_sym_cmd_identifier_token5] = ACTIONS(1320), - [aux_sym_cmd_identifier_token6] = ACTIONS(1320), - [aux_sym_cmd_identifier_token7] = ACTIONS(1320), - [aux_sym_cmd_identifier_token8] = ACTIONS(1320), - [aux_sym_cmd_identifier_token9] = ACTIONS(1320), - [aux_sym_cmd_identifier_token10] = ACTIONS(1320), - [aux_sym_cmd_identifier_token11] = ACTIONS(1320), - [aux_sym_cmd_identifier_token12] = ACTIONS(1320), - [aux_sym_cmd_identifier_token13] = ACTIONS(1320), - [aux_sym_cmd_identifier_token14] = ACTIONS(1320), - [aux_sym_cmd_identifier_token15] = ACTIONS(1320), - [aux_sym_cmd_identifier_token16] = ACTIONS(1320), - [aux_sym_cmd_identifier_token17] = ACTIONS(1320), - [aux_sym_cmd_identifier_token18] = ACTIONS(1320), - [aux_sym_cmd_identifier_token19] = ACTIONS(1320), - [aux_sym_cmd_identifier_token20] = ACTIONS(1320), - [aux_sym_cmd_identifier_token21] = ACTIONS(1320), - [aux_sym_cmd_identifier_token22] = ACTIONS(1320), - [aux_sym_cmd_identifier_token23] = ACTIONS(1320), - [aux_sym_cmd_identifier_token24] = ACTIONS(1320), - [aux_sym_cmd_identifier_token25] = ACTIONS(1320), - [aux_sym_cmd_identifier_token26] = ACTIONS(1320), - [aux_sym_cmd_identifier_token27] = ACTIONS(1320), - [aux_sym_cmd_identifier_token28] = ACTIONS(1320), - [aux_sym_cmd_identifier_token29] = ACTIONS(1320), - [aux_sym_cmd_identifier_token30] = ACTIONS(1320), - [aux_sym_cmd_identifier_token31] = ACTIONS(1320), - [aux_sym_cmd_identifier_token32] = ACTIONS(1320), - [aux_sym_cmd_identifier_token33] = ACTIONS(1320), - [aux_sym_cmd_identifier_token34] = ACTIONS(1320), - [aux_sym_cmd_identifier_token35] = ACTIONS(1320), - [aux_sym_cmd_identifier_token36] = ACTIONS(1320), - [anon_sym_true] = ACTIONS(1322), - [anon_sym_false] = ACTIONS(1322), - [anon_sym_null] = ACTIONS(1322), - [aux_sym_cmd_identifier_token38] = ACTIONS(1324), - [aux_sym_cmd_identifier_token39] = ACTIONS(1326), - [aux_sym_cmd_identifier_token40] = ACTIONS(1326), - [sym__newline] = ACTIONS(1328), - [anon_sym_def] = ACTIONS(273), - [anon_sym_export_DASHenv] = ACTIONS(273), - [anon_sym_extern] = ACTIONS(273), - [anon_sym_module] = ACTIONS(273), - [anon_sym_use] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(1330), - [anon_sym_DOLLAR] = ACTIONS(1332), - [anon_sym_error] = ACTIONS(273), - [anon_sym_list] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(243), - [anon_sym_break] = ACTIONS(273), - [anon_sym_continue] = ACTIONS(273), - [anon_sym_for] = ACTIONS(273), - [anon_sym_in] = ACTIONS(273), - [anon_sym_loop] = ACTIONS(273), - [anon_sym_make] = ACTIONS(273), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(273), - [anon_sym_if] = ACTIONS(273), - [anon_sym_else] = ACTIONS(273), - [anon_sym_match] = ACTIONS(273), - [anon_sym_RBRACE] = ACTIONS(1346), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(273), - [anon_sym_return] = ACTIONS(273), - [anon_sym_source] = ACTIONS(273), - [anon_sym_source_DASHenv] = ACTIONS(273), - [anon_sym_register] = ACTIONS(273), - [anon_sym_hide] = ACTIONS(273), - [anon_sym_hide_DASHenv] = ACTIONS(273), - [anon_sym_overlay] = ACTIONS(273), - [anon_sym_new] = ACTIONS(273), - [anon_sym_as] = ACTIONS(273), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(1334), - [aux_sym__val_number_decimal_token2] = ACTIONS(1336), - [aux_sym__val_number_decimal_token3] = ACTIONS(1338), - [aux_sym__val_number_decimal_token4] = ACTIONS(1340), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(243), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_record_body_repeat1] = STATE(211), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(277), + [anon_sym_let] = ACTIONS(277), + [anon_sym_let_DASHenv] = ACTIONS(277), + [anon_sym_mut] = ACTIONS(277), + [anon_sym_const] = ACTIONS(277), + [aux_sym_cmd_identifier_token1] = ACTIONS(1327), + [aux_sym_cmd_identifier_token2] = ACTIONS(1327), + [aux_sym_cmd_identifier_token3] = ACTIONS(1327), + [aux_sym_cmd_identifier_token4] = ACTIONS(1327), + [aux_sym_cmd_identifier_token5] = ACTIONS(1327), + [aux_sym_cmd_identifier_token6] = ACTIONS(1327), + [aux_sym_cmd_identifier_token7] = ACTIONS(1327), + [aux_sym_cmd_identifier_token8] = ACTIONS(1327), + [aux_sym_cmd_identifier_token9] = ACTIONS(1327), + [aux_sym_cmd_identifier_token10] = ACTIONS(1327), + [aux_sym_cmd_identifier_token11] = ACTIONS(1327), + [aux_sym_cmd_identifier_token12] = ACTIONS(1327), + [aux_sym_cmd_identifier_token13] = ACTIONS(1327), + [aux_sym_cmd_identifier_token14] = ACTIONS(1327), + [aux_sym_cmd_identifier_token15] = ACTIONS(1327), + [aux_sym_cmd_identifier_token16] = ACTIONS(1327), + [aux_sym_cmd_identifier_token17] = ACTIONS(1327), + [aux_sym_cmd_identifier_token18] = ACTIONS(1327), + [aux_sym_cmd_identifier_token19] = ACTIONS(1327), + [aux_sym_cmd_identifier_token20] = ACTIONS(1327), + [aux_sym_cmd_identifier_token21] = ACTIONS(1327), + [aux_sym_cmd_identifier_token22] = ACTIONS(1327), + [aux_sym_cmd_identifier_token23] = ACTIONS(1327), + [aux_sym_cmd_identifier_token24] = ACTIONS(1327), + [aux_sym_cmd_identifier_token25] = ACTIONS(1327), + [aux_sym_cmd_identifier_token26] = ACTIONS(1327), + [aux_sym_cmd_identifier_token27] = ACTIONS(1327), + [aux_sym_cmd_identifier_token28] = ACTIONS(1327), + [aux_sym_cmd_identifier_token29] = ACTIONS(1327), + [aux_sym_cmd_identifier_token30] = ACTIONS(1327), + [aux_sym_cmd_identifier_token31] = ACTIONS(1327), + [aux_sym_cmd_identifier_token32] = ACTIONS(1327), + [aux_sym_cmd_identifier_token33] = ACTIONS(1327), + [aux_sym_cmd_identifier_token34] = ACTIONS(1327), + [aux_sym_cmd_identifier_token35] = ACTIONS(1327), + [aux_sym_cmd_identifier_token36] = ACTIONS(1327), + [anon_sym_true] = ACTIONS(1329), + [anon_sym_false] = ACTIONS(1329), + [anon_sym_null] = ACTIONS(1329), + [aux_sym_cmd_identifier_token38] = ACTIONS(1331), + [aux_sym_cmd_identifier_token39] = ACTIONS(1333), + [aux_sym_cmd_identifier_token40] = ACTIONS(1333), + [sym__newline] = ACTIONS(1335), + [anon_sym_def] = ACTIONS(277), + [anon_sym_export_DASHenv] = ACTIONS(277), + [anon_sym_extern] = ACTIONS(277), + [anon_sym_module] = ACTIONS(277), + [anon_sym_use] = ACTIONS(277), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_DOLLAR] = ACTIONS(1339), + [anon_sym_error] = ACTIONS(277), + [anon_sym_list] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(245), + [anon_sym_break] = ACTIONS(277), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(277), + [anon_sym_in] = ACTIONS(277), + [anon_sym_loop] = ACTIONS(277), + [anon_sym_make] = ACTIONS(277), + [anon_sym_while] = ACTIONS(277), + [anon_sym_do] = ACTIONS(277), + [anon_sym_if] = ACTIONS(277), + [anon_sym_else] = ACTIONS(277), + [anon_sym_match] = ACTIONS(277), + [anon_sym_RBRACE] = ACTIONS(1368), + [anon_sym_try] = ACTIONS(277), + [anon_sym_catch] = ACTIONS(277), + [anon_sym_return] = ACTIONS(277), + [anon_sym_source] = ACTIONS(277), + [anon_sym_source_DASHenv] = ACTIONS(277), + [anon_sym_register] = ACTIONS(277), + [anon_sym_hide] = ACTIONS(277), + [anon_sym_hide_DASHenv] = ACTIONS(277), + [anon_sym_overlay] = ACTIONS(277), + [anon_sym_new] = ACTIONS(277), + [anon_sym_as] = ACTIONS(277), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(1341), + [aux_sym__val_number_decimal_token2] = ACTIONS(1343), + [aux_sym__val_number_decimal_token3] = ACTIONS(1345), + [aux_sym__val_number_decimal_token4] = ACTIONS(1347), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [201] = { - [sym_cmd_identifier] = STATE(7516), - [sym_expr_parenthesized] = STATE(7410), - [sym__spread_parenthesized] = STATE(567), - [sym__spread_variable] = STATE(571), - [sym_val_variable] = STATE(7410), - [sym_val_number] = STATE(7410), - [sym__val_number_decimal] = STATE(6126), - [sym__val_number] = STATE(1647), - [sym_val_string] = STATE(7410), - [sym__str_double_quotes] = STATE(1418), - [sym__spread_record] = STATE(567), - [sym_record_body] = STATE(7619), - [sym_record_entry] = STATE(6911), - [sym__record_key] = STATE(7516), + [sym_cmd_identifier] = STATE(7872), + [sym_expr_parenthesized] = STATE(7806), + [sym__spread_parenthesized] = STATE(7465), + [sym__spread_variable] = STATE(7436), + [sym_val_variable] = STATE(7806), + [sym_val_number] = STATE(7806), + [sym__val_number_decimal] = STATE(6414), + [sym__val_number] = STATE(1883), + [sym_val_string] = STATE(7806), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym__spread_record] = STATE(7465), + [sym_record_body] = STATE(7720), + [sym_record_entry] = STATE(6808), + [sym__record_key] = STATE(7872), [sym_comment] = STATE(201), [aux_sym_shebang_repeat1] = STATE(207), - [aux_sym_record_body_repeat1] = STATE(210), - [anon_sym_export] = ACTIONS(273), - [anon_sym_alias] = ACTIONS(273), - [anon_sym_let] = ACTIONS(273), - [anon_sym_let_DASHenv] = ACTIONS(273), - [anon_sym_mut] = ACTIONS(273), - [anon_sym_const] = ACTIONS(273), - [aux_sym_cmd_identifier_token1] = ACTIONS(1320), - [aux_sym_cmd_identifier_token2] = ACTIONS(1320), - [aux_sym_cmd_identifier_token3] = ACTIONS(1320), - [aux_sym_cmd_identifier_token4] = ACTIONS(1320), - [aux_sym_cmd_identifier_token5] = ACTIONS(1320), - [aux_sym_cmd_identifier_token6] = ACTIONS(1320), - [aux_sym_cmd_identifier_token7] = ACTIONS(1320), - [aux_sym_cmd_identifier_token8] = ACTIONS(1320), - [aux_sym_cmd_identifier_token9] = ACTIONS(1320), - [aux_sym_cmd_identifier_token10] = ACTIONS(1320), - [aux_sym_cmd_identifier_token11] = ACTIONS(1320), - [aux_sym_cmd_identifier_token12] = ACTIONS(1320), - [aux_sym_cmd_identifier_token13] = ACTIONS(1320), - [aux_sym_cmd_identifier_token14] = ACTIONS(1320), - [aux_sym_cmd_identifier_token15] = ACTIONS(1320), - [aux_sym_cmd_identifier_token16] = ACTIONS(1320), - [aux_sym_cmd_identifier_token17] = ACTIONS(1320), - [aux_sym_cmd_identifier_token18] = ACTIONS(1320), - [aux_sym_cmd_identifier_token19] = ACTIONS(1320), - [aux_sym_cmd_identifier_token20] = ACTIONS(1320), - [aux_sym_cmd_identifier_token21] = ACTIONS(1320), - [aux_sym_cmd_identifier_token22] = ACTIONS(1320), - [aux_sym_cmd_identifier_token23] = ACTIONS(1320), - [aux_sym_cmd_identifier_token24] = ACTIONS(1320), - [aux_sym_cmd_identifier_token25] = ACTIONS(1320), - [aux_sym_cmd_identifier_token26] = ACTIONS(1320), - [aux_sym_cmd_identifier_token27] = ACTIONS(1320), - [aux_sym_cmd_identifier_token28] = ACTIONS(1320), - [aux_sym_cmd_identifier_token29] = ACTIONS(1320), - [aux_sym_cmd_identifier_token30] = ACTIONS(1320), - [aux_sym_cmd_identifier_token31] = ACTIONS(1320), - [aux_sym_cmd_identifier_token32] = ACTIONS(1320), - [aux_sym_cmd_identifier_token33] = ACTIONS(1320), - [aux_sym_cmd_identifier_token34] = ACTIONS(1320), - [aux_sym_cmd_identifier_token35] = ACTIONS(1320), - [aux_sym_cmd_identifier_token36] = ACTIONS(1320), - [anon_sym_true] = ACTIONS(1322), - [anon_sym_false] = ACTIONS(1322), - [anon_sym_null] = ACTIONS(1322), - [aux_sym_cmd_identifier_token38] = ACTIONS(1324), - [aux_sym_cmd_identifier_token39] = ACTIONS(1326), - [aux_sym_cmd_identifier_token40] = ACTIONS(1326), - [sym__newline] = ACTIONS(1328), - [anon_sym_def] = ACTIONS(273), - [anon_sym_export_DASHenv] = ACTIONS(273), - [anon_sym_extern] = ACTIONS(273), - [anon_sym_module] = ACTIONS(273), - [anon_sym_use] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(1330), - [anon_sym_DOLLAR] = ACTIONS(1332), - [anon_sym_error] = ACTIONS(273), - [anon_sym_list] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(243), - [anon_sym_break] = ACTIONS(273), - [anon_sym_continue] = ACTIONS(273), - [anon_sym_for] = ACTIONS(273), - [anon_sym_in] = ACTIONS(273), - [anon_sym_loop] = ACTIONS(273), - [anon_sym_make] = ACTIONS(273), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(273), - [anon_sym_if] = ACTIONS(273), - [anon_sym_else] = ACTIONS(273), - [anon_sym_match] = ACTIONS(273), - [anon_sym_RBRACE] = ACTIONS(1348), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(273), - [anon_sym_return] = ACTIONS(273), - [anon_sym_source] = ACTIONS(273), - [anon_sym_source_DASHenv] = ACTIONS(273), - [anon_sym_register] = ACTIONS(273), - [anon_sym_hide] = ACTIONS(273), - [anon_sym_hide_DASHenv] = ACTIONS(273), - [anon_sym_overlay] = ACTIONS(273), - [anon_sym_new] = ACTIONS(273), - [anon_sym_as] = ACTIONS(273), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(1334), - [aux_sym__val_number_decimal_token2] = ACTIONS(1336), - [aux_sym__val_number_decimal_token3] = ACTIONS(1338), - [aux_sym__val_number_decimal_token4] = ACTIONS(1340), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(243), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_record_body_repeat1] = STATE(211), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(277), + [anon_sym_let] = ACTIONS(277), + [anon_sym_let_DASHenv] = ACTIONS(277), + [anon_sym_mut] = ACTIONS(277), + [anon_sym_const] = ACTIONS(277), + [aux_sym_cmd_identifier_token1] = ACTIONS(1327), + [aux_sym_cmd_identifier_token2] = ACTIONS(1327), + [aux_sym_cmd_identifier_token3] = ACTIONS(1327), + [aux_sym_cmd_identifier_token4] = ACTIONS(1327), + [aux_sym_cmd_identifier_token5] = ACTIONS(1327), + [aux_sym_cmd_identifier_token6] = ACTIONS(1327), + [aux_sym_cmd_identifier_token7] = ACTIONS(1327), + [aux_sym_cmd_identifier_token8] = ACTIONS(1327), + [aux_sym_cmd_identifier_token9] = ACTIONS(1327), + [aux_sym_cmd_identifier_token10] = ACTIONS(1327), + [aux_sym_cmd_identifier_token11] = ACTIONS(1327), + [aux_sym_cmd_identifier_token12] = ACTIONS(1327), + [aux_sym_cmd_identifier_token13] = ACTIONS(1327), + [aux_sym_cmd_identifier_token14] = ACTIONS(1327), + [aux_sym_cmd_identifier_token15] = ACTIONS(1327), + [aux_sym_cmd_identifier_token16] = ACTIONS(1327), + [aux_sym_cmd_identifier_token17] = ACTIONS(1327), + [aux_sym_cmd_identifier_token18] = ACTIONS(1327), + [aux_sym_cmd_identifier_token19] = ACTIONS(1327), + [aux_sym_cmd_identifier_token20] = ACTIONS(1327), + [aux_sym_cmd_identifier_token21] = ACTIONS(1327), + [aux_sym_cmd_identifier_token22] = ACTIONS(1327), + [aux_sym_cmd_identifier_token23] = ACTIONS(1327), + [aux_sym_cmd_identifier_token24] = ACTIONS(1327), + [aux_sym_cmd_identifier_token25] = ACTIONS(1327), + [aux_sym_cmd_identifier_token26] = ACTIONS(1327), + [aux_sym_cmd_identifier_token27] = ACTIONS(1327), + [aux_sym_cmd_identifier_token28] = ACTIONS(1327), + [aux_sym_cmd_identifier_token29] = ACTIONS(1327), + [aux_sym_cmd_identifier_token30] = ACTIONS(1327), + [aux_sym_cmd_identifier_token31] = ACTIONS(1327), + [aux_sym_cmd_identifier_token32] = ACTIONS(1327), + [aux_sym_cmd_identifier_token33] = ACTIONS(1327), + [aux_sym_cmd_identifier_token34] = ACTIONS(1327), + [aux_sym_cmd_identifier_token35] = ACTIONS(1327), + [aux_sym_cmd_identifier_token36] = ACTIONS(1327), + [anon_sym_true] = ACTIONS(1329), + [anon_sym_false] = ACTIONS(1329), + [anon_sym_null] = ACTIONS(1329), + [aux_sym_cmd_identifier_token38] = ACTIONS(1331), + [aux_sym_cmd_identifier_token39] = ACTIONS(1333), + [aux_sym_cmd_identifier_token40] = ACTIONS(1333), + [sym__newline] = ACTIONS(1335), + [anon_sym_def] = ACTIONS(277), + [anon_sym_export_DASHenv] = ACTIONS(277), + [anon_sym_extern] = ACTIONS(277), + [anon_sym_module] = ACTIONS(277), + [anon_sym_use] = ACTIONS(277), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_DOLLAR] = ACTIONS(1339), + [anon_sym_error] = ACTIONS(277), + [anon_sym_list] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(245), + [anon_sym_break] = ACTIONS(277), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(277), + [anon_sym_in] = ACTIONS(277), + [anon_sym_loop] = ACTIONS(277), + [anon_sym_make] = ACTIONS(277), + [anon_sym_while] = ACTIONS(277), + [anon_sym_do] = ACTIONS(277), + [anon_sym_if] = ACTIONS(277), + [anon_sym_else] = ACTIONS(277), + [anon_sym_match] = ACTIONS(277), + [anon_sym_RBRACE] = ACTIONS(1370), + [anon_sym_try] = ACTIONS(277), + [anon_sym_catch] = ACTIONS(277), + [anon_sym_return] = ACTIONS(277), + [anon_sym_source] = ACTIONS(277), + [anon_sym_source_DASHenv] = ACTIONS(277), + [anon_sym_register] = ACTIONS(277), + [anon_sym_hide] = ACTIONS(277), + [anon_sym_hide_DASHenv] = ACTIONS(277), + [anon_sym_overlay] = ACTIONS(277), + [anon_sym_new] = ACTIONS(277), + [anon_sym_as] = ACTIONS(277), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(1341), + [aux_sym__val_number_decimal_token2] = ACTIONS(1343), + [aux_sym__val_number_decimal_token3] = ACTIONS(1345), + [aux_sym__val_number_decimal_token4] = ACTIONS(1347), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [202] = { - [sym_cmd_identifier] = STATE(7456), - [sym__match_pattern_record_variable] = STATE(656), - [sym_expr_parenthesized] = STATE(7535), - [sym__spread_parenthesized] = STATE(658), - [sym__spread_variable] = STATE(697), - [sym_val_variable] = STATE(513), - [sym_val_number] = STATE(7535), - [sym__val_number_decimal] = STATE(6126), - [sym__val_number] = STATE(1647), - [sym_val_string] = STATE(7535), - [sym__str_double_quotes] = STATE(1418), - [sym__spread_record] = STATE(658), - [sym_record_entry] = STATE(656), - [sym__record_key] = STATE(7456), + [sym_cmd_identifier] = STATE(7872), + [sym_expr_parenthesized] = STATE(7806), + [sym__spread_parenthesized] = STATE(7465), + [sym__spread_variable] = STATE(7436), + [sym_val_variable] = STATE(7806), + [sym_val_number] = STATE(7806), + [sym__val_number_decimal] = STATE(6414), + [sym__val_number] = STATE(1883), + [sym_val_string] = STATE(7806), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym__spread_record] = STATE(7465), + [sym_record_body] = STATE(7921), + [sym_record_entry] = STATE(6808), + [sym__record_key] = STATE(7872), [sym_comment] = STATE(202), - [aux_sym__match_pattern_record_repeat1] = STATE(203), - [anon_sym_export] = ACTIONS(1350), - [anon_sym_alias] = ACTIONS(1350), - [anon_sym_let] = ACTIONS(1350), - [anon_sym_let_DASHenv] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [aux_sym_cmd_identifier_token1] = ACTIONS(1320), - [aux_sym_cmd_identifier_token2] = ACTIONS(1320), - [aux_sym_cmd_identifier_token3] = ACTIONS(1320), - [aux_sym_cmd_identifier_token4] = ACTIONS(1320), - [aux_sym_cmd_identifier_token5] = ACTIONS(1320), - [aux_sym_cmd_identifier_token6] = ACTIONS(1320), - [aux_sym_cmd_identifier_token7] = ACTIONS(1320), - [aux_sym_cmd_identifier_token8] = ACTIONS(1320), - [aux_sym_cmd_identifier_token9] = ACTIONS(1320), - [aux_sym_cmd_identifier_token10] = ACTIONS(1320), - [aux_sym_cmd_identifier_token11] = ACTIONS(1320), - [aux_sym_cmd_identifier_token12] = ACTIONS(1320), - [aux_sym_cmd_identifier_token13] = ACTIONS(1320), - [aux_sym_cmd_identifier_token14] = ACTIONS(1320), - [aux_sym_cmd_identifier_token15] = ACTIONS(1320), - [aux_sym_cmd_identifier_token16] = ACTIONS(1320), - [aux_sym_cmd_identifier_token17] = ACTIONS(1320), - [aux_sym_cmd_identifier_token18] = ACTIONS(1320), - [aux_sym_cmd_identifier_token19] = ACTIONS(1320), - [aux_sym_cmd_identifier_token20] = ACTIONS(1320), - [aux_sym_cmd_identifier_token21] = ACTIONS(1320), - [aux_sym_cmd_identifier_token22] = ACTIONS(1320), - [aux_sym_cmd_identifier_token23] = ACTIONS(1320), - [aux_sym_cmd_identifier_token24] = ACTIONS(1320), - [aux_sym_cmd_identifier_token25] = ACTIONS(1320), - [aux_sym_cmd_identifier_token26] = ACTIONS(1320), - [aux_sym_cmd_identifier_token27] = ACTIONS(1320), - [aux_sym_cmd_identifier_token28] = ACTIONS(1320), - [aux_sym_cmd_identifier_token29] = ACTIONS(1320), - [aux_sym_cmd_identifier_token30] = ACTIONS(1320), - [aux_sym_cmd_identifier_token31] = ACTIONS(1320), - [aux_sym_cmd_identifier_token32] = ACTIONS(1320), - [aux_sym_cmd_identifier_token33] = ACTIONS(1320), - [aux_sym_cmd_identifier_token34] = ACTIONS(1320), - [aux_sym_cmd_identifier_token35] = ACTIONS(1320), - [aux_sym_cmd_identifier_token36] = ACTIONS(1320), - [anon_sym_true] = ACTIONS(1322), - [anon_sym_false] = ACTIONS(1322), - [anon_sym_null] = ACTIONS(1322), - [aux_sym_cmd_identifier_token38] = ACTIONS(1324), - [aux_sym_cmd_identifier_token39] = ACTIONS(1326), - [aux_sym_cmd_identifier_token40] = ACTIONS(1326), - [anon_sym_def] = ACTIONS(1350), - [anon_sym_export_DASHenv] = ACTIONS(1350), - [anon_sym_extern] = ACTIONS(1350), - [anon_sym_module] = ACTIONS(1350), - [anon_sym_use] = ACTIONS(1350), - [anon_sym_LPAREN] = ACTIONS(1330), - [anon_sym_DOLLAR] = ACTIONS(1352), - [anon_sym_error] = ACTIONS(1350), - [anon_sym_list] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(243), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_in] = ACTIONS(1350), - [anon_sym_loop] = ACTIONS(1350), - [anon_sym_make] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [anon_sym_do] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_else] = ACTIONS(1350), - [anon_sym_match] = ACTIONS(1350), - [anon_sym_RBRACE] = ACTIONS(1354), - [anon_sym_try] = ACTIONS(1350), - [anon_sym_catch] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_source] = ACTIONS(1350), - [anon_sym_source_DASHenv] = ACTIONS(1350), - [anon_sym_register] = ACTIONS(1350), - [anon_sym_hide] = ACTIONS(1350), - [anon_sym_hide_DASHenv] = ACTIONS(1350), - [anon_sym_overlay] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1350), - [anon_sym_as] = ACTIONS(1350), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1356), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1358), - [aux_sym__val_number_decimal_token1] = ACTIONS(1334), - [aux_sym__val_number_decimal_token2] = ACTIONS(1336), - [aux_sym__val_number_decimal_token3] = ACTIONS(1338), - [aux_sym__val_number_decimal_token4] = ACTIONS(1340), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(243), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(207), + [aux_sym_record_body_repeat1] = STATE(211), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(277), + [anon_sym_let] = ACTIONS(277), + [anon_sym_let_DASHenv] = ACTIONS(277), + [anon_sym_mut] = ACTIONS(277), + [anon_sym_const] = ACTIONS(277), + [aux_sym_cmd_identifier_token1] = ACTIONS(1327), + [aux_sym_cmd_identifier_token2] = ACTIONS(1327), + [aux_sym_cmd_identifier_token3] = ACTIONS(1327), + [aux_sym_cmd_identifier_token4] = ACTIONS(1327), + [aux_sym_cmd_identifier_token5] = ACTIONS(1327), + [aux_sym_cmd_identifier_token6] = ACTIONS(1327), + [aux_sym_cmd_identifier_token7] = ACTIONS(1327), + [aux_sym_cmd_identifier_token8] = ACTIONS(1327), + [aux_sym_cmd_identifier_token9] = ACTIONS(1327), + [aux_sym_cmd_identifier_token10] = ACTIONS(1327), + [aux_sym_cmd_identifier_token11] = ACTIONS(1327), + [aux_sym_cmd_identifier_token12] = ACTIONS(1327), + [aux_sym_cmd_identifier_token13] = ACTIONS(1327), + [aux_sym_cmd_identifier_token14] = ACTIONS(1327), + [aux_sym_cmd_identifier_token15] = ACTIONS(1327), + [aux_sym_cmd_identifier_token16] = ACTIONS(1327), + [aux_sym_cmd_identifier_token17] = ACTIONS(1327), + [aux_sym_cmd_identifier_token18] = ACTIONS(1327), + [aux_sym_cmd_identifier_token19] = ACTIONS(1327), + [aux_sym_cmd_identifier_token20] = ACTIONS(1327), + [aux_sym_cmd_identifier_token21] = ACTIONS(1327), + [aux_sym_cmd_identifier_token22] = ACTIONS(1327), + [aux_sym_cmd_identifier_token23] = ACTIONS(1327), + [aux_sym_cmd_identifier_token24] = ACTIONS(1327), + [aux_sym_cmd_identifier_token25] = ACTIONS(1327), + [aux_sym_cmd_identifier_token26] = ACTIONS(1327), + [aux_sym_cmd_identifier_token27] = ACTIONS(1327), + [aux_sym_cmd_identifier_token28] = ACTIONS(1327), + [aux_sym_cmd_identifier_token29] = ACTIONS(1327), + [aux_sym_cmd_identifier_token30] = ACTIONS(1327), + [aux_sym_cmd_identifier_token31] = ACTIONS(1327), + [aux_sym_cmd_identifier_token32] = ACTIONS(1327), + [aux_sym_cmd_identifier_token33] = ACTIONS(1327), + [aux_sym_cmd_identifier_token34] = ACTIONS(1327), + [aux_sym_cmd_identifier_token35] = ACTIONS(1327), + [aux_sym_cmd_identifier_token36] = ACTIONS(1327), + [anon_sym_true] = ACTIONS(1329), + [anon_sym_false] = ACTIONS(1329), + [anon_sym_null] = ACTIONS(1329), + [aux_sym_cmd_identifier_token38] = ACTIONS(1331), + [aux_sym_cmd_identifier_token39] = ACTIONS(1333), + [aux_sym_cmd_identifier_token40] = ACTIONS(1333), + [sym__newline] = ACTIONS(1335), + [anon_sym_def] = ACTIONS(277), + [anon_sym_export_DASHenv] = ACTIONS(277), + [anon_sym_extern] = ACTIONS(277), + [anon_sym_module] = ACTIONS(277), + [anon_sym_use] = ACTIONS(277), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_DOLLAR] = ACTIONS(1339), + [anon_sym_error] = ACTIONS(277), + [anon_sym_list] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(245), + [anon_sym_break] = ACTIONS(277), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(277), + [anon_sym_in] = ACTIONS(277), + [anon_sym_loop] = ACTIONS(277), + [anon_sym_make] = ACTIONS(277), + [anon_sym_while] = ACTIONS(277), + [anon_sym_do] = ACTIONS(277), + [anon_sym_if] = ACTIONS(277), + [anon_sym_else] = ACTIONS(277), + [anon_sym_match] = ACTIONS(277), + [anon_sym_RBRACE] = ACTIONS(1372), + [anon_sym_try] = ACTIONS(277), + [anon_sym_catch] = ACTIONS(277), + [anon_sym_return] = ACTIONS(277), + [anon_sym_source] = ACTIONS(277), + [anon_sym_source_DASHenv] = ACTIONS(277), + [anon_sym_register] = ACTIONS(277), + [anon_sym_hide] = ACTIONS(277), + [anon_sym_hide_DASHenv] = ACTIONS(277), + [anon_sym_overlay] = ACTIONS(277), + [anon_sym_new] = ACTIONS(277), + [anon_sym_as] = ACTIONS(277), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(1341), + [aux_sym__val_number_decimal_token2] = ACTIONS(1343), + [aux_sym__val_number_decimal_token3] = ACTIONS(1345), + [aux_sym__val_number_decimal_token4] = ACTIONS(1347), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [203] = { - [sym_cmd_identifier] = STATE(7456), - [sym__match_pattern_record_variable] = STATE(656), - [sym_expr_parenthesized] = STATE(7535), - [sym__spread_parenthesized] = STATE(658), - [sym__spread_variable] = STATE(697), - [sym_val_variable] = STATE(513), - [sym_val_number] = STATE(7535), - [sym__val_number_decimal] = STATE(6126), - [sym__val_number] = STATE(1647), - [sym_val_string] = STATE(7535), - [sym__str_double_quotes] = STATE(1418), - [sym__spread_record] = STATE(658), - [sym_record_entry] = STATE(656), - [sym__record_key] = STATE(7456), + [sym_cmd_identifier] = STATE(7872), + [sym_expr_parenthesized] = STATE(7806), + [sym__spread_parenthesized] = STATE(7465), + [sym__spread_variable] = STATE(7436), + [sym_val_variable] = STATE(7806), + [sym_val_number] = STATE(7806), + [sym__val_number_decimal] = STATE(6414), + [sym__val_number] = STATE(1883), + [sym_val_string] = STATE(7806), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym__spread_record] = STATE(7465), + [sym_record_body] = STATE(7890), + [sym_record_entry] = STATE(6808), + [sym__record_key] = STATE(7872), [sym_comment] = STATE(203), - [aux_sym__match_pattern_record_repeat1] = STATE(204), - [anon_sym_export] = ACTIONS(1350), - [anon_sym_alias] = ACTIONS(1350), - [anon_sym_let] = ACTIONS(1350), - [anon_sym_let_DASHenv] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [aux_sym_cmd_identifier_token1] = ACTIONS(1320), - [aux_sym_cmd_identifier_token2] = ACTIONS(1320), - [aux_sym_cmd_identifier_token3] = ACTIONS(1320), - [aux_sym_cmd_identifier_token4] = ACTIONS(1320), - [aux_sym_cmd_identifier_token5] = ACTIONS(1320), - [aux_sym_cmd_identifier_token6] = ACTIONS(1320), - [aux_sym_cmd_identifier_token7] = ACTIONS(1320), - [aux_sym_cmd_identifier_token8] = ACTIONS(1320), - [aux_sym_cmd_identifier_token9] = ACTIONS(1320), - [aux_sym_cmd_identifier_token10] = ACTIONS(1320), - [aux_sym_cmd_identifier_token11] = ACTIONS(1320), - [aux_sym_cmd_identifier_token12] = ACTIONS(1320), - [aux_sym_cmd_identifier_token13] = ACTIONS(1320), - [aux_sym_cmd_identifier_token14] = ACTIONS(1320), - [aux_sym_cmd_identifier_token15] = ACTIONS(1320), - [aux_sym_cmd_identifier_token16] = ACTIONS(1320), - [aux_sym_cmd_identifier_token17] = ACTIONS(1320), - [aux_sym_cmd_identifier_token18] = ACTIONS(1320), - [aux_sym_cmd_identifier_token19] = ACTIONS(1320), - [aux_sym_cmd_identifier_token20] = ACTIONS(1320), - [aux_sym_cmd_identifier_token21] = ACTIONS(1320), - [aux_sym_cmd_identifier_token22] = ACTIONS(1320), - [aux_sym_cmd_identifier_token23] = ACTIONS(1320), - [aux_sym_cmd_identifier_token24] = ACTIONS(1320), - [aux_sym_cmd_identifier_token25] = ACTIONS(1320), - [aux_sym_cmd_identifier_token26] = ACTIONS(1320), - [aux_sym_cmd_identifier_token27] = ACTIONS(1320), - [aux_sym_cmd_identifier_token28] = ACTIONS(1320), - [aux_sym_cmd_identifier_token29] = ACTIONS(1320), - [aux_sym_cmd_identifier_token30] = ACTIONS(1320), - [aux_sym_cmd_identifier_token31] = ACTIONS(1320), - [aux_sym_cmd_identifier_token32] = ACTIONS(1320), - [aux_sym_cmd_identifier_token33] = ACTIONS(1320), - [aux_sym_cmd_identifier_token34] = ACTIONS(1320), - [aux_sym_cmd_identifier_token35] = ACTIONS(1320), - [aux_sym_cmd_identifier_token36] = ACTIONS(1320), - [anon_sym_true] = ACTIONS(1322), - [anon_sym_false] = ACTIONS(1322), - [anon_sym_null] = ACTIONS(1322), - [aux_sym_cmd_identifier_token38] = ACTIONS(1324), - [aux_sym_cmd_identifier_token39] = ACTIONS(1326), - [aux_sym_cmd_identifier_token40] = ACTIONS(1326), - [anon_sym_def] = ACTIONS(1350), - [anon_sym_export_DASHenv] = ACTIONS(1350), - [anon_sym_extern] = ACTIONS(1350), - [anon_sym_module] = ACTIONS(1350), - [anon_sym_use] = ACTIONS(1350), - [anon_sym_LPAREN] = ACTIONS(1330), - [anon_sym_DOLLAR] = ACTIONS(1352), - [anon_sym_error] = ACTIONS(1350), - [anon_sym_list] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(243), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_in] = ACTIONS(1350), - [anon_sym_loop] = ACTIONS(1350), - [anon_sym_make] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [anon_sym_do] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_else] = ACTIONS(1350), - [anon_sym_match] = ACTIONS(1350), - [anon_sym_RBRACE] = ACTIONS(1362), - [anon_sym_try] = ACTIONS(1350), - [anon_sym_catch] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_source] = ACTIONS(1350), - [anon_sym_source_DASHenv] = ACTIONS(1350), - [anon_sym_register] = ACTIONS(1350), - [anon_sym_hide] = ACTIONS(1350), - [anon_sym_hide_DASHenv] = ACTIONS(1350), - [anon_sym_overlay] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1350), - [anon_sym_as] = ACTIONS(1350), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1356), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1358), - [aux_sym__val_number_decimal_token1] = ACTIONS(1334), - [aux_sym__val_number_decimal_token2] = ACTIONS(1336), - [aux_sym__val_number_decimal_token3] = ACTIONS(1338), - [aux_sym__val_number_decimal_token4] = ACTIONS(1340), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(243), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(207), + [aux_sym_record_body_repeat1] = STATE(211), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(277), + [anon_sym_let] = ACTIONS(277), + [anon_sym_let_DASHenv] = ACTIONS(277), + [anon_sym_mut] = ACTIONS(277), + [anon_sym_const] = ACTIONS(277), + [aux_sym_cmd_identifier_token1] = ACTIONS(1327), + [aux_sym_cmd_identifier_token2] = ACTIONS(1327), + [aux_sym_cmd_identifier_token3] = ACTIONS(1327), + [aux_sym_cmd_identifier_token4] = ACTIONS(1327), + [aux_sym_cmd_identifier_token5] = ACTIONS(1327), + [aux_sym_cmd_identifier_token6] = ACTIONS(1327), + [aux_sym_cmd_identifier_token7] = ACTIONS(1327), + [aux_sym_cmd_identifier_token8] = ACTIONS(1327), + [aux_sym_cmd_identifier_token9] = ACTIONS(1327), + [aux_sym_cmd_identifier_token10] = ACTIONS(1327), + [aux_sym_cmd_identifier_token11] = ACTIONS(1327), + [aux_sym_cmd_identifier_token12] = ACTIONS(1327), + [aux_sym_cmd_identifier_token13] = ACTIONS(1327), + [aux_sym_cmd_identifier_token14] = ACTIONS(1327), + [aux_sym_cmd_identifier_token15] = ACTIONS(1327), + [aux_sym_cmd_identifier_token16] = ACTIONS(1327), + [aux_sym_cmd_identifier_token17] = ACTIONS(1327), + [aux_sym_cmd_identifier_token18] = ACTIONS(1327), + [aux_sym_cmd_identifier_token19] = ACTIONS(1327), + [aux_sym_cmd_identifier_token20] = ACTIONS(1327), + [aux_sym_cmd_identifier_token21] = ACTIONS(1327), + [aux_sym_cmd_identifier_token22] = ACTIONS(1327), + [aux_sym_cmd_identifier_token23] = ACTIONS(1327), + [aux_sym_cmd_identifier_token24] = ACTIONS(1327), + [aux_sym_cmd_identifier_token25] = ACTIONS(1327), + [aux_sym_cmd_identifier_token26] = ACTIONS(1327), + [aux_sym_cmd_identifier_token27] = ACTIONS(1327), + [aux_sym_cmd_identifier_token28] = ACTIONS(1327), + [aux_sym_cmd_identifier_token29] = ACTIONS(1327), + [aux_sym_cmd_identifier_token30] = ACTIONS(1327), + [aux_sym_cmd_identifier_token31] = ACTIONS(1327), + [aux_sym_cmd_identifier_token32] = ACTIONS(1327), + [aux_sym_cmd_identifier_token33] = ACTIONS(1327), + [aux_sym_cmd_identifier_token34] = ACTIONS(1327), + [aux_sym_cmd_identifier_token35] = ACTIONS(1327), + [aux_sym_cmd_identifier_token36] = ACTIONS(1327), + [anon_sym_true] = ACTIONS(1329), + [anon_sym_false] = ACTIONS(1329), + [anon_sym_null] = ACTIONS(1329), + [aux_sym_cmd_identifier_token38] = ACTIONS(1331), + [aux_sym_cmd_identifier_token39] = ACTIONS(1333), + [aux_sym_cmd_identifier_token40] = ACTIONS(1333), + [sym__newline] = ACTIONS(1335), + [anon_sym_def] = ACTIONS(277), + [anon_sym_export_DASHenv] = ACTIONS(277), + [anon_sym_extern] = ACTIONS(277), + [anon_sym_module] = ACTIONS(277), + [anon_sym_use] = ACTIONS(277), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_DOLLAR] = ACTIONS(1339), + [anon_sym_error] = ACTIONS(277), + [anon_sym_list] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(245), + [anon_sym_break] = ACTIONS(277), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(277), + [anon_sym_in] = ACTIONS(277), + [anon_sym_loop] = ACTIONS(277), + [anon_sym_make] = ACTIONS(277), + [anon_sym_while] = ACTIONS(277), + [anon_sym_do] = ACTIONS(277), + [anon_sym_if] = ACTIONS(277), + [anon_sym_else] = ACTIONS(277), + [anon_sym_match] = ACTIONS(277), + [anon_sym_RBRACE] = ACTIONS(1374), + [anon_sym_try] = ACTIONS(277), + [anon_sym_catch] = ACTIONS(277), + [anon_sym_return] = ACTIONS(277), + [anon_sym_source] = ACTIONS(277), + [anon_sym_source_DASHenv] = ACTIONS(277), + [anon_sym_register] = ACTIONS(277), + [anon_sym_hide] = ACTIONS(277), + [anon_sym_hide_DASHenv] = ACTIONS(277), + [anon_sym_overlay] = ACTIONS(277), + [anon_sym_new] = ACTIONS(277), + [anon_sym_as] = ACTIONS(277), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(1341), + [aux_sym__val_number_decimal_token2] = ACTIONS(1343), + [aux_sym__val_number_decimal_token3] = ACTIONS(1345), + [aux_sym__val_number_decimal_token4] = ACTIONS(1347), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [204] = { - [sym_cmd_identifier] = STATE(7456), - [sym__match_pattern_record_variable] = STATE(656), - [sym_expr_parenthesized] = STATE(7535), - [sym__spread_parenthesized] = STATE(658), - [sym__spread_variable] = STATE(697), - [sym_val_variable] = STATE(513), - [sym_val_number] = STATE(7535), - [sym__val_number_decimal] = STATE(6126), - [sym__val_number] = STATE(1647), - [sym_val_string] = STATE(7535), - [sym__str_double_quotes] = STATE(1418), - [sym__spread_record] = STATE(658), - [sym_record_entry] = STATE(656), - [sym__record_key] = STATE(7456), [sym_comment] = STATE(204), - [aux_sym__match_pattern_record_repeat1] = STATE(204), [anon_sym_export] = ACTIONS(1364), [anon_sym_alias] = ACTIONS(1364), [anon_sym_let] = ACTIONS(1364), [anon_sym_let_DASHenv] = ACTIONS(1364), [anon_sym_mut] = ACTIONS(1364), [anon_sym_const] = ACTIONS(1364), - [aux_sym_cmd_identifier_token1] = ACTIONS(1367), - [aux_sym_cmd_identifier_token2] = ACTIONS(1367), - [aux_sym_cmd_identifier_token3] = ACTIONS(1367), - [aux_sym_cmd_identifier_token4] = ACTIONS(1367), - [aux_sym_cmd_identifier_token5] = ACTIONS(1367), - [aux_sym_cmd_identifier_token6] = ACTIONS(1367), - [aux_sym_cmd_identifier_token7] = ACTIONS(1367), - [aux_sym_cmd_identifier_token8] = ACTIONS(1367), - [aux_sym_cmd_identifier_token9] = ACTIONS(1367), - [aux_sym_cmd_identifier_token10] = ACTIONS(1367), - [aux_sym_cmd_identifier_token11] = ACTIONS(1367), - [aux_sym_cmd_identifier_token12] = ACTIONS(1367), - [aux_sym_cmd_identifier_token13] = ACTIONS(1367), - [aux_sym_cmd_identifier_token14] = ACTIONS(1367), - [aux_sym_cmd_identifier_token15] = ACTIONS(1367), - [aux_sym_cmd_identifier_token16] = ACTIONS(1367), - [aux_sym_cmd_identifier_token17] = ACTIONS(1367), - [aux_sym_cmd_identifier_token18] = ACTIONS(1367), - [aux_sym_cmd_identifier_token19] = ACTIONS(1367), - [aux_sym_cmd_identifier_token20] = ACTIONS(1367), - [aux_sym_cmd_identifier_token21] = ACTIONS(1367), - [aux_sym_cmd_identifier_token22] = ACTIONS(1367), - [aux_sym_cmd_identifier_token23] = ACTIONS(1367), - [aux_sym_cmd_identifier_token24] = ACTIONS(1367), - [aux_sym_cmd_identifier_token25] = ACTIONS(1367), - [aux_sym_cmd_identifier_token26] = ACTIONS(1367), - [aux_sym_cmd_identifier_token27] = ACTIONS(1367), - [aux_sym_cmd_identifier_token28] = ACTIONS(1367), - [aux_sym_cmd_identifier_token29] = ACTIONS(1367), - [aux_sym_cmd_identifier_token30] = ACTIONS(1367), - [aux_sym_cmd_identifier_token31] = ACTIONS(1367), - [aux_sym_cmd_identifier_token32] = ACTIONS(1367), - [aux_sym_cmd_identifier_token33] = ACTIONS(1367), - [aux_sym_cmd_identifier_token34] = ACTIONS(1367), - [aux_sym_cmd_identifier_token35] = ACTIONS(1367), - [aux_sym_cmd_identifier_token36] = ACTIONS(1367), - [anon_sym_true] = ACTIONS(1370), - [anon_sym_false] = ACTIONS(1370), - [anon_sym_null] = ACTIONS(1370), - [aux_sym_cmd_identifier_token38] = ACTIONS(1373), - [aux_sym_cmd_identifier_token39] = ACTIONS(1376), - [aux_sym_cmd_identifier_token40] = ACTIONS(1376), + [aux_sym_cmd_identifier_token1] = ACTIONS(1364), + [aux_sym_cmd_identifier_token2] = ACTIONS(1364), + [aux_sym_cmd_identifier_token3] = ACTIONS(1364), + [aux_sym_cmd_identifier_token4] = ACTIONS(1364), + [aux_sym_cmd_identifier_token5] = ACTIONS(1364), + [aux_sym_cmd_identifier_token6] = ACTIONS(1364), + [aux_sym_cmd_identifier_token7] = ACTIONS(1364), + [aux_sym_cmd_identifier_token8] = ACTIONS(1364), + [aux_sym_cmd_identifier_token9] = ACTIONS(1364), + [aux_sym_cmd_identifier_token10] = ACTIONS(1364), + [aux_sym_cmd_identifier_token11] = ACTIONS(1364), + [aux_sym_cmd_identifier_token12] = ACTIONS(1364), + [aux_sym_cmd_identifier_token13] = ACTIONS(1364), + [aux_sym_cmd_identifier_token14] = ACTIONS(1364), + [aux_sym_cmd_identifier_token15] = ACTIONS(1364), + [aux_sym_cmd_identifier_token16] = ACTIONS(1364), + [aux_sym_cmd_identifier_token17] = ACTIONS(1364), + [aux_sym_cmd_identifier_token18] = ACTIONS(1364), + [aux_sym_cmd_identifier_token19] = ACTIONS(1364), + [aux_sym_cmd_identifier_token20] = ACTIONS(1364), + [aux_sym_cmd_identifier_token21] = ACTIONS(1364), + [aux_sym_cmd_identifier_token22] = ACTIONS(1364), + [aux_sym_cmd_identifier_token23] = ACTIONS(1364), + [aux_sym_cmd_identifier_token24] = ACTIONS(1364), + [aux_sym_cmd_identifier_token25] = ACTIONS(1364), + [aux_sym_cmd_identifier_token26] = ACTIONS(1364), + [aux_sym_cmd_identifier_token27] = ACTIONS(1364), + [aux_sym_cmd_identifier_token28] = ACTIONS(1364), + [aux_sym_cmd_identifier_token29] = ACTIONS(1364), + [aux_sym_cmd_identifier_token30] = ACTIONS(1364), + [aux_sym_cmd_identifier_token31] = ACTIONS(1364), + [aux_sym_cmd_identifier_token32] = ACTIONS(1364), + [aux_sym_cmd_identifier_token33] = ACTIONS(1364), + [aux_sym_cmd_identifier_token34] = ACTIONS(1364), + [aux_sym_cmd_identifier_token35] = ACTIONS(1364), + [aux_sym_cmd_identifier_token36] = ACTIONS(1364), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1362), + [aux_sym_cmd_identifier_token38] = ACTIONS(1364), + [aux_sym_cmd_identifier_token39] = ACTIONS(1362), + [aux_sym_cmd_identifier_token40] = ACTIONS(1362), + [sym__newline] = ACTIONS(1362), + [anon_sym_SEMI] = ACTIONS(1362), + [anon_sym_PIPE] = ACTIONS(1362), [anon_sym_def] = ACTIONS(1364), [anon_sym_export_DASHenv] = ACTIONS(1364), [anon_sym_extern] = ACTIONS(1364), [anon_sym_module] = ACTIONS(1364), [anon_sym_use] = ACTIONS(1364), - [anon_sym_LPAREN] = ACTIONS(1379), - [anon_sym_DOLLAR] = ACTIONS(1382), + [anon_sym_LBRACK] = ACTIONS(1362), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_DOLLAR] = ACTIONS(1364), [anon_sym_error] = ACTIONS(1364), [anon_sym_list] = ACTIONS(1364), - [anon_sym_DASH] = ACTIONS(1385), + [anon_sym_DASH] = ACTIONS(1364), [anon_sym_break] = ACTIONS(1364), [anon_sym_continue] = ACTIONS(1364), [anon_sym_for] = ACTIONS(1364), @@ -100765,7 +101886,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1364), [anon_sym_else] = ACTIONS(1364), [anon_sym_match] = ACTIONS(1364), - [anon_sym_RBRACE] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(1362), + [anon_sym_DOT_DOT] = ACTIONS(1364), [anon_sym_try] = ACTIONS(1364), [anon_sym_catch] = ACTIONS(1364), [anon_sym_return] = ACTIONS(1364), @@ -100777,1575 +101899,1519 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(1364), [anon_sym_new] = ACTIONS(1364), [anon_sym_as] = ACTIONS(1364), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1390), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1393), - [aux_sym__val_number_decimal_token1] = ACTIONS(1396), - [aux_sym__val_number_decimal_token2] = ACTIONS(1399), - [aux_sym__val_number_decimal_token3] = ACTIONS(1402), - [aux_sym__val_number_decimal_token4] = ACTIONS(1405), - [aux_sym__val_number_token1] = ACTIONS(1408), - [aux_sym__val_number_token2] = ACTIONS(1408), - [aux_sym__val_number_token3] = ACTIONS(1408), - [anon_sym_DQUOTE] = ACTIONS(1411), - [sym__str_single_quotes] = ACTIONS(1414), - [sym__str_back_ticks] = ACTIONS(1414), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1417), - [anon_sym_PLUS] = ACTIONS(1385), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_where] = ACTIONS(1362), + [aux_sym_expr_unary_token1] = ACTIONS(1362), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1362), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1362), + [anon_sym_DOT_DOT_LT] = ACTIONS(1362), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1362), + [aux_sym__val_number_decimal_token1] = ACTIONS(1364), + [aux_sym__val_number_decimal_token2] = ACTIONS(1362), + [aux_sym__val_number_decimal_token3] = ACTIONS(1362), + [aux_sym__val_number_decimal_token4] = ACTIONS(1362), + [aux_sym__val_number_token1] = ACTIONS(1362), + [aux_sym__val_number_token2] = ACTIONS(1362), + [aux_sym__val_number_token3] = ACTIONS(1362), + [anon_sym_0b] = ACTIONS(1364), + [anon_sym_0o] = ACTIONS(1364), + [anon_sym_0x] = ACTIONS(1364), + [sym_val_date] = ACTIONS(1362), + [anon_sym_DQUOTE] = ACTIONS(1362), + [sym__str_single_quotes] = ACTIONS(1362), + [sym__str_back_ticks] = ACTIONS(1362), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1362), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1362), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1362), + [anon_sym_PLUS] = ACTIONS(1364), + [aux_sym_env_var_token1] = ACTIONS(1364), + [anon_sym_CARET] = ACTIONS(1362), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1362), }, [205] = { - [sym_cmd_identifier] = STATE(7456), - [sym__match_pattern_record_variable] = STATE(656), - [sym_expr_parenthesized] = STATE(7535), - [sym__spread_parenthesized] = STATE(658), - [sym__spread_variable] = STATE(697), - [sym_val_variable] = STATE(513), - [sym_val_number] = STATE(7535), - [sym__val_number_decimal] = STATE(6126), - [sym__val_number] = STATE(1647), - [sym_val_string] = STATE(7535), - [sym__str_double_quotes] = STATE(1418), - [sym__spread_record] = STATE(658), - [sym_record_entry] = STATE(656), - [sym__record_key] = STATE(7456), + [sym_cmd_identifier] = STATE(7923), + [sym__match_pattern_record_variable] = STATE(688), + [sym_expr_parenthesized] = STATE(7609), + [sym__spread_parenthesized] = STATE(697), + [sym__spread_variable] = STATE(698), + [sym_val_variable] = STATE(544), + [sym_val_number] = STATE(7609), + [sym__val_number_decimal] = STATE(6414), + [sym__val_number] = STATE(1883), + [sym_val_string] = STATE(7609), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym__spread_record] = STATE(697), + [sym_record_entry] = STATE(688), + [sym__record_key] = STATE(7923), [sym_comment] = STATE(205), - [aux_sym__match_pattern_record_repeat1] = STATE(204), - [anon_sym_export] = ACTIONS(1350), - [anon_sym_alias] = ACTIONS(1350), - [anon_sym_let] = ACTIONS(1350), - [anon_sym_let_DASHenv] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [aux_sym_cmd_identifier_token1] = ACTIONS(1320), - [aux_sym_cmd_identifier_token2] = ACTIONS(1320), - [aux_sym_cmd_identifier_token3] = ACTIONS(1320), - [aux_sym_cmd_identifier_token4] = ACTIONS(1320), - [aux_sym_cmd_identifier_token5] = ACTIONS(1320), - [aux_sym_cmd_identifier_token6] = ACTIONS(1320), - [aux_sym_cmd_identifier_token7] = ACTIONS(1320), - [aux_sym_cmd_identifier_token8] = ACTIONS(1320), - [aux_sym_cmd_identifier_token9] = ACTIONS(1320), - [aux_sym_cmd_identifier_token10] = ACTIONS(1320), - [aux_sym_cmd_identifier_token11] = ACTIONS(1320), - [aux_sym_cmd_identifier_token12] = ACTIONS(1320), - [aux_sym_cmd_identifier_token13] = ACTIONS(1320), - [aux_sym_cmd_identifier_token14] = ACTIONS(1320), - [aux_sym_cmd_identifier_token15] = ACTIONS(1320), - [aux_sym_cmd_identifier_token16] = ACTIONS(1320), - [aux_sym_cmd_identifier_token17] = ACTIONS(1320), - [aux_sym_cmd_identifier_token18] = ACTIONS(1320), - [aux_sym_cmd_identifier_token19] = ACTIONS(1320), - [aux_sym_cmd_identifier_token20] = ACTIONS(1320), - [aux_sym_cmd_identifier_token21] = ACTIONS(1320), - [aux_sym_cmd_identifier_token22] = ACTIONS(1320), - [aux_sym_cmd_identifier_token23] = ACTIONS(1320), - [aux_sym_cmd_identifier_token24] = ACTIONS(1320), - [aux_sym_cmd_identifier_token25] = ACTIONS(1320), - [aux_sym_cmd_identifier_token26] = ACTIONS(1320), - [aux_sym_cmd_identifier_token27] = ACTIONS(1320), - [aux_sym_cmd_identifier_token28] = ACTIONS(1320), - [aux_sym_cmd_identifier_token29] = ACTIONS(1320), - [aux_sym_cmd_identifier_token30] = ACTIONS(1320), - [aux_sym_cmd_identifier_token31] = ACTIONS(1320), - [aux_sym_cmd_identifier_token32] = ACTIONS(1320), - [aux_sym_cmd_identifier_token33] = ACTIONS(1320), - [aux_sym_cmd_identifier_token34] = ACTIONS(1320), - [aux_sym_cmd_identifier_token35] = ACTIONS(1320), - [aux_sym_cmd_identifier_token36] = ACTIONS(1320), - [anon_sym_true] = ACTIONS(1322), - [anon_sym_false] = ACTIONS(1322), - [anon_sym_null] = ACTIONS(1322), - [aux_sym_cmd_identifier_token38] = ACTIONS(1324), - [aux_sym_cmd_identifier_token39] = ACTIONS(1326), - [aux_sym_cmd_identifier_token40] = ACTIONS(1326), - [anon_sym_def] = ACTIONS(1350), - [anon_sym_export_DASHenv] = ACTIONS(1350), - [anon_sym_extern] = ACTIONS(1350), - [anon_sym_module] = ACTIONS(1350), - [anon_sym_use] = ACTIONS(1350), - [anon_sym_LPAREN] = ACTIONS(1330), - [anon_sym_DOLLAR] = ACTIONS(1352), - [anon_sym_error] = ACTIONS(1350), - [anon_sym_list] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(243), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_in] = ACTIONS(1350), - [anon_sym_loop] = ACTIONS(1350), - [anon_sym_make] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [anon_sym_do] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_else] = ACTIONS(1350), - [anon_sym_match] = ACTIONS(1350), - [anon_sym_RBRACE] = ACTIONS(1420), - [anon_sym_try] = ACTIONS(1350), - [anon_sym_catch] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_source] = ACTIONS(1350), - [anon_sym_source_DASHenv] = ACTIONS(1350), - [anon_sym_register] = ACTIONS(1350), - [anon_sym_hide] = ACTIONS(1350), - [anon_sym_hide_DASHenv] = ACTIONS(1350), - [anon_sym_overlay] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1350), - [anon_sym_as] = ACTIONS(1350), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1356), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1358), - [aux_sym__val_number_decimal_token1] = ACTIONS(1334), - [aux_sym__val_number_decimal_token2] = ACTIONS(1336), - [aux_sym__val_number_decimal_token3] = ACTIONS(1338), - [aux_sym__val_number_decimal_token4] = ACTIONS(1340), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(243), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym__match_pattern_record_repeat1] = STATE(209), + [anon_sym_export] = ACTIONS(1376), + [anon_sym_alias] = ACTIONS(1376), + [anon_sym_let] = ACTIONS(1376), + [anon_sym_let_DASHenv] = ACTIONS(1376), + [anon_sym_mut] = ACTIONS(1376), + [anon_sym_const] = ACTIONS(1376), + [aux_sym_cmd_identifier_token1] = ACTIONS(1327), + [aux_sym_cmd_identifier_token2] = ACTIONS(1327), + [aux_sym_cmd_identifier_token3] = ACTIONS(1327), + [aux_sym_cmd_identifier_token4] = ACTIONS(1327), + [aux_sym_cmd_identifier_token5] = ACTIONS(1327), + [aux_sym_cmd_identifier_token6] = ACTIONS(1327), + [aux_sym_cmd_identifier_token7] = ACTIONS(1327), + [aux_sym_cmd_identifier_token8] = ACTIONS(1327), + [aux_sym_cmd_identifier_token9] = ACTIONS(1327), + [aux_sym_cmd_identifier_token10] = ACTIONS(1327), + [aux_sym_cmd_identifier_token11] = ACTIONS(1327), + [aux_sym_cmd_identifier_token12] = ACTIONS(1327), + [aux_sym_cmd_identifier_token13] = ACTIONS(1327), + [aux_sym_cmd_identifier_token14] = ACTIONS(1327), + [aux_sym_cmd_identifier_token15] = ACTIONS(1327), + [aux_sym_cmd_identifier_token16] = ACTIONS(1327), + [aux_sym_cmd_identifier_token17] = ACTIONS(1327), + [aux_sym_cmd_identifier_token18] = ACTIONS(1327), + [aux_sym_cmd_identifier_token19] = ACTIONS(1327), + [aux_sym_cmd_identifier_token20] = ACTIONS(1327), + [aux_sym_cmd_identifier_token21] = ACTIONS(1327), + [aux_sym_cmd_identifier_token22] = ACTIONS(1327), + [aux_sym_cmd_identifier_token23] = ACTIONS(1327), + [aux_sym_cmd_identifier_token24] = ACTIONS(1327), + [aux_sym_cmd_identifier_token25] = ACTIONS(1327), + [aux_sym_cmd_identifier_token26] = ACTIONS(1327), + [aux_sym_cmd_identifier_token27] = ACTIONS(1327), + [aux_sym_cmd_identifier_token28] = ACTIONS(1327), + [aux_sym_cmd_identifier_token29] = ACTIONS(1327), + [aux_sym_cmd_identifier_token30] = ACTIONS(1327), + [aux_sym_cmd_identifier_token31] = ACTIONS(1327), + [aux_sym_cmd_identifier_token32] = ACTIONS(1327), + [aux_sym_cmd_identifier_token33] = ACTIONS(1327), + [aux_sym_cmd_identifier_token34] = ACTIONS(1327), + [aux_sym_cmd_identifier_token35] = ACTIONS(1327), + [aux_sym_cmd_identifier_token36] = ACTIONS(1327), + [anon_sym_true] = ACTIONS(1329), + [anon_sym_false] = ACTIONS(1329), + [anon_sym_null] = ACTIONS(1329), + [aux_sym_cmd_identifier_token38] = ACTIONS(1331), + [aux_sym_cmd_identifier_token39] = ACTIONS(1333), + [aux_sym_cmd_identifier_token40] = ACTIONS(1333), + [anon_sym_def] = ACTIONS(1376), + [anon_sym_export_DASHenv] = ACTIONS(1376), + [anon_sym_extern] = ACTIONS(1376), + [anon_sym_module] = ACTIONS(1376), + [anon_sym_use] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_DOLLAR] = ACTIONS(1378), + [anon_sym_error] = ACTIONS(1376), + [anon_sym_list] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(245), + [anon_sym_break] = ACTIONS(1376), + [anon_sym_continue] = ACTIONS(1376), + [anon_sym_for] = ACTIONS(1376), + [anon_sym_in] = ACTIONS(1376), + [anon_sym_loop] = ACTIONS(1376), + [anon_sym_make] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(1376), + [anon_sym_do] = ACTIONS(1376), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_else] = ACTIONS(1376), + [anon_sym_match] = ACTIONS(1376), + [anon_sym_RBRACE] = ACTIONS(1380), + [anon_sym_try] = ACTIONS(1376), + [anon_sym_catch] = ACTIONS(1376), + [anon_sym_return] = ACTIONS(1376), + [anon_sym_source] = ACTIONS(1376), + [anon_sym_source_DASHenv] = ACTIONS(1376), + [anon_sym_register] = ACTIONS(1376), + [anon_sym_hide] = ACTIONS(1376), + [anon_sym_hide_DASHenv] = ACTIONS(1376), + [anon_sym_overlay] = ACTIONS(1376), + [anon_sym_new] = ACTIONS(1376), + [anon_sym_as] = ACTIONS(1376), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1382), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1384), + [aux_sym__val_number_decimal_token1] = ACTIONS(1341), + [aux_sym__val_number_decimal_token2] = ACTIONS(1343), + [aux_sym__val_number_decimal_token3] = ACTIONS(1345), + [aux_sym__val_number_decimal_token4] = ACTIONS(1347), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [206] = { - [sym_cmd_identifier] = STATE(7456), - [sym__match_pattern_record_variable] = STATE(656), - [sym_expr_parenthesized] = STATE(7535), - [sym__spread_parenthesized] = STATE(658), - [sym__spread_variable] = STATE(697), - [sym_val_variable] = STATE(513), - [sym_val_number] = STATE(7535), - [sym__val_number_decimal] = STATE(6126), - [sym__val_number] = STATE(1647), - [sym_val_string] = STATE(7535), - [sym__str_double_quotes] = STATE(1418), - [sym__spread_record] = STATE(658), - [sym_record_entry] = STATE(656), - [sym__record_key] = STATE(7456), + [sym_cmd_identifier] = STATE(7923), + [sym__match_pattern_record_variable] = STATE(688), + [sym_expr_parenthesized] = STATE(7609), + [sym__spread_parenthesized] = STATE(697), + [sym__spread_variable] = STATE(698), + [sym_val_variable] = STATE(544), + [sym_val_number] = STATE(7609), + [sym__val_number_decimal] = STATE(6414), + [sym__val_number] = STATE(1883), + [sym_val_string] = STATE(7609), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym__spread_record] = STATE(697), + [sym_record_entry] = STATE(688), + [sym__record_key] = STATE(7923), [sym_comment] = STATE(206), - [aux_sym__match_pattern_record_repeat1] = STATE(205), - [anon_sym_export] = ACTIONS(1350), - [anon_sym_alias] = ACTIONS(1350), - [anon_sym_let] = ACTIONS(1350), - [anon_sym_let_DASHenv] = ACTIONS(1350), - [anon_sym_mut] = ACTIONS(1350), - [anon_sym_const] = ACTIONS(1350), - [aux_sym_cmd_identifier_token1] = ACTIONS(1320), - [aux_sym_cmd_identifier_token2] = ACTIONS(1320), - [aux_sym_cmd_identifier_token3] = ACTIONS(1320), - [aux_sym_cmd_identifier_token4] = ACTIONS(1320), - [aux_sym_cmd_identifier_token5] = ACTIONS(1320), - [aux_sym_cmd_identifier_token6] = ACTIONS(1320), - [aux_sym_cmd_identifier_token7] = ACTIONS(1320), - [aux_sym_cmd_identifier_token8] = ACTIONS(1320), - [aux_sym_cmd_identifier_token9] = ACTIONS(1320), - [aux_sym_cmd_identifier_token10] = ACTIONS(1320), - [aux_sym_cmd_identifier_token11] = ACTIONS(1320), - [aux_sym_cmd_identifier_token12] = ACTIONS(1320), - [aux_sym_cmd_identifier_token13] = ACTIONS(1320), - [aux_sym_cmd_identifier_token14] = ACTIONS(1320), - [aux_sym_cmd_identifier_token15] = ACTIONS(1320), - [aux_sym_cmd_identifier_token16] = ACTIONS(1320), - [aux_sym_cmd_identifier_token17] = ACTIONS(1320), - [aux_sym_cmd_identifier_token18] = ACTIONS(1320), - [aux_sym_cmd_identifier_token19] = ACTIONS(1320), - [aux_sym_cmd_identifier_token20] = ACTIONS(1320), - [aux_sym_cmd_identifier_token21] = ACTIONS(1320), - [aux_sym_cmd_identifier_token22] = ACTIONS(1320), - [aux_sym_cmd_identifier_token23] = ACTIONS(1320), - [aux_sym_cmd_identifier_token24] = ACTIONS(1320), - [aux_sym_cmd_identifier_token25] = ACTIONS(1320), - [aux_sym_cmd_identifier_token26] = ACTIONS(1320), - [aux_sym_cmd_identifier_token27] = ACTIONS(1320), - [aux_sym_cmd_identifier_token28] = ACTIONS(1320), - [aux_sym_cmd_identifier_token29] = ACTIONS(1320), - [aux_sym_cmd_identifier_token30] = ACTIONS(1320), - [aux_sym_cmd_identifier_token31] = ACTIONS(1320), - [aux_sym_cmd_identifier_token32] = ACTIONS(1320), - [aux_sym_cmd_identifier_token33] = ACTIONS(1320), - [aux_sym_cmd_identifier_token34] = ACTIONS(1320), - [aux_sym_cmd_identifier_token35] = ACTIONS(1320), - [aux_sym_cmd_identifier_token36] = ACTIONS(1320), - [anon_sym_true] = ACTIONS(1322), - [anon_sym_false] = ACTIONS(1322), - [anon_sym_null] = ACTIONS(1322), - [aux_sym_cmd_identifier_token38] = ACTIONS(1324), - [aux_sym_cmd_identifier_token39] = ACTIONS(1326), - [aux_sym_cmd_identifier_token40] = ACTIONS(1326), - [anon_sym_def] = ACTIONS(1350), - [anon_sym_export_DASHenv] = ACTIONS(1350), - [anon_sym_extern] = ACTIONS(1350), - [anon_sym_module] = ACTIONS(1350), - [anon_sym_use] = ACTIONS(1350), - [anon_sym_LPAREN] = ACTIONS(1330), - [anon_sym_DOLLAR] = ACTIONS(1352), - [anon_sym_error] = ACTIONS(1350), - [anon_sym_list] = ACTIONS(1350), - [anon_sym_DASH] = ACTIONS(243), - [anon_sym_break] = ACTIONS(1350), - [anon_sym_continue] = ACTIONS(1350), - [anon_sym_for] = ACTIONS(1350), - [anon_sym_in] = ACTIONS(1350), - [anon_sym_loop] = ACTIONS(1350), - [anon_sym_make] = ACTIONS(1350), - [anon_sym_while] = ACTIONS(1350), - [anon_sym_do] = ACTIONS(1350), - [anon_sym_if] = ACTIONS(1350), - [anon_sym_else] = ACTIONS(1350), - [anon_sym_match] = ACTIONS(1350), - [anon_sym_RBRACE] = ACTIONS(1422), - [anon_sym_try] = ACTIONS(1350), - [anon_sym_catch] = ACTIONS(1350), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_source] = ACTIONS(1350), - [anon_sym_source_DASHenv] = ACTIONS(1350), - [anon_sym_register] = ACTIONS(1350), - [anon_sym_hide] = ACTIONS(1350), - [anon_sym_hide_DASHenv] = ACTIONS(1350), - [anon_sym_overlay] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1350), - [anon_sym_as] = ACTIONS(1350), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1356), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1358), - [aux_sym__val_number_decimal_token1] = ACTIONS(1334), - [aux_sym__val_number_decimal_token2] = ACTIONS(1336), - [aux_sym__val_number_decimal_token3] = ACTIONS(1338), - [aux_sym__val_number_decimal_token4] = ACTIONS(1340), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(243), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym__match_pattern_record_repeat1] = STATE(210), + [anon_sym_export] = ACTIONS(1376), + [anon_sym_alias] = ACTIONS(1376), + [anon_sym_let] = ACTIONS(1376), + [anon_sym_let_DASHenv] = ACTIONS(1376), + [anon_sym_mut] = ACTIONS(1376), + [anon_sym_const] = ACTIONS(1376), + [aux_sym_cmd_identifier_token1] = ACTIONS(1327), + [aux_sym_cmd_identifier_token2] = ACTIONS(1327), + [aux_sym_cmd_identifier_token3] = ACTIONS(1327), + [aux_sym_cmd_identifier_token4] = ACTIONS(1327), + [aux_sym_cmd_identifier_token5] = ACTIONS(1327), + [aux_sym_cmd_identifier_token6] = ACTIONS(1327), + [aux_sym_cmd_identifier_token7] = ACTIONS(1327), + [aux_sym_cmd_identifier_token8] = ACTIONS(1327), + [aux_sym_cmd_identifier_token9] = ACTIONS(1327), + [aux_sym_cmd_identifier_token10] = ACTIONS(1327), + [aux_sym_cmd_identifier_token11] = ACTIONS(1327), + [aux_sym_cmd_identifier_token12] = ACTIONS(1327), + [aux_sym_cmd_identifier_token13] = ACTIONS(1327), + [aux_sym_cmd_identifier_token14] = ACTIONS(1327), + [aux_sym_cmd_identifier_token15] = ACTIONS(1327), + [aux_sym_cmd_identifier_token16] = ACTIONS(1327), + [aux_sym_cmd_identifier_token17] = ACTIONS(1327), + [aux_sym_cmd_identifier_token18] = ACTIONS(1327), + [aux_sym_cmd_identifier_token19] = ACTIONS(1327), + [aux_sym_cmd_identifier_token20] = ACTIONS(1327), + [aux_sym_cmd_identifier_token21] = ACTIONS(1327), + [aux_sym_cmd_identifier_token22] = ACTIONS(1327), + [aux_sym_cmd_identifier_token23] = ACTIONS(1327), + [aux_sym_cmd_identifier_token24] = ACTIONS(1327), + [aux_sym_cmd_identifier_token25] = ACTIONS(1327), + [aux_sym_cmd_identifier_token26] = ACTIONS(1327), + [aux_sym_cmd_identifier_token27] = ACTIONS(1327), + [aux_sym_cmd_identifier_token28] = ACTIONS(1327), + [aux_sym_cmd_identifier_token29] = ACTIONS(1327), + [aux_sym_cmd_identifier_token30] = ACTIONS(1327), + [aux_sym_cmd_identifier_token31] = ACTIONS(1327), + [aux_sym_cmd_identifier_token32] = ACTIONS(1327), + [aux_sym_cmd_identifier_token33] = ACTIONS(1327), + [aux_sym_cmd_identifier_token34] = ACTIONS(1327), + [aux_sym_cmd_identifier_token35] = ACTIONS(1327), + [aux_sym_cmd_identifier_token36] = ACTIONS(1327), + [anon_sym_true] = ACTIONS(1329), + [anon_sym_false] = ACTIONS(1329), + [anon_sym_null] = ACTIONS(1329), + [aux_sym_cmd_identifier_token38] = ACTIONS(1331), + [aux_sym_cmd_identifier_token39] = ACTIONS(1333), + [aux_sym_cmd_identifier_token40] = ACTIONS(1333), + [anon_sym_def] = ACTIONS(1376), + [anon_sym_export_DASHenv] = ACTIONS(1376), + [anon_sym_extern] = ACTIONS(1376), + [anon_sym_module] = ACTIONS(1376), + [anon_sym_use] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_DOLLAR] = ACTIONS(1378), + [anon_sym_error] = ACTIONS(1376), + [anon_sym_list] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(245), + [anon_sym_break] = ACTIONS(1376), + [anon_sym_continue] = ACTIONS(1376), + [anon_sym_for] = ACTIONS(1376), + [anon_sym_in] = ACTIONS(1376), + [anon_sym_loop] = ACTIONS(1376), + [anon_sym_make] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(1376), + [anon_sym_do] = ACTIONS(1376), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_else] = ACTIONS(1376), + [anon_sym_match] = ACTIONS(1376), + [anon_sym_RBRACE] = ACTIONS(1388), + [anon_sym_try] = ACTIONS(1376), + [anon_sym_catch] = ACTIONS(1376), + [anon_sym_return] = ACTIONS(1376), + [anon_sym_source] = ACTIONS(1376), + [anon_sym_source_DASHenv] = ACTIONS(1376), + [anon_sym_register] = ACTIONS(1376), + [anon_sym_hide] = ACTIONS(1376), + [anon_sym_hide_DASHenv] = ACTIONS(1376), + [anon_sym_overlay] = ACTIONS(1376), + [anon_sym_new] = ACTIONS(1376), + [anon_sym_as] = ACTIONS(1376), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1382), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1384), + [aux_sym__val_number_decimal_token1] = ACTIONS(1341), + [aux_sym__val_number_decimal_token2] = ACTIONS(1343), + [aux_sym__val_number_decimal_token3] = ACTIONS(1345), + [aux_sym__val_number_decimal_token4] = ACTIONS(1347), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [207] = { - [sym_cmd_identifier] = STATE(7516), - [sym_expr_parenthesized] = STATE(7410), - [sym__spread_parenthesized] = STATE(567), - [sym__spread_variable] = STATE(571), - [sym_val_variable] = STATE(7410), - [sym_val_number] = STATE(7410), - [sym__val_number_decimal] = STATE(6126), - [sym__val_number] = STATE(1647), - [sym_val_string] = STATE(7410), - [sym__str_double_quotes] = STATE(1418), - [sym__spread_record] = STATE(567), - [sym_record_entry] = STATE(6724), - [sym__record_key] = STATE(7516), + [sym_cmd_identifier] = STATE(7872), + [sym_expr_parenthesized] = STATE(7806), + [sym__spread_parenthesized] = STATE(7465), + [sym__spread_variable] = STATE(7436), + [sym_val_variable] = STATE(7806), + [sym_val_number] = STATE(7806), + [sym__val_number_decimal] = STATE(6414), + [sym__val_number] = STATE(1883), + [sym_val_string] = STATE(7806), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym__spread_record] = STATE(7465), + [sym_record_entry] = STATE(7013), + [sym__record_key] = STATE(7872), [sym_comment] = STATE(207), - [aux_sym_shebang_repeat1] = STATE(594), - [aux_sym_record_body_repeat1] = STATE(209), - [anon_sym_export] = ACTIONS(273), - [anon_sym_alias] = ACTIONS(273), - [anon_sym_let] = ACTIONS(273), - [anon_sym_let_DASHenv] = ACTIONS(273), - [anon_sym_mut] = ACTIONS(273), - [anon_sym_const] = ACTIONS(273), - [aux_sym_cmd_identifier_token1] = ACTIONS(1320), - [aux_sym_cmd_identifier_token2] = ACTIONS(1320), - [aux_sym_cmd_identifier_token3] = ACTIONS(1320), - [aux_sym_cmd_identifier_token4] = ACTIONS(1320), - [aux_sym_cmd_identifier_token5] = ACTIONS(1320), - [aux_sym_cmd_identifier_token6] = ACTIONS(1320), - [aux_sym_cmd_identifier_token7] = ACTIONS(1320), - [aux_sym_cmd_identifier_token8] = ACTIONS(1320), - [aux_sym_cmd_identifier_token9] = ACTIONS(1320), - [aux_sym_cmd_identifier_token10] = ACTIONS(1320), - [aux_sym_cmd_identifier_token11] = ACTIONS(1320), - [aux_sym_cmd_identifier_token12] = ACTIONS(1320), - [aux_sym_cmd_identifier_token13] = ACTIONS(1320), - [aux_sym_cmd_identifier_token14] = ACTIONS(1320), - [aux_sym_cmd_identifier_token15] = ACTIONS(1320), - [aux_sym_cmd_identifier_token16] = ACTIONS(1320), - [aux_sym_cmd_identifier_token17] = ACTIONS(1320), - [aux_sym_cmd_identifier_token18] = ACTIONS(1320), - [aux_sym_cmd_identifier_token19] = ACTIONS(1320), - [aux_sym_cmd_identifier_token20] = ACTIONS(1320), - [aux_sym_cmd_identifier_token21] = ACTIONS(1320), - [aux_sym_cmd_identifier_token22] = ACTIONS(1320), - [aux_sym_cmd_identifier_token23] = ACTIONS(1320), - [aux_sym_cmd_identifier_token24] = ACTIONS(1320), - [aux_sym_cmd_identifier_token25] = ACTIONS(1320), - [aux_sym_cmd_identifier_token26] = ACTIONS(1320), - [aux_sym_cmd_identifier_token27] = ACTIONS(1320), - [aux_sym_cmd_identifier_token28] = ACTIONS(1320), - [aux_sym_cmd_identifier_token29] = ACTIONS(1320), - [aux_sym_cmd_identifier_token30] = ACTIONS(1320), - [aux_sym_cmd_identifier_token31] = ACTIONS(1320), - [aux_sym_cmd_identifier_token32] = ACTIONS(1320), - [aux_sym_cmd_identifier_token33] = ACTIONS(1320), - [aux_sym_cmd_identifier_token34] = ACTIONS(1320), - [aux_sym_cmd_identifier_token35] = ACTIONS(1320), - [aux_sym_cmd_identifier_token36] = ACTIONS(1320), - [anon_sym_true] = ACTIONS(1322), - [anon_sym_false] = ACTIONS(1322), - [anon_sym_null] = ACTIONS(1322), - [aux_sym_cmd_identifier_token38] = ACTIONS(1324), - [aux_sym_cmd_identifier_token39] = ACTIONS(1326), - [aux_sym_cmd_identifier_token40] = ACTIONS(1326), - [sym__newline] = ACTIONS(1328), - [anon_sym_def] = ACTIONS(273), - [anon_sym_export_DASHenv] = ACTIONS(273), - [anon_sym_extern] = ACTIONS(273), - [anon_sym_module] = ACTIONS(273), - [anon_sym_use] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(1330), - [anon_sym_DOLLAR] = ACTIONS(1332), - [anon_sym_error] = ACTIONS(273), - [anon_sym_list] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(243), - [anon_sym_break] = ACTIONS(273), - [anon_sym_continue] = ACTIONS(273), - [anon_sym_for] = ACTIONS(273), - [anon_sym_in] = ACTIONS(273), - [anon_sym_loop] = ACTIONS(273), - [anon_sym_make] = ACTIONS(273), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(273), - [anon_sym_if] = ACTIONS(273), - [anon_sym_else] = ACTIONS(273), - [anon_sym_match] = ACTIONS(273), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(273), - [anon_sym_return] = ACTIONS(273), - [anon_sym_source] = ACTIONS(273), - [anon_sym_source_DASHenv] = ACTIONS(273), - [anon_sym_register] = ACTIONS(273), - [anon_sym_hide] = ACTIONS(273), - [anon_sym_hide_DASHenv] = ACTIONS(273), - [anon_sym_overlay] = ACTIONS(273), - [anon_sym_new] = ACTIONS(273), - [anon_sym_as] = ACTIONS(273), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(1334), - [aux_sym__val_number_decimal_token2] = ACTIONS(1336), - [aux_sym__val_number_decimal_token3] = ACTIONS(1338), - [aux_sym__val_number_decimal_token4] = ACTIONS(1340), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(243), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(605), + [aux_sym_record_body_repeat1] = STATE(212), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(277), + [anon_sym_let] = ACTIONS(277), + [anon_sym_let_DASHenv] = ACTIONS(277), + [anon_sym_mut] = ACTIONS(277), + [anon_sym_const] = ACTIONS(277), + [aux_sym_cmd_identifier_token1] = ACTIONS(1327), + [aux_sym_cmd_identifier_token2] = ACTIONS(1327), + [aux_sym_cmd_identifier_token3] = ACTIONS(1327), + [aux_sym_cmd_identifier_token4] = ACTIONS(1327), + [aux_sym_cmd_identifier_token5] = ACTIONS(1327), + [aux_sym_cmd_identifier_token6] = ACTIONS(1327), + [aux_sym_cmd_identifier_token7] = ACTIONS(1327), + [aux_sym_cmd_identifier_token8] = ACTIONS(1327), + [aux_sym_cmd_identifier_token9] = ACTIONS(1327), + [aux_sym_cmd_identifier_token10] = ACTIONS(1327), + [aux_sym_cmd_identifier_token11] = ACTIONS(1327), + [aux_sym_cmd_identifier_token12] = ACTIONS(1327), + [aux_sym_cmd_identifier_token13] = ACTIONS(1327), + [aux_sym_cmd_identifier_token14] = ACTIONS(1327), + [aux_sym_cmd_identifier_token15] = ACTIONS(1327), + [aux_sym_cmd_identifier_token16] = ACTIONS(1327), + [aux_sym_cmd_identifier_token17] = ACTIONS(1327), + [aux_sym_cmd_identifier_token18] = ACTIONS(1327), + [aux_sym_cmd_identifier_token19] = ACTIONS(1327), + [aux_sym_cmd_identifier_token20] = ACTIONS(1327), + [aux_sym_cmd_identifier_token21] = ACTIONS(1327), + [aux_sym_cmd_identifier_token22] = ACTIONS(1327), + [aux_sym_cmd_identifier_token23] = ACTIONS(1327), + [aux_sym_cmd_identifier_token24] = ACTIONS(1327), + [aux_sym_cmd_identifier_token25] = ACTIONS(1327), + [aux_sym_cmd_identifier_token26] = ACTIONS(1327), + [aux_sym_cmd_identifier_token27] = ACTIONS(1327), + [aux_sym_cmd_identifier_token28] = ACTIONS(1327), + [aux_sym_cmd_identifier_token29] = ACTIONS(1327), + [aux_sym_cmd_identifier_token30] = ACTIONS(1327), + [aux_sym_cmd_identifier_token31] = ACTIONS(1327), + [aux_sym_cmd_identifier_token32] = ACTIONS(1327), + [aux_sym_cmd_identifier_token33] = ACTIONS(1327), + [aux_sym_cmd_identifier_token34] = ACTIONS(1327), + [aux_sym_cmd_identifier_token35] = ACTIONS(1327), + [aux_sym_cmd_identifier_token36] = ACTIONS(1327), + [anon_sym_true] = ACTIONS(1329), + [anon_sym_false] = ACTIONS(1329), + [anon_sym_null] = ACTIONS(1329), + [aux_sym_cmd_identifier_token38] = ACTIONS(1331), + [aux_sym_cmd_identifier_token39] = ACTIONS(1333), + [aux_sym_cmd_identifier_token40] = ACTIONS(1333), + [sym__newline] = ACTIONS(1335), + [anon_sym_def] = ACTIONS(277), + [anon_sym_export_DASHenv] = ACTIONS(277), + [anon_sym_extern] = ACTIONS(277), + [anon_sym_module] = ACTIONS(277), + [anon_sym_use] = ACTIONS(277), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_DOLLAR] = ACTIONS(1339), + [anon_sym_error] = ACTIONS(277), + [anon_sym_list] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(245), + [anon_sym_break] = ACTIONS(277), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(277), + [anon_sym_in] = ACTIONS(277), + [anon_sym_loop] = ACTIONS(277), + [anon_sym_make] = ACTIONS(277), + [anon_sym_while] = ACTIONS(277), + [anon_sym_do] = ACTIONS(277), + [anon_sym_if] = ACTIONS(277), + [anon_sym_else] = ACTIONS(277), + [anon_sym_match] = ACTIONS(277), + [anon_sym_try] = ACTIONS(277), + [anon_sym_catch] = ACTIONS(277), + [anon_sym_return] = ACTIONS(277), + [anon_sym_source] = ACTIONS(277), + [anon_sym_source_DASHenv] = ACTIONS(277), + [anon_sym_register] = ACTIONS(277), + [anon_sym_hide] = ACTIONS(277), + [anon_sym_hide_DASHenv] = ACTIONS(277), + [anon_sym_overlay] = ACTIONS(277), + [anon_sym_new] = ACTIONS(277), + [anon_sym_as] = ACTIONS(277), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(1341), + [aux_sym__val_number_decimal_token2] = ACTIONS(1343), + [aux_sym__val_number_decimal_token3] = ACTIONS(1345), + [aux_sym__val_number_decimal_token4] = ACTIONS(1347), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [208] = { - [sym_cmd_identifier] = STATE(7516), - [sym_expr_parenthesized] = STATE(7410), - [sym__spread_parenthesized] = STATE(567), - [sym__spread_variable] = STATE(571), - [sym_val_variable] = STATE(7410), - [sym_val_number] = STATE(7410), - [sym__val_number_decimal] = STATE(6126), - [sym__val_number] = STATE(1647), - [sym_val_string] = STATE(7410), - [sym__str_double_quotes] = STATE(1418), - [sym__spread_record] = STATE(567), - [sym_record_entry] = STATE(7349), - [sym__record_key] = STATE(7516), + [sym_cmd_identifier] = STATE(7923), + [sym__match_pattern_record_variable] = STATE(688), + [sym_expr_parenthesized] = STATE(7609), + [sym__spread_parenthesized] = STATE(697), + [sym__spread_variable] = STATE(698), + [sym_val_variable] = STATE(544), + [sym_val_number] = STATE(7609), + [sym__val_number_decimal] = STATE(6414), + [sym__val_number] = STATE(1883), + [sym_val_string] = STATE(7609), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym__spread_record] = STATE(697), + [sym_record_entry] = STATE(688), + [sym__record_key] = STATE(7923), [sym_comment] = STATE(208), - [aux_sym_record_body_repeat1] = STATE(208), - [anon_sym_export] = ACTIONS(1424), - [anon_sym_alias] = ACTIONS(1424), - [anon_sym_let] = ACTIONS(1424), - [anon_sym_let_DASHenv] = ACTIONS(1424), - [anon_sym_mut] = ACTIONS(1424), - [anon_sym_const] = ACTIONS(1424), - [aux_sym_cmd_identifier_token1] = ACTIONS(1427), - [aux_sym_cmd_identifier_token2] = ACTIONS(1427), - [aux_sym_cmd_identifier_token3] = ACTIONS(1427), - [aux_sym_cmd_identifier_token4] = ACTIONS(1427), - [aux_sym_cmd_identifier_token5] = ACTIONS(1427), - [aux_sym_cmd_identifier_token6] = ACTIONS(1427), - [aux_sym_cmd_identifier_token7] = ACTIONS(1427), - [aux_sym_cmd_identifier_token8] = ACTIONS(1427), - [aux_sym_cmd_identifier_token9] = ACTIONS(1427), - [aux_sym_cmd_identifier_token10] = ACTIONS(1427), - [aux_sym_cmd_identifier_token11] = ACTIONS(1427), - [aux_sym_cmd_identifier_token12] = ACTIONS(1427), - [aux_sym_cmd_identifier_token13] = ACTIONS(1427), - [aux_sym_cmd_identifier_token14] = ACTIONS(1427), - [aux_sym_cmd_identifier_token15] = ACTIONS(1427), - [aux_sym_cmd_identifier_token16] = ACTIONS(1427), - [aux_sym_cmd_identifier_token17] = ACTIONS(1427), - [aux_sym_cmd_identifier_token18] = ACTIONS(1427), - [aux_sym_cmd_identifier_token19] = ACTIONS(1427), - [aux_sym_cmd_identifier_token20] = ACTIONS(1427), - [aux_sym_cmd_identifier_token21] = ACTIONS(1427), - [aux_sym_cmd_identifier_token22] = ACTIONS(1427), - [aux_sym_cmd_identifier_token23] = ACTIONS(1427), - [aux_sym_cmd_identifier_token24] = ACTIONS(1427), - [aux_sym_cmd_identifier_token25] = ACTIONS(1427), - [aux_sym_cmd_identifier_token26] = ACTIONS(1427), - [aux_sym_cmd_identifier_token27] = ACTIONS(1427), - [aux_sym_cmd_identifier_token28] = ACTIONS(1427), - [aux_sym_cmd_identifier_token29] = ACTIONS(1427), - [aux_sym_cmd_identifier_token30] = ACTIONS(1427), - [aux_sym_cmd_identifier_token31] = ACTIONS(1427), - [aux_sym_cmd_identifier_token32] = ACTIONS(1427), - [aux_sym_cmd_identifier_token33] = ACTIONS(1427), - [aux_sym_cmd_identifier_token34] = ACTIONS(1427), - [aux_sym_cmd_identifier_token35] = ACTIONS(1427), - [aux_sym_cmd_identifier_token36] = ACTIONS(1427), - [anon_sym_true] = ACTIONS(1430), - [anon_sym_false] = ACTIONS(1430), - [anon_sym_null] = ACTIONS(1430), - [aux_sym_cmd_identifier_token38] = ACTIONS(1433), - [aux_sym_cmd_identifier_token39] = ACTIONS(1436), - [aux_sym_cmd_identifier_token40] = ACTIONS(1436), - [anon_sym_def] = ACTIONS(1424), - [anon_sym_export_DASHenv] = ACTIONS(1424), - [anon_sym_extern] = ACTIONS(1424), - [anon_sym_module] = ACTIONS(1424), - [anon_sym_use] = ACTIONS(1424), - [anon_sym_LPAREN] = ACTIONS(1439), - [anon_sym_DOLLAR] = ACTIONS(1442), - [anon_sym_error] = ACTIONS(1424), - [anon_sym_list] = ACTIONS(1424), - [anon_sym_DASH] = ACTIONS(1445), - [anon_sym_break] = ACTIONS(1424), - [anon_sym_continue] = ACTIONS(1424), - [anon_sym_for] = ACTIONS(1424), - [anon_sym_in] = ACTIONS(1424), - [anon_sym_loop] = ACTIONS(1424), - [anon_sym_make] = ACTIONS(1424), - [anon_sym_while] = ACTIONS(1424), - [anon_sym_do] = ACTIONS(1424), - [anon_sym_if] = ACTIONS(1424), - [anon_sym_else] = ACTIONS(1424), - [anon_sym_match] = ACTIONS(1424), - [anon_sym_try] = ACTIONS(1424), - [anon_sym_catch] = ACTIONS(1424), - [anon_sym_return] = ACTIONS(1424), - [anon_sym_source] = ACTIONS(1424), - [anon_sym_source_DASHenv] = ACTIONS(1424), - [anon_sym_register] = ACTIONS(1424), - [anon_sym_hide] = ACTIONS(1424), - [anon_sym_hide_DASHenv] = ACTIONS(1424), - [anon_sym_overlay] = ACTIONS(1424), - [anon_sym_new] = ACTIONS(1424), - [anon_sym_as] = ACTIONS(1424), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1448), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1451), - [aux_sym__val_number_decimal_token1] = ACTIONS(1454), - [aux_sym__val_number_decimal_token2] = ACTIONS(1457), - [aux_sym__val_number_decimal_token3] = ACTIONS(1460), - [aux_sym__val_number_decimal_token4] = ACTIONS(1463), - [aux_sym__val_number_token1] = ACTIONS(1466), - [aux_sym__val_number_token2] = ACTIONS(1466), - [aux_sym__val_number_token3] = ACTIONS(1466), - [anon_sym_DQUOTE] = ACTIONS(1469), - [sym__str_single_quotes] = ACTIONS(1472), - [sym__str_back_ticks] = ACTIONS(1472), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1475), - [anon_sym_PLUS] = ACTIONS(1445), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym__match_pattern_record_repeat1] = STATE(208), + [anon_sym_export] = ACTIONS(1390), + [anon_sym_alias] = ACTIONS(1390), + [anon_sym_let] = ACTIONS(1390), + [anon_sym_let_DASHenv] = ACTIONS(1390), + [anon_sym_mut] = ACTIONS(1390), + [anon_sym_const] = ACTIONS(1390), + [aux_sym_cmd_identifier_token1] = ACTIONS(1393), + [aux_sym_cmd_identifier_token2] = ACTIONS(1393), + [aux_sym_cmd_identifier_token3] = ACTIONS(1393), + [aux_sym_cmd_identifier_token4] = ACTIONS(1393), + [aux_sym_cmd_identifier_token5] = ACTIONS(1393), + [aux_sym_cmd_identifier_token6] = ACTIONS(1393), + [aux_sym_cmd_identifier_token7] = ACTIONS(1393), + [aux_sym_cmd_identifier_token8] = ACTIONS(1393), + [aux_sym_cmd_identifier_token9] = ACTIONS(1393), + [aux_sym_cmd_identifier_token10] = ACTIONS(1393), + [aux_sym_cmd_identifier_token11] = ACTIONS(1393), + [aux_sym_cmd_identifier_token12] = ACTIONS(1393), + [aux_sym_cmd_identifier_token13] = ACTIONS(1393), + [aux_sym_cmd_identifier_token14] = ACTIONS(1393), + [aux_sym_cmd_identifier_token15] = ACTIONS(1393), + [aux_sym_cmd_identifier_token16] = ACTIONS(1393), + [aux_sym_cmd_identifier_token17] = ACTIONS(1393), + [aux_sym_cmd_identifier_token18] = ACTIONS(1393), + [aux_sym_cmd_identifier_token19] = ACTIONS(1393), + [aux_sym_cmd_identifier_token20] = ACTIONS(1393), + [aux_sym_cmd_identifier_token21] = ACTIONS(1393), + [aux_sym_cmd_identifier_token22] = ACTIONS(1393), + [aux_sym_cmd_identifier_token23] = ACTIONS(1393), + [aux_sym_cmd_identifier_token24] = ACTIONS(1393), + [aux_sym_cmd_identifier_token25] = ACTIONS(1393), + [aux_sym_cmd_identifier_token26] = ACTIONS(1393), + [aux_sym_cmd_identifier_token27] = ACTIONS(1393), + [aux_sym_cmd_identifier_token28] = ACTIONS(1393), + [aux_sym_cmd_identifier_token29] = ACTIONS(1393), + [aux_sym_cmd_identifier_token30] = ACTIONS(1393), + [aux_sym_cmd_identifier_token31] = ACTIONS(1393), + [aux_sym_cmd_identifier_token32] = ACTIONS(1393), + [aux_sym_cmd_identifier_token33] = ACTIONS(1393), + [aux_sym_cmd_identifier_token34] = ACTIONS(1393), + [aux_sym_cmd_identifier_token35] = ACTIONS(1393), + [aux_sym_cmd_identifier_token36] = ACTIONS(1393), + [anon_sym_true] = ACTIONS(1396), + [anon_sym_false] = ACTIONS(1396), + [anon_sym_null] = ACTIONS(1396), + [aux_sym_cmd_identifier_token38] = ACTIONS(1399), + [aux_sym_cmd_identifier_token39] = ACTIONS(1402), + [aux_sym_cmd_identifier_token40] = ACTIONS(1402), + [anon_sym_def] = ACTIONS(1390), + [anon_sym_export_DASHenv] = ACTIONS(1390), + [anon_sym_extern] = ACTIONS(1390), + [anon_sym_module] = ACTIONS(1390), + [anon_sym_use] = ACTIONS(1390), + [anon_sym_LPAREN] = ACTIONS(1405), + [anon_sym_DOLLAR] = ACTIONS(1408), + [anon_sym_error] = ACTIONS(1390), + [anon_sym_list] = ACTIONS(1390), + [anon_sym_DASH] = ACTIONS(1411), + [anon_sym_break] = ACTIONS(1390), + [anon_sym_continue] = ACTIONS(1390), + [anon_sym_for] = ACTIONS(1390), + [anon_sym_in] = ACTIONS(1390), + [anon_sym_loop] = ACTIONS(1390), + [anon_sym_make] = ACTIONS(1390), + [anon_sym_while] = ACTIONS(1390), + [anon_sym_do] = ACTIONS(1390), + [anon_sym_if] = ACTIONS(1390), + [anon_sym_else] = ACTIONS(1390), + [anon_sym_match] = ACTIONS(1390), + [anon_sym_RBRACE] = ACTIONS(1414), + [anon_sym_try] = ACTIONS(1390), + [anon_sym_catch] = ACTIONS(1390), + [anon_sym_return] = ACTIONS(1390), + [anon_sym_source] = ACTIONS(1390), + [anon_sym_source_DASHenv] = ACTIONS(1390), + [anon_sym_register] = ACTIONS(1390), + [anon_sym_hide] = ACTIONS(1390), + [anon_sym_hide_DASHenv] = ACTIONS(1390), + [anon_sym_overlay] = ACTIONS(1390), + [anon_sym_new] = ACTIONS(1390), + [anon_sym_as] = ACTIONS(1390), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1416), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1419), + [aux_sym__val_number_decimal_token1] = ACTIONS(1422), + [aux_sym__val_number_decimal_token2] = ACTIONS(1425), + [aux_sym__val_number_decimal_token3] = ACTIONS(1428), + [aux_sym__val_number_decimal_token4] = ACTIONS(1431), + [aux_sym__val_number_token1] = ACTIONS(1434), + [aux_sym__val_number_token2] = ACTIONS(1434), + [aux_sym__val_number_token3] = ACTIONS(1434), + [anon_sym_DQUOTE] = ACTIONS(1437), + [sym__str_single_quotes] = ACTIONS(1440), + [sym__str_back_ticks] = ACTIONS(1440), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1443), + [anon_sym_PLUS] = ACTIONS(1411), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1446), }, [209] = { - [sym_cmd_identifier] = STATE(7516), - [sym_expr_parenthesized] = STATE(7410), - [sym__spread_parenthesized] = STATE(567), - [sym__spread_variable] = STATE(571), - [sym_val_variable] = STATE(7410), - [sym_val_number] = STATE(7410), - [sym__val_number_decimal] = STATE(6126), - [sym__val_number] = STATE(1647), - [sym_val_string] = STATE(7410), - [sym__str_double_quotes] = STATE(1418), - [sym__spread_record] = STATE(567), - [sym_record_entry] = STATE(6729), - [sym__record_key] = STATE(7516), + [sym_cmd_identifier] = STATE(7923), + [sym__match_pattern_record_variable] = STATE(688), + [sym_expr_parenthesized] = STATE(7609), + [sym__spread_parenthesized] = STATE(697), + [sym__spread_variable] = STATE(698), + [sym_val_variable] = STATE(544), + [sym_val_number] = STATE(7609), + [sym__val_number_decimal] = STATE(6414), + [sym__val_number] = STATE(1883), + [sym_val_string] = STATE(7609), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym__spread_record] = STATE(697), + [sym_record_entry] = STATE(688), + [sym__record_key] = STATE(7923), [sym_comment] = STATE(209), - [aux_sym_record_body_repeat1] = STATE(208), - [anon_sym_export] = ACTIONS(273), - [anon_sym_alias] = ACTIONS(273), - [anon_sym_let] = ACTIONS(273), - [anon_sym_let_DASHenv] = ACTIONS(273), - [anon_sym_mut] = ACTIONS(273), - [anon_sym_const] = ACTIONS(273), - [aux_sym_cmd_identifier_token1] = ACTIONS(1320), - [aux_sym_cmd_identifier_token2] = ACTIONS(1320), - [aux_sym_cmd_identifier_token3] = ACTIONS(1320), - [aux_sym_cmd_identifier_token4] = ACTIONS(1320), - [aux_sym_cmd_identifier_token5] = ACTIONS(1320), - [aux_sym_cmd_identifier_token6] = ACTIONS(1320), - [aux_sym_cmd_identifier_token7] = ACTIONS(1320), - [aux_sym_cmd_identifier_token8] = ACTIONS(1320), - [aux_sym_cmd_identifier_token9] = ACTIONS(1320), - [aux_sym_cmd_identifier_token10] = ACTIONS(1320), - [aux_sym_cmd_identifier_token11] = ACTIONS(1320), - [aux_sym_cmd_identifier_token12] = ACTIONS(1320), - [aux_sym_cmd_identifier_token13] = ACTIONS(1320), - [aux_sym_cmd_identifier_token14] = ACTIONS(1320), - [aux_sym_cmd_identifier_token15] = ACTIONS(1320), - [aux_sym_cmd_identifier_token16] = ACTIONS(1320), - [aux_sym_cmd_identifier_token17] = ACTIONS(1320), - [aux_sym_cmd_identifier_token18] = ACTIONS(1320), - [aux_sym_cmd_identifier_token19] = ACTIONS(1320), - [aux_sym_cmd_identifier_token20] = ACTIONS(1320), - [aux_sym_cmd_identifier_token21] = ACTIONS(1320), - [aux_sym_cmd_identifier_token22] = ACTIONS(1320), - [aux_sym_cmd_identifier_token23] = ACTIONS(1320), - [aux_sym_cmd_identifier_token24] = ACTIONS(1320), - [aux_sym_cmd_identifier_token25] = ACTIONS(1320), - [aux_sym_cmd_identifier_token26] = ACTIONS(1320), - [aux_sym_cmd_identifier_token27] = ACTIONS(1320), - [aux_sym_cmd_identifier_token28] = ACTIONS(1320), - [aux_sym_cmd_identifier_token29] = ACTIONS(1320), - [aux_sym_cmd_identifier_token30] = ACTIONS(1320), - [aux_sym_cmd_identifier_token31] = ACTIONS(1320), - [aux_sym_cmd_identifier_token32] = ACTIONS(1320), - [aux_sym_cmd_identifier_token33] = ACTIONS(1320), - [aux_sym_cmd_identifier_token34] = ACTIONS(1320), - [aux_sym_cmd_identifier_token35] = ACTIONS(1320), - [aux_sym_cmd_identifier_token36] = ACTIONS(1320), - [anon_sym_true] = ACTIONS(1322), - [anon_sym_false] = ACTIONS(1322), - [anon_sym_null] = ACTIONS(1322), - [aux_sym_cmd_identifier_token38] = ACTIONS(1324), - [aux_sym_cmd_identifier_token39] = ACTIONS(1326), - [aux_sym_cmd_identifier_token40] = ACTIONS(1326), - [anon_sym_def] = ACTIONS(273), - [anon_sym_export_DASHenv] = ACTIONS(273), - [anon_sym_extern] = ACTIONS(273), - [anon_sym_module] = ACTIONS(273), - [anon_sym_use] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(1330), - [anon_sym_DOLLAR] = ACTIONS(1332), - [anon_sym_error] = ACTIONS(273), - [anon_sym_list] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(243), - [anon_sym_break] = ACTIONS(273), - [anon_sym_continue] = ACTIONS(273), - [anon_sym_for] = ACTIONS(273), - [anon_sym_in] = ACTIONS(273), - [anon_sym_loop] = ACTIONS(273), - [anon_sym_make] = ACTIONS(273), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(273), - [anon_sym_if] = ACTIONS(273), - [anon_sym_else] = ACTIONS(273), - [anon_sym_match] = ACTIONS(273), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(273), - [anon_sym_return] = ACTIONS(273), - [anon_sym_source] = ACTIONS(273), - [anon_sym_source_DASHenv] = ACTIONS(273), - [anon_sym_register] = ACTIONS(273), - [anon_sym_hide] = ACTIONS(273), - [anon_sym_hide_DASHenv] = ACTIONS(273), - [anon_sym_overlay] = ACTIONS(273), - [anon_sym_new] = ACTIONS(273), - [anon_sym_as] = ACTIONS(273), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(1334), - [aux_sym__val_number_decimal_token2] = ACTIONS(1336), - [aux_sym__val_number_decimal_token3] = ACTIONS(1338), - [aux_sym__val_number_decimal_token4] = ACTIONS(1340), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(243), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym__match_pattern_record_repeat1] = STATE(208), + [anon_sym_export] = ACTIONS(1376), + [anon_sym_alias] = ACTIONS(1376), + [anon_sym_let] = ACTIONS(1376), + [anon_sym_let_DASHenv] = ACTIONS(1376), + [anon_sym_mut] = ACTIONS(1376), + [anon_sym_const] = ACTIONS(1376), + [aux_sym_cmd_identifier_token1] = ACTIONS(1327), + [aux_sym_cmd_identifier_token2] = ACTIONS(1327), + [aux_sym_cmd_identifier_token3] = ACTIONS(1327), + [aux_sym_cmd_identifier_token4] = ACTIONS(1327), + [aux_sym_cmd_identifier_token5] = ACTIONS(1327), + [aux_sym_cmd_identifier_token6] = ACTIONS(1327), + [aux_sym_cmd_identifier_token7] = ACTIONS(1327), + [aux_sym_cmd_identifier_token8] = ACTIONS(1327), + [aux_sym_cmd_identifier_token9] = ACTIONS(1327), + [aux_sym_cmd_identifier_token10] = ACTIONS(1327), + [aux_sym_cmd_identifier_token11] = ACTIONS(1327), + [aux_sym_cmd_identifier_token12] = ACTIONS(1327), + [aux_sym_cmd_identifier_token13] = ACTIONS(1327), + [aux_sym_cmd_identifier_token14] = ACTIONS(1327), + [aux_sym_cmd_identifier_token15] = ACTIONS(1327), + [aux_sym_cmd_identifier_token16] = ACTIONS(1327), + [aux_sym_cmd_identifier_token17] = ACTIONS(1327), + [aux_sym_cmd_identifier_token18] = ACTIONS(1327), + [aux_sym_cmd_identifier_token19] = ACTIONS(1327), + [aux_sym_cmd_identifier_token20] = ACTIONS(1327), + [aux_sym_cmd_identifier_token21] = ACTIONS(1327), + [aux_sym_cmd_identifier_token22] = ACTIONS(1327), + [aux_sym_cmd_identifier_token23] = ACTIONS(1327), + [aux_sym_cmd_identifier_token24] = ACTIONS(1327), + [aux_sym_cmd_identifier_token25] = ACTIONS(1327), + [aux_sym_cmd_identifier_token26] = ACTIONS(1327), + [aux_sym_cmd_identifier_token27] = ACTIONS(1327), + [aux_sym_cmd_identifier_token28] = ACTIONS(1327), + [aux_sym_cmd_identifier_token29] = ACTIONS(1327), + [aux_sym_cmd_identifier_token30] = ACTIONS(1327), + [aux_sym_cmd_identifier_token31] = ACTIONS(1327), + [aux_sym_cmd_identifier_token32] = ACTIONS(1327), + [aux_sym_cmd_identifier_token33] = ACTIONS(1327), + [aux_sym_cmd_identifier_token34] = ACTIONS(1327), + [aux_sym_cmd_identifier_token35] = ACTIONS(1327), + [aux_sym_cmd_identifier_token36] = ACTIONS(1327), + [anon_sym_true] = ACTIONS(1329), + [anon_sym_false] = ACTIONS(1329), + [anon_sym_null] = ACTIONS(1329), + [aux_sym_cmd_identifier_token38] = ACTIONS(1331), + [aux_sym_cmd_identifier_token39] = ACTIONS(1333), + [aux_sym_cmd_identifier_token40] = ACTIONS(1333), + [anon_sym_def] = ACTIONS(1376), + [anon_sym_export_DASHenv] = ACTIONS(1376), + [anon_sym_extern] = ACTIONS(1376), + [anon_sym_module] = ACTIONS(1376), + [anon_sym_use] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_DOLLAR] = ACTIONS(1378), + [anon_sym_error] = ACTIONS(1376), + [anon_sym_list] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(245), + [anon_sym_break] = ACTIONS(1376), + [anon_sym_continue] = ACTIONS(1376), + [anon_sym_for] = ACTIONS(1376), + [anon_sym_in] = ACTIONS(1376), + [anon_sym_loop] = ACTIONS(1376), + [anon_sym_make] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(1376), + [anon_sym_do] = ACTIONS(1376), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_else] = ACTIONS(1376), + [anon_sym_match] = ACTIONS(1376), + [anon_sym_RBRACE] = ACTIONS(1449), + [anon_sym_try] = ACTIONS(1376), + [anon_sym_catch] = ACTIONS(1376), + [anon_sym_return] = ACTIONS(1376), + [anon_sym_source] = ACTIONS(1376), + [anon_sym_source_DASHenv] = ACTIONS(1376), + [anon_sym_register] = ACTIONS(1376), + [anon_sym_hide] = ACTIONS(1376), + [anon_sym_hide_DASHenv] = ACTIONS(1376), + [anon_sym_overlay] = ACTIONS(1376), + [anon_sym_new] = ACTIONS(1376), + [anon_sym_as] = ACTIONS(1376), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1382), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1384), + [aux_sym__val_number_decimal_token1] = ACTIONS(1341), + [aux_sym__val_number_decimal_token2] = ACTIONS(1343), + [aux_sym__val_number_decimal_token3] = ACTIONS(1345), + [aux_sym__val_number_decimal_token4] = ACTIONS(1347), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [210] = { - [sym_cmd_identifier] = STATE(7516), - [sym_expr_parenthesized] = STATE(7410), - [sym__spread_parenthesized] = STATE(567), - [sym__spread_variable] = STATE(571), - [sym_val_variable] = STATE(7410), - [sym_val_number] = STATE(7410), - [sym__val_number_decimal] = STATE(6126), - [sym__val_number] = STATE(1647), - [sym_val_string] = STATE(7410), - [sym__str_double_quotes] = STATE(1418), - [sym__spread_record] = STATE(567), - [sym_record_entry] = STATE(6730), - [sym__record_key] = STATE(7516), + [sym_cmd_identifier] = STATE(7923), + [sym__match_pattern_record_variable] = STATE(688), + [sym_expr_parenthesized] = STATE(7609), + [sym__spread_parenthesized] = STATE(697), + [sym__spread_variable] = STATE(698), + [sym_val_variable] = STATE(544), + [sym_val_number] = STATE(7609), + [sym__val_number_decimal] = STATE(6414), + [sym__val_number] = STATE(1883), + [sym_val_string] = STATE(7609), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym__spread_record] = STATE(697), + [sym_record_entry] = STATE(688), + [sym__record_key] = STATE(7923), [sym_comment] = STATE(210), - [aux_sym_record_body_repeat1] = STATE(208), - [anon_sym_export] = ACTIONS(273), - [anon_sym_alias] = ACTIONS(273), - [anon_sym_let] = ACTIONS(273), - [anon_sym_let_DASHenv] = ACTIONS(273), - [anon_sym_mut] = ACTIONS(273), - [anon_sym_const] = ACTIONS(273), - [aux_sym_cmd_identifier_token1] = ACTIONS(1320), - [aux_sym_cmd_identifier_token2] = ACTIONS(1320), - [aux_sym_cmd_identifier_token3] = ACTIONS(1320), - [aux_sym_cmd_identifier_token4] = ACTIONS(1320), - [aux_sym_cmd_identifier_token5] = ACTIONS(1320), - [aux_sym_cmd_identifier_token6] = ACTIONS(1320), - [aux_sym_cmd_identifier_token7] = ACTIONS(1320), - [aux_sym_cmd_identifier_token8] = ACTIONS(1320), - [aux_sym_cmd_identifier_token9] = ACTIONS(1320), - [aux_sym_cmd_identifier_token10] = ACTIONS(1320), - [aux_sym_cmd_identifier_token11] = ACTIONS(1320), - [aux_sym_cmd_identifier_token12] = ACTIONS(1320), - [aux_sym_cmd_identifier_token13] = ACTIONS(1320), - [aux_sym_cmd_identifier_token14] = ACTIONS(1320), - [aux_sym_cmd_identifier_token15] = ACTIONS(1320), - [aux_sym_cmd_identifier_token16] = ACTIONS(1320), - [aux_sym_cmd_identifier_token17] = ACTIONS(1320), - [aux_sym_cmd_identifier_token18] = ACTIONS(1320), - [aux_sym_cmd_identifier_token19] = ACTIONS(1320), - [aux_sym_cmd_identifier_token20] = ACTIONS(1320), - [aux_sym_cmd_identifier_token21] = ACTIONS(1320), - [aux_sym_cmd_identifier_token22] = ACTIONS(1320), - [aux_sym_cmd_identifier_token23] = ACTIONS(1320), - [aux_sym_cmd_identifier_token24] = ACTIONS(1320), - [aux_sym_cmd_identifier_token25] = ACTIONS(1320), - [aux_sym_cmd_identifier_token26] = ACTIONS(1320), - [aux_sym_cmd_identifier_token27] = ACTIONS(1320), - [aux_sym_cmd_identifier_token28] = ACTIONS(1320), - [aux_sym_cmd_identifier_token29] = ACTIONS(1320), - [aux_sym_cmd_identifier_token30] = ACTIONS(1320), - [aux_sym_cmd_identifier_token31] = ACTIONS(1320), - [aux_sym_cmd_identifier_token32] = ACTIONS(1320), - [aux_sym_cmd_identifier_token33] = ACTIONS(1320), - [aux_sym_cmd_identifier_token34] = ACTIONS(1320), - [aux_sym_cmd_identifier_token35] = ACTIONS(1320), - [aux_sym_cmd_identifier_token36] = ACTIONS(1320), - [anon_sym_true] = ACTIONS(1322), - [anon_sym_false] = ACTIONS(1322), - [anon_sym_null] = ACTIONS(1322), - [aux_sym_cmd_identifier_token38] = ACTIONS(1324), - [aux_sym_cmd_identifier_token39] = ACTIONS(1326), - [aux_sym_cmd_identifier_token40] = ACTIONS(1326), - [anon_sym_def] = ACTIONS(273), - [anon_sym_export_DASHenv] = ACTIONS(273), - [anon_sym_extern] = ACTIONS(273), - [anon_sym_module] = ACTIONS(273), - [anon_sym_use] = ACTIONS(273), - [anon_sym_LPAREN] = ACTIONS(1330), - [anon_sym_DOLLAR] = ACTIONS(1332), - [anon_sym_error] = ACTIONS(273), - [anon_sym_list] = ACTIONS(273), - [anon_sym_DASH] = ACTIONS(243), - [anon_sym_break] = ACTIONS(273), - [anon_sym_continue] = ACTIONS(273), - [anon_sym_for] = ACTIONS(273), - [anon_sym_in] = ACTIONS(273), - [anon_sym_loop] = ACTIONS(273), - [anon_sym_make] = ACTIONS(273), - [anon_sym_while] = ACTIONS(273), - [anon_sym_do] = ACTIONS(273), - [anon_sym_if] = ACTIONS(273), - [anon_sym_else] = ACTIONS(273), - [anon_sym_match] = ACTIONS(273), - [anon_sym_try] = ACTIONS(273), - [anon_sym_catch] = ACTIONS(273), - [anon_sym_return] = ACTIONS(273), - [anon_sym_source] = ACTIONS(273), - [anon_sym_source_DASHenv] = ACTIONS(273), - [anon_sym_register] = ACTIONS(273), - [anon_sym_hide] = ACTIONS(273), - [anon_sym_hide_DASHenv] = ACTIONS(273), - [anon_sym_overlay] = ACTIONS(273), - [anon_sym_new] = ACTIONS(273), - [anon_sym_as] = ACTIONS(273), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(1334), - [aux_sym__val_number_decimal_token2] = ACTIONS(1336), - [aux_sym__val_number_decimal_token3] = ACTIONS(1338), - [aux_sym__val_number_decimal_token4] = ACTIONS(1340), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(311), - [anon_sym_PLUS] = ACTIONS(243), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym__match_pattern_record_repeat1] = STATE(208), + [anon_sym_export] = ACTIONS(1376), + [anon_sym_alias] = ACTIONS(1376), + [anon_sym_let] = ACTIONS(1376), + [anon_sym_let_DASHenv] = ACTIONS(1376), + [anon_sym_mut] = ACTIONS(1376), + [anon_sym_const] = ACTIONS(1376), + [aux_sym_cmd_identifier_token1] = ACTIONS(1327), + [aux_sym_cmd_identifier_token2] = ACTIONS(1327), + [aux_sym_cmd_identifier_token3] = ACTIONS(1327), + [aux_sym_cmd_identifier_token4] = ACTIONS(1327), + [aux_sym_cmd_identifier_token5] = ACTIONS(1327), + [aux_sym_cmd_identifier_token6] = ACTIONS(1327), + [aux_sym_cmd_identifier_token7] = ACTIONS(1327), + [aux_sym_cmd_identifier_token8] = ACTIONS(1327), + [aux_sym_cmd_identifier_token9] = ACTIONS(1327), + [aux_sym_cmd_identifier_token10] = ACTIONS(1327), + [aux_sym_cmd_identifier_token11] = ACTIONS(1327), + [aux_sym_cmd_identifier_token12] = ACTIONS(1327), + [aux_sym_cmd_identifier_token13] = ACTIONS(1327), + [aux_sym_cmd_identifier_token14] = ACTIONS(1327), + [aux_sym_cmd_identifier_token15] = ACTIONS(1327), + [aux_sym_cmd_identifier_token16] = ACTIONS(1327), + [aux_sym_cmd_identifier_token17] = ACTIONS(1327), + [aux_sym_cmd_identifier_token18] = ACTIONS(1327), + [aux_sym_cmd_identifier_token19] = ACTIONS(1327), + [aux_sym_cmd_identifier_token20] = ACTIONS(1327), + [aux_sym_cmd_identifier_token21] = ACTIONS(1327), + [aux_sym_cmd_identifier_token22] = ACTIONS(1327), + [aux_sym_cmd_identifier_token23] = ACTIONS(1327), + [aux_sym_cmd_identifier_token24] = ACTIONS(1327), + [aux_sym_cmd_identifier_token25] = ACTIONS(1327), + [aux_sym_cmd_identifier_token26] = ACTIONS(1327), + [aux_sym_cmd_identifier_token27] = ACTIONS(1327), + [aux_sym_cmd_identifier_token28] = ACTIONS(1327), + [aux_sym_cmd_identifier_token29] = ACTIONS(1327), + [aux_sym_cmd_identifier_token30] = ACTIONS(1327), + [aux_sym_cmd_identifier_token31] = ACTIONS(1327), + [aux_sym_cmd_identifier_token32] = ACTIONS(1327), + [aux_sym_cmd_identifier_token33] = ACTIONS(1327), + [aux_sym_cmd_identifier_token34] = ACTIONS(1327), + [aux_sym_cmd_identifier_token35] = ACTIONS(1327), + [aux_sym_cmd_identifier_token36] = ACTIONS(1327), + [anon_sym_true] = ACTIONS(1329), + [anon_sym_false] = ACTIONS(1329), + [anon_sym_null] = ACTIONS(1329), + [aux_sym_cmd_identifier_token38] = ACTIONS(1331), + [aux_sym_cmd_identifier_token39] = ACTIONS(1333), + [aux_sym_cmd_identifier_token40] = ACTIONS(1333), + [anon_sym_def] = ACTIONS(1376), + [anon_sym_export_DASHenv] = ACTIONS(1376), + [anon_sym_extern] = ACTIONS(1376), + [anon_sym_module] = ACTIONS(1376), + [anon_sym_use] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_DOLLAR] = ACTIONS(1378), + [anon_sym_error] = ACTIONS(1376), + [anon_sym_list] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(245), + [anon_sym_break] = ACTIONS(1376), + [anon_sym_continue] = ACTIONS(1376), + [anon_sym_for] = ACTIONS(1376), + [anon_sym_in] = ACTIONS(1376), + [anon_sym_loop] = ACTIONS(1376), + [anon_sym_make] = ACTIONS(1376), + [anon_sym_while] = ACTIONS(1376), + [anon_sym_do] = ACTIONS(1376), + [anon_sym_if] = ACTIONS(1376), + [anon_sym_else] = ACTIONS(1376), + [anon_sym_match] = ACTIONS(1376), + [anon_sym_RBRACE] = ACTIONS(1451), + [anon_sym_try] = ACTIONS(1376), + [anon_sym_catch] = ACTIONS(1376), + [anon_sym_return] = ACTIONS(1376), + [anon_sym_source] = ACTIONS(1376), + [anon_sym_source_DASHenv] = ACTIONS(1376), + [anon_sym_register] = ACTIONS(1376), + [anon_sym_hide] = ACTIONS(1376), + [anon_sym_hide_DASHenv] = ACTIONS(1376), + [anon_sym_overlay] = ACTIONS(1376), + [anon_sym_new] = ACTIONS(1376), + [anon_sym_as] = ACTIONS(1376), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1382), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1384), + [aux_sym__val_number_decimal_token1] = ACTIONS(1341), + [aux_sym__val_number_decimal_token2] = ACTIONS(1343), + [aux_sym__val_number_decimal_token3] = ACTIONS(1345), + [aux_sym__val_number_decimal_token4] = ACTIONS(1347), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [211] = { - [sym__expr_parenthesized_immediate] = STATE(386), - [sym__immediate_decimal] = STATE(296), - [sym_val_variable] = STATE(386), + [sym_cmd_identifier] = STATE(7872), + [sym_expr_parenthesized] = STATE(7806), + [sym__spread_parenthesized] = STATE(7465), + [sym__spread_variable] = STATE(7436), + [sym_val_variable] = STATE(7806), + [sym_val_number] = STATE(7806), + [sym__val_number_decimal] = STATE(6414), + [sym__val_number] = STATE(1883), + [sym_val_string] = STATE(7806), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym__spread_record] = STATE(7465), + [sym_record_entry] = STATE(7024), + [sym__record_key] = STATE(7872), [sym_comment] = STATE(211), - [anon_sym_export] = ACTIONS(1478), - [anon_sym_alias] = ACTIONS(1478), - [anon_sym_let] = ACTIONS(1478), - [anon_sym_let_DASHenv] = ACTIONS(1478), - [anon_sym_mut] = ACTIONS(1478), - [anon_sym_const] = ACTIONS(1478), - [aux_sym_cmd_identifier_token1] = ACTIONS(1478), - [aux_sym_cmd_identifier_token2] = ACTIONS(1478), - [aux_sym_cmd_identifier_token3] = ACTIONS(1478), - [aux_sym_cmd_identifier_token4] = ACTIONS(1478), - [aux_sym_cmd_identifier_token5] = ACTIONS(1478), - [aux_sym_cmd_identifier_token6] = ACTIONS(1478), - [aux_sym_cmd_identifier_token7] = ACTIONS(1478), - [aux_sym_cmd_identifier_token8] = ACTIONS(1478), - [aux_sym_cmd_identifier_token9] = ACTIONS(1478), - [aux_sym_cmd_identifier_token10] = ACTIONS(1478), - [aux_sym_cmd_identifier_token11] = ACTIONS(1478), - [aux_sym_cmd_identifier_token12] = ACTIONS(1478), - [aux_sym_cmd_identifier_token13] = ACTIONS(1478), - [aux_sym_cmd_identifier_token14] = ACTIONS(1478), - [aux_sym_cmd_identifier_token15] = ACTIONS(1478), - [aux_sym_cmd_identifier_token16] = ACTIONS(1478), - [aux_sym_cmd_identifier_token17] = ACTIONS(1478), - [aux_sym_cmd_identifier_token18] = ACTIONS(1478), - [aux_sym_cmd_identifier_token19] = ACTIONS(1478), - [aux_sym_cmd_identifier_token20] = ACTIONS(1478), - [aux_sym_cmd_identifier_token21] = ACTIONS(1478), - [aux_sym_cmd_identifier_token22] = ACTIONS(1478), - [aux_sym_cmd_identifier_token23] = ACTIONS(1478), - [aux_sym_cmd_identifier_token24] = ACTIONS(1478), - [aux_sym_cmd_identifier_token25] = ACTIONS(1478), - [aux_sym_cmd_identifier_token26] = ACTIONS(1478), - [aux_sym_cmd_identifier_token27] = ACTIONS(1478), - [aux_sym_cmd_identifier_token28] = ACTIONS(1478), - [aux_sym_cmd_identifier_token29] = ACTIONS(1478), - [aux_sym_cmd_identifier_token30] = ACTIONS(1478), - [aux_sym_cmd_identifier_token31] = ACTIONS(1478), - [aux_sym_cmd_identifier_token32] = ACTIONS(1478), - [aux_sym_cmd_identifier_token33] = ACTIONS(1478), - [aux_sym_cmd_identifier_token34] = ACTIONS(1478), - [aux_sym_cmd_identifier_token35] = ACTIONS(1478), - [aux_sym_cmd_identifier_token36] = ACTIONS(1478), - [anon_sym_true] = ACTIONS(1478), - [anon_sym_false] = ACTIONS(1478), - [anon_sym_null] = ACTIONS(1478), - [aux_sym_cmd_identifier_token38] = ACTIONS(1478), - [aux_sym_cmd_identifier_token39] = ACTIONS(1478), - [aux_sym_cmd_identifier_token40] = ACTIONS(1478), - [anon_sym_def] = ACTIONS(1478), - [anon_sym_export_DASHenv] = ACTIONS(1478), - [anon_sym_extern] = ACTIONS(1478), - [anon_sym_module] = ACTIONS(1478), - [anon_sym_use] = ACTIONS(1478), - [anon_sym_LPAREN] = ACTIONS(1478), - [anon_sym_DOLLAR] = ACTIONS(1480), - [anon_sym_error] = ACTIONS(1478), - [anon_sym_list] = ACTIONS(1478), - [anon_sym_DASH] = ACTIONS(1478), - [anon_sym_break] = ACTIONS(1478), - [anon_sym_continue] = ACTIONS(1478), - [anon_sym_for] = ACTIONS(1478), - [anon_sym_in] = ACTIONS(1478), - [anon_sym_loop] = ACTIONS(1478), - [anon_sym_make] = ACTIONS(1478), - [anon_sym_while] = ACTIONS(1478), - [anon_sym_do] = ACTIONS(1478), - [anon_sym_if] = ACTIONS(1478), - [anon_sym_else] = ACTIONS(1478), - [anon_sym_match] = ACTIONS(1478), - [anon_sym_RBRACE] = ACTIONS(1478), - [anon_sym_try] = ACTIONS(1478), - [anon_sym_catch] = ACTIONS(1478), - [anon_sym_return] = ACTIONS(1478), - [anon_sym_source] = ACTIONS(1478), - [anon_sym_source_DASHenv] = ACTIONS(1478), - [anon_sym_register] = ACTIONS(1478), - [anon_sym_hide] = ACTIONS(1478), - [anon_sym_hide_DASHenv] = ACTIONS(1478), - [anon_sym_overlay] = ACTIONS(1478), - [anon_sym_new] = ACTIONS(1478), - [anon_sym_as] = ACTIONS(1478), - [anon_sym_LPAREN2] = ACTIONS(1482), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1478), - [anon_sym_DOT] = ACTIONS(1484), - [aux_sym__immediate_decimal_token1] = ACTIONS(1486), - [aux_sym__immediate_decimal_token3] = ACTIONS(1486), - [aux_sym__immediate_decimal_token4] = ACTIONS(1488), - [aux_sym__immediate_decimal_token5] = ACTIONS(1490), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1478), - [aux_sym__val_number_decimal_token1] = ACTIONS(1478), - [aux_sym__val_number_decimal_token2] = ACTIONS(1478), - [aux_sym__val_number_decimal_token3] = ACTIONS(1478), - [aux_sym__val_number_decimal_token4] = ACTIONS(1478), - [aux_sym__val_number_token1] = ACTIONS(1478), - [aux_sym__val_number_token2] = ACTIONS(1478), - [aux_sym__val_number_token3] = ACTIONS(1478), - [anon_sym_DQUOTE] = ACTIONS(1478), - [sym__str_single_quotes] = ACTIONS(1478), - [sym__str_back_ticks] = ACTIONS(1478), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1478), - [sym__entry_separator] = ACTIONS(1492), - [anon_sym_PLUS] = ACTIONS(1478), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1494), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_record_body_repeat1] = STATE(213), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(277), + [anon_sym_let] = ACTIONS(277), + [anon_sym_let_DASHenv] = ACTIONS(277), + [anon_sym_mut] = ACTIONS(277), + [anon_sym_const] = ACTIONS(277), + [aux_sym_cmd_identifier_token1] = ACTIONS(1327), + [aux_sym_cmd_identifier_token2] = ACTIONS(1327), + [aux_sym_cmd_identifier_token3] = ACTIONS(1327), + [aux_sym_cmd_identifier_token4] = ACTIONS(1327), + [aux_sym_cmd_identifier_token5] = ACTIONS(1327), + [aux_sym_cmd_identifier_token6] = ACTIONS(1327), + [aux_sym_cmd_identifier_token7] = ACTIONS(1327), + [aux_sym_cmd_identifier_token8] = ACTIONS(1327), + [aux_sym_cmd_identifier_token9] = ACTIONS(1327), + [aux_sym_cmd_identifier_token10] = ACTIONS(1327), + [aux_sym_cmd_identifier_token11] = ACTIONS(1327), + [aux_sym_cmd_identifier_token12] = ACTIONS(1327), + [aux_sym_cmd_identifier_token13] = ACTIONS(1327), + [aux_sym_cmd_identifier_token14] = ACTIONS(1327), + [aux_sym_cmd_identifier_token15] = ACTIONS(1327), + [aux_sym_cmd_identifier_token16] = ACTIONS(1327), + [aux_sym_cmd_identifier_token17] = ACTIONS(1327), + [aux_sym_cmd_identifier_token18] = ACTIONS(1327), + [aux_sym_cmd_identifier_token19] = ACTIONS(1327), + [aux_sym_cmd_identifier_token20] = ACTIONS(1327), + [aux_sym_cmd_identifier_token21] = ACTIONS(1327), + [aux_sym_cmd_identifier_token22] = ACTIONS(1327), + [aux_sym_cmd_identifier_token23] = ACTIONS(1327), + [aux_sym_cmd_identifier_token24] = ACTIONS(1327), + [aux_sym_cmd_identifier_token25] = ACTIONS(1327), + [aux_sym_cmd_identifier_token26] = ACTIONS(1327), + [aux_sym_cmd_identifier_token27] = ACTIONS(1327), + [aux_sym_cmd_identifier_token28] = ACTIONS(1327), + [aux_sym_cmd_identifier_token29] = ACTIONS(1327), + [aux_sym_cmd_identifier_token30] = ACTIONS(1327), + [aux_sym_cmd_identifier_token31] = ACTIONS(1327), + [aux_sym_cmd_identifier_token32] = ACTIONS(1327), + [aux_sym_cmd_identifier_token33] = ACTIONS(1327), + [aux_sym_cmd_identifier_token34] = ACTIONS(1327), + [aux_sym_cmd_identifier_token35] = ACTIONS(1327), + [aux_sym_cmd_identifier_token36] = ACTIONS(1327), + [anon_sym_true] = ACTIONS(1329), + [anon_sym_false] = ACTIONS(1329), + [anon_sym_null] = ACTIONS(1329), + [aux_sym_cmd_identifier_token38] = ACTIONS(1331), + [aux_sym_cmd_identifier_token39] = ACTIONS(1333), + [aux_sym_cmd_identifier_token40] = ACTIONS(1333), + [anon_sym_def] = ACTIONS(277), + [anon_sym_export_DASHenv] = ACTIONS(277), + [anon_sym_extern] = ACTIONS(277), + [anon_sym_module] = ACTIONS(277), + [anon_sym_use] = ACTIONS(277), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_DOLLAR] = ACTIONS(1339), + [anon_sym_error] = ACTIONS(277), + [anon_sym_list] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(245), + [anon_sym_break] = ACTIONS(277), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(277), + [anon_sym_in] = ACTIONS(277), + [anon_sym_loop] = ACTIONS(277), + [anon_sym_make] = ACTIONS(277), + [anon_sym_while] = ACTIONS(277), + [anon_sym_do] = ACTIONS(277), + [anon_sym_if] = ACTIONS(277), + [anon_sym_else] = ACTIONS(277), + [anon_sym_match] = ACTIONS(277), + [anon_sym_try] = ACTIONS(277), + [anon_sym_catch] = ACTIONS(277), + [anon_sym_return] = ACTIONS(277), + [anon_sym_source] = ACTIONS(277), + [anon_sym_source_DASHenv] = ACTIONS(277), + [anon_sym_register] = ACTIONS(277), + [anon_sym_hide] = ACTIONS(277), + [anon_sym_hide_DASHenv] = ACTIONS(277), + [anon_sym_overlay] = ACTIONS(277), + [anon_sym_new] = ACTIONS(277), + [anon_sym_as] = ACTIONS(277), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(1341), + [aux_sym__val_number_decimal_token2] = ACTIONS(1343), + [aux_sym__val_number_decimal_token3] = ACTIONS(1345), + [aux_sym__val_number_decimal_token4] = ACTIONS(1347), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [212] = { - [sym__expr_parenthesized_immediate] = STATE(384), - [sym__immediate_decimal] = STATE(385), - [sym_val_variable] = STATE(384), + [sym_cmd_identifier] = STATE(7872), + [sym_expr_parenthesized] = STATE(7806), + [sym__spread_parenthesized] = STATE(7465), + [sym__spread_variable] = STATE(7436), + [sym_val_variable] = STATE(7806), + [sym_val_number] = STATE(7806), + [sym__val_number_decimal] = STATE(6414), + [sym__val_number] = STATE(1883), + [sym_val_string] = STATE(7806), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym__spread_record] = STATE(7465), + [sym_record_entry] = STATE(6864), + [sym__record_key] = STATE(7872), [sym_comment] = STATE(212), - [anon_sym_export] = ACTIONS(1496), - [anon_sym_alias] = ACTIONS(1496), - [anon_sym_let] = ACTIONS(1496), - [anon_sym_let_DASHenv] = ACTIONS(1496), - [anon_sym_mut] = ACTIONS(1496), - [anon_sym_const] = ACTIONS(1496), - [aux_sym_cmd_identifier_token1] = ACTIONS(1496), - [aux_sym_cmd_identifier_token2] = ACTIONS(1496), - [aux_sym_cmd_identifier_token3] = ACTIONS(1496), - [aux_sym_cmd_identifier_token4] = ACTIONS(1496), - [aux_sym_cmd_identifier_token5] = ACTIONS(1496), - [aux_sym_cmd_identifier_token6] = ACTIONS(1496), - [aux_sym_cmd_identifier_token7] = ACTIONS(1496), - [aux_sym_cmd_identifier_token8] = ACTIONS(1496), - [aux_sym_cmd_identifier_token9] = ACTIONS(1496), - [aux_sym_cmd_identifier_token10] = ACTIONS(1496), - [aux_sym_cmd_identifier_token11] = ACTIONS(1496), - [aux_sym_cmd_identifier_token12] = ACTIONS(1496), - [aux_sym_cmd_identifier_token13] = ACTIONS(1496), - [aux_sym_cmd_identifier_token14] = ACTIONS(1496), - [aux_sym_cmd_identifier_token15] = ACTIONS(1496), - [aux_sym_cmd_identifier_token16] = ACTIONS(1496), - [aux_sym_cmd_identifier_token17] = ACTIONS(1496), - [aux_sym_cmd_identifier_token18] = ACTIONS(1496), - [aux_sym_cmd_identifier_token19] = ACTIONS(1496), - [aux_sym_cmd_identifier_token20] = ACTIONS(1496), - [aux_sym_cmd_identifier_token21] = ACTIONS(1496), - [aux_sym_cmd_identifier_token22] = ACTIONS(1496), - [aux_sym_cmd_identifier_token23] = ACTIONS(1496), - [aux_sym_cmd_identifier_token24] = ACTIONS(1496), - [aux_sym_cmd_identifier_token25] = ACTIONS(1496), - [aux_sym_cmd_identifier_token26] = ACTIONS(1496), - [aux_sym_cmd_identifier_token27] = ACTIONS(1496), - [aux_sym_cmd_identifier_token28] = ACTIONS(1496), - [aux_sym_cmd_identifier_token29] = ACTIONS(1496), - [aux_sym_cmd_identifier_token30] = ACTIONS(1496), - [aux_sym_cmd_identifier_token31] = ACTIONS(1496), - [aux_sym_cmd_identifier_token32] = ACTIONS(1496), - [aux_sym_cmd_identifier_token33] = ACTIONS(1496), - [aux_sym_cmd_identifier_token34] = ACTIONS(1496), - [aux_sym_cmd_identifier_token35] = ACTIONS(1496), - [aux_sym_cmd_identifier_token36] = ACTIONS(1496), - [anon_sym_true] = ACTIONS(1496), - [anon_sym_false] = ACTIONS(1496), - [anon_sym_null] = ACTIONS(1496), - [aux_sym_cmd_identifier_token38] = ACTIONS(1496), - [aux_sym_cmd_identifier_token39] = ACTIONS(1496), - [aux_sym_cmd_identifier_token40] = ACTIONS(1496), - [anon_sym_def] = ACTIONS(1496), - [anon_sym_export_DASHenv] = ACTIONS(1496), - [anon_sym_extern] = ACTIONS(1496), - [anon_sym_module] = ACTIONS(1496), - [anon_sym_use] = ACTIONS(1496), - [anon_sym_LPAREN] = ACTIONS(1496), - [anon_sym_DOLLAR] = ACTIONS(1480), - [anon_sym_error] = ACTIONS(1496), - [anon_sym_list] = ACTIONS(1496), - [anon_sym_DASH] = ACTIONS(1496), - [anon_sym_break] = ACTIONS(1496), - [anon_sym_continue] = ACTIONS(1496), - [anon_sym_for] = ACTIONS(1496), - [anon_sym_in] = ACTIONS(1496), - [anon_sym_loop] = ACTIONS(1496), - [anon_sym_make] = ACTIONS(1496), - [anon_sym_while] = ACTIONS(1496), - [anon_sym_do] = ACTIONS(1496), - [anon_sym_if] = ACTIONS(1496), - [anon_sym_else] = ACTIONS(1496), - [anon_sym_match] = ACTIONS(1496), - [anon_sym_RBRACE] = ACTIONS(1496), - [anon_sym_try] = ACTIONS(1496), - [anon_sym_catch] = ACTIONS(1496), - [anon_sym_return] = ACTIONS(1496), - [anon_sym_source] = ACTIONS(1496), - [anon_sym_source_DASHenv] = ACTIONS(1496), - [anon_sym_register] = ACTIONS(1496), - [anon_sym_hide] = ACTIONS(1496), - [anon_sym_hide_DASHenv] = ACTIONS(1496), - [anon_sym_overlay] = ACTIONS(1496), - [anon_sym_new] = ACTIONS(1496), - [anon_sym_as] = ACTIONS(1496), - [anon_sym_LPAREN2] = ACTIONS(1482), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1496), - [anon_sym_DOT] = ACTIONS(1498), - [aux_sym__immediate_decimal_token1] = ACTIONS(1500), - [aux_sym__immediate_decimal_token3] = ACTIONS(1500), - [aux_sym__immediate_decimal_token4] = ACTIONS(1502), - [aux_sym__immediate_decimal_token5] = ACTIONS(1504), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1496), - [aux_sym__val_number_decimal_token1] = ACTIONS(1496), - [aux_sym__val_number_decimal_token2] = ACTIONS(1496), - [aux_sym__val_number_decimal_token3] = ACTIONS(1496), - [aux_sym__val_number_decimal_token4] = ACTIONS(1496), - [aux_sym__val_number_token1] = ACTIONS(1496), - [aux_sym__val_number_token2] = ACTIONS(1496), - [aux_sym__val_number_token3] = ACTIONS(1496), - [anon_sym_DQUOTE] = ACTIONS(1496), - [sym__str_single_quotes] = ACTIONS(1496), - [sym__str_back_ticks] = ACTIONS(1496), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1496), - [sym__entry_separator] = ACTIONS(1506), - [anon_sym_PLUS] = ACTIONS(1496), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_record_body_repeat1] = STATE(213), + [anon_sym_export] = ACTIONS(277), + [anon_sym_alias] = ACTIONS(277), + [anon_sym_let] = ACTIONS(277), + [anon_sym_let_DASHenv] = ACTIONS(277), + [anon_sym_mut] = ACTIONS(277), + [anon_sym_const] = ACTIONS(277), + [aux_sym_cmd_identifier_token1] = ACTIONS(1327), + [aux_sym_cmd_identifier_token2] = ACTIONS(1327), + [aux_sym_cmd_identifier_token3] = ACTIONS(1327), + [aux_sym_cmd_identifier_token4] = ACTIONS(1327), + [aux_sym_cmd_identifier_token5] = ACTIONS(1327), + [aux_sym_cmd_identifier_token6] = ACTIONS(1327), + [aux_sym_cmd_identifier_token7] = ACTIONS(1327), + [aux_sym_cmd_identifier_token8] = ACTIONS(1327), + [aux_sym_cmd_identifier_token9] = ACTIONS(1327), + [aux_sym_cmd_identifier_token10] = ACTIONS(1327), + [aux_sym_cmd_identifier_token11] = ACTIONS(1327), + [aux_sym_cmd_identifier_token12] = ACTIONS(1327), + [aux_sym_cmd_identifier_token13] = ACTIONS(1327), + [aux_sym_cmd_identifier_token14] = ACTIONS(1327), + [aux_sym_cmd_identifier_token15] = ACTIONS(1327), + [aux_sym_cmd_identifier_token16] = ACTIONS(1327), + [aux_sym_cmd_identifier_token17] = ACTIONS(1327), + [aux_sym_cmd_identifier_token18] = ACTIONS(1327), + [aux_sym_cmd_identifier_token19] = ACTIONS(1327), + [aux_sym_cmd_identifier_token20] = ACTIONS(1327), + [aux_sym_cmd_identifier_token21] = ACTIONS(1327), + [aux_sym_cmd_identifier_token22] = ACTIONS(1327), + [aux_sym_cmd_identifier_token23] = ACTIONS(1327), + [aux_sym_cmd_identifier_token24] = ACTIONS(1327), + [aux_sym_cmd_identifier_token25] = ACTIONS(1327), + [aux_sym_cmd_identifier_token26] = ACTIONS(1327), + [aux_sym_cmd_identifier_token27] = ACTIONS(1327), + [aux_sym_cmd_identifier_token28] = ACTIONS(1327), + [aux_sym_cmd_identifier_token29] = ACTIONS(1327), + [aux_sym_cmd_identifier_token30] = ACTIONS(1327), + [aux_sym_cmd_identifier_token31] = ACTIONS(1327), + [aux_sym_cmd_identifier_token32] = ACTIONS(1327), + [aux_sym_cmd_identifier_token33] = ACTIONS(1327), + [aux_sym_cmd_identifier_token34] = ACTIONS(1327), + [aux_sym_cmd_identifier_token35] = ACTIONS(1327), + [aux_sym_cmd_identifier_token36] = ACTIONS(1327), + [anon_sym_true] = ACTIONS(1329), + [anon_sym_false] = ACTIONS(1329), + [anon_sym_null] = ACTIONS(1329), + [aux_sym_cmd_identifier_token38] = ACTIONS(1331), + [aux_sym_cmd_identifier_token39] = ACTIONS(1333), + [aux_sym_cmd_identifier_token40] = ACTIONS(1333), + [anon_sym_def] = ACTIONS(277), + [anon_sym_export_DASHenv] = ACTIONS(277), + [anon_sym_extern] = ACTIONS(277), + [anon_sym_module] = ACTIONS(277), + [anon_sym_use] = ACTIONS(277), + [anon_sym_LPAREN] = ACTIONS(1337), + [anon_sym_DOLLAR] = ACTIONS(1339), + [anon_sym_error] = ACTIONS(277), + [anon_sym_list] = ACTIONS(277), + [anon_sym_DASH] = ACTIONS(245), + [anon_sym_break] = ACTIONS(277), + [anon_sym_continue] = ACTIONS(277), + [anon_sym_for] = ACTIONS(277), + [anon_sym_in] = ACTIONS(277), + [anon_sym_loop] = ACTIONS(277), + [anon_sym_make] = ACTIONS(277), + [anon_sym_while] = ACTIONS(277), + [anon_sym_do] = ACTIONS(277), + [anon_sym_if] = ACTIONS(277), + [anon_sym_else] = ACTIONS(277), + [anon_sym_match] = ACTIONS(277), + [anon_sym_try] = ACTIONS(277), + [anon_sym_catch] = ACTIONS(277), + [anon_sym_return] = ACTIONS(277), + [anon_sym_source] = ACTIONS(277), + [anon_sym_source_DASHenv] = ACTIONS(277), + [anon_sym_register] = ACTIONS(277), + [anon_sym_hide] = ACTIONS(277), + [anon_sym_hide_DASHenv] = ACTIONS(277), + [anon_sym_overlay] = ACTIONS(277), + [anon_sym_new] = ACTIONS(277), + [anon_sym_as] = ACTIONS(277), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(1341), + [aux_sym__val_number_decimal_token2] = ACTIONS(1343), + [aux_sym__val_number_decimal_token3] = ACTIONS(1345), + [aux_sym__val_number_decimal_token4] = ACTIONS(1347), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(245), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [213] = { - [sym__expr_parenthesized_immediate] = STATE(599), - [sym__immediate_decimal] = STATE(489), - [sym_val_variable] = STATE(599), + [sym_cmd_identifier] = STATE(7872), + [sym_expr_parenthesized] = STATE(7806), + [sym__spread_parenthesized] = STATE(7465), + [sym__spread_variable] = STATE(7436), + [sym_val_variable] = STATE(7806), + [sym_val_number] = STATE(7806), + [sym__val_number_decimal] = STATE(6414), + [sym__val_number] = STATE(1883), + [sym_val_string] = STATE(7806), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym__spread_record] = STATE(7465), + [sym_record_entry] = STATE(7571), + [sym__record_key] = STATE(7872), [sym_comment] = STATE(213), - [anon_sym_export] = ACTIONS(1478), - [anon_sym_alias] = ACTIONS(1478), - [anon_sym_let] = ACTIONS(1478), - [anon_sym_let_DASHenv] = ACTIONS(1478), - [anon_sym_mut] = ACTIONS(1478), - [anon_sym_const] = ACTIONS(1478), - [aux_sym_cmd_identifier_token1] = ACTIONS(1478), - [aux_sym_cmd_identifier_token2] = ACTIONS(1478), - [aux_sym_cmd_identifier_token3] = ACTIONS(1478), - [aux_sym_cmd_identifier_token4] = ACTIONS(1478), - [aux_sym_cmd_identifier_token5] = ACTIONS(1478), - [aux_sym_cmd_identifier_token6] = ACTIONS(1478), - [aux_sym_cmd_identifier_token7] = ACTIONS(1478), - [aux_sym_cmd_identifier_token8] = ACTIONS(1478), - [aux_sym_cmd_identifier_token9] = ACTIONS(1478), - [aux_sym_cmd_identifier_token10] = ACTIONS(1478), - [aux_sym_cmd_identifier_token11] = ACTIONS(1478), - [aux_sym_cmd_identifier_token12] = ACTIONS(1478), - [aux_sym_cmd_identifier_token13] = ACTIONS(1478), - [aux_sym_cmd_identifier_token14] = ACTIONS(1478), - [aux_sym_cmd_identifier_token15] = ACTIONS(1478), - [aux_sym_cmd_identifier_token16] = ACTIONS(1478), - [aux_sym_cmd_identifier_token17] = ACTIONS(1478), - [aux_sym_cmd_identifier_token18] = ACTIONS(1478), - [aux_sym_cmd_identifier_token19] = ACTIONS(1478), - [aux_sym_cmd_identifier_token20] = ACTIONS(1478), - [aux_sym_cmd_identifier_token21] = ACTIONS(1478), - [aux_sym_cmd_identifier_token22] = ACTIONS(1478), - [aux_sym_cmd_identifier_token23] = ACTIONS(1478), - [aux_sym_cmd_identifier_token24] = ACTIONS(1478), - [aux_sym_cmd_identifier_token25] = ACTIONS(1478), - [aux_sym_cmd_identifier_token26] = ACTIONS(1478), - [aux_sym_cmd_identifier_token27] = ACTIONS(1478), - [aux_sym_cmd_identifier_token28] = ACTIONS(1478), - [aux_sym_cmd_identifier_token29] = ACTIONS(1478), - [aux_sym_cmd_identifier_token30] = ACTIONS(1478), - [aux_sym_cmd_identifier_token31] = ACTIONS(1478), - [aux_sym_cmd_identifier_token32] = ACTIONS(1478), - [aux_sym_cmd_identifier_token33] = ACTIONS(1478), - [aux_sym_cmd_identifier_token34] = ACTIONS(1478), - [aux_sym_cmd_identifier_token35] = ACTIONS(1478), - [aux_sym_cmd_identifier_token36] = ACTIONS(1478), - [anon_sym_true] = ACTIONS(1478), - [anon_sym_false] = ACTIONS(1478), - [anon_sym_null] = ACTIONS(1478), - [aux_sym_cmd_identifier_token38] = ACTIONS(1478), - [aux_sym_cmd_identifier_token39] = ACTIONS(1478), - [aux_sym_cmd_identifier_token40] = ACTIONS(1478), - [anon_sym_def] = ACTIONS(1478), - [anon_sym_export_DASHenv] = ACTIONS(1478), - [anon_sym_extern] = ACTIONS(1478), - [anon_sym_module] = ACTIONS(1478), - [anon_sym_use] = ACTIONS(1478), - [anon_sym_LPAREN] = ACTIONS(1478), - [anon_sym_DOLLAR] = ACTIONS(1508), - [anon_sym_error] = ACTIONS(1478), - [anon_sym_list] = ACTIONS(1478), - [anon_sym_DASH] = ACTIONS(1478), - [anon_sym_break] = ACTIONS(1478), - [anon_sym_continue] = ACTIONS(1478), - [anon_sym_for] = ACTIONS(1478), - [anon_sym_in] = ACTIONS(1478), - [anon_sym_loop] = ACTIONS(1478), - [anon_sym_make] = ACTIONS(1478), - [anon_sym_while] = ACTIONS(1478), - [anon_sym_do] = ACTIONS(1478), - [anon_sym_if] = ACTIONS(1478), - [anon_sym_else] = ACTIONS(1478), - [anon_sym_match] = ACTIONS(1478), - [anon_sym_RBRACE] = ACTIONS(1478), - [anon_sym_try] = ACTIONS(1478), - [anon_sym_catch] = ACTIONS(1478), - [anon_sym_return] = ACTIONS(1478), - [anon_sym_source] = ACTIONS(1478), - [anon_sym_source_DASHenv] = ACTIONS(1478), - [anon_sym_register] = ACTIONS(1478), - [anon_sym_hide] = ACTIONS(1478), - [anon_sym_hide_DASHenv] = ACTIONS(1478), - [anon_sym_overlay] = ACTIONS(1478), - [anon_sym_new] = ACTIONS(1478), - [anon_sym_as] = ACTIONS(1478), - [anon_sym_LPAREN2] = ACTIONS(1510), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1478), - [aux_sym__immediate_decimal_token1] = ACTIONS(1512), - [aux_sym__immediate_decimal_token3] = ACTIONS(1512), - [aux_sym__immediate_decimal_token4] = ACTIONS(1514), - [aux_sym__immediate_decimal_token5] = ACTIONS(1516), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1478), - [aux_sym__val_number_decimal_token1] = ACTIONS(1478), - [aux_sym__val_number_decimal_token2] = ACTIONS(1478), - [aux_sym__val_number_decimal_token3] = ACTIONS(1478), - [aux_sym__val_number_decimal_token4] = ACTIONS(1478), - [aux_sym__val_number_token1] = ACTIONS(1478), - [aux_sym__val_number_token2] = ACTIONS(1478), - [aux_sym__val_number_token3] = ACTIONS(1478), - [anon_sym_DQUOTE] = ACTIONS(1478), - [sym__str_single_quotes] = ACTIONS(1478), - [sym__str_back_ticks] = ACTIONS(1478), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1478), - [sym__entry_separator] = ACTIONS(1492), - [anon_sym_PLUS] = ACTIONS(1478), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1494), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_record_body_repeat1] = STATE(213), + [anon_sym_export] = ACTIONS(1453), + [anon_sym_alias] = ACTIONS(1453), + [anon_sym_let] = ACTIONS(1453), + [anon_sym_let_DASHenv] = ACTIONS(1453), + [anon_sym_mut] = ACTIONS(1453), + [anon_sym_const] = ACTIONS(1453), + [aux_sym_cmd_identifier_token1] = ACTIONS(1456), + [aux_sym_cmd_identifier_token2] = ACTIONS(1456), + [aux_sym_cmd_identifier_token3] = ACTIONS(1456), + [aux_sym_cmd_identifier_token4] = ACTIONS(1456), + [aux_sym_cmd_identifier_token5] = ACTIONS(1456), + [aux_sym_cmd_identifier_token6] = ACTIONS(1456), + [aux_sym_cmd_identifier_token7] = ACTIONS(1456), + [aux_sym_cmd_identifier_token8] = ACTIONS(1456), + [aux_sym_cmd_identifier_token9] = ACTIONS(1456), + [aux_sym_cmd_identifier_token10] = ACTIONS(1456), + [aux_sym_cmd_identifier_token11] = ACTIONS(1456), + [aux_sym_cmd_identifier_token12] = ACTIONS(1456), + [aux_sym_cmd_identifier_token13] = ACTIONS(1456), + [aux_sym_cmd_identifier_token14] = ACTIONS(1456), + [aux_sym_cmd_identifier_token15] = ACTIONS(1456), + [aux_sym_cmd_identifier_token16] = ACTIONS(1456), + [aux_sym_cmd_identifier_token17] = ACTIONS(1456), + [aux_sym_cmd_identifier_token18] = ACTIONS(1456), + [aux_sym_cmd_identifier_token19] = ACTIONS(1456), + [aux_sym_cmd_identifier_token20] = ACTIONS(1456), + [aux_sym_cmd_identifier_token21] = ACTIONS(1456), + [aux_sym_cmd_identifier_token22] = ACTIONS(1456), + [aux_sym_cmd_identifier_token23] = ACTIONS(1456), + [aux_sym_cmd_identifier_token24] = ACTIONS(1456), + [aux_sym_cmd_identifier_token25] = ACTIONS(1456), + [aux_sym_cmd_identifier_token26] = ACTIONS(1456), + [aux_sym_cmd_identifier_token27] = ACTIONS(1456), + [aux_sym_cmd_identifier_token28] = ACTIONS(1456), + [aux_sym_cmd_identifier_token29] = ACTIONS(1456), + [aux_sym_cmd_identifier_token30] = ACTIONS(1456), + [aux_sym_cmd_identifier_token31] = ACTIONS(1456), + [aux_sym_cmd_identifier_token32] = ACTIONS(1456), + [aux_sym_cmd_identifier_token33] = ACTIONS(1456), + [aux_sym_cmd_identifier_token34] = ACTIONS(1456), + [aux_sym_cmd_identifier_token35] = ACTIONS(1456), + [aux_sym_cmd_identifier_token36] = ACTIONS(1456), + [anon_sym_true] = ACTIONS(1459), + [anon_sym_false] = ACTIONS(1459), + [anon_sym_null] = ACTIONS(1459), + [aux_sym_cmd_identifier_token38] = ACTIONS(1462), + [aux_sym_cmd_identifier_token39] = ACTIONS(1465), + [aux_sym_cmd_identifier_token40] = ACTIONS(1465), + [anon_sym_def] = ACTIONS(1453), + [anon_sym_export_DASHenv] = ACTIONS(1453), + [anon_sym_extern] = ACTIONS(1453), + [anon_sym_module] = ACTIONS(1453), + [anon_sym_use] = ACTIONS(1453), + [anon_sym_LPAREN] = ACTIONS(1468), + [anon_sym_DOLLAR] = ACTIONS(1471), + [anon_sym_error] = ACTIONS(1453), + [anon_sym_list] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1474), + [anon_sym_break] = ACTIONS(1453), + [anon_sym_continue] = ACTIONS(1453), + [anon_sym_for] = ACTIONS(1453), + [anon_sym_in] = ACTIONS(1453), + [anon_sym_loop] = ACTIONS(1453), + [anon_sym_make] = ACTIONS(1453), + [anon_sym_while] = ACTIONS(1453), + [anon_sym_do] = ACTIONS(1453), + [anon_sym_if] = ACTIONS(1453), + [anon_sym_else] = ACTIONS(1453), + [anon_sym_match] = ACTIONS(1453), + [anon_sym_try] = ACTIONS(1453), + [anon_sym_catch] = ACTIONS(1453), + [anon_sym_return] = ACTIONS(1453), + [anon_sym_source] = ACTIONS(1453), + [anon_sym_source_DASHenv] = ACTIONS(1453), + [anon_sym_register] = ACTIONS(1453), + [anon_sym_hide] = ACTIONS(1453), + [anon_sym_hide_DASHenv] = ACTIONS(1453), + [anon_sym_overlay] = ACTIONS(1453), + [anon_sym_new] = ACTIONS(1453), + [anon_sym_as] = ACTIONS(1453), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1477), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1480), + [aux_sym__val_number_decimal_token1] = ACTIONS(1483), + [aux_sym__val_number_decimal_token2] = ACTIONS(1486), + [aux_sym__val_number_decimal_token3] = ACTIONS(1489), + [aux_sym__val_number_decimal_token4] = ACTIONS(1492), + [aux_sym__val_number_token1] = ACTIONS(1495), + [aux_sym__val_number_token2] = ACTIONS(1495), + [aux_sym__val_number_token3] = ACTIONS(1495), + [anon_sym_DQUOTE] = ACTIONS(1498), + [sym__str_single_quotes] = ACTIONS(1501), + [sym__str_back_ticks] = ACTIONS(1501), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1504), + [anon_sym_PLUS] = ACTIONS(1474), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1507), }, [214] = { + [sym__expr_parenthesized_immediate] = STATE(441), + [sym__immediate_decimal] = STATE(324), + [sym_val_variable] = STATE(441), [sym_comment] = STATE(214), - [anon_sym_export] = ACTIONS(1518), - [anon_sym_alias] = ACTIONS(1518), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_let_DASHenv] = ACTIONS(1518), - [anon_sym_mut] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1518), - [aux_sym_cmd_identifier_token1] = ACTIONS(1518), - [aux_sym_cmd_identifier_token2] = ACTIONS(1518), - [aux_sym_cmd_identifier_token3] = ACTIONS(1518), - [aux_sym_cmd_identifier_token4] = ACTIONS(1518), - [aux_sym_cmd_identifier_token5] = ACTIONS(1518), - [aux_sym_cmd_identifier_token6] = ACTIONS(1518), - [aux_sym_cmd_identifier_token7] = ACTIONS(1518), - [aux_sym_cmd_identifier_token8] = ACTIONS(1518), - [aux_sym_cmd_identifier_token9] = ACTIONS(1518), - [aux_sym_cmd_identifier_token10] = ACTIONS(1518), - [aux_sym_cmd_identifier_token11] = ACTIONS(1518), - [aux_sym_cmd_identifier_token12] = ACTIONS(1518), - [aux_sym_cmd_identifier_token13] = ACTIONS(1518), - [aux_sym_cmd_identifier_token14] = ACTIONS(1518), - [aux_sym_cmd_identifier_token15] = ACTIONS(1518), - [aux_sym_cmd_identifier_token16] = ACTIONS(1518), - [aux_sym_cmd_identifier_token17] = ACTIONS(1518), - [aux_sym_cmd_identifier_token18] = ACTIONS(1518), - [aux_sym_cmd_identifier_token19] = ACTIONS(1518), - [aux_sym_cmd_identifier_token20] = ACTIONS(1518), - [aux_sym_cmd_identifier_token21] = ACTIONS(1518), - [aux_sym_cmd_identifier_token22] = ACTIONS(1518), - [aux_sym_cmd_identifier_token23] = ACTIONS(1518), - [aux_sym_cmd_identifier_token24] = ACTIONS(1518), - [aux_sym_cmd_identifier_token25] = ACTIONS(1518), - [aux_sym_cmd_identifier_token26] = ACTIONS(1518), - [aux_sym_cmd_identifier_token27] = ACTIONS(1518), - [aux_sym_cmd_identifier_token28] = ACTIONS(1518), - [aux_sym_cmd_identifier_token29] = ACTIONS(1518), - [aux_sym_cmd_identifier_token30] = ACTIONS(1518), - [aux_sym_cmd_identifier_token31] = ACTIONS(1518), - [aux_sym_cmd_identifier_token32] = ACTIONS(1518), - [aux_sym_cmd_identifier_token33] = ACTIONS(1518), - [aux_sym_cmd_identifier_token34] = ACTIONS(1518), - [aux_sym_cmd_identifier_token35] = ACTIONS(1518), - [aux_sym_cmd_identifier_token36] = ACTIONS(1518), - [anon_sym_true] = ACTIONS(1518), - [anon_sym_false] = ACTIONS(1518), - [anon_sym_null] = ACTIONS(1518), - [aux_sym_cmd_identifier_token38] = ACTIONS(1518), - [aux_sym_cmd_identifier_token39] = ACTIONS(1518), - [aux_sym_cmd_identifier_token40] = ACTIONS(1518), - [anon_sym_def] = ACTIONS(1518), - [anon_sym_export_DASHenv] = ACTIONS(1518), - [anon_sym_extern] = ACTIONS(1518), - [anon_sym_module] = ACTIONS(1518), - [anon_sym_use] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1518), - [anon_sym_DOLLAR] = ACTIONS(1518), - [anon_sym_error] = ACTIONS(1518), - [anon_sym_list] = ACTIONS(1518), - [anon_sym_DASH] = ACTIONS(1518), - [anon_sym_break] = ACTIONS(1518), - [anon_sym_continue] = ACTIONS(1518), - [anon_sym_for] = ACTIONS(1518), - [anon_sym_in] = ACTIONS(1518), - [anon_sym_loop] = ACTIONS(1518), - [anon_sym_make] = ACTIONS(1518), - [anon_sym_while] = ACTIONS(1518), - [anon_sym_do] = ACTIONS(1518), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_else] = ACTIONS(1518), - [anon_sym_match] = ACTIONS(1518), - [anon_sym_RBRACE] = ACTIONS(1518), - [anon_sym_try] = ACTIONS(1518), - [anon_sym_catch] = ACTIONS(1518), - [anon_sym_return] = ACTIONS(1518), - [anon_sym_source] = ACTIONS(1518), - [anon_sym_source_DASHenv] = ACTIONS(1518), - [anon_sym_register] = ACTIONS(1518), - [anon_sym_hide] = ACTIONS(1518), - [anon_sym_hide_DASHenv] = ACTIONS(1518), - [anon_sym_overlay] = ACTIONS(1518), - [anon_sym_new] = ACTIONS(1518), - [anon_sym_as] = ACTIONS(1518), - [anon_sym_LPAREN2] = ACTIONS(1520), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1518), - [anon_sym_DOT_DOT2] = ACTIONS(1518), - [anon_sym_DOT] = ACTIONS(1522), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), - [aux_sym__immediate_decimal_token2] = ACTIONS(1524), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1518), - [aux_sym__val_number_decimal_token1] = ACTIONS(1518), - [aux_sym__val_number_decimal_token2] = ACTIONS(1518), - [aux_sym__val_number_decimal_token3] = ACTIONS(1518), - [aux_sym__val_number_decimal_token4] = ACTIONS(1518), - [aux_sym__val_number_token1] = ACTIONS(1518), - [aux_sym__val_number_token2] = ACTIONS(1518), - [aux_sym__val_number_token3] = ACTIONS(1518), - [sym_filesize_unit] = ACTIONS(1518), - [sym_duration_unit] = ACTIONS(1518), - [anon_sym_DQUOTE] = ACTIONS(1518), - [sym__str_single_quotes] = ACTIONS(1518), - [sym__str_back_ticks] = ACTIONS(1518), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1518), - [sym__entry_separator] = ACTIONS(1520), - [anon_sym_PLUS] = ACTIONS(1518), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1518), + [anon_sym_export] = ACTIONS(1510), + [anon_sym_alias] = ACTIONS(1510), + [anon_sym_let] = ACTIONS(1510), + [anon_sym_let_DASHenv] = ACTIONS(1510), + [anon_sym_mut] = ACTIONS(1510), + [anon_sym_const] = ACTIONS(1510), + [aux_sym_cmd_identifier_token1] = ACTIONS(1510), + [aux_sym_cmd_identifier_token2] = ACTIONS(1510), + [aux_sym_cmd_identifier_token3] = ACTIONS(1510), + [aux_sym_cmd_identifier_token4] = ACTIONS(1510), + [aux_sym_cmd_identifier_token5] = ACTIONS(1510), + [aux_sym_cmd_identifier_token6] = ACTIONS(1510), + [aux_sym_cmd_identifier_token7] = ACTIONS(1510), + [aux_sym_cmd_identifier_token8] = ACTIONS(1510), + [aux_sym_cmd_identifier_token9] = ACTIONS(1510), + [aux_sym_cmd_identifier_token10] = ACTIONS(1510), + [aux_sym_cmd_identifier_token11] = ACTIONS(1510), + [aux_sym_cmd_identifier_token12] = ACTIONS(1510), + [aux_sym_cmd_identifier_token13] = ACTIONS(1510), + [aux_sym_cmd_identifier_token14] = ACTIONS(1510), + [aux_sym_cmd_identifier_token15] = ACTIONS(1510), + [aux_sym_cmd_identifier_token16] = ACTIONS(1510), + [aux_sym_cmd_identifier_token17] = ACTIONS(1510), + [aux_sym_cmd_identifier_token18] = ACTIONS(1510), + [aux_sym_cmd_identifier_token19] = ACTIONS(1510), + [aux_sym_cmd_identifier_token20] = ACTIONS(1510), + [aux_sym_cmd_identifier_token21] = ACTIONS(1510), + [aux_sym_cmd_identifier_token22] = ACTIONS(1510), + [aux_sym_cmd_identifier_token23] = ACTIONS(1510), + [aux_sym_cmd_identifier_token24] = ACTIONS(1510), + [aux_sym_cmd_identifier_token25] = ACTIONS(1510), + [aux_sym_cmd_identifier_token26] = ACTIONS(1510), + [aux_sym_cmd_identifier_token27] = ACTIONS(1510), + [aux_sym_cmd_identifier_token28] = ACTIONS(1510), + [aux_sym_cmd_identifier_token29] = ACTIONS(1510), + [aux_sym_cmd_identifier_token30] = ACTIONS(1510), + [aux_sym_cmd_identifier_token31] = ACTIONS(1510), + [aux_sym_cmd_identifier_token32] = ACTIONS(1510), + [aux_sym_cmd_identifier_token33] = ACTIONS(1510), + [aux_sym_cmd_identifier_token34] = ACTIONS(1510), + [aux_sym_cmd_identifier_token35] = ACTIONS(1510), + [aux_sym_cmd_identifier_token36] = ACTIONS(1510), + [anon_sym_true] = ACTIONS(1510), + [anon_sym_false] = ACTIONS(1510), + [anon_sym_null] = ACTIONS(1510), + [aux_sym_cmd_identifier_token38] = ACTIONS(1510), + [aux_sym_cmd_identifier_token39] = ACTIONS(1510), + [aux_sym_cmd_identifier_token40] = ACTIONS(1510), + [anon_sym_def] = ACTIONS(1510), + [anon_sym_export_DASHenv] = ACTIONS(1510), + [anon_sym_extern] = ACTIONS(1510), + [anon_sym_module] = ACTIONS(1510), + [anon_sym_use] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1510), + [anon_sym_DOLLAR] = ACTIONS(1512), + [anon_sym_error] = ACTIONS(1510), + [anon_sym_list] = ACTIONS(1510), + [anon_sym_DASH] = ACTIONS(1510), + [anon_sym_break] = ACTIONS(1510), + [anon_sym_continue] = ACTIONS(1510), + [anon_sym_for] = ACTIONS(1510), + [anon_sym_in] = ACTIONS(1510), + [anon_sym_loop] = ACTIONS(1510), + [anon_sym_make] = ACTIONS(1510), + [anon_sym_while] = ACTIONS(1510), + [anon_sym_do] = ACTIONS(1510), + [anon_sym_if] = ACTIONS(1510), + [anon_sym_else] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1510), + [anon_sym_RBRACE] = ACTIONS(1510), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_catch] = ACTIONS(1510), + [anon_sym_return] = ACTIONS(1510), + [anon_sym_source] = ACTIONS(1510), + [anon_sym_source_DASHenv] = ACTIONS(1510), + [anon_sym_register] = ACTIONS(1510), + [anon_sym_hide] = ACTIONS(1510), + [anon_sym_hide_DASHenv] = ACTIONS(1510), + [anon_sym_overlay] = ACTIONS(1510), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_as] = ACTIONS(1510), + [anon_sym_LPAREN2] = ACTIONS(1514), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1510), + [anon_sym_DOT] = ACTIONS(1516), + [aux_sym__immediate_decimal_token1] = ACTIONS(1518), + [aux_sym__immediate_decimal_token3] = ACTIONS(1518), + [aux_sym__immediate_decimal_token4] = ACTIONS(1520), + [aux_sym__immediate_decimal_token5] = ACTIONS(1522), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1510), + [aux_sym__val_number_decimal_token1] = ACTIONS(1510), + [aux_sym__val_number_decimal_token2] = ACTIONS(1510), + [aux_sym__val_number_decimal_token3] = ACTIONS(1510), + [aux_sym__val_number_decimal_token4] = ACTIONS(1510), + [aux_sym__val_number_token1] = ACTIONS(1510), + [aux_sym__val_number_token2] = ACTIONS(1510), + [aux_sym__val_number_token3] = ACTIONS(1510), + [anon_sym_DQUOTE] = ACTIONS(1510), + [sym__str_single_quotes] = ACTIONS(1510), + [sym__str_back_ticks] = ACTIONS(1510), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1510), + [sym__entry_separator] = ACTIONS(1524), + [anon_sym_PLUS] = ACTIONS(1510), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1526), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1524), }, [215] = { - [sym__expr_parenthesized_immediate] = STATE(485), - [sym__immediate_decimal] = STATE(373), - [sym_val_variable] = STATE(485), [sym_comment] = STATE(215), - [anon_sym_export] = ACTIONS(1478), - [anon_sym_alias] = ACTIONS(1478), - [anon_sym_let] = ACTIONS(1478), - [anon_sym_let_DASHenv] = ACTIONS(1478), - [anon_sym_mut] = ACTIONS(1478), - [anon_sym_const] = ACTIONS(1478), - [aux_sym_cmd_identifier_token1] = ACTIONS(1478), - [aux_sym_cmd_identifier_token2] = ACTIONS(1478), - [aux_sym_cmd_identifier_token3] = ACTIONS(1478), - [aux_sym_cmd_identifier_token4] = ACTIONS(1478), - [aux_sym_cmd_identifier_token5] = ACTIONS(1478), - [aux_sym_cmd_identifier_token6] = ACTIONS(1478), - [aux_sym_cmd_identifier_token7] = ACTIONS(1478), - [aux_sym_cmd_identifier_token8] = ACTIONS(1478), - [aux_sym_cmd_identifier_token9] = ACTIONS(1478), - [aux_sym_cmd_identifier_token10] = ACTIONS(1478), - [aux_sym_cmd_identifier_token11] = ACTIONS(1478), - [aux_sym_cmd_identifier_token12] = ACTIONS(1478), - [aux_sym_cmd_identifier_token13] = ACTIONS(1478), - [aux_sym_cmd_identifier_token14] = ACTIONS(1478), - [aux_sym_cmd_identifier_token15] = ACTIONS(1478), - [aux_sym_cmd_identifier_token16] = ACTIONS(1478), - [aux_sym_cmd_identifier_token17] = ACTIONS(1478), - [aux_sym_cmd_identifier_token18] = ACTIONS(1478), - [aux_sym_cmd_identifier_token19] = ACTIONS(1478), - [aux_sym_cmd_identifier_token20] = ACTIONS(1478), - [aux_sym_cmd_identifier_token21] = ACTIONS(1478), - [aux_sym_cmd_identifier_token22] = ACTIONS(1478), - [aux_sym_cmd_identifier_token23] = ACTIONS(1478), - [aux_sym_cmd_identifier_token24] = ACTIONS(1478), - [aux_sym_cmd_identifier_token25] = ACTIONS(1478), - [aux_sym_cmd_identifier_token26] = ACTIONS(1478), - [aux_sym_cmd_identifier_token27] = ACTIONS(1478), - [aux_sym_cmd_identifier_token28] = ACTIONS(1478), - [aux_sym_cmd_identifier_token29] = ACTIONS(1478), - [aux_sym_cmd_identifier_token30] = ACTIONS(1478), - [aux_sym_cmd_identifier_token31] = ACTIONS(1478), - [aux_sym_cmd_identifier_token32] = ACTIONS(1478), - [aux_sym_cmd_identifier_token33] = ACTIONS(1478), - [aux_sym_cmd_identifier_token34] = ACTIONS(1478), - [aux_sym_cmd_identifier_token35] = ACTIONS(1478), - [aux_sym_cmd_identifier_token36] = ACTIONS(1478), - [anon_sym_true] = ACTIONS(1492), - [anon_sym_false] = ACTIONS(1492), - [anon_sym_null] = ACTIONS(1492), - [aux_sym_cmd_identifier_token38] = ACTIONS(1478), - [aux_sym_cmd_identifier_token39] = ACTIONS(1492), - [aux_sym_cmd_identifier_token40] = ACTIONS(1492), - [anon_sym_def] = ACTIONS(1478), - [anon_sym_export_DASHenv] = ACTIONS(1478), - [anon_sym_extern] = ACTIONS(1478), - [anon_sym_module] = ACTIONS(1478), - [anon_sym_use] = ACTIONS(1478), - [anon_sym_LPAREN] = ACTIONS(1478), - [anon_sym_DOLLAR] = ACTIONS(1526), - [anon_sym_error] = ACTIONS(1478), - [anon_sym_list] = ACTIONS(1478), - [anon_sym_DASH] = ACTIONS(1478), - [anon_sym_break] = ACTIONS(1478), - [anon_sym_continue] = ACTIONS(1478), - [anon_sym_for] = ACTIONS(1478), - [anon_sym_in] = ACTIONS(1478), - [anon_sym_loop] = ACTIONS(1478), - [anon_sym_make] = ACTIONS(1478), - [anon_sym_while] = ACTIONS(1478), - [anon_sym_do] = ACTIONS(1478), - [anon_sym_if] = ACTIONS(1478), - [anon_sym_else] = ACTIONS(1478), - [anon_sym_match] = ACTIONS(1478), - [anon_sym_RBRACE] = ACTIONS(1492), - [anon_sym_try] = ACTIONS(1478), - [anon_sym_catch] = ACTIONS(1478), - [anon_sym_return] = ACTIONS(1478), - [anon_sym_source] = ACTIONS(1478), - [anon_sym_source_DASHenv] = ACTIONS(1478), - [anon_sym_register] = ACTIONS(1478), - [anon_sym_hide] = ACTIONS(1478), - [anon_sym_hide_DASHenv] = ACTIONS(1478), - [anon_sym_overlay] = ACTIONS(1478), - [anon_sym_new] = ACTIONS(1478), - [anon_sym_as] = ACTIONS(1478), - [anon_sym_LPAREN2] = ACTIONS(1528), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1492), - [anon_sym_DOT] = ACTIONS(1530), + [anon_sym_export] = ACTIONS(1528), + [anon_sym_alias] = ACTIONS(1528), + [anon_sym_let] = ACTIONS(1528), + [anon_sym_let_DASHenv] = ACTIONS(1528), + [anon_sym_mut] = ACTIONS(1528), + [anon_sym_const] = ACTIONS(1528), + [aux_sym_cmd_identifier_token1] = ACTIONS(1528), + [aux_sym_cmd_identifier_token2] = ACTIONS(1528), + [aux_sym_cmd_identifier_token3] = ACTIONS(1528), + [aux_sym_cmd_identifier_token4] = ACTIONS(1528), + [aux_sym_cmd_identifier_token5] = ACTIONS(1528), + [aux_sym_cmd_identifier_token6] = ACTIONS(1528), + [aux_sym_cmd_identifier_token7] = ACTIONS(1528), + [aux_sym_cmd_identifier_token8] = ACTIONS(1528), + [aux_sym_cmd_identifier_token9] = ACTIONS(1528), + [aux_sym_cmd_identifier_token10] = ACTIONS(1528), + [aux_sym_cmd_identifier_token11] = ACTIONS(1528), + [aux_sym_cmd_identifier_token12] = ACTIONS(1528), + [aux_sym_cmd_identifier_token13] = ACTIONS(1528), + [aux_sym_cmd_identifier_token14] = ACTIONS(1528), + [aux_sym_cmd_identifier_token15] = ACTIONS(1528), + [aux_sym_cmd_identifier_token16] = ACTIONS(1528), + [aux_sym_cmd_identifier_token17] = ACTIONS(1528), + [aux_sym_cmd_identifier_token18] = ACTIONS(1528), + [aux_sym_cmd_identifier_token19] = ACTIONS(1528), + [aux_sym_cmd_identifier_token20] = ACTIONS(1528), + [aux_sym_cmd_identifier_token21] = ACTIONS(1528), + [aux_sym_cmd_identifier_token22] = ACTIONS(1528), + [aux_sym_cmd_identifier_token23] = ACTIONS(1528), + [aux_sym_cmd_identifier_token24] = ACTIONS(1528), + [aux_sym_cmd_identifier_token25] = ACTIONS(1528), + [aux_sym_cmd_identifier_token26] = ACTIONS(1528), + [aux_sym_cmd_identifier_token27] = ACTIONS(1528), + [aux_sym_cmd_identifier_token28] = ACTIONS(1528), + [aux_sym_cmd_identifier_token29] = ACTIONS(1528), + [aux_sym_cmd_identifier_token30] = ACTIONS(1528), + [aux_sym_cmd_identifier_token31] = ACTIONS(1528), + [aux_sym_cmd_identifier_token32] = ACTIONS(1528), + [aux_sym_cmd_identifier_token33] = ACTIONS(1528), + [aux_sym_cmd_identifier_token34] = ACTIONS(1528), + [aux_sym_cmd_identifier_token35] = ACTIONS(1528), + [aux_sym_cmd_identifier_token36] = ACTIONS(1528), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1528), + [aux_sym_cmd_identifier_token38] = ACTIONS(1528), + [aux_sym_cmd_identifier_token39] = ACTIONS(1528), + [aux_sym_cmd_identifier_token40] = ACTIONS(1528), + [anon_sym_def] = ACTIONS(1528), + [anon_sym_export_DASHenv] = ACTIONS(1528), + [anon_sym_extern] = ACTIONS(1528), + [anon_sym_module] = ACTIONS(1528), + [anon_sym_use] = ACTIONS(1528), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_DOLLAR] = ACTIONS(1528), + [anon_sym_error] = ACTIONS(1528), + [anon_sym_list] = ACTIONS(1528), + [anon_sym_DASH] = ACTIONS(1528), + [anon_sym_break] = ACTIONS(1528), + [anon_sym_continue] = ACTIONS(1528), + [anon_sym_for] = ACTIONS(1528), + [anon_sym_in] = ACTIONS(1528), + [anon_sym_loop] = ACTIONS(1528), + [anon_sym_make] = ACTIONS(1528), + [anon_sym_while] = ACTIONS(1528), + [anon_sym_do] = ACTIONS(1528), + [anon_sym_if] = ACTIONS(1528), + [anon_sym_else] = ACTIONS(1528), + [anon_sym_match] = ACTIONS(1528), + [anon_sym_RBRACE] = ACTIONS(1528), + [anon_sym_try] = ACTIONS(1528), + [anon_sym_catch] = ACTIONS(1528), + [anon_sym_return] = ACTIONS(1528), + [anon_sym_source] = ACTIONS(1528), + [anon_sym_source_DASHenv] = ACTIONS(1528), + [anon_sym_register] = ACTIONS(1528), + [anon_sym_hide] = ACTIONS(1528), + [anon_sym_hide_DASHenv] = ACTIONS(1528), + [anon_sym_overlay] = ACTIONS(1528), + [anon_sym_new] = ACTIONS(1528), + [anon_sym_as] = ACTIONS(1528), + [anon_sym_LPAREN2] = ACTIONS(1530), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1528), + [anon_sym_DOT_DOT2] = ACTIONS(1528), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1530), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1530), [aux_sym__immediate_decimal_token1] = ACTIONS(1532), - [aux_sym__immediate_decimal_token3] = ACTIONS(1534), - [aux_sym__immediate_decimal_token4] = ACTIONS(1536), - [aux_sym__immediate_decimal_token5] = ACTIONS(1538), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1492), - [aux_sym__val_number_decimal_token1] = ACTIONS(1478), - [aux_sym__val_number_decimal_token2] = ACTIONS(1478), - [aux_sym__val_number_decimal_token3] = ACTIONS(1478), - [aux_sym__val_number_decimal_token4] = ACTIONS(1478), - [aux_sym__val_number_token1] = ACTIONS(1492), - [aux_sym__val_number_token2] = ACTIONS(1492), - [aux_sym__val_number_token3] = ACTIONS(1492), - [anon_sym_DQUOTE] = ACTIONS(1492), - [sym__str_single_quotes] = ACTIONS(1492), - [sym__str_back_ticks] = ACTIONS(1492), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1492), - [anon_sym_PLUS] = ACTIONS(1478), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1494), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym__immediate_decimal_token2] = ACTIONS(1534), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1528), + [aux_sym__val_number_decimal_token1] = ACTIONS(1528), + [aux_sym__val_number_decimal_token2] = ACTIONS(1528), + [aux_sym__val_number_decimal_token3] = ACTIONS(1528), + [aux_sym__val_number_decimal_token4] = ACTIONS(1528), + [aux_sym__val_number_token1] = ACTIONS(1528), + [aux_sym__val_number_token2] = ACTIONS(1528), + [aux_sym__val_number_token3] = ACTIONS(1528), + [sym_filesize_unit] = ACTIONS(1528), + [sym_duration_unit] = ACTIONS(1528), + [anon_sym_DQUOTE] = ACTIONS(1528), + [sym__str_single_quotes] = ACTIONS(1528), + [sym__str_back_ticks] = ACTIONS(1528), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1528), + [sym__entry_separator] = ACTIONS(1530), + [anon_sym_PLUS] = ACTIONS(1528), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1528), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1530), }, [216] = { [sym_comment] = STATE(216), - [anon_sym_export] = ACTIONS(1540), - [anon_sym_alias] = ACTIONS(1540), - [anon_sym_let] = ACTIONS(1540), - [anon_sym_let_DASHenv] = ACTIONS(1540), - [anon_sym_mut] = ACTIONS(1540), - [anon_sym_const] = ACTIONS(1540), - [aux_sym_cmd_identifier_token1] = ACTIONS(1540), - [aux_sym_cmd_identifier_token2] = ACTIONS(1540), - [aux_sym_cmd_identifier_token3] = ACTIONS(1540), - [aux_sym_cmd_identifier_token4] = ACTIONS(1540), - [aux_sym_cmd_identifier_token5] = ACTIONS(1540), - [aux_sym_cmd_identifier_token6] = ACTIONS(1540), - [aux_sym_cmd_identifier_token7] = ACTIONS(1540), - [aux_sym_cmd_identifier_token8] = ACTIONS(1540), - [aux_sym_cmd_identifier_token9] = ACTIONS(1540), - [aux_sym_cmd_identifier_token10] = ACTIONS(1540), - [aux_sym_cmd_identifier_token11] = ACTIONS(1540), - [aux_sym_cmd_identifier_token12] = ACTIONS(1540), - [aux_sym_cmd_identifier_token13] = ACTIONS(1540), - [aux_sym_cmd_identifier_token14] = ACTIONS(1540), - [aux_sym_cmd_identifier_token15] = ACTIONS(1540), - [aux_sym_cmd_identifier_token16] = ACTIONS(1540), - [aux_sym_cmd_identifier_token17] = ACTIONS(1540), - [aux_sym_cmd_identifier_token18] = ACTIONS(1540), - [aux_sym_cmd_identifier_token19] = ACTIONS(1540), - [aux_sym_cmd_identifier_token20] = ACTIONS(1540), - [aux_sym_cmd_identifier_token21] = ACTIONS(1540), - [aux_sym_cmd_identifier_token22] = ACTIONS(1540), - [aux_sym_cmd_identifier_token23] = ACTIONS(1540), - [aux_sym_cmd_identifier_token24] = ACTIONS(1540), - [aux_sym_cmd_identifier_token25] = ACTIONS(1540), - [aux_sym_cmd_identifier_token26] = ACTIONS(1540), - [aux_sym_cmd_identifier_token27] = ACTIONS(1540), - [aux_sym_cmd_identifier_token28] = ACTIONS(1540), - [aux_sym_cmd_identifier_token29] = ACTIONS(1540), - [aux_sym_cmd_identifier_token30] = ACTIONS(1540), - [aux_sym_cmd_identifier_token31] = ACTIONS(1540), - [aux_sym_cmd_identifier_token32] = ACTIONS(1540), - [aux_sym_cmd_identifier_token33] = ACTIONS(1540), - [aux_sym_cmd_identifier_token34] = ACTIONS(1540), - [aux_sym_cmd_identifier_token35] = ACTIONS(1540), - [aux_sym_cmd_identifier_token36] = ACTIONS(1540), - [anon_sym_true] = ACTIONS(1540), - [anon_sym_false] = ACTIONS(1540), - [anon_sym_null] = ACTIONS(1540), - [aux_sym_cmd_identifier_token38] = ACTIONS(1540), - [aux_sym_cmd_identifier_token39] = ACTIONS(1540), - [aux_sym_cmd_identifier_token40] = ACTIONS(1540), - [anon_sym_def] = ACTIONS(1540), - [anon_sym_export_DASHenv] = ACTIONS(1540), - [anon_sym_extern] = ACTIONS(1540), - [anon_sym_module] = ACTIONS(1540), - [anon_sym_use] = ACTIONS(1540), - [anon_sym_LPAREN] = ACTIONS(1540), - [anon_sym_DOLLAR] = ACTIONS(1540), - [anon_sym_error] = ACTIONS(1540), - [anon_sym_list] = ACTIONS(1540), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_break] = ACTIONS(1540), - [anon_sym_continue] = ACTIONS(1540), - [anon_sym_for] = ACTIONS(1540), - [anon_sym_in] = ACTIONS(1540), - [anon_sym_loop] = ACTIONS(1540), - [anon_sym_make] = ACTIONS(1540), - [anon_sym_while] = ACTIONS(1540), - [anon_sym_do] = ACTIONS(1540), - [anon_sym_if] = ACTIONS(1540), - [anon_sym_else] = ACTIONS(1540), - [anon_sym_match] = ACTIONS(1540), - [anon_sym_RBRACE] = ACTIONS(1540), - [anon_sym_try] = ACTIONS(1540), - [anon_sym_catch] = ACTIONS(1540), - [anon_sym_return] = ACTIONS(1540), - [anon_sym_source] = ACTIONS(1540), - [anon_sym_source_DASHenv] = ACTIONS(1540), - [anon_sym_register] = ACTIONS(1540), - [anon_sym_hide] = ACTIONS(1540), - [anon_sym_hide_DASHenv] = ACTIONS(1540), - [anon_sym_overlay] = ACTIONS(1540), - [anon_sym_new] = ACTIONS(1540), - [anon_sym_as] = ACTIONS(1540), - [anon_sym_LPAREN2] = ACTIONS(1542), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1540), - [anon_sym_DOT_DOT2] = ACTIONS(1540), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1542), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1542), - [aux_sym__immediate_decimal_token1] = ACTIONS(1544), - [aux_sym__immediate_decimal_token2] = ACTIONS(1546), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1540), - [aux_sym__val_number_decimal_token1] = ACTIONS(1540), - [aux_sym__val_number_decimal_token2] = ACTIONS(1540), - [aux_sym__val_number_decimal_token3] = ACTIONS(1540), - [aux_sym__val_number_decimal_token4] = ACTIONS(1540), - [aux_sym__val_number_token1] = ACTIONS(1540), - [aux_sym__val_number_token2] = ACTIONS(1540), - [aux_sym__val_number_token3] = ACTIONS(1540), - [sym_filesize_unit] = ACTIONS(1540), - [sym_duration_unit] = ACTIONS(1540), - [anon_sym_DQUOTE] = ACTIONS(1540), - [sym__str_single_quotes] = ACTIONS(1540), - [sym__str_back_ticks] = ACTIONS(1540), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1540), - [sym__entry_separator] = ACTIONS(1542), - [anon_sym_PLUS] = ACTIONS(1540), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1540), + [anon_sym_export] = ACTIONS(1536), + [anon_sym_alias] = ACTIONS(1536), + [anon_sym_let] = ACTIONS(1536), + [anon_sym_let_DASHenv] = ACTIONS(1536), + [anon_sym_mut] = ACTIONS(1536), + [anon_sym_const] = ACTIONS(1536), + [aux_sym_cmd_identifier_token1] = ACTIONS(1536), + [aux_sym_cmd_identifier_token2] = ACTIONS(1536), + [aux_sym_cmd_identifier_token3] = ACTIONS(1536), + [aux_sym_cmd_identifier_token4] = ACTIONS(1536), + [aux_sym_cmd_identifier_token5] = ACTIONS(1536), + [aux_sym_cmd_identifier_token6] = ACTIONS(1536), + [aux_sym_cmd_identifier_token7] = ACTIONS(1536), + [aux_sym_cmd_identifier_token8] = ACTIONS(1536), + [aux_sym_cmd_identifier_token9] = ACTIONS(1536), + [aux_sym_cmd_identifier_token10] = ACTIONS(1536), + [aux_sym_cmd_identifier_token11] = ACTIONS(1536), + [aux_sym_cmd_identifier_token12] = ACTIONS(1536), + [aux_sym_cmd_identifier_token13] = ACTIONS(1536), + [aux_sym_cmd_identifier_token14] = ACTIONS(1536), + [aux_sym_cmd_identifier_token15] = ACTIONS(1536), + [aux_sym_cmd_identifier_token16] = ACTIONS(1536), + [aux_sym_cmd_identifier_token17] = ACTIONS(1536), + [aux_sym_cmd_identifier_token18] = ACTIONS(1536), + [aux_sym_cmd_identifier_token19] = ACTIONS(1536), + [aux_sym_cmd_identifier_token20] = ACTIONS(1536), + [aux_sym_cmd_identifier_token21] = ACTIONS(1536), + [aux_sym_cmd_identifier_token22] = ACTIONS(1536), + [aux_sym_cmd_identifier_token23] = ACTIONS(1536), + [aux_sym_cmd_identifier_token24] = ACTIONS(1536), + [aux_sym_cmd_identifier_token25] = ACTIONS(1536), + [aux_sym_cmd_identifier_token26] = ACTIONS(1536), + [aux_sym_cmd_identifier_token27] = ACTIONS(1536), + [aux_sym_cmd_identifier_token28] = ACTIONS(1536), + [aux_sym_cmd_identifier_token29] = ACTIONS(1536), + [aux_sym_cmd_identifier_token30] = ACTIONS(1536), + [aux_sym_cmd_identifier_token31] = ACTIONS(1536), + [aux_sym_cmd_identifier_token32] = ACTIONS(1536), + [aux_sym_cmd_identifier_token33] = ACTIONS(1536), + [aux_sym_cmd_identifier_token34] = ACTIONS(1536), + [aux_sym_cmd_identifier_token35] = ACTIONS(1536), + [aux_sym_cmd_identifier_token36] = ACTIONS(1536), + [anon_sym_true] = ACTIONS(1536), + [anon_sym_false] = ACTIONS(1536), + [anon_sym_null] = ACTIONS(1536), + [aux_sym_cmd_identifier_token38] = ACTIONS(1536), + [aux_sym_cmd_identifier_token39] = ACTIONS(1536), + [aux_sym_cmd_identifier_token40] = ACTIONS(1536), + [anon_sym_def] = ACTIONS(1536), + [anon_sym_export_DASHenv] = ACTIONS(1536), + [anon_sym_extern] = ACTIONS(1536), + [anon_sym_module] = ACTIONS(1536), + [anon_sym_use] = ACTIONS(1536), + [anon_sym_LPAREN] = ACTIONS(1536), + [anon_sym_DOLLAR] = ACTIONS(1536), + [anon_sym_error] = ACTIONS(1536), + [anon_sym_list] = ACTIONS(1536), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_break] = ACTIONS(1536), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_for] = ACTIONS(1536), + [anon_sym_in] = ACTIONS(1536), + [anon_sym_loop] = ACTIONS(1536), + [anon_sym_make] = ACTIONS(1536), + [anon_sym_while] = ACTIONS(1536), + [anon_sym_do] = ACTIONS(1536), + [anon_sym_if] = ACTIONS(1536), + [anon_sym_else] = ACTIONS(1536), + [anon_sym_match] = ACTIONS(1536), + [anon_sym_RBRACE] = ACTIONS(1536), + [anon_sym_try] = ACTIONS(1536), + [anon_sym_catch] = ACTIONS(1536), + [anon_sym_return] = ACTIONS(1536), + [anon_sym_source] = ACTIONS(1536), + [anon_sym_source_DASHenv] = ACTIONS(1536), + [anon_sym_register] = ACTIONS(1536), + [anon_sym_hide] = ACTIONS(1536), + [anon_sym_hide_DASHenv] = ACTIONS(1536), + [anon_sym_overlay] = ACTIONS(1536), + [anon_sym_new] = ACTIONS(1536), + [anon_sym_as] = ACTIONS(1536), + [anon_sym_LPAREN2] = ACTIONS(1538), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1536), + [anon_sym_DOT_DOT2] = ACTIONS(1536), + [anon_sym_DOT] = ACTIONS(1540), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), + [aux_sym__immediate_decimal_token2] = ACTIONS(1542), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1536), + [aux_sym__val_number_decimal_token1] = ACTIONS(1536), + [aux_sym__val_number_decimal_token2] = ACTIONS(1536), + [aux_sym__val_number_decimal_token3] = ACTIONS(1536), + [aux_sym__val_number_decimal_token4] = ACTIONS(1536), + [aux_sym__val_number_token1] = ACTIONS(1536), + [aux_sym__val_number_token2] = ACTIONS(1536), + [aux_sym__val_number_token3] = ACTIONS(1536), + [sym_filesize_unit] = ACTIONS(1536), + [sym_duration_unit] = ACTIONS(1536), + [anon_sym_DQUOTE] = ACTIONS(1536), + [sym__str_single_quotes] = ACTIONS(1536), + [sym__str_back_ticks] = ACTIONS(1536), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1536), + [sym__entry_separator] = ACTIONS(1538), + [anon_sym_PLUS] = ACTIONS(1536), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1536), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1538), }, [217] = { - [sym__expr_parenthesized_immediate] = STATE(609), - [sym__immediate_decimal] = STATE(492), - [sym_val_variable] = STATE(609), + [sym__expr_parenthesized_immediate] = STATE(604), + [sym__immediate_decimal] = STATE(452), + [sym_val_variable] = STATE(604), [sym_comment] = STATE(217), - [anon_sym_export] = ACTIONS(1548), - [anon_sym_alias] = ACTIONS(1548), - [anon_sym_let] = ACTIONS(1548), - [anon_sym_let_DASHenv] = ACTIONS(1548), - [anon_sym_mut] = ACTIONS(1548), - [anon_sym_const] = ACTIONS(1548), - [aux_sym_cmd_identifier_token1] = ACTIONS(1548), - [aux_sym_cmd_identifier_token2] = ACTIONS(1548), - [aux_sym_cmd_identifier_token3] = ACTIONS(1548), - [aux_sym_cmd_identifier_token4] = ACTIONS(1548), - [aux_sym_cmd_identifier_token5] = ACTIONS(1548), - [aux_sym_cmd_identifier_token6] = ACTIONS(1548), - [aux_sym_cmd_identifier_token7] = ACTIONS(1548), - [aux_sym_cmd_identifier_token8] = ACTIONS(1548), - [aux_sym_cmd_identifier_token9] = ACTIONS(1548), - [aux_sym_cmd_identifier_token10] = ACTIONS(1548), - [aux_sym_cmd_identifier_token11] = ACTIONS(1548), - [aux_sym_cmd_identifier_token12] = ACTIONS(1548), - [aux_sym_cmd_identifier_token13] = ACTIONS(1548), - [aux_sym_cmd_identifier_token14] = ACTIONS(1548), - [aux_sym_cmd_identifier_token15] = ACTIONS(1548), - [aux_sym_cmd_identifier_token16] = ACTIONS(1548), - [aux_sym_cmd_identifier_token17] = ACTIONS(1548), - [aux_sym_cmd_identifier_token18] = ACTIONS(1548), - [aux_sym_cmd_identifier_token19] = ACTIONS(1548), - [aux_sym_cmd_identifier_token20] = ACTIONS(1548), - [aux_sym_cmd_identifier_token21] = ACTIONS(1548), - [aux_sym_cmd_identifier_token22] = ACTIONS(1548), - [aux_sym_cmd_identifier_token23] = ACTIONS(1548), - [aux_sym_cmd_identifier_token24] = ACTIONS(1548), - [aux_sym_cmd_identifier_token25] = ACTIONS(1548), - [aux_sym_cmd_identifier_token26] = ACTIONS(1548), - [aux_sym_cmd_identifier_token27] = ACTIONS(1548), - [aux_sym_cmd_identifier_token28] = ACTIONS(1548), - [aux_sym_cmd_identifier_token29] = ACTIONS(1548), - [aux_sym_cmd_identifier_token30] = ACTIONS(1548), - [aux_sym_cmd_identifier_token31] = ACTIONS(1548), - [aux_sym_cmd_identifier_token32] = ACTIONS(1548), - [aux_sym_cmd_identifier_token33] = ACTIONS(1548), - [aux_sym_cmd_identifier_token34] = ACTIONS(1548), - [aux_sym_cmd_identifier_token35] = ACTIONS(1548), - [aux_sym_cmd_identifier_token36] = ACTIONS(1548), - [anon_sym_true] = ACTIONS(1548), - [anon_sym_false] = ACTIONS(1548), - [anon_sym_null] = ACTIONS(1548), - [aux_sym_cmd_identifier_token38] = ACTIONS(1548), - [aux_sym_cmd_identifier_token39] = ACTIONS(1548), - [aux_sym_cmd_identifier_token40] = ACTIONS(1548), - [anon_sym_def] = ACTIONS(1548), - [anon_sym_export_DASHenv] = ACTIONS(1548), - [anon_sym_extern] = ACTIONS(1548), - [anon_sym_module] = ACTIONS(1548), - [anon_sym_use] = ACTIONS(1548), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_DOLLAR] = ACTIONS(1508), - [anon_sym_error] = ACTIONS(1548), - [anon_sym_list] = ACTIONS(1548), - [anon_sym_DASH] = ACTIONS(1548), - [anon_sym_break] = ACTIONS(1548), - [anon_sym_continue] = ACTIONS(1548), - [anon_sym_for] = ACTIONS(1548), - [anon_sym_in] = ACTIONS(1548), - [anon_sym_loop] = ACTIONS(1548), - [anon_sym_make] = ACTIONS(1548), - [anon_sym_while] = ACTIONS(1548), - [anon_sym_do] = ACTIONS(1548), - [anon_sym_if] = ACTIONS(1548), - [anon_sym_else] = ACTIONS(1548), - [anon_sym_match] = ACTIONS(1548), - [anon_sym_RBRACE] = ACTIONS(1548), - [anon_sym_try] = ACTIONS(1548), - [anon_sym_catch] = ACTIONS(1548), - [anon_sym_return] = ACTIONS(1548), - [anon_sym_source] = ACTIONS(1548), - [anon_sym_source_DASHenv] = ACTIONS(1548), - [anon_sym_register] = ACTIONS(1548), - [anon_sym_hide] = ACTIONS(1548), - [anon_sym_hide_DASHenv] = ACTIONS(1548), - [anon_sym_overlay] = ACTIONS(1548), - [anon_sym_new] = ACTIONS(1548), - [anon_sym_as] = ACTIONS(1548), - [anon_sym_LPAREN2] = ACTIONS(1510), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1548), - [aux_sym__immediate_decimal_token1] = ACTIONS(1512), - [aux_sym__immediate_decimal_token3] = ACTIONS(1512), - [aux_sym__immediate_decimal_token4] = ACTIONS(1514), - [aux_sym__immediate_decimal_token5] = ACTIONS(1516), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1548), - [aux_sym__val_number_decimal_token1] = ACTIONS(1548), - [aux_sym__val_number_decimal_token2] = ACTIONS(1548), - [aux_sym__val_number_decimal_token3] = ACTIONS(1548), - [aux_sym__val_number_decimal_token4] = ACTIONS(1548), - [aux_sym__val_number_token1] = ACTIONS(1548), - [aux_sym__val_number_token2] = ACTIONS(1548), - [aux_sym__val_number_token3] = ACTIONS(1548), - [anon_sym_DQUOTE] = ACTIONS(1548), - [sym__str_single_quotes] = ACTIONS(1548), - [sym__str_back_ticks] = ACTIONS(1548), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1548), - [sym__entry_separator] = ACTIONS(1550), - [anon_sym_PLUS] = ACTIONS(1548), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1552), + [anon_sym_export] = ACTIONS(1544), + [anon_sym_alias] = ACTIONS(1544), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_let_DASHenv] = ACTIONS(1544), + [anon_sym_mut] = ACTIONS(1544), + [anon_sym_const] = ACTIONS(1544), + [aux_sym_cmd_identifier_token1] = ACTIONS(1544), + [aux_sym_cmd_identifier_token2] = ACTIONS(1544), + [aux_sym_cmd_identifier_token3] = ACTIONS(1544), + [aux_sym_cmd_identifier_token4] = ACTIONS(1544), + [aux_sym_cmd_identifier_token5] = ACTIONS(1544), + [aux_sym_cmd_identifier_token6] = ACTIONS(1544), + [aux_sym_cmd_identifier_token7] = ACTIONS(1544), + [aux_sym_cmd_identifier_token8] = ACTIONS(1544), + [aux_sym_cmd_identifier_token9] = ACTIONS(1544), + [aux_sym_cmd_identifier_token10] = ACTIONS(1544), + [aux_sym_cmd_identifier_token11] = ACTIONS(1544), + [aux_sym_cmd_identifier_token12] = ACTIONS(1544), + [aux_sym_cmd_identifier_token13] = ACTIONS(1544), + [aux_sym_cmd_identifier_token14] = ACTIONS(1544), + [aux_sym_cmd_identifier_token15] = ACTIONS(1544), + [aux_sym_cmd_identifier_token16] = ACTIONS(1544), + [aux_sym_cmd_identifier_token17] = ACTIONS(1544), + [aux_sym_cmd_identifier_token18] = ACTIONS(1544), + [aux_sym_cmd_identifier_token19] = ACTIONS(1544), + [aux_sym_cmd_identifier_token20] = ACTIONS(1544), + [aux_sym_cmd_identifier_token21] = ACTIONS(1544), + [aux_sym_cmd_identifier_token22] = ACTIONS(1544), + [aux_sym_cmd_identifier_token23] = ACTIONS(1544), + [aux_sym_cmd_identifier_token24] = ACTIONS(1544), + [aux_sym_cmd_identifier_token25] = ACTIONS(1544), + [aux_sym_cmd_identifier_token26] = ACTIONS(1544), + [aux_sym_cmd_identifier_token27] = ACTIONS(1544), + [aux_sym_cmd_identifier_token28] = ACTIONS(1544), + [aux_sym_cmd_identifier_token29] = ACTIONS(1544), + [aux_sym_cmd_identifier_token30] = ACTIONS(1544), + [aux_sym_cmd_identifier_token31] = ACTIONS(1544), + [aux_sym_cmd_identifier_token32] = ACTIONS(1544), + [aux_sym_cmd_identifier_token33] = ACTIONS(1544), + [aux_sym_cmd_identifier_token34] = ACTIONS(1544), + [aux_sym_cmd_identifier_token35] = ACTIONS(1544), + [aux_sym_cmd_identifier_token36] = ACTIONS(1544), + [anon_sym_true] = ACTIONS(1544), + [anon_sym_false] = ACTIONS(1544), + [anon_sym_null] = ACTIONS(1544), + [aux_sym_cmd_identifier_token38] = ACTIONS(1544), + [aux_sym_cmd_identifier_token39] = ACTIONS(1544), + [aux_sym_cmd_identifier_token40] = ACTIONS(1544), + [anon_sym_def] = ACTIONS(1544), + [anon_sym_export_DASHenv] = ACTIONS(1544), + [anon_sym_extern] = ACTIONS(1544), + [anon_sym_module] = ACTIONS(1544), + [anon_sym_use] = ACTIONS(1544), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_DOLLAR] = ACTIONS(1546), + [anon_sym_error] = ACTIONS(1544), + [anon_sym_list] = ACTIONS(1544), + [anon_sym_DASH] = ACTIONS(1544), + [anon_sym_break] = ACTIONS(1544), + [anon_sym_continue] = ACTIONS(1544), + [anon_sym_for] = ACTIONS(1544), + [anon_sym_in] = ACTIONS(1544), + [anon_sym_loop] = ACTIONS(1544), + [anon_sym_make] = ACTIONS(1544), + [anon_sym_while] = ACTIONS(1544), + [anon_sym_do] = ACTIONS(1544), + [anon_sym_if] = ACTIONS(1544), + [anon_sym_else] = ACTIONS(1544), + [anon_sym_match] = ACTIONS(1544), + [anon_sym_RBRACE] = ACTIONS(1544), + [anon_sym_try] = ACTIONS(1544), + [anon_sym_catch] = ACTIONS(1544), + [anon_sym_return] = ACTIONS(1544), + [anon_sym_source] = ACTIONS(1544), + [anon_sym_source_DASHenv] = ACTIONS(1544), + [anon_sym_register] = ACTIONS(1544), + [anon_sym_hide] = ACTIONS(1544), + [anon_sym_hide_DASHenv] = ACTIONS(1544), + [anon_sym_overlay] = ACTIONS(1544), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_as] = ACTIONS(1544), + [anon_sym_LPAREN2] = ACTIONS(1548), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1544), + [aux_sym__immediate_decimal_token1] = ACTIONS(1550), + [aux_sym__immediate_decimal_token3] = ACTIONS(1550), + [aux_sym__immediate_decimal_token4] = ACTIONS(1552), + [aux_sym__immediate_decimal_token5] = ACTIONS(1554), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1544), + [aux_sym__val_number_decimal_token1] = ACTIONS(1544), + [aux_sym__val_number_decimal_token2] = ACTIONS(1544), + [aux_sym__val_number_decimal_token3] = ACTIONS(1544), + [aux_sym__val_number_decimal_token4] = ACTIONS(1544), + [aux_sym__val_number_token1] = ACTIONS(1544), + [aux_sym__val_number_token2] = ACTIONS(1544), + [aux_sym__val_number_token3] = ACTIONS(1544), + [anon_sym_DQUOTE] = ACTIONS(1544), + [sym__str_single_quotes] = ACTIONS(1544), + [sym__str_back_ticks] = ACTIONS(1544), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1544), + [sym__entry_separator] = ACTIONS(1556), + [anon_sym_PLUS] = ACTIONS(1544), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1558), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1556), }, [218] = { + [sym__expr_parenthesized_immediate] = STATE(449), + [sym__immediate_decimal] = STATE(390), + [sym_val_variable] = STATE(449), [sym_comment] = STATE(218), - [anon_sym_export] = ACTIONS(1554), - [anon_sym_alias] = ACTIONS(1554), - [anon_sym_let] = ACTIONS(1554), - [anon_sym_let_DASHenv] = ACTIONS(1554), - [anon_sym_mut] = ACTIONS(1554), - [anon_sym_const] = ACTIONS(1554), - [aux_sym_cmd_identifier_token1] = ACTIONS(1554), - [aux_sym_cmd_identifier_token2] = ACTIONS(1554), - [aux_sym_cmd_identifier_token3] = ACTIONS(1554), - [aux_sym_cmd_identifier_token4] = ACTIONS(1554), - [aux_sym_cmd_identifier_token5] = ACTIONS(1554), - [aux_sym_cmd_identifier_token6] = ACTIONS(1554), - [aux_sym_cmd_identifier_token7] = ACTIONS(1554), - [aux_sym_cmd_identifier_token8] = ACTIONS(1554), - [aux_sym_cmd_identifier_token9] = ACTIONS(1554), - [aux_sym_cmd_identifier_token10] = ACTIONS(1554), - [aux_sym_cmd_identifier_token11] = ACTIONS(1554), - [aux_sym_cmd_identifier_token12] = ACTIONS(1554), - [aux_sym_cmd_identifier_token13] = ACTIONS(1554), - [aux_sym_cmd_identifier_token14] = ACTIONS(1554), - [aux_sym_cmd_identifier_token15] = ACTIONS(1554), - [aux_sym_cmd_identifier_token16] = ACTIONS(1554), - [aux_sym_cmd_identifier_token17] = ACTIONS(1554), - [aux_sym_cmd_identifier_token18] = ACTIONS(1554), - [aux_sym_cmd_identifier_token19] = ACTIONS(1554), - [aux_sym_cmd_identifier_token20] = ACTIONS(1554), - [aux_sym_cmd_identifier_token21] = ACTIONS(1554), - [aux_sym_cmd_identifier_token22] = ACTIONS(1554), - [aux_sym_cmd_identifier_token23] = ACTIONS(1554), - [aux_sym_cmd_identifier_token24] = ACTIONS(1554), - [aux_sym_cmd_identifier_token25] = ACTIONS(1554), - [aux_sym_cmd_identifier_token26] = ACTIONS(1554), - [aux_sym_cmd_identifier_token27] = ACTIONS(1554), - [aux_sym_cmd_identifier_token28] = ACTIONS(1554), - [aux_sym_cmd_identifier_token29] = ACTIONS(1554), - [aux_sym_cmd_identifier_token30] = ACTIONS(1554), - [aux_sym_cmd_identifier_token31] = ACTIONS(1554), - [aux_sym_cmd_identifier_token32] = ACTIONS(1554), - [aux_sym_cmd_identifier_token33] = ACTIONS(1554), - [aux_sym_cmd_identifier_token34] = ACTIONS(1554), - [aux_sym_cmd_identifier_token35] = ACTIONS(1554), - [aux_sym_cmd_identifier_token36] = ACTIONS(1554), - [anon_sym_true] = ACTIONS(1554), - [anon_sym_false] = ACTIONS(1554), - [anon_sym_null] = ACTIONS(1554), - [aux_sym_cmd_identifier_token38] = ACTIONS(1554), - [aux_sym_cmd_identifier_token39] = ACTIONS(1554), - [aux_sym_cmd_identifier_token40] = ACTIONS(1554), - [anon_sym_def] = ACTIONS(1554), - [anon_sym_export_DASHenv] = ACTIONS(1554), - [anon_sym_extern] = ACTIONS(1554), - [anon_sym_module] = ACTIONS(1554), - [anon_sym_use] = ACTIONS(1554), - [anon_sym_LPAREN] = ACTIONS(1554), - [anon_sym_DOLLAR] = ACTIONS(1554), - [anon_sym_error] = ACTIONS(1554), - [anon_sym_list] = ACTIONS(1554), - [anon_sym_DASH] = ACTIONS(1554), - [anon_sym_break] = ACTIONS(1554), - [anon_sym_continue] = ACTIONS(1554), - [anon_sym_for] = ACTIONS(1554), - [anon_sym_in] = ACTIONS(1554), - [anon_sym_loop] = ACTIONS(1554), - [anon_sym_make] = ACTIONS(1554), - [anon_sym_while] = ACTIONS(1554), - [anon_sym_do] = ACTIONS(1554), - [anon_sym_if] = ACTIONS(1554), - [anon_sym_else] = ACTIONS(1554), - [anon_sym_match] = ACTIONS(1554), - [anon_sym_RBRACE] = ACTIONS(1554), - [anon_sym_try] = ACTIONS(1554), - [anon_sym_catch] = ACTIONS(1554), - [anon_sym_return] = ACTIONS(1554), - [anon_sym_source] = ACTIONS(1554), - [anon_sym_source_DASHenv] = ACTIONS(1554), - [anon_sym_register] = ACTIONS(1554), - [anon_sym_hide] = ACTIONS(1554), - [anon_sym_hide_DASHenv] = ACTIONS(1554), - [anon_sym_overlay] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1554), - [anon_sym_as] = ACTIONS(1554), - [anon_sym_LPAREN2] = ACTIONS(1556), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1554), - [anon_sym_DOT_DOT2] = ACTIONS(1554), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1556), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1556), - [aux_sym__immediate_decimal_token2] = ACTIONS(1558), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1554), - [aux_sym__val_number_decimal_token1] = ACTIONS(1554), - [aux_sym__val_number_decimal_token2] = ACTIONS(1554), - [aux_sym__val_number_decimal_token3] = ACTIONS(1554), - [aux_sym__val_number_decimal_token4] = ACTIONS(1554), - [aux_sym__val_number_token1] = ACTIONS(1554), - [aux_sym__val_number_token2] = ACTIONS(1554), - [aux_sym__val_number_token3] = ACTIONS(1554), - [sym_filesize_unit] = ACTIONS(1554), - [sym_duration_unit] = ACTIONS(1554), - [anon_sym_DQUOTE] = ACTIONS(1554), - [sym__str_single_quotes] = ACTIONS(1554), - [sym__str_back_ticks] = ACTIONS(1554), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1554), - [sym__entry_separator] = ACTIONS(1556), - [anon_sym_PLUS] = ACTIONS(1554), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1554), - [anon_sym_POUND] = ACTIONS(3), - }, - [219] = { - [sym__expr_parenthesized_immediate] = STATE(7334), - [sym_comment] = STATE(219), [anon_sym_export] = ACTIONS(1560), [anon_sym_alias] = ACTIONS(1560), [anon_sym_let] = ACTIONS(1560), @@ -102400,7 +103466,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_module] = ACTIONS(1560), [anon_sym_use] = ACTIONS(1560), [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_DOLLAR] = ACTIONS(1560), + [anon_sym_DOLLAR] = ACTIONS(1512), [anon_sym_error] = ACTIONS(1560), [anon_sym_list] = ACTIONS(1560), [anon_sym_DASH] = ACTIONS(1560), @@ -102427,11 +103493,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(1560), [anon_sym_new] = ACTIONS(1560), [anon_sym_as] = ACTIONS(1560), - [anon_sym_LPAREN2] = ACTIONS(1562), + [anon_sym_LPAREN2] = ACTIONS(1514), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1560), - [anon_sym_DOT_DOT2] = ACTIONS(1564), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1566), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1566), + [anon_sym_DOT] = ACTIONS(1562), + [aux_sym__immediate_decimal_token1] = ACTIONS(1564), + [aux_sym__immediate_decimal_token3] = ACTIONS(1564), + [aux_sym__immediate_decimal_token4] = ACTIONS(1566), + [aux_sym__immediate_decimal_token5] = ACTIONS(1568), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1560), [aux_sym__val_number_decimal_token1] = ACTIONS(1560), [aux_sym__val_number_decimal_token2] = ACTIONS(1560), @@ -102440,2919 +103508,567 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_token1] = ACTIONS(1560), [aux_sym__val_number_token2] = ACTIONS(1560), [aux_sym__val_number_token3] = ACTIONS(1560), - [sym_filesize_unit] = ACTIONS(1568), - [sym_duration_unit] = ACTIONS(1570), [anon_sym_DQUOTE] = ACTIONS(1560), [sym__str_single_quotes] = ACTIONS(1560), [sym__str_back_ticks] = ACTIONS(1560), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1560), - [sym__entry_separator] = ACTIONS(1572), + [sym__entry_separator] = ACTIONS(1570), [anon_sym_PLUS] = ACTIONS(1560), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1574), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1570), + }, + [219] = { + [sym__expr_parenthesized_immediate] = STATE(561), + [sym__immediate_decimal] = STATE(499), + [sym_val_variable] = STATE(561), + [sym_comment] = STATE(219), + [anon_sym_export] = ACTIONS(1510), + [anon_sym_alias] = ACTIONS(1510), + [anon_sym_let] = ACTIONS(1510), + [anon_sym_let_DASHenv] = ACTIONS(1510), + [anon_sym_mut] = ACTIONS(1510), + [anon_sym_const] = ACTIONS(1510), + [aux_sym_cmd_identifier_token1] = ACTIONS(1510), + [aux_sym_cmd_identifier_token2] = ACTIONS(1510), + [aux_sym_cmd_identifier_token3] = ACTIONS(1510), + [aux_sym_cmd_identifier_token4] = ACTIONS(1510), + [aux_sym_cmd_identifier_token5] = ACTIONS(1510), + [aux_sym_cmd_identifier_token6] = ACTIONS(1510), + [aux_sym_cmd_identifier_token7] = ACTIONS(1510), + [aux_sym_cmd_identifier_token8] = ACTIONS(1510), + [aux_sym_cmd_identifier_token9] = ACTIONS(1510), + [aux_sym_cmd_identifier_token10] = ACTIONS(1510), + [aux_sym_cmd_identifier_token11] = ACTIONS(1510), + [aux_sym_cmd_identifier_token12] = ACTIONS(1510), + [aux_sym_cmd_identifier_token13] = ACTIONS(1510), + [aux_sym_cmd_identifier_token14] = ACTIONS(1510), + [aux_sym_cmd_identifier_token15] = ACTIONS(1510), + [aux_sym_cmd_identifier_token16] = ACTIONS(1510), + [aux_sym_cmd_identifier_token17] = ACTIONS(1510), + [aux_sym_cmd_identifier_token18] = ACTIONS(1510), + [aux_sym_cmd_identifier_token19] = ACTIONS(1510), + [aux_sym_cmd_identifier_token20] = ACTIONS(1510), + [aux_sym_cmd_identifier_token21] = ACTIONS(1510), + [aux_sym_cmd_identifier_token22] = ACTIONS(1510), + [aux_sym_cmd_identifier_token23] = ACTIONS(1510), + [aux_sym_cmd_identifier_token24] = ACTIONS(1510), + [aux_sym_cmd_identifier_token25] = ACTIONS(1510), + [aux_sym_cmd_identifier_token26] = ACTIONS(1510), + [aux_sym_cmd_identifier_token27] = ACTIONS(1510), + [aux_sym_cmd_identifier_token28] = ACTIONS(1510), + [aux_sym_cmd_identifier_token29] = ACTIONS(1510), + [aux_sym_cmd_identifier_token30] = ACTIONS(1510), + [aux_sym_cmd_identifier_token31] = ACTIONS(1510), + [aux_sym_cmd_identifier_token32] = ACTIONS(1510), + [aux_sym_cmd_identifier_token33] = ACTIONS(1510), + [aux_sym_cmd_identifier_token34] = ACTIONS(1510), + [aux_sym_cmd_identifier_token35] = ACTIONS(1510), + [aux_sym_cmd_identifier_token36] = ACTIONS(1510), + [anon_sym_true] = ACTIONS(1510), + [anon_sym_false] = ACTIONS(1510), + [anon_sym_null] = ACTIONS(1510), + [aux_sym_cmd_identifier_token38] = ACTIONS(1510), + [aux_sym_cmd_identifier_token39] = ACTIONS(1510), + [aux_sym_cmd_identifier_token40] = ACTIONS(1510), + [anon_sym_def] = ACTIONS(1510), + [anon_sym_export_DASHenv] = ACTIONS(1510), + [anon_sym_extern] = ACTIONS(1510), + [anon_sym_module] = ACTIONS(1510), + [anon_sym_use] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1510), + [anon_sym_DOLLAR] = ACTIONS(1546), + [anon_sym_error] = ACTIONS(1510), + [anon_sym_list] = ACTIONS(1510), + [anon_sym_DASH] = ACTIONS(1510), + [anon_sym_break] = ACTIONS(1510), + [anon_sym_continue] = ACTIONS(1510), + [anon_sym_for] = ACTIONS(1510), + [anon_sym_in] = ACTIONS(1510), + [anon_sym_loop] = ACTIONS(1510), + [anon_sym_make] = ACTIONS(1510), + [anon_sym_while] = ACTIONS(1510), + [anon_sym_do] = ACTIONS(1510), + [anon_sym_if] = ACTIONS(1510), + [anon_sym_else] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1510), + [anon_sym_RBRACE] = ACTIONS(1510), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_catch] = ACTIONS(1510), + [anon_sym_return] = ACTIONS(1510), + [anon_sym_source] = ACTIONS(1510), + [anon_sym_source_DASHenv] = ACTIONS(1510), + [anon_sym_register] = ACTIONS(1510), + [anon_sym_hide] = ACTIONS(1510), + [anon_sym_hide_DASHenv] = ACTIONS(1510), + [anon_sym_overlay] = ACTIONS(1510), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_as] = ACTIONS(1510), + [anon_sym_LPAREN2] = ACTIONS(1548), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1510), + [aux_sym__immediate_decimal_token1] = ACTIONS(1550), + [aux_sym__immediate_decimal_token3] = ACTIONS(1550), + [aux_sym__immediate_decimal_token4] = ACTIONS(1552), + [aux_sym__immediate_decimal_token5] = ACTIONS(1554), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1510), + [aux_sym__val_number_decimal_token1] = ACTIONS(1510), + [aux_sym__val_number_decimal_token2] = ACTIONS(1510), + [aux_sym__val_number_decimal_token3] = ACTIONS(1510), + [aux_sym__val_number_decimal_token4] = ACTIONS(1510), + [aux_sym__val_number_token1] = ACTIONS(1510), + [aux_sym__val_number_token2] = ACTIONS(1510), + [aux_sym__val_number_token3] = ACTIONS(1510), + [anon_sym_DQUOTE] = ACTIONS(1510), + [sym__str_single_quotes] = ACTIONS(1510), + [sym__str_back_ticks] = ACTIONS(1510), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1510), + [sym__entry_separator] = ACTIONS(1524), + [anon_sym_PLUS] = ACTIONS(1510), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1526), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1524), }, [220] = { - [sym__expr_parenthesized_immediate] = STATE(607), - [sym__immediate_decimal] = STATE(608), - [sym_val_variable] = STATE(607), + [sym__expr_parenthesized_immediate] = STATE(492), + [sym__immediate_decimal] = STATE(386), + [sym_val_variable] = STATE(492), [sym_comment] = STATE(220), - [anon_sym_export] = ACTIONS(1576), - [anon_sym_alias] = ACTIONS(1576), - [anon_sym_let] = ACTIONS(1576), - [anon_sym_let_DASHenv] = ACTIONS(1576), - [anon_sym_mut] = ACTIONS(1576), - [anon_sym_const] = ACTIONS(1576), - [aux_sym_cmd_identifier_token1] = ACTIONS(1576), - [aux_sym_cmd_identifier_token2] = ACTIONS(1576), - [aux_sym_cmd_identifier_token3] = ACTIONS(1576), - [aux_sym_cmd_identifier_token4] = ACTIONS(1576), - [aux_sym_cmd_identifier_token5] = ACTIONS(1576), - [aux_sym_cmd_identifier_token6] = ACTIONS(1576), - [aux_sym_cmd_identifier_token7] = ACTIONS(1576), - [aux_sym_cmd_identifier_token8] = ACTIONS(1576), - [aux_sym_cmd_identifier_token9] = ACTIONS(1576), - [aux_sym_cmd_identifier_token10] = ACTIONS(1576), - [aux_sym_cmd_identifier_token11] = ACTIONS(1576), - [aux_sym_cmd_identifier_token12] = ACTIONS(1576), - [aux_sym_cmd_identifier_token13] = ACTIONS(1576), - [aux_sym_cmd_identifier_token14] = ACTIONS(1576), - [aux_sym_cmd_identifier_token15] = ACTIONS(1576), - [aux_sym_cmd_identifier_token16] = ACTIONS(1576), - [aux_sym_cmd_identifier_token17] = ACTIONS(1576), - [aux_sym_cmd_identifier_token18] = ACTIONS(1576), - [aux_sym_cmd_identifier_token19] = ACTIONS(1576), - [aux_sym_cmd_identifier_token20] = ACTIONS(1576), - [aux_sym_cmd_identifier_token21] = ACTIONS(1576), - [aux_sym_cmd_identifier_token22] = ACTIONS(1576), - [aux_sym_cmd_identifier_token23] = ACTIONS(1576), - [aux_sym_cmd_identifier_token24] = ACTIONS(1576), - [aux_sym_cmd_identifier_token25] = ACTIONS(1576), - [aux_sym_cmd_identifier_token26] = ACTIONS(1576), - [aux_sym_cmd_identifier_token27] = ACTIONS(1576), - [aux_sym_cmd_identifier_token28] = ACTIONS(1576), - [aux_sym_cmd_identifier_token29] = ACTIONS(1576), - [aux_sym_cmd_identifier_token30] = ACTIONS(1576), - [aux_sym_cmd_identifier_token31] = ACTIONS(1576), - [aux_sym_cmd_identifier_token32] = ACTIONS(1576), - [aux_sym_cmd_identifier_token33] = ACTIONS(1576), - [aux_sym_cmd_identifier_token34] = ACTIONS(1576), - [aux_sym_cmd_identifier_token35] = ACTIONS(1576), - [aux_sym_cmd_identifier_token36] = ACTIONS(1576), - [anon_sym_true] = ACTIONS(1576), - [anon_sym_false] = ACTIONS(1576), - [anon_sym_null] = ACTIONS(1576), - [aux_sym_cmd_identifier_token38] = ACTIONS(1576), - [aux_sym_cmd_identifier_token39] = ACTIONS(1576), - [aux_sym_cmd_identifier_token40] = ACTIONS(1576), - [anon_sym_def] = ACTIONS(1576), - [anon_sym_export_DASHenv] = ACTIONS(1576), - [anon_sym_extern] = ACTIONS(1576), - [anon_sym_module] = ACTIONS(1576), - [anon_sym_use] = ACTIONS(1576), - [anon_sym_LPAREN] = ACTIONS(1576), - [anon_sym_DOLLAR] = ACTIONS(1508), - [anon_sym_error] = ACTIONS(1576), - [anon_sym_list] = ACTIONS(1576), - [anon_sym_DASH] = ACTIONS(1576), - [anon_sym_break] = ACTIONS(1576), - [anon_sym_continue] = ACTIONS(1576), - [anon_sym_for] = ACTIONS(1576), - [anon_sym_in] = ACTIONS(1576), - [anon_sym_loop] = ACTIONS(1576), - [anon_sym_make] = ACTIONS(1576), - [anon_sym_while] = ACTIONS(1576), - [anon_sym_do] = ACTIONS(1576), - [anon_sym_if] = ACTIONS(1576), - [anon_sym_else] = ACTIONS(1576), - [anon_sym_match] = ACTIONS(1576), - [anon_sym_RBRACE] = ACTIONS(1576), - [anon_sym_try] = ACTIONS(1576), - [anon_sym_catch] = ACTIONS(1576), - [anon_sym_return] = ACTIONS(1576), - [anon_sym_source] = ACTIONS(1576), - [anon_sym_source_DASHenv] = ACTIONS(1576), - [anon_sym_register] = ACTIONS(1576), - [anon_sym_hide] = ACTIONS(1576), - [anon_sym_hide_DASHenv] = ACTIONS(1576), - [anon_sym_overlay] = ACTIONS(1576), - [anon_sym_new] = ACTIONS(1576), - [anon_sym_as] = ACTIONS(1576), - [anon_sym_LPAREN2] = ACTIONS(1510), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1576), + [anon_sym_export] = ACTIONS(1510), + [anon_sym_alias] = ACTIONS(1510), + [anon_sym_let] = ACTIONS(1510), + [anon_sym_let_DASHenv] = ACTIONS(1510), + [anon_sym_mut] = ACTIONS(1510), + [anon_sym_const] = ACTIONS(1510), + [aux_sym_cmd_identifier_token1] = ACTIONS(1510), + [aux_sym_cmd_identifier_token2] = ACTIONS(1510), + [aux_sym_cmd_identifier_token3] = ACTIONS(1510), + [aux_sym_cmd_identifier_token4] = ACTIONS(1510), + [aux_sym_cmd_identifier_token5] = ACTIONS(1510), + [aux_sym_cmd_identifier_token6] = ACTIONS(1510), + [aux_sym_cmd_identifier_token7] = ACTIONS(1510), + [aux_sym_cmd_identifier_token8] = ACTIONS(1510), + [aux_sym_cmd_identifier_token9] = ACTIONS(1510), + [aux_sym_cmd_identifier_token10] = ACTIONS(1510), + [aux_sym_cmd_identifier_token11] = ACTIONS(1510), + [aux_sym_cmd_identifier_token12] = ACTIONS(1510), + [aux_sym_cmd_identifier_token13] = ACTIONS(1510), + [aux_sym_cmd_identifier_token14] = ACTIONS(1510), + [aux_sym_cmd_identifier_token15] = ACTIONS(1510), + [aux_sym_cmd_identifier_token16] = ACTIONS(1510), + [aux_sym_cmd_identifier_token17] = ACTIONS(1510), + [aux_sym_cmd_identifier_token18] = ACTIONS(1510), + [aux_sym_cmd_identifier_token19] = ACTIONS(1510), + [aux_sym_cmd_identifier_token20] = ACTIONS(1510), + [aux_sym_cmd_identifier_token21] = ACTIONS(1510), + [aux_sym_cmd_identifier_token22] = ACTIONS(1510), + [aux_sym_cmd_identifier_token23] = ACTIONS(1510), + [aux_sym_cmd_identifier_token24] = ACTIONS(1510), + [aux_sym_cmd_identifier_token25] = ACTIONS(1510), + [aux_sym_cmd_identifier_token26] = ACTIONS(1510), + [aux_sym_cmd_identifier_token27] = ACTIONS(1510), + [aux_sym_cmd_identifier_token28] = ACTIONS(1510), + [aux_sym_cmd_identifier_token29] = ACTIONS(1510), + [aux_sym_cmd_identifier_token30] = ACTIONS(1510), + [aux_sym_cmd_identifier_token31] = ACTIONS(1510), + [aux_sym_cmd_identifier_token32] = ACTIONS(1510), + [aux_sym_cmd_identifier_token33] = ACTIONS(1510), + [aux_sym_cmd_identifier_token34] = ACTIONS(1510), + [aux_sym_cmd_identifier_token35] = ACTIONS(1510), + [aux_sym_cmd_identifier_token36] = ACTIONS(1510), + [anon_sym_true] = ACTIONS(1524), + [anon_sym_false] = ACTIONS(1524), + [anon_sym_null] = ACTIONS(1524), + [aux_sym_cmd_identifier_token38] = ACTIONS(1510), + [aux_sym_cmd_identifier_token39] = ACTIONS(1524), + [aux_sym_cmd_identifier_token40] = ACTIONS(1524), + [anon_sym_def] = ACTIONS(1510), + [anon_sym_export_DASHenv] = ACTIONS(1510), + [anon_sym_extern] = ACTIONS(1510), + [anon_sym_module] = ACTIONS(1510), + [anon_sym_use] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1510), + [anon_sym_DOLLAR] = ACTIONS(1572), + [anon_sym_error] = ACTIONS(1510), + [anon_sym_list] = ACTIONS(1510), + [anon_sym_DASH] = ACTIONS(1510), + [anon_sym_break] = ACTIONS(1510), + [anon_sym_continue] = ACTIONS(1510), + [anon_sym_for] = ACTIONS(1510), + [anon_sym_in] = ACTIONS(1510), + [anon_sym_loop] = ACTIONS(1510), + [anon_sym_make] = ACTIONS(1510), + [anon_sym_while] = ACTIONS(1510), + [anon_sym_do] = ACTIONS(1510), + [anon_sym_if] = ACTIONS(1510), + [anon_sym_else] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1510), + [anon_sym_RBRACE] = ACTIONS(1524), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_catch] = ACTIONS(1510), + [anon_sym_return] = ACTIONS(1510), + [anon_sym_source] = ACTIONS(1510), + [anon_sym_source_DASHenv] = ACTIONS(1510), + [anon_sym_register] = ACTIONS(1510), + [anon_sym_hide] = ACTIONS(1510), + [anon_sym_hide_DASHenv] = ACTIONS(1510), + [anon_sym_overlay] = ACTIONS(1510), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_as] = ACTIONS(1510), + [anon_sym_LPAREN2] = ACTIONS(1574), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1524), + [anon_sym_DOT] = ACTIONS(1576), [aux_sym__immediate_decimal_token1] = ACTIONS(1578), - [aux_sym__immediate_decimal_token3] = ACTIONS(1578), - [aux_sym__immediate_decimal_token4] = ACTIONS(1580), - [aux_sym__immediate_decimal_token5] = ACTIONS(1582), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1576), - [aux_sym__val_number_decimal_token1] = ACTIONS(1576), - [aux_sym__val_number_decimal_token2] = ACTIONS(1576), - [aux_sym__val_number_decimal_token3] = ACTIONS(1576), - [aux_sym__val_number_decimal_token4] = ACTIONS(1576), - [aux_sym__val_number_token1] = ACTIONS(1576), - [aux_sym__val_number_token2] = ACTIONS(1576), - [aux_sym__val_number_token3] = ACTIONS(1576), - [anon_sym_DQUOTE] = ACTIONS(1576), - [sym__str_single_quotes] = ACTIONS(1576), - [sym__str_back_ticks] = ACTIONS(1576), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1576), - [sym__entry_separator] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1576), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__immediate_decimal_token3] = ACTIONS(1580), + [aux_sym__immediate_decimal_token4] = ACTIONS(1582), + [aux_sym__immediate_decimal_token5] = ACTIONS(1584), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1524), + [aux_sym__val_number_decimal_token1] = ACTIONS(1510), + [aux_sym__val_number_decimal_token2] = ACTIONS(1510), + [aux_sym__val_number_decimal_token3] = ACTIONS(1510), + [aux_sym__val_number_decimal_token4] = ACTIONS(1510), + [aux_sym__val_number_token1] = ACTIONS(1524), + [aux_sym__val_number_token2] = ACTIONS(1524), + [aux_sym__val_number_token3] = ACTIONS(1524), + [anon_sym_DQUOTE] = ACTIONS(1524), + [sym__str_single_quotes] = ACTIONS(1524), + [sym__str_back_ticks] = ACTIONS(1524), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1524), + [anon_sym_PLUS] = ACTIONS(1510), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1526), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1524), }, [221] = { - [sym__expr_parenthesized_immediate] = STATE(605), - [sym__immediate_decimal] = STATE(606), - [sym_val_variable] = STATE(605), + [sym__expr_parenthesized_immediate] = STATE(490), + [sym__immediate_decimal] = STATE(491), + [sym_val_variable] = STATE(490), [sym_comment] = STATE(221), - [anon_sym_export] = ACTIONS(1586), - [anon_sym_alias] = ACTIONS(1586), - [anon_sym_let] = ACTIONS(1586), - [anon_sym_let_DASHenv] = ACTIONS(1586), - [anon_sym_mut] = ACTIONS(1586), - [anon_sym_const] = ACTIONS(1586), - [aux_sym_cmd_identifier_token1] = ACTIONS(1586), - [aux_sym_cmd_identifier_token2] = ACTIONS(1586), - [aux_sym_cmd_identifier_token3] = ACTIONS(1586), - [aux_sym_cmd_identifier_token4] = ACTIONS(1586), - [aux_sym_cmd_identifier_token5] = ACTIONS(1586), - [aux_sym_cmd_identifier_token6] = ACTIONS(1586), - [aux_sym_cmd_identifier_token7] = ACTIONS(1586), - [aux_sym_cmd_identifier_token8] = ACTIONS(1586), - [aux_sym_cmd_identifier_token9] = ACTIONS(1586), - [aux_sym_cmd_identifier_token10] = ACTIONS(1586), - [aux_sym_cmd_identifier_token11] = ACTIONS(1586), - [aux_sym_cmd_identifier_token12] = ACTIONS(1586), - [aux_sym_cmd_identifier_token13] = ACTIONS(1586), - [aux_sym_cmd_identifier_token14] = ACTIONS(1586), - [aux_sym_cmd_identifier_token15] = ACTIONS(1586), - [aux_sym_cmd_identifier_token16] = ACTIONS(1586), - [aux_sym_cmd_identifier_token17] = ACTIONS(1586), - [aux_sym_cmd_identifier_token18] = ACTIONS(1586), - [aux_sym_cmd_identifier_token19] = ACTIONS(1586), - [aux_sym_cmd_identifier_token20] = ACTIONS(1586), - [aux_sym_cmd_identifier_token21] = ACTIONS(1586), - [aux_sym_cmd_identifier_token22] = ACTIONS(1586), - [aux_sym_cmd_identifier_token23] = ACTIONS(1586), - [aux_sym_cmd_identifier_token24] = ACTIONS(1586), - [aux_sym_cmd_identifier_token25] = ACTIONS(1586), - [aux_sym_cmd_identifier_token26] = ACTIONS(1586), - [aux_sym_cmd_identifier_token27] = ACTIONS(1586), - [aux_sym_cmd_identifier_token28] = ACTIONS(1586), - [aux_sym_cmd_identifier_token29] = ACTIONS(1586), - [aux_sym_cmd_identifier_token30] = ACTIONS(1586), - [aux_sym_cmd_identifier_token31] = ACTIONS(1586), - [aux_sym_cmd_identifier_token32] = ACTIONS(1586), - [aux_sym_cmd_identifier_token33] = ACTIONS(1586), - [aux_sym_cmd_identifier_token34] = ACTIONS(1586), - [aux_sym_cmd_identifier_token35] = ACTIONS(1586), - [aux_sym_cmd_identifier_token36] = ACTIONS(1586), - [anon_sym_true] = ACTIONS(1586), - [anon_sym_false] = ACTIONS(1586), - [anon_sym_null] = ACTIONS(1586), - [aux_sym_cmd_identifier_token38] = ACTIONS(1586), - [aux_sym_cmd_identifier_token39] = ACTIONS(1586), - [aux_sym_cmd_identifier_token40] = ACTIONS(1586), - [anon_sym_def] = ACTIONS(1586), - [anon_sym_export_DASHenv] = ACTIONS(1586), - [anon_sym_extern] = ACTIONS(1586), - [anon_sym_module] = ACTIONS(1586), - [anon_sym_use] = ACTIONS(1586), - [anon_sym_LPAREN] = ACTIONS(1586), - [anon_sym_DOLLAR] = ACTIONS(1508), - [anon_sym_error] = ACTIONS(1586), - [anon_sym_list] = ACTIONS(1586), - [anon_sym_DASH] = ACTIONS(1586), - [anon_sym_break] = ACTIONS(1586), - [anon_sym_continue] = ACTIONS(1586), - [anon_sym_for] = ACTIONS(1586), - [anon_sym_in] = ACTIONS(1586), - [anon_sym_loop] = ACTIONS(1586), - [anon_sym_make] = ACTIONS(1586), - [anon_sym_while] = ACTIONS(1586), - [anon_sym_do] = ACTIONS(1586), - [anon_sym_if] = ACTIONS(1586), - [anon_sym_else] = ACTIONS(1586), - [anon_sym_match] = ACTIONS(1586), - [anon_sym_RBRACE] = ACTIONS(1586), - [anon_sym_try] = ACTIONS(1586), - [anon_sym_catch] = ACTIONS(1586), - [anon_sym_return] = ACTIONS(1586), - [anon_sym_source] = ACTIONS(1586), - [anon_sym_source_DASHenv] = ACTIONS(1586), - [anon_sym_register] = ACTIONS(1586), - [anon_sym_hide] = ACTIONS(1586), - [anon_sym_hide_DASHenv] = ACTIONS(1586), - [anon_sym_overlay] = ACTIONS(1586), - [anon_sym_new] = ACTIONS(1586), - [anon_sym_as] = ACTIONS(1586), - [anon_sym_LPAREN2] = ACTIONS(1510), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1586), - [aux_sym__immediate_decimal_token1] = ACTIONS(1578), - [aux_sym__immediate_decimal_token3] = ACTIONS(1578), - [aux_sym__immediate_decimal_token4] = ACTIONS(1580), - [aux_sym__immediate_decimal_token5] = ACTIONS(1582), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1586), - [aux_sym__val_number_decimal_token1] = ACTIONS(1586), - [aux_sym__val_number_decimal_token2] = ACTIONS(1586), - [aux_sym__val_number_decimal_token3] = ACTIONS(1586), - [aux_sym__val_number_decimal_token4] = ACTIONS(1586), - [aux_sym__val_number_token1] = ACTIONS(1586), - [aux_sym__val_number_token2] = ACTIONS(1586), - [aux_sym__val_number_token3] = ACTIONS(1586), - [anon_sym_DQUOTE] = ACTIONS(1586), - [sym__str_single_quotes] = ACTIONS(1586), - [sym__str_back_ticks] = ACTIONS(1586), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1586), - [sym__entry_separator] = ACTIONS(1588), - [anon_sym_PLUS] = ACTIONS(1586), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1560), + [anon_sym_alias] = ACTIONS(1560), + [anon_sym_let] = ACTIONS(1560), + [anon_sym_let_DASHenv] = ACTIONS(1560), + [anon_sym_mut] = ACTIONS(1560), + [anon_sym_const] = ACTIONS(1560), + [aux_sym_cmd_identifier_token1] = ACTIONS(1560), + [aux_sym_cmd_identifier_token2] = ACTIONS(1560), + [aux_sym_cmd_identifier_token3] = ACTIONS(1560), + [aux_sym_cmd_identifier_token4] = ACTIONS(1560), + [aux_sym_cmd_identifier_token5] = ACTIONS(1560), + [aux_sym_cmd_identifier_token6] = ACTIONS(1560), + [aux_sym_cmd_identifier_token7] = ACTIONS(1560), + [aux_sym_cmd_identifier_token8] = ACTIONS(1560), + [aux_sym_cmd_identifier_token9] = ACTIONS(1560), + [aux_sym_cmd_identifier_token10] = ACTIONS(1560), + [aux_sym_cmd_identifier_token11] = ACTIONS(1560), + [aux_sym_cmd_identifier_token12] = ACTIONS(1560), + [aux_sym_cmd_identifier_token13] = ACTIONS(1560), + [aux_sym_cmd_identifier_token14] = ACTIONS(1560), + [aux_sym_cmd_identifier_token15] = ACTIONS(1560), + [aux_sym_cmd_identifier_token16] = ACTIONS(1560), + [aux_sym_cmd_identifier_token17] = ACTIONS(1560), + [aux_sym_cmd_identifier_token18] = ACTIONS(1560), + [aux_sym_cmd_identifier_token19] = ACTIONS(1560), + [aux_sym_cmd_identifier_token20] = ACTIONS(1560), + [aux_sym_cmd_identifier_token21] = ACTIONS(1560), + [aux_sym_cmd_identifier_token22] = ACTIONS(1560), + [aux_sym_cmd_identifier_token23] = ACTIONS(1560), + [aux_sym_cmd_identifier_token24] = ACTIONS(1560), + [aux_sym_cmd_identifier_token25] = ACTIONS(1560), + [aux_sym_cmd_identifier_token26] = ACTIONS(1560), + [aux_sym_cmd_identifier_token27] = ACTIONS(1560), + [aux_sym_cmd_identifier_token28] = ACTIONS(1560), + [aux_sym_cmd_identifier_token29] = ACTIONS(1560), + [aux_sym_cmd_identifier_token30] = ACTIONS(1560), + [aux_sym_cmd_identifier_token31] = ACTIONS(1560), + [aux_sym_cmd_identifier_token32] = ACTIONS(1560), + [aux_sym_cmd_identifier_token33] = ACTIONS(1560), + [aux_sym_cmd_identifier_token34] = ACTIONS(1560), + [aux_sym_cmd_identifier_token35] = ACTIONS(1560), + [aux_sym_cmd_identifier_token36] = ACTIONS(1560), + [anon_sym_true] = ACTIONS(1570), + [anon_sym_false] = ACTIONS(1570), + [anon_sym_null] = ACTIONS(1570), + [aux_sym_cmd_identifier_token38] = ACTIONS(1560), + [aux_sym_cmd_identifier_token39] = ACTIONS(1570), + [aux_sym_cmd_identifier_token40] = ACTIONS(1570), + [anon_sym_def] = ACTIONS(1560), + [anon_sym_export_DASHenv] = ACTIONS(1560), + [anon_sym_extern] = ACTIONS(1560), + [anon_sym_module] = ACTIONS(1560), + [anon_sym_use] = ACTIONS(1560), + [anon_sym_LPAREN] = ACTIONS(1560), + [anon_sym_DOLLAR] = ACTIONS(1572), + [anon_sym_error] = ACTIONS(1560), + [anon_sym_list] = ACTIONS(1560), + [anon_sym_DASH] = ACTIONS(1560), + [anon_sym_break] = ACTIONS(1560), + [anon_sym_continue] = ACTIONS(1560), + [anon_sym_for] = ACTIONS(1560), + [anon_sym_in] = ACTIONS(1560), + [anon_sym_loop] = ACTIONS(1560), + [anon_sym_make] = ACTIONS(1560), + [anon_sym_while] = ACTIONS(1560), + [anon_sym_do] = ACTIONS(1560), + [anon_sym_if] = ACTIONS(1560), + [anon_sym_else] = ACTIONS(1560), + [anon_sym_match] = ACTIONS(1560), + [anon_sym_RBRACE] = ACTIONS(1570), + [anon_sym_try] = ACTIONS(1560), + [anon_sym_catch] = ACTIONS(1560), + [anon_sym_return] = ACTIONS(1560), + [anon_sym_source] = ACTIONS(1560), + [anon_sym_source_DASHenv] = ACTIONS(1560), + [anon_sym_register] = ACTIONS(1560), + [anon_sym_hide] = ACTIONS(1560), + [anon_sym_hide_DASHenv] = ACTIONS(1560), + [anon_sym_overlay] = ACTIONS(1560), + [anon_sym_new] = ACTIONS(1560), + [anon_sym_as] = ACTIONS(1560), + [anon_sym_LPAREN2] = ACTIONS(1574), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1570), + [anon_sym_DOT] = ACTIONS(1586), + [aux_sym__immediate_decimal_token1] = ACTIONS(1588), + [aux_sym__immediate_decimal_token3] = ACTIONS(1590), + [aux_sym__immediate_decimal_token4] = ACTIONS(1592), + [aux_sym__immediate_decimal_token5] = ACTIONS(1594), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1570), + [aux_sym__val_number_decimal_token1] = ACTIONS(1560), + [aux_sym__val_number_decimal_token2] = ACTIONS(1560), + [aux_sym__val_number_decimal_token3] = ACTIONS(1560), + [aux_sym__val_number_decimal_token4] = ACTIONS(1560), + [aux_sym__val_number_token1] = ACTIONS(1570), + [aux_sym__val_number_token2] = ACTIONS(1570), + [aux_sym__val_number_token3] = ACTIONS(1570), + [anon_sym_DQUOTE] = ACTIONS(1570), + [sym__str_single_quotes] = ACTIONS(1570), + [sym__str_back_ticks] = ACTIONS(1570), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1570), + [anon_sym_PLUS] = ACTIONS(1560), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1570), }, [222] = { - [sym__expr_parenthesized_immediate] = STATE(634), - [sym__immediate_decimal] = STATE(541), - [sym_val_variable] = STATE(634), [sym_comment] = STATE(222), - [anon_sym_export] = ACTIONS(1478), - [anon_sym_alias] = ACTIONS(1478), - [anon_sym_let] = ACTIONS(1478), - [anon_sym_let_DASHenv] = ACTIONS(1478), - [anon_sym_mut] = ACTIONS(1478), - [anon_sym_const] = ACTIONS(1478), - [aux_sym_cmd_identifier_token1] = ACTIONS(1478), - [aux_sym_cmd_identifier_token2] = ACTIONS(1478), - [aux_sym_cmd_identifier_token3] = ACTIONS(1478), - [aux_sym_cmd_identifier_token4] = ACTIONS(1478), - [aux_sym_cmd_identifier_token5] = ACTIONS(1478), - [aux_sym_cmd_identifier_token6] = ACTIONS(1478), - [aux_sym_cmd_identifier_token7] = ACTIONS(1478), - [aux_sym_cmd_identifier_token8] = ACTIONS(1478), - [aux_sym_cmd_identifier_token9] = ACTIONS(1478), - [aux_sym_cmd_identifier_token10] = ACTIONS(1478), - [aux_sym_cmd_identifier_token11] = ACTIONS(1478), - [aux_sym_cmd_identifier_token12] = ACTIONS(1478), - [aux_sym_cmd_identifier_token13] = ACTIONS(1478), - [aux_sym_cmd_identifier_token14] = ACTIONS(1478), - [aux_sym_cmd_identifier_token15] = ACTIONS(1478), - [aux_sym_cmd_identifier_token16] = ACTIONS(1478), - [aux_sym_cmd_identifier_token17] = ACTIONS(1478), - [aux_sym_cmd_identifier_token18] = ACTIONS(1478), - [aux_sym_cmd_identifier_token19] = ACTIONS(1478), - [aux_sym_cmd_identifier_token20] = ACTIONS(1478), - [aux_sym_cmd_identifier_token21] = ACTIONS(1478), - [aux_sym_cmd_identifier_token22] = ACTIONS(1478), - [aux_sym_cmd_identifier_token23] = ACTIONS(1478), - [aux_sym_cmd_identifier_token24] = ACTIONS(1478), - [aux_sym_cmd_identifier_token25] = ACTIONS(1478), - [aux_sym_cmd_identifier_token26] = ACTIONS(1478), - [aux_sym_cmd_identifier_token27] = ACTIONS(1478), - [aux_sym_cmd_identifier_token28] = ACTIONS(1478), - [aux_sym_cmd_identifier_token29] = ACTIONS(1478), - [aux_sym_cmd_identifier_token30] = ACTIONS(1478), - [aux_sym_cmd_identifier_token31] = ACTIONS(1478), - [aux_sym_cmd_identifier_token32] = ACTIONS(1478), - [aux_sym_cmd_identifier_token33] = ACTIONS(1478), - [aux_sym_cmd_identifier_token34] = ACTIONS(1478), - [aux_sym_cmd_identifier_token35] = ACTIONS(1478), - [aux_sym_cmd_identifier_token36] = ACTIONS(1478), - [anon_sym_true] = ACTIONS(1492), - [anon_sym_false] = ACTIONS(1492), - [anon_sym_null] = ACTIONS(1492), - [aux_sym_cmd_identifier_token38] = ACTIONS(1478), - [aux_sym_cmd_identifier_token39] = ACTIONS(1492), - [aux_sym_cmd_identifier_token40] = ACTIONS(1492), - [anon_sym_def] = ACTIONS(1478), - [anon_sym_export_DASHenv] = ACTIONS(1478), - [anon_sym_extern] = ACTIONS(1478), - [anon_sym_module] = ACTIONS(1478), - [anon_sym_use] = ACTIONS(1478), - [anon_sym_LPAREN] = ACTIONS(1478), - [anon_sym_DOLLAR] = ACTIONS(1590), - [anon_sym_error] = ACTIONS(1478), - [anon_sym_list] = ACTIONS(1478), - [anon_sym_DASH] = ACTIONS(1478), - [anon_sym_break] = ACTIONS(1478), - [anon_sym_continue] = ACTIONS(1478), - [anon_sym_for] = ACTIONS(1478), - [anon_sym_in] = ACTIONS(1478), - [anon_sym_loop] = ACTIONS(1478), - [anon_sym_make] = ACTIONS(1478), - [anon_sym_while] = ACTIONS(1478), - [anon_sym_do] = ACTIONS(1478), - [anon_sym_if] = ACTIONS(1478), - [anon_sym_else] = ACTIONS(1478), - [anon_sym_match] = ACTIONS(1478), - [anon_sym_RBRACE] = ACTIONS(1492), - [anon_sym_try] = ACTIONS(1478), - [anon_sym_catch] = ACTIONS(1478), - [anon_sym_return] = ACTIONS(1478), - [anon_sym_source] = ACTIONS(1478), - [anon_sym_source_DASHenv] = ACTIONS(1478), - [anon_sym_register] = ACTIONS(1478), - [anon_sym_hide] = ACTIONS(1478), - [anon_sym_hide_DASHenv] = ACTIONS(1478), - [anon_sym_overlay] = ACTIONS(1478), - [anon_sym_new] = ACTIONS(1478), - [anon_sym_as] = ACTIONS(1478), - [anon_sym_LPAREN2] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1492), - [aux_sym__immediate_decimal_token1] = ACTIONS(1594), - [aux_sym__immediate_decimal_token3] = ACTIONS(1596), - [aux_sym__immediate_decimal_token4] = ACTIONS(1598), - [aux_sym__immediate_decimal_token5] = ACTIONS(1600), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1492), - [aux_sym__val_number_decimal_token1] = ACTIONS(1478), - [aux_sym__val_number_decimal_token2] = ACTIONS(1478), - [aux_sym__val_number_decimal_token3] = ACTIONS(1478), - [aux_sym__val_number_decimal_token4] = ACTIONS(1478), - [aux_sym__val_number_token1] = ACTIONS(1492), - [aux_sym__val_number_token2] = ACTIONS(1492), - [aux_sym__val_number_token3] = ACTIONS(1492), - [anon_sym_DQUOTE] = ACTIONS(1492), - [sym__str_single_quotes] = ACTIONS(1492), - [sym__str_back_ticks] = ACTIONS(1492), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1492), - [anon_sym_PLUS] = ACTIONS(1478), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1494), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(1596), + [anon_sym_alias] = ACTIONS(1596), + [anon_sym_let] = ACTIONS(1596), + [anon_sym_let_DASHenv] = ACTIONS(1596), + [anon_sym_mut] = ACTIONS(1596), + [anon_sym_const] = ACTIONS(1596), + [aux_sym_cmd_identifier_token1] = ACTIONS(1596), + [aux_sym_cmd_identifier_token2] = ACTIONS(1596), + [aux_sym_cmd_identifier_token3] = ACTIONS(1596), + [aux_sym_cmd_identifier_token4] = ACTIONS(1596), + [aux_sym_cmd_identifier_token5] = ACTIONS(1596), + [aux_sym_cmd_identifier_token6] = ACTIONS(1596), + [aux_sym_cmd_identifier_token7] = ACTIONS(1596), + [aux_sym_cmd_identifier_token8] = ACTIONS(1596), + [aux_sym_cmd_identifier_token9] = ACTIONS(1596), + [aux_sym_cmd_identifier_token10] = ACTIONS(1596), + [aux_sym_cmd_identifier_token11] = ACTIONS(1596), + [aux_sym_cmd_identifier_token12] = ACTIONS(1596), + [aux_sym_cmd_identifier_token13] = ACTIONS(1596), + [aux_sym_cmd_identifier_token14] = ACTIONS(1596), + [aux_sym_cmd_identifier_token15] = ACTIONS(1596), + [aux_sym_cmd_identifier_token16] = ACTIONS(1596), + [aux_sym_cmd_identifier_token17] = ACTIONS(1596), + [aux_sym_cmd_identifier_token18] = ACTIONS(1596), + [aux_sym_cmd_identifier_token19] = ACTIONS(1596), + [aux_sym_cmd_identifier_token20] = ACTIONS(1596), + [aux_sym_cmd_identifier_token21] = ACTIONS(1596), + [aux_sym_cmd_identifier_token22] = ACTIONS(1596), + [aux_sym_cmd_identifier_token23] = ACTIONS(1596), + [aux_sym_cmd_identifier_token24] = ACTIONS(1596), + [aux_sym_cmd_identifier_token25] = ACTIONS(1596), + [aux_sym_cmd_identifier_token26] = ACTIONS(1596), + [aux_sym_cmd_identifier_token27] = ACTIONS(1596), + [aux_sym_cmd_identifier_token28] = ACTIONS(1596), + [aux_sym_cmd_identifier_token29] = ACTIONS(1596), + [aux_sym_cmd_identifier_token30] = ACTIONS(1596), + [aux_sym_cmd_identifier_token31] = ACTIONS(1596), + [aux_sym_cmd_identifier_token32] = ACTIONS(1596), + [aux_sym_cmd_identifier_token33] = ACTIONS(1596), + [aux_sym_cmd_identifier_token34] = ACTIONS(1596), + [aux_sym_cmd_identifier_token35] = ACTIONS(1596), + [aux_sym_cmd_identifier_token36] = ACTIONS(1596), + [anon_sym_true] = ACTIONS(1596), + [anon_sym_false] = ACTIONS(1596), + [anon_sym_null] = ACTIONS(1596), + [aux_sym_cmd_identifier_token38] = ACTIONS(1596), + [aux_sym_cmd_identifier_token39] = ACTIONS(1596), + [aux_sym_cmd_identifier_token40] = ACTIONS(1596), + [anon_sym_def] = ACTIONS(1596), + [anon_sym_export_DASHenv] = ACTIONS(1596), + [anon_sym_extern] = ACTIONS(1596), + [anon_sym_module] = ACTIONS(1596), + [anon_sym_use] = ACTIONS(1596), + [anon_sym_LPAREN] = ACTIONS(1596), + [anon_sym_DOLLAR] = ACTIONS(1596), + [anon_sym_error] = ACTIONS(1596), + [anon_sym_list] = ACTIONS(1596), + [anon_sym_DASH] = ACTIONS(1596), + [anon_sym_break] = ACTIONS(1596), + [anon_sym_continue] = ACTIONS(1596), + [anon_sym_for] = ACTIONS(1596), + [anon_sym_in] = ACTIONS(1596), + [anon_sym_loop] = ACTIONS(1596), + [anon_sym_make] = ACTIONS(1596), + [anon_sym_while] = ACTIONS(1596), + [anon_sym_do] = ACTIONS(1596), + [anon_sym_if] = ACTIONS(1596), + [anon_sym_else] = ACTIONS(1596), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_RBRACE] = ACTIONS(1596), + [anon_sym_try] = ACTIONS(1596), + [anon_sym_catch] = ACTIONS(1596), + [anon_sym_return] = ACTIONS(1596), + [anon_sym_source] = ACTIONS(1596), + [anon_sym_source_DASHenv] = ACTIONS(1596), + [anon_sym_register] = ACTIONS(1596), + [anon_sym_hide] = ACTIONS(1596), + [anon_sym_hide_DASHenv] = ACTIONS(1596), + [anon_sym_overlay] = ACTIONS(1596), + [anon_sym_new] = ACTIONS(1596), + [anon_sym_as] = ACTIONS(1596), + [anon_sym_LPAREN2] = ACTIONS(1598), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1596), + [anon_sym_DOT_DOT2] = ACTIONS(1596), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1598), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1598), + [aux_sym__immediate_decimal_token2] = ACTIONS(1600), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1596), + [aux_sym__val_number_decimal_token1] = ACTIONS(1596), + [aux_sym__val_number_decimal_token2] = ACTIONS(1596), + [aux_sym__val_number_decimal_token3] = ACTIONS(1596), + [aux_sym__val_number_decimal_token4] = ACTIONS(1596), + [aux_sym__val_number_token1] = ACTIONS(1596), + [aux_sym__val_number_token2] = ACTIONS(1596), + [aux_sym__val_number_token3] = ACTIONS(1596), + [sym_filesize_unit] = ACTIONS(1596), + [sym_duration_unit] = ACTIONS(1596), + [anon_sym_DQUOTE] = ACTIONS(1596), + [sym__str_single_quotes] = ACTIONS(1596), + [sym__str_back_ticks] = ACTIONS(1596), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1596), + [sym__entry_separator] = ACTIONS(1598), + [anon_sym_PLUS] = ACTIONS(1596), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1596), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1598), }, [223] = { - [sym__expr_parenthesized_immediate] = STATE(644), - [sym__immediate_decimal] = STATE(543), - [sym_val_variable] = STATE(644), [sym_comment] = STATE(223), - [anon_sym_export] = ACTIONS(1548), - [anon_sym_alias] = ACTIONS(1548), - [anon_sym_let] = ACTIONS(1548), - [anon_sym_let_DASHenv] = ACTIONS(1548), - [anon_sym_mut] = ACTIONS(1548), - [anon_sym_const] = ACTIONS(1548), - [aux_sym_cmd_identifier_token1] = ACTIONS(1548), - [aux_sym_cmd_identifier_token2] = ACTIONS(1548), - [aux_sym_cmd_identifier_token3] = ACTIONS(1548), - [aux_sym_cmd_identifier_token4] = ACTIONS(1548), - [aux_sym_cmd_identifier_token5] = ACTIONS(1548), - [aux_sym_cmd_identifier_token6] = ACTIONS(1548), - [aux_sym_cmd_identifier_token7] = ACTIONS(1548), - [aux_sym_cmd_identifier_token8] = ACTIONS(1548), - [aux_sym_cmd_identifier_token9] = ACTIONS(1548), - [aux_sym_cmd_identifier_token10] = ACTIONS(1548), - [aux_sym_cmd_identifier_token11] = ACTIONS(1548), - [aux_sym_cmd_identifier_token12] = ACTIONS(1548), - [aux_sym_cmd_identifier_token13] = ACTIONS(1548), - [aux_sym_cmd_identifier_token14] = ACTIONS(1548), - [aux_sym_cmd_identifier_token15] = ACTIONS(1548), - [aux_sym_cmd_identifier_token16] = ACTIONS(1548), - [aux_sym_cmd_identifier_token17] = ACTIONS(1548), - [aux_sym_cmd_identifier_token18] = ACTIONS(1548), - [aux_sym_cmd_identifier_token19] = ACTIONS(1548), - [aux_sym_cmd_identifier_token20] = ACTIONS(1548), - [aux_sym_cmd_identifier_token21] = ACTIONS(1548), - [aux_sym_cmd_identifier_token22] = ACTIONS(1548), - [aux_sym_cmd_identifier_token23] = ACTIONS(1548), - [aux_sym_cmd_identifier_token24] = ACTIONS(1548), - [aux_sym_cmd_identifier_token25] = ACTIONS(1548), - [aux_sym_cmd_identifier_token26] = ACTIONS(1548), - [aux_sym_cmd_identifier_token27] = ACTIONS(1548), - [aux_sym_cmd_identifier_token28] = ACTIONS(1548), - [aux_sym_cmd_identifier_token29] = ACTIONS(1548), - [aux_sym_cmd_identifier_token30] = ACTIONS(1548), - [aux_sym_cmd_identifier_token31] = ACTIONS(1548), - [aux_sym_cmd_identifier_token32] = ACTIONS(1548), - [aux_sym_cmd_identifier_token33] = ACTIONS(1548), - [aux_sym_cmd_identifier_token34] = ACTIONS(1548), - [aux_sym_cmd_identifier_token35] = ACTIONS(1548), - [aux_sym_cmd_identifier_token36] = ACTIONS(1548), - [anon_sym_true] = ACTIONS(1550), - [anon_sym_false] = ACTIONS(1550), - [anon_sym_null] = ACTIONS(1550), - [aux_sym_cmd_identifier_token38] = ACTIONS(1548), - [aux_sym_cmd_identifier_token39] = ACTIONS(1550), - [aux_sym_cmd_identifier_token40] = ACTIONS(1550), - [anon_sym_def] = ACTIONS(1548), - [anon_sym_export_DASHenv] = ACTIONS(1548), - [anon_sym_extern] = ACTIONS(1548), - [anon_sym_module] = ACTIONS(1548), - [anon_sym_use] = ACTIONS(1548), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_DOLLAR] = ACTIONS(1590), - [anon_sym_error] = ACTIONS(1548), - [anon_sym_list] = ACTIONS(1548), - [anon_sym_DASH] = ACTIONS(1548), - [anon_sym_break] = ACTIONS(1548), - [anon_sym_continue] = ACTIONS(1548), - [anon_sym_for] = ACTIONS(1548), - [anon_sym_in] = ACTIONS(1548), - [anon_sym_loop] = ACTIONS(1548), - [anon_sym_make] = ACTIONS(1548), - [anon_sym_while] = ACTIONS(1548), - [anon_sym_do] = ACTIONS(1548), - [anon_sym_if] = ACTIONS(1548), - [anon_sym_else] = ACTIONS(1548), - [anon_sym_match] = ACTIONS(1548), - [anon_sym_RBRACE] = ACTIONS(1550), - [anon_sym_try] = ACTIONS(1548), - [anon_sym_catch] = ACTIONS(1548), - [anon_sym_return] = ACTIONS(1548), - [anon_sym_source] = ACTIONS(1548), - [anon_sym_source_DASHenv] = ACTIONS(1548), - [anon_sym_register] = ACTIONS(1548), - [anon_sym_hide] = ACTIONS(1548), - [anon_sym_hide_DASHenv] = ACTIONS(1548), - [anon_sym_overlay] = ACTIONS(1548), - [anon_sym_new] = ACTIONS(1548), - [anon_sym_as] = ACTIONS(1548), - [anon_sym_LPAREN2] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1550), - [aux_sym__immediate_decimal_token1] = ACTIONS(1594), - [aux_sym__immediate_decimal_token3] = ACTIONS(1596), - [aux_sym__immediate_decimal_token4] = ACTIONS(1598), - [aux_sym__immediate_decimal_token5] = ACTIONS(1600), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1550), - [aux_sym__val_number_decimal_token1] = ACTIONS(1548), - [aux_sym__val_number_decimal_token2] = ACTIONS(1548), - [aux_sym__val_number_decimal_token3] = ACTIONS(1548), - [aux_sym__val_number_decimal_token4] = ACTIONS(1548), - [aux_sym__val_number_token1] = ACTIONS(1550), - [aux_sym__val_number_token2] = ACTIONS(1550), - [aux_sym__val_number_token3] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1550), - [sym__str_single_quotes] = ACTIONS(1550), - [sym__str_back_ticks] = ACTIONS(1550), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1550), - [anon_sym_PLUS] = ACTIONS(1548), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1552), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(1536), + [anon_sym_alias] = ACTIONS(1536), + [anon_sym_let] = ACTIONS(1536), + [anon_sym_let_DASHenv] = ACTIONS(1536), + [anon_sym_mut] = ACTIONS(1536), + [anon_sym_const] = ACTIONS(1536), + [aux_sym_cmd_identifier_token1] = ACTIONS(1536), + [aux_sym_cmd_identifier_token2] = ACTIONS(1536), + [aux_sym_cmd_identifier_token3] = ACTIONS(1536), + [aux_sym_cmd_identifier_token4] = ACTIONS(1536), + [aux_sym_cmd_identifier_token5] = ACTIONS(1536), + [aux_sym_cmd_identifier_token6] = ACTIONS(1536), + [aux_sym_cmd_identifier_token7] = ACTIONS(1536), + [aux_sym_cmd_identifier_token8] = ACTIONS(1536), + [aux_sym_cmd_identifier_token9] = ACTIONS(1536), + [aux_sym_cmd_identifier_token10] = ACTIONS(1536), + [aux_sym_cmd_identifier_token11] = ACTIONS(1536), + [aux_sym_cmd_identifier_token12] = ACTIONS(1536), + [aux_sym_cmd_identifier_token13] = ACTIONS(1536), + [aux_sym_cmd_identifier_token14] = ACTIONS(1536), + [aux_sym_cmd_identifier_token15] = ACTIONS(1536), + [aux_sym_cmd_identifier_token16] = ACTIONS(1536), + [aux_sym_cmd_identifier_token17] = ACTIONS(1536), + [aux_sym_cmd_identifier_token18] = ACTIONS(1536), + [aux_sym_cmd_identifier_token19] = ACTIONS(1536), + [aux_sym_cmd_identifier_token20] = ACTIONS(1536), + [aux_sym_cmd_identifier_token21] = ACTIONS(1536), + [aux_sym_cmd_identifier_token22] = ACTIONS(1536), + [aux_sym_cmd_identifier_token23] = ACTIONS(1536), + [aux_sym_cmd_identifier_token24] = ACTIONS(1536), + [aux_sym_cmd_identifier_token25] = ACTIONS(1536), + [aux_sym_cmd_identifier_token26] = ACTIONS(1536), + [aux_sym_cmd_identifier_token27] = ACTIONS(1536), + [aux_sym_cmd_identifier_token28] = ACTIONS(1536), + [aux_sym_cmd_identifier_token29] = ACTIONS(1536), + [aux_sym_cmd_identifier_token30] = ACTIONS(1536), + [aux_sym_cmd_identifier_token31] = ACTIONS(1536), + [aux_sym_cmd_identifier_token32] = ACTIONS(1536), + [aux_sym_cmd_identifier_token33] = ACTIONS(1536), + [aux_sym_cmd_identifier_token34] = ACTIONS(1536), + [aux_sym_cmd_identifier_token35] = ACTIONS(1536), + [aux_sym_cmd_identifier_token36] = ACTIONS(1536), + [anon_sym_true] = ACTIONS(1536), + [anon_sym_false] = ACTIONS(1536), + [anon_sym_null] = ACTIONS(1536), + [aux_sym_cmd_identifier_token38] = ACTIONS(1536), + [aux_sym_cmd_identifier_token39] = ACTIONS(1536), + [aux_sym_cmd_identifier_token40] = ACTIONS(1536), + [anon_sym_def] = ACTIONS(1536), + [anon_sym_export_DASHenv] = ACTIONS(1536), + [anon_sym_extern] = ACTIONS(1536), + [anon_sym_module] = ACTIONS(1536), + [anon_sym_use] = ACTIONS(1536), + [anon_sym_LPAREN] = ACTIONS(1536), + [anon_sym_DOLLAR] = ACTIONS(1536), + [anon_sym_error] = ACTIONS(1536), + [anon_sym_list] = ACTIONS(1536), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_break] = ACTIONS(1536), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_for] = ACTIONS(1536), + [anon_sym_in] = ACTIONS(1536), + [anon_sym_loop] = ACTIONS(1536), + [anon_sym_make] = ACTIONS(1536), + [anon_sym_while] = ACTIONS(1536), + [anon_sym_do] = ACTIONS(1536), + [anon_sym_if] = ACTIONS(1536), + [anon_sym_else] = ACTIONS(1536), + [anon_sym_match] = ACTIONS(1536), + [anon_sym_RBRACE] = ACTIONS(1536), + [anon_sym_try] = ACTIONS(1536), + [anon_sym_catch] = ACTIONS(1536), + [anon_sym_return] = ACTIONS(1536), + [anon_sym_source] = ACTIONS(1536), + [anon_sym_source_DASHenv] = ACTIONS(1536), + [anon_sym_register] = ACTIONS(1536), + [anon_sym_hide] = ACTIONS(1536), + [anon_sym_hide_DASHenv] = ACTIONS(1536), + [anon_sym_overlay] = ACTIONS(1536), + [anon_sym_new] = ACTIONS(1536), + [anon_sym_as] = ACTIONS(1536), + [anon_sym_LPAREN2] = ACTIONS(1538), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1536), + [anon_sym_DOT_DOT2] = ACTIONS(1536), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), + [aux_sym__immediate_decimal_token2] = ACTIONS(1542), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1536), + [aux_sym__val_number_decimal_token1] = ACTIONS(1536), + [aux_sym__val_number_decimal_token2] = ACTIONS(1536), + [aux_sym__val_number_decimal_token3] = ACTIONS(1536), + [aux_sym__val_number_decimal_token4] = ACTIONS(1536), + [aux_sym__val_number_token1] = ACTIONS(1536), + [aux_sym__val_number_token2] = ACTIONS(1536), + [aux_sym__val_number_token3] = ACTIONS(1536), + [sym_filesize_unit] = ACTIONS(1536), + [sym_duration_unit] = ACTIONS(1536), + [anon_sym_DQUOTE] = ACTIONS(1536), + [sym__str_single_quotes] = ACTIONS(1536), + [sym__str_back_ticks] = ACTIONS(1536), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1536), + [sym__entry_separator] = ACTIONS(1538), + [anon_sym_PLUS] = ACTIONS(1536), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1536), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1538), }, [224] = { + [sym__expr_parenthesized_immediate] = STATE(630), + [sym__immediate_decimal] = STATE(592), + [sym_val_variable] = STATE(630), [sym_comment] = STATE(224), - [anon_sym_export] = ACTIONS(1518), - [anon_sym_alias] = ACTIONS(1518), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_let_DASHenv] = ACTIONS(1518), - [anon_sym_mut] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1518), - [aux_sym_cmd_identifier_token1] = ACTIONS(1518), - [aux_sym_cmd_identifier_token2] = ACTIONS(1518), - [aux_sym_cmd_identifier_token3] = ACTIONS(1518), - [aux_sym_cmd_identifier_token4] = ACTIONS(1518), - [aux_sym_cmd_identifier_token5] = ACTIONS(1518), - [aux_sym_cmd_identifier_token6] = ACTIONS(1518), - [aux_sym_cmd_identifier_token7] = ACTIONS(1518), - [aux_sym_cmd_identifier_token8] = ACTIONS(1518), - [aux_sym_cmd_identifier_token9] = ACTIONS(1518), - [aux_sym_cmd_identifier_token10] = ACTIONS(1518), - [aux_sym_cmd_identifier_token11] = ACTIONS(1518), - [aux_sym_cmd_identifier_token12] = ACTIONS(1518), - [aux_sym_cmd_identifier_token13] = ACTIONS(1518), - [aux_sym_cmd_identifier_token14] = ACTIONS(1518), - [aux_sym_cmd_identifier_token15] = ACTIONS(1518), - [aux_sym_cmd_identifier_token16] = ACTIONS(1518), - [aux_sym_cmd_identifier_token17] = ACTIONS(1518), - [aux_sym_cmd_identifier_token18] = ACTIONS(1518), - [aux_sym_cmd_identifier_token19] = ACTIONS(1518), - [aux_sym_cmd_identifier_token20] = ACTIONS(1518), - [aux_sym_cmd_identifier_token21] = ACTIONS(1518), - [aux_sym_cmd_identifier_token22] = ACTIONS(1518), - [aux_sym_cmd_identifier_token23] = ACTIONS(1518), - [aux_sym_cmd_identifier_token24] = ACTIONS(1518), - [aux_sym_cmd_identifier_token25] = ACTIONS(1518), - [aux_sym_cmd_identifier_token26] = ACTIONS(1518), - [aux_sym_cmd_identifier_token27] = ACTIONS(1518), - [aux_sym_cmd_identifier_token28] = ACTIONS(1518), - [aux_sym_cmd_identifier_token29] = ACTIONS(1518), - [aux_sym_cmd_identifier_token30] = ACTIONS(1518), - [aux_sym_cmd_identifier_token31] = ACTIONS(1518), - [aux_sym_cmd_identifier_token32] = ACTIONS(1518), - [aux_sym_cmd_identifier_token33] = ACTIONS(1518), - [aux_sym_cmd_identifier_token34] = ACTIONS(1518), - [aux_sym_cmd_identifier_token35] = ACTIONS(1518), - [aux_sym_cmd_identifier_token36] = ACTIONS(1518), - [anon_sym_true] = ACTIONS(1518), - [anon_sym_false] = ACTIONS(1518), - [anon_sym_null] = ACTIONS(1518), - [aux_sym_cmd_identifier_token38] = ACTIONS(1518), - [aux_sym_cmd_identifier_token39] = ACTIONS(1518), - [aux_sym_cmd_identifier_token40] = ACTIONS(1518), - [anon_sym_def] = ACTIONS(1518), - [anon_sym_export_DASHenv] = ACTIONS(1518), - [anon_sym_extern] = ACTIONS(1518), - [anon_sym_module] = ACTIONS(1518), - [anon_sym_use] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1518), - [anon_sym_DOLLAR] = ACTIONS(1518), - [anon_sym_error] = ACTIONS(1518), - [anon_sym_list] = ACTIONS(1518), - [anon_sym_DASH] = ACTIONS(1518), - [anon_sym_break] = ACTIONS(1518), - [anon_sym_continue] = ACTIONS(1518), - [anon_sym_for] = ACTIONS(1518), - [anon_sym_in] = ACTIONS(1518), - [anon_sym_loop] = ACTIONS(1518), - [anon_sym_make] = ACTIONS(1518), - [anon_sym_while] = ACTIONS(1518), - [anon_sym_do] = ACTIONS(1518), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_else] = ACTIONS(1518), - [anon_sym_match] = ACTIONS(1518), - [anon_sym_RBRACE] = ACTIONS(1518), - [anon_sym_try] = ACTIONS(1518), - [anon_sym_catch] = ACTIONS(1518), - [anon_sym_return] = ACTIONS(1518), - [anon_sym_source] = ACTIONS(1518), - [anon_sym_source_DASHenv] = ACTIONS(1518), - [anon_sym_register] = ACTIONS(1518), - [anon_sym_hide] = ACTIONS(1518), - [anon_sym_hide_DASHenv] = ACTIONS(1518), - [anon_sym_overlay] = ACTIONS(1518), - [anon_sym_new] = ACTIONS(1518), - [anon_sym_as] = ACTIONS(1518), - [anon_sym_LPAREN2] = ACTIONS(1520), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1518), - [anon_sym_DOT_DOT2] = ACTIONS(1518), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), - [aux_sym__immediate_decimal_token2] = ACTIONS(1524), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1518), - [aux_sym__val_number_decimal_token1] = ACTIONS(1518), - [aux_sym__val_number_decimal_token2] = ACTIONS(1518), - [aux_sym__val_number_decimal_token3] = ACTIONS(1518), - [aux_sym__val_number_decimal_token4] = ACTIONS(1518), - [aux_sym__val_number_token1] = ACTIONS(1518), - [aux_sym__val_number_token2] = ACTIONS(1518), - [aux_sym__val_number_token3] = ACTIONS(1518), - [sym_filesize_unit] = ACTIONS(1518), - [sym_duration_unit] = ACTIONS(1518), - [anon_sym_DQUOTE] = ACTIONS(1518), - [sym__str_single_quotes] = ACTIONS(1518), - [sym__str_back_ticks] = ACTIONS(1518), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1518), - [sym__entry_separator] = ACTIONS(1520), - [anon_sym_PLUS] = ACTIONS(1518), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1518), - [anon_sym_POUND] = ACTIONS(3), - }, - [225] = { - [sym__expr_parenthesized_immediate] = STATE(597), - [sym__immediate_decimal] = STATE(598), - [sym_val_variable] = STATE(597), - [sym_comment] = STATE(225), - [anon_sym_export] = ACTIONS(1496), - [anon_sym_alias] = ACTIONS(1496), - [anon_sym_let] = ACTIONS(1496), - [anon_sym_let_DASHenv] = ACTIONS(1496), - [anon_sym_mut] = ACTIONS(1496), - [anon_sym_const] = ACTIONS(1496), - [aux_sym_cmd_identifier_token1] = ACTIONS(1496), - [aux_sym_cmd_identifier_token2] = ACTIONS(1496), - [aux_sym_cmd_identifier_token3] = ACTIONS(1496), - [aux_sym_cmd_identifier_token4] = ACTIONS(1496), - [aux_sym_cmd_identifier_token5] = ACTIONS(1496), - [aux_sym_cmd_identifier_token6] = ACTIONS(1496), - [aux_sym_cmd_identifier_token7] = ACTIONS(1496), - [aux_sym_cmd_identifier_token8] = ACTIONS(1496), - [aux_sym_cmd_identifier_token9] = ACTIONS(1496), - [aux_sym_cmd_identifier_token10] = ACTIONS(1496), - [aux_sym_cmd_identifier_token11] = ACTIONS(1496), - [aux_sym_cmd_identifier_token12] = ACTIONS(1496), - [aux_sym_cmd_identifier_token13] = ACTIONS(1496), - [aux_sym_cmd_identifier_token14] = ACTIONS(1496), - [aux_sym_cmd_identifier_token15] = ACTIONS(1496), - [aux_sym_cmd_identifier_token16] = ACTIONS(1496), - [aux_sym_cmd_identifier_token17] = ACTIONS(1496), - [aux_sym_cmd_identifier_token18] = ACTIONS(1496), - [aux_sym_cmd_identifier_token19] = ACTIONS(1496), - [aux_sym_cmd_identifier_token20] = ACTIONS(1496), - [aux_sym_cmd_identifier_token21] = ACTIONS(1496), - [aux_sym_cmd_identifier_token22] = ACTIONS(1496), - [aux_sym_cmd_identifier_token23] = ACTIONS(1496), - [aux_sym_cmd_identifier_token24] = ACTIONS(1496), - [aux_sym_cmd_identifier_token25] = ACTIONS(1496), - [aux_sym_cmd_identifier_token26] = ACTIONS(1496), - [aux_sym_cmd_identifier_token27] = ACTIONS(1496), - [aux_sym_cmd_identifier_token28] = ACTIONS(1496), - [aux_sym_cmd_identifier_token29] = ACTIONS(1496), - [aux_sym_cmd_identifier_token30] = ACTIONS(1496), - [aux_sym_cmd_identifier_token31] = ACTIONS(1496), - [aux_sym_cmd_identifier_token32] = ACTIONS(1496), - [aux_sym_cmd_identifier_token33] = ACTIONS(1496), - [aux_sym_cmd_identifier_token34] = ACTIONS(1496), - [aux_sym_cmd_identifier_token35] = ACTIONS(1496), - [aux_sym_cmd_identifier_token36] = ACTIONS(1496), - [anon_sym_true] = ACTIONS(1496), - [anon_sym_false] = ACTIONS(1496), - [anon_sym_null] = ACTIONS(1496), - [aux_sym_cmd_identifier_token38] = ACTIONS(1496), - [aux_sym_cmd_identifier_token39] = ACTIONS(1496), - [aux_sym_cmd_identifier_token40] = ACTIONS(1496), - [anon_sym_def] = ACTIONS(1496), - [anon_sym_export_DASHenv] = ACTIONS(1496), - [anon_sym_extern] = ACTIONS(1496), - [anon_sym_module] = ACTIONS(1496), - [anon_sym_use] = ACTIONS(1496), - [anon_sym_LPAREN] = ACTIONS(1496), - [anon_sym_DOLLAR] = ACTIONS(1508), - [anon_sym_error] = ACTIONS(1496), - [anon_sym_list] = ACTIONS(1496), - [anon_sym_DASH] = ACTIONS(1496), - [anon_sym_break] = ACTIONS(1496), - [anon_sym_continue] = ACTIONS(1496), - [anon_sym_for] = ACTIONS(1496), - [anon_sym_in] = ACTIONS(1496), - [anon_sym_loop] = ACTIONS(1496), - [anon_sym_make] = ACTIONS(1496), - [anon_sym_while] = ACTIONS(1496), - [anon_sym_do] = ACTIONS(1496), - [anon_sym_if] = ACTIONS(1496), - [anon_sym_else] = ACTIONS(1496), - [anon_sym_match] = ACTIONS(1496), - [anon_sym_RBRACE] = ACTIONS(1496), - [anon_sym_try] = ACTIONS(1496), - [anon_sym_catch] = ACTIONS(1496), - [anon_sym_return] = ACTIONS(1496), - [anon_sym_source] = ACTIONS(1496), - [anon_sym_source_DASHenv] = ACTIONS(1496), - [anon_sym_register] = ACTIONS(1496), - [anon_sym_hide] = ACTIONS(1496), - [anon_sym_hide_DASHenv] = ACTIONS(1496), - [anon_sym_overlay] = ACTIONS(1496), - [anon_sym_new] = ACTIONS(1496), - [anon_sym_as] = ACTIONS(1496), - [anon_sym_LPAREN2] = ACTIONS(1510), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1496), - [aux_sym__immediate_decimal_token1] = ACTIONS(1578), - [aux_sym__immediate_decimal_token3] = ACTIONS(1578), - [aux_sym__immediate_decimal_token4] = ACTIONS(1580), - [aux_sym__immediate_decimal_token5] = ACTIONS(1582), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1496), - [aux_sym__val_number_decimal_token1] = ACTIONS(1496), - [aux_sym__val_number_decimal_token2] = ACTIONS(1496), - [aux_sym__val_number_decimal_token3] = ACTIONS(1496), - [aux_sym__val_number_decimal_token4] = ACTIONS(1496), - [aux_sym__val_number_token1] = ACTIONS(1496), - [aux_sym__val_number_token2] = ACTIONS(1496), - [aux_sym__val_number_token3] = ACTIONS(1496), - [anon_sym_DQUOTE] = ACTIONS(1496), - [sym__str_single_quotes] = ACTIONS(1496), - [sym__str_back_ticks] = ACTIONS(1496), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1496), - [sym__entry_separator] = ACTIONS(1506), - [anon_sym_PLUS] = ACTIONS(1496), - [anon_sym_POUND] = ACTIONS(3), - }, - [226] = { - [sym__expr_parenthesized_immediate] = STATE(603), - [sym__immediate_decimal] = STATE(604), - [sym_val_variable] = STATE(603), - [sym_comment] = STATE(226), - [anon_sym_export] = ACTIONS(1602), - [anon_sym_alias] = ACTIONS(1602), - [anon_sym_let] = ACTIONS(1602), - [anon_sym_let_DASHenv] = ACTIONS(1602), - [anon_sym_mut] = ACTIONS(1602), - [anon_sym_const] = ACTIONS(1602), - [aux_sym_cmd_identifier_token1] = ACTIONS(1602), - [aux_sym_cmd_identifier_token2] = ACTIONS(1602), - [aux_sym_cmd_identifier_token3] = ACTIONS(1602), - [aux_sym_cmd_identifier_token4] = ACTIONS(1602), - [aux_sym_cmd_identifier_token5] = ACTIONS(1602), - [aux_sym_cmd_identifier_token6] = ACTIONS(1602), - [aux_sym_cmd_identifier_token7] = ACTIONS(1602), - [aux_sym_cmd_identifier_token8] = ACTIONS(1602), - [aux_sym_cmd_identifier_token9] = ACTIONS(1602), - [aux_sym_cmd_identifier_token10] = ACTIONS(1602), - [aux_sym_cmd_identifier_token11] = ACTIONS(1602), - [aux_sym_cmd_identifier_token12] = ACTIONS(1602), - [aux_sym_cmd_identifier_token13] = ACTIONS(1602), - [aux_sym_cmd_identifier_token14] = ACTIONS(1602), - [aux_sym_cmd_identifier_token15] = ACTIONS(1602), - [aux_sym_cmd_identifier_token16] = ACTIONS(1602), - [aux_sym_cmd_identifier_token17] = ACTIONS(1602), - [aux_sym_cmd_identifier_token18] = ACTIONS(1602), - [aux_sym_cmd_identifier_token19] = ACTIONS(1602), - [aux_sym_cmd_identifier_token20] = ACTIONS(1602), - [aux_sym_cmd_identifier_token21] = ACTIONS(1602), - [aux_sym_cmd_identifier_token22] = ACTIONS(1602), - [aux_sym_cmd_identifier_token23] = ACTIONS(1602), - [aux_sym_cmd_identifier_token24] = ACTIONS(1602), - [aux_sym_cmd_identifier_token25] = ACTIONS(1602), - [aux_sym_cmd_identifier_token26] = ACTIONS(1602), - [aux_sym_cmd_identifier_token27] = ACTIONS(1602), - [aux_sym_cmd_identifier_token28] = ACTIONS(1602), - [aux_sym_cmd_identifier_token29] = ACTIONS(1602), - [aux_sym_cmd_identifier_token30] = ACTIONS(1602), - [aux_sym_cmd_identifier_token31] = ACTIONS(1602), - [aux_sym_cmd_identifier_token32] = ACTIONS(1602), - [aux_sym_cmd_identifier_token33] = ACTIONS(1602), - [aux_sym_cmd_identifier_token34] = ACTIONS(1602), - [aux_sym_cmd_identifier_token35] = ACTIONS(1602), - [aux_sym_cmd_identifier_token36] = ACTIONS(1602), - [anon_sym_true] = ACTIONS(1602), - [anon_sym_false] = ACTIONS(1602), - [anon_sym_null] = ACTIONS(1602), - [aux_sym_cmd_identifier_token38] = ACTIONS(1602), - [aux_sym_cmd_identifier_token39] = ACTIONS(1602), - [aux_sym_cmd_identifier_token40] = ACTIONS(1602), - [anon_sym_def] = ACTIONS(1602), - [anon_sym_export_DASHenv] = ACTIONS(1602), - [anon_sym_extern] = ACTIONS(1602), - [anon_sym_module] = ACTIONS(1602), - [anon_sym_use] = ACTIONS(1602), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_DOLLAR] = ACTIONS(1508), - [anon_sym_error] = ACTIONS(1602), - [anon_sym_list] = ACTIONS(1602), - [anon_sym_DASH] = ACTIONS(1602), - [anon_sym_break] = ACTIONS(1602), - [anon_sym_continue] = ACTIONS(1602), - [anon_sym_for] = ACTIONS(1602), - [anon_sym_in] = ACTIONS(1602), - [anon_sym_loop] = ACTIONS(1602), - [anon_sym_make] = ACTIONS(1602), - [anon_sym_while] = ACTIONS(1602), - [anon_sym_do] = ACTIONS(1602), - [anon_sym_if] = ACTIONS(1602), - [anon_sym_else] = ACTIONS(1602), - [anon_sym_match] = ACTIONS(1602), - [anon_sym_RBRACE] = ACTIONS(1602), - [anon_sym_try] = ACTIONS(1602), - [anon_sym_catch] = ACTIONS(1602), - [anon_sym_return] = ACTIONS(1602), - [anon_sym_source] = ACTIONS(1602), - [anon_sym_source_DASHenv] = ACTIONS(1602), - [anon_sym_register] = ACTIONS(1602), - [anon_sym_hide] = ACTIONS(1602), - [anon_sym_hide_DASHenv] = ACTIONS(1602), - [anon_sym_overlay] = ACTIONS(1602), - [anon_sym_new] = ACTIONS(1602), - [anon_sym_as] = ACTIONS(1602), - [anon_sym_LPAREN2] = ACTIONS(1510), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1602), - [aux_sym__immediate_decimal_token1] = ACTIONS(1578), - [aux_sym__immediate_decimal_token3] = ACTIONS(1578), - [aux_sym__immediate_decimal_token4] = ACTIONS(1580), - [aux_sym__immediate_decimal_token5] = ACTIONS(1582), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1602), - [aux_sym__val_number_decimal_token1] = ACTIONS(1602), - [aux_sym__val_number_decimal_token2] = ACTIONS(1602), - [aux_sym__val_number_decimal_token3] = ACTIONS(1602), - [aux_sym__val_number_decimal_token4] = ACTIONS(1602), - [aux_sym__val_number_token1] = ACTIONS(1602), - [aux_sym__val_number_token2] = ACTIONS(1602), - [aux_sym__val_number_token3] = ACTIONS(1602), - [anon_sym_DQUOTE] = ACTIONS(1602), - [sym__str_single_quotes] = ACTIONS(1602), - [sym__str_back_ticks] = ACTIONS(1602), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1602), - [sym__entry_separator] = ACTIONS(1604), - [anon_sym_PLUS] = ACTIONS(1602), - [anon_sym_POUND] = ACTIONS(3), - }, - [227] = { - [sym_comment] = STATE(227), - [anon_sym_export] = ACTIONS(1540), - [anon_sym_alias] = ACTIONS(1540), - [anon_sym_let] = ACTIONS(1540), - [anon_sym_let_DASHenv] = ACTIONS(1540), - [anon_sym_mut] = ACTIONS(1540), - [anon_sym_const] = ACTIONS(1540), - [aux_sym_cmd_identifier_token1] = ACTIONS(1540), - [aux_sym_cmd_identifier_token2] = ACTIONS(1540), - [aux_sym_cmd_identifier_token3] = ACTIONS(1540), - [aux_sym_cmd_identifier_token4] = ACTIONS(1540), - [aux_sym_cmd_identifier_token5] = ACTIONS(1540), - [aux_sym_cmd_identifier_token6] = ACTIONS(1540), - [aux_sym_cmd_identifier_token7] = ACTIONS(1540), - [aux_sym_cmd_identifier_token8] = ACTIONS(1540), - [aux_sym_cmd_identifier_token9] = ACTIONS(1540), - [aux_sym_cmd_identifier_token10] = ACTIONS(1540), - [aux_sym_cmd_identifier_token11] = ACTIONS(1540), - [aux_sym_cmd_identifier_token12] = ACTIONS(1540), - [aux_sym_cmd_identifier_token13] = ACTIONS(1540), - [aux_sym_cmd_identifier_token14] = ACTIONS(1540), - [aux_sym_cmd_identifier_token15] = ACTIONS(1540), - [aux_sym_cmd_identifier_token16] = ACTIONS(1540), - [aux_sym_cmd_identifier_token17] = ACTIONS(1540), - [aux_sym_cmd_identifier_token18] = ACTIONS(1540), - [aux_sym_cmd_identifier_token19] = ACTIONS(1540), - [aux_sym_cmd_identifier_token20] = ACTIONS(1540), - [aux_sym_cmd_identifier_token21] = ACTIONS(1540), - [aux_sym_cmd_identifier_token22] = ACTIONS(1540), - [aux_sym_cmd_identifier_token23] = ACTIONS(1540), - [aux_sym_cmd_identifier_token24] = ACTIONS(1540), - [aux_sym_cmd_identifier_token25] = ACTIONS(1540), - [aux_sym_cmd_identifier_token26] = ACTIONS(1540), - [aux_sym_cmd_identifier_token27] = ACTIONS(1540), - [aux_sym_cmd_identifier_token28] = ACTIONS(1540), - [aux_sym_cmd_identifier_token29] = ACTIONS(1540), - [aux_sym_cmd_identifier_token30] = ACTIONS(1540), - [aux_sym_cmd_identifier_token31] = ACTIONS(1540), - [aux_sym_cmd_identifier_token32] = ACTIONS(1540), - [aux_sym_cmd_identifier_token33] = ACTIONS(1540), - [aux_sym_cmd_identifier_token34] = ACTIONS(1540), - [aux_sym_cmd_identifier_token35] = ACTIONS(1540), - [aux_sym_cmd_identifier_token36] = ACTIONS(1540), - [anon_sym_true] = ACTIONS(1542), - [anon_sym_false] = ACTIONS(1542), - [anon_sym_null] = ACTIONS(1542), - [aux_sym_cmd_identifier_token38] = ACTIONS(1540), - [aux_sym_cmd_identifier_token39] = ACTIONS(1542), - [aux_sym_cmd_identifier_token40] = ACTIONS(1542), - [anon_sym_def] = ACTIONS(1540), - [anon_sym_export_DASHenv] = ACTIONS(1540), - [anon_sym_extern] = ACTIONS(1540), - [anon_sym_module] = ACTIONS(1540), - [anon_sym_use] = ACTIONS(1540), - [anon_sym_LPAREN] = ACTIONS(1540), - [anon_sym_DOLLAR] = ACTIONS(1542), - [anon_sym_error] = ACTIONS(1540), - [anon_sym_list] = ACTIONS(1540), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_break] = ACTIONS(1540), - [anon_sym_continue] = ACTIONS(1540), - [anon_sym_for] = ACTIONS(1540), - [anon_sym_in] = ACTIONS(1540), - [anon_sym_loop] = ACTIONS(1540), - [anon_sym_make] = ACTIONS(1540), - [anon_sym_while] = ACTIONS(1540), - [anon_sym_do] = ACTIONS(1540), - [anon_sym_if] = ACTIONS(1540), - [anon_sym_else] = ACTIONS(1540), - [anon_sym_match] = ACTIONS(1540), - [anon_sym_RBRACE] = ACTIONS(1542), - [anon_sym_try] = ACTIONS(1540), - [anon_sym_catch] = ACTIONS(1540), - [anon_sym_return] = ACTIONS(1540), - [anon_sym_source] = ACTIONS(1540), - [anon_sym_source_DASHenv] = ACTIONS(1540), - [anon_sym_register] = ACTIONS(1540), - [anon_sym_hide] = ACTIONS(1540), - [anon_sym_hide_DASHenv] = ACTIONS(1540), - [anon_sym_overlay] = ACTIONS(1540), - [anon_sym_new] = ACTIONS(1540), - [anon_sym_as] = ACTIONS(1540), - [anon_sym_LPAREN2] = ACTIONS(1542), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1542), - [anon_sym_DOT_DOT2] = ACTIONS(1540), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1542), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1542), - [aux_sym__immediate_decimal_token1] = ACTIONS(1606), - [aux_sym__immediate_decimal_token2] = ACTIONS(1608), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1542), - [aux_sym__val_number_decimal_token1] = ACTIONS(1540), - [aux_sym__val_number_decimal_token2] = ACTIONS(1542), - [aux_sym__val_number_decimal_token3] = ACTIONS(1542), - [aux_sym__val_number_decimal_token4] = ACTIONS(1542), - [aux_sym__val_number_token1] = ACTIONS(1542), - [aux_sym__val_number_token2] = ACTIONS(1542), - [aux_sym__val_number_token3] = ACTIONS(1542), - [sym_filesize_unit] = ACTIONS(1540), - [sym_duration_unit] = ACTIONS(1540), - [anon_sym_DQUOTE] = ACTIONS(1542), - [sym__str_single_quotes] = ACTIONS(1542), - [sym__str_back_ticks] = ACTIONS(1542), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1542), - [anon_sym_PLUS] = ACTIONS(1540), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1540), - [anon_sym_POUND] = ACTIONS(247), - }, - [228] = { - [sym_comment] = STATE(228), - [anon_sym_export] = ACTIONS(1518), - [anon_sym_alias] = ACTIONS(1518), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_let_DASHenv] = ACTIONS(1518), - [anon_sym_mut] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1518), - [aux_sym_cmd_identifier_token1] = ACTIONS(1518), - [aux_sym_cmd_identifier_token2] = ACTIONS(1518), - [aux_sym_cmd_identifier_token3] = ACTIONS(1518), - [aux_sym_cmd_identifier_token4] = ACTIONS(1518), - [aux_sym_cmd_identifier_token5] = ACTIONS(1518), - [aux_sym_cmd_identifier_token6] = ACTIONS(1518), - [aux_sym_cmd_identifier_token7] = ACTIONS(1518), - [aux_sym_cmd_identifier_token8] = ACTIONS(1518), - [aux_sym_cmd_identifier_token9] = ACTIONS(1518), - [aux_sym_cmd_identifier_token10] = ACTIONS(1518), - [aux_sym_cmd_identifier_token11] = ACTIONS(1518), - [aux_sym_cmd_identifier_token12] = ACTIONS(1518), - [aux_sym_cmd_identifier_token13] = ACTIONS(1518), - [aux_sym_cmd_identifier_token14] = ACTIONS(1518), - [aux_sym_cmd_identifier_token15] = ACTIONS(1518), - [aux_sym_cmd_identifier_token16] = ACTIONS(1518), - [aux_sym_cmd_identifier_token17] = ACTIONS(1518), - [aux_sym_cmd_identifier_token18] = ACTIONS(1518), - [aux_sym_cmd_identifier_token19] = ACTIONS(1518), - [aux_sym_cmd_identifier_token20] = ACTIONS(1518), - [aux_sym_cmd_identifier_token21] = ACTIONS(1518), - [aux_sym_cmd_identifier_token22] = ACTIONS(1518), - [aux_sym_cmd_identifier_token23] = ACTIONS(1518), - [aux_sym_cmd_identifier_token24] = ACTIONS(1518), - [aux_sym_cmd_identifier_token25] = ACTIONS(1518), - [aux_sym_cmd_identifier_token26] = ACTIONS(1518), - [aux_sym_cmd_identifier_token27] = ACTIONS(1518), - [aux_sym_cmd_identifier_token28] = ACTIONS(1518), - [aux_sym_cmd_identifier_token29] = ACTIONS(1518), - [aux_sym_cmd_identifier_token30] = ACTIONS(1518), - [aux_sym_cmd_identifier_token31] = ACTIONS(1518), - [aux_sym_cmd_identifier_token32] = ACTIONS(1518), - [aux_sym_cmd_identifier_token33] = ACTIONS(1518), - [aux_sym_cmd_identifier_token34] = ACTIONS(1518), - [aux_sym_cmd_identifier_token35] = ACTIONS(1518), - [aux_sym_cmd_identifier_token36] = ACTIONS(1518), - [anon_sym_true] = ACTIONS(1520), - [anon_sym_false] = ACTIONS(1520), - [anon_sym_null] = ACTIONS(1520), - [aux_sym_cmd_identifier_token38] = ACTIONS(1518), - [aux_sym_cmd_identifier_token39] = ACTIONS(1520), - [aux_sym_cmd_identifier_token40] = ACTIONS(1520), - [anon_sym_def] = ACTIONS(1518), - [anon_sym_export_DASHenv] = ACTIONS(1518), - [anon_sym_extern] = ACTIONS(1518), - [anon_sym_module] = ACTIONS(1518), - [anon_sym_use] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1518), - [anon_sym_DOLLAR] = ACTIONS(1520), - [anon_sym_error] = ACTIONS(1518), - [anon_sym_list] = ACTIONS(1518), - [anon_sym_DASH] = ACTIONS(1518), - [anon_sym_break] = ACTIONS(1518), - [anon_sym_continue] = ACTIONS(1518), - [anon_sym_for] = ACTIONS(1518), - [anon_sym_in] = ACTIONS(1518), - [anon_sym_loop] = ACTIONS(1518), - [anon_sym_make] = ACTIONS(1518), - [anon_sym_while] = ACTIONS(1518), - [anon_sym_do] = ACTIONS(1518), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_else] = ACTIONS(1518), - [anon_sym_match] = ACTIONS(1518), - [anon_sym_RBRACE] = ACTIONS(1520), - [anon_sym_try] = ACTIONS(1518), - [anon_sym_catch] = ACTIONS(1518), - [anon_sym_return] = ACTIONS(1518), - [anon_sym_source] = ACTIONS(1518), - [anon_sym_source_DASHenv] = ACTIONS(1518), - [anon_sym_register] = ACTIONS(1518), - [anon_sym_hide] = ACTIONS(1518), - [anon_sym_hide_DASHenv] = ACTIONS(1518), - [anon_sym_overlay] = ACTIONS(1518), - [anon_sym_new] = ACTIONS(1518), - [anon_sym_as] = ACTIONS(1518), - [anon_sym_LPAREN2] = ACTIONS(1520), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1520), - [anon_sym_DOT_DOT2] = ACTIONS(1518), - [anon_sym_DOT] = ACTIONS(1610), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), - [aux_sym__immediate_decimal_token2] = ACTIONS(1612), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1520), - [aux_sym__val_number_decimal_token1] = ACTIONS(1518), - [aux_sym__val_number_decimal_token2] = ACTIONS(1520), - [aux_sym__val_number_decimal_token3] = ACTIONS(1520), - [aux_sym__val_number_decimal_token4] = ACTIONS(1520), - [aux_sym__val_number_token1] = ACTIONS(1520), - [aux_sym__val_number_token2] = ACTIONS(1520), - [aux_sym__val_number_token3] = ACTIONS(1520), - [sym_filesize_unit] = ACTIONS(1518), - [sym_duration_unit] = ACTIONS(1518), - [anon_sym_DQUOTE] = ACTIONS(1520), - [sym__str_single_quotes] = ACTIONS(1520), - [sym__str_back_ticks] = ACTIONS(1520), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1520), - [anon_sym_PLUS] = ACTIONS(1518), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1518), - [anon_sym_POUND] = ACTIONS(247), - }, - [229] = { - [sym__expr_parenthesized_immediate] = STATE(483), - [sym__immediate_decimal] = STATE(484), - [sym_val_variable] = STATE(483), - [sym_comment] = STATE(229), - [anon_sym_export] = ACTIONS(1496), - [anon_sym_alias] = ACTIONS(1496), - [anon_sym_let] = ACTIONS(1496), - [anon_sym_let_DASHenv] = ACTIONS(1496), - [anon_sym_mut] = ACTIONS(1496), - [anon_sym_const] = ACTIONS(1496), - [aux_sym_cmd_identifier_token1] = ACTIONS(1496), - [aux_sym_cmd_identifier_token2] = ACTIONS(1496), - [aux_sym_cmd_identifier_token3] = ACTIONS(1496), - [aux_sym_cmd_identifier_token4] = ACTIONS(1496), - [aux_sym_cmd_identifier_token5] = ACTIONS(1496), - [aux_sym_cmd_identifier_token6] = ACTIONS(1496), - [aux_sym_cmd_identifier_token7] = ACTIONS(1496), - [aux_sym_cmd_identifier_token8] = ACTIONS(1496), - [aux_sym_cmd_identifier_token9] = ACTIONS(1496), - [aux_sym_cmd_identifier_token10] = ACTIONS(1496), - [aux_sym_cmd_identifier_token11] = ACTIONS(1496), - [aux_sym_cmd_identifier_token12] = ACTIONS(1496), - [aux_sym_cmd_identifier_token13] = ACTIONS(1496), - [aux_sym_cmd_identifier_token14] = ACTIONS(1496), - [aux_sym_cmd_identifier_token15] = ACTIONS(1496), - [aux_sym_cmd_identifier_token16] = ACTIONS(1496), - [aux_sym_cmd_identifier_token17] = ACTIONS(1496), - [aux_sym_cmd_identifier_token18] = ACTIONS(1496), - [aux_sym_cmd_identifier_token19] = ACTIONS(1496), - [aux_sym_cmd_identifier_token20] = ACTIONS(1496), - [aux_sym_cmd_identifier_token21] = ACTIONS(1496), - [aux_sym_cmd_identifier_token22] = ACTIONS(1496), - [aux_sym_cmd_identifier_token23] = ACTIONS(1496), - [aux_sym_cmd_identifier_token24] = ACTIONS(1496), - [aux_sym_cmd_identifier_token25] = ACTIONS(1496), - [aux_sym_cmd_identifier_token26] = ACTIONS(1496), - [aux_sym_cmd_identifier_token27] = ACTIONS(1496), - [aux_sym_cmd_identifier_token28] = ACTIONS(1496), - [aux_sym_cmd_identifier_token29] = ACTIONS(1496), - [aux_sym_cmd_identifier_token30] = ACTIONS(1496), - [aux_sym_cmd_identifier_token31] = ACTIONS(1496), - [aux_sym_cmd_identifier_token32] = ACTIONS(1496), - [aux_sym_cmd_identifier_token33] = ACTIONS(1496), - [aux_sym_cmd_identifier_token34] = ACTIONS(1496), - [aux_sym_cmd_identifier_token35] = ACTIONS(1496), - [aux_sym_cmd_identifier_token36] = ACTIONS(1496), - [anon_sym_true] = ACTIONS(1506), - [anon_sym_false] = ACTIONS(1506), - [anon_sym_null] = ACTIONS(1506), - [aux_sym_cmd_identifier_token38] = ACTIONS(1496), - [aux_sym_cmd_identifier_token39] = ACTIONS(1506), - [aux_sym_cmd_identifier_token40] = ACTIONS(1506), - [anon_sym_def] = ACTIONS(1496), - [anon_sym_export_DASHenv] = ACTIONS(1496), - [anon_sym_extern] = ACTIONS(1496), - [anon_sym_module] = ACTIONS(1496), - [anon_sym_use] = ACTIONS(1496), - [anon_sym_LPAREN] = ACTIONS(1496), - [anon_sym_DOLLAR] = ACTIONS(1526), - [anon_sym_error] = ACTIONS(1496), - [anon_sym_list] = ACTIONS(1496), - [anon_sym_DASH] = ACTIONS(1496), - [anon_sym_break] = ACTIONS(1496), - [anon_sym_continue] = ACTIONS(1496), - [anon_sym_for] = ACTIONS(1496), - [anon_sym_in] = ACTIONS(1496), - [anon_sym_loop] = ACTIONS(1496), - [anon_sym_make] = ACTIONS(1496), - [anon_sym_while] = ACTIONS(1496), - [anon_sym_do] = ACTIONS(1496), - [anon_sym_if] = ACTIONS(1496), - [anon_sym_else] = ACTIONS(1496), - [anon_sym_match] = ACTIONS(1496), - [anon_sym_RBRACE] = ACTIONS(1506), - [anon_sym_try] = ACTIONS(1496), - [anon_sym_catch] = ACTIONS(1496), - [anon_sym_return] = ACTIONS(1496), - [anon_sym_source] = ACTIONS(1496), - [anon_sym_source_DASHenv] = ACTIONS(1496), - [anon_sym_register] = ACTIONS(1496), - [anon_sym_hide] = ACTIONS(1496), - [anon_sym_hide_DASHenv] = ACTIONS(1496), - [anon_sym_overlay] = ACTIONS(1496), - [anon_sym_new] = ACTIONS(1496), - [anon_sym_as] = ACTIONS(1496), - [anon_sym_LPAREN2] = ACTIONS(1528), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1506), - [anon_sym_DOT] = ACTIONS(1614), - [aux_sym__immediate_decimal_token1] = ACTIONS(1616), - [aux_sym__immediate_decimal_token3] = ACTIONS(1618), - [aux_sym__immediate_decimal_token4] = ACTIONS(1620), - [aux_sym__immediate_decimal_token5] = ACTIONS(1622), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1506), - [aux_sym__val_number_decimal_token1] = ACTIONS(1496), - [aux_sym__val_number_decimal_token2] = ACTIONS(1496), - [aux_sym__val_number_decimal_token3] = ACTIONS(1496), - [aux_sym__val_number_decimal_token4] = ACTIONS(1496), - [aux_sym__val_number_token1] = ACTIONS(1506), - [aux_sym__val_number_token2] = ACTIONS(1506), - [aux_sym__val_number_token3] = ACTIONS(1506), - [anon_sym_DQUOTE] = ACTIONS(1506), - [sym__str_single_quotes] = ACTIONS(1506), - [sym__str_back_ticks] = ACTIONS(1506), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1506), - [anon_sym_PLUS] = ACTIONS(1496), - [anon_sym_POUND] = ACTIONS(247), - }, - [230] = { - [sym_comment] = STATE(230), - [anon_sym_export] = ACTIONS(1518), - [anon_sym_alias] = ACTIONS(1518), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_let_DASHenv] = ACTIONS(1518), - [anon_sym_mut] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1518), - [aux_sym_cmd_identifier_token1] = ACTIONS(1518), - [aux_sym_cmd_identifier_token2] = ACTIONS(1518), - [aux_sym_cmd_identifier_token3] = ACTIONS(1518), - [aux_sym_cmd_identifier_token4] = ACTIONS(1518), - [aux_sym_cmd_identifier_token5] = ACTIONS(1518), - [aux_sym_cmd_identifier_token6] = ACTIONS(1518), - [aux_sym_cmd_identifier_token7] = ACTIONS(1518), - [aux_sym_cmd_identifier_token8] = ACTIONS(1518), - [aux_sym_cmd_identifier_token9] = ACTIONS(1518), - [aux_sym_cmd_identifier_token10] = ACTIONS(1518), - [aux_sym_cmd_identifier_token11] = ACTIONS(1518), - [aux_sym_cmd_identifier_token12] = ACTIONS(1518), - [aux_sym_cmd_identifier_token13] = ACTIONS(1518), - [aux_sym_cmd_identifier_token14] = ACTIONS(1518), - [aux_sym_cmd_identifier_token15] = ACTIONS(1518), - [aux_sym_cmd_identifier_token16] = ACTIONS(1518), - [aux_sym_cmd_identifier_token17] = ACTIONS(1518), - [aux_sym_cmd_identifier_token18] = ACTIONS(1518), - [aux_sym_cmd_identifier_token19] = ACTIONS(1518), - [aux_sym_cmd_identifier_token20] = ACTIONS(1518), - [aux_sym_cmd_identifier_token21] = ACTIONS(1518), - [aux_sym_cmd_identifier_token22] = ACTIONS(1518), - [aux_sym_cmd_identifier_token23] = ACTIONS(1518), - [aux_sym_cmd_identifier_token24] = ACTIONS(1518), - [aux_sym_cmd_identifier_token25] = ACTIONS(1518), - [aux_sym_cmd_identifier_token26] = ACTIONS(1518), - [aux_sym_cmd_identifier_token27] = ACTIONS(1518), - [aux_sym_cmd_identifier_token28] = ACTIONS(1518), - [aux_sym_cmd_identifier_token29] = ACTIONS(1518), - [aux_sym_cmd_identifier_token30] = ACTIONS(1518), - [aux_sym_cmd_identifier_token31] = ACTIONS(1518), - [aux_sym_cmd_identifier_token32] = ACTIONS(1518), - [aux_sym_cmd_identifier_token33] = ACTIONS(1518), - [aux_sym_cmd_identifier_token34] = ACTIONS(1518), - [aux_sym_cmd_identifier_token35] = ACTIONS(1518), - [aux_sym_cmd_identifier_token36] = ACTIONS(1518), - [anon_sym_true] = ACTIONS(1518), - [anon_sym_false] = ACTIONS(1518), - [anon_sym_null] = ACTIONS(1518), - [aux_sym_cmd_identifier_token38] = ACTIONS(1518), - [aux_sym_cmd_identifier_token39] = ACTIONS(1518), - [aux_sym_cmd_identifier_token40] = ACTIONS(1518), - [anon_sym_def] = ACTIONS(1518), - [anon_sym_export_DASHenv] = ACTIONS(1518), - [anon_sym_extern] = ACTIONS(1518), - [anon_sym_module] = ACTIONS(1518), - [anon_sym_use] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1518), - [anon_sym_DOLLAR] = ACTIONS(1518), - [anon_sym_error] = ACTIONS(1518), - [anon_sym_list] = ACTIONS(1518), - [anon_sym_DASH] = ACTIONS(1518), - [anon_sym_break] = ACTIONS(1518), - [anon_sym_continue] = ACTIONS(1518), - [anon_sym_for] = ACTIONS(1518), - [anon_sym_in] = ACTIONS(1518), - [anon_sym_loop] = ACTIONS(1518), - [anon_sym_make] = ACTIONS(1518), - [anon_sym_while] = ACTIONS(1518), - [anon_sym_do] = ACTIONS(1518), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_else] = ACTIONS(1518), - [anon_sym_match] = ACTIONS(1518), - [anon_sym_RBRACE] = ACTIONS(1518), - [anon_sym_try] = ACTIONS(1518), - [anon_sym_catch] = ACTIONS(1518), - [anon_sym_return] = ACTIONS(1518), - [anon_sym_source] = ACTIONS(1518), - [anon_sym_source_DASHenv] = ACTIONS(1518), - [anon_sym_register] = ACTIONS(1518), - [anon_sym_hide] = ACTIONS(1518), - [anon_sym_hide_DASHenv] = ACTIONS(1518), - [anon_sym_overlay] = ACTIONS(1518), - [anon_sym_new] = ACTIONS(1518), - [anon_sym_as] = ACTIONS(1518), - [anon_sym_LPAREN2] = ACTIONS(1520), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1518), - [anon_sym_DOT_DOT2] = ACTIONS(1518), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1518), - [aux_sym__val_number_decimal_token1] = ACTIONS(1518), - [aux_sym__val_number_decimal_token2] = ACTIONS(1518), - [aux_sym__val_number_decimal_token3] = ACTIONS(1518), - [aux_sym__val_number_decimal_token4] = ACTIONS(1518), - [aux_sym__val_number_token1] = ACTIONS(1518), - [aux_sym__val_number_token2] = ACTIONS(1518), - [aux_sym__val_number_token3] = ACTIONS(1518), - [sym_filesize_unit] = ACTIONS(1518), - [sym_duration_unit] = ACTIONS(1518), - [anon_sym_DQUOTE] = ACTIONS(1518), - [sym__str_single_quotes] = ACTIONS(1518), - [sym__str_back_ticks] = ACTIONS(1518), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1518), - [sym__entry_separator] = ACTIONS(1520), - [anon_sym_PLUS] = ACTIONS(1518), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1518), - [anon_sym_POUND] = ACTIONS(3), - }, - [231] = { - [sym__expr_parenthesized_immediate] = STATE(642), - [sym__immediate_decimal] = STATE(643), - [sym_val_variable] = STATE(642), - [sym_comment] = STATE(231), - [anon_sym_export] = ACTIONS(1576), - [anon_sym_alias] = ACTIONS(1576), - [anon_sym_let] = ACTIONS(1576), - [anon_sym_let_DASHenv] = ACTIONS(1576), - [anon_sym_mut] = ACTIONS(1576), - [anon_sym_const] = ACTIONS(1576), - [aux_sym_cmd_identifier_token1] = ACTIONS(1576), - [aux_sym_cmd_identifier_token2] = ACTIONS(1576), - [aux_sym_cmd_identifier_token3] = ACTIONS(1576), - [aux_sym_cmd_identifier_token4] = ACTIONS(1576), - [aux_sym_cmd_identifier_token5] = ACTIONS(1576), - [aux_sym_cmd_identifier_token6] = ACTIONS(1576), - [aux_sym_cmd_identifier_token7] = ACTIONS(1576), - [aux_sym_cmd_identifier_token8] = ACTIONS(1576), - [aux_sym_cmd_identifier_token9] = ACTIONS(1576), - [aux_sym_cmd_identifier_token10] = ACTIONS(1576), - [aux_sym_cmd_identifier_token11] = ACTIONS(1576), - [aux_sym_cmd_identifier_token12] = ACTIONS(1576), - [aux_sym_cmd_identifier_token13] = ACTIONS(1576), - [aux_sym_cmd_identifier_token14] = ACTIONS(1576), - [aux_sym_cmd_identifier_token15] = ACTIONS(1576), - [aux_sym_cmd_identifier_token16] = ACTIONS(1576), - [aux_sym_cmd_identifier_token17] = ACTIONS(1576), - [aux_sym_cmd_identifier_token18] = ACTIONS(1576), - [aux_sym_cmd_identifier_token19] = ACTIONS(1576), - [aux_sym_cmd_identifier_token20] = ACTIONS(1576), - [aux_sym_cmd_identifier_token21] = ACTIONS(1576), - [aux_sym_cmd_identifier_token22] = ACTIONS(1576), - [aux_sym_cmd_identifier_token23] = ACTIONS(1576), - [aux_sym_cmd_identifier_token24] = ACTIONS(1576), - [aux_sym_cmd_identifier_token25] = ACTIONS(1576), - [aux_sym_cmd_identifier_token26] = ACTIONS(1576), - [aux_sym_cmd_identifier_token27] = ACTIONS(1576), - [aux_sym_cmd_identifier_token28] = ACTIONS(1576), - [aux_sym_cmd_identifier_token29] = ACTIONS(1576), - [aux_sym_cmd_identifier_token30] = ACTIONS(1576), - [aux_sym_cmd_identifier_token31] = ACTIONS(1576), - [aux_sym_cmd_identifier_token32] = ACTIONS(1576), - [aux_sym_cmd_identifier_token33] = ACTIONS(1576), - [aux_sym_cmd_identifier_token34] = ACTIONS(1576), - [aux_sym_cmd_identifier_token35] = ACTIONS(1576), - [aux_sym_cmd_identifier_token36] = ACTIONS(1576), - [anon_sym_true] = ACTIONS(1584), - [anon_sym_false] = ACTIONS(1584), - [anon_sym_null] = ACTIONS(1584), - [aux_sym_cmd_identifier_token38] = ACTIONS(1576), - [aux_sym_cmd_identifier_token39] = ACTIONS(1584), - [aux_sym_cmd_identifier_token40] = ACTIONS(1584), - [anon_sym_def] = ACTIONS(1576), - [anon_sym_export_DASHenv] = ACTIONS(1576), - [anon_sym_extern] = ACTIONS(1576), - [anon_sym_module] = ACTIONS(1576), - [anon_sym_use] = ACTIONS(1576), - [anon_sym_LPAREN] = ACTIONS(1576), - [anon_sym_DOLLAR] = ACTIONS(1590), - [anon_sym_error] = ACTIONS(1576), - [anon_sym_list] = ACTIONS(1576), - [anon_sym_DASH] = ACTIONS(1576), - [anon_sym_break] = ACTIONS(1576), - [anon_sym_continue] = ACTIONS(1576), - [anon_sym_for] = ACTIONS(1576), - [anon_sym_in] = ACTIONS(1576), - [anon_sym_loop] = ACTIONS(1576), - [anon_sym_make] = ACTIONS(1576), - [anon_sym_while] = ACTIONS(1576), - [anon_sym_do] = ACTIONS(1576), - [anon_sym_if] = ACTIONS(1576), - [anon_sym_else] = ACTIONS(1576), - [anon_sym_match] = ACTIONS(1576), - [anon_sym_RBRACE] = ACTIONS(1584), - [anon_sym_try] = ACTIONS(1576), - [anon_sym_catch] = ACTIONS(1576), - [anon_sym_return] = ACTIONS(1576), - [anon_sym_source] = ACTIONS(1576), - [anon_sym_source_DASHenv] = ACTIONS(1576), - [anon_sym_register] = ACTIONS(1576), - [anon_sym_hide] = ACTIONS(1576), - [anon_sym_hide_DASHenv] = ACTIONS(1576), - [anon_sym_overlay] = ACTIONS(1576), - [anon_sym_new] = ACTIONS(1576), - [anon_sym_as] = ACTIONS(1576), - [anon_sym_LPAREN2] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1584), - [aux_sym__immediate_decimal_token1] = ACTIONS(1624), - [aux_sym__immediate_decimal_token3] = ACTIONS(1626), - [aux_sym__immediate_decimal_token4] = ACTIONS(1628), - [aux_sym__immediate_decimal_token5] = ACTIONS(1630), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1584), - [aux_sym__val_number_decimal_token1] = ACTIONS(1576), - [aux_sym__val_number_decimal_token2] = ACTIONS(1576), - [aux_sym__val_number_decimal_token3] = ACTIONS(1576), - [aux_sym__val_number_decimal_token4] = ACTIONS(1576), - [aux_sym__val_number_token1] = ACTIONS(1584), - [aux_sym__val_number_token2] = ACTIONS(1584), - [aux_sym__val_number_token3] = ACTIONS(1584), - [anon_sym_DQUOTE] = ACTIONS(1584), - [sym__str_single_quotes] = ACTIONS(1584), - [sym__str_back_ticks] = ACTIONS(1584), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1576), - [anon_sym_POUND] = ACTIONS(247), - }, - [232] = { - [sym__expr_parenthesized_immediate] = STATE(640), - [sym__immediate_decimal] = STATE(641), - [sym_val_variable] = STATE(640), - [sym_comment] = STATE(232), - [anon_sym_export] = ACTIONS(1586), - [anon_sym_alias] = ACTIONS(1586), - [anon_sym_let] = ACTIONS(1586), - [anon_sym_let_DASHenv] = ACTIONS(1586), - [anon_sym_mut] = ACTIONS(1586), - [anon_sym_const] = ACTIONS(1586), - [aux_sym_cmd_identifier_token1] = ACTIONS(1586), - [aux_sym_cmd_identifier_token2] = ACTIONS(1586), - [aux_sym_cmd_identifier_token3] = ACTIONS(1586), - [aux_sym_cmd_identifier_token4] = ACTIONS(1586), - [aux_sym_cmd_identifier_token5] = ACTIONS(1586), - [aux_sym_cmd_identifier_token6] = ACTIONS(1586), - [aux_sym_cmd_identifier_token7] = ACTIONS(1586), - [aux_sym_cmd_identifier_token8] = ACTIONS(1586), - [aux_sym_cmd_identifier_token9] = ACTIONS(1586), - [aux_sym_cmd_identifier_token10] = ACTIONS(1586), - [aux_sym_cmd_identifier_token11] = ACTIONS(1586), - [aux_sym_cmd_identifier_token12] = ACTIONS(1586), - [aux_sym_cmd_identifier_token13] = ACTIONS(1586), - [aux_sym_cmd_identifier_token14] = ACTIONS(1586), - [aux_sym_cmd_identifier_token15] = ACTIONS(1586), - [aux_sym_cmd_identifier_token16] = ACTIONS(1586), - [aux_sym_cmd_identifier_token17] = ACTIONS(1586), - [aux_sym_cmd_identifier_token18] = ACTIONS(1586), - [aux_sym_cmd_identifier_token19] = ACTIONS(1586), - [aux_sym_cmd_identifier_token20] = ACTIONS(1586), - [aux_sym_cmd_identifier_token21] = ACTIONS(1586), - [aux_sym_cmd_identifier_token22] = ACTIONS(1586), - [aux_sym_cmd_identifier_token23] = ACTIONS(1586), - [aux_sym_cmd_identifier_token24] = ACTIONS(1586), - [aux_sym_cmd_identifier_token25] = ACTIONS(1586), - [aux_sym_cmd_identifier_token26] = ACTIONS(1586), - [aux_sym_cmd_identifier_token27] = ACTIONS(1586), - [aux_sym_cmd_identifier_token28] = ACTIONS(1586), - [aux_sym_cmd_identifier_token29] = ACTIONS(1586), - [aux_sym_cmd_identifier_token30] = ACTIONS(1586), - [aux_sym_cmd_identifier_token31] = ACTIONS(1586), - [aux_sym_cmd_identifier_token32] = ACTIONS(1586), - [aux_sym_cmd_identifier_token33] = ACTIONS(1586), - [aux_sym_cmd_identifier_token34] = ACTIONS(1586), - [aux_sym_cmd_identifier_token35] = ACTIONS(1586), - [aux_sym_cmd_identifier_token36] = ACTIONS(1586), - [anon_sym_true] = ACTIONS(1588), - [anon_sym_false] = ACTIONS(1588), - [anon_sym_null] = ACTIONS(1588), - [aux_sym_cmd_identifier_token38] = ACTIONS(1586), - [aux_sym_cmd_identifier_token39] = ACTIONS(1588), - [aux_sym_cmd_identifier_token40] = ACTIONS(1588), - [anon_sym_def] = ACTIONS(1586), - [anon_sym_export_DASHenv] = ACTIONS(1586), - [anon_sym_extern] = ACTIONS(1586), - [anon_sym_module] = ACTIONS(1586), - [anon_sym_use] = ACTIONS(1586), - [anon_sym_LPAREN] = ACTIONS(1586), - [anon_sym_DOLLAR] = ACTIONS(1590), - [anon_sym_error] = ACTIONS(1586), - [anon_sym_list] = ACTIONS(1586), - [anon_sym_DASH] = ACTIONS(1586), - [anon_sym_break] = ACTIONS(1586), - [anon_sym_continue] = ACTIONS(1586), - [anon_sym_for] = ACTIONS(1586), - [anon_sym_in] = ACTIONS(1586), - [anon_sym_loop] = ACTIONS(1586), - [anon_sym_make] = ACTIONS(1586), - [anon_sym_while] = ACTIONS(1586), - [anon_sym_do] = ACTIONS(1586), - [anon_sym_if] = ACTIONS(1586), - [anon_sym_else] = ACTIONS(1586), - [anon_sym_match] = ACTIONS(1586), - [anon_sym_RBRACE] = ACTIONS(1588), - [anon_sym_try] = ACTIONS(1586), - [anon_sym_catch] = ACTIONS(1586), - [anon_sym_return] = ACTIONS(1586), - [anon_sym_source] = ACTIONS(1586), - [anon_sym_source_DASHenv] = ACTIONS(1586), - [anon_sym_register] = ACTIONS(1586), - [anon_sym_hide] = ACTIONS(1586), - [anon_sym_hide_DASHenv] = ACTIONS(1586), - [anon_sym_overlay] = ACTIONS(1586), - [anon_sym_new] = ACTIONS(1586), - [anon_sym_as] = ACTIONS(1586), - [anon_sym_LPAREN2] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1588), - [aux_sym__immediate_decimal_token1] = ACTIONS(1624), - [aux_sym__immediate_decimal_token3] = ACTIONS(1626), - [aux_sym__immediate_decimal_token4] = ACTIONS(1628), - [aux_sym__immediate_decimal_token5] = ACTIONS(1630), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1588), - [aux_sym__val_number_decimal_token1] = ACTIONS(1586), - [aux_sym__val_number_decimal_token2] = ACTIONS(1586), - [aux_sym__val_number_decimal_token3] = ACTIONS(1586), - [aux_sym__val_number_decimal_token4] = ACTIONS(1586), - [aux_sym__val_number_token1] = ACTIONS(1588), - [aux_sym__val_number_token2] = ACTIONS(1588), - [aux_sym__val_number_token3] = ACTIONS(1588), - [anon_sym_DQUOTE] = ACTIONS(1588), - [sym__str_single_quotes] = ACTIONS(1588), - [sym__str_back_ticks] = ACTIONS(1588), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1588), - [anon_sym_PLUS] = ACTIONS(1586), - [anon_sym_POUND] = ACTIONS(247), - }, - [233] = { - [sym_comment] = STATE(233), - [anon_sym_export] = ACTIONS(1554), - [anon_sym_alias] = ACTIONS(1554), - [anon_sym_let] = ACTIONS(1554), - [anon_sym_let_DASHenv] = ACTIONS(1554), - [anon_sym_mut] = ACTIONS(1554), - [anon_sym_const] = ACTIONS(1554), - [aux_sym_cmd_identifier_token1] = ACTIONS(1554), - [aux_sym_cmd_identifier_token2] = ACTIONS(1554), - [aux_sym_cmd_identifier_token3] = ACTIONS(1554), - [aux_sym_cmd_identifier_token4] = ACTIONS(1554), - [aux_sym_cmd_identifier_token5] = ACTIONS(1554), - [aux_sym_cmd_identifier_token6] = ACTIONS(1554), - [aux_sym_cmd_identifier_token7] = ACTIONS(1554), - [aux_sym_cmd_identifier_token8] = ACTIONS(1554), - [aux_sym_cmd_identifier_token9] = ACTIONS(1554), - [aux_sym_cmd_identifier_token10] = ACTIONS(1554), - [aux_sym_cmd_identifier_token11] = ACTIONS(1554), - [aux_sym_cmd_identifier_token12] = ACTIONS(1554), - [aux_sym_cmd_identifier_token13] = ACTIONS(1554), - [aux_sym_cmd_identifier_token14] = ACTIONS(1554), - [aux_sym_cmd_identifier_token15] = ACTIONS(1554), - [aux_sym_cmd_identifier_token16] = ACTIONS(1554), - [aux_sym_cmd_identifier_token17] = ACTIONS(1554), - [aux_sym_cmd_identifier_token18] = ACTIONS(1554), - [aux_sym_cmd_identifier_token19] = ACTIONS(1554), - [aux_sym_cmd_identifier_token20] = ACTIONS(1554), - [aux_sym_cmd_identifier_token21] = ACTIONS(1554), - [aux_sym_cmd_identifier_token22] = ACTIONS(1554), - [aux_sym_cmd_identifier_token23] = ACTIONS(1554), - [aux_sym_cmd_identifier_token24] = ACTIONS(1554), - [aux_sym_cmd_identifier_token25] = ACTIONS(1554), - [aux_sym_cmd_identifier_token26] = ACTIONS(1554), - [aux_sym_cmd_identifier_token27] = ACTIONS(1554), - [aux_sym_cmd_identifier_token28] = ACTIONS(1554), - [aux_sym_cmd_identifier_token29] = ACTIONS(1554), - [aux_sym_cmd_identifier_token30] = ACTIONS(1554), - [aux_sym_cmd_identifier_token31] = ACTIONS(1554), - [aux_sym_cmd_identifier_token32] = ACTIONS(1554), - [aux_sym_cmd_identifier_token33] = ACTIONS(1554), - [aux_sym_cmd_identifier_token34] = ACTIONS(1554), - [aux_sym_cmd_identifier_token35] = ACTIONS(1554), - [aux_sym_cmd_identifier_token36] = ACTIONS(1554), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [anon_sym_null] = ACTIONS(1556), - [aux_sym_cmd_identifier_token38] = ACTIONS(1554), - [aux_sym_cmd_identifier_token39] = ACTIONS(1556), - [aux_sym_cmd_identifier_token40] = ACTIONS(1556), - [anon_sym_def] = ACTIONS(1554), - [anon_sym_export_DASHenv] = ACTIONS(1554), - [anon_sym_extern] = ACTIONS(1554), - [anon_sym_module] = ACTIONS(1554), - [anon_sym_use] = ACTIONS(1554), - [anon_sym_LPAREN] = ACTIONS(1554), - [anon_sym_DOLLAR] = ACTIONS(1556), - [anon_sym_error] = ACTIONS(1554), - [anon_sym_list] = ACTIONS(1554), - [anon_sym_DASH] = ACTIONS(1554), - [anon_sym_break] = ACTIONS(1554), - [anon_sym_continue] = ACTIONS(1554), - [anon_sym_for] = ACTIONS(1554), - [anon_sym_in] = ACTIONS(1554), - [anon_sym_loop] = ACTIONS(1554), - [anon_sym_make] = ACTIONS(1554), - [anon_sym_while] = ACTIONS(1554), - [anon_sym_do] = ACTIONS(1554), - [anon_sym_if] = ACTIONS(1554), - [anon_sym_else] = ACTIONS(1554), - [anon_sym_match] = ACTIONS(1554), - [anon_sym_RBRACE] = ACTIONS(1556), - [anon_sym_try] = ACTIONS(1554), - [anon_sym_catch] = ACTIONS(1554), - [anon_sym_return] = ACTIONS(1554), - [anon_sym_source] = ACTIONS(1554), - [anon_sym_source_DASHenv] = ACTIONS(1554), - [anon_sym_register] = ACTIONS(1554), - [anon_sym_hide] = ACTIONS(1554), - [anon_sym_hide_DASHenv] = ACTIONS(1554), - [anon_sym_overlay] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1554), - [anon_sym_as] = ACTIONS(1554), - [anon_sym_LPAREN2] = ACTIONS(1556), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1556), - [anon_sym_DOT_DOT2] = ACTIONS(1554), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1556), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1556), - [aux_sym__immediate_decimal_token2] = ACTIONS(1632), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1554), - [aux_sym__val_number_decimal_token2] = ACTIONS(1556), - [aux_sym__val_number_decimal_token3] = ACTIONS(1556), - [aux_sym__val_number_decimal_token4] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1556), - [aux_sym__val_number_token2] = ACTIONS(1556), - [aux_sym__val_number_token3] = ACTIONS(1556), - [sym_filesize_unit] = ACTIONS(1554), - [sym_duration_unit] = ACTIONS(1554), - [anon_sym_DQUOTE] = ACTIONS(1556), - [sym__str_single_quotes] = ACTIONS(1556), - [sym__str_back_ticks] = ACTIONS(1556), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1556), - [anon_sym_PLUS] = ACTIONS(1554), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1554), - [anon_sym_POUND] = ACTIONS(247), - }, - [234] = { - [sym_comment] = STATE(234), - [aux_sym__block_body_repeat1] = STATE(234), - [anon_sym_export] = ACTIONS(1634), - [anon_sym_alias] = ACTIONS(1634), - [anon_sym_let] = ACTIONS(1634), - [anon_sym_let_DASHenv] = ACTIONS(1634), - [anon_sym_mut] = ACTIONS(1634), - [anon_sym_const] = ACTIONS(1634), - [aux_sym_cmd_identifier_token1] = ACTIONS(1634), - [aux_sym_cmd_identifier_token2] = ACTIONS(1634), - [aux_sym_cmd_identifier_token3] = ACTIONS(1634), - [aux_sym_cmd_identifier_token4] = ACTIONS(1634), - [aux_sym_cmd_identifier_token5] = ACTIONS(1634), - [aux_sym_cmd_identifier_token6] = ACTIONS(1634), - [aux_sym_cmd_identifier_token7] = ACTIONS(1634), - [aux_sym_cmd_identifier_token8] = ACTIONS(1634), - [aux_sym_cmd_identifier_token9] = ACTIONS(1634), - [aux_sym_cmd_identifier_token10] = ACTIONS(1634), - [aux_sym_cmd_identifier_token11] = ACTIONS(1634), - [aux_sym_cmd_identifier_token12] = ACTIONS(1634), - [aux_sym_cmd_identifier_token13] = ACTIONS(1634), - [aux_sym_cmd_identifier_token14] = ACTIONS(1634), - [aux_sym_cmd_identifier_token15] = ACTIONS(1634), - [aux_sym_cmd_identifier_token16] = ACTIONS(1634), - [aux_sym_cmd_identifier_token17] = ACTIONS(1634), - [aux_sym_cmd_identifier_token18] = ACTIONS(1634), - [aux_sym_cmd_identifier_token19] = ACTIONS(1634), - [aux_sym_cmd_identifier_token20] = ACTIONS(1634), - [aux_sym_cmd_identifier_token21] = ACTIONS(1634), - [aux_sym_cmd_identifier_token22] = ACTIONS(1634), - [aux_sym_cmd_identifier_token23] = ACTIONS(1634), - [aux_sym_cmd_identifier_token24] = ACTIONS(1636), - [aux_sym_cmd_identifier_token25] = ACTIONS(1634), - [aux_sym_cmd_identifier_token26] = ACTIONS(1636), - [aux_sym_cmd_identifier_token27] = ACTIONS(1634), - [aux_sym_cmd_identifier_token28] = ACTIONS(1634), - [aux_sym_cmd_identifier_token29] = ACTIONS(1634), - [aux_sym_cmd_identifier_token30] = ACTIONS(1634), - [aux_sym_cmd_identifier_token31] = ACTIONS(1636), - [aux_sym_cmd_identifier_token32] = ACTIONS(1636), - [aux_sym_cmd_identifier_token33] = ACTIONS(1636), - [aux_sym_cmd_identifier_token34] = ACTIONS(1636), - [aux_sym_cmd_identifier_token35] = ACTIONS(1636), - [aux_sym_cmd_identifier_token36] = ACTIONS(1634), - [anon_sym_true] = ACTIONS(1636), - [anon_sym_false] = ACTIONS(1636), - [anon_sym_null] = ACTIONS(1636), - [aux_sym_cmd_identifier_token38] = ACTIONS(1634), - [aux_sym_cmd_identifier_token39] = ACTIONS(1636), - [aux_sym_cmd_identifier_token40] = ACTIONS(1636), - [sym__newline] = ACTIONS(1638), - [anon_sym_SEMI] = ACTIONS(1638), - [anon_sym_def] = ACTIONS(1634), - [anon_sym_export_DASHenv] = ACTIONS(1634), - [anon_sym_extern] = ACTIONS(1634), - [anon_sym_module] = ACTIONS(1634), - [anon_sym_use] = ACTIONS(1634), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LPAREN] = ACTIONS(1636), - [anon_sym_RPAREN] = ACTIONS(1636), - [anon_sym_DOLLAR] = ACTIONS(1634), - [anon_sym_error] = ACTIONS(1634), - [anon_sym_DASH] = ACTIONS(1634), - [anon_sym_break] = ACTIONS(1634), - [anon_sym_continue] = ACTIONS(1634), - [anon_sym_for] = ACTIONS(1634), - [anon_sym_loop] = ACTIONS(1634), - [anon_sym_while] = ACTIONS(1634), - [anon_sym_do] = ACTIONS(1634), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_match] = ACTIONS(1634), - [anon_sym_LBRACE] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(1636), - [anon_sym_DOT_DOT] = ACTIONS(1634), - [anon_sym_try] = ACTIONS(1634), - [anon_sym_return] = ACTIONS(1634), - [anon_sym_source] = ACTIONS(1634), - [anon_sym_source_DASHenv] = ACTIONS(1634), - [anon_sym_register] = ACTIONS(1634), - [anon_sym_hide] = ACTIONS(1634), - [anon_sym_hide_DASHenv] = ACTIONS(1634), - [anon_sym_overlay] = ACTIONS(1634), - [anon_sym_where] = ACTIONS(1636), - [aux_sym_expr_unary_token1] = ACTIONS(1636), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1636), - [anon_sym_DOT_DOT_LT] = ACTIONS(1636), - [aux_sym__val_number_decimal_token1] = ACTIONS(1634), - [aux_sym__val_number_decimal_token2] = ACTIONS(1636), - [aux_sym__val_number_decimal_token3] = ACTIONS(1636), - [aux_sym__val_number_decimal_token4] = ACTIONS(1636), - [aux_sym__val_number_token1] = ACTIONS(1636), - [aux_sym__val_number_token2] = ACTIONS(1636), - [aux_sym__val_number_token3] = ACTIONS(1636), - [anon_sym_0b] = ACTIONS(1634), - [anon_sym_0o] = ACTIONS(1634), - [anon_sym_0x] = ACTIONS(1634), - [sym_val_date] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(1636), - [sym__str_single_quotes] = ACTIONS(1636), - [sym__str_back_ticks] = ACTIONS(1636), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1636), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1636), - [aux_sym_env_var_token1] = ACTIONS(1634), - [anon_sym_CARET] = ACTIONS(1636), - [anon_sym_POUND] = ACTIONS(247), - }, - [235] = { - [sym_cell_path] = STATE(418), - [sym_path] = STATE(369), - [sym_comment] = STATE(235), - [aux_sym_cell_path_repeat1] = STATE(272), - [anon_sym_export] = ACTIONS(1641), - [anon_sym_alias] = ACTIONS(1641), - [anon_sym_let] = ACTIONS(1641), - [anon_sym_let_DASHenv] = ACTIONS(1641), - [anon_sym_mut] = ACTIONS(1641), - [anon_sym_const] = ACTIONS(1641), - [aux_sym_cmd_identifier_token1] = ACTIONS(1641), - [aux_sym_cmd_identifier_token2] = ACTIONS(1641), - [aux_sym_cmd_identifier_token3] = ACTIONS(1641), - [aux_sym_cmd_identifier_token4] = ACTIONS(1641), - [aux_sym_cmd_identifier_token5] = ACTIONS(1641), - [aux_sym_cmd_identifier_token6] = ACTIONS(1641), - [aux_sym_cmd_identifier_token7] = ACTIONS(1641), - [aux_sym_cmd_identifier_token8] = ACTIONS(1641), - [aux_sym_cmd_identifier_token9] = ACTIONS(1641), - [aux_sym_cmd_identifier_token10] = ACTIONS(1641), - [aux_sym_cmd_identifier_token11] = ACTIONS(1641), - [aux_sym_cmd_identifier_token12] = ACTIONS(1641), - [aux_sym_cmd_identifier_token13] = ACTIONS(1641), - [aux_sym_cmd_identifier_token14] = ACTIONS(1641), - [aux_sym_cmd_identifier_token15] = ACTIONS(1641), - [aux_sym_cmd_identifier_token16] = ACTIONS(1641), - [aux_sym_cmd_identifier_token17] = ACTIONS(1641), - [aux_sym_cmd_identifier_token18] = ACTIONS(1641), - [aux_sym_cmd_identifier_token19] = ACTIONS(1641), - [aux_sym_cmd_identifier_token20] = ACTIONS(1641), - [aux_sym_cmd_identifier_token21] = ACTIONS(1641), - [aux_sym_cmd_identifier_token22] = ACTIONS(1641), - [aux_sym_cmd_identifier_token23] = ACTIONS(1641), - [aux_sym_cmd_identifier_token24] = ACTIONS(1641), - [aux_sym_cmd_identifier_token25] = ACTIONS(1641), - [aux_sym_cmd_identifier_token26] = ACTIONS(1641), - [aux_sym_cmd_identifier_token27] = ACTIONS(1641), - [aux_sym_cmd_identifier_token28] = ACTIONS(1641), - [aux_sym_cmd_identifier_token29] = ACTIONS(1641), - [aux_sym_cmd_identifier_token30] = ACTIONS(1641), - [aux_sym_cmd_identifier_token31] = ACTIONS(1641), - [aux_sym_cmd_identifier_token32] = ACTIONS(1641), - [aux_sym_cmd_identifier_token33] = ACTIONS(1641), - [aux_sym_cmd_identifier_token34] = ACTIONS(1641), - [aux_sym_cmd_identifier_token35] = ACTIONS(1641), - [aux_sym_cmd_identifier_token36] = ACTIONS(1641), - [anon_sym_true] = ACTIONS(1641), - [anon_sym_false] = ACTIONS(1641), - [anon_sym_null] = ACTIONS(1641), - [aux_sym_cmd_identifier_token38] = ACTIONS(1641), - [aux_sym_cmd_identifier_token39] = ACTIONS(1641), - [aux_sym_cmd_identifier_token40] = ACTIONS(1641), - [anon_sym_def] = ACTIONS(1641), - [anon_sym_export_DASHenv] = ACTIONS(1641), - [anon_sym_extern] = ACTIONS(1641), - [anon_sym_module] = ACTIONS(1641), - [anon_sym_use] = ACTIONS(1641), - [anon_sym_LPAREN] = ACTIONS(1641), - [anon_sym_DOLLAR] = ACTIONS(1641), - [anon_sym_error] = ACTIONS(1641), - [anon_sym_list] = ACTIONS(1641), - [anon_sym_DASH] = ACTIONS(1641), - [anon_sym_break] = ACTIONS(1641), - [anon_sym_continue] = ACTIONS(1641), - [anon_sym_for] = ACTIONS(1641), - [anon_sym_in] = ACTIONS(1641), - [anon_sym_loop] = ACTIONS(1641), - [anon_sym_make] = ACTIONS(1641), - [anon_sym_while] = ACTIONS(1641), - [anon_sym_do] = ACTIONS(1641), - [anon_sym_if] = ACTIONS(1641), - [anon_sym_else] = ACTIONS(1641), - [anon_sym_match] = ACTIONS(1641), - [anon_sym_RBRACE] = ACTIONS(1641), - [anon_sym_try] = ACTIONS(1641), - [anon_sym_catch] = ACTIONS(1641), - [anon_sym_return] = ACTIONS(1641), - [anon_sym_source] = ACTIONS(1641), - [anon_sym_source_DASHenv] = ACTIONS(1641), - [anon_sym_register] = ACTIONS(1641), - [anon_sym_hide] = ACTIONS(1641), - [anon_sym_hide_DASHenv] = ACTIONS(1641), - [anon_sym_overlay] = ACTIONS(1641), - [anon_sym_new] = ACTIONS(1641), - [anon_sym_as] = ACTIONS(1641), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1641), - [anon_sym_DOT_DOT2] = ACTIONS(1641), - [anon_sym_DOT] = ACTIONS(1643), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1645), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1641), - [aux_sym__val_number_decimal_token1] = ACTIONS(1641), - [aux_sym__val_number_decimal_token2] = ACTIONS(1641), - [aux_sym__val_number_decimal_token3] = ACTIONS(1641), - [aux_sym__val_number_decimal_token4] = ACTIONS(1641), - [aux_sym__val_number_token1] = ACTIONS(1641), - [aux_sym__val_number_token2] = ACTIONS(1641), - [aux_sym__val_number_token3] = ACTIONS(1641), - [anon_sym_DQUOTE] = ACTIONS(1641), - [sym__str_single_quotes] = ACTIONS(1641), - [sym__str_back_ticks] = ACTIONS(1641), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1641), - [sym__entry_separator] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1641), - [anon_sym_POUND] = ACTIONS(3), - }, - [236] = { - [sym_comment] = STATE(236), - [aux_sym__block_body_repeat1] = STATE(234), - [anon_sym_export] = ACTIONS(1647), - [anon_sym_alias] = ACTIONS(1647), - [anon_sym_let] = ACTIONS(1647), - [anon_sym_let_DASHenv] = ACTIONS(1647), - [anon_sym_mut] = ACTIONS(1647), - [anon_sym_const] = ACTIONS(1647), - [aux_sym_cmd_identifier_token1] = ACTIONS(1647), - [aux_sym_cmd_identifier_token2] = ACTIONS(1647), - [aux_sym_cmd_identifier_token3] = ACTIONS(1647), - [aux_sym_cmd_identifier_token4] = ACTIONS(1647), - [aux_sym_cmd_identifier_token5] = ACTIONS(1647), - [aux_sym_cmd_identifier_token6] = ACTIONS(1647), - [aux_sym_cmd_identifier_token7] = ACTIONS(1647), - [aux_sym_cmd_identifier_token8] = ACTIONS(1647), - [aux_sym_cmd_identifier_token9] = ACTIONS(1647), - [aux_sym_cmd_identifier_token10] = ACTIONS(1647), - [aux_sym_cmd_identifier_token11] = ACTIONS(1647), - [aux_sym_cmd_identifier_token12] = ACTIONS(1647), - [aux_sym_cmd_identifier_token13] = ACTIONS(1647), - [aux_sym_cmd_identifier_token14] = ACTIONS(1647), - [aux_sym_cmd_identifier_token15] = ACTIONS(1647), - [aux_sym_cmd_identifier_token16] = ACTIONS(1647), - [aux_sym_cmd_identifier_token17] = ACTIONS(1647), - [aux_sym_cmd_identifier_token18] = ACTIONS(1647), - [aux_sym_cmd_identifier_token19] = ACTIONS(1647), - [aux_sym_cmd_identifier_token20] = ACTIONS(1647), - [aux_sym_cmd_identifier_token21] = ACTIONS(1647), - [aux_sym_cmd_identifier_token22] = ACTIONS(1647), - [aux_sym_cmd_identifier_token23] = ACTIONS(1647), - [aux_sym_cmd_identifier_token24] = ACTIONS(1649), - [aux_sym_cmd_identifier_token25] = ACTIONS(1647), - [aux_sym_cmd_identifier_token26] = ACTIONS(1649), - [aux_sym_cmd_identifier_token27] = ACTIONS(1647), - [aux_sym_cmd_identifier_token28] = ACTIONS(1647), - [aux_sym_cmd_identifier_token29] = ACTIONS(1647), - [aux_sym_cmd_identifier_token30] = ACTIONS(1647), - [aux_sym_cmd_identifier_token31] = ACTIONS(1649), - [aux_sym_cmd_identifier_token32] = ACTIONS(1649), - [aux_sym_cmd_identifier_token33] = ACTIONS(1649), - [aux_sym_cmd_identifier_token34] = ACTIONS(1649), - [aux_sym_cmd_identifier_token35] = ACTIONS(1649), - [aux_sym_cmd_identifier_token36] = ACTIONS(1647), - [anon_sym_true] = ACTIONS(1649), - [anon_sym_false] = ACTIONS(1649), - [anon_sym_null] = ACTIONS(1649), - [aux_sym_cmd_identifier_token38] = ACTIONS(1647), - [aux_sym_cmd_identifier_token39] = ACTIONS(1649), - [aux_sym_cmd_identifier_token40] = ACTIONS(1649), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(1647), - [anon_sym_export_DASHenv] = ACTIONS(1647), - [anon_sym_extern] = ACTIONS(1647), - [anon_sym_module] = ACTIONS(1647), - [anon_sym_use] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_LPAREN] = ACTIONS(1649), - [anon_sym_RPAREN] = ACTIONS(1651), - [anon_sym_DOLLAR] = ACTIONS(1647), - [anon_sym_error] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_break] = ACTIONS(1647), - [anon_sym_continue] = ACTIONS(1647), - [anon_sym_for] = ACTIONS(1647), - [anon_sym_loop] = ACTIONS(1647), - [anon_sym_while] = ACTIONS(1647), - [anon_sym_do] = ACTIONS(1647), - [anon_sym_if] = ACTIONS(1647), - [anon_sym_match] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(1649), - [anon_sym_RBRACE] = ACTIONS(1651), - [anon_sym_DOT_DOT] = ACTIONS(1647), - [anon_sym_try] = ACTIONS(1647), - [anon_sym_return] = ACTIONS(1647), - [anon_sym_source] = ACTIONS(1647), - [anon_sym_source_DASHenv] = ACTIONS(1647), - [anon_sym_register] = ACTIONS(1647), - [anon_sym_hide] = ACTIONS(1647), - [anon_sym_hide_DASHenv] = ACTIONS(1647), - [anon_sym_overlay] = ACTIONS(1647), - [anon_sym_where] = ACTIONS(1649), - [aux_sym_expr_unary_token1] = ACTIONS(1649), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1649), - [anon_sym_DOT_DOT_LT] = ACTIONS(1649), - [aux_sym__val_number_decimal_token1] = ACTIONS(1647), - [aux_sym__val_number_decimal_token2] = ACTIONS(1649), - [aux_sym__val_number_decimal_token3] = ACTIONS(1649), - [aux_sym__val_number_decimal_token4] = ACTIONS(1649), - [aux_sym__val_number_token1] = ACTIONS(1649), - [aux_sym__val_number_token2] = ACTIONS(1649), - [aux_sym__val_number_token3] = ACTIONS(1649), - [anon_sym_0b] = ACTIONS(1647), - [anon_sym_0o] = ACTIONS(1647), - [anon_sym_0x] = ACTIONS(1647), - [sym_val_date] = ACTIONS(1649), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym__str_single_quotes] = ACTIONS(1649), - [sym__str_back_ticks] = ACTIONS(1649), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1649), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1649), - [aux_sym_env_var_token1] = ACTIONS(1647), - [anon_sym_CARET] = ACTIONS(1649), - [anon_sym_POUND] = ACTIONS(247), - }, - [237] = { - [sym_comment] = STATE(237), - [anon_sym_export] = ACTIONS(1540), - [anon_sym_alias] = ACTIONS(1540), - [anon_sym_let] = ACTIONS(1540), - [anon_sym_let_DASHenv] = ACTIONS(1540), - [anon_sym_mut] = ACTIONS(1540), - [anon_sym_const] = ACTIONS(1540), - [aux_sym_cmd_identifier_token1] = ACTIONS(1540), - [aux_sym_cmd_identifier_token2] = ACTIONS(1540), - [aux_sym_cmd_identifier_token3] = ACTIONS(1540), - [aux_sym_cmd_identifier_token4] = ACTIONS(1540), - [aux_sym_cmd_identifier_token5] = ACTIONS(1540), - [aux_sym_cmd_identifier_token6] = ACTIONS(1540), - [aux_sym_cmd_identifier_token7] = ACTIONS(1540), - [aux_sym_cmd_identifier_token8] = ACTIONS(1540), - [aux_sym_cmd_identifier_token9] = ACTIONS(1540), - [aux_sym_cmd_identifier_token10] = ACTIONS(1540), - [aux_sym_cmd_identifier_token11] = ACTIONS(1540), - [aux_sym_cmd_identifier_token12] = ACTIONS(1540), - [aux_sym_cmd_identifier_token13] = ACTIONS(1540), - [aux_sym_cmd_identifier_token14] = ACTIONS(1540), - [aux_sym_cmd_identifier_token15] = ACTIONS(1540), - [aux_sym_cmd_identifier_token16] = ACTIONS(1540), - [aux_sym_cmd_identifier_token17] = ACTIONS(1540), - [aux_sym_cmd_identifier_token18] = ACTIONS(1540), - [aux_sym_cmd_identifier_token19] = ACTIONS(1540), - [aux_sym_cmd_identifier_token20] = ACTIONS(1540), - [aux_sym_cmd_identifier_token21] = ACTIONS(1540), - [aux_sym_cmd_identifier_token22] = ACTIONS(1540), - [aux_sym_cmd_identifier_token23] = ACTIONS(1540), - [aux_sym_cmd_identifier_token24] = ACTIONS(1540), - [aux_sym_cmd_identifier_token25] = ACTIONS(1540), - [aux_sym_cmd_identifier_token26] = ACTIONS(1540), - [aux_sym_cmd_identifier_token27] = ACTIONS(1540), - [aux_sym_cmd_identifier_token28] = ACTIONS(1540), - [aux_sym_cmd_identifier_token29] = ACTIONS(1540), - [aux_sym_cmd_identifier_token30] = ACTIONS(1540), - [aux_sym_cmd_identifier_token31] = ACTIONS(1540), - [aux_sym_cmd_identifier_token32] = ACTIONS(1540), - [aux_sym_cmd_identifier_token33] = ACTIONS(1540), - [aux_sym_cmd_identifier_token34] = ACTIONS(1540), - [aux_sym_cmd_identifier_token35] = ACTIONS(1540), - [aux_sym_cmd_identifier_token36] = ACTIONS(1540), - [anon_sym_true] = ACTIONS(1540), - [anon_sym_false] = ACTIONS(1540), - [anon_sym_null] = ACTIONS(1540), - [aux_sym_cmd_identifier_token38] = ACTIONS(1540), - [aux_sym_cmd_identifier_token39] = ACTIONS(1540), - [aux_sym_cmd_identifier_token40] = ACTIONS(1540), - [anon_sym_def] = ACTIONS(1540), - [anon_sym_export_DASHenv] = ACTIONS(1540), - [anon_sym_extern] = ACTIONS(1540), - [anon_sym_module] = ACTIONS(1540), - [anon_sym_use] = ACTIONS(1540), - [anon_sym_LPAREN] = ACTIONS(1540), - [anon_sym_DOLLAR] = ACTIONS(1540), - [anon_sym_error] = ACTIONS(1540), - [anon_sym_list] = ACTIONS(1540), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_break] = ACTIONS(1540), - [anon_sym_continue] = ACTIONS(1540), - [anon_sym_for] = ACTIONS(1540), - [anon_sym_in] = ACTIONS(1540), - [anon_sym_loop] = ACTIONS(1540), - [anon_sym_make] = ACTIONS(1540), - [anon_sym_while] = ACTIONS(1540), - [anon_sym_do] = ACTIONS(1540), - [anon_sym_if] = ACTIONS(1540), - [anon_sym_else] = ACTIONS(1540), - [anon_sym_match] = ACTIONS(1540), - [anon_sym_RBRACE] = ACTIONS(1540), - [anon_sym_try] = ACTIONS(1540), - [anon_sym_catch] = ACTIONS(1540), - [anon_sym_return] = ACTIONS(1540), - [anon_sym_source] = ACTIONS(1540), - [anon_sym_source_DASHenv] = ACTIONS(1540), - [anon_sym_register] = ACTIONS(1540), - [anon_sym_hide] = ACTIONS(1540), - [anon_sym_hide_DASHenv] = ACTIONS(1540), - [anon_sym_overlay] = ACTIONS(1540), - [anon_sym_new] = ACTIONS(1540), - [anon_sym_as] = ACTIONS(1540), - [anon_sym_LPAREN2] = ACTIONS(1542), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1540), - [anon_sym_DOT_DOT2] = ACTIONS(1540), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1542), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1542), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1540), - [aux_sym__val_number_decimal_token1] = ACTIONS(1540), - [aux_sym__val_number_decimal_token2] = ACTIONS(1540), - [aux_sym__val_number_decimal_token3] = ACTIONS(1540), - [aux_sym__val_number_decimal_token4] = ACTIONS(1540), - [aux_sym__val_number_token1] = ACTIONS(1540), - [aux_sym__val_number_token2] = ACTIONS(1540), - [aux_sym__val_number_token3] = ACTIONS(1540), - [sym_filesize_unit] = ACTIONS(1540), - [sym_duration_unit] = ACTIONS(1540), - [anon_sym_DQUOTE] = ACTIONS(1540), - [sym__str_single_quotes] = ACTIONS(1540), - [sym__str_back_ticks] = ACTIONS(1540), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1540), - [sym__entry_separator] = ACTIONS(1542), - [anon_sym_PLUS] = ACTIONS(1540), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1540), - [anon_sym_POUND] = ACTIONS(3), - }, - [238] = { - [sym_cell_path] = STATE(398), - [sym_path] = STATE(369), - [sym_comment] = STATE(238), - [aux_sym_cell_path_repeat1] = STATE(272), - [anon_sym_export] = ACTIONS(1005), - [anon_sym_alias] = ACTIONS(1005), - [anon_sym_let] = ACTIONS(1005), - [anon_sym_let_DASHenv] = ACTIONS(1005), - [anon_sym_mut] = ACTIONS(1005), - [anon_sym_const] = ACTIONS(1005), - [aux_sym_cmd_identifier_token1] = ACTIONS(1005), - [aux_sym_cmd_identifier_token2] = ACTIONS(1005), - [aux_sym_cmd_identifier_token3] = ACTIONS(1005), - [aux_sym_cmd_identifier_token4] = ACTIONS(1005), - [aux_sym_cmd_identifier_token5] = ACTIONS(1005), - [aux_sym_cmd_identifier_token6] = ACTIONS(1005), - [aux_sym_cmd_identifier_token7] = ACTIONS(1005), - [aux_sym_cmd_identifier_token8] = ACTIONS(1005), - [aux_sym_cmd_identifier_token9] = ACTIONS(1005), - [aux_sym_cmd_identifier_token10] = ACTIONS(1005), - [aux_sym_cmd_identifier_token11] = ACTIONS(1005), - [aux_sym_cmd_identifier_token12] = ACTIONS(1005), - [aux_sym_cmd_identifier_token13] = ACTIONS(1005), - [aux_sym_cmd_identifier_token14] = ACTIONS(1005), - [aux_sym_cmd_identifier_token15] = ACTIONS(1005), - [aux_sym_cmd_identifier_token16] = ACTIONS(1005), - [aux_sym_cmd_identifier_token17] = ACTIONS(1005), - [aux_sym_cmd_identifier_token18] = ACTIONS(1005), - [aux_sym_cmd_identifier_token19] = ACTIONS(1005), - [aux_sym_cmd_identifier_token20] = ACTIONS(1005), - [aux_sym_cmd_identifier_token21] = ACTIONS(1005), - [aux_sym_cmd_identifier_token22] = ACTIONS(1005), - [aux_sym_cmd_identifier_token23] = ACTIONS(1005), - [aux_sym_cmd_identifier_token24] = ACTIONS(1005), - [aux_sym_cmd_identifier_token25] = ACTIONS(1005), - [aux_sym_cmd_identifier_token26] = ACTIONS(1005), - [aux_sym_cmd_identifier_token27] = ACTIONS(1005), - [aux_sym_cmd_identifier_token28] = ACTIONS(1005), - [aux_sym_cmd_identifier_token29] = ACTIONS(1005), - [aux_sym_cmd_identifier_token30] = ACTIONS(1005), - [aux_sym_cmd_identifier_token31] = ACTIONS(1005), - [aux_sym_cmd_identifier_token32] = ACTIONS(1005), - [aux_sym_cmd_identifier_token33] = ACTIONS(1005), - [aux_sym_cmd_identifier_token34] = ACTIONS(1005), - [aux_sym_cmd_identifier_token35] = ACTIONS(1005), - [aux_sym_cmd_identifier_token36] = ACTIONS(1005), - [anon_sym_true] = ACTIONS(1005), - [anon_sym_false] = ACTIONS(1005), - [anon_sym_null] = ACTIONS(1005), - [aux_sym_cmd_identifier_token38] = ACTIONS(1005), - [aux_sym_cmd_identifier_token39] = ACTIONS(1005), - [aux_sym_cmd_identifier_token40] = ACTIONS(1005), - [anon_sym_def] = ACTIONS(1005), - [anon_sym_export_DASHenv] = ACTIONS(1005), - [anon_sym_extern] = ACTIONS(1005), - [anon_sym_module] = ACTIONS(1005), - [anon_sym_use] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1005), - [anon_sym_DOLLAR] = ACTIONS(1005), - [anon_sym_error] = ACTIONS(1005), - [anon_sym_list] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_break] = ACTIONS(1005), - [anon_sym_continue] = ACTIONS(1005), - [anon_sym_for] = ACTIONS(1005), - [anon_sym_in] = ACTIONS(1005), - [anon_sym_loop] = ACTIONS(1005), - [anon_sym_make] = ACTIONS(1005), - [anon_sym_while] = ACTIONS(1005), - [anon_sym_do] = ACTIONS(1005), - [anon_sym_if] = ACTIONS(1005), - [anon_sym_else] = ACTIONS(1005), - [anon_sym_match] = ACTIONS(1005), - [anon_sym_RBRACE] = ACTIONS(1005), - [anon_sym_try] = ACTIONS(1005), - [anon_sym_catch] = ACTIONS(1005), - [anon_sym_return] = ACTIONS(1005), - [anon_sym_source] = ACTIONS(1005), - [anon_sym_source_DASHenv] = ACTIONS(1005), - [anon_sym_register] = ACTIONS(1005), - [anon_sym_hide] = ACTIONS(1005), - [anon_sym_hide_DASHenv] = ACTIONS(1005), - [anon_sym_overlay] = ACTIONS(1005), - [anon_sym_new] = ACTIONS(1005), - [anon_sym_as] = ACTIONS(1005), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1005), - [anon_sym_DOT_DOT2] = ACTIONS(1005), - [anon_sym_DOT] = ACTIONS(1643), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1007), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1007), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1005), - [aux_sym__val_number_decimal_token1] = ACTIONS(1005), - [aux_sym__val_number_decimal_token2] = ACTIONS(1005), - [aux_sym__val_number_decimal_token3] = ACTIONS(1005), - [aux_sym__val_number_decimal_token4] = ACTIONS(1005), - [aux_sym__val_number_token1] = ACTIONS(1005), - [aux_sym__val_number_token2] = ACTIONS(1005), - [aux_sym__val_number_token3] = ACTIONS(1005), - [anon_sym_DQUOTE] = ACTIONS(1005), - [sym__str_single_quotes] = ACTIONS(1005), - [sym__str_back_ticks] = ACTIONS(1005), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1005), - [sym__entry_separator] = ACTIONS(1007), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_POUND] = ACTIONS(3), - }, - [239] = { - [sym_comment] = STATE(239), - [anon_sym_export] = ACTIONS(1554), - [anon_sym_alias] = ACTIONS(1554), - [anon_sym_let] = ACTIONS(1554), - [anon_sym_let_DASHenv] = ACTIONS(1554), - [anon_sym_mut] = ACTIONS(1554), - [anon_sym_const] = ACTIONS(1554), - [aux_sym_cmd_identifier_token1] = ACTIONS(1554), - [aux_sym_cmd_identifier_token2] = ACTIONS(1554), - [aux_sym_cmd_identifier_token3] = ACTIONS(1554), - [aux_sym_cmd_identifier_token4] = ACTIONS(1554), - [aux_sym_cmd_identifier_token5] = ACTIONS(1554), - [aux_sym_cmd_identifier_token6] = ACTIONS(1554), - [aux_sym_cmd_identifier_token7] = ACTIONS(1554), - [aux_sym_cmd_identifier_token8] = ACTIONS(1554), - [aux_sym_cmd_identifier_token9] = ACTIONS(1554), - [aux_sym_cmd_identifier_token10] = ACTIONS(1554), - [aux_sym_cmd_identifier_token11] = ACTIONS(1554), - [aux_sym_cmd_identifier_token12] = ACTIONS(1554), - [aux_sym_cmd_identifier_token13] = ACTIONS(1554), - [aux_sym_cmd_identifier_token14] = ACTIONS(1554), - [aux_sym_cmd_identifier_token15] = ACTIONS(1554), - [aux_sym_cmd_identifier_token16] = ACTIONS(1554), - [aux_sym_cmd_identifier_token17] = ACTIONS(1554), - [aux_sym_cmd_identifier_token18] = ACTIONS(1554), - [aux_sym_cmd_identifier_token19] = ACTIONS(1554), - [aux_sym_cmd_identifier_token20] = ACTIONS(1554), - [aux_sym_cmd_identifier_token21] = ACTIONS(1554), - [aux_sym_cmd_identifier_token22] = ACTIONS(1554), - [aux_sym_cmd_identifier_token23] = ACTIONS(1554), - [aux_sym_cmd_identifier_token24] = ACTIONS(1554), - [aux_sym_cmd_identifier_token25] = ACTIONS(1554), - [aux_sym_cmd_identifier_token26] = ACTIONS(1554), - [aux_sym_cmd_identifier_token27] = ACTIONS(1554), - [aux_sym_cmd_identifier_token28] = ACTIONS(1554), - [aux_sym_cmd_identifier_token29] = ACTIONS(1554), - [aux_sym_cmd_identifier_token30] = ACTIONS(1554), - [aux_sym_cmd_identifier_token31] = ACTIONS(1554), - [aux_sym_cmd_identifier_token32] = ACTIONS(1554), - [aux_sym_cmd_identifier_token33] = ACTIONS(1554), - [aux_sym_cmd_identifier_token34] = ACTIONS(1554), - [aux_sym_cmd_identifier_token35] = ACTIONS(1554), - [aux_sym_cmd_identifier_token36] = ACTIONS(1554), - [anon_sym_true] = ACTIONS(1554), - [anon_sym_false] = ACTIONS(1554), - [anon_sym_null] = ACTIONS(1554), - [aux_sym_cmd_identifier_token38] = ACTIONS(1554), - [aux_sym_cmd_identifier_token39] = ACTIONS(1554), - [aux_sym_cmd_identifier_token40] = ACTIONS(1554), - [anon_sym_def] = ACTIONS(1554), - [anon_sym_export_DASHenv] = ACTIONS(1554), - [anon_sym_extern] = ACTIONS(1554), - [anon_sym_module] = ACTIONS(1554), - [anon_sym_use] = ACTIONS(1554), - [anon_sym_LPAREN] = ACTIONS(1554), - [anon_sym_DOLLAR] = ACTIONS(1554), - [anon_sym_error] = ACTIONS(1554), - [anon_sym_list] = ACTIONS(1554), - [anon_sym_DASH] = ACTIONS(1554), - [anon_sym_break] = ACTIONS(1554), - [anon_sym_continue] = ACTIONS(1554), - [anon_sym_for] = ACTIONS(1554), - [anon_sym_in] = ACTIONS(1554), - [anon_sym_loop] = ACTIONS(1554), - [anon_sym_make] = ACTIONS(1554), - [anon_sym_while] = ACTIONS(1554), - [anon_sym_do] = ACTIONS(1554), - [anon_sym_if] = ACTIONS(1554), - [anon_sym_else] = ACTIONS(1554), - [anon_sym_match] = ACTIONS(1554), - [anon_sym_RBRACE] = ACTIONS(1554), - [anon_sym_try] = ACTIONS(1554), - [anon_sym_catch] = ACTIONS(1554), - [anon_sym_return] = ACTIONS(1554), - [anon_sym_source] = ACTIONS(1554), - [anon_sym_source_DASHenv] = ACTIONS(1554), - [anon_sym_register] = ACTIONS(1554), - [anon_sym_hide] = ACTIONS(1554), - [anon_sym_hide_DASHenv] = ACTIONS(1554), - [anon_sym_overlay] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1554), - [anon_sym_as] = ACTIONS(1554), - [anon_sym_LPAREN2] = ACTIONS(1556), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1554), - [anon_sym_DOT_DOT2] = ACTIONS(1554), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1556), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1556), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1554), - [aux_sym__val_number_decimal_token1] = ACTIONS(1554), - [aux_sym__val_number_decimal_token2] = ACTIONS(1554), - [aux_sym__val_number_decimal_token3] = ACTIONS(1554), - [aux_sym__val_number_decimal_token4] = ACTIONS(1554), - [aux_sym__val_number_token1] = ACTIONS(1554), - [aux_sym__val_number_token2] = ACTIONS(1554), - [aux_sym__val_number_token3] = ACTIONS(1554), - [sym_filesize_unit] = ACTIONS(1554), - [sym_duration_unit] = ACTIONS(1554), - [anon_sym_DQUOTE] = ACTIONS(1554), - [sym__str_single_quotes] = ACTIONS(1554), - [sym__str_back_ticks] = ACTIONS(1554), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1554), - [sym__entry_separator] = ACTIONS(1556), - [anon_sym_PLUS] = ACTIONS(1554), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1554), - [anon_sym_POUND] = ACTIONS(3), - }, - [240] = { - [sym__expr_parenthesized_immediate] = STATE(632), - [sym__immediate_decimal] = STATE(633), - [sym_val_variable] = STATE(632), - [sym_comment] = STATE(240), - [anon_sym_export] = ACTIONS(1496), - [anon_sym_alias] = ACTIONS(1496), - [anon_sym_let] = ACTIONS(1496), - [anon_sym_let_DASHenv] = ACTIONS(1496), - [anon_sym_mut] = ACTIONS(1496), - [anon_sym_const] = ACTIONS(1496), - [aux_sym_cmd_identifier_token1] = ACTIONS(1496), - [aux_sym_cmd_identifier_token2] = ACTIONS(1496), - [aux_sym_cmd_identifier_token3] = ACTIONS(1496), - [aux_sym_cmd_identifier_token4] = ACTIONS(1496), - [aux_sym_cmd_identifier_token5] = ACTIONS(1496), - [aux_sym_cmd_identifier_token6] = ACTIONS(1496), - [aux_sym_cmd_identifier_token7] = ACTIONS(1496), - [aux_sym_cmd_identifier_token8] = ACTIONS(1496), - [aux_sym_cmd_identifier_token9] = ACTIONS(1496), - [aux_sym_cmd_identifier_token10] = ACTIONS(1496), - [aux_sym_cmd_identifier_token11] = ACTIONS(1496), - [aux_sym_cmd_identifier_token12] = ACTIONS(1496), - [aux_sym_cmd_identifier_token13] = ACTIONS(1496), - [aux_sym_cmd_identifier_token14] = ACTIONS(1496), - [aux_sym_cmd_identifier_token15] = ACTIONS(1496), - [aux_sym_cmd_identifier_token16] = ACTIONS(1496), - [aux_sym_cmd_identifier_token17] = ACTIONS(1496), - [aux_sym_cmd_identifier_token18] = ACTIONS(1496), - [aux_sym_cmd_identifier_token19] = ACTIONS(1496), - [aux_sym_cmd_identifier_token20] = ACTIONS(1496), - [aux_sym_cmd_identifier_token21] = ACTIONS(1496), - [aux_sym_cmd_identifier_token22] = ACTIONS(1496), - [aux_sym_cmd_identifier_token23] = ACTIONS(1496), - [aux_sym_cmd_identifier_token24] = ACTIONS(1496), - [aux_sym_cmd_identifier_token25] = ACTIONS(1496), - [aux_sym_cmd_identifier_token26] = ACTIONS(1496), - [aux_sym_cmd_identifier_token27] = ACTIONS(1496), - [aux_sym_cmd_identifier_token28] = ACTIONS(1496), - [aux_sym_cmd_identifier_token29] = ACTIONS(1496), - [aux_sym_cmd_identifier_token30] = ACTIONS(1496), - [aux_sym_cmd_identifier_token31] = ACTIONS(1496), - [aux_sym_cmd_identifier_token32] = ACTIONS(1496), - [aux_sym_cmd_identifier_token33] = ACTIONS(1496), - [aux_sym_cmd_identifier_token34] = ACTIONS(1496), - [aux_sym_cmd_identifier_token35] = ACTIONS(1496), - [aux_sym_cmd_identifier_token36] = ACTIONS(1496), - [anon_sym_true] = ACTIONS(1506), - [anon_sym_false] = ACTIONS(1506), - [anon_sym_null] = ACTIONS(1506), - [aux_sym_cmd_identifier_token38] = ACTIONS(1496), - [aux_sym_cmd_identifier_token39] = ACTIONS(1506), - [aux_sym_cmd_identifier_token40] = ACTIONS(1506), - [anon_sym_def] = ACTIONS(1496), - [anon_sym_export_DASHenv] = ACTIONS(1496), - [anon_sym_extern] = ACTIONS(1496), - [anon_sym_module] = ACTIONS(1496), - [anon_sym_use] = ACTIONS(1496), - [anon_sym_LPAREN] = ACTIONS(1496), - [anon_sym_DOLLAR] = ACTIONS(1590), - [anon_sym_error] = ACTIONS(1496), - [anon_sym_list] = ACTIONS(1496), - [anon_sym_DASH] = ACTIONS(1496), - [anon_sym_break] = ACTIONS(1496), - [anon_sym_continue] = ACTIONS(1496), - [anon_sym_for] = ACTIONS(1496), - [anon_sym_in] = ACTIONS(1496), - [anon_sym_loop] = ACTIONS(1496), - [anon_sym_make] = ACTIONS(1496), - [anon_sym_while] = ACTIONS(1496), - [anon_sym_do] = ACTIONS(1496), - [anon_sym_if] = ACTIONS(1496), - [anon_sym_else] = ACTIONS(1496), - [anon_sym_match] = ACTIONS(1496), - [anon_sym_RBRACE] = ACTIONS(1506), - [anon_sym_try] = ACTIONS(1496), - [anon_sym_catch] = ACTIONS(1496), - [anon_sym_return] = ACTIONS(1496), - [anon_sym_source] = ACTIONS(1496), - [anon_sym_source_DASHenv] = ACTIONS(1496), - [anon_sym_register] = ACTIONS(1496), - [anon_sym_hide] = ACTIONS(1496), - [anon_sym_hide_DASHenv] = ACTIONS(1496), - [anon_sym_overlay] = ACTIONS(1496), - [anon_sym_new] = ACTIONS(1496), - [anon_sym_as] = ACTIONS(1496), - [anon_sym_LPAREN2] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1506), - [aux_sym__immediate_decimal_token1] = ACTIONS(1624), - [aux_sym__immediate_decimal_token3] = ACTIONS(1626), - [aux_sym__immediate_decimal_token4] = ACTIONS(1628), - [aux_sym__immediate_decimal_token5] = ACTIONS(1630), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1506), - [aux_sym__val_number_decimal_token1] = ACTIONS(1496), - [aux_sym__val_number_decimal_token2] = ACTIONS(1496), - [aux_sym__val_number_decimal_token3] = ACTIONS(1496), - [aux_sym__val_number_decimal_token4] = ACTIONS(1496), - [aux_sym__val_number_token1] = ACTIONS(1506), - [aux_sym__val_number_token2] = ACTIONS(1506), - [aux_sym__val_number_token3] = ACTIONS(1506), - [anon_sym_DQUOTE] = ACTIONS(1506), - [sym__str_single_quotes] = ACTIONS(1506), - [sym__str_back_ticks] = ACTIONS(1506), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1506), - [anon_sym_PLUS] = ACTIONS(1496), - [anon_sym_POUND] = ACTIONS(247), - }, - [241] = { - [sym_comment] = STATE(241), - [anon_sym_export] = ACTIONS(1518), - [anon_sym_alias] = ACTIONS(1518), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_let_DASHenv] = ACTIONS(1518), - [anon_sym_mut] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1518), - [aux_sym_cmd_identifier_token1] = ACTIONS(1518), - [aux_sym_cmd_identifier_token2] = ACTIONS(1518), - [aux_sym_cmd_identifier_token3] = ACTIONS(1518), - [aux_sym_cmd_identifier_token4] = ACTIONS(1518), - [aux_sym_cmd_identifier_token5] = ACTIONS(1518), - [aux_sym_cmd_identifier_token6] = ACTIONS(1518), - [aux_sym_cmd_identifier_token7] = ACTIONS(1518), - [aux_sym_cmd_identifier_token8] = ACTIONS(1518), - [aux_sym_cmd_identifier_token9] = ACTIONS(1518), - [aux_sym_cmd_identifier_token10] = ACTIONS(1518), - [aux_sym_cmd_identifier_token11] = ACTIONS(1518), - [aux_sym_cmd_identifier_token12] = ACTIONS(1518), - [aux_sym_cmd_identifier_token13] = ACTIONS(1518), - [aux_sym_cmd_identifier_token14] = ACTIONS(1518), - [aux_sym_cmd_identifier_token15] = ACTIONS(1518), - [aux_sym_cmd_identifier_token16] = ACTIONS(1518), - [aux_sym_cmd_identifier_token17] = ACTIONS(1518), - [aux_sym_cmd_identifier_token18] = ACTIONS(1518), - [aux_sym_cmd_identifier_token19] = ACTIONS(1518), - [aux_sym_cmd_identifier_token20] = ACTIONS(1518), - [aux_sym_cmd_identifier_token21] = ACTIONS(1518), - [aux_sym_cmd_identifier_token22] = ACTIONS(1518), - [aux_sym_cmd_identifier_token23] = ACTIONS(1518), - [aux_sym_cmd_identifier_token24] = ACTIONS(1518), - [aux_sym_cmd_identifier_token25] = ACTIONS(1518), - [aux_sym_cmd_identifier_token26] = ACTIONS(1518), - [aux_sym_cmd_identifier_token27] = ACTIONS(1518), - [aux_sym_cmd_identifier_token28] = ACTIONS(1518), - [aux_sym_cmd_identifier_token29] = ACTIONS(1518), - [aux_sym_cmd_identifier_token30] = ACTIONS(1518), - [aux_sym_cmd_identifier_token31] = ACTIONS(1518), - [aux_sym_cmd_identifier_token32] = ACTIONS(1518), - [aux_sym_cmd_identifier_token33] = ACTIONS(1518), - [aux_sym_cmd_identifier_token34] = ACTIONS(1518), - [aux_sym_cmd_identifier_token35] = ACTIONS(1518), - [aux_sym_cmd_identifier_token36] = ACTIONS(1518), - [anon_sym_true] = ACTIONS(1520), - [anon_sym_false] = ACTIONS(1520), - [anon_sym_null] = ACTIONS(1520), - [aux_sym_cmd_identifier_token38] = ACTIONS(1518), - [aux_sym_cmd_identifier_token39] = ACTIONS(1520), - [aux_sym_cmd_identifier_token40] = ACTIONS(1520), - [anon_sym_def] = ACTIONS(1518), - [anon_sym_export_DASHenv] = ACTIONS(1518), - [anon_sym_extern] = ACTIONS(1518), - [anon_sym_module] = ACTIONS(1518), - [anon_sym_use] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1518), - [anon_sym_DOLLAR] = ACTIONS(1520), - [anon_sym_error] = ACTIONS(1518), - [anon_sym_list] = ACTIONS(1518), - [anon_sym_DASH] = ACTIONS(1518), - [anon_sym_break] = ACTIONS(1518), - [anon_sym_continue] = ACTIONS(1518), - [anon_sym_for] = ACTIONS(1518), - [anon_sym_in] = ACTIONS(1518), - [anon_sym_loop] = ACTIONS(1518), - [anon_sym_make] = ACTIONS(1518), - [anon_sym_while] = ACTIONS(1518), - [anon_sym_do] = ACTIONS(1518), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_else] = ACTIONS(1518), - [anon_sym_match] = ACTIONS(1518), - [anon_sym_RBRACE] = ACTIONS(1520), - [anon_sym_try] = ACTIONS(1518), - [anon_sym_catch] = ACTIONS(1518), - [anon_sym_return] = ACTIONS(1518), - [anon_sym_source] = ACTIONS(1518), - [anon_sym_source_DASHenv] = ACTIONS(1518), - [anon_sym_register] = ACTIONS(1518), - [anon_sym_hide] = ACTIONS(1518), - [anon_sym_hide_DASHenv] = ACTIONS(1518), - [anon_sym_overlay] = ACTIONS(1518), - [anon_sym_new] = ACTIONS(1518), - [anon_sym_as] = ACTIONS(1518), - [anon_sym_LPAREN2] = ACTIONS(1520), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1520), - [anon_sym_DOT_DOT2] = ACTIONS(1518), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), - [aux_sym__immediate_decimal_token2] = ACTIONS(1612), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1520), - [aux_sym__val_number_decimal_token1] = ACTIONS(1518), - [aux_sym__val_number_decimal_token2] = ACTIONS(1520), - [aux_sym__val_number_decimal_token3] = ACTIONS(1520), - [aux_sym__val_number_decimal_token4] = ACTIONS(1520), - [aux_sym__val_number_token1] = ACTIONS(1520), - [aux_sym__val_number_token2] = ACTIONS(1520), - [aux_sym__val_number_token3] = ACTIONS(1520), - [sym_filesize_unit] = ACTIONS(1518), - [sym_duration_unit] = ACTIONS(1518), - [anon_sym_DQUOTE] = ACTIONS(1520), - [sym__str_single_quotes] = ACTIONS(1520), - [sym__str_back_ticks] = ACTIONS(1520), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1520), - [anon_sym_PLUS] = ACTIONS(1518), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1518), - [anon_sym_POUND] = ACTIONS(247), - }, - [242] = { - [sym_comment] = STATE(242), - [anon_sym_export] = ACTIONS(1653), - [anon_sym_alias] = ACTIONS(1653), - [anon_sym_let] = ACTIONS(1653), - [anon_sym_let_DASHenv] = ACTIONS(1653), - [anon_sym_mut] = ACTIONS(1653), - [anon_sym_const] = ACTIONS(1653), - [aux_sym_cmd_identifier_token1] = ACTIONS(1653), - [aux_sym_cmd_identifier_token2] = ACTIONS(1653), - [aux_sym_cmd_identifier_token3] = ACTIONS(1653), - [aux_sym_cmd_identifier_token4] = ACTIONS(1653), - [aux_sym_cmd_identifier_token5] = ACTIONS(1653), - [aux_sym_cmd_identifier_token6] = ACTIONS(1653), - [aux_sym_cmd_identifier_token7] = ACTIONS(1653), - [aux_sym_cmd_identifier_token8] = ACTIONS(1653), - [aux_sym_cmd_identifier_token9] = ACTIONS(1653), - [aux_sym_cmd_identifier_token10] = ACTIONS(1653), - [aux_sym_cmd_identifier_token11] = ACTIONS(1653), - [aux_sym_cmd_identifier_token12] = ACTIONS(1653), - [aux_sym_cmd_identifier_token13] = ACTIONS(1653), - [aux_sym_cmd_identifier_token14] = ACTIONS(1653), - [aux_sym_cmd_identifier_token15] = ACTIONS(1653), - [aux_sym_cmd_identifier_token16] = ACTIONS(1653), - [aux_sym_cmd_identifier_token17] = ACTIONS(1653), - [aux_sym_cmd_identifier_token18] = ACTIONS(1653), - [aux_sym_cmd_identifier_token19] = ACTIONS(1653), - [aux_sym_cmd_identifier_token20] = ACTIONS(1653), - [aux_sym_cmd_identifier_token21] = ACTIONS(1653), - [aux_sym_cmd_identifier_token22] = ACTIONS(1653), - [aux_sym_cmd_identifier_token23] = ACTIONS(1653), - [aux_sym_cmd_identifier_token24] = ACTIONS(1653), - [aux_sym_cmd_identifier_token25] = ACTIONS(1653), - [aux_sym_cmd_identifier_token26] = ACTIONS(1653), - [aux_sym_cmd_identifier_token27] = ACTIONS(1653), - [aux_sym_cmd_identifier_token28] = ACTIONS(1653), - [aux_sym_cmd_identifier_token29] = ACTIONS(1653), - [aux_sym_cmd_identifier_token30] = ACTIONS(1653), - [aux_sym_cmd_identifier_token31] = ACTIONS(1653), - [aux_sym_cmd_identifier_token32] = ACTIONS(1653), - [aux_sym_cmd_identifier_token33] = ACTIONS(1653), - [aux_sym_cmd_identifier_token34] = ACTIONS(1653), - [aux_sym_cmd_identifier_token35] = ACTIONS(1653), - [aux_sym_cmd_identifier_token36] = ACTIONS(1653), - [anon_sym_true] = ACTIONS(1653), - [anon_sym_false] = ACTIONS(1653), - [anon_sym_null] = ACTIONS(1653), - [aux_sym_cmd_identifier_token38] = ACTIONS(1653), - [aux_sym_cmd_identifier_token39] = ACTIONS(1653), - [aux_sym_cmd_identifier_token40] = ACTIONS(1653), - [anon_sym_def] = ACTIONS(1653), - [anon_sym_export_DASHenv] = ACTIONS(1653), - [anon_sym_extern] = ACTIONS(1653), - [anon_sym_module] = ACTIONS(1653), - [anon_sym_use] = ACTIONS(1653), - [anon_sym_LPAREN] = ACTIONS(1653), - [anon_sym_DOLLAR] = ACTIONS(1653), - [anon_sym_error] = ACTIONS(1653), - [anon_sym_list] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1653), - [anon_sym_break] = ACTIONS(1653), - [anon_sym_continue] = ACTIONS(1653), - [anon_sym_for] = ACTIONS(1653), - [anon_sym_in] = ACTIONS(1653), - [anon_sym_loop] = ACTIONS(1653), - [anon_sym_make] = ACTIONS(1653), - [anon_sym_while] = ACTIONS(1653), - [anon_sym_do] = ACTIONS(1653), - [anon_sym_if] = ACTIONS(1653), - [anon_sym_else] = ACTIONS(1653), - [anon_sym_match] = ACTIONS(1653), - [anon_sym_RBRACE] = ACTIONS(1653), - [anon_sym_try] = ACTIONS(1653), - [anon_sym_catch] = ACTIONS(1653), - [anon_sym_return] = ACTIONS(1653), - [anon_sym_source] = ACTIONS(1653), - [anon_sym_source_DASHenv] = ACTIONS(1653), - [anon_sym_register] = ACTIONS(1653), - [anon_sym_hide] = ACTIONS(1653), - [anon_sym_hide_DASHenv] = ACTIONS(1653), - [anon_sym_overlay] = ACTIONS(1653), - [anon_sym_new] = ACTIONS(1653), - [anon_sym_as] = ACTIONS(1653), - [anon_sym_LPAREN2] = ACTIONS(1655), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1653), - [anon_sym_DOT_DOT2] = ACTIONS(1653), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1655), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1655), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1653), - [aux_sym__val_number_decimal_token1] = ACTIONS(1653), - [aux_sym__val_number_decimal_token2] = ACTIONS(1653), - [aux_sym__val_number_decimal_token3] = ACTIONS(1653), - [aux_sym__val_number_decimal_token4] = ACTIONS(1653), - [aux_sym__val_number_token1] = ACTIONS(1653), - [aux_sym__val_number_token2] = ACTIONS(1653), - [aux_sym__val_number_token3] = ACTIONS(1653), - [sym_filesize_unit] = ACTIONS(1653), - [sym_duration_unit] = ACTIONS(1653), - [anon_sym_DQUOTE] = ACTIONS(1653), - [sym__str_single_quotes] = ACTIONS(1653), - [sym__str_back_ticks] = ACTIONS(1653), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1653), - [sym__entry_separator] = ACTIONS(1655), - [anon_sym_PLUS] = ACTIONS(1653), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1653), - [anon_sym_POUND] = ACTIONS(3), - }, - [243] = { - [sym_comment] = STATE(243), - [aux_sym__block_body_repeat1] = STATE(234), - [anon_sym_export] = ACTIONS(1647), - [anon_sym_alias] = ACTIONS(1647), - [anon_sym_let] = ACTIONS(1647), - [anon_sym_let_DASHenv] = ACTIONS(1647), - [anon_sym_mut] = ACTIONS(1647), - [anon_sym_const] = ACTIONS(1647), - [aux_sym_cmd_identifier_token1] = ACTIONS(1647), - [aux_sym_cmd_identifier_token2] = ACTIONS(1647), - [aux_sym_cmd_identifier_token3] = ACTIONS(1647), - [aux_sym_cmd_identifier_token4] = ACTIONS(1647), - [aux_sym_cmd_identifier_token5] = ACTIONS(1647), - [aux_sym_cmd_identifier_token6] = ACTIONS(1647), - [aux_sym_cmd_identifier_token7] = ACTIONS(1647), - [aux_sym_cmd_identifier_token8] = ACTIONS(1647), - [aux_sym_cmd_identifier_token9] = ACTIONS(1647), - [aux_sym_cmd_identifier_token10] = ACTIONS(1647), - [aux_sym_cmd_identifier_token11] = ACTIONS(1647), - [aux_sym_cmd_identifier_token12] = ACTIONS(1647), - [aux_sym_cmd_identifier_token13] = ACTIONS(1647), - [aux_sym_cmd_identifier_token14] = ACTIONS(1647), - [aux_sym_cmd_identifier_token15] = ACTIONS(1647), - [aux_sym_cmd_identifier_token16] = ACTIONS(1647), - [aux_sym_cmd_identifier_token17] = ACTIONS(1647), - [aux_sym_cmd_identifier_token18] = ACTIONS(1647), - [aux_sym_cmd_identifier_token19] = ACTIONS(1647), - [aux_sym_cmd_identifier_token20] = ACTIONS(1647), - [aux_sym_cmd_identifier_token21] = ACTIONS(1647), - [aux_sym_cmd_identifier_token22] = ACTIONS(1647), - [aux_sym_cmd_identifier_token23] = ACTIONS(1647), - [aux_sym_cmd_identifier_token24] = ACTIONS(1649), - [aux_sym_cmd_identifier_token25] = ACTIONS(1647), - [aux_sym_cmd_identifier_token26] = ACTIONS(1649), - [aux_sym_cmd_identifier_token27] = ACTIONS(1647), - [aux_sym_cmd_identifier_token28] = ACTIONS(1647), - [aux_sym_cmd_identifier_token29] = ACTIONS(1647), - [aux_sym_cmd_identifier_token30] = ACTIONS(1647), - [aux_sym_cmd_identifier_token31] = ACTIONS(1649), - [aux_sym_cmd_identifier_token32] = ACTIONS(1649), - [aux_sym_cmd_identifier_token33] = ACTIONS(1649), - [aux_sym_cmd_identifier_token34] = ACTIONS(1649), - [aux_sym_cmd_identifier_token35] = ACTIONS(1649), - [aux_sym_cmd_identifier_token36] = ACTIONS(1647), - [anon_sym_true] = ACTIONS(1649), - [anon_sym_false] = ACTIONS(1649), - [anon_sym_null] = ACTIONS(1649), - [aux_sym_cmd_identifier_token38] = ACTIONS(1647), - [aux_sym_cmd_identifier_token39] = ACTIONS(1649), - [aux_sym_cmd_identifier_token40] = ACTIONS(1649), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(1647), - [anon_sym_export_DASHenv] = ACTIONS(1647), - [anon_sym_extern] = ACTIONS(1647), - [anon_sym_module] = ACTIONS(1647), - [anon_sym_use] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_LPAREN] = ACTIONS(1649), - [anon_sym_RPAREN] = ACTIONS(1657), - [anon_sym_DOLLAR] = ACTIONS(1647), - [anon_sym_error] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_break] = ACTIONS(1647), - [anon_sym_continue] = ACTIONS(1647), - [anon_sym_for] = ACTIONS(1647), - [anon_sym_loop] = ACTIONS(1647), - [anon_sym_while] = ACTIONS(1647), - [anon_sym_do] = ACTIONS(1647), - [anon_sym_if] = ACTIONS(1647), - [anon_sym_match] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(1649), - [anon_sym_RBRACE] = ACTIONS(1657), - [anon_sym_DOT_DOT] = ACTIONS(1647), - [anon_sym_try] = ACTIONS(1647), - [anon_sym_return] = ACTIONS(1647), - [anon_sym_source] = ACTIONS(1647), - [anon_sym_source_DASHenv] = ACTIONS(1647), - [anon_sym_register] = ACTIONS(1647), - [anon_sym_hide] = ACTIONS(1647), - [anon_sym_hide_DASHenv] = ACTIONS(1647), - [anon_sym_overlay] = ACTIONS(1647), - [anon_sym_where] = ACTIONS(1649), - [aux_sym_expr_unary_token1] = ACTIONS(1649), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1649), - [anon_sym_DOT_DOT_LT] = ACTIONS(1649), - [aux_sym__val_number_decimal_token1] = ACTIONS(1647), - [aux_sym__val_number_decimal_token2] = ACTIONS(1649), - [aux_sym__val_number_decimal_token3] = ACTIONS(1649), - [aux_sym__val_number_decimal_token4] = ACTIONS(1649), - [aux_sym__val_number_token1] = ACTIONS(1649), - [aux_sym__val_number_token2] = ACTIONS(1649), - [aux_sym__val_number_token3] = ACTIONS(1649), - [anon_sym_0b] = ACTIONS(1647), - [anon_sym_0o] = ACTIONS(1647), - [anon_sym_0x] = ACTIONS(1647), - [sym_val_date] = ACTIONS(1649), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym__str_single_quotes] = ACTIONS(1649), - [sym__str_back_ticks] = ACTIONS(1649), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1649), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1649), - [aux_sym_env_var_token1] = ACTIONS(1647), - [anon_sym_CARET] = ACTIONS(1649), - [anon_sym_POUND] = ACTIONS(247), - }, - [244] = { - [sym_comment] = STATE(244), - [anon_sym_export] = ACTIONS(1659), - [anon_sym_alias] = ACTIONS(1659), - [anon_sym_let] = ACTIONS(1659), - [anon_sym_let_DASHenv] = ACTIONS(1659), - [anon_sym_mut] = ACTIONS(1659), - [anon_sym_const] = ACTIONS(1659), - [aux_sym_cmd_identifier_token1] = ACTIONS(1659), - [aux_sym_cmd_identifier_token2] = ACTIONS(1659), - [aux_sym_cmd_identifier_token3] = ACTIONS(1659), - [aux_sym_cmd_identifier_token4] = ACTIONS(1659), - [aux_sym_cmd_identifier_token5] = ACTIONS(1659), - [aux_sym_cmd_identifier_token6] = ACTIONS(1659), - [aux_sym_cmd_identifier_token7] = ACTIONS(1659), - [aux_sym_cmd_identifier_token8] = ACTIONS(1659), - [aux_sym_cmd_identifier_token9] = ACTIONS(1659), - [aux_sym_cmd_identifier_token10] = ACTIONS(1659), - [aux_sym_cmd_identifier_token11] = ACTIONS(1659), - [aux_sym_cmd_identifier_token12] = ACTIONS(1659), - [aux_sym_cmd_identifier_token13] = ACTIONS(1659), - [aux_sym_cmd_identifier_token14] = ACTIONS(1659), - [aux_sym_cmd_identifier_token15] = ACTIONS(1659), - [aux_sym_cmd_identifier_token16] = ACTIONS(1659), - [aux_sym_cmd_identifier_token17] = ACTIONS(1659), - [aux_sym_cmd_identifier_token18] = ACTIONS(1659), - [aux_sym_cmd_identifier_token19] = ACTIONS(1659), - [aux_sym_cmd_identifier_token20] = ACTIONS(1659), - [aux_sym_cmd_identifier_token21] = ACTIONS(1659), - [aux_sym_cmd_identifier_token22] = ACTIONS(1659), - [aux_sym_cmd_identifier_token23] = ACTIONS(1659), - [aux_sym_cmd_identifier_token24] = ACTIONS(1659), - [aux_sym_cmd_identifier_token25] = ACTIONS(1659), - [aux_sym_cmd_identifier_token26] = ACTIONS(1659), - [aux_sym_cmd_identifier_token27] = ACTIONS(1659), - [aux_sym_cmd_identifier_token28] = ACTIONS(1659), - [aux_sym_cmd_identifier_token29] = ACTIONS(1659), - [aux_sym_cmd_identifier_token30] = ACTIONS(1659), - [aux_sym_cmd_identifier_token31] = ACTIONS(1659), - [aux_sym_cmd_identifier_token32] = ACTIONS(1659), - [aux_sym_cmd_identifier_token33] = ACTIONS(1659), - [aux_sym_cmd_identifier_token34] = ACTIONS(1659), - [aux_sym_cmd_identifier_token35] = ACTIONS(1659), - [aux_sym_cmd_identifier_token36] = ACTIONS(1659), - [anon_sym_true] = ACTIONS(1659), - [anon_sym_false] = ACTIONS(1659), - [anon_sym_null] = ACTIONS(1659), - [aux_sym_cmd_identifier_token38] = ACTIONS(1659), - [aux_sym_cmd_identifier_token39] = ACTIONS(1659), - [aux_sym_cmd_identifier_token40] = ACTIONS(1659), - [anon_sym_def] = ACTIONS(1659), - [anon_sym_export_DASHenv] = ACTIONS(1659), - [anon_sym_extern] = ACTIONS(1659), - [anon_sym_module] = ACTIONS(1659), - [anon_sym_use] = ACTIONS(1659), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_DOLLAR] = ACTIONS(1659), - [anon_sym_error] = ACTIONS(1659), - [anon_sym_list] = ACTIONS(1659), - [anon_sym_DASH] = ACTIONS(1659), - [anon_sym_break] = ACTIONS(1659), - [anon_sym_continue] = ACTIONS(1659), - [anon_sym_for] = ACTIONS(1659), - [anon_sym_in] = ACTIONS(1659), - [anon_sym_loop] = ACTIONS(1659), - [anon_sym_make] = ACTIONS(1659), - [anon_sym_while] = ACTIONS(1659), - [anon_sym_do] = ACTIONS(1659), - [anon_sym_if] = ACTIONS(1659), - [anon_sym_else] = ACTIONS(1659), - [anon_sym_match] = ACTIONS(1659), - [anon_sym_RBRACE] = ACTIONS(1659), - [anon_sym_try] = ACTIONS(1659), - [anon_sym_catch] = ACTIONS(1659), - [anon_sym_return] = ACTIONS(1659), - [anon_sym_source] = ACTIONS(1659), - [anon_sym_source_DASHenv] = ACTIONS(1659), - [anon_sym_register] = ACTIONS(1659), - [anon_sym_hide] = ACTIONS(1659), - [anon_sym_hide_DASHenv] = ACTIONS(1659), - [anon_sym_overlay] = ACTIONS(1659), - [anon_sym_new] = ACTIONS(1659), - [anon_sym_as] = ACTIONS(1659), - [anon_sym_LPAREN2] = ACTIONS(1661), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1659), - [anon_sym_DOT_DOT2] = ACTIONS(1659), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1661), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1661), - [aux_sym__immediate_decimal_token1] = ACTIONS(1663), - [aux_sym__immediate_decimal_token2] = ACTIONS(1665), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1659), - [aux_sym__val_number_decimal_token1] = ACTIONS(1659), - [aux_sym__val_number_decimal_token2] = ACTIONS(1659), - [aux_sym__val_number_decimal_token3] = ACTIONS(1659), - [aux_sym__val_number_decimal_token4] = ACTIONS(1659), - [aux_sym__val_number_token1] = ACTIONS(1659), - [aux_sym__val_number_token2] = ACTIONS(1659), - [aux_sym__val_number_token3] = ACTIONS(1659), - [anon_sym_DQUOTE] = ACTIONS(1659), - [sym__str_single_quotes] = ACTIONS(1659), - [sym__str_back_ticks] = ACTIONS(1659), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1659), - [sym__entry_separator] = ACTIONS(1661), - [anon_sym_PLUS] = ACTIONS(1659), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1659), - [anon_sym_POUND] = ACTIONS(3), - }, - [245] = { - [sym_comment] = STATE(245), - [anon_sym_export] = ACTIONS(1667), - [anon_sym_alias] = ACTIONS(1667), - [anon_sym_let] = ACTIONS(1667), - [anon_sym_let_DASHenv] = ACTIONS(1667), - [anon_sym_mut] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1667), - [aux_sym_cmd_identifier_token1] = ACTIONS(1667), - [aux_sym_cmd_identifier_token2] = ACTIONS(1667), - [aux_sym_cmd_identifier_token3] = ACTIONS(1667), - [aux_sym_cmd_identifier_token4] = ACTIONS(1667), - [aux_sym_cmd_identifier_token5] = ACTIONS(1667), - [aux_sym_cmd_identifier_token6] = ACTIONS(1667), - [aux_sym_cmd_identifier_token7] = ACTIONS(1667), - [aux_sym_cmd_identifier_token8] = ACTIONS(1667), - [aux_sym_cmd_identifier_token9] = ACTIONS(1667), - [aux_sym_cmd_identifier_token10] = ACTIONS(1667), - [aux_sym_cmd_identifier_token11] = ACTIONS(1667), - [aux_sym_cmd_identifier_token12] = ACTIONS(1667), - [aux_sym_cmd_identifier_token13] = ACTIONS(1667), - [aux_sym_cmd_identifier_token14] = ACTIONS(1667), - [aux_sym_cmd_identifier_token15] = ACTIONS(1667), - [aux_sym_cmd_identifier_token16] = ACTIONS(1667), - [aux_sym_cmd_identifier_token17] = ACTIONS(1667), - [aux_sym_cmd_identifier_token18] = ACTIONS(1667), - [aux_sym_cmd_identifier_token19] = ACTIONS(1667), - [aux_sym_cmd_identifier_token20] = ACTIONS(1667), - [aux_sym_cmd_identifier_token21] = ACTIONS(1667), - [aux_sym_cmd_identifier_token22] = ACTIONS(1667), - [aux_sym_cmd_identifier_token23] = ACTIONS(1667), - [aux_sym_cmd_identifier_token24] = ACTIONS(1667), - [aux_sym_cmd_identifier_token25] = ACTIONS(1667), - [aux_sym_cmd_identifier_token26] = ACTIONS(1667), - [aux_sym_cmd_identifier_token27] = ACTIONS(1667), - [aux_sym_cmd_identifier_token28] = ACTIONS(1667), - [aux_sym_cmd_identifier_token29] = ACTIONS(1667), - [aux_sym_cmd_identifier_token30] = ACTIONS(1667), - [aux_sym_cmd_identifier_token31] = ACTIONS(1667), - [aux_sym_cmd_identifier_token32] = ACTIONS(1667), - [aux_sym_cmd_identifier_token33] = ACTIONS(1667), - [aux_sym_cmd_identifier_token34] = ACTIONS(1667), - [aux_sym_cmd_identifier_token35] = ACTIONS(1667), - [aux_sym_cmd_identifier_token36] = ACTIONS(1667), - [anon_sym_true] = ACTIONS(1667), - [anon_sym_false] = ACTIONS(1667), - [anon_sym_null] = ACTIONS(1667), - [aux_sym_cmd_identifier_token38] = ACTIONS(1667), - [aux_sym_cmd_identifier_token39] = ACTIONS(1667), - [aux_sym_cmd_identifier_token40] = ACTIONS(1667), - [anon_sym_def] = ACTIONS(1667), - [anon_sym_export_DASHenv] = ACTIONS(1667), - [anon_sym_extern] = ACTIONS(1667), - [anon_sym_module] = ACTIONS(1667), - [anon_sym_use] = ACTIONS(1667), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_DOLLAR] = ACTIONS(1667), - [anon_sym_error] = ACTIONS(1667), - [anon_sym_list] = ACTIONS(1667), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_break] = ACTIONS(1667), - [anon_sym_continue] = ACTIONS(1667), - [anon_sym_for] = ACTIONS(1667), - [anon_sym_in] = ACTIONS(1667), - [anon_sym_loop] = ACTIONS(1667), - [anon_sym_make] = ACTIONS(1667), - [anon_sym_while] = ACTIONS(1667), - [anon_sym_do] = ACTIONS(1667), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_else] = ACTIONS(1667), - [anon_sym_match] = ACTIONS(1667), - [anon_sym_RBRACE] = ACTIONS(1667), - [anon_sym_try] = ACTIONS(1667), - [anon_sym_catch] = ACTIONS(1667), - [anon_sym_return] = ACTIONS(1667), - [anon_sym_source] = ACTIONS(1667), - [anon_sym_source_DASHenv] = ACTIONS(1667), - [anon_sym_register] = ACTIONS(1667), - [anon_sym_hide] = ACTIONS(1667), - [anon_sym_hide_DASHenv] = ACTIONS(1667), - [anon_sym_overlay] = ACTIONS(1667), - [anon_sym_new] = ACTIONS(1667), - [anon_sym_as] = ACTIONS(1667), - [anon_sym_LPAREN2] = ACTIONS(1669), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1667), - [anon_sym_DOT_DOT2] = ACTIONS(1667), - [anon_sym_DOT] = ACTIONS(1671), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [aux_sym__immediate_decimal_token2] = ACTIONS(1673), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1667), - [aux_sym__val_number_decimal_token1] = ACTIONS(1667), - [aux_sym__val_number_decimal_token2] = ACTIONS(1667), - [aux_sym__val_number_decimal_token3] = ACTIONS(1667), - [aux_sym__val_number_decimal_token4] = ACTIONS(1667), - [aux_sym__val_number_token1] = ACTIONS(1667), - [aux_sym__val_number_token2] = ACTIONS(1667), - [aux_sym__val_number_token3] = ACTIONS(1667), - [anon_sym_DQUOTE] = ACTIONS(1667), - [sym__str_single_quotes] = ACTIONS(1667), - [sym__str_back_ticks] = ACTIONS(1667), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1667), - [sym__entry_separator] = ACTIONS(1669), - [anon_sym_PLUS] = ACTIONS(1667), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(3), - }, - [246] = { - [sym_cell_path] = STATE(420), - [sym_path] = STATE(369), - [sym_comment] = STATE(246), - [aux_sym_cell_path_repeat1] = STATE(272), - [anon_sym_export] = ACTIONS(1675), - [anon_sym_alias] = ACTIONS(1675), - [anon_sym_let] = ACTIONS(1675), - [anon_sym_let_DASHenv] = ACTIONS(1675), - [anon_sym_mut] = ACTIONS(1675), - [anon_sym_const] = ACTIONS(1675), - [aux_sym_cmd_identifier_token1] = ACTIONS(1675), - [aux_sym_cmd_identifier_token2] = ACTIONS(1675), - [aux_sym_cmd_identifier_token3] = ACTIONS(1675), - [aux_sym_cmd_identifier_token4] = ACTIONS(1675), - [aux_sym_cmd_identifier_token5] = ACTIONS(1675), - [aux_sym_cmd_identifier_token6] = ACTIONS(1675), - [aux_sym_cmd_identifier_token7] = ACTIONS(1675), - [aux_sym_cmd_identifier_token8] = ACTIONS(1675), - [aux_sym_cmd_identifier_token9] = ACTIONS(1675), - [aux_sym_cmd_identifier_token10] = ACTIONS(1675), - [aux_sym_cmd_identifier_token11] = ACTIONS(1675), - [aux_sym_cmd_identifier_token12] = ACTIONS(1675), - [aux_sym_cmd_identifier_token13] = ACTIONS(1675), - [aux_sym_cmd_identifier_token14] = ACTIONS(1675), - [aux_sym_cmd_identifier_token15] = ACTIONS(1675), - [aux_sym_cmd_identifier_token16] = ACTIONS(1675), - [aux_sym_cmd_identifier_token17] = ACTIONS(1675), - [aux_sym_cmd_identifier_token18] = ACTIONS(1675), - [aux_sym_cmd_identifier_token19] = ACTIONS(1675), - [aux_sym_cmd_identifier_token20] = ACTIONS(1675), - [aux_sym_cmd_identifier_token21] = ACTIONS(1675), - [aux_sym_cmd_identifier_token22] = ACTIONS(1675), - [aux_sym_cmd_identifier_token23] = ACTIONS(1675), - [aux_sym_cmd_identifier_token24] = ACTIONS(1675), - [aux_sym_cmd_identifier_token25] = ACTIONS(1675), - [aux_sym_cmd_identifier_token26] = ACTIONS(1675), - [aux_sym_cmd_identifier_token27] = ACTIONS(1675), - [aux_sym_cmd_identifier_token28] = ACTIONS(1675), - [aux_sym_cmd_identifier_token29] = ACTIONS(1675), - [aux_sym_cmd_identifier_token30] = ACTIONS(1675), - [aux_sym_cmd_identifier_token31] = ACTIONS(1675), - [aux_sym_cmd_identifier_token32] = ACTIONS(1675), - [aux_sym_cmd_identifier_token33] = ACTIONS(1675), - [aux_sym_cmd_identifier_token34] = ACTIONS(1675), - [aux_sym_cmd_identifier_token35] = ACTIONS(1675), - [aux_sym_cmd_identifier_token36] = ACTIONS(1675), - [anon_sym_true] = ACTIONS(1675), - [anon_sym_false] = ACTIONS(1675), - [anon_sym_null] = ACTIONS(1675), - [aux_sym_cmd_identifier_token38] = ACTIONS(1675), - [aux_sym_cmd_identifier_token39] = ACTIONS(1675), - [aux_sym_cmd_identifier_token40] = ACTIONS(1675), - [anon_sym_def] = ACTIONS(1675), - [anon_sym_export_DASHenv] = ACTIONS(1675), - [anon_sym_extern] = ACTIONS(1675), - [anon_sym_module] = ACTIONS(1675), - [anon_sym_use] = ACTIONS(1675), - [anon_sym_LPAREN] = ACTIONS(1675), - [anon_sym_DOLLAR] = ACTIONS(1675), - [anon_sym_error] = ACTIONS(1675), - [anon_sym_list] = ACTIONS(1675), - [anon_sym_DASH] = ACTIONS(1675), - [anon_sym_break] = ACTIONS(1675), - [anon_sym_continue] = ACTIONS(1675), - [anon_sym_for] = ACTIONS(1675), - [anon_sym_in] = ACTIONS(1675), - [anon_sym_loop] = ACTIONS(1675), - [anon_sym_make] = ACTIONS(1675), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_do] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1675), - [anon_sym_else] = ACTIONS(1675), - [anon_sym_match] = ACTIONS(1675), - [anon_sym_RBRACE] = ACTIONS(1675), - [anon_sym_try] = ACTIONS(1675), - [anon_sym_catch] = ACTIONS(1675), - [anon_sym_return] = ACTIONS(1675), - [anon_sym_source] = ACTIONS(1675), - [anon_sym_source_DASHenv] = ACTIONS(1675), - [anon_sym_register] = ACTIONS(1675), - [anon_sym_hide] = ACTIONS(1675), - [anon_sym_hide_DASHenv] = ACTIONS(1675), - [anon_sym_overlay] = ACTIONS(1675), - [anon_sym_new] = ACTIONS(1675), - [anon_sym_as] = ACTIONS(1675), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1675), - [anon_sym_DOT_DOT2] = ACTIONS(1675), - [anon_sym_DOT] = ACTIONS(1643), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1677), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1677), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1675), - [aux_sym__val_number_decimal_token1] = ACTIONS(1675), - [aux_sym__val_number_decimal_token2] = ACTIONS(1675), - [aux_sym__val_number_decimal_token3] = ACTIONS(1675), - [aux_sym__val_number_decimal_token4] = ACTIONS(1675), - [aux_sym__val_number_token1] = ACTIONS(1675), - [aux_sym__val_number_token2] = ACTIONS(1675), - [aux_sym__val_number_token3] = ACTIONS(1675), - [anon_sym_DQUOTE] = ACTIONS(1675), - [sym__str_single_quotes] = ACTIONS(1675), - [sym__str_back_ticks] = ACTIONS(1675), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1675), - [sym__entry_separator] = ACTIONS(1677), - [anon_sym_PLUS] = ACTIONS(1675), - [anon_sym_POUND] = ACTIONS(3), - }, - [247] = { - [sym__expr_parenthesized_immediate] = STATE(7285), - [sym_comment] = STATE(247), [anon_sym_export] = ACTIONS(1560), [anon_sym_alias] = ACTIONS(1560), [anon_sym_let] = ACTIONS(1560), @@ -105395,19 +104111,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(1560), [aux_sym_cmd_identifier_token35] = ACTIONS(1560), [aux_sym_cmd_identifier_token36] = ACTIONS(1560), - [anon_sym_true] = ACTIONS(1572), - [anon_sym_false] = ACTIONS(1572), - [anon_sym_null] = ACTIONS(1572), + [anon_sym_true] = ACTIONS(1560), + [anon_sym_false] = ACTIONS(1560), + [anon_sym_null] = ACTIONS(1560), [aux_sym_cmd_identifier_token38] = ACTIONS(1560), - [aux_sym_cmd_identifier_token39] = ACTIONS(1572), - [aux_sym_cmd_identifier_token40] = ACTIONS(1572), + [aux_sym_cmd_identifier_token39] = ACTIONS(1560), + [aux_sym_cmd_identifier_token40] = ACTIONS(1560), [anon_sym_def] = ACTIONS(1560), [anon_sym_export_DASHenv] = ACTIONS(1560), [anon_sym_extern] = ACTIONS(1560), [anon_sym_module] = ACTIONS(1560), [anon_sym_use] = ACTIONS(1560), [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_DOLLAR] = ACTIONS(1572), + [anon_sym_DOLLAR] = ACTIONS(1546), [anon_sym_error] = ACTIONS(1560), [anon_sym_list] = ACTIONS(1560), [anon_sym_DASH] = ACTIONS(1560), @@ -105422,7 +104138,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1560), [anon_sym_else] = ACTIONS(1560), [anon_sym_match] = ACTIONS(1560), - [anon_sym_RBRACE] = ACTIONS(1572), + [anon_sym_RBRACE] = ACTIONS(1560), [anon_sym_try] = ACTIONS(1560), [anon_sym_catch] = ACTIONS(1560), [anon_sym_return] = ACTIONS(1560), @@ -105434,4783 +104150,7773 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(1560), [anon_sym_new] = ACTIONS(1560), [anon_sym_as] = ACTIONS(1560), - [anon_sym_LPAREN2] = ACTIONS(1562), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1572), - [anon_sym_DOT_DOT2] = ACTIONS(1679), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1681), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1681), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1572), + [anon_sym_LPAREN2] = ACTIONS(1548), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1560), + [aux_sym__immediate_decimal_token1] = ACTIONS(1602), + [aux_sym__immediate_decimal_token3] = ACTIONS(1602), + [aux_sym__immediate_decimal_token4] = ACTIONS(1604), + [aux_sym__immediate_decimal_token5] = ACTIONS(1606), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1560), [aux_sym__val_number_decimal_token1] = ACTIONS(1560), - [aux_sym__val_number_decimal_token2] = ACTIONS(1572), - [aux_sym__val_number_decimal_token3] = ACTIONS(1572), - [aux_sym__val_number_decimal_token4] = ACTIONS(1572), - [aux_sym__val_number_token1] = ACTIONS(1572), - [aux_sym__val_number_token2] = ACTIONS(1572), - [aux_sym__val_number_token3] = ACTIONS(1572), - [sym_filesize_unit] = ACTIONS(1683), - [sym_duration_unit] = ACTIONS(1685), - [anon_sym_DQUOTE] = ACTIONS(1572), - [sym__str_single_quotes] = ACTIONS(1572), - [sym__str_back_ticks] = ACTIONS(1572), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1572), + [aux_sym__val_number_decimal_token2] = ACTIONS(1560), + [aux_sym__val_number_decimal_token3] = ACTIONS(1560), + [aux_sym__val_number_decimal_token4] = ACTIONS(1560), + [aux_sym__val_number_token1] = ACTIONS(1560), + [aux_sym__val_number_token2] = ACTIONS(1560), + [aux_sym__val_number_token3] = ACTIONS(1560), + [anon_sym_DQUOTE] = ACTIONS(1560), + [sym__str_single_quotes] = ACTIONS(1560), + [sym__str_back_ticks] = ACTIONS(1560), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1560), + [sym__entry_separator] = ACTIONS(1570), [anon_sym_PLUS] = ACTIONS(1560), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1687), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1570), + }, + [225] = { + [sym__expr_parenthesized_immediate] = STATE(594), + [sym__immediate_decimal] = STATE(557), + [sym_val_variable] = STATE(594), + [sym_comment] = STATE(225), + [anon_sym_export] = ACTIONS(1608), + [anon_sym_alias] = ACTIONS(1608), + [anon_sym_let] = ACTIONS(1608), + [anon_sym_let_DASHenv] = ACTIONS(1608), + [anon_sym_mut] = ACTIONS(1608), + [anon_sym_const] = ACTIONS(1608), + [aux_sym_cmd_identifier_token1] = ACTIONS(1608), + [aux_sym_cmd_identifier_token2] = ACTIONS(1608), + [aux_sym_cmd_identifier_token3] = ACTIONS(1608), + [aux_sym_cmd_identifier_token4] = ACTIONS(1608), + [aux_sym_cmd_identifier_token5] = ACTIONS(1608), + [aux_sym_cmd_identifier_token6] = ACTIONS(1608), + [aux_sym_cmd_identifier_token7] = ACTIONS(1608), + [aux_sym_cmd_identifier_token8] = ACTIONS(1608), + [aux_sym_cmd_identifier_token9] = ACTIONS(1608), + [aux_sym_cmd_identifier_token10] = ACTIONS(1608), + [aux_sym_cmd_identifier_token11] = ACTIONS(1608), + [aux_sym_cmd_identifier_token12] = ACTIONS(1608), + [aux_sym_cmd_identifier_token13] = ACTIONS(1608), + [aux_sym_cmd_identifier_token14] = ACTIONS(1608), + [aux_sym_cmd_identifier_token15] = ACTIONS(1608), + [aux_sym_cmd_identifier_token16] = ACTIONS(1608), + [aux_sym_cmd_identifier_token17] = ACTIONS(1608), + [aux_sym_cmd_identifier_token18] = ACTIONS(1608), + [aux_sym_cmd_identifier_token19] = ACTIONS(1608), + [aux_sym_cmd_identifier_token20] = ACTIONS(1608), + [aux_sym_cmd_identifier_token21] = ACTIONS(1608), + [aux_sym_cmd_identifier_token22] = ACTIONS(1608), + [aux_sym_cmd_identifier_token23] = ACTIONS(1608), + [aux_sym_cmd_identifier_token24] = ACTIONS(1608), + [aux_sym_cmd_identifier_token25] = ACTIONS(1608), + [aux_sym_cmd_identifier_token26] = ACTIONS(1608), + [aux_sym_cmd_identifier_token27] = ACTIONS(1608), + [aux_sym_cmd_identifier_token28] = ACTIONS(1608), + [aux_sym_cmd_identifier_token29] = ACTIONS(1608), + [aux_sym_cmd_identifier_token30] = ACTIONS(1608), + [aux_sym_cmd_identifier_token31] = ACTIONS(1608), + [aux_sym_cmd_identifier_token32] = ACTIONS(1608), + [aux_sym_cmd_identifier_token33] = ACTIONS(1608), + [aux_sym_cmd_identifier_token34] = ACTIONS(1608), + [aux_sym_cmd_identifier_token35] = ACTIONS(1608), + [aux_sym_cmd_identifier_token36] = ACTIONS(1608), + [anon_sym_true] = ACTIONS(1608), + [anon_sym_false] = ACTIONS(1608), + [anon_sym_null] = ACTIONS(1608), + [aux_sym_cmd_identifier_token38] = ACTIONS(1608), + [aux_sym_cmd_identifier_token39] = ACTIONS(1608), + [aux_sym_cmd_identifier_token40] = ACTIONS(1608), + [anon_sym_def] = ACTIONS(1608), + [anon_sym_export_DASHenv] = ACTIONS(1608), + [anon_sym_extern] = ACTIONS(1608), + [anon_sym_module] = ACTIONS(1608), + [anon_sym_use] = ACTIONS(1608), + [anon_sym_LPAREN] = ACTIONS(1608), + [anon_sym_DOLLAR] = ACTIONS(1546), + [anon_sym_error] = ACTIONS(1608), + [anon_sym_list] = ACTIONS(1608), + [anon_sym_DASH] = ACTIONS(1608), + [anon_sym_break] = ACTIONS(1608), + [anon_sym_continue] = ACTIONS(1608), + [anon_sym_for] = ACTIONS(1608), + [anon_sym_in] = ACTIONS(1608), + [anon_sym_loop] = ACTIONS(1608), + [anon_sym_make] = ACTIONS(1608), + [anon_sym_while] = ACTIONS(1608), + [anon_sym_do] = ACTIONS(1608), + [anon_sym_if] = ACTIONS(1608), + [anon_sym_else] = ACTIONS(1608), + [anon_sym_match] = ACTIONS(1608), + [anon_sym_RBRACE] = ACTIONS(1608), + [anon_sym_try] = ACTIONS(1608), + [anon_sym_catch] = ACTIONS(1608), + [anon_sym_return] = ACTIONS(1608), + [anon_sym_source] = ACTIONS(1608), + [anon_sym_source_DASHenv] = ACTIONS(1608), + [anon_sym_register] = ACTIONS(1608), + [anon_sym_hide] = ACTIONS(1608), + [anon_sym_hide_DASHenv] = ACTIONS(1608), + [anon_sym_overlay] = ACTIONS(1608), + [anon_sym_new] = ACTIONS(1608), + [anon_sym_as] = ACTIONS(1608), + [anon_sym_LPAREN2] = ACTIONS(1548), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1608), + [aux_sym__immediate_decimal_token1] = ACTIONS(1602), + [aux_sym__immediate_decimal_token3] = ACTIONS(1602), + [aux_sym__immediate_decimal_token4] = ACTIONS(1604), + [aux_sym__immediate_decimal_token5] = ACTIONS(1606), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1608), + [aux_sym__val_number_decimal_token1] = ACTIONS(1608), + [aux_sym__val_number_decimal_token2] = ACTIONS(1608), + [aux_sym__val_number_decimal_token3] = ACTIONS(1608), + [aux_sym__val_number_decimal_token4] = ACTIONS(1608), + [aux_sym__val_number_token1] = ACTIONS(1608), + [aux_sym__val_number_token2] = ACTIONS(1608), + [aux_sym__val_number_token3] = ACTIONS(1608), + [anon_sym_DQUOTE] = ACTIONS(1608), + [sym__str_single_quotes] = ACTIONS(1608), + [sym__str_back_ticks] = ACTIONS(1608), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1608), + [sym__entry_separator] = ACTIONS(1610), + [anon_sym_PLUS] = ACTIONS(1608), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1610), + }, + [226] = { + [sym__expr_parenthesized_immediate] = STATE(568), + [sym__immediate_decimal] = STATE(587), + [sym_val_variable] = STATE(568), + [sym_comment] = STATE(226), + [anon_sym_export] = ACTIONS(1612), + [anon_sym_alias] = ACTIONS(1612), + [anon_sym_let] = ACTIONS(1612), + [anon_sym_let_DASHenv] = ACTIONS(1612), + [anon_sym_mut] = ACTIONS(1612), + [anon_sym_const] = ACTIONS(1612), + [aux_sym_cmd_identifier_token1] = ACTIONS(1612), + [aux_sym_cmd_identifier_token2] = ACTIONS(1612), + [aux_sym_cmd_identifier_token3] = ACTIONS(1612), + [aux_sym_cmd_identifier_token4] = ACTIONS(1612), + [aux_sym_cmd_identifier_token5] = ACTIONS(1612), + [aux_sym_cmd_identifier_token6] = ACTIONS(1612), + [aux_sym_cmd_identifier_token7] = ACTIONS(1612), + [aux_sym_cmd_identifier_token8] = ACTIONS(1612), + [aux_sym_cmd_identifier_token9] = ACTIONS(1612), + [aux_sym_cmd_identifier_token10] = ACTIONS(1612), + [aux_sym_cmd_identifier_token11] = ACTIONS(1612), + [aux_sym_cmd_identifier_token12] = ACTIONS(1612), + [aux_sym_cmd_identifier_token13] = ACTIONS(1612), + [aux_sym_cmd_identifier_token14] = ACTIONS(1612), + [aux_sym_cmd_identifier_token15] = ACTIONS(1612), + [aux_sym_cmd_identifier_token16] = ACTIONS(1612), + [aux_sym_cmd_identifier_token17] = ACTIONS(1612), + [aux_sym_cmd_identifier_token18] = ACTIONS(1612), + [aux_sym_cmd_identifier_token19] = ACTIONS(1612), + [aux_sym_cmd_identifier_token20] = ACTIONS(1612), + [aux_sym_cmd_identifier_token21] = ACTIONS(1612), + [aux_sym_cmd_identifier_token22] = ACTIONS(1612), + [aux_sym_cmd_identifier_token23] = ACTIONS(1612), + [aux_sym_cmd_identifier_token24] = ACTIONS(1612), + [aux_sym_cmd_identifier_token25] = ACTIONS(1612), + [aux_sym_cmd_identifier_token26] = ACTIONS(1612), + [aux_sym_cmd_identifier_token27] = ACTIONS(1612), + [aux_sym_cmd_identifier_token28] = ACTIONS(1612), + [aux_sym_cmd_identifier_token29] = ACTIONS(1612), + [aux_sym_cmd_identifier_token30] = ACTIONS(1612), + [aux_sym_cmd_identifier_token31] = ACTIONS(1612), + [aux_sym_cmd_identifier_token32] = ACTIONS(1612), + [aux_sym_cmd_identifier_token33] = ACTIONS(1612), + [aux_sym_cmd_identifier_token34] = ACTIONS(1612), + [aux_sym_cmd_identifier_token35] = ACTIONS(1612), + [aux_sym_cmd_identifier_token36] = ACTIONS(1612), + [anon_sym_true] = ACTIONS(1612), + [anon_sym_false] = ACTIONS(1612), + [anon_sym_null] = ACTIONS(1612), + [aux_sym_cmd_identifier_token38] = ACTIONS(1612), + [aux_sym_cmd_identifier_token39] = ACTIONS(1612), + [aux_sym_cmd_identifier_token40] = ACTIONS(1612), + [anon_sym_def] = ACTIONS(1612), + [anon_sym_export_DASHenv] = ACTIONS(1612), + [anon_sym_extern] = ACTIONS(1612), + [anon_sym_module] = ACTIONS(1612), + [anon_sym_use] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(1612), + [anon_sym_DOLLAR] = ACTIONS(1546), + [anon_sym_error] = ACTIONS(1612), + [anon_sym_list] = ACTIONS(1612), + [anon_sym_DASH] = ACTIONS(1612), + [anon_sym_break] = ACTIONS(1612), + [anon_sym_continue] = ACTIONS(1612), + [anon_sym_for] = ACTIONS(1612), + [anon_sym_in] = ACTIONS(1612), + [anon_sym_loop] = ACTIONS(1612), + [anon_sym_make] = ACTIONS(1612), + [anon_sym_while] = ACTIONS(1612), + [anon_sym_do] = ACTIONS(1612), + [anon_sym_if] = ACTIONS(1612), + [anon_sym_else] = ACTIONS(1612), + [anon_sym_match] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1612), + [anon_sym_try] = ACTIONS(1612), + [anon_sym_catch] = ACTIONS(1612), + [anon_sym_return] = ACTIONS(1612), + [anon_sym_source] = ACTIONS(1612), + [anon_sym_source_DASHenv] = ACTIONS(1612), + [anon_sym_register] = ACTIONS(1612), + [anon_sym_hide] = ACTIONS(1612), + [anon_sym_hide_DASHenv] = ACTIONS(1612), + [anon_sym_overlay] = ACTIONS(1612), + [anon_sym_new] = ACTIONS(1612), + [anon_sym_as] = ACTIONS(1612), + [anon_sym_LPAREN2] = ACTIONS(1548), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1612), + [aux_sym__immediate_decimal_token1] = ACTIONS(1602), + [aux_sym__immediate_decimal_token3] = ACTIONS(1602), + [aux_sym__immediate_decimal_token4] = ACTIONS(1604), + [aux_sym__immediate_decimal_token5] = ACTIONS(1606), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1612), + [aux_sym__val_number_decimal_token1] = ACTIONS(1612), + [aux_sym__val_number_decimal_token2] = ACTIONS(1612), + [aux_sym__val_number_decimal_token3] = ACTIONS(1612), + [aux_sym__val_number_decimal_token4] = ACTIONS(1612), + [aux_sym__val_number_token1] = ACTIONS(1612), + [aux_sym__val_number_token2] = ACTIONS(1612), + [aux_sym__val_number_token3] = ACTIONS(1612), + [anon_sym_DQUOTE] = ACTIONS(1612), + [sym__str_single_quotes] = ACTIONS(1612), + [sym__str_back_ticks] = ACTIONS(1612), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1612), + [sym__entry_separator] = ACTIONS(1614), + [anon_sym_PLUS] = ACTIONS(1612), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1614), + }, + [227] = { + [sym_comment] = STATE(227), + [anon_sym_export] = ACTIONS(1536), + [anon_sym_alias] = ACTIONS(1536), + [anon_sym_let] = ACTIONS(1536), + [anon_sym_let_DASHenv] = ACTIONS(1536), + [anon_sym_mut] = ACTIONS(1536), + [anon_sym_const] = ACTIONS(1536), + [aux_sym_cmd_identifier_token1] = ACTIONS(1536), + [aux_sym_cmd_identifier_token2] = ACTIONS(1536), + [aux_sym_cmd_identifier_token3] = ACTIONS(1536), + [aux_sym_cmd_identifier_token4] = ACTIONS(1536), + [aux_sym_cmd_identifier_token5] = ACTIONS(1536), + [aux_sym_cmd_identifier_token6] = ACTIONS(1536), + [aux_sym_cmd_identifier_token7] = ACTIONS(1536), + [aux_sym_cmd_identifier_token8] = ACTIONS(1536), + [aux_sym_cmd_identifier_token9] = ACTIONS(1536), + [aux_sym_cmd_identifier_token10] = ACTIONS(1536), + [aux_sym_cmd_identifier_token11] = ACTIONS(1536), + [aux_sym_cmd_identifier_token12] = ACTIONS(1536), + [aux_sym_cmd_identifier_token13] = ACTIONS(1536), + [aux_sym_cmd_identifier_token14] = ACTIONS(1536), + [aux_sym_cmd_identifier_token15] = ACTIONS(1536), + [aux_sym_cmd_identifier_token16] = ACTIONS(1536), + [aux_sym_cmd_identifier_token17] = ACTIONS(1536), + [aux_sym_cmd_identifier_token18] = ACTIONS(1536), + [aux_sym_cmd_identifier_token19] = ACTIONS(1536), + [aux_sym_cmd_identifier_token20] = ACTIONS(1536), + [aux_sym_cmd_identifier_token21] = ACTIONS(1536), + [aux_sym_cmd_identifier_token22] = ACTIONS(1536), + [aux_sym_cmd_identifier_token23] = ACTIONS(1536), + [aux_sym_cmd_identifier_token24] = ACTIONS(1536), + [aux_sym_cmd_identifier_token25] = ACTIONS(1536), + [aux_sym_cmd_identifier_token26] = ACTIONS(1536), + [aux_sym_cmd_identifier_token27] = ACTIONS(1536), + [aux_sym_cmd_identifier_token28] = ACTIONS(1536), + [aux_sym_cmd_identifier_token29] = ACTIONS(1536), + [aux_sym_cmd_identifier_token30] = ACTIONS(1536), + [aux_sym_cmd_identifier_token31] = ACTIONS(1536), + [aux_sym_cmd_identifier_token32] = ACTIONS(1536), + [aux_sym_cmd_identifier_token33] = ACTIONS(1536), + [aux_sym_cmd_identifier_token34] = ACTIONS(1536), + [aux_sym_cmd_identifier_token35] = ACTIONS(1536), + [aux_sym_cmd_identifier_token36] = ACTIONS(1536), + [anon_sym_true] = ACTIONS(1538), + [anon_sym_false] = ACTIONS(1538), + [anon_sym_null] = ACTIONS(1538), + [aux_sym_cmd_identifier_token38] = ACTIONS(1536), + [aux_sym_cmd_identifier_token39] = ACTIONS(1538), + [aux_sym_cmd_identifier_token40] = ACTIONS(1538), + [anon_sym_def] = ACTIONS(1536), + [anon_sym_export_DASHenv] = ACTIONS(1536), + [anon_sym_extern] = ACTIONS(1536), + [anon_sym_module] = ACTIONS(1536), + [anon_sym_use] = ACTIONS(1536), + [anon_sym_LPAREN] = ACTIONS(1536), + [anon_sym_DOLLAR] = ACTIONS(1538), + [anon_sym_error] = ACTIONS(1536), + [anon_sym_list] = ACTIONS(1536), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_break] = ACTIONS(1536), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_for] = ACTIONS(1536), + [anon_sym_in] = ACTIONS(1536), + [anon_sym_loop] = ACTIONS(1536), + [anon_sym_make] = ACTIONS(1536), + [anon_sym_while] = ACTIONS(1536), + [anon_sym_do] = ACTIONS(1536), + [anon_sym_if] = ACTIONS(1536), + [anon_sym_else] = ACTIONS(1536), + [anon_sym_match] = ACTIONS(1536), + [anon_sym_RBRACE] = ACTIONS(1538), + [anon_sym_try] = ACTIONS(1536), + [anon_sym_catch] = ACTIONS(1536), + [anon_sym_return] = ACTIONS(1536), + [anon_sym_source] = ACTIONS(1536), + [anon_sym_source_DASHenv] = ACTIONS(1536), + [anon_sym_register] = ACTIONS(1536), + [anon_sym_hide] = ACTIONS(1536), + [anon_sym_hide_DASHenv] = ACTIONS(1536), + [anon_sym_overlay] = ACTIONS(1536), + [anon_sym_new] = ACTIONS(1536), + [anon_sym_as] = ACTIONS(1536), + [anon_sym_LPAREN2] = ACTIONS(1538), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1538), + [anon_sym_DOT_DOT2] = ACTIONS(1536), + [anon_sym_DOT] = ACTIONS(1616), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), + [aux_sym__immediate_decimal_token2] = ACTIONS(1618), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1538), + [aux_sym__val_number_decimal_token1] = ACTIONS(1536), + [aux_sym__val_number_decimal_token2] = ACTIONS(1538), + [aux_sym__val_number_decimal_token3] = ACTIONS(1538), + [aux_sym__val_number_decimal_token4] = ACTIONS(1538), + [aux_sym__val_number_token1] = ACTIONS(1538), + [aux_sym__val_number_token2] = ACTIONS(1538), + [aux_sym__val_number_token3] = ACTIONS(1538), + [sym_filesize_unit] = ACTIONS(1536), + [sym_duration_unit] = ACTIONS(1536), + [anon_sym_DQUOTE] = ACTIONS(1538), + [sym__str_single_quotes] = ACTIONS(1538), + [sym__str_back_ticks] = ACTIONS(1538), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1538), + [anon_sym_PLUS] = ACTIONS(1536), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1536), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1538), + }, + [228] = { + [sym__expr_parenthesized_immediate] = STATE(554), + [sym__immediate_decimal] = STATE(584), + [sym_val_variable] = STATE(554), + [sym_comment] = STATE(228), + [anon_sym_export] = ACTIONS(1620), + [anon_sym_alias] = ACTIONS(1620), + [anon_sym_let] = ACTIONS(1620), + [anon_sym_let_DASHenv] = ACTIONS(1620), + [anon_sym_mut] = ACTIONS(1620), + [anon_sym_const] = ACTIONS(1620), + [aux_sym_cmd_identifier_token1] = ACTIONS(1620), + [aux_sym_cmd_identifier_token2] = ACTIONS(1620), + [aux_sym_cmd_identifier_token3] = ACTIONS(1620), + [aux_sym_cmd_identifier_token4] = ACTIONS(1620), + [aux_sym_cmd_identifier_token5] = ACTIONS(1620), + [aux_sym_cmd_identifier_token6] = ACTIONS(1620), + [aux_sym_cmd_identifier_token7] = ACTIONS(1620), + [aux_sym_cmd_identifier_token8] = ACTIONS(1620), + [aux_sym_cmd_identifier_token9] = ACTIONS(1620), + [aux_sym_cmd_identifier_token10] = ACTIONS(1620), + [aux_sym_cmd_identifier_token11] = ACTIONS(1620), + [aux_sym_cmd_identifier_token12] = ACTIONS(1620), + [aux_sym_cmd_identifier_token13] = ACTIONS(1620), + [aux_sym_cmd_identifier_token14] = ACTIONS(1620), + [aux_sym_cmd_identifier_token15] = ACTIONS(1620), + [aux_sym_cmd_identifier_token16] = ACTIONS(1620), + [aux_sym_cmd_identifier_token17] = ACTIONS(1620), + [aux_sym_cmd_identifier_token18] = ACTIONS(1620), + [aux_sym_cmd_identifier_token19] = ACTIONS(1620), + [aux_sym_cmd_identifier_token20] = ACTIONS(1620), + [aux_sym_cmd_identifier_token21] = ACTIONS(1620), + [aux_sym_cmd_identifier_token22] = ACTIONS(1620), + [aux_sym_cmd_identifier_token23] = ACTIONS(1620), + [aux_sym_cmd_identifier_token24] = ACTIONS(1620), + [aux_sym_cmd_identifier_token25] = ACTIONS(1620), + [aux_sym_cmd_identifier_token26] = ACTIONS(1620), + [aux_sym_cmd_identifier_token27] = ACTIONS(1620), + [aux_sym_cmd_identifier_token28] = ACTIONS(1620), + [aux_sym_cmd_identifier_token29] = ACTIONS(1620), + [aux_sym_cmd_identifier_token30] = ACTIONS(1620), + [aux_sym_cmd_identifier_token31] = ACTIONS(1620), + [aux_sym_cmd_identifier_token32] = ACTIONS(1620), + [aux_sym_cmd_identifier_token33] = ACTIONS(1620), + [aux_sym_cmd_identifier_token34] = ACTIONS(1620), + [aux_sym_cmd_identifier_token35] = ACTIONS(1620), + [aux_sym_cmd_identifier_token36] = ACTIONS(1620), + [anon_sym_true] = ACTIONS(1620), + [anon_sym_false] = ACTIONS(1620), + [anon_sym_null] = ACTIONS(1620), + [aux_sym_cmd_identifier_token38] = ACTIONS(1620), + [aux_sym_cmd_identifier_token39] = ACTIONS(1620), + [aux_sym_cmd_identifier_token40] = ACTIONS(1620), + [anon_sym_def] = ACTIONS(1620), + [anon_sym_export_DASHenv] = ACTIONS(1620), + [anon_sym_extern] = ACTIONS(1620), + [anon_sym_module] = ACTIONS(1620), + [anon_sym_use] = ACTIONS(1620), + [anon_sym_LPAREN] = ACTIONS(1620), + [anon_sym_DOLLAR] = ACTIONS(1546), + [anon_sym_error] = ACTIONS(1620), + [anon_sym_list] = ACTIONS(1620), + [anon_sym_DASH] = ACTIONS(1620), + [anon_sym_break] = ACTIONS(1620), + [anon_sym_continue] = ACTIONS(1620), + [anon_sym_for] = ACTIONS(1620), + [anon_sym_in] = ACTIONS(1620), + [anon_sym_loop] = ACTIONS(1620), + [anon_sym_make] = ACTIONS(1620), + [anon_sym_while] = ACTIONS(1620), + [anon_sym_do] = ACTIONS(1620), + [anon_sym_if] = ACTIONS(1620), + [anon_sym_else] = ACTIONS(1620), + [anon_sym_match] = ACTIONS(1620), + [anon_sym_RBRACE] = ACTIONS(1620), + [anon_sym_try] = ACTIONS(1620), + [anon_sym_catch] = ACTIONS(1620), + [anon_sym_return] = ACTIONS(1620), + [anon_sym_source] = ACTIONS(1620), + [anon_sym_source_DASHenv] = ACTIONS(1620), + [anon_sym_register] = ACTIONS(1620), + [anon_sym_hide] = ACTIONS(1620), + [anon_sym_hide_DASHenv] = ACTIONS(1620), + [anon_sym_overlay] = ACTIONS(1620), + [anon_sym_new] = ACTIONS(1620), + [anon_sym_as] = ACTIONS(1620), + [anon_sym_LPAREN2] = ACTIONS(1548), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1620), + [aux_sym__immediate_decimal_token1] = ACTIONS(1602), + [aux_sym__immediate_decimal_token3] = ACTIONS(1602), + [aux_sym__immediate_decimal_token4] = ACTIONS(1604), + [aux_sym__immediate_decimal_token5] = ACTIONS(1606), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1620), + [aux_sym__val_number_decimal_token1] = ACTIONS(1620), + [aux_sym__val_number_decimal_token2] = ACTIONS(1620), + [aux_sym__val_number_decimal_token3] = ACTIONS(1620), + [aux_sym__val_number_decimal_token4] = ACTIONS(1620), + [aux_sym__val_number_token1] = ACTIONS(1620), + [aux_sym__val_number_token2] = ACTIONS(1620), + [aux_sym__val_number_token3] = ACTIONS(1620), + [anon_sym_DQUOTE] = ACTIONS(1620), + [sym__str_single_quotes] = ACTIONS(1620), + [sym__str_back_ticks] = ACTIONS(1620), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1620), + [sym__entry_separator] = ACTIONS(1622), + [anon_sym_PLUS] = ACTIONS(1620), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1622), + }, + [229] = { + [sym_comment] = STATE(229), + [anon_sym_export] = ACTIONS(1528), + [anon_sym_alias] = ACTIONS(1528), + [anon_sym_let] = ACTIONS(1528), + [anon_sym_let_DASHenv] = ACTIONS(1528), + [anon_sym_mut] = ACTIONS(1528), + [anon_sym_const] = ACTIONS(1528), + [aux_sym_cmd_identifier_token1] = ACTIONS(1528), + [aux_sym_cmd_identifier_token2] = ACTIONS(1528), + [aux_sym_cmd_identifier_token3] = ACTIONS(1528), + [aux_sym_cmd_identifier_token4] = ACTIONS(1528), + [aux_sym_cmd_identifier_token5] = ACTIONS(1528), + [aux_sym_cmd_identifier_token6] = ACTIONS(1528), + [aux_sym_cmd_identifier_token7] = ACTIONS(1528), + [aux_sym_cmd_identifier_token8] = ACTIONS(1528), + [aux_sym_cmd_identifier_token9] = ACTIONS(1528), + [aux_sym_cmd_identifier_token10] = ACTIONS(1528), + [aux_sym_cmd_identifier_token11] = ACTIONS(1528), + [aux_sym_cmd_identifier_token12] = ACTIONS(1528), + [aux_sym_cmd_identifier_token13] = ACTIONS(1528), + [aux_sym_cmd_identifier_token14] = ACTIONS(1528), + [aux_sym_cmd_identifier_token15] = ACTIONS(1528), + [aux_sym_cmd_identifier_token16] = ACTIONS(1528), + [aux_sym_cmd_identifier_token17] = ACTIONS(1528), + [aux_sym_cmd_identifier_token18] = ACTIONS(1528), + [aux_sym_cmd_identifier_token19] = ACTIONS(1528), + [aux_sym_cmd_identifier_token20] = ACTIONS(1528), + [aux_sym_cmd_identifier_token21] = ACTIONS(1528), + [aux_sym_cmd_identifier_token22] = ACTIONS(1528), + [aux_sym_cmd_identifier_token23] = ACTIONS(1528), + [aux_sym_cmd_identifier_token24] = ACTIONS(1528), + [aux_sym_cmd_identifier_token25] = ACTIONS(1528), + [aux_sym_cmd_identifier_token26] = ACTIONS(1528), + [aux_sym_cmd_identifier_token27] = ACTIONS(1528), + [aux_sym_cmd_identifier_token28] = ACTIONS(1528), + [aux_sym_cmd_identifier_token29] = ACTIONS(1528), + [aux_sym_cmd_identifier_token30] = ACTIONS(1528), + [aux_sym_cmd_identifier_token31] = ACTIONS(1528), + [aux_sym_cmd_identifier_token32] = ACTIONS(1528), + [aux_sym_cmd_identifier_token33] = ACTIONS(1528), + [aux_sym_cmd_identifier_token34] = ACTIONS(1528), + [aux_sym_cmd_identifier_token35] = ACTIONS(1528), + [aux_sym_cmd_identifier_token36] = ACTIONS(1528), + [anon_sym_true] = ACTIONS(1530), + [anon_sym_false] = ACTIONS(1530), + [anon_sym_null] = ACTIONS(1530), + [aux_sym_cmd_identifier_token38] = ACTIONS(1528), + [aux_sym_cmd_identifier_token39] = ACTIONS(1530), + [aux_sym_cmd_identifier_token40] = ACTIONS(1530), + [anon_sym_def] = ACTIONS(1528), + [anon_sym_export_DASHenv] = ACTIONS(1528), + [anon_sym_extern] = ACTIONS(1528), + [anon_sym_module] = ACTIONS(1528), + [anon_sym_use] = ACTIONS(1528), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_DOLLAR] = ACTIONS(1530), + [anon_sym_error] = ACTIONS(1528), + [anon_sym_list] = ACTIONS(1528), + [anon_sym_DASH] = ACTIONS(1528), + [anon_sym_break] = ACTIONS(1528), + [anon_sym_continue] = ACTIONS(1528), + [anon_sym_for] = ACTIONS(1528), + [anon_sym_in] = ACTIONS(1528), + [anon_sym_loop] = ACTIONS(1528), + [anon_sym_make] = ACTIONS(1528), + [anon_sym_while] = ACTIONS(1528), + [anon_sym_do] = ACTIONS(1528), + [anon_sym_if] = ACTIONS(1528), + [anon_sym_else] = ACTIONS(1528), + [anon_sym_match] = ACTIONS(1528), + [anon_sym_RBRACE] = ACTIONS(1530), + [anon_sym_try] = ACTIONS(1528), + [anon_sym_catch] = ACTIONS(1528), + [anon_sym_return] = ACTIONS(1528), + [anon_sym_source] = ACTIONS(1528), + [anon_sym_source_DASHenv] = ACTIONS(1528), + [anon_sym_register] = ACTIONS(1528), + [anon_sym_hide] = ACTIONS(1528), + [anon_sym_hide_DASHenv] = ACTIONS(1528), + [anon_sym_overlay] = ACTIONS(1528), + [anon_sym_new] = ACTIONS(1528), + [anon_sym_as] = ACTIONS(1528), + [anon_sym_LPAREN2] = ACTIONS(1530), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1530), + [anon_sym_DOT_DOT2] = ACTIONS(1528), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1530), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1530), + [aux_sym__immediate_decimal_token1] = ACTIONS(1624), + [aux_sym__immediate_decimal_token2] = ACTIONS(1626), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1530), + [aux_sym__val_number_decimal_token1] = ACTIONS(1528), + [aux_sym__val_number_decimal_token2] = ACTIONS(1530), + [aux_sym__val_number_decimal_token3] = ACTIONS(1530), + [aux_sym__val_number_decimal_token4] = ACTIONS(1530), + [aux_sym__val_number_token1] = ACTIONS(1530), + [aux_sym__val_number_token2] = ACTIONS(1530), + [aux_sym__val_number_token3] = ACTIONS(1530), + [sym_filesize_unit] = ACTIONS(1528), + [sym_duration_unit] = ACTIONS(1528), + [anon_sym_DQUOTE] = ACTIONS(1530), + [sym__str_single_quotes] = ACTIONS(1530), + [sym__str_back_ticks] = ACTIONS(1530), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1530), + [anon_sym_PLUS] = ACTIONS(1528), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1528), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1530), + }, + [230] = { + [sym__expr_parenthesized_immediate] = STATE(7569), + [sym_comment] = STATE(230), + [anon_sym_export] = ACTIONS(1628), + [anon_sym_alias] = ACTIONS(1628), + [anon_sym_let] = ACTIONS(1628), + [anon_sym_let_DASHenv] = ACTIONS(1628), + [anon_sym_mut] = ACTIONS(1628), + [anon_sym_const] = ACTIONS(1628), + [aux_sym_cmd_identifier_token1] = ACTIONS(1628), + [aux_sym_cmd_identifier_token2] = ACTIONS(1628), + [aux_sym_cmd_identifier_token3] = ACTIONS(1628), + [aux_sym_cmd_identifier_token4] = ACTIONS(1628), + [aux_sym_cmd_identifier_token5] = ACTIONS(1628), + [aux_sym_cmd_identifier_token6] = ACTIONS(1628), + [aux_sym_cmd_identifier_token7] = ACTIONS(1628), + [aux_sym_cmd_identifier_token8] = ACTIONS(1628), + [aux_sym_cmd_identifier_token9] = ACTIONS(1628), + [aux_sym_cmd_identifier_token10] = ACTIONS(1628), + [aux_sym_cmd_identifier_token11] = ACTIONS(1628), + [aux_sym_cmd_identifier_token12] = ACTIONS(1628), + [aux_sym_cmd_identifier_token13] = ACTIONS(1628), + [aux_sym_cmd_identifier_token14] = ACTIONS(1628), + [aux_sym_cmd_identifier_token15] = ACTIONS(1628), + [aux_sym_cmd_identifier_token16] = ACTIONS(1628), + [aux_sym_cmd_identifier_token17] = ACTIONS(1628), + [aux_sym_cmd_identifier_token18] = ACTIONS(1628), + [aux_sym_cmd_identifier_token19] = ACTIONS(1628), + [aux_sym_cmd_identifier_token20] = ACTIONS(1628), + [aux_sym_cmd_identifier_token21] = ACTIONS(1628), + [aux_sym_cmd_identifier_token22] = ACTIONS(1628), + [aux_sym_cmd_identifier_token23] = ACTIONS(1628), + [aux_sym_cmd_identifier_token24] = ACTIONS(1628), + [aux_sym_cmd_identifier_token25] = ACTIONS(1628), + [aux_sym_cmd_identifier_token26] = ACTIONS(1628), + [aux_sym_cmd_identifier_token27] = ACTIONS(1628), + [aux_sym_cmd_identifier_token28] = ACTIONS(1628), + [aux_sym_cmd_identifier_token29] = ACTIONS(1628), + [aux_sym_cmd_identifier_token30] = ACTIONS(1628), + [aux_sym_cmd_identifier_token31] = ACTIONS(1628), + [aux_sym_cmd_identifier_token32] = ACTIONS(1628), + [aux_sym_cmd_identifier_token33] = ACTIONS(1628), + [aux_sym_cmd_identifier_token34] = ACTIONS(1628), + [aux_sym_cmd_identifier_token35] = ACTIONS(1628), + [aux_sym_cmd_identifier_token36] = ACTIONS(1628), + [anon_sym_true] = ACTIONS(1628), + [anon_sym_false] = ACTIONS(1628), + [anon_sym_null] = ACTIONS(1628), + [aux_sym_cmd_identifier_token38] = ACTIONS(1628), + [aux_sym_cmd_identifier_token39] = ACTIONS(1628), + [aux_sym_cmd_identifier_token40] = ACTIONS(1628), + [anon_sym_def] = ACTIONS(1628), + [anon_sym_export_DASHenv] = ACTIONS(1628), + [anon_sym_extern] = ACTIONS(1628), + [anon_sym_module] = ACTIONS(1628), + [anon_sym_use] = ACTIONS(1628), + [anon_sym_LPAREN] = ACTIONS(1628), + [anon_sym_DOLLAR] = ACTIONS(1628), + [anon_sym_error] = ACTIONS(1628), + [anon_sym_list] = ACTIONS(1628), + [anon_sym_DASH] = ACTIONS(1628), + [anon_sym_break] = ACTIONS(1628), + [anon_sym_continue] = ACTIONS(1628), + [anon_sym_for] = ACTIONS(1628), + [anon_sym_in] = ACTIONS(1628), + [anon_sym_loop] = ACTIONS(1628), + [anon_sym_make] = ACTIONS(1628), + [anon_sym_while] = ACTIONS(1628), + [anon_sym_do] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(1628), + [anon_sym_else] = ACTIONS(1628), + [anon_sym_match] = ACTIONS(1628), + [anon_sym_RBRACE] = ACTIONS(1628), + [anon_sym_try] = ACTIONS(1628), + [anon_sym_catch] = ACTIONS(1628), + [anon_sym_return] = ACTIONS(1628), + [anon_sym_source] = ACTIONS(1628), + [anon_sym_source_DASHenv] = ACTIONS(1628), + [anon_sym_register] = ACTIONS(1628), + [anon_sym_hide] = ACTIONS(1628), + [anon_sym_hide_DASHenv] = ACTIONS(1628), + [anon_sym_overlay] = ACTIONS(1628), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_as] = ACTIONS(1628), + [anon_sym_LPAREN2] = ACTIONS(1630), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1628), + [anon_sym_DOT_DOT2] = ACTIONS(1632), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1634), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1634), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1628), + [aux_sym__val_number_decimal_token1] = ACTIONS(1628), + [aux_sym__val_number_decimal_token2] = ACTIONS(1628), + [aux_sym__val_number_decimal_token3] = ACTIONS(1628), + [aux_sym__val_number_decimal_token4] = ACTIONS(1628), + [aux_sym__val_number_token1] = ACTIONS(1628), + [aux_sym__val_number_token2] = ACTIONS(1628), + [aux_sym__val_number_token3] = ACTIONS(1628), + [sym_filesize_unit] = ACTIONS(1636), + [sym_duration_unit] = ACTIONS(1638), + [anon_sym_DQUOTE] = ACTIONS(1628), + [sym__str_single_quotes] = ACTIONS(1628), + [sym__str_back_ticks] = ACTIONS(1628), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1628), + [sym__entry_separator] = ACTIONS(1640), + [anon_sym_PLUS] = ACTIONS(1628), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1642), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1640), + }, + [231] = { + [sym__expr_parenthesized_immediate] = STATE(640), + [sym__immediate_decimal] = STATE(541), + [sym_val_variable] = STATE(640), + [sym_comment] = STATE(231), + [anon_sym_export] = ACTIONS(1510), + [anon_sym_alias] = ACTIONS(1510), + [anon_sym_let] = ACTIONS(1510), + [anon_sym_let_DASHenv] = ACTIONS(1510), + [anon_sym_mut] = ACTIONS(1510), + [anon_sym_const] = ACTIONS(1510), + [aux_sym_cmd_identifier_token1] = ACTIONS(1510), + [aux_sym_cmd_identifier_token2] = ACTIONS(1510), + [aux_sym_cmd_identifier_token3] = ACTIONS(1510), + [aux_sym_cmd_identifier_token4] = ACTIONS(1510), + [aux_sym_cmd_identifier_token5] = ACTIONS(1510), + [aux_sym_cmd_identifier_token6] = ACTIONS(1510), + [aux_sym_cmd_identifier_token7] = ACTIONS(1510), + [aux_sym_cmd_identifier_token8] = ACTIONS(1510), + [aux_sym_cmd_identifier_token9] = ACTIONS(1510), + [aux_sym_cmd_identifier_token10] = ACTIONS(1510), + [aux_sym_cmd_identifier_token11] = ACTIONS(1510), + [aux_sym_cmd_identifier_token12] = ACTIONS(1510), + [aux_sym_cmd_identifier_token13] = ACTIONS(1510), + [aux_sym_cmd_identifier_token14] = ACTIONS(1510), + [aux_sym_cmd_identifier_token15] = ACTIONS(1510), + [aux_sym_cmd_identifier_token16] = ACTIONS(1510), + [aux_sym_cmd_identifier_token17] = ACTIONS(1510), + [aux_sym_cmd_identifier_token18] = ACTIONS(1510), + [aux_sym_cmd_identifier_token19] = ACTIONS(1510), + [aux_sym_cmd_identifier_token20] = ACTIONS(1510), + [aux_sym_cmd_identifier_token21] = ACTIONS(1510), + [aux_sym_cmd_identifier_token22] = ACTIONS(1510), + [aux_sym_cmd_identifier_token23] = ACTIONS(1510), + [aux_sym_cmd_identifier_token24] = ACTIONS(1510), + [aux_sym_cmd_identifier_token25] = ACTIONS(1510), + [aux_sym_cmd_identifier_token26] = ACTIONS(1510), + [aux_sym_cmd_identifier_token27] = ACTIONS(1510), + [aux_sym_cmd_identifier_token28] = ACTIONS(1510), + [aux_sym_cmd_identifier_token29] = ACTIONS(1510), + [aux_sym_cmd_identifier_token30] = ACTIONS(1510), + [aux_sym_cmd_identifier_token31] = ACTIONS(1510), + [aux_sym_cmd_identifier_token32] = ACTIONS(1510), + [aux_sym_cmd_identifier_token33] = ACTIONS(1510), + [aux_sym_cmd_identifier_token34] = ACTIONS(1510), + [aux_sym_cmd_identifier_token35] = ACTIONS(1510), + [aux_sym_cmd_identifier_token36] = ACTIONS(1510), + [anon_sym_true] = ACTIONS(1524), + [anon_sym_false] = ACTIONS(1524), + [anon_sym_null] = ACTIONS(1524), + [aux_sym_cmd_identifier_token38] = ACTIONS(1510), + [aux_sym_cmd_identifier_token39] = ACTIONS(1524), + [aux_sym_cmd_identifier_token40] = ACTIONS(1524), + [anon_sym_def] = ACTIONS(1510), + [anon_sym_export_DASHenv] = ACTIONS(1510), + [anon_sym_extern] = ACTIONS(1510), + [anon_sym_module] = ACTIONS(1510), + [anon_sym_use] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1510), + [anon_sym_DOLLAR] = ACTIONS(1644), + [anon_sym_error] = ACTIONS(1510), + [anon_sym_list] = ACTIONS(1510), + [anon_sym_DASH] = ACTIONS(1510), + [anon_sym_break] = ACTIONS(1510), + [anon_sym_continue] = ACTIONS(1510), + [anon_sym_for] = ACTIONS(1510), + [anon_sym_in] = ACTIONS(1510), + [anon_sym_loop] = ACTIONS(1510), + [anon_sym_make] = ACTIONS(1510), + [anon_sym_while] = ACTIONS(1510), + [anon_sym_do] = ACTIONS(1510), + [anon_sym_if] = ACTIONS(1510), + [anon_sym_else] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1510), + [anon_sym_RBRACE] = ACTIONS(1524), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_catch] = ACTIONS(1510), + [anon_sym_return] = ACTIONS(1510), + [anon_sym_source] = ACTIONS(1510), + [anon_sym_source_DASHenv] = ACTIONS(1510), + [anon_sym_register] = ACTIONS(1510), + [anon_sym_hide] = ACTIONS(1510), + [anon_sym_hide_DASHenv] = ACTIONS(1510), + [anon_sym_overlay] = ACTIONS(1510), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_as] = ACTIONS(1510), + [anon_sym_LPAREN2] = ACTIONS(1646), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1524), + [aux_sym__immediate_decimal_token1] = ACTIONS(1648), + [aux_sym__immediate_decimal_token3] = ACTIONS(1650), + [aux_sym__immediate_decimal_token4] = ACTIONS(1652), + [aux_sym__immediate_decimal_token5] = ACTIONS(1654), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1524), + [aux_sym__val_number_decimal_token1] = ACTIONS(1510), + [aux_sym__val_number_decimal_token2] = ACTIONS(1510), + [aux_sym__val_number_decimal_token3] = ACTIONS(1510), + [aux_sym__val_number_decimal_token4] = ACTIONS(1510), + [aux_sym__val_number_token1] = ACTIONS(1524), + [aux_sym__val_number_token2] = ACTIONS(1524), + [aux_sym__val_number_token3] = ACTIONS(1524), + [anon_sym_DQUOTE] = ACTIONS(1524), + [sym__str_single_quotes] = ACTIONS(1524), + [sym__str_back_ticks] = ACTIONS(1524), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1524), + [anon_sym_PLUS] = ACTIONS(1510), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1526), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1524), + }, + [232] = { + [sym__expr_parenthesized_immediate] = STATE(650), + [sym__immediate_decimal] = STATE(543), + [sym_val_variable] = STATE(650), + [sym_comment] = STATE(232), + [anon_sym_export] = ACTIONS(1544), + [anon_sym_alias] = ACTIONS(1544), + [anon_sym_let] = ACTIONS(1544), + [anon_sym_let_DASHenv] = ACTIONS(1544), + [anon_sym_mut] = ACTIONS(1544), + [anon_sym_const] = ACTIONS(1544), + [aux_sym_cmd_identifier_token1] = ACTIONS(1544), + [aux_sym_cmd_identifier_token2] = ACTIONS(1544), + [aux_sym_cmd_identifier_token3] = ACTIONS(1544), + [aux_sym_cmd_identifier_token4] = ACTIONS(1544), + [aux_sym_cmd_identifier_token5] = ACTIONS(1544), + [aux_sym_cmd_identifier_token6] = ACTIONS(1544), + [aux_sym_cmd_identifier_token7] = ACTIONS(1544), + [aux_sym_cmd_identifier_token8] = ACTIONS(1544), + [aux_sym_cmd_identifier_token9] = ACTIONS(1544), + [aux_sym_cmd_identifier_token10] = ACTIONS(1544), + [aux_sym_cmd_identifier_token11] = ACTIONS(1544), + [aux_sym_cmd_identifier_token12] = ACTIONS(1544), + [aux_sym_cmd_identifier_token13] = ACTIONS(1544), + [aux_sym_cmd_identifier_token14] = ACTIONS(1544), + [aux_sym_cmd_identifier_token15] = ACTIONS(1544), + [aux_sym_cmd_identifier_token16] = ACTIONS(1544), + [aux_sym_cmd_identifier_token17] = ACTIONS(1544), + [aux_sym_cmd_identifier_token18] = ACTIONS(1544), + [aux_sym_cmd_identifier_token19] = ACTIONS(1544), + [aux_sym_cmd_identifier_token20] = ACTIONS(1544), + [aux_sym_cmd_identifier_token21] = ACTIONS(1544), + [aux_sym_cmd_identifier_token22] = ACTIONS(1544), + [aux_sym_cmd_identifier_token23] = ACTIONS(1544), + [aux_sym_cmd_identifier_token24] = ACTIONS(1544), + [aux_sym_cmd_identifier_token25] = ACTIONS(1544), + [aux_sym_cmd_identifier_token26] = ACTIONS(1544), + [aux_sym_cmd_identifier_token27] = ACTIONS(1544), + [aux_sym_cmd_identifier_token28] = ACTIONS(1544), + [aux_sym_cmd_identifier_token29] = ACTIONS(1544), + [aux_sym_cmd_identifier_token30] = ACTIONS(1544), + [aux_sym_cmd_identifier_token31] = ACTIONS(1544), + [aux_sym_cmd_identifier_token32] = ACTIONS(1544), + [aux_sym_cmd_identifier_token33] = ACTIONS(1544), + [aux_sym_cmd_identifier_token34] = ACTIONS(1544), + [aux_sym_cmd_identifier_token35] = ACTIONS(1544), + [aux_sym_cmd_identifier_token36] = ACTIONS(1544), + [anon_sym_true] = ACTIONS(1556), + [anon_sym_false] = ACTIONS(1556), + [anon_sym_null] = ACTIONS(1556), + [aux_sym_cmd_identifier_token38] = ACTIONS(1544), + [aux_sym_cmd_identifier_token39] = ACTIONS(1556), + [aux_sym_cmd_identifier_token40] = ACTIONS(1556), + [anon_sym_def] = ACTIONS(1544), + [anon_sym_export_DASHenv] = ACTIONS(1544), + [anon_sym_extern] = ACTIONS(1544), + [anon_sym_module] = ACTIONS(1544), + [anon_sym_use] = ACTIONS(1544), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_DOLLAR] = ACTIONS(1644), + [anon_sym_error] = ACTIONS(1544), + [anon_sym_list] = ACTIONS(1544), + [anon_sym_DASH] = ACTIONS(1544), + [anon_sym_break] = ACTIONS(1544), + [anon_sym_continue] = ACTIONS(1544), + [anon_sym_for] = ACTIONS(1544), + [anon_sym_in] = ACTIONS(1544), + [anon_sym_loop] = ACTIONS(1544), + [anon_sym_make] = ACTIONS(1544), + [anon_sym_while] = ACTIONS(1544), + [anon_sym_do] = ACTIONS(1544), + [anon_sym_if] = ACTIONS(1544), + [anon_sym_else] = ACTIONS(1544), + [anon_sym_match] = ACTIONS(1544), + [anon_sym_RBRACE] = ACTIONS(1556), + [anon_sym_try] = ACTIONS(1544), + [anon_sym_catch] = ACTIONS(1544), + [anon_sym_return] = ACTIONS(1544), + [anon_sym_source] = ACTIONS(1544), + [anon_sym_source_DASHenv] = ACTIONS(1544), + [anon_sym_register] = ACTIONS(1544), + [anon_sym_hide] = ACTIONS(1544), + [anon_sym_hide_DASHenv] = ACTIONS(1544), + [anon_sym_overlay] = ACTIONS(1544), + [anon_sym_new] = ACTIONS(1544), + [anon_sym_as] = ACTIONS(1544), + [anon_sym_LPAREN2] = ACTIONS(1646), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1556), + [aux_sym__immediate_decimal_token1] = ACTIONS(1648), + [aux_sym__immediate_decimal_token3] = ACTIONS(1650), + [aux_sym__immediate_decimal_token4] = ACTIONS(1652), + [aux_sym__immediate_decimal_token5] = ACTIONS(1654), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1556), + [aux_sym__val_number_decimal_token1] = ACTIONS(1544), + [aux_sym__val_number_decimal_token2] = ACTIONS(1544), + [aux_sym__val_number_decimal_token3] = ACTIONS(1544), + [aux_sym__val_number_decimal_token4] = ACTIONS(1544), + [aux_sym__val_number_token1] = ACTIONS(1556), + [aux_sym__val_number_token2] = ACTIONS(1556), + [aux_sym__val_number_token3] = ACTIONS(1556), + [anon_sym_DQUOTE] = ACTIONS(1556), + [sym__str_single_quotes] = ACTIONS(1556), + [sym__str_back_ticks] = ACTIONS(1556), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1556), + [anon_sym_PLUS] = ACTIONS(1544), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1558), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1556), + }, + [233] = { + [sym_comment] = STATE(233), + [aux_sym__block_body_repeat1] = STATE(238), + [anon_sym_export] = ACTIONS(1656), + [anon_sym_alias] = ACTIONS(1656), + [anon_sym_let] = ACTIONS(1656), + [anon_sym_let_DASHenv] = ACTIONS(1656), + [anon_sym_mut] = ACTIONS(1656), + [anon_sym_const] = ACTIONS(1656), + [aux_sym_cmd_identifier_token1] = ACTIONS(1656), + [aux_sym_cmd_identifier_token2] = ACTIONS(1656), + [aux_sym_cmd_identifier_token3] = ACTIONS(1656), + [aux_sym_cmd_identifier_token4] = ACTIONS(1656), + [aux_sym_cmd_identifier_token5] = ACTIONS(1656), + [aux_sym_cmd_identifier_token6] = ACTIONS(1656), + [aux_sym_cmd_identifier_token7] = ACTIONS(1656), + [aux_sym_cmd_identifier_token8] = ACTIONS(1656), + [aux_sym_cmd_identifier_token9] = ACTIONS(1656), + [aux_sym_cmd_identifier_token10] = ACTIONS(1656), + [aux_sym_cmd_identifier_token11] = ACTIONS(1656), + [aux_sym_cmd_identifier_token12] = ACTIONS(1656), + [aux_sym_cmd_identifier_token13] = ACTIONS(1656), + [aux_sym_cmd_identifier_token14] = ACTIONS(1656), + [aux_sym_cmd_identifier_token15] = ACTIONS(1656), + [aux_sym_cmd_identifier_token16] = ACTIONS(1656), + [aux_sym_cmd_identifier_token17] = ACTIONS(1656), + [aux_sym_cmd_identifier_token18] = ACTIONS(1656), + [aux_sym_cmd_identifier_token19] = ACTIONS(1656), + [aux_sym_cmd_identifier_token20] = ACTIONS(1656), + [aux_sym_cmd_identifier_token21] = ACTIONS(1656), + [aux_sym_cmd_identifier_token22] = ACTIONS(1656), + [aux_sym_cmd_identifier_token23] = ACTIONS(1656), + [aux_sym_cmd_identifier_token24] = ACTIONS(1658), + [aux_sym_cmd_identifier_token25] = ACTIONS(1656), + [aux_sym_cmd_identifier_token26] = ACTIONS(1658), + [aux_sym_cmd_identifier_token27] = ACTIONS(1656), + [aux_sym_cmd_identifier_token28] = ACTIONS(1656), + [aux_sym_cmd_identifier_token29] = ACTIONS(1656), + [aux_sym_cmd_identifier_token30] = ACTIONS(1656), + [aux_sym_cmd_identifier_token31] = ACTIONS(1658), + [aux_sym_cmd_identifier_token32] = ACTIONS(1658), + [aux_sym_cmd_identifier_token33] = ACTIONS(1658), + [aux_sym_cmd_identifier_token34] = ACTIONS(1658), + [aux_sym_cmd_identifier_token35] = ACTIONS(1658), + [aux_sym_cmd_identifier_token36] = ACTIONS(1656), + [anon_sym_true] = ACTIONS(1658), + [anon_sym_false] = ACTIONS(1658), + [anon_sym_null] = ACTIONS(1658), + [aux_sym_cmd_identifier_token38] = ACTIONS(1656), + [aux_sym_cmd_identifier_token39] = ACTIONS(1658), + [aux_sym_cmd_identifier_token40] = ACTIONS(1658), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(1656), + [anon_sym_export_DASHenv] = ACTIONS(1656), + [anon_sym_extern] = ACTIONS(1656), + [anon_sym_module] = ACTIONS(1656), + [anon_sym_use] = ACTIONS(1656), + [anon_sym_LBRACK] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(1658), + [anon_sym_RPAREN] = ACTIONS(1660), + [anon_sym_DOLLAR] = ACTIONS(1656), + [anon_sym_error] = ACTIONS(1656), + [anon_sym_DASH] = ACTIONS(1656), + [anon_sym_break] = ACTIONS(1656), + [anon_sym_continue] = ACTIONS(1656), + [anon_sym_for] = ACTIONS(1656), + [anon_sym_loop] = ACTIONS(1656), + [anon_sym_while] = ACTIONS(1656), + [anon_sym_do] = ACTIONS(1656), + [anon_sym_if] = ACTIONS(1656), + [anon_sym_match] = ACTIONS(1656), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1660), + [anon_sym_DOT_DOT] = ACTIONS(1656), + [anon_sym_try] = ACTIONS(1656), + [anon_sym_return] = ACTIONS(1656), + [anon_sym_source] = ACTIONS(1656), + [anon_sym_source_DASHenv] = ACTIONS(1656), + [anon_sym_register] = ACTIONS(1656), + [anon_sym_hide] = ACTIONS(1656), + [anon_sym_hide_DASHenv] = ACTIONS(1656), + [anon_sym_overlay] = ACTIONS(1656), + [anon_sym_where] = ACTIONS(1658), + [aux_sym_expr_unary_token1] = ACTIONS(1658), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1658), + [anon_sym_DOT_DOT_LT] = ACTIONS(1658), + [aux_sym__val_number_decimal_token1] = ACTIONS(1656), + [aux_sym__val_number_decimal_token2] = ACTIONS(1658), + [aux_sym__val_number_decimal_token3] = ACTIONS(1658), + [aux_sym__val_number_decimal_token4] = ACTIONS(1658), + [aux_sym__val_number_token1] = ACTIONS(1658), + [aux_sym__val_number_token2] = ACTIONS(1658), + [aux_sym__val_number_token3] = ACTIONS(1658), + [anon_sym_0b] = ACTIONS(1656), + [anon_sym_0o] = ACTIONS(1656), + [anon_sym_0x] = ACTIONS(1656), + [sym_val_date] = ACTIONS(1658), + [anon_sym_DQUOTE] = ACTIONS(1658), + [sym__str_single_quotes] = ACTIONS(1658), + [sym__str_back_ticks] = ACTIONS(1658), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1658), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1658), + [aux_sym_env_var_token1] = ACTIONS(1656), + [anon_sym_CARET] = ACTIONS(1658), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1658), + }, + [234] = { + [sym_comment] = STATE(234), + [anon_sym_export] = ACTIONS(1596), + [anon_sym_alias] = ACTIONS(1596), + [anon_sym_let] = ACTIONS(1596), + [anon_sym_let_DASHenv] = ACTIONS(1596), + [anon_sym_mut] = ACTIONS(1596), + [anon_sym_const] = ACTIONS(1596), + [aux_sym_cmd_identifier_token1] = ACTIONS(1596), + [aux_sym_cmd_identifier_token2] = ACTIONS(1596), + [aux_sym_cmd_identifier_token3] = ACTIONS(1596), + [aux_sym_cmd_identifier_token4] = ACTIONS(1596), + [aux_sym_cmd_identifier_token5] = ACTIONS(1596), + [aux_sym_cmd_identifier_token6] = ACTIONS(1596), + [aux_sym_cmd_identifier_token7] = ACTIONS(1596), + [aux_sym_cmd_identifier_token8] = ACTIONS(1596), + [aux_sym_cmd_identifier_token9] = ACTIONS(1596), + [aux_sym_cmd_identifier_token10] = ACTIONS(1596), + [aux_sym_cmd_identifier_token11] = ACTIONS(1596), + [aux_sym_cmd_identifier_token12] = ACTIONS(1596), + [aux_sym_cmd_identifier_token13] = ACTIONS(1596), + [aux_sym_cmd_identifier_token14] = ACTIONS(1596), + [aux_sym_cmd_identifier_token15] = ACTIONS(1596), + [aux_sym_cmd_identifier_token16] = ACTIONS(1596), + [aux_sym_cmd_identifier_token17] = ACTIONS(1596), + [aux_sym_cmd_identifier_token18] = ACTIONS(1596), + [aux_sym_cmd_identifier_token19] = ACTIONS(1596), + [aux_sym_cmd_identifier_token20] = ACTIONS(1596), + [aux_sym_cmd_identifier_token21] = ACTIONS(1596), + [aux_sym_cmd_identifier_token22] = ACTIONS(1596), + [aux_sym_cmd_identifier_token23] = ACTIONS(1596), + [aux_sym_cmd_identifier_token24] = ACTIONS(1596), + [aux_sym_cmd_identifier_token25] = ACTIONS(1596), + [aux_sym_cmd_identifier_token26] = ACTIONS(1596), + [aux_sym_cmd_identifier_token27] = ACTIONS(1596), + [aux_sym_cmd_identifier_token28] = ACTIONS(1596), + [aux_sym_cmd_identifier_token29] = ACTIONS(1596), + [aux_sym_cmd_identifier_token30] = ACTIONS(1596), + [aux_sym_cmd_identifier_token31] = ACTIONS(1596), + [aux_sym_cmd_identifier_token32] = ACTIONS(1596), + [aux_sym_cmd_identifier_token33] = ACTIONS(1596), + [aux_sym_cmd_identifier_token34] = ACTIONS(1596), + [aux_sym_cmd_identifier_token35] = ACTIONS(1596), + [aux_sym_cmd_identifier_token36] = ACTIONS(1596), + [anon_sym_true] = ACTIONS(1598), + [anon_sym_false] = ACTIONS(1598), + [anon_sym_null] = ACTIONS(1598), + [aux_sym_cmd_identifier_token38] = ACTIONS(1596), + [aux_sym_cmd_identifier_token39] = ACTIONS(1598), + [aux_sym_cmd_identifier_token40] = ACTIONS(1598), + [anon_sym_def] = ACTIONS(1596), + [anon_sym_export_DASHenv] = ACTIONS(1596), + [anon_sym_extern] = ACTIONS(1596), + [anon_sym_module] = ACTIONS(1596), + [anon_sym_use] = ACTIONS(1596), + [anon_sym_LPAREN] = ACTIONS(1596), + [anon_sym_DOLLAR] = ACTIONS(1598), + [anon_sym_error] = ACTIONS(1596), + [anon_sym_list] = ACTIONS(1596), + [anon_sym_DASH] = ACTIONS(1596), + [anon_sym_break] = ACTIONS(1596), + [anon_sym_continue] = ACTIONS(1596), + [anon_sym_for] = ACTIONS(1596), + [anon_sym_in] = ACTIONS(1596), + [anon_sym_loop] = ACTIONS(1596), + [anon_sym_make] = ACTIONS(1596), + [anon_sym_while] = ACTIONS(1596), + [anon_sym_do] = ACTIONS(1596), + [anon_sym_if] = ACTIONS(1596), + [anon_sym_else] = ACTIONS(1596), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_RBRACE] = ACTIONS(1598), + [anon_sym_try] = ACTIONS(1596), + [anon_sym_catch] = ACTIONS(1596), + [anon_sym_return] = ACTIONS(1596), + [anon_sym_source] = ACTIONS(1596), + [anon_sym_source_DASHenv] = ACTIONS(1596), + [anon_sym_register] = ACTIONS(1596), + [anon_sym_hide] = ACTIONS(1596), + [anon_sym_hide_DASHenv] = ACTIONS(1596), + [anon_sym_overlay] = ACTIONS(1596), + [anon_sym_new] = ACTIONS(1596), + [anon_sym_as] = ACTIONS(1596), + [anon_sym_LPAREN2] = ACTIONS(1598), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1598), + [anon_sym_DOT_DOT2] = ACTIONS(1596), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1598), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1598), + [aux_sym__immediate_decimal_token2] = ACTIONS(1662), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1598), + [aux_sym__val_number_decimal_token1] = ACTIONS(1596), + [aux_sym__val_number_decimal_token2] = ACTIONS(1598), + [aux_sym__val_number_decimal_token3] = ACTIONS(1598), + [aux_sym__val_number_decimal_token4] = ACTIONS(1598), + [aux_sym__val_number_token1] = ACTIONS(1598), + [aux_sym__val_number_token2] = ACTIONS(1598), + [aux_sym__val_number_token3] = ACTIONS(1598), + [sym_filesize_unit] = ACTIONS(1596), + [sym_duration_unit] = ACTIONS(1596), + [anon_sym_DQUOTE] = ACTIONS(1598), + [sym__str_single_quotes] = ACTIONS(1598), + [sym__str_back_ticks] = ACTIONS(1598), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1598), + [anon_sym_PLUS] = ACTIONS(1596), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1596), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1598), + }, + [235] = { + [sym_cell_path] = STATE(432), + [sym_path] = STATE(340), + [sym_comment] = STATE(235), + [aux_sym_cell_path_repeat1] = STATE(257), + [anon_sym_export] = ACTIONS(1664), + [anon_sym_alias] = ACTIONS(1664), + [anon_sym_let] = ACTIONS(1664), + [anon_sym_let_DASHenv] = ACTIONS(1664), + [anon_sym_mut] = ACTIONS(1664), + [anon_sym_const] = ACTIONS(1664), + [aux_sym_cmd_identifier_token1] = ACTIONS(1664), + [aux_sym_cmd_identifier_token2] = ACTIONS(1664), + [aux_sym_cmd_identifier_token3] = ACTIONS(1664), + [aux_sym_cmd_identifier_token4] = ACTIONS(1664), + [aux_sym_cmd_identifier_token5] = ACTIONS(1664), + [aux_sym_cmd_identifier_token6] = ACTIONS(1664), + [aux_sym_cmd_identifier_token7] = ACTIONS(1664), + [aux_sym_cmd_identifier_token8] = ACTIONS(1664), + [aux_sym_cmd_identifier_token9] = ACTIONS(1664), + [aux_sym_cmd_identifier_token10] = ACTIONS(1664), + [aux_sym_cmd_identifier_token11] = ACTIONS(1664), + [aux_sym_cmd_identifier_token12] = ACTIONS(1664), + [aux_sym_cmd_identifier_token13] = ACTIONS(1664), + [aux_sym_cmd_identifier_token14] = ACTIONS(1664), + [aux_sym_cmd_identifier_token15] = ACTIONS(1664), + [aux_sym_cmd_identifier_token16] = ACTIONS(1664), + [aux_sym_cmd_identifier_token17] = ACTIONS(1664), + [aux_sym_cmd_identifier_token18] = ACTIONS(1664), + [aux_sym_cmd_identifier_token19] = ACTIONS(1664), + [aux_sym_cmd_identifier_token20] = ACTIONS(1664), + [aux_sym_cmd_identifier_token21] = ACTIONS(1664), + [aux_sym_cmd_identifier_token22] = ACTIONS(1664), + [aux_sym_cmd_identifier_token23] = ACTIONS(1664), + [aux_sym_cmd_identifier_token24] = ACTIONS(1664), + [aux_sym_cmd_identifier_token25] = ACTIONS(1664), + [aux_sym_cmd_identifier_token26] = ACTIONS(1664), + [aux_sym_cmd_identifier_token27] = ACTIONS(1664), + [aux_sym_cmd_identifier_token28] = ACTIONS(1664), + [aux_sym_cmd_identifier_token29] = ACTIONS(1664), + [aux_sym_cmd_identifier_token30] = ACTIONS(1664), + [aux_sym_cmd_identifier_token31] = ACTIONS(1664), + [aux_sym_cmd_identifier_token32] = ACTIONS(1664), + [aux_sym_cmd_identifier_token33] = ACTIONS(1664), + [aux_sym_cmd_identifier_token34] = ACTIONS(1664), + [aux_sym_cmd_identifier_token35] = ACTIONS(1664), + [aux_sym_cmd_identifier_token36] = ACTIONS(1664), + [anon_sym_true] = ACTIONS(1664), + [anon_sym_false] = ACTIONS(1664), + [anon_sym_null] = ACTIONS(1664), + [aux_sym_cmd_identifier_token38] = ACTIONS(1664), + [aux_sym_cmd_identifier_token39] = ACTIONS(1664), + [aux_sym_cmd_identifier_token40] = ACTIONS(1664), + [anon_sym_def] = ACTIONS(1664), + [anon_sym_export_DASHenv] = ACTIONS(1664), + [anon_sym_extern] = ACTIONS(1664), + [anon_sym_module] = ACTIONS(1664), + [anon_sym_use] = ACTIONS(1664), + [anon_sym_LPAREN] = ACTIONS(1664), + [anon_sym_DOLLAR] = ACTIONS(1664), + [anon_sym_error] = ACTIONS(1664), + [anon_sym_list] = ACTIONS(1664), + [anon_sym_DASH] = ACTIONS(1664), + [anon_sym_break] = ACTIONS(1664), + [anon_sym_continue] = ACTIONS(1664), + [anon_sym_for] = ACTIONS(1664), + [anon_sym_in] = ACTIONS(1664), + [anon_sym_loop] = ACTIONS(1664), + [anon_sym_make] = ACTIONS(1664), + [anon_sym_while] = ACTIONS(1664), + [anon_sym_do] = ACTIONS(1664), + [anon_sym_if] = ACTIONS(1664), + [anon_sym_else] = ACTIONS(1664), + [anon_sym_match] = ACTIONS(1664), + [anon_sym_RBRACE] = ACTIONS(1664), + [anon_sym_try] = ACTIONS(1664), + [anon_sym_catch] = ACTIONS(1664), + [anon_sym_return] = ACTIONS(1664), + [anon_sym_source] = ACTIONS(1664), + [anon_sym_source_DASHenv] = ACTIONS(1664), + [anon_sym_register] = ACTIONS(1664), + [anon_sym_hide] = ACTIONS(1664), + [anon_sym_hide_DASHenv] = ACTIONS(1664), + [anon_sym_overlay] = ACTIONS(1664), + [anon_sym_new] = ACTIONS(1664), + [anon_sym_as] = ACTIONS(1664), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1664), + [anon_sym_DOT_DOT2] = ACTIONS(1664), + [anon_sym_DOT] = ACTIONS(1666), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1668), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1668), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1664), + [aux_sym__val_number_decimal_token1] = ACTIONS(1664), + [aux_sym__val_number_decimal_token2] = ACTIONS(1664), + [aux_sym__val_number_decimal_token3] = ACTIONS(1664), + [aux_sym__val_number_decimal_token4] = ACTIONS(1664), + [aux_sym__val_number_token1] = ACTIONS(1664), + [aux_sym__val_number_token2] = ACTIONS(1664), + [aux_sym__val_number_token3] = ACTIONS(1664), + [anon_sym_DQUOTE] = ACTIONS(1664), + [sym__str_single_quotes] = ACTIONS(1664), + [sym__str_back_ticks] = ACTIONS(1664), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1664), + [sym__entry_separator] = ACTIONS(1668), + [anon_sym_PLUS] = ACTIONS(1664), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1668), + }, + [236] = { + [sym_cell_path] = STATE(388), + [sym_path] = STATE(340), + [sym_comment] = STATE(236), + [aux_sym_cell_path_repeat1] = STATE(257), + [anon_sym_export] = ACTIONS(1670), + [anon_sym_alias] = ACTIONS(1670), + [anon_sym_let] = ACTIONS(1670), + [anon_sym_let_DASHenv] = ACTIONS(1670), + [anon_sym_mut] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(1670), + [aux_sym_cmd_identifier_token1] = ACTIONS(1670), + [aux_sym_cmd_identifier_token2] = ACTIONS(1670), + [aux_sym_cmd_identifier_token3] = ACTIONS(1670), + [aux_sym_cmd_identifier_token4] = ACTIONS(1670), + [aux_sym_cmd_identifier_token5] = ACTIONS(1670), + [aux_sym_cmd_identifier_token6] = ACTIONS(1670), + [aux_sym_cmd_identifier_token7] = ACTIONS(1670), + [aux_sym_cmd_identifier_token8] = ACTIONS(1670), + [aux_sym_cmd_identifier_token9] = ACTIONS(1670), + [aux_sym_cmd_identifier_token10] = ACTIONS(1670), + [aux_sym_cmd_identifier_token11] = ACTIONS(1670), + [aux_sym_cmd_identifier_token12] = ACTIONS(1670), + [aux_sym_cmd_identifier_token13] = ACTIONS(1670), + [aux_sym_cmd_identifier_token14] = ACTIONS(1670), + [aux_sym_cmd_identifier_token15] = ACTIONS(1670), + [aux_sym_cmd_identifier_token16] = ACTIONS(1670), + [aux_sym_cmd_identifier_token17] = ACTIONS(1670), + [aux_sym_cmd_identifier_token18] = ACTIONS(1670), + [aux_sym_cmd_identifier_token19] = ACTIONS(1670), + [aux_sym_cmd_identifier_token20] = ACTIONS(1670), + [aux_sym_cmd_identifier_token21] = ACTIONS(1670), + [aux_sym_cmd_identifier_token22] = ACTIONS(1670), + [aux_sym_cmd_identifier_token23] = ACTIONS(1670), + [aux_sym_cmd_identifier_token24] = ACTIONS(1670), + [aux_sym_cmd_identifier_token25] = ACTIONS(1670), + [aux_sym_cmd_identifier_token26] = ACTIONS(1670), + [aux_sym_cmd_identifier_token27] = ACTIONS(1670), + [aux_sym_cmd_identifier_token28] = ACTIONS(1670), + [aux_sym_cmd_identifier_token29] = ACTIONS(1670), + [aux_sym_cmd_identifier_token30] = ACTIONS(1670), + [aux_sym_cmd_identifier_token31] = ACTIONS(1670), + [aux_sym_cmd_identifier_token32] = ACTIONS(1670), + [aux_sym_cmd_identifier_token33] = ACTIONS(1670), + [aux_sym_cmd_identifier_token34] = ACTIONS(1670), + [aux_sym_cmd_identifier_token35] = ACTIONS(1670), + [aux_sym_cmd_identifier_token36] = ACTIONS(1670), + [anon_sym_true] = ACTIONS(1670), + [anon_sym_false] = ACTIONS(1670), + [anon_sym_null] = ACTIONS(1670), + [aux_sym_cmd_identifier_token38] = ACTIONS(1670), + [aux_sym_cmd_identifier_token39] = ACTIONS(1670), + [aux_sym_cmd_identifier_token40] = ACTIONS(1670), + [anon_sym_def] = ACTIONS(1670), + [anon_sym_export_DASHenv] = ACTIONS(1670), + [anon_sym_extern] = ACTIONS(1670), + [anon_sym_module] = ACTIONS(1670), + [anon_sym_use] = ACTIONS(1670), + [anon_sym_LPAREN] = ACTIONS(1670), + [anon_sym_DOLLAR] = ACTIONS(1670), + [anon_sym_error] = ACTIONS(1670), + [anon_sym_list] = ACTIONS(1670), + [anon_sym_DASH] = ACTIONS(1670), + [anon_sym_break] = ACTIONS(1670), + [anon_sym_continue] = ACTIONS(1670), + [anon_sym_for] = ACTIONS(1670), + [anon_sym_in] = ACTIONS(1670), + [anon_sym_loop] = ACTIONS(1670), + [anon_sym_make] = ACTIONS(1670), + [anon_sym_while] = ACTIONS(1670), + [anon_sym_do] = ACTIONS(1670), + [anon_sym_if] = ACTIONS(1670), + [anon_sym_else] = ACTIONS(1670), + [anon_sym_match] = ACTIONS(1670), + [anon_sym_RBRACE] = ACTIONS(1670), + [anon_sym_try] = ACTIONS(1670), + [anon_sym_catch] = ACTIONS(1670), + [anon_sym_return] = ACTIONS(1670), + [anon_sym_source] = ACTIONS(1670), + [anon_sym_source_DASHenv] = ACTIONS(1670), + [anon_sym_register] = ACTIONS(1670), + [anon_sym_hide] = ACTIONS(1670), + [anon_sym_hide_DASHenv] = ACTIONS(1670), + [anon_sym_overlay] = ACTIONS(1670), + [anon_sym_new] = ACTIONS(1670), + [anon_sym_as] = ACTIONS(1670), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1670), + [anon_sym_DOT_DOT2] = ACTIONS(1670), + [anon_sym_DOT] = ACTIONS(1666), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1672), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1672), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1670), + [aux_sym__val_number_decimal_token1] = ACTIONS(1670), + [aux_sym__val_number_decimal_token2] = ACTIONS(1670), + [aux_sym__val_number_decimal_token3] = ACTIONS(1670), + [aux_sym__val_number_decimal_token4] = ACTIONS(1670), + [aux_sym__val_number_token1] = ACTIONS(1670), + [aux_sym__val_number_token2] = ACTIONS(1670), + [aux_sym__val_number_token3] = ACTIONS(1670), + [anon_sym_DQUOTE] = ACTIONS(1670), + [sym__str_single_quotes] = ACTIONS(1670), + [sym__str_back_ticks] = ACTIONS(1670), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1670), + [sym__entry_separator] = ACTIONS(1672), + [anon_sym_PLUS] = ACTIONS(1670), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1672), + }, + [237] = { + [sym_comment] = STATE(237), + [aux_sym__block_body_repeat1] = STATE(238), + [anon_sym_export] = ACTIONS(1656), + [anon_sym_alias] = ACTIONS(1656), + [anon_sym_let] = ACTIONS(1656), + [anon_sym_let_DASHenv] = ACTIONS(1656), + [anon_sym_mut] = ACTIONS(1656), + [anon_sym_const] = ACTIONS(1656), + [aux_sym_cmd_identifier_token1] = ACTIONS(1656), + [aux_sym_cmd_identifier_token2] = ACTIONS(1656), + [aux_sym_cmd_identifier_token3] = ACTIONS(1656), + [aux_sym_cmd_identifier_token4] = ACTIONS(1656), + [aux_sym_cmd_identifier_token5] = ACTIONS(1656), + [aux_sym_cmd_identifier_token6] = ACTIONS(1656), + [aux_sym_cmd_identifier_token7] = ACTIONS(1656), + [aux_sym_cmd_identifier_token8] = ACTIONS(1656), + [aux_sym_cmd_identifier_token9] = ACTIONS(1656), + [aux_sym_cmd_identifier_token10] = ACTIONS(1656), + [aux_sym_cmd_identifier_token11] = ACTIONS(1656), + [aux_sym_cmd_identifier_token12] = ACTIONS(1656), + [aux_sym_cmd_identifier_token13] = ACTIONS(1656), + [aux_sym_cmd_identifier_token14] = ACTIONS(1656), + [aux_sym_cmd_identifier_token15] = ACTIONS(1656), + [aux_sym_cmd_identifier_token16] = ACTIONS(1656), + [aux_sym_cmd_identifier_token17] = ACTIONS(1656), + [aux_sym_cmd_identifier_token18] = ACTIONS(1656), + [aux_sym_cmd_identifier_token19] = ACTIONS(1656), + [aux_sym_cmd_identifier_token20] = ACTIONS(1656), + [aux_sym_cmd_identifier_token21] = ACTIONS(1656), + [aux_sym_cmd_identifier_token22] = ACTIONS(1656), + [aux_sym_cmd_identifier_token23] = ACTIONS(1656), + [aux_sym_cmd_identifier_token24] = ACTIONS(1658), + [aux_sym_cmd_identifier_token25] = ACTIONS(1656), + [aux_sym_cmd_identifier_token26] = ACTIONS(1658), + [aux_sym_cmd_identifier_token27] = ACTIONS(1656), + [aux_sym_cmd_identifier_token28] = ACTIONS(1656), + [aux_sym_cmd_identifier_token29] = ACTIONS(1656), + [aux_sym_cmd_identifier_token30] = ACTIONS(1656), + [aux_sym_cmd_identifier_token31] = ACTIONS(1658), + [aux_sym_cmd_identifier_token32] = ACTIONS(1658), + [aux_sym_cmd_identifier_token33] = ACTIONS(1658), + [aux_sym_cmd_identifier_token34] = ACTIONS(1658), + [aux_sym_cmd_identifier_token35] = ACTIONS(1658), + [aux_sym_cmd_identifier_token36] = ACTIONS(1656), + [anon_sym_true] = ACTIONS(1658), + [anon_sym_false] = ACTIONS(1658), + [anon_sym_null] = ACTIONS(1658), + [aux_sym_cmd_identifier_token38] = ACTIONS(1656), + [aux_sym_cmd_identifier_token39] = ACTIONS(1658), + [aux_sym_cmd_identifier_token40] = ACTIONS(1658), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(1656), + [anon_sym_export_DASHenv] = ACTIONS(1656), + [anon_sym_extern] = ACTIONS(1656), + [anon_sym_module] = ACTIONS(1656), + [anon_sym_use] = ACTIONS(1656), + [anon_sym_LBRACK] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(1658), + [anon_sym_RPAREN] = ACTIONS(1674), + [anon_sym_DOLLAR] = ACTIONS(1656), + [anon_sym_error] = ACTIONS(1656), + [anon_sym_DASH] = ACTIONS(1656), + [anon_sym_break] = ACTIONS(1656), + [anon_sym_continue] = ACTIONS(1656), + [anon_sym_for] = ACTIONS(1656), + [anon_sym_loop] = ACTIONS(1656), + [anon_sym_while] = ACTIONS(1656), + [anon_sym_do] = ACTIONS(1656), + [anon_sym_if] = ACTIONS(1656), + [anon_sym_match] = ACTIONS(1656), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1674), + [anon_sym_DOT_DOT] = ACTIONS(1656), + [anon_sym_try] = ACTIONS(1656), + [anon_sym_return] = ACTIONS(1656), + [anon_sym_source] = ACTIONS(1656), + [anon_sym_source_DASHenv] = ACTIONS(1656), + [anon_sym_register] = ACTIONS(1656), + [anon_sym_hide] = ACTIONS(1656), + [anon_sym_hide_DASHenv] = ACTIONS(1656), + [anon_sym_overlay] = ACTIONS(1656), + [anon_sym_where] = ACTIONS(1658), + [aux_sym_expr_unary_token1] = ACTIONS(1658), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1658), + [anon_sym_DOT_DOT_LT] = ACTIONS(1658), + [aux_sym__val_number_decimal_token1] = ACTIONS(1656), + [aux_sym__val_number_decimal_token2] = ACTIONS(1658), + [aux_sym__val_number_decimal_token3] = ACTIONS(1658), + [aux_sym__val_number_decimal_token4] = ACTIONS(1658), + [aux_sym__val_number_token1] = ACTIONS(1658), + [aux_sym__val_number_token2] = ACTIONS(1658), + [aux_sym__val_number_token3] = ACTIONS(1658), + [anon_sym_0b] = ACTIONS(1656), + [anon_sym_0o] = ACTIONS(1656), + [anon_sym_0x] = ACTIONS(1656), + [sym_val_date] = ACTIONS(1658), + [anon_sym_DQUOTE] = ACTIONS(1658), + [sym__str_single_quotes] = ACTIONS(1658), + [sym__str_back_ticks] = ACTIONS(1658), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1658), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1658), + [aux_sym_env_var_token1] = ACTIONS(1656), + [anon_sym_CARET] = ACTIONS(1658), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1658), + }, + [238] = { + [sym_comment] = STATE(238), + [aux_sym__block_body_repeat1] = STATE(238), + [anon_sym_export] = ACTIONS(1676), + [anon_sym_alias] = ACTIONS(1676), + [anon_sym_let] = ACTIONS(1676), + [anon_sym_let_DASHenv] = ACTIONS(1676), + [anon_sym_mut] = ACTIONS(1676), + [anon_sym_const] = ACTIONS(1676), + [aux_sym_cmd_identifier_token1] = ACTIONS(1676), + [aux_sym_cmd_identifier_token2] = ACTIONS(1676), + [aux_sym_cmd_identifier_token3] = ACTIONS(1676), + [aux_sym_cmd_identifier_token4] = ACTIONS(1676), + [aux_sym_cmd_identifier_token5] = ACTIONS(1676), + [aux_sym_cmd_identifier_token6] = ACTIONS(1676), + [aux_sym_cmd_identifier_token7] = ACTIONS(1676), + [aux_sym_cmd_identifier_token8] = ACTIONS(1676), + [aux_sym_cmd_identifier_token9] = ACTIONS(1676), + [aux_sym_cmd_identifier_token10] = ACTIONS(1676), + [aux_sym_cmd_identifier_token11] = ACTIONS(1676), + [aux_sym_cmd_identifier_token12] = ACTIONS(1676), + [aux_sym_cmd_identifier_token13] = ACTIONS(1676), + [aux_sym_cmd_identifier_token14] = ACTIONS(1676), + [aux_sym_cmd_identifier_token15] = ACTIONS(1676), + [aux_sym_cmd_identifier_token16] = ACTIONS(1676), + [aux_sym_cmd_identifier_token17] = ACTIONS(1676), + [aux_sym_cmd_identifier_token18] = ACTIONS(1676), + [aux_sym_cmd_identifier_token19] = ACTIONS(1676), + [aux_sym_cmd_identifier_token20] = ACTIONS(1676), + [aux_sym_cmd_identifier_token21] = ACTIONS(1676), + [aux_sym_cmd_identifier_token22] = ACTIONS(1676), + [aux_sym_cmd_identifier_token23] = ACTIONS(1676), + [aux_sym_cmd_identifier_token24] = ACTIONS(1678), + [aux_sym_cmd_identifier_token25] = ACTIONS(1676), + [aux_sym_cmd_identifier_token26] = ACTIONS(1678), + [aux_sym_cmd_identifier_token27] = ACTIONS(1676), + [aux_sym_cmd_identifier_token28] = ACTIONS(1676), + [aux_sym_cmd_identifier_token29] = ACTIONS(1676), + [aux_sym_cmd_identifier_token30] = ACTIONS(1676), + [aux_sym_cmd_identifier_token31] = ACTIONS(1678), + [aux_sym_cmd_identifier_token32] = ACTIONS(1678), + [aux_sym_cmd_identifier_token33] = ACTIONS(1678), + [aux_sym_cmd_identifier_token34] = ACTIONS(1678), + [aux_sym_cmd_identifier_token35] = ACTIONS(1678), + [aux_sym_cmd_identifier_token36] = ACTIONS(1676), + [anon_sym_true] = ACTIONS(1678), + [anon_sym_false] = ACTIONS(1678), + [anon_sym_null] = ACTIONS(1678), + [aux_sym_cmd_identifier_token38] = ACTIONS(1676), + [aux_sym_cmd_identifier_token39] = ACTIONS(1678), + [aux_sym_cmd_identifier_token40] = ACTIONS(1678), + [sym__newline] = ACTIONS(1680), + [anon_sym_SEMI] = ACTIONS(1680), + [anon_sym_def] = ACTIONS(1676), + [anon_sym_export_DASHenv] = ACTIONS(1676), + [anon_sym_extern] = ACTIONS(1676), + [anon_sym_module] = ACTIONS(1676), + [anon_sym_use] = ACTIONS(1676), + [anon_sym_LBRACK] = ACTIONS(1678), + [anon_sym_LPAREN] = ACTIONS(1678), + [anon_sym_RPAREN] = ACTIONS(1678), + [anon_sym_DOLLAR] = ACTIONS(1676), + [anon_sym_error] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_break] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1676), + [anon_sym_loop] = ACTIONS(1676), + [anon_sym_while] = ACTIONS(1676), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_if] = ACTIONS(1676), + [anon_sym_match] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_RBRACE] = ACTIONS(1678), + [anon_sym_DOT_DOT] = ACTIONS(1676), + [anon_sym_try] = ACTIONS(1676), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_source] = ACTIONS(1676), + [anon_sym_source_DASHenv] = ACTIONS(1676), + [anon_sym_register] = ACTIONS(1676), + [anon_sym_hide] = ACTIONS(1676), + [anon_sym_hide_DASHenv] = ACTIONS(1676), + [anon_sym_overlay] = ACTIONS(1676), + [anon_sym_where] = ACTIONS(1678), + [aux_sym_expr_unary_token1] = ACTIONS(1678), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1678), + [anon_sym_DOT_DOT_LT] = ACTIONS(1678), + [aux_sym__val_number_decimal_token1] = ACTIONS(1676), + [aux_sym__val_number_decimal_token2] = ACTIONS(1678), + [aux_sym__val_number_decimal_token3] = ACTIONS(1678), + [aux_sym__val_number_decimal_token4] = ACTIONS(1678), + [aux_sym__val_number_token1] = ACTIONS(1678), + [aux_sym__val_number_token2] = ACTIONS(1678), + [aux_sym__val_number_token3] = ACTIONS(1678), + [anon_sym_0b] = ACTIONS(1676), + [anon_sym_0o] = ACTIONS(1676), + [anon_sym_0x] = ACTIONS(1676), + [sym_val_date] = ACTIONS(1678), + [anon_sym_DQUOTE] = ACTIONS(1678), + [sym__str_single_quotes] = ACTIONS(1678), + [sym__str_back_ticks] = ACTIONS(1678), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1678), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1678), + [aux_sym_env_var_token1] = ACTIONS(1676), + [anon_sym_CARET] = ACTIONS(1678), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1678), + }, + [239] = { + [sym__expr_parenthesized_immediate] = STATE(648), + [sym__immediate_decimal] = STATE(649), + [sym_val_variable] = STATE(648), + [sym_comment] = STATE(239), + [anon_sym_export] = ACTIONS(1620), + [anon_sym_alias] = ACTIONS(1620), + [anon_sym_let] = ACTIONS(1620), + [anon_sym_let_DASHenv] = ACTIONS(1620), + [anon_sym_mut] = ACTIONS(1620), + [anon_sym_const] = ACTIONS(1620), + [aux_sym_cmd_identifier_token1] = ACTIONS(1620), + [aux_sym_cmd_identifier_token2] = ACTIONS(1620), + [aux_sym_cmd_identifier_token3] = ACTIONS(1620), + [aux_sym_cmd_identifier_token4] = ACTIONS(1620), + [aux_sym_cmd_identifier_token5] = ACTIONS(1620), + [aux_sym_cmd_identifier_token6] = ACTIONS(1620), + [aux_sym_cmd_identifier_token7] = ACTIONS(1620), + [aux_sym_cmd_identifier_token8] = ACTIONS(1620), + [aux_sym_cmd_identifier_token9] = ACTIONS(1620), + [aux_sym_cmd_identifier_token10] = ACTIONS(1620), + [aux_sym_cmd_identifier_token11] = ACTIONS(1620), + [aux_sym_cmd_identifier_token12] = ACTIONS(1620), + [aux_sym_cmd_identifier_token13] = ACTIONS(1620), + [aux_sym_cmd_identifier_token14] = ACTIONS(1620), + [aux_sym_cmd_identifier_token15] = ACTIONS(1620), + [aux_sym_cmd_identifier_token16] = ACTIONS(1620), + [aux_sym_cmd_identifier_token17] = ACTIONS(1620), + [aux_sym_cmd_identifier_token18] = ACTIONS(1620), + [aux_sym_cmd_identifier_token19] = ACTIONS(1620), + [aux_sym_cmd_identifier_token20] = ACTIONS(1620), + [aux_sym_cmd_identifier_token21] = ACTIONS(1620), + [aux_sym_cmd_identifier_token22] = ACTIONS(1620), + [aux_sym_cmd_identifier_token23] = ACTIONS(1620), + [aux_sym_cmd_identifier_token24] = ACTIONS(1620), + [aux_sym_cmd_identifier_token25] = ACTIONS(1620), + [aux_sym_cmd_identifier_token26] = ACTIONS(1620), + [aux_sym_cmd_identifier_token27] = ACTIONS(1620), + [aux_sym_cmd_identifier_token28] = ACTIONS(1620), + [aux_sym_cmd_identifier_token29] = ACTIONS(1620), + [aux_sym_cmd_identifier_token30] = ACTIONS(1620), + [aux_sym_cmd_identifier_token31] = ACTIONS(1620), + [aux_sym_cmd_identifier_token32] = ACTIONS(1620), + [aux_sym_cmd_identifier_token33] = ACTIONS(1620), + [aux_sym_cmd_identifier_token34] = ACTIONS(1620), + [aux_sym_cmd_identifier_token35] = ACTIONS(1620), + [aux_sym_cmd_identifier_token36] = ACTIONS(1620), + [anon_sym_true] = ACTIONS(1622), + [anon_sym_false] = ACTIONS(1622), + [anon_sym_null] = ACTIONS(1622), + [aux_sym_cmd_identifier_token38] = ACTIONS(1620), + [aux_sym_cmd_identifier_token39] = ACTIONS(1622), + [aux_sym_cmd_identifier_token40] = ACTIONS(1622), + [anon_sym_def] = ACTIONS(1620), + [anon_sym_export_DASHenv] = ACTIONS(1620), + [anon_sym_extern] = ACTIONS(1620), + [anon_sym_module] = ACTIONS(1620), + [anon_sym_use] = ACTIONS(1620), + [anon_sym_LPAREN] = ACTIONS(1620), + [anon_sym_DOLLAR] = ACTIONS(1644), + [anon_sym_error] = ACTIONS(1620), + [anon_sym_list] = ACTIONS(1620), + [anon_sym_DASH] = ACTIONS(1620), + [anon_sym_break] = ACTIONS(1620), + [anon_sym_continue] = ACTIONS(1620), + [anon_sym_for] = ACTIONS(1620), + [anon_sym_in] = ACTIONS(1620), + [anon_sym_loop] = ACTIONS(1620), + [anon_sym_make] = ACTIONS(1620), + [anon_sym_while] = ACTIONS(1620), + [anon_sym_do] = ACTIONS(1620), + [anon_sym_if] = ACTIONS(1620), + [anon_sym_else] = ACTIONS(1620), + [anon_sym_match] = ACTIONS(1620), + [anon_sym_RBRACE] = ACTIONS(1622), + [anon_sym_try] = ACTIONS(1620), + [anon_sym_catch] = ACTIONS(1620), + [anon_sym_return] = ACTIONS(1620), + [anon_sym_source] = ACTIONS(1620), + [anon_sym_source_DASHenv] = ACTIONS(1620), + [anon_sym_register] = ACTIONS(1620), + [anon_sym_hide] = ACTIONS(1620), + [anon_sym_hide_DASHenv] = ACTIONS(1620), + [anon_sym_overlay] = ACTIONS(1620), + [anon_sym_new] = ACTIONS(1620), + [anon_sym_as] = ACTIONS(1620), + [anon_sym_LPAREN2] = ACTIONS(1646), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1622), + [aux_sym__immediate_decimal_token1] = ACTIONS(1683), + [aux_sym__immediate_decimal_token3] = ACTIONS(1685), + [aux_sym__immediate_decimal_token4] = ACTIONS(1687), + [aux_sym__immediate_decimal_token5] = ACTIONS(1689), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1622), + [aux_sym__val_number_decimal_token1] = ACTIONS(1620), + [aux_sym__val_number_decimal_token2] = ACTIONS(1620), + [aux_sym__val_number_decimal_token3] = ACTIONS(1620), + [aux_sym__val_number_decimal_token4] = ACTIONS(1620), + [aux_sym__val_number_token1] = ACTIONS(1622), + [aux_sym__val_number_token2] = ACTIONS(1622), + [aux_sym__val_number_token3] = ACTIONS(1622), + [anon_sym_DQUOTE] = ACTIONS(1622), + [sym__str_single_quotes] = ACTIONS(1622), + [sym__str_back_ticks] = ACTIONS(1622), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1622), + [anon_sym_PLUS] = ACTIONS(1620), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1622), + }, + [240] = { + [sym_cell_path] = STATE(416), + [sym_path] = STATE(340), + [sym_comment] = STATE(240), + [aux_sym_cell_path_repeat1] = STATE(257), + [anon_sym_export] = ACTIONS(1021), + [anon_sym_alias] = ACTIONS(1021), + [anon_sym_let] = ACTIONS(1021), + [anon_sym_let_DASHenv] = ACTIONS(1021), + [anon_sym_mut] = ACTIONS(1021), + [anon_sym_const] = ACTIONS(1021), + [aux_sym_cmd_identifier_token1] = ACTIONS(1021), + [aux_sym_cmd_identifier_token2] = ACTIONS(1021), + [aux_sym_cmd_identifier_token3] = ACTIONS(1021), + [aux_sym_cmd_identifier_token4] = ACTIONS(1021), + [aux_sym_cmd_identifier_token5] = ACTIONS(1021), + [aux_sym_cmd_identifier_token6] = ACTIONS(1021), + [aux_sym_cmd_identifier_token7] = ACTIONS(1021), + [aux_sym_cmd_identifier_token8] = ACTIONS(1021), + [aux_sym_cmd_identifier_token9] = ACTIONS(1021), + [aux_sym_cmd_identifier_token10] = ACTIONS(1021), + [aux_sym_cmd_identifier_token11] = ACTIONS(1021), + [aux_sym_cmd_identifier_token12] = ACTIONS(1021), + [aux_sym_cmd_identifier_token13] = ACTIONS(1021), + [aux_sym_cmd_identifier_token14] = ACTIONS(1021), + [aux_sym_cmd_identifier_token15] = ACTIONS(1021), + [aux_sym_cmd_identifier_token16] = ACTIONS(1021), + [aux_sym_cmd_identifier_token17] = ACTIONS(1021), + [aux_sym_cmd_identifier_token18] = ACTIONS(1021), + [aux_sym_cmd_identifier_token19] = ACTIONS(1021), + [aux_sym_cmd_identifier_token20] = ACTIONS(1021), + [aux_sym_cmd_identifier_token21] = ACTIONS(1021), + [aux_sym_cmd_identifier_token22] = ACTIONS(1021), + [aux_sym_cmd_identifier_token23] = ACTIONS(1021), + [aux_sym_cmd_identifier_token24] = ACTIONS(1021), + [aux_sym_cmd_identifier_token25] = ACTIONS(1021), + [aux_sym_cmd_identifier_token26] = ACTIONS(1021), + [aux_sym_cmd_identifier_token27] = ACTIONS(1021), + [aux_sym_cmd_identifier_token28] = ACTIONS(1021), + [aux_sym_cmd_identifier_token29] = ACTIONS(1021), + [aux_sym_cmd_identifier_token30] = ACTIONS(1021), + [aux_sym_cmd_identifier_token31] = ACTIONS(1021), + [aux_sym_cmd_identifier_token32] = ACTIONS(1021), + [aux_sym_cmd_identifier_token33] = ACTIONS(1021), + [aux_sym_cmd_identifier_token34] = ACTIONS(1021), + [aux_sym_cmd_identifier_token35] = ACTIONS(1021), + [aux_sym_cmd_identifier_token36] = ACTIONS(1021), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_null] = ACTIONS(1021), + [aux_sym_cmd_identifier_token38] = ACTIONS(1021), + [aux_sym_cmd_identifier_token39] = ACTIONS(1021), + [aux_sym_cmd_identifier_token40] = ACTIONS(1021), + [anon_sym_def] = ACTIONS(1021), + [anon_sym_export_DASHenv] = ACTIONS(1021), + [anon_sym_extern] = ACTIONS(1021), + [anon_sym_module] = ACTIONS(1021), + [anon_sym_use] = ACTIONS(1021), + [anon_sym_LPAREN] = ACTIONS(1021), + [anon_sym_DOLLAR] = ACTIONS(1021), + [anon_sym_error] = ACTIONS(1021), + [anon_sym_list] = ACTIONS(1021), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_break] = ACTIONS(1021), + [anon_sym_continue] = ACTIONS(1021), + [anon_sym_for] = ACTIONS(1021), + [anon_sym_in] = ACTIONS(1021), + [anon_sym_loop] = ACTIONS(1021), + [anon_sym_make] = ACTIONS(1021), + [anon_sym_while] = ACTIONS(1021), + [anon_sym_do] = ACTIONS(1021), + [anon_sym_if] = ACTIONS(1021), + [anon_sym_else] = ACTIONS(1021), + [anon_sym_match] = ACTIONS(1021), + [anon_sym_RBRACE] = ACTIONS(1021), + [anon_sym_try] = ACTIONS(1021), + [anon_sym_catch] = ACTIONS(1021), + [anon_sym_return] = ACTIONS(1021), + [anon_sym_source] = ACTIONS(1021), + [anon_sym_source_DASHenv] = ACTIONS(1021), + [anon_sym_register] = ACTIONS(1021), + [anon_sym_hide] = ACTIONS(1021), + [anon_sym_hide_DASHenv] = ACTIONS(1021), + [anon_sym_overlay] = ACTIONS(1021), + [anon_sym_new] = ACTIONS(1021), + [anon_sym_as] = ACTIONS(1021), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1021), + [anon_sym_DOT_DOT2] = ACTIONS(1021), + [anon_sym_DOT] = ACTIONS(1666), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1023), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1023), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1021), + [aux_sym__val_number_decimal_token1] = ACTIONS(1021), + [aux_sym__val_number_decimal_token2] = ACTIONS(1021), + [aux_sym__val_number_decimal_token3] = ACTIONS(1021), + [aux_sym__val_number_decimal_token4] = ACTIONS(1021), + [aux_sym__val_number_token1] = ACTIONS(1021), + [aux_sym__val_number_token2] = ACTIONS(1021), + [aux_sym__val_number_token3] = ACTIONS(1021), + [anon_sym_DQUOTE] = ACTIONS(1021), + [sym__str_single_quotes] = ACTIONS(1021), + [sym__str_back_ticks] = ACTIONS(1021), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1021), + [sym__entry_separator] = ACTIONS(1023), + [anon_sym_PLUS] = ACTIONS(1021), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1023), + }, + [241] = { + [sym__expr_parenthesized_immediate] = STATE(646), + [sym__immediate_decimal] = STATE(647), + [sym_val_variable] = STATE(646), + [sym_comment] = STATE(241), + [anon_sym_export] = ACTIONS(1612), + [anon_sym_alias] = ACTIONS(1612), + [anon_sym_let] = ACTIONS(1612), + [anon_sym_let_DASHenv] = ACTIONS(1612), + [anon_sym_mut] = ACTIONS(1612), + [anon_sym_const] = ACTIONS(1612), + [aux_sym_cmd_identifier_token1] = ACTIONS(1612), + [aux_sym_cmd_identifier_token2] = ACTIONS(1612), + [aux_sym_cmd_identifier_token3] = ACTIONS(1612), + [aux_sym_cmd_identifier_token4] = ACTIONS(1612), + [aux_sym_cmd_identifier_token5] = ACTIONS(1612), + [aux_sym_cmd_identifier_token6] = ACTIONS(1612), + [aux_sym_cmd_identifier_token7] = ACTIONS(1612), + [aux_sym_cmd_identifier_token8] = ACTIONS(1612), + [aux_sym_cmd_identifier_token9] = ACTIONS(1612), + [aux_sym_cmd_identifier_token10] = ACTIONS(1612), + [aux_sym_cmd_identifier_token11] = ACTIONS(1612), + [aux_sym_cmd_identifier_token12] = ACTIONS(1612), + [aux_sym_cmd_identifier_token13] = ACTIONS(1612), + [aux_sym_cmd_identifier_token14] = ACTIONS(1612), + [aux_sym_cmd_identifier_token15] = ACTIONS(1612), + [aux_sym_cmd_identifier_token16] = ACTIONS(1612), + [aux_sym_cmd_identifier_token17] = ACTIONS(1612), + [aux_sym_cmd_identifier_token18] = ACTIONS(1612), + [aux_sym_cmd_identifier_token19] = ACTIONS(1612), + [aux_sym_cmd_identifier_token20] = ACTIONS(1612), + [aux_sym_cmd_identifier_token21] = ACTIONS(1612), + [aux_sym_cmd_identifier_token22] = ACTIONS(1612), + [aux_sym_cmd_identifier_token23] = ACTIONS(1612), + [aux_sym_cmd_identifier_token24] = ACTIONS(1612), + [aux_sym_cmd_identifier_token25] = ACTIONS(1612), + [aux_sym_cmd_identifier_token26] = ACTIONS(1612), + [aux_sym_cmd_identifier_token27] = ACTIONS(1612), + [aux_sym_cmd_identifier_token28] = ACTIONS(1612), + [aux_sym_cmd_identifier_token29] = ACTIONS(1612), + [aux_sym_cmd_identifier_token30] = ACTIONS(1612), + [aux_sym_cmd_identifier_token31] = ACTIONS(1612), + [aux_sym_cmd_identifier_token32] = ACTIONS(1612), + [aux_sym_cmd_identifier_token33] = ACTIONS(1612), + [aux_sym_cmd_identifier_token34] = ACTIONS(1612), + [aux_sym_cmd_identifier_token35] = ACTIONS(1612), + [aux_sym_cmd_identifier_token36] = ACTIONS(1612), + [anon_sym_true] = ACTIONS(1614), + [anon_sym_false] = ACTIONS(1614), + [anon_sym_null] = ACTIONS(1614), + [aux_sym_cmd_identifier_token38] = ACTIONS(1612), + [aux_sym_cmd_identifier_token39] = ACTIONS(1614), + [aux_sym_cmd_identifier_token40] = ACTIONS(1614), + [anon_sym_def] = ACTIONS(1612), + [anon_sym_export_DASHenv] = ACTIONS(1612), + [anon_sym_extern] = ACTIONS(1612), + [anon_sym_module] = ACTIONS(1612), + [anon_sym_use] = ACTIONS(1612), + [anon_sym_LPAREN] = ACTIONS(1612), + [anon_sym_DOLLAR] = ACTIONS(1644), + [anon_sym_error] = ACTIONS(1612), + [anon_sym_list] = ACTIONS(1612), + [anon_sym_DASH] = ACTIONS(1612), + [anon_sym_break] = ACTIONS(1612), + [anon_sym_continue] = ACTIONS(1612), + [anon_sym_for] = ACTIONS(1612), + [anon_sym_in] = ACTIONS(1612), + [anon_sym_loop] = ACTIONS(1612), + [anon_sym_make] = ACTIONS(1612), + [anon_sym_while] = ACTIONS(1612), + [anon_sym_do] = ACTIONS(1612), + [anon_sym_if] = ACTIONS(1612), + [anon_sym_else] = ACTIONS(1612), + [anon_sym_match] = ACTIONS(1612), + [anon_sym_RBRACE] = ACTIONS(1614), + [anon_sym_try] = ACTIONS(1612), + [anon_sym_catch] = ACTIONS(1612), + [anon_sym_return] = ACTIONS(1612), + [anon_sym_source] = ACTIONS(1612), + [anon_sym_source_DASHenv] = ACTIONS(1612), + [anon_sym_register] = ACTIONS(1612), + [anon_sym_hide] = ACTIONS(1612), + [anon_sym_hide_DASHenv] = ACTIONS(1612), + [anon_sym_overlay] = ACTIONS(1612), + [anon_sym_new] = ACTIONS(1612), + [anon_sym_as] = ACTIONS(1612), + [anon_sym_LPAREN2] = ACTIONS(1646), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1614), + [aux_sym__immediate_decimal_token1] = ACTIONS(1683), + [aux_sym__immediate_decimal_token3] = ACTIONS(1685), + [aux_sym__immediate_decimal_token4] = ACTIONS(1687), + [aux_sym__immediate_decimal_token5] = ACTIONS(1689), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1614), + [aux_sym__val_number_decimal_token1] = ACTIONS(1612), + [aux_sym__val_number_decimal_token2] = ACTIONS(1612), + [aux_sym__val_number_decimal_token3] = ACTIONS(1612), + [aux_sym__val_number_decimal_token4] = ACTIONS(1612), + [aux_sym__val_number_token1] = ACTIONS(1614), + [aux_sym__val_number_token2] = ACTIONS(1614), + [aux_sym__val_number_token3] = ACTIONS(1614), + [anon_sym_DQUOTE] = ACTIONS(1614), + [sym__str_single_quotes] = ACTIONS(1614), + [sym__str_back_ticks] = ACTIONS(1614), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1614), + [anon_sym_PLUS] = ACTIONS(1612), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1614), + }, + [242] = { + [sym_comment] = STATE(242), + [anon_sym_export] = ACTIONS(1536), + [anon_sym_alias] = ACTIONS(1536), + [anon_sym_let] = ACTIONS(1536), + [anon_sym_let_DASHenv] = ACTIONS(1536), + [anon_sym_mut] = ACTIONS(1536), + [anon_sym_const] = ACTIONS(1536), + [aux_sym_cmd_identifier_token1] = ACTIONS(1536), + [aux_sym_cmd_identifier_token2] = ACTIONS(1536), + [aux_sym_cmd_identifier_token3] = ACTIONS(1536), + [aux_sym_cmd_identifier_token4] = ACTIONS(1536), + [aux_sym_cmd_identifier_token5] = ACTIONS(1536), + [aux_sym_cmd_identifier_token6] = ACTIONS(1536), + [aux_sym_cmd_identifier_token7] = ACTIONS(1536), + [aux_sym_cmd_identifier_token8] = ACTIONS(1536), + [aux_sym_cmd_identifier_token9] = ACTIONS(1536), + [aux_sym_cmd_identifier_token10] = ACTIONS(1536), + [aux_sym_cmd_identifier_token11] = ACTIONS(1536), + [aux_sym_cmd_identifier_token12] = ACTIONS(1536), + [aux_sym_cmd_identifier_token13] = ACTIONS(1536), + [aux_sym_cmd_identifier_token14] = ACTIONS(1536), + [aux_sym_cmd_identifier_token15] = ACTIONS(1536), + [aux_sym_cmd_identifier_token16] = ACTIONS(1536), + [aux_sym_cmd_identifier_token17] = ACTIONS(1536), + [aux_sym_cmd_identifier_token18] = ACTIONS(1536), + [aux_sym_cmd_identifier_token19] = ACTIONS(1536), + [aux_sym_cmd_identifier_token20] = ACTIONS(1536), + [aux_sym_cmd_identifier_token21] = ACTIONS(1536), + [aux_sym_cmd_identifier_token22] = ACTIONS(1536), + [aux_sym_cmd_identifier_token23] = ACTIONS(1536), + [aux_sym_cmd_identifier_token24] = ACTIONS(1536), + [aux_sym_cmd_identifier_token25] = ACTIONS(1536), + [aux_sym_cmd_identifier_token26] = ACTIONS(1536), + [aux_sym_cmd_identifier_token27] = ACTIONS(1536), + [aux_sym_cmd_identifier_token28] = ACTIONS(1536), + [aux_sym_cmd_identifier_token29] = ACTIONS(1536), + [aux_sym_cmd_identifier_token30] = ACTIONS(1536), + [aux_sym_cmd_identifier_token31] = ACTIONS(1536), + [aux_sym_cmd_identifier_token32] = ACTIONS(1536), + [aux_sym_cmd_identifier_token33] = ACTIONS(1536), + [aux_sym_cmd_identifier_token34] = ACTIONS(1536), + [aux_sym_cmd_identifier_token35] = ACTIONS(1536), + [aux_sym_cmd_identifier_token36] = ACTIONS(1536), + [anon_sym_true] = ACTIONS(1538), + [anon_sym_false] = ACTIONS(1538), + [anon_sym_null] = ACTIONS(1538), + [aux_sym_cmd_identifier_token38] = ACTIONS(1536), + [aux_sym_cmd_identifier_token39] = ACTIONS(1538), + [aux_sym_cmd_identifier_token40] = ACTIONS(1538), + [anon_sym_def] = ACTIONS(1536), + [anon_sym_export_DASHenv] = ACTIONS(1536), + [anon_sym_extern] = ACTIONS(1536), + [anon_sym_module] = ACTIONS(1536), + [anon_sym_use] = ACTIONS(1536), + [anon_sym_LPAREN] = ACTIONS(1536), + [anon_sym_DOLLAR] = ACTIONS(1538), + [anon_sym_error] = ACTIONS(1536), + [anon_sym_list] = ACTIONS(1536), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_break] = ACTIONS(1536), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_for] = ACTIONS(1536), + [anon_sym_in] = ACTIONS(1536), + [anon_sym_loop] = ACTIONS(1536), + [anon_sym_make] = ACTIONS(1536), + [anon_sym_while] = ACTIONS(1536), + [anon_sym_do] = ACTIONS(1536), + [anon_sym_if] = ACTIONS(1536), + [anon_sym_else] = ACTIONS(1536), + [anon_sym_match] = ACTIONS(1536), + [anon_sym_RBRACE] = ACTIONS(1538), + [anon_sym_try] = ACTIONS(1536), + [anon_sym_catch] = ACTIONS(1536), + [anon_sym_return] = ACTIONS(1536), + [anon_sym_source] = ACTIONS(1536), + [anon_sym_source_DASHenv] = ACTIONS(1536), + [anon_sym_register] = ACTIONS(1536), + [anon_sym_hide] = ACTIONS(1536), + [anon_sym_hide_DASHenv] = ACTIONS(1536), + [anon_sym_overlay] = ACTIONS(1536), + [anon_sym_new] = ACTIONS(1536), + [anon_sym_as] = ACTIONS(1536), + [anon_sym_LPAREN2] = ACTIONS(1538), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1538), + [anon_sym_DOT_DOT2] = ACTIONS(1536), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), + [aux_sym__immediate_decimal_token2] = ACTIONS(1618), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1538), + [aux_sym__val_number_decimal_token1] = ACTIONS(1536), + [aux_sym__val_number_decimal_token2] = ACTIONS(1538), + [aux_sym__val_number_decimal_token3] = ACTIONS(1538), + [aux_sym__val_number_decimal_token4] = ACTIONS(1538), + [aux_sym__val_number_token1] = ACTIONS(1538), + [aux_sym__val_number_token2] = ACTIONS(1538), + [aux_sym__val_number_token3] = ACTIONS(1538), + [sym_filesize_unit] = ACTIONS(1536), + [sym_duration_unit] = ACTIONS(1536), + [anon_sym_DQUOTE] = ACTIONS(1538), + [sym__str_single_quotes] = ACTIONS(1538), + [sym__str_back_ticks] = ACTIONS(1538), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1538), + [anon_sym_PLUS] = ACTIONS(1536), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1536), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1538), + }, + [243] = { + [sym__expr_parenthesized_immediate] = STATE(644), + [sym__immediate_decimal] = STATE(645), + [sym_val_variable] = STATE(644), + [sym_comment] = STATE(243), + [anon_sym_export] = ACTIONS(1608), + [anon_sym_alias] = ACTIONS(1608), + [anon_sym_let] = ACTIONS(1608), + [anon_sym_let_DASHenv] = ACTIONS(1608), + [anon_sym_mut] = ACTIONS(1608), + [anon_sym_const] = ACTIONS(1608), + [aux_sym_cmd_identifier_token1] = ACTIONS(1608), + [aux_sym_cmd_identifier_token2] = ACTIONS(1608), + [aux_sym_cmd_identifier_token3] = ACTIONS(1608), + [aux_sym_cmd_identifier_token4] = ACTIONS(1608), + [aux_sym_cmd_identifier_token5] = ACTIONS(1608), + [aux_sym_cmd_identifier_token6] = ACTIONS(1608), + [aux_sym_cmd_identifier_token7] = ACTIONS(1608), + [aux_sym_cmd_identifier_token8] = ACTIONS(1608), + [aux_sym_cmd_identifier_token9] = ACTIONS(1608), + [aux_sym_cmd_identifier_token10] = ACTIONS(1608), + [aux_sym_cmd_identifier_token11] = ACTIONS(1608), + [aux_sym_cmd_identifier_token12] = ACTIONS(1608), + [aux_sym_cmd_identifier_token13] = ACTIONS(1608), + [aux_sym_cmd_identifier_token14] = ACTIONS(1608), + [aux_sym_cmd_identifier_token15] = ACTIONS(1608), + [aux_sym_cmd_identifier_token16] = ACTIONS(1608), + [aux_sym_cmd_identifier_token17] = ACTIONS(1608), + [aux_sym_cmd_identifier_token18] = ACTIONS(1608), + [aux_sym_cmd_identifier_token19] = ACTIONS(1608), + [aux_sym_cmd_identifier_token20] = ACTIONS(1608), + [aux_sym_cmd_identifier_token21] = ACTIONS(1608), + [aux_sym_cmd_identifier_token22] = ACTIONS(1608), + [aux_sym_cmd_identifier_token23] = ACTIONS(1608), + [aux_sym_cmd_identifier_token24] = ACTIONS(1608), + [aux_sym_cmd_identifier_token25] = ACTIONS(1608), + [aux_sym_cmd_identifier_token26] = ACTIONS(1608), + [aux_sym_cmd_identifier_token27] = ACTIONS(1608), + [aux_sym_cmd_identifier_token28] = ACTIONS(1608), + [aux_sym_cmd_identifier_token29] = ACTIONS(1608), + [aux_sym_cmd_identifier_token30] = ACTIONS(1608), + [aux_sym_cmd_identifier_token31] = ACTIONS(1608), + [aux_sym_cmd_identifier_token32] = ACTIONS(1608), + [aux_sym_cmd_identifier_token33] = ACTIONS(1608), + [aux_sym_cmd_identifier_token34] = ACTIONS(1608), + [aux_sym_cmd_identifier_token35] = ACTIONS(1608), + [aux_sym_cmd_identifier_token36] = ACTIONS(1608), + [anon_sym_true] = ACTIONS(1610), + [anon_sym_false] = ACTIONS(1610), + [anon_sym_null] = ACTIONS(1610), + [aux_sym_cmd_identifier_token38] = ACTIONS(1608), + [aux_sym_cmd_identifier_token39] = ACTIONS(1610), + [aux_sym_cmd_identifier_token40] = ACTIONS(1610), + [anon_sym_def] = ACTIONS(1608), + [anon_sym_export_DASHenv] = ACTIONS(1608), + [anon_sym_extern] = ACTIONS(1608), + [anon_sym_module] = ACTIONS(1608), + [anon_sym_use] = ACTIONS(1608), + [anon_sym_LPAREN] = ACTIONS(1608), + [anon_sym_DOLLAR] = ACTIONS(1644), + [anon_sym_error] = ACTIONS(1608), + [anon_sym_list] = ACTIONS(1608), + [anon_sym_DASH] = ACTIONS(1608), + [anon_sym_break] = ACTIONS(1608), + [anon_sym_continue] = ACTIONS(1608), + [anon_sym_for] = ACTIONS(1608), + [anon_sym_in] = ACTIONS(1608), + [anon_sym_loop] = ACTIONS(1608), + [anon_sym_make] = ACTIONS(1608), + [anon_sym_while] = ACTIONS(1608), + [anon_sym_do] = ACTIONS(1608), + [anon_sym_if] = ACTIONS(1608), + [anon_sym_else] = ACTIONS(1608), + [anon_sym_match] = ACTIONS(1608), + [anon_sym_RBRACE] = ACTIONS(1610), + [anon_sym_try] = ACTIONS(1608), + [anon_sym_catch] = ACTIONS(1608), + [anon_sym_return] = ACTIONS(1608), + [anon_sym_source] = ACTIONS(1608), + [anon_sym_source_DASHenv] = ACTIONS(1608), + [anon_sym_register] = ACTIONS(1608), + [anon_sym_hide] = ACTIONS(1608), + [anon_sym_hide_DASHenv] = ACTIONS(1608), + [anon_sym_overlay] = ACTIONS(1608), + [anon_sym_new] = ACTIONS(1608), + [anon_sym_as] = ACTIONS(1608), + [anon_sym_LPAREN2] = ACTIONS(1646), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1610), + [aux_sym__immediate_decimal_token1] = ACTIONS(1683), + [aux_sym__immediate_decimal_token3] = ACTIONS(1685), + [aux_sym__immediate_decimal_token4] = ACTIONS(1687), + [aux_sym__immediate_decimal_token5] = ACTIONS(1689), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1610), + [aux_sym__val_number_decimal_token1] = ACTIONS(1608), + [aux_sym__val_number_decimal_token2] = ACTIONS(1608), + [aux_sym__val_number_decimal_token3] = ACTIONS(1608), + [aux_sym__val_number_decimal_token4] = ACTIONS(1608), + [aux_sym__val_number_token1] = ACTIONS(1610), + [aux_sym__val_number_token2] = ACTIONS(1610), + [aux_sym__val_number_token3] = ACTIONS(1610), + [anon_sym_DQUOTE] = ACTIONS(1610), + [sym__str_single_quotes] = ACTIONS(1610), + [sym__str_back_ticks] = ACTIONS(1610), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1610), + [anon_sym_PLUS] = ACTIONS(1608), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1610), + }, + [244] = { + [sym__expr_parenthesized_immediate] = STATE(7449), + [sym_comment] = STATE(244), + [anon_sym_export] = ACTIONS(1628), + [anon_sym_alias] = ACTIONS(1628), + [anon_sym_let] = ACTIONS(1628), + [anon_sym_let_DASHenv] = ACTIONS(1628), + [anon_sym_mut] = ACTIONS(1628), + [anon_sym_const] = ACTIONS(1628), + [aux_sym_cmd_identifier_token1] = ACTIONS(1628), + [aux_sym_cmd_identifier_token2] = ACTIONS(1628), + [aux_sym_cmd_identifier_token3] = ACTIONS(1628), + [aux_sym_cmd_identifier_token4] = ACTIONS(1628), + [aux_sym_cmd_identifier_token5] = ACTIONS(1628), + [aux_sym_cmd_identifier_token6] = ACTIONS(1628), + [aux_sym_cmd_identifier_token7] = ACTIONS(1628), + [aux_sym_cmd_identifier_token8] = ACTIONS(1628), + [aux_sym_cmd_identifier_token9] = ACTIONS(1628), + [aux_sym_cmd_identifier_token10] = ACTIONS(1628), + [aux_sym_cmd_identifier_token11] = ACTIONS(1628), + [aux_sym_cmd_identifier_token12] = ACTIONS(1628), + [aux_sym_cmd_identifier_token13] = ACTIONS(1628), + [aux_sym_cmd_identifier_token14] = ACTIONS(1628), + [aux_sym_cmd_identifier_token15] = ACTIONS(1628), + [aux_sym_cmd_identifier_token16] = ACTIONS(1628), + [aux_sym_cmd_identifier_token17] = ACTIONS(1628), + [aux_sym_cmd_identifier_token18] = ACTIONS(1628), + [aux_sym_cmd_identifier_token19] = ACTIONS(1628), + [aux_sym_cmd_identifier_token20] = ACTIONS(1628), + [aux_sym_cmd_identifier_token21] = ACTIONS(1628), + [aux_sym_cmd_identifier_token22] = ACTIONS(1628), + [aux_sym_cmd_identifier_token23] = ACTIONS(1628), + [aux_sym_cmd_identifier_token24] = ACTIONS(1628), + [aux_sym_cmd_identifier_token25] = ACTIONS(1628), + [aux_sym_cmd_identifier_token26] = ACTIONS(1628), + [aux_sym_cmd_identifier_token27] = ACTIONS(1628), + [aux_sym_cmd_identifier_token28] = ACTIONS(1628), + [aux_sym_cmd_identifier_token29] = ACTIONS(1628), + [aux_sym_cmd_identifier_token30] = ACTIONS(1628), + [aux_sym_cmd_identifier_token31] = ACTIONS(1628), + [aux_sym_cmd_identifier_token32] = ACTIONS(1628), + [aux_sym_cmd_identifier_token33] = ACTIONS(1628), + [aux_sym_cmd_identifier_token34] = ACTIONS(1628), + [aux_sym_cmd_identifier_token35] = ACTIONS(1628), + [aux_sym_cmd_identifier_token36] = ACTIONS(1628), + [anon_sym_true] = ACTIONS(1640), + [anon_sym_false] = ACTIONS(1640), + [anon_sym_null] = ACTIONS(1640), + [aux_sym_cmd_identifier_token38] = ACTIONS(1628), + [aux_sym_cmd_identifier_token39] = ACTIONS(1640), + [aux_sym_cmd_identifier_token40] = ACTIONS(1640), + [anon_sym_def] = ACTIONS(1628), + [anon_sym_export_DASHenv] = ACTIONS(1628), + [anon_sym_extern] = ACTIONS(1628), + [anon_sym_module] = ACTIONS(1628), + [anon_sym_use] = ACTIONS(1628), + [anon_sym_LPAREN] = ACTIONS(1628), + [anon_sym_DOLLAR] = ACTIONS(1640), + [anon_sym_error] = ACTIONS(1628), + [anon_sym_list] = ACTIONS(1628), + [anon_sym_DASH] = ACTIONS(1628), + [anon_sym_break] = ACTIONS(1628), + [anon_sym_continue] = ACTIONS(1628), + [anon_sym_for] = ACTIONS(1628), + [anon_sym_in] = ACTIONS(1628), + [anon_sym_loop] = ACTIONS(1628), + [anon_sym_make] = ACTIONS(1628), + [anon_sym_while] = ACTIONS(1628), + [anon_sym_do] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(1628), + [anon_sym_else] = ACTIONS(1628), + [anon_sym_match] = ACTIONS(1628), + [anon_sym_RBRACE] = ACTIONS(1640), + [anon_sym_try] = ACTIONS(1628), + [anon_sym_catch] = ACTIONS(1628), + [anon_sym_return] = ACTIONS(1628), + [anon_sym_source] = ACTIONS(1628), + [anon_sym_source_DASHenv] = ACTIONS(1628), + [anon_sym_register] = ACTIONS(1628), + [anon_sym_hide] = ACTIONS(1628), + [anon_sym_hide_DASHenv] = ACTIONS(1628), + [anon_sym_overlay] = ACTIONS(1628), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_as] = ACTIONS(1628), + [anon_sym_LPAREN2] = ACTIONS(1630), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1640), + [anon_sym_DOT_DOT2] = ACTIONS(1691), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1693), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1693), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1640), + [aux_sym__val_number_decimal_token1] = ACTIONS(1628), + [aux_sym__val_number_decimal_token2] = ACTIONS(1640), + [aux_sym__val_number_decimal_token3] = ACTIONS(1640), + [aux_sym__val_number_decimal_token4] = ACTIONS(1640), + [aux_sym__val_number_token1] = ACTIONS(1640), + [aux_sym__val_number_token2] = ACTIONS(1640), + [aux_sym__val_number_token3] = ACTIONS(1640), + [sym_filesize_unit] = ACTIONS(1695), + [sym_duration_unit] = ACTIONS(1697), + [anon_sym_DQUOTE] = ACTIONS(1640), + [sym__str_single_quotes] = ACTIONS(1640), + [sym__str_back_ticks] = ACTIONS(1640), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1640), + [anon_sym_PLUS] = ACTIONS(1628), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1699), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1640), + }, + [245] = { + [sym_comment] = STATE(245), + [aux_sym__block_body_repeat1] = STATE(238), + [anon_sym_export] = ACTIONS(1656), + [anon_sym_alias] = ACTIONS(1656), + [anon_sym_let] = ACTIONS(1656), + [anon_sym_let_DASHenv] = ACTIONS(1656), + [anon_sym_mut] = ACTIONS(1656), + [anon_sym_const] = ACTIONS(1656), + [aux_sym_cmd_identifier_token1] = ACTIONS(1656), + [aux_sym_cmd_identifier_token2] = ACTIONS(1656), + [aux_sym_cmd_identifier_token3] = ACTIONS(1656), + [aux_sym_cmd_identifier_token4] = ACTIONS(1656), + [aux_sym_cmd_identifier_token5] = ACTIONS(1656), + [aux_sym_cmd_identifier_token6] = ACTIONS(1656), + [aux_sym_cmd_identifier_token7] = ACTIONS(1656), + [aux_sym_cmd_identifier_token8] = ACTIONS(1656), + [aux_sym_cmd_identifier_token9] = ACTIONS(1656), + [aux_sym_cmd_identifier_token10] = ACTIONS(1656), + [aux_sym_cmd_identifier_token11] = ACTIONS(1656), + [aux_sym_cmd_identifier_token12] = ACTIONS(1656), + [aux_sym_cmd_identifier_token13] = ACTIONS(1656), + [aux_sym_cmd_identifier_token14] = ACTIONS(1656), + [aux_sym_cmd_identifier_token15] = ACTIONS(1656), + [aux_sym_cmd_identifier_token16] = ACTIONS(1656), + [aux_sym_cmd_identifier_token17] = ACTIONS(1656), + [aux_sym_cmd_identifier_token18] = ACTIONS(1656), + [aux_sym_cmd_identifier_token19] = ACTIONS(1656), + [aux_sym_cmd_identifier_token20] = ACTIONS(1656), + [aux_sym_cmd_identifier_token21] = ACTIONS(1656), + [aux_sym_cmd_identifier_token22] = ACTIONS(1656), + [aux_sym_cmd_identifier_token23] = ACTIONS(1656), + [aux_sym_cmd_identifier_token24] = ACTIONS(1658), + [aux_sym_cmd_identifier_token25] = ACTIONS(1656), + [aux_sym_cmd_identifier_token26] = ACTIONS(1658), + [aux_sym_cmd_identifier_token27] = ACTIONS(1656), + [aux_sym_cmd_identifier_token28] = ACTIONS(1656), + [aux_sym_cmd_identifier_token29] = ACTIONS(1656), + [aux_sym_cmd_identifier_token30] = ACTIONS(1656), + [aux_sym_cmd_identifier_token31] = ACTIONS(1658), + [aux_sym_cmd_identifier_token32] = ACTIONS(1658), + [aux_sym_cmd_identifier_token33] = ACTIONS(1658), + [aux_sym_cmd_identifier_token34] = ACTIONS(1658), + [aux_sym_cmd_identifier_token35] = ACTIONS(1658), + [aux_sym_cmd_identifier_token36] = ACTIONS(1656), + [anon_sym_true] = ACTIONS(1658), + [anon_sym_false] = ACTIONS(1658), + [anon_sym_null] = ACTIONS(1658), + [aux_sym_cmd_identifier_token38] = ACTIONS(1656), + [aux_sym_cmd_identifier_token39] = ACTIONS(1658), + [aux_sym_cmd_identifier_token40] = ACTIONS(1658), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(1656), + [anon_sym_export_DASHenv] = ACTIONS(1656), + [anon_sym_extern] = ACTIONS(1656), + [anon_sym_module] = ACTIONS(1656), + [anon_sym_use] = ACTIONS(1656), + [anon_sym_LBRACK] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(1658), + [anon_sym_RPAREN] = ACTIONS(1701), + [anon_sym_DOLLAR] = ACTIONS(1656), + [anon_sym_error] = ACTIONS(1656), + [anon_sym_DASH] = ACTIONS(1656), + [anon_sym_break] = ACTIONS(1656), + [anon_sym_continue] = ACTIONS(1656), + [anon_sym_for] = ACTIONS(1656), + [anon_sym_loop] = ACTIONS(1656), + [anon_sym_while] = ACTIONS(1656), + [anon_sym_do] = ACTIONS(1656), + [anon_sym_if] = ACTIONS(1656), + [anon_sym_match] = ACTIONS(1656), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1701), + [anon_sym_DOT_DOT] = ACTIONS(1656), + [anon_sym_try] = ACTIONS(1656), + [anon_sym_return] = ACTIONS(1656), + [anon_sym_source] = ACTIONS(1656), + [anon_sym_source_DASHenv] = ACTIONS(1656), + [anon_sym_register] = ACTIONS(1656), + [anon_sym_hide] = ACTIONS(1656), + [anon_sym_hide_DASHenv] = ACTIONS(1656), + [anon_sym_overlay] = ACTIONS(1656), + [anon_sym_where] = ACTIONS(1658), + [aux_sym_expr_unary_token1] = ACTIONS(1658), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1658), + [anon_sym_DOT_DOT_LT] = ACTIONS(1658), + [aux_sym__val_number_decimal_token1] = ACTIONS(1656), + [aux_sym__val_number_decimal_token2] = ACTIONS(1658), + [aux_sym__val_number_decimal_token3] = ACTIONS(1658), + [aux_sym__val_number_decimal_token4] = ACTIONS(1658), + [aux_sym__val_number_token1] = ACTIONS(1658), + [aux_sym__val_number_token2] = ACTIONS(1658), + [aux_sym__val_number_token3] = ACTIONS(1658), + [anon_sym_0b] = ACTIONS(1656), + [anon_sym_0o] = ACTIONS(1656), + [anon_sym_0x] = ACTIONS(1656), + [sym_val_date] = ACTIONS(1658), + [anon_sym_DQUOTE] = ACTIONS(1658), + [sym__str_single_quotes] = ACTIONS(1658), + [sym__str_back_ticks] = ACTIONS(1658), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1658), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1658), + [aux_sym_env_var_token1] = ACTIONS(1656), + [anon_sym_CARET] = ACTIONS(1658), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1658), + }, + [246] = { + [sym_comment] = STATE(246), + [anon_sym_export] = ACTIONS(1528), + [anon_sym_alias] = ACTIONS(1528), + [anon_sym_let] = ACTIONS(1528), + [anon_sym_let_DASHenv] = ACTIONS(1528), + [anon_sym_mut] = ACTIONS(1528), + [anon_sym_const] = ACTIONS(1528), + [aux_sym_cmd_identifier_token1] = ACTIONS(1528), + [aux_sym_cmd_identifier_token2] = ACTIONS(1528), + [aux_sym_cmd_identifier_token3] = ACTIONS(1528), + [aux_sym_cmd_identifier_token4] = ACTIONS(1528), + [aux_sym_cmd_identifier_token5] = ACTIONS(1528), + [aux_sym_cmd_identifier_token6] = ACTIONS(1528), + [aux_sym_cmd_identifier_token7] = ACTIONS(1528), + [aux_sym_cmd_identifier_token8] = ACTIONS(1528), + [aux_sym_cmd_identifier_token9] = ACTIONS(1528), + [aux_sym_cmd_identifier_token10] = ACTIONS(1528), + [aux_sym_cmd_identifier_token11] = ACTIONS(1528), + [aux_sym_cmd_identifier_token12] = ACTIONS(1528), + [aux_sym_cmd_identifier_token13] = ACTIONS(1528), + [aux_sym_cmd_identifier_token14] = ACTIONS(1528), + [aux_sym_cmd_identifier_token15] = ACTIONS(1528), + [aux_sym_cmd_identifier_token16] = ACTIONS(1528), + [aux_sym_cmd_identifier_token17] = ACTIONS(1528), + [aux_sym_cmd_identifier_token18] = ACTIONS(1528), + [aux_sym_cmd_identifier_token19] = ACTIONS(1528), + [aux_sym_cmd_identifier_token20] = ACTIONS(1528), + [aux_sym_cmd_identifier_token21] = ACTIONS(1528), + [aux_sym_cmd_identifier_token22] = ACTIONS(1528), + [aux_sym_cmd_identifier_token23] = ACTIONS(1528), + [aux_sym_cmd_identifier_token24] = ACTIONS(1528), + [aux_sym_cmd_identifier_token25] = ACTIONS(1528), + [aux_sym_cmd_identifier_token26] = ACTIONS(1528), + [aux_sym_cmd_identifier_token27] = ACTIONS(1528), + [aux_sym_cmd_identifier_token28] = ACTIONS(1528), + [aux_sym_cmd_identifier_token29] = ACTIONS(1528), + [aux_sym_cmd_identifier_token30] = ACTIONS(1528), + [aux_sym_cmd_identifier_token31] = ACTIONS(1528), + [aux_sym_cmd_identifier_token32] = ACTIONS(1528), + [aux_sym_cmd_identifier_token33] = ACTIONS(1528), + [aux_sym_cmd_identifier_token34] = ACTIONS(1528), + [aux_sym_cmd_identifier_token35] = ACTIONS(1528), + [aux_sym_cmd_identifier_token36] = ACTIONS(1528), + [anon_sym_true] = ACTIONS(1528), + [anon_sym_false] = ACTIONS(1528), + [anon_sym_null] = ACTIONS(1528), + [aux_sym_cmd_identifier_token38] = ACTIONS(1528), + [aux_sym_cmd_identifier_token39] = ACTIONS(1528), + [aux_sym_cmd_identifier_token40] = ACTIONS(1528), + [anon_sym_def] = ACTIONS(1528), + [anon_sym_export_DASHenv] = ACTIONS(1528), + [anon_sym_extern] = ACTIONS(1528), + [anon_sym_module] = ACTIONS(1528), + [anon_sym_use] = ACTIONS(1528), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_DOLLAR] = ACTIONS(1528), + [anon_sym_error] = ACTIONS(1528), + [anon_sym_list] = ACTIONS(1528), + [anon_sym_DASH] = ACTIONS(1528), + [anon_sym_break] = ACTIONS(1528), + [anon_sym_continue] = ACTIONS(1528), + [anon_sym_for] = ACTIONS(1528), + [anon_sym_in] = ACTIONS(1528), + [anon_sym_loop] = ACTIONS(1528), + [anon_sym_make] = ACTIONS(1528), + [anon_sym_while] = ACTIONS(1528), + [anon_sym_do] = ACTIONS(1528), + [anon_sym_if] = ACTIONS(1528), + [anon_sym_else] = ACTIONS(1528), + [anon_sym_match] = ACTIONS(1528), + [anon_sym_RBRACE] = ACTIONS(1528), + [anon_sym_try] = ACTIONS(1528), + [anon_sym_catch] = ACTIONS(1528), + [anon_sym_return] = ACTIONS(1528), + [anon_sym_source] = ACTIONS(1528), + [anon_sym_source_DASHenv] = ACTIONS(1528), + [anon_sym_register] = ACTIONS(1528), + [anon_sym_hide] = ACTIONS(1528), + [anon_sym_hide_DASHenv] = ACTIONS(1528), + [anon_sym_overlay] = ACTIONS(1528), + [anon_sym_new] = ACTIONS(1528), + [anon_sym_as] = ACTIONS(1528), + [anon_sym_LPAREN2] = ACTIONS(1530), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1528), + [anon_sym_DOT_DOT2] = ACTIONS(1528), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1530), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1530), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1528), + [aux_sym__val_number_decimal_token1] = ACTIONS(1528), + [aux_sym__val_number_decimal_token2] = ACTIONS(1528), + [aux_sym__val_number_decimal_token3] = ACTIONS(1528), + [aux_sym__val_number_decimal_token4] = ACTIONS(1528), + [aux_sym__val_number_token1] = ACTIONS(1528), + [aux_sym__val_number_token2] = ACTIONS(1528), + [aux_sym__val_number_token3] = ACTIONS(1528), + [sym_filesize_unit] = ACTIONS(1528), + [sym_duration_unit] = ACTIONS(1528), + [anon_sym_DQUOTE] = ACTIONS(1528), + [sym__str_single_quotes] = ACTIONS(1528), + [sym__str_back_ticks] = ACTIONS(1528), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1528), + [sym__entry_separator] = ACTIONS(1530), + [anon_sym_PLUS] = ACTIONS(1528), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1528), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1530), + }, + [247] = { + [sym_comment] = STATE(247), + [anon_sym_export] = ACTIONS(1703), + [anon_sym_alias] = ACTIONS(1703), + [anon_sym_let] = ACTIONS(1703), + [anon_sym_let_DASHenv] = ACTIONS(1703), + [anon_sym_mut] = ACTIONS(1703), + [anon_sym_const] = ACTIONS(1703), + [aux_sym_cmd_identifier_token1] = ACTIONS(1703), + [aux_sym_cmd_identifier_token2] = ACTIONS(1703), + [aux_sym_cmd_identifier_token3] = ACTIONS(1703), + [aux_sym_cmd_identifier_token4] = ACTIONS(1703), + [aux_sym_cmd_identifier_token5] = ACTIONS(1703), + [aux_sym_cmd_identifier_token6] = ACTIONS(1703), + [aux_sym_cmd_identifier_token7] = ACTIONS(1703), + [aux_sym_cmd_identifier_token8] = ACTIONS(1703), + [aux_sym_cmd_identifier_token9] = ACTIONS(1703), + [aux_sym_cmd_identifier_token10] = ACTIONS(1703), + [aux_sym_cmd_identifier_token11] = ACTIONS(1703), + [aux_sym_cmd_identifier_token12] = ACTIONS(1703), + [aux_sym_cmd_identifier_token13] = ACTIONS(1703), + [aux_sym_cmd_identifier_token14] = ACTIONS(1703), + [aux_sym_cmd_identifier_token15] = ACTIONS(1703), + [aux_sym_cmd_identifier_token16] = ACTIONS(1703), + [aux_sym_cmd_identifier_token17] = ACTIONS(1703), + [aux_sym_cmd_identifier_token18] = ACTIONS(1703), + [aux_sym_cmd_identifier_token19] = ACTIONS(1703), + [aux_sym_cmd_identifier_token20] = ACTIONS(1703), + [aux_sym_cmd_identifier_token21] = ACTIONS(1703), + [aux_sym_cmd_identifier_token22] = ACTIONS(1703), + [aux_sym_cmd_identifier_token23] = ACTIONS(1703), + [aux_sym_cmd_identifier_token24] = ACTIONS(1703), + [aux_sym_cmd_identifier_token25] = ACTIONS(1703), + [aux_sym_cmd_identifier_token26] = ACTIONS(1703), + [aux_sym_cmd_identifier_token27] = ACTIONS(1703), + [aux_sym_cmd_identifier_token28] = ACTIONS(1703), + [aux_sym_cmd_identifier_token29] = ACTIONS(1703), + [aux_sym_cmd_identifier_token30] = ACTIONS(1703), + [aux_sym_cmd_identifier_token31] = ACTIONS(1703), + [aux_sym_cmd_identifier_token32] = ACTIONS(1703), + [aux_sym_cmd_identifier_token33] = ACTIONS(1703), + [aux_sym_cmd_identifier_token34] = ACTIONS(1703), + [aux_sym_cmd_identifier_token35] = ACTIONS(1703), + [aux_sym_cmd_identifier_token36] = ACTIONS(1703), + [anon_sym_true] = ACTIONS(1703), + [anon_sym_false] = ACTIONS(1703), + [anon_sym_null] = ACTIONS(1703), + [aux_sym_cmd_identifier_token38] = ACTIONS(1703), + [aux_sym_cmd_identifier_token39] = ACTIONS(1703), + [aux_sym_cmd_identifier_token40] = ACTIONS(1703), + [anon_sym_def] = ACTIONS(1703), + [anon_sym_export_DASHenv] = ACTIONS(1703), + [anon_sym_extern] = ACTIONS(1703), + [anon_sym_module] = ACTIONS(1703), + [anon_sym_use] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1703), + [anon_sym_error] = ACTIONS(1703), + [anon_sym_list] = ACTIONS(1703), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_break] = ACTIONS(1703), + [anon_sym_continue] = ACTIONS(1703), + [anon_sym_for] = ACTIONS(1703), + [anon_sym_in] = ACTIONS(1703), + [anon_sym_loop] = ACTIONS(1703), + [anon_sym_make] = ACTIONS(1703), + [anon_sym_while] = ACTIONS(1703), + [anon_sym_do] = ACTIONS(1703), + [anon_sym_if] = ACTIONS(1703), + [anon_sym_else] = ACTIONS(1703), + [anon_sym_match] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1703), + [anon_sym_try] = ACTIONS(1703), + [anon_sym_catch] = ACTIONS(1703), + [anon_sym_return] = ACTIONS(1703), + [anon_sym_source] = ACTIONS(1703), + [anon_sym_source_DASHenv] = ACTIONS(1703), + [anon_sym_register] = ACTIONS(1703), + [anon_sym_hide] = ACTIONS(1703), + [anon_sym_hide_DASHenv] = ACTIONS(1703), + [anon_sym_overlay] = ACTIONS(1703), + [anon_sym_new] = ACTIONS(1703), + [anon_sym_as] = ACTIONS(1703), + [anon_sym_LPAREN2] = ACTIONS(1705), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1703), + [anon_sym_DOT_DOT2] = ACTIONS(1703), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1705), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1705), + [aux_sym__immediate_decimal_token1] = ACTIONS(1707), + [aux_sym__immediate_decimal_token2] = ACTIONS(1709), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1703), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1703), + [sym__entry_separator] = ACTIONS(1705), + [anon_sym_PLUS] = ACTIONS(1703), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1705), }, [248] = { [sym_comment] = STATE(248), - [aux_sym__block_body_repeat1] = STATE(234), - [anon_sym_export] = ACTIONS(1647), - [anon_sym_alias] = ACTIONS(1647), - [anon_sym_let] = ACTIONS(1647), - [anon_sym_let_DASHenv] = ACTIONS(1647), - [anon_sym_mut] = ACTIONS(1647), - [anon_sym_const] = ACTIONS(1647), - [aux_sym_cmd_identifier_token1] = ACTIONS(1647), - [aux_sym_cmd_identifier_token2] = ACTIONS(1647), - [aux_sym_cmd_identifier_token3] = ACTIONS(1647), - [aux_sym_cmd_identifier_token4] = ACTIONS(1647), - [aux_sym_cmd_identifier_token5] = ACTIONS(1647), - [aux_sym_cmd_identifier_token6] = ACTIONS(1647), - [aux_sym_cmd_identifier_token7] = ACTIONS(1647), - [aux_sym_cmd_identifier_token8] = ACTIONS(1647), - [aux_sym_cmd_identifier_token9] = ACTIONS(1647), - [aux_sym_cmd_identifier_token10] = ACTIONS(1647), - [aux_sym_cmd_identifier_token11] = ACTIONS(1647), - [aux_sym_cmd_identifier_token12] = ACTIONS(1647), - [aux_sym_cmd_identifier_token13] = ACTIONS(1647), - [aux_sym_cmd_identifier_token14] = ACTIONS(1647), - [aux_sym_cmd_identifier_token15] = ACTIONS(1647), - [aux_sym_cmd_identifier_token16] = ACTIONS(1647), - [aux_sym_cmd_identifier_token17] = ACTIONS(1647), - [aux_sym_cmd_identifier_token18] = ACTIONS(1647), - [aux_sym_cmd_identifier_token19] = ACTIONS(1647), - [aux_sym_cmd_identifier_token20] = ACTIONS(1647), - [aux_sym_cmd_identifier_token21] = ACTIONS(1647), - [aux_sym_cmd_identifier_token22] = ACTIONS(1647), - [aux_sym_cmd_identifier_token23] = ACTIONS(1647), - [aux_sym_cmd_identifier_token24] = ACTIONS(1649), - [aux_sym_cmd_identifier_token25] = ACTIONS(1647), - [aux_sym_cmd_identifier_token26] = ACTIONS(1649), - [aux_sym_cmd_identifier_token27] = ACTIONS(1647), - [aux_sym_cmd_identifier_token28] = ACTIONS(1647), - [aux_sym_cmd_identifier_token29] = ACTIONS(1647), - [aux_sym_cmd_identifier_token30] = ACTIONS(1647), - [aux_sym_cmd_identifier_token31] = ACTIONS(1649), - [aux_sym_cmd_identifier_token32] = ACTIONS(1649), - [aux_sym_cmd_identifier_token33] = ACTIONS(1649), - [aux_sym_cmd_identifier_token34] = ACTIONS(1649), - [aux_sym_cmd_identifier_token35] = ACTIONS(1649), - [aux_sym_cmd_identifier_token36] = ACTIONS(1647), - [anon_sym_true] = ACTIONS(1649), - [anon_sym_false] = ACTIONS(1649), - [anon_sym_null] = ACTIONS(1649), - [aux_sym_cmd_identifier_token38] = ACTIONS(1647), - [aux_sym_cmd_identifier_token39] = ACTIONS(1649), - [aux_sym_cmd_identifier_token40] = ACTIONS(1649), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(1647), - [anon_sym_export_DASHenv] = ACTIONS(1647), - [anon_sym_extern] = ACTIONS(1647), - [anon_sym_module] = ACTIONS(1647), - [anon_sym_use] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_LPAREN] = ACTIONS(1649), - [anon_sym_RPAREN] = ACTIONS(1689), - [anon_sym_DOLLAR] = ACTIONS(1647), - [anon_sym_error] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_break] = ACTIONS(1647), - [anon_sym_continue] = ACTIONS(1647), - [anon_sym_for] = ACTIONS(1647), - [anon_sym_loop] = ACTIONS(1647), - [anon_sym_while] = ACTIONS(1647), - [anon_sym_do] = ACTIONS(1647), - [anon_sym_if] = ACTIONS(1647), - [anon_sym_match] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(1649), - [anon_sym_RBRACE] = ACTIONS(1689), - [anon_sym_DOT_DOT] = ACTIONS(1647), - [anon_sym_try] = ACTIONS(1647), - [anon_sym_return] = ACTIONS(1647), - [anon_sym_source] = ACTIONS(1647), - [anon_sym_source_DASHenv] = ACTIONS(1647), - [anon_sym_register] = ACTIONS(1647), - [anon_sym_hide] = ACTIONS(1647), - [anon_sym_hide_DASHenv] = ACTIONS(1647), - [anon_sym_overlay] = ACTIONS(1647), - [anon_sym_where] = ACTIONS(1649), - [aux_sym_expr_unary_token1] = ACTIONS(1649), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1649), - [anon_sym_DOT_DOT_LT] = ACTIONS(1649), - [aux_sym__val_number_decimal_token1] = ACTIONS(1647), - [aux_sym__val_number_decimal_token2] = ACTIONS(1649), - [aux_sym__val_number_decimal_token3] = ACTIONS(1649), - [aux_sym__val_number_decimal_token4] = ACTIONS(1649), - [aux_sym__val_number_token1] = ACTIONS(1649), - [aux_sym__val_number_token2] = ACTIONS(1649), - [aux_sym__val_number_token3] = ACTIONS(1649), - [anon_sym_0b] = ACTIONS(1647), - [anon_sym_0o] = ACTIONS(1647), - [anon_sym_0x] = ACTIONS(1647), - [sym_val_date] = ACTIONS(1649), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym__str_single_quotes] = ACTIONS(1649), - [sym__str_back_ticks] = ACTIONS(1649), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1649), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1649), - [aux_sym_env_var_token1] = ACTIONS(1647), - [anon_sym_CARET] = ACTIONS(1649), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(1596), + [anon_sym_alias] = ACTIONS(1596), + [anon_sym_let] = ACTIONS(1596), + [anon_sym_let_DASHenv] = ACTIONS(1596), + [anon_sym_mut] = ACTIONS(1596), + [anon_sym_const] = ACTIONS(1596), + [aux_sym_cmd_identifier_token1] = ACTIONS(1596), + [aux_sym_cmd_identifier_token2] = ACTIONS(1596), + [aux_sym_cmd_identifier_token3] = ACTIONS(1596), + [aux_sym_cmd_identifier_token4] = ACTIONS(1596), + [aux_sym_cmd_identifier_token5] = ACTIONS(1596), + [aux_sym_cmd_identifier_token6] = ACTIONS(1596), + [aux_sym_cmd_identifier_token7] = ACTIONS(1596), + [aux_sym_cmd_identifier_token8] = ACTIONS(1596), + [aux_sym_cmd_identifier_token9] = ACTIONS(1596), + [aux_sym_cmd_identifier_token10] = ACTIONS(1596), + [aux_sym_cmd_identifier_token11] = ACTIONS(1596), + [aux_sym_cmd_identifier_token12] = ACTIONS(1596), + [aux_sym_cmd_identifier_token13] = ACTIONS(1596), + [aux_sym_cmd_identifier_token14] = ACTIONS(1596), + [aux_sym_cmd_identifier_token15] = ACTIONS(1596), + [aux_sym_cmd_identifier_token16] = ACTIONS(1596), + [aux_sym_cmd_identifier_token17] = ACTIONS(1596), + [aux_sym_cmd_identifier_token18] = ACTIONS(1596), + [aux_sym_cmd_identifier_token19] = ACTIONS(1596), + [aux_sym_cmd_identifier_token20] = ACTIONS(1596), + [aux_sym_cmd_identifier_token21] = ACTIONS(1596), + [aux_sym_cmd_identifier_token22] = ACTIONS(1596), + [aux_sym_cmd_identifier_token23] = ACTIONS(1596), + [aux_sym_cmd_identifier_token24] = ACTIONS(1596), + [aux_sym_cmd_identifier_token25] = ACTIONS(1596), + [aux_sym_cmd_identifier_token26] = ACTIONS(1596), + [aux_sym_cmd_identifier_token27] = ACTIONS(1596), + [aux_sym_cmd_identifier_token28] = ACTIONS(1596), + [aux_sym_cmd_identifier_token29] = ACTIONS(1596), + [aux_sym_cmd_identifier_token30] = ACTIONS(1596), + [aux_sym_cmd_identifier_token31] = ACTIONS(1596), + [aux_sym_cmd_identifier_token32] = ACTIONS(1596), + [aux_sym_cmd_identifier_token33] = ACTIONS(1596), + [aux_sym_cmd_identifier_token34] = ACTIONS(1596), + [aux_sym_cmd_identifier_token35] = ACTIONS(1596), + [aux_sym_cmd_identifier_token36] = ACTIONS(1596), + [anon_sym_true] = ACTIONS(1596), + [anon_sym_false] = ACTIONS(1596), + [anon_sym_null] = ACTIONS(1596), + [aux_sym_cmd_identifier_token38] = ACTIONS(1596), + [aux_sym_cmd_identifier_token39] = ACTIONS(1596), + [aux_sym_cmd_identifier_token40] = ACTIONS(1596), + [anon_sym_def] = ACTIONS(1596), + [anon_sym_export_DASHenv] = ACTIONS(1596), + [anon_sym_extern] = ACTIONS(1596), + [anon_sym_module] = ACTIONS(1596), + [anon_sym_use] = ACTIONS(1596), + [anon_sym_LPAREN] = ACTIONS(1596), + [anon_sym_DOLLAR] = ACTIONS(1596), + [anon_sym_error] = ACTIONS(1596), + [anon_sym_list] = ACTIONS(1596), + [anon_sym_DASH] = ACTIONS(1596), + [anon_sym_break] = ACTIONS(1596), + [anon_sym_continue] = ACTIONS(1596), + [anon_sym_for] = ACTIONS(1596), + [anon_sym_in] = ACTIONS(1596), + [anon_sym_loop] = ACTIONS(1596), + [anon_sym_make] = ACTIONS(1596), + [anon_sym_while] = ACTIONS(1596), + [anon_sym_do] = ACTIONS(1596), + [anon_sym_if] = ACTIONS(1596), + [anon_sym_else] = ACTIONS(1596), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_RBRACE] = ACTIONS(1596), + [anon_sym_try] = ACTIONS(1596), + [anon_sym_catch] = ACTIONS(1596), + [anon_sym_return] = ACTIONS(1596), + [anon_sym_source] = ACTIONS(1596), + [anon_sym_source_DASHenv] = ACTIONS(1596), + [anon_sym_register] = ACTIONS(1596), + [anon_sym_hide] = ACTIONS(1596), + [anon_sym_hide_DASHenv] = ACTIONS(1596), + [anon_sym_overlay] = ACTIONS(1596), + [anon_sym_new] = ACTIONS(1596), + [anon_sym_as] = ACTIONS(1596), + [anon_sym_LPAREN2] = ACTIONS(1598), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1596), + [anon_sym_DOT_DOT2] = ACTIONS(1596), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1598), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1598), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1596), + [aux_sym__val_number_decimal_token1] = ACTIONS(1596), + [aux_sym__val_number_decimal_token2] = ACTIONS(1596), + [aux_sym__val_number_decimal_token3] = ACTIONS(1596), + [aux_sym__val_number_decimal_token4] = ACTIONS(1596), + [aux_sym__val_number_token1] = ACTIONS(1596), + [aux_sym__val_number_token2] = ACTIONS(1596), + [aux_sym__val_number_token3] = ACTIONS(1596), + [sym_filesize_unit] = ACTIONS(1596), + [sym_duration_unit] = ACTIONS(1596), + [anon_sym_DQUOTE] = ACTIONS(1596), + [sym__str_single_quotes] = ACTIONS(1596), + [sym__str_back_ticks] = ACTIONS(1596), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1596), + [sym__entry_separator] = ACTIONS(1598), + [anon_sym_PLUS] = ACTIONS(1596), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1596), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1598), }, [249] = { - [sym__expr_parenthesized_immediate] = STATE(638), - [sym__immediate_decimal] = STATE(639), - [sym_val_variable] = STATE(638), [sym_comment] = STATE(249), - [anon_sym_export] = ACTIONS(1602), - [anon_sym_alias] = ACTIONS(1602), - [anon_sym_let] = ACTIONS(1602), - [anon_sym_let_DASHenv] = ACTIONS(1602), - [anon_sym_mut] = ACTIONS(1602), - [anon_sym_const] = ACTIONS(1602), - [aux_sym_cmd_identifier_token1] = ACTIONS(1602), - [aux_sym_cmd_identifier_token2] = ACTIONS(1602), - [aux_sym_cmd_identifier_token3] = ACTIONS(1602), - [aux_sym_cmd_identifier_token4] = ACTIONS(1602), - [aux_sym_cmd_identifier_token5] = ACTIONS(1602), - [aux_sym_cmd_identifier_token6] = ACTIONS(1602), - [aux_sym_cmd_identifier_token7] = ACTIONS(1602), - [aux_sym_cmd_identifier_token8] = ACTIONS(1602), - [aux_sym_cmd_identifier_token9] = ACTIONS(1602), - [aux_sym_cmd_identifier_token10] = ACTIONS(1602), - [aux_sym_cmd_identifier_token11] = ACTIONS(1602), - [aux_sym_cmd_identifier_token12] = ACTIONS(1602), - [aux_sym_cmd_identifier_token13] = ACTIONS(1602), - [aux_sym_cmd_identifier_token14] = ACTIONS(1602), - [aux_sym_cmd_identifier_token15] = ACTIONS(1602), - [aux_sym_cmd_identifier_token16] = ACTIONS(1602), - [aux_sym_cmd_identifier_token17] = ACTIONS(1602), - [aux_sym_cmd_identifier_token18] = ACTIONS(1602), - [aux_sym_cmd_identifier_token19] = ACTIONS(1602), - [aux_sym_cmd_identifier_token20] = ACTIONS(1602), - [aux_sym_cmd_identifier_token21] = ACTIONS(1602), - [aux_sym_cmd_identifier_token22] = ACTIONS(1602), - [aux_sym_cmd_identifier_token23] = ACTIONS(1602), - [aux_sym_cmd_identifier_token24] = ACTIONS(1602), - [aux_sym_cmd_identifier_token25] = ACTIONS(1602), - [aux_sym_cmd_identifier_token26] = ACTIONS(1602), - [aux_sym_cmd_identifier_token27] = ACTIONS(1602), - [aux_sym_cmd_identifier_token28] = ACTIONS(1602), - [aux_sym_cmd_identifier_token29] = ACTIONS(1602), - [aux_sym_cmd_identifier_token30] = ACTIONS(1602), - [aux_sym_cmd_identifier_token31] = ACTIONS(1602), - [aux_sym_cmd_identifier_token32] = ACTIONS(1602), - [aux_sym_cmd_identifier_token33] = ACTIONS(1602), - [aux_sym_cmd_identifier_token34] = ACTIONS(1602), - [aux_sym_cmd_identifier_token35] = ACTIONS(1602), - [aux_sym_cmd_identifier_token36] = ACTIONS(1602), - [anon_sym_true] = ACTIONS(1604), - [anon_sym_false] = ACTIONS(1604), - [anon_sym_null] = ACTIONS(1604), - [aux_sym_cmd_identifier_token38] = ACTIONS(1602), - [aux_sym_cmd_identifier_token39] = ACTIONS(1604), - [aux_sym_cmd_identifier_token40] = ACTIONS(1604), - [anon_sym_def] = ACTIONS(1602), - [anon_sym_export_DASHenv] = ACTIONS(1602), - [anon_sym_extern] = ACTIONS(1602), - [anon_sym_module] = ACTIONS(1602), - [anon_sym_use] = ACTIONS(1602), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_DOLLAR] = ACTIONS(1590), - [anon_sym_error] = ACTIONS(1602), - [anon_sym_list] = ACTIONS(1602), - [anon_sym_DASH] = ACTIONS(1602), - [anon_sym_break] = ACTIONS(1602), - [anon_sym_continue] = ACTIONS(1602), - [anon_sym_for] = ACTIONS(1602), - [anon_sym_in] = ACTIONS(1602), - [anon_sym_loop] = ACTIONS(1602), - [anon_sym_make] = ACTIONS(1602), - [anon_sym_while] = ACTIONS(1602), - [anon_sym_do] = ACTIONS(1602), - [anon_sym_if] = ACTIONS(1602), - [anon_sym_else] = ACTIONS(1602), - [anon_sym_match] = ACTIONS(1602), - [anon_sym_RBRACE] = ACTIONS(1604), - [anon_sym_try] = ACTIONS(1602), - [anon_sym_catch] = ACTIONS(1602), - [anon_sym_return] = ACTIONS(1602), - [anon_sym_source] = ACTIONS(1602), - [anon_sym_source_DASHenv] = ACTIONS(1602), - [anon_sym_register] = ACTIONS(1602), - [anon_sym_hide] = ACTIONS(1602), - [anon_sym_hide_DASHenv] = ACTIONS(1602), - [anon_sym_overlay] = ACTIONS(1602), - [anon_sym_new] = ACTIONS(1602), - [anon_sym_as] = ACTIONS(1602), - [anon_sym_LPAREN2] = ACTIONS(1592), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1604), - [aux_sym__immediate_decimal_token1] = ACTIONS(1624), - [aux_sym__immediate_decimal_token3] = ACTIONS(1626), - [aux_sym__immediate_decimal_token4] = ACTIONS(1628), - [aux_sym__immediate_decimal_token5] = ACTIONS(1630), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1604), - [aux_sym__val_number_decimal_token1] = ACTIONS(1602), - [aux_sym__val_number_decimal_token2] = ACTIONS(1602), - [aux_sym__val_number_decimal_token3] = ACTIONS(1602), - [aux_sym__val_number_decimal_token4] = ACTIONS(1602), - [aux_sym__val_number_token1] = ACTIONS(1604), - [aux_sym__val_number_token2] = ACTIONS(1604), - [aux_sym__val_number_token3] = ACTIONS(1604), - [anon_sym_DQUOTE] = ACTIONS(1604), - [sym__str_single_quotes] = ACTIONS(1604), - [sym__str_back_ticks] = ACTIONS(1604), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1604), - [anon_sym_PLUS] = ACTIONS(1602), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(1711), + [anon_sym_alias] = ACTIONS(1711), + [anon_sym_let] = ACTIONS(1711), + [anon_sym_let_DASHenv] = ACTIONS(1711), + [anon_sym_mut] = ACTIONS(1711), + [anon_sym_const] = ACTIONS(1711), + [aux_sym_cmd_identifier_token1] = ACTIONS(1711), + [aux_sym_cmd_identifier_token2] = ACTIONS(1711), + [aux_sym_cmd_identifier_token3] = ACTIONS(1711), + [aux_sym_cmd_identifier_token4] = ACTIONS(1711), + [aux_sym_cmd_identifier_token5] = ACTIONS(1711), + [aux_sym_cmd_identifier_token6] = ACTIONS(1711), + [aux_sym_cmd_identifier_token7] = ACTIONS(1711), + [aux_sym_cmd_identifier_token8] = ACTIONS(1711), + [aux_sym_cmd_identifier_token9] = ACTIONS(1711), + [aux_sym_cmd_identifier_token10] = ACTIONS(1711), + [aux_sym_cmd_identifier_token11] = ACTIONS(1711), + [aux_sym_cmd_identifier_token12] = ACTIONS(1711), + [aux_sym_cmd_identifier_token13] = ACTIONS(1711), + [aux_sym_cmd_identifier_token14] = ACTIONS(1711), + [aux_sym_cmd_identifier_token15] = ACTIONS(1711), + [aux_sym_cmd_identifier_token16] = ACTIONS(1711), + [aux_sym_cmd_identifier_token17] = ACTIONS(1711), + [aux_sym_cmd_identifier_token18] = ACTIONS(1711), + [aux_sym_cmd_identifier_token19] = ACTIONS(1711), + [aux_sym_cmd_identifier_token20] = ACTIONS(1711), + [aux_sym_cmd_identifier_token21] = ACTIONS(1711), + [aux_sym_cmd_identifier_token22] = ACTIONS(1711), + [aux_sym_cmd_identifier_token23] = ACTIONS(1711), + [aux_sym_cmd_identifier_token24] = ACTIONS(1711), + [aux_sym_cmd_identifier_token25] = ACTIONS(1711), + [aux_sym_cmd_identifier_token26] = ACTIONS(1711), + [aux_sym_cmd_identifier_token27] = ACTIONS(1711), + [aux_sym_cmd_identifier_token28] = ACTIONS(1711), + [aux_sym_cmd_identifier_token29] = ACTIONS(1711), + [aux_sym_cmd_identifier_token30] = ACTIONS(1711), + [aux_sym_cmd_identifier_token31] = ACTIONS(1711), + [aux_sym_cmd_identifier_token32] = ACTIONS(1711), + [aux_sym_cmd_identifier_token33] = ACTIONS(1711), + [aux_sym_cmd_identifier_token34] = ACTIONS(1711), + [aux_sym_cmd_identifier_token35] = ACTIONS(1711), + [aux_sym_cmd_identifier_token36] = ACTIONS(1711), + [anon_sym_true] = ACTIONS(1711), + [anon_sym_false] = ACTIONS(1711), + [anon_sym_null] = ACTIONS(1711), + [aux_sym_cmd_identifier_token38] = ACTIONS(1711), + [aux_sym_cmd_identifier_token39] = ACTIONS(1711), + [aux_sym_cmd_identifier_token40] = ACTIONS(1711), + [anon_sym_def] = ACTIONS(1711), + [anon_sym_export_DASHenv] = ACTIONS(1711), + [anon_sym_extern] = ACTIONS(1711), + [anon_sym_module] = ACTIONS(1711), + [anon_sym_use] = ACTIONS(1711), + [anon_sym_LPAREN] = ACTIONS(1711), + [anon_sym_DOLLAR] = ACTIONS(1711), + [anon_sym_error] = ACTIONS(1711), + [anon_sym_list] = ACTIONS(1711), + [anon_sym_DASH] = ACTIONS(1711), + [anon_sym_break] = ACTIONS(1711), + [anon_sym_continue] = ACTIONS(1711), + [anon_sym_for] = ACTIONS(1711), + [anon_sym_in] = ACTIONS(1711), + [anon_sym_loop] = ACTIONS(1711), + [anon_sym_make] = ACTIONS(1711), + [anon_sym_while] = ACTIONS(1711), + [anon_sym_do] = ACTIONS(1711), + [anon_sym_if] = ACTIONS(1711), + [anon_sym_else] = ACTIONS(1711), + [anon_sym_match] = ACTIONS(1711), + [anon_sym_RBRACE] = ACTIONS(1711), + [anon_sym_try] = ACTIONS(1711), + [anon_sym_catch] = ACTIONS(1711), + [anon_sym_return] = ACTIONS(1711), + [anon_sym_source] = ACTIONS(1711), + [anon_sym_source_DASHenv] = ACTIONS(1711), + [anon_sym_register] = ACTIONS(1711), + [anon_sym_hide] = ACTIONS(1711), + [anon_sym_hide_DASHenv] = ACTIONS(1711), + [anon_sym_overlay] = ACTIONS(1711), + [anon_sym_new] = ACTIONS(1711), + [anon_sym_as] = ACTIONS(1711), + [anon_sym_LPAREN2] = ACTIONS(1713), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1711), + [anon_sym_DOT_DOT2] = ACTIONS(1711), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1711), + [aux_sym__val_number_decimal_token1] = ACTIONS(1711), + [aux_sym__val_number_decimal_token2] = ACTIONS(1711), + [aux_sym__val_number_decimal_token3] = ACTIONS(1711), + [aux_sym__val_number_decimal_token4] = ACTIONS(1711), + [aux_sym__val_number_token1] = ACTIONS(1711), + [aux_sym__val_number_token2] = ACTIONS(1711), + [aux_sym__val_number_token3] = ACTIONS(1711), + [sym_filesize_unit] = ACTIONS(1711), + [sym_duration_unit] = ACTIONS(1711), + [anon_sym_DQUOTE] = ACTIONS(1711), + [sym__str_single_quotes] = ACTIONS(1711), + [sym__str_back_ticks] = ACTIONS(1711), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1711), + [sym__entry_separator] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1711), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1711), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1713), }, [250] = { [sym_comment] = STATE(250), - [ts_builtin_sym_end] = ACTIONS(1309), - [anon_sym_POUND_BANG] = ACTIONS(1307), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_alias] = ACTIONS(1691), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_let_DASHenv] = ACTIONS(1691), - [anon_sym_mut] = ACTIONS(1691), - [anon_sym_const] = ACTIONS(1691), - [aux_sym_cmd_identifier_token1] = ACTIONS(1691), - [aux_sym_cmd_identifier_token2] = ACTIONS(1691), - [aux_sym_cmd_identifier_token3] = ACTIONS(1691), - [aux_sym_cmd_identifier_token4] = ACTIONS(1691), - [aux_sym_cmd_identifier_token5] = ACTIONS(1691), - [aux_sym_cmd_identifier_token6] = ACTIONS(1691), - [aux_sym_cmd_identifier_token7] = ACTIONS(1691), - [aux_sym_cmd_identifier_token8] = ACTIONS(1691), - [aux_sym_cmd_identifier_token9] = ACTIONS(1691), - [aux_sym_cmd_identifier_token10] = ACTIONS(1691), - [aux_sym_cmd_identifier_token11] = ACTIONS(1691), - [aux_sym_cmd_identifier_token12] = ACTIONS(1691), - [aux_sym_cmd_identifier_token13] = ACTIONS(1691), - [aux_sym_cmd_identifier_token14] = ACTIONS(1691), - [aux_sym_cmd_identifier_token15] = ACTIONS(1691), - [aux_sym_cmd_identifier_token16] = ACTIONS(1691), - [aux_sym_cmd_identifier_token17] = ACTIONS(1691), - [aux_sym_cmd_identifier_token18] = ACTIONS(1691), - [aux_sym_cmd_identifier_token19] = ACTIONS(1691), - [aux_sym_cmd_identifier_token20] = ACTIONS(1691), - [aux_sym_cmd_identifier_token21] = ACTIONS(1691), - [aux_sym_cmd_identifier_token22] = ACTIONS(1691), - [aux_sym_cmd_identifier_token23] = ACTIONS(1691), - [aux_sym_cmd_identifier_token24] = ACTIONS(1309), - [aux_sym_cmd_identifier_token25] = ACTIONS(1691), - [aux_sym_cmd_identifier_token26] = ACTIONS(1309), - [aux_sym_cmd_identifier_token27] = ACTIONS(1691), - [aux_sym_cmd_identifier_token28] = ACTIONS(1691), - [aux_sym_cmd_identifier_token29] = ACTIONS(1691), - [aux_sym_cmd_identifier_token30] = ACTIONS(1691), - [aux_sym_cmd_identifier_token31] = ACTIONS(1309), - [aux_sym_cmd_identifier_token32] = ACTIONS(1309), - [aux_sym_cmd_identifier_token33] = ACTIONS(1309), - [aux_sym_cmd_identifier_token34] = ACTIONS(1309), - [aux_sym_cmd_identifier_token35] = ACTIONS(1309), - [aux_sym_cmd_identifier_token36] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1309), - [anon_sym_false] = ACTIONS(1309), - [anon_sym_null] = ACTIONS(1309), - [aux_sym_cmd_identifier_token38] = ACTIONS(1691), - [aux_sym_cmd_identifier_token39] = ACTIONS(1309), - [aux_sym_cmd_identifier_token40] = ACTIONS(1309), - [sym__newline] = ACTIONS(1304), - [anon_sym_SEMI] = ACTIONS(1309), - [anon_sym_def] = ACTIONS(1691), - [anon_sym_export_DASHenv] = ACTIONS(1691), - [anon_sym_extern] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_use] = ACTIONS(1691), - [anon_sym_LBRACK] = ACTIONS(1309), - [anon_sym_LPAREN] = ACTIONS(1309), - [anon_sym_DOLLAR] = ACTIONS(1691), - [anon_sym_error] = ACTIONS(1691), - [anon_sym_DASH] = ACTIONS(1691), - [anon_sym_break] = ACTIONS(1691), - [anon_sym_continue] = ACTIONS(1691), - [anon_sym_for] = ACTIONS(1691), - [anon_sym_loop] = ACTIONS(1691), - [anon_sym_while] = ACTIONS(1691), - [anon_sym_do] = ACTIONS(1691), - [anon_sym_if] = ACTIONS(1691), - [anon_sym_match] = ACTIONS(1691), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_DOT_DOT] = ACTIONS(1691), - [anon_sym_try] = ACTIONS(1691), - [anon_sym_return] = ACTIONS(1691), - [anon_sym_source] = ACTIONS(1691), - [anon_sym_source_DASHenv] = ACTIONS(1691), - [anon_sym_register] = ACTIONS(1691), - [anon_sym_hide] = ACTIONS(1691), - [anon_sym_hide_DASHenv] = ACTIONS(1691), - [anon_sym_overlay] = ACTIONS(1691), - [anon_sym_where] = ACTIONS(1309), - [aux_sym_expr_unary_token1] = ACTIONS(1309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1309), - [anon_sym_DOT_DOT_LT] = ACTIONS(1309), - [aux_sym__val_number_decimal_token1] = ACTIONS(1691), - [aux_sym__val_number_decimal_token2] = ACTIONS(1309), - [aux_sym__val_number_decimal_token3] = ACTIONS(1309), - [aux_sym__val_number_decimal_token4] = ACTIONS(1309), - [aux_sym__val_number_token1] = ACTIONS(1309), - [aux_sym__val_number_token2] = ACTIONS(1309), - [aux_sym__val_number_token3] = ACTIONS(1309), - [anon_sym_0b] = ACTIONS(1691), - [anon_sym_0o] = ACTIONS(1691), - [anon_sym_0x] = ACTIONS(1691), - [sym_val_date] = ACTIONS(1309), - [anon_sym_DQUOTE] = ACTIONS(1309), - [sym__str_single_quotes] = ACTIONS(1309), - [sym__str_back_ticks] = ACTIONS(1309), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1309), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1309), - [aux_sym_env_var_token1] = ACTIONS(1691), - [anon_sym_CARET] = ACTIONS(1309), + [anon_sym_export] = ACTIONS(1715), + [anon_sym_alias] = ACTIONS(1715), + [anon_sym_let] = ACTIONS(1715), + [anon_sym_let_DASHenv] = ACTIONS(1715), + [anon_sym_mut] = ACTIONS(1715), + [anon_sym_const] = ACTIONS(1715), + [aux_sym_cmd_identifier_token1] = ACTIONS(1715), + [aux_sym_cmd_identifier_token2] = ACTIONS(1715), + [aux_sym_cmd_identifier_token3] = ACTIONS(1715), + [aux_sym_cmd_identifier_token4] = ACTIONS(1715), + [aux_sym_cmd_identifier_token5] = ACTIONS(1715), + [aux_sym_cmd_identifier_token6] = ACTIONS(1715), + [aux_sym_cmd_identifier_token7] = ACTIONS(1715), + [aux_sym_cmd_identifier_token8] = ACTIONS(1715), + [aux_sym_cmd_identifier_token9] = ACTIONS(1715), + [aux_sym_cmd_identifier_token10] = ACTIONS(1715), + [aux_sym_cmd_identifier_token11] = ACTIONS(1715), + [aux_sym_cmd_identifier_token12] = ACTIONS(1715), + [aux_sym_cmd_identifier_token13] = ACTIONS(1715), + [aux_sym_cmd_identifier_token14] = ACTIONS(1715), + [aux_sym_cmd_identifier_token15] = ACTIONS(1715), + [aux_sym_cmd_identifier_token16] = ACTIONS(1715), + [aux_sym_cmd_identifier_token17] = ACTIONS(1715), + [aux_sym_cmd_identifier_token18] = ACTIONS(1715), + [aux_sym_cmd_identifier_token19] = ACTIONS(1715), + [aux_sym_cmd_identifier_token20] = ACTIONS(1715), + [aux_sym_cmd_identifier_token21] = ACTIONS(1715), + [aux_sym_cmd_identifier_token22] = ACTIONS(1715), + [aux_sym_cmd_identifier_token23] = ACTIONS(1715), + [aux_sym_cmd_identifier_token24] = ACTIONS(1715), + [aux_sym_cmd_identifier_token25] = ACTIONS(1715), + [aux_sym_cmd_identifier_token26] = ACTIONS(1715), + [aux_sym_cmd_identifier_token27] = ACTIONS(1715), + [aux_sym_cmd_identifier_token28] = ACTIONS(1715), + [aux_sym_cmd_identifier_token29] = ACTIONS(1715), + [aux_sym_cmd_identifier_token30] = ACTIONS(1715), + [aux_sym_cmd_identifier_token31] = ACTIONS(1715), + [aux_sym_cmd_identifier_token32] = ACTIONS(1715), + [aux_sym_cmd_identifier_token33] = ACTIONS(1715), + [aux_sym_cmd_identifier_token34] = ACTIONS(1715), + [aux_sym_cmd_identifier_token35] = ACTIONS(1715), + [aux_sym_cmd_identifier_token36] = ACTIONS(1715), + [anon_sym_true] = ACTIONS(1715), + [anon_sym_false] = ACTIONS(1715), + [anon_sym_null] = ACTIONS(1715), + [aux_sym_cmd_identifier_token38] = ACTIONS(1715), + [aux_sym_cmd_identifier_token39] = ACTIONS(1715), + [aux_sym_cmd_identifier_token40] = ACTIONS(1715), + [anon_sym_def] = ACTIONS(1715), + [anon_sym_export_DASHenv] = ACTIONS(1715), + [anon_sym_extern] = ACTIONS(1715), + [anon_sym_module] = ACTIONS(1715), + [anon_sym_use] = ACTIONS(1715), + [anon_sym_LPAREN] = ACTIONS(1715), + [anon_sym_DOLLAR] = ACTIONS(1715), + [anon_sym_error] = ACTIONS(1715), + [anon_sym_list] = ACTIONS(1715), + [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_break] = ACTIONS(1715), + [anon_sym_continue] = ACTIONS(1715), + [anon_sym_for] = ACTIONS(1715), + [anon_sym_in] = ACTIONS(1715), + [anon_sym_loop] = ACTIONS(1715), + [anon_sym_make] = ACTIONS(1715), + [anon_sym_while] = ACTIONS(1715), + [anon_sym_do] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1715), + [anon_sym_else] = ACTIONS(1715), + [anon_sym_match] = ACTIONS(1715), + [anon_sym_RBRACE] = ACTIONS(1715), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_catch] = ACTIONS(1715), + [anon_sym_return] = ACTIONS(1715), + [anon_sym_source] = ACTIONS(1715), + [anon_sym_source_DASHenv] = ACTIONS(1715), + [anon_sym_register] = ACTIONS(1715), + [anon_sym_hide] = ACTIONS(1715), + [anon_sym_hide_DASHenv] = ACTIONS(1715), + [anon_sym_overlay] = ACTIONS(1715), + [anon_sym_new] = ACTIONS(1715), + [anon_sym_as] = ACTIONS(1715), + [anon_sym_LPAREN2] = ACTIONS(1717), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1715), + [anon_sym_DOT_DOT2] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1719), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1717), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1717), + [aux_sym__immediate_decimal_token2] = ACTIONS(1721), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1715), + [aux_sym__val_number_decimal_token1] = ACTIONS(1715), + [aux_sym__val_number_decimal_token2] = ACTIONS(1715), + [aux_sym__val_number_decimal_token3] = ACTIONS(1715), + [aux_sym__val_number_decimal_token4] = ACTIONS(1715), + [aux_sym__val_number_token1] = ACTIONS(1715), + [aux_sym__val_number_token2] = ACTIONS(1715), + [aux_sym__val_number_token3] = ACTIONS(1715), + [anon_sym_DQUOTE] = ACTIONS(1715), + [sym__str_single_quotes] = ACTIONS(1715), + [sym__str_back_ticks] = ACTIONS(1715), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1715), + [sym__entry_separator] = ACTIONS(1717), + [anon_sym_PLUS] = ACTIONS(1715), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1715), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1717), }, [251] = { - [sym_path] = STATE(369), [sym_comment] = STATE(251), - [aux_sym_cell_path_repeat1] = STATE(251), - [anon_sym_export] = ACTIONS(1015), - [anon_sym_alias] = ACTIONS(1015), - [anon_sym_let] = ACTIONS(1015), - [anon_sym_let_DASHenv] = ACTIONS(1015), - [anon_sym_mut] = ACTIONS(1015), - [anon_sym_const] = ACTIONS(1015), - [aux_sym_cmd_identifier_token1] = ACTIONS(1015), - [aux_sym_cmd_identifier_token2] = ACTIONS(1015), - [aux_sym_cmd_identifier_token3] = ACTIONS(1015), - [aux_sym_cmd_identifier_token4] = ACTIONS(1015), - [aux_sym_cmd_identifier_token5] = ACTIONS(1015), - [aux_sym_cmd_identifier_token6] = ACTIONS(1015), - [aux_sym_cmd_identifier_token7] = ACTIONS(1015), - [aux_sym_cmd_identifier_token8] = ACTIONS(1015), - [aux_sym_cmd_identifier_token9] = ACTIONS(1015), - [aux_sym_cmd_identifier_token10] = ACTIONS(1015), - [aux_sym_cmd_identifier_token11] = ACTIONS(1015), - [aux_sym_cmd_identifier_token12] = ACTIONS(1015), - [aux_sym_cmd_identifier_token13] = ACTIONS(1015), - [aux_sym_cmd_identifier_token14] = ACTIONS(1015), - [aux_sym_cmd_identifier_token15] = ACTIONS(1015), - [aux_sym_cmd_identifier_token16] = ACTIONS(1015), - [aux_sym_cmd_identifier_token17] = ACTIONS(1015), - [aux_sym_cmd_identifier_token18] = ACTIONS(1015), - [aux_sym_cmd_identifier_token19] = ACTIONS(1015), - [aux_sym_cmd_identifier_token20] = ACTIONS(1015), - [aux_sym_cmd_identifier_token21] = ACTIONS(1015), - [aux_sym_cmd_identifier_token22] = ACTIONS(1015), - [aux_sym_cmd_identifier_token23] = ACTIONS(1015), - [aux_sym_cmd_identifier_token24] = ACTIONS(1015), - [aux_sym_cmd_identifier_token25] = ACTIONS(1015), - [aux_sym_cmd_identifier_token26] = ACTIONS(1015), - [aux_sym_cmd_identifier_token27] = ACTIONS(1015), - [aux_sym_cmd_identifier_token28] = ACTIONS(1015), - [aux_sym_cmd_identifier_token29] = ACTIONS(1015), - [aux_sym_cmd_identifier_token30] = ACTIONS(1015), - [aux_sym_cmd_identifier_token31] = ACTIONS(1015), - [aux_sym_cmd_identifier_token32] = ACTIONS(1015), - [aux_sym_cmd_identifier_token33] = ACTIONS(1015), - [aux_sym_cmd_identifier_token34] = ACTIONS(1015), - [aux_sym_cmd_identifier_token35] = ACTIONS(1015), - [aux_sym_cmd_identifier_token36] = ACTIONS(1015), - [anon_sym_true] = ACTIONS(1015), - [anon_sym_false] = ACTIONS(1015), - [anon_sym_null] = ACTIONS(1015), - [aux_sym_cmd_identifier_token38] = ACTIONS(1015), - [aux_sym_cmd_identifier_token39] = ACTIONS(1015), - [aux_sym_cmd_identifier_token40] = ACTIONS(1015), - [anon_sym_def] = ACTIONS(1015), - [anon_sym_export_DASHenv] = ACTIONS(1015), - [anon_sym_extern] = ACTIONS(1015), - [anon_sym_module] = ACTIONS(1015), - [anon_sym_use] = ACTIONS(1015), - [anon_sym_LPAREN] = ACTIONS(1015), - [anon_sym_DOLLAR] = ACTIONS(1015), - [anon_sym_error] = ACTIONS(1015), - [anon_sym_list] = ACTIONS(1015), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_break] = ACTIONS(1015), - [anon_sym_continue] = ACTIONS(1015), - [anon_sym_for] = ACTIONS(1015), - [anon_sym_in] = ACTIONS(1015), - [anon_sym_loop] = ACTIONS(1015), - [anon_sym_make] = ACTIONS(1015), - [anon_sym_while] = ACTIONS(1015), - [anon_sym_do] = ACTIONS(1015), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_else] = ACTIONS(1015), - [anon_sym_match] = ACTIONS(1015), - [anon_sym_RBRACE] = ACTIONS(1015), - [anon_sym_try] = ACTIONS(1015), - [anon_sym_catch] = ACTIONS(1015), - [anon_sym_return] = ACTIONS(1015), - [anon_sym_source] = ACTIONS(1015), - [anon_sym_source_DASHenv] = ACTIONS(1015), - [anon_sym_register] = ACTIONS(1015), - [anon_sym_hide] = ACTIONS(1015), - [anon_sym_hide_DASHenv] = ACTIONS(1015), - [anon_sym_overlay] = ACTIONS(1015), - [anon_sym_new] = ACTIONS(1015), - [anon_sym_as] = ACTIONS(1015), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1015), - [anon_sym_DOT_DOT2] = ACTIONS(1015), - [anon_sym_DOT] = ACTIONS(1693), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1017), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1017), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1015), - [aux_sym__val_number_decimal_token1] = ACTIONS(1015), - [aux_sym__val_number_decimal_token2] = ACTIONS(1015), - [aux_sym__val_number_decimal_token3] = ACTIONS(1015), - [aux_sym__val_number_decimal_token4] = ACTIONS(1015), - [aux_sym__val_number_token1] = ACTIONS(1015), - [aux_sym__val_number_token2] = ACTIONS(1015), - [aux_sym__val_number_token3] = ACTIONS(1015), - [anon_sym_DQUOTE] = ACTIONS(1015), - [sym__str_single_quotes] = ACTIONS(1015), - [sym__str_back_ticks] = ACTIONS(1015), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1015), - [sym__entry_separator] = ACTIONS(1017), - [anon_sym_PLUS] = ACTIONS(1015), + [anon_sym_export] = ACTIONS(1536), + [anon_sym_alias] = ACTIONS(1536), + [anon_sym_let] = ACTIONS(1536), + [anon_sym_let_DASHenv] = ACTIONS(1536), + [anon_sym_mut] = ACTIONS(1536), + [anon_sym_const] = ACTIONS(1536), + [aux_sym_cmd_identifier_token1] = ACTIONS(1536), + [aux_sym_cmd_identifier_token2] = ACTIONS(1536), + [aux_sym_cmd_identifier_token3] = ACTIONS(1536), + [aux_sym_cmd_identifier_token4] = ACTIONS(1536), + [aux_sym_cmd_identifier_token5] = ACTIONS(1536), + [aux_sym_cmd_identifier_token6] = ACTIONS(1536), + [aux_sym_cmd_identifier_token7] = ACTIONS(1536), + [aux_sym_cmd_identifier_token8] = ACTIONS(1536), + [aux_sym_cmd_identifier_token9] = ACTIONS(1536), + [aux_sym_cmd_identifier_token10] = ACTIONS(1536), + [aux_sym_cmd_identifier_token11] = ACTIONS(1536), + [aux_sym_cmd_identifier_token12] = ACTIONS(1536), + [aux_sym_cmd_identifier_token13] = ACTIONS(1536), + [aux_sym_cmd_identifier_token14] = ACTIONS(1536), + [aux_sym_cmd_identifier_token15] = ACTIONS(1536), + [aux_sym_cmd_identifier_token16] = ACTIONS(1536), + [aux_sym_cmd_identifier_token17] = ACTIONS(1536), + [aux_sym_cmd_identifier_token18] = ACTIONS(1536), + [aux_sym_cmd_identifier_token19] = ACTIONS(1536), + [aux_sym_cmd_identifier_token20] = ACTIONS(1536), + [aux_sym_cmd_identifier_token21] = ACTIONS(1536), + [aux_sym_cmd_identifier_token22] = ACTIONS(1536), + [aux_sym_cmd_identifier_token23] = ACTIONS(1536), + [aux_sym_cmd_identifier_token24] = ACTIONS(1536), + [aux_sym_cmd_identifier_token25] = ACTIONS(1536), + [aux_sym_cmd_identifier_token26] = ACTIONS(1536), + [aux_sym_cmd_identifier_token27] = ACTIONS(1536), + [aux_sym_cmd_identifier_token28] = ACTIONS(1536), + [aux_sym_cmd_identifier_token29] = ACTIONS(1536), + [aux_sym_cmd_identifier_token30] = ACTIONS(1536), + [aux_sym_cmd_identifier_token31] = ACTIONS(1536), + [aux_sym_cmd_identifier_token32] = ACTIONS(1536), + [aux_sym_cmd_identifier_token33] = ACTIONS(1536), + [aux_sym_cmd_identifier_token34] = ACTIONS(1536), + [aux_sym_cmd_identifier_token35] = ACTIONS(1536), + [aux_sym_cmd_identifier_token36] = ACTIONS(1536), + [anon_sym_true] = ACTIONS(1536), + [anon_sym_false] = ACTIONS(1536), + [anon_sym_null] = ACTIONS(1536), + [aux_sym_cmd_identifier_token38] = ACTIONS(1536), + [aux_sym_cmd_identifier_token39] = ACTIONS(1536), + [aux_sym_cmd_identifier_token40] = ACTIONS(1536), + [anon_sym_def] = ACTIONS(1536), + [anon_sym_export_DASHenv] = ACTIONS(1536), + [anon_sym_extern] = ACTIONS(1536), + [anon_sym_module] = ACTIONS(1536), + [anon_sym_use] = ACTIONS(1536), + [anon_sym_LPAREN] = ACTIONS(1536), + [anon_sym_DOLLAR] = ACTIONS(1536), + [anon_sym_error] = ACTIONS(1536), + [anon_sym_list] = ACTIONS(1536), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_break] = ACTIONS(1536), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_for] = ACTIONS(1536), + [anon_sym_in] = ACTIONS(1536), + [anon_sym_loop] = ACTIONS(1536), + [anon_sym_make] = ACTIONS(1536), + [anon_sym_while] = ACTIONS(1536), + [anon_sym_do] = ACTIONS(1536), + [anon_sym_if] = ACTIONS(1536), + [anon_sym_else] = ACTIONS(1536), + [anon_sym_match] = ACTIONS(1536), + [anon_sym_RBRACE] = ACTIONS(1536), + [anon_sym_try] = ACTIONS(1536), + [anon_sym_catch] = ACTIONS(1536), + [anon_sym_return] = ACTIONS(1536), + [anon_sym_source] = ACTIONS(1536), + [anon_sym_source_DASHenv] = ACTIONS(1536), + [anon_sym_register] = ACTIONS(1536), + [anon_sym_hide] = ACTIONS(1536), + [anon_sym_hide_DASHenv] = ACTIONS(1536), + [anon_sym_overlay] = ACTIONS(1536), + [anon_sym_new] = ACTIONS(1536), + [anon_sym_as] = ACTIONS(1536), + [anon_sym_LPAREN2] = ACTIONS(1538), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1536), + [anon_sym_DOT_DOT2] = ACTIONS(1536), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1536), + [aux_sym__val_number_decimal_token1] = ACTIONS(1536), + [aux_sym__val_number_decimal_token2] = ACTIONS(1536), + [aux_sym__val_number_decimal_token3] = ACTIONS(1536), + [aux_sym__val_number_decimal_token4] = ACTIONS(1536), + [aux_sym__val_number_token1] = ACTIONS(1536), + [aux_sym__val_number_token2] = ACTIONS(1536), + [aux_sym__val_number_token3] = ACTIONS(1536), + [sym_filesize_unit] = ACTIONS(1536), + [sym_duration_unit] = ACTIONS(1536), + [anon_sym_DQUOTE] = ACTIONS(1536), + [sym__str_single_quotes] = ACTIONS(1536), + [sym__str_back_ticks] = ACTIONS(1536), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1536), + [sym__entry_separator] = ACTIONS(1538), + [anon_sym_PLUS] = ACTIONS(1536), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1536), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1538), }, [252] = { + [sym__expr_parenthesized_immediate] = STATE(707), + [sym__immediate_decimal] = STATE(639), + [sym_val_variable] = STATE(707), [sym_comment] = STATE(252), - [anon_sym_export] = ACTIONS(1659), - [anon_sym_alias] = ACTIONS(1659), - [anon_sym_let] = ACTIONS(1659), - [anon_sym_let_DASHenv] = ACTIONS(1659), - [anon_sym_mut] = ACTIONS(1659), - [anon_sym_const] = ACTIONS(1659), - [aux_sym_cmd_identifier_token1] = ACTIONS(1659), - [aux_sym_cmd_identifier_token2] = ACTIONS(1659), - [aux_sym_cmd_identifier_token3] = ACTIONS(1659), - [aux_sym_cmd_identifier_token4] = ACTIONS(1659), - [aux_sym_cmd_identifier_token5] = ACTIONS(1659), - [aux_sym_cmd_identifier_token6] = ACTIONS(1659), - [aux_sym_cmd_identifier_token7] = ACTIONS(1659), - [aux_sym_cmd_identifier_token8] = ACTIONS(1659), - [aux_sym_cmd_identifier_token9] = ACTIONS(1659), - [aux_sym_cmd_identifier_token10] = ACTIONS(1659), - [aux_sym_cmd_identifier_token11] = ACTIONS(1659), - [aux_sym_cmd_identifier_token12] = ACTIONS(1659), - [aux_sym_cmd_identifier_token13] = ACTIONS(1659), - [aux_sym_cmd_identifier_token14] = ACTIONS(1659), - [aux_sym_cmd_identifier_token15] = ACTIONS(1659), - [aux_sym_cmd_identifier_token16] = ACTIONS(1659), - [aux_sym_cmd_identifier_token17] = ACTIONS(1659), - [aux_sym_cmd_identifier_token18] = ACTIONS(1659), - [aux_sym_cmd_identifier_token19] = ACTIONS(1659), - [aux_sym_cmd_identifier_token20] = ACTIONS(1659), - [aux_sym_cmd_identifier_token21] = ACTIONS(1659), - [aux_sym_cmd_identifier_token22] = ACTIONS(1659), - [aux_sym_cmd_identifier_token23] = ACTIONS(1659), - [aux_sym_cmd_identifier_token24] = ACTIONS(1659), - [aux_sym_cmd_identifier_token25] = ACTIONS(1659), - [aux_sym_cmd_identifier_token26] = ACTIONS(1659), - [aux_sym_cmd_identifier_token27] = ACTIONS(1659), - [aux_sym_cmd_identifier_token28] = ACTIONS(1659), - [aux_sym_cmd_identifier_token29] = ACTIONS(1659), - [aux_sym_cmd_identifier_token30] = ACTIONS(1659), - [aux_sym_cmd_identifier_token31] = ACTIONS(1659), - [aux_sym_cmd_identifier_token32] = ACTIONS(1659), - [aux_sym_cmd_identifier_token33] = ACTIONS(1659), - [aux_sym_cmd_identifier_token34] = ACTIONS(1659), - [aux_sym_cmd_identifier_token35] = ACTIONS(1659), - [aux_sym_cmd_identifier_token36] = ACTIONS(1659), - [anon_sym_true] = ACTIONS(1661), - [anon_sym_false] = ACTIONS(1661), - [anon_sym_null] = ACTIONS(1661), - [aux_sym_cmd_identifier_token38] = ACTIONS(1659), - [aux_sym_cmd_identifier_token39] = ACTIONS(1661), - [aux_sym_cmd_identifier_token40] = ACTIONS(1661), - [anon_sym_def] = ACTIONS(1659), - [anon_sym_export_DASHenv] = ACTIONS(1659), - [anon_sym_extern] = ACTIONS(1659), - [anon_sym_module] = ACTIONS(1659), - [anon_sym_use] = ACTIONS(1659), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_DOLLAR] = ACTIONS(1661), - [anon_sym_error] = ACTIONS(1659), - [anon_sym_list] = ACTIONS(1659), - [anon_sym_DASH] = ACTIONS(1659), - [anon_sym_break] = ACTIONS(1659), - [anon_sym_continue] = ACTIONS(1659), - [anon_sym_for] = ACTIONS(1659), - [anon_sym_in] = ACTIONS(1659), - [anon_sym_loop] = ACTIONS(1659), - [anon_sym_make] = ACTIONS(1659), - [anon_sym_while] = ACTIONS(1659), - [anon_sym_do] = ACTIONS(1659), - [anon_sym_if] = ACTIONS(1659), - [anon_sym_else] = ACTIONS(1659), - [anon_sym_match] = ACTIONS(1659), - [anon_sym_RBRACE] = ACTIONS(1661), - [anon_sym_try] = ACTIONS(1659), - [anon_sym_catch] = ACTIONS(1659), - [anon_sym_return] = ACTIONS(1659), - [anon_sym_source] = ACTIONS(1659), - [anon_sym_source_DASHenv] = ACTIONS(1659), - [anon_sym_register] = ACTIONS(1659), - [anon_sym_hide] = ACTIONS(1659), - [anon_sym_hide_DASHenv] = ACTIONS(1659), - [anon_sym_overlay] = ACTIONS(1659), - [anon_sym_new] = ACTIONS(1659), - [anon_sym_as] = ACTIONS(1659), - [anon_sym_LPAREN2] = ACTIONS(1661), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1661), - [anon_sym_DOT_DOT2] = ACTIONS(1659), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1661), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1661), - [aux_sym__immediate_decimal_token1] = ACTIONS(1696), - [aux_sym__immediate_decimal_token2] = ACTIONS(1698), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1661), - [aux_sym__val_number_decimal_token1] = ACTIONS(1659), - [aux_sym__val_number_decimal_token2] = ACTIONS(1661), - [aux_sym__val_number_decimal_token3] = ACTIONS(1661), - [aux_sym__val_number_decimal_token4] = ACTIONS(1661), - [aux_sym__val_number_token1] = ACTIONS(1661), - [aux_sym__val_number_token2] = ACTIONS(1661), - [aux_sym__val_number_token3] = ACTIONS(1661), - [anon_sym_DQUOTE] = ACTIONS(1661), - [sym__str_single_quotes] = ACTIONS(1661), - [sym__str_back_ticks] = ACTIONS(1661), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1661), - [anon_sym_PLUS] = ACTIONS(1659), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1659), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(1560), + [anon_sym_alias] = ACTIONS(1560), + [anon_sym_let] = ACTIONS(1560), + [anon_sym_let_DASHenv] = ACTIONS(1560), + [anon_sym_mut] = ACTIONS(1560), + [anon_sym_const] = ACTIONS(1560), + [aux_sym_cmd_identifier_token1] = ACTIONS(1560), + [aux_sym_cmd_identifier_token2] = ACTIONS(1560), + [aux_sym_cmd_identifier_token3] = ACTIONS(1560), + [aux_sym_cmd_identifier_token4] = ACTIONS(1560), + [aux_sym_cmd_identifier_token5] = ACTIONS(1560), + [aux_sym_cmd_identifier_token6] = ACTIONS(1560), + [aux_sym_cmd_identifier_token7] = ACTIONS(1560), + [aux_sym_cmd_identifier_token8] = ACTIONS(1560), + [aux_sym_cmd_identifier_token9] = ACTIONS(1560), + [aux_sym_cmd_identifier_token10] = ACTIONS(1560), + [aux_sym_cmd_identifier_token11] = ACTIONS(1560), + [aux_sym_cmd_identifier_token12] = ACTIONS(1560), + [aux_sym_cmd_identifier_token13] = ACTIONS(1560), + [aux_sym_cmd_identifier_token14] = ACTIONS(1560), + [aux_sym_cmd_identifier_token15] = ACTIONS(1560), + [aux_sym_cmd_identifier_token16] = ACTIONS(1560), + [aux_sym_cmd_identifier_token17] = ACTIONS(1560), + [aux_sym_cmd_identifier_token18] = ACTIONS(1560), + [aux_sym_cmd_identifier_token19] = ACTIONS(1560), + [aux_sym_cmd_identifier_token20] = ACTIONS(1560), + [aux_sym_cmd_identifier_token21] = ACTIONS(1560), + [aux_sym_cmd_identifier_token22] = ACTIONS(1560), + [aux_sym_cmd_identifier_token23] = ACTIONS(1560), + [aux_sym_cmd_identifier_token24] = ACTIONS(1560), + [aux_sym_cmd_identifier_token25] = ACTIONS(1560), + [aux_sym_cmd_identifier_token26] = ACTIONS(1560), + [aux_sym_cmd_identifier_token27] = ACTIONS(1560), + [aux_sym_cmd_identifier_token28] = ACTIONS(1560), + [aux_sym_cmd_identifier_token29] = ACTIONS(1560), + [aux_sym_cmd_identifier_token30] = ACTIONS(1560), + [aux_sym_cmd_identifier_token31] = ACTIONS(1560), + [aux_sym_cmd_identifier_token32] = ACTIONS(1560), + [aux_sym_cmd_identifier_token33] = ACTIONS(1560), + [aux_sym_cmd_identifier_token34] = ACTIONS(1560), + [aux_sym_cmd_identifier_token35] = ACTIONS(1560), + [aux_sym_cmd_identifier_token36] = ACTIONS(1560), + [anon_sym_true] = ACTIONS(1570), + [anon_sym_false] = ACTIONS(1570), + [anon_sym_null] = ACTIONS(1570), + [aux_sym_cmd_identifier_token38] = ACTIONS(1560), + [aux_sym_cmd_identifier_token39] = ACTIONS(1570), + [aux_sym_cmd_identifier_token40] = ACTIONS(1570), + [anon_sym_def] = ACTIONS(1560), + [anon_sym_export_DASHenv] = ACTIONS(1560), + [anon_sym_extern] = ACTIONS(1560), + [anon_sym_module] = ACTIONS(1560), + [anon_sym_use] = ACTIONS(1560), + [anon_sym_LPAREN] = ACTIONS(1560), + [anon_sym_DOLLAR] = ACTIONS(1644), + [anon_sym_error] = ACTIONS(1560), + [anon_sym_list] = ACTIONS(1560), + [anon_sym_DASH] = ACTIONS(1560), + [anon_sym_break] = ACTIONS(1560), + [anon_sym_continue] = ACTIONS(1560), + [anon_sym_for] = ACTIONS(1560), + [anon_sym_in] = ACTIONS(1560), + [anon_sym_loop] = ACTIONS(1560), + [anon_sym_make] = ACTIONS(1560), + [anon_sym_while] = ACTIONS(1560), + [anon_sym_do] = ACTIONS(1560), + [anon_sym_if] = ACTIONS(1560), + [anon_sym_else] = ACTIONS(1560), + [anon_sym_match] = ACTIONS(1560), + [anon_sym_RBRACE] = ACTIONS(1570), + [anon_sym_try] = ACTIONS(1560), + [anon_sym_catch] = ACTIONS(1560), + [anon_sym_return] = ACTIONS(1560), + [anon_sym_source] = ACTIONS(1560), + [anon_sym_source_DASHenv] = ACTIONS(1560), + [anon_sym_register] = ACTIONS(1560), + [anon_sym_hide] = ACTIONS(1560), + [anon_sym_hide_DASHenv] = ACTIONS(1560), + [anon_sym_overlay] = ACTIONS(1560), + [anon_sym_new] = ACTIONS(1560), + [anon_sym_as] = ACTIONS(1560), + [anon_sym_LPAREN2] = ACTIONS(1646), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1570), + [aux_sym__immediate_decimal_token1] = ACTIONS(1683), + [aux_sym__immediate_decimal_token3] = ACTIONS(1685), + [aux_sym__immediate_decimal_token4] = ACTIONS(1687), + [aux_sym__immediate_decimal_token5] = ACTIONS(1689), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1570), + [aux_sym__val_number_decimal_token1] = ACTIONS(1560), + [aux_sym__val_number_decimal_token2] = ACTIONS(1560), + [aux_sym__val_number_decimal_token3] = ACTIONS(1560), + [aux_sym__val_number_decimal_token4] = ACTIONS(1560), + [aux_sym__val_number_token1] = ACTIONS(1570), + [aux_sym__val_number_token2] = ACTIONS(1570), + [aux_sym__val_number_token3] = ACTIONS(1570), + [anon_sym_DQUOTE] = ACTIONS(1570), + [sym__str_single_quotes] = ACTIONS(1570), + [sym__str_back_ticks] = ACTIONS(1570), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1570), + [anon_sym_PLUS] = ACTIONS(1560), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1570), }, [253] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5065), + [sym_block] = STATE(5066), + [sym__expression_parenthesized] = STATE(5066), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3839), + [sym_expr_parenthesized] = STATE(2053), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(2028), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3132), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_command] = STATE(5066), [sym_comment] = STATE(253), - [anon_sym_export] = ACTIONS(1518), - [anon_sym_alias] = ACTIONS(1518), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_let_DASHenv] = ACTIONS(1518), - [anon_sym_mut] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1518), - [aux_sym_cmd_identifier_token1] = ACTIONS(1518), - [aux_sym_cmd_identifier_token2] = ACTIONS(1518), - [aux_sym_cmd_identifier_token3] = ACTIONS(1518), - [aux_sym_cmd_identifier_token4] = ACTIONS(1518), - [aux_sym_cmd_identifier_token5] = ACTIONS(1518), - [aux_sym_cmd_identifier_token6] = ACTIONS(1518), - [aux_sym_cmd_identifier_token7] = ACTIONS(1518), - [aux_sym_cmd_identifier_token8] = ACTIONS(1518), - [aux_sym_cmd_identifier_token9] = ACTIONS(1518), - [aux_sym_cmd_identifier_token10] = ACTIONS(1518), - [aux_sym_cmd_identifier_token11] = ACTIONS(1518), - [aux_sym_cmd_identifier_token12] = ACTIONS(1518), - [aux_sym_cmd_identifier_token13] = ACTIONS(1518), - [aux_sym_cmd_identifier_token14] = ACTIONS(1518), - [aux_sym_cmd_identifier_token15] = ACTIONS(1518), - [aux_sym_cmd_identifier_token16] = ACTIONS(1518), - [aux_sym_cmd_identifier_token17] = ACTIONS(1518), - [aux_sym_cmd_identifier_token18] = ACTIONS(1518), - [aux_sym_cmd_identifier_token19] = ACTIONS(1518), - [aux_sym_cmd_identifier_token20] = ACTIONS(1518), - [aux_sym_cmd_identifier_token21] = ACTIONS(1518), - [aux_sym_cmd_identifier_token22] = ACTIONS(1518), - [aux_sym_cmd_identifier_token23] = ACTIONS(1518), - [aux_sym_cmd_identifier_token24] = ACTIONS(1518), - [aux_sym_cmd_identifier_token25] = ACTIONS(1518), - [aux_sym_cmd_identifier_token26] = ACTIONS(1518), - [aux_sym_cmd_identifier_token27] = ACTIONS(1518), - [aux_sym_cmd_identifier_token28] = ACTIONS(1518), - [aux_sym_cmd_identifier_token29] = ACTIONS(1518), - [aux_sym_cmd_identifier_token30] = ACTIONS(1518), - [aux_sym_cmd_identifier_token31] = ACTIONS(1518), - [aux_sym_cmd_identifier_token32] = ACTIONS(1518), - [aux_sym_cmd_identifier_token33] = ACTIONS(1518), - [aux_sym_cmd_identifier_token34] = ACTIONS(1518), - [aux_sym_cmd_identifier_token35] = ACTIONS(1518), - [aux_sym_cmd_identifier_token36] = ACTIONS(1518), - [anon_sym_true] = ACTIONS(1520), - [anon_sym_false] = ACTIONS(1520), - [anon_sym_null] = ACTIONS(1520), - [aux_sym_cmd_identifier_token38] = ACTIONS(1518), - [aux_sym_cmd_identifier_token39] = ACTIONS(1520), - [aux_sym_cmd_identifier_token40] = ACTIONS(1520), - [anon_sym_def] = ACTIONS(1518), - [anon_sym_export_DASHenv] = ACTIONS(1518), - [anon_sym_extern] = ACTIONS(1518), - [anon_sym_module] = ACTIONS(1518), - [anon_sym_use] = ACTIONS(1518), - [anon_sym_LPAREN] = ACTIONS(1518), - [anon_sym_DOLLAR] = ACTIONS(1520), - [anon_sym_error] = ACTIONS(1518), - [anon_sym_list] = ACTIONS(1518), - [anon_sym_DASH] = ACTIONS(1518), - [anon_sym_break] = ACTIONS(1518), - [anon_sym_continue] = ACTIONS(1518), - [anon_sym_for] = ACTIONS(1518), - [anon_sym_in] = ACTIONS(1518), - [anon_sym_loop] = ACTIONS(1518), - [anon_sym_make] = ACTIONS(1518), - [anon_sym_while] = ACTIONS(1518), - [anon_sym_do] = ACTIONS(1518), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_else] = ACTIONS(1518), - [anon_sym_match] = ACTIONS(1518), - [anon_sym_RBRACE] = ACTIONS(1520), - [anon_sym_try] = ACTIONS(1518), - [anon_sym_catch] = ACTIONS(1518), - [anon_sym_return] = ACTIONS(1518), - [anon_sym_source] = ACTIONS(1518), - [anon_sym_source_DASHenv] = ACTIONS(1518), - [anon_sym_register] = ACTIONS(1518), - [anon_sym_hide] = ACTIONS(1518), - [anon_sym_hide_DASHenv] = ACTIONS(1518), - [anon_sym_overlay] = ACTIONS(1518), - [anon_sym_new] = ACTIONS(1518), - [anon_sym_as] = ACTIONS(1518), - [anon_sym_LPAREN2] = ACTIONS(1520), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1520), - [anon_sym_DOT_DOT2] = ACTIONS(1518), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1520), - [aux_sym__val_number_decimal_token1] = ACTIONS(1518), - [aux_sym__val_number_decimal_token2] = ACTIONS(1520), - [aux_sym__val_number_decimal_token3] = ACTIONS(1520), - [aux_sym__val_number_decimal_token4] = ACTIONS(1520), - [aux_sym__val_number_token1] = ACTIONS(1520), - [aux_sym__val_number_token2] = ACTIONS(1520), - [aux_sym__val_number_token3] = ACTIONS(1520), - [sym_filesize_unit] = ACTIONS(1518), - [sym_duration_unit] = ACTIONS(1518), - [anon_sym_DQUOTE] = ACTIONS(1520), - [sym__str_single_quotes] = ACTIONS(1520), - [sym__str_back_ticks] = ACTIONS(1520), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1520), - [anon_sym_PLUS] = ACTIONS(1518), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1518), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(268), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(373), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(1723), + [anon_sym_false] = ACTIONS(1723), + [anon_sym_null] = ACTIONS(1725), + [aux_sym_cmd_identifier_token38] = ACTIONS(1727), + [aux_sym_cmd_identifier_token39] = ACTIONS(1729), + [aux_sym_cmd_identifier_token40] = ACTIONS(1729), + [sym__newline] = ACTIONS(1731), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_if] = ACTIONS(491), + [anon_sym_LBRACE] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(193), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1737), + [aux_sym__val_number_decimal_token3] = ACTIONS(1739), + [aux_sym__val_number_decimal_token4] = ACTIONS(1741), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [254] = { [sym_comment] = STATE(254), - [aux_sym_shebang_repeat1] = STATE(6992), - [aux_sym__parenthesized_body_repeat1] = STATE(254), - [anon_sym_export] = ACTIONS(1700), - [anon_sym_alias] = ACTIONS(1700), - [anon_sym_let] = ACTIONS(1700), - [anon_sym_let_DASHenv] = ACTIONS(1700), - [anon_sym_mut] = ACTIONS(1700), - [anon_sym_const] = ACTIONS(1700), - [aux_sym_cmd_identifier_token1] = ACTIONS(1700), - [aux_sym_cmd_identifier_token2] = ACTIONS(1700), - [aux_sym_cmd_identifier_token3] = ACTIONS(1700), - [aux_sym_cmd_identifier_token4] = ACTIONS(1700), - [aux_sym_cmd_identifier_token5] = ACTIONS(1700), - [aux_sym_cmd_identifier_token6] = ACTIONS(1700), - [aux_sym_cmd_identifier_token7] = ACTIONS(1700), - [aux_sym_cmd_identifier_token8] = ACTIONS(1700), - [aux_sym_cmd_identifier_token9] = ACTIONS(1700), - [aux_sym_cmd_identifier_token10] = ACTIONS(1700), - [aux_sym_cmd_identifier_token11] = ACTIONS(1700), - [aux_sym_cmd_identifier_token12] = ACTIONS(1700), - [aux_sym_cmd_identifier_token13] = ACTIONS(1700), - [aux_sym_cmd_identifier_token14] = ACTIONS(1700), - [aux_sym_cmd_identifier_token15] = ACTIONS(1700), - [aux_sym_cmd_identifier_token16] = ACTIONS(1700), - [aux_sym_cmd_identifier_token17] = ACTIONS(1700), - [aux_sym_cmd_identifier_token18] = ACTIONS(1700), - [aux_sym_cmd_identifier_token19] = ACTIONS(1700), - [aux_sym_cmd_identifier_token20] = ACTIONS(1700), - [aux_sym_cmd_identifier_token21] = ACTIONS(1700), - [aux_sym_cmd_identifier_token22] = ACTIONS(1700), - [aux_sym_cmd_identifier_token23] = ACTIONS(1700), - [aux_sym_cmd_identifier_token24] = ACTIONS(1702), - [aux_sym_cmd_identifier_token25] = ACTIONS(1700), - [aux_sym_cmd_identifier_token26] = ACTIONS(1702), - [aux_sym_cmd_identifier_token27] = ACTIONS(1700), - [aux_sym_cmd_identifier_token28] = ACTIONS(1700), - [aux_sym_cmd_identifier_token29] = ACTIONS(1700), - [aux_sym_cmd_identifier_token30] = ACTIONS(1700), - [aux_sym_cmd_identifier_token31] = ACTIONS(1702), - [aux_sym_cmd_identifier_token32] = ACTIONS(1702), - [aux_sym_cmd_identifier_token33] = ACTIONS(1702), - [aux_sym_cmd_identifier_token34] = ACTIONS(1702), - [aux_sym_cmd_identifier_token35] = ACTIONS(1702), - [aux_sym_cmd_identifier_token36] = ACTIONS(1700), - [anon_sym_true] = ACTIONS(1702), - [anon_sym_false] = ACTIONS(1702), - [anon_sym_null] = ACTIONS(1702), - [aux_sym_cmd_identifier_token38] = ACTIONS(1700), - [aux_sym_cmd_identifier_token39] = ACTIONS(1702), - [aux_sym_cmd_identifier_token40] = ACTIONS(1702), - [sym__newline] = ACTIONS(1704), - [anon_sym_SEMI] = ACTIONS(1707), - [anon_sym_def] = ACTIONS(1700), - [anon_sym_export_DASHenv] = ACTIONS(1700), - [anon_sym_extern] = ACTIONS(1700), - [anon_sym_module] = ACTIONS(1700), - [anon_sym_use] = ACTIONS(1700), - [anon_sym_LBRACK] = ACTIONS(1702), - [anon_sym_LPAREN] = ACTIONS(1702), - [anon_sym_DOLLAR] = ACTIONS(1700), - [anon_sym_error] = ACTIONS(1700), - [anon_sym_DASH] = ACTIONS(1700), - [anon_sym_break] = ACTIONS(1700), - [anon_sym_continue] = ACTIONS(1700), - [anon_sym_for] = ACTIONS(1700), - [anon_sym_loop] = ACTIONS(1700), - [anon_sym_while] = ACTIONS(1700), - [anon_sym_do] = ACTIONS(1700), - [anon_sym_if] = ACTIONS(1700), - [anon_sym_match] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1702), - [anon_sym_DOT_DOT] = ACTIONS(1700), - [anon_sym_try] = ACTIONS(1700), - [anon_sym_return] = ACTIONS(1700), - [anon_sym_source] = ACTIONS(1700), - [anon_sym_source_DASHenv] = ACTIONS(1700), - [anon_sym_register] = ACTIONS(1700), - [anon_sym_hide] = ACTIONS(1700), - [anon_sym_hide_DASHenv] = ACTIONS(1700), - [anon_sym_overlay] = ACTIONS(1700), - [anon_sym_where] = ACTIONS(1702), - [aux_sym_expr_unary_token1] = ACTIONS(1702), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1702), - [anon_sym_DOT_DOT_LT] = ACTIONS(1702), - [aux_sym__val_number_decimal_token1] = ACTIONS(1700), - [aux_sym__val_number_decimal_token2] = ACTIONS(1702), - [aux_sym__val_number_decimal_token3] = ACTIONS(1702), - [aux_sym__val_number_decimal_token4] = ACTIONS(1702), - [aux_sym__val_number_token1] = ACTIONS(1702), - [aux_sym__val_number_token2] = ACTIONS(1702), - [aux_sym__val_number_token3] = ACTIONS(1702), - [anon_sym_0b] = ACTIONS(1700), - [anon_sym_0o] = ACTIONS(1700), - [anon_sym_0x] = ACTIONS(1700), - [sym_val_date] = ACTIONS(1702), - [anon_sym_DQUOTE] = ACTIONS(1702), - [sym__str_single_quotes] = ACTIONS(1702), - [sym__str_back_ticks] = ACTIONS(1702), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1702), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1702), - [aux_sym_env_var_token1] = ACTIONS(1700), - [anon_sym_CARET] = ACTIONS(1702), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(1715), + [anon_sym_alias] = ACTIONS(1715), + [anon_sym_let] = ACTIONS(1715), + [anon_sym_let_DASHenv] = ACTIONS(1715), + [anon_sym_mut] = ACTIONS(1715), + [anon_sym_const] = ACTIONS(1715), + [aux_sym_cmd_identifier_token1] = ACTIONS(1715), + [aux_sym_cmd_identifier_token2] = ACTIONS(1715), + [aux_sym_cmd_identifier_token3] = ACTIONS(1715), + [aux_sym_cmd_identifier_token4] = ACTIONS(1715), + [aux_sym_cmd_identifier_token5] = ACTIONS(1715), + [aux_sym_cmd_identifier_token6] = ACTIONS(1715), + [aux_sym_cmd_identifier_token7] = ACTIONS(1715), + [aux_sym_cmd_identifier_token8] = ACTIONS(1715), + [aux_sym_cmd_identifier_token9] = ACTIONS(1715), + [aux_sym_cmd_identifier_token10] = ACTIONS(1715), + [aux_sym_cmd_identifier_token11] = ACTIONS(1715), + [aux_sym_cmd_identifier_token12] = ACTIONS(1715), + [aux_sym_cmd_identifier_token13] = ACTIONS(1715), + [aux_sym_cmd_identifier_token14] = ACTIONS(1715), + [aux_sym_cmd_identifier_token15] = ACTIONS(1715), + [aux_sym_cmd_identifier_token16] = ACTIONS(1715), + [aux_sym_cmd_identifier_token17] = ACTIONS(1715), + [aux_sym_cmd_identifier_token18] = ACTIONS(1715), + [aux_sym_cmd_identifier_token19] = ACTIONS(1715), + [aux_sym_cmd_identifier_token20] = ACTIONS(1715), + [aux_sym_cmd_identifier_token21] = ACTIONS(1715), + [aux_sym_cmd_identifier_token22] = ACTIONS(1715), + [aux_sym_cmd_identifier_token23] = ACTIONS(1715), + [aux_sym_cmd_identifier_token24] = ACTIONS(1715), + [aux_sym_cmd_identifier_token25] = ACTIONS(1715), + [aux_sym_cmd_identifier_token26] = ACTIONS(1715), + [aux_sym_cmd_identifier_token27] = ACTIONS(1715), + [aux_sym_cmd_identifier_token28] = ACTIONS(1715), + [aux_sym_cmd_identifier_token29] = ACTIONS(1715), + [aux_sym_cmd_identifier_token30] = ACTIONS(1715), + [aux_sym_cmd_identifier_token31] = ACTIONS(1715), + [aux_sym_cmd_identifier_token32] = ACTIONS(1715), + [aux_sym_cmd_identifier_token33] = ACTIONS(1715), + [aux_sym_cmd_identifier_token34] = ACTIONS(1715), + [aux_sym_cmd_identifier_token35] = ACTIONS(1715), + [aux_sym_cmd_identifier_token36] = ACTIONS(1715), + [anon_sym_true] = ACTIONS(1717), + [anon_sym_false] = ACTIONS(1717), + [anon_sym_null] = ACTIONS(1717), + [aux_sym_cmd_identifier_token38] = ACTIONS(1715), + [aux_sym_cmd_identifier_token39] = ACTIONS(1717), + [aux_sym_cmd_identifier_token40] = ACTIONS(1717), + [anon_sym_def] = ACTIONS(1715), + [anon_sym_export_DASHenv] = ACTIONS(1715), + [anon_sym_extern] = ACTIONS(1715), + [anon_sym_module] = ACTIONS(1715), + [anon_sym_use] = ACTIONS(1715), + [anon_sym_LPAREN] = ACTIONS(1715), + [anon_sym_DOLLAR] = ACTIONS(1717), + [anon_sym_error] = ACTIONS(1715), + [anon_sym_list] = ACTIONS(1715), + [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_break] = ACTIONS(1715), + [anon_sym_continue] = ACTIONS(1715), + [anon_sym_for] = ACTIONS(1715), + [anon_sym_in] = ACTIONS(1715), + [anon_sym_loop] = ACTIONS(1715), + [anon_sym_make] = ACTIONS(1715), + [anon_sym_while] = ACTIONS(1715), + [anon_sym_do] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1715), + [anon_sym_else] = ACTIONS(1715), + [anon_sym_match] = ACTIONS(1715), + [anon_sym_RBRACE] = ACTIONS(1717), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_catch] = ACTIONS(1715), + [anon_sym_return] = ACTIONS(1715), + [anon_sym_source] = ACTIONS(1715), + [anon_sym_source_DASHenv] = ACTIONS(1715), + [anon_sym_register] = ACTIONS(1715), + [anon_sym_hide] = ACTIONS(1715), + [anon_sym_hide_DASHenv] = ACTIONS(1715), + [anon_sym_overlay] = ACTIONS(1715), + [anon_sym_new] = ACTIONS(1715), + [anon_sym_as] = ACTIONS(1715), + [anon_sym_LPAREN2] = ACTIONS(1717), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1717), + [anon_sym_DOT_DOT2] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1743), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1717), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1717), + [aux_sym__immediate_decimal_token2] = ACTIONS(1745), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1717), + [aux_sym__val_number_decimal_token1] = ACTIONS(1715), + [aux_sym__val_number_decimal_token2] = ACTIONS(1717), + [aux_sym__val_number_decimal_token3] = ACTIONS(1717), + [aux_sym__val_number_decimal_token4] = ACTIONS(1717), + [aux_sym__val_number_token1] = ACTIONS(1717), + [aux_sym__val_number_token2] = ACTIONS(1717), + [aux_sym__val_number_token3] = ACTIONS(1717), + [anon_sym_DQUOTE] = ACTIONS(1717), + [sym__str_single_quotes] = ACTIONS(1717), + [sym__str_back_ticks] = ACTIONS(1717), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1717), + [anon_sym_PLUS] = ACTIONS(1715), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1715), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1717), }, [255] = { [sym_comment] = STATE(255), - [anon_sym_export] = ACTIONS(1540), - [anon_sym_alias] = ACTIONS(1540), - [anon_sym_let] = ACTIONS(1540), - [anon_sym_let_DASHenv] = ACTIONS(1540), - [anon_sym_mut] = ACTIONS(1540), - [anon_sym_const] = ACTIONS(1540), - [aux_sym_cmd_identifier_token1] = ACTIONS(1540), - [aux_sym_cmd_identifier_token2] = ACTIONS(1540), - [aux_sym_cmd_identifier_token3] = ACTIONS(1540), - [aux_sym_cmd_identifier_token4] = ACTIONS(1540), - [aux_sym_cmd_identifier_token5] = ACTIONS(1540), - [aux_sym_cmd_identifier_token6] = ACTIONS(1540), - [aux_sym_cmd_identifier_token7] = ACTIONS(1540), - [aux_sym_cmd_identifier_token8] = ACTIONS(1540), - [aux_sym_cmd_identifier_token9] = ACTIONS(1540), - [aux_sym_cmd_identifier_token10] = ACTIONS(1540), - [aux_sym_cmd_identifier_token11] = ACTIONS(1540), - [aux_sym_cmd_identifier_token12] = ACTIONS(1540), - [aux_sym_cmd_identifier_token13] = ACTIONS(1540), - [aux_sym_cmd_identifier_token14] = ACTIONS(1540), - [aux_sym_cmd_identifier_token15] = ACTIONS(1540), - [aux_sym_cmd_identifier_token16] = ACTIONS(1540), - [aux_sym_cmd_identifier_token17] = ACTIONS(1540), - [aux_sym_cmd_identifier_token18] = ACTIONS(1540), - [aux_sym_cmd_identifier_token19] = ACTIONS(1540), - [aux_sym_cmd_identifier_token20] = ACTIONS(1540), - [aux_sym_cmd_identifier_token21] = ACTIONS(1540), - [aux_sym_cmd_identifier_token22] = ACTIONS(1540), - [aux_sym_cmd_identifier_token23] = ACTIONS(1540), - [aux_sym_cmd_identifier_token24] = ACTIONS(1540), - [aux_sym_cmd_identifier_token25] = ACTIONS(1540), - [aux_sym_cmd_identifier_token26] = ACTIONS(1540), - [aux_sym_cmd_identifier_token27] = ACTIONS(1540), - [aux_sym_cmd_identifier_token28] = ACTIONS(1540), - [aux_sym_cmd_identifier_token29] = ACTIONS(1540), - [aux_sym_cmd_identifier_token30] = ACTIONS(1540), - [aux_sym_cmd_identifier_token31] = ACTIONS(1540), - [aux_sym_cmd_identifier_token32] = ACTIONS(1540), - [aux_sym_cmd_identifier_token33] = ACTIONS(1540), - [aux_sym_cmd_identifier_token34] = ACTIONS(1540), - [aux_sym_cmd_identifier_token35] = ACTIONS(1540), - [aux_sym_cmd_identifier_token36] = ACTIONS(1540), - [anon_sym_true] = ACTIONS(1542), - [anon_sym_false] = ACTIONS(1542), - [anon_sym_null] = ACTIONS(1542), - [aux_sym_cmd_identifier_token38] = ACTIONS(1540), - [aux_sym_cmd_identifier_token39] = ACTIONS(1542), - [aux_sym_cmd_identifier_token40] = ACTIONS(1542), - [anon_sym_def] = ACTIONS(1540), - [anon_sym_export_DASHenv] = ACTIONS(1540), - [anon_sym_extern] = ACTIONS(1540), - [anon_sym_module] = ACTIONS(1540), - [anon_sym_use] = ACTIONS(1540), - [anon_sym_LPAREN] = ACTIONS(1540), - [anon_sym_DOLLAR] = ACTIONS(1542), - [anon_sym_error] = ACTIONS(1540), - [anon_sym_list] = ACTIONS(1540), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_break] = ACTIONS(1540), - [anon_sym_continue] = ACTIONS(1540), - [anon_sym_for] = ACTIONS(1540), - [anon_sym_in] = ACTIONS(1540), - [anon_sym_loop] = ACTIONS(1540), - [anon_sym_make] = ACTIONS(1540), - [anon_sym_while] = ACTIONS(1540), - [anon_sym_do] = ACTIONS(1540), - [anon_sym_if] = ACTIONS(1540), - [anon_sym_else] = ACTIONS(1540), - [anon_sym_match] = ACTIONS(1540), - [anon_sym_RBRACE] = ACTIONS(1542), - [anon_sym_try] = ACTIONS(1540), - [anon_sym_catch] = ACTIONS(1540), - [anon_sym_return] = ACTIONS(1540), - [anon_sym_source] = ACTIONS(1540), - [anon_sym_source_DASHenv] = ACTIONS(1540), - [anon_sym_register] = ACTIONS(1540), - [anon_sym_hide] = ACTIONS(1540), - [anon_sym_hide_DASHenv] = ACTIONS(1540), - [anon_sym_overlay] = ACTIONS(1540), - [anon_sym_new] = ACTIONS(1540), - [anon_sym_as] = ACTIONS(1540), - [anon_sym_LPAREN2] = ACTIONS(1542), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1542), - [anon_sym_DOT_DOT2] = ACTIONS(1540), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1542), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1542), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1542), - [aux_sym__val_number_decimal_token1] = ACTIONS(1540), - [aux_sym__val_number_decimal_token2] = ACTIONS(1542), - [aux_sym__val_number_decimal_token3] = ACTIONS(1542), - [aux_sym__val_number_decimal_token4] = ACTIONS(1542), - [aux_sym__val_number_token1] = ACTIONS(1542), - [aux_sym__val_number_token2] = ACTIONS(1542), - [aux_sym__val_number_token3] = ACTIONS(1542), - [sym_filesize_unit] = ACTIONS(1540), - [sym_duration_unit] = ACTIONS(1540), - [anon_sym_DQUOTE] = ACTIONS(1542), - [sym__str_single_quotes] = ACTIONS(1542), - [sym__str_back_ticks] = ACTIONS(1542), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1542), - [anon_sym_PLUS] = ACTIONS(1540), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1540), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym__block_body_repeat1] = STATE(263), + [ts_builtin_sym_end] = ACTIONS(1701), + [anon_sym_export] = ACTIONS(1656), + [anon_sym_alias] = ACTIONS(1656), + [anon_sym_let] = ACTIONS(1656), + [anon_sym_let_DASHenv] = ACTIONS(1656), + [anon_sym_mut] = ACTIONS(1656), + [anon_sym_const] = ACTIONS(1656), + [aux_sym_cmd_identifier_token1] = ACTIONS(1656), + [aux_sym_cmd_identifier_token2] = ACTIONS(1656), + [aux_sym_cmd_identifier_token3] = ACTIONS(1656), + [aux_sym_cmd_identifier_token4] = ACTIONS(1656), + [aux_sym_cmd_identifier_token5] = ACTIONS(1656), + [aux_sym_cmd_identifier_token6] = ACTIONS(1656), + [aux_sym_cmd_identifier_token7] = ACTIONS(1656), + [aux_sym_cmd_identifier_token8] = ACTIONS(1656), + [aux_sym_cmd_identifier_token9] = ACTIONS(1656), + [aux_sym_cmd_identifier_token10] = ACTIONS(1656), + [aux_sym_cmd_identifier_token11] = ACTIONS(1656), + [aux_sym_cmd_identifier_token12] = ACTIONS(1656), + [aux_sym_cmd_identifier_token13] = ACTIONS(1656), + [aux_sym_cmd_identifier_token14] = ACTIONS(1656), + [aux_sym_cmd_identifier_token15] = ACTIONS(1656), + [aux_sym_cmd_identifier_token16] = ACTIONS(1656), + [aux_sym_cmd_identifier_token17] = ACTIONS(1656), + [aux_sym_cmd_identifier_token18] = ACTIONS(1656), + [aux_sym_cmd_identifier_token19] = ACTIONS(1656), + [aux_sym_cmd_identifier_token20] = ACTIONS(1656), + [aux_sym_cmd_identifier_token21] = ACTIONS(1656), + [aux_sym_cmd_identifier_token22] = ACTIONS(1656), + [aux_sym_cmd_identifier_token23] = ACTIONS(1656), + [aux_sym_cmd_identifier_token24] = ACTIONS(1658), + [aux_sym_cmd_identifier_token25] = ACTIONS(1656), + [aux_sym_cmd_identifier_token26] = ACTIONS(1658), + [aux_sym_cmd_identifier_token27] = ACTIONS(1656), + [aux_sym_cmd_identifier_token28] = ACTIONS(1656), + [aux_sym_cmd_identifier_token29] = ACTIONS(1656), + [aux_sym_cmd_identifier_token30] = ACTIONS(1656), + [aux_sym_cmd_identifier_token31] = ACTIONS(1658), + [aux_sym_cmd_identifier_token32] = ACTIONS(1658), + [aux_sym_cmd_identifier_token33] = ACTIONS(1658), + [aux_sym_cmd_identifier_token34] = ACTIONS(1658), + [aux_sym_cmd_identifier_token35] = ACTIONS(1658), + [aux_sym_cmd_identifier_token36] = ACTIONS(1656), + [anon_sym_true] = ACTIONS(1658), + [anon_sym_false] = ACTIONS(1658), + [anon_sym_null] = ACTIONS(1658), + [aux_sym_cmd_identifier_token38] = ACTIONS(1656), + [aux_sym_cmd_identifier_token39] = ACTIONS(1658), + [aux_sym_cmd_identifier_token40] = ACTIONS(1658), + [sym__newline] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_def] = ACTIONS(1656), + [anon_sym_export_DASHenv] = ACTIONS(1656), + [anon_sym_extern] = ACTIONS(1656), + [anon_sym_module] = ACTIONS(1656), + [anon_sym_use] = ACTIONS(1656), + [anon_sym_LBRACK] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(1658), + [anon_sym_DOLLAR] = ACTIONS(1656), + [anon_sym_error] = ACTIONS(1656), + [anon_sym_DASH] = ACTIONS(1656), + [anon_sym_break] = ACTIONS(1656), + [anon_sym_continue] = ACTIONS(1656), + [anon_sym_for] = ACTIONS(1656), + [anon_sym_loop] = ACTIONS(1656), + [anon_sym_while] = ACTIONS(1656), + [anon_sym_do] = ACTIONS(1656), + [anon_sym_if] = ACTIONS(1656), + [anon_sym_match] = ACTIONS(1656), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_DOT_DOT] = ACTIONS(1656), + [anon_sym_try] = ACTIONS(1656), + [anon_sym_return] = ACTIONS(1656), + [anon_sym_source] = ACTIONS(1656), + [anon_sym_source_DASHenv] = ACTIONS(1656), + [anon_sym_register] = ACTIONS(1656), + [anon_sym_hide] = ACTIONS(1656), + [anon_sym_hide_DASHenv] = ACTIONS(1656), + [anon_sym_overlay] = ACTIONS(1656), + [anon_sym_where] = ACTIONS(1658), + [aux_sym_expr_unary_token1] = ACTIONS(1658), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1658), + [anon_sym_DOT_DOT_LT] = ACTIONS(1658), + [aux_sym__val_number_decimal_token1] = ACTIONS(1656), + [aux_sym__val_number_decimal_token2] = ACTIONS(1658), + [aux_sym__val_number_decimal_token3] = ACTIONS(1658), + [aux_sym__val_number_decimal_token4] = ACTIONS(1658), + [aux_sym__val_number_token1] = ACTIONS(1658), + [aux_sym__val_number_token2] = ACTIONS(1658), + [aux_sym__val_number_token3] = ACTIONS(1658), + [anon_sym_0b] = ACTIONS(1656), + [anon_sym_0o] = ACTIONS(1656), + [anon_sym_0x] = ACTIONS(1656), + [sym_val_date] = ACTIONS(1658), + [anon_sym_DQUOTE] = ACTIONS(1658), + [sym__str_single_quotes] = ACTIONS(1658), + [sym__str_back_ticks] = ACTIONS(1658), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1658), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1658), + [aux_sym_env_var_token1] = ACTIONS(1656), + [anon_sym_CARET] = ACTIONS(1658), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1658), }, [256] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5134), + [sym_block] = STATE(5145), + [sym__expression_parenthesized] = STATE(5145), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3839), + [sym_expr_parenthesized] = STATE(2053), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(2028), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3132), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_command] = STATE(5145), [sym_comment] = STATE(256), - [anon_sym_export] = ACTIONS(1554), - [anon_sym_alias] = ACTIONS(1554), - [anon_sym_let] = ACTIONS(1554), - [anon_sym_let_DASHenv] = ACTIONS(1554), - [anon_sym_mut] = ACTIONS(1554), - [anon_sym_const] = ACTIONS(1554), - [aux_sym_cmd_identifier_token1] = ACTIONS(1554), - [aux_sym_cmd_identifier_token2] = ACTIONS(1554), - [aux_sym_cmd_identifier_token3] = ACTIONS(1554), - [aux_sym_cmd_identifier_token4] = ACTIONS(1554), - [aux_sym_cmd_identifier_token5] = ACTIONS(1554), - [aux_sym_cmd_identifier_token6] = ACTIONS(1554), - [aux_sym_cmd_identifier_token7] = ACTIONS(1554), - [aux_sym_cmd_identifier_token8] = ACTIONS(1554), - [aux_sym_cmd_identifier_token9] = ACTIONS(1554), - [aux_sym_cmd_identifier_token10] = ACTIONS(1554), - [aux_sym_cmd_identifier_token11] = ACTIONS(1554), - [aux_sym_cmd_identifier_token12] = ACTIONS(1554), - [aux_sym_cmd_identifier_token13] = ACTIONS(1554), - [aux_sym_cmd_identifier_token14] = ACTIONS(1554), - [aux_sym_cmd_identifier_token15] = ACTIONS(1554), - [aux_sym_cmd_identifier_token16] = ACTIONS(1554), - [aux_sym_cmd_identifier_token17] = ACTIONS(1554), - [aux_sym_cmd_identifier_token18] = ACTIONS(1554), - [aux_sym_cmd_identifier_token19] = ACTIONS(1554), - [aux_sym_cmd_identifier_token20] = ACTIONS(1554), - [aux_sym_cmd_identifier_token21] = ACTIONS(1554), - [aux_sym_cmd_identifier_token22] = ACTIONS(1554), - [aux_sym_cmd_identifier_token23] = ACTIONS(1554), - [aux_sym_cmd_identifier_token24] = ACTIONS(1554), - [aux_sym_cmd_identifier_token25] = ACTIONS(1554), - [aux_sym_cmd_identifier_token26] = ACTIONS(1554), - [aux_sym_cmd_identifier_token27] = ACTIONS(1554), - [aux_sym_cmd_identifier_token28] = ACTIONS(1554), - [aux_sym_cmd_identifier_token29] = ACTIONS(1554), - [aux_sym_cmd_identifier_token30] = ACTIONS(1554), - [aux_sym_cmd_identifier_token31] = ACTIONS(1554), - [aux_sym_cmd_identifier_token32] = ACTIONS(1554), - [aux_sym_cmd_identifier_token33] = ACTIONS(1554), - [aux_sym_cmd_identifier_token34] = ACTIONS(1554), - [aux_sym_cmd_identifier_token35] = ACTIONS(1554), - [aux_sym_cmd_identifier_token36] = ACTIONS(1554), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [anon_sym_null] = ACTIONS(1556), - [aux_sym_cmd_identifier_token38] = ACTIONS(1554), - [aux_sym_cmd_identifier_token39] = ACTIONS(1556), - [aux_sym_cmd_identifier_token40] = ACTIONS(1556), - [anon_sym_def] = ACTIONS(1554), - [anon_sym_export_DASHenv] = ACTIONS(1554), - [anon_sym_extern] = ACTIONS(1554), - [anon_sym_module] = ACTIONS(1554), - [anon_sym_use] = ACTIONS(1554), - [anon_sym_LPAREN] = ACTIONS(1554), - [anon_sym_DOLLAR] = ACTIONS(1556), - [anon_sym_error] = ACTIONS(1554), - [anon_sym_list] = ACTIONS(1554), - [anon_sym_DASH] = ACTIONS(1554), - [anon_sym_break] = ACTIONS(1554), - [anon_sym_continue] = ACTIONS(1554), - [anon_sym_for] = ACTIONS(1554), - [anon_sym_in] = ACTIONS(1554), - [anon_sym_loop] = ACTIONS(1554), - [anon_sym_make] = ACTIONS(1554), - [anon_sym_while] = ACTIONS(1554), - [anon_sym_do] = ACTIONS(1554), - [anon_sym_if] = ACTIONS(1554), - [anon_sym_else] = ACTIONS(1554), - [anon_sym_match] = ACTIONS(1554), - [anon_sym_RBRACE] = ACTIONS(1556), - [anon_sym_try] = ACTIONS(1554), - [anon_sym_catch] = ACTIONS(1554), - [anon_sym_return] = ACTIONS(1554), - [anon_sym_source] = ACTIONS(1554), - [anon_sym_source_DASHenv] = ACTIONS(1554), - [anon_sym_register] = ACTIONS(1554), - [anon_sym_hide] = ACTIONS(1554), - [anon_sym_hide_DASHenv] = ACTIONS(1554), - [anon_sym_overlay] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1554), - [anon_sym_as] = ACTIONS(1554), - [anon_sym_LPAREN2] = ACTIONS(1556), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1556), - [anon_sym_DOT_DOT2] = ACTIONS(1554), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1556), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1556), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1554), - [aux_sym__val_number_decimal_token2] = ACTIONS(1556), - [aux_sym__val_number_decimal_token3] = ACTIONS(1556), - [aux_sym__val_number_decimal_token4] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1556), - [aux_sym__val_number_token2] = ACTIONS(1556), - [aux_sym__val_number_token3] = ACTIONS(1556), - [sym_filesize_unit] = ACTIONS(1554), - [sym_duration_unit] = ACTIONS(1554), - [anon_sym_DQUOTE] = ACTIONS(1556), - [sym__str_single_quotes] = ACTIONS(1556), - [sym__str_back_ticks] = ACTIONS(1556), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1556), - [anon_sym_PLUS] = ACTIONS(1554), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1554), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(259), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(373), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(1723), + [anon_sym_false] = ACTIONS(1723), + [anon_sym_null] = ACTIONS(1725), + [aux_sym_cmd_identifier_token38] = ACTIONS(1727), + [aux_sym_cmd_identifier_token39] = ACTIONS(1729), + [aux_sym_cmd_identifier_token40] = ACTIONS(1729), + [sym__newline] = ACTIONS(1731), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_if] = ACTIONS(491), + [anon_sym_LBRACE] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(193), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1737), + [aux_sym__val_number_decimal_token3] = ACTIONS(1739), + [aux_sym__val_number_decimal_token4] = ACTIONS(1741), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [257] = { + [sym_path] = STATE(340), [sym_comment] = STATE(257), - [anon_sym_export] = ACTIONS(1653), - [anon_sym_alias] = ACTIONS(1653), - [anon_sym_let] = ACTIONS(1653), - [anon_sym_let_DASHenv] = ACTIONS(1653), - [anon_sym_mut] = ACTIONS(1653), - [anon_sym_const] = ACTIONS(1653), - [aux_sym_cmd_identifier_token1] = ACTIONS(1653), - [aux_sym_cmd_identifier_token2] = ACTIONS(1653), - [aux_sym_cmd_identifier_token3] = ACTIONS(1653), - [aux_sym_cmd_identifier_token4] = ACTIONS(1653), - [aux_sym_cmd_identifier_token5] = ACTIONS(1653), - [aux_sym_cmd_identifier_token6] = ACTIONS(1653), - [aux_sym_cmd_identifier_token7] = ACTIONS(1653), - [aux_sym_cmd_identifier_token8] = ACTIONS(1653), - [aux_sym_cmd_identifier_token9] = ACTIONS(1653), - [aux_sym_cmd_identifier_token10] = ACTIONS(1653), - [aux_sym_cmd_identifier_token11] = ACTIONS(1653), - [aux_sym_cmd_identifier_token12] = ACTIONS(1653), - [aux_sym_cmd_identifier_token13] = ACTIONS(1653), - [aux_sym_cmd_identifier_token14] = ACTIONS(1653), - [aux_sym_cmd_identifier_token15] = ACTIONS(1653), - [aux_sym_cmd_identifier_token16] = ACTIONS(1653), - [aux_sym_cmd_identifier_token17] = ACTIONS(1653), - [aux_sym_cmd_identifier_token18] = ACTIONS(1653), - [aux_sym_cmd_identifier_token19] = ACTIONS(1653), - [aux_sym_cmd_identifier_token20] = ACTIONS(1653), - [aux_sym_cmd_identifier_token21] = ACTIONS(1653), - [aux_sym_cmd_identifier_token22] = ACTIONS(1653), - [aux_sym_cmd_identifier_token23] = ACTIONS(1653), - [aux_sym_cmd_identifier_token24] = ACTIONS(1653), - [aux_sym_cmd_identifier_token25] = ACTIONS(1653), - [aux_sym_cmd_identifier_token26] = ACTIONS(1653), - [aux_sym_cmd_identifier_token27] = ACTIONS(1653), - [aux_sym_cmd_identifier_token28] = ACTIONS(1653), - [aux_sym_cmd_identifier_token29] = ACTIONS(1653), - [aux_sym_cmd_identifier_token30] = ACTIONS(1653), - [aux_sym_cmd_identifier_token31] = ACTIONS(1653), - [aux_sym_cmd_identifier_token32] = ACTIONS(1653), - [aux_sym_cmd_identifier_token33] = ACTIONS(1653), - [aux_sym_cmd_identifier_token34] = ACTIONS(1653), - [aux_sym_cmd_identifier_token35] = ACTIONS(1653), - [aux_sym_cmd_identifier_token36] = ACTIONS(1653), - [anon_sym_true] = ACTIONS(1655), - [anon_sym_false] = ACTIONS(1655), - [anon_sym_null] = ACTIONS(1655), - [aux_sym_cmd_identifier_token38] = ACTIONS(1653), - [aux_sym_cmd_identifier_token39] = ACTIONS(1655), - [aux_sym_cmd_identifier_token40] = ACTIONS(1655), - [anon_sym_def] = ACTIONS(1653), - [anon_sym_export_DASHenv] = ACTIONS(1653), - [anon_sym_extern] = ACTIONS(1653), - [anon_sym_module] = ACTIONS(1653), - [anon_sym_use] = ACTIONS(1653), - [anon_sym_LPAREN] = ACTIONS(1653), - [anon_sym_DOLLAR] = ACTIONS(1655), - [anon_sym_error] = ACTIONS(1653), - [anon_sym_list] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1653), - [anon_sym_break] = ACTIONS(1653), - [anon_sym_continue] = ACTIONS(1653), - [anon_sym_for] = ACTIONS(1653), - [anon_sym_in] = ACTIONS(1653), - [anon_sym_loop] = ACTIONS(1653), - [anon_sym_make] = ACTIONS(1653), - [anon_sym_while] = ACTIONS(1653), - [anon_sym_do] = ACTIONS(1653), - [anon_sym_if] = ACTIONS(1653), - [anon_sym_else] = ACTIONS(1653), - [anon_sym_match] = ACTIONS(1653), - [anon_sym_RBRACE] = ACTIONS(1655), - [anon_sym_try] = ACTIONS(1653), - [anon_sym_catch] = ACTIONS(1653), - [anon_sym_return] = ACTIONS(1653), - [anon_sym_source] = ACTIONS(1653), - [anon_sym_source_DASHenv] = ACTIONS(1653), - [anon_sym_register] = ACTIONS(1653), - [anon_sym_hide] = ACTIONS(1653), - [anon_sym_hide_DASHenv] = ACTIONS(1653), - [anon_sym_overlay] = ACTIONS(1653), - [anon_sym_new] = ACTIONS(1653), - [anon_sym_as] = ACTIONS(1653), - [anon_sym_LPAREN2] = ACTIONS(1655), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1655), - [anon_sym_DOT_DOT2] = ACTIONS(1653), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1655), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1655), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1655), - [aux_sym__val_number_decimal_token1] = ACTIONS(1653), - [aux_sym__val_number_decimal_token2] = ACTIONS(1655), - [aux_sym__val_number_decimal_token3] = ACTIONS(1655), - [aux_sym__val_number_decimal_token4] = ACTIONS(1655), - [aux_sym__val_number_token1] = ACTIONS(1655), - [aux_sym__val_number_token2] = ACTIONS(1655), - [aux_sym__val_number_token3] = ACTIONS(1655), - [sym_filesize_unit] = ACTIONS(1653), - [sym_duration_unit] = ACTIONS(1653), - [anon_sym_DQUOTE] = ACTIONS(1655), - [sym__str_single_quotes] = ACTIONS(1655), - [sym__str_back_ticks] = ACTIONS(1655), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1655), - [anon_sym_PLUS] = ACTIONS(1653), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1653), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(258), + [anon_sym_export] = ACTIONS(1027), + [anon_sym_alias] = ACTIONS(1027), + [anon_sym_let] = ACTIONS(1027), + [anon_sym_let_DASHenv] = ACTIONS(1027), + [anon_sym_mut] = ACTIONS(1027), + [anon_sym_const] = ACTIONS(1027), + [aux_sym_cmd_identifier_token1] = ACTIONS(1027), + [aux_sym_cmd_identifier_token2] = ACTIONS(1027), + [aux_sym_cmd_identifier_token3] = ACTIONS(1027), + [aux_sym_cmd_identifier_token4] = ACTIONS(1027), + [aux_sym_cmd_identifier_token5] = ACTIONS(1027), + [aux_sym_cmd_identifier_token6] = ACTIONS(1027), + [aux_sym_cmd_identifier_token7] = ACTIONS(1027), + [aux_sym_cmd_identifier_token8] = ACTIONS(1027), + [aux_sym_cmd_identifier_token9] = ACTIONS(1027), + [aux_sym_cmd_identifier_token10] = ACTIONS(1027), + [aux_sym_cmd_identifier_token11] = ACTIONS(1027), + [aux_sym_cmd_identifier_token12] = ACTIONS(1027), + [aux_sym_cmd_identifier_token13] = ACTIONS(1027), + [aux_sym_cmd_identifier_token14] = ACTIONS(1027), + [aux_sym_cmd_identifier_token15] = ACTIONS(1027), + [aux_sym_cmd_identifier_token16] = ACTIONS(1027), + [aux_sym_cmd_identifier_token17] = ACTIONS(1027), + [aux_sym_cmd_identifier_token18] = ACTIONS(1027), + [aux_sym_cmd_identifier_token19] = ACTIONS(1027), + [aux_sym_cmd_identifier_token20] = ACTIONS(1027), + [aux_sym_cmd_identifier_token21] = ACTIONS(1027), + [aux_sym_cmd_identifier_token22] = ACTIONS(1027), + [aux_sym_cmd_identifier_token23] = ACTIONS(1027), + [aux_sym_cmd_identifier_token24] = ACTIONS(1027), + [aux_sym_cmd_identifier_token25] = ACTIONS(1027), + [aux_sym_cmd_identifier_token26] = ACTIONS(1027), + [aux_sym_cmd_identifier_token27] = ACTIONS(1027), + [aux_sym_cmd_identifier_token28] = ACTIONS(1027), + [aux_sym_cmd_identifier_token29] = ACTIONS(1027), + [aux_sym_cmd_identifier_token30] = ACTIONS(1027), + [aux_sym_cmd_identifier_token31] = ACTIONS(1027), + [aux_sym_cmd_identifier_token32] = ACTIONS(1027), + [aux_sym_cmd_identifier_token33] = ACTIONS(1027), + [aux_sym_cmd_identifier_token34] = ACTIONS(1027), + [aux_sym_cmd_identifier_token35] = ACTIONS(1027), + [aux_sym_cmd_identifier_token36] = ACTIONS(1027), + [anon_sym_true] = ACTIONS(1027), + [anon_sym_false] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1027), + [aux_sym_cmd_identifier_token38] = ACTIONS(1027), + [aux_sym_cmd_identifier_token39] = ACTIONS(1027), + [aux_sym_cmd_identifier_token40] = ACTIONS(1027), + [anon_sym_def] = ACTIONS(1027), + [anon_sym_export_DASHenv] = ACTIONS(1027), + [anon_sym_extern] = ACTIONS(1027), + [anon_sym_module] = ACTIONS(1027), + [anon_sym_use] = ACTIONS(1027), + [anon_sym_LPAREN] = ACTIONS(1027), + [anon_sym_DOLLAR] = ACTIONS(1027), + [anon_sym_error] = ACTIONS(1027), + [anon_sym_list] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_break] = ACTIONS(1027), + [anon_sym_continue] = ACTIONS(1027), + [anon_sym_for] = ACTIONS(1027), + [anon_sym_in] = ACTIONS(1027), + [anon_sym_loop] = ACTIONS(1027), + [anon_sym_make] = ACTIONS(1027), + [anon_sym_while] = ACTIONS(1027), + [anon_sym_do] = ACTIONS(1027), + [anon_sym_if] = ACTIONS(1027), + [anon_sym_else] = ACTIONS(1027), + [anon_sym_match] = ACTIONS(1027), + [anon_sym_RBRACE] = ACTIONS(1027), + [anon_sym_try] = ACTIONS(1027), + [anon_sym_catch] = ACTIONS(1027), + [anon_sym_return] = ACTIONS(1027), + [anon_sym_source] = ACTIONS(1027), + [anon_sym_source_DASHenv] = ACTIONS(1027), + [anon_sym_register] = ACTIONS(1027), + [anon_sym_hide] = ACTIONS(1027), + [anon_sym_hide_DASHenv] = ACTIONS(1027), + [anon_sym_overlay] = ACTIONS(1027), + [anon_sym_new] = ACTIONS(1027), + [anon_sym_as] = ACTIONS(1027), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1027), + [anon_sym_DOT_DOT2] = ACTIONS(1027), + [anon_sym_DOT] = ACTIONS(1666), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1029), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1029), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1027), + [aux_sym__val_number_decimal_token1] = ACTIONS(1027), + [aux_sym__val_number_decimal_token2] = ACTIONS(1027), + [aux_sym__val_number_decimal_token3] = ACTIONS(1027), + [aux_sym__val_number_decimal_token4] = ACTIONS(1027), + [aux_sym__val_number_token1] = ACTIONS(1027), + [aux_sym__val_number_token2] = ACTIONS(1027), + [aux_sym__val_number_token3] = ACTIONS(1027), + [anon_sym_DQUOTE] = ACTIONS(1027), + [sym__str_single_quotes] = ACTIONS(1027), + [sym__str_back_ticks] = ACTIONS(1027), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1027), + [sym__entry_separator] = ACTIONS(1029), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1029), }, [258] = { + [sym_path] = STATE(340), [sym_comment] = STATE(258), - [aux_sym_shebang_repeat1] = STATE(314), - [aux_sym__parenthesized_body_repeat1] = STATE(254), - [anon_sym_export] = ACTIONS(1710), - [anon_sym_alias] = ACTIONS(1710), - [anon_sym_let] = ACTIONS(1710), - [anon_sym_let_DASHenv] = ACTIONS(1710), - [anon_sym_mut] = ACTIONS(1710), - [anon_sym_const] = ACTIONS(1710), - [aux_sym_cmd_identifier_token1] = ACTIONS(1710), - [aux_sym_cmd_identifier_token2] = ACTIONS(1710), - [aux_sym_cmd_identifier_token3] = ACTIONS(1710), - [aux_sym_cmd_identifier_token4] = ACTIONS(1710), - [aux_sym_cmd_identifier_token5] = ACTIONS(1710), - [aux_sym_cmd_identifier_token6] = ACTIONS(1710), - [aux_sym_cmd_identifier_token7] = ACTIONS(1710), - [aux_sym_cmd_identifier_token8] = ACTIONS(1710), - [aux_sym_cmd_identifier_token9] = ACTIONS(1710), - [aux_sym_cmd_identifier_token10] = ACTIONS(1710), - [aux_sym_cmd_identifier_token11] = ACTIONS(1710), - [aux_sym_cmd_identifier_token12] = ACTIONS(1710), - [aux_sym_cmd_identifier_token13] = ACTIONS(1710), - [aux_sym_cmd_identifier_token14] = ACTIONS(1710), - [aux_sym_cmd_identifier_token15] = ACTIONS(1710), - [aux_sym_cmd_identifier_token16] = ACTIONS(1710), - [aux_sym_cmd_identifier_token17] = ACTIONS(1710), - [aux_sym_cmd_identifier_token18] = ACTIONS(1710), - [aux_sym_cmd_identifier_token19] = ACTIONS(1710), - [aux_sym_cmd_identifier_token20] = ACTIONS(1710), - [aux_sym_cmd_identifier_token21] = ACTIONS(1710), - [aux_sym_cmd_identifier_token22] = ACTIONS(1710), - [aux_sym_cmd_identifier_token23] = ACTIONS(1710), - [aux_sym_cmd_identifier_token24] = ACTIONS(1712), - [aux_sym_cmd_identifier_token25] = ACTIONS(1710), - [aux_sym_cmd_identifier_token26] = ACTIONS(1712), - [aux_sym_cmd_identifier_token27] = ACTIONS(1710), - [aux_sym_cmd_identifier_token28] = ACTIONS(1710), - [aux_sym_cmd_identifier_token29] = ACTIONS(1710), - [aux_sym_cmd_identifier_token30] = ACTIONS(1710), - [aux_sym_cmd_identifier_token31] = ACTIONS(1712), - [aux_sym_cmd_identifier_token32] = ACTIONS(1712), - [aux_sym_cmd_identifier_token33] = ACTIONS(1712), - [aux_sym_cmd_identifier_token34] = ACTIONS(1712), - [aux_sym_cmd_identifier_token35] = ACTIONS(1712), - [aux_sym_cmd_identifier_token36] = ACTIONS(1710), - [anon_sym_true] = ACTIONS(1712), - [anon_sym_false] = ACTIONS(1712), - [anon_sym_null] = ACTIONS(1712), - [aux_sym_cmd_identifier_token38] = ACTIONS(1710), - [aux_sym_cmd_identifier_token39] = ACTIONS(1712), - [aux_sym_cmd_identifier_token40] = ACTIONS(1712), - [sym__newline] = ACTIONS(1714), - [anon_sym_SEMI] = ACTIONS(1716), - [anon_sym_def] = ACTIONS(1710), - [anon_sym_export_DASHenv] = ACTIONS(1710), - [anon_sym_extern] = ACTIONS(1710), - [anon_sym_module] = ACTIONS(1710), - [anon_sym_use] = ACTIONS(1710), - [anon_sym_LBRACK] = ACTIONS(1712), - [anon_sym_LPAREN] = ACTIONS(1712), - [anon_sym_DOLLAR] = ACTIONS(1710), - [anon_sym_error] = ACTIONS(1710), - [anon_sym_DASH] = ACTIONS(1710), - [anon_sym_break] = ACTIONS(1710), - [anon_sym_continue] = ACTIONS(1710), - [anon_sym_for] = ACTIONS(1710), - [anon_sym_loop] = ACTIONS(1710), - [anon_sym_while] = ACTIONS(1710), - [anon_sym_do] = ACTIONS(1710), - [anon_sym_if] = ACTIONS(1710), - [anon_sym_match] = ACTIONS(1710), - [anon_sym_LBRACE] = ACTIONS(1712), - [anon_sym_DOT_DOT] = ACTIONS(1710), - [anon_sym_try] = ACTIONS(1710), - [anon_sym_return] = ACTIONS(1710), - [anon_sym_source] = ACTIONS(1710), - [anon_sym_source_DASHenv] = ACTIONS(1710), - [anon_sym_register] = ACTIONS(1710), - [anon_sym_hide] = ACTIONS(1710), - [anon_sym_hide_DASHenv] = ACTIONS(1710), - [anon_sym_overlay] = ACTIONS(1710), - [anon_sym_where] = ACTIONS(1712), - [aux_sym_expr_unary_token1] = ACTIONS(1712), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1712), - [anon_sym_DOT_DOT_LT] = ACTIONS(1712), - [aux_sym__val_number_decimal_token1] = ACTIONS(1710), - [aux_sym__val_number_decimal_token2] = ACTIONS(1712), - [aux_sym__val_number_decimal_token3] = ACTIONS(1712), - [aux_sym__val_number_decimal_token4] = ACTIONS(1712), - [aux_sym__val_number_token1] = ACTIONS(1712), - [aux_sym__val_number_token2] = ACTIONS(1712), - [aux_sym__val_number_token3] = ACTIONS(1712), - [anon_sym_0b] = ACTIONS(1710), - [anon_sym_0o] = ACTIONS(1710), - [anon_sym_0x] = ACTIONS(1710), - [sym_val_date] = ACTIONS(1712), - [anon_sym_DQUOTE] = ACTIONS(1712), - [sym__str_single_quotes] = ACTIONS(1712), - [sym__str_back_ticks] = ACTIONS(1712), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1712), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1712), - [aux_sym_env_var_token1] = ACTIONS(1710), - [anon_sym_CARET] = ACTIONS(1712), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(258), + [anon_sym_export] = ACTIONS(1031), + [anon_sym_alias] = ACTIONS(1031), + [anon_sym_let] = ACTIONS(1031), + [anon_sym_let_DASHenv] = ACTIONS(1031), + [anon_sym_mut] = ACTIONS(1031), + [anon_sym_const] = ACTIONS(1031), + [aux_sym_cmd_identifier_token1] = ACTIONS(1031), + [aux_sym_cmd_identifier_token2] = ACTIONS(1031), + [aux_sym_cmd_identifier_token3] = ACTIONS(1031), + [aux_sym_cmd_identifier_token4] = ACTIONS(1031), + [aux_sym_cmd_identifier_token5] = ACTIONS(1031), + [aux_sym_cmd_identifier_token6] = ACTIONS(1031), + [aux_sym_cmd_identifier_token7] = ACTIONS(1031), + [aux_sym_cmd_identifier_token8] = ACTIONS(1031), + [aux_sym_cmd_identifier_token9] = ACTIONS(1031), + [aux_sym_cmd_identifier_token10] = ACTIONS(1031), + [aux_sym_cmd_identifier_token11] = ACTIONS(1031), + [aux_sym_cmd_identifier_token12] = ACTIONS(1031), + [aux_sym_cmd_identifier_token13] = ACTIONS(1031), + [aux_sym_cmd_identifier_token14] = ACTIONS(1031), + [aux_sym_cmd_identifier_token15] = ACTIONS(1031), + [aux_sym_cmd_identifier_token16] = ACTIONS(1031), + [aux_sym_cmd_identifier_token17] = ACTIONS(1031), + [aux_sym_cmd_identifier_token18] = ACTIONS(1031), + [aux_sym_cmd_identifier_token19] = ACTIONS(1031), + [aux_sym_cmd_identifier_token20] = ACTIONS(1031), + [aux_sym_cmd_identifier_token21] = ACTIONS(1031), + [aux_sym_cmd_identifier_token22] = ACTIONS(1031), + [aux_sym_cmd_identifier_token23] = ACTIONS(1031), + [aux_sym_cmd_identifier_token24] = ACTIONS(1031), + [aux_sym_cmd_identifier_token25] = ACTIONS(1031), + [aux_sym_cmd_identifier_token26] = ACTIONS(1031), + [aux_sym_cmd_identifier_token27] = ACTIONS(1031), + [aux_sym_cmd_identifier_token28] = ACTIONS(1031), + [aux_sym_cmd_identifier_token29] = ACTIONS(1031), + [aux_sym_cmd_identifier_token30] = ACTIONS(1031), + [aux_sym_cmd_identifier_token31] = ACTIONS(1031), + [aux_sym_cmd_identifier_token32] = ACTIONS(1031), + [aux_sym_cmd_identifier_token33] = ACTIONS(1031), + [aux_sym_cmd_identifier_token34] = ACTIONS(1031), + [aux_sym_cmd_identifier_token35] = ACTIONS(1031), + [aux_sym_cmd_identifier_token36] = ACTIONS(1031), + [anon_sym_true] = ACTIONS(1031), + [anon_sym_false] = ACTIONS(1031), + [anon_sym_null] = ACTIONS(1031), + [aux_sym_cmd_identifier_token38] = ACTIONS(1031), + [aux_sym_cmd_identifier_token39] = ACTIONS(1031), + [aux_sym_cmd_identifier_token40] = ACTIONS(1031), + [anon_sym_def] = ACTIONS(1031), + [anon_sym_export_DASHenv] = ACTIONS(1031), + [anon_sym_extern] = ACTIONS(1031), + [anon_sym_module] = ACTIONS(1031), + [anon_sym_use] = ACTIONS(1031), + [anon_sym_LPAREN] = ACTIONS(1031), + [anon_sym_DOLLAR] = ACTIONS(1031), + [anon_sym_error] = ACTIONS(1031), + [anon_sym_list] = ACTIONS(1031), + [anon_sym_DASH] = ACTIONS(1031), + [anon_sym_break] = ACTIONS(1031), + [anon_sym_continue] = ACTIONS(1031), + [anon_sym_for] = ACTIONS(1031), + [anon_sym_in] = ACTIONS(1031), + [anon_sym_loop] = ACTIONS(1031), + [anon_sym_make] = ACTIONS(1031), + [anon_sym_while] = ACTIONS(1031), + [anon_sym_do] = ACTIONS(1031), + [anon_sym_if] = ACTIONS(1031), + [anon_sym_else] = ACTIONS(1031), + [anon_sym_match] = ACTIONS(1031), + [anon_sym_RBRACE] = ACTIONS(1031), + [anon_sym_try] = ACTIONS(1031), + [anon_sym_catch] = ACTIONS(1031), + [anon_sym_return] = ACTIONS(1031), + [anon_sym_source] = ACTIONS(1031), + [anon_sym_source_DASHenv] = ACTIONS(1031), + [anon_sym_register] = ACTIONS(1031), + [anon_sym_hide] = ACTIONS(1031), + [anon_sym_hide_DASHenv] = ACTIONS(1031), + [anon_sym_overlay] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1031), + [anon_sym_as] = ACTIONS(1031), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1031), + [anon_sym_DOT_DOT2] = ACTIONS(1031), + [anon_sym_DOT] = ACTIONS(1747), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1033), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1033), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1031), + [aux_sym__val_number_decimal_token1] = ACTIONS(1031), + [aux_sym__val_number_decimal_token2] = ACTIONS(1031), + [aux_sym__val_number_decimal_token3] = ACTIONS(1031), + [aux_sym__val_number_decimal_token4] = ACTIONS(1031), + [aux_sym__val_number_token1] = ACTIONS(1031), + [aux_sym__val_number_token2] = ACTIONS(1031), + [aux_sym__val_number_token3] = ACTIONS(1031), + [anon_sym_DQUOTE] = ACTIONS(1031), + [sym__str_single_quotes] = ACTIONS(1031), + [sym__str_back_ticks] = ACTIONS(1031), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1031), + [sym__entry_separator] = ACTIONS(1033), + [anon_sym_PLUS] = ACTIONS(1031), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1033), }, [259] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5220), + [sym_block] = STATE(5062), + [sym__expression_parenthesized] = STATE(5062), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3839), + [sym_expr_parenthesized] = STATE(2053), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(2028), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3132), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_command] = STATE(5062), [sym_comment] = STATE(259), - [anon_sym_export] = ACTIONS(1667), - [anon_sym_alias] = ACTIONS(1667), - [anon_sym_let] = ACTIONS(1667), - [anon_sym_let_DASHenv] = ACTIONS(1667), - [anon_sym_mut] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1667), - [aux_sym_cmd_identifier_token1] = ACTIONS(1667), - [aux_sym_cmd_identifier_token2] = ACTIONS(1667), - [aux_sym_cmd_identifier_token3] = ACTIONS(1667), - [aux_sym_cmd_identifier_token4] = ACTIONS(1667), - [aux_sym_cmd_identifier_token5] = ACTIONS(1667), - [aux_sym_cmd_identifier_token6] = ACTIONS(1667), - [aux_sym_cmd_identifier_token7] = ACTIONS(1667), - [aux_sym_cmd_identifier_token8] = ACTIONS(1667), - [aux_sym_cmd_identifier_token9] = ACTIONS(1667), - [aux_sym_cmd_identifier_token10] = ACTIONS(1667), - [aux_sym_cmd_identifier_token11] = ACTIONS(1667), - [aux_sym_cmd_identifier_token12] = ACTIONS(1667), - [aux_sym_cmd_identifier_token13] = ACTIONS(1667), - [aux_sym_cmd_identifier_token14] = ACTIONS(1667), - [aux_sym_cmd_identifier_token15] = ACTIONS(1667), - [aux_sym_cmd_identifier_token16] = ACTIONS(1667), - [aux_sym_cmd_identifier_token17] = ACTIONS(1667), - [aux_sym_cmd_identifier_token18] = ACTIONS(1667), - [aux_sym_cmd_identifier_token19] = ACTIONS(1667), - [aux_sym_cmd_identifier_token20] = ACTIONS(1667), - [aux_sym_cmd_identifier_token21] = ACTIONS(1667), - [aux_sym_cmd_identifier_token22] = ACTIONS(1667), - [aux_sym_cmd_identifier_token23] = ACTIONS(1667), - [aux_sym_cmd_identifier_token24] = ACTIONS(1667), - [aux_sym_cmd_identifier_token25] = ACTIONS(1667), - [aux_sym_cmd_identifier_token26] = ACTIONS(1667), - [aux_sym_cmd_identifier_token27] = ACTIONS(1667), - [aux_sym_cmd_identifier_token28] = ACTIONS(1667), - [aux_sym_cmd_identifier_token29] = ACTIONS(1667), - [aux_sym_cmd_identifier_token30] = ACTIONS(1667), - [aux_sym_cmd_identifier_token31] = ACTIONS(1667), - [aux_sym_cmd_identifier_token32] = ACTIONS(1667), - [aux_sym_cmd_identifier_token33] = ACTIONS(1667), - [aux_sym_cmd_identifier_token34] = ACTIONS(1667), - [aux_sym_cmd_identifier_token35] = ACTIONS(1667), - [aux_sym_cmd_identifier_token36] = ACTIONS(1667), - [anon_sym_true] = ACTIONS(1667), - [anon_sym_false] = ACTIONS(1667), - [anon_sym_null] = ACTIONS(1667), - [aux_sym_cmd_identifier_token38] = ACTIONS(1667), - [aux_sym_cmd_identifier_token39] = ACTIONS(1667), - [aux_sym_cmd_identifier_token40] = ACTIONS(1667), - [anon_sym_def] = ACTIONS(1667), - [anon_sym_export_DASHenv] = ACTIONS(1667), - [anon_sym_extern] = ACTIONS(1667), - [anon_sym_module] = ACTIONS(1667), - [anon_sym_use] = ACTIONS(1667), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_DOLLAR] = ACTIONS(1667), - [anon_sym_error] = ACTIONS(1667), - [anon_sym_list] = ACTIONS(1667), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_break] = ACTIONS(1667), - [anon_sym_continue] = ACTIONS(1667), - [anon_sym_for] = ACTIONS(1667), - [anon_sym_in] = ACTIONS(1667), - [anon_sym_loop] = ACTIONS(1667), - [anon_sym_make] = ACTIONS(1667), - [anon_sym_while] = ACTIONS(1667), - [anon_sym_do] = ACTIONS(1667), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_else] = ACTIONS(1667), - [anon_sym_match] = ACTIONS(1667), - [anon_sym_RBRACE] = ACTIONS(1667), - [anon_sym_try] = ACTIONS(1667), - [anon_sym_catch] = ACTIONS(1667), - [anon_sym_return] = ACTIONS(1667), - [anon_sym_source] = ACTIONS(1667), - [anon_sym_source_DASHenv] = ACTIONS(1667), - [anon_sym_register] = ACTIONS(1667), - [anon_sym_hide] = ACTIONS(1667), - [anon_sym_hide_DASHenv] = ACTIONS(1667), - [anon_sym_overlay] = ACTIONS(1667), - [anon_sym_new] = ACTIONS(1667), - [anon_sym_as] = ACTIONS(1667), - [anon_sym_LPAREN2] = ACTIONS(1669), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1667), - [anon_sym_DOT_DOT2] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [aux_sym__immediate_decimal_token2] = ACTIONS(1673), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1667), - [aux_sym__val_number_decimal_token1] = ACTIONS(1667), - [aux_sym__val_number_decimal_token2] = ACTIONS(1667), - [aux_sym__val_number_decimal_token3] = ACTIONS(1667), - [aux_sym__val_number_decimal_token4] = ACTIONS(1667), - [aux_sym__val_number_token1] = ACTIONS(1667), - [aux_sym__val_number_token2] = ACTIONS(1667), - [aux_sym__val_number_token3] = ACTIONS(1667), - [anon_sym_DQUOTE] = ACTIONS(1667), - [sym__str_single_quotes] = ACTIONS(1667), - [sym__str_back_ticks] = ACTIONS(1667), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1667), - [sym__entry_separator] = ACTIONS(1669), - [anon_sym_PLUS] = ACTIONS(1667), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(1079), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(373), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(1723), + [anon_sym_false] = ACTIONS(1723), + [anon_sym_null] = ACTIONS(1725), + [aux_sym_cmd_identifier_token38] = ACTIONS(1727), + [aux_sym_cmd_identifier_token39] = ACTIONS(1729), + [aux_sym_cmd_identifier_token40] = ACTIONS(1729), + [sym__newline] = ACTIONS(1731), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_if] = ACTIONS(491), + [anon_sym_LBRACE] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(193), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1737), + [aux_sym__val_number_decimal_token3] = ACTIONS(1739), + [aux_sym__val_number_decimal_token4] = ACTIONS(1741), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [260] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5220), + [sym_block] = STATE(5062), + [sym__expression_parenthesized] = STATE(5062), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3839), + [sym_expr_parenthesized] = STATE(2053), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(2028), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3132), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_command] = STATE(5062), [sym_comment] = STATE(260), - [aux_sym__block_body_repeat1] = STATE(260), - [ts_builtin_sym_end] = ACTIONS(1636), - [anon_sym_export] = ACTIONS(1634), - [anon_sym_alias] = ACTIONS(1634), - [anon_sym_let] = ACTIONS(1634), - [anon_sym_let_DASHenv] = ACTIONS(1634), - [anon_sym_mut] = ACTIONS(1634), - [anon_sym_const] = ACTIONS(1634), - [aux_sym_cmd_identifier_token1] = ACTIONS(1634), - [aux_sym_cmd_identifier_token2] = ACTIONS(1634), - [aux_sym_cmd_identifier_token3] = ACTIONS(1634), - [aux_sym_cmd_identifier_token4] = ACTIONS(1634), - [aux_sym_cmd_identifier_token5] = ACTIONS(1634), - [aux_sym_cmd_identifier_token6] = ACTIONS(1634), - [aux_sym_cmd_identifier_token7] = ACTIONS(1634), - [aux_sym_cmd_identifier_token8] = ACTIONS(1634), - [aux_sym_cmd_identifier_token9] = ACTIONS(1634), - [aux_sym_cmd_identifier_token10] = ACTIONS(1634), - [aux_sym_cmd_identifier_token11] = ACTIONS(1634), - [aux_sym_cmd_identifier_token12] = ACTIONS(1634), - [aux_sym_cmd_identifier_token13] = ACTIONS(1634), - [aux_sym_cmd_identifier_token14] = ACTIONS(1634), - [aux_sym_cmd_identifier_token15] = ACTIONS(1634), - [aux_sym_cmd_identifier_token16] = ACTIONS(1634), - [aux_sym_cmd_identifier_token17] = ACTIONS(1634), - [aux_sym_cmd_identifier_token18] = ACTIONS(1634), - [aux_sym_cmd_identifier_token19] = ACTIONS(1634), - [aux_sym_cmd_identifier_token20] = ACTIONS(1634), - [aux_sym_cmd_identifier_token21] = ACTIONS(1634), - [aux_sym_cmd_identifier_token22] = ACTIONS(1634), - [aux_sym_cmd_identifier_token23] = ACTIONS(1634), - [aux_sym_cmd_identifier_token24] = ACTIONS(1636), - [aux_sym_cmd_identifier_token25] = ACTIONS(1634), - [aux_sym_cmd_identifier_token26] = ACTIONS(1636), - [aux_sym_cmd_identifier_token27] = ACTIONS(1634), - [aux_sym_cmd_identifier_token28] = ACTIONS(1634), - [aux_sym_cmd_identifier_token29] = ACTIONS(1634), - [aux_sym_cmd_identifier_token30] = ACTIONS(1634), - [aux_sym_cmd_identifier_token31] = ACTIONS(1636), - [aux_sym_cmd_identifier_token32] = ACTIONS(1636), - [aux_sym_cmd_identifier_token33] = ACTIONS(1636), - [aux_sym_cmd_identifier_token34] = ACTIONS(1636), - [aux_sym_cmd_identifier_token35] = ACTIONS(1636), - [aux_sym_cmd_identifier_token36] = ACTIONS(1634), - [anon_sym_true] = ACTIONS(1636), - [anon_sym_false] = ACTIONS(1636), - [anon_sym_null] = ACTIONS(1636), - [aux_sym_cmd_identifier_token38] = ACTIONS(1634), - [aux_sym_cmd_identifier_token39] = ACTIONS(1636), - [aux_sym_cmd_identifier_token40] = ACTIONS(1636), - [sym__newline] = ACTIONS(1718), - [anon_sym_SEMI] = ACTIONS(1718), - [anon_sym_def] = ACTIONS(1634), - [anon_sym_export_DASHenv] = ACTIONS(1634), - [anon_sym_extern] = ACTIONS(1634), - [anon_sym_module] = ACTIONS(1634), - [anon_sym_use] = ACTIONS(1634), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LPAREN] = ACTIONS(1636), - [anon_sym_DOLLAR] = ACTIONS(1634), - [anon_sym_error] = ACTIONS(1634), - [anon_sym_DASH] = ACTIONS(1634), - [anon_sym_break] = ACTIONS(1634), - [anon_sym_continue] = ACTIONS(1634), - [anon_sym_for] = ACTIONS(1634), - [anon_sym_loop] = ACTIONS(1634), - [anon_sym_while] = ACTIONS(1634), - [anon_sym_do] = ACTIONS(1634), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_match] = ACTIONS(1634), - [anon_sym_LBRACE] = ACTIONS(1636), - [anon_sym_DOT_DOT] = ACTIONS(1634), - [anon_sym_try] = ACTIONS(1634), - [anon_sym_return] = ACTIONS(1634), - [anon_sym_source] = ACTIONS(1634), - [anon_sym_source_DASHenv] = ACTIONS(1634), - [anon_sym_register] = ACTIONS(1634), - [anon_sym_hide] = ACTIONS(1634), - [anon_sym_hide_DASHenv] = ACTIONS(1634), - [anon_sym_overlay] = ACTIONS(1634), - [anon_sym_where] = ACTIONS(1636), - [aux_sym_expr_unary_token1] = ACTIONS(1636), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1636), - [anon_sym_DOT_DOT_LT] = ACTIONS(1636), - [aux_sym__val_number_decimal_token1] = ACTIONS(1634), - [aux_sym__val_number_decimal_token2] = ACTIONS(1636), - [aux_sym__val_number_decimal_token3] = ACTIONS(1636), - [aux_sym__val_number_decimal_token4] = ACTIONS(1636), - [aux_sym__val_number_token1] = ACTIONS(1636), - [aux_sym__val_number_token2] = ACTIONS(1636), - [aux_sym__val_number_token3] = ACTIONS(1636), - [anon_sym_0b] = ACTIONS(1634), - [anon_sym_0o] = ACTIONS(1634), - [anon_sym_0x] = ACTIONS(1634), - [sym_val_date] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(1636), - [sym__str_single_quotes] = ACTIONS(1636), - [sym__str_back_ticks] = ACTIONS(1636), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1636), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1636), - [aux_sym_env_var_token1] = ACTIONS(1634), - [anon_sym_CARET] = ACTIONS(1636), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(264), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(373), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(1723), + [anon_sym_false] = ACTIONS(1723), + [anon_sym_null] = ACTIONS(1725), + [aux_sym_cmd_identifier_token38] = ACTIONS(1727), + [aux_sym_cmd_identifier_token39] = ACTIONS(1729), + [aux_sym_cmd_identifier_token40] = ACTIONS(1729), + [sym__newline] = ACTIONS(1731), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_if] = ACTIONS(491), + [anon_sym_LBRACE] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(193), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1737), + [aux_sym__val_number_decimal_token3] = ACTIONS(1739), + [aux_sym__val_number_decimal_token4] = ACTIONS(1741), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [261] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5063), + [sym_block] = STATE(5064), + [sym__expression_parenthesized] = STATE(5064), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3839), + [sym_expr_parenthesized] = STATE(2053), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(2028), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3132), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_command] = STATE(5064), [sym_comment] = STATE(261), - [aux_sym__block_body_repeat1] = STATE(260), - [ts_builtin_sym_end] = ACTIONS(1689), - [anon_sym_export] = ACTIONS(1647), - [anon_sym_alias] = ACTIONS(1647), - [anon_sym_let] = ACTIONS(1647), - [anon_sym_let_DASHenv] = ACTIONS(1647), - [anon_sym_mut] = ACTIONS(1647), - [anon_sym_const] = ACTIONS(1647), - [aux_sym_cmd_identifier_token1] = ACTIONS(1647), - [aux_sym_cmd_identifier_token2] = ACTIONS(1647), - [aux_sym_cmd_identifier_token3] = ACTIONS(1647), - [aux_sym_cmd_identifier_token4] = ACTIONS(1647), - [aux_sym_cmd_identifier_token5] = ACTIONS(1647), - [aux_sym_cmd_identifier_token6] = ACTIONS(1647), - [aux_sym_cmd_identifier_token7] = ACTIONS(1647), - [aux_sym_cmd_identifier_token8] = ACTIONS(1647), - [aux_sym_cmd_identifier_token9] = ACTIONS(1647), - [aux_sym_cmd_identifier_token10] = ACTIONS(1647), - [aux_sym_cmd_identifier_token11] = ACTIONS(1647), - [aux_sym_cmd_identifier_token12] = ACTIONS(1647), - [aux_sym_cmd_identifier_token13] = ACTIONS(1647), - [aux_sym_cmd_identifier_token14] = ACTIONS(1647), - [aux_sym_cmd_identifier_token15] = ACTIONS(1647), - [aux_sym_cmd_identifier_token16] = ACTIONS(1647), - [aux_sym_cmd_identifier_token17] = ACTIONS(1647), - [aux_sym_cmd_identifier_token18] = ACTIONS(1647), - [aux_sym_cmd_identifier_token19] = ACTIONS(1647), - [aux_sym_cmd_identifier_token20] = ACTIONS(1647), - [aux_sym_cmd_identifier_token21] = ACTIONS(1647), - [aux_sym_cmd_identifier_token22] = ACTIONS(1647), - [aux_sym_cmd_identifier_token23] = ACTIONS(1647), - [aux_sym_cmd_identifier_token24] = ACTIONS(1649), - [aux_sym_cmd_identifier_token25] = ACTIONS(1647), - [aux_sym_cmd_identifier_token26] = ACTIONS(1649), - [aux_sym_cmd_identifier_token27] = ACTIONS(1647), - [aux_sym_cmd_identifier_token28] = ACTIONS(1647), - [aux_sym_cmd_identifier_token29] = ACTIONS(1647), - [aux_sym_cmd_identifier_token30] = ACTIONS(1647), - [aux_sym_cmd_identifier_token31] = ACTIONS(1649), - [aux_sym_cmd_identifier_token32] = ACTIONS(1649), - [aux_sym_cmd_identifier_token33] = ACTIONS(1649), - [aux_sym_cmd_identifier_token34] = ACTIONS(1649), - [aux_sym_cmd_identifier_token35] = ACTIONS(1649), - [aux_sym_cmd_identifier_token36] = ACTIONS(1647), - [anon_sym_true] = ACTIONS(1649), - [anon_sym_false] = ACTIONS(1649), - [anon_sym_null] = ACTIONS(1649), - [aux_sym_cmd_identifier_token38] = ACTIONS(1647), - [aux_sym_cmd_identifier_token39] = ACTIONS(1649), - [aux_sym_cmd_identifier_token40] = ACTIONS(1649), - [sym__newline] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_def] = ACTIONS(1647), - [anon_sym_export_DASHenv] = ACTIONS(1647), - [anon_sym_extern] = ACTIONS(1647), - [anon_sym_module] = ACTIONS(1647), - [anon_sym_use] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_LPAREN] = ACTIONS(1649), - [anon_sym_DOLLAR] = ACTIONS(1647), - [anon_sym_error] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_break] = ACTIONS(1647), - [anon_sym_continue] = ACTIONS(1647), - [anon_sym_for] = ACTIONS(1647), - [anon_sym_loop] = ACTIONS(1647), - [anon_sym_while] = ACTIONS(1647), - [anon_sym_do] = ACTIONS(1647), - [anon_sym_if] = ACTIONS(1647), - [anon_sym_match] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(1649), - [anon_sym_DOT_DOT] = ACTIONS(1647), - [anon_sym_try] = ACTIONS(1647), - [anon_sym_return] = ACTIONS(1647), - [anon_sym_source] = ACTIONS(1647), - [anon_sym_source_DASHenv] = ACTIONS(1647), - [anon_sym_register] = ACTIONS(1647), - [anon_sym_hide] = ACTIONS(1647), - [anon_sym_hide_DASHenv] = ACTIONS(1647), - [anon_sym_overlay] = ACTIONS(1647), - [anon_sym_where] = ACTIONS(1649), - [aux_sym_expr_unary_token1] = ACTIONS(1649), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1649), - [anon_sym_DOT_DOT_LT] = ACTIONS(1649), - [aux_sym__val_number_decimal_token1] = ACTIONS(1647), - [aux_sym__val_number_decimal_token2] = ACTIONS(1649), - [aux_sym__val_number_decimal_token3] = ACTIONS(1649), - [aux_sym__val_number_decimal_token4] = ACTIONS(1649), - [aux_sym__val_number_token1] = ACTIONS(1649), - [aux_sym__val_number_token2] = ACTIONS(1649), - [aux_sym__val_number_token3] = ACTIONS(1649), - [anon_sym_0b] = ACTIONS(1647), - [anon_sym_0o] = ACTIONS(1647), - [anon_sym_0x] = ACTIONS(1647), - [sym_val_date] = ACTIONS(1649), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym__str_single_quotes] = ACTIONS(1649), - [sym__str_back_ticks] = ACTIONS(1649), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1649), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1649), - [aux_sym_env_var_token1] = ACTIONS(1647), - [anon_sym_CARET] = ACTIONS(1649), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(266), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(373), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(1723), + [anon_sym_false] = ACTIONS(1723), + [anon_sym_null] = ACTIONS(1725), + [aux_sym_cmd_identifier_token38] = ACTIONS(1727), + [aux_sym_cmd_identifier_token39] = ACTIONS(1729), + [aux_sym_cmd_identifier_token40] = ACTIONS(1729), + [sym__newline] = ACTIONS(1731), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_if] = ACTIONS(491), + [anon_sym_LBRACE] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(193), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1737), + [aux_sym__val_number_decimal_token3] = ACTIONS(1739), + [aux_sym__val_number_decimal_token4] = ACTIONS(1741), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [262] = { [sym_comment] = STATE(262), - [anon_sym_export] = ACTIONS(1721), - [anon_sym_alias] = ACTIONS(1721), - [anon_sym_let] = ACTIONS(1721), - [anon_sym_let_DASHenv] = ACTIONS(1721), - [anon_sym_mut] = ACTIONS(1721), - [anon_sym_const] = ACTIONS(1721), - [aux_sym_cmd_identifier_token1] = ACTIONS(1721), - [aux_sym_cmd_identifier_token2] = ACTIONS(1721), - [aux_sym_cmd_identifier_token3] = ACTIONS(1721), - [aux_sym_cmd_identifier_token4] = ACTIONS(1721), - [aux_sym_cmd_identifier_token5] = ACTIONS(1721), - [aux_sym_cmd_identifier_token6] = ACTIONS(1721), - [aux_sym_cmd_identifier_token7] = ACTIONS(1721), - [aux_sym_cmd_identifier_token8] = ACTIONS(1721), - [aux_sym_cmd_identifier_token9] = ACTIONS(1721), - [aux_sym_cmd_identifier_token10] = ACTIONS(1721), - [aux_sym_cmd_identifier_token11] = ACTIONS(1721), - [aux_sym_cmd_identifier_token12] = ACTIONS(1721), - [aux_sym_cmd_identifier_token13] = ACTIONS(1721), - [aux_sym_cmd_identifier_token14] = ACTIONS(1721), - [aux_sym_cmd_identifier_token15] = ACTIONS(1721), - [aux_sym_cmd_identifier_token16] = ACTIONS(1721), - [aux_sym_cmd_identifier_token17] = ACTIONS(1721), - [aux_sym_cmd_identifier_token18] = ACTIONS(1721), - [aux_sym_cmd_identifier_token19] = ACTIONS(1721), - [aux_sym_cmd_identifier_token20] = ACTIONS(1721), - [aux_sym_cmd_identifier_token21] = ACTIONS(1721), - [aux_sym_cmd_identifier_token22] = ACTIONS(1721), - [aux_sym_cmd_identifier_token23] = ACTIONS(1721), - [aux_sym_cmd_identifier_token24] = ACTIONS(1721), - [aux_sym_cmd_identifier_token25] = ACTIONS(1721), - [aux_sym_cmd_identifier_token26] = ACTIONS(1721), - [aux_sym_cmd_identifier_token27] = ACTIONS(1721), - [aux_sym_cmd_identifier_token28] = ACTIONS(1721), - [aux_sym_cmd_identifier_token29] = ACTIONS(1721), - [aux_sym_cmd_identifier_token30] = ACTIONS(1721), - [aux_sym_cmd_identifier_token31] = ACTIONS(1721), - [aux_sym_cmd_identifier_token32] = ACTIONS(1721), - [aux_sym_cmd_identifier_token33] = ACTIONS(1721), - [aux_sym_cmd_identifier_token34] = ACTIONS(1721), - [aux_sym_cmd_identifier_token35] = ACTIONS(1721), - [aux_sym_cmd_identifier_token36] = ACTIONS(1721), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [anon_sym_null] = ACTIONS(1721), - [aux_sym_cmd_identifier_token38] = ACTIONS(1721), - [aux_sym_cmd_identifier_token39] = ACTIONS(1721), - [aux_sym_cmd_identifier_token40] = ACTIONS(1721), - [anon_sym_def] = ACTIONS(1721), - [anon_sym_export_DASHenv] = ACTIONS(1721), - [anon_sym_extern] = ACTIONS(1721), - [anon_sym_module] = ACTIONS(1721), - [anon_sym_use] = ACTIONS(1721), - [anon_sym_LPAREN] = ACTIONS(1721), - [anon_sym_DOLLAR] = ACTIONS(1721), - [anon_sym_error] = ACTIONS(1721), - [anon_sym_list] = ACTIONS(1721), - [anon_sym_DASH] = ACTIONS(1721), - [anon_sym_break] = ACTIONS(1721), - [anon_sym_continue] = ACTIONS(1721), - [anon_sym_for] = ACTIONS(1721), - [anon_sym_in] = ACTIONS(1721), - [anon_sym_loop] = ACTIONS(1721), - [anon_sym_make] = ACTIONS(1721), - [anon_sym_while] = ACTIONS(1721), - [anon_sym_do] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1721), - [anon_sym_else] = ACTIONS(1721), - [anon_sym_match] = ACTIONS(1721), - [anon_sym_RBRACE] = ACTIONS(1721), - [anon_sym_try] = ACTIONS(1721), - [anon_sym_catch] = ACTIONS(1721), - [anon_sym_return] = ACTIONS(1721), - [anon_sym_source] = ACTIONS(1721), - [anon_sym_source_DASHenv] = ACTIONS(1721), - [anon_sym_register] = ACTIONS(1721), - [anon_sym_hide] = ACTIONS(1721), - [anon_sym_hide_DASHenv] = ACTIONS(1721), - [anon_sym_overlay] = ACTIONS(1721), - [anon_sym_new] = ACTIONS(1721), - [anon_sym_as] = ACTIONS(1721), - [anon_sym_LPAREN2] = ACTIONS(1723), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1721), - [anon_sym_DOT_DOT2] = ACTIONS(1721), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1723), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1723), - [aux_sym__immediate_decimal_token2] = ACTIONS(1725), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1721), - [aux_sym__val_number_decimal_token1] = ACTIONS(1721), - [aux_sym__val_number_decimal_token2] = ACTIONS(1721), - [aux_sym__val_number_decimal_token3] = ACTIONS(1721), - [aux_sym__val_number_decimal_token4] = ACTIONS(1721), - [aux_sym__val_number_token1] = ACTIONS(1721), - [aux_sym__val_number_token2] = ACTIONS(1721), - [aux_sym__val_number_token3] = ACTIONS(1721), - [anon_sym_DQUOTE] = ACTIONS(1721), - [sym__str_single_quotes] = ACTIONS(1721), - [sym__str_back_ticks] = ACTIONS(1721), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1721), - [sym__entry_separator] = ACTIONS(1723), - [anon_sym_PLUS] = ACTIONS(1721), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1721), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1703), + [anon_sym_alias] = ACTIONS(1703), + [anon_sym_let] = ACTIONS(1703), + [anon_sym_let_DASHenv] = ACTIONS(1703), + [anon_sym_mut] = ACTIONS(1703), + [anon_sym_const] = ACTIONS(1703), + [aux_sym_cmd_identifier_token1] = ACTIONS(1703), + [aux_sym_cmd_identifier_token2] = ACTIONS(1703), + [aux_sym_cmd_identifier_token3] = ACTIONS(1703), + [aux_sym_cmd_identifier_token4] = ACTIONS(1703), + [aux_sym_cmd_identifier_token5] = ACTIONS(1703), + [aux_sym_cmd_identifier_token6] = ACTIONS(1703), + [aux_sym_cmd_identifier_token7] = ACTIONS(1703), + [aux_sym_cmd_identifier_token8] = ACTIONS(1703), + [aux_sym_cmd_identifier_token9] = ACTIONS(1703), + [aux_sym_cmd_identifier_token10] = ACTIONS(1703), + [aux_sym_cmd_identifier_token11] = ACTIONS(1703), + [aux_sym_cmd_identifier_token12] = ACTIONS(1703), + [aux_sym_cmd_identifier_token13] = ACTIONS(1703), + [aux_sym_cmd_identifier_token14] = ACTIONS(1703), + [aux_sym_cmd_identifier_token15] = ACTIONS(1703), + [aux_sym_cmd_identifier_token16] = ACTIONS(1703), + [aux_sym_cmd_identifier_token17] = ACTIONS(1703), + [aux_sym_cmd_identifier_token18] = ACTIONS(1703), + [aux_sym_cmd_identifier_token19] = ACTIONS(1703), + [aux_sym_cmd_identifier_token20] = ACTIONS(1703), + [aux_sym_cmd_identifier_token21] = ACTIONS(1703), + [aux_sym_cmd_identifier_token22] = ACTIONS(1703), + [aux_sym_cmd_identifier_token23] = ACTIONS(1703), + [aux_sym_cmd_identifier_token24] = ACTIONS(1703), + [aux_sym_cmd_identifier_token25] = ACTIONS(1703), + [aux_sym_cmd_identifier_token26] = ACTIONS(1703), + [aux_sym_cmd_identifier_token27] = ACTIONS(1703), + [aux_sym_cmd_identifier_token28] = ACTIONS(1703), + [aux_sym_cmd_identifier_token29] = ACTIONS(1703), + [aux_sym_cmd_identifier_token30] = ACTIONS(1703), + [aux_sym_cmd_identifier_token31] = ACTIONS(1703), + [aux_sym_cmd_identifier_token32] = ACTIONS(1703), + [aux_sym_cmd_identifier_token33] = ACTIONS(1703), + [aux_sym_cmd_identifier_token34] = ACTIONS(1703), + [aux_sym_cmd_identifier_token35] = ACTIONS(1703), + [aux_sym_cmd_identifier_token36] = ACTIONS(1703), + [anon_sym_true] = ACTIONS(1705), + [anon_sym_false] = ACTIONS(1705), + [anon_sym_null] = ACTIONS(1705), + [aux_sym_cmd_identifier_token38] = ACTIONS(1703), + [aux_sym_cmd_identifier_token39] = ACTIONS(1705), + [aux_sym_cmd_identifier_token40] = ACTIONS(1705), + [anon_sym_def] = ACTIONS(1703), + [anon_sym_export_DASHenv] = ACTIONS(1703), + [anon_sym_extern] = ACTIONS(1703), + [anon_sym_module] = ACTIONS(1703), + [anon_sym_use] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1705), + [anon_sym_error] = ACTIONS(1703), + [anon_sym_list] = ACTIONS(1703), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_break] = ACTIONS(1703), + [anon_sym_continue] = ACTIONS(1703), + [anon_sym_for] = ACTIONS(1703), + [anon_sym_in] = ACTIONS(1703), + [anon_sym_loop] = ACTIONS(1703), + [anon_sym_make] = ACTIONS(1703), + [anon_sym_while] = ACTIONS(1703), + [anon_sym_do] = ACTIONS(1703), + [anon_sym_if] = ACTIONS(1703), + [anon_sym_else] = ACTIONS(1703), + [anon_sym_match] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1703), + [anon_sym_catch] = ACTIONS(1703), + [anon_sym_return] = ACTIONS(1703), + [anon_sym_source] = ACTIONS(1703), + [anon_sym_source_DASHenv] = ACTIONS(1703), + [anon_sym_register] = ACTIONS(1703), + [anon_sym_hide] = ACTIONS(1703), + [anon_sym_hide_DASHenv] = ACTIONS(1703), + [anon_sym_overlay] = ACTIONS(1703), + [anon_sym_new] = ACTIONS(1703), + [anon_sym_as] = ACTIONS(1703), + [anon_sym_LPAREN2] = ACTIONS(1705), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1705), + [anon_sym_DOT_DOT2] = ACTIONS(1703), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1705), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1705), + [aux_sym__immediate_decimal_token1] = ACTIONS(1750), + [aux_sym__immediate_decimal_token2] = ACTIONS(1752), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1705), + [aux_sym__val_number_decimal_token1] = ACTIONS(1703), + [aux_sym__val_number_decimal_token2] = ACTIONS(1705), + [aux_sym__val_number_decimal_token3] = ACTIONS(1705), + [aux_sym__val_number_decimal_token4] = ACTIONS(1705), + [aux_sym__val_number_token1] = ACTIONS(1705), + [aux_sym__val_number_token2] = ACTIONS(1705), + [aux_sym__val_number_token3] = ACTIONS(1705), + [anon_sym_DQUOTE] = ACTIONS(1705), + [sym__str_single_quotes] = ACTIONS(1705), + [sym__str_back_ticks] = ACTIONS(1705), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1705), + [anon_sym_PLUS] = ACTIONS(1703), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1705), }, [263] = { [sym_comment] = STATE(263), - [aux_sym__block_body_repeat1] = STATE(260), - [ts_builtin_sym_end] = ACTIONS(1651), - [anon_sym_export] = ACTIONS(1647), - [anon_sym_alias] = ACTIONS(1647), - [anon_sym_let] = ACTIONS(1647), - [anon_sym_let_DASHenv] = ACTIONS(1647), - [anon_sym_mut] = ACTIONS(1647), - [anon_sym_const] = ACTIONS(1647), - [aux_sym_cmd_identifier_token1] = ACTIONS(1647), - [aux_sym_cmd_identifier_token2] = ACTIONS(1647), - [aux_sym_cmd_identifier_token3] = ACTIONS(1647), - [aux_sym_cmd_identifier_token4] = ACTIONS(1647), - [aux_sym_cmd_identifier_token5] = ACTIONS(1647), - [aux_sym_cmd_identifier_token6] = ACTIONS(1647), - [aux_sym_cmd_identifier_token7] = ACTIONS(1647), - [aux_sym_cmd_identifier_token8] = ACTIONS(1647), - [aux_sym_cmd_identifier_token9] = ACTIONS(1647), - [aux_sym_cmd_identifier_token10] = ACTIONS(1647), - [aux_sym_cmd_identifier_token11] = ACTIONS(1647), - [aux_sym_cmd_identifier_token12] = ACTIONS(1647), - [aux_sym_cmd_identifier_token13] = ACTIONS(1647), - [aux_sym_cmd_identifier_token14] = ACTIONS(1647), - [aux_sym_cmd_identifier_token15] = ACTIONS(1647), - [aux_sym_cmd_identifier_token16] = ACTIONS(1647), - [aux_sym_cmd_identifier_token17] = ACTIONS(1647), - [aux_sym_cmd_identifier_token18] = ACTIONS(1647), - [aux_sym_cmd_identifier_token19] = ACTIONS(1647), - [aux_sym_cmd_identifier_token20] = ACTIONS(1647), - [aux_sym_cmd_identifier_token21] = ACTIONS(1647), - [aux_sym_cmd_identifier_token22] = ACTIONS(1647), - [aux_sym_cmd_identifier_token23] = ACTIONS(1647), - [aux_sym_cmd_identifier_token24] = ACTIONS(1649), - [aux_sym_cmd_identifier_token25] = ACTIONS(1647), - [aux_sym_cmd_identifier_token26] = ACTIONS(1649), - [aux_sym_cmd_identifier_token27] = ACTIONS(1647), - [aux_sym_cmd_identifier_token28] = ACTIONS(1647), - [aux_sym_cmd_identifier_token29] = ACTIONS(1647), - [aux_sym_cmd_identifier_token30] = ACTIONS(1647), - [aux_sym_cmd_identifier_token31] = ACTIONS(1649), - [aux_sym_cmd_identifier_token32] = ACTIONS(1649), - [aux_sym_cmd_identifier_token33] = ACTIONS(1649), - [aux_sym_cmd_identifier_token34] = ACTIONS(1649), - [aux_sym_cmd_identifier_token35] = ACTIONS(1649), - [aux_sym_cmd_identifier_token36] = ACTIONS(1647), - [anon_sym_true] = ACTIONS(1649), - [anon_sym_false] = ACTIONS(1649), - [anon_sym_null] = ACTIONS(1649), - [aux_sym_cmd_identifier_token38] = ACTIONS(1647), - [aux_sym_cmd_identifier_token39] = ACTIONS(1649), - [aux_sym_cmd_identifier_token40] = ACTIONS(1649), - [sym__newline] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_def] = ACTIONS(1647), - [anon_sym_export_DASHenv] = ACTIONS(1647), - [anon_sym_extern] = ACTIONS(1647), - [anon_sym_module] = ACTIONS(1647), - [anon_sym_use] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_LPAREN] = ACTIONS(1649), - [anon_sym_DOLLAR] = ACTIONS(1647), - [anon_sym_error] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_break] = ACTIONS(1647), - [anon_sym_continue] = ACTIONS(1647), - [anon_sym_for] = ACTIONS(1647), - [anon_sym_loop] = ACTIONS(1647), - [anon_sym_while] = ACTIONS(1647), - [anon_sym_do] = ACTIONS(1647), - [anon_sym_if] = ACTIONS(1647), - [anon_sym_match] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(1649), - [anon_sym_DOT_DOT] = ACTIONS(1647), - [anon_sym_try] = ACTIONS(1647), - [anon_sym_return] = ACTIONS(1647), - [anon_sym_source] = ACTIONS(1647), - [anon_sym_source_DASHenv] = ACTIONS(1647), - [anon_sym_register] = ACTIONS(1647), - [anon_sym_hide] = ACTIONS(1647), - [anon_sym_hide_DASHenv] = ACTIONS(1647), - [anon_sym_overlay] = ACTIONS(1647), - [anon_sym_where] = ACTIONS(1649), - [aux_sym_expr_unary_token1] = ACTIONS(1649), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1649), - [anon_sym_DOT_DOT_LT] = ACTIONS(1649), - [aux_sym__val_number_decimal_token1] = ACTIONS(1647), - [aux_sym__val_number_decimal_token2] = ACTIONS(1649), - [aux_sym__val_number_decimal_token3] = ACTIONS(1649), - [aux_sym__val_number_decimal_token4] = ACTIONS(1649), - [aux_sym__val_number_token1] = ACTIONS(1649), - [aux_sym__val_number_token2] = ACTIONS(1649), - [aux_sym__val_number_token3] = ACTIONS(1649), - [anon_sym_0b] = ACTIONS(1647), - [anon_sym_0o] = ACTIONS(1647), - [anon_sym_0x] = ACTIONS(1647), - [sym_val_date] = ACTIONS(1649), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym__str_single_quotes] = ACTIONS(1649), - [sym__str_back_ticks] = ACTIONS(1649), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1649), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1649), - [aux_sym_env_var_token1] = ACTIONS(1647), - [anon_sym_CARET] = ACTIONS(1649), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym__block_body_repeat1] = STATE(263), + [ts_builtin_sym_end] = ACTIONS(1678), + [anon_sym_export] = ACTIONS(1676), + [anon_sym_alias] = ACTIONS(1676), + [anon_sym_let] = ACTIONS(1676), + [anon_sym_let_DASHenv] = ACTIONS(1676), + [anon_sym_mut] = ACTIONS(1676), + [anon_sym_const] = ACTIONS(1676), + [aux_sym_cmd_identifier_token1] = ACTIONS(1676), + [aux_sym_cmd_identifier_token2] = ACTIONS(1676), + [aux_sym_cmd_identifier_token3] = ACTIONS(1676), + [aux_sym_cmd_identifier_token4] = ACTIONS(1676), + [aux_sym_cmd_identifier_token5] = ACTIONS(1676), + [aux_sym_cmd_identifier_token6] = ACTIONS(1676), + [aux_sym_cmd_identifier_token7] = ACTIONS(1676), + [aux_sym_cmd_identifier_token8] = ACTIONS(1676), + [aux_sym_cmd_identifier_token9] = ACTIONS(1676), + [aux_sym_cmd_identifier_token10] = ACTIONS(1676), + [aux_sym_cmd_identifier_token11] = ACTIONS(1676), + [aux_sym_cmd_identifier_token12] = ACTIONS(1676), + [aux_sym_cmd_identifier_token13] = ACTIONS(1676), + [aux_sym_cmd_identifier_token14] = ACTIONS(1676), + [aux_sym_cmd_identifier_token15] = ACTIONS(1676), + [aux_sym_cmd_identifier_token16] = ACTIONS(1676), + [aux_sym_cmd_identifier_token17] = ACTIONS(1676), + [aux_sym_cmd_identifier_token18] = ACTIONS(1676), + [aux_sym_cmd_identifier_token19] = ACTIONS(1676), + [aux_sym_cmd_identifier_token20] = ACTIONS(1676), + [aux_sym_cmd_identifier_token21] = ACTIONS(1676), + [aux_sym_cmd_identifier_token22] = ACTIONS(1676), + [aux_sym_cmd_identifier_token23] = ACTIONS(1676), + [aux_sym_cmd_identifier_token24] = ACTIONS(1678), + [aux_sym_cmd_identifier_token25] = ACTIONS(1676), + [aux_sym_cmd_identifier_token26] = ACTIONS(1678), + [aux_sym_cmd_identifier_token27] = ACTIONS(1676), + [aux_sym_cmd_identifier_token28] = ACTIONS(1676), + [aux_sym_cmd_identifier_token29] = ACTIONS(1676), + [aux_sym_cmd_identifier_token30] = ACTIONS(1676), + [aux_sym_cmd_identifier_token31] = ACTIONS(1678), + [aux_sym_cmd_identifier_token32] = ACTIONS(1678), + [aux_sym_cmd_identifier_token33] = ACTIONS(1678), + [aux_sym_cmd_identifier_token34] = ACTIONS(1678), + [aux_sym_cmd_identifier_token35] = ACTIONS(1678), + [aux_sym_cmd_identifier_token36] = ACTIONS(1676), + [anon_sym_true] = ACTIONS(1678), + [anon_sym_false] = ACTIONS(1678), + [anon_sym_null] = ACTIONS(1678), + [aux_sym_cmd_identifier_token38] = ACTIONS(1676), + [aux_sym_cmd_identifier_token39] = ACTIONS(1678), + [aux_sym_cmd_identifier_token40] = ACTIONS(1678), + [sym__newline] = ACTIONS(1754), + [anon_sym_SEMI] = ACTIONS(1754), + [anon_sym_def] = ACTIONS(1676), + [anon_sym_export_DASHenv] = ACTIONS(1676), + [anon_sym_extern] = ACTIONS(1676), + [anon_sym_module] = ACTIONS(1676), + [anon_sym_use] = ACTIONS(1676), + [anon_sym_LBRACK] = ACTIONS(1678), + [anon_sym_LPAREN] = ACTIONS(1678), + [anon_sym_DOLLAR] = ACTIONS(1676), + [anon_sym_error] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_break] = ACTIONS(1676), + [anon_sym_continue] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1676), + [anon_sym_loop] = ACTIONS(1676), + [anon_sym_while] = ACTIONS(1676), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_if] = ACTIONS(1676), + [anon_sym_match] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1678), + [anon_sym_DOT_DOT] = ACTIONS(1676), + [anon_sym_try] = ACTIONS(1676), + [anon_sym_return] = ACTIONS(1676), + [anon_sym_source] = ACTIONS(1676), + [anon_sym_source_DASHenv] = ACTIONS(1676), + [anon_sym_register] = ACTIONS(1676), + [anon_sym_hide] = ACTIONS(1676), + [anon_sym_hide_DASHenv] = ACTIONS(1676), + [anon_sym_overlay] = ACTIONS(1676), + [anon_sym_where] = ACTIONS(1678), + [aux_sym_expr_unary_token1] = ACTIONS(1678), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1678), + [anon_sym_DOT_DOT_LT] = ACTIONS(1678), + [aux_sym__val_number_decimal_token1] = ACTIONS(1676), + [aux_sym__val_number_decimal_token2] = ACTIONS(1678), + [aux_sym__val_number_decimal_token3] = ACTIONS(1678), + [aux_sym__val_number_decimal_token4] = ACTIONS(1678), + [aux_sym__val_number_token1] = ACTIONS(1678), + [aux_sym__val_number_token2] = ACTIONS(1678), + [aux_sym__val_number_token3] = ACTIONS(1678), + [anon_sym_0b] = ACTIONS(1676), + [anon_sym_0o] = ACTIONS(1676), + [anon_sym_0x] = ACTIONS(1676), + [sym_val_date] = ACTIONS(1678), + [anon_sym_DQUOTE] = ACTIONS(1678), + [sym__str_single_quotes] = ACTIONS(1678), + [sym__str_back_ticks] = ACTIONS(1678), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1678), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1678), + [aux_sym_env_var_token1] = ACTIONS(1676), + [anon_sym_CARET] = ACTIONS(1678), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1678), }, [264] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5097), + [sym_block] = STATE(5098), + [sym__expression_parenthesized] = STATE(5098), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3839), + [sym_expr_parenthesized] = STATE(2053), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(2028), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3132), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_command] = STATE(5098), [sym_comment] = STATE(264), - [anon_sym_export] = ACTIONS(1667), - [anon_sym_alias] = ACTIONS(1667), - [anon_sym_let] = ACTIONS(1667), - [anon_sym_let_DASHenv] = ACTIONS(1667), - [anon_sym_mut] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1667), - [aux_sym_cmd_identifier_token1] = ACTIONS(1667), - [aux_sym_cmd_identifier_token2] = ACTIONS(1667), - [aux_sym_cmd_identifier_token3] = ACTIONS(1667), - [aux_sym_cmd_identifier_token4] = ACTIONS(1667), - [aux_sym_cmd_identifier_token5] = ACTIONS(1667), - [aux_sym_cmd_identifier_token6] = ACTIONS(1667), - [aux_sym_cmd_identifier_token7] = ACTIONS(1667), - [aux_sym_cmd_identifier_token8] = ACTIONS(1667), - [aux_sym_cmd_identifier_token9] = ACTIONS(1667), - [aux_sym_cmd_identifier_token10] = ACTIONS(1667), - [aux_sym_cmd_identifier_token11] = ACTIONS(1667), - [aux_sym_cmd_identifier_token12] = ACTIONS(1667), - [aux_sym_cmd_identifier_token13] = ACTIONS(1667), - [aux_sym_cmd_identifier_token14] = ACTIONS(1667), - [aux_sym_cmd_identifier_token15] = ACTIONS(1667), - [aux_sym_cmd_identifier_token16] = ACTIONS(1667), - [aux_sym_cmd_identifier_token17] = ACTIONS(1667), - [aux_sym_cmd_identifier_token18] = ACTIONS(1667), - [aux_sym_cmd_identifier_token19] = ACTIONS(1667), - [aux_sym_cmd_identifier_token20] = ACTIONS(1667), - [aux_sym_cmd_identifier_token21] = ACTIONS(1667), - [aux_sym_cmd_identifier_token22] = ACTIONS(1667), - [aux_sym_cmd_identifier_token23] = ACTIONS(1667), - [aux_sym_cmd_identifier_token24] = ACTIONS(1667), - [aux_sym_cmd_identifier_token25] = ACTIONS(1667), - [aux_sym_cmd_identifier_token26] = ACTIONS(1667), - [aux_sym_cmd_identifier_token27] = ACTIONS(1667), - [aux_sym_cmd_identifier_token28] = ACTIONS(1667), - [aux_sym_cmd_identifier_token29] = ACTIONS(1667), - [aux_sym_cmd_identifier_token30] = ACTIONS(1667), - [aux_sym_cmd_identifier_token31] = ACTIONS(1667), - [aux_sym_cmd_identifier_token32] = ACTIONS(1667), - [aux_sym_cmd_identifier_token33] = ACTIONS(1667), - [aux_sym_cmd_identifier_token34] = ACTIONS(1667), - [aux_sym_cmd_identifier_token35] = ACTIONS(1667), - [aux_sym_cmd_identifier_token36] = ACTIONS(1667), - [anon_sym_true] = ACTIONS(1669), - [anon_sym_false] = ACTIONS(1669), - [anon_sym_null] = ACTIONS(1669), - [aux_sym_cmd_identifier_token38] = ACTIONS(1667), - [aux_sym_cmd_identifier_token39] = ACTIONS(1669), - [aux_sym_cmd_identifier_token40] = ACTIONS(1669), - [anon_sym_def] = ACTIONS(1667), - [anon_sym_export_DASHenv] = ACTIONS(1667), - [anon_sym_extern] = ACTIONS(1667), - [anon_sym_module] = ACTIONS(1667), - [anon_sym_use] = ACTIONS(1667), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_DOLLAR] = ACTIONS(1669), - [anon_sym_error] = ACTIONS(1667), - [anon_sym_list] = ACTIONS(1667), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_break] = ACTIONS(1667), - [anon_sym_continue] = ACTIONS(1667), - [anon_sym_for] = ACTIONS(1667), - [anon_sym_in] = ACTIONS(1667), - [anon_sym_loop] = ACTIONS(1667), - [anon_sym_make] = ACTIONS(1667), - [anon_sym_while] = ACTIONS(1667), - [anon_sym_do] = ACTIONS(1667), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_else] = ACTIONS(1667), - [anon_sym_match] = ACTIONS(1667), - [anon_sym_RBRACE] = ACTIONS(1669), - [anon_sym_try] = ACTIONS(1667), - [anon_sym_catch] = ACTIONS(1667), - [anon_sym_return] = ACTIONS(1667), - [anon_sym_source] = ACTIONS(1667), - [anon_sym_source_DASHenv] = ACTIONS(1667), - [anon_sym_register] = ACTIONS(1667), - [anon_sym_hide] = ACTIONS(1667), - [anon_sym_hide_DASHenv] = ACTIONS(1667), - [anon_sym_overlay] = ACTIONS(1667), - [anon_sym_new] = ACTIONS(1667), - [anon_sym_as] = ACTIONS(1667), - [anon_sym_LPAREN2] = ACTIONS(1669), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1669), - [anon_sym_DOT_DOT2] = ACTIONS(1667), - [anon_sym_DOT] = ACTIONS(1727), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [aux_sym__immediate_decimal_token2] = ACTIONS(1729), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1669), - [aux_sym__val_number_decimal_token1] = ACTIONS(1667), - [aux_sym__val_number_decimal_token2] = ACTIONS(1669), - [aux_sym__val_number_decimal_token3] = ACTIONS(1669), - [aux_sym__val_number_decimal_token4] = ACTIONS(1669), - [aux_sym__val_number_token1] = ACTIONS(1669), - [aux_sym__val_number_token2] = ACTIONS(1669), - [aux_sym__val_number_token3] = ACTIONS(1669), - [anon_sym_DQUOTE] = ACTIONS(1669), - [sym__str_single_quotes] = ACTIONS(1669), - [sym__str_back_ticks] = ACTIONS(1669), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1669), - [anon_sym_PLUS] = ACTIONS(1667), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(1079), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(373), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(1723), + [anon_sym_false] = ACTIONS(1723), + [anon_sym_null] = ACTIONS(1725), + [aux_sym_cmd_identifier_token38] = ACTIONS(1727), + [aux_sym_cmd_identifier_token39] = ACTIONS(1729), + [aux_sym_cmd_identifier_token40] = ACTIONS(1729), + [sym__newline] = ACTIONS(1731), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_if] = ACTIONS(491), + [anon_sym_LBRACE] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(193), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1737), + [aux_sym__val_number_decimal_token3] = ACTIONS(1739), + [aux_sym__val_number_decimal_token4] = ACTIONS(1741), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [265] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5097), + [sym_block] = STATE(5098), + [sym__expression_parenthesized] = STATE(5098), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3839), + [sym_expr_parenthesized] = STATE(2053), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(2028), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3132), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_command] = STATE(5098), [sym_comment] = STATE(265), - [aux_sym__block_body_repeat1] = STATE(260), - [ts_builtin_sym_end] = ACTIONS(1657), - [anon_sym_export] = ACTIONS(1647), - [anon_sym_alias] = ACTIONS(1647), - [anon_sym_let] = ACTIONS(1647), - [anon_sym_let_DASHenv] = ACTIONS(1647), - [anon_sym_mut] = ACTIONS(1647), - [anon_sym_const] = ACTIONS(1647), - [aux_sym_cmd_identifier_token1] = ACTIONS(1647), - [aux_sym_cmd_identifier_token2] = ACTIONS(1647), - [aux_sym_cmd_identifier_token3] = ACTIONS(1647), - [aux_sym_cmd_identifier_token4] = ACTIONS(1647), - [aux_sym_cmd_identifier_token5] = ACTIONS(1647), - [aux_sym_cmd_identifier_token6] = ACTIONS(1647), - [aux_sym_cmd_identifier_token7] = ACTIONS(1647), - [aux_sym_cmd_identifier_token8] = ACTIONS(1647), - [aux_sym_cmd_identifier_token9] = ACTIONS(1647), - [aux_sym_cmd_identifier_token10] = ACTIONS(1647), - [aux_sym_cmd_identifier_token11] = ACTIONS(1647), - [aux_sym_cmd_identifier_token12] = ACTIONS(1647), - [aux_sym_cmd_identifier_token13] = ACTIONS(1647), - [aux_sym_cmd_identifier_token14] = ACTIONS(1647), - [aux_sym_cmd_identifier_token15] = ACTIONS(1647), - [aux_sym_cmd_identifier_token16] = ACTIONS(1647), - [aux_sym_cmd_identifier_token17] = ACTIONS(1647), - [aux_sym_cmd_identifier_token18] = ACTIONS(1647), - [aux_sym_cmd_identifier_token19] = ACTIONS(1647), - [aux_sym_cmd_identifier_token20] = ACTIONS(1647), - [aux_sym_cmd_identifier_token21] = ACTIONS(1647), - [aux_sym_cmd_identifier_token22] = ACTIONS(1647), - [aux_sym_cmd_identifier_token23] = ACTIONS(1647), - [aux_sym_cmd_identifier_token24] = ACTIONS(1649), - [aux_sym_cmd_identifier_token25] = ACTIONS(1647), - [aux_sym_cmd_identifier_token26] = ACTIONS(1649), - [aux_sym_cmd_identifier_token27] = ACTIONS(1647), - [aux_sym_cmd_identifier_token28] = ACTIONS(1647), - [aux_sym_cmd_identifier_token29] = ACTIONS(1647), - [aux_sym_cmd_identifier_token30] = ACTIONS(1647), - [aux_sym_cmd_identifier_token31] = ACTIONS(1649), - [aux_sym_cmd_identifier_token32] = ACTIONS(1649), - [aux_sym_cmd_identifier_token33] = ACTIONS(1649), - [aux_sym_cmd_identifier_token34] = ACTIONS(1649), - [aux_sym_cmd_identifier_token35] = ACTIONS(1649), - [aux_sym_cmd_identifier_token36] = ACTIONS(1647), - [anon_sym_true] = ACTIONS(1649), - [anon_sym_false] = ACTIONS(1649), - [anon_sym_null] = ACTIONS(1649), - [aux_sym_cmd_identifier_token38] = ACTIONS(1647), - [aux_sym_cmd_identifier_token39] = ACTIONS(1649), - [aux_sym_cmd_identifier_token40] = ACTIONS(1649), - [sym__newline] = ACTIONS(33), - [anon_sym_SEMI] = ACTIONS(33), - [anon_sym_def] = ACTIONS(1647), - [anon_sym_export_DASHenv] = ACTIONS(1647), - [anon_sym_extern] = ACTIONS(1647), - [anon_sym_module] = ACTIONS(1647), - [anon_sym_use] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_LPAREN] = ACTIONS(1649), - [anon_sym_DOLLAR] = ACTIONS(1647), - [anon_sym_error] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_break] = ACTIONS(1647), - [anon_sym_continue] = ACTIONS(1647), - [anon_sym_for] = ACTIONS(1647), - [anon_sym_loop] = ACTIONS(1647), - [anon_sym_while] = ACTIONS(1647), - [anon_sym_do] = ACTIONS(1647), - [anon_sym_if] = ACTIONS(1647), - [anon_sym_match] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(1649), - [anon_sym_DOT_DOT] = ACTIONS(1647), - [anon_sym_try] = ACTIONS(1647), - [anon_sym_return] = ACTIONS(1647), - [anon_sym_source] = ACTIONS(1647), - [anon_sym_source_DASHenv] = ACTIONS(1647), - [anon_sym_register] = ACTIONS(1647), - [anon_sym_hide] = ACTIONS(1647), - [anon_sym_hide_DASHenv] = ACTIONS(1647), - [anon_sym_overlay] = ACTIONS(1647), - [anon_sym_where] = ACTIONS(1649), - [aux_sym_expr_unary_token1] = ACTIONS(1649), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1649), - [anon_sym_DOT_DOT_LT] = ACTIONS(1649), - [aux_sym__val_number_decimal_token1] = ACTIONS(1647), - [aux_sym__val_number_decimal_token2] = ACTIONS(1649), - [aux_sym__val_number_decimal_token3] = ACTIONS(1649), - [aux_sym__val_number_decimal_token4] = ACTIONS(1649), - [aux_sym__val_number_token1] = ACTIONS(1649), - [aux_sym__val_number_token2] = ACTIONS(1649), - [aux_sym__val_number_token3] = ACTIONS(1649), - [anon_sym_0b] = ACTIONS(1647), - [anon_sym_0o] = ACTIONS(1647), - [anon_sym_0x] = ACTIONS(1647), - [sym_val_date] = ACTIONS(1649), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym__str_single_quotes] = ACTIONS(1649), - [sym__str_back_ticks] = ACTIONS(1649), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1649), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1649), - [aux_sym_env_var_token1] = ACTIONS(1647), - [anon_sym_CARET] = ACTIONS(1649), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(272), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(373), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(1723), + [anon_sym_false] = ACTIONS(1723), + [anon_sym_null] = ACTIONS(1725), + [aux_sym_cmd_identifier_token38] = ACTIONS(1727), + [aux_sym_cmd_identifier_token39] = ACTIONS(1729), + [aux_sym_cmd_identifier_token40] = ACTIONS(1729), + [sym__newline] = ACTIONS(1731), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_if] = ACTIONS(491), + [anon_sym_LBRACE] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(193), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1737), + [aux_sym__val_number_decimal_token3] = ACTIONS(1739), + [aux_sym__val_number_decimal_token4] = ACTIONS(1741), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [266] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5100), + [sym_block] = STATE(5101), + [sym__expression_parenthesized] = STATE(5101), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3839), + [sym_expr_parenthesized] = STATE(2053), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(2028), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3132), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_command] = STATE(5101), [sym_comment] = STATE(266), - [anon_sym_export] = ACTIONS(1301), - [anon_sym_alias] = ACTIONS(1301), - [anon_sym_let] = ACTIONS(1301), - [anon_sym_let_DASHenv] = ACTIONS(1301), - [anon_sym_mut] = ACTIONS(1301), - [anon_sym_const] = ACTIONS(1301), - [aux_sym_cmd_identifier_token1] = ACTIONS(1301), - [aux_sym_cmd_identifier_token2] = ACTIONS(1301), - [aux_sym_cmd_identifier_token3] = ACTIONS(1301), - [aux_sym_cmd_identifier_token4] = ACTIONS(1301), - [aux_sym_cmd_identifier_token5] = ACTIONS(1301), - [aux_sym_cmd_identifier_token6] = ACTIONS(1301), - [aux_sym_cmd_identifier_token7] = ACTIONS(1301), - [aux_sym_cmd_identifier_token8] = ACTIONS(1301), - [aux_sym_cmd_identifier_token9] = ACTIONS(1301), - [aux_sym_cmd_identifier_token10] = ACTIONS(1301), - [aux_sym_cmd_identifier_token11] = ACTIONS(1301), - [aux_sym_cmd_identifier_token12] = ACTIONS(1301), - [aux_sym_cmd_identifier_token13] = ACTIONS(1301), - [aux_sym_cmd_identifier_token14] = ACTIONS(1301), - [aux_sym_cmd_identifier_token15] = ACTIONS(1301), - [aux_sym_cmd_identifier_token16] = ACTIONS(1301), - [aux_sym_cmd_identifier_token17] = ACTIONS(1301), - [aux_sym_cmd_identifier_token18] = ACTIONS(1301), - [aux_sym_cmd_identifier_token19] = ACTIONS(1301), - [aux_sym_cmd_identifier_token20] = ACTIONS(1301), - [aux_sym_cmd_identifier_token21] = ACTIONS(1301), - [aux_sym_cmd_identifier_token22] = ACTIONS(1301), - [aux_sym_cmd_identifier_token23] = ACTIONS(1301), - [aux_sym_cmd_identifier_token24] = ACTIONS(1304), - [aux_sym_cmd_identifier_token25] = ACTIONS(1301), - [aux_sym_cmd_identifier_token26] = ACTIONS(1304), - [aux_sym_cmd_identifier_token27] = ACTIONS(1301), - [aux_sym_cmd_identifier_token28] = ACTIONS(1301), - [aux_sym_cmd_identifier_token29] = ACTIONS(1301), - [aux_sym_cmd_identifier_token30] = ACTIONS(1301), - [aux_sym_cmd_identifier_token31] = ACTIONS(1304), - [aux_sym_cmd_identifier_token32] = ACTIONS(1304), - [aux_sym_cmd_identifier_token33] = ACTIONS(1304), - [aux_sym_cmd_identifier_token34] = ACTIONS(1304), - [aux_sym_cmd_identifier_token35] = ACTIONS(1304), - [aux_sym_cmd_identifier_token36] = ACTIONS(1301), - [anon_sym_true] = ACTIONS(1304), - [anon_sym_false] = ACTIONS(1304), - [anon_sym_null] = ACTIONS(1304), - [aux_sym_cmd_identifier_token38] = ACTIONS(1301), - [aux_sym_cmd_identifier_token39] = ACTIONS(1304), - [aux_sym_cmd_identifier_token40] = ACTIONS(1304), - [sym__newline] = ACTIONS(1304), - [anon_sym_SEMI] = ACTIONS(1304), - [anon_sym_PIPE] = ACTIONS(1307), - [anon_sym_def] = ACTIONS(1301), - [anon_sym_export_DASHenv] = ACTIONS(1301), - [anon_sym_extern] = ACTIONS(1301), - [anon_sym_module] = ACTIONS(1301), - [anon_sym_use] = ACTIONS(1301), - [anon_sym_LBRACK] = ACTIONS(1304), - [anon_sym_LPAREN] = ACTIONS(1304), - [anon_sym_DOLLAR] = ACTIONS(1301), - [anon_sym_error] = ACTIONS(1301), - [anon_sym_DASH] = ACTIONS(1301), - [anon_sym_break] = ACTIONS(1301), - [anon_sym_continue] = ACTIONS(1301), - [anon_sym_for] = ACTIONS(1301), - [anon_sym_loop] = ACTIONS(1301), - [anon_sym_while] = ACTIONS(1301), - [anon_sym_do] = ACTIONS(1301), - [anon_sym_if] = ACTIONS(1301), - [anon_sym_match] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_RBRACE] = ACTIONS(1309), - [anon_sym_DOT_DOT] = ACTIONS(1301), - [anon_sym_try] = ACTIONS(1301), - [anon_sym_return] = ACTIONS(1301), - [anon_sym_source] = ACTIONS(1301), - [anon_sym_source_DASHenv] = ACTIONS(1301), - [anon_sym_register] = ACTIONS(1301), - [anon_sym_hide] = ACTIONS(1301), - [anon_sym_hide_DASHenv] = ACTIONS(1301), - [anon_sym_overlay] = ACTIONS(1301), - [anon_sym_where] = ACTIONS(1304), - [aux_sym_expr_unary_token1] = ACTIONS(1304), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1304), - [anon_sym_DOT_DOT_LT] = ACTIONS(1304), - [aux_sym__val_number_decimal_token1] = ACTIONS(1301), - [aux_sym__val_number_decimal_token2] = ACTIONS(1304), - [aux_sym__val_number_decimal_token3] = ACTIONS(1304), - [aux_sym__val_number_decimal_token4] = ACTIONS(1304), - [aux_sym__val_number_token1] = ACTIONS(1304), - [aux_sym__val_number_token2] = ACTIONS(1304), - [aux_sym__val_number_token3] = ACTIONS(1304), - [anon_sym_0b] = ACTIONS(1301), - [anon_sym_0o] = ACTIONS(1301), - [anon_sym_0x] = ACTIONS(1301), - [sym_val_date] = ACTIONS(1304), - [anon_sym_DQUOTE] = ACTIONS(1304), - [sym__str_single_quotes] = ACTIONS(1304), - [sym__str_back_ticks] = ACTIONS(1304), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1304), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1304), - [aux_sym_env_var_token1] = ACTIONS(1301), - [anon_sym_CARET] = ACTIONS(1304), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(1079), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(373), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(1723), + [anon_sym_false] = ACTIONS(1723), + [anon_sym_null] = ACTIONS(1725), + [aux_sym_cmd_identifier_token38] = ACTIONS(1727), + [aux_sym_cmd_identifier_token39] = ACTIONS(1729), + [aux_sym_cmd_identifier_token40] = ACTIONS(1729), + [sym__newline] = ACTIONS(1731), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_if] = ACTIONS(491), + [anon_sym_LBRACE] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(193), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1737), + [aux_sym__val_number_decimal_token3] = ACTIONS(1739), + [aux_sym__val_number_decimal_token4] = ACTIONS(1741), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [267] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5100), + [sym_block] = STATE(5101), + [sym__expression_parenthesized] = STATE(5101), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3839), + [sym_expr_parenthesized] = STATE(2053), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(2028), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3132), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_command] = STATE(5101), [sym_comment] = STATE(267), - [aux_sym_shebang_repeat1] = STATE(267), - [anon_sym_export] = ACTIONS(1313), - [anon_sym_alias] = ACTIONS(1313), - [anon_sym_let] = ACTIONS(1313), - [anon_sym_let_DASHenv] = ACTIONS(1313), - [anon_sym_mut] = ACTIONS(1313), - [anon_sym_const] = ACTIONS(1313), - [aux_sym_cmd_identifier_token1] = ACTIONS(1313), - [aux_sym_cmd_identifier_token2] = ACTIONS(1313), - [aux_sym_cmd_identifier_token3] = ACTIONS(1313), - [aux_sym_cmd_identifier_token4] = ACTIONS(1313), - [aux_sym_cmd_identifier_token5] = ACTIONS(1313), - [aux_sym_cmd_identifier_token6] = ACTIONS(1313), - [aux_sym_cmd_identifier_token7] = ACTIONS(1313), - [aux_sym_cmd_identifier_token8] = ACTIONS(1313), - [aux_sym_cmd_identifier_token9] = ACTIONS(1313), - [aux_sym_cmd_identifier_token10] = ACTIONS(1313), - [aux_sym_cmd_identifier_token11] = ACTIONS(1313), - [aux_sym_cmd_identifier_token12] = ACTIONS(1313), - [aux_sym_cmd_identifier_token13] = ACTIONS(1313), - [aux_sym_cmd_identifier_token14] = ACTIONS(1313), - [aux_sym_cmd_identifier_token15] = ACTIONS(1313), - [aux_sym_cmd_identifier_token16] = ACTIONS(1313), - [aux_sym_cmd_identifier_token17] = ACTIONS(1313), - [aux_sym_cmd_identifier_token18] = ACTIONS(1313), - [aux_sym_cmd_identifier_token19] = ACTIONS(1313), - [aux_sym_cmd_identifier_token20] = ACTIONS(1313), - [aux_sym_cmd_identifier_token21] = ACTIONS(1313), - [aux_sym_cmd_identifier_token22] = ACTIONS(1313), - [aux_sym_cmd_identifier_token23] = ACTIONS(1313), - [aux_sym_cmd_identifier_token24] = ACTIONS(1315), - [aux_sym_cmd_identifier_token25] = ACTIONS(1313), - [aux_sym_cmd_identifier_token26] = ACTIONS(1315), - [aux_sym_cmd_identifier_token27] = ACTIONS(1313), - [aux_sym_cmd_identifier_token28] = ACTIONS(1313), - [aux_sym_cmd_identifier_token29] = ACTIONS(1313), - [aux_sym_cmd_identifier_token30] = ACTIONS(1313), - [aux_sym_cmd_identifier_token31] = ACTIONS(1315), - [aux_sym_cmd_identifier_token32] = ACTIONS(1315), - [aux_sym_cmd_identifier_token33] = ACTIONS(1315), - [aux_sym_cmd_identifier_token34] = ACTIONS(1315), - [aux_sym_cmd_identifier_token35] = ACTIONS(1315), - [aux_sym_cmd_identifier_token36] = ACTIONS(1313), - [anon_sym_true] = ACTIONS(1315), - [anon_sym_false] = ACTIONS(1315), - [anon_sym_null] = ACTIONS(1315), - [aux_sym_cmd_identifier_token38] = ACTIONS(1313), - [aux_sym_cmd_identifier_token39] = ACTIONS(1315), - [aux_sym_cmd_identifier_token40] = ACTIONS(1315), + [aux_sym_shebang_repeat1] = STATE(299), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(373), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(1723), + [anon_sym_false] = ACTIONS(1723), + [anon_sym_null] = ACTIONS(1725), + [aux_sym_cmd_identifier_token38] = ACTIONS(1727), + [aux_sym_cmd_identifier_token39] = ACTIONS(1729), + [aux_sym_cmd_identifier_token40] = ACTIONS(1729), [sym__newline] = ACTIONS(1731), - [anon_sym_SEMI] = ACTIONS(1315), - [anon_sym_PIPE] = ACTIONS(1315), - [anon_sym_def] = ACTIONS(1313), - [anon_sym_export_DASHenv] = ACTIONS(1313), - [anon_sym_extern] = ACTIONS(1313), - [anon_sym_module] = ACTIONS(1313), - [anon_sym_use] = ACTIONS(1313), - [anon_sym_LBRACK] = ACTIONS(1315), - [anon_sym_LPAREN] = ACTIONS(1315), - [anon_sym_DOLLAR] = ACTIONS(1313), - [anon_sym_error] = ACTIONS(1313), - [anon_sym_DASH] = ACTIONS(1313), - [anon_sym_break] = ACTIONS(1313), - [anon_sym_continue] = ACTIONS(1313), - [anon_sym_for] = ACTIONS(1313), - [anon_sym_loop] = ACTIONS(1313), - [anon_sym_while] = ACTIONS(1313), - [anon_sym_do] = ACTIONS(1313), - [anon_sym_if] = ACTIONS(1313), - [anon_sym_match] = ACTIONS(1313), - [anon_sym_LBRACE] = ACTIONS(1315), - [anon_sym_DOT_DOT] = ACTIONS(1313), - [anon_sym_try] = ACTIONS(1313), - [anon_sym_return] = ACTIONS(1313), - [anon_sym_source] = ACTIONS(1313), - [anon_sym_source_DASHenv] = ACTIONS(1313), - [anon_sym_register] = ACTIONS(1313), - [anon_sym_hide] = ACTIONS(1313), - [anon_sym_hide_DASHenv] = ACTIONS(1313), - [anon_sym_overlay] = ACTIONS(1313), - [anon_sym_where] = ACTIONS(1315), - [aux_sym_expr_unary_token1] = ACTIONS(1315), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1315), - [anon_sym_DOT_DOT_LT] = ACTIONS(1315), - [aux_sym__val_number_decimal_token1] = ACTIONS(1313), - [aux_sym__val_number_decimal_token2] = ACTIONS(1315), - [aux_sym__val_number_decimal_token3] = ACTIONS(1315), - [aux_sym__val_number_decimal_token4] = ACTIONS(1315), - [aux_sym__val_number_token1] = ACTIONS(1315), - [aux_sym__val_number_token2] = ACTIONS(1315), - [aux_sym__val_number_token3] = ACTIONS(1315), - [anon_sym_0b] = ACTIONS(1313), - [anon_sym_0o] = ACTIONS(1313), - [anon_sym_0x] = ACTIONS(1313), - [sym_val_date] = ACTIONS(1315), - [anon_sym_DQUOTE] = ACTIONS(1315), - [sym__str_single_quotes] = ACTIONS(1315), - [sym__str_back_ticks] = ACTIONS(1315), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1315), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1315), - [aux_sym_env_var_token1] = ACTIONS(1313), - [anon_sym_CARET] = ACTIONS(1315), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_if] = ACTIONS(491), + [anon_sym_LBRACE] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(193), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1737), + [aux_sym__val_number_decimal_token3] = ACTIONS(1739), + [aux_sym__val_number_decimal_token4] = ACTIONS(1741), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [268] = { - [sym_cell_path] = STATE(445), - [sym_path] = STATE(428), + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5102), + [sym_block] = STATE(5103), + [sym__expression_parenthesized] = STATE(5103), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3839), + [sym_expr_parenthesized] = STATE(2053), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(2028), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3132), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_command] = STATE(5103), [sym_comment] = STATE(268), - [aux_sym_cell_path_repeat1] = STATE(315), - [anon_sym_export] = ACTIONS(1641), - [anon_sym_alias] = ACTIONS(1641), - [anon_sym_let] = ACTIONS(1641), - [anon_sym_let_DASHenv] = ACTIONS(1641), - [anon_sym_mut] = ACTIONS(1641), - [anon_sym_const] = ACTIONS(1641), - [aux_sym_cmd_identifier_token1] = ACTIONS(1641), - [aux_sym_cmd_identifier_token2] = ACTIONS(1641), - [aux_sym_cmd_identifier_token3] = ACTIONS(1641), - [aux_sym_cmd_identifier_token4] = ACTIONS(1641), - [aux_sym_cmd_identifier_token5] = ACTIONS(1641), - [aux_sym_cmd_identifier_token6] = ACTIONS(1641), - [aux_sym_cmd_identifier_token7] = ACTIONS(1641), - [aux_sym_cmd_identifier_token8] = ACTIONS(1641), - [aux_sym_cmd_identifier_token9] = ACTIONS(1641), - [aux_sym_cmd_identifier_token10] = ACTIONS(1641), - [aux_sym_cmd_identifier_token11] = ACTIONS(1641), - [aux_sym_cmd_identifier_token12] = ACTIONS(1641), - [aux_sym_cmd_identifier_token13] = ACTIONS(1641), - [aux_sym_cmd_identifier_token14] = ACTIONS(1641), - [aux_sym_cmd_identifier_token15] = ACTIONS(1641), - [aux_sym_cmd_identifier_token16] = ACTIONS(1641), - [aux_sym_cmd_identifier_token17] = ACTIONS(1641), - [aux_sym_cmd_identifier_token18] = ACTIONS(1641), - [aux_sym_cmd_identifier_token19] = ACTIONS(1641), - [aux_sym_cmd_identifier_token20] = ACTIONS(1641), - [aux_sym_cmd_identifier_token21] = ACTIONS(1641), - [aux_sym_cmd_identifier_token22] = ACTIONS(1641), - [aux_sym_cmd_identifier_token23] = ACTIONS(1641), - [aux_sym_cmd_identifier_token24] = ACTIONS(1641), - [aux_sym_cmd_identifier_token25] = ACTIONS(1641), - [aux_sym_cmd_identifier_token26] = ACTIONS(1641), - [aux_sym_cmd_identifier_token27] = ACTIONS(1641), - [aux_sym_cmd_identifier_token28] = ACTIONS(1641), - [aux_sym_cmd_identifier_token29] = ACTIONS(1641), - [aux_sym_cmd_identifier_token30] = ACTIONS(1641), - [aux_sym_cmd_identifier_token31] = ACTIONS(1641), - [aux_sym_cmd_identifier_token32] = ACTIONS(1641), - [aux_sym_cmd_identifier_token33] = ACTIONS(1641), - [aux_sym_cmd_identifier_token34] = ACTIONS(1641), - [aux_sym_cmd_identifier_token35] = ACTIONS(1641), - [aux_sym_cmd_identifier_token36] = ACTIONS(1641), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_null] = ACTIONS(1645), - [aux_sym_cmd_identifier_token38] = ACTIONS(1641), - [aux_sym_cmd_identifier_token39] = ACTIONS(1645), - [aux_sym_cmd_identifier_token40] = ACTIONS(1645), - [anon_sym_def] = ACTIONS(1641), - [anon_sym_export_DASHenv] = ACTIONS(1641), - [anon_sym_extern] = ACTIONS(1641), - [anon_sym_module] = ACTIONS(1641), - [anon_sym_use] = ACTIONS(1641), - [anon_sym_LPAREN] = ACTIONS(1645), - [anon_sym_DOLLAR] = ACTIONS(1645), - [anon_sym_error] = ACTIONS(1641), - [anon_sym_list] = ACTIONS(1641), - [anon_sym_DASH] = ACTIONS(1641), - [anon_sym_break] = ACTIONS(1641), - [anon_sym_continue] = ACTIONS(1641), - [anon_sym_for] = ACTIONS(1641), - [anon_sym_in] = ACTIONS(1641), - [anon_sym_loop] = ACTIONS(1641), - [anon_sym_make] = ACTIONS(1641), - [anon_sym_while] = ACTIONS(1641), - [anon_sym_do] = ACTIONS(1641), - [anon_sym_if] = ACTIONS(1641), - [anon_sym_else] = ACTIONS(1641), - [anon_sym_match] = ACTIONS(1641), - [anon_sym_RBRACE] = ACTIONS(1645), - [anon_sym_try] = ACTIONS(1641), - [anon_sym_catch] = ACTIONS(1641), - [anon_sym_return] = ACTIONS(1641), - [anon_sym_source] = ACTIONS(1641), - [anon_sym_source_DASHenv] = ACTIONS(1641), - [anon_sym_register] = ACTIONS(1641), - [anon_sym_hide] = ACTIONS(1641), - [anon_sym_hide_DASHenv] = ACTIONS(1641), - [anon_sym_overlay] = ACTIONS(1641), - [anon_sym_new] = ACTIONS(1641), - [anon_sym_as] = ACTIONS(1641), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1645), - [anon_sym_DOT_DOT2] = ACTIONS(1641), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1645), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1645), - [aux_sym__val_number_decimal_token1] = ACTIONS(1641), - [aux_sym__val_number_decimal_token2] = ACTIONS(1645), - [aux_sym__val_number_decimal_token3] = ACTIONS(1645), - [aux_sym__val_number_decimal_token4] = ACTIONS(1645), - [aux_sym__val_number_token1] = ACTIONS(1645), - [aux_sym__val_number_token2] = ACTIONS(1645), - [aux_sym__val_number_token3] = ACTIONS(1645), - [anon_sym_DQUOTE] = ACTIONS(1645), - [sym__str_single_quotes] = ACTIONS(1645), - [sym__str_back_ticks] = ACTIONS(1645), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1645), - [anon_sym_PLUS] = ACTIONS(1641), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(1079), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(373), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(1723), + [anon_sym_false] = ACTIONS(1723), + [anon_sym_null] = ACTIONS(1725), + [aux_sym_cmd_identifier_token38] = ACTIONS(1727), + [aux_sym_cmd_identifier_token39] = ACTIONS(1729), + [aux_sym_cmd_identifier_token40] = ACTIONS(1729), + [sym__newline] = ACTIONS(1731), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_if] = ACTIONS(491), + [anon_sym_LBRACE] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(193), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1737), + [aux_sym__val_number_decimal_token3] = ACTIONS(1739), + [aux_sym__val_number_decimal_token4] = ACTIONS(1741), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [269] = { - [sym_cell_path] = STATE(446), - [sym_path] = STATE(428), + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5102), + [sym_block] = STATE(5103), + [sym__expression_parenthesized] = STATE(5103), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3839), + [sym_expr_parenthesized] = STATE(2053), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(2028), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3132), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_command] = STATE(5103), [sym_comment] = STATE(269), - [aux_sym_cell_path_repeat1] = STATE(315), - [anon_sym_export] = ACTIONS(1675), - [anon_sym_alias] = ACTIONS(1675), - [anon_sym_let] = ACTIONS(1675), - [anon_sym_let_DASHenv] = ACTIONS(1675), - [anon_sym_mut] = ACTIONS(1675), - [anon_sym_const] = ACTIONS(1675), - [aux_sym_cmd_identifier_token1] = ACTIONS(1675), - [aux_sym_cmd_identifier_token2] = ACTIONS(1675), - [aux_sym_cmd_identifier_token3] = ACTIONS(1675), - [aux_sym_cmd_identifier_token4] = ACTIONS(1675), - [aux_sym_cmd_identifier_token5] = ACTIONS(1675), - [aux_sym_cmd_identifier_token6] = ACTIONS(1675), - [aux_sym_cmd_identifier_token7] = ACTIONS(1675), - [aux_sym_cmd_identifier_token8] = ACTIONS(1675), - [aux_sym_cmd_identifier_token9] = ACTIONS(1675), - [aux_sym_cmd_identifier_token10] = ACTIONS(1675), - [aux_sym_cmd_identifier_token11] = ACTIONS(1675), - [aux_sym_cmd_identifier_token12] = ACTIONS(1675), - [aux_sym_cmd_identifier_token13] = ACTIONS(1675), - [aux_sym_cmd_identifier_token14] = ACTIONS(1675), - [aux_sym_cmd_identifier_token15] = ACTIONS(1675), - [aux_sym_cmd_identifier_token16] = ACTIONS(1675), - [aux_sym_cmd_identifier_token17] = ACTIONS(1675), - [aux_sym_cmd_identifier_token18] = ACTIONS(1675), - [aux_sym_cmd_identifier_token19] = ACTIONS(1675), - [aux_sym_cmd_identifier_token20] = ACTIONS(1675), - [aux_sym_cmd_identifier_token21] = ACTIONS(1675), - [aux_sym_cmd_identifier_token22] = ACTIONS(1675), - [aux_sym_cmd_identifier_token23] = ACTIONS(1675), - [aux_sym_cmd_identifier_token24] = ACTIONS(1675), - [aux_sym_cmd_identifier_token25] = ACTIONS(1675), - [aux_sym_cmd_identifier_token26] = ACTIONS(1675), - [aux_sym_cmd_identifier_token27] = ACTIONS(1675), - [aux_sym_cmd_identifier_token28] = ACTIONS(1675), - [aux_sym_cmd_identifier_token29] = ACTIONS(1675), - [aux_sym_cmd_identifier_token30] = ACTIONS(1675), - [aux_sym_cmd_identifier_token31] = ACTIONS(1675), - [aux_sym_cmd_identifier_token32] = ACTIONS(1675), - [aux_sym_cmd_identifier_token33] = ACTIONS(1675), - [aux_sym_cmd_identifier_token34] = ACTIONS(1675), - [aux_sym_cmd_identifier_token35] = ACTIONS(1675), - [aux_sym_cmd_identifier_token36] = ACTIONS(1675), - [anon_sym_true] = ACTIONS(1677), - [anon_sym_false] = ACTIONS(1677), - [anon_sym_null] = ACTIONS(1677), - [aux_sym_cmd_identifier_token38] = ACTIONS(1675), - [aux_sym_cmd_identifier_token39] = ACTIONS(1677), - [aux_sym_cmd_identifier_token40] = ACTIONS(1677), - [anon_sym_def] = ACTIONS(1675), - [anon_sym_export_DASHenv] = ACTIONS(1675), - [anon_sym_extern] = ACTIONS(1675), - [anon_sym_module] = ACTIONS(1675), - [anon_sym_use] = ACTIONS(1675), - [anon_sym_LPAREN] = ACTIONS(1677), - [anon_sym_DOLLAR] = ACTIONS(1677), - [anon_sym_error] = ACTIONS(1675), - [anon_sym_list] = ACTIONS(1675), - [anon_sym_DASH] = ACTIONS(1675), - [anon_sym_break] = ACTIONS(1675), - [anon_sym_continue] = ACTIONS(1675), - [anon_sym_for] = ACTIONS(1675), - [anon_sym_in] = ACTIONS(1675), - [anon_sym_loop] = ACTIONS(1675), - [anon_sym_make] = ACTIONS(1675), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_do] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1675), - [anon_sym_else] = ACTIONS(1675), - [anon_sym_match] = ACTIONS(1675), - [anon_sym_RBRACE] = ACTIONS(1677), - [anon_sym_try] = ACTIONS(1675), - [anon_sym_catch] = ACTIONS(1675), - [anon_sym_return] = ACTIONS(1675), - [anon_sym_source] = ACTIONS(1675), - [anon_sym_source_DASHenv] = ACTIONS(1675), - [anon_sym_register] = ACTIONS(1675), - [anon_sym_hide] = ACTIONS(1675), - [anon_sym_hide_DASHenv] = ACTIONS(1675), - [anon_sym_overlay] = ACTIONS(1675), - [anon_sym_new] = ACTIONS(1675), - [anon_sym_as] = ACTIONS(1675), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1677), - [anon_sym_DOT_DOT2] = ACTIONS(1675), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1677), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1677), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1677), - [aux_sym__val_number_decimal_token1] = ACTIONS(1675), - [aux_sym__val_number_decimal_token2] = ACTIONS(1677), - [aux_sym__val_number_decimal_token3] = ACTIONS(1677), - [aux_sym__val_number_decimal_token4] = ACTIONS(1677), - [aux_sym__val_number_token1] = ACTIONS(1677), - [aux_sym__val_number_token2] = ACTIONS(1677), - [aux_sym__val_number_token3] = ACTIONS(1677), - [anon_sym_DQUOTE] = ACTIONS(1677), - [sym__str_single_quotes] = ACTIONS(1677), - [sym__str_back_ticks] = ACTIONS(1677), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1677), - [anon_sym_PLUS] = ACTIONS(1675), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(275), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(373), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(1723), + [anon_sym_false] = ACTIONS(1723), + [anon_sym_null] = ACTIONS(1725), + [aux_sym_cmd_identifier_token38] = ACTIONS(1727), + [aux_sym_cmd_identifier_token39] = ACTIONS(1729), + [aux_sym_cmd_identifier_token40] = ACTIONS(1729), + [sym__newline] = ACTIONS(1731), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_if] = ACTIONS(491), + [anon_sym_LBRACE] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(193), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1737), + [aux_sym__val_number_decimal_token3] = ACTIONS(1739), + [aux_sym__val_number_decimal_token4] = ACTIONS(1741), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [270] = { - [sym_cell_path] = STATE(455), - [sym_path] = STATE(428), + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5104), + [sym_block] = STATE(5105), + [sym__expression_parenthesized] = STATE(5105), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3839), + [sym_expr_parenthesized] = STATE(2053), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(2028), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3132), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_command] = STATE(5105), [sym_comment] = STATE(270), - [aux_sym_cell_path_repeat1] = STATE(315), - [anon_sym_export] = ACTIONS(1005), - [anon_sym_alias] = ACTIONS(1005), - [anon_sym_let] = ACTIONS(1005), - [anon_sym_let_DASHenv] = ACTIONS(1005), - [anon_sym_mut] = ACTIONS(1005), - [anon_sym_const] = ACTIONS(1005), - [aux_sym_cmd_identifier_token1] = ACTIONS(1005), - [aux_sym_cmd_identifier_token2] = ACTIONS(1005), - [aux_sym_cmd_identifier_token3] = ACTIONS(1005), - [aux_sym_cmd_identifier_token4] = ACTIONS(1005), - [aux_sym_cmd_identifier_token5] = ACTIONS(1005), - [aux_sym_cmd_identifier_token6] = ACTIONS(1005), - [aux_sym_cmd_identifier_token7] = ACTIONS(1005), - [aux_sym_cmd_identifier_token8] = ACTIONS(1005), - [aux_sym_cmd_identifier_token9] = ACTIONS(1005), - [aux_sym_cmd_identifier_token10] = ACTIONS(1005), - [aux_sym_cmd_identifier_token11] = ACTIONS(1005), - [aux_sym_cmd_identifier_token12] = ACTIONS(1005), - [aux_sym_cmd_identifier_token13] = ACTIONS(1005), - [aux_sym_cmd_identifier_token14] = ACTIONS(1005), - [aux_sym_cmd_identifier_token15] = ACTIONS(1005), - [aux_sym_cmd_identifier_token16] = ACTIONS(1005), - [aux_sym_cmd_identifier_token17] = ACTIONS(1005), - [aux_sym_cmd_identifier_token18] = ACTIONS(1005), - [aux_sym_cmd_identifier_token19] = ACTIONS(1005), - [aux_sym_cmd_identifier_token20] = ACTIONS(1005), - [aux_sym_cmd_identifier_token21] = ACTIONS(1005), - [aux_sym_cmd_identifier_token22] = ACTIONS(1005), - [aux_sym_cmd_identifier_token23] = ACTIONS(1005), - [aux_sym_cmd_identifier_token24] = ACTIONS(1005), - [aux_sym_cmd_identifier_token25] = ACTIONS(1005), - [aux_sym_cmd_identifier_token26] = ACTIONS(1005), - [aux_sym_cmd_identifier_token27] = ACTIONS(1005), - [aux_sym_cmd_identifier_token28] = ACTIONS(1005), - [aux_sym_cmd_identifier_token29] = ACTIONS(1005), - [aux_sym_cmd_identifier_token30] = ACTIONS(1005), - [aux_sym_cmd_identifier_token31] = ACTIONS(1005), - [aux_sym_cmd_identifier_token32] = ACTIONS(1005), - [aux_sym_cmd_identifier_token33] = ACTIONS(1005), - [aux_sym_cmd_identifier_token34] = ACTIONS(1005), - [aux_sym_cmd_identifier_token35] = ACTIONS(1005), - [aux_sym_cmd_identifier_token36] = ACTIONS(1005), - [anon_sym_true] = ACTIONS(1007), - [anon_sym_false] = ACTIONS(1007), - [anon_sym_null] = ACTIONS(1007), - [aux_sym_cmd_identifier_token38] = ACTIONS(1005), - [aux_sym_cmd_identifier_token39] = ACTIONS(1007), - [aux_sym_cmd_identifier_token40] = ACTIONS(1007), - [anon_sym_def] = ACTIONS(1005), - [anon_sym_export_DASHenv] = ACTIONS(1005), - [anon_sym_extern] = ACTIONS(1005), - [anon_sym_module] = ACTIONS(1005), - [anon_sym_use] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1007), - [anon_sym_DOLLAR] = ACTIONS(1007), - [anon_sym_error] = ACTIONS(1005), - [anon_sym_list] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_break] = ACTIONS(1005), - [anon_sym_continue] = ACTIONS(1005), - [anon_sym_for] = ACTIONS(1005), - [anon_sym_in] = ACTIONS(1005), - [anon_sym_loop] = ACTIONS(1005), - [anon_sym_make] = ACTIONS(1005), - [anon_sym_while] = ACTIONS(1005), - [anon_sym_do] = ACTIONS(1005), - [anon_sym_if] = ACTIONS(1005), - [anon_sym_else] = ACTIONS(1005), - [anon_sym_match] = ACTIONS(1005), - [anon_sym_RBRACE] = ACTIONS(1007), - [anon_sym_try] = ACTIONS(1005), - [anon_sym_catch] = ACTIONS(1005), - [anon_sym_return] = ACTIONS(1005), - [anon_sym_source] = ACTIONS(1005), - [anon_sym_source_DASHenv] = ACTIONS(1005), - [anon_sym_register] = ACTIONS(1005), - [anon_sym_hide] = ACTIONS(1005), - [anon_sym_hide_DASHenv] = ACTIONS(1005), - [anon_sym_overlay] = ACTIONS(1005), - [anon_sym_new] = ACTIONS(1005), - [anon_sym_as] = ACTIONS(1005), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1007), - [anon_sym_DOT_DOT2] = ACTIONS(1005), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1007), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1007), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1007), - [aux_sym__val_number_decimal_token1] = ACTIONS(1005), - [aux_sym__val_number_decimal_token2] = ACTIONS(1007), - [aux_sym__val_number_decimal_token3] = ACTIONS(1007), - [aux_sym__val_number_decimal_token4] = ACTIONS(1007), - [aux_sym__val_number_token1] = ACTIONS(1007), - [aux_sym__val_number_token2] = ACTIONS(1007), - [aux_sym__val_number_token3] = ACTIONS(1007), - [anon_sym_DQUOTE] = ACTIONS(1007), - [sym__str_single_quotes] = ACTIONS(1007), - [sym__str_back_ticks] = ACTIONS(1007), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1007), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(277), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(373), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(1723), + [anon_sym_false] = ACTIONS(1723), + [anon_sym_null] = ACTIONS(1725), + [aux_sym_cmd_identifier_token38] = ACTIONS(1727), + [aux_sym_cmd_identifier_token39] = ACTIONS(1729), + [aux_sym_cmd_identifier_token40] = ACTIONS(1729), + [sym__newline] = ACTIONS(1731), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_if] = ACTIONS(491), + [anon_sym_LBRACE] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(193), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1737), + [aux_sym__val_number_decimal_token3] = ACTIONS(1739), + [aux_sym__val_number_decimal_token4] = ACTIONS(1741), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [271] = { [sym_comment] = STATE(271), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_alias] = ACTIONS(1691), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_let_DASHenv] = ACTIONS(1691), - [anon_sym_mut] = ACTIONS(1691), - [anon_sym_const] = ACTIONS(1691), - [aux_sym_cmd_identifier_token1] = ACTIONS(1691), - [aux_sym_cmd_identifier_token2] = ACTIONS(1691), - [aux_sym_cmd_identifier_token3] = ACTIONS(1691), - [aux_sym_cmd_identifier_token4] = ACTIONS(1691), - [aux_sym_cmd_identifier_token5] = ACTIONS(1691), - [aux_sym_cmd_identifier_token6] = ACTIONS(1691), - [aux_sym_cmd_identifier_token7] = ACTIONS(1691), - [aux_sym_cmd_identifier_token8] = ACTIONS(1691), - [aux_sym_cmd_identifier_token9] = ACTIONS(1691), - [aux_sym_cmd_identifier_token10] = ACTIONS(1691), - [aux_sym_cmd_identifier_token11] = ACTIONS(1691), - [aux_sym_cmd_identifier_token12] = ACTIONS(1691), - [aux_sym_cmd_identifier_token13] = ACTIONS(1691), - [aux_sym_cmd_identifier_token14] = ACTIONS(1691), - [aux_sym_cmd_identifier_token15] = ACTIONS(1691), - [aux_sym_cmd_identifier_token16] = ACTIONS(1691), - [aux_sym_cmd_identifier_token17] = ACTIONS(1691), - [aux_sym_cmd_identifier_token18] = ACTIONS(1691), - [aux_sym_cmd_identifier_token19] = ACTIONS(1691), - [aux_sym_cmd_identifier_token20] = ACTIONS(1691), - [aux_sym_cmd_identifier_token21] = ACTIONS(1691), - [aux_sym_cmd_identifier_token22] = ACTIONS(1691), - [aux_sym_cmd_identifier_token23] = ACTIONS(1691), - [aux_sym_cmd_identifier_token24] = ACTIONS(1309), - [aux_sym_cmd_identifier_token25] = ACTIONS(1691), - [aux_sym_cmd_identifier_token26] = ACTIONS(1309), - [aux_sym_cmd_identifier_token27] = ACTIONS(1691), - [aux_sym_cmd_identifier_token28] = ACTIONS(1691), - [aux_sym_cmd_identifier_token29] = ACTIONS(1691), - [aux_sym_cmd_identifier_token30] = ACTIONS(1691), - [aux_sym_cmd_identifier_token31] = ACTIONS(1309), - [aux_sym_cmd_identifier_token32] = ACTIONS(1309), - [aux_sym_cmd_identifier_token33] = ACTIONS(1309), - [aux_sym_cmd_identifier_token34] = ACTIONS(1309), - [aux_sym_cmd_identifier_token35] = ACTIONS(1309), - [aux_sym_cmd_identifier_token36] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1309), - [anon_sym_false] = ACTIONS(1309), - [anon_sym_null] = ACTIONS(1309), - [aux_sym_cmd_identifier_token38] = ACTIONS(1691), - [aux_sym_cmd_identifier_token39] = ACTIONS(1309), - [aux_sym_cmd_identifier_token40] = ACTIONS(1309), - [sym__newline] = ACTIONS(1309), - [anon_sym_SEMI] = ACTIONS(1309), - [anon_sym_def] = ACTIONS(1691), - [anon_sym_export_DASHenv] = ACTIONS(1691), - [anon_sym_extern] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_use] = ACTIONS(1691), - [anon_sym_LBRACK] = ACTIONS(1309), - [anon_sym_LPAREN] = ACTIONS(1309), - [anon_sym_RPAREN] = ACTIONS(1309), - [anon_sym_DOLLAR] = ACTIONS(1691), - [anon_sym_error] = ACTIONS(1691), - [anon_sym_DASH] = ACTIONS(1691), - [anon_sym_break] = ACTIONS(1691), - [anon_sym_continue] = ACTIONS(1691), - [anon_sym_for] = ACTIONS(1691), - [anon_sym_loop] = ACTIONS(1691), - [anon_sym_while] = ACTIONS(1691), - [anon_sym_do] = ACTIONS(1691), - [anon_sym_if] = ACTIONS(1691), - [anon_sym_match] = ACTIONS(1691), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_RBRACE] = ACTIONS(1309), - [anon_sym_DOT_DOT] = ACTIONS(1691), - [anon_sym_try] = ACTIONS(1691), - [anon_sym_return] = ACTIONS(1691), - [anon_sym_source] = ACTIONS(1691), - [anon_sym_source_DASHenv] = ACTIONS(1691), - [anon_sym_register] = ACTIONS(1691), - [anon_sym_hide] = ACTIONS(1691), - [anon_sym_hide_DASHenv] = ACTIONS(1691), - [anon_sym_overlay] = ACTIONS(1691), - [anon_sym_where] = ACTIONS(1309), - [aux_sym_expr_unary_token1] = ACTIONS(1309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1309), - [anon_sym_DOT_DOT_LT] = ACTIONS(1309), - [aux_sym__val_number_decimal_token1] = ACTIONS(1691), - [aux_sym__val_number_decimal_token2] = ACTIONS(1309), - [aux_sym__val_number_decimal_token3] = ACTIONS(1309), - [aux_sym__val_number_decimal_token4] = ACTIONS(1309), - [aux_sym__val_number_token1] = ACTIONS(1309), - [aux_sym__val_number_token2] = ACTIONS(1309), - [aux_sym__val_number_token3] = ACTIONS(1309), - [anon_sym_0b] = ACTIONS(1691), - [anon_sym_0o] = ACTIONS(1691), - [anon_sym_0x] = ACTIONS(1691), - [sym_val_date] = ACTIONS(1309), - [anon_sym_DQUOTE] = ACTIONS(1309), - [sym__str_single_quotes] = ACTIONS(1309), - [sym__str_back_ticks] = ACTIONS(1309), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1309), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1309), - [aux_sym_env_var_token1] = ACTIONS(1691), - [anon_sym_CARET] = ACTIONS(1309), - [anon_sym_POUND] = ACTIONS(247), + [ts_builtin_sym_end] = ACTIONS(1366), + [anon_sym_POUND_BANG] = ACTIONS(1362), + [anon_sym_export] = ACTIONS(1757), + [anon_sym_alias] = ACTIONS(1757), + [anon_sym_let] = ACTIONS(1757), + [anon_sym_let_DASHenv] = ACTIONS(1757), + [anon_sym_mut] = ACTIONS(1757), + [anon_sym_const] = ACTIONS(1757), + [aux_sym_cmd_identifier_token1] = ACTIONS(1757), + [aux_sym_cmd_identifier_token2] = ACTIONS(1757), + [aux_sym_cmd_identifier_token3] = ACTIONS(1757), + [aux_sym_cmd_identifier_token4] = ACTIONS(1757), + [aux_sym_cmd_identifier_token5] = ACTIONS(1757), + [aux_sym_cmd_identifier_token6] = ACTIONS(1757), + [aux_sym_cmd_identifier_token7] = ACTIONS(1757), + [aux_sym_cmd_identifier_token8] = ACTIONS(1757), + [aux_sym_cmd_identifier_token9] = ACTIONS(1757), + [aux_sym_cmd_identifier_token10] = ACTIONS(1757), + [aux_sym_cmd_identifier_token11] = ACTIONS(1757), + [aux_sym_cmd_identifier_token12] = ACTIONS(1757), + [aux_sym_cmd_identifier_token13] = ACTIONS(1757), + [aux_sym_cmd_identifier_token14] = ACTIONS(1757), + [aux_sym_cmd_identifier_token15] = ACTIONS(1757), + [aux_sym_cmd_identifier_token16] = ACTIONS(1757), + [aux_sym_cmd_identifier_token17] = ACTIONS(1757), + [aux_sym_cmd_identifier_token18] = ACTIONS(1757), + [aux_sym_cmd_identifier_token19] = ACTIONS(1757), + [aux_sym_cmd_identifier_token20] = ACTIONS(1757), + [aux_sym_cmd_identifier_token21] = ACTIONS(1757), + [aux_sym_cmd_identifier_token22] = ACTIONS(1757), + [aux_sym_cmd_identifier_token23] = ACTIONS(1757), + [aux_sym_cmd_identifier_token24] = ACTIONS(1366), + [aux_sym_cmd_identifier_token25] = ACTIONS(1757), + [aux_sym_cmd_identifier_token26] = ACTIONS(1366), + [aux_sym_cmd_identifier_token27] = ACTIONS(1757), + [aux_sym_cmd_identifier_token28] = ACTIONS(1757), + [aux_sym_cmd_identifier_token29] = ACTIONS(1757), + [aux_sym_cmd_identifier_token30] = ACTIONS(1757), + [aux_sym_cmd_identifier_token31] = ACTIONS(1366), + [aux_sym_cmd_identifier_token32] = ACTIONS(1366), + [aux_sym_cmd_identifier_token33] = ACTIONS(1366), + [aux_sym_cmd_identifier_token34] = ACTIONS(1366), + [aux_sym_cmd_identifier_token35] = ACTIONS(1366), + [aux_sym_cmd_identifier_token36] = ACTIONS(1757), + [anon_sym_true] = ACTIONS(1366), + [anon_sym_false] = ACTIONS(1366), + [anon_sym_null] = ACTIONS(1366), + [aux_sym_cmd_identifier_token38] = ACTIONS(1757), + [aux_sym_cmd_identifier_token39] = ACTIONS(1366), + [aux_sym_cmd_identifier_token40] = ACTIONS(1366), + [sym__newline] = ACTIONS(1359), + [anon_sym_SEMI] = ACTIONS(1366), + [anon_sym_def] = ACTIONS(1757), + [anon_sym_export_DASHenv] = ACTIONS(1757), + [anon_sym_extern] = ACTIONS(1757), + [anon_sym_module] = ACTIONS(1757), + [anon_sym_use] = ACTIONS(1757), + [anon_sym_LBRACK] = ACTIONS(1366), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_DOLLAR] = ACTIONS(1757), + [anon_sym_error] = ACTIONS(1757), + [anon_sym_DASH] = ACTIONS(1757), + [anon_sym_break] = ACTIONS(1757), + [anon_sym_continue] = ACTIONS(1757), + [anon_sym_for] = ACTIONS(1757), + [anon_sym_loop] = ACTIONS(1757), + [anon_sym_while] = ACTIONS(1757), + [anon_sym_do] = ACTIONS(1757), + [anon_sym_if] = ACTIONS(1757), + [anon_sym_match] = ACTIONS(1757), + [anon_sym_LBRACE] = ACTIONS(1366), + [anon_sym_DOT_DOT] = ACTIONS(1757), + [anon_sym_try] = ACTIONS(1757), + [anon_sym_return] = ACTIONS(1757), + [anon_sym_source] = ACTIONS(1757), + [anon_sym_source_DASHenv] = ACTIONS(1757), + [anon_sym_register] = ACTIONS(1757), + [anon_sym_hide] = ACTIONS(1757), + [anon_sym_hide_DASHenv] = ACTIONS(1757), + [anon_sym_overlay] = ACTIONS(1757), + [anon_sym_where] = ACTIONS(1366), + [aux_sym_expr_unary_token1] = ACTIONS(1366), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1366), + [anon_sym_DOT_DOT_LT] = ACTIONS(1366), + [aux_sym__val_number_decimal_token1] = ACTIONS(1757), + [aux_sym__val_number_decimal_token2] = ACTIONS(1366), + [aux_sym__val_number_decimal_token3] = ACTIONS(1366), + [aux_sym__val_number_decimal_token4] = ACTIONS(1366), + [aux_sym__val_number_token1] = ACTIONS(1366), + [aux_sym__val_number_token2] = ACTIONS(1366), + [aux_sym__val_number_token3] = ACTIONS(1366), + [anon_sym_0b] = ACTIONS(1757), + [anon_sym_0o] = ACTIONS(1757), + [anon_sym_0x] = ACTIONS(1757), + [sym_val_date] = ACTIONS(1366), + [anon_sym_DQUOTE] = ACTIONS(1366), + [sym__str_single_quotes] = ACTIONS(1366), + [sym__str_back_ticks] = ACTIONS(1366), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1366), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1366), + [aux_sym_env_var_token1] = ACTIONS(1757), + [anon_sym_CARET] = ACTIONS(1366), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1366), }, [272] = { - [sym_path] = STATE(369), + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5122), + [sym_block] = STATE(5123), + [sym__expression_parenthesized] = STATE(5123), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3839), + [sym_expr_parenthesized] = STATE(2053), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(2028), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3132), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_command] = STATE(5123), [sym_comment] = STATE(272), - [aux_sym_cell_path_repeat1] = STATE(251), - [anon_sym_export] = ACTIONS(1011), - [anon_sym_alias] = ACTIONS(1011), - [anon_sym_let] = ACTIONS(1011), - [anon_sym_let_DASHenv] = ACTIONS(1011), - [anon_sym_mut] = ACTIONS(1011), - [anon_sym_const] = ACTIONS(1011), - [aux_sym_cmd_identifier_token1] = ACTIONS(1011), - [aux_sym_cmd_identifier_token2] = ACTIONS(1011), - [aux_sym_cmd_identifier_token3] = ACTIONS(1011), - [aux_sym_cmd_identifier_token4] = ACTIONS(1011), - [aux_sym_cmd_identifier_token5] = ACTIONS(1011), - [aux_sym_cmd_identifier_token6] = ACTIONS(1011), - [aux_sym_cmd_identifier_token7] = ACTIONS(1011), - [aux_sym_cmd_identifier_token8] = ACTIONS(1011), - [aux_sym_cmd_identifier_token9] = ACTIONS(1011), - [aux_sym_cmd_identifier_token10] = ACTIONS(1011), - [aux_sym_cmd_identifier_token11] = ACTIONS(1011), - [aux_sym_cmd_identifier_token12] = ACTIONS(1011), - [aux_sym_cmd_identifier_token13] = ACTIONS(1011), - [aux_sym_cmd_identifier_token14] = ACTIONS(1011), - [aux_sym_cmd_identifier_token15] = ACTIONS(1011), - [aux_sym_cmd_identifier_token16] = ACTIONS(1011), - [aux_sym_cmd_identifier_token17] = ACTIONS(1011), - [aux_sym_cmd_identifier_token18] = ACTIONS(1011), - [aux_sym_cmd_identifier_token19] = ACTIONS(1011), - [aux_sym_cmd_identifier_token20] = ACTIONS(1011), - [aux_sym_cmd_identifier_token21] = ACTIONS(1011), - [aux_sym_cmd_identifier_token22] = ACTIONS(1011), - [aux_sym_cmd_identifier_token23] = ACTIONS(1011), - [aux_sym_cmd_identifier_token24] = ACTIONS(1011), - [aux_sym_cmd_identifier_token25] = ACTIONS(1011), - [aux_sym_cmd_identifier_token26] = ACTIONS(1011), - [aux_sym_cmd_identifier_token27] = ACTIONS(1011), - [aux_sym_cmd_identifier_token28] = ACTIONS(1011), - [aux_sym_cmd_identifier_token29] = ACTIONS(1011), - [aux_sym_cmd_identifier_token30] = ACTIONS(1011), - [aux_sym_cmd_identifier_token31] = ACTIONS(1011), - [aux_sym_cmd_identifier_token32] = ACTIONS(1011), - [aux_sym_cmd_identifier_token33] = ACTIONS(1011), - [aux_sym_cmd_identifier_token34] = ACTIONS(1011), - [aux_sym_cmd_identifier_token35] = ACTIONS(1011), - [aux_sym_cmd_identifier_token36] = ACTIONS(1011), - [anon_sym_true] = ACTIONS(1011), - [anon_sym_false] = ACTIONS(1011), - [anon_sym_null] = ACTIONS(1011), - [aux_sym_cmd_identifier_token38] = ACTIONS(1011), - [aux_sym_cmd_identifier_token39] = ACTIONS(1011), - [aux_sym_cmd_identifier_token40] = ACTIONS(1011), - [anon_sym_def] = ACTIONS(1011), - [anon_sym_export_DASHenv] = ACTIONS(1011), - [anon_sym_extern] = ACTIONS(1011), - [anon_sym_module] = ACTIONS(1011), - [anon_sym_use] = ACTIONS(1011), - [anon_sym_LPAREN] = ACTIONS(1011), - [anon_sym_DOLLAR] = ACTIONS(1011), - [anon_sym_error] = ACTIONS(1011), - [anon_sym_list] = ACTIONS(1011), - [anon_sym_DASH] = ACTIONS(1011), - [anon_sym_break] = ACTIONS(1011), - [anon_sym_continue] = ACTIONS(1011), - [anon_sym_for] = ACTIONS(1011), - [anon_sym_in] = ACTIONS(1011), - [anon_sym_loop] = ACTIONS(1011), - [anon_sym_make] = ACTIONS(1011), - [anon_sym_while] = ACTIONS(1011), - [anon_sym_do] = ACTIONS(1011), - [anon_sym_if] = ACTIONS(1011), - [anon_sym_else] = ACTIONS(1011), - [anon_sym_match] = ACTIONS(1011), - [anon_sym_RBRACE] = ACTIONS(1011), - [anon_sym_try] = ACTIONS(1011), - [anon_sym_catch] = ACTIONS(1011), - [anon_sym_return] = ACTIONS(1011), - [anon_sym_source] = ACTIONS(1011), - [anon_sym_source_DASHenv] = ACTIONS(1011), - [anon_sym_register] = ACTIONS(1011), - [anon_sym_hide] = ACTIONS(1011), - [anon_sym_hide_DASHenv] = ACTIONS(1011), - [anon_sym_overlay] = ACTIONS(1011), - [anon_sym_new] = ACTIONS(1011), - [anon_sym_as] = ACTIONS(1011), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1011), - [anon_sym_DOT_DOT2] = ACTIONS(1011), - [anon_sym_DOT] = ACTIONS(1643), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1013), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1013), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1011), - [aux_sym__val_number_decimal_token1] = ACTIONS(1011), - [aux_sym__val_number_decimal_token2] = ACTIONS(1011), - [aux_sym__val_number_decimal_token3] = ACTIONS(1011), - [aux_sym__val_number_decimal_token4] = ACTIONS(1011), - [aux_sym__val_number_token1] = ACTIONS(1011), - [aux_sym__val_number_token2] = ACTIONS(1011), - [aux_sym__val_number_token3] = ACTIONS(1011), - [anon_sym_DQUOTE] = ACTIONS(1011), - [sym__str_single_quotes] = ACTIONS(1011), - [sym__str_back_ticks] = ACTIONS(1011), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1011), - [sym__entry_separator] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(1011), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(1079), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(373), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(1723), + [anon_sym_false] = ACTIONS(1723), + [anon_sym_null] = ACTIONS(1725), + [aux_sym_cmd_identifier_token38] = ACTIONS(1727), + [aux_sym_cmd_identifier_token39] = ACTIONS(1729), + [aux_sym_cmd_identifier_token40] = ACTIONS(1729), + [sym__newline] = ACTIONS(1731), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_if] = ACTIONS(491), + [anon_sym_LBRACE] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(193), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1737), + [aux_sym__val_number_decimal_token3] = ACTIONS(1739), + [aux_sym__val_number_decimal_token4] = ACTIONS(1741), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [273] = { + [sym_cell_path] = STATE(475), + [sym_path] = STATE(423), [sym_comment] = STATE(273), - [ts_builtin_sym_end] = ACTIONS(1309), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_alias] = ACTIONS(1691), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_let_DASHenv] = ACTIONS(1691), - [anon_sym_mut] = ACTIONS(1691), - [anon_sym_const] = ACTIONS(1691), - [aux_sym_cmd_identifier_token1] = ACTIONS(1691), - [aux_sym_cmd_identifier_token2] = ACTIONS(1691), - [aux_sym_cmd_identifier_token3] = ACTIONS(1691), - [aux_sym_cmd_identifier_token4] = ACTIONS(1691), - [aux_sym_cmd_identifier_token5] = ACTIONS(1691), - [aux_sym_cmd_identifier_token6] = ACTIONS(1691), - [aux_sym_cmd_identifier_token7] = ACTIONS(1691), - [aux_sym_cmd_identifier_token8] = ACTIONS(1691), - [aux_sym_cmd_identifier_token9] = ACTIONS(1691), - [aux_sym_cmd_identifier_token10] = ACTIONS(1691), - [aux_sym_cmd_identifier_token11] = ACTIONS(1691), - [aux_sym_cmd_identifier_token12] = ACTIONS(1691), - [aux_sym_cmd_identifier_token13] = ACTIONS(1691), - [aux_sym_cmd_identifier_token14] = ACTIONS(1691), - [aux_sym_cmd_identifier_token15] = ACTIONS(1691), - [aux_sym_cmd_identifier_token16] = ACTIONS(1691), - [aux_sym_cmd_identifier_token17] = ACTIONS(1691), - [aux_sym_cmd_identifier_token18] = ACTIONS(1691), - [aux_sym_cmd_identifier_token19] = ACTIONS(1691), - [aux_sym_cmd_identifier_token20] = ACTIONS(1691), - [aux_sym_cmd_identifier_token21] = ACTIONS(1691), - [aux_sym_cmd_identifier_token22] = ACTIONS(1691), - [aux_sym_cmd_identifier_token23] = ACTIONS(1691), - [aux_sym_cmd_identifier_token24] = ACTIONS(1309), - [aux_sym_cmd_identifier_token25] = ACTIONS(1691), - [aux_sym_cmd_identifier_token26] = ACTIONS(1309), - [aux_sym_cmd_identifier_token27] = ACTIONS(1691), - [aux_sym_cmd_identifier_token28] = ACTIONS(1691), - [aux_sym_cmd_identifier_token29] = ACTIONS(1691), - [aux_sym_cmd_identifier_token30] = ACTIONS(1691), - [aux_sym_cmd_identifier_token31] = ACTIONS(1309), - [aux_sym_cmd_identifier_token32] = ACTIONS(1309), - [aux_sym_cmd_identifier_token33] = ACTIONS(1309), - [aux_sym_cmd_identifier_token34] = ACTIONS(1309), - [aux_sym_cmd_identifier_token35] = ACTIONS(1309), - [aux_sym_cmd_identifier_token36] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1309), - [anon_sym_false] = ACTIONS(1309), - [anon_sym_null] = ACTIONS(1309), - [aux_sym_cmd_identifier_token38] = ACTIONS(1691), - [aux_sym_cmd_identifier_token39] = ACTIONS(1309), - [aux_sym_cmd_identifier_token40] = ACTIONS(1309), - [sym__newline] = ACTIONS(1309), - [anon_sym_SEMI] = ACTIONS(1309), - [anon_sym_def] = ACTIONS(1691), - [anon_sym_export_DASHenv] = ACTIONS(1691), - [anon_sym_extern] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_use] = ACTIONS(1691), - [anon_sym_LBRACK] = ACTIONS(1309), - [anon_sym_LPAREN] = ACTIONS(1309), - [anon_sym_DOLLAR] = ACTIONS(1691), - [anon_sym_error] = ACTIONS(1691), - [anon_sym_DASH] = ACTIONS(1691), - [anon_sym_break] = ACTIONS(1691), - [anon_sym_continue] = ACTIONS(1691), - [anon_sym_for] = ACTIONS(1691), - [anon_sym_loop] = ACTIONS(1691), - [anon_sym_while] = ACTIONS(1691), - [anon_sym_do] = ACTIONS(1691), - [anon_sym_if] = ACTIONS(1691), - [anon_sym_match] = ACTIONS(1691), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_DOT_DOT] = ACTIONS(1691), - [anon_sym_try] = ACTIONS(1691), - [anon_sym_return] = ACTIONS(1691), - [anon_sym_source] = ACTIONS(1691), - [anon_sym_source_DASHenv] = ACTIONS(1691), - [anon_sym_register] = ACTIONS(1691), - [anon_sym_hide] = ACTIONS(1691), - [anon_sym_hide_DASHenv] = ACTIONS(1691), - [anon_sym_overlay] = ACTIONS(1691), - [anon_sym_where] = ACTIONS(1309), - [aux_sym_expr_unary_token1] = ACTIONS(1309), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1309), - [anon_sym_DOT_DOT_LT] = ACTIONS(1309), - [aux_sym__val_number_decimal_token1] = ACTIONS(1691), - [aux_sym__val_number_decimal_token2] = ACTIONS(1309), - [aux_sym__val_number_decimal_token3] = ACTIONS(1309), - [aux_sym__val_number_decimal_token4] = ACTIONS(1309), - [aux_sym__val_number_token1] = ACTIONS(1309), - [aux_sym__val_number_token2] = ACTIONS(1309), - [aux_sym__val_number_token3] = ACTIONS(1309), - [anon_sym_0b] = ACTIONS(1691), - [anon_sym_0o] = ACTIONS(1691), - [anon_sym_0x] = ACTIONS(1691), - [sym_val_date] = ACTIONS(1309), - [anon_sym_DQUOTE] = ACTIONS(1309), - [sym__str_single_quotes] = ACTIONS(1309), - [sym__str_back_ticks] = ACTIONS(1309), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1309), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1309), - [aux_sym_env_var_token1] = ACTIONS(1691), - [anon_sym_CARET] = ACTIONS(1309), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(301), + [anon_sym_export] = ACTIONS(1670), + [anon_sym_alias] = ACTIONS(1670), + [anon_sym_let] = ACTIONS(1670), + [anon_sym_let_DASHenv] = ACTIONS(1670), + [anon_sym_mut] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(1670), + [aux_sym_cmd_identifier_token1] = ACTIONS(1670), + [aux_sym_cmd_identifier_token2] = ACTIONS(1670), + [aux_sym_cmd_identifier_token3] = ACTIONS(1670), + [aux_sym_cmd_identifier_token4] = ACTIONS(1670), + [aux_sym_cmd_identifier_token5] = ACTIONS(1670), + [aux_sym_cmd_identifier_token6] = ACTIONS(1670), + [aux_sym_cmd_identifier_token7] = ACTIONS(1670), + [aux_sym_cmd_identifier_token8] = ACTIONS(1670), + [aux_sym_cmd_identifier_token9] = ACTIONS(1670), + [aux_sym_cmd_identifier_token10] = ACTIONS(1670), + [aux_sym_cmd_identifier_token11] = ACTIONS(1670), + [aux_sym_cmd_identifier_token12] = ACTIONS(1670), + [aux_sym_cmd_identifier_token13] = ACTIONS(1670), + [aux_sym_cmd_identifier_token14] = ACTIONS(1670), + [aux_sym_cmd_identifier_token15] = ACTIONS(1670), + [aux_sym_cmd_identifier_token16] = ACTIONS(1670), + [aux_sym_cmd_identifier_token17] = ACTIONS(1670), + [aux_sym_cmd_identifier_token18] = ACTIONS(1670), + [aux_sym_cmd_identifier_token19] = ACTIONS(1670), + [aux_sym_cmd_identifier_token20] = ACTIONS(1670), + [aux_sym_cmd_identifier_token21] = ACTIONS(1670), + [aux_sym_cmd_identifier_token22] = ACTIONS(1670), + [aux_sym_cmd_identifier_token23] = ACTIONS(1670), + [aux_sym_cmd_identifier_token24] = ACTIONS(1670), + [aux_sym_cmd_identifier_token25] = ACTIONS(1670), + [aux_sym_cmd_identifier_token26] = ACTIONS(1670), + [aux_sym_cmd_identifier_token27] = ACTIONS(1670), + [aux_sym_cmd_identifier_token28] = ACTIONS(1670), + [aux_sym_cmd_identifier_token29] = ACTIONS(1670), + [aux_sym_cmd_identifier_token30] = ACTIONS(1670), + [aux_sym_cmd_identifier_token31] = ACTIONS(1670), + [aux_sym_cmd_identifier_token32] = ACTIONS(1670), + [aux_sym_cmd_identifier_token33] = ACTIONS(1670), + [aux_sym_cmd_identifier_token34] = ACTIONS(1670), + [aux_sym_cmd_identifier_token35] = ACTIONS(1670), + [aux_sym_cmd_identifier_token36] = ACTIONS(1670), + [anon_sym_true] = ACTIONS(1672), + [anon_sym_false] = ACTIONS(1672), + [anon_sym_null] = ACTIONS(1672), + [aux_sym_cmd_identifier_token38] = ACTIONS(1670), + [aux_sym_cmd_identifier_token39] = ACTIONS(1672), + [aux_sym_cmd_identifier_token40] = ACTIONS(1672), + [anon_sym_def] = ACTIONS(1670), + [anon_sym_export_DASHenv] = ACTIONS(1670), + [anon_sym_extern] = ACTIONS(1670), + [anon_sym_module] = ACTIONS(1670), + [anon_sym_use] = ACTIONS(1670), + [anon_sym_LPAREN] = ACTIONS(1672), + [anon_sym_DOLLAR] = ACTIONS(1672), + [anon_sym_error] = ACTIONS(1670), + [anon_sym_list] = ACTIONS(1670), + [anon_sym_DASH] = ACTIONS(1670), + [anon_sym_break] = ACTIONS(1670), + [anon_sym_continue] = ACTIONS(1670), + [anon_sym_for] = ACTIONS(1670), + [anon_sym_in] = ACTIONS(1670), + [anon_sym_loop] = ACTIONS(1670), + [anon_sym_make] = ACTIONS(1670), + [anon_sym_while] = ACTIONS(1670), + [anon_sym_do] = ACTIONS(1670), + [anon_sym_if] = ACTIONS(1670), + [anon_sym_else] = ACTIONS(1670), + [anon_sym_match] = ACTIONS(1670), + [anon_sym_RBRACE] = ACTIONS(1672), + [anon_sym_try] = ACTIONS(1670), + [anon_sym_catch] = ACTIONS(1670), + [anon_sym_return] = ACTIONS(1670), + [anon_sym_source] = ACTIONS(1670), + [anon_sym_source_DASHenv] = ACTIONS(1670), + [anon_sym_register] = ACTIONS(1670), + [anon_sym_hide] = ACTIONS(1670), + [anon_sym_hide_DASHenv] = ACTIONS(1670), + [anon_sym_overlay] = ACTIONS(1670), + [anon_sym_new] = ACTIONS(1670), + [anon_sym_as] = ACTIONS(1670), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1672), + [anon_sym_DOT_DOT2] = ACTIONS(1670), + [anon_sym_DOT] = ACTIONS(1759), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1672), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1672), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1672), + [aux_sym__val_number_decimal_token1] = ACTIONS(1670), + [aux_sym__val_number_decimal_token2] = ACTIONS(1672), + [aux_sym__val_number_decimal_token3] = ACTIONS(1672), + [aux_sym__val_number_decimal_token4] = ACTIONS(1672), + [aux_sym__val_number_token1] = ACTIONS(1672), + [aux_sym__val_number_token2] = ACTIONS(1672), + [aux_sym__val_number_token3] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1672), + [sym__str_single_quotes] = ACTIONS(1672), + [sym__str_back_ticks] = ACTIONS(1672), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1672), + [anon_sym_PLUS] = ACTIONS(1670), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1672), }, [274] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5124), + [sym_block] = STATE(5125), + [sym__expression_parenthesized] = STATE(5125), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3839), + [sym_expr_parenthesized] = STATE(2053), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(2028), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3132), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_command] = STATE(5125), [sym_comment] = STATE(274), - [anon_sym_export] = ACTIONS(1721), - [anon_sym_alias] = ACTIONS(1721), - [anon_sym_let] = ACTIONS(1721), - [anon_sym_let_DASHenv] = ACTIONS(1721), - [anon_sym_mut] = ACTIONS(1721), - [anon_sym_const] = ACTIONS(1721), - [aux_sym_cmd_identifier_token1] = ACTIONS(1721), - [aux_sym_cmd_identifier_token2] = ACTIONS(1721), - [aux_sym_cmd_identifier_token3] = ACTIONS(1721), - [aux_sym_cmd_identifier_token4] = ACTIONS(1721), - [aux_sym_cmd_identifier_token5] = ACTIONS(1721), - [aux_sym_cmd_identifier_token6] = ACTIONS(1721), - [aux_sym_cmd_identifier_token7] = ACTIONS(1721), - [aux_sym_cmd_identifier_token8] = ACTIONS(1721), - [aux_sym_cmd_identifier_token9] = ACTIONS(1721), - [aux_sym_cmd_identifier_token10] = ACTIONS(1721), - [aux_sym_cmd_identifier_token11] = ACTIONS(1721), - [aux_sym_cmd_identifier_token12] = ACTIONS(1721), - [aux_sym_cmd_identifier_token13] = ACTIONS(1721), - [aux_sym_cmd_identifier_token14] = ACTIONS(1721), - [aux_sym_cmd_identifier_token15] = ACTIONS(1721), - [aux_sym_cmd_identifier_token16] = ACTIONS(1721), - [aux_sym_cmd_identifier_token17] = ACTIONS(1721), - [aux_sym_cmd_identifier_token18] = ACTIONS(1721), - [aux_sym_cmd_identifier_token19] = ACTIONS(1721), - [aux_sym_cmd_identifier_token20] = ACTIONS(1721), - [aux_sym_cmd_identifier_token21] = ACTIONS(1721), - [aux_sym_cmd_identifier_token22] = ACTIONS(1721), - [aux_sym_cmd_identifier_token23] = ACTIONS(1721), - [aux_sym_cmd_identifier_token24] = ACTIONS(1721), - [aux_sym_cmd_identifier_token25] = ACTIONS(1721), - [aux_sym_cmd_identifier_token26] = ACTIONS(1721), - [aux_sym_cmd_identifier_token27] = ACTIONS(1721), - [aux_sym_cmd_identifier_token28] = ACTIONS(1721), - [aux_sym_cmd_identifier_token29] = ACTIONS(1721), - [aux_sym_cmd_identifier_token30] = ACTIONS(1721), - [aux_sym_cmd_identifier_token31] = ACTIONS(1721), - [aux_sym_cmd_identifier_token32] = ACTIONS(1721), - [aux_sym_cmd_identifier_token33] = ACTIONS(1721), - [aux_sym_cmd_identifier_token34] = ACTIONS(1721), - [aux_sym_cmd_identifier_token35] = ACTIONS(1721), - [aux_sym_cmd_identifier_token36] = ACTIONS(1721), + [aux_sym_shebang_repeat1] = STATE(279), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(373), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), [anon_sym_true] = ACTIONS(1723), [anon_sym_false] = ACTIONS(1723), - [anon_sym_null] = ACTIONS(1723), - [aux_sym_cmd_identifier_token38] = ACTIONS(1721), - [aux_sym_cmd_identifier_token39] = ACTIONS(1723), - [aux_sym_cmd_identifier_token40] = ACTIONS(1723), - [anon_sym_def] = ACTIONS(1721), - [anon_sym_export_DASHenv] = ACTIONS(1721), - [anon_sym_extern] = ACTIONS(1721), - [anon_sym_module] = ACTIONS(1721), - [anon_sym_use] = ACTIONS(1721), - [anon_sym_LPAREN] = ACTIONS(1721), - [anon_sym_DOLLAR] = ACTIONS(1723), - [anon_sym_error] = ACTIONS(1721), - [anon_sym_list] = ACTIONS(1721), - [anon_sym_DASH] = ACTIONS(1721), - [anon_sym_break] = ACTIONS(1721), - [anon_sym_continue] = ACTIONS(1721), - [anon_sym_for] = ACTIONS(1721), - [anon_sym_in] = ACTIONS(1721), - [anon_sym_loop] = ACTIONS(1721), - [anon_sym_make] = ACTIONS(1721), - [anon_sym_while] = ACTIONS(1721), - [anon_sym_do] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1721), - [anon_sym_else] = ACTIONS(1721), - [anon_sym_match] = ACTIONS(1721), - [anon_sym_RBRACE] = ACTIONS(1723), - [anon_sym_try] = ACTIONS(1721), - [anon_sym_catch] = ACTIONS(1721), - [anon_sym_return] = ACTIONS(1721), - [anon_sym_source] = ACTIONS(1721), - [anon_sym_source_DASHenv] = ACTIONS(1721), - [anon_sym_register] = ACTIONS(1721), - [anon_sym_hide] = ACTIONS(1721), - [anon_sym_hide_DASHenv] = ACTIONS(1721), - [anon_sym_overlay] = ACTIONS(1721), - [anon_sym_new] = ACTIONS(1721), - [anon_sym_as] = ACTIONS(1721), - [anon_sym_LPAREN2] = ACTIONS(1723), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1723), - [anon_sym_DOT_DOT2] = ACTIONS(1721), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1723), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1723), - [aux_sym__immediate_decimal_token2] = ACTIONS(1736), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1723), - [aux_sym__val_number_decimal_token1] = ACTIONS(1721), - [aux_sym__val_number_decimal_token2] = ACTIONS(1723), - [aux_sym__val_number_decimal_token3] = ACTIONS(1723), - [aux_sym__val_number_decimal_token4] = ACTIONS(1723), - [aux_sym__val_number_token1] = ACTIONS(1723), - [aux_sym__val_number_token2] = ACTIONS(1723), - [aux_sym__val_number_token3] = ACTIONS(1723), - [anon_sym_DQUOTE] = ACTIONS(1723), - [sym__str_single_quotes] = ACTIONS(1723), - [sym__str_back_ticks] = ACTIONS(1723), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1723), - [anon_sym_PLUS] = ACTIONS(1721), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1721), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_null] = ACTIONS(1725), + [aux_sym_cmd_identifier_token38] = ACTIONS(1727), + [aux_sym_cmd_identifier_token39] = ACTIONS(1729), + [aux_sym_cmd_identifier_token40] = ACTIONS(1729), + [sym__newline] = ACTIONS(1731), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_if] = ACTIONS(491), + [anon_sym_LBRACE] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(193), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1737), + [aux_sym__val_number_decimal_token3] = ACTIONS(1739), + [aux_sym__val_number_decimal_token4] = ACTIONS(1741), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [275] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5126), + [sym_block] = STATE(5127), + [sym__expression_parenthesized] = STATE(5127), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3839), + [sym_expr_parenthesized] = STATE(2053), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(2028), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3132), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_command] = STATE(5127), [sym_comment] = STATE(275), - [anon_sym_export] = ACTIONS(1667), - [anon_sym_alias] = ACTIONS(1667), - [anon_sym_let] = ACTIONS(1667), - [anon_sym_let_DASHenv] = ACTIONS(1667), - [anon_sym_mut] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1667), - [aux_sym_cmd_identifier_token1] = ACTIONS(1667), - [aux_sym_cmd_identifier_token2] = ACTIONS(1667), - [aux_sym_cmd_identifier_token3] = ACTIONS(1667), - [aux_sym_cmd_identifier_token4] = ACTIONS(1667), - [aux_sym_cmd_identifier_token5] = ACTIONS(1667), - [aux_sym_cmd_identifier_token6] = ACTIONS(1667), - [aux_sym_cmd_identifier_token7] = ACTIONS(1667), - [aux_sym_cmd_identifier_token8] = ACTIONS(1667), - [aux_sym_cmd_identifier_token9] = ACTIONS(1667), - [aux_sym_cmd_identifier_token10] = ACTIONS(1667), - [aux_sym_cmd_identifier_token11] = ACTIONS(1667), - [aux_sym_cmd_identifier_token12] = ACTIONS(1667), - [aux_sym_cmd_identifier_token13] = ACTIONS(1667), - [aux_sym_cmd_identifier_token14] = ACTIONS(1667), - [aux_sym_cmd_identifier_token15] = ACTIONS(1667), - [aux_sym_cmd_identifier_token16] = ACTIONS(1667), - [aux_sym_cmd_identifier_token17] = ACTIONS(1667), - [aux_sym_cmd_identifier_token18] = ACTIONS(1667), - [aux_sym_cmd_identifier_token19] = ACTIONS(1667), - [aux_sym_cmd_identifier_token20] = ACTIONS(1667), - [aux_sym_cmd_identifier_token21] = ACTIONS(1667), - [aux_sym_cmd_identifier_token22] = ACTIONS(1667), - [aux_sym_cmd_identifier_token23] = ACTIONS(1667), - [aux_sym_cmd_identifier_token24] = ACTIONS(1667), - [aux_sym_cmd_identifier_token25] = ACTIONS(1667), - [aux_sym_cmd_identifier_token26] = ACTIONS(1667), - [aux_sym_cmd_identifier_token27] = ACTIONS(1667), - [aux_sym_cmd_identifier_token28] = ACTIONS(1667), - [aux_sym_cmd_identifier_token29] = ACTIONS(1667), - [aux_sym_cmd_identifier_token30] = ACTIONS(1667), - [aux_sym_cmd_identifier_token31] = ACTIONS(1667), - [aux_sym_cmd_identifier_token32] = ACTIONS(1667), - [aux_sym_cmd_identifier_token33] = ACTIONS(1667), - [aux_sym_cmd_identifier_token34] = ACTIONS(1667), - [aux_sym_cmd_identifier_token35] = ACTIONS(1667), - [aux_sym_cmd_identifier_token36] = ACTIONS(1667), - [anon_sym_true] = ACTIONS(1667), - [anon_sym_false] = ACTIONS(1667), - [anon_sym_null] = ACTIONS(1667), - [aux_sym_cmd_identifier_token38] = ACTIONS(1667), - [aux_sym_cmd_identifier_token39] = ACTIONS(1667), - [aux_sym_cmd_identifier_token40] = ACTIONS(1667), - [anon_sym_def] = ACTIONS(1667), - [anon_sym_export_DASHenv] = ACTIONS(1667), - [anon_sym_extern] = ACTIONS(1667), - [anon_sym_module] = ACTIONS(1667), - [anon_sym_use] = ACTIONS(1667), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_DOLLAR] = ACTIONS(1667), - [anon_sym_error] = ACTIONS(1667), - [anon_sym_list] = ACTIONS(1667), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_break] = ACTIONS(1667), - [anon_sym_continue] = ACTIONS(1667), - [anon_sym_for] = ACTIONS(1667), - [anon_sym_in] = ACTIONS(1667), - [anon_sym_loop] = ACTIONS(1667), - [anon_sym_make] = ACTIONS(1667), - [anon_sym_while] = ACTIONS(1667), - [anon_sym_do] = ACTIONS(1667), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_else] = ACTIONS(1667), - [anon_sym_match] = ACTIONS(1667), - [anon_sym_RBRACE] = ACTIONS(1667), - [anon_sym_try] = ACTIONS(1667), - [anon_sym_catch] = ACTIONS(1667), - [anon_sym_return] = ACTIONS(1667), - [anon_sym_source] = ACTIONS(1667), - [anon_sym_source_DASHenv] = ACTIONS(1667), - [anon_sym_register] = ACTIONS(1667), - [anon_sym_hide] = ACTIONS(1667), - [anon_sym_hide_DASHenv] = ACTIONS(1667), - [anon_sym_overlay] = ACTIONS(1667), - [anon_sym_new] = ACTIONS(1667), - [anon_sym_as] = ACTIONS(1667), - [anon_sym_LPAREN2] = ACTIONS(1669), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1667), - [anon_sym_DOT_DOT2] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1667), - [aux_sym__val_number_decimal_token1] = ACTIONS(1667), - [aux_sym__val_number_decimal_token2] = ACTIONS(1667), - [aux_sym__val_number_decimal_token3] = ACTIONS(1667), - [aux_sym__val_number_decimal_token4] = ACTIONS(1667), - [aux_sym__val_number_token1] = ACTIONS(1667), - [aux_sym__val_number_token2] = ACTIONS(1667), - [aux_sym__val_number_token3] = ACTIONS(1667), - [anon_sym_DQUOTE] = ACTIONS(1667), - [sym__str_single_quotes] = ACTIONS(1667), - [sym__str_back_ticks] = ACTIONS(1667), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1667), - [sym__entry_separator] = ACTIONS(1669), - [anon_sym_PLUS] = ACTIONS(1667), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(1079), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(373), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(1723), + [anon_sym_false] = ACTIONS(1723), + [anon_sym_null] = ACTIONS(1725), + [aux_sym_cmd_identifier_token38] = ACTIONS(1727), + [aux_sym_cmd_identifier_token39] = ACTIONS(1729), + [aux_sym_cmd_identifier_token40] = ACTIONS(1729), + [sym__newline] = ACTIONS(1731), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_if] = ACTIONS(491), + [anon_sym_LBRACE] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(193), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1737), + [aux_sym__val_number_decimal_token3] = ACTIONS(1739), + [aux_sym__val_number_decimal_token4] = ACTIONS(1741), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [276] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5126), + [sym_block] = STATE(5127), + [sym__expression_parenthesized] = STATE(5127), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3839), + [sym_expr_parenthesized] = STATE(2053), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(2028), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3132), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_command] = STATE(5127), [sym_comment] = STATE(276), - [anon_sym_export] = ACTIONS(1721), - [anon_sym_alias] = ACTIONS(1721), - [anon_sym_let] = ACTIONS(1721), - [anon_sym_let_DASHenv] = ACTIONS(1721), - [anon_sym_mut] = ACTIONS(1721), - [anon_sym_const] = ACTIONS(1721), - [aux_sym_cmd_identifier_token1] = ACTIONS(1721), - [aux_sym_cmd_identifier_token2] = ACTIONS(1721), - [aux_sym_cmd_identifier_token3] = ACTIONS(1721), - [aux_sym_cmd_identifier_token4] = ACTIONS(1721), - [aux_sym_cmd_identifier_token5] = ACTIONS(1721), - [aux_sym_cmd_identifier_token6] = ACTIONS(1721), - [aux_sym_cmd_identifier_token7] = ACTIONS(1721), - [aux_sym_cmd_identifier_token8] = ACTIONS(1721), - [aux_sym_cmd_identifier_token9] = ACTIONS(1721), - [aux_sym_cmd_identifier_token10] = ACTIONS(1721), - [aux_sym_cmd_identifier_token11] = ACTIONS(1721), - [aux_sym_cmd_identifier_token12] = ACTIONS(1721), - [aux_sym_cmd_identifier_token13] = ACTIONS(1721), - [aux_sym_cmd_identifier_token14] = ACTIONS(1721), - [aux_sym_cmd_identifier_token15] = ACTIONS(1721), - [aux_sym_cmd_identifier_token16] = ACTIONS(1721), - [aux_sym_cmd_identifier_token17] = ACTIONS(1721), - [aux_sym_cmd_identifier_token18] = ACTIONS(1721), - [aux_sym_cmd_identifier_token19] = ACTIONS(1721), - [aux_sym_cmd_identifier_token20] = ACTIONS(1721), - [aux_sym_cmd_identifier_token21] = ACTIONS(1721), - [aux_sym_cmd_identifier_token22] = ACTIONS(1721), - [aux_sym_cmd_identifier_token23] = ACTIONS(1721), - [aux_sym_cmd_identifier_token24] = ACTIONS(1721), - [aux_sym_cmd_identifier_token25] = ACTIONS(1721), - [aux_sym_cmd_identifier_token26] = ACTIONS(1721), - [aux_sym_cmd_identifier_token27] = ACTIONS(1721), - [aux_sym_cmd_identifier_token28] = ACTIONS(1721), - [aux_sym_cmd_identifier_token29] = ACTIONS(1721), - [aux_sym_cmd_identifier_token30] = ACTIONS(1721), - [aux_sym_cmd_identifier_token31] = ACTIONS(1721), - [aux_sym_cmd_identifier_token32] = ACTIONS(1721), - [aux_sym_cmd_identifier_token33] = ACTIONS(1721), - [aux_sym_cmd_identifier_token34] = ACTIONS(1721), - [aux_sym_cmd_identifier_token35] = ACTIONS(1721), - [aux_sym_cmd_identifier_token36] = ACTIONS(1721), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [anon_sym_null] = ACTIONS(1721), - [aux_sym_cmd_identifier_token38] = ACTIONS(1721), - [aux_sym_cmd_identifier_token39] = ACTIONS(1721), - [aux_sym_cmd_identifier_token40] = ACTIONS(1721), - [anon_sym_def] = ACTIONS(1721), - [anon_sym_export_DASHenv] = ACTIONS(1721), - [anon_sym_extern] = ACTIONS(1721), - [anon_sym_module] = ACTIONS(1721), - [anon_sym_use] = ACTIONS(1721), - [anon_sym_LPAREN] = ACTIONS(1721), - [anon_sym_DOLLAR] = ACTIONS(1721), - [anon_sym_error] = ACTIONS(1721), - [anon_sym_list] = ACTIONS(1721), - [anon_sym_DASH] = ACTIONS(1721), - [anon_sym_break] = ACTIONS(1721), - [anon_sym_continue] = ACTIONS(1721), - [anon_sym_for] = ACTIONS(1721), - [anon_sym_in] = ACTIONS(1721), - [anon_sym_loop] = ACTIONS(1721), - [anon_sym_make] = ACTIONS(1721), - [anon_sym_while] = ACTIONS(1721), - [anon_sym_do] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1721), - [anon_sym_else] = ACTIONS(1721), - [anon_sym_match] = ACTIONS(1721), - [anon_sym_RBRACE] = ACTIONS(1721), - [anon_sym_try] = ACTIONS(1721), - [anon_sym_catch] = ACTIONS(1721), - [anon_sym_return] = ACTIONS(1721), - [anon_sym_source] = ACTIONS(1721), - [anon_sym_source_DASHenv] = ACTIONS(1721), - [anon_sym_register] = ACTIONS(1721), - [anon_sym_hide] = ACTIONS(1721), - [anon_sym_hide_DASHenv] = ACTIONS(1721), - [anon_sym_overlay] = ACTIONS(1721), - [anon_sym_new] = ACTIONS(1721), - [anon_sym_as] = ACTIONS(1721), - [anon_sym_LPAREN2] = ACTIONS(1723), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1721), - [anon_sym_DOT_DOT2] = ACTIONS(1721), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1723), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1723), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1721), - [aux_sym__val_number_decimal_token1] = ACTIONS(1721), - [aux_sym__val_number_decimal_token2] = ACTIONS(1721), - [aux_sym__val_number_decimal_token3] = ACTIONS(1721), - [aux_sym__val_number_decimal_token4] = ACTIONS(1721), - [aux_sym__val_number_token1] = ACTIONS(1721), - [aux_sym__val_number_token2] = ACTIONS(1721), - [aux_sym__val_number_token3] = ACTIONS(1721), - [anon_sym_DQUOTE] = ACTIONS(1721), - [sym__str_single_quotes] = ACTIONS(1721), - [sym__str_back_ticks] = ACTIONS(1721), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1721), - [sym__entry_separator] = ACTIONS(1723), - [anon_sym_PLUS] = ACTIONS(1721), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1721), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(280), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(373), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(1723), + [anon_sym_false] = ACTIONS(1723), + [anon_sym_null] = ACTIONS(1725), + [aux_sym_cmd_identifier_token38] = ACTIONS(1727), + [aux_sym_cmd_identifier_token39] = ACTIONS(1729), + [aux_sym_cmd_identifier_token40] = ACTIONS(1729), + [sym__newline] = ACTIONS(1731), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_if] = ACTIONS(491), + [anon_sym_LBRACE] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(193), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1737), + [aux_sym__val_number_decimal_token3] = ACTIONS(1739), + [aux_sym__val_number_decimal_token4] = ACTIONS(1741), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [277] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5129), + [sym_block] = STATE(5130), + [sym__expression_parenthesized] = STATE(5130), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3839), + [sym_expr_parenthesized] = STATE(2053), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(2028), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3132), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_command] = STATE(5130), [sym_comment] = STATE(277), - [anon_sym_export] = ACTIONS(1738), - [anon_sym_alias] = ACTIONS(1738), - [anon_sym_let] = ACTIONS(1738), - [anon_sym_let_DASHenv] = ACTIONS(1738), - [anon_sym_mut] = ACTIONS(1738), - [anon_sym_const] = ACTIONS(1738), - [aux_sym_cmd_identifier_token1] = ACTIONS(1738), - [aux_sym_cmd_identifier_token2] = ACTIONS(1738), - [aux_sym_cmd_identifier_token3] = ACTIONS(1738), - [aux_sym_cmd_identifier_token4] = ACTIONS(1738), - [aux_sym_cmd_identifier_token5] = ACTIONS(1738), - [aux_sym_cmd_identifier_token6] = ACTIONS(1738), - [aux_sym_cmd_identifier_token7] = ACTIONS(1738), - [aux_sym_cmd_identifier_token8] = ACTIONS(1738), - [aux_sym_cmd_identifier_token9] = ACTIONS(1738), - [aux_sym_cmd_identifier_token10] = ACTIONS(1738), - [aux_sym_cmd_identifier_token11] = ACTIONS(1738), - [aux_sym_cmd_identifier_token12] = ACTIONS(1738), - [aux_sym_cmd_identifier_token13] = ACTIONS(1738), - [aux_sym_cmd_identifier_token14] = ACTIONS(1738), - [aux_sym_cmd_identifier_token15] = ACTIONS(1738), - [aux_sym_cmd_identifier_token16] = ACTIONS(1738), - [aux_sym_cmd_identifier_token17] = ACTIONS(1738), - [aux_sym_cmd_identifier_token18] = ACTIONS(1738), - [aux_sym_cmd_identifier_token19] = ACTIONS(1738), - [aux_sym_cmd_identifier_token20] = ACTIONS(1738), - [aux_sym_cmd_identifier_token21] = ACTIONS(1738), - [aux_sym_cmd_identifier_token22] = ACTIONS(1738), - [aux_sym_cmd_identifier_token23] = ACTIONS(1738), - [aux_sym_cmd_identifier_token24] = ACTIONS(1738), - [aux_sym_cmd_identifier_token25] = ACTIONS(1738), - [aux_sym_cmd_identifier_token26] = ACTIONS(1738), - [aux_sym_cmd_identifier_token27] = ACTIONS(1738), - [aux_sym_cmd_identifier_token28] = ACTIONS(1738), - [aux_sym_cmd_identifier_token29] = ACTIONS(1738), - [aux_sym_cmd_identifier_token30] = ACTIONS(1738), - [aux_sym_cmd_identifier_token31] = ACTIONS(1738), - [aux_sym_cmd_identifier_token32] = ACTIONS(1738), - [aux_sym_cmd_identifier_token33] = ACTIONS(1738), - [aux_sym_cmd_identifier_token34] = ACTIONS(1738), - [aux_sym_cmd_identifier_token35] = ACTIONS(1738), - [aux_sym_cmd_identifier_token36] = ACTIONS(1738), - [anon_sym_true] = ACTIONS(1738), - [anon_sym_false] = ACTIONS(1738), - [anon_sym_null] = ACTIONS(1738), - [aux_sym_cmd_identifier_token38] = ACTIONS(1738), - [aux_sym_cmd_identifier_token39] = ACTIONS(1738), - [aux_sym_cmd_identifier_token40] = ACTIONS(1738), - [anon_sym_def] = ACTIONS(1738), - [anon_sym_export_DASHenv] = ACTIONS(1738), - [anon_sym_extern] = ACTIONS(1738), - [anon_sym_module] = ACTIONS(1738), - [anon_sym_use] = ACTIONS(1738), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_DOLLAR] = ACTIONS(1738), - [anon_sym_error] = ACTIONS(1738), - [anon_sym_list] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_break] = ACTIONS(1738), - [anon_sym_continue] = ACTIONS(1738), - [anon_sym_for] = ACTIONS(1738), - [anon_sym_in] = ACTIONS(1738), - [anon_sym_loop] = ACTIONS(1738), - [anon_sym_make] = ACTIONS(1738), - [anon_sym_while] = ACTIONS(1738), - [anon_sym_do] = ACTIONS(1738), - [anon_sym_if] = ACTIONS(1738), - [anon_sym_else] = ACTIONS(1738), - [anon_sym_match] = ACTIONS(1738), - [anon_sym_RBRACE] = ACTIONS(1738), - [anon_sym_try] = ACTIONS(1738), - [anon_sym_catch] = ACTIONS(1738), - [anon_sym_return] = ACTIONS(1738), - [anon_sym_source] = ACTIONS(1738), - [anon_sym_source_DASHenv] = ACTIONS(1738), - [anon_sym_register] = ACTIONS(1738), - [anon_sym_hide] = ACTIONS(1738), - [anon_sym_hide_DASHenv] = ACTIONS(1738), - [anon_sym_overlay] = ACTIONS(1738), - [anon_sym_new] = ACTIONS(1738), - [anon_sym_as] = ACTIONS(1738), - [anon_sym_LPAREN2] = ACTIONS(1740), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1738), - [anon_sym_DOT_DOT2] = ACTIONS(1738), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1740), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1740), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1738), - [aux_sym__val_number_decimal_token1] = ACTIONS(1738), - [aux_sym__val_number_decimal_token2] = ACTIONS(1738), - [aux_sym__val_number_decimal_token3] = ACTIONS(1738), - [aux_sym__val_number_decimal_token4] = ACTIONS(1738), - [aux_sym__val_number_token1] = ACTIONS(1738), - [aux_sym__val_number_token2] = ACTIONS(1738), - [aux_sym__val_number_token3] = ACTIONS(1738), - [anon_sym_DQUOTE] = ACTIONS(1738), - [sym__str_single_quotes] = ACTIONS(1738), - [sym__str_back_ticks] = ACTIONS(1738), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1738), - [sym__entry_separator] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1738), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1738), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(1079), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(373), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(1723), + [anon_sym_false] = ACTIONS(1723), + [anon_sym_null] = ACTIONS(1725), + [aux_sym_cmd_identifier_token38] = ACTIONS(1727), + [aux_sym_cmd_identifier_token39] = ACTIONS(1729), + [aux_sym_cmd_identifier_token40] = ACTIONS(1729), + [sym__newline] = ACTIONS(1731), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_if] = ACTIONS(491), + [anon_sym_LBRACE] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(193), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1737), + [aux_sym__val_number_decimal_token3] = ACTIONS(1739), + [aux_sym__val_number_decimal_token4] = ACTIONS(1741), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [278] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5129), + [sym_block] = STATE(5130), + [sym__expression_parenthesized] = STATE(5130), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3839), + [sym_expr_parenthesized] = STATE(2053), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(2028), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3132), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_command] = STATE(5130), [sym_comment] = STATE(278), - [aux_sym__block_body_repeat1] = STATE(234), - [anon_sym_export] = ACTIONS(1647), - [anon_sym_alias] = ACTIONS(1647), - [anon_sym_let] = ACTIONS(1647), - [anon_sym_let_DASHenv] = ACTIONS(1647), - [anon_sym_mut] = ACTIONS(1647), - [anon_sym_const] = ACTIONS(1647), - [aux_sym_cmd_identifier_token1] = ACTIONS(1647), - [aux_sym_cmd_identifier_token2] = ACTIONS(1647), - [aux_sym_cmd_identifier_token3] = ACTIONS(1647), - [aux_sym_cmd_identifier_token4] = ACTIONS(1647), - [aux_sym_cmd_identifier_token5] = ACTIONS(1647), - [aux_sym_cmd_identifier_token6] = ACTIONS(1647), - [aux_sym_cmd_identifier_token7] = ACTIONS(1647), - [aux_sym_cmd_identifier_token8] = ACTIONS(1647), - [aux_sym_cmd_identifier_token9] = ACTIONS(1647), - [aux_sym_cmd_identifier_token10] = ACTIONS(1647), - [aux_sym_cmd_identifier_token11] = ACTIONS(1647), - [aux_sym_cmd_identifier_token12] = ACTIONS(1647), - [aux_sym_cmd_identifier_token13] = ACTIONS(1647), - [aux_sym_cmd_identifier_token14] = ACTIONS(1647), - [aux_sym_cmd_identifier_token15] = ACTIONS(1647), - [aux_sym_cmd_identifier_token16] = ACTIONS(1647), - [aux_sym_cmd_identifier_token17] = ACTIONS(1647), - [aux_sym_cmd_identifier_token18] = ACTIONS(1647), - [aux_sym_cmd_identifier_token19] = ACTIONS(1647), - [aux_sym_cmd_identifier_token20] = ACTIONS(1647), - [aux_sym_cmd_identifier_token21] = ACTIONS(1647), - [aux_sym_cmd_identifier_token22] = ACTIONS(1647), - [aux_sym_cmd_identifier_token23] = ACTIONS(1647), - [aux_sym_cmd_identifier_token24] = ACTIONS(1649), - [aux_sym_cmd_identifier_token25] = ACTIONS(1647), - [aux_sym_cmd_identifier_token26] = ACTIONS(1649), - [aux_sym_cmd_identifier_token27] = ACTIONS(1647), - [aux_sym_cmd_identifier_token28] = ACTIONS(1647), - [aux_sym_cmd_identifier_token29] = ACTIONS(1647), - [aux_sym_cmd_identifier_token30] = ACTIONS(1647), - [aux_sym_cmd_identifier_token31] = ACTIONS(1649), - [aux_sym_cmd_identifier_token32] = ACTIONS(1649), - [aux_sym_cmd_identifier_token33] = ACTIONS(1649), - [aux_sym_cmd_identifier_token34] = ACTIONS(1649), - [aux_sym_cmd_identifier_token35] = ACTIONS(1649), - [aux_sym_cmd_identifier_token36] = ACTIONS(1647), - [anon_sym_true] = ACTIONS(1649), - [anon_sym_false] = ACTIONS(1649), - [anon_sym_null] = ACTIONS(1649), - [aux_sym_cmd_identifier_token38] = ACTIONS(1647), - [aux_sym_cmd_identifier_token39] = ACTIONS(1649), - [aux_sym_cmd_identifier_token40] = ACTIONS(1649), - [sym__newline] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(145), - [anon_sym_def] = ACTIONS(1647), - [anon_sym_export_DASHenv] = ACTIONS(1647), - [anon_sym_extern] = ACTIONS(1647), - [anon_sym_module] = ACTIONS(1647), - [anon_sym_use] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_LPAREN] = ACTIONS(1649), - [anon_sym_DOLLAR] = ACTIONS(1647), - [anon_sym_error] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_break] = ACTIONS(1647), - [anon_sym_continue] = ACTIONS(1647), - [anon_sym_for] = ACTIONS(1647), - [anon_sym_loop] = ACTIONS(1647), - [anon_sym_while] = ACTIONS(1647), - [anon_sym_do] = ACTIONS(1647), - [anon_sym_if] = ACTIONS(1647), - [anon_sym_match] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(1649), - [anon_sym_DOT_DOT] = ACTIONS(1647), - [anon_sym_try] = ACTIONS(1647), - [anon_sym_return] = ACTIONS(1647), - [anon_sym_source] = ACTIONS(1647), - [anon_sym_source_DASHenv] = ACTIONS(1647), - [anon_sym_register] = ACTIONS(1647), - [anon_sym_hide] = ACTIONS(1647), - [anon_sym_hide_DASHenv] = ACTIONS(1647), - [anon_sym_overlay] = ACTIONS(1647), - [anon_sym_where] = ACTIONS(1649), - [aux_sym_expr_unary_token1] = ACTIONS(1649), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1649), - [anon_sym_DOT_DOT_LT] = ACTIONS(1649), - [aux_sym__val_number_decimal_token1] = ACTIONS(1647), - [aux_sym__val_number_decimal_token2] = ACTIONS(1649), - [aux_sym__val_number_decimal_token3] = ACTIONS(1649), - [aux_sym__val_number_decimal_token4] = ACTIONS(1649), - [aux_sym__val_number_token1] = ACTIONS(1649), - [aux_sym__val_number_token2] = ACTIONS(1649), - [aux_sym__val_number_token3] = ACTIONS(1649), - [anon_sym_0b] = ACTIONS(1647), - [anon_sym_0o] = ACTIONS(1647), - [anon_sym_0x] = ACTIONS(1647), - [sym_val_date] = ACTIONS(1649), - [anon_sym_DQUOTE] = ACTIONS(1649), - [sym__str_single_quotes] = ACTIONS(1649), - [sym__str_back_ticks] = ACTIONS(1649), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1649), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1649), - [aux_sym_env_var_token1] = ACTIONS(1647), - [anon_sym_CARET] = ACTIONS(1649), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(281), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(373), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(1723), + [anon_sym_false] = ACTIONS(1723), + [anon_sym_null] = ACTIONS(1725), + [aux_sym_cmd_identifier_token38] = ACTIONS(1727), + [aux_sym_cmd_identifier_token39] = ACTIONS(1729), + [aux_sym_cmd_identifier_token40] = ACTIONS(1729), + [sym__newline] = ACTIONS(1731), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_if] = ACTIONS(491), + [anon_sym_LBRACE] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(193), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1737), + [aux_sym__val_number_decimal_token3] = ACTIONS(1739), + [aux_sym__val_number_decimal_token4] = ACTIONS(1741), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [279] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5136), + [sym_block] = STATE(5137), + [sym__expression_parenthesized] = STATE(5137), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3839), + [sym_expr_parenthesized] = STATE(2053), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(2028), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3132), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_command] = STATE(5137), [sym_comment] = STATE(279), - [ts_builtin_sym_end] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1744), - [anon_sym_alias] = ACTIONS(1744), - [anon_sym_let] = ACTIONS(1744), - [anon_sym_let_DASHenv] = ACTIONS(1744), - [anon_sym_mut] = ACTIONS(1744), - [anon_sym_const] = ACTIONS(1744), - [aux_sym_cmd_identifier_token1] = ACTIONS(1744), - [aux_sym_cmd_identifier_token2] = ACTIONS(1744), - [aux_sym_cmd_identifier_token3] = ACTIONS(1744), - [aux_sym_cmd_identifier_token4] = ACTIONS(1744), - [aux_sym_cmd_identifier_token5] = ACTIONS(1744), - [aux_sym_cmd_identifier_token6] = ACTIONS(1744), - [aux_sym_cmd_identifier_token7] = ACTIONS(1744), - [aux_sym_cmd_identifier_token8] = ACTIONS(1744), - [aux_sym_cmd_identifier_token9] = ACTIONS(1744), - [aux_sym_cmd_identifier_token10] = ACTIONS(1744), - [aux_sym_cmd_identifier_token11] = ACTIONS(1744), - [aux_sym_cmd_identifier_token12] = ACTIONS(1744), - [aux_sym_cmd_identifier_token13] = ACTIONS(1744), - [aux_sym_cmd_identifier_token14] = ACTIONS(1744), - [aux_sym_cmd_identifier_token15] = ACTIONS(1744), - [aux_sym_cmd_identifier_token16] = ACTIONS(1744), - [aux_sym_cmd_identifier_token17] = ACTIONS(1744), - [aux_sym_cmd_identifier_token18] = ACTIONS(1744), - [aux_sym_cmd_identifier_token19] = ACTIONS(1744), - [aux_sym_cmd_identifier_token20] = ACTIONS(1744), - [aux_sym_cmd_identifier_token21] = ACTIONS(1744), - [aux_sym_cmd_identifier_token22] = ACTIONS(1744), - [aux_sym_cmd_identifier_token23] = ACTIONS(1744), - [aux_sym_cmd_identifier_token24] = ACTIONS(1742), - [aux_sym_cmd_identifier_token25] = ACTIONS(1744), - [aux_sym_cmd_identifier_token26] = ACTIONS(1742), - [aux_sym_cmd_identifier_token27] = ACTIONS(1744), - [aux_sym_cmd_identifier_token28] = ACTIONS(1744), - [aux_sym_cmd_identifier_token29] = ACTIONS(1744), - [aux_sym_cmd_identifier_token30] = ACTIONS(1744), - [aux_sym_cmd_identifier_token31] = ACTIONS(1742), - [aux_sym_cmd_identifier_token32] = ACTIONS(1742), - [aux_sym_cmd_identifier_token33] = ACTIONS(1742), - [aux_sym_cmd_identifier_token34] = ACTIONS(1742), - [aux_sym_cmd_identifier_token35] = ACTIONS(1742), - [aux_sym_cmd_identifier_token36] = ACTIONS(1744), - [anon_sym_true] = ACTIONS(1742), - [anon_sym_false] = ACTIONS(1742), - [anon_sym_null] = ACTIONS(1742), - [aux_sym_cmd_identifier_token38] = ACTIONS(1744), - [aux_sym_cmd_identifier_token39] = ACTIONS(1742), - [aux_sym_cmd_identifier_token40] = ACTIONS(1742), - [sym__newline] = ACTIONS(1742), - [anon_sym_SEMI] = ACTIONS(1742), - [anon_sym_def] = ACTIONS(1744), - [anon_sym_export_DASHenv] = ACTIONS(1744), - [anon_sym_extern] = ACTIONS(1744), - [anon_sym_module] = ACTIONS(1744), - [anon_sym_use] = ACTIONS(1744), - [anon_sym_LBRACK] = ACTIONS(1742), - [anon_sym_LPAREN] = ACTIONS(1742), - [anon_sym_DOLLAR] = ACTIONS(1744), - [anon_sym_error] = ACTIONS(1744), - [anon_sym_DASH] = ACTIONS(1744), - [anon_sym_break] = ACTIONS(1744), - [anon_sym_continue] = ACTIONS(1744), - [anon_sym_for] = ACTIONS(1744), - [anon_sym_loop] = ACTIONS(1744), - [anon_sym_while] = ACTIONS(1744), - [anon_sym_do] = ACTIONS(1744), - [anon_sym_if] = ACTIONS(1744), - [anon_sym_match] = ACTIONS(1744), - [anon_sym_LBRACE] = ACTIONS(1742), - [anon_sym_DOT_DOT] = ACTIONS(1744), - [anon_sym_try] = ACTIONS(1744), - [anon_sym_return] = ACTIONS(1744), - [anon_sym_source] = ACTIONS(1744), - [anon_sym_source_DASHenv] = ACTIONS(1744), - [anon_sym_register] = ACTIONS(1744), - [anon_sym_hide] = ACTIONS(1744), - [anon_sym_hide_DASHenv] = ACTIONS(1744), - [anon_sym_overlay] = ACTIONS(1744), - [anon_sym_where] = ACTIONS(1742), - [aux_sym_expr_unary_token1] = ACTIONS(1742), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1742), - [anon_sym_DOT_DOT_LT] = ACTIONS(1742), - [aux_sym__val_number_decimal_token1] = ACTIONS(1744), - [aux_sym__val_number_decimal_token2] = ACTIONS(1742), - [aux_sym__val_number_decimal_token3] = ACTIONS(1742), - [aux_sym__val_number_decimal_token4] = ACTIONS(1742), - [aux_sym__val_number_token1] = ACTIONS(1742), - [aux_sym__val_number_token2] = ACTIONS(1742), - [aux_sym__val_number_token3] = ACTIONS(1742), - [anon_sym_0b] = ACTIONS(1744), - [anon_sym_0o] = ACTIONS(1744), - [anon_sym_0x] = ACTIONS(1744), - [sym_val_date] = ACTIONS(1742), - [anon_sym_DQUOTE] = ACTIONS(1742), - [sym__str_single_quotes] = ACTIONS(1742), - [sym__str_back_ticks] = ACTIONS(1742), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1742), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1742), - [aux_sym_env_var_token1] = ACTIONS(1744), - [anon_sym_CARET] = ACTIONS(1742), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(1079), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(373), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(1723), + [anon_sym_false] = ACTIONS(1723), + [anon_sym_null] = ACTIONS(1725), + [aux_sym_cmd_identifier_token38] = ACTIONS(1727), + [aux_sym_cmd_identifier_token39] = ACTIONS(1729), + [aux_sym_cmd_identifier_token40] = ACTIONS(1729), + [sym__newline] = ACTIONS(1731), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_if] = ACTIONS(491), + [anon_sym_LBRACE] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(193), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1737), + [aux_sym__val_number_decimal_token3] = ACTIONS(1739), + [aux_sym__val_number_decimal_token4] = ACTIONS(1741), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [280] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5072), - [sym_block] = STATE(5073), - [sym__expression_parenthesized] = STATE(5073), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3783), - [sym_expr_parenthesized] = STATE(2023), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(2013), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3070), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_command] = STATE(5073), + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5140), + [sym_block] = STATE(5141), + [sym__expression_parenthesized] = STATE(5141), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3839), + [sym_expr_parenthesized] = STATE(2053), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(2028), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3132), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_command] = STATE(5141), [sym_comment] = STATE(280), - [aux_sym_shebang_repeat1] = STATE(285), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(1746), - [anon_sym_false] = ACTIONS(1746), - [anon_sym_null] = ACTIONS(1748), - [aux_sym_cmd_identifier_token38] = ACTIONS(1750), - [aux_sym_cmd_identifier_token39] = ACTIONS(1752), - [aux_sym_cmd_identifier_token40] = ACTIONS(1752), - [sym__newline] = ACTIONS(1754), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_if] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1758), - [aux_sym__val_number_decimal_token2] = ACTIONS(1760), - [aux_sym__val_number_decimal_token3] = ACTIONS(1762), - [aux_sym__val_number_decimal_token4] = ACTIONS(1764), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(1079), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(373), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(1723), + [anon_sym_false] = ACTIONS(1723), + [anon_sym_null] = ACTIONS(1725), + [aux_sym_cmd_identifier_token38] = ACTIONS(1727), + [aux_sym_cmd_identifier_token39] = ACTIONS(1729), + [aux_sym_cmd_identifier_token40] = ACTIONS(1729), + [sym__newline] = ACTIONS(1731), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_if] = ACTIONS(491), + [anon_sym_LBRACE] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(193), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1737), + [aux_sym__val_number_decimal_token3] = ACTIONS(1739), + [aux_sym__val_number_decimal_token4] = ACTIONS(1741), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [281] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5142), + [sym_block] = STATE(5144), + [sym__expression_parenthesized] = STATE(5144), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3839), + [sym_expr_parenthesized] = STATE(2053), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(2028), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3132), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_command] = STATE(5144), [sym_comment] = STATE(281), - [ts_builtin_sym_end] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1768), - [anon_sym_alias] = ACTIONS(1768), - [anon_sym_let] = ACTIONS(1768), - [anon_sym_let_DASHenv] = ACTIONS(1768), - [anon_sym_mut] = ACTIONS(1768), - [anon_sym_const] = ACTIONS(1768), - [aux_sym_cmd_identifier_token1] = ACTIONS(1768), - [aux_sym_cmd_identifier_token2] = ACTIONS(1768), - [aux_sym_cmd_identifier_token3] = ACTIONS(1768), - [aux_sym_cmd_identifier_token4] = ACTIONS(1768), - [aux_sym_cmd_identifier_token5] = ACTIONS(1768), - [aux_sym_cmd_identifier_token6] = ACTIONS(1768), - [aux_sym_cmd_identifier_token7] = ACTIONS(1768), - [aux_sym_cmd_identifier_token8] = ACTIONS(1768), - [aux_sym_cmd_identifier_token9] = ACTIONS(1768), - [aux_sym_cmd_identifier_token10] = ACTIONS(1768), - [aux_sym_cmd_identifier_token11] = ACTIONS(1768), - [aux_sym_cmd_identifier_token12] = ACTIONS(1768), - [aux_sym_cmd_identifier_token13] = ACTIONS(1768), - [aux_sym_cmd_identifier_token14] = ACTIONS(1768), - [aux_sym_cmd_identifier_token15] = ACTIONS(1768), - [aux_sym_cmd_identifier_token16] = ACTIONS(1768), - [aux_sym_cmd_identifier_token17] = ACTIONS(1768), - [aux_sym_cmd_identifier_token18] = ACTIONS(1768), - [aux_sym_cmd_identifier_token19] = ACTIONS(1768), - [aux_sym_cmd_identifier_token20] = ACTIONS(1768), - [aux_sym_cmd_identifier_token21] = ACTIONS(1768), - [aux_sym_cmd_identifier_token22] = ACTIONS(1768), - [aux_sym_cmd_identifier_token23] = ACTIONS(1768), - [aux_sym_cmd_identifier_token24] = ACTIONS(1766), - [aux_sym_cmd_identifier_token25] = ACTIONS(1768), - [aux_sym_cmd_identifier_token26] = ACTIONS(1766), - [aux_sym_cmd_identifier_token27] = ACTIONS(1768), - [aux_sym_cmd_identifier_token28] = ACTIONS(1768), - [aux_sym_cmd_identifier_token29] = ACTIONS(1768), - [aux_sym_cmd_identifier_token30] = ACTIONS(1768), - [aux_sym_cmd_identifier_token31] = ACTIONS(1766), - [aux_sym_cmd_identifier_token32] = ACTIONS(1766), - [aux_sym_cmd_identifier_token33] = ACTIONS(1766), - [aux_sym_cmd_identifier_token34] = ACTIONS(1766), - [aux_sym_cmd_identifier_token35] = ACTIONS(1766), - [aux_sym_cmd_identifier_token36] = ACTIONS(1768), - [anon_sym_true] = ACTIONS(1766), - [anon_sym_false] = ACTIONS(1766), - [anon_sym_null] = ACTIONS(1766), - [aux_sym_cmd_identifier_token38] = ACTIONS(1768), - [aux_sym_cmd_identifier_token39] = ACTIONS(1766), - [aux_sym_cmd_identifier_token40] = ACTIONS(1766), - [sym__newline] = ACTIONS(1766), - [anon_sym_SEMI] = ACTIONS(1766), - [anon_sym_def] = ACTIONS(1768), - [anon_sym_export_DASHenv] = ACTIONS(1768), - [anon_sym_extern] = ACTIONS(1768), - [anon_sym_module] = ACTIONS(1768), - [anon_sym_use] = ACTIONS(1768), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_DOLLAR] = ACTIONS(1768), - [anon_sym_error] = ACTIONS(1768), - [anon_sym_DASH] = ACTIONS(1768), - [anon_sym_break] = ACTIONS(1768), - [anon_sym_continue] = ACTIONS(1768), - [anon_sym_for] = ACTIONS(1768), - [anon_sym_loop] = ACTIONS(1768), - [anon_sym_while] = ACTIONS(1768), - [anon_sym_do] = ACTIONS(1768), - [anon_sym_if] = ACTIONS(1768), - [anon_sym_match] = ACTIONS(1768), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_DOT_DOT] = ACTIONS(1768), - [anon_sym_try] = ACTIONS(1768), - [anon_sym_return] = ACTIONS(1768), - [anon_sym_source] = ACTIONS(1768), - [anon_sym_source_DASHenv] = ACTIONS(1768), - [anon_sym_register] = ACTIONS(1768), - [anon_sym_hide] = ACTIONS(1768), - [anon_sym_hide_DASHenv] = ACTIONS(1768), - [anon_sym_overlay] = ACTIONS(1768), - [anon_sym_where] = ACTIONS(1766), - [aux_sym_expr_unary_token1] = ACTIONS(1766), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1766), - [anon_sym_DOT_DOT_LT] = ACTIONS(1766), - [aux_sym__val_number_decimal_token1] = ACTIONS(1768), - [aux_sym__val_number_decimal_token2] = ACTIONS(1766), - [aux_sym__val_number_decimal_token3] = ACTIONS(1766), - [aux_sym__val_number_decimal_token4] = ACTIONS(1766), - [aux_sym__val_number_token1] = ACTIONS(1766), - [aux_sym__val_number_token2] = ACTIONS(1766), - [aux_sym__val_number_token3] = ACTIONS(1766), - [anon_sym_0b] = ACTIONS(1768), - [anon_sym_0o] = ACTIONS(1768), - [anon_sym_0x] = ACTIONS(1768), - [sym_val_date] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(1766), - [sym__str_single_quotes] = ACTIONS(1766), - [sym__str_back_ticks] = ACTIONS(1766), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1766), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1766), - [aux_sym_env_var_token1] = ACTIONS(1768), - [anon_sym_CARET] = ACTIONS(1766), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(1079), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(373), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(1723), + [anon_sym_false] = ACTIONS(1723), + [anon_sym_null] = ACTIONS(1725), + [aux_sym_cmd_identifier_token38] = ACTIONS(1727), + [aux_sym_cmd_identifier_token39] = ACTIONS(1729), + [aux_sym_cmd_identifier_token40] = ACTIONS(1729), + [sym__newline] = ACTIONS(1731), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_if] = ACTIONS(491), + [anon_sym_LBRACE] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(193), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1737), + [aux_sym__val_number_decimal_token3] = ACTIONS(1739), + [aux_sym__val_number_decimal_token4] = ACTIONS(1741), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [282] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5142), + [sym_block] = STATE(5144), + [sym__expression_parenthesized] = STATE(5144), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3839), + [sym_expr_parenthesized] = STATE(2053), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(2028), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3132), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_command] = STATE(5144), [sym_comment] = STATE(282), - [anon_sym_export] = ACTIONS(1659), - [anon_sym_alias] = ACTIONS(1659), - [anon_sym_let] = ACTIONS(1659), - [anon_sym_let_DASHenv] = ACTIONS(1659), - [anon_sym_mut] = ACTIONS(1659), - [anon_sym_const] = ACTIONS(1659), - [aux_sym_cmd_identifier_token1] = ACTIONS(1659), - [aux_sym_cmd_identifier_token2] = ACTIONS(1659), - [aux_sym_cmd_identifier_token3] = ACTIONS(1659), - [aux_sym_cmd_identifier_token4] = ACTIONS(1659), - [aux_sym_cmd_identifier_token5] = ACTIONS(1659), - [aux_sym_cmd_identifier_token6] = ACTIONS(1659), - [aux_sym_cmd_identifier_token7] = ACTIONS(1659), - [aux_sym_cmd_identifier_token8] = ACTIONS(1659), - [aux_sym_cmd_identifier_token9] = ACTIONS(1659), - [aux_sym_cmd_identifier_token10] = ACTIONS(1659), - [aux_sym_cmd_identifier_token11] = ACTIONS(1659), - [aux_sym_cmd_identifier_token12] = ACTIONS(1659), - [aux_sym_cmd_identifier_token13] = ACTIONS(1659), - [aux_sym_cmd_identifier_token14] = ACTIONS(1659), - [aux_sym_cmd_identifier_token15] = ACTIONS(1659), - [aux_sym_cmd_identifier_token16] = ACTIONS(1659), - [aux_sym_cmd_identifier_token17] = ACTIONS(1659), - [aux_sym_cmd_identifier_token18] = ACTIONS(1659), - [aux_sym_cmd_identifier_token19] = ACTIONS(1659), - [aux_sym_cmd_identifier_token20] = ACTIONS(1659), - [aux_sym_cmd_identifier_token21] = ACTIONS(1659), - [aux_sym_cmd_identifier_token22] = ACTIONS(1659), - [aux_sym_cmd_identifier_token23] = ACTIONS(1659), - [aux_sym_cmd_identifier_token24] = ACTIONS(1659), - [aux_sym_cmd_identifier_token25] = ACTIONS(1659), - [aux_sym_cmd_identifier_token26] = ACTIONS(1659), - [aux_sym_cmd_identifier_token27] = ACTIONS(1659), - [aux_sym_cmd_identifier_token28] = ACTIONS(1659), - [aux_sym_cmd_identifier_token29] = ACTIONS(1659), - [aux_sym_cmd_identifier_token30] = ACTIONS(1659), - [aux_sym_cmd_identifier_token31] = ACTIONS(1659), - [aux_sym_cmd_identifier_token32] = ACTIONS(1659), - [aux_sym_cmd_identifier_token33] = ACTIONS(1659), - [aux_sym_cmd_identifier_token34] = ACTIONS(1659), - [aux_sym_cmd_identifier_token35] = ACTIONS(1659), - [aux_sym_cmd_identifier_token36] = ACTIONS(1659), - [anon_sym_true] = ACTIONS(1659), - [anon_sym_false] = ACTIONS(1659), - [anon_sym_null] = ACTIONS(1659), - [aux_sym_cmd_identifier_token38] = ACTIONS(1659), - [aux_sym_cmd_identifier_token39] = ACTIONS(1659), - [aux_sym_cmd_identifier_token40] = ACTIONS(1659), - [anon_sym_def] = ACTIONS(1659), - [anon_sym_export_DASHenv] = ACTIONS(1659), - [anon_sym_extern] = ACTIONS(1659), - [anon_sym_module] = ACTIONS(1659), - [anon_sym_use] = ACTIONS(1659), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_DOLLAR] = ACTIONS(1659), - [anon_sym_error] = ACTIONS(1659), - [anon_sym_list] = ACTIONS(1659), - [anon_sym_DASH] = ACTIONS(1659), - [anon_sym_break] = ACTIONS(1659), - [anon_sym_continue] = ACTIONS(1659), - [anon_sym_for] = ACTIONS(1659), - [anon_sym_in] = ACTIONS(1659), - [anon_sym_loop] = ACTIONS(1659), - [anon_sym_make] = ACTIONS(1659), - [anon_sym_while] = ACTIONS(1659), - [anon_sym_do] = ACTIONS(1659), - [anon_sym_if] = ACTIONS(1659), - [anon_sym_else] = ACTIONS(1659), - [anon_sym_match] = ACTIONS(1659), - [anon_sym_RBRACE] = ACTIONS(1659), - [anon_sym_try] = ACTIONS(1659), - [anon_sym_catch] = ACTIONS(1659), - [anon_sym_return] = ACTIONS(1659), - [anon_sym_source] = ACTIONS(1659), - [anon_sym_source_DASHenv] = ACTIONS(1659), - [anon_sym_register] = ACTIONS(1659), - [anon_sym_hide] = ACTIONS(1659), - [anon_sym_hide_DASHenv] = ACTIONS(1659), - [anon_sym_overlay] = ACTIONS(1659), - [anon_sym_new] = ACTIONS(1659), - [anon_sym_as] = ACTIONS(1659), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1659), - [anon_sym_DOT_DOT2] = ACTIONS(1659), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1661), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1661), - [aux_sym__immediate_decimal_token1] = ACTIONS(1770), - [aux_sym__immediate_decimal_token2] = ACTIONS(1772), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1659), - [aux_sym__val_number_decimal_token1] = ACTIONS(1659), - [aux_sym__val_number_decimal_token2] = ACTIONS(1659), - [aux_sym__val_number_decimal_token3] = ACTIONS(1659), - [aux_sym__val_number_decimal_token4] = ACTIONS(1659), - [aux_sym__val_number_token1] = ACTIONS(1659), - [aux_sym__val_number_token2] = ACTIONS(1659), - [aux_sym__val_number_token3] = ACTIONS(1659), - [anon_sym_DQUOTE] = ACTIONS(1659), - [sym__str_single_quotes] = ACTIONS(1659), - [sym__str_back_ticks] = ACTIONS(1659), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1659), - [sym__entry_separator] = ACTIONS(1661), - [anon_sym_PLUS] = ACTIONS(1659), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(283), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(373), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(1723), + [anon_sym_false] = ACTIONS(1723), + [anon_sym_null] = ACTIONS(1725), + [aux_sym_cmd_identifier_token38] = ACTIONS(1727), + [aux_sym_cmd_identifier_token39] = ACTIONS(1729), + [aux_sym_cmd_identifier_token40] = ACTIONS(1729), + [sym__newline] = ACTIONS(1731), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_if] = ACTIONS(491), + [anon_sym_LBRACE] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(193), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1737), + [aux_sym__val_number_decimal_token3] = ACTIONS(1739), + [aux_sym__val_number_decimal_token4] = ACTIONS(1741), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [283] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5146), + [sym_block] = STATE(5147), + [sym__expression_parenthesized] = STATE(5147), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3839), + [sym_expr_parenthesized] = STATE(2053), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(2028), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3132), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_command] = STATE(5147), [sym_comment] = STATE(283), - [anon_sym_export] = ACTIONS(1667), - [anon_sym_alias] = ACTIONS(1667), - [anon_sym_let] = ACTIONS(1667), - [anon_sym_let_DASHenv] = ACTIONS(1667), - [anon_sym_mut] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1667), - [aux_sym_cmd_identifier_token1] = ACTIONS(1667), - [aux_sym_cmd_identifier_token2] = ACTIONS(1667), - [aux_sym_cmd_identifier_token3] = ACTIONS(1667), - [aux_sym_cmd_identifier_token4] = ACTIONS(1667), - [aux_sym_cmd_identifier_token5] = ACTIONS(1667), - [aux_sym_cmd_identifier_token6] = ACTIONS(1667), - [aux_sym_cmd_identifier_token7] = ACTIONS(1667), - [aux_sym_cmd_identifier_token8] = ACTIONS(1667), - [aux_sym_cmd_identifier_token9] = ACTIONS(1667), - [aux_sym_cmd_identifier_token10] = ACTIONS(1667), - [aux_sym_cmd_identifier_token11] = ACTIONS(1667), - [aux_sym_cmd_identifier_token12] = ACTIONS(1667), - [aux_sym_cmd_identifier_token13] = ACTIONS(1667), - [aux_sym_cmd_identifier_token14] = ACTIONS(1667), - [aux_sym_cmd_identifier_token15] = ACTIONS(1667), - [aux_sym_cmd_identifier_token16] = ACTIONS(1667), - [aux_sym_cmd_identifier_token17] = ACTIONS(1667), - [aux_sym_cmd_identifier_token18] = ACTIONS(1667), - [aux_sym_cmd_identifier_token19] = ACTIONS(1667), - [aux_sym_cmd_identifier_token20] = ACTIONS(1667), - [aux_sym_cmd_identifier_token21] = ACTIONS(1667), - [aux_sym_cmd_identifier_token22] = ACTIONS(1667), - [aux_sym_cmd_identifier_token23] = ACTIONS(1667), - [aux_sym_cmd_identifier_token24] = ACTIONS(1667), - [aux_sym_cmd_identifier_token25] = ACTIONS(1667), - [aux_sym_cmd_identifier_token26] = ACTIONS(1667), - [aux_sym_cmd_identifier_token27] = ACTIONS(1667), - [aux_sym_cmd_identifier_token28] = ACTIONS(1667), - [aux_sym_cmd_identifier_token29] = ACTIONS(1667), - [aux_sym_cmd_identifier_token30] = ACTIONS(1667), - [aux_sym_cmd_identifier_token31] = ACTIONS(1667), - [aux_sym_cmd_identifier_token32] = ACTIONS(1667), - [aux_sym_cmd_identifier_token33] = ACTIONS(1667), - [aux_sym_cmd_identifier_token34] = ACTIONS(1667), - [aux_sym_cmd_identifier_token35] = ACTIONS(1667), - [aux_sym_cmd_identifier_token36] = ACTIONS(1667), - [anon_sym_true] = ACTIONS(1667), - [anon_sym_false] = ACTIONS(1667), - [anon_sym_null] = ACTIONS(1667), - [aux_sym_cmd_identifier_token38] = ACTIONS(1667), - [aux_sym_cmd_identifier_token39] = ACTIONS(1667), - [aux_sym_cmd_identifier_token40] = ACTIONS(1667), - [anon_sym_def] = ACTIONS(1667), - [anon_sym_export_DASHenv] = ACTIONS(1667), - [anon_sym_extern] = ACTIONS(1667), - [anon_sym_module] = ACTIONS(1667), - [anon_sym_use] = ACTIONS(1667), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_DOLLAR] = ACTIONS(1667), - [anon_sym_error] = ACTIONS(1667), - [anon_sym_list] = ACTIONS(1667), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_break] = ACTIONS(1667), - [anon_sym_continue] = ACTIONS(1667), - [anon_sym_for] = ACTIONS(1667), - [anon_sym_in] = ACTIONS(1667), - [anon_sym_loop] = ACTIONS(1667), - [anon_sym_make] = ACTIONS(1667), - [anon_sym_while] = ACTIONS(1667), - [anon_sym_do] = ACTIONS(1667), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_else] = ACTIONS(1667), - [anon_sym_match] = ACTIONS(1667), - [anon_sym_RBRACE] = ACTIONS(1667), - [anon_sym_try] = ACTIONS(1667), - [anon_sym_catch] = ACTIONS(1667), - [anon_sym_return] = ACTIONS(1667), - [anon_sym_source] = ACTIONS(1667), - [anon_sym_source_DASHenv] = ACTIONS(1667), - [anon_sym_register] = ACTIONS(1667), - [anon_sym_hide] = ACTIONS(1667), - [anon_sym_hide_DASHenv] = ACTIONS(1667), - [anon_sym_overlay] = ACTIONS(1667), - [anon_sym_new] = ACTIONS(1667), - [anon_sym_as] = ACTIONS(1667), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1667), - [anon_sym_DOT_DOT2] = ACTIONS(1667), - [anon_sym_DOT] = ACTIONS(1774), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [aux_sym__immediate_decimal_token2] = ACTIONS(1776), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1667), - [aux_sym__val_number_decimal_token1] = ACTIONS(1667), - [aux_sym__val_number_decimal_token2] = ACTIONS(1667), - [aux_sym__val_number_decimal_token3] = ACTIONS(1667), - [aux_sym__val_number_decimal_token4] = ACTIONS(1667), - [aux_sym__val_number_token1] = ACTIONS(1667), - [aux_sym__val_number_token2] = ACTIONS(1667), - [aux_sym__val_number_token3] = ACTIONS(1667), - [anon_sym_DQUOTE] = ACTIONS(1667), - [sym__str_single_quotes] = ACTIONS(1667), - [sym__str_back_ticks] = ACTIONS(1667), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1667), - [sym__entry_separator] = ACTIONS(1669), - [anon_sym_PLUS] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(1079), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(373), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(1723), + [anon_sym_false] = ACTIONS(1723), + [anon_sym_null] = ACTIONS(1725), + [aux_sym_cmd_identifier_token38] = ACTIONS(1727), + [aux_sym_cmd_identifier_token39] = ACTIONS(1729), + [aux_sym_cmd_identifier_token40] = ACTIONS(1729), + [sym__newline] = ACTIONS(1731), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_if] = ACTIONS(491), + [anon_sym_LBRACE] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(193), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1737), + [aux_sym__val_number_decimal_token3] = ACTIONS(1739), + [aux_sym__val_number_decimal_token4] = ACTIONS(1741), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [284] = { [sym_comment] = STATE(284), - [anon_sym_export] = ACTIONS(1667), - [anon_sym_alias] = ACTIONS(1667), - [anon_sym_let] = ACTIONS(1667), - [anon_sym_let_DASHenv] = ACTIONS(1667), - [anon_sym_mut] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1667), - [aux_sym_cmd_identifier_token1] = ACTIONS(1667), - [aux_sym_cmd_identifier_token2] = ACTIONS(1667), - [aux_sym_cmd_identifier_token3] = ACTIONS(1667), - [aux_sym_cmd_identifier_token4] = ACTIONS(1667), - [aux_sym_cmd_identifier_token5] = ACTIONS(1667), - [aux_sym_cmd_identifier_token6] = ACTIONS(1667), - [aux_sym_cmd_identifier_token7] = ACTIONS(1667), - [aux_sym_cmd_identifier_token8] = ACTIONS(1667), - [aux_sym_cmd_identifier_token9] = ACTIONS(1667), - [aux_sym_cmd_identifier_token10] = ACTIONS(1667), - [aux_sym_cmd_identifier_token11] = ACTIONS(1667), - [aux_sym_cmd_identifier_token12] = ACTIONS(1667), - [aux_sym_cmd_identifier_token13] = ACTIONS(1667), - [aux_sym_cmd_identifier_token14] = ACTIONS(1667), - [aux_sym_cmd_identifier_token15] = ACTIONS(1667), - [aux_sym_cmd_identifier_token16] = ACTIONS(1667), - [aux_sym_cmd_identifier_token17] = ACTIONS(1667), - [aux_sym_cmd_identifier_token18] = ACTIONS(1667), - [aux_sym_cmd_identifier_token19] = ACTIONS(1667), - [aux_sym_cmd_identifier_token20] = ACTIONS(1667), - [aux_sym_cmd_identifier_token21] = ACTIONS(1667), - [aux_sym_cmd_identifier_token22] = ACTIONS(1667), - [aux_sym_cmd_identifier_token23] = ACTIONS(1667), - [aux_sym_cmd_identifier_token24] = ACTIONS(1667), - [aux_sym_cmd_identifier_token25] = ACTIONS(1667), - [aux_sym_cmd_identifier_token26] = ACTIONS(1667), - [aux_sym_cmd_identifier_token27] = ACTIONS(1667), - [aux_sym_cmd_identifier_token28] = ACTIONS(1667), - [aux_sym_cmd_identifier_token29] = ACTIONS(1667), - [aux_sym_cmd_identifier_token30] = ACTIONS(1667), - [aux_sym_cmd_identifier_token31] = ACTIONS(1667), - [aux_sym_cmd_identifier_token32] = ACTIONS(1667), - [aux_sym_cmd_identifier_token33] = ACTIONS(1667), - [aux_sym_cmd_identifier_token34] = ACTIONS(1667), - [aux_sym_cmd_identifier_token35] = ACTIONS(1667), - [aux_sym_cmd_identifier_token36] = ACTIONS(1667), - [anon_sym_true] = ACTIONS(1669), - [anon_sym_false] = ACTIONS(1669), - [anon_sym_null] = ACTIONS(1669), - [aux_sym_cmd_identifier_token38] = ACTIONS(1667), - [aux_sym_cmd_identifier_token39] = ACTIONS(1669), - [aux_sym_cmd_identifier_token40] = ACTIONS(1669), - [anon_sym_def] = ACTIONS(1667), - [anon_sym_export_DASHenv] = ACTIONS(1667), - [anon_sym_extern] = ACTIONS(1667), - [anon_sym_module] = ACTIONS(1667), - [anon_sym_use] = ACTIONS(1667), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_DOLLAR] = ACTIONS(1669), - [anon_sym_error] = ACTIONS(1667), - [anon_sym_list] = ACTIONS(1667), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_break] = ACTIONS(1667), - [anon_sym_continue] = ACTIONS(1667), - [anon_sym_for] = ACTIONS(1667), - [anon_sym_in] = ACTIONS(1667), - [anon_sym_loop] = ACTIONS(1667), - [anon_sym_make] = ACTIONS(1667), - [anon_sym_while] = ACTIONS(1667), - [anon_sym_do] = ACTIONS(1667), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_else] = ACTIONS(1667), - [anon_sym_match] = ACTIONS(1667), - [anon_sym_RBRACE] = ACTIONS(1669), - [anon_sym_try] = ACTIONS(1667), - [anon_sym_catch] = ACTIONS(1667), - [anon_sym_return] = ACTIONS(1667), - [anon_sym_source] = ACTIONS(1667), - [anon_sym_source_DASHenv] = ACTIONS(1667), - [anon_sym_register] = ACTIONS(1667), - [anon_sym_hide] = ACTIONS(1667), - [anon_sym_hide_DASHenv] = ACTIONS(1667), - [anon_sym_overlay] = ACTIONS(1667), - [anon_sym_new] = ACTIONS(1667), - [anon_sym_as] = ACTIONS(1667), - [anon_sym_LPAREN2] = ACTIONS(1669), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1669), - [anon_sym_DOT_DOT2] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [aux_sym__immediate_decimal_token2] = ACTIONS(1729), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1669), - [aux_sym__val_number_decimal_token1] = ACTIONS(1667), - [aux_sym__val_number_decimal_token2] = ACTIONS(1669), - [aux_sym__val_number_decimal_token3] = ACTIONS(1669), - [aux_sym__val_number_decimal_token4] = ACTIONS(1669), - [aux_sym__val_number_token1] = ACTIONS(1669), - [aux_sym__val_number_token2] = ACTIONS(1669), - [aux_sym__val_number_token3] = ACTIONS(1669), - [anon_sym_DQUOTE] = ACTIONS(1669), - [sym__str_single_quotes] = ACTIONS(1669), - [sym__str_back_ticks] = ACTIONS(1669), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1669), - [anon_sym_PLUS] = ACTIONS(1667), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(1757), + [anon_sym_alias] = ACTIONS(1757), + [anon_sym_let] = ACTIONS(1757), + [anon_sym_let_DASHenv] = ACTIONS(1757), + [anon_sym_mut] = ACTIONS(1757), + [anon_sym_const] = ACTIONS(1757), + [aux_sym_cmd_identifier_token1] = ACTIONS(1757), + [aux_sym_cmd_identifier_token2] = ACTIONS(1757), + [aux_sym_cmd_identifier_token3] = ACTIONS(1757), + [aux_sym_cmd_identifier_token4] = ACTIONS(1757), + [aux_sym_cmd_identifier_token5] = ACTIONS(1757), + [aux_sym_cmd_identifier_token6] = ACTIONS(1757), + [aux_sym_cmd_identifier_token7] = ACTIONS(1757), + [aux_sym_cmd_identifier_token8] = ACTIONS(1757), + [aux_sym_cmd_identifier_token9] = ACTIONS(1757), + [aux_sym_cmd_identifier_token10] = ACTIONS(1757), + [aux_sym_cmd_identifier_token11] = ACTIONS(1757), + [aux_sym_cmd_identifier_token12] = ACTIONS(1757), + [aux_sym_cmd_identifier_token13] = ACTIONS(1757), + [aux_sym_cmd_identifier_token14] = ACTIONS(1757), + [aux_sym_cmd_identifier_token15] = ACTIONS(1757), + [aux_sym_cmd_identifier_token16] = ACTIONS(1757), + [aux_sym_cmd_identifier_token17] = ACTIONS(1757), + [aux_sym_cmd_identifier_token18] = ACTIONS(1757), + [aux_sym_cmd_identifier_token19] = ACTIONS(1757), + [aux_sym_cmd_identifier_token20] = ACTIONS(1757), + [aux_sym_cmd_identifier_token21] = ACTIONS(1757), + [aux_sym_cmd_identifier_token22] = ACTIONS(1757), + [aux_sym_cmd_identifier_token23] = ACTIONS(1757), + [aux_sym_cmd_identifier_token24] = ACTIONS(1366), + [aux_sym_cmd_identifier_token25] = ACTIONS(1757), + [aux_sym_cmd_identifier_token26] = ACTIONS(1366), + [aux_sym_cmd_identifier_token27] = ACTIONS(1757), + [aux_sym_cmd_identifier_token28] = ACTIONS(1757), + [aux_sym_cmd_identifier_token29] = ACTIONS(1757), + [aux_sym_cmd_identifier_token30] = ACTIONS(1757), + [aux_sym_cmd_identifier_token31] = ACTIONS(1366), + [aux_sym_cmd_identifier_token32] = ACTIONS(1366), + [aux_sym_cmd_identifier_token33] = ACTIONS(1366), + [aux_sym_cmd_identifier_token34] = ACTIONS(1366), + [aux_sym_cmd_identifier_token35] = ACTIONS(1366), + [aux_sym_cmd_identifier_token36] = ACTIONS(1757), + [anon_sym_true] = ACTIONS(1366), + [anon_sym_false] = ACTIONS(1366), + [anon_sym_null] = ACTIONS(1366), + [aux_sym_cmd_identifier_token38] = ACTIONS(1757), + [aux_sym_cmd_identifier_token39] = ACTIONS(1366), + [aux_sym_cmd_identifier_token40] = ACTIONS(1366), + [sym__newline] = ACTIONS(1366), + [anon_sym_SEMI] = ACTIONS(1366), + [anon_sym_def] = ACTIONS(1757), + [anon_sym_export_DASHenv] = ACTIONS(1757), + [anon_sym_extern] = ACTIONS(1757), + [anon_sym_module] = ACTIONS(1757), + [anon_sym_use] = ACTIONS(1757), + [anon_sym_LBRACK] = ACTIONS(1366), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_RPAREN] = ACTIONS(1366), + [anon_sym_DOLLAR] = ACTIONS(1757), + [anon_sym_error] = ACTIONS(1757), + [anon_sym_DASH] = ACTIONS(1757), + [anon_sym_break] = ACTIONS(1757), + [anon_sym_continue] = ACTIONS(1757), + [anon_sym_for] = ACTIONS(1757), + [anon_sym_loop] = ACTIONS(1757), + [anon_sym_while] = ACTIONS(1757), + [anon_sym_do] = ACTIONS(1757), + [anon_sym_if] = ACTIONS(1757), + [anon_sym_match] = ACTIONS(1757), + [anon_sym_LBRACE] = ACTIONS(1366), + [anon_sym_RBRACE] = ACTIONS(1366), + [anon_sym_DOT_DOT] = ACTIONS(1757), + [anon_sym_try] = ACTIONS(1757), + [anon_sym_return] = ACTIONS(1757), + [anon_sym_source] = ACTIONS(1757), + [anon_sym_source_DASHenv] = ACTIONS(1757), + [anon_sym_register] = ACTIONS(1757), + [anon_sym_hide] = ACTIONS(1757), + [anon_sym_hide_DASHenv] = ACTIONS(1757), + [anon_sym_overlay] = ACTIONS(1757), + [anon_sym_where] = ACTIONS(1366), + [aux_sym_expr_unary_token1] = ACTIONS(1366), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1366), + [anon_sym_DOT_DOT_LT] = ACTIONS(1366), + [aux_sym__val_number_decimal_token1] = ACTIONS(1757), + [aux_sym__val_number_decimal_token2] = ACTIONS(1366), + [aux_sym__val_number_decimal_token3] = ACTIONS(1366), + [aux_sym__val_number_decimal_token4] = ACTIONS(1366), + [aux_sym__val_number_token1] = ACTIONS(1366), + [aux_sym__val_number_token2] = ACTIONS(1366), + [aux_sym__val_number_token3] = ACTIONS(1366), + [anon_sym_0b] = ACTIONS(1757), + [anon_sym_0o] = ACTIONS(1757), + [anon_sym_0x] = ACTIONS(1757), + [sym_val_date] = ACTIONS(1366), + [anon_sym_DQUOTE] = ACTIONS(1366), + [sym__str_single_quotes] = ACTIONS(1366), + [sym__str_back_ticks] = ACTIONS(1366), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1366), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1366), + [aux_sym_env_var_token1] = ACTIONS(1757), + [anon_sym_CARET] = ACTIONS(1366), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1366), }, [285] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5135), - [sym_block] = STATE(5141), - [sym__expression_parenthesized] = STATE(5141), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3783), - [sym_expr_parenthesized] = STATE(2023), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(2013), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3070), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_command] = STATE(5141), [sym_comment] = STATE(285), - [aux_sym_shebang_repeat1] = STATE(1061), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(1746), - [anon_sym_false] = ACTIONS(1746), - [anon_sym_null] = ACTIONS(1748), - [aux_sym_cmd_identifier_token38] = ACTIONS(1750), - [aux_sym_cmd_identifier_token39] = ACTIONS(1752), - [aux_sym_cmd_identifier_token40] = ACTIONS(1752), - [sym__newline] = ACTIONS(1754), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_if] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1758), - [aux_sym__val_number_decimal_token2] = ACTIONS(1760), - [aux_sym__val_number_decimal_token3] = ACTIONS(1762), - [aux_sym__val_number_decimal_token4] = ACTIONS(1764), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(1536), + [anon_sym_alias] = ACTIONS(1536), + [anon_sym_let] = ACTIONS(1536), + [anon_sym_let_DASHenv] = ACTIONS(1536), + [anon_sym_mut] = ACTIONS(1536), + [anon_sym_const] = ACTIONS(1536), + [aux_sym_cmd_identifier_token1] = ACTIONS(1536), + [aux_sym_cmd_identifier_token2] = ACTIONS(1536), + [aux_sym_cmd_identifier_token3] = ACTIONS(1536), + [aux_sym_cmd_identifier_token4] = ACTIONS(1536), + [aux_sym_cmd_identifier_token5] = ACTIONS(1536), + [aux_sym_cmd_identifier_token6] = ACTIONS(1536), + [aux_sym_cmd_identifier_token7] = ACTIONS(1536), + [aux_sym_cmd_identifier_token8] = ACTIONS(1536), + [aux_sym_cmd_identifier_token9] = ACTIONS(1536), + [aux_sym_cmd_identifier_token10] = ACTIONS(1536), + [aux_sym_cmd_identifier_token11] = ACTIONS(1536), + [aux_sym_cmd_identifier_token12] = ACTIONS(1536), + [aux_sym_cmd_identifier_token13] = ACTIONS(1536), + [aux_sym_cmd_identifier_token14] = ACTIONS(1536), + [aux_sym_cmd_identifier_token15] = ACTIONS(1536), + [aux_sym_cmd_identifier_token16] = ACTIONS(1536), + [aux_sym_cmd_identifier_token17] = ACTIONS(1536), + [aux_sym_cmd_identifier_token18] = ACTIONS(1536), + [aux_sym_cmd_identifier_token19] = ACTIONS(1536), + [aux_sym_cmd_identifier_token20] = ACTIONS(1536), + [aux_sym_cmd_identifier_token21] = ACTIONS(1536), + [aux_sym_cmd_identifier_token22] = ACTIONS(1536), + [aux_sym_cmd_identifier_token23] = ACTIONS(1536), + [aux_sym_cmd_identifier_token24] = ACTIONS(1536), + [aux_sym_cmd_identifier_token25] = ACTIONS(1536), + [aux_sym_cmd_identifier_token26] = ACTIONS(1536), + [aux_sym_cmd_identifier_token27] = ACTIONS(1536), + [aux_sym_cmd_identifier_token28] = ACTIONS(1536), + [aux_sym_cmd_identifier_token29] = ACTIONS(1536), + [aux_sym_cmd_identifier_token30] = ACTIONS(1536), + [aux_sym_cmd_identifier_token31] = ACTIONS(1536), + [aux_sym_cmd_identifier_token32] = ACTIONS(1536), + [aux_sym_cmd_identifier_token33] = ACTIONS(1536), + [aux_sym_cmd_identifier_token34] = ACTIONS(1536), + [aux_sym_cmd_identifier_token35] = ACTIONS(1536), + [aux_sym_cmd_identifier_token36] = ACTIONS(1536), + [anon_sym_true] = ACTIONS(1538), + [anon_sym_false] = ACTIONS(1538), + [anon_sym_null] = ACTIONS(1538), + [aux_sym_cmd_identifier_token38] = ACTIONS(1536), + [aux_sym_cmd_identifier_token39] = ACTIONS(1538), + [aux_sym_cmd_identifier_token40] = ACTIONS(1538), + [anon_sym_def] = ACTIONS(1536), + [anon_sym_export_DASHenv] = ACTIONS(1536), + [anon_sym_extern] = ACTIONS(1536), + [anon_sym_module] = ACTIONS(1536), + [anon_sym_use] = ACTIONS(1536), + [anon_sym_LPAREN] = ACTIONS(1536), + [anon_sym_DOLLAR] = ACTIONS(1538), + [anon_sym_error] = ACTIONS(1536), + [anon_sym_list] = ACTIONS(1536), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_break] = ACTIONS(1536), + [anon_sym_continue] = ACTIONS(1536), + [anon_sym_for] = ACTIONS(1536), + [anon_sym_in] = ACTIONS(1536), + [anon_sym_loop] = ACTIONS(1536), + [anon_sym_make] = ACTIONS(1536), + [anon_sym_while] = ACTIONS(1536), + [anon_sym_do] = ACTIONS(1536), + [anon_sym_if] = ACTIONS(1536), + [anon_sym_else] = ACTIONS(1536), + [anon_sym_match] = ACTIONS(1536), + [anon_sym_RBRACE] = ACTIONS(1538), + [anon_sym_try] = ACTIONS(1536), + [anon_sym_catch] = ACTIONS(1536), + [anon_sym_return] = ACTIONS(1536), + [anon_sym_source] = ACTIONS(1536), + [anon_sym_source_DASHenv] = ACTIONS(1536), + [anon_sym_register] = ACTIONS(1536), + [anon_sym_hide] = ACTIONS(1536), + [anon_sym_hide_DASHenv] = ACTIONS(1536), + [anon_sym_overlay] = ACTIONS(1536), + [anon_sym_new] = ACTIONS(1536), + [anon_sym_as] = ACTIONS(1536), + [anon_sym_LPAREN2] = ACTIONS(1538), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1538), + [anon_sym_DOT_DOT2] = ACTIONS(1536), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1538), + [aux_sym__val_number_decimal_token1] = ACTIONS(1536), + [aux_sym__val_number_decimal_token2] = ACTIONS(1538), + [aux_sym__val_number_decimal_token3] = ACTIONS(1538), + [aux_sym__val_number_decimal_token4] = ACTIONS(1538), + [aux_sym__val_number_token1] = ACTIONS(1538), + [aux_sym__val_number_token2] = ACTIONS(1538), + [aux_sym__val_number_token3] = ACTIONS(1538), + [sym_filesize_unit] = ACTIONS(1536), + [sym_duration_unit] = ACTIONS(1536), + [anon_sym_DQUOTE] = ACTIONS(1538), + [sym__str_single_quotes] = ACTIONS(1538), + [sym__str_back_ticks] = ACTIONS(1538), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1538), + [anon_sym_PLUS] = ACTIONS(1536), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1536), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1538), }, [286] = { [sym_comment] = STATE(286), - [anon_sym_export] = ACTIONS(1038), - [anon_sym_alias] = ACTIONS(1038), - [anon_sym_let] = ACTIONS(1038), - [anon_sym_let_DASHenv] = ACTIONS(1038), - [anon_sym_mut] = ACTIONS(1038), - [anon_sym_const] = ACTIONS(1038), - [aux_sym_cmd_identifier_token1] = ACTIONS(1038), - [aux_sym_cmd_identifier_token2] = ACTIONS(1038), - [aux_sym_cmd_identifier_token3] = ACTIONS(1038), - [aux_sym_cmd_identifier_token4] = ACTIONS(1038), - [aux_sym_cmd_identifier_token5] = ACTIONS(1038), - [aux_sym_cmd_identifier_token6] = ACTIONS(1038), - [aux_sym_cmd_identifier_token7] = ACTIONS(1038), - [aux_sym_cmd_identifier_token8] = ACTIONS(1038), - [aux_sym_cmd_identifier_token9] = ACTIONS(1038), - [aux_sym_cmd_identifier_token10] = ACTIONS(1038), - [aux_sym_cmd_identifier_token11] = ACTIONS(1038), - [aux_sym_cmd_identifier_token12] = ACTIONS(1038), - [aux_sym_cmd_identifier_token13] = ACTIONS(1038), - [aux_sym_cmd_identifier_token14] = ACTIONS(1038), - [aux_sym_cmd_identifier_token15] = ACTIONS(1038), - [aux_sym_cmd_identifier_token16] = ACTIONS(1038), - [aux_sym_cmd_identifier_token17] = ACTIONS(1038), - [aux_sym_cmd_identifier_token18] = ACTIONS(1038), - [aux_sym_cmd_identifier_token19] = ACTIONS(1038), - [aux_sym_cmd_identifier_token20] = ACTIONS(1038), - [aux_sym_cmd_identifier_token21] = ACTIONS(1038), - [aux_sym_cmd_identifier_token22] = ACTIONS(1038), - [aux_sym_cmd_identifier_token23] = ACTIONS(1038), - [aux_sym_cmd_identifier_token24] = ACTIONS(1038), - [aux_sym_cmd_identifier_token25] = ACTIONS(1038), - [aux_sym_cmd_identifier_token26] = ACTIONS(1038), - [aux_sym_cmd_identifier_token27] = ACTIONS(1038), - [aux_sym_cmd_identifier_token28] = ACTIONS(1038), - [aux_sym_cmd_identifier_token29] = ACTIONS(1038), - [aux_sym_cmd_identifier_token30] = ACTIONS(1038), - [aux_sym_cmd_identifier_token31] = ACTIONS(1038), - [aux_sym_cmd_identifier_token32] = ACTIONS(1038), - [aux_sym_cmd_identifier_token33] = ACTIONS(1038), - [aux_sym_cmd_identifier_token34] = ACTIONS(1038), - [aux_sym_cmd_identifier_token35] = ACTIONS(1038), - [aux_sym_cmd_identifier_token36] = ACTIONS(1038), - [anon_sym_true] = ACTIONS(1038), - [anon_sym_false] = ACTIONS(1038), - [anon_sym_null] = ACTIONS(1038), - [aux_sym_cmd_identifier_token38] = ACTIONS(1038), - [aux_sym_cmd_identifier_token39] = ACTIONS(1038), - [aux_sym_cmd_identifier_token40] = ACTIONS(1038), - [anon_sym_def] = ACTIONS(1038), - [anon_sym_export_DASHenv] = ACTIONS(1038), - [anon_sym_extern] = ACTIONS(1038), - [anon_sym_module] = ACTIONS(1038), - [anon_sym_use] = ACTIONS(1038), - [anon_sym_LPAREN] = ACTIONS(1038), - [anon_sym_DOLLAR] = ACTIONS(1038), - [anon_sym_error] = ACTIONS(1038), - [anon_sym_list] = ACTIONS(1038), - [anon_sym_DASH] = ACTIONS(1038), - [anon_sym_break] = ACTIONS(1038), - [anon_sym_continue] = ACTIONS(1038), - [anon_sym_for] = ACTIONS(1038), - [anon_sym_in] = ACTIONS(1038), - [anon_sym_loop] = ACTIONS(1038), - [anon_sym_make] = ACTIONS(1038), - [anon_sym_while] = ACTIONS(1038), - [anon_sym_do] = ACTIONS(1038), - [anon_sym_if] = ACTIONS(1038), - [anon_sym_else] = ACTIONS(1038), - [anon_sym_match] = ACTIONS(1038), - [anon_sym_RBRACE] = ACTIONS(1038), - [anon_sym_try] = ACTIONS(1038), - [anon_sym_catch] = ACTIONS(1038), - [anon_sym_return] = ACTIONS(1038), - [anon_sym_source] = ACTIONS(1038), - [anon_sym_source_DASHenv] = ACTIONS(1038), - [anon_sym_register] = ACTIONS(1038), - [anon_sym_hide] = ACTIONS(1038), - [anon_sym_hide_DASHenv] = ACTIONS(1038), - [anon_sym_overlay] = ACTIONS(1038), - [anon_sym_new] = ACTIONS(1038), - [anon_sym_as] = ACTIONS(1038), - [anon_sym_QMARK2] = ACTIONS(1038), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1038), - [anon_sym_DOT_DOT2] = ACTIONS(1038), - [anon_sym_DOT] = ACTIONS(1038), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1040), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1040), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1038), - [aux_sym__val_number_decimal_token1] = ACTIONS(1038), - [aux_sym__val_number_decimal_token2] = ACTIONS(1038), - [aux_sym__val_number_decimal_token3] = ACTIONS(1038), - [aux_sym__val_number_decimal_token4] = ACTIONS(1038), - [aux_sym__val_number_token1] = ACTIONS(1038), - [aux_sym__val_number_token2] = ACTIONS(1038), - [aux_sym__val_number_token3] = ACTIONS(1038), - [anon_sym_DQUOTE] = ACTIONS(1038), - [sym__str_single_quotes] = ACTIONS(1038), - [sym__str_back_ticks] = ACTIONS(1038), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1038), - [sym__entry_separator] = ACTIONS(1040), - [anon_sym_PLUS] = ACTIONS(1038), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__block_body_repeat1] = STATE(263), + [ts_builtin_sym_end] = ACTIONS(1674), + [anon_sym_export] = ACTIONS(1656), + [anon_sym_alias] = ACTIONS(1656), + [anon_sym_let] = ACTIONS(1656), + [anon_sym_let_DASHenv] = ACTIONS(1656), + [anon_sym_mut] = ACTIONS(1656), + [anon_sym_const] = ACTIONS(1656), + [aux_sym_cmd_identifier_token1] = ACTIONS(1656), + [aux_sym_cmd_identifier_token2] = ACTIONS(1656), + [aux_sym_cmd_identifier_token3] = ACTIONS(1656), + [aux_sym_cmd_identifier_token4] = ACTIONS(1656), + [aux_sym_cmd_identifier_token5] = ACTIONS(1656), + [aux_sym_cmd_identifier_token6] = ACTIONS(1656), + [aux_sym_cmd_identifier_token7] = ACTIONS(1656), + [aux_sym_cmd_identifier_token8] = ACTIONS(1656), + [aux_sym_cmd_identifier_token9] = ACTIONS(1656), + [aux_sym_cmd_identifier_token10] = ACTIONS(1656), + [aux_sym_cmd_identifier_token11] = ACTIONS(1656), + [aux_sym_cmd_identifier_token12] = ACTIONS(1656), + [aux_sym_cmd_identifier_token13] = ACTIONS(1656), + [aux_sym_cmd_identifier_token14] = ACTIONS(1656), + [aux_sym_cmd_identifier_token15] = ACTIONS(1656), + [aux_sym_cmd_identifier_token16] = ACTIONS(1656), + [aux_sym_cmd_identifier_token17] = ACTIONS(1656), + [aux_sym_cmd_identifier_token18] = ACTIONS(1656), + [aux_sym_cmd_identifier_token19] = ACTIONS(1656), + [aux_sym_cmd_identifier_token20] = ACTIONS(1656), + [aux_sym_cmd_identifier_token21] = ACTIONS(1656), + [aux_sym_cmd_identifier_token22] = ACTIONS(1656), + [aux_sym_cmd_identifier_token23] = ACTIONS(1656), + [aux_sym_cmd_identifier_token24] = ACTIONS(1658), + [aux_sym_cmd_identifier_token25] = ACTIONS(1656), + [aux_sym_cmd_identifier_token26] = ACTIONS(1658), + [aux_sym_cmd_identifier_token27] = ACTIONS(1656), + [aux_sym_cmd_identifier_token28] = ACTIONS(1656), + [aux_sym_cmd_identifier_token29] = ACTIONS(1656), + [aux_sym_cmd_identifier_token30] = ACTIONS(1656), + [aux_sym_cmd_identifier_token31] = ACTIONS(1658), + [aux_sym_cmd_identifier_token32] = ACTIONS(1658), + [aux_sym_cmd_identifier_token33] = ACTIONS(1658), + [aux_sym_cmd_identifier_token34] = ACTIONS(1658), + [aux_sym_cmd_identifier_token35] = ACTIONS(1658), + [aux_sym_cmd_identifier_token36] = ACTIONS(1656), + [anon_sym_true] = ACTIONS(1658), + [anon_sym_false] = ACTIONS(1658), + [anon_sym_null] = ACTIONS(1658), + [aux_sym_cmd_identifier_token38] = ACTIONS(1656), + [aux_sym_cmd_identifier_token39] = ACTIONS(1658), + [aux_sym_cmd_identifier_token40] = ACTIONS(1658), + [sym__newline] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_def] = ACTIONS(1656), + [anon_sym_export_DASHenv] = ACTIONS(1656), + [anon_sym_extern] = ACTIONS(1656), + [anon_sym_module] = ACTIONS(1656), + [anon_sym_use] = ACTIONS(1656), + [anon_sym_LBRACK] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(1658), + [anon_sym_DOLLAR] = ACTIONS(1656), + [anon_sym_error] = ACTIONS(1656), + [anon_sym_DASH] = ACTIONS(1656), + [anon_sym_break] = ACTIONS(1656), + [anon_sym_continue] = ACTIONS(1656), + [anon_sym_for] = ACTIONS(1656), + [anon_sym_loop] = ACTIONS(1656), + [anon_sym_while] = ACTIONS(1656), + [anon_sym_do] = ACTIONS(1656), + [anon_sym_if] = ACTIONS(1656), + [anon_sym_match] = ACTIONS(1656), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_DOT_DOT] = ACTIONS(1656), + [anon_sym_try] = ACTIONS(1656), + [anon_sym_return] = ACTIONS(1656), + [anon_sym_source] = ACTIONS(1656), + [anon_sym_source_DASHenv] = ACTIONS(1656), + [anon_sym_register] = ACTIONS(1656), + [anon_sym_hide] = ACTIONS(1656), + [anon_sym_hide_DASHenv] = ACTIONS(1656), + [anon_sym_overlay] = ACTIONS(1656), + [anon_sym_where] = ACTIONS(1658), + [aux_sym_expr_unary_token1] = ACTIONS(1658), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1658), + [anon_sym_DOT_DOT_LT] = ACTIONS(1658), + [aux_sym__val_number_decimal_token1] = ACTIONS(1656), + [aux_sym__val_number_decimal_token2] = ACTIONS(1658), + [aux_sym__val_number_decimal_token3] = ACTIONS(1658), + [aux_sym__val_number_decimal_token4] = ACTIONS(1658), + [aux_sym__val_number_token1] = ACTIONS(1658), + [aux_sym__val_number_token2] = ACTIONS(1658), + [aux_sym__val_number_token3] = ACTIONS(1658), + [anon_sym_0b] = ACTIONS(1656), + [anon_sym_0o] = ACTIONS(1656), + [anon_sym_0x] = ACTIONS(1656), + [sym_val_date] = ACTIONS(1658), + [anon_sym_DQUOTE] = ACTIONS(1658), + [sym__str_single_quotes] = ACTIONS(1658), + [sym__str_back_ticks] = ACTIONS(1658), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1658), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1658), + [aux_sym_env_var_token1] = ACTIONS(1656), + [anon_sym_CARET] = ACTIONS(1658), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1658), }, [287] = { + [sym_cell_path] = STATE(493), + [sym_path] = STATE(423), [sym_comment] = STATE(287), - [anon_sym_export] = ACTIONS(1311), - [anon_sym_alias] = ACTIONS(1311), - [anon_sym_let] = ACTIONS(1311), - [anon_sym_let_DASHenv] = ACTIONS(1311), - [anon_sym_mut] = ACTIONS(1311), - [anon_sym_const] = ACTIONS(1311), - [aux_sym_cmd_identifier_token1] = ACTIONS(1311), - [aux_sym_cmd_identifier_token2] = ACTIONS(1311), - [aux_sym_cmd_identifier_token3] = ACTIONS(1311), - [aux_sym_cmd_identifier_token4] = ACTIONS(1311), - [aux_sym_cmd_identifier_token5] = ACTIONS(1311), - [aux_sym_cmd_identifier_token6] = ACTIONS(1311), - [aux_sym_cmd_identifier_token7] = ACTIONS(1311), - [aux_sym_cmd_identifier_token8] = ACTIONS(1311), - [aux_sym_cmd_identifier_token9] = ACTIONS(1311), - [aux_sym_cmd_identifier_token10] = ACTIONS(1311), - [aux_sym_cmd_identifier_token11] = ACTIONS(1311), - [aux_sym_cmd_identifier_token12] = ACTIONS(1311), - [aux_sym_cmd_identifier_token13] = ACTIONS(1311), - [aux_sym_cmd_identifier_token14] = ACTIONS(1311), - [aux_sym_cmd_identifier_token15] = ACTIONS(1311), - [aux_sym_cmd_identifier_token16] = ACTIONS(1311), - [aux_sym_cmd_identifier_token17] = ACTIONS(1311), - [aux_sym_cmd_identifier_token18] = ACTIONS(1311), - [aux_sym_cmd_identifier_token19] = ACTIONS(1311), - [aux_sym_cmd_identifier_token20] = ACTIONS(1311), - [aux_sym_cmd_identifier_token21] = ACTIONS(1311), - [aux_sym_cmd_identifier_token22] = ACTIONS(1311), - [aux_sym_cmd_identifier_token23] = ACTIONS(1311), - [aux_sym_cmd_identifier_token24] = ACTIONS(1307), - [aux_sym_cmd_identifier_token25] = ACTIONS(1311), - [aux_sym_cmd_identifier_token26] = ACTIONS(1307), - [aux_sym_cmd_identifier_token27] = ACTIONS(1311), - [aux_sym_cmd_identifier_token28] = ACTIONS(1311), - [aux_sym_cmd_identifier_token29] = ACTIONS(1311), - [aux_sym_cmd_identifier_token30] = ACTIONS(1311), - [aux_sym_cmd_identifier_token31] = ACTIONS(1307), - [aux_sym_cmd_identifier_token32] = ACTIONS(1307), - [aux_sym_cmd_identifier_token33] = ACTIONS(1307), - [aux_sym_cmd_identifier_token34] = ACTIONS(1307), - [aux_sym_cmd_identifier_token35] = ACTIONS(1307), - [aux_sym_cmd_identifier_token36] = ACTIONS(1311), - [anon_sym_true] = ACTIONS(1307), - [anon_sym_false] = ACTIONS(1307), - [anon_sym_null] = ACTIONS(1307), - [aux_sym_cmd_identifier_token38] = ACTIONS(1311), - [aux_sym_cmd_identifier_token39] = ACTIONS(1307), - [aux_sym_cmd_identifier_token40] = ACTIONS(1307), - [sym__newline] = ACTIONS(1307), - [anon_sym_SEMI] = ACTIONS(1307), - [anon_sym_PIPE] = ACTIONS(1307), - [anon_sym_def] = ACTIONS(1311), - [anon_sym_export_DASHenv] = ACTIONS(1311), - [anon_sym_extern] = ACTIONS(1311), - [anon_sym_module] = ACTIONS(1311), - [anon_sym_use] = ACTIONS(1311), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1307), - [anon_sym_DOLLAR] = ACTIONS(1311), - [anon_sym_error] = ACTIONS(1311), - [anon_sym_DASH] = ACTIONS(1311), - [anon_sym_break] = ACTIONS(1311), - [anon_sym_continue] = ACTIONS(1311), - [anon_sym_for] = ACTIONS(1311), - [anon_sym_loop] = ACTIONS(1311), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_do] = ACTIONS(1311), - [anon_sym_if] = ACTIONS(1311), - [anon_sym_match] = ACTIONS(1311), - [anon_sym_LBRACE] = ACTIONS(1307), - [anon_sym_DOT_DOT] = ACTIONS(1311), - [anon_sym_try] = ACTIONS(1311), - [anon_sym_return] = ACTIONS(1311), - [anon_sym_source] = ACTIONS(1311), - [anon_sym_source_DASHenv] = ACTIONS(1311), - [anon_sym_register] = ACTIONS(1311), - [anon_sym_hide] = ACTIONS(1311), - [anon_sym_hide_DASHenv] = ACTIONS(1311), - [anon_sym_overlay] = ACTIONS(1311), - [anon_sym_where] = ACTIONS(1307), - [aux_sym_expr_unary_token1] = ACTIONS(1307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1307), - [anon_sym_DOT_DOT_LT] = ACTIONS(1307), - [aux_sym__val_number_decimal_token1] = ACTIONS(1311), - [aux_sym__val_number_decimal_token2] = ACTIONS(1307), - [aux_sym__val_number_decimal_token3] = ACTIONS(1307), - [aux_sym__val_number_decimal_token4] = ACTIONS(1307), - [aux_sym__val_number_token1] = ACTIONS(1307), - [aux_sym__val_number_token2] = ACTIONS(1307), - [aux_sym__val_number_token3] = ACTIONS(1307), - [anon_sym_0b] = ACTIONS(1311), - [anon_sym_0o] = ACTIONS(1311), - [anon_sym_0x] = ACTIONS(1311), - [sym_val_date] = ACTIONS(1307), - [anon_sym_DQUOTE] = ACTIONS(1307), - [sym__str_single_quotes] = ACTIONS(1307), - [sym__str_back_ticks] = ACTIONS(1307), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1307), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1307), - [aux_sym_env_var_token1] = ACTIONS(1311), - [anon_sym_CARET] = ACTIONS(1307), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(301), + [anon_sym_export] = ACTIONS(1021), + [anon_sym_alias] = ACTIONS(1021), + [anon_sym_let] = ACTIONS(1021), + [anon_sym_let_DASHenv] = ACTIONS(1021), + [anon_sym_mut] = ACTIONS(1021), + [anon_sym_const] = ACTIONS(1021), + [aux_sym_cmd_identifier_token1] = ACTIONS(1021), + [aux_sym_cmd_identifier_token2] = ACTIONS(1021), + [aux_sym_cmd_identifier_token3] = ACTIONS(1021), + [aux_sym_cmd_identifier_token4] = ACTIONS(1021), + [aux_sym_cmd_identifier_token5] = ACTIONS(1021), + [aux_sym_cmd_identifier_token6] = ACTIONS(1021), + [aux_sym_cmd_identifier_token7] = ACTIONS(1021), + [aux_sym_cmd_identifier_token8] = ACTIONS(1021), + [aux_sym_cmd_identifier_token9] = ACTIONS(1021), + [aux_sym_cmd_identifier_token10] = ACTIONS(1021), + [aux_sym_cmd_identifier_token11] = ACTIONS(1021), + [aux_sym_cmd_identifier_token12] = ACTIONS(1021), + [aux_sym_cmd_identifier_token13] = ACTIONS(1021), + [aux_sym_cmd_identifier_token14] = ACTIONS(1021), + [aux_sym_cmd_identifier_token15] = ACTIONS(1021), + [aux_sym_cmd_identifier_token16] = ACTIONS(1021), + [aux_sym_cmd_identifier_token17] = ACTIONS(1021), + [aux_sym_cmd_identifier_token18] = ACTIONS(1021), + [aux_sym_cmd_identifier_token19] = ACTIONS(1021), + [aux_sym_cmd_identifier_token20] = ACTIONS(1021), + [aux_sym_cmd_identifier_token21] = ACTIONS(1021), + [aux_sym_cmd_identifier_token22] = ACTIONS(1021), + [aux_sym_cmd_identifier_token23] = ACTIONS(1021), + [aux_sym_cmd_identifier_token24] = ACTIONS(1021), + [aux_sym_cmd_identifier_token25] = ACTIONS(1021), + [aux_sym_cmd_identifier_token26] = ACTIONS(1021), + [aux_sym_cmd_identifier_token27] = ACTIONS(1021), + [aux_sym_cmd_identifier_token28] = ACTIONS(1021), + [aux_sym_cmd_identifier_token29] = ACTIONS(1021), + [aux_sym_cmd_identifier_token30] = ACTIONS(1021), + [aux_sym_cmd_identifier_token31] = ACTIONS(1021), + [aux_sym_cmd_identifier_token32] = ACTIONS(1021), + [aux_sym_cmd_identifier_token33] = ACTIONS(1021), + [aux_sym_cmd_identifier_token34] = ACTIONS(1021), + [aux_sym_cmd_identifier_token35] = ACTIONS(1021), + [aux_sym_cmd_identifier_token36] = ACTIONS(1021), + [anon_sym_true] = ACTIONS(1023), + [anon_sym_false] = ACTIONS(1023), + [anon_sym_null] = ACTIONS(1023), + [aux_sym_cmd_identifier_token38] = ACTIONS(1021), + [aux_sym_cmd_identifier_token39] = ACTIONS(1023), + [aux_sym_cmd_identifier_token40] = ACTIONS(1023), + [anon_sym_def] = ACTIONS(1021), + [anon_sym_export_DASHenv] = ACTIONS(1021), + [anon_sym_extern] = ACTIONS(1021), + [anon_sym_module] = ACTIONS(1021), + [anon_sym_use] = ACTIONS(1021), + [anon_sym_LPAREN] = ACTIONS(1023), + [anon_sym_DOLLAR] = ACTIONS(1023), + [anon_sym_error] = ACTIONS(1021), + [anon_sym_list] = ACTIONS(1021), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_break] = ACTIONS(1021), + [anon_sym_continue] = ACTIONS(1021), + [anon_sym_for] = ACTIONS(1021), + [anon_sym_in] = ACTIONS(1021), + [anon_sym_loop] = ACTIONS(1021), + [anon_sym_make] = ACTIONS(1021), + [anon_sym_while] = ACTIONS(1021), + [anon_sym_do] = ACTIONS(1021), + [anon_sym_if] = ACTIONS(1021), + [anon_sym_else] = ACTIONS(1021), + [anon_sym_match] = ACTIONS(1021), + [anon_sym_RBRACE] = ACTIONS(1023), + [anon_sym_try] = ACTIONS(1021), + [anon_sym_catch] = ACTIONS(1021), + [anon_sym_return] = ACTIONS(1021), + [anon_sym_source] = ACTIONS(1021), + [anon_sym_source_DASHenv] = ACTIONS(1021), + [anon_sym_register] = ACTIONS(1021), + [anon_sym_hide] = ACTIONS(1021), + [anon_sym_hide_DASHenv] = ACTIONS(1021), + [anon_sym_overlay] = ACTIONS(1021), + [anon_sym_new] = ACTIONS(1021), + [anon_sym_as] = ACTIONS(1021), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1023), + [anon_sym_DOT_DOT2] = ACTIONS(1021), + [anon_sym_DOT] = ACTIONS(1759), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1023), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1023), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1023), + [aux_sym__val_number_decimal_token1] = ACTIONS(1021), + [aux_sym__val_number_decimal_token2] = ACTIONS(1023), + [aux_sym__val_number_decimal_token3] = ACTIONS(1023), + [aux_sym__val_number_decimal_token4] = ACTIONS(1023), + [aux_sym__val_number_token1] = ACTIONS(1023), + [aux_sym__val_number_token2] = ACTIONS(1023), + [aux_sym__val_number_token3] = ACTIONS(1023), + [anon_sym_DQUOTE] = ACTIONS(1023), + [sym__str_single_quotes] = ACTIONS(1023), + [sym__str_back_ticks] = ACTIONS(1023), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1023), + [anon_sym_PLUS] = ACTIONS(1021), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1023), }, [288] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5135), - [sym_block] = STATE(5141), - [sym__expression_parenthesized] = STATE(5141), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3783), - [sym_expr_parenthesized] = STATE(2023), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(2013), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3070), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_command] = STATE(5141), [sym_comment] = STATE(288), - [aux_sym_shebang_repeat1] = STATE(291), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(1746), - [anon_sym_false] = ACTIONS(1746), - [anon_sym_null] = ACTIONS(1748), - [aux_sym_cmd_identifier_token38] = ACTIONS(1750), - [aux_sym_cmd_identifier_token39] = ACTIONS(1752), - [aux_sym_cmd_identifier_token40] = ACTIONS(1752), - [sym__newline] = ACTIONS(1754), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_if] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1758), - [aux_sym__val_number_decimal_token2] = ACTIONS(1760), - [aux_sym__val_number_decimal_token3] = ACTIONS(1762), - [aux_sym__val_number_decimal_token4] = ACTIONS(1764), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(1528), + [anon_sym_alias] = ACTIONS(1528), + [anon_sym_let] = ACTIONS(1528), + [anon_sym_let_DASHenv] = ACTIONS(1528), + [anon_sym_mut] = ACTIONS(1528), + [anon_sym_const] = ACTIONS(1528), + [aux_sym_cmd_identifier_token1] = ACTIONS(1528), + [aux_sym_cmd_identifier_token2] = ACTIONS(1528), + [aux_sym_cmd_identifier_token3] = ACTIONS(1528), + [aux_sym_cmd_identifier_token4] = ACTIONS(1528), + [aux_sym_cmd_identifier_token5] = ACTIONS(1528), + [aux_sym_cmd_identifier_token6] = ACTIONS(1528), + [aux_sym_cmd_identifier_token7] = ACTIONS(1528), + [aux_sym_cmd_identifier_token8] = ACTIONS(1528), + [aux_sym_cmd_identifier_token9] = ACTIONS(1528), + [aux_sym_cmd_identifier_token10] = ACTIONS(1528), + [aux_sym_cmd_identifier_token11] = ACTIONS(1528), + [aux_sym_cmd_identifier_token12] = ACTIONS(1528), + [aux_sym_cmd_identifier_token13] = ACTIONS(1528), + [aux_sym_cmd_identifier_token14] = ACTIONS(1528), + [aux_sym_cmd_identifier_token15] = ACTIONS(1528), + [aux_sym_cmd_identifier_token16] = ACTIONS(1528), + [aux_sym_cmd_identifier_token17] = ACTIONS(1528), + [aux_sym_cmd_identifier_token18] = ACTIONS(1528), + [aux_sym_cmd_identifier_token19] = ACTIONS(1528), + [aux_sym_cmd_identifier_token20] = ACTIONS(1528), + [aux_sym_cmd_identifier_token21] = ACTIONS(1528), + [aux_sym_cmd_identifier_token22] = ACTIONS(1528), + [aux_sym_cmd_identifier_token23] = ACTIONS(1528), + [aux_sym_cmd_identifier_token24] = ACTIONS(1528), + [aux_sym_cmd_identifier_token25] = ACTIONS(1528), + [aux_sym_cmd_identifier_token26] = ACTIONS(1528), + [aux_sym_cmd_identifier_token27] = ACTIONS(1528), + [aux_sym_cmd_identifier_token28] = ACTIONS(1528), + [aux_sym_cmd_identifier_token29] = ACTIONS(1528), + [aux_sym_cmd_identifier_token30] = ACTIONS(1528), + [aux_sym_cmd_identifier_token31] = ACTIONS(1528), + [aux_sym_cmd_identifier_token32] = ACTIONS(1528), + [aux_sym_cmd_identifier_token33] = ACTIONS(1528), + [aux_sym_cmd_identifier_token34] = ACTIONS(1528), + [aux_sym_cmd_identifier_token35] = ACTIONS(1528), + [aux_sym_cmd_identifier_token36] = ACTIONS(1528), + [anon_sym_true] = ACTIONS(1530), + [anon_sym_false] = ACTIONS(1530), + [anon_sym_null] = ACTIONS(1530), + [aux_sym_cmd_identifier_token38] = ACTIONS(1528), + [aux_sym_cmd_identifier_token39] = ACTIONS(1530), + [aux_sym_cmd_identifier_token40] = ACTIONS(1530), + [anon_sym_def] = ACTIONS(1528), + [anon_sym_export_DASHenv] = ACTIONS(1528), + [anon_sym_extern] = ACTIONS(1528), + [anon_sym_module] = ACTIONS(1528), + [anon_sym_use] = ACTIONS(1528), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_DOLLAR] = ACTIONS(1530), + [anon_sym_error] = ACTIONS(1528), + [anon_sym_list] = ACTIONS(1528), + [anon_sym_DASH] = ACTIONS(1528), + [anon_sym_break] = ACTIONS(1528), + [anon_sym_continue] = ACTIONS(1528), + [anon_sym_for] = ACTIONS(1528), + [anon_sym_in] = ACTIONS(1528), + [anon_sym_loop] = ACTIONS(1528), + [anon_sym_make] = ACTIONS(1528), + [anon_sym_while] = ACTIONS(1528), + [anon_sym_do] = ACTIONS(1528), + [anon_sym_if] = ACTIONS(1528), + [anon_sym_else] = ACTIONS(1528), + [anon_sym_match] = ACTIONS(1528), + [anon_sym_RBRACE] = ACTIONS(1530), + [anon_sym_try] = ACTIONS(1528), + [anon_sym_catch] = ACTIONS(1528), + [anon_sym_return] = ACTIONS(1528), + [anon_sym_source] = ACTIONS(1528), + [anon_sym_source_DASHenv] = ACTIONS(1528), + [anon_sym_register] = ACTIONS(1528), + [anon_sym_hide] = ACTIONS(1528), + [anon_sym_hide_DASHenv] = ACTIONS(1528), + [anon_sym_overlay] = ACTIONS(1528), + [anon_sym_new] = ACTIONS(1528), + [anon_sym_as] = ACTIONS(1528), + [anon_sym_LPAREN2] = ACTIONS(1530), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1530), + [anon_sym_DOT_DOT2] = ACTIONS(1528), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1530), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1530), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1530), + [aux_sym__val_number_decimal_token1] = ACTIONS(1528), + [aux_sym__val_number_decimal_token2] = ACTIONS(1530), + [aux_sym__val_number_decimal_token3] = ACTIONS(1530), + [aux_sym__val_number_decimal_token4] = ACTIONS(1530), + [aux_sym__val_number_token1] = ACTIONS(1530), + [aux_sym__val_number_token2] = ACTIONS(1530), + [aux_sym__val_number_token3] = ACTIONS(1530), + [sym_filesize_unit] = ACTIONS(1528), + [sym_duration_unit] = ACTIONS(1528), + [anon_sym_DQUOTE] = ACTIONS(1530), + [sym__str_single_quotes] = ACTIONS(1530), + [sym__str_back_ticks] = ACTIONS(1530), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1530), + [anon_sym_PLUS] = ACTIONS(1528), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1528), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1530), }, [289] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5144), - [sym_block] = STATE(5145), - [sym__expression_parenthesized] = STATE(5145), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3783), - [sym_expr_parenthesized] = STATE(2023), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(2013), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3070), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_command] = STATE(5145), [sym_comment] = STATE(289), - [aux_sym_shebang_repeat1] = STATE(294), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(1746), - [anon_sym_false] = ACTIONS(1746), - [anon_sym_null] = ACTIONS(1748), - [aux_sym_cmd_identifier_token38] = ACTIONS(1750), - [aux_sym_cmd_identifier_token39] = ACTIONS(1752), - [aux_sym_cmd_identifier_token40] = ACTIONS(1752), - [sym__newline] = ACTIONS(1754), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_if] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1758), - [aux_sym__val_number_decimal_token2] = ACTIONS(1760), - [aux_sym__val_number_decimal_token3] = ACTIONS(1762), - [aux_sym__val_number_decimal_token4] = ACTIONS(1764), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(1596), + [anon_sym_alias] = ACTIONS(1596), + [anon_sym_let] = ACTIONS(1596), + [anon_sym_let_DASHenv] = ACTIONS(1596), + [anon_sym_mut] = ACTIONS(1596), + [anon_sym_const] = ACTIONS(1596), + [aux_sym_cmd_identifier_token1] = ACTIONS(1596), + [aux_sym_cmd_identifier_token2] = ACTIONS(1596), + [aux_sym_cmd_identifier_token3] = ACTIONS(1596), + [aux_sym_cmd_identifier_token4] = ACTIONS(1596), + [aux_sym_cmd_identifier_token5] = ACTIONS(1596), + [aux_sym_cmd_identifier_token6] = ACTIONS(1596), + [aux_sym_cmd_identifier_token7] = ACTIONS(1596), + [aux_sym_cmd_identifier_token8] = ACTIONS(1596), + [aux_sym_cmd_identifier_token9] = ACTIONS(1596), + [aux_sym_cmd_identifier_token10] = ACTIONS(1596), + [aux_sym_cmd_identifier_token11] = ACTIONS(1596), + [aux_sym_cmd_identifier_token12] = ACTIONS(1596), + [aux_sym_cmd_identifier_token13] = ACTIONS(1596), + [aux_sym_cmd_identifier_token14] = ACTIONS(1596), + [aux_sym_cmd_identifier_token15] = ACTIONS(1596), + [aux_sym_cmd_identifier_token16] = ACTIONS(1596), + [aux_sym_cmd_identifier_token17] = ACTIONS(1596), + [aux_sym_cmd_identifier_token18] = ACTIONS(1596), + [aux_sym_cmd_identifier_token19] = ACTIONS(1596), + [aux_sym_cmd_identifier_token20] = ACTIONS(1596), + [aux_sym_cmd_identifier_token21] = ACTIONS(1596), + [aux_sym_cmd_identifier_token22] = ACTIONS(1596), + [aux_sym_cmd_identifier_token23] = ACTIONS(1596), + [aux_sym_cmd_identifier_token24] = ACTIONS(1596), + [aux_sym_cmd_identifier_token25] = ACTIONS(1596), + [aux_sym_cmd_identifier_token26] = ACTIONS(1596), + [aux_sym_cmd_identifier_token27] = ACTIONS(1596), + [aux_sym_cmd_identifier_token28] = ACTIONS(1596), + [aux_sym_cmd_identifier_token29] = ACTIONS(1596), + [aux_sym_cmd_identifier_token30] = ACTIONS(1596), + [aux_sym_cmd_identifier_token31] = ACTIONS(1596), + [aux_sym_cmd_identifier_token32] = ACTIONS(1596), + [aux_sym_cmd_identifier_token33] = ACTIONS(1596), + [aux_sym_cmd_identifier_token34] = ACTIONS(1596), + [aux_sym_cmd_identifier_token35] = ACTIONS(1596), + [aux_sym_cmd_identifier_token36] = ACTIONS(1596), + [anon_sym_true] = ACTIONS(1598), + [anon_sym_false] = ACTIONS(1598), + [anon_sym_null] = ACTIONS(1598), + [aux_sym_cmd_identifier_token38] = ACTIONS(1596), + [aux_sym_cmd_identifier_token39] = ACTIONS(1598), + [aux_sym_cmd_identifier_token40] = ACTIONS(1598), + [anon_sym_def] = ACTIONS(1596), + [anon_sym_export_DASHenv] = ACTIONS(1596), + [anon_sym_extern] = ACTIONS(1596), + [anon_sym_module] = ACTIONS(1596), + [anon_sym_use] = ACTIONS(1596), + [anon_sym_LPAREN] = ACTIONS(1596), + [anon_sym_DOLLAR] = ACTIONS(1598), + [anon_sym_error] = ACTIONS(1596), + [anon_sym_list] = ACTIONS(1596), + [anon_sym_DASH] = ACTIONS(1596), + [anon_sym_break] = ACTIONS(1596), + [anon_sym_continue] = ACTIONS(1596), + [anon_sym_for] = ACTIONS(1596), + [anon_sym_in] = ACTIONS(1596), + [anon_sym_loop] = ACTIONS(1596), + [anon_sym_make] = ACTIONS(1596), + [anon_sym_while] = ACTIONS(1596), + [anon_sym_do] = ACTIONS(1596), + [anon_sym_if] = ACTIONS(1596), + [anon_sym_else] = ACTIONS(1596), + [anon_sym_match] = ACTIONS(1596), + [anon_sym_RBRACE] = ACTIONS(1598), + [anon_sym_try] = ACTIONS(1596), + [anon_sym_catch] = ACTIONS(1596), + [anon_sym_return] = ACTIONS(1596), + [anon_sym_source] = ACTIONS(1596), + [anon_sym_source_DASHenv] = ACTIONS(1596), + [anon_sym_register] = ACTIONS(1596), + [anon_sym_hide] = ACTIONS(1596), + [anon_sym_hide_DASHenv] = ACTIONS(1596), + [anon_sym_overlay] = ACTIONS(1596), + [anon_sym_new] = ACTIONS(1596), + [anon_sym_as] = ACTIONS(1596), + [anon_sym_LPAREN2] = ACTIONS(1598), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1598), + [anon_sym_DOT_DOT2] = ACTIONS(1596), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1598), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1598), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1598), + [aux_sym__val_number_decimal_token1] = ACTIONS(1596), + [aux_sym__val_number_decimal_token2] = ACTIONS(1598), + [aux_sym__val_number_decimal_token3] = ACTIONS(1598), + [aux_sym__val_number_decimal_token4] = ACTIONS(1598), + [aux_sym__val_number_token1] = ACTIONS(1598), + [aux_sym__val_number_token2] = ACTIONS(1598), + [aux_sym__val_number_token3] = ACTIONS(1598), + [sym_filesize_unit] = ACTIONS(1596), + [sym_duration_unit] = ACTIONS(1596), + [anon_sym_DQUOTE] = ACTIONS(1598), + [sym__str_single_quotes] = ACTIONS(1598), + [sym__str_back_ticks] = ACTIONS(1598), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1598), + [anon_sym_PLUS] = ACTIONS(1596), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1596), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1598), }, [290] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5146), - [sym_block] = STATE(5147), - [sym__expression_parenthesized] = STATE(5147), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3783), - [sym_expr_parenthesized] = STATE(2023), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(2013), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3070), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_command] = STATE(5147), [sym_comment] = STATE(290), - [aux_sym_shebang_repeat1] = STATE(297), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(1746), - [anon_sym_false] = ACTIONS(1746), - [anon_sym_null] = ACTIONS(1748), - [aux_sym_cmd_identifier_token38] = ACTIONS(1750), - [aux_sym_cmd_identifier_token39] = ACTIONS(1752), - [aux_sym_cmd_identifier_token40] = ACTIONS(1752), - [sym__newline] = ACTIONS(1754), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_if] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1758), - [aux_sym__val_number_decimal_token2] = ACTIONS(1760), - [aux_sym__val_number_decimal_token3] = ACTIONS(1762), - [aux_sym__val_number_decimal_token4] = ACTIONS(1764), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(1711), + [anon_sym_alias] = ACTIONS(1711), + [anon_sym_let] = ACTIONS(1711), + [anon_sym_let_DASHenv] = ACTIONS(1711), + [anon_sym_mut] = ACTIONS(1711), + [anon_sym_const] = ACTIONS(1711), + [aux_sym_cmd_identifier_token1] = ACTIONS(1711), + [aux_sym_cmd_identifier_token2] = ACTIONS(1711), + [aux_sym_cmd_identifier_token3] = ACTIONS(1711), + [aux_sym_cmd_identifier_token4] = ACTIONS(1711), + [aux_sym_cmd_identifier_token5] = ACTIONS(1711), + [aux_sym_cmd_identifier_token6] = ACTIONS(1711), + [aux_sym_cmd_identifier_token7] = ACTIONS(1711), + [aux_sym_cmd_identifier_token8] = ACTIONS(1711), + [aux_sym_cmd_identifier_token9] = ACTIONS(1711), + [aux_sym_cmd_identifier_token10] = ACTIONS(1711), + [aux_sym_cmd_identifier_token11] = ACTIONS(1711), + [aux_sym_cmd_identifier_token12] = ACTIONS(1711), + [aux_sym_cmd_identifier_token13] = ACTIONS(1711), + [aux_sym_cmd_identifier_token14] = ACTIONS(1711), + [aux_sym_cmd_identifier_token15] = ACTIONS(1711), + [aux_sym_cmd_identifier_token16] = ACTIONS(1711), + [aux_sym_cmd_identifier_token17] = ACTIONS(1711), + [aux_sym_cmd_identifier_token18] = ACTIONS(1711), + [aux_sym_cmd_identifier_token19] = ACTIONS(1711), + [aux_sym_cmd_identifier_token20] = ACTIONS(1711), + [aux_sym_cmd_identifier_token21] = ACTIONS(1711), + [aux_sym_cmd_identifier_token22] = ACTIONS(1711), + [aux_sym_cmd_identifier_token23] = ACTIONS(1711), + [aux_sym_cmd_identifier_token24] = ACTIONS(1711), + [aux_sym_cmd_identifier_token25] = ACTIONS(1711), + [aux_sym_cmd_identifier_token26] = ACTIONS(1711), + [aux_sym_cmd_identifier_token27] = ACTIONS(1711), + [aux_sym_cmd_identifier_token28] = ACTIONS(1711), + [aux_sym_cmd_identifier_token29] = ACTIONS(1711), + [aux_sym_cmd_identifier_token30] = ACTIONS(1711), + [aux_sym_cmd_identifier_token31] = ACTIONS(1711), + [aux_sym_cmd_identifier_token32] = ACTIONS(1711), + [aux_sym_cmd_identifier_token33] = ACTIONS(1711), + [aux_sym_cmd_identifier_token34] = ACTIONS(1711), + [aux_sym_cmd_identifier_token35] = ACTIONS(1711), + [aux_sym_cmd_identifier_token36] = ACTIONS(1711), + [anon_sym_true] = ACTIONS(1713), + [anon_sym_false] = ACTIONS(1713), + [anon_sym_null] = ACTIONS(1713), + [aux_sym_cmd_identifier_token38] = ACTIONS(1711), + [aux_sym_cmd_identifier_token39] = ACTIONS(1713), + [aux_sym_cmd_identifier_token40] = ACTIONS(1713), + [anon_sym_def] = ACTIONS(1711), + [anon_sym_export_DASHenv] = ACTIONS(1711), + [anon_sym_extern] = ACTIONS(1711), + [anon_sym_module] = ACTIONS(1711), + [anon_sym_use] = ACTIONS(1711), + [anon_sym_LPAREN] = ACTIONS(1711), + [anon_sym_DOLLAR] = ACTIONS(1713), + [anon_sym_error] = ACTIONS(1711), + [anon_sym_list] = ACTIONS(1711), + [anon_sym_DASH] = ACTIONS(1711), + [anon_sym_break] = ACTIONS(1711), + [anon_sym_continue] = ACTIONS(1711), + [anon_sym_for] = ACTIONS(1711), + [anon_sym_in] = ACTIONS(1711), + [anon_sym_loop] = ACTIONS(1711), + [anon_sym_make] = ACTIONS(1711), + [anon_sym_while] = ACTIONS(1711), + [anon_sym_do] = ACTIONS(1711), + [anon_sym_if] = ACTIONS(1711), + [anon_sym_else] = ACTIONS(1711), + [anon_sym_match] = ACTIONS(1711), + [anon_sym_RBRACE] = ACTIONS(1713), + [anon_sym_try] = ACTIONS(1711), + [anon_sym_catch] = ACTIONS(1711), + [anon_sym_return] = ACTIONS(1711), + [anon_sym_source] = ACTIONS(1711), + [anon_sym_source_DASHenv] = ACTIONS(1711), + [anon_sym_register] = ACTIONS(1711), + [anon_sym_hide] = ACTIONS(1711), + [anon_sym_hide_DASHenv] = ACTIONS(1711), + [anon_sym_overlay] = ACTIONS(1711), + [anon_sym_new] = ACTIONS(1711), + [anon_sym_as] = ACTIONS(1711), + [anon_sym_LPAREN2] = ACTIONS(1713), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1713), + [anon_sym_DOT_DOT2] = ACTIONS(1711), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1713), + [aux_sym__val_number_decimal_token1] = ACTIONS(1711), + [aux_sym__val_number_decimal_token2] = ACTIONS(1713), + [aux_sym__val_number_decimal_token3] = ACTIONS(1713), + [aux_sym__val_number_decimal_token4] = ACTIONS(1713), + [aux_sym__val_number_token1] = ACTIONS(1713), + [aux_sym__val_number_token2] = ACTIONS(1713), + [aux_sym__val_number_token3] = ACTIONS(1713), + [sym_filesize_unit] = ACTIONS(1711), + [sym_duration_unit] = ACTIONS(1711), + [anon_sym_DQUOTE] = ACTIONS(1713), + [sym__str_single_quotes] = ACTIONS(1713), + [sym__str_back_ticks] = ACTIONS(1713), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1711), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1711), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1713), }, [291] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5013), - [sym_block] = STATE(5014), - [sym__expression_parenthesized] = STATE(5014), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3783), - [sym_expr_parenthesized] = STATE(2023), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(2013), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3070), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_command] = STATE(5014), [sym_comment] = STATE(291), - [aux_sym_shebang_repeat1] = STATE(1061), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(1746), - [anon_sym_false] = ACTIONS(1746), - [anon_sym_null] = ACTIONS(1748), - [aux_sym_cmd_identifier_token38] = ACTIONS(1750), - [aux_sym_cmd_identifier_token39] = ACTIONS(1752), - [aux_sym_cmd_identifier_token40] = ACTIONS(1752), - [sym__newline] = ACTIONS(1754), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_if] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1758), - [aux_sym__val_number_decimal_token2] = ACTIONS(1760), - [aux_sym__val_number_decimal_token3] = ACTIONS(1762), - [aux_sym__val_number_decimal_token4] = ACTIONS(1764), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym__block_body_repeat1] = STATE(263), + [ts_builtin_sym_end] = ACTIONS(1660), + [anon_sym_export] = ACTIONS(1656), + [anon_sym_alias] = ACTIONS(1656), + [anon_sym_let] = ACTIONS(1656), + [anon_sym_let_DASHenv] = ACTIONS(1656), + [anon_sym_mut] = ACTIONS(1656), + [anon_sym_const] = ACTIONS(1656), + [aux_sym_cmd_identifier_token1] = ACTIONS(1656), + [aux_sym_cmd_identifier_token2] = ACTIONS(1656), + [aux_sym_cmd_identifier_token3] = ACTIONS(1656), + [aux_sym_cmd_identifier_token4] = ACTIONS(1656), + [aux_sym_cmd_identifier_token5] = ACTIONS(1656), + [aux_sym_cmd_identifier_token6] = ACTIONS(1656), + [aux_sym_cmd_identifier_token7] = ACTIONS(1656), + [aux_sym_cmd_identifier_token8] = ACTIONS(1656), + [aux_sym_cmd_identifier_token9] = ACTIONS(1656), + [aux_sym_cmd_identifier_token10] = ACTIONS(1656), + [aux_sym_cmd_identifier_token11] = ACTIONS(1656), + [aux_sym_cmd_identifier_token12] = ACTIONS(1656), + [aux_sym_cmd_identifier_token13] = ACTIONS(1656), + [aux_sym_cmd_identifier_token14] = ACTIONS(1656), + [aux_sym_cmd_identifier_token15] = ACTIONS(1656), + [aux_sym_cmd_identifier_token16] = ACTIONS(1656), + [aux_sym_cmd_identifier_token17] = ACTIONS(1656), + [aux_sym_cmd_identifier_token18] = ACTIONS(1656), + [aux_sym_cmd_identifier_token19] = ACTIONS(1656), + [aux_sym_cmd_identifier_token20] = ACTIONS(1656), + [aux_sym_cmd_identifier_token21] = ACTIONS(1656), + [aux_sym_cmd_identifier_token22] = ACTIONS(1656), + [aux_sym_cmd_identifier_token23] = ACTIONS(1656), + [aux_sym_cmd_identifier_token24] = ACTIONS(1658), + [aux_sym_cmd_identifier_token25] = ACTIONS(1656), + [aux_sym_cmd_identifier_token26] = ACTIONS(1658), + [aux_sym_cmd_identifier_token27] = ACTIONS(1656), + [aux_sym_cmd_identifier_token28] = ACTIONS(1656), + [aux_sym_cmd_identifier_token29] = ACTIONS(1656), + [aux_sym_cmd_identifier_token30] = ACTIONS(1656), + [aux_sym_cmd_identifier_token31] = ACTIONS(1658), + [aux_sym_cmd_identifier_token32] = ACTIONS(1658), + [aux_sym_cmd_identifier_token33] = ACTIONS(1658), + [aux_sym_cmd_identifier_token34] = ACTIONS(1658), + [aux_sym_cmd_identifier_token35] = ACTIONS(1658), + [aux_sym_cmd_identifier_token36] = ACTIONS(1656), + [anon_sym_true] = ACTIONS(1658), + [anon_sym_false] = ACTIONS(1658), + [anon_sym_null] = ACTIONS(1658), + [aux_sym_cmd_identifier_token38] = ACTIONS(1656), + [aux_sym_cmd_identifier_token39] = ACTIONS(1658), + [aux_sym_cmd_identifier_token40] = ACTIONS(1658), + [sym__newline] = ACTIONS(33), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym_def] = ACTIONS(1656), + [anon_sym_export_DASHenv] = ACTIONS(1656), + [anon_sym_extern] = ACTIONS(1656), + [anon_sym_module] = ACTIONS(1656), + [anon_sym_use] = ACTIONS(1656), + [anon_sym_LBRACK] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(1658), + [anon_sym_DOLLAR] = ACTIONS(1656), + [anon_sym_error] = ACTIONS(1656), + [anon_sym_DASH] = ACTIONS(1656), + [anon_sym_break] = ACTIONS(1656), + [anon_sym_continue] = ACTIONS(1656), + [anon_sym_for] = ACTIONS(1656), + [anon_sym_loop] = ACTIONS(1656), + [anon_sym_while] = ACTIONS(1656), + [anon_sym_do] = ACTIONS(1656), + [anon_sym_if] = ACTIONS(1656), + [anon_sym_match] = ACTIONS(1656), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_DOT_DOT] = ACTIONS(1656), + [anon_sym_try] = ACTIONS(1656), + [anon_sym_return] = ACTIONS(1656), + [anon_sym_source] = ACTIONS(1656), + [anon_sym_source_DASHenv] = ACTIONS(1656), + [anon_sym_register] = ACTIONS(1656), + [anon_sym_hide] = ACTIONS(1656), + [anon_sym_hide_DASHenv] = ACTIONS(1656), + [anon_sym_overlay] = ACTIONS(1656), + [anon_sym_where] = ACTIONS(1658), + [aux_sym_expr_unary_token1] = ACTIONS(1658), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1658), + [anon_sym_DOT_DOT_LT] = ACTIONS(1658), + [aux_sym__val_number_decimal_token1] = ACTIONS(1656), + [aux_sym__val_number_decimal_token2] = ACTIONS(1658), + [aux_sym__val_number_decimal_token3] = ACTIONS(1658), + [aux_sym__val_number_decimal_token4] = ACTIONS(1658), + [aux_sym__val_number_token1] = ACTIONS(1658), + [aux_sym__val_number_token2] = ACTIONS(1658), + [aux_sym__val_number_token3] = ACTIONS(1658), + [anon_sym_0b] = ACTIONS(1656), + [anon_sym_0o] = ACTIONS(1656), + [anon_sym_0x] = ACTIONS(1656), + [sym_val_date] = ACTIONS(1658), + [anon_sym_DQUOTE] = ACTIONS(1658), + [sym__str_single_quotes] = ACTIONS(1658), + [sym__str_back_ticks] = ACTIONS(1658), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1658), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1658), + [aux_sym_env_var_token1] = ACTIONS(1656), + [anon_sym_CARET] = ACTIONS(1658), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1658), }, [292] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5013), - [sym_block] = STATE(5014), - [sym__expression_parenthesized] = STATE(5014), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3783), - [sym_expr_parenthesized] = STATE(2023), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(2013), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3070), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_command] = STATE(5014), [sym_comment] = STATE(292), - [aux_sym_shebang_repeat1] = STATE(301), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(1746), - [anon_sym_false] = ACTIONS(1746), - [anon_sym_null] = ACTIONS(1748), - [aux_sym_cmd_identifier_token38] = ACTIONS(1750), - [aux_sym_cmd_identifier_token39] = ACTIONS(1752), - [aux_sym_cmd_identifier_token40] = ACTIONS(1752), - [sym__newline] = ACTIONS(1754), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_if] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1758), - [aux_sym__val_number_decimal_token2] = ACTIONS(1760), - [aux_sym__val_number_decimal_token3] = ACTIONS(1762), - [aux_sym__val_number_decimal_token4] = ACTIONS(1764), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(1715), + [anon_sym_alias] = ACTIONS(1715), + [anon_sym_let] = ACTIONS(1715), + [anon_sym_let_DASHenv] = ACTIONS(1715), + [anon_sym_mut] = ACTIONS(1715), + [anon_sym_const] = ACTIONS(1715), + [aux_sym_cmd_identifier_token1] = ACTIONS(1715), + [aux_sym_cmd_identifier_token2] = ACTIONS(1715), + [aux_sym_cmd_identifier_token3] = ACTIONS(1715), + [aux_sym_cmd_identifier_token4] = ACTIONS(1715), + [aux_sym_cmd_identifier_token5] = ACTIONS(1715), + [aux_sym_cmd_identifier_token6] = ACTIONS(1715), + [aux_sym_cmd_identifier_token7] = ACTIONS(1715), + [aux_sym_cmd_identifier_token8] = ACTIONS(1715), + [aux_sym_cmd_identifier_token9] = ACTIONS(1715), + [aux_sym_cmd_identifier_token10] = ACTIONS(1715), + [aux_sym_cmd_identifier_token11] = ACTIONS(1715), + [aux_sym_cmd_identifier_token12] = ACTIONS(1715), + [aux_sym_cmd_identifier_token13] = ACTIONS(1715), + [aux_sym_cmd_identifier_token14] = ACTIONS(1715), + [aux_sym_cmd_identifier_token15] = ACTIONS(1715), + [aux_sym_cmd_identifier_token16] = ACTIONS(1715), + [aux_sym_cmd_identifier_token17] = ACTIONS(1715), + [aux_sym_cmd_identifier_token18] = ACTIONS(1715), + [aux_sym_cmd_identifier_token19] = ACTIONS(1715), + [aux_sym_cmd_identifier_token20] = ACTIONS(1715), + [aux_sym_cmd_identifier_token21] = ACTIONS(1715), + [aux_sym_cmd_identifier_token22] = ACTIONS(1715), + [aux_sym_cmd_identifier_token23] = ACTIONS(1715), + [aux_sym_cmd_identifier_token24] = ACTIONS(1715), + [aux_sym_cmd_identifier_token25] = ACTIONS(1715), + [aux_sym_cmd_identifier_token26] = ACTIONS(1715), + [aux_sym_cmd_identifier_token27] = ACTIONS(1715), + [aux_sym_cmd_identifier_token28] = ACTIONS(1715), + [aux_sym_cmd_identifier_token29] = ACTIONS(1715), + [aux_sym_cmd_identifier_token30] = ACTIONS(1715), + [aux_sym_cmd_identifier_token31] = ACTIONS(1715), + [aux_sym_cmd_identifier_token32] = ACTIONS(1715), + [aux_sym_cmd_identifier_token33] = ACTIONS(1715), + [aux_sym_cmd_identifier_token34] = ACTIONS(1715), + [aux_sym_cmd_identifier_token35] = ACTIONS(1715), + [aux_sym_cmd_identifier_token36] = ACTIONS(1715), + [anon_sym_true] = ACTIONS(1715), + [anon_sym_false] = ACTIONS(1715), + [anon_sym_null] = ACTIONS(1715), + [aux_sym_cmd_identifier_token38] = ACTIONS(1715), + [aux_sym_cmd_identifier_token39] = ACTIONS(1715), + [aux_sym_cmd_identifier_token40] = ACTIONS(1715), + [anon_sym_def] = ACTIONS(1715), + [anon_sym_export_DASHenv] = ACTIONS(1715), + [anon_sym_extern] = ACTIONS(1715), + [anon_sym_module] = ACTIONS(1715), + [anon_sym_use] = ACTIONS(1715), + [anon_sym_LPAREN] = ACTIONS(1715), + [anon_sym_DOLLAR] = ACTIONS(1715), + [anon_sym_error] = ACTIONS(1715), + [anon_sym_list] = ACTIONS(1715), + [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_break] = ACTIONS(1715), + [anon_sym_continue] = ACTIONS(1715), + [anon_sym_for] = ACTIONS(1715), + [anon_sym_in] = ACTIONS(1715), + [anon_sym_loop] = ACTIONS(1715), + [anon_sym_make] = ACTIONS(1715), + [anon_sym_while] = ACTIONS(1715), + [anon_sym_do] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1715), + [anon_sym_else] = ACTIONS(1715), + [anon_sym_match] = ACTIONS(1715), + [anon_sym_RBRACE] = ACTIONS(1715), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_catch] = ACTIONS(1715), + [anon_sym_return] = ACTIONS(1715), + [anon_sym_source] = ACTIONS(1715), + [anon_sym_source_DASHenv] = ACTIONS(1715), + [anon_sym_register] = ACTIONS(1715), + [anon_sym_hide] = ACTIONS(1715), + [anon_sym_hide_DASHenv] = ACTIONS(1715), + [anon_sym_overlay] = ACTIONS(1715), + [anon_sym_new] = ACTIONS(1715), + [anon_sym_as] = ACTIONS(1715), + [anon_sym_LPAREN2] = ACTIONS(1717), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1715), + [anon_sym_DOT_DOT2] = ACTIONS(1715), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1717), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1717), + [aux_sym__immediate_decimal_token2] = ACTIONS(1721), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1715), + [aux_sym__val_number_decimal_token1] = ACTIONS(1715), + [aux_sym__val_number_decimal_token2] = ACTIONS(1715), + [aux_sym__val_number_decimal_token3] = ACTIONS(1715), + [aux_sym__val_number_decimal_token4] = ACTIONS(1715), + [aux_sym__val_number_token1] = ACTIONS(1715), + [aux_sym__val_number_token2] = ACTIONS(1715), + [aux_sym__val_number_token3] = ACTIONS(1715), + [anon_sym_DQUOTE] = ACTIONS(1715), + [sym__str_single_quotes] = ACTIONS(1715), + [sym__str_back_ticks] = ACTIONS(1715), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1715), + [sym__entry_separator] = ACTIONS(1717), + [anon_sym_PLUS] = ACTIONS(1715), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1715), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1717), }, [293] = { [sym_comment] = STATE(293), + [aux_sym_shebang_repeat1] = STATE(321), + [aux_sym__parenthesized_body_repeat1] = STATE(297), + [anon_sym_export] = ACTIONS(1761), + [anon_sym_alias] = ACTIONS(1761), + [anon_sym_let] = ACTIONS(1761), + [anon_sym_let_DASHenv] = ACTIONS(1761), + [anon_sym_mut] = ACTIONS(1761), + [anon_sym_const] = ACTIONS(1761), + [aux_sym_cmd_identifier_token1] = ACTIONS(1761), + [aux_sym_cmd_identifier_token2] = ACTIONS(1761), + [aux_sym_cmd_identifier_token3] = ACTIONS(1761), + [aux_sym_cmd_identifier_token4] = ACTIONS(1761), + [aux_sym_cmd_identifier_token5] = ACTIONS(1761), + [aux_sym_cmd_identifier_token6] = ACTIONS(1761), + [aux_sym_cmd_identifier_token7] = ACTIONS(1761), + [aux_sym_cmd_identifier_token8] = ACTIONS(1761), + [aux_sym_cmd_identifier_token9] = ACTIONS(1761), + [aux_sym_cmd_identifier_token10] = ACTIONS(1761), + [aux_sym_cmd_identifier_token11] = ACTIONS(1761), + [aux_sym_cmd_identifier_token12] = ACTIONS(1761), + [aux_sym_cmd_identifier_token13] = ACTIONS(1761), + [aux_sym_cmd_identifier_token14] = ACTIONS(1761), + [aux_sym_cmd_identifier_token15] = ACTIONS(1761), + [aux_sym_cmd_identifier_token16] = ACTIONS(1761), + [aux_sym_cmd_identifier_token17] = ACTIONS(1761), + [aux_sym_cmd_identifier_token18] = ACTIONS(1761), + [aux_sym_cmd_identifier_token19] = ACTIONS(1761), + [aux_sym_cmd_identifier_token20] = ACTIONS(1761), + [aux_sym_cmd_identifier_token21] = ACTIONS(1761), + [aux_sym_cmd_identifier_token22] = ACTIONS(1761), + [aux_sym_cmd_identifier_token23] = ACTIONS(1761), + [aux_sym_cmd_identifier_token24] = ACTIONS(1763), + [aux_sym_cmd_identifier_token25] = ACTIONS(1761), + [aux_sym_cmd_identifier_token26] = ACTIONS(1763), + [aux_sym_cmd_identifier_token27] = ACTIONS(1761), + [aux_sym_cmd_identifier_token28] = ACTIONS(1761), + [aux_sym_cmd_identifier_token29] = ACTIONS(1761), + [aux_sym_cmd_identifier_token30] = ACTIONS(1761), + [aux_sym_cmd_identifier_token31] = ACTIONS(1763), + [aux_sym_cmd_identifier_token32] = ACTIONS(1763), + [aux_sym_cmd_identifier_token33] = ACTIONS(1763), + [aux_sym_cmd_identifier_token34] = ACTIONS(1763), + [aux_sym_cmd_identifier_token35] = ACTIONS(1763), + [aux_sym_cmd_identifier_token36] = ACTIONS(1761), + [anon_sym_true] = ACTIONS(1763), + [anon_sym_false] = ACTIONS(1763), + [anon_sym_null] = ACTIONS(1763), + [aux_sym_cmd_identifier_token38] = ACTIONS(1761), + [aux_sym_cmd_identifier_token39] = ACTIONS(1763), + [aux_sym_cmd_identifier_token40] = ACTIONS(1763), + [sym__newline] = ACTIONS(1765), + [anon_sym_SEMI] = ACTIONS(1767), + [anon_sym_def] = ACTIONS(1761), + [anon_sym_export_DASHenv] = ACTIONS(1761), + [anon_sym_extern] = ACTIONS(1761), + [anon_sym_module] = ACTIONS(1761), + [anon_sym_use] = ACTIONS(1761), + [anon_sym_LBRACK] = ACTIONS(1763), + [anon_sym_LPAREN] = ACTIONS(1763), + [anon_sym_DOLLAR] = ACTIONS(1761), + [anon_sym_error] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_break] = ACTIONS(1761), + [anon_sym_continue] = ACTIONS(1761), + [anon_sym_for] = ACTIONS(1761), + [anon_sym_loop] = ACTIONS(1761), + [anon_sym_while] = ACTIONS(1761), + [anon_sym_do] = ACTIONS(1761), + [anon_sym_if] = ACTIONS(1761), + [anon_sym_match] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_DOT_DOT] = ACTIONS(1761), + [anon_sym_try] = ACTIONS(1761), + [anon_sym_return] = ACTIONS(1761), + [anon_sym_source] = ACTIONS(1761), + [anon_sym_source_DASHenv] = ACTIONS(1761), + [anon_sym_register] = ACTIONS(1761), + [anon_sym_hide] = ACTIONS(1761), + [anon_sym_hide_DASHenv] = ACTIONS(1761), + [anon_sym_overlay] = ACTIONS(1761), + [anon_sym_where] = ACTIONS(1763), + [aux_sym_expr_unary_token1] = ACTIONS(1763), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1763), + [anon_sym_DOT_DOT_LT] = ACTIONS(1763), + [aux_sym__val_number_decimal_token1] = ACTIONS(1761), + [aux_sym__val_number_decimal_token2] = ACTIONS(1763), + [aux_sym__val_number_decimal_token3] = ACTIONS(1763), + [aux_sym__val_number_decimal_token4] = ACTIONS(1763), + [aux_sym__val_number_token1] = ACTIONS(1763), + [aux_sym__val_number_token2] = ACTIONS(1763), + [aux_sym__val_number_token3] = ACTIONS(1763), + [anon_sym_0b] = ACTIONS(1761), + [anon_sym_0o] = ACTIONS(1761), + [anon_sym_0x] = ACTIONS(1761), + [sym_val_date] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1763), + [sym__str_single_quotes] = ACTIONS(1763), + [sym__str_back_ticks] = ACTIONS(1763), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1763), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1763), + [aux_sym_env_var_token1] = ACTIONS(1761), + [anon_sym_CARET] = ACTIONS(1763), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1763), + }, + [294] = { + [sym_comment] = STATE(294), + [anon_sym_export] = ACTIONS(1769), + [anon_sym_alias] = ACTIONS(1769), + [anon_sym_let] = ACTIONS(1769), + [anon_sym_let_DASHenv] = ACTIONS(1769), + [anon_sym_mut] = ACTIONS(1769), + [anon_sym_const] = ACTIONS(1769), + [aux_sym_cmd_identifier_token1] = ACTIONS(1769), + [aux_sym_cmd_identifier_token2] = ACTIONS(1769), + [aux_sym_cmd_identifier_token3] = ACTIONS(1769), + [aux_sym_cmd_identifier_token4] = ACTIONS(1769), + [aux_sym_cmd_identifier_token5] = ACTIONS(1769), + [aux_sym_cmd_identifier_token6] = ACTIONS(1769), + [aux_sym_cmd_identifier_token7] = ACTIONS(1769), + [aux_sym_cmd_identifier_token8] = ACTIONS(1769), + [aux_sym_cmd_identifier_token9] = ACTIONS(1769), + [aux_sym_cmd_identifier_token10] = ACTIONS(1769), + [aux_sym_cmd_identifier_token11] = ACTIONS(1769), + [aux_sym_cmd_identifier_token12] = ACTIONS(1769), + [aux_sym_cmd_identifier_token13] = ACTIONS(1769), + [aux_sym_cmd_identifier_token14] = ACTIONS(1769), + [aux_sym_cmd_identifier_token15] = ACTIONS(1769), + [aux_sym_cmd_identifier_token16] = ACTIONS(1769), + [aux_sym_cmd_identifier_token17] = ACTIONS(1769), + [aux_sym_cmd_identifier_token18] = ACTIONS(1769), + [aux_sym_cmd_identifier_token19] = ACTIONS(1769), + [aux_sym_cmd_identifier_token20] = ACTIONS(1769), + [aux_sym_cmd_identifier_token21] = ACTIONS(1769), + [aux_sym_cmd_identifier_token22] = ACTIONS(1769), + [aux_sym_cmd_identifier_token23] = ACTIONS(1769), + [aux_sym_cmd_identifier_token24] = ACTIONS(1769), + [aux_sym_cmd_identifier_token25] = ACTIONS(1769), + [aux_sym_cmd_identifier_token26] = ACTIONS(1769), + [aux_sym_cmd_identifier_token27] = ACTIONS(1769), + [aux_sym_cmd_identifier_token28] = ACTIONS(1769), + [aux_sym_cmd_identifier_token29] = ACTIONS(1769), + [aux_sym_cmd_identifier_token30] = ACTIONS(1769), + [aux_sym_cmd_identifier_token31] = ACTIONS(1769), + [aux_sym_cmd_identifier_token32] = ACTIONS(1769), + [aux_sym_cmd_identifier_token33] = ACTIONS(1769), + [aux_sym_cmd_identifier_token34] = ACTIONS(1769), + [aux_sym_cmd_identifier_token35] = ACTIONS(1769), + [aux_sym_cmd_identifier_token36] = ACTIONS(1769), + [anon_sym_true] = ACTIONS(1769), + [anon_sym_false] = ACTIONS(1769), + [anon_sym_null] = ACTIONS(1769), + [aux_sym_cmd_identifier_token38] = ACTIONS(1769), + [aux_sym_cmd_identifier_token39] = ACTIONS(1769), + [aux_sym_cmd_identifier_token40] = ACTIONS(1769), + [anon_sym_def] = ACTIONS(1769), + [anon_sym_export_DASHenv] = ACTIONS(1769), + [anon_sym_extern] = ACTIONS(1769), + [anon_sym_module] = ACTIONS(1769), + [anon_sym_use] = ACTIONS(1769), + [anon_sym_LPAREN] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1769), + [anon_sym_error] = ACTIONS(1769), + [anon_sym_list] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_break] = ACTIONS(1769), + [anon_sym_continue] = ACTIONS(1769), + [anon_sym_for] = ACTIONS(1769), + [anon_sym_in] = ACTIONS(1769), + [anon_sym_loop] = ACTIONS(1769), + [anon_sym_make] = ACTIONS(1769), + [anon_sym_while] = ACTIONS(1769), + [anon_sym_do] = ACTIONS(1769), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_else] = ACTIONS(1769), + [anon_sym_match] = ACTIONS(1769), + [anon_sym_RBRACE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1769), + [anon_sym_catch] = ACTIONS(1769), + [anon_sym_return] = ACTIONS(1769), + [anon_sym_source] = ACTIONS(1769), + [anon_sym_source_DASHenv] = ACTIONS(1769), + [anon_sym_register] = ACTIONS(1769), + [anon_sym_hide] = ACTIONS(1769), + [anon_sym_hide_DASHenv] = ACTIONS(1769), + [anon_sym_overlay] = ACTIONS(1769), + [anon_sym_new] = ACTIONS(1769), + [anon_sym_as] = ACTIONS(1769), + [anon_sym_LPAREN2] = ACTIONS(1771), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1769), + [anon_sym_DOT_DOT2] = ACTIONS(1769), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1771), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1771), + [aux_sym__immediate_decimal_token2] = ACTIONS(1773), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1769), + [aux_sym__val_number_decimal_token1] = ACTIONS(1769), + [aux_sym__val_number_decimal_token2] = ACTIONS(1769), + [aux_sym__val_number_decimal_token3] = ACTIONS(1769), + [aux_sym__val_number_decimal_token4] = ACTIONS(1769), + [aux_sym__val_number_token1] = ACTIONS(1769), + [aux_sym__val_number_token2] = ACTIONS(1769), + [aux_sym__val_number_token3] = ACTIONS(1769), + [anon_sym_DQUOTE] = ACTIONS(1769), + [sym__str_single_quotes] = ACTIONS(1769), + [sym__str_back_ticks] = ACTIONS(1769), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1769), + [sym__entry_separator] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1769), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1769), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1771), + }, + [295] = { + [sym_comment] = STATE(295), + [anon_sym_export] = ACTIONS(1356), + [anon_sym_alias] = ACTIONS(1356), + [anon_sym_let] = ACTIONS(1356), + [anon_sym_let_DASHenv] = ACTIONS(1356), + [anon_sym_mut] = ACTIONS(1356), + [anon_sym_const] = ACTIONS(1356), + [aux_sym_cmd_identifier_token1] = ACTIONS(1356), + [aux_sym_cmd_identifier_token2] = ACTIONS(1356), + [aux_sym_cmd_identifier_token3] = ACTIONS(1356), + [aux_sym_cmd_identifier_token4] = ACTIONS(1356), + [aux_sym_cmd_identifier_token5] = ACTIONS(1356), + [aux_sym_cmd_identifier_token6] = ACTIONS(1356), + [aux_sym_cmd_identifier_token7] = ACTIONS(1356), + [aux_sym_cmd_identifier_token8] = ACTIONS(1356), + [aux_sym_cmd_identifier_token9] = ACTIONS(1356), + [aux_sym_cmd_identifier_token10] = ACTIONS(1356), + [aux_sym_cmd_identifier_token11] = ACTIONS(1356), + [aux_sym_cmd_identifier_token12] = ACTIONS(1356), + [aux_sym_cmd_identifier_token13] = ACTIONS(1356), + [aux_sym_cmd_identifier_token14] = ACTIONS(1356), + [aux_sym_cmd_identifier_token15] = ACTIONS(1356), + [aux_sym_cmd_identifier_token16] = ACTIONS(1356), + [aux_sym_cmd_identifier_token17] = ACTIONS(1356), + [aux_sym_cmd_identifier_token18] = ACTIONS(1356), + [aux_sym_cmd_identifier_token19] = ACTIONS(1356), + [aux_sym_cmd_identifier_token20] = ACTIONS(1356), + [aux_sym_cmd_identifier_token21] = ACTIONS(1356), + [aux_sym_cmd_identifier_token22] = ACTIONS(1356), + [aux_sym_cmd_identifier_token23] = ACTIONS(1356), + [aux_sym_cmd_identifier_token24] = ACTIONS(1359), + [aux_sym_cmd_identifier_token25] = ACTIONS(1356), + [aux_sym_cmd_identifier_token26] = ACTIONS(1359), + [aux_sym_cmd_identifier_token27] = ACTIONS(1356), + [aux_sym_cmd_identifier_token28] = ACTIONS(1356), + [aux_sym_cmd_identifier_token29] = ACTIONS(1356), + [aux_sym_cmd_identifier_token30] = ACTIONS(1356), + [aux_sym_cmd_identifier_token31] = ACTIONS(1359), + [aux_sym_cmd_identifier_token32] = ACTIONS(1359), + [aux_sym_cmd_identifier_token33] = ACTIONS(1359), + [aux_sym_cmd_identifier_token34] = ACTIONS(1359), + [aux_sym_cmd_identifier_token35] = ACTIONS(1359), + [aux_sym_cmd_identifier_token36] = ACTIONS(1356), + [anon_sym_true] = ACTIONS(1359), + [anon_sym_false] = ACTIONS(1359), + [anon_sym_null] = ACTIONS(1359), + [aux_sym_cmd_identifier_token38] = ACTIONS(1356), + [aux_sym_cmd_identifier_token39] = ACTIONS(1359), + [aux_sym_cmd_identifier_token40] = ACTIONS(1359), + [sym__newline] = ACTIONS(1359), + [anon_sym_SEMI] = ACTIONS(1359), + [anon_sym_PIPE] = ACTIONS(1362), + [anon_sym_def] = ACTIONS(1356), + [anon_sym_export_DASHenv] = ACTIONS(1356), + [anon_sym_extern] = ACTIONS(1356), + [anon_sym_module] = ACTIONS(1356), + [anon_sym_use] = ACTIONS(1356), + [anon_sym_LBRACK] = ACTIONS(1359), + [anon_sym_LPAREN] = ACTIONS(1359), + [anon_sym_DOLLAR] = ACTIONS(1356), + [anon_sym_error] = ACTIONS(1356), + [anon_sym_DASH] = ACTIONS(1356), + [anon_sym_break] = ACTIONS(1356), + [anon_sym_continue] = ACTIONS(1356), + [anon_sym_for] = ACTIONS(1356), + [anon_sym_loop] = ACTIONS(1356), + [anon_sym_while] = ACTIONS(1356), + [anon_sym_do] = ACTIONS(1356), + [anon_sym_if] = ACTIONS(1356), + [anon_sym_match] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(1359), + [anon_sym_RBRACE] = ACTIONS(1366), + [anon_sym_DOT_DOT] = ACTIONS(1356), + [anon_sym_try] = ACTIONS(1356), + [anon_sym_return] = ACTIONS(1356), + [anon_sym_source] = ACTIONS(1356), + [anon_sym_source_DASHenv] = ACTIONS(1356), + [anon_sym_register] = ACTIONS(1356), + [anon_sym_hide] = ACTIONS(1356), + [anon_sym_hide_DASHenv] = ACTIONS(1356), + [anon_sym_overlay] = ACTIONS(1356), + [anon_sym_where] = ACTIONS(1359), + [aux_sym_expr_unary_token1] = ACTIONS(1359), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1359), + [anon_sym_DOT_DOT_LT] = ACTIONS(1359), + [aux_sym__val_number_decimal_token1] = ACTIONS(1356), + [aux_sym__val_number_decimal_token2] = ACTIONS(1359), + [aux_sym__val_number_decimal_token3] = ACTIONS(1359), + [aux_sym__val_number_decimal_token4] = ACTIONS(1359), + [aux_sym__val_number_token1] = ACTIONS(1359), + [aux_sym__val_number_token2] = ACTIONS(1359), + [aux_sym__val_number_token3] = ACTIONS(1359), + [anon_sym_0b] = ACTIONS(1356), + [anon_sym_0o] = ACTIONS(1356), + [anon_sym_0x] = ACTIONS(1356), + [sym_val_date] = ACTIONS(1359), + [anon_sym_DQUOTE] = ACTIONS(1359), + [sym__str_single_quotes] = ACTIONS(1359), + [sym__str_back_ticks] = ACTIONS(1359), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1359), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1359), + [aux_sym_env_var_token1] = ACTIONS(1356), + [anon_sym_CARET] = ACTIONS(1359), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1359), + }, + [296] = { + [sym_comment] = STATE(296), + [aux_sym_shebang_repeat1] = STATE(296), + [anon_sym_export] = ACTIONS(1349), + [anon_sym_alias] = ACTIONS(1349), + [anon_sym_let] = ACTIONS(1349), + [anon_sym_let_DASHenv] = ACTIONS(1349), + [anon_sym_mut] = ACTIONS(1349), + [anon_sym_const] = ACTIONS(1349), + [aux_sym_cmd_identifier_token1] = ACTIONS(1349), + [aux_sym_cmd_identifier_token2] = ACTIONS(1349), + [aux_sym_cmd_identifier_token3] = ACTIONS(1349), + [aux_sym_cmd_identifier_token4] = ACTIONS(1349), + [aux_sym_cmd_identifier_token5] = ACTIONS(1349), + [aux_sym_cmd_identifier_token6] = ACTIONS(1349), + [aux_sym_cmd_identifier_token7] = ACTIONS(1349), + [aux_sym_cmd_identifier_token8] = ACTIONS(1349), + [aux_sym_cmd_identifier_token9] = ACTIONS(1349), + [aux_sym_cmd_identifier_token10] = ACTIONS(1349), + [aux_sym_cmd_identifier_token11] = ACTIONS(1349), + [aux_sym_cmd_identifier_token12] = ACTIONS(1349), + [aux_sym_cmd_identifier_token13] = ACTIONS(1349), + [aux_sym_cmd_identifier_token14] = ACTIONS(1349), + [aux_sym_cmd_identifier_token15] = ACTIONS(1349), + [aux_sym_cmd_identifier_token16] = ACTIONS(1349), + [aux_sym_cmd_identifier_token17] = ACTIONS(1349), + [aux_sym_cmd_identifier_token18] = ACTIONS(1349), + [aux_sym_cmd_identifier_token19] = ACTIONS(1349), + [aux_sym_cmd_identifier_token20] = ACTIONS(1349), + [aux_sym_cmd_identifier_token21] = ACTIONS(1349), + [aux_sym_cmd_identifier_token22] = ACTIONS(1349), + [aux_sym_cmd_identifier_token23] = ACTIONS(1349), + [aux_sym_cmd_identifier_token24] = ACTIONS(1351), + [aux_sym_cmd_identifier_token25] = ACTIONS(1349), + [aux_sym_cmd_identifier_token26] = ACTIONS(1351), + [aux_sym_cmd_identifier_token27] = ACTIONS(1349), + [aux_sym_cmd_identifier_token28] = ACTIONS(1349), + [aux_sym_cmd_identifier_token29] = ACTIONS(1349), + [aux_sym_cmd_identifier_token30] = ACTIONS(1349), + [aux_sym_cmd_identifier_token31] = ACTIONS(1351), + [aux_sym_cmd_identifier_token32] = ACTIONS(1351), + [aux_sym_cmd_identifier_token33] = ACTIONS(1351), + [aux_sym_cmd_identifier_token34] = ACTIONS(1351), + [aux_sym_cmd_identifier_token35] = ACTIONS(1351), + [aux_sym_cmd_identifier_token36] = ACTIONS(1349), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_null] = ACTIONS(1351), + [aux_sym_cmd_identifier_token38] = ACTIONS(1349), + [aux_sym_cmd_identifier_token39] = ACTIONS(1351), + [aux_sym_cmd_identifier_token40] = ACTIONS(1351), + [sym__newline] = ACTIONS(1775), + [anon_sym_SEMI] = ACTIONS(1351), + [anon_sym_PIPE] = ACTIONS(1351), + [anon_sym_def] = ACTIONS(1349), + [anon_sym_export_DASHenv] = ACTIONS(1349), + [anon_sym_extern] = ACTIONS(1349), + [anon_sym_module] = ACTIONS(1349), + [anon_sym_use] = ACTIONS(1349), + [anon_sym_LBRACK] = ACTIONS(1351), + [anon_sym_LPAREN] = ACTIONS(1351), + [anon_sym_DOLLAR] = ACTIONS(1349), + [anon_sym_error] = ACTIONS(1349), + [anon_sym_DASH] = ACTIONS(1349), + [anon_sym_break] = ACTIONS(1349), + [anon_sym_continue] = ACTIONS(1349), + [anon_sym_for] = ACTIONS(1349), + [anon_sym_loop] = ACTIONS(1349), + [anon_sym_while] = ACTIONS(1349), + [anon_sym_do] = ACTIONS(1349), + [anon_sym_if] = ACTIONS(1349), + [anon_sym_match] = ACTIONS(1349), + [anon_sym_LBRACE] = ACTIONS(1351), + [anon_sym_DOT_DOT] = ACTIONS(1349), + [anon_sym_try] = ACTIONS(1349), + [anon_sym_return] = ACTIONS(1349), + [anon_sym_source] = ACTIONS(1349), + [anon_sym_source_DASHenv] = ACTIONS(1349), + [anon_sym_register] = ACTIONS(1349), + [anon_sym_hide] = ACTIONS(1349), + [anon_sym_hide_DASHenv] = ACTIONS(1349), + [anon_sym_overlay] = ACTIONS(1349), + [anon_sym_where] = ACTIONS(1351), + [aux_sym_expr_unary_token1] = ACTIONS(1351), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1351), + [anon_sym_DOT_DOT_LT] = ACTIONS(1351), + [aux_sym__val_number_decimal_token1] = ACTIONS(1349), + [aux_sym__val_number_decimal_token2] = ACTIONS(1351), + [aux_sym__val_number_decimal_token3] = ACTIONS(1351), + [aux_sym__val_number_decimal_token4] = ACTIONS(1351), + [aux_sym__val_number_token1] = ACTIONS(1351), + [aux_sym__val_number_token2] = ACTIONS(1351), + [aux_sym__val_number_token3] = ACTIONS(1351), + [anon_sym_0b] = ACTIONS(1349), + [anon_sym_0o] = ACTIONS(1349), + [anon_sym_0x] = ACTIONS(1349), + [sym_val_date] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1351), + [sym__str_single_quotes] = ACTIONS(1351), + [sym__str_back_ticks] = ACTIONS(1351), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1351), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1351), + [aux_sym_env_var_token1] = ACTIONS(1349), + [anon_sym_CARET] = ACTIONS(1351), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1351), + }, + [297] = { + [sym_comment] = STATE(297), + [aux_sym_shebang_repeat1] = STATE(7176), + [aux_sym__parenthesized_body_repeat1] = STATE(297), [anon_sym_export] = ACTIONS(1778), [anon_sym_alias] = ACTIONS(1778), [anon_sym_let] = ACTIONS(1778), @@ -110240,49 +111946,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token21] = ACTIONS(1778), [aux_sym_cmd_identifier_token22] = ACTIONS(1778), [aux_sym_cmd_identifier_token23] = ACTIONS(1778), - [aux_sym_cmd_identifier_token24] = ACTIONS(1778), + [aux_sym_cmd_identifier_token24] = ACTIONS(1780), [aux_sym_cmd_identifier_token25] = ACTIONS(1778), - [aux_sym_cmd_identifier_token26] = ACTIONS(1778), + [aux_sym_cmd_identifier_token26] = ACTIONS(1780), [aux_sym_cmd_identifier_token27] = ACTIONS(1778), [aux_sym_cmd_identifier_token28] = ACTIONS(1778), [aux_sym_cmd_identifier_token29] = ACTIONS(1778), [aux_sym_cmd_identifier_token30] = ACTIONS(1778), - [aux_sym_cmd_identifier_token31] = ACTIONS(1778), - [aux_sym_cmd_identifier_token32] = ACTIONS(1778), - [aux_sym_cmd_identifier_token33] = ACTIONS(1778), - [aux_sym_cmd_identifier_token34] = ACTIONS(1778), - [aux_sym_cmd_identifier_token35] = ACTIONS(1778), + [aux_sym_cmd_identifier_token31] = ACTIONS(1780), + [aux_sym_cmd_identifier_token32] = ACTIONS(1780), + [aux_sym_cmd_identifier_token33] = ACTIONS(1780), + [aux_sym_cmd_identifier_token34] = ACTIONS(1780), + [aux_sym_cmd_identifier_token35] = ACTIONS(1780), [aux_sym_cmd_identifier_token36] = ACTIONS(1778), - [anon_sym_true] = ACTIONS(1778), - [anon_sym_false] = ACTIONS(1778), - [anon_sym_null] = ACTIONS(1778), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_null] = ACTIONS(1780), [aux_sym_cmd_identifier_token38] = ACTIONS(1778), - [aux_sym_cmd_identifier_token39] = ACTIONS(1778), - [aux_sym_cmd_identifier_token40] = ACTIONS(1778), + [aux_sym_cmd_identifier_token39] = ACTIONS(1780), + [aux_sym_cmd_identifier_token40] = ACTIONS(1780), + [sym__newline] = ACTIONS(1782), + [anon_sym_SEMI] = ACTIONS(1785), [anon_sym_def] = ACTIONS(1778), [anon_sym_export_DASHenv] = ACTIONS(1778), [anon_sym_extern] = ACTIONS(1778), [anon_sym_module] = ACTIONS(1778), [anon_sym_use] = ACTIONS(1778), - [anon_sym_LPAREN] = ACTIONS(1778), + [anon_sym_LBRACK] = ACTIONS(1780), + [anon_sym_LPAREN] = ACTIONS(1780), [anon_sym_DOLLAR] = ACTIONS(1778), [anon_sym_error] = ACTIONS(1778), - [anon_sym_list] = ACTIONS(1778), [anon_sym_DASH] = ACTIONS(1778), [anon_sym_break] = ACTIONS(1778), [anon_sym_continue] = ACTIONS(1778), [anon_sym_for] = ACTIONS(1778), - [anon_sym_in] = ACTIONS(1778), [anon_sym_loop] = ACTIONS(1778), - [anon_sym_make] = ACTIONS(1778), [anon_sym_while] = ACTIONS(1778), [anon_sym_do] = ACTIONS(1778), [anon_sym_if] = ACTIONS(1778), - [anon_sym_else] = ACTIONS(1778), [anon_sym_match] = ACTIONS(1778), - [anon_sym_RBRACE] = ACTIONS(1778), + [anon_sym_LBRACE] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1778), [anon_sym_try] = ACTIONS(1778), - [anon_sym_catch] = ACTIONS(1778), [anon_sym_return] = ACTIONS(1778), [anon_sym_source] = ACTIONS(1778), [anon_sym_source_DASHenv] = ACTIONS(1778), @@ -110290,242 +111995,247 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(1778), [anon_sym_hide_DASHenv] = ACTIONS(1778), [anon_sym_overlay] = ACTIONS(1778), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_as] = ACTIONS(1778), - [anon_sym_LPAREN2] = ACTIONS(1780), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1778), - [anon_sym_DOT_DOT2] = ACTIONS(1782), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1784), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1784), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1778), + [anon_sym_where] = ACTIONS(1780), + [aux_sym_expr_unary_token1] = ACTIONS(1780), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1780), + [anon_sym_DOT_DOT_LT] = ACTIONS(1780), [aux_sym__val_number_decimal_token1] = ACTIONS(1778), - [aux_sym__val_number_decimal_token2] = ACTIONS(1778), - [aux_sym__val_number_decimal_token3] = ACTIONS(1778), - [aux_sym__val_number_decimal_token4] = ACTIONS(1778), - [aux_sym__val_number_token1] = ACTIONS(1778), - [aux_sym__val_number_token2] = ACTIONS(1778), - [aux_sym__val_number_token3] = ACTIONS(1778), - [anon_sym_DQUOTE] = ACTIONS(1778), - [sym__str_single_quotes] = ACTIONS(1778), - [sym__str_back_ticks] = ACTIONS(1778), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1778), - [sym__entry_separator] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1778), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1494), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym__val_number_decimal_token2] = ACTIONS(1780), + [aux_sym__val_number_decimal_token3] = ACTIONS(1780), + [aux_sym__val_number_decimal_token4] = ACTIONS(1780), + [aux_sym__val_number_token1] = ACTIONS(1780), + [aux_sym__val_number_token2] = ACTIONS(1780), + [aux_sym__val_number_token3] = ACTIONS(1780), + [anon_sym_0b] = ACTIONS(1778), + [anon_sym_0o] = ACTIONS(1778), + [anon_sym_0x] = ACTIONS(1778), + [sym_val_date] = ACTIONS(1780), + [anon_sym_DQUOTE] = ACTIONS(1780), + [sym__str_single_quotes] = ACTIONS(1780), + [sym__str_back_ticks] = ACTIONS(1780), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1780), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1780), + [aux_sym_env_var_token1] = ACTIONS(1778), + [anon_sym_CARET] = ACTIONS(1780), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1780), }, - [294] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5016), - [sym_block] = STATE(5017), - [sym__expression_parenthesized] = STATE(5017), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3783), - [sym_expr_parenthesized] = STATE(2023), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(2013), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3070), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_command] = STATE(5017), - [sym_comment] = STATE(294), - [aux_sym_shebang_repeat1] = STATE(1061), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(1746), - [anon_sym_false] = ACTIONS(1746), - [anon_sym_null] = ACTIONS(1748), - [aux_sym_cmd_identifier_token38] = ACTIONS(1750), - [aux_sym_cmd_identifier_token39] = ACTIONS(1752), - [aux_sym_cmd_identifier_token40] = ACTIONS(1752), - [sym__newline] = ACTIONS(1754), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_if] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1758), - [aux_sym__val_number_decimal_token2] = ACTIONS(1760), - [aux_sym__val_number_decimal_token3] = ACTIONS(1762), - [aux_sym__val_number_decimal_token4] = ACTIONS(1764), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [298] = { + [sym_cell_path] = STATE(496), + [sym_path] = STATE(423), + [sym_comment] = STATE(298), + [aux_sym_cell_path_repeat1] = STATE(301), + [anon_sym_export] = ACTIONS(1664), + [anon_sym_alias] = ACTIONS(1664), + [anon_sym_let] = ACTIONS(1664), + [anon_sym_let_DASHenv] = ACTIONS(1664), + [anon_sym_mut] = ACTIONS(1664), + [anon_sym_const] = ACTIONS(1664), + [aux_sym_cmd_identifier_token1] = ACTIONS(1664), + [aux_sym_cmd_identifier_token2] = ACTIONS(1664), + [aux_sym_cmd_identifier_token3] = ACTIONS(1664), + [aux_sym_cmd_identifier_token4] = ACTIONS(1664), + [aux_sym_cmd_identifier_token5] = ACTIONS(1664), + [aux_sym_cmd_identifier_token6] = ACTIONS(1664), + [aux_sym_cmd_identifier_token7] = ACTIONS(1664), + [aux_sym_cmd_identifier_token8] = ACTIONS(1664), + [aux_sym_cmd_identifier_token9] = ACTIONS(1664), + [aux_sym_cmd_identifier_token10] = ACTIONS(1664), + [aux_sym_cmd_identifier_token11] = ACTIONS(1664), + [aux_sym_cmd_identifier_token12] = ACTIONS(1664), + [aux_sym_cmd_identifier_token13] = ACTIONS(1664), + [aux_sym_cmd_identifier_token14] = ACTIONS(1664), + [aux_sym_cmd_identifier_token15] = ACTIONS(1664), + [aux_sym_cmd_identifier_token16] = ACTIONS(1664), + [aux_sym_cmd_identifier_token17] = ACTIONS(1664), + [aux_sym_cmd_identifier_token18] = ACTIONS(1664), + [aux_sym_cmd_identifier_token19] = ACTIONS(1664), + [aux_sym_cmd_identifier_token20] = ACTIONS(1664), + [aux_sym_cmd_identifier_token21] = ACTIONS(1664), + [aux_sym_cmd_identifier_token22] = ACTIONS(1664), + [aux_sym_cmd_identifier_token23] = ACTIONS(1664), + [aux_sym_cmd_identifier_token24] = ACTIONS(1664), + [aux_sym_cmd_identifier_token25] = ACTIONS(1664), + [aux_sym_cmd_identifier_token26] = ACTIONS(1664), + [aux_sym_cmd_identifier_token27] = ACTIONS(1664), + [aux_sym_cmd_identifier_token28] = ACTIONS(1664), + [aux_sym_cmd_identifier_token29] = ACTIONS(1664), + [aux_sym_cmd_identifier_token30] = ACTIONS(1664), + [aux_sym_cmd_identifier_token31] = ACTIONS(1664), + [aux_sym_cmd_identifier_token32] = ACTIONS(1664), + [aux_sym_cmd_identifier_token33] = ACTIONS(1664), + [aux_sym_cmd_identifier_token34] = ACTIONS(1664), + [aux_sym_cmd_identifier_token35] = ACTIONS(1664), + [aux_sym_cmd_identifier_token36] = ACTIONS(1664), + [anon_sym_true] = ACTIONS(1668), + [anon_sym_false] = ACTIONS(1668), + [anon_sym_null] = ACTIONS(1668), + [aux_sym_cmd_identifier_token38] = ACTIONS(1664), + [aux_sym_cmd_identifier_token39] = ACTIONS(1668), + [aux_sym_cmd_identifier_token40] = ACTIONS(1668), + [anon_sym_def] = ACTIONS(1664), + [anon_sym_export_DASHenv] = ACTIONS(1664), + [anon_sym_extern] = ACTIONS(1664), + [anon_sym_module] = ACTIONS(1664), + [anon_sym_use] = ACTIONS(1664), + [anon_sym_LPAREN] = ACTIONS(1668), + [anon_sym_DOLLAR] = ACTIONS(1668), + [anon_sym_error] = ACTIONS(1664), + [anon_sym_list] = ACTIONS(1664), + [anon_sym_DASH] = ACTIONS(1664), + [anon_sym_break] = ACTIONS(1664), + [anon_sym_continue] = ACTIONS(1664), + [anon_sym_for] = ACTIONS(1664), + [anon_sym_in] = ACTIONS(1664), + [anon_sym_loop] = ACTIONS(1664), + [anon_sym_make] = ACTIONS(1664), + [anon_sym_while] = ACTIONS(1664), + [anon_sym_do] = ACTIONS(1664), + [anon_sym_if] = ACTIONS(1664), + [anon_sym_else] = ACTIONS(1664), + [anon_sym_match] = ACTIONS(1664), + [anon_sym_RBRACE] = ACTIONS(1668), + [anon_sym_try] = ACTIONS(1664), + [anon_sym_catch] = ACTIONS(1664), + [anon_sym_return] = ACTIONS(1664), + [anon_sym_source] = ACTIONS(1664), + [anon_sym_source_DASHenv] = ACTIONS(1664), + [anon_sym_register] = ACTIONS(1664), + [anon_sym_hide] = ACTIONS(1664), + [anon_sym_hide_DASHenv] = ACTIONS(1664), + [anon_sym_overlay] = ACTIONS(1664), + [anon_sym_new] = ACTIONS(1664), + [anon_sym_as] = ACTIONS(1664), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1668), + [anon_sym_DOT_DOT2] = ACTIONS(1664), + [anon_sym_DOT] = ACTIONS(1759), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1668), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1668), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1668), + [aux_sym__val_number_decimal_token1] = ACTIONS(1664), + [aux_sym__val_number_decimal_token2] = ACTIONS(1668), + [aux_sym__val_number_decimal_token3] = ACTIONS(1668), + [aux_sym__val_number_decimal_token4] = ACTIONS(1668), + [aux_sym__val_number_token1] = ACTIONS(1668), + [aux_sym__val_number_token2] = ACTIONS(1668), + [aux_sym__val_number_token3] = ACTIONS(1668), + [anon_sym_DQUOTE] = ACTIONS(1668), + [sym__str_single_quotes] = ACTIONS(1668), + [sym__str_back_ticks] = ACTIONS(1668), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1668), + [anon_sym_PLUS] = ACTIONS(1664), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1668), }, - [295] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5016), - [sym_block] = STATE(5017), - [sym__expression_parenthesized] = STATE(5017), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3783), - [sym_expr_parenthesized] = STATE(2023), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(2013), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3070), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_command] = STATE(5017), - [sym_comment] = STATE(295), - [aux_sym_shebang_repeat1] = STATE(302), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(1746), - [anon_sym_false] = ACTIONS(1746), - [anon_sym_null] = ACTIONS(1748), - [aux_sym_cmd_identifier_token38] = ACTIONS(1750), - [aux_sym_cmd_identifier_token39] = ACTIONS(1752), - [aux_sym_cmd_identifier_token40] = ACTIONS(1752), - [sym__newline] = ACTIONS(1754), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_if] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1758), - [aux_sym__val_number_decimal_token2] = ACTIONS(1760), - [aux_sym__val_number_decimal_token3] = ACTIONS(1762), - [aux_sym__val_number_decimal_token4] = ACTIONS(1764), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [299] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if_parenthesized] = STATE(5124), + [sym_block] = STATE(5125), + [sym__expression_parenthesized] = STATE(5125), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3839), + [sym_expr_parenthesized] = STATE(2053), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(2028), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3132), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_command] = STATE(5125), + [sym_comment] = STATE(299), + [aux_sym_shebang_repeat1] = STATE(1079), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(373), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(1723), + [anon_sym_false] = ACTIONS(1723), + [anon_sym_null] = ACTIONS(1725), + [aux_sym_cmd_identifier_token38] = ACTIONS(1727), + [aux_sym_cmd_identifier_token39] = ACTIONS(1729), + [aux_sym_cmd_identifier_token40] = ACTIONS(1729), + [sym__newline] = ACTIONS(1731), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_if] = ACTIONS(491), + [anon_sym_LBRACE] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(193), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(1735), + [aux_sym__val_number_decimal_token2] = ACTIONS(1737), + [aux_sym__val_number_decimal_token3] = ACTIONS(1739), + [aux_sym__val_number_decimal_token4] = ACTIONS(1741), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, - [296] = { - [sym_comment] = STATE(296), + [300] = { + [sym_comment] = STATE(300), [anon_sym_export] = ACTIONS(1788), [anon_sym_alias] = ACTIONS(1788), [anon_sym_let] = ACTIONS(1788), @@ -110626,326 +112336,331 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1788), [sym__entry_separator] = ACTIONS(1796), [anon_sym_PLUS] = ACTIONS(1788), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1798), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1526), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1796), }, - [297] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5018), - [sym_block] = STATE(5019), - [sym__expression_parenthesized] = STATE(5019), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3783), - [sym_expr_parenthesized] = STATE(2023), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(2013), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3070), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_command] = STATE(5019), - [sym_comment] = STATE(297), - [aux_sym_shebang_repeat1] = STATE(1061), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(1746), - [anon_sym_false] = ACTIONS(1746), - [anon_sym_null] = ACTIONS(1748), - [aux_sym_cmd_identifier_token38] = ACTIONS(1750), - [aux_sym_cmd_identifier_token39] = ACTIONS(1752), - [aux_sym_cmd_identifier_token40] = ACTIONS(1752), - [sym__newline] = ACTIONS(1754), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_if] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1758), - [aux_sym__val_number_decimal_token2] = ACTIONS(1760), - [aux_sym__val_number_decimal_token3] = ACTIONS(1762), - [aux_sym__val_number_decimal_token4] = ACTIONS(1764), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [301] = { + [sym_path] = STATE(423), + [sym_comment] = STATE(301), + [aux_sym_cell_path_repeat1] = STATE(316), + [anon_sym_export] = ACTIONS(1027), + [anon_sym_alias] = ACTIONS(1027), + [anon_sym_let] = ACTIONS(1027), + [anon_sym_let_DASHenv] = ACTIONS(1027), + [anon_sym_mut] = ACTIONS(1027), + [anon_sym_const] = ACTIONS(1027), + [aux_sym_cmd_identifier_token1] = ACTIONS(1027), + [aux_sym_cmd_identifier_token2] = ACTIONS(1027), + [aux_sym_cmd_identifier_token3] = ACTIONS(1027), + [aux_sym_cmd_identifier_token4] = ACTIONS(1027), + [aux_sym_cmd_identifier_token5] = ACTIONS(1027), + [aux_sym_cmd_identifier_token6] = ACTIONS(1027), + [aux_sym_cmd_identifier_token7] = ACTIONS(1027), + [aux_sym_cmd_identifier_token8] = ACTIONS(1027), + [aux_sym_cmd_identifier_token9] = ACTIONS(1027), + [aux_sym_cmd_identifier_token10] = ACTIONS(1027), + [aux_sym_cmd_identifier_token11] = ACTIONS(1027), + [aux_sym_cmd_identifier_token12] = ACTIONS(1027), + [aux_sym_cmd_identifier_token13] = ACTIONS(1027), + [aux_sym_cmd_identifier_token14] = ACTIONS(1027), + [aux_sym_cmd_identifier_token15] = ACTIONS(1027), + [aux_sym_cmd_identifier_token16] = ACTIONS(1027), + [aux_sym_cmd_identifier_token17] = ACTIONS(1027), + [aux_sym_cmd_identifier_token18] = ACTIONS(1027), + [aux_sym_cmd_identifier_token19] = ACTIONS(1027), + [aux_sym_cmd_identifier_token20] = ACTIONS(1027), + [aux_sym_cmd_identifier_token21] = ACTIONS(1027), + [aux_sym_cmd_identifier_token22] = ACTIONS(1027), + [aux_sym_cmd_identifier_token23] = ACTIONS(1027), + [aux_sym_cmd_identifier_token24] = ACTIONS(1027), + [aux_sym_cmd_identifier_token25] = ACTIONS(1027), + [aux_sym_cmd_identifier_token26] = ACTIONS(1027), + [aux_sym_cmd_identifier_token27] = ACTIONS(1027), + [aux_sym_cmd_identifier_token28] = ACTIONS(1027), + [aux_sym_cmd_identifier_token29] = ACTIONS(1027), + [aux_sym_cmd_identifier_token30] = ACTIONS(1027), + [aux_sym_cmd_identifier_token31] = ACTIONS(1027), + [aux_sym_cmd_identifier_token32] = ACTIONS(1027), + [aux_sym_cmd_identifier_token33] = ACTIONS(1027), + [aux_sym_cmd_identifier_token34] = ACTIONS(1027), + [aux_sym_cmd_identifier_token35] = ACTIONS(1027), + [aux_sym_cmd_identifier_token36] = ACTIONS(1027), + [anon_sym_true] = ACTIONS(1029), + [anon_sym_false] = ACTIONS(1029), + [anon_sym_null] = ACTIONS(1029), + [aux_sym_cmd_identifier_token38] = ACTIONS(1027), + [aux_sym_cmd_identifier_token39] = ACTIONS(1029), + [aux_sym_cmd_identifier_token40] = ACTIONS(1029), + [anon_sym_def] = ACTIONS(1027), + [anon_sym_export_DASHenv] = ACTIONS(1027), + [anon_sym_extern] = ACTIONS(1027), + [anon_sym_module] = ACTIONS(1027), + [anon_sym_use] = ACTIONS(1027), + [anon_sym_LPAREN] = ACTIONS(1029), + [anon_sym_DOLLAR] = ACTIONS(1029), + [anon_sym_error] = ACTIONS(1027), + [anon_sym_list] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_break] = ACTIONS(1027), + [anon_sym_continue] = ACTIONS(1027), + [anon_sym_for] = ACTIONS(1027), + [anon_sym_in] = ACTIONS(1027), + [anon_sym_loop] = ACTIONS(1027), + [anon_sym_make] = ACTIONS(1027), + [anon_sym_while] = ACTIONS(1027), + [anon_sym_do] = ACTIONS(1027), + [anon_sym_if] = ACTIONS(1027), + [anon_sym_else] = ACTIONS(1027), + [anon_sym_match] = ACTIONS(1027), + [anon_sym_RBRACE] = ACTIONS(1029), + [anon_sym_try] = ACTIONS(1027), + [anon_sym_catch] = ACTIONS(1027), + [anon_sym_return] = ACTIONS(1027), + [anon_sym_source] = ACTIONS(1027), + [anon_sym_source_DASHenv] = ACTIONS(1027), + [anon_sym_register] = ACTIONS(1027), + [anon_sym_hide] = ACTIONS(1027), + [anon_sym_hide_DASHenv] = ACTIONS(1027), + [anon_sym_overlay] = ACTIONS(1027), + [anon_sym_new] = ACTIONS(1027), + [anon_sym_as] = ACTIONS(1027), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1029), + [anon_sym_DOT_DOT2] = ACTIONS(1027), + [anon_sym_DOT] = ACTIONS(1759), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1029), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1029), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1029), + [aux_sym__val_number_decimal_token1] = ACTIONS(1027), + [aux_sym__val_number_decimal_token2] = ACTIONS(1029), + [aux_sym__val_number_decimal_token3] = ACTIONS(1029), + [aux_sym__val_number_decimal_token4] = ACTIONS(1029), + [aux_sym__val_number_token1] = ACTIONS(1029), + [aux_sym__val_number_token2] = ACTIONS(1029), + [aux_sym__val_number_token3] = ACTIONS(1029), + [anon_sym_DQUOTE] = ACTIONS(1029), + [sym__str_single_quotes] = ACTIONS(1029), + [sym__str_back_ticks] = ACTIONS(1029), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1029), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1029), }, - [298] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5018), - [sym_block] = STATE(5019), - [sym__expression_parenthesized] = STATE(5019), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3783), - [sym_expr_parenthesized] = STATE(2023), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(2013), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3070), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_command] = STATE(5019), - [sym_comment] = STATE(298), - [aux_sym_shebang_repeat1] = STATE(304), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(1746), - [anon_sym_false] = ACTIONS(1746), - [anon_sym_null] = ACTIONS(1748), - [aux_sym_cmd_identifier_token38] = ACTIONS(1750), - [aux_sym_cmd_identifier_token39] = ACTIONS(1752), - [aux_sym_cmd_identifier_token40] = ACTIONS(1752), - [sym__newline] = ACTIONS(1754), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_if] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1758), - [aux_sym__val_number_decimal_token2] = ACTIONS(1760), - [aux_sym__val_number_decimal_token3] = ACTIONS(1762), - [aux_sym__val_number_decimal_token4] = ACTIONS(1764), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [302] = { + [sym_comment] = STATE(302), + [anon_sym_export] = ACTIONS(1058), + [anon_sym_alias] = ACTIONS(1058), + [anon_sym_let] = ACTIONS(1058), + [anon_sym_let_DASHenv] = ACTIONS(1058), + [anon_sym_mut] = ACTIONS(1058), + [anon_sym_const] = ACTIONS(1058), + [aux_sym_cmd_identifier_token1] = ACTIONS(1058), + [aux_sym_cmd_identifier_token2] = ACTIONS(1058), + [aux_sym_cmd_identifier_token3] = ACTIONS(1058), + [aux_sym_cmd_identifier_token4] = ACTIONS(1058), + [aux_sym_cmd_identifier_token5] = ACTIONS(1058), + [aux_sym_cmd_identifier_token6] = ACTIONS(1058), + [aux_sym_cmd_identifier_token7] = ACTIONS(1058), + [aux_sym_cmd_identifier_token8] = ACTIONS(1058), + [aux_sym_cmd_identifier_token9] = ACTIONS(1058), + [aux_sym_cmd_identifier_token10] = ACTIONS(1058), + [aux_sym_cmd_identifier_token11] = ACTIONS(1058), + [aux_sym_cmd_identifier_token12] = ACTIONS(1058), + [aux_sym_cmd_identifier_token13] = ACTIONS(1058), + [aux_sym_cmd_identifier_token14] = ACTIONS(1058), + [aux_sym_cmd_identifier_token15] = ACTIONS(1058), + [aux_sym_cmd_identifier_token16] = ACTIONS(1058), + [aux_sym_cmd_identifier_token17] = ACTIONS(1058), + [aux_sym_cmd_identifier_token18] = ACTIONS(1058), + [aux_sym_cmd_identifier_token19] = ACTIONS(1058), + [aux_sym_cmd_identifier_token20] = ACTIONS(1058), + [aux_sym_cmd_identifier_token21] = ACTIONS(1058), + [aux_sym_cmd_identifier_token22] = ACTIONS(1058), + [aux_sym_cmd_identifier_token23] = ACTIONS(1058), + [aux_sym_cmd_identifier_token24] = ACTIONS(1058), + [aux_sym_cmd_identifier_token25] = ACTIONS(1058), + [aux_sym_cmd_identifier_token26] = ACTIONS(1058), + [aux_sym_cmd_identifier_token27] = ACTIONS(1058), + [aux_sym_cmd_identifier_token28] = ACTIONS(1058), + [aux_sym_cmd_identifier_token29] = ACTIONS(1058), + [aux_sym_cmd_identifier_token30] = ACTIONS(1058), + [aux_sym_cmd_identifier_token31] = ACTIONS(1058), + [aux_sym_cmd_identifier_token32] = ACTIONS(1058), + [aux_sym_cmd_identifier_token33] = ACTIONS(1058), + [aux_sym_cmd_identifier_token34] = ACTIONS(1058), + [aux_sym_cmd_identifier_token35] = ACTIONS(1058), + [aux_sym_cmd_identifier_token36] = ACTIONS(1058), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_null] = ACTIONS(1058), + [aux_sym_cmd_identifier_token38] = ACTIONS(1058), + [aux_sym_cmd_identifier_token39] = ACTIONS(1058), + [aux_sym_cmd_identifier_token40] = ACTIONS(1058), + [anon_sym_def] = ACTIONS(1058), + [anon_sym_export_DASHenv] = ACTIONS(1058), + [anon_sym_extern] = ACTIONS(1058), + [anon_sym_module] = ACTIONS(1058), + [anon_sym_use] = ACTIONS(1058), + [anon_sym_LPAREN] = ACTIONS(1058), + [anon_sym_DOLLAR] = ACTIONS(1058), + [anon_sym_error] = ACTIONS(1058), + [anon_sym_list] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1058), + [anon_sym_break] = ACTIONS(1058), + [anon_sym_continue] = ACTIONS(1058), + [anon_sym_for] = ACTIONS(1058), + [anon_sym_in] = ACTIONS(1058), + [anon_sym_loop] = ACTIONS(1058), + [anon_sym_make] = ACTIONS(1058), + [anon_sym_while] = ACTIONS(1058), + [anon_sym_do] = ACTIONS(1058), + [anon_sym_if] = ACTIONS(1058), + [anon_sym_else] = ACTIONS(1058), + [anon_sym_match] = ACTIONS(1058), + [anon_sym_RBRACE] = ACTIONS(1058), + [anon_sym_try] = ACTIONS(1058), + [anon_sym_catch] = ACTIONS(1058), + [anon_sym_return] = ACTIONS(1058), + [anon_sym_source] = ACTIONS(1058), + [anon_sym_source_DASHenv] = ACTIONS(1058), + [anon_sym_register] = ACTIONS(1058), + [anon_sym_hide] = ACTIONS(1058), + [anon_sym_hide_DASHenv] = ACTIONS(1058), + [anon_sym_overlay] = ACTIONS(1058), + [anon_sym_new] = ACTIONS(1058), + [anon_sym_as] = ACTIONS(1058), + [anon_sym_QMARK2] = ACTIONS(1058), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1058), + [anon_sym_DOT_DOT2] = ACTIONS(1058), + [anon_sym_DOT] = ACTIONS(1058), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1060), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1060), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1058), + [aux_sym__val_number_decimal_token1] = ACTIONS(1058), + [aux_sym__val_number_decimal_token2] = ACTIONS(1058), + [aux_sym__val_number_decimal_token3] = ACTIONS(1058), + [aux_sym__val_number_decimal_token4] = ACTIONS(1058), + [aux_sym__val_number_token1] = ACTIONS(1058), + [aux_sym__val_number_token2] = ACTIONS(1058), + [aux_sym__val_number_token3] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(1058), + [sym__str_single_quotes] = ACTIONS(1058), + [sym__str_back_ticks] = ACTIONS(1058), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1058), + [sym__entry_separator] = ACTIONS(1060), + [anon_sym_PLUS] = ACTIONS(1058), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1060), }, - [299] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5021), - [sym_block] = STATE(5022), - [sym__expression_parenthesized] = STATE(5022), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3783), - [sym_expr_parenthesized] = STATE(2023), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(2013), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3070), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_command] = STATE(5022), - [sym_comment] = STATE(299), - [aux_sym_shebang_repeat1] = STATE(306), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(1746), - [anon_sym_false] = ACTIONS(1746), - [anon_sym_null] = ACTIONS(1748), - [aux_sym_cmd_identifier_token38] = ACTIONS(1750), - [aux_sym_cmd_identifier_token39] = ACTIONS(1752), - [aux_sym_cmd_identifier_token40] = ACTIONS(1752), - [sym__newline] = ACTIONS(1754), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_if] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1758), - [aux_sym__val_number_decimal_token2] = ACTIONS(1760), - [aux_sym__val_number_decimal_token3] = ACTIONS(1762), - [aux_sym__val_number_decimal_token4] = ACTIONS(1764), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [303] = { + [sym_comment] = STATE(303), + [aux_sym__block_body_repeat1] = STATE(238), + [anon_sym_export] = ACTIONS(1656), + [anon_sym_alias] = ACTIONS(1656), + [anon_sym_let] = ACTIONS(1656), + [anon_sym_let_DASHenv] = ACTIONS(1656), + [anon_sym_mut] = ACTIONS(1656), + [anon_sym_const] = ACTIONS(1656), + [aux_sym_cmd_identifier_token1] = ACTIONS(1656), + [aux_sym_cmd_identifier_token2] = ACTIONS(1656), + [aux_sym_cmd_identifier_token3] = ACTIONS(1656), + [aux_sym_cmd_identifier_token4] = ACTIONS(1656), + [aux_sym_cmd_identifier_token5] = ACTIONS(1656), + [aux_sym_cmd_identifier_token6] = ACTIONS(1656), + [aux_sym_cmd_identifier_token7] = ACTIONS(1656), + [aux_sym_cmd_identifier_token8] = ACTIONS(1656), + [aux_sym_cmd_identifier_token9] = ACTIONS(1656), + [aux_sym_cmd_identifier_token10] = ACTIONS(1656), + [aux_sym_cmd_identifier_token11] = ACTIONS(1656), + [aux_sym_cmd_identifier_token12] = ACTIONS(1656), + [aux_sym_cmd_identifier_token13] = ACTIONS(1656), + [aux_sym_cmd_identifier_token14] = ACTIONS(1656), + [aux_sym_cmd_identifier_token15] = ACTIONS(1656), + [aux_sym_cmd_identifier_token16] = ACTIONS(1656), + [aux_sym_cmd_identifier_token17] = ACTIONS(1656), + [aux_sym_cmd_identifier_token18] = ACTIONS(1656), + [aux_sym_cmd_identifier_token19] = ACTIONS(1656), + [aux_sym_cmd_identifier_token20] = ACTIONS(1656), + [aux_sym_cmd_identifier_token21] = ACTIONS(1656), + [aux_sym_cmd_identifier_token22] = ACTIONS(1656), + [aux_sym_cmd_identifier_token23] = ACTIONS(1656), + [aux_sym_cmd_identifier_token24] = ACTIONS(1658), + [aux_sym_cmd_identifier_token25] = ACTIONS(1656), + [aux_sym_cmd_identifier_token26] = ACTIONS(1658), + [aux_sym_cmd_identifier_token27] = ACTIONS(1656), + [aux_sym_cmd_identifier_token28] = ACTIONS(1656), + [aux_sym_cmd_identifier_token29] = ACTIONS(1656), + [aux_sym_cmd_identifier_token30] = ACTIONS(1656), + [aux_sym_cmd_identifier_token31] = ACTIONS(1658), + [aux_sym_cmd_identifier_token32] = ACTIONS(1658), + [aux_sym_cmd_identifier_token33] = ACTIONS(1658), + [aux_sym_cmd_identifier_token34] = ACTIONS(1658), + [aux_sym_cmd_identifier_token35] = ACTIONS(1658), + [aux_sym_cmd_identifier_token36] = ACTIONS(1656), + [anon_sym_true] = ACTIONS(1658), + [anon_sym_false] = ACTIONS(1658), + [anon_sym_null] = ACTIONS(1658), + [aux_sym_cmd_identifier_token38] = ACTIONS(1656), + [aux_sym_cmd_identifier_token39] = ACTIONS(1658), + [aux_sym_cmd_identifier_token40] = ACTIONS(1658), + [sym__newline] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(147), + [anon_sym_def] = ACTIONS(1656), + [anon_sym_export_DASHenv] = ACTIONS(1656), + [anon_sym_extern] = ACTIONS(1656), + [anon_sym_module] = ACTIONS(1656), + [anon_sym_use] = ACTIONS(1656), + [anon_sym_LBRACK] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(1658), + [anon_sym_DOLLAR] = ACTIONS(1656), + [anon_sym_error] = ACTIONS(1656), + [anon_sym_DASH] = ACTIONS(1656), + [anon_sym_break] = ACTIONS(1656), + [anon_sym_continue] = ACTIONS(1656), + [anon_sym_for] = ACTIONS(1656), + [anon_sym_loop] = ACTIONS(1656), + [anon_sym_while] = ACTIONS(1656), + [anon_sym_do] = ACTIONS(1656), + [anon_sym_if] = ACTIONS(1656), + [anon_sym_match] = ACTIONS(1656), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_DOT_DOT] = ACTIONS(1656), + [anon_sym_try] = ACTIONS(1656), + [anon_sym_return] = ACTIONS(1656), + [anon_sym_source] = ACTIONS(1656), + [anon_sym_source_DASHenv] = ACTIONS(1656), + [anon_sym_register] = ACTIONS(1656), + [anon_sym_hide] = ACTIONS(1656), + [anon_sym_hide_DASHenv] = ACTIONS(1656), + [anon_sym_overlay] = ACTIONS(1656), + [anon_sym_where] = ACTIONS(1658), + [aux_sym_expr_unary_token1] = ACTIONS(1658), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1658), + [anon_sym_DOT_DOT_LT] = ACTIONS(1658), + [aux_sym__val_number_decimal_token1] = ACTIONS(1656), + [aux_sym__val_number_decimal_token2] = ACTIONS(1658), + [aux_sym__val_number_decimal_token3] = ACTIONS(1658), + [aux_sym__val_number_decimal_token4] = ACTIONS(1658), + [aux_sym__val_number_token1] = ACTIONS(1658), + [aux_sym__val_number_token2] = ACTIONS(1658), + [aux_sym__val_number_token3] = ACTIONS(1658), + [anon_sym_0b] = ACTIONS(1656), + [anon_sym_0o] = ACTIONS(1656), + [anon_sym_0x] = ACTIONS(1656), + [sym_val_date] = ACTIONS(1658), + [anon_sym_DQUOTE] = ACTIONS(1658), + [sym__str_single_quotes] = ACTIONS(1658), + [sym__str_back_ticks] = ACTIONS(1658), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1658), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1658), + [aux_sym_env_var_token1] = ACTIONS(1656), + [anon_sym_CARET] = ACTIONS(1658), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1658), }, - [300] = { - [sym_comment] = STATE(300), + [304] = { + [sym_comment] = STATE(304), + [ts_builtin_sym_end] = ACTIONS(1798), [anon_sym_export] = ACTIONS(1800), [anon_sym_alias] = ACTIONS(1800), [anon_sym_let] = ACTIONS(1800), @@ -110975,35 +112690,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token21] = ACTIONS(1800), [aux_sym_cmd_identifier_token22] = ACTIONS(1800), [aux_sym_cmd_identifier_token23] = ACTIONS(1800), - [aux_sym_cmd_identifier_token24] = ACTIONS(1802), + [aux_sym_cmd_identifier_token24] = ACTIONS(1798), [aux_sym_cmd_identifier_token25] = ACTIONS(1800), - [aux_sym_cmd_identifier_token26] = ACTIONS(1802), + [aux_sym_cmd_identifier_token26] = ACTIONS(1798), [aux_sym_cmd_identifier_token27] = ACTIONS(1800), [aux_sym_cmd_identifier_token28] = ACTIONS(1800), [aux_sym_cmd_identifier_token29] = ACTIONS(1800), [aux_sym_cmd_identifier_token30] = ACTIONS(1800), - [aux_sym_cmd_identifier_token31] = ACTIONS(1802), - [aux_sym_cmd_identifier_token32] = ACTIONS(1802), - [aux_sym_cmd_identifier_token33] = ACTIONS(1802), - [aux_sym_cmd_identifier_token34] = ACTIONS(1802), - [aux_sym_cmd_identifier_token35] = ACTIONS(1802), + [aux_sym_cmd_identifier_token31] = ACTIONS(1798), + [aux_sym_cmd_identifier_token32] = ACTIONS(1798), + [aux_sym_cmd_identifier_token33] = ACTIONS(1798), + [aux_sym_cmd_identifier_token34] = ACTIONS(1798), + [aux_sym_cmd_identifier_token35] = ACTIONS(1798), [aux_sym_cmd_identifier_token36] = ACTIONS(1800), - [anon_sym_true] = ACTIONS(1802), - [anon_sym_false] = ACTIONS(1802), - [anon_sym_null] = ACTIONS(1802), + [anon_sym_true] = ACTIONS(1798), + [anon_sym_false] = ACTIONS(1798), + [anon_sym_null] = ACTIONS(1798), [aux_sym_cmd_identifier_token38] = ACTIONS(1800), - [aux_sym_cmd_identifier_token39] = ACTIONS(1802), - [aux_sym_cmd_identifier_token40] = ACTIONS(1802), - [sym__newline] = ACTIONS(1804), - [anon_sym_SEMI] = ACTIONS(1804), + [aux_sym_cmd_identifier_token39] = ACTIONS(1798), + [aux_sym_cmd_identifier_token40] = ACTIONS(1798), + [sym__newline] = ACTIONS(1798), + [anon_sym_SEMI] = ACTIONS(1798), [anon_sym_def] = ACTIONS(1800), [anon_sym_export_DASHenv] = ACTIONS(1800), [anon_sym_extern] = ACTIONS(1800), [anon_sym_module] = ACTIONS(1800), [anon_sym_use] = ACTIONS(1800), - [anon_sym_LBRACK] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_RPAREN] = ACTIONS(1309), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), [anon_sym_DOLLAR] = ACTIONS(1800), [anon_sym_error] = ACTIONS(1800), [anon_sym_DASH] = ACTIONS(1800), @@ -111015,7 +112729,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_do] = ACTIONS(1800), [anon_sym_if] = ACTIONS(1800), [anon_sym_match] = ACTIONS(1800), - [anon_sym_LBRACE] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1798), [anon_sym_DOT_DOT] = ACTIONS(1800), [anon_sym_try] = ACTIONS(1800), [anon_sym_return] = ACTIONS(1800), @@ -111025,1712 +112739,775 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(1800), [anon_sym_hide_DASHenv] = ACTIONS(1800), [anon_sym_overlay] = ACTIONS(1800), - [anon_sym_where] = ACTIONS(1802), - [aux_sym_expr_unary_token1] = ACTIONS(1802), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1802), - [anon_sym_DOT_DOT_LT] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1798), + [aux_sym_expr_unary_token1] = ACTIONS(1798), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1798), + [anon_sym_DOT_DOT_LT] = ACTIONS(1798), [aux_sym__val_number_decimal_token1] = ACTIONS(1800), - [aux_sym__val_number_decimal_token2] = ACTIONS(1802), - [aux_sym__val_number_decimal_token3] = ACTIONS(1802), - [aux_sym__val_number_decimal_token4] = ACTIONS(1802), - [aux_sym__val_number_token1] = ACTIONS(1802), - [aux_sym__val_number_token2] = ACTIONS(1802), - [aux_sym__val_number_token3] = ACTIONS(1802), + [aux_sym__val_number_decimal_token2] = ACTIONS(1798), + [aux_sym__val_number_decimal_token3] = ACTIONS(1798), + [aux_sym__val_number_decimal_token4] = ACTIONS(1798), + [aux_sym__val_number_token1] = ACTIONS(1798), + [aux_sym__val_number_token2] = ACTIONS(1798), + [aux_sym__val_number_token3] = ACTIONS(1798), [anon_sym_0b] = ACTIONS(1800), [anon_sym_0o] = ACTIONS(1800), [anon_sym_0x] = ACTIONS(1800), - [sym_val_date] = ACTIONS(1802), - [anon_sym_DQUOTE] = ACTIONS(1802), - [sym__str_single_quotes] = ACTIONS(1802), - [sym__str_back_ticks] = ACTIONS(1802), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1802), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1802), + [sym_val_date] = ACTIONS(1798), + [anon_sym_DQUOTE] = ACTIONS(1798), + [sym__str_single_quotes] = ACTIONS(1798), + [sym__str_back_ticks] = ACTIONS(1798), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1798), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1798), [aux_sym_env_var_token1] = ACTIONS(1800), - [anon_sym_CARET] = ACTIONS(1802), - [anon_sym_POUND] = ACTIONS(247), - }, - [301] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5029), - [sym_block] = STATE(5030), - [sym__expression_parenthesized] = STATE(5030), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3783), - [sym_expr_parenthesized] = STATE(2023), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(2013), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3070), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_command] = STATE(5030), - [sym_comment] = STATE(301), - [aux_sym_shebang_repeat1] = STATE(1061), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(1746), - [anon_sym_false] = ACTIONS(1746), - [anon_sym_null] = ACTIONS(1748), - [aux_sym_cmd_identifier_token38] = ACTIONS(1750), - [aux_sym_cmd_identifier_token39] = ACTIONS(1752), - [aux_sym_cmd_identifier_token40] = ACTIONS(1752), - [sym__newline] = ACTIONS(1754), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_if] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1758), - [aux_sym__val_number_decimal_token2] = ACTIONS(1760), - [aux_sym__val_number_decimal_token3] = ACTIONS(1762), - [aux_sym__val_number_decimal_token4] = ACTIONS(1764), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - }, - [302] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5031), - [sym_block] = STATE(5032), - [sym__expression_parenthesized] = STATE(5032), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3783), - [sym_expr_parenthesized] = STATE(2023), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(2013), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3070), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_command] = STATE(5032), - [sym_comment] = STATE(302), - [aux_sym_shebang_repeat1] = STATE(1061), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(1746), - [anon_sym_false] = ACTIONS(1746), - [anon_sym_null] = ACTIONS(1748), - [aux_sym_cmd_identifier_token38] = ACTIONS(1750), - [aux_sym_cmd_identifier_token39] = ACTIONS(1752), - [aux_sym_cmd_identifier_token40] = ACTIONS(1752), - [sym__newline] = ACTIONS(1754), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_if] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1758), - [aux_sym__val_number_decimal_token2] = ACTIONS(1760), - [aux_sym__val_number_decimal_token3] = ACTIONS(1762), - [aux_sym__val_number_decimal_token4] = ACTIONS(1764), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - }, - [303] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5031), - [sym_block] = STATE(5032), - [sym__expression_parenthesized] = STATE(5032), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3783), - [sym_expr_parenthesized] = STATE(2023), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(2013), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3070), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_command] = STATE(5032), - [sym_comment] = STATE(303), - [aux_sym_shebang_repeat1] = STATE(308), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(1746), - [anon_sym_false] = ACTIONS(1746), - [anon_sym_null] = ACTIONS(1748), - [aux_sym_cmd_identifier_token38] = ACTIONS(1750), - [aux_sym_cmd_identifier_token39] = ACTIONS(1752), - [aux_sym_cmd_identifier_token40] = ACTIONS(1752), - [sym__newline] = ACTIONS(1754), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_if] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1758), - [aux_sym__val_number_decimal_token2] = ACTIONS(1760), - [aux_sym__val_number_decimal_token3] = ACTIONS(1762), - [aux_sym__val_number_decimal_token4] = ACTIONS(1764), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - }, - [304] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5033), - [sym_block] = STATE(5034), - [sym__expression_parenthesized] = STATE(5034), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3783), - [sym_expr_parenthesized] = STATE(2023), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(2013), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3070), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_command] = STATE(5034), - [sym_comment] = STATE(304), - [aux_sym_shebang_repeat1] = STATE(1061), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(1746), - [anon_sym_false] = ACTIONS(1746), - [anon_sym_null] = ACTIONS(1748), - [aux_sym_cmd_identifier_token38] = ACTIONS(1750), - [aux_sym_cmd_identifier_token39] = ACTIONS(1752), - [aux_sym_cmd_identifier_token40] = ACTIONS(1752), - [sym__newline] = ACTIONS(1754), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_if] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1758), - [aux_sym__val_number_decimal_token2] = ACTIONS(1760), - [aux_sym__val_number_decimal_token3] = ACTIONS(1762), - [aux_sym__val_number_decimal_token4] = ACTIONS(1764), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_CARET] = ACTIONS(1798), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1798), }, [305] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5033), - [sym_block] = STATE(5034), - [sym__expression_parenthesized] = STATE(5034), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3783), - [sym_expr_parenthesized] = STATE(2023), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(2013), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3070), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_command] = STATE(5034), [sym_comment] = STATE(305), - [aux_sym_shebang_repeat1] = STATE(310), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(1746), - [anon_sym_false] = ACTIONS(1746), - [anon_sym_null] = ACTIONS(1748), - [aux_sym_cmd_identifier_token38] = ACTIONS(1750), - [aux_sym_cmd_identifier_token39] = ACTIONS(1752), - [aux_sym_cmd_identifier_token40] = ACTIONS(1752), - [sym__newline] = ACTIONS(1754), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_if] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1758), - [aux_sym__val_number_decimal_token2] = ACTIONS(1760), - [aux_sym__val_number_decimal_token3] = ACTIONS(1762), - [aux_sym__val_number_decimal_token4] = ACTIONS(1764), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(1802), + [anon_sym_alias] = ACTIONS(1802), + [anon_sym_let] = ACTIONS(1802), + [anon_sym_let_DASHenv] = ACTIONS(1802), + [anon_sym_mut] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1802), + [aux_sym_cmd_identifier_token1] = ACTIONS(1802), + [aux_sym_cmd_identifier_token2] = ACTIONS(1802), + [aux_sym_cmd_identifier_token3] = ACTIONS(1802), + [aux_sym_cmd_identifier_token4] = ACTIONS(1802), + [aux_sym_cmd_identifier_token5] = ACTIONS(1802), + [aux_sym_cmd_identifier_token6] = ACTIONS(1802), + [aux_sym_cmd_identifier_token7] = ACTIONS(1802), + [aux_sym_cmd_identifier_token8] = ACTIONS(1802), + [aux_sym_cmd_identifier_token9] = ACTIONS(1802), + [aux_sym_cmd_identifier_token10] = ACTIONS(1802), + [aux_sym_cmd_identifier_token11] = ACTIONS(1802), + [aux_sym_cmd_identifier_token12] = ACTIONS(1802), + [aux_sym_cmd_identifier_token13] = ACTIONS(1802), + [aux_sym_cmd_identifier_token14] = ACTIONS(1802), + [aux_sym_cmd_identifier_token15] = ACTIONS(1802), + [aux_sym_cmd_identifier_token16] = ACTIONS(1802), + [aux_sym_cmd_identifier_token17] = ACTIONS(1802), + [aux_sym_cmd_identifier_token18] = ACTIONS(1802), + [aux_sym_cmd_identifier_token19] = ACTIONS(1802), + [aux_sym_cmd_identifier_token20] = ACTIONS(1802), + [aux_sym_cmd_identifier_token21] = ACTIONS(1802), + [aux_sym_cmd_identifier_token22] = ACTIONS(1802), + [aux_sym_cmd_identifier_token23] = ACTIONS(1802), + [aux_sym_cmd_identifier_token24] = ACTIONS(1804), + [aux_sym_cmd_identifier_token25] = ACTIONS(1802), + [aux_sym_cmd_identifier_token26] = ACTIONS(1804), + [aux_sym_cmd_identifier_token27] = ACTIONS(1802), + [aux_sym_cmd_identifier_token28] = ACTIONS(1802), + [aux_sym_cmd_identifier_token29] = ACTIONS(1802), + [aux_sym_cmd_identifier_token30] = ACTIONS(1802), + [aux_sym_cmd_identifier_token31] = ACTIONS(1804), + [aux_sym_cmd_identifier_token32] = ACTIONS(1804), + [aux_sym_cmd_identifier_token33] = ACTIONS(1804), + [aux_sym_cmd_identifier_token34] = ACTIONS(1804), + [aux_sym_cmd_identifier_token35] = ACTIONS(1804), + [aux_sym_cmd_identifier_token36] = ACTIONS(1802), + [anon_sym_true] = ACTIONS(1804), + [anon_sym_false] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1804), + [aux_sym_cmd_identifier_token38] = ACTIONS(1802), + [aux_sym_cmd_identifier_token39] = ACTIONS(1804), + [aux_sym_cmd_identifier_token40] = ACTIONS(1804), + [sym__newline] = ACTIONS(1806), + [anon_sym_SEMI] = ACTIONS(1806), + [anon_sym_def] = ACTIONS(1802), + [anon_sym_export_DASHenv] = ACTIONS(1802), + [anon_sym_extern] = ACTIONS(1802), + [anon_sym_module] = ACTIONS(1802), + [anon_sym_use] = ACTIONS(1802), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_RPAREN] = ACTIONS(1366), + [anon_sym_DOLLAR] = ACTIONS(1802), + [anon_sym_error] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_for] = ACTIONS(1802), + [anon_sym_loop] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_do] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_match] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_DOT_DOT] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_source] = ACTIONS(1802), + [anon_sym_source_DASHenv] = ACTIONS(1802), + [anon_sym_register] = ACTIONS(1802), + [anon_sym_hide] = ACTIONS(1802), + [anon_sym_hide_DASHenv] = ACTIONS(1802), + [anon_sym_overlay] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1804), + [aux_sym_expr_unary_token1] = ACTIONS(1804), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1804), + [anon_sym_DOT_DOT_LT] = ACTIONS(1804), + [aux_sym__val_number_decimal_token1] = ACTIONS(1802), + [aux_sym__val_number_decimal_token2] = ACTIONS(1804), + [aux_sym__val_number_decimal_token3] = ACTIONS(1804), + [aux_sym__val_number_decimal_token4] = ACTIONS(1804), + [aux_sym__val_number_token1] = ACTIONS(1804), + [aux_sym__val_number_token2] = ACTIONS(1804), + [aux_sym__val_number_token3] = ACTIONS(1804), + [anon_sym_0b] = ACTIONS(1802), + [anon_sym_0o] = ACTIONS(1802), + [anon_sym_0x] = ACTIONS(1802), + [sym_val_date] = ACTIONS(1804), + [anon_sym_DQUOTE] = ACTIONS(1804), + [sym__str_single_quotes] = ACTIONS(1804), + [sym__str_back_ticks] = ACTIONS(1804), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1804), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1804), + [aux_sym_env_var_token1] = ACTIONS(1802), + [anon_sym_CARET] = ACTIONS(1804), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1804), }, [306] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5035), - [sym_block] = STATE(5036), - [sym__expression_parenthesized] = STATE(5036), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3783), - [sym_expr_parenthesized] = STATE(2023), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(2013), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3070), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_command] = STATE(5036), [sym_comment] = STATE(306), - [aux_sym_shebang_repeat1] = STATE(1061), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(1746), - [anon_sym_false] = ACTIONS(1746), - [anon_sym_null] = ACTIONS(1748), - [aux_sym_cmd_identifier_token38] = ACTIONS(1750), - [aux_sym_cmd_identifier_token39] = ACTIONS(1752), - [aux_sym_cmd_identifier_token40] = ACTIONS(1752), - [sym__newline] = ACTIONS(1754), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_if] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1758), - [aux_sym__val_number_decimal_token2] = ACTIONS(1760), - [aux_sym__val_number_decimal_token3] = ACTIONS(1762), - [aux_sym__val_number_decimal_token4] = ACTIONS(1764), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(1769), + [anon_sym_alias] = ACTIONS(1769), + [anon_sym_let] = ACTIONS(1769), + [anon_sym_let_DASHenv] = ACTIONS(1769), + [anon_sym_mut] = ACTIONS(1769), + [anon_sym_const] = ACTIONS(1769), + [aux_sym_cmd_identifier_token1] = ACTIONS(1769), + [aux_sym_cmd_identifier_token2] = ACTIONS(1769), + [aux_sym_cmd_identifier_token3] = ACTIONS(1769), + [aux_sym_cmd_identifier_token4] = ACTIONS(1769), + [aux_sym_cmd_identifier_token5] = ACTIONS(1769), + [aux_sym_cmd_identifier_token6] = ACTIONS(1769), + [aux_sym_cmd_identifier_token7] = ACTIONS(1769), + [aux_sym_cmd_identifier_token8] = ACTIONS(1769), + [aux_sym_cmd_identifier_token9] = ACTIONS(1769), + [aux_sym_cmd_identifier_token10] = ACTIONS(1769), + [aux_sym_cmd_identifier_token11] = ACTIONS(1769), + [aux_sym_cmd_identifier_token12] = ACTIONS(1769), + [aux_sym_cmd_identifier_token13] = ACTIONS(1769), + [aux_sym_cmd_identifier_token14] = ACTIONS(1769), + [aux_sym_cmd_identifier_token15] = ACTIONS(1769), + [aux_sym_cmd_identifier_token16] = ACTIONS(1769), + [aux_sym_cmd_identifier_token17] = ACTIONS(1769), + [aux_sym_cmd_identifier_token18] = ACTIONS(1769), + [aux_sym_cmd_identifier_token19] = ACTIONS(1769), + [aux_sym_cmd_identifier_token20] = ACTIONS(1769), + [aux_sym_cmd_identifier_token21] = ACTIONS(1769), + [aux_sym_cmd_identifier_token22] = ACTIONS(1769), + [aux_sym_cmd_identifier_token23] = ACTIONS(1769), + [aux_sym_cmd_identifier_token24] = ACTIONS(1769), + [aux_sym_cmd_identifier_token25] = ACTIONS(1769), + [aux_sym_cmd_identifier_token26] = ACTIONS(1769), + [aux_sym_cmd_identifier_token27] = ACTIONS(1769), + [aux_sym_cmd_identifier_token28] = ACTIONS(1769), + [aux_sym_cmd_identifier_token29] = ACTIONS(1769), + [aux_sym_cmd_identifier_token30] = ACTIONS(1769), + [aux_sym_cmd_identifier_token31] = ACTIONS(1769), + [aux_sym_cmd_identifier_token32] = ACTIONS(1769), + [aux_sym_cmd_identifier_token33] = ACTIONS(1769), + [aux_sym_cmd_identifier_token34] = ACTIONS(1769), + [aux_sym_cmd_identifier_token35] = ACTIONS(1769), + [aux_sym_cmd_identifier_token36] = ACTIONS(1769), + [anon_sym_true] = ACTIONS(1771), + [anon_sym_false] = ACTIONS(1771), + [anon_sym_null] = ACTIONS(1771), + [aux_sym_cmd_identifier_token38] = ACTIONS(1769), + [aux_sym_cmd_identifier_token39] = ACTIONS(1771), + [aux_sym_cmd_identifier_token40] = ACTIONS(1771), + [anon_sym_def] = ACTIONS(1769), + [anon_sym_export_DASHenv] = ACTIONS(1769), + [anon_sym_extern] = ACTIONS(1769), + [anon_sym_module] = ACTIONS(1769), + [anon_sym_use] = ACTIONS(1769), + [anon_sym_LPAREN] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_error] = ACTIONS(1769), + [anon_sym_list] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_break] = ACTIONS(1769), + [anon_sym_continue] = ACTIONS(1769), + [anon_sym_for] = ACTIONS(1769), + [anon_sym_in] = ACTIONS(1769), + [anon_sym_loop] = ACTIONS(1769), + [anon_sym_make] = ACTIONS(1769), + [anon_sym_while] = ACTIONS(1769), + [anon_sym_do] = ACTIONS(1769), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_else] = ACTIONS(1769), + [anon_sym_match] = ACTIONS(1769), + [anon_sym_RBRACE] = ACTIONS(1771), + [anon_sym_try] = ACTIONS(1769), + [anon_sym_catch] = ACTIONS(1769), + [anon_sym_return] = ACTIONS(1769), + [anon_sym_source] = ACTIONS(1769), + [anon_sym_source_DASHenv] = ACTIONS(1769), + [anon_sym_register] = ACTIONS(1769), + [anon_sym_hide] = ACTIONS(1769), + [anon_sym_hide_DASHenv] = ACTIONS(1769), + [anon_sym_overlay] = ACTIONS(1769), + [anon_sym_new] = ACTIONS(1769), + [anon_sym_as] = ACTIONS(1769), + [anon_sym_LPAREN2] = ACTIONS(1771), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1771), + [anon_sym_DOT_DOT2] = ACTIONS(1769), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1771), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1771), + [aux_sym__immediate_decimal_token2] = ACTIONS(1809), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1771), + [aux_sym__val_number_decimal_token1] = ACTIONS(1769), + [aux_sym__val_number_decimal_token2] = ACTIONS(1771), + [aux_sym__val_number_decimal_token3] = ACTIONS(1771), + [aux_sym__val_number_decimal_token4] = ACTIONS(1771), + [aux_sym__val_number_token1] = ACTIONS(1771), + [aux_sym__val_number_token2] = ACTIONS(1771), + [aux_sym__val_number_token3] = ACTIONS(1771), + [anon_sym_DQUOTE] = ACTIONS(1771), + [sym__str_single_quotes] = ACTIONS(1771), + [sym__str_back_ticks] = ACTIONS(1771), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1769), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1769), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1771), }, [307] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5035), - [sym_block] = STATE(5036), - [sym__expression_parenthesized] = STATE(5036), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3783), - [sym_expr_parenthesized] = STATE(2023), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(2013), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3070), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_command] = STATE(5036), [sym_comment] = STATE(307), - [aux_sym_shebang_repeat1] = STATE(311), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(1746), - [anon_sym_false] = ACTIONS(1746), - [anon_sym_null] = ACTIONS(1748), - [aux_sym_cmd_identifier_token38] = ACTIONS(1750), - [aux_sym_cmd_identifier_token39] = ACTIONS(1752), - [aux_sym_cmd_identifier_token40] = ACTIONS(1752), - [sym__newline] = ACTIONS(1754), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_if] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1758), - [aux_sym__val_number_decimal_token2] = ACTIONS(1760), - [aux_sym__val_number_decimal_token3] = ACTIONS(1762), - [aux_sym__val_number_decimal_token4] = ACTIONS(1764), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(1062), + [anon_sym_alias] = ACTIONS(1062), + [anon_sym_let] = ACTIONS(1062), + [anon_sym_let_DASHenv] = ACTIONS(1062), + [anon_sym_mut] = ACTIONS(1062), + [anon_sym_const] = ACTIONS(1062), + [aux_sym_cmd_identifier_token1] = ACTIONS(1062), + [aux_sym_cmd_identifier_token2] = ACTIONS(1062), + [aux_sym_cmd_identifier_token3] = ACTIONS(1062), + [aux_sym_cmd_identifier_token4] = ACTIONS(1062), + [aux_sym_cmd_identifier_token5] = ACTIONS(1062), + [aux_sym_cmd_identifier_token6] = ACTIONS(1062), + [aux_sym_cmd_identifier_token7] = ACTIONS(1062), + [aux_sym_cmd_identifier_token8] = ACTIONS(1062), + [aux_sym_cmd_identifier_token9] = ACTIONS(1062), + [aux_sym_cmd_identifier_token10] = ACTIONS(1062), + [aux_sym_cmd_identifier_token11] = ACTIONS(1062), + [aux_sym_cmd_identifier_token12] = ACTIONS(1062), + [aux_sym_cmd_identifier_token13] = ACTIONS(1062), + [aux_sym_cmd_identifier_token14] = ACTIONS(1062), + [aux_sym_cmd_identifier_token15] = ACTIONS(1062), + [aux_sym_cmd_identifier_token16] = ACTIONS(1062), + [aux_sym_cmd_identifier_token17] = ACTIONS(1062), + [aux_sym_cmd_identifier_token18] = ACTIONS(1062), + [aux_sym_cmd_identifier_token19] = ACTIONS(1062), + [aux_sym_cmd_identifier_token20] = ACTIONS(1062), + [aux_sym_cmd_identifier_token21] = ACTIONS(1062), + [aux_sym_cmd_identifier_token22] = ACTIONS(1062), + [aux_sym_cmd_identifier_token23] = ACTIONS(1062), + [aux_sym_cmd_identifier_token24] = ACTIONS(1062), + [aux_sym_cmd_identifier_token25] = ACTIONS(1062), + [aux_sym_cmd_identifier_token26] = ACTIONS(1062), + [aux_sym_cmd_identifier_token27] = ACTIONS(1062), + [aux_sym_cmd_identifier_token28] = ACTIONS(1062), + [aux_sym_cmd_identifier_token29] = ACTIONS(1062), + [aux_sym_cmd_identifier_token30] = ACTIONS(1062), + [aux_sym_cmd_identifier_token31] = ACTIONS(1062), + [aux_sym_cmd_identifier_token32] = ACTIONS(1062), + [aux_sym_cmd_identifier_token33] = ACTIONS(1062), + [aux_sym_cmd_identifier_token34] = ACTIONS(1062), + [aux_sym_cmd_identifier_token35] = ACTIONS(1062), + [aux_sym_cmd_identifier_token36] = ACTIONS(1062), + [anon_sym_true] = ACTIONS(1062), + [anon_sym_false] = ACTIONS(1062), + [anon_sym_null] = ACTIONS(1062), + [aux_sym_cmd_identifier_token38] = ACTIONS(1062), + [aux_sym_cmd_identifier_token39] = ACTIONS(1062), + [aux_sym_cmd_identifier_token40] = ACTIONS(1062), + [anon_sym_def] = ACTIONS(1062), + [anon_sym_export_DASHenv] = ACTIONS(1062), + [anon_sym_extern] = ACTIONS(1062), + [anon_sym_module] = ACTIONS(1062), + [anon_sym_use] = ACTIONS(1062), + [anon_sym_LPAREN] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_error] = ACTIONS(1062), + [anon_sym_list] = ACTIONS(1062), + [anon_sym_DASH] = ACTIONS(1062), + [anon_sym_break] = ACTIONS(1062), + [anon_sym_continue] = ACTIONS(1062), + [anon_sym_for] = ACTIONS(1062), + [anon_sym_in] = ACTIONS(1062), + [anon_sym_loop] = ACTIONS(1062), + [anon_sym_make] = ACTIONS(1062), + [anon_sym_while] = ACTIONS(1062), + [anon_sym_do] = ACTIONS(1062), + [anon_sym_if] = ACTIONS(1062), + [anon_sym_else] = ACTIONS(1062), + [anon_sym_match] = ACTIONS(1062), + [anon_sym_RBRACE] = ACTIONS(1062), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_catch] = ACTIONS(1062), + [anon_sym_return] = ACTIONS(1062), + [anon_sym_source] = ACTIONS(1062), + [anon_sym_source_DASHenv] = ACTIONS(1062), + [anon_sym_register] = ACTIONS(1062), + [anon_sym_hide] = ACTIONS(1062), + [anon_sym_hide_DASHenv] = ACTIONS(1062), + [anon_sym_overlay] = ACTIONS(1062), + [anon_sym_new] = ACTIONS(1062), + [anon_sym_as] = ACTIONS(1062), + [anon_sym_QMARK2] = ACTIONS(1062), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1062), + [anon_sym_DOT_DOT2] = ACTIONS(1062), + [anon_sym_DOT] = ACTIONS(1062), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1064), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1064), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1062), + [aux_sym__val_number_decimal_token1] = ACTIONS(1062), + [aux_sym__val_number_decimal_token2] = ACTIONS(1062), + [aux_sym__val_number_decimal_token3] = ACTIONS(1062), + [aux_sym__val_number_decimal_token4] = ACTIONS(1062), + [aux_sym__val_number_token1] = ACTIONS(1062), + [aux_sym__val_number_token2] = ACTIONS(1062), + [aux_sym__val_number_token3] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1062), + [sym__str_single_quotes] = ACTIONS(1062), + [sym__str_back_ticks] = ACTIONS(1062), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1062), + [sym__entry_separator] = ACTIONS(1064), + [anon_sym_PLUS] = ACTIONS(1062), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1064), }, [308] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5038), - [sym_block] = STATE(5039), - [sym__expression_parenthesized] = STATE(5039), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3783), - [sym_expr_parenthesized] = STATE(2023), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(2013), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3070), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_command] = STATE(5039), [sym_comment] = STATE(308), - [aux_sym_shebang_repeat1] = STATE(1061), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(1746), - [anon_sym_false] = ACTIONS(1746), - [anon_sym_null] = ACTIONS(1748), - [aux_sym_cmd_identifier_token38] = ACTIONS(1750), - [aux_sym_cmd_identifier_token39] = ACTIONS(1752), - [aux_sym_cmd_identifier_token40] = ACTIONS(1752), - [sym__newline] = ACTIONS(1754), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_if] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1758), - [aux_sym__val_number_decimal_token2] = ACTIONS(1760), - [aux_sym__val_number_decimal_token3] = ACTIONS(1762), - [aux_sym__val_number_decimal_token4] = ACTIONS(1764), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(1715), + [anon_sym_alias] = ACTIONS(1715), + [anon_sym_let] = ACTIONS(1715), + [anon_sym_let_DASHenv] = ACTIONS(1715), + [anon_sym_mut] = ACTIONS(1715), + [anon_sym_const] = ACTIONS(1715), + [aux_sym_cmd_identifier_token1] = ACTIONS(1715), + [aux_sym_cmd_identifier_token2] = ACTIONS(1715), + [aux_sym_cmd_identifier_token3] = ACTIONS(1715), + [aux_sym_cmd_identifier_token4] = ACTIONS(1715), + [aux_sym_cmd_identifier_token5] = ACTIONS(1715), + [aux_sym_cmd_identifier_token6] = ACTIONS(1715), + [aux_sym_cmd_identifier_token7] = ACTIONS(1715), + [aux_sym_cmd_identifier_token8] = ACTIONS(1715), + [aux_sym_cmd_identifier_token9] = ACTIONS(1715), + [aux_sym_cmd_identifier_token10] = ACTIONS(1715), + [aux_sym_cmd_identifier_token11] = ACTIONS(1715), + [aux_sym_cmd_identifier_token12] = ACTIONS(1715), + [aux_sym_cmd_identifier_token13] = ACTIONS(1715), + [aux_sym_cmd_identifier_token14] = ACTIONS(1715), + [aux_sym_cmd_identifier_token15] = ACTIONS(1715), + [aux_sym_cmd_identifier_token16] = ACTIONS(1715), + [aux_sym_cmd_identifier_token17] = ACTIONS(1715), + [aux_sym_cmd_identifier_token18] = ACTIONS(1715), + [aux_sym_cmd_identifier_token19] = ACTIONS(1715), + [aux_sym_cmd_identifier_token20] = ACTIONS(1715), + [aux_sym_cmd_identifier_token21] = ACTIONS(1715), + [aux_sym_cmd_identifier_token22] = ACTIONS(1715), + [aux_sym_cmd_identifier_token23] = ACTIONS(1715), + [aux_sym_cmd_identifier_token24] = ACTIONS(1715), + [aux_sym_cmd_identifier_token25] = ACTIONS(1715), + [aux_sym_cmd_identifier_token26] = ACTIONS(1715), + [aux_sym_cmd_identifier_token27] = ACTIONS(1715), + [aux_sym_cmd_identifier_token28] = ACTIONS(1715), + [aux_sym_cmd_identifier_token29] = ACTIONS(1715), + [aux_sym_cmd_identifier_token30] = ACTIONS(1715), + [aux_sym_cmd_identifier_token31] = ACTIONS(1715), + [aux_sym_cmd_identifier_token32] = ACTIONS(1715), + [aux_sym_cmd_identifier_token33] = ACTIONS(1715), + [aux_sym_cmd_identifier_token34] = ACTIONS(1715), + [aux_sym_cmd_identifier_token35] = ACTIONS(1715), + [aux_sym_cmd_identifier_token36] = ACTIONS(1715), + [anon_sym_true] = ACTIONS(1715), + [anon_sym_false] = ACTIONS(1715), + [anon_sym_null] = ACTIONS(1715), + [aux_sym_cmd_identifier_token38] = ACTIONS(1715), + [aux_sym_cmd_identifier_token39] = ACTIONS(1715), + [aux_sym_cmd_identifier_token40] = ACTIONS(1715), + [anon_sym_def] = ACTIONS(1715), + [anon_sym_export_DASHenv] = ACTIONS(1715), + [anon_sym_extern] = ACTIONS(1715), + [anon_sym_module] = ACTIONS(1715), + [anon_sym_use] = ACTIONS(1715), + [anon_sym_LPAREN] = ACTIONS(1715), + [anon_sym_DOLLAR] = ACTIONS(1715), + [anon_sym_error] = ACTIONS(1715), + [anon_sym_list] = ACTIONS(1715), + [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_break] = ACTIONS(1715), + [anon_sym_continue] = ACTIONS(1715), + [anon_sym_for] = ACTIONS(1715), + [anon_sym_in] = ACTIONS(1715), + [anon_sym_loop] = ACTIONS(1715), + [anon_sym_make] = ACTIONS(1715), + [anon_sym_while] = ACTIONS(1715), + [anon_sym_do] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1715), + [anon_sym_else] = ACTIONS(1715), + [anon_sym_match] = ACTIONS(1715), + [anon_sym_RBRACE] = ACTIONS(1715), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_catch] = ACTIONS(1715), + [anon_sym_return] = ACTIONS(1715), + [anon_sym_source] = ACTIONS(1715), + [anon_sym_source_DASHenv] = ACTIONS(1715), + [anon_sym_register] = ACTIONS(1715), + [anon_sym_hide] = ACTIONS(1715), + [anon_sym_hide_DASHenv] = ACTIONS(1715), + [anon_sym_overlay] = ACTIONS(1715), + [anon_sym_new] = ACTIONS(1715), + [anon_sym_as] = ACTIONS(1715), + [anon_sym_LPAREN2] = ACTIONS(1717), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1715), + [anon_sym_DOT_DOT2] = ACTIONS(1715), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1717), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1717), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1715), + [aux_sym__val_number_decimal_token1] = ACTIONS(1715), + [aux_sym__val_number_decimal_token2] = ACTIONS(1715), + [aux_sym__val_number_decimal_token3] = ACTIONS(1715), + [aux_sym__val_number_decimal_token4] = ACTIONS(1715), + [aux_sym__val_number_token1] = ACTIONS(1715), + [aux_sym__val_number_token2] = ACTIONS(1715), + [aux_sym__val_number_token3] = ACTIONS(1715), + [anon_sym_DQUOTE] = ACTIONS(1715), + [sym__str_single_quotes] = ACTIONS(1715), + [sym__str_back_ticks] = ACTIONS(1715), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1715), + [sym__entry_separator] = ACTIONS(1717), + [anon_sym_PLUS] = ACTIONS(1715), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1715), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1717), }, [309] = { - [sym_cell_path] = STATE(546), - [sym_path] = STATE(456), [sym_comment] = STATE(309), - [aux_sym_cell_path_repeat1] = STATE(349), - [anon_sym_export] = ACTIONS(1005), - [anon_sym_alias] = ACTIONS(1005), - [anon_sym_let] = ACTIONS(1005), - [anon_sym_let_DASHenv] = ACTIONS(1005), - [anon_sym_mut] = ACTIONS(1005), - [anon_sym_const] = ACTIONS(1005), - [aux_sym_cmd_identifier_token1] = ACTIONS(1005), - [aux_sym_cmd_identifier_token2] = ACTIONS(1005), - [aux_sym_cmd_identifier_token3] = ACTIONS(1005), - [aux_sym_cmd_identifier_token4] = ACTIONS(1005), - [aux_sym_cmd_identifier_token5] = ACTIONS(1005), - [aux_sym_cmd_identifier_token6] = ACTIONS(1005), - [aux_sym_cmd_identifier_token7] = ACTIONS(1005), - [aux_sym_cmd_identifier_token8] = ACTIONS(1005), - [aux_sym_cmd_identifier_token9] = ACTIONS(1005), - [aux_sym_cmd_identifier_token10] = ACTIONS(1005), - [aux_sym_cmd_identifier_token11] = ACTIONS(1005), - [aux_sym_cmd_identifier_token12] = ACTIONS(1005), - [aux_sym_cmd_identifier_token13] = ACTIONS(1005), - [aux_sym_cmd_identifier_token14] = ACTIONS(1005), - [aux_sym_cmd_identifier_token15] = ACTIONS(1005), - [aux_sym_cmd_identifier_token16] = ACTIONS(1005), - [aux_sym_cmd_identifier_token17] = ACTIONS(1005), - [aux_sym_cmd_identifier_token18] = ACTIONS(1005), - [aux_sym_cmd_identifier_token19] = ACTIONS(1005), - [aux_sym_cmd_identifier_token20] = ACTIONS(1005), - [aux_sym_cmd_identifier_token21] = ACTIONS(1005), - [aux_sym_cmd_identifier_token22] = ACTIONS(1005), - [aux_sym_cmd_identifier_token23] = ACTIONS(1005), - [aux_sym_cmd_identifier_token24] = ACTIONS(1005), - [aux_sym_cmd_identifier_token25] = ACTIONS(1005), - [aux_sym_cmd_identifier_token26] = ACTIONS(1005), - [aux_sym_cmd_identifier_token27] = ACTIONS(1005), - [aux_sym_cmd_identifier_token28] = ACTIONS(1005), - [aux_sym_cmd_identifier_token29] = ACTIONS(1005), - [aux_sym_cmd_identifier_token30] = ACTIONS(1005), - [aux_sym_cmd_identifier_token31] = ACTIONS(1005), - [aux_sym_cmd_identifier_token32] = ACTIONS(1005), - [aux_sym_cmd_identifier_token33] = ACTIONS(1005), - [aux_sym_cmd_identifier_token34] = ACTIONS(1005), - [aux_sym_cmd_identifier_token35] = ACTIONS(1005), - [aux_sym_cmd_identifier_token36] = ACTIONS(1005), - [anon_sym_true] = ACTIONS(1007), - [anon_sym_false] = ACTIONS(1007), - [anon_sym_null] = ACTIONS(1007), - [aux_sym_cmd_identifier_token38] = ACTIONS(1005), - [aux_sym_cmd_identifier_token39] = ACTIONS(1007), - [aux_sym_cmd_identifier_token40] = ACTIONS(1007), - [anon_sym_def] = ACTIONS(1005), - [anon_sym_export_DASHenv] = ACTIONS(1005), - [anon_sym_extern] = ACTIONS(1005), - [anon_sym_module] = ACTIONS(1005), - [anon_sym_use] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1007), - [anon_sym_COMMA] = ACTIONS(1007), - [anon_sym_DOLLAR] = ACTIONS(1007), - [anon_sym_error] = ACTIONS(1005), - [anon_sym_list] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_break] = ACTIONS(1005), - [anon_sym_continue] = ACTIONS(1005), - [anon_sym_for] = ACTIONS(1005), - [anon_sym_in] = ACTIONS(1005), - [anon_sym_loop] = ACTIONS(1005), - [anon_sym_make] = ACTIONS(1005), - [anon_sym_while] = ACTIONS(1005), - [anon_sym_do] = ACTIONS(1005), - [anon_sym_if] = ACTIONS(1005), - [anon_sym_else] = ACTIONS(1005), - [anon_sym_match] = ACTIONS(1005), - [anon_sym_RBRACE] = ACTIONS(1007), - [anon_sym_try] = ACTIONS(1005), - [anon_sym_catch] = ACTIONS(1005), - [anon_sym_return] = ACTIONS(1005), - [anon_sym_source] = ACTIONS(1005), - [anon_sym_source_DASHenv] = ACTIONS(1005), - [anon_sym_register] = ACTIONS(1005), - [anon_sym_hide] = ACTIONS(1005), - [anon_sym_hide_DASHenv] = ACTIONS(1005), - [anon_sym_overlay] = ACTIONS(1005), - [anon_sym_new] = ACTIONS(1005), - [anon_sym_as] = ACTIONS(1005), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1007), - [anon_sym_DOT] = ACTIONS(1807), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1007), - [aux_sym__val_number_decimal_token1] = ACTIONS(1005), - [aux_sym__val_number_decimal_token2] = ACTIONS(1007), - [aux_sym__val_number_decimal_token3] = ACTIONS(1007), - [aux_sym__val_number_decimal_token4] = ACTIONS(1007), - [aux_sym__val_number_token1] = ACTIONS(1007), - [aux_sym__val_number_token2] = ACTIONS(1007), - [aux_sym__val_number_token3] = ACTIONS(1007), - [anon_sym_DQUOTE] = ACTIONS(1007), - [sym__str_single_quotes] = ACTIONS(1007), - [sym__str_back_ticks] = ACTIONS(1007), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1007), - [aux_sym_record_entry_token1] = ACTIONS(1007), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_POUND] = ACTIONS(247), - }, - [310] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5040), - [sym_block] = STATE(5041), - [sym__expression_parenthesized] = STATE(5041), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3783), - [sym_expr_parenthesized] = STATE(2023), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(2013), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3070), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_command] = STATE(5041), - [sym_comment] = STATE(310), - [aux_sym_shebang_repeat1] = STATE(1061), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(1746), - [anon_sym_false] = ACTIONS(1746), - [anon_sym_null] = ACTIONS(1748), - [aux_sym_cmd_identifier_token38] = ACTIONS(1750), - [aux_sym_cmd_identifier_token39] = ACTIONS(1752), - [aux_sym_cmd_identifier_token40] = ACTIONS(1752), - [sym__newline] = ACTIONS(1754), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_if] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1758), - [aux_sym__val_number_decimal_token2] = ACTIONS(1760), - [aux_sym__val_number_decimal_token3] = ACTIONS(1762), - [aux_sym__val_number_decimal_token4] = ACTIONS(1764), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - }, - [311] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5042), - [sym_block] = STATE(5043), - [sym__expression_parenthesized] = STATE(5043), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3783), - [sym_expr_parenthesized] = STATE(2023), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(2013), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3070), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_command] = STATE(5043), - [sym_comment] = STATE(311), - [aux_sym_shebang_repeat1] = STATE(1061), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(1746), - [anon_sym_false] = ACTIONS(1746), - [anon_sym_null] = ACTIONS(1748), - [aux_sym_cmd_identifier_token38] = ACTIONS(1750), - [aux_sym_cmd_identifier_token39] = ACTIONS(1752), - [aux_sym_cmd_identifier_token40] = ACTIONS(1752), - [sym__newline] = ACTIONS(1754), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_if] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1758), - [aux_sym__val_number_decimal_token2] = ACTIONS(1760), - [aux_sym__val_number_decimal_token3] = ACTIONS(1762), - [aux_sym__val_number_decimal_token4] = ACTIONS(1764), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - }, - [312] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5042), - [sym_block] = STATE(5043), - [sym__expression_parenthesized] = STATE(5043), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3783), - [sym_expr_parenthesized] = STATE(2023), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(2013), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3070), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_command] = STATE(5043), - [sym_comment] = STATE(312), - [aux_sym_shebang_repeat1] = STATE(313), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(1746), - [anon_sym_false] = ACTIONS(1746), - [anon_sym_null] = ACTIONS(1748), - [aux_sym_cmd_identifier_token38] = ACTIONS(1750), - [aux_sym_cmd_identifier_token39] = ACTIONS(1752), - [aux_sym_cmd_identifier_token40] = ACTIONS(1752), - [sym__newline] = ACTIONS(1754), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_if] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1758), - [aux_sym__val_number_decimal_token2] = ACTIONS(1760), - [aux_sym__val_number_decimal_token3] = ACTIONS(1762), - [aux_sym__val_number_decimal_token4] = ACTIONS(1764), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - }, - [313] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if_parenthesized] = STATE(5044), - [sym_block] = STATE(5045), - [sym__expression_parenthesized] = STATE(5045), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3783), - [sym_expr_parenthesized] = STATE(2023), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(2013), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3070), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_command] = STATE(5045), - [sym_comment] = STATE(313), - [aux_sym_shebang_repeat1] = STATE(1061), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(1746), - [anon_sym_false] = ACTIONS(1746), - [anon_sym_null] = ACTIONS(1748), - [aux_sym_cmd_identifier_token38] = ACTIONS(1750), - [aux_sym_cmd_identifier_token39] = ACTIONS(1752), - [aux_sym_cmd_identifier_token40] = ACTIONS(1752), - [sym__newline] = ACTIONS(1754), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_if] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(1756), - [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(1758), - [aux_sym__val_number_decimal_token2] = ACTIONS(1760), - [aux_sym__val_number_decimal_token3] = ACTIONS(1762), - [aux_sym__val_number_decimal_token4] = ACTIONS(1764), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), - }, - [314] = { - [sym_comment] = STATE(314), - [aux_sym_shebang_repeat1] = STATE(267), - [anon_sym_export] = ACTIONS(1809), - [anon_sym_alias] = ACTIONS(1809), - [anon_sym_let] = ACTIONS(1809), - [anon_sym_let_DASHenv] = ACTIONS(1809), - [anon_sym_mut] = ACTIONS(1809), - [anon_sym_const] = ACTIONS(1809), - [aux_sym_cmd_identifier_token1] = ACTIONS(1809), - [aux_sym_cmd_identifier_token2] = ACTIONS(1809), - [aux_sym_cmd_identifier_token3] = ACTIONS(1809), - [aux_sym_cmd_identifier_token4] = ACTIONS(1809), - [aux_sym_cmd_identifier_token5] = ACTIONS(1809), - [aux_sym_cmd_identifier_token6] = ACTIONS(1809), - [aux_sym_cmd_identifier_token7] = ACTIONS(1809), - [aux_sym_cmd_identifier_token8] = ACTIONS(1809), - [aux_sym_cmd_identifier_token9] = ACTIONS(1809), - [aux_sym_cmd_identifier_token10] = ACTIONS(1809), - [aux_sym_cmd_identifier_token11] = ACTIONS(1809), - [aux_sym_cmd_identifier_token12] = ACTIONS(1809), - [aux_sym_cmd_identifier_token13] = ACTIONS(1809), - [aux_sym_cmd_identifier_token14] = ACTIONS(1809), - [aux_sym_cmd_identifier_token15] = ACTIONS(1809), - [aux_sym_cmd_identifier_token16] = ACTIONS(1809), - [aux_sym_cmd_identifier_token17] = ACTIONS(1809), - [aux_sym_cmd_identifier_token18] = ACTIONS(1809), - [aux_sym_cmd_identifier_token19] = ACTIONS(1809), - [aux_sym_cmd_identifier_token20] = ACTIONS(1809), - [aux_sym_cmd_identifier_token21] = ACTIONS(1809), - [aux_sym_cmd_identifier_token22] = ACTIONS(1809), - [aux_sym_cmd_identifier_token23] = ACTIONS(1809), + [ts_builtin_sym_end] = ACTIONS(1811), + [anon_sym_export] = ACTIONS(1813), + [anon_sym_alias] = ACTIONS(1813), + [anon_sym_let] = ACTIONS(1813), + [anon_sym_let_DASHenv] = ACTIONS(1813), + [anon_sym_mut] = ACTIONS(1813), + [anon_sym_const] = ACTIONS(1813), + [aux_sym_cmd_identifier_token1] = ACTIONS(1813), + [aux_sym_cmd_identifier_token2] = ACTIONS(1813), + [aux_sym_cmd_identifier_token3] = ACTIONS(1813), + [aux_sym_cmd_identifier_token4] = ACTIONS(1813), + [aux_sym_cmd_identifier_token5] = ACTIONS(1813), + [aux_sym_cmd_identifier_token6] = ACTIONS(1813), + [aux_sym_cmd_identifier_token7] = ACTIONS(1813), + [aux_sym_cmd_identifier_token8] = ACTIONS(1813), + [aux_sym_cmd_identifier_token9] = ACTIONS(1813), + [aux_sym_cmd_identifier_token10] = ACTIONS(1813), + [aux_sym_cmd_identifier_token11] = ACTIONS(1813), + [aux_sym_cmd_identifier_token12] = ACTIONS(1813), + [aux_sym_cmd_identifier_token13] = ACTIONS(1813), + [aux_sym_cmd_identifier_token14] = ACTIONS(1813), + [aux_sym_cmd_identifier_token15] = ACTIONS(1813), + [aux_sym_cmd_identifier_token16] = ACTIONS(1813), + [aux_sym_cmd_identifier_token17] = ACTIONS(1813), + [aux_sym_cmd_identifier_token18] = ACTIONS(1813), + [aux_sym_cmd_identifier_token19] = ACTIONS(1813), + [aux_sym_cmd_identifier_token20] = ACTIONS(1813), + [aux_sym_cmd_identifier_token21] = ACTIONS(1813), + [aux_sym_cmd_identifier_token22] = ACTIONS(1813), + [aux_sym_cmd_identifier_token23] = ACTIONS(1813), [aux_sym_cmd_identifier_token24] = ACTIONS(1811), - [aux_sym_cmd_identifier_token25] = ACTIONS(1809), + [aux_sym_cmd_identifier_token25] = ACTIONS(1813), [aux_sym_cmd_identifier_token26] = ACTIONS(1811), - [aux_sym_cmd_identifier_token27] = ACTIONS(1809), - [aux_sym_cmd_identifier_token28] = ACTIONS(1809), - [aux_sym_cmd_identifier_token29] = ACTIONS(1809), - [aux_sym_cmd_identifier_token30] = ACTIONS(1809), + [aux_sym_cmd_identifier_token27] = ACTIONS(1813), + [aux_sym_cmd_identifier_token28] = ACTIONS(1813), + [aux_sym_cmd_identifier_token29] = ACTIONS(1813), + [aux_sym_cmd_identifier_token30] = ACTIONS(1813), [aux_sym_cmd_identifier_token31] = ACTIONS(1811), [aux_sym_cmd_identifier_token32] = ACTIONS(1811), [aux_sym_cmd_identifier_token33] = ACTIONS(1811), [aux_sym_cmd_identifier_token34] = ACTIONS(1811), [aux_sym_cmd_identifier_token35] = ACTIONS(1811), - [aux_sym_cmd_identifier_token36] = ACTIONS(1809), + [aux_sym_cmd_identifier_token36] = ACTIONS(1813), [anon_sym_true] = ACTIONS(1811), [anon_sym_false] = ACTIONS(1811), [anon_sym_null] = ACTIONS(1811), - [aux_sym_cmd_identifier_token38] = ACTIONS(1809), + [aux_sym_cmd_identifier_token38] = ACTIONS(1813), [aux_sym_cmd_identifier_token39] = ACTIONS(1811), [aux_sym_cmd_identifier_token40] = ACTIONS(1811), - [sym__newline] = ACTIONS(1714), - [anon_sym_SEMI] = ACTIONS(1813), - [anon_sym_def] = ACTIONS(1809), - [anon_sym_export_DASHenv] = ACTIONS(1809), - [anon_sym_extern] = ACTIONS(1809), - [anon_sym_module] = ACTIONS(1809), - [anon_sym_use] = ACTIONS(1809), + [sym__newline] = ACTIONS(1811), + [anon_sym_SEMI] = ACTIONS(1811), + [anon_sym_def] = ACTIONS(1813), + [anon_sym_export_DASHenv] = ACTIONS(1813), + [anon_sym_extern] = ACTIONS(1813), + [anon_sym_module] = ACTIONS(1813), + [anon_sym_use] = ACTIONS(1813), [anon_sym_LBRACK] = ACTIONS(1811), [anon_sym_LPAREN] = ACTIONS(1811), - [anon_sym_DOLLAR] = ACTIONS(1809), - [anon_sym_error] = ACTIONS(1809), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_break] = ACTIONS(1809), - [anon_sym_continue] = ACTIONS(1809), - [anon_sym_for] = ACTIONS(1809), - [anon_sym_loop] = ACTIONS(1809), - [anon_sym_while] = ACTIONS(1809), - [anon_sym_do] = ACTIONS(1809), - [anon_sym_if] = ACTIONS(1809), - [anon_sym_match] = ACTIONS(1809), + [anon_sym_DOLLAR] = ACTIONS(1813), + [anon_sym_error] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_break] = ACTIONS(1813), + [anon_sym_continue] = ACTIONS(1813), + [anon_sym_for] = ACTIONS(1813), + [anon_sym_loop] = ACTIONS(1813), + [anon_sym_while] = ACTIONS(1813), + [anon_sym_do] = ACTIONS(1813), + [anon_sym_if] = ACTIONS(1813), + [anon_sym_match] = ACTIONS(1813), [anon_sym_LBRACE] = ACTIONS(1811), - [anon_sym_DOT_DOT] = ACTIONS(1809), - [anon_sym_try] = ACTIONS(1809), - [anon_sym_return] = ACTIONS(1809), - [anon_sym_source] = ACTIONS(1809), - [anon_sym_source_DASHenv] = ACTIONS(1809), - [anon_sym_register] = ACTIONS(1809), - [anon_sym_hide] = ACTIONS(1809), - [anon_sym_hide_DASHenv] = ACTIONS(1809), - [anon_sym_overlay] = ACTIONS(1809), + [anon_sym_DOT_DOT] = ACTIONS(1813), + [anon_sym_try] = ACTIONS(1813), + [anon_sym_return] = ACTIONS(1813), + [anon_sym_source] = ACTIONS(1813), + [anon_sym_source_DASHenv] = ACTIONS(1813), + [anon_sym_register] = ACTIONS(1813), + [anon_sym_hide] = ACTIONS(1813), + [anon_sym_hide_DASHenv] = ACTIONS(1813), + [anon_sym_overlay] = ACTIONS(1813), [anon_sym_where] = ACTIONS(1811), [aux_sym_expr_unary_token1] = ACTIONS(1811), [anon_sym_DOT_DOT_EQ] = ACTIONS(1811), [anon_sym_DOT_DOT_LT] = ACTIONS(1811), - [aux_sym__val_number_decimal_token1] = ACTIONS(1809), + [aux_sym__val_number_decimal_token1] = ACTIONS(1813), [aux_sym__val_number_decimal_token2] = ACTIONS(1811), [aux_sym__val_number_decimal_token3] = ACTIONS(1811), [aux_sym__val_number_decimal_token4] = ACTIONS(1811), [aux_sym__val_number_token1] = ACTIONS(1811), [aux_sym__val_number_token2] = ACTIONS(1811), [aux_sym__val_number_token3] = ACTIONS(1811), - [anon_sym_0b] = ACTIONS(1809), - [anon_sym_0o] = ACTIONS(1809), - [anon_sym_0x] = ACTIONS(1809), + [anon_sym_0b] = ACTIONS(1813), + [anon_sym_0o] = ACTIONS(1813), + [anon_sym_0x] = ACTIONS(1813), [sym_val_date] = ACTIONS(1811), [anon_sym_DQUOTE] = ACTIONS(1811), [sym__str_single_quotes] = ACTIONS(1811), [sym__str_back_ticks] = ACTIONS(1811), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1811), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1811), - [aux_sym_env_var_token1] = ACTIONS(1809), + [aux_sym_env_var_token1] = ACTIONS(1813), [anon_sym_CARET] = ACTIONS(1811), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1811), }, - [315] = { - [sym_path] = STATE(428), - [sym_comment] = STATE(315), - [aux_sym_cell_path_repeat1] = STATE(316), - [anon_sym_export] = ACTIONS(1011), - [anon_sym_alias] = ACTIONS(1011), - [anon_sym_let] = ACTIONS(1011), - [anon_sym_let_DASHenv] = ACTIONS(1011), - [anon_sym_mut] = ACTIONS(1011), - [anon_sym_const] = ACTIONS(1011), - [aux_sym_cmd_identifier_token1] = ACTIONS(1011), - [aux_sym_cmd_identifier_token2] = ACTIONS(1011), - [aux_sym_cmd_identifier_token3] = ACTIONS(1011), - [aux_sym_cmd_identifier_token4] = ACTIONS(1011), - [aux_sym_cmd_identifier_token5] = ACTIONS(1011), - [aux_sym_cmd_identifier_token6] = ACTIONS(1011), - [aux_sym_cmd_identifier_token7] = ACTIONS(1011), - [aux_sym_cmd_identifier_token8] = ACTIONS(1011), - [aux_sym_cmd_identifier_token9] = ACTIONS(1011), - [aux_sym_cmd_identifier_token10] = ACTIONS(1011), - [aux_sym_cmd_identifier_token11] = ACTIONS(1011), - [aux_sym_cmd_identifier_token12] = ACTIONS(1011), - [aux_sym_cmd_identifier_token13] = ACTIONS(1011), - [aux_sym_cmd_identifier_token14] = ACTIONS(1011), - [aux_sym_cmd_identifier_token15] = ACTIONS(1011), - [aux_sym_cmd_identifier_token16] = ACTIONS(1011), - [aux_sym_cmd_identifier_token17] = ACTIONS(1011), - [aux_sym_cmd_identifier_token18] = ACTIONS(1011), - [aux_sym_cmd_identifier_token19] = ACTIONS(1011), - [aux_sym_cmd_identifier_token20] = ACTIONS(1011), - [aux_sym_cmd_identifier_token21] = ACTIONS(1011), - [aux_sym_cmd_identifier_token22] = ACTIONS(1011), - [aux_sym_cmd_identifier_token23] = ACTIONS(1011), - [aux_sym_cmd_identifier_token24] = ACTIONS(1011), - [aux_sym_cmd_identifier_token25] = ACTIONS(1011), - [aux_sym_cmd_identifier_token26] = ACTIONS(1011), - [aux_sym_cmd_identifier_token27] = ACTIONS(1011), - [aux_sym_cmd_identifier_token28] = ACTIONS(1011), - [aux_sym_cmd_identifier_token29] = ACTIONS(1011), - [aux_sym_cmd_identifier_token30] = ACTIONS(1011), - [aux_sym_cmd_identifier_token31] = ACTIONS(1011), - [aux_sym_cmd_identifier_token32] = ACTIONS(1011), - [aux_sym_cmd_identifier_token33] = ACTIONS(1011), - [aux_sym_cmd_identifier_token34] = ACTIONS(1011), - [aux_sym_cmd_identifier_token35] = ACTIONS(1011), - [aux_sym_cmd_identifier_token36] = ACTIONS(1011), - [anon_sym_true] = ACTIONS(1013), - [anon_sym_false] = ACTIONS(1013), - [anon_sym_null] = ACTIONS(1013), - [aux_sym_cmd_identifier_token38] = ACTIONS(1011), - [aux_sym_cmd_identifier_token39] = ACTIONS(1013), - [aux_sym_cmd_identifier_token40] = ACTIONS(1013), - [anon_sym_def] = ACTIONS(1011), - [anon_sym_export_DASHenv] = ACTIONS(1011), - [anon_sym_extern] = ACTIONS(1011), - [anon_sym_module] = ACTIONS(1011), - [anon_sym_use] = ACTIONS(1011), - [anon_sym_LPAREN] = ACTIONS(1013), - [anon_sym_DOLLAR] = ACTIONS(1013), - [anon_sym_error] = ACTIONS(1011), - [anon_sym_list] = ACTIONS(1011), - [anon_sym_DASH] = ACTIONS(1011), - [anon_sym_break] = ACTIONS(1011), - [anon_sym_continue] = ACTIONS(1011), - [anon_sym_for] = ACTIONS(1011), - [anon_sym_in] = ACTIONS(1011), - [anon_sym_loop] = ACTIONS(1011), - [anon_sym_make] = ACTIONS(1011), - [anon_sym_while] = ACTIONS(1011), - [anon_sym_do] = ACTIONS(1011), - [anon_sym_if] = ACTIONS(1011), - [anon_sym_else] = ACTIONS(1011), - [anon_sym_match] = ACTIONS(1011), - [anon_sym_RBRACE] = ACTIONS(1013), - [anon_sym_try] = ACTIONS(1011), - [anon_sym_catch] = ACTIONS(1011), - [anon_sym_return] = ACTIONS(1011), - [anon_sym_source] = ACTIONS(1011), - [anon_sym_source_DASHenv] = ACTIONS(1011), - [anon_sym_register] = ACTIONS(1011), - [anon_sym_hide] = ACTIONS(1011), - [anon_sym_hide_DASHenv] = ACTIONS(1011), - [anon_sym_overlay] = ACTIONS(1011), - [anon_sym_new] = ACTIONS(1011), - [anon_sym_as] = ACTIONS(1011), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1013), - [anon_sym_DOT_DOT2] = ACTIONS(1011), - [anon_sym_DOT] = ACTIONS(1734), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1013), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1013), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1013), - [aux_sym__val_number_decimal_token1] = ACTIONS(1011), - [aux_sym__val_number_decimal_token2] = ACTIONS(1013), - [aux_sym__val_number_decimal_token3] = ACTIONS(1013), - [aux_sym__val_number_decimal_token4] = ACTIONS(1013), - [aux_sym__val_number_token1] = ACTIONS(1013), - [aux_sym__val_number_token2] = ACTIONS(1013), - [aux_sym__val_number_token3] = ACTIONS(1013), - [anon_sym_DQUOTE] = ACTIONS(1013), - [sym__str_single_quotes] = ACTIONS(1013), - [sym__str_back_ticks] = ACTIONS(1013), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(1011), - [anon_sym_POUND] = ACTIONS(247), + [310] = { + [sym_comment] = STATE(310), + [anon_sym_export] = ACTIONS(1703), + [anon_sym_alias] = ACTIONS(1703), + [anon_sym_let] = ACTIONS(1703), + [anon_sym_let_DASHenv] = ACTIONS(1703), + [anon_sym_mut] = ACTIONS(1703), + [anon_sym_const] = ACTIONS(1703), + [aux_sym_cmd_identifier_token1] = ACTIONS(1703), + [aux_sym_cmd_identifier_token2] = ACTIONS(1703), + [aux_sym_cmd_identifier_token3] = ACTIONS(1703), + [aux_sym_cmd_identifier_token4] = ACTIONS(1703), + [aux_sym_cmd_identifier_token5] = ACTIONS(1703), + [aux_sym_cmd_identifier_token6] = ACTIONS(1703), + [aux_sym_cmd_identifier_token7] = ACTIONS(1703), + [aux_sym_cmd_identifier_token8] = ACTIONS(1703), + [aux_sym_cmd_identifier_token9] = ACTIONS(1703), + [aux_sym_cmd_identifier_token10] = ACTIONS(1703), + [aux_sym_cmd_identifier_token11] = ACTIONS(1703), + [aux_sym_cmd_identifier_token12] = ACTIONS(1703), + [aux_sym_cmd_identifier_token13] = ACTIONS(1703), + [aux_sym_cmd_identifier_token14] = ACTIONS(1703), + [aux_sym_cmd_identifier_token15] = ACTIONS(1703), + [aux_sym_cmd_identifier_token16] = ACTIONS(1703), + [aux_sym_cmd_identifier_token17] = ACTIONS(1703), + [aux_sym_cmd_identifier_token18] = ACTIONS(1703), + [aux_sym_cmd_identifier_token19] = ACTIONS(1703), + [aux_sym_cmd_identifier_token20] = ACTIONS(1703), + [aux_sym_cmd_identifier_token21] = ACTIONS(1703), + [aux_sym_cmd_identifier_token22] = ACTIONS(1703), + [aux_sym_cmd_identifier_token23] = ACTIONS(1703), + [aux_sym_cmd_identifier_token24] = ACTIONS(1703), + [aux_sym_cmd_identifier_token25] = ACTIONS(1703), + [aux_sym_cmd_identifier_token26] = ACTIONS(1703), + [aux_sym_cmd_identifier_token27] = ACTIONS(1703), + [aux_sym_cmd_identifier_token28] = ACTIONS(1703), + [aux_sym_cmd_identifier_token29] = ACTIONS(1703), + [aux_sym_cmd_identifier_token30] = ACTIONS(1703), + [aux_sym_cmd_identifier_token31] = ACTIONS(1703), + [aux_sym_cmd_identifier_token32] = ACTIONS(1703), + [aux_sym_cmd_identifier_token33] = ACTIONS(1703), + [aux_sym_cmd_identifier_token34] = ACTIONS(1703), + [aux_sym_cmd_identifier_token35] = ACTIONS(1703), + [aux_sym_cmd_identifier_token36] = ACTIONS(1703), + [anon_sym_true] = ACTIONS(1703), + [anon_sym_false] = ACTIONS(1703), + [anon_sym_null] = ACTIONS(1703), + [aux_sym_cmd_identifier_token38] = ACTIONS(1703), + [aux_sym_cmd_identifier_token39] = ACTIONS(1703), + [aux_sym_cmd_identifier_token40] = ACTIONS(1703), + [anon_sym_def] = ACTIONS(1703), + [anon_sym_export_DASHenv] = ACTIONS(1703), + [anon_sym_extern] = ACTIONS(1703), + [anon_sym_module] = ACTIONS(1703), + [anon_sym_use] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1703), + [anon_sym_error] = ACTIONS(1703), + [anon_sym_list] = ACTIONS(1703), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_break] = ACTIONS(1703), + [anon_sym_continue] = ACTIONS(1703), + [anon_sym_for] = ACTIONS(1703), + [anon_sym_in] = ACTIONS(1703), + [anon_sym_loop] = ACTIONS(1703), + [anon_sym_make] = ACTIONS(1703), + [anon_sym_while] = ACTIONS(1703), + [anon_sym_do] = ACTIONS(1703), + [anon_sym_if] = ACTIONS(1703), + [anon_sym_else] = ACTIONS(1703), + [anon_sym_match] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1703), + [anon_sym_try] = ACTIONS(1703), + [anon_sym_catch] = ACTIONS(1703), + [anon_sym_return] = ACTIONS(1703), + [anon_sym_source] = ACTIONS(1703), + [anon_sym_source_DASHenv] = ACTIONS(1703), + [anon_sym_register] = ACTIONS(1703), + [anon_sym_hide] = ACTIONS(1703), + [anon_sym_hide_DASHenv] = ACTIONS(1703), + [anon_sym_overlay] = ACTIONS(1703), + [anon_sym_new] = ACTIONS(1703), + [anon_sym_as] = ACTIONS(1703), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1703), + [anon_sym_DOT_DOT2] = ACTIONS(1703), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1705), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1705), + [aux_sym__immediate_decimal_token1] = ACTIONS(1815), + [aux_sym__immediate_decimal_token2] = ACTIONS(1817), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1703), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1703), + [sym__entry_separator] = ACTIONS(1705), + [anon_sym_PLUS] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1705), }, - [316] = { - [sym_path] = STATE(428), - [sym_comment] = STATE(316), - [aux_sym_cell_path_repeat1] = STATE(316), - [anon_sym_export] = ACTIONS(1015), - [anon_sym_alias] = ACTIONS(1015), - [anon_sym_let] = ACTIONS(1015), - [anon_sym_let_DASHenv] = ACTIONS(1015), - [anon_sym_mut] = ACTIONS(1015), - [anon_sym_const] = ACTIONS(1015), - [aux_sym_cmd_identifier_token1] = ACTIONS(1015), - [aux_sym_cmd_identifier_token2] = ACTIONS(1015), - [aux_sym_cmd_identifier_token3] = ACTIONS(1015), - [aux_sym_cmd_identifier_token4] = ACTIONS(1015), - [aux_sym_cmd_identifier_token5] = ACTIONS(1015), - [aux_sym_cmd_identifier_token6] = ACTIONS(1015), - [aux_sym_cmd_identifier_token7] = ACTIONS(1015), - [aux_sym_cmd_identifier_token8] = ACTIONS(1015), - [aux_sym_cmd_identifier_token9] = ACTIONS(1015), - [aux_sym_cmd_identifier_token10] = ACTIONS(1015), - [aux_sym_cmd_identifier_token11] = ACTIONS(1015), - [aux_sym_cmd_identifier_token12] = ACTIONS(1015), - [aux_sym_cmd_identifier_token13] = ACTIONS(1015), - [aux_sym_cmd_identifier_token14] = ACTIONS(1015), - [aux_sym_cmd_identifier_token15] = ACTIONS(1015), - [aux_sym_cmd_identifier_token16] = ACTIONS(1015), - [aux_sym_cmd_identifier_token17] = ACTIONS(1015), - [aux_sym_cmd_identifier_token18] = ACTIONS(1015), - [aux_sym_cmd_identifier_token19] = ACTIONS(1015), - [aux_sym_cmd_identifier_token20] = ACTIONS(1015), - [aux_sym_cmd_identifier_token21] = ACTIONS(1015), - [aux_sym_cmd_identifier_token22] = ACTIONS(1015), - [aux_sym_cmd_identifier_token23] = ACTIONS(1015), - [aux_sym_cmd_identifier_token24] = ACTIONS(1015), - [aux_sym_cmd_identifier_token25] = ACTIONS(1015), - [aux_sym_cmd_identifier_token26] = ACTIONS(1015), - [aux_sym_cmd_identifier_token27] = ACTIONS(1015), - [aux_sym_cmd_identifier_token28] = ACTIONS(1015), - [aux_sym_cmd_identifier_token29] = ACTIONS(1015), - [aux_sym_cmd_identifier_token30] = ACTIONS(1015), - [aux_sym_cmd_identifier_token31] = ACTIONS(1015), - [aux_sym_cmd_identifier_token32] = ACTIONS(1015), - [aux_sym_cmd_identifier_token33] = ACTIONS(1015), - [aux_sym_cmd_identifier_token34] = ACTIONS(1015), - [aux_sym_cmd_identifier_token35] = ACTIONS(1015), - [aux_sym_cmd_identifier_token36] = ACTIONS(1015), - [anon_sym_true] = ACTIONS(1017), - [anon_sym_false] = ACTIONS(1017), - [anon_sym_null] = ACTIONS(1017), - [aux_sym_cmd_identifier_token38] = ACTIONS(1015), - [aux_sym_cmd_identifier_token39] = ACTIONS(1017), - [aux_sym_cmd_identifier_token40] = ACTIONS(1017), - [anon_sym_def] = ACTIONS(1015), - [anon_sym_export_DASHenv] = ACTIONS(1015), - [anon_sym_extern] = ACTIONS(1015), - [anon_sym_module] = ACTIONS(1015), - [anon_sym_use] = ACTIONS(1015), - [anon_sym_LPAREN] = ACTIONS(1017), - [anon_sym_DOLLAR] = ACTIONS(1017), - [anon_sym_error] = ACTIONS(1015), - [anon_sym_list] = ACTIONS(1015), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_break] = ACTIONS(1015), - [anon_sym_continue] = ACTIONS(1015), - [anon_sym_for] = ACTIONS(1015), - [anon_sym_in] = ACTIONS(1015), - [anon_sym_loop] = ACTIONS(1015), - [anon_sym_make] = ACTIONS(1015), - [anon_sym_while] = ACTIONS(1015), - [anon_sym_do] = ACTIONS(1015), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_else] = ACTIONS(1015), - [anon_sym_match] = ACTIONS(1015), - [anon_sym_RBRACE] = ACTIONS(1017), - [anon_sym_try] = ACTIONS(1015), - [anon_sym_catch] = ACTIONS(1015), - [anon_sym_return] = ACTIONS(1015), - [anon_sym_source] = ACTIONS(1015), - [anon_sym_source_DASHenv] = ACTIONS(1015), - [anon_sym_register] = ACTIONS(1015), - [anon_sym_hide] = ACTIONS(1015), - [anon_sym_hide_DASHenv] = ACTIONS(1015), - [anon_sym_overlay] = ACTIONS(1015), - [anon_sym_new] = ACTIONS(1015), - [anon_sym_as] = ACTIONS(1015), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1017), - [anon_sym_DOT_DOT2] = ACTIONS(1015), - [anon_sym_DOT] = ACTIONS(1815), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1017), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1017), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1017), - [aux_sym__val_number_decimal_token1] = ACTIONS(1015), - [aux_sym__val_number_decimal_token2] = ACTIONS(1017), - [aux_sym__val_number_decimal_token3] = ACTIONS(1017), - [aux_sym__val_number_decimal_token4] = ACTIONS(1017), - [aux_sym__val_number_token1] = ACTIONS(1017), - [aux_sym__val_number_token2] = ACTIONS(1017), - [aux_sym__val_number_token3] = ACTIONS(1017), - [anon_sym_DQUOTE] = ACTIONS(1017), - [sym__str_single_quotes] = ACTIONS(1017), - [sym__str_back_ticks] = ACTIONS(1017), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1017), - [anon_sym_PLUS] = ACTIONS(1015), - [anon_sym_POUND] = ACTIONS(247), + [311] = { + [sym_comment] = STATE(311), + [anon_sym_export] = ACTIONS(1054), + [anon_sym_alias] = ACTIONS(1054), + [anon_sym_let] = ACTIONS(1054), + [anon_sym_let_DASHenv] = ACTIONS(1054), + [anon_sym_mut] = ACTIONS(1054), + [anon_sym_const] = ACTIONS(1054), + [aux_sym_cmd_identifier_token1] = ACTIONS(1054), + [aux_sym_cmd_identifier_token2] = ACTIONS(1054), + [aux_sym_cmd_identifier_token3] = ACTIONS(1054), + [aux_sym_cmd_identifier_token4] = ACTIONS(1054), + [aux_sym_cmd_identifier_token5] = ACTIONS(1054), + [aux_sym_cmd_identifier_token6] = ACTIONS(1054), + [aux_sym_cmd_identifier_token7] = ACTIONS(1054), + [aux_sym_cmd_identifier_token8] = ACTIONS(1054), + [aux_sym_cmd_identifier_token9] = ACTIONS(1054), + [aux_sym_cmd_identifier_token10] = ACTIONS(1054), + [aux_sym_cmd_identifier_token11] = ACTIONS(1054), + [aux_sym_cmd_identifier_token12] = ACTIONS(1054), + [aux_sym_cmd_identifier_token13] = ACTIONS(1054), + [aux_sym_cmd_identifier_token14] = ACTIONS(1054), + [aux_sym_cmd_identifier_token15] = ACTIONS(1054), + [aux_sym_cmd_identifier_token16] = ACTIONS(1054), + [aux_sym_cmd_identifier_token17] = ACTIONS(1054), + [aux_sym_cmd_identifier_token18] = ACTIONS(1054), + [aux_sym_cmd_identifier_token19] = ACTIONS(1054), + [aux_sym_cmd_identifier_token20] = ACTIONS(1054), + [aux_sym_cmd_identifier_token21] = ACTIONS(1054), + [aux_sym_cmd_identifier_token22] = ACTIONS(1054), + [aux_sym_cmd_identifier_token23] = ACTIONS(1054), + [aux_sym_cmd_identifier_token24] = ACTIONS(1054), + [aux_sym_cmd_identifier_token25] = ACTIONS(1054), + [aux_sym_cmd_identifier_token26] = ACTIONS(1054), + [aux_sym_cmd_identifier_token27] = ACTIONS(1054), + [aux_sym_cmd_identifier_token28] = ACTIONS(1054), + [aux_sym_cmd_identifier_token29] = ACTIONS(1054), + [aux_sym_cmd_identifier_token30] = ACTIONS(1054), + [aux_sym_cmd_identifier_token31] = ACTIONS(1054), + [aux_sym_cmd_identifier_token32] = ACTIONS(1054), + [aux_sym_cmd_identifier_token33] = ACTIONS(1054), + [aux_sym_cmd_identifier_token34] = ACTIONS(1054), + [aux_sym_cmd_identifier_token35] = ACTIONS(1054), + [aux_sym_cmd_identifier_token36] = ACTIONS(1054), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_null] = ACTIONS(1054), + [aux_sym_cmd_identifier_token38] = ACTIONS(1054), + [aux_sym_cmd_identifier_token39] = ACTIONS(1054), + [aux_sym_cmd_identifier_token40] = ACTIONS(1054), + [anon_sym_def] = ACTIONS(1054), + [anon_sym_export_DASHenv] = ACTIONS(1054), + [anon_sym_extern] = ACTIONS(1054), + [anon_sym_module] = ACTIONS(1054), + [anon_sym_use] = ACTIONS(1054), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_DOLLAR] = ACTIONS(1054), + [anon_sym_error] = ACTIONS(1054), + [anon_sym_list] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_break] = ACTIONS(1054), + [anon_sym_continue] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1054), + [anon_sym_in] = ACTIONS(1054), + [anon_sym_loop] = ACTIONS(1054), + [anon_sym_make] = ACTIONS(1054), + [anon_sym_while] = ACTIONS(1054), + [anon_sym_do] = ACTIONS(1054), + [anon_sym_if] = ACTIONS(1054), + [anon_sym_else] = ACTIONS(1054), + [anon_sym_match] = ACTIONS(1054), + [anon_sym_RBRACE] = ACTIONS(1054), + [anon_sym_try] = ACTIONS(1054), + [anon_sym_catch] = ACTIONS(1054), + [anon_sym_return] = ACTIONS(1054), + [anon_sym_source] = ACTIONS(1054), + [anon_sym_source_DASHenv] = ACTIONS(1054), + [anon_sym_register] = ACTIONS(1054), + [anon_sym_hide] = ACTIONS(1054), + [anon_sym_hide_DASHenv] = ACTIONS(1054), + [anon_sym_overlay] = ACTIONS(1054), + [anon_sym_new] = ACTIONS(1054), + [anon_sym_as] = ACTIONS(1054), + [anon_sym_QMARK2] = ACTIONS(1054), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1054), + [anon_sym_DOT_DOT2] = ACTIONS(1054), + [anon_sym_DOT] = ACTIONS(1054), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1056), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1056), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1054), + [aux_sym__val_number_decimal_token1] = ACTIONS(1054), + [aux_sym__val_number_decimal_token2] = ACTIONS(1054), + [aux_sym__val_number_decimal_token3] = ACTIONS(1054), + [aux_sym__val_number_decimal_token4] = ACTIONS(1054), + [aux_sym__val_number_token1] = ACTIONS(1054), + [aux_sym__val_number_token2] = ACTIONS(1054), + [aux_sym__val_number_token3] = ACTIONS(1054), + [anon_sym_DQUOTE] = ACTIONS(1054), + [sym__str_single_quotes] = ACTIONS(1054), + [sym__str_back_ticks] = ACTIONS(1054), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1054), + [sym__entry_separator] = ACTIONS(1056), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1056), }, - [317] = { - [sym_comment] = STATE(317), + [312] = { + [sym_comment] = STATE(312), [anon_sym_export] = ACTIONS(1042), [anon_sym_alias] = ACTIONS(1042), [anon_sym_let] = ACTIONS(1042), @@ -112812,7 +113589,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(1042), [anon_sym_new] = ACTIONS(1042), [anon_sym_as] = ACTIONS(1042), - [anon_sym_QMARK2] = ACTIONS(1042), + [anon_sym_QMARK2] = ACTIONS(1819), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1042), [anon_sym_DOT_DOT2] = ACTIONS(1042), [anon_sym_DOT] = ACTIONS(1042), @@ -112833,3653 +113610,434 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__entry_separator] = ACTIONS(1044), [anon_sym_PLUS] = ACTIONS(1042), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1044), }, - [318] = { - [sym_comment] = STATE(318), - [anon_sym_export] = ACTIONS(1034), - [anon_sym_alias] = ACTIONS(1034), - [anon_sym_let] = ACTIONS(1034), - [anon_sym_let_DASHenv] = ACTIONS(1034), - [anon_sym_mut] = ACTIONS(1034), - [anon_sym_const] = ACTIONS(1034), - [aux_sym_cmd_identifier_token1] = ACTIONS(1034), - [aux_sym_cmd_identifier_token2] = ACTIONS(1034), - [aux_sym_cmd_identifier_token3] = ACTIONS(1034), - [aux_sym_cmd_identifier_token4] = ACTIONS(1034), - [aux_sym_cmd_identifier_token5] = ACTIONS(1034), - [aux_sym_cmd_identifier_token6] = ACTIONS(1034), - [aux_sym_cmd_identifier_token7] = ACTIONS(1034), - [aux_sym_cmd_identifier_token8] = ACTIONS(1034), - [aux_sym_cmd_identifier_token9] = ACTIONS(1034), - [aux_sym_cmd_identifier_token10] = ACTIONS(1034), - [aux_sym_cmd_identifier_token11] = ACTIONS(1034), - [aux_sym_cmd_identifier_token12] = ACTIONS(1034), - [aux_sym_cmd_identifier_token13] = ACTIONS(1034), - [aux_sym_cmd_identifier_token14] = ACTIONS(1034), - [aux_sym_cmd_identifier_token15] = ACTIONS(1034), - [aux_sym_cmd_identifier_token16] = ACTIONS(1034), - [aux_sym_cmd_identifier_token17] = ACTIONS(1034), - [aux_sym_cmd_identifier_token18] = ACTIONS(1034), - [aux_sym_cmd_identifier_token19] = ACTIONS(1034), - [aux_sym_cmd_identifier_token20] = ACTIONS(1034), - [aux_sym_cmd_identifier_token21] = ACTIONS(1034), - [aux_sym_cmd_identifier_token22] = ACTIONS(1034), - [aux_sym_cmd_identifier_token23] = ACTIONS(1034), - [aux_sym_cmd_identifier_token24] = ACTIONS(1034), - [aux_sym_cmd_identifier_token25] = ACTIONS(1034), - [aux_sym_cmd_identifier_token26] = ACTIONS(1034), - [aux_sym_cmd_identifier_token27] = ACTIONS(1034), - [aux_sym_cmd_identifier_token28] = ACTIONS(1034), - [aux_sym_cmd_identifier_token29] = ACTIONS(1034), - [aux_sym_cmd_identifier_token30] = ACTIONS(1034), - [aux_sym_cmd_identifier_token31] = ACTIONS(1034), - [aux_sym_cmd_identifier_token32] = ACTIONS(1034), - [aux_sym_cmd_identifier_token33] = ACTIONS(1034), - [aux_sym_cmd_identifier_token34] = ACTIONS(1034), - [aux_sym_cmd_identifier_token35] = ACTIONS(1034), - [aux_sym_cmd_identifier_token36] = ACTIONS(1034), - [anon_sym_true] = ACTIONS(1034), - [anon_sym_false] = ACTIONS(1034), - [anon_sym_null] = ACTIONS(1034), - [aux_sym_cmd_identifier_token38] = ACTIONS(1034), - [aux_sym_cmd_identifier_token39] = ACTIONS(1034), - [aux_sym_cmd_identifier_token40] = ACTIONS(1034), - [anon_sym_def] = ACTIONS(1034), - [anon_sym_export_DASHenv] = ACTIONS(1034), - [anon_sym_extern] = ACTIONS(1034), - [anon_sym_module] = ACTIONS(1034), - [anon_sym_use] = ACTIONS(1034), - [anon_sym_LPAREN] = ACTIONS(1034), - [anon_sym_DOLLAR] = ACTIONS(1034), - [anon_sym_error] = ACTIONS(1034), - [anon_sym_list] = ACTIONS(1034), - [anon_sym_DASH] = ACTIONS(1034), - [anon_sym_break] = ACTIONS(1034), - [anon_sym_continue] = ACTIONS(1034), - [anon_sym_for] = ACTIONS(1034), - [anon_sym_in] = ACTIONS(1034), - [anon_sym_loop] = ACTIONS(1034), - [anon_sym_make] = ACTIONS(1034), - [anon_sym_while] = ACTIONS(1034), - [anon_sym_do] = ACTIONS(1034), - [anon_sym_if] = ACTIONS(1034), - [anon_sym_else] = ACTIONS(1034), - [anon_sym_match] = ACTIONS(1034), - [anon_sym_RBRACE] = ACTIONS(1034), - [anon_sym_try] = ACTIONS(1034), - [anon_sym_catch] = ACTIONS(1034), - [anon_sym_return] = ACTIONS(1034), - [anon_sym_source] = ACTIONS(1034), - [anon_sym_source_DASHenv] = ACTIONS(1034), - [anon_sym_register] = ACTIONS(1034), - [anon_sym_hide] = ACTIONS(1034), - [anon_sym_hide_DASHenv] = ACTIONS(1034), - [anon_sym_overlay] = ACTIONS(1034), - [anon_sym_new] = ACTIONS(1034), - [anon_sym_as] = ACTIONS(1034), - [anon_sym_QMARK2] = ACTIONS(1034), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1034), - [anon_sym_DOT_DOT2] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(1034), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1036), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1036), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1034), - [aux_sym__val_number_decimal_token1] = ACTIONS(1034), - [aux_sym__val_number_decimal_token2] = ACTIONS(1034), - [aux_sym__val_number_decimal_token3] = ACTIONS(1034), - [aux_sym__val_number_decimal_token4] = ACTIONS(1034), - [aux_sym__val_number_token1] = ACTIONS(1034), - [aux_sym__val_number_token2] = ACTIONS(1034), - [aux_sym__val_number_token3] = ACTIONS(1034), - [anon_sym_DQUOTE] = ACTIONS(1034), - [sym__str_single_quotes] = ACTIONS(1034), - [sym__str_back_ticks] = ACTIONS(1034), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1034), - [sym__entry_separator] = ACTIONS(1036), - [anon_sym_PLUS] = ACTIONS(1034), - [anon_sym_POUND] = ACTIONS(3), - }, - [319] = { - [sym_comment] = STATE(319), - [anon_sym_export] = ACTIONS(1022), - [anon_sym_alias] = ACTIONS(1022), - [anon_sym_let] = ACTIONS(1022), - [anon_sym_let_DASHenv] = ACTIONS(1022), - [anon_sym_mut] = ACTIONS(1022), - [anon_sym_const] = ACTIONS(1022), - [aux_sym_cmd_identifier_token1] = ACTIONS(1022), - [aux_sym_cmd_identifier_token2] = ACTIONS(1022), - [aux_sym_cmd_identifier_token3] = ACTIONS(1022), - [aux_sym_cmd_identifier_token4] = ACTIONS(1022), - [aux_sym_cmd_identifier_token5] = ACTIONS(1022), - [aux_sym_cmd_identifier_token6] = ACTIONS(1022), - [aux_sym_cmd_identifier_token7] = ACTIONS(1022), - [aux_sym_cmd_identifier_token8] = ACTIONS(1022), - [aux_sym_cmd_identifier_token9] = ACTIONS(1022), - [aux_sym_cmd_identifier_token10] = ACTIONS(1022), - [aux_sym_cmd_identifier_token11] = ACTIONS(1022), - [aux_sym_cmd_identifier_token12] = ACTIONS(1022), - [aux_sym_cmd_identifier_token13] = ACTIONS(1022), - [aux_sym_cmd_identifier_token14] = ACTIONS(1022), - [aux_sym_cmd_identifier_token15] = ACTIONS(1022), - [aux_sym_cmd_identifier_token16] = ACTIONS(1022), - [aux_sym_cmd_identifier_token17] = ACTIONS(1022), - [aux_sym_cmd_identifier_token18] = ACTIONS(1022), - [aux_sym_cmd_identifier_token19] = ACTIONS(1022), - [aux_sym_cmd_identifier_token20] = ACTIONS(1022), - [aux_sym_cmd_identifier_token21] = ACTIONS(1022), - [aux_sym_cmd_identifier_token22] = ACTIONS(1022), - [aux_sym_cmd_identifier_token23] = ACTIONS(1022), - [aux_sym_cmd_identifier_token24] = ACTIONS(1022), - [aux_sym_cmd_identifier_token25] = ACTIONS(1022), - [aux_sym_cmd_identifier_token26] = ACTIONS(1022), - [aux_sym_cmd_identifier_token27] = ACTIONS(1022), - [aux_sym_cmd_identifier_token28] = ACTIONS(1022), - [aux_sym_cmd_identifier_token29] = ACTIONS(1022), - [aux_sym_cmd_identifier_token30] = ACTIONS(1022), - [aux_sym_cmd_identifier_token31] = ACTIONS(1022), - [aux_sym_cmd_identifier_token32] = ACTIONS(1022), - [aux_sym_cmd_identifier_token33] = ACTIONS(1022), - [aux_sym_cmd_identifier_token34] = ACTIONS(1022), - [aux_sym_cmd_identifier_token35] = ACTIONS(1022), - [aux_sym_cmd_identifier_token36] = ACTIONS(1022), - [anon_sym_true] = ACTIONS(1022), - [anon_sym_false] = ACTIONS(1022), - [anon_sym_null] = ACTIONS(1022), - [aux_sym_cmd_identifier_token38] = ACTIONS(1022), - [aux_sym_cmd_identifier_token39] = ACTIONS(1022), - [aux_sym_cmd_identifier_token40] = ACTIONS(1022), - [anon_sym_def] = ACTIONS(1022), - [anon_sym_export_DASHenv] = ACTIONS(1022), - [anon_sym_extern] = ACTIONS(1022), - [anon_sym_module] = ACTIONS(1022), - [anon_sym_use] = ACTIONS(1022), - [anon_sym_LPAREN] = ACTIONS(1022), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_error] = ACTIONS(1022), - [anon_sym_list] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1022), - [anon_sym_break] = ACTIONS(1022), - [anon_sym_continue] = ACTIONS(1022), - [anon_sym_for] = ACTIONS(1022), - [anon_sym_in] = ACTIONS(1022), - [anon_sym_loop] = ACTIONS(1022), - [anon_sym_make] = ACTIONS(1022), - [anon_sym_while] = ACTIONS(1022), - [anon_sym_do] = ACTIONS(1022), - [anon_sym_if] = ACTIONS(1022), - [anon_sym_else] = ACTIONS(1022), - [anon_sym_match] = ACTIONS(1022), - [anon_sym_RBRACE] = ACTIONS(1022), - [anon_sym_try] = ACTIONS(1022), - [anon_sym_catch] = ACTIONS(1022), - [anon_sym_return] = ACTIONS(1022), - [anon_sym_source] = ACTIONS(1022), - [anon_sym_source_DASHenv] = ACTIONS(1022), - [anon_sym_register] = ACTIONS(1022), - [anon_sym_hide] = ACTIONS(1022), - [anon_sym_hide_DASHenv] = ACTIONS(1022), - [anon_sym_overlay] = ACTIONS(1022), - [anon_sym_new] = ACTIONS(1022), - [anon_sym_as] = ACTIONS(1022), - [anon_sym_QMARK2] = ACTIONS(1818), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1022), - [anon_sym_DOT_DOT2] = ACTIONS(1022), - [anon_sym_DOT] = ACTIONS(1022), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1024), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1024), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1022), - [aux_sym__val_number_decimal_token1] = ACTIONS(1022), - [aux_sym__val_number_decimal_token2] = ACTIONS(1022), - [aux_sym__val_number_decimal_token3] = ACTIONS(1022), - [aux_sym__val_number_decimal_token4] = ACTIONS(1022), - [aux_sym__val_number_token1] = ACTIONS(1022), - [aux_sym__val_number_token2] = ACTIONS(1022), - [aux_sym__val_number_token3] = ACTIONS(1022), - [anon_sym_DQUOTE] = ACTIONS(1022), - [sym__str_single_quotes] = ACTIONS(1022), - [sym__str_back_ticks] = ACTIONS(1022), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1022), - [sym__entry_separator] = ACTIONS(1024), - [anon_sym_PLUS] = ACTIONS(1022), - [anon_sym_POUND] = ACTIONS(3), - }, - [320] = { - [sym_comment] = STATE(320), - [anon_sym_export] = ACTIONS(1028), - [anon_sym_alias] = ACTIONS(1028), - [anon_sym_let] = ACTIONS(1028), - [anon_sym_let_DASHenv] = ACTIONS(1028), - [anon_sym_mut] = ACTIONS(1028), - [anon_sym_const] = ACTIONS(1028), - [aux_sym_cmd_identifier_token1] = ACTIONS(1028), - [aux_sym_cmd_identifier_token2] = ACTIONS(1028), - [aux_sym_cmd_identifier_token3] = ACTIONS(1028), - [aux_sym_cmd_identifier_token4] = ACTIONS(1028), - [aux_sym_cmd_identifier_token5] = ACTIONS(1028), - [aux_sym_cmd_identifier_token6] = ACTIONS(1028), - [aux_sym_cmd_identifier_token7] = ACTIONS(1028), - [aux_sym_cmd_identifier_token8] = ACTIONS(1028), - [aux_sym_cmd_identifier_token9] = ACTIONS(1028), - [aux_sym_cmd_identifier_token10] = ACTIONS(1028), - [aux_sym_cmd_identifier_token11] = ACTIONS(1028), - [aux_sym_cmd_identifier_token12] = ACTIONS(1028), - [aux_sym_cmd_identifier_token13] = ACTIONS(1028), - [aux_sym_cmd_identifier_token14] = ACTIONS(1028), - [aux_sym_cmd_identifier_token15] = ACTIONS(1028), - [aux_sym_cmd_identifier_token16] = ACTIONS(1028), - [aux_sym_cmd_identifier_token17] = ACTIONS(1028), - [aux_sym_cmd_identifier_token18] = ACTIONS(1028), - [aux_sym_cmd_identifier_token19] = ACTIONS(1028), - [aux_sym_cmd_identifier_token20] = ACTIONS(1028), - [aux_sym_cmd_identifier_token21] = ACTIONS(1028), - [aux_sym_cmd_identifier_token22] = ACTIONS(1028), - [aux_sym_cmd_identifier_token23] = ACTIONS(1028), - [aux_sym_cmd_identifier_token24] = ACTIONS(1028), - [aux_sym_cmd_identifier_token25] = ACTIONS(1028), - [aux_sym_cmd_identifier_token26] = ACTIONS(1028), - [aux_sym_cmd_identifier_token27] = ACTIONS(1028), - [aux_sym_cmd_identifier_token28] = ACTIONS(1028), - [aux_sym_cmd_identifier_token29] = ACTIONS(1028), - [aux_sym_cmd_identifier_token30] = ACTIONS(1028), - [aux_sym_cmd_identifier_token31] = ACTIONS(1028), - [aux_sym_cmd_identifier_token32] = ACTIONS(1028), - [aux_sym_cmd_identifier_token33] = ACTIONS(1028), - [aux_sym_cmd_identifier_token34] = ACTIONS(1028), - [aux_sym_cmd_identifier_token35] = ACTIONS(1028), - [aux_sym_cmd_identifier_token36] = ACTIONS(1028), - [anon_sym_true] = ACTIONS(1028), - [anon_sym_false] = ACTIONS(1028), - [anon_sym_null] = ACTIONS(1028), - [aux_sym_cmd_identifier_token38] = ACTIONS(1028), - [aux_sym_cmd_identifier_token39] = ACTIONS(1028), - [aux_sym_cmd_identifier_token40] = ACTIONS(1028), - [anon_sym_def] = ACTIONS(1028), - [anon_sym_export_DASHenv] = ACTIONS(1028), - [anon_sym_extern] = ACTIONS(1028), - [anon_sym_module] = ACTIONS(1028), - [anon_sym_use] = ACTIONS(1028), - [anon_sym_LPAREN] = ACTIONS(1028), - [anon_sym_DOLLAR] = ACTIONS(1028), - [anon_sym_error] = ACTIONS(1028), - [anon_sym_list] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1028), - [anon_sym_break] = ACTIONS(1028), - [anon_sym_continue] = ACTIONS(1028), - [anon_sym_for] = ACTIONS(1028), - [anon_sym_in] = ACTIONS(1028), - [anon_sym_loop] = ACTIONS(1028), - [anon_sym_make] = ACTIONS(1028), - [anon_sym_while] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1028), - [anon_sym_if] = ACTIONS(1028), - [anon_sym_else] = ACTIONS(1028), - [anon_sym_match] = ACTIONS(1028), - [anon_sym_RBRACE] = ACTIONS(1028), - [anon_sym_try] = ACTIONS(1028), - [anon_sym_catch] = ACTIONS(1028), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_source] = ACTIONS(1028), - [anon_sym_source_DASHenv] = ACTIONS(1028), - [anon_sym_register] = ACTIONS(1028), - [anon_sym_hide] = ACTIONS(1028), - [anon_sym_hide_DASHenv] = ACTIONS(1028), - [anon_sym_overlay] = ACTIONS(1028), - [anon_sym_new] = ACTIONS(1028), - [anon_sym_as] = ACTIONS(1028), - [anon_sym_QMARK2] = ACTIONS(1820), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1028), - [anon_sym_DOT_DOT2] = ACTIONS(1028), - [anon_sym_DOT] = ACTIONS(1028), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1030), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1030), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1028), - [aux_sym__val_number_decimal_token1] = ACTIONS(1028), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1028), - [aux_sym__val_number_decimal_token4] = ACTIONS(1028), - [aux_sym__val_number_token1] = ACTIONS(1028), - [aux_sym__val_number_token2] = ACTIONS(1028), - [aux_sym__val_number_token3] = ACTIONS(1028), - [anon_sym_DQUOTE] = ACTIONS(1028), - [sym__str_single_quotes] = ACTIONS(1028), - [sym__str_back_ticks] = ACTIONS(1028), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1028), - [sym__entry_separator] = ACTIONS(1030), - [anon_sym_PLUS] = ACTIONS(1028), - [anon_sym_POUND] = ACTIONS(3), - }, - [321] = { - [sym_comment] = STATE(321), - [anon_sym_export] = ACTIONS(1659), - [anon_sym_alias] = ACTIONS(1659), - [anon_sym_let] = ACTIONS(1659), - [anon_sym_let_DASHenv] = ACTIONS(1659), - [anon_sym_mut] = ACTIONS(1659), - [anon_sym_const] = ACTIONS(1659), - [aux_sym_cmd_identifier_token1] = ACTIONS(1659), - [aux_sym_cmd_identifier_token2] = ACTIONS(1659), - [aux_sym_cmd_identifier_token3] = ACTIONS(1659), - [aux_sym_cmd_identifier_token4] = ACTIONS(1659), - [aux_sym_cmd_identifier_token5] = ACTIONS(1659), - [aux_sym_cmd_identifier_token6] = ACTIONS(1659), - [aux_sym_cmd_identifier_token7] = ACTIONS(1659), - [aux_sym_cmd_identifier_token8] = ACTIONS(1659), - [aux_sym_cmd_identifier_token9] = ACTIONS(1659), - [aux_sym_cmd_identifier_token10] = ACTIONS(1659), - [aux_sym_cmd_identifier_token11] = ACTIONS(1659), - [aux_sym_cmd_identifier_token12] = ACTIONS(1659), - [aux_sym_cmd_identifier_token13] = ACTIONS(1659), - [aux_sym_cmd_identifier_token14] = ACTIONS(1659), - [aux_sym_cmd_identifier_token15] = ACTIONS(1659), - [aux_sym_cmd_identifier_token16] = ACTIONS(1659), - [aux_sym_cmd_identifier_token17] = ACTIONS(1659), - [aux_sym_cmd_identifier_token18] = ACTIONS(1659), - [aux_sym_cmd_identifier_token19] = ACTIONS(1659), - [aux_sym_cmd_identifier_token20] = ACTIONS(1659), - [aux_sym_cmd_identifier_token21] = ACTIONS(1659), - [aux_sym_cmd_identifier_token22] = ACTIONS(1659), - [aux_sym_cmd_identifier_token23] = ACTIONS(1659), - [aux_sym_cmd_identifier_token24] = ACTIONS(1659), - [aux_sym_cmd_identifier_token25] = ACTIONS(1659), - [aux_sym_cmd_identifier_token26] = ACTIONS(1659), - [aux_sym_cmd_identifier_token27] = ACTIONS(1659), - [aux_sym_cmd_identifier_token28] = ACTIONS(1659), - [aux_sym_cmd_identifier_token29] = ACTIONS(1659), - [aux_sym_cmd_identifier_token30] = ACTIONS(1659), - [aux_sym_cmd_identifier_token31] = ACTIONS(1659), - [aux_sym_cmd_identifier_token32] = ACTIONS(1659), - [aux_sym_cmd_identifier_token33] = ACTIONS(1659), - [aux_sym_cmd_identifier_token34] = ACTIONS(1659), - [aux_sym_cmd_identifier_token35] = ACTIONS(1659), - [aux_sym_cmd_identifier_token36] = ACTIONS(1659), - [anon_sym_true] = ACTIONS(1659), - [anon_sym_false] = ACTIONS(1659), - [anon_sym_null] = ACTIONS(1659), - [aux_sym_cmd_identifier_token38] = ACTIONS(1659), - [aux_sym_cmd_identifier_token39] = ACTIONS(1659), - [aux_sym_cmd_identifier_token40] = ACTIONS(1659), - [anon_sym_def] = ACTIONS(1659), - [anon_sym_export_DASHenv] = ACTIONS(1659), - [anon_sym_extern] = ACTIONS(1659), - [anon_sym_module] = ACTIONS(1659), - [anon_sym_use] = ACTIONS(1659), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_DOLLAR] = ACTIONS(1659), - [anon_sym_error] = ACTIONS(1659), - [anon_sym_list] = ACTIONS(1659), - [anon_sym_DASH] = ACTIONS(1659), - [anon_sym_break] = ACTIONS(1659), - [anon_sym_continue] = ACTIONS(1659), - [anon_sym_for] = ACTIONS(1659), - [anon_sym_in] = ACTIONS(1659), - [anon_sym_loop] = ACTIONS(1659), - [anon_sym_make] = ACTIONS(1659), - [anon_sym_while] = ACTIONS(1659), - [anon_sym_do] = ACTIONS(1659), - [anon_sym_if] = ACTIONS(1659), - [anon_sym_else] = ACTIONS(1659), - [anon_sym_match] = ACTIONS(1659), - [anon_sym_RBRACE] = ACTIONS(1659), - [anon_sym_try] = ACTIONS(1659), - [anon_sym_catch] = ACTIONS(1659), - [anon_sym_return] = ACTIONS(1659), - [anon_sym_source] = ACTIONS(1659), - [anon_sym_source_DASHenv] = ACTIONS(1659), - [anon_sym_register] = ACTIONS(1659), - [anon_sym_hide] = ACTIONS(1659), - [anon_sym_hide_DASHenv] = ACTIONS(1659), - [anon_sym_overlay] = ACTIONS(1659), - [anon_sym_new] = ACTIONS(1659), - [anon_sym_as] = ACTIONS(1659), - [anon_sym_LPAREN2] = ACTIONS(1661), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1659), - [anon_sym_DOT_DOT2] = ACTIONS(1659), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1661), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1661), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1659), - [aux_sym__val_number_decimal_token1] = ACTIONS(1659), - [aux_sym__val_number_decimal_token2] = ACTIONS(1659), - [aux_sym__val_number_decimal_token3] = ACTIONS(1659), - [aux_sym__val_number_decimal_token4] = ACTIONS(1659), - [aux_sym__val_number_token1] = ACTIONS(1659), - [aux_sym__val_number_token2] = ACTIONS(1659), - [aux_sym__val_number_token3] = ACTIONS(1659), - [anon_sym_DQUOTE] = ACTIONS(1659), - [sym__str_single_quotes] = ACTIONS(1659), - [sym__str_back_ticks] = ACTIONS(1659), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1659), - [sym__entry_separator] = ACTIONS(1661), - [anon_sym_PLUS] = ACTIONS(1659), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1659), - [anon_sym_POUND] = ACTIONS(3), - }, - [322] = { - [sym_comment] = STATE(322), - [anon_sym_export] = ACTIONS(1667), - [anon_sym_alias] = ACTIONS(1667), - [anon_sym_let] = ACTIONS(1667), - [anon_sym_let_DASHenv] = ACTIONS(1667), - [anon_sym_mut] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1667), - [aux_sym_cmd_identifier_token1] = ACTIONS(1667), - [aux_sym_cmd_identifier_token2] = ACTIONS(1667), - [aux_sym_cmd_identifier_token3] = ACTIONS(1667), - [aux_sym_cmd_identifier_token4] = ACTIONS(1667), - [aux_sym_cmd_identifier_token5] = ACTIONS(1667), - [aux_sym_cmd_identifier_token6] = ACTIONS(1667), - [aux_sym_cmd_identifier_token7] = ACTIONS(1667), - [aux_sym_cmd_identifier_token8] = ACTIONS(1667), - [aux_sym_cmd_identifier_token9] = ACTIONS(1667), - [aux_sym_cmd_identifier_token10] = ACTIONS(1667), - [aux_sym_cmd_identifier_token11] = ACTIONS(1667), - [aux_sym_cmd_identifier_token12] = ACTIONS(1667), - [aux_sym_cmd_identifier_token13] = ACTIONS(1667), - [aux_sym_cmd_identifier_token14] = ACTIONS(1667), - [aux_sym_cmd_identifier_token15] = ACTIONS(1667), - [aux_sym_cmd_identifier_token16] = ACTIONS(1667), - [aux_sym_cmd_identifier_token17] = ACTIONS(1667), - [aux_sym_cmd_identifier_token18] = ACTIONS(1667), - [aux_sym_cmd_identifier_token19] = ACTIONS(1667), - [aux_sym_cmd_identifier_token20] = ACTIONS(1667), - [aux_sym_cmd_identifier_token21] = ACTIONS(1667), - [aux_sym_cmd_identifier_token22] = ACTIONS(1667), - [aux_sym_cmd_identifier_token23] = ACTIONS(1667), - [aux_sym_cmd_identifier_token24] = ACTIONS(1667), - [aux_sym_cmd_identifier_token25] = ACTIONS(1667), - [aux_sym_cmd_identifier_token26] = ACTIONS(1667), - [aux_sym_cmd_identifier_token27] = ACTIONS(1667), - [aux_sym_cmd_identifier_token28] = ACTIONS(1667), - [aux_sym_cmd_identifier_token29] = ACTIONS(1667), - [aux_sym_cmd_identifier_token30] = ACTIONS(1667), - [aux_sym_cmd_identifier_token31] = ACTIONS(1667), - [aux_sym_cmd_identifier_token32] = ACTIONS(1667), - [aux_sym_cmd_identifier_token33] = ACTIONS(1667), - [aux_sym_cmd_identifier_token34] = ACTIONS(1667), - [aux_sym_cmd_identifier_token35] = ACTIONS(1667), - [aux_sym_cmd_identifier_token36] = ACTIONS(1667), - [anon_sym_true] = ACTIONS(1669), - [anon_sym_false] = ACTIONS(1669), - [anon_sym_null] = ACTIONS(1669), - [aux_sym_cmd_identifier_token38] = ACTIONS(1667), - [aux_sym_cmd_identifier_token39] = ACTIONS(1669), - [aux_sym_cmd_identifier_token40] = ACTIONS(1669), - [anon_sym_def] = ACTIONS(1667), - [anon_sym_export_DASHenv] = ACTIONS(1667), - [anon_sym_extern] = ACTIONS(1667), - [anon_sym_module] = ACTIONS(1667), - [anon_sym_use] = ACTIONS(1667), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_DOLLAR] = ACTIONS(1669), - [anon_sym_error] = ACTIONS(1667), - [anon_sym_list] = ACTIONS(1667), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_break] = ACTIONS(1667), - [anon_sym_continue] = ACTIONS(1667), - [anon_sym_for] = ACTIONS(1667), - [anon_sym_in] = ACTIONS(1667), - [anon_sym_loop] = ACTIONS(1667), - [anon_sym_make] = ACTIONS(1667), - [anon_sym_while] = ACTIONS(1667), - [anon_sym_do] = ACTIONS(1667), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_else] = ACTIONS(1667), - [anon_sym_match] = ACTIONS(1667), - [anon_sym_RBRACE] = ACTIONS(1669), - [anon_sym_try] = ACTIONS(1667), - [anon_sym_catch] = ACTIONS(1667), - [anon_sym_return] = ACTIONS(1667), - [anon_sym_source] = ACTIONS(1667), - [anon_sym_source_DASHenv] = ACTIONS(1667), - [anon_sym_register] = ACTIONS(1667), - [anon_sym_hide] = ACTIONS(1667), - [anon_sym_hide_DASHenv] = ACTIONS(1667), - [anon_sym_overlay] = ACTIONS(1667), - [anon_sym_new] = ACTIONS(1667), - [anon_sym_as] = ACTIONS(1667), - [anon_sym_LPAREN2] = ACTIONS(1669), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1669), - [anon_sym_DOT_DOT2] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1669), - [aux_sym__val_number_decimal_token1] = ACTIONS(1667), - [aux_sym__val_number_decimal_token2] = ACTIONS(1669), - [aux_sym__val_number_decimal_token3] = ACTIONS(1669), - [aux_sym__val_number_decimal_token4] = ACTIONS(1669), - [aux_sym__val_number_token1] = ACTIONS(1669), - [aux_sym__val_number_token2] = ACTIONS(1669), - [aux_sym__val_number_token3] = ACTIONS(1669), - [anon_sym_DQUOTE] = ACTIONS(1669), - [sym__str_single_quotes] = ACTIONS(1669), - [sym__str_back_ticks] = ACTIONS(1669), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1669), - [anon_sym_PLUS] = ACTIONS(1667), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(247), - }, - [323] = { - [sym_cell_path] = STATE(511), - [sym_path] = STATE(527), - [sym_comment] = STATE(323), - [aux_sym_cell_path_repeat1] = STATE(425), - [anon_sym_export] = ACTIONS(1822), - [anon_sym_alias] = ACTIONS(1822), - [anon_sym_let] = ACTIONS(1822), - [anon_sym_let_DASHenv] = ACTIONS(1822), - [anon_sym_mut] = ACTIONS(1822), - [anon_sym_const] = ACTIONS(1822), - [aux_sym_cmd_identifier_token1] = ACTIONS(1822), - [aux_sym_cmd_identifier_token2] = ACTIONS(1822), - [aux_sym_cmd_identifier_token3] = ACTIONS(1822), - [aux_sym_cmd_identifier_token4] = ACTIONS(1822), - [aux_sym_cmd_identifier_token5] = ACTIONS(1822), - [aux_sym_cmd_identifier_token6] = ACTIONS(1822), - [aux_sym_cmd_identifier_token7] = ACTIONS(1822), - [aux_sym_cmd_identifier_token8] = ACTIONS(1822), - [aux_sym_cmd_identifier_token9] = ACTIONS(1822), - [aux_sym_cmd_identifier_token10] = ACTIONS(1822), - [aux_sym_cmd_identifier_token11] = ACTIONS(1822), - [aux_sym_cmd_identifier_token12] = ACTIONS(1822), - [aux_sym_cmd_identifier_token13] = ACTIONS(1822), - [aux_sym_cmd_identifier_token14] = ACTIONS(1822), - [aux_sym_cmd_identifier_token15] = ACTIONS(1822), - [aux_sym_cmd_identifier_token16] = ACTIONS(1822), - [aux_sym_cmd_identifier_token17] = ACTIONS(1822), - [aux_sym_cmd_identifier_token18] = ACTIONS(1822), - [aux_sym_cmd_identifier_token19] = ACTIONS(1822), - [aux_sym_cmd_identifier_token20] = ACTIONS(1822), - [aux_sym_cmd_identifier_token21] = ACTIONS(1822), - [aux_sym_cmd_identifier_token22] = ACTIONS(1822), - [aux_sym_cmd_identifier_token23] = ACTIONS(1822), - [aux_sym_cmd_identifier_token24] = ACTIONS(1822), - [aux_sym_cmd_identifier_token25] = ACTIONS(1822), - [aux_sym_cmd_identifier_token26] = ACTIONS(1822), - [aux_sym_cmd_identifier_token27] = ACTIONS(1822), - [aux_sym_cmd_identifier_token28] = ACTIONS(1822), - [aux_sym_cmd_identifier_token29] = ACTIONS(1822), - [aux_sym_cmd_identifier_token30] = ACTIONS(1822), - [aux_sym_cmd_identifier_token31] = ACTIONS(1822), - [aux_sym_cmd_identifier_token32] = ACTIONS(1822), - [aux_sym_cmd_identifier_token33] = ACTIONS(1822), - [aux_sym_cmd_identifier_token34] = ACTIONS(1822), - [aux_sym_cmd_identifier_token35] = ACTIONS(1822), - [aux_sym_cmd_identifier_token36] = ACTIONS(1822), - [anon_sym_true] = ACTIONS(1822), - [anon_sym_false] = ACTIONS(1822), - [anon_sym_null] = ACTIONS(1822), - [aux_sym_cmd_identifier_token38] = ACTIONS(1822), - [aux_sym_cmd_identifier_token39] = ACTIONS(1822), - [aux_sym_cmd_identifier_token40] = ACTIONS(1822), - [anon_sym_def] = ACTIONS(1822), - [anon_sym_export_DASHenv] = ACTIONS(1822), - [anon_sym_extern] = ACTIONS(1822), - [anon_sym_module] = ACTIONS(1822), - [anon_sym_use] = ACTIONS(1822), - [anon_sym_LPAREN] = ACTIONS(1822), - [anon_sym_DOLLAR] = ACTIONS(1822), - [anon_sym_error] = ACTIONS(1822), - [anon_sym_list] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_break] = ACTIONS(1822), - [anon_sym_continue] = ACTIONS(1822), - [anon_sym_for] = ACTIONS(1822), - [anon_sym_in] = ACTIONS(1822), - [anon_sym_loop] = ACTIONS(1822), - [anon_sym_make] = ACTIONS(1822), - [anon_sym_while] = ACTIONS(1822), - [anon_sym_do] = ACTIONS(1822), - [anon_sym_if] = ACTIONS(1822), - [anon_sym_else] = ACTIONS(1822), - [anon_sym_match] = ACTIONS(1822), - [anon_sym_RBRACE] = ACTIONS(1822), - [anon_sym_try] = ACTIONS(1822), - [anon_sym_catch] = ACTIONS(1822), - [anon_sym_return] = ACTIONS(1822), - [anon_sym_source] = ACTIONS(1822), - [anon_sym_source_DASHenv] = ACTIONS(1822), - [anon_sym_register] = ACTIONS(1822), - [anon_sym_hide] = ACTIONS(1822), - [anon_sym_hide_DASHenv] = ACTIONS(1822), - [anon_sym_overlay] = ACTIONS(1822), - [anon_sym_new] = ACTIONS(1822), - [anon_sym_as] = ACTIONS(1822), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1822), - [anon_sym_DOT] = ACTIONS(1824), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1822), - [aux_sym__val_number_decimal_token1] = ACTIONS(1822), - [aux_sym__val_number_decimal_token2] = ACTIONS(1822), - [aux_sym__val_number_decimal_token3] = ACTIONS(1822), - [aux_sym__val_number_decimal_token4] = ACTIONS(1822), - [aux_sym__val_number_token1] = ACTIONS(1822), - [aux_sym__val_number_token2] = ACTIONS(1822), - [aux_sym__val_number_token3] = ACTIONS(1822), - [anon_sym_DQUOTE] = ACTIONS(1822), - [sym__str_single_quotes] = ACTIONS(1822), - [sym__str_back_ticks] = ACTIONS(1822), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1822), - [sym__entry_separator] = ACTIONS(1826), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_POUND] = ACTIONS(3), - }, - [324] = { - [sym_cell_path] = STATE(534), - [sym_path] = STATE(527), - [sym_comment] = STATE(324), - [aux_sym_cell_path_repeat1] = STATE(425), - [anon_sym_export] = ACTIONS(1828), - [anon_sym_alias] = ACTIONS(1828), - [anon_sym_let] = ACTIONS(1828), - [anon_sym_let_DASHenv] = ACTIONS(1828), - [anon_sym_mut] = ACTIONS(1828), - [anon_sym_const] = ACTIONS(1828), - [aux_sym_cmd_identifier_token1] = ACTIONS(1828), - [aux_sym_cmd_identifier_token2] = ACTIONS(1828), - [aux_sym_cmd_identifier_token3] = ACTIONS(1828), - [aux_sym_cmd_identifier_token4] = ACTIONS(1828), - [aux_sym_cmd_identifier_token5] = ACTIONS(1828), - [aux_sym_cmd_identifier_token6] = ACTIONS(1828), - [aux_sym_cmd_identifier_token7] = ACTIONS(1828), - [aux_sym_cmd_identifier_token8] = ACTIONS(1828), - [aux_sym_cmd_identifier_token9] = ACTIONS(1828), - [aux_sym_cmd_identifier_token10] = ACTIONS(1828), - [aux_sym_cmd_identifier_token11] = ACTIONS(1828), - [aux_sym_cmd_identifier_token12] = ACTIONS(1828), - [aux_sym_cmd_identifier_token13] = ACTIONS(1828), - [aux_sym_cmd_identifier_token14] = ACTIONS(1828), - [aux_sym_cmd_identifier_token15] = ACTIONS(1828), - [aux_sym_cmd_identifier_token16] = ACTIONS(1828), - [aux_sym_cmd_identifier_token17] = ACTIONS(1828), - [aux_sym_cmd_identifier_token18] = ACTIONS(1828), - [aux_sym_cmd_identifier_token19] = ACTIONS(1828), - [aux_sym_cmd_identifier_token20] = ACTIONS(1828), - [aux_sym_cmd_identifier_token21] = ACTIONS(1828), - [aux_sym_cmd_identifier_token22] = ACTIONS(1828), - [aux_sym_cmd_identifier_token23] = ACTIONS(1828), - [aux_sym_cmd_identifier_token24] = ACTIONS(1828), - [aux_sym_cmd_identifier_token25] = ACTIONS(1828), - [aux_sym_cmd_identifier_token26] = ACTIONS(1828), - [aux_sym_cmd_identifier_token27] = ACTIONS(1828), - [aux_sym_cmd_identifier_token28] = ACTIONS(1828), - [aux_sym_cmd_identifier_token29] = ACTIONS(1828), - [aux_sym_cmd_identifier_token30] = ACTIONS(1828), - [aux_sym_cmd_identifier_token31] = ACTIONS(1828), - [aux_sym_cmd_identifier_token32] = ACTIONS(1828), - [aux_sym_cmd_identifier_token33] = ACTIONS(1828), - [aux_sym_cmd_identifier_token34] = ACTIONS(1828), - [aux_sym_cmd_identifier_token35] = ACTIONS(1828), - [aux_sym_cmd_identifier_token36] = ACTIONS(1828), - [anon_sym_true] = ACTIONS(1828), - [anon_sym_false] = ACTIONS(1828), - [anon_sym_null] = ACTIONS(1828), - [aux_sym_cmd_identifier_token38] = ACTIONS(1828), - [aux_sym_cmd_identifier_token39] = ACTIONS(1828), - [aux_sym_cmd_identifier_token40] = ACTIONS(1828), - [anon_sym_def] = ACTIONS(1828), - [anon_sym_export_DASHenv] = ACTIONS(1828), - [anon_sym_extern] = ACTIONS(1828), - [anon_sym_module] = ACTIONS(1828), - [anon_sym_use] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_DOLLAR] = ACTIONS(1828), - [anon_sym_error] = ACTIONS(1828), - [anon_sym_list] = ACTIONS(1828), - [anon_sym_DASH] = ACTIONS(1828), - [anon_sym_break] = ACTIONS(1828), - [anon_sym_continue] = ACTIONS(1828), - [anon_sym_for] = ACTIONS(1828), - [anon_sym_in] = ACTIONS(1828), - [anon_sym_loop] = ACTIONS(1828), - [anon_sym_make] = ACTIONS(1828), - [anon_sym_while] = ACTIONS(1828), - [anon_sym_do] = ACTIONS(1828), - [anon_sym_if] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1828), - [anon_sym_match] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1828), - [anon_sym_try] = ACTIONS(1828), - [anon_sym_catch] = ACTIONS(1828), - [anon_sym_return] = ACTIONS(1828), - [anon_sym_source] = ACTIONS(1828), - [anon_sym_source_DASHenv] = ACTIONS(1828), - [anon_sym_register] = ACTIONS(1828), - [anon_sym_hide] = ACTIONS(1828), - [anon_sym_hide_DASHenv] = ACTIONS(1828), - [anon_sym_overlay] = ACTIONS(1828), - [anon_sym_new] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1828), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1828), - [anon_sym_DOT] = ACTIONS(1824), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1828), - [aux_sym__val_number_decimal_token1] = ACTIONS(1828), - [aux_sym__val_number_decimal_token2] = ACTIONS(1828), - [aux_sym__val_number_decimal_token3] = ACTIONS(1828), - [aux_sym__val_number_decimal_token4] = ACTIONS(1828), - [aux_sym__val_number_token1] = ACTIONS(1828), - [aux_sym__val_number_token2] = ACTIONS(1828), - [aux_sym__val_number_token3] = ACTIONS(1828), - [anon_sym_DQUOTE] = ACTIONS(1828), - [sym__str_single_quotes] = ACTIONS(1828), - [sym__str_back_ticks] = ACTIONS(1828), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1828), - [sym__entry_separator] = ACTIONS(1830), - [anon_sym_PLUS] = ACTIONS(1828), - [anon_sym_POUND] = ACTIONS(3), - }, - [325] = { - [sym_cell_path] = STATE(535), - [sym_path] = STATE(527), - [sym_comment] = STATE(325), - [aux_sym_cell_path_repeat1] = STATE(425), - [anon_sym_export] = ACTIONS(1832), - [anon_sym_alias] = ACTIONS(1832), - [anon_sym_let] = ACTIONS(1832), - [anon_sym_let_DASHenv] = ACTIONS(1832), - [anon_sym_mut] = ACTIONS(1832), - [anon_sym_const] = ACTIONS(1832), - [aux_sym_cmd_identifier_token1] = ACTIONS(1832), - [aux_sym_cmd_identifier_token2] = ACTIONS(1832), - [aux_sym_cmd_identifier_token3] = ACTIONS(1832), - [aux_sym_cmd_identifier_token4] = ACTIONS(1832), - [aux_sym_cmd_identifier_token5] = ACTIONS(1832), - [aux_sym_cmd_identifier_token6] = ACTIONS(1832), - [aux_sym_cmd_identifier_token7] = ACTIONS(1832), - [aux_sym_cmd_identifier_token8] = ACTIONS(1832), - [aux_sym_cmd_identifier_token9] = ACTIONS(1832), - [aux_sym_cmd_identifier_token10] = ACTIONS(1832), - [aux_sym_cmd_identifier_token11] = ACTIONS(1832), - [aux_sym_cmd_identifier_token12] = ACTIONS(1832), - [aux_sym_cmd_identifier_token13] = ACTIONS(1832), - [aux_sym_cmd_identifier_token14] = ACTIONS(1832), - [aux_sym_cmd_identifier_token15] = ACTIONS(1832), - [aux_sym_cmd_identifier_token16] = ACTIONS(1832), - [aux_sym_cmd_identifier_token17] = ACTIONS(1832), - [aux_sym_cmd_identifier_token18] = ACTIONS(1832), - [aux_sym_cmd_identifier_token19] = ACTIONS(1832), - [aux_sym_cmd_identifier_token20] = ACTIONS(1832), - [aux_sym_cmd_identifier_token21] = ACTIONS(1832), - [aux_sym_cmd_identifier_token22] = ACTIONS(1832), - [aux_sym_cmd_identifier_token23] = ACTIONS(1832), - [aux_sym_cmd_identifier_token24] = ACTIONS(1832), - [aux_sym_cmd_identifier_token25] = ACTIONS(1832), - [aux_sym_cmd_identifier_token26] = ACTIONS(1832), - [aux_sym_cmd_identifier_token27] = ACTIONS(1832), - [aux_sym_cmd_identifier_token28] = ACTIONS(1832), - [aux_sym_cmd_identifier_token29] = ACTIONS(1832), - [aux_sym_cmd_identifier_token30] = ACTIONS(1832), - [aux_sym_cmd_identifier_token31] = ACTIONS(1832), - [aux_sym_cmd_identifier_token32] = ACTIONS(1832), - [aux_sym_cmd_identifier_token33] = ACTIONS(1832), - [aux_sym_cmd_identifier_token34] = ACTIONS(1832), - [aux_sym_cmd_identifier_token35] = ACTIONS(1832), - [aux_sym_cmd_identifier_token36] = ACTIONS(1832), - [anon_sym_true] = ACTIONS(1832), - [anon_sym_false] = ACTIONS(1832), - [anon_sym_null] = ACTIONS(1832), - [aux_sym_cmd_identifier_token38] = ACTIONS(1832), - [aux_sym_cmd_identifier_token39] = ACTIONS(1832), - [aux_sym_cmd_identifier_token40] = ACTIONS(1832), - [anon_sym_def] = ACTIONS(1832), - [anon_sym_export_DASHenv] = ACTIONS(1832), - [anon_sym_extern] = ACTIONS(1832), - [anon_sym_module] = ACTIONS(1832), - [anon_sym_use] = ACTIONS(1832), - [anon_sym_LPAREN] = ACTIONS(1832), - [anon_sym_DOLLAR] = ACTIONS(1832), - [anon_sym_error] = ACTIONS(1832), - [anon_sym_list] = ACTIONS(1832), - [anon_sym_DASH] = ACTIONS(1832), - [anon_sym_break] = ACTIONS(1832), - [anon_sym_continue] = ACTIONS(1832), - [anon_sym_for] = ACTIONS(1832), - [anon_sym_in] = ACTIONS(1832), - [anon_sym_loop] = ACTIONS(1832), - [anon_sym_make] = ACTIONS(1832), - [anon_sym_while] = ACTIONS(1832), - [anon_sym_do] = ACTIONS(1832), - [anon_sym_if] = ACTIONS(1832), - [anon_sym_else] = ACTIONS(1832), - [anon_sym_match] = ACTIONS(1832), - [anon_sym_RBRACE] = ACTIONS(1832), - [anon_sym_try] = ACTIONS(1832), - [anon_sym_catch] = ACTIONS(1832), - [anon_sym_return] = ACTIONS(1832), - [anon_sym_source] = ACTIONS(1832), - [anon_sym_source_DASHenv] = ACTIONS(1832), - [anon_sym_register] = ACTIONS(1832), - [anon_sym_hide] = ACTIONS(1832), - [anon_sym_hide_DASHenv] = ACTIONS(1832), - [anon_sym_overlay] = ACTIONS(1832), - [anon_sym_new] = ACTIONS(1832), - [anon_sym_as] = ACTIONS(1832), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1832), - [anon_sym_DOT] = ACTIONS(1824), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1832), - [aux_sym__val_number_decimal_token1] = ACTIONS(1832), - [aux_sym__val_number_decimal_token2] = ACTIONS(1832), - [aux_sym__val_number_decimal_token3] = ACTIONS(1832), - [aux_sym__val_number_decimal_token4] = ACTIONS(1832), - [aux_sym__val_number_token1] = ACTIONS(1832), - [aux_sym__val_number_token2] = ACTIONS(1832), - [aux_sym__val_number_token3] = ACTIONS(1832), - [anon_sym_DQUOTE] = ACTIONS(1832), - [sym__str_single_quotes] = ACTIONS(1832), - [sym__str_back_ticks] = ACTIONS(1832), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1832), - [sym__entry_separator] = ACTIONS(1834), - [anon_sym_PLUS] = ACTIONS(1832), - [anon_sym_POUND] = ACTIONS(3), - }, - [326] = { - [sym_cell_path] = STATE(615), - [sym_path] = STATE(527), - [sym_comment] = STATE(326), - [aux_sym_cell_path_repeat1] = STATE(425), - [anon_sym_export] = ACTIONS(1836), - [anon_sym_alias] = ACTIONS(1836), - [anon_sym_let] = ACTIONS(1836), - [anon_sym_let_DASHenv] = ACTIONS(1836), - [anon_sym_mut] = ACTIONS(1836), - [anon_sym_const] = ACTIONS(1836), - [aux_sym_cmd_identifier_token1] = ACTIONS(1836), - [aux_sym_cmd_identifier_token2] = ACTIONS(1836), - [aux_sym_cmd_identifier_token3] = ACTIONS(1836), - [aux_sym_cmd_identifier_token4] = ACTIONS(1836), - [aux_sym_cmd_identifier_token5] = ACTIONS(1836), - [aux_sym_cmd_identifier_token6] = ACTIONS(1836), - [aux_sym_cmd_identifier_token7] = ACTIONS(1836), - [aux_sym_cmd_identifier_token8] = ACTIONS(1836), - [aux_sym_cmd_identifier_token9] = ACTIONS(1836), - [aux_sym_cmd_identifier_token10] = ACTIONS(1836), - [aux_sym_cmd_identifier_token11] = ACTIONS(1836), - [aux_sym_cmd_identifier_token12] = ACTIONS(1836), - [aux_sym_cmd_identifier_token13] = ACTIONS(1836), - [aux_sym_cmd_identifier_token14] = ACTIONS(1836), - [aux_sym_cmd_identifier_token15] = ACTIONS(1836), - [aux_sym_cmd_identifier_token16] = ACTIONS(1836), - [aux_sym_cmd_identifier_token17] = ACTIONS(1836), - [aux_sym_cmd_identifier_token18] = ACTIONS(1836), - [aux_sym_cmd_identifier_token19] = ACTIONS(1836), - [aux_sym_cmd_identifier_token20] = ACTIONS(1836), - [aux_sym_cmd_identifier_token21] = ACTIONS(1836), - [aux_sym_cmd_identifier_token22] = ACTIONS(1836), - [aux_sym_cmd_identifier_token23] = ACTIONS(1836), - [aux_sym_cmd_identifier_token24] = ACTIONS(1836), - [aux_sym_cmd_identifier_token25] = ACTIONS(1836), - [aux_sym_cmd_identifier_token26] = ACTIONS(1836), - [aux_sym_cmd_identifier_token27] = ACTIONS(1836), - [aux_sym_cmd_identifier_token28] = ACTIONS(1836), - [aux_sym_cmd_identifier_token29] = ACTIONS(1836), - [aux_sym_cmd_identifier_token30] = ACTIONS(1836), - [aux_sym_cmd_identifier_token31] = ACTIONS(1836), - [aux_sym_cmd_identifier_token32] = ACTIONS(1836), - [aux_sym_cmd_identifier_token33] = ACTIONS(1836), - [aux_sym_cmd_identifier_token34] = ACTIONS(1836), - [aux_sym_cmd_identifier_token35] = ACTIONS(1836), - [aux_sym_cmd_identifier_token36] = ACTIONS(1836), - [anon_sym_true] = ACTIONS(1836), - [anon_sym_false] = ACTIONS(1836), - [anon_sym_null] = ACTIONS(1836), - [aux_sym_cmd_identifier_token38] = ACTIONS(1836), - [aux_sym_cmd_identifier_token39] = ACTIONS(1836), - [aux_sym_cmd_identifier_token40] = ACTIONS(1836), - [anon_sym_def] = ACTIONS(1836), - [anon_sym_export_DASHenv] = ACTIONS(1836), - [anon_sym_extern] = ACTIONS(1836), - [anon_sym_module] = ACTIONS(1836), - [anon_sym_use] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(1836), - [anon_sym_DOLLAR] = ACTIONS(1836), - [anon_sym_error] = ACTIONS(1836), - [anon_sym_list] = ACTIONS(1836), - [anon_sym_DASH] = ACTIONS(1836), - [anon_sym_break] = ACTIONS(1836), - [anon_sym_continue] = ACTIONS(1836), - [anon_sym_for] = ACTIONS(1836), - [anon_sym_in] = ACTIONS(1836), - [anon_sym_loop] = ACTIONS(1836), - [anon_sym_make] = ACTIONS(1836), - [anon_sym_while] = ACTIONS(1836), - [anon_sym_do] = ACTIONS(1836), - [anon_sym_if] = ACTIONS(1836), - [anon_sym_else] = ACTIONS(1836), - [anon_sym_match] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(1836), - [anon_sym_try] = ACTIONS(1836), - [anon_sym_catch] = ACTIONS(1836), - [anon_sym_return] = ACTIONS(1836), - [anon_sym_source] = ACTIONS(1836), - [anon_sym_source_DASHenv] = ACTIONS(1836), - [anon_sym_register] = ACTIONS(1836), - [anon_sym_hide] = ACTIONS(1836), - [anon_sym_hide_DASHenv] = ACTIONS(1836), - [anon_sym_overlay] = ACTIONS(1836), - [anon_sym_new] = ACTIONS(1836), - [anon_sym_as] = ACTIONS(1836), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1836), - [anon_sym_DOT] = ACTIONS(1824), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1836), - [aux_sym__val_number_decimal_token1] = ACTIONS(1836), - [aux_sym__val_number_decimal_token2] = ACTIONS(1836), - [aux_sym__val_number_decimal_token3] = ACTIONS(1836), - [aux_sym__val_number_decimal_token4] = ACTIONS(1836), - [aux_sym__val_number_token1] = ACTIONS(1836), - [aux_sym__val_number_token2] = ACTIONS(1836), - [aux_sym__val_number_token3] = ACTIONS(1836), - [anon_sym_DQUOTE] = ACTIONS(1836), - [sym__str_single_quotes] = ACTIONS(1836), - [sym__str_back_ticks] = ACTIONS(1836), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1836), - [sym__entry_separator] = ACTIONS(1838), - [anon_sym_PLUS] = ACTIONS(1836), - [anon_sym_POUND] = ACTIONS(3), - }, - [327] = { - [sym_cell_path] = STATE(619), - [sym_path] = STATE(527), - [sym_comment] = STATE(327), - [aux_sym_cell_path_repeat1] = STATE(425), - [anon_sym_export] = ACTIONS(1840), - [anon_sym_alias] = ACTIONS(1840), - [anon_sym_let] = ACTIONS(1840), - [anon_sym_let_DASHenv] = ACTIONS(1840), - [anon_sym_mut] = ACTIONS(1840), - [anon_sym_const] = ACTIONS(1840), - [aux_sym_cmd_identifier_token1] = ACTIONS(1840), - [aux_sym_cmd_identifier_token2] = ACTIONS(1840), - [aux_sym_cmd_identifier_token3] = ACTIONS(1840), - [aux_sym_cmd_identifier_token4] = ACTIONS(1840), - [aux_sym_cmd_identifier_token5] = ACTIONS(1840), - [aux_sym_cmd_identifier_token6] = ACTIONS(1840), - [aux_sym_cmd_identifier_token7] = ACTIONS(1840), - [aux_sym_cmd_identifier_token8] = ACTIONS(1840), - [aux_sym_cmd_identifier_token9] = ACTIONS(1840), - [aux_sym_cmd_identifier_token10] = ACTIONS(1840), - [aux_sym_cmd_identifier_token11] = ACTIONS(1840), - [aux_sym_cmd_identifier_token12] = ACTIONS(1840), - [aux_sym_cmd_identifier_token13] = ACTIONS(1840), - [aux_sym_cmd_identifier_token14] = ACTIONS(1840), - [aux_sym_cmd_identifier_token15] = ACTIONS(1840), - [aux_sym_cmd_identifier_token16] = ACTIONS(1840), - [aux_sym_cmd_identifier_token17] = ACTIONS(1840), - [aux_sym_cmd_identifier_token18] = ACTIONS(1840), - [aux_sym_cmd_identifier_token19] = ACTIONS(1840), - [aux_sym_cmd_identifier_token20] = ACTIONS(1840), - [aux_sym_cmd_identifier_token21] = ACTIONS(1840), - [aux_sym_cmd_identifier_token22] = ACTIONS(1840), - [aux_sym_cmd_identifier_token23] = ACTIONS(1840), - [aux_sym_cmd_identifier_token24] = ACTIONS(1840), - [aux_sym_cmd_identifier_token25] = ACTIONS(1840), - [aux_sym_cmd_identifier_token26] = ACTIONS(1840), - [aux_sym_cmd_identifier_token27] = ACTIONS(1840), - [aux_sym_cmd_identifier_token28] = ACTIONS(1840), - [aux_sym_cmd_identifier_token29] = ACTIONS(1840), - [aux_sym_cmd_identifier_token30] = ACTIONS(1840), - [aux_sym_cmd_identifier_token31] = ACTIONS(1840), - [aux_sym_cmd_identifier_token32] = ACTIONS(1840), - [aux_sym_cmd_identifier_token33] = ACTIONS(1840), - [aux_sym_cmd_identifier_token34] = ACTIONS(1840), - [aux_sym_cmd_identifier_token35] = ACTIONS(1840), - [aux_sym_cmd_identifier_token36] = ACTIONS(1840), - [anon_sym_true] = ACTIONS(1840), - [anon_sym_false] = ACTIONS(1840), - [anon_sym_null] = ACTIONS(1840), - [aux_sym_cmd_identifier_token38] = ACTIONS(1840), - [aux_sym_cmd_identifier_token39] = ACTIONS(1840), - [aux_sym_cmd_identifier_token40] = ACTIONS(1840), - [anon_sym_def] = ACTIONS(1840), - [anon_sym_export_DASHenv] = ACTIONS(1840), - [anon_sym_extern] = ACTIONS(1840), - [anon_sym_module] = ACTIONS(1840), - [anon_sym_use] = ACTIONS(1840), - [anon_sym_LPAREN] = ACTIONS(1840), - [anon_sym_DOLLAR] = ACTIONS(1840), - [anon_sym_error] = ACTIONS(1840), - [anon_sym_list] = ACTIONS(1840), - [anon_sym_DASH] = ACTIONS(1840), - [anon_sym_break] = ACTIONS(1840), - [anon_sym_continue] = ACTIONS(1840), - [anon_sym_for] = ACTIONS(1840), - [anon_sym_in] = ACTIONS(1840), - [anon_sym_loop] = ACTIONS(1840), - [anon_sym_make] = ACTIONS(1840), - [anon_sym_while] = ACTIONS(1840), - [anon_sym_do] = ACTIONS(1840), - [anon_sym_if] = ACTIONS(1840), - [anon_sym_else] = ACTIONS(1840), - [anon_sym_match] = ACTIONS(1840), - [anon_sym_RBRACE] = ACTIONS(1840), - [anon_sym_try] = ACTIONS(1840), - [anon_sym_catch] = ACTIONS(1840), - [anon_sym_return] = ACTIONS(1840), - [anon_sym_source] = ACTIONS(1840), - [anon_sym_source_DASHenv] = ACTIONS(1840), - [anon_sym_register] = ACTIONS(1840), - [anon_sym_hide] = ACTIONS(1840), - [anon_sym_hide_DASHenv] = ACTIONS(1840), - [anon_sym_overlay] = ACTIONS(1840), - [anon_sym_new] = ACTIONS(1840), - [anon_sym_as] = ACTIONS(1840), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1840), - [anon_sym_DOT] = ACTIONS(1824), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1840), - [aux_sym__val_number_decimal_token1] = ACTIONS(1840), - [aux_sym__val_number_decimal_token2] = ACTIONS(1840), - [aux_sym__val_number_decimal_token3] = ACTIONS(1840), - [aux_sym__val_number_decimal_token4] = ACTIONS(1840), - [aux_sym__val_number_token1] = ACTIONS(1840), - [aux_sym__val_number_token2] = ACTIONS(1840), - [aux_sym__val_number_token3] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(1840), - [sym__str_single_quotes] = ACTIONS(1840), - [sym__str_back_ticks] = ACTIONS(1840), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1840), - [sym__entry_separator] = ACTIONS(1842), - [anon_sym_PLUS] = ACTIONS(1840), - [anon_sym_POUND] = ACTIONS(3), - }, - [328] = { - [sym_cell_path] = STATE(559), - [sym_path] = STATE(527), - [sym_comment] = STATE(328), - [aux_sym_cell_path_repeat1] = STATE(425), - [anon_sym_export] = ACTIONS(1844), - [anon_sym_alias] = ACTIONS(1844), - [anon_sym_let] = ACTIONS(1844), - [anon_sym_let_DASHenv] = ACTIONS(1844), - [anon_sym_mut] = ACTIONS(1844), - [anon_sym_const] = ACTIONS(1844), - [aux_sym_cmd_identifier_token1] = ACTIONS(1844), - [aux_sym_cmd_identifier_token2] = ACTIONS(1844), - [aux_sym_cmd_identifier_token3] = ACTIONS(1844), - [aux_sym_cmd_identifier_token4] = ACTIONS(1844), - [aux_sym_cmd_identifier_token5] = ACTIONS(1844), - [aux_sym_cmd_identifier_token6] = ACTIONS(1844), - [aux_sym_cmd_identifier_token7] = ACTIONS(1844), - [aux_sym_cmd_identifier_token8] = ACTIONS(1844), - [aux_sym_cmd_identifier_token9] = ACTIONS(1844), - [aux_sym_cmd_identifier_token10] = ACTIONS(1844), - [aux_sym_cmd_identifier_token11] = ACTIONS(1844), - [aux_sym_cmd_identifier_token12] = ACTIONS(1844), - [aux_sym_cmd_identifier_token13] = ACTIONS(1844), - [aux_sym_cmd_identifier_token14] = ACTIONS(1844), - [aux_sym_cmd_identifier_token15] = ACTIONS(1844), - [aux_sym_cmd_identifier_token16] = ACTIONS(1844), - [aux_sym_cmd_identifier_token17] = ACTIONS(1844), - [aux_sym_cmd_identifier_token18] = ACTIONS(1844), - [aux_sym_cmd_identifier_token19] = ACTIONS(1844), - [aux_sym_cmd_identifier_token20] = ACTIONS(1844), - [aux_sym_cmd_identifier_token21] = ACTIONS(1844), - [aux_sym_cmd_identifier_token22] = ACTIONS(1844), - [aux_sym_cmd_identifier_token23] = ACTIONS(1844), - [aux_sym_cmd_identifier_token24] = ACTIONS(1844), - [aux_sym_cmd_identifier_token25] = ACTIONS(1844), - [aux_sym_cmd_identifier_token26] = ACTIONS(1844), - [aux_sym_cmd_identifier_token27] = ACTIONS(1844), - [aux_sym_cmd_identifier_token28] = ACTIONS(1844), - [aux_sym_cmd_identifier_token29] = ACTIONS(1844), - [aux_sym_cmd_identifier_token30] = ACTIONS(1844), - [aux_sym_cmd_identifier_token31] = ACTIONS(1844), - [aux_sym_cmd_identifier_token32] = ACTIONS(1844), - [aux_sym_cmd_identifier_token33] = ACTIONS(1844), - [aux_sym_cmd_identifier_token34] = ACTIONS(1844), - [aux_sym_cmd_identifier_token35] = ACTIONS(1844), - [aux_sym_cmd_identifier_token36] = ACTIONS(1844), - [anon_sym_true] = ACTIONS(1844), - [anon_sym_false] = ACTIONS(1844), - [anon_sym_null] = ACTIONS(1844), - [aux_sym_cmd_identifier_token38] = ACTIONS(1844), - [aux_sym_cmd_identifier_token39] = ACTIONS(1844), - [aux_sym_cmd_identifier_token40] = ACTIONS(1844), - [anon_sym_def] = ACTIONS(1844), - [anon_sym_export_DASHenv] = ACTIONS(1844), - [anon_sym_extern] = ACTIONS(1844), - [anon_sym_module] = ACTIONS(1844), - [anon_sym_use] = ACTIONS(1844), - [anon_sym_LPAREN] = ACTIONS(1844), - [anon_sym_DOLLAR] = ACTIONS(1844), - [anon_sym_error] = ACTIONS(1844), - [anon_sym_list] = ACTIONS(1844), - [anon_sym_DASH] = ACTIONS(1844), - [anon_sym_break] = ACTIONS(1844), - [anon_sym_continue] = ACTIONS(1844), - [anon_sym_for] = ACTIONS(1844), - [anon_sym_in] = ACTIONS(1844), - [anon_sym_loop] = ACTIONS(1844), - [anon_sym_make] = ACTIONS(1844), - [anon_sym_while] = ACTIONS(1844), - [anon_sym_do] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1844), - [anon_sym_else] = ACTIONS(1844), - [anon_sym_match] = ACTIONS(1844), - [anon_sym_RBRACE] = ACTIONS(1844), - [anon_sym_try] = ACTIONS(1844), - [anon_sym_catch] = ACTIONS(1844), - [anon_sym_return] = ACTIONS(1844), - [anon_sym_source] = ACTIONS(1844), - [anon_sym_source_DASHenv] = ACTIONS(1844), - [anon_sym_register] = ACTIONS(1844), - [anon_sym_hide] = ACTIONS(1844), - [anon_sym_hide_DASHenv] = ACTIONS(1844), - [anon_sym_overlay] = ACTIONS(1844), - [anon_sym_new] = ACTIONS(1844), - [anon_sym_as] = ACTIONS(1844), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1844), - [anon_sym_DOT] = ACTIONS(1824), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1844), - [aux_sym__val_number_decimal_token1] = ACTIONS(1844), - [aux_sym__val_number_decimal_token2] = ACTIONS(1844), - [aux_sym__val_number_decimal_token3] = ACTIONS(1844), - [aux_sym__val_number_decimal_token4] = ACTIONS(1844), - [aux_sym__val_number_token1] = ACTIONS(1844), - [aux_sym__val_number_token2] = ACTIONS(1844), - [aux_sym__val_number_token3] = ACTIONS(1844), - [anon_sym_DQUOTE] = ACTIONS(1844), - [sym__str_single_quotes] = ACTIONS(1844), - [sym__str_back_ticks] = ACTIONS(1844), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1844), - [sym__entry_separator] = ACTIONS(1846), - [anon_sym_PLUS] = ACTIONS(1844), - [anon_sym_POUND] = ACTIONS(3), - }, - [329] = { - [sym_cell_path] = STATE(560), - [sym_path] = STATE(527), - [sym_comment] = STATE(329), - [aux_sym_cell_path_repeat1] = STATE(425), - [anon_sym_export] = ACTIONS(1848), - [anon_sym_alias] = ACTIONS(1848), - [anon_sym_let] = ACTIONS(1848), - [anon_sym_let_DASHenv] = ACTIONS(1848), - [anon_sym_mut] = ACTIONS(1848), - [anon_sym_const] = ACTIONS(1848), - [aux_sym_cmd_identifier_token1] = ACTIONS(1848), - [aux_sym_cmd_identifier_token2] = ACTIONS(1848), - [aux_sym_cmd_identifier_token3] = ACTIONS(1848), - [aux_sym_cmd_identifier_token4] = ACTIONS(1848), - [aux_sym_cmd_identifier_token5] = ACTIONS(1848), - [aux_sym_cmd_identifier_token6] = ACTIONS(1848), - [aux_sym_cmd_identifier_token7] = ACTIONS(1848), - [aux_sym_cmd_identifier_token8] = ACTIONS(1848), - [aux_sym_cmd_identifier_token9] = ACTIONS(1848), - [aux_sym_cmd_identifier_token10] = ACTIONS(1848), - [aux_sym_cmd_identifier_token11] = ACTIONS(1848), - [aux_sym_cmd_identifier_token12] = ACTIONS(1848), - [aux_sym_cmd_identifier_token13] = ACTIONS(1848), - [aux_sym_cmd_identifier_token14] = ACTIONS(1848), - [aux_sym_cmd_identifier_token15] = ACTIONS(1848), - [aux_sym_cmd_identifier_token16] = ACTIONS(1848), - [aux_sym_cmd_identifier_token17] = ACTIONS(1848), - [aux_sym_cmd_identifier_token18] = ACTIONS(1848), - [aux_sym_cmd_identifier_token19] = ACTIONS(1848), - [aux_sym_cmd_identifier_token20] = ACTIONS(1848), - [aux_sym_cmd_identifier_token21] = ACTIONS(1848), - [aux_sym_cmd_identifier_token22] = ACTIONS(1848), - [aux_sym_cmd_identifier_token23] = ACTIONS(1848), - [aux_sym_cmd_identifier_token24] = ACTIONS(1848), - [aux_sym_cmd_identifier_token25] = ACTIONS(1848), - [aux_sym_cmd_identifier_token26] = ACTIONS(1848), - [aux_sym_cmd_identifier_token27] = ACTIONS(1848), - [aux_sym_cmd_identifier_token28] = ACTIONS(1848), - [aux_sym_cmd_identifier_token29] = ACTIONS(1848), - [aux_sym_cmd_identifier_token30] = ACTIONS(1848), - [aux_sym_cmd_identifier_token31] = ACTIONS(1848), - [aux_sym_cmd_identifier_token32] = ACTIONS(1848), - [aux_sym_cmd_identifier_token33] = ACTIONS(1848), - [aux_sym_cmd_identifier_token34] = ACTIONS(1848), - [aux_sym_cmd_identifier_token35] = ACTIONS(1848), - [aux_sym_cmd_identifier_token36] = ACTIONS(1848), - [anon_sym_true] = ACTIONS(1848), - [anon_sym_false] = ACTIONS(1848), - [anon_sym_null] = ACTIONS(1848), - [aux_sym_cmd_identifier_token38] = ACTIONS(1848), - [aux_sym_cmd_identifier_token39] = ACTIONS(1848), - [aux_sym_cmd_identifier_token40] = ACTIONS(1848), - [anon_sym_def] = ACTIONS(1848), - [anon_sym_export_DASHenv] = ACTIONS(1848), - [anon_sym_extern] = ACTIONS(1848), - [anon_sym_module] = ACTIONS(1848), - [anon_sym_use] = ACTIONS(1848), - [anon_sym_LPAREN] = ACTIONS(1848), - [anon_sym_DOLLAR] = ACTIONS(1848), - [anon_sym_error] = ACTIONS(1848), - [anon_sym_list] = ACTIONS(1848), - [anon_sym_DASH] = ACTIONS(1848), - [anon_sym_break] = ACTIONS(1848), - [anon_sym_continue] = ACTIONS(1848), - [anon_sym_for] = ACTIONS(1848), - [anon_sym_in] = ACTIONS(1848), - [anon_sym_loop] = ACTIONS(1848), - [anon_sym_make] = ACTIONS(1848), - [anon_sym_while] = ACTIONS(1848), - [anon_sym_do] = ACTIONS(1848), - [anon_sym_if] = ACTIONS(1848), - [anon_sym_else] = ACTIONS(1848), - [anon_sym_match] = ACTIONS(1848), - [anon_sym_RBRACE] = ACTIONS(1848), - [anon_sym_try] = ACTIONS(1848), - [anon_sym_catch] = ACTIONS(1848), - [anon_sym_return] = ACTIONS(1848), - [anon_sym_source] = ACTIONS(1848), - [anon_sym_source_DASHenv] = ACTIONS(1848), - [anon_sym_register] = ACTIONS(1848), - [anon_sym_hide] = ACTIONS(1848), - [anon_sym_hide_DASHenv] = ACTIONS(1848), - [anon_sym_overlay] = ACTIONS(1848), - [anon_sym_new] = ACTIONS(1848), - [anon_sym_as] = ACTIONS(1848), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1848), - [anon_sym_DOT] = ACTIONS(1824), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1848), - [aux_sym__val_number_decimal_token1] = ACTIONS(1848), - [aux_sym__val_number_decimal_token2] = ACTIONS(1848), - [aux_sym__val_number_decimal_token3] = ACTIONS(1848), - [aux_sym__val_number_decimal_token4] = ACTIONS(1848), - [aux_sym__val_number_token1] = ACTIONS(1848), - [aux_sym__val_number_token2] = ACTIONS(1848), - [aux_sym__val_number_token3] = ACTIONS(1848), - [anon_sym_DQUOTE] = ACTIONS(1848), - [sym__str_single_quotes] = ACTIONS(1848), - [sym__str_back_ticks] = ACTIONS(1848), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1848), - [sym__entry_separator] = ACTIONS(1850), - [anon_sym_PLUS] = ACTIONS(1848), - [anon_sym_POUND] = ACTIONS(3), - }, - [330] = { - [sym_cell_path] = STATE(563), - [sym_path] = STATE(527), - [sym_comment] = STATE(330), - [aux_sym_cell_path_repeat1] = STATE(425), - [anon_sym_export] = ACTIONS(1852), - [anon_sym_alias] = ACTIONS(1852), - [anon_sym_let] = ACTIONS(1852), - [anon_sym_let_DASHenv] = ACTIONS(1852), - [anon_sym_mut] = ACTIONS(1852), - [anon_sym_const] = ACTIONS(1852), - [aux_sym_cmd_identifier_token1] = ACTIONS(1852), - [aux_sym_cmd_identifier_token2] = ACTIONS(1852), - [aux_sym_cmd_identifier_token3] = ACTIONS(1852), - [aux_sym_cmd_identifier_token4] = ACTIONS(1852), - [aux_sym_cmd_identifier_token5] = ACTIONS(1852), - [aux_sym_cmd_identifier_token6] = ACTIONS(1852), - [aux_sym_cmd_identifier_token7] = ACTIONS(1852), - [aux_sym_cmd_identifier_token8] = ACTIONS(1852), - [aux_sym_cmd_identifier_token9] = ACTIONS(1852), - [aux_sym_cmd_identifier_token10] = ACTIONS(1852), - [aux_sym_cmd_identifier_token11] = ACTIONS(1852), - [aux_sym_cmd_identifier_token12] = ACTIONS(1852), - [aux_sym_cmd_identifier_token13] = ACTIONS(1852), - [aux_sym_cmd_identifier_token14] = ACTIONS(1852), - [aux_sym_cmd_identifier_token15] = ACTIONS(1852), - [aux_sym_cmd_identifier_token16] = ACTIONS(1852), - [aux_sym_cmd_identifier_token17] = ACTIONS(1852), - [aux_sym_cmd_identifier_token18] = ACTIONS(1852), - [aux_sym_cmd_identifier_token19] = ACTIONS(1852), - [aux_sym_cmd_identifier_token20] = ACTIONS(1852), - [aux_sym_cmd_identifier_token21] = ACTIONS(1852), - [aux_sym_cmd_identifier_token22] = ACTIONS(1852), - [aux_sym_cmd_identifier_token23] = ACTIONS(1852), - [aux_sym_cmd_identifier_token24] = ACTIONS(1852), - [aux_sym_cmd_identifier_token25] = ACTIONS(1852), - [aux_sym_cmd_identifier_token26] = ACTIONS(1852), - [aux_sym_cmd_identifier_token27] = ACTIONS(1852), - [aux_sym_cmd_identifier_token28] = ACTIONS(1852), - [aux_sym_cmd_identifier_token29] = ACTIONS(1852), - [aux_sym_cmd_identifier_token30] = ACTIONS(1852), - [aux_sym_cmd_identifier_token31] = ACTIONS(1852), - [aux_sym_cmd_identifier_token32] = ACTIONS(1852), - [aux_sym_cmd_identifier_token33] = ACTIONS(1852), - [aux_sym_cmd_identifier_token34] = ACTIONS(1852), - [aux_sym_cmd_identifier_token35] = ACTIONS(1852), - [aux_sym_cmd_identifier_token36] = ACTIONS(1852), - [anon_sym_true] = ACTIONS(1852), - [anon_sym_false] = ACTIONS(1852), - [anon_sym_null] = ACTIONS(1852), - [aux_sym_cmd_identifier_token38] = ACTIONS(1852), - [aux_sym_cmd_identifier_token39] = ACTIONS(1852), - [aux_sym_cmd_identifier_token40] = ACTIONS(1852), - [anon_sym_def] = ACTIONS(1852), - [anon_sym_export_DASHenv] = ACTIONS(1852), - [anon_sym_extern] = ACTIONS(1852), - [anon_sym_module] = ACTIONS(1852), - [anon_sym_use] = ACTIONS(1852), - [anon_sym_LPAREN] = ACTIONS(1852), - [anon_sym_DOLLAR] = ACTIONS(1852), - [anon_sym_error] = ACTIONS(1852), - [anon_sym_list] = ACTIONS(1852), - [anon_sym_DASH] = ACTIONS(1852), - [anon_sym_break] = ACTIONS(1852), - [anon_sym_continue] = ACTIONS(1852), - [anon_sym_for] = ACTIONS(1852), - [anon_sym_in] = ACTIONS(1852), - [anon_sym_loop] = ACTIONS(1852), - [anon_sym_make] = ACTIONS(1852), - [anon_sym_while] = ACTIONS(1852), - [anon_sym_do] = ACTIONS(1852), - [anon_sym_if] = ACTIONS(1852), - [anon_sym_else] = ACTIONS(1852), - [anon_sym_match] = ACTIONS(1852), - [anon_sym_RBRACE] = ACTIONS(1852), - [anon_sym_try] = ACTIONS(1852), - [anon_sym_catch] = ACTIONS(1852), - [anon_sym_return] = ACTIONS(1852), - [anon_sym_source] = ACTIONS(1852), - [anon_sym_source_DASHenv] = ACTIONS(1852), - [anon_sym_register] = ACTIONS(1852), - [anon_sym_hide] = ACTIONS(1852), - [anon_sym_hide_DASHenv] = ACTIONS(1852), - [anon_sym_overlay] = ACTIONS(1852), - [anon_sym_new] = ACTIONS(1852), - [anon_sym_as] = ACTIONS(1852), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1852), - [anon_sym_DOT] = ACTIONS(1824), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1852), - [aux_sym__val_number_decimal_token1] = ACTIONS(1852), - [aux_sym__val_number_decimal_token2] = ACTIONS(1852), - [aux_sym__val_number_decimal_token3] = ACTIONS(1852), - [aux_sym__val_number_decimal_token4] = ACTIONS(1852), - [aux_sym__val_number_token1] = ACTIONS(1852), - [aux_sym__val_number_token2] = ACTIONS(1852), - [aux_sym__val_number_token3] = ACTIONS(1852), - [anon_sym_DQUOTE] = ACTIONS(1852), - [sym__str_single_quotes] = ACTIONS(1852), - [sym__str_back_ticks] = ACTIONS(1852), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1852), - [sym__entry_separator] = ACTIONS(1854), - [anon_sym_PLUS] = ACTIONS(1852), + [313] = { + [sym_comment] = STATE(313), + [anon_sym_export] = ACTIONS(1703), + [anon_sym_alias] = ACTIONS(1703), + [anon_sym_let] = ACTIONS(1703), + [anon_sym_let_DASHenv] = ACTIONS(1703), + [anon_sym_mut] = ACTIONS(1703), + [anon_sym_const] = ACTIONS(1703), + [aux_sym_cmd_identifier_token1] = ACTIONS(1703), + [aux_sym_cmd_identifier_token2] = ACTIONS(1703), + [aux_sym_cmd_identifier_token3] = ACTIONS(1703), + [aux_sym_cmd_identifier_token4] = ACTIONS(1703), + [aux_sym_cmd_identifier_token5] = ACTIONS(1703), + [aux_sym_cmd_identifier_token6] = ACTIONS(1703), + [aux_sym_cmd_identifier_token7] = ACTIONS(1703), + [aux_sym_cmd_identifier_token8] = ACTIONS(1703), + [aux_sym_cmd_identifier_token9] = ACTIONS(1703), + [aux_sym_cmd_identifier_token10] = ACTIONS(1703), + [aux_sym_cmd_identifier_token11] = ACTIONS(1703), + [aux_sym_cmd_identifier_token12] = ACTIONS(1703), + [aux_sym_cmd_identifier_token13] = ACTIONS(1703), + [aux_sym_cmd_identifier_token14] = ACTIONS(1703), + [aux_sym_cmd_identifier_token15] = ACTIONS(1703), + [aux_sym_cmd_identifier_token16] = ACTIONS(1703), + [aux_sym_cmd_identifier_token17] = ACTIONS(1703), + [aux_sym_cmd_identifier_token18] = ACTIONS(1703), + [aux_sym_cmd_identifier_token19] = ACTIONS(1703), + [aux_sym_cmd_identifier_token20] = ACTIONS(1703), + [aux_sym_cmd_identifier_token21] = ACTIONS(1703), + [aux_sym_cmd_identifier_token22] = ACTIONS(1703), + [aux_sym_cmd_identifier_token23] = ACTIONS(1703), + [aux_sym_cmd_identifier_token24] = ACTIONS(1703), + [aux_sym_cmd_identifier_token25] = ACTIONS(1703), + [aux_sym_cmd_identifier_token26] = ACTIONS(1703), + [aux_sym_cmd_identifier_token27] = ACTIONS(1703), + [aux_sym_cmd_identifier_token28] = ACTIONS(1703), + [aux_sym_cmd_identifier_token29] = ACTIONS(1703), + [aux_sym_cmd_identifier_token30] = ACTIONS(1703), + [aux_sym_cmd_identifier_token31] = ACTIONS(1703), + [aux_sym_cmd_identifier_token32] = ACTIONS(1703), + [aux_sym_cmd_identifier_token33] = ACTIONS(1703), + [aux_sym_cmd_identifier_token34] = ACTIONS(1703), + [aux_sym_cmd_identifier_token35] = ACTIONS(1703), + [aux_sym_cmd_identifier_token36] = ACTIONS(1703), + [anon_sym_true] = ACTIONS(1703), + [anon_sym_false] = ACTIONS(1703), + [anon_sym_null] = ACTIONS(1703), + [aux_sym_cmd_identifier_token38] = ACTIONS(1703), + [aux_sym_cmd_identifier_token39] = ACTIONS(1703), + [aux_sym_cmd_identifier_token40] = ACTIONS(1703), + [anon_sym_def] = ACTIONS(1703), + [anon_sym_export_DASHenv] = ACTIONS(1703), + [anon_sym_extern] = ACTIONS(1703), + [anon_sym_module] = ACTIONS(1703), + [anon_sym_use] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1703), + [anon_sym_error] = ACTIONS(1703), + [anon_sym_list] = ACTIONS(1703), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_break] = ACTIONS(1703), + [anon_sym_continue] = ACTIONS(1703), + [anon_sym_for] = ACTIONS(1703), + [anon_sym_in] = ACTIONS(1703), + [anon_sym_loop] = ACTIONS(1703), + [anon_sym_make] = ACTIONS(1703), + [anon_sym_while] = ACTIONS(1703), + [anon_sym_do] = ACTIONS(1703), + [anon_sym_if] = ACTIONS(1703), + [anon_sym_else] = ACTIONS(1703), + [anon_sym_match] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1703), + [anon_sym_try] = ACTIONS(1703), + [anon_sym_catch] = ACTIONS(1703), + [anon_sym_return] = ACTIONS(1703), + [anon_sym_source] = ACTIONS(1703), + [anon_sym_source_DASHenv] = ACTIONS(1703), + [anon_sym_register] = ACTIONS(1703), + [anon_sym_hide] = ACTIONS(1703), + [anon_sym_hide_DASHenv] = ACTIONS(1703), + [anon_sym_overlay] = ACTIONS(1703), + [anon_sym_new] = ACTIONS(1703), + [anon_sym_as] = ACTIONS(1703), + [anon_sym_LPAREN2] = ACTIONS(1705), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1703), + [anon_sym_DOT_DOT2] = ACTIONS(1703), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1705), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1705), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1703), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1703), + [sym__entry_separator] = ACTIONS(1705), + [anon_sym_PLUS] = ACTIONS(1703), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1703), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1705), }, - [331] = { - [sym_cell_path] = STATE(564), - [sym_path] = STATE(527), - [sym_comment] = STATE(331), - [aux_sym_cell_path_repeat1] = STATE(425), - [anon_sym_export] = ACTIONS(1856), - [anon_sym_alias] = ACTIONS(1856), - [anon_sym_let] = ACTIONS(1856), - [anon_sym_let_DASHenv] = ACTIONS(1856), - [anon_sym_mut] = ACTIONS(1856), - [anon_sym_const] = ACTIONS(1856), - [aux_sym_cmd_identifier_token1] = ACTIONS(1856), - [aux_sym_cmd_identifier_token2] = ACTIONS(1856), - [aux_sym_cmd_identifier_token3] = ACTIONS(1856), - [aux_sym_cmd_identifier_token4] = ACTIONS(1856), - [aux_sym_cmd_identifier_token5] = ACTIONS(1856), - [aux_sym_cmd_identifier_token6] = ACTIONS(1856), - [aux_sym_cmd_identifier_token7] = ACTIONS(1856), - [aux_sym_cmd_identifier_token8] = ACTIONS(1856), - [aux_sym_cmd_identifier_token9] = ACTIONS(1856), - [aux_sym_cmd_identifier_token10] = ACTIONS(1856), - [aux_sym_cmd_identifier_token11] = ACTIONS(1856), - [aux_sym_cmd_identifier_token12] = ACTIONS(1856), - [aux_sym_cmd_identifier_token13] = ACTIONS(1856), - [aux_sym_cmd_identifier_token14] = ACTIONS(1856), - [aux_sym_cmd_identifier_token15] = ACTIONS(1856), - [aux_sym_cmd_identifier_token16] = ACTIONS(1856), - [aux_sym_cmd_identifier_token17] = ACTIONS(1856), - [aux_sym_cmd_identifier_token18] = ACTIONS(1856), - [aux_sym_cmd_identifier_token19] = ACTIONS(1856), - [aux_sym_cmd_identifier_token20] = ACTIONS(1856), - [aux_sym_cmd_identifier_token21] = ACTIONS(1856), - [aux_sym_cmd_identifier_token22] = ACTIONS(1856), - [aux_sym_cmd_identifier_token23] = ACTIONS(1856), - [aux_sym_cmd_identifier_token24] = ACTIONS(1856), - [aux_sym_cmd_identifier_token25] = ACTIONS(1856), - [aux_sym_cmd_identifier_token26] = ACTIONS(1856), - [aux_sym_cmd_identifier_token27] = ACTIONS(1856), - [aux_sym_cmd_identifier_token28] = ACTIONS(1856), - [aux_sym_cmd_identifier_token29] = ACTIONS(1856), - [aux_sym_cmd_identifier_token30] = ACTIONS(1856), - [aux_sym_cmd_identifier_token31] = ACTIONS(1856), - [aux_sym_cmd_identifier_token32] = ACTIONS(1856), - [aux_sym_cmd_identifier_token33] = ACTIONS(1856), - [aux_sym_cmd_identifier_token34] = ACTIONS(1856), - [aux_sym_cmd_identifier_token35] = ACTIONS(1856), - [aux_sym_cmd_identifier_token36] = ACTIONS(1856), - [anon_sym_true] = ACTIONS(1856), - [anon_sym_false] = ACTIONS(1856), - [anon_sym_null] = ACTIONS(1856), - [aux_sym_cmd_identifier_token38] = ACTIONS(1856), - [aux_sym_cmd_identifier_token39] = ACTIONS(1856), - [aux_sym_cmd_identifier_token40] = ACTIONS(1856), - [anon_sym_def] = ACTIONS(1856), - [anon_sym_export_DASHenv] = ACTIONS(1856), - [anon_sym_extern] = ACTIONS(1856), - [anon_sym_module] = ACTIONS(1856), - [anon_sym_use] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(1856), - [anon_sym_DOLLAR] = ACTIONS(1856), - [anon_sym_error] = ACTIONS(1856), - [anon_sym_list] = ACTIONS(1856), - [anon_sym_DASH] = ACTIONS(1856), - [anon_sym_break] = ACTIONS(1856), - [anon_sym_continue] = ACTIONS(1856), - [anon_sym_for] = ACTIONS(1856), - [anon_sym_in] = ACTIONS(1856), - [anon_sym_loop] = ACTIONS(1856), - [anon_sym_make] = ACTIONS(1856), - [anon_sym_while] = ACTIONS(1856), - [anon_sym_do] = ACTIONS(1856), - [anon_sym_if] = ACTIONS(1856), - [anon_sym_else] = ACTIONS(1856), - [anon_sym_match] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(1856), - [anon_sym_try] = ACTIONS(1856), - [anon_sym_catch] = ACTIONS(1856), - [anon_sym_return] = ACTIONS(1856), - [anon_sym_source] = ACTIONS(1856), - [anon_sym_source_DASHenv] = ACTIONS(1856), - [anon_sym_register] = ACTIONS(1856), - [anon_sym_hide] = ACTIONS(1856), - [anon_sym_hide_DASHenv] = ACTIONS(1856), - [anon_sym_overlay] = ACTIONS(1856), - [anon_sym_new] = ACTIONS(1856), - [anon_sym_as] = ACTIONS(1856), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1856), - [anon_sym_DOT] = ACTIONS(1824), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1856), - [aux_sym__val_number_decimal_token1] = ACTIONS(1856), - [aux_sym__val_number_decimal_token2] = ACTIONS(1856), - [aux_sym__val_number_decimal_token3] = ACTIONS(1856), - [aux_sym__val_number_decimal_token4] = ACTIONS(1856), - [aux_sym__val_number_token1] = ACTIONS(1856), - [aux_sym__val_number_token2] = ACTIONS(1856), - [aux_sym__val_number_token3] = ACTIONS(1856), - [anon_sym_DQUOTE] = ACTIONS(1856), - [sym__str_single_quotes] = ACTIONS(1856), - [sym__str_back_ticks] = ACTIONS(1856), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1856), - [sym__entry_separator] = ACTIONS(1858), - [anon_sym_PLUS] = ACTIONS(1856), - [anon_sym_POUND] = ACTIONS(3), + [314] = { + [sym_comment] = STATE(314), + [ts_builtin_sym_end] = ACTIONS(1366), + [anon_sym_export] = ACTIONS(1757), + [anon_sym_alias] = ACTIONS(1757), + [anon_sym_let] = ACTIONS(1757), + [anon_sym_let_DASHenv] = ACTIONS(1757), + [anon_sym_mut] = ACTIONS(1757), + [anon_sym_const] = ACTIONS(1757), + [aux_sym_cmd_identifier_token1] = ACTIONS(1757), + [aux_sym_cmd_identifier_token2] = ACTIONS(1757), + [aux_sym_cmd_identifier_token3] = ACTIONS(1757), + [aux_sym_cmd_identifier_token4] = ACTIONS(1757), + [aux_sym_cmd_identifier_token5] = ACTIONS(1757), + [aux_sym_cmd_identifier_token6] = ACTIONS(1757), + [aux_sym_cmd_identifier_token7] = ACTIONS(1757), + [aux_sym_cmd_identifier_token8] = ACTIONS(1757), + [aux_sym_cmd_identifier_token9] = ACTIONS(1757), + [aux_sym_cmd_identifier_token10] = ACTIONS(1757), + [aux_sym_cmd_identifier_token11] = ACTIONS(1757), + [aux_sym_cmd_identifier_token12] = ACTIONS(1757), + [aux_sym_cmd_identifier_token13] = ACTIONS(1757), + [aux_sym_cmd_identifier_token14] = ACTIONS(1757), + [aux_sym_cmd_identifier_token15] = ACTIONS(1757), + [aux_sym_cmd_identifier_token16] = ACTIONS(1757), + [aux_sym_cmd_identifier_token17] = ACTIONS(1757), + [aux_sym_cmd_identifier_token18] = ACTIONS(1757), + [aux_sym_cmd_identifier_token19] = ACTIONS(1757), + [aux_sym_cmd_identifier_token20] = ACTIONS(1757), + [aux_sym_cmd_identifier_token21] = ACTIONS(1757), + [aux_sym_cmd_identifier_token22] = ACTIONS(1757), + [aux_sym_cmd_identifier_token23] = ACTIONS(1757), + [aux_sym_cmd_identifier_token24] = ACTIONS(1366), + [aux_sym_cmd_identifier_token25] = ACTIONS(1757), + [aux_sym_cmd_identifier_token26] = ACTIONS(1366), + [aux_sym_cmd_identifier_token27] = ACTIONS(1757), + [aux_sym_cmd_identifier_token28] = ACTIONS(1757), + [aux_sym_cmd_identifier_token29] = ACTIONS(1757), + [aux_sym_cmd_identifier_token30] = ACTIONS(1757), + [aux_sym_cmd_identifier_token31] = ACTIONS(1366), + [aux_sym_cmd_identifier_token32] = ACTIONS(1366), + [aux_sym_cmd_identifier_token33] = ACTIONS(1366), + [aux_sym_cmd_identifier_token34] = ACTIONS(1366), + [aux_sym_cmd_identifier_token35] = ACTIONS(1366), + [aux_sym_cmd_identifier_token36] = ACTIONS(1757), + [anon_sym_true] = ACTIONS(1366), + [anon_sym_false] = ACTIONS(1366), + [anon_sym_null] = ACTIONS(1366), + [aux_sym_cmd_identifier_token38] = ACTIONS(1757), + [aux_sym_cmd_identifier_token39] = ACTIONS(1366), + [aux_sym_cmd_identifier_token40] = ACTIONS(1366), + [sym__newline] = ACTIONS(1366), + [anon_sym_SEMI] = ACTIONS(1366), + [anon_sym_def] = ACTIONS(1757), + [anon_sym_export_DASHenv] = ACTIONS(1757), + [anon_sym_extern] = ACTIONS(1757), + [anon_sym_module] = ACTIONS(1757), + [anon_sym_use] = ACTIONS(1757), + [anon_sym_LBRACK] = ACTIONS(1366), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_DOLLAR] = ACTIONS(1757), + [anon_sym_error] = ACTIONS(1757), + [anon_sym_DASH] = ACTIONS(1757), + [anon_sym_break] = ACTIONS(1757), + [anon_sym_continue] = ACTIONS(1757), + [anon_sym_for] = ACTIONS(1757), + [anon_sym_loop] = ACTIONS(1757), + [anon_sym_while] = ACTIONS(1757), + [anon_sym_do] = ACTIONS(1757), + [anon_sym_if] = ACTIONS(1757), + [anon_sym_match] = ACTIONS(1757), + [anon_sym_LBRACE] = ACTIONS(1366), + [anon_sym_DOT_DOT] = ACTIONS(1757), + [anon_sym_try] = ACTIONS(1757), + [anon_sym_return] = ACTIONS(1757), + [anon_sym_source] = ACTIONS(1757), + [anon_sym_source_DASHenv] = ACTIONS(1757), + [anon_sym_register] = ACTIONS(1757), + [anon_sym_hide] = ACTIONS(1757), + [anon_sym_hide_DASHenv] = ACTIONS(1757), + [anon_sym_overlay] = ACTIONS(1757), + [anon_sym_where] = ACTIONS(1366), + [aux_sym_expr_unary_token1] = ACTIONS(1366), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1366), + [anon_sym_DOT_DOT_LT] = ACTIONS(1366), + [aux_sym__val_number_decimal_token1] = ACTIONS(1757), + [aux_sym__val_number_decimal_token2] = ACTIONS(1366), + [aux_sym__val_number_decimal_token3] = ACTIONS(1366), + [aux_sym__val_number_decimal_token4] = ACTIONS(1366), + [aux_sym__val_number_token1] = ACTIONS(1366), + [aux_sym__val_number_token2] = ACTIONS(1366), + [aux_sym__val_number_token3] = ACTIONS(1366), + [anon_sym_0b] = ACTIONS(1757), + [anon_sym_0o] = ACTIONS(1757), + [anon_sym_0x] = ACTIONS(1757), + [sym_val_date] = ACTIONS(1366), + [anon_sym_DQUOTE] = ACTIONS(1366), + [sym__str_single_quotes] = ACTIONS(1366), + [sym__str_back_ticks] = ACTIONS(1366), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1366), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1366), + [aux_sym_env_var_token1] = ACTIONS(1757), + [anon_sym_CARET] = ACTIONS(1366), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1366), }, - [332] = { - [sym_cell_path] = STATE(557), - [sym_path] = STATE(527), - [sym_comment] = STATE(332), - [aux_sym_cell_path_repeat1] = STATE(425), - [anon_sym_export] = ACTIONS(1860), - [anon_sym_alias] = ACTIONS(1860), - [anon_sym_let] = ACTIONS(1860), - [anon_sym_let_DASHenv] = ACTIONS(1860), - [anon_sym_mut] = ACTIONS(1860), - [anon_sym_const] = ACTIONS(1860), - [aux_sym_cmd_identifier_token1] = ACTIONS(1860), - [aux_sym_cmd_identifier_token2] = ACTIONS(1860), - [aux_sym_cmd_identifier_token3] = ACTIONS(1860), - [aux_sym_cmd_identifier_token4] = ACTIONS(1860), - [aux_sym_cmd_identifier_token5] = ACTIONS(1860), - [aux_sym_cmd_identifier_token6] = ACTIONS(1860), - [aux_sym_cmd_identifier_token7] = ACTIONS(1860), - [aux_sym_cmd_identifier_token8] = ACTIONS(1860), - [aux_sym_cmd_identifier_token9] = ACTIONS(1860), - [aux_sym_cmd_identifier_token10] = ACTIONS(1860), - [aux_sym_cmd_identifier_token11] = ACTIONS(1860), - [aux_sym_cmd_identifier_token12] = ACTIONS(1860), - [aux_sym_cmd_identifier_token13] = ACTIONS(1860), - [aux_sym_cmd_identifier_token14] = ACTIONS(1860), - [aux_sym_cmd_identifier_token15] = ACTIONS(1860), - [aux_sym_cmd_identifier_token16] = ACTIONS(1860), - [aux_sym_cmd_identifier_token17] = ACTIONS(1860), - [aux_sym_cmd_identifier_token18] = ACTIONS(1860), - [aux_sym_cmd_identifier_token19] = ACTIONS(1860), - [aux_sym_cmd_identifier_token20] = ACTIONS(1860), - [aux_sym_cmd_identifier_token21] = ACTIONS(1860), - [aux_sym_cmd_identifier_token22] = ACTIONS(1860), - [aux_sym_cmd_identifier_token23] = ACTIONS(1860), - [aux_sym_cmd_identifier_token24] = ACTIONS(1860), - [aux_sym_cmd_identifier_token25] = ACTIONS(1860), - [aux_sym_cmd_identifier_token26] = ACTIONS(1860), - [aux_sym_cmd_identifier_token27] = ACTIONS(1860), - [aux_sym_cmd_identifier_token28] = ACTIONS(1860), - [aux_sym_cmd_identifier_token29] = ACTIONS(1860), - [aux_sym_cmd_identifier_token30] = ACTIONS(1860), - [aux_sym_cmd_identifier_token31] = ACTIONS(1860), - [aux_sym_cmd_identifier_token32] = ACTIONS(1860), - [aux_sym_cmd_identifier_token33] = ACTIONS(1860), - [aux_sym_cmd_identifier_token34] = ACTIONS(1860), - [aux_sym_cmd_identifier_token35] = ACTIONS(1860), - [aux_sym_cmd_identifier_token36] = ACTIONS(1860), - [anon_sym_true] = ACTIONS(1860), - [anon_sym_false] = ACTIONS(1860), - [anon_sym_null] = ACTIONS(1860), - [aux_sym_cmd_identifier_token38] = ACTIONS(1860), - [aux_sym_cmd_identifier_token39] = ACTIONS(1860), - [aux_sym_cmd_identifier_token40] = ACTIONS(1860), - [anon_sym_def] = ACTIONS(1860), - [anon_sym_export_DASHenv] = ACTIONS(1860), - [anon_sym_extern] = ACTIONS(1860), - [anon_sym_module] = ACTIONS(1860), - [anon_sym_use] = ACTIONS(1860), - [anon_sym_LPAREN] = ACTIONS(1860), - [anon_sym_DOLLAR] = ACTIONS(1860), - [anon_sym_error] = ACTIONS(1860), - [anon_sym_list] = ACTIONS(1860), - [anon_sym_DASH] = ACTIONS(1860), - [anon_sym_break] = ACTIONS(1860), - [anon_sym_continue] = ACTIONS(1860), - [anon_sym_for] = ACTIONS(1860), - [anon_sym_in] = ACTIONS(1860), - [anon_sym_loop] = ACTIONS(1860), - [anon_sym_make] = ACTIONS(1860), - [anon_sym_while] = ACTIONS(1860), - [anon_sym_do] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(1860), - [anon_sym_else] = ACTIONS(1860), - [anon_sym_match] = ACTIONS(1860), - [anon_sym_RBRACE] = ACTIONS(1860), - [anon_sym_try] = ACTIONS(1860), - [anon_sym_catch] = ACTIONS(1860), - [anon_sym_return] = ACTIONS(1860), - [anon_sym_source] = ACTIONS(1860), - [anon_sym_source_DASHenv] = ACTIONS(1860), - [anon_sym_register] = ACTIONS(1860), - [anon_sym_hide] = ACTIONS(1860), - [anon_sym_hide_DASHenv] = ACTIONS(1860), - [anon_sym_overlay] = ACTIONS(1860), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_as] = ACTIONS(1860), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1860), - [anon_sym_DOT] = ACTIONS(1824), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1860), - [aux_sym__val_number_decimal_token1] = ACTIONS(1860), - [aux_sym__val_number_decimal_token2] = ACTIONS(1860), - [aux_sym__val_number_decimal_token3] = ACTIONS(1860), - [aux_sym__val_number_decimal_token4] = ACTIONS(1860), - [aux_sym__val_number_token1] = ACTIONS(1860), - [aux_sym__val_number_token2] = ACTIONS(1860), - [aux_sym__val_number_token3] = ACTIONS(1860), - [anon_sym_DQUOTE] = ACTIONS(1860), - [sym__str_single_quotes] = ACTIONS(1860), - [sym__str_back_ticks] = ACTIONS(1860), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1860), - [sym__entry_separator] = ACTIONS(1862), - [anon_sym_PLUS] = ACTIONS(1860), + [315] = { + [sym_comment] = STATE(315), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_alias] = ACTIONS(1048), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_let_DASHenv] = ACTIONS(1048), + [anon_sym_mut] = ACTIONS(1048), + [anon_sym_const] = ACTIONS(1048), + [aux_sym_cmd_identifier_token1] = ACTIONS(1048), + [aux_sym_cmd_identifier_token2] = ACTIONS(1048), + [aux_sym_cmd_identifier_token3] = ACTIONS(1048), + [aux_sym_cmd_identifier_token4] = ACTIONS(1048), + [aux_sym_cmd_identifier_token5] = ACTIONS(1048), + [aux_sym_cmd_identifier_token6] = ACTIONS(1048), + [aux_sym_cmd_identifier_token7] = ACTIONS(1048), + [aux_sym_cmd_identifier_token8] = ACTIONS(1048), + [aux_sym_cmd_identifier_token9] = ACTIONS(1048), + [aux_sym_cmd_identifier_token10] = ACTIONS(1048), + [aux_sym_cmd_identifier_token11] = ACTIONS(1048), + [aux_sym_cmd_identifier_token12] = ACTIONS(1048), + [aux_sym_cmd_identifier_token13] = ACTIONS(1048), + [aux_sym_cmd_identifier_token14] = ACTIONS(1048), + [aux_sym_cmd_identifier_token15] = ACTIONS(1048), + [aux_sym_cmd_identifier_token16] = ACTIONS(1048), + [aux_sym_cmd_identifier_token17] = ACTIONS(1048), + [aux_sym_cmd_identifier_token18] = ACTIONS(1048), + [aux_sym_cmd_identifier_token19] = ACTIONS(1048), + [aux_sym_cmd_identifier_token20] = ACTIONS(1048), + [aux_sym_cmd_identifier_token21] = ACTIONS(1048), + [aux_sym_cmd_identifier_token22] = ACTIONS(1048), + [aux_sym_cmd_identifier_token23] = ACTIONS(1048), + [aux_sym_cmd_identifier_token24] = ACTIONS(1048), + [aux_sym_cmd_identifier_token25] = ACTIONS(1048), + [aux_sym_cmd_identifier_token26] = ACTIONS(1048), + [aux_sym_cmd_identifier_token27] = ACTIONS(1048), + [aux_sym_cmd_identifier_token28] = ACTIONS(1048), + [aux_sym_cmd_identifier_token29] = ACTIONS(1048), + [aux_sym_cmd_identifier_token30] = ACTIONS(1048), + [aux_sym_cmd_identifier_token31] = ACTIONS(1048), + [aux_sym_cmd_identifier_token32] = ACTIONS(1048), + [aux_sym_cmd_identifier_token33] = ACTIONS(1048), + [aux_sym_cmd_identifier_token34] = ACTIONS(1048), + [aux_sym_cmd_identifier_token35] = ACTIONS(1048), + [aux_sym_cmd_identifier_token36] = ACTIONS(1048), + [anon_sym_true] = ACTIONS(1048), + [anon_sym_false] = ACTIONS(1048), + [anon_sym_null] = ACTIONS(1048), + [aux_sym_cmd_identifier_token38] = ACTIONS(1048), + [aux_sym_cmd_identifier_token39] = ACTIONS(1048), + [aux_sym_cmd_identifier_token40] = ACTIONS(1048), + [anon_sym_def] = ACTIONS(1048), + [anon_sym_export_DASHenv] = ACTIONS(1048), + [anon_sym_extern] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_use] = ACTIONS(1048), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_error] = ACTIONS(1048), + [anon_sym_list] = ACTIONS(1048), + [anon_sym_DASH] = ACTIONS(1048), + [anon_sym_break] = ACTIONS(1048), + [anon_sym_continue] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1048), + [anon_sym_in] = ACTIONS(1048), + [anon_sym_loop] = ACTIONS(1048), + [anon_sym_make] = ACTIONS(1048), + [anon_sym_while] = ACTIONS(1048), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_if] = ACTIONS(1048), + [anon_sym_else] = ACTIONS(1048), + [anon_sym_match] = ACTIONS(1048), + [anon_sym_RBRACE] = ACTIONS(1048), + [anon_sym_try] = ACTIONS(1048), + [anon_sym_catch] = ACTIONS(1048), + [anon_sym_return] = ACTIONS(1048), + [anon_sym_source] = ACTIONS(1048), + [anon_sym_source_DASHenv] = ACTIONS(1048), + [anon_sym_register] = ACTIONS(1048), + [anon_sym_hide] = ACTIONS(1048), + [anon_sym_hide_DASHenv] = ACTIONS(1048), + [anon_sym_overlay] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1048), + [anon_sym_as] = ACTIONS(1048), + [anon_sym_QMARK2] = ACTIONS(1821), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1048), + [anon_sym_DOT_DOT2] = ACTIONS(1048), + [anon_sym_DOT] = ACTIONS(1048), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1050), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1048), + [aux_sym__val_number_decimal_token1] = ACTIONS(1048), + [aux_sym__val_number_decimal_token2] = ACTIONS(1048), + [aux_sym__val_number_decimal_token3] = ACTIONS(1048), + [aux_sym__val_number_decimal_token4] = ACTIONS(1048), + [aux_sym__val_number_token1] = ACTIONS(1048), + [aux_sym__val_number_token2] = ACTIONS(1048), + [aux_sym__val_number_token3] = ACTIONS(1048), + [anon_sym_DQUOTE] = ACTIONS(1048), + [sym__str_single_quotes] = ACTIONS(1048), + [sym__str_back_ticks] = ACTIONS(1048), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1048), + [sym__entry_separator] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1048), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1050), }, - [333] = { - [sym_cell_path] = STATE(566), - [sym_path] = STATE(527), - [sym_comment] = STATE(333), - [aux_sym_cell_path_repeat1] = STATE(425), - [anon_sym_export] = ACTIONS(1864), - [anon_sym_alias] = ACTIONS(1864), - [anon_sym_let] = ACTIONS(1864), - [anon_sym_let_DASHenv] = ACTIONS(1864), - [anon_sym_mut] = ACTIONS(1864), - [anon_sym_const] = ACTIONS(1864), - [aux_sym_cmd_identifier_token1] = ACTIONS(1864), - [aux_sym_cmd_identifier_token2] = ACTIONS(1864), - [aux_sym_cmd_identifier_token3] = ACTIONS(1864), - [aux_sym_cmd_identifier_token4] = ACTIONS(1864), - [aux_sym_cmd_identifier_token5] = ACTIONS(1864), - [aux_sym_cmd_identifier_token6] = ACTIONS(1864), - [aux_sym_cmd_identifier_token7] = ACTIONS(1864), - [aux_sym_cmd_identifier_token8] = ACTIONS(1864), - [aux_sym_cmd_identifier_token9] = ACTIONS(1864), - [aux_sym_cmd_identifier_token10] = ACTIONS(1864), - [aux_sym_cmd_identifier_token11] = ACTIONS(1864), - [aux_sym_cmd_identifier_token12] = ACTIONS(1864), - [aux_sym_cmd_identifier_token13] = ACTIONS(1864), - [aux_sym_cmd_identifier_token14] = ACTIONS(1864), - [aux_sym_cmd_identifier_token15] = ACTIONS(1864), - [aux_sym_cmd_identifier_token16] = ACTIONS(1864), - [aux_sym_cmd_identifier_token17] = ACTIONS(1864), - [aux_sym_cmd_identifier_token18] = ACTIONS(1864), - [aux_sym_cmd_identifier_token19] = ACTIONS(1864), - [aux_sym_cmd_identifier_token20] = ACTIONS(1864), - [aux_sym_cmd_identifier_token21] = ACTIONS(1864), - [aux_sym_cmd_identifier_token22] = ACTIONS(1864), - [aux_sym_cmd_identifier_token23] = ACTIONS(1864), - [aux_sym_cmd_identifier_token24] = ACTIONS(1864), - [aux_sym_cmd_identifier_token25] = ACTIONS(1864), - [aux_sym_cmd_identifier_token26] = ACTIONS(1864), - [aux_sym_cmd_identifier_token27] = ACTIONS(1864), - [aux_sym_cmd_identifier_token28] = ACTIONS(1864), - [aux_sym_cmd_identifier_token29] = ACTIONS(1864), - [aux_sym_cmd_identifier_token30] = ACTIONS(1864), - [aux_sym_cmd_identifier_token31] = ACTIONS(1864), - [aux_sym_cmd_identifier_token32] = ACTIONS(1864), - [aux_sym_cmd_identifier_token33] = ACTIONS(1864), - [aux_sym_cmd_identifier_token34] = ACTIONS(1864), - [aux_sym_cmd_identifier_token35] = ACTIONS(1864), - [aux_sym_cmd_identifier_token36] = ACTIONS(1864), - [anon_sym_true] = ACTIONS(1864), - [anon_sym_false] = ACTIONS(1864), - [anon_sym_null] = ACTIONS(1864), - [aux_sym_cmd_identifier_token38] = ACTIONS(1864), - [aux_sym_cmd_identifier_token39] = ACTIONS(1864), - [aux_sym_cmd_identifier_token40] = ACTIONS(1864), - [anon_sym_def] = ACTIONS(1864), - [anon_sym_export_DASHenv] = ACTIONS(1864), - [anon_sym_extern] = ACTIONS(1864), - [anon_sym_module] = ACTIONS(1864), - [anon_sym_use] = ACTIONS(1864), - [anon_sym_LPAREN] = ACTIONS(1864), - [anon_sym_DOLLAR] = ACTIONS(1864), - [anon_sym_error] = ACTIONS(1864), - [anon_sym_list] = ACTIONS(1864), - [anon_sym_DASH] = ACTIONS(1864), - [anon_sym_break] = ACTIONS(1864), - [anon_sym_continue] = ACTIONS(1864), - [anon_sym_for] = ACTIONS(1864), - [anon_sym_in] = ACTIONS(1864), - [anon_sym_loop] = ACTIONS(1864), - [anon_sym_make] = ACTIONS(1864), - [anon_sym_while] = ACTIONS(1864), - [anon_sym_do] = ACTIONS(1864), - [anon_sym_if] = ACTIONS(1864), - [anon_sym_else] = ACTIONS(1864), - [anon_sym_match] = ACTIONS(1864), - [anon_sym_RBRACE] = ACTIONS(1864), - [anon_sym_try] = ACTIONS(1864), - [anon_sym_catch] = ACTIONS(1864), - [anon_sym_return] = ACTIONS(1864), - [anon_sym_source] = ACTIONS(1864), - [anon_sym_source_DASHenv] = ACTIONS(1864), - [anon_sym_register] = ACTIONS(1864), - [anon_sym_hide] = ACTIONS(1864), - [anon_sym_hide_DASHenv] = ACTIONS(1864), - [anon_sym_overlay] = ACTIONS(1864), - [anon_sym_new] = ACTIONS(1864), - [anon_sym_as] = ACTIONS(1864), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1864), - [anon_sym_DOT] = ACTIONS(1824), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1864), - [aux_sym__val_number_decimal_token1] = ACTIONS(1864), - [aux_sym__val_number_decimal_token2] = ACTIONS(1864), - [aux_sym__val_number_decimal_token3] = ACTIONS(1864), - [aux_sym__val_number_decimal_token4] = ACTIONS(1864), - [aux_sym__val_number_token1] = ACTIONS(1864), - [aux_sym__val_number_token2] = ACTIONS(1864), - [aux_sym__val_number_token3] = ACTIONS(1864), - [anon_sym_DQUOTE] = ACTIONS(1864), - [sym__str_single_quotes] = ACTIONS(1864), - [sym__str_back_ticks] = ACTIONS(1864), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1864), - [sym__entry_separator] = ACTIONS(1866), - [anon_sym_PLUS] = ACTIONS(1864), - [anon_sym_POUND] = ACTIONS(3), + [316] = { + [sym_path] = STATE(423), + [sym_comment] = STATE(316), + [aux_sym_cell_path_repeat1] = STATE(316), + [anon_sym_export] = ACTIONS(1031), + [anon_sym_alias] = ACTIONS(1031), + [anon_sym_let] = ACTIONS(1031), + [anon_sym_let_DASHenv] = ACTIONS(1031), + [anon_sym_mut] = ACTIONS(1031), + [anon_sym_const] = ACTIONS(1031), + [aux_sym_cmd_identifier_token1] = ACTIONS(1031), + [aux_sym_cmd_identifier_token2] = ACTIONS(1031), + [aux_sym_cmd_identifier_token3] = ACTIONS(1031), + [aux_sym_cmd_identifier_token4] = ACTIONS(1031), + [aux_sym_cmd_identifier_token5] = ACTIONS(1031), + [aux_sym_cmd_identifier_token6] = ACTIONS(1031), + [aux_sym_cmd_identifier_token7] = ACTIONS(1031), + [aux_sym_cmd_identifier_token8] = ACTIONS(1031), + [aux_sym_cmd_identifier_token9] = ACTIONS(1031), + [aux_sym_cmd_identifier_token10] = ACTIONS(1031), + [aux_sym_cmd_identifier_token11] = ACTIONS(1031), + [aux_sym_cmd_identifier_token12] = ACTIONS(1031), + [aux_sym_cmd_identifier_token13] = ACTIONS(1031), + [aux_sym_cmd_identifier_token14] = ACTIONS(1031), + [aux_sym_cmd_identifier_token15] = ACTIONS(1031), + [aux_sym_cmd_identifier_token16] = ACTIONS(1031), + [aux_sym_cmd_identifier_token17] = ACTIONS(1031), + [aux_sym_cmd_identifier_token18] = ACTIONS(1031), + [aux_sym_cmd_identifier_token19] = ACTIONS(1031), + [aux_sym_cmd_identifier_token20] = ACTIONS(1031), + [aux_sym_cmd_identifier_token21] = ACTIONS(1031), + [aux_sym_cmd_identifier_token22] = ACTIONS(1031), + [aux_sym_cmd_identifier_token23] = ACTIONS(1031), + [aux_sym_cmd_identifier_token24] = ACTIONS(1031), + [aux_sym_cmd_identifier_token25] = ACTIONS(1031), + [aux_sym_cmd_identifier_token26] = ACTIONS(1031), + [aux_sym_cmd_identifier_token27] = ACTIONS(1031), + [aux_sym_cmd_identifier_token28] = ACTIONS(1031), + [aux_sym_cmd_identifier_token29] = ACTIONS(1031), + [aux_sym_cmd_identifier_token30] = ACTIONS(1031), + [aux_sym_cmd_identifier_token31] = ACTIONS(1031), + [aux_sym_cmd_identifier_token32] = ACTIONS(1031), + [aux_sym_cmd_identifier_token33] = ACTIONS(1031), + [aux_sym_cmd_identifier_token34] = ACTIONS(1031), + [aux_sym_cmd_identifier_token35] = ACTIONS(1031), + [aux_sym_cmd_identifier_token36] = ACTIONS(1031), + [anon_sym_true] = ACTIONS(1033), + [anon_sym_false] = ACTIONS(1033), + [anon_sym_null] = ACTIONS(1033), + [aux_sym_cmd_identifier_token38] = ACTIONS(1031), + [aux_sym_cmd_identifier_token39] = ACTIONS(1033), + [aux_sym_cmd_identifier_token40] = ACTIONS(1033), + [anon_sym_def] = ACTIONS(1031), + [anon_sym_export_DASHenv] = ACTIONS(1031), + [anon_sym_extern] = ACTIONS(1031), + [anon_sym_module] = ACTIONS(1031), + [anon_sym_use] = ACTIONS(1031), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_DOLLAR] = ACTIONS(1033), + [anon_sym_error] = ACTIONS(1031), + [anon_sym_list] = ACTIONS(1031), + [anon_sym_DASH] = ACTIONS(1031), + [anon_sym_break] = ACTIONS(1031), + [anon_sym_continue] = ACTIONS(1031), + [anon_sym_for] = ACTIONS(1031), + [anon_sym_in] = ACTIONS(1031), + [anon_sym_loop] = ACTIONS(1031), + [anon_sym_make] = ACTIONS(1031), + [anon_sym_while] = ACTIONS(1031), + [anon_sym_do] = ACTIONS(1031), + [anon_sym_if] = ACTIONS(1031), + [anon_sym_else] = ACTIONS(1031), + [anon_sym_match] = ACTIONS(1031), + [anon_sym_RBRACE] = ACTIONS(1033), + [anon_sym_try] = ACTIONS(1031), + [anon_sym_catch] = ACTIONS(1031), + [anon_sym_return] = ACTIONS(1031), + [anon_sym_source] = ACTIONS(1031), + [anon_sym_source_DASHenv] = ACTIONS(1031), + [anon_sym_register] = ACTIONS(1031), + [anon_sym_hide] = ACTIONS(1031), + [anon_sym_hide_DASHenv] = ACTIONS(1031), + [anon_sym_overlay] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1031), + [anon_sym_as] = ACTIONS(1031), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1033), + [anon_sym_DOT_DOT2] = ACTIONS(1031), + [anon_sym_DOT] = ACTIONS(1823), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1033), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1033), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1033), + [aux_sym__val_number_decimal_token1] = ACTIONS(1031), + [aux_sym__val_number_decimal_token2] = ACTIONS(1033), + [aux_sym__val_number_decimal_token3] = ACTIONS(1033), + [aux_sym__val_number_decimal_token4] = ACTIONS(1033), + [aux_sym__val_number_token1] = ACTIONS(1033), + [aux_sym__val_number_token2] = ACTIONS(1033), + [aux_sym__val_number_token3] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(1033), + [sym__str_single_quotes] = ACTIONS(1033), + [sym__str_back_ticks] = ACTIONS(1033), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1033), + [anon_sym_PLUS] = ACTIONS(1031), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1033), }, - [334] = { - [sym_cell_path] = STATE(572), - [sym_path] = STATE(527), - [sym_comment] = STATE(334), - [aux_sym_cell_path_repeat1] = STATE(425), - [anon_sym_export] = ACTIONS(1868), - [anon_sym_alias] = ACTIONS(1868), - [anon_sym_let] = ACTIONS(1868), - [anon_sym_let_DASHenv] = ACTIONS(1868), - [anon_sym_mut] = ACTIONS(1868), - [anon_sym_const] = ACTIONS(1868), - [aux_sym_cmd_identifier_token1] = ACTIONS(1868), - [aux_sym_cmd_identifier_token2] = ACTIONS(1868), - [aux_sym_cmd_identifier_token3] = ACTIONS(1868), - [aux_sym_cmd_identifier_token4] = ACTIONS(1868), - [aux_sym_cmd_identifier_token5] = ACTIONS(1868), - [aux_sym_cmd_identifier_token6] = ACTIONS(1868), - [aux_sym_cmd_identifier_token7] = ACTIONS(1868), - [aux_sym_cmd_identifier_token8] = ACTIONS(1868), - [aux_sym_cmd_identifier_token9] = ACTIONS(1868), - [aux_sym_cmd_identifier_token10] = ACTIONS(1868), - [aux_sym_cmd_identifier_token11] = ACTIONS(1868), - [aux_sym_cmd_identifier_token12] = ACTIONS(1868), - [aux_sym_cmd_identifier_token13] = ACTIONS(1868), - [aux_sym_cmd_identifier_token14] = ACTIONS(1868), - [aux_sym_cmd_identifier_token15] = ACTIONS(1868), - [aux_sym_cmd_identifier_token16] = ACTIONS(1868), - [aux_sym_cmd_identifier_token17] = ACTIONS(1868), - [aux_sym_cmd_identifier_token18] = ACTIONS(1868), - [aux_sym_cmd_identifier_token19] = ACTIONS(1868), - [aux_sym_cmd_identifier_token20] = ACTIONS(1868), - [aux_sym_cmd_identifier_token21] = ACTIONS(1868), - [aux_sym_cmd_identifier_token22] = ACTIONS(1868), - [aux_sym_cmd_identifier_token23] = ACTIONS(1868), - [aux_sym_cmd_identifier_token24] = ACTIONS(1868), - [aux_sym_cmd_identifier_token25] = ACTIONS(1868), - [aux_sym_cmd_identifier_token26] = ACTIONS(1868), - [aux_sym_cmd_identifier_token27] = ACTIONS(1868), - [aux_sym_cmd_identifier_token28] = ACTIONS(1868), - [aux_sym_cmd_identifier_token29] = ACTIONS(1868), - [aux_sym_cmd_identifier_token30] = ACTIONS(1868), - [aux_sym_cmd_identifier_token31] = ACTIONS(1868), - [aux_sym_cmd_identifier_token32] = ACTIONS(1868), - [aux_sym_cmd_identifier_token33] = ACTIONS(1868), - [aux_sym_cmd_identifier_token34] = ACTIONS(1868), - [aux_sym_cmd_identifier_token35] = ACTIONS(1868), - [aux_sym_cmd_identifier_token36] = ACTIONS(1868), - [anon_sym_true] = ACTIONS(1868), - [anon_sym_false] = ACTIONS(1868), - [anon_sym_null] = ACTIONS(1868), - [aux_sym_cmd_identifier_token38] = ACTIONS(1868), - [aux_sym_cmd_identifier_token39] = ACTIONS(1868), - [aux_sym_cmd_identifier_token40] = ACTIONS(1868), - [anon_sym_def] = ACTIONS(1868), - [anon_sym_export_DASHenv] = ACTIONS(1868), - [anon_sym_extern] = ACTIONS(1868), - [anon_sym_module] = ACTIONS(1868), - [anon_sym_use] = ACTIONS(1868), - [anon_sym_LPAREN] = ACTIONS(1868), - [anon_sym_DOLLAR] = ACTIONS(1868), - [anon_sym_error] = ACTIONS(1868), - [anon_sym_list] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1868), - [anon_sym_break] = ACTIONS(1868), - [anon_sym_continue] = ACTIONS(1868), - [anon_sym_for] = ACTIONS(1868), - [anon_sym_in] = ACTIONS(1868), - [anon_sym_loop] = ACTIONS(1868), - [anon_sym_make] = ACTIONS(1868), - [anon_sym_while] = ACTIONS(1868), - [anon_sym_do] = ACTIONS(1868), - [anon_sym_if] = ACTIONS(1868), - [anon_sym_else] = ACTIONS(1868), - [anon_sym_match] = ACTIONS(1868), - [anon_sym_RBRACE] = ACTIONS(1868), - [anon_sym_try] = ACTIONS(1868), - [anon_sym_catch] = ACTIONS(1868), - [anon_sym_return] = ACTIONS(1868), - [anon_sym_source] = ACTIONS(1868), - [anon_sym_source_DASHenv] = ACTIONS(1868), - [anon_sym_register] = ACTIONS(1868), - [anon_sym_hide] = ACTIONS(1868), - [anon_sym_hide_DASHenv] = ACTIONS(1868), - [anon_sym_overlay] = ACTIONS(1868), - [anon_sym_new] = ACTIONS(1868), - [anon_sym_as] = ACTIONS(1868), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1868), - [anon_sym_DOT] = ACTIONS(1824), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1868), - [aux_sym__val_number_decimal_token1] = ACTIONS(1868), - [aux_sym__val_number_decimal_token2] = ACTIONS(1868), - [aux_sym__val_number_decimal_token3] = ACTIONS(1868), - [aux_sym__val_number_decimal_token4] = ACTIONS(1868), - [aux_sym__val_number_token1] = ACTIONS(1868), - [aux_sym__val_number_token2] = ACTIONS(1868), - [aux_sym__val_number_token3] = ACTIONS(1868), - [anon_sym_DQUOTE] = ACTIONS(1868), - [sym__str_single_quotes] = ACTIONS(1868), - [sym__str_back_ticks] = ACTIONS(1868), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1868), - [sym__entry_separator] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1868), - [anon_sym_POUND] = ACTIONS(3), - }, - [335] = { - [sym_cell_path] = STATE(573), - [sym_path] = STATE(527), - [sym_comment] = STATE(335), - [aux_sym_cell_path_repeat1] = STATE(425), - [anon_sym_export] = ACTIONS(1872), - [anon_sym_alias] = ACTIONS(1872), - [anon_sym_let] = ACTIONS(1872), - [anon_sym_let_DASHenv] = ACTIONS(1872), - [anon_sym_mut] = ACTIONS(1872), - [anon_sym_const] = ACTIONS(1872), - [aux_sym_cmd_identifier_token1] = ACTIONS(1872), - [aux_sym_cmd_identifier_token2] = ACTIONS(1872), - [aux_sym_cmd_identifier_token3] = ACTIONS(1872), - [aux_sym_cmd_identifier_token4] = ACTIONS(1872), - [aux_sym_cmd_identifier_token5] = ACTIONS(1872), - [aux_sym_cmd_identifier_token6] = ACTIONS(1872), - [aux_sym_cmd_identifier_token7] = ACTIONS(1872), - [aux_sym_cmd_identifier_token8] = ACTIONS(1872), - [aux_sym_cmd_identifier_token9] = ACTIONS(1872), - [aux_sym_cmd_identifier_token10] = ACTIONS(1872), - [aux_sym_cmd_identifier_token11] = ACTIONS(1872), - [aux_sym_cmd_identifier_token12] = ACTIONS(1872), - [aux_sym_cmd_identifier_token13] = ACTIONS(1872), - [aux_sym_cmd_identifier_token14] = ACTIONS(1872), - [aux_sym_cmd_identifier_token15] = ACTIONS(1872), - [aux_sym_cmd_identifier_token16] = ACTIONS(1872), - [aux_sym_cmd_identifier_token17] = ACTIONS(1872), - [aux_sym_cmd_identifier_token18] = ACTIONS(1872), - [aux_sym_cmd_identifier_token19] = ACTIONS(1872), - [aux_sym_cmd_identifier_token20] = ACTIONS(1872), - [aux_sym_cmd_identifier_token21] = ACTIONS(1872), - [aux_sym_cmd_identifier_token22] = ACTIONS(1872), - [aux_sym_cmd_identifier_token23] = ACTIONS(1872), - [aux_sym_cmd_identifier_token24] = ACTIONS(1872), - [aux_sym_cmd_identifier_token25] = ACTIONS(1872), - [aux_sym_cmd_identifier_token26] = ACTIONS(1872), - [aux_sym_cmd_identifier_token27] = ACTIONS(1872), - [aux_sym_cmd_identifier_token28] = ACTIONS(1872), - [aux_sym_cmd_identifier_token29] = ACTIONS(1872), - [aux_sym_cmd_identifier_token30] = ACTIONS(1872), - [aux_sym_cmd_identifier_token31] = ACTIONS(1872), - [aux_sym_cmd_identifier_token32] = ACTIONS(1872), - [aux_sym_cmd_identifier_token33] = ACTIONS(1872), - [aux_sym_cmd_identifier_token34] = ACTIONS(1872), - [aux_sym_cmd_identifier_token35] = ACTIONS(1872), - [aux_sym_cmd_identifier_token36] = ACTIONS(1872), - [anon_sym_true] = ACTIONS(1872), - [anon_sym_false] = ACTIONS(1872), - [anon_sym_null] = ACTIONS(1872), - [aux_sym_cmd_identifier_token38] = ACTIONS(1872), - [aux_sym_cmd_identifier_token39] = ACTIONS(1872), - [aux_sym_cmd_identifier_token40] = ACTIONS(1872), - [anon_sym_def] = ACTIONS(1872), - [anon_sym_export_DASHenv] = ACTIONS(1872), - [anon_sym_extern] = ACTIONS(1872), - [anon_sym_module] = ACTIONS(1872), - [anon_sym_use] = ACTIONS(1872), - [anon_sym_LPAREN] = ACTIONS(1872), - [anon_sym_DOLLAR] = ACTIONS(1872), - [anon_sym_error] = ACTIONS(1872), - [anon_sym_list] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_break] = ACTIONS(1872), - [anon_sym_continue] = ACTIONS(1872), - [anon_sym_for] = ACTIONS(1872), - [anon_sym_in] = ACTIONS(1872), - [anon_sym_loop] = ACTIONS(1872), - [anon_sym_make] = ACTIONS(1872), - [anon_sym_while] = ACTIONS(1872), - [anon_sym_do] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(1872), - [anon_sym_else] = ACTIONS(1872), - [anon_sym_match] = ACTIONS(1872), - [anon_sym_RBRACE] = ACTIONS(1872), - [anon_sym_try] = ACTIONS(1872), - [anon_sym_catch] = ACTIONS(1872), - [anon_sym_return] = ACTIONS(1872), - [anon_sym_source] = ACTIONS(1872), - [anon_sym_source_DASHenv] = ACTIONS(1872), - [anon_sym_register] = ACTIONS(1872), - [anon_sym_hide] = ACTIONS(1872), - [anon_sym_hide_DASHenv] = ACTIONS(1872), - [anon_sym_overlay] = ACTIONS(1872), - [anon_sym_new] = ACTIONS(1872), - [anon_sym_as] = ACTIONS(1872), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1872), - [anon_sym_DOT] = ACTIONS(1824), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1872), - [aux_sym__val_number_decimal_token1] = ACTIONS(1872), - [aux_sym__val_number_decimal_token2] = ACTIONS(1872), - [aux_sym__val_number_decimal_token3] = ACTIONS(1872), - [aux_sym__val_number_decimal_token4] = ACTIONS(1872), - [aux_sym__val_number_token1] = ACTIONS(1872), - [aux_sym__val_number_token2] = ACTIONS(1872), - [aux_sym__val_number_token3] = ACTIONS(1872), - [anon_sym_DQUOTE] = ACTIONS(1872), - [sym__str_single_quotes] = ACTIONS(1872), - [sym__str_back_ticks] = ACTIONS(1872), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1872), - [sym__entry_separator] = ACTIONS(1874), - [anon_sym_PLUS] = ACTIONS(1872), - [anon_sym_POUND] = ACTIONS(3), - }, - [336] = { - [sym_cell_path] = STATE(574), - [sym_path] = STATE(527), - [sym_comment] = STATE(336), - [aux_sym_cell_path_repeat1] = STATE(425), - [anon_sym_export] = ACTIONS(1876), - [anon_sym_alias] = ACTIONS(1876), - [anon_sym_let] = ACTIONS(1876), - [anon_sym_let_DASHenv] = ACTIONS(1876), - [anon_sym_mut] = ACTIONS(1876), - [anon_sym_const] = ACTIONS(1876), - [aux_sym_cmd_identifier_token1] = ACTIONS(1876), - [aux_sym_cmd_identifier_token2] = ACTIONS(1876), - [aux_sym_cmd_identifier_token3] = ACTIONS(1876), - [aux_sym_cmd_identifier_token4] = ACTIONS(1876), - [aux_sym_cmd_identifier_token5] = ACTIONS(1876), - [aux_sym_cmd_identifier_token6] = ACTIONS(1876), - [aux_sym_cmd_identifier_token7] = ACTIONS(1876), - [aux_sym_cmd_identifier_token8] = ACTIONS(1876), - [aux_sym_cmd_identifier_token9] = ACTIONS(1876), - [aux_sym_cmd_identifier_token10] = ACTIONS(1876), - [aux_sym_cmd_identifier_token11] = ACTIONS(1876), - [aux_sym_cmd_identifier_token12] = ACTIONS(1876), - [aux_sym_cmd_identifier_token13] = ACTIONS(1876), - [aux_sym_cmd_identifier_token14] = ACTIONS(1876), - [aux_sym_cmd_identifier_token15] = ACTIONS(1876), - [aux_sym_cmd_identifier_token16] = ACTIONS(1876), - [aux_sym_cmd_identifier_token17] = ACTIONS(1876), - [aux_sym_cmd_identifier_token18] = ACTIONS(1876), - [aux_sym_cmd_identifier_token19] = ACTIONS(1876), - [aux_sym_cmd_identifier_token20] = ACTIONS(1876), - [aux_sym_cmd_identifier_token21] = ACTIONS(1876), - [aux_sym_cmd_identifier_token22] = ACTIONS(1876), - [aux_sym_cmd_identifier_token23] = ACTIONS(1876), - [aux_sym_cmd_identifier_token24] = ACTIONS(1876), - [aux_sym_cmd_identifier_token25] = ACTIONS(1876), - [aux_sym_cmd_identifier_token26] = ACTIONS(1876), - [aux_sym_cmd_identifier_token27] = ACTIONS(1876), - [aux_sym_cmd_identifier_token28] = ACTIONS(1876), - [aux_sym_cmd_identifier_token29] = ACTIONS(1876), - [aux_sym_cmd_identifier_token30] = ACTIONS(1876), - [aux_sym_cmd_identifier_token31] = ACTIONS(1876), - [aux_sym_cmd_identifier_token32] = ACTIONS(1876), - [aux_sym_cmd_identifier_token33] = ACTIONS(1876), - [aux_sym_cmd_identifier_token34] = ACTIONS(1876), - [aux_sym_cmd_identifier_token35] = ACTIONS(1876), - [aux_sym_cmd_identifier_token36] = ACTIONS(1876), - [anon_sym_true] = ACTIONS(1876), - [anon_sym_false] = ACTIONS(1876), - [anon_sym_null] = ACTIONS(1876), - [aux_sym_cmd_identifier_token38] = ACTIONS(1876), - [aux_sym_cmd_identifier_token39] = ACTIONS(1876), - [aux_sym_cmd_identifier_token40] = ACTIONS(1876), - [anon_sym_def] = ACTIONS(1876), - [anon_sym_export_DASHenv] = ACTIONS(1876), - [anon_sym_extern] = ACTIONS(1876), - [anon_sym_module] = ACTIONS(1876), - [anon_sym_use] = ACTIONS(1876), - [anon_sym_LPAREN] = ACTIONS(1876), - [anon_sym_DOLLAR] = ACTIONS(1876), - [anon_sym_error] = ACTIONS(1876), - [anon_sym_list] = ACTIONS(1876), - [anon_sym_DASH] = ACTIONS(1876), - [anon_sym_break] = ACTIONS(1876), - [anon_sym_continue] = ACTIONS(1876), - [anon_sym_for] = ACTIONS(1876), - [anon_sym_in] = ACTIONS(1876), - [anon_sym_loop] = ACTIONS(1876), - [anon_sym_make] = ACTIONS(1876), - [anon_sym_while] = ACTIONS(1876), - [anon_sym_do] = ACTIONS(1876), - [anon_sym_if] = ACTIONS(1876), - [anon_sym_else] = ACTIONS(1876), - [anon_sym_match] = ACTIONS(1876), - [anon_sym_RBRACE] = ACTIONS(1876), - [anon_sym_try] = ACTIONS(1876), - [anon_sym_catch] = ACTIONS(1876), - [anon_sym_return] = ACTIONS(1876), - [anon_sym_source] = ACTIONS(1876), - [anon_sym_source_DASHenv] = ACTIONS(1876), - [anon_sym_register] = ACTIONS(1876), - [anon_sym_hide] = ACTIONS(1876), - [anon_sym_hide_DASHenv] = ACTIONS(1876), - [anon_sym_overlay] = ACTIONS(1876), - [anon_sym_new] = ACTIONS(1876), - [anon_sym_as] = ACTIONS(1876), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1876), - [anon_sym_DOT] = ACTIONS(1824), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1876), - [aux_sym__val_number_decimal_token1] = ACTIONS(1876), - [aux_sym__val_number_decimal_token2] = ACTIONS(1876), - [aux_sym__val_number_decimal_token3] = ACTIONS(1876), - [aux_sym__val_number_decimal_token4] = ACTIONS(1876), - [aux_sym__val_number_token1] = ACTIONS(1876), - [aux_sym__val_number_token2] = ACTIONS(1876), - [aux_sym__val_number_token3] = ACTIONS(1876), - [anon_sym_DQUOTE] = ACTIONS(1876), - [sym__str_single_quotes] = ACTIONS(1876), - [sym__str_back_ticks] = ACTIONS(1876), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1876), - [sym__entry_separator] = ACTIONS(1878), - [anon_sym_PLUS] = ACTIONS(1876), - [anon_sym_POUND] = ACTIONS(3), - }, - [337] = { - [sym_cell_path] = STATE(575), - [sym_path] = STATE(527), - [sym_comment] = STATE(337), - [aux_sym_cell_path_repeat1] = STATE(425), - [anon_sym_export] = ACTIONS(1880), - [anon_sym_alias] = ACTIONS(1880), - [anon_sym_let] = ACTIONS(1880), - [anon_sym_let_DASHenv] = ACTIONS(1880), - [anon_sym_mut] = ACTIONS(1880), - [anon_sym_const] = ACTIONS(1880), - [aux_sym_cmd_identifier_token1] = ACTIONS(1880), - [aux_sym_cmd_identifier_token2] = ACTIONS(1880), - [aux_sym_cmd_identifier_token3] = ACTIONS(1880), - [aux_sym_cmd_identifier_token4] = ACTIONS(1880), - [aux_sym_cmd_identifier_token5] = ACTIONS(1880), - [aux_sym_cmd_identifier_token6] = ACTIONS(1880), - [aux_sym_cmd_identifier_token7] = ACTIONS(1880), - [aux_sym_cmd_identifier_token8] = ACTIONS(1880), - [aux_sym_cmd_identifier_token9] = ACTIONS(1880), - [aux_sym_cmd_identifier_token10] = ACTIONS(1880), - [aux_sym_cmd_identifier_token11] = ACTIONS(1880), - [aux_sym_cmd_identifier_token12] = ACTIONS(1880), - [aux_sym_cmd_identifier_token13] = ACTIONS(1880), - [aux_sym_cmd_identifier_token14] = ACTIONS(1880), - [aux_sym_cmd_identifier_token15] = ACTIONS(1880), - [aux_sym_cmd_identifier_token16] = ACTIONS(1880), - [aux_sym_cmd_identifier_token17] = ACTIONS(1880), - [aux_sym_cmd_identifier_token18] = ACTIONS(1880), - [aux_sym_cmd_identifier_token19] = ACTIONS(1880), - [aux_sym_cmd_identifier_token20] = ACTIONS(1880), - [aux_sym_cmd_identifier_token21] = ACTIONS(1880), - [aux_sym_cmd_identifier_token22] = ACTIONS(1880), - [aux_sym_cmd_identifier_token23] = ACTIONS(1880), - [aux_sym_cmd_identifier_token24] = ACTIONS(1880), - [aux_sym_cmd_identifier_token25] = ACTIONS(1880), - [aux_sym_cmd_identifier_token26] = ACTIONS(1880), - [aux_sym_cmd_identifier_token27] = ACTIONS(1880), - [aux_sym_cmd_identifier_token28] = ACTIONS(1880), - [aux_sym_cmd_identifier_token29] = ACTIONS(1880), - [aux_sym_cmd_identifier_token30] = ACTIONS(1880), - [aux_sym_cmd_identifier_token31] = ACTIONS(1880), - [aux_sym_cmd_identifier_token32] = ACTIONS(1880), - [aux_sym_cmd_identifier_token33] = ACTIONS(1880), - [aux_sym_cmd_identifier_token34] = ACTIONS(1880), - [aux_sym_cmd_identifier_token35] = ACTIONS(1880), - [aux_sym_cmd_identifier_token36] = ACTIONS(1880), - [anon_sym_true] = ACTIONS(1880), - [anon_sym_false] = ACTIONS(1880), - [anon_sym_null] = ACTIONS(1880), - [aux_sym_cmd_identifier_token38] = ACTIONS(1880), - [aux_sym_cmd_identifier_token39] = ACTIONS(1880), - [aux_sym_cmd_identifier_token40] = ACTIONS(1880), - [anon_sym_def] = ACTIONS(1880), - [anon_sym_export_DASHenv] = ACTIONS(1880), - [anon_sym_extern] = ACTIONS(1880), - [anon_sym_module] = ACTIONS(1880), - [anon_sym_use] = ACTIONS(1880), - [anon_sym_LPAREN] = ACTIONS(1880), - [anon_sym_DOLLAR] = ACTIONS(1880), - [anon_sym_error] = ACTIONS(1880), - [anon_sym_list] = ACTIONS(1880), - [anon_sym_DASH] = ACTIONS(1880), - [anon_sym_break] = ACTIONS(1880), - [anon_sym_continue] = ACTIONS(1880), - [anon_sym_for] = ACTIONS(1880), - [anon_sym_in] = ACTIONS(1880), - [anon_sym_loop] = ACTIONS(1880), - [anon_sym_make] = ACTIONS(1880), - [anon_sym_while] = ACTIONS(1880), - [anon_sym_do] = ACTIONS(1880), - [anon_sym_if] = ACTIONS(1880), - [anon_sym_else] = ACTIONS(1880), - [anon_sym_match] = ACTIONS(1880), - [anon_sym_RBRACE] = ACTIONS(1880), - [anon_sym_try] = ACTIONS(1880), - [anon_sym_catch] = ACTIONS(1880), - [anon_sym_return] = ACTIONS(1880), - [anon_sym_source] = ACTIONS(1880), - [anon_sym_source_DASHenv] = ACTIONS(1880), - [anon_sym_register] = ACTIONS(1880), - [anon_sym_hide] = ACTIONS(1880), - [anon_sym_hide_DASHenv] = ACTIONS(1880), - [anon_sym_overlay] = ACTIONS(1880), - [anon_sym_new] = ACTIONS(1880), - [anon_sym_as] = ACTIONS(1880), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1880), - [anon_sym_DOT] = ACTIONS(1824), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1880), - [aux_sym__val_number_decimal_token1] = ACTIONS(1880), - [aux_sym__val_number_decimal_token2] = ACTIONS(1880), - [aux_sym__val_number_decimal_token3] = ACTIONS(1880), - [aux_sym__val_number_decimal_token4] = ACTIONS(1880), - [aux_sym__val_number_token1] = ACTIONS(1880), - [aux_sym__val_number_token2] = ACTIONS(1880), - [aux_sym__val_number_token3] = ACTIONS(1880), - [anon_sym_DQUOTE] = ACTIONS(1880), - [sym__str_single_quotes] = ACTIONS(1880), - [sym__str_back_ticks] = ACTIONS(1880), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1880), - [sym__entry_separator] = ACTIONS(1882), - [anon_sym_PLUS] = ACTIONS(1880), - [anon_sym_POUND] = ACTIONS(3), - }, - [338] = { - [sym_cell_path] = STATE(577), - [sym_path] = STATE(527), - [sym_comment] = STATE(338), - [aux_sym_cell_path_repeat1] = STATE(425), - [anon_sym_export] = ACTIONS(1884), - [anon_sym_alias] = ACTIONS(1884), - [anon_sym_let] = ACTIONS(1884), - [anon_sym_let_DASHenv] = ACTIONS(1884), - [anon_sym_mut] = ACTIONS(1884), - [anon_sym_const] = ACTIONS(1884), - [aux_sym_cmd_identifier_token1] = ACTIONS(1884), - [aux_sym_cmd_identifier_token2] = ACTIONS(1884), - [aux_sym_cmd_identifier_token3] = ACTIONS(1884), - [aux_sym_cmd_identifier_token4] = ACTIONS(1884), - [aux_sym_cmd_identifier_token5] = ACTIONS(1884), - [aux_sym_cmd_identifier_token6] = ACTIONS(1884), - [aux_sym_cmd_identifier_token7] = ACTIONS(1884), - [aux_sym_cmd_identifier_token8] = ACTIONS(1884), - [aux_sym_cmd_identifier_token9] = ACTIONS(1884), - [aux_sym_cmd_identifier_token10] = ACTIONS(1884), - [aux_sym_cmd_identifier_token11] = ACTIONS(1884), - [aux_sym_cmd_identifier_token12] = ACTIONS(1884), - [aux_sym_cmd_identifier_token13] = ACTIONS(1884), - [aux_sym_cmd_identifier_token14] = ACTIONS(1884), - [aux_sym_cmd_identifier_token15] = ACTIONS(1884), - [aux_sym_cmd_identifier_token16] = ACTIONS(1884), - [aux_sym_cmd_identifier_token17] = ACTIONS(1884), - [aux_sym_cmd_identifier_token18] = ACTIONS(1884), - [aux_sym_cmd_identifier_token19] = ACTIONS(1884), - [aux_sym_cmd_identifier_token20] = ACTIONS(1884), - [aux_sym_cmd_identifier_token21] = ACTIONS(1884), - [aux_sym_cmd_identifier_token22] = ACTIONS(1884), - [aux_sym_cmd_identifier_token23] = ACTIONS(1884), - [aux_sym_cmd_identifier_token24] = ACTIONS(1884), - [aux_sym_cmd_identifier_token25] = ACTIONS(1884), - [aux_sym_cmd_identifier_token26] = ACTIONS(1884), - [aux_sym_cmd_identifier_token27] = ACTIONS(1884), - [aux_sym_cmd_identifier_token28] = ACTIONS(1884), - [aux_sym_cmd_identifier_token29] = ACTIONS(1884), - [aux_sym_cmd_identifier_token30] = ACTIONS(1884), - [aux_sym_cmd_identifier_token31] = ACTIONS(1884), - [aux_sym_cmd_identifier_token32] = ACTIONS(1884), - [aux_sym_cmd_identifier_token33] = ACTIONS(1884), - [aux_sym_cmd_identifier_token34] = ACTIONS(1884), - [aux_sym_cmd_identifier_token35] = ACTIONS(1884), - [aux_sym_cmd_identifier_token36] = ACTIONS(1884), - [anon_sym_true] = ACTIONS(1884), - [anon_sym_false] = ACTIONS(1884), - [anon_sym_null] = ACTIONS(1884), - [aux_sym_cmd_identifier_token38] = ACTIONS(1884), - [aux_sym_cmd_identifier_token39] = ACTIONS(1884), - [aux_sym_cmd_identifier_token40] = ACTIONS(1884), - [anon_sym_def] = ACTIONS(1884), - [anon_sym_export_DASHenv] = ACTIONS(1884), - [anon_sym_extern] = ACTIONS(1884), - [anon_sym_module] = ACTIONS(1884), - [anon_sym_use] = ACTIONS(1884), - [anon_sym_LPAREN] = ACTIONS(1884), - [anon_sym_DOLLAR] = ACTIONS(1884), - [anon_sym_error] = ACTIONS(1884), - [anon_sym_list] = ACTIONS(1884), - [anon_sym_DASH] = ACTIONS(1884), - [anon_sym_break] = ACTIONS(1884), - [anon_sym_continue] = ACTIONS(1884), - [anon_sym_for] = ACTIONS(1884), - [anon_sym_in] = ACTIONS(1884), - [anon_sym_loop] = ACTIONS(1884), - [anon_sym_make] = ACTIONS(1884), - [anon_sym_while] = ACTIONS(1884), - [anon_sym_do] = ACTIONS(1884), - [anon_sym_if] = ACTIONS(1884), - [anon_sym_else] = ACTIONS(1884), - [anon_sym_match] = ACTIONS(1884), - [anon_sym_RBRACE] = ACTIONS(1884), - [anon_sym_try] = ACTIONS(1884), - [anon_sym_catch] = ACTIONS(1884), - [anon_sym_return] = ACTIONS(1884), - [anon_sym_source] = ACTIONS(1884), - [anon_sym_source_DASHenv] = ACTIONS(1884), - [anon_sym_register] = ACTIONS(1884), - [anon_sym_hide] = ACTIONS(1884), - [anon_sym_hide_DASHenv] = ACTIONS(1884), - [anon_sym_overlay] = ACTIONS(1884), - [anon_sym_new] = ACTIONS(1884), - [anon_sym_as] = ACTIONS(1884), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1884), - [anon_sym_DOT] = ACTIONS(1824), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1884), - [aux_sym__val_number_decimal_token1] = ACTIONS(1884), - [aux_sym__val_number_decimal_token2] = ACTIONS(1884), - [aux_sym__val_number_decimal_token3] = ACTIONS(1884), - [aux_sym__val_number_decimal_token4] = ACTIONS(1884), - [aux_sym__val_number_token1] = ACTIONS(1884), - [aux_sym__val_number_token2] = ACTIONS(1884), - [aux_sym__val_number_token3] = ACTIONS(1884), - [anon_sym_DQUOTE] = ACTIONS(1884), - [sym__str_single_quotes] = ACTIONS(1884), - [sym__str_back_ticks] = ACTIONS(1884), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1884), - [sym__entry_separator] = ACTIONS(1886), - [anon_sym_PLUS] = ACTIONS(1884), - [anon_sym_POUND] = ACTIONS(3), - }, - [339] = { - [sym_cell_path] = STATE(579), - [sym_path] = STATE(527), - [sym_comment] = STATE(339), - [aux_sym_cell_path_repeat1] = STATE(425), - [anon_sym_export] = ACTIONS(1888), - [anon_sym_alias] = ACTIONS(1888), - [anon_sym_let] = ACTIONS(1888), - [anon_sym_let_DASHenv] = ACTIONS(1888), - [anon_sym_mut] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(1888), - [aux_sym_cmd_identifier_token1] = ACTIONS(1888), - [aux_sym_cmd_identifier_token2] = ACTIONS(1888), - [aux_sym_cmd_identifier_token3] = ACTIONS(1888), - [aux_sym_cmd_identifier_token4] = ACTIONS(1888), - [aux_sym_cmd_identifier_token5] = ACTIONS(1888), - [aux_sym_cmd_identifier_token6] = ACTIONS(1888), - [aux_sym_cmd_identifier_token7] = ACTIONS(1888), - [aux_sym_cmd_identifier_token8] = ACTIONS(1888), - [aux_sym_cmd_identifier_token9] = ACTIONS(1888), - [aux_sym_cmd_identifier_token10] = ACTIONS(1888), - [aux_sym_cmd_identifier_token11] = ACTIONS(1888), - [aux_sym_cmd_identifier_token12] = ACTIONS(1888), - [aux_sym_cmd_identifier_token13] = ACTIONS(1888), - [aux_sym_cmd_identifier_token14] = ACTIONS(1888), - [aux_sym_cmd_identifier_token15] = ACTIONS(1888), - [aux_sym_cmd_identifier_token16] = ACTIONS(1888), - [aux_sym_cmd_identifier_token17] = ACTIONS(1888), - [aux_sym_cmd_identifier_token18] = ACTIONS(1888), - [aux_sym_cmd_identifier_token19] = ACTIONS(1888), - [aux_sym_cmd_identifier_token20] = ACTIONS(1888), - [aux_sym_cmd_identifier_token21] = ACTIONS(1888), - [aux_sym_cmd_identifier_token22] = ACTIONS(1888), - [aux_sym_cmd_identifier_token23] = ACTIONS(1888), - [aux_sym_cmd_identifier_token24] = ACTIONS(1888), - [aux_sym_cmd_identifier_token25] = ACTIONS(1888), - [aux_sym_cmd_identifier_token26] = ACTIONS(1888), - [aux_sym_cmd_identifier_token27] = ACTIONS(1888), - [aux_sym_cmd_identifier_token28] = ACTIONS(1888), - [aux_sym_cmd_identifier_token29] = ACTIONS(1888), - [aux_sym_cmd_identifier_token30] = ACTIONS(1888), - [aux_sym_cmd_identifier_token31] = ACTIONS(1888), - [aux_sym_cmd_identifier_token32] = ACTIONS(1888), - [aux_sym_cmd_identifier_token33] = ACTIONS(1888), - [aux_sym_cmd_identifier_token34] = ACTIONS(1888), - [aux_sym_cmd_identifier_token35] = ACTIONS(1888), - [aux_sym_cmd_identifier_token36] = ACTIONS(1888), - [anon_sym_true] = ACTIONS(1888), - [anon_sym_false] = ACTIONS(1888), - [anon_sym_null] = ACTIONS(1888), - [aux_sym_cmd_identifier_token38] = ACTIONS(1888), - [aux_sym_cmd_identifier_token39] = ACTIONS(1888), - [aux_sym_cmd_identifier_token40] = ACTIONS(1888), - [anon_sym_def] = ACTIONS(1888), - [anon_sym_export_DASHenv] = ACTIONS(1888), - [anon_sym_extern] = ACTIONS(1888), - [anon_sym_module] = ACTIONS(1888), - [anon_sym_use] = ACTIONS(1888), - [anon_sym_LPAREN] = ACTIONS(1888), - [anon_sym_DOLLAR] = ACTIONS(1888), - [anon_sym_error] = ACTIONS(1888), - [anon_sym_list] = ACTIONS(1888), - [anon_sym_DASH] = ACTIONS(1888), - [anon_sym_break] = ACTIONS(1888), - [anon_sym_continue] = ACTIONS(1888), - [anon_sym_for] = ACTIONS(1888), - [anon_sym_in] = ACTIONS(1888), - [anon_sym_loop] = ACTIONS(1888), - [anon_sym_make] = ACTIONS(1888), - [anon_sym_while] = ACTIONS(1888), - [anon_sym_do] = ACTIONS(1888), - [anon_sym_if] = ACTIONS(1888), - [anon_sym_else] = ACTIONS(1888), - [anon_sym_match] = ACTIONS(1888), - [anon_sym_RBRACE] = ACTIONS(1888), - [anon_sym_try] = ACTIONS(1888), - [anon_sym_catch] = ACTIONS(1888), - [anon_sym_return] = ACTIONS(1888), - [anon_sym_source] = ACTIONS(1888), - [anon_sym_source_DASHenv] = ACTIONS(1888), - [anon_sym_register] = ACTIONS(1888), - [anon_sym_hide] = ACTIONS(1888), - [anon_sym_hide_DASHenv] = ACTIONS(1888), - [anon_sym_overlay] = ACTIONS(1888), - [anon_sym_new] = ACTIONS(1888), - [anon_sym_as] = ACTIONS(1888), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1888), - [anon_sym_DOT] = ACTIONS(1824), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1888), - [aux_sym__val_number_decimal_token1] = ACTIONS(1888), - [aux_sym__val_number_decimal_token2] = ACTIONS(1888), - [aux_sym__val_number_decimal_token3] = ACTIONS(1888), - [aux_sym__val_number_decimal_token4] = ACTIONS(1888), - [aux_sym__val_number_token1] = ACTIONS(1888), - [aux_sym__val_number_token2] = ACTIONS(1888), - [aux_sym__val_number_token3] = ACTIONS(1888), - [anon_sym_DQUOTE] = ACTIONS(1888), - [sym__str_single_quotes] = ACTIONS(1888), - [sym__str_back_ticks] = ACTIONS(1888), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1888), - [sym__entry_separator] = ACTIONS(1890), - [anon_sym_PLUS] = ACTIONS(1888), - [anon_sym_POUND] = ACTIONS(3), - }, - [340] = { - [sym_cell_path] = STATE(580), - [sym_path] = STATE(527), - [sym_comment] = STATE(340), - [aux_sym_cell_path_repeat1] = STATE(425), - [anon_sym_export] = ACTIONS(1892), - [anon_sym_alias] = ACTIONS(1892), - [anon_sym_let] = ACTIONS(1892), - [anon_sym_let_DASHenv] = ACTIONS(1892), - [anon_sym_mut] = ACTIONS(1892), - [anon_sym_const] = ACTIONS(1892), - [aux_sym_cmd_identifier_token1] = ACTIONS(1892), - [aux_sym_cmd_identifier_token2] = ACTIONS(1892), - [aux_sym_cmd_identifier_token3] = ACTIONS(1892), - [aux_sym_cmd_identifier_token4] = ACTIONS(1892), - [aux_sym_cmd_identifier_token5] = ACTIONS(1892), - [aux_sym_cmd_identifier_token6] = ACTIONS(1892), - [aux_sym_cmd_identifier_token7] = ACTIONS(1892), - [aux_sym_cmd_identifier_token8] = ACTIONS(1892), - [aux_sym_cmd_identifier_token9] = ACTIONS(1892), - [aux_sym_cmd_identifier_token10] = ACTIONS(1892), - [aux_sym_cmd_identifier_token11] = ACTIONS(1892), - [aux_sym_cmd_identifier_token12] = ACTIONS(1892), - [aux_sym_cmd_identifier_token13] = ACTIONS(1892), - [aux_sym_cmd_identifier_token14] = ACTIONS(1892), - [aux_sym_cmd_identifier_token15] = ACTIONS(1892), - [aux_sym_cmd_identifier_token16] = ACTIONS(1892), - [aux_sym_cmd_identifier_token17] = ACTIONS(1892), - [aux_sym_cmd_identifier_token18] = ACTIONS(1892), - [aux_sym_cmd_identifier_token19] = ACTIONS(1892), - [aux_sym_cmd_identifier_token20] = ACTIONS(1892), - [aux_sym_cmd_identifier_token21] = ACTIONS(1892), - [aux_sym_cmd_identifier_token22] = ACTIONS(1892), - [aux_sym_cmd_identifier_token23] = ACTIONS(1892), - [aux_sym_cmd_identifier_token24] = ACTIONS(1892), - [aux_sym_cmd_identifier_token25] = ACTIONS(1892), - [aux_sym_cmd_identifier_token26] = ACTIONS(1892), - [aux_sym_cmd_identifier_token27] = ACTIONS(1892), - [aux_sym_cmd_identifier_token28] = ACTIONS(1892), - [aux_sym_cmd_identifier_token29] = ACTIONS(1892), - [aux_sym_cmd_identifier_token30] = ACTIONS(1892), - [aux_sym_cmd_identifier_token31] = ACTIONS(1892), - [aux_sym_cmd_identifier_token32] = ACTIONS(1892), - [aux_sym_cmd_identifier_token33] = ACTIONS(1892), - [aux_sym_cmd_identifier_token34] = ACTIONS(1892), - [aux_sym_cmd_identifier_token35] = ACTIONS(1892), - [aux_sym_cmd_identifier_token36] = ACTIONS(1892), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [anon_sym_null] = ACTIONS(1892), - [aux_sym_cmd_identifier_token38] = ACTIONS(1892), - [aux_sym_cmd_identifier_token39] = ACTIONS(1892), - [aux_sym_cmd_identifier_token40] = ACTIONS(1892), - [anon_sym_def] = ACTIONS(1892), - [anon_sym_export_DASHenv] = ACTIONS(1892), - [anon_sym_extern] = ACTIONS(1892), - [anon_sym_module] = ACTIONS(1892), - [anon_sym_use] = ACTIONS(1892), - [anon_sym_LPAREN] = ACTIONS(1892), - [anon_sym_DOLLAR] = ACTIONS(1892), - [anon_sym_error] = ACTIONS(1892), - [anon_sym_list] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1892), - [anon_sym_break] = ACTIONS(1892), - [anon_sym_continue] = ACTIONS(1892), - [anon_sym_for] = ACTIONS(1892), - [anon_sym_in] = ACTIONS(1892), - [anon_sym_loop] = ACTIONS(1892), - [anon_sym_make] = ACTIONS(1892), - [anon_sym_while] = ACTIONS(1892), - [anon_sym_do] = ACTIONS(1892), - [anon_sym_if] = ACTIONS(1892), - [anon_sym_else] = ACTIONS(1892), - [anon_sym_match] = ACTIONS(1892), - [anon_sym_RBRACE] = ACTIONS(1892), - [anon_sym_try] = ACTIONS(1892), - [anon_sym_catch] = ACTIONS(1892), - [anon_sym_return] = ACTIONS(1892), - [anon_sym_source] = ACTIONS(1892), - [anon_sym_source_DASHenv] = ACTIONS(1892), - [anon_sym_register] = ACTIONS(1892), - [anon_sym_hide] = ACTIONS(1892), - [anon_sym_hide_DASHenv] = ACTIONS(1892), - [anon_sym_overlay] = ACTIONS(1892), - [anon_sym_new] = ACTIONS(1892), - [anon_sym_as] = ACTIONS(1892), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1892), - [anon_sym_DOT] = ACTIONS(1824), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1892), - [aux_sym__val_number_decimal_token1] = ACTIONS(1892), - [aux_sym__val_number_decimal_token2] = ACTIONS(1892), - [aux_sym__val_number_decimal_token3] = ACTIONS(1892), - [aux_sym__val_number_decimal_token4] = ACTIONS(1892), - [aux_sym__val_number_token1] = ACTIONS(1892), - [aux_sym__val_number_token2] = ACTIONS(1892), - [aux_sym__val_number_token3] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1892), - [sym__str_single_quotes] = ACTIONS(1892), - [sym__str_back_ticks] = ACTIONS(1892), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1892), - [sym__entry_separator] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1892), - [anon_sym_POUND] = ACTIONS(3), - }, - [341] = { - [sym_cell_path] = STATE(581), - [sym_path] = STATE(527), - [sym_comment] = STATE(341), - [aux_sym_cell_path_repeat1] = STATE(425), - [anon_sym_export] = ACTIONS(1896), - [anon_sym_alias] = ACTIONS(1896), - [anon_sym_let] = ACTIONS(1896), - [anon_sym_let_DASHenv] = ACTIONS(1896), - [anon_sym_mut] = ACTIONS(1896), - [anon_sym_const] = ACTIONS(1896), - [aux_sym_cmd_identifier_token1] = ACTIONS(1896), - [aux_sym_cmd_identifier_token2] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1896), - [aux_sym_cmd_identifier_token4] = ACTIONS(1896), - [aux_sym_cmd_identifier_token5] = ACTIONS(1896), - [aux_sym_cmd_identifier_token6] = ACTIONS(1896), - [aux_sym_cmd_identifier_token7] = ACTIONS(1896), - [aux_sym_cmd_identifier_token8] = ACTIONS(1896), - [aux_sym_cmd_identifier_token9] = ACTIONS(1896), - [aux_sym_cmd_identifier_token10] = ACTIONS(1896), - [aux_sym_cmd_identifier_token11] = ACTIONS(1896), - [aux_sym_cmd_identifier_token12] = ACTIONS(1896), - [aux_sym_cmd_identifier_token13] = ACTIONS(1896), - [aux_sym_cmd_identifier_token14] = ACTIONS(1896), - [aux_sym_cmd_identifier_token15] = ACTIONS(1896), - [aux_sym_cmd_identifier_token16] = ACTIONS(1896), - [aux_sym_cmd_identifier_token17] = ACTIONS(1896), - [aux_sym_cmd_identifier_token18] = ACTIONS(1896), - [aux_sym_cmd_identifier_token19] = ACTIONS(1896), - [aux_sym_cmd_identifier_token20] = ACTIONS(1896), - [aux_sym_cmd_identifier_token21] = ACTIONS(1896), - [aux_sym_cmd_identifier_token22] = ACTIONS(1896), - [aux_sym_cmd_identifier_token23] = ACTIONS(1896), - [aux_sym_cmd_identifier_token24] = ACTIONS(1896), - [aux_sym_cmd_identifier_token25] = ACTIONS(1896), - [aux_sym_cmd_identifier_token26] = ACTIONS(1896), - [aux_sym_cmd_identifier_token27] = ACTIONS(1896), - [aux_sym_cmd_identifier_token28] = ACTIONS(1896), - [aux_sym_cmd_identifier_token29] = ACTIONS(1896), - [aux_sym_cmd_identifier_token30] = ACTIONS(1896), - [aux_sym_cmd_identifier_token31] = ACTIONS(1896), - [aux_sym_cmd_identifier_token32] = ACTIONS(1896), - [aux_sym_cmd_identifier_token33] = ACTIONS(1896), - [aux_sym_cmd_identifier_token34] = ACTIONS(1896), - [aux_sym_cmd_identifier_token35] = ACTIONS(1896), - [aux_sym_cmd_identifier_token36] = ACTIONS(1896), - [anon_sym_true] = ACTIONS(1896), - [anon_sym_false] = ACTIONS(1896), - [anon_sym_null] = ACTIONS(1896), - [aux_sym_cmd_identifier_token38] = ACTIONS(1896), - [aux_sym_cmd_identifier_token39] = ACTIONS(1896), - [aux_sym_cmd_identifier_token40] = ACTIONS(1896), - [anon_sym_def] = ACTIONS(1896), - [anon_sym_export_DASHenv] = ACTIONS(1896), - [anon_sym_extern] = ACTIONS(1896), - [anon_sym_module] = ACTIONS(1896), - [anon_sym_use] = ACTIONS(1896), - [anon_sym_LPAREN] = ACTIONS(1896), - [anon_sym_DOLLAR] = ACTIONS(1896), - [anon_sym_error] = ACTIONS(1896), - [anon_sym_list] = ACTIONS(1896), - [anon_sym_DASH] = ACTIONS(1896), - [anon_sym_break] = ACTIONS(1896), - [anon_sym_continue] = ACTIONS(1896), - [anon_sym_for] = ACTIONS(1896), - [anon_sym_in] = ACTIONS(1896), - [anon_sym_loop] = ACTIONS(1896), - [anon_sym_make] = ACTIONS(1896), - [anon_sym_while] = ACTIONS(1896), - [anon_sym_do] = ACTIONS(1896), - [anon_sym_if] = ACTIONS(1896), - [anon_sym_else] = ACTIONS(1896), - [anon_sym_match] = ACTIONS(1896), - [anon_sym_RBRACE] = ACTIONS(1896), - [anon_sym_try] = ACTIONS(1896), - [anon_sym_catch] = ACTIONS(1896), - [anon_sym_return] = ACTIONS(1896), - [anon_sym_source] = ACTIONS(1896), - [anon_sym_source_DASHenv] = ACTIONS(1896), - [anon_sym_register] = ACTIONS(1896), - [anon_sym_hide] = ACTIONS(1896), - [anon_sym_hide_DASHenv] = ACTIONS(1896), - [anon_sym_overlay] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1896), - [anon_sym_as] = ACTIONS(1896), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1896), - [anon_sym_DOT] = ACTIONS(1824), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1896), - [aux_sym__val_number_decimal_token1] = ACTIONS(1896), - [aux_sym__val_number_decimal_token2] = ACTIONS(1896), - [aux_sym__val_number_decimal_token3] = ACTIONS(1896), - [aux_sym__val_number_decimal_token4] = ACTIONS(1896), - [aux_sym__val_number_token1] = ACTIONS(1896), - [aux_sym__val_number_token2] = ACTIONS(1896), - [aux_sym__val_number_token3] = ACTIONS(1896), - [anon_sym_DQUOTE] = ACTIONS(1896), - [sym__str_single_quotes] = ACTIONS(1896), - [sym__str_back_ticks] = ACTIONS(1896), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1896), - [sym__entry_separator] = ACTIONS(1898), - [anon_sym_PLUS] = ACTIONS(1896), - [anon_sym_POUND] = ACTIONS(3), - }, - [342] = { - [sym_cell_path] = STATE(582), - [sym_path] = STATE(527), - [sym_comment] = STATE(342), - [aux_sym_cell_path_repeat1] = STATE(425), - [anon_sym_export] = ACTIONS(1900), - [anon_sym_alias] = ACTIONS(1900), - [anon_sym_let] = ACTIONS(1900), - [anon_sym_let_DASHenv] = ACTIONS(1900), - [anon_sym_mut] = ACTIONS(1900), - [anon_sym_const] = ACTIONS(1900), - [aux_sym_cmd_identifier_token1] = ACTIONS(1900), - [aux_sym_cmd_identifier_token2] = ACTIONS(1900), - [aux_sym_cmd_identifier_token3] = ACTIONS(1900), - [aux_sym_cmd_identifier_token4] = ACTIONS(1900), - [aux_sym_cmd_identifier_token5] = ACTIONS(1900), - [aux_sym_cmd_identifier_token6] = ACTIONS(1900), - [aux_sym_cmd_identifier_token7] = ACTIONS(1900), - [aux_sym_cmd_identifier_token8] = ACTIONS(1900), - [aux_sym_cmd_identifier_token9] = ACTIONS(1900), - [aux_sym_cmd_identifier_token10] = ACTIONS(1900), - [aux_sym_cmd_identifier_token11] = ACTIONS(1900), - [aux_sym_cmd_identifier_token12] = ACTIONS(1900), - [aux_sym_cmd_identifier_token13] = ACTIONS(1900), - [aux_sym_cmd_identifier_token14] = ACTIONS(1900), - [aux_sym_cmd_identifier_token15] = ACTIONS(1900), - [aux_sym_cmd_identifier_token16] = ACTIONS(1900), - [aux_sym_cmd_identifier_token17] = ACTIONS(1900), - [aux_sym_cmd_identifier_token18] = ACTIONS(1900), - [aux_sym_cmd_identifier_token19] = ACTIONS(1900), - [aux_sym_cmd_identifier_token20] = ACTIONS(1900), - [aux_sym_cmd_identifier_token21] = ACTIONS(1900), - [aux_sym_cmd_identifier_token22] = ACTIONS(1900), - [aux_sym_cmd_identifier_token23] = ACTIONS(1900), - [aux_sym_cmd_identifier_token24] = ACTIONS(1900), - [aux_sym_cmd_identifier_token25] = ACTIONS(1900), - [aux_sym_cmd_identifier_token26] = ACTIONS(1900), - [aux_sym_cmd_identifier_token27] = ACTIONS(1900), - [aux_sym_cmd_identifier_token28] = ACTIONS(1900), - [aux_sym_cmd_identifier_token29] = ACTIONS(1900), - [aux_sym_cmd_identifier_token30] = ACTIONS(1900), - [aux_sym_cmd_identifier_token31] = ACTIONS(1900), - [aux_sym_cmd_identifier_token32] = ACTIONS(1900), - [aux_sym_cmd_identifier_token33] = ACTIONS(1900), - [aux_sym_cmd_identifier_token34] = ACTIONS(1900), - [aux_sym_cmd_identifier_token35] = ACTIONS(1900), - [aux_sym_cmd_identifier_token36] = ACTIONS(1900), - [anon_sym_true] = ACTIONS(1900), - [anon_sym_false] = ACTIONS(1900), - [anon_sym_null] = ACTIONS(1900), - [aux_sym_cmd_identifier_token38] = ACTIONS(1900), - [aux_sym_cmd_identifier_token39] = ACTIONS(1900), - [aux_sym_cmd_identifier_token40] = ACTIONS(1900), - [anon_sym_def] = ACTIONS(1900), - [anon_sym_export_DASHenv] = ACTIONS(1900), - [anon_sym_extern] = ACTIONS(1900), - [anon_sym_module] = ACTIONS(1900), - [anon_sym_use] = ACTIONS(1900), - [anon_sym_LPAREN] = ACTIONS(1900), - [anon_sym_DOLLAR] = ACTIONS(1900), - [anon_sym_error] = ACTIONS(1900), - [anon_sym_list] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_break] = ACTIONS(1900), - [anon_sym_continue] = ACTIONS(1900), - [anon_sym_for] = ACTIONS(1900), - [anon_sym_in] = ACTIONS(1900), - [anon_sym_loop] = ACTIONS(1900), - [anon_sym_make] = ACTIONS(1900), - [anon_sym_while] = ACTIONS(1900), - [anon_sym_do] = ACTIONS(1900), - [anon_sym_if] = ACTIONS(1900), - [anon_sym_else] = ACTIONS(1900), - [anon_sym_match] = ACTIONS(1900), - [anon_sym_RBRACE] = ACTIONS(1900), - [anon_sym_try] = ACTIONS(1900), - [anon_sym_catch] = ACTIONS(1900), - [anon_sym_return] = ACTIONS(1900), - [anon_sym_source] = ACTIONS(1900), - [anon_sym_source_DASHenv] = ACTIONS(1900), - [anon_sym_register] = ACTIONS(1900), - [anon_sym_hide] = ACTIONS(1900), - [anon_sym_hide_DASHenv] = ACTIONS(1900), - [anon_sym_overlay] = ACTIONS(1900), - [anon_sym_new] = ACTIONS(1900), - [anon_sym_as] = ACTIONS(1900), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1900), - [anon_sym_DOT] = ACTIONS(1824), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1900), - [aux_sym__val_number_decimal_token1] = ACTIONS(1900), - [aux_sym__val_number_decimal_token2] = ACTIONS(1900), - [aux_sym__val_number_decimal_token3] = ACTIONS(1900), - [aux_sym__val_number_decimal_token4] = ACTIONS(1900), - [aux_sym__val_number_token1] = ACTIONS(1900), - [aux_sym__val_number_token2] = ACTIONS(1900), - [aux_sym__val_number_token3] = ACTIONS(1900), - [anon_sym_DQUOTE] = ACTIONS(1900), - [sym__str_single_quotes] = ACTIONS(1900), - [sym__str_back_ticks] = ACTIONS(1900), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1900), - [sym__entry_separator] = ACTIONS(1902), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_POUND] = ACTIONS(3), - }, - [343] = { - [sym_cell_path] = STATE(585), - [sym_path] = STATE(527), - [sym_comment] = STATE(343), - [aux_sym_cell_path_repeat1] = STATE(425), - [anon_sym_export] = ACTIONS(1904), - [anon_sym_alias] = ACTIONS(1904), - [anon_sym_let] = ACTIONS(1904), - [anon_sym_let_DASHenv] = ACTIONS(1904), - [anon_sym_mut] = ACTIONS(1904), - [anon_sym_const] = ACTIONS(1904), - [aux_sym_cmd_identifier_token1] = ACTIONS(1904), - [aux_sym_cmd_identifier_token2] = ACTIONS(1904), - [aux_sym_cmd_identifier_token3] = ACTIONS(1904), - [aux_sym_cmd_identifier_token4] = ACTIONS(1904), - [aux_sym_cmd_identifier_token5] = ACTIONS(1904), - [aux_sym_cmd_identifier_token6] = ACTIONS(1904), - [aux_sym_cmd_identifier_token7] = ACTIONS(1904), - [aux_sym_cmd_identifier_token8] = ACTIONS(1904), - [aux_sym_cmd_identifier_token9] = ACTIONS(1904), - [aux_sym_cmd_identifier_token10] = ACTIONS(1904), - [aux_sym_cmd_identifier_token11] = ACTIONS(1904), - [aux_sym_cmd_identifier_token12] = ACTIONS(1904), - [aux_sym_cmd_identifier_token13] = ACTIONS(1904), - [aux_sym_cmd_identifier_token14] = ACTIONS(1904), - [aux_sym_cmd_identifier_token15] = ACTIONS(1904), - [aux_sym_cmd_identifier_token16] = ACTIONS(1904), - [aux_sym_cmd_identifier_token17] = ACTIONS(1904), - [aux_sym_cmd_identifier_token18] = ACTIONS(1904), - [aux_sym_cmd_identifier_token19] = ACTIONS(1904), - [aux_sym_cmd_identifier_token20] = ACTIONS(1904), - [aux_sym_cmd_identifier_token21] = ACTIONS(1904), - [aux_sym_cmd_identifier_token22] = ACTIONS(1904), - [aux_sym_cmd_identifier_token23] = ACTIONS(1904), - [aux_sym_cmd_identifier_token24] = ACTIONS(1904), - [aux_sym_cmd_identifier_token25] = ACTIONS(1904), - [aux_sym_cmd_identifier_token26] = ACTIONS(1904), - [aux_sym_cmd_identifier_token27] = ACTIONS(1904), - [aux_sym_cmd_identifier_token28] = ACTIONS(1904), - [aux_sym_cmd_identifier_token29] = ACTIONS(1904), - [aux_sym_cmd_identifier_token30] = ACTIONS(1904), - [aux_sym_cmd_identifier_token31] = ACTIONS(1904), - [aux_sym_cmd_identifier_token32] = ACTIONS(1904), - [aux_sym_cmd_identifier_token33] = ACTIONS(1904), - [aux_sym_cmd_identifier_token34] = ACTIONS(1904), - [aux_sym_cmd_identifier_token35] = ACTIONS(1904), - [aux_sym_cmd_identifier_token36] = ACTIONS(1904), - [anon_sym_true] = ACTIONS(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_null] = ACTIONS(1904), - [aux_sym_cmd_identifier_token38] = ACTIONS(1904), - [aux_sym_cmd_identifier_token39] = ACTIONS(1904), - [aux_sym_cmd_identifier_token40] = ACTIONS(1904), - [anon_sym_def] = ACTIONS(1904), - [anon_sym_export_DASHenv] = ACTIONS(1904), - [anon_sym_extern] = ACTIONS(1904), - [anon_sym_module] = ACTIONS(1904), - [anon_sym_use] = ACTIONS(1904), - [anon_sym_LPAREN] = ACTIONS(1904), - [anon_sym_DOLLAR] = ACTIONS(1904), - [anon_sym_error] = ACTIONS(1904), - [anon_sym_list] = ACTIONS(1904), - [anon_sym_DASH] = ACTIONS(1904), - [anon_sym_break] = ACTIONS(1904), - [anon_sym_continue] = ACTIONS(1904), - [anon_sym_for] = ACTIONS(1904), - [anon_sym_in] = ACTIONS(1904), - [anon_sym_loop] = ACTIONS(1904), - [anon_sym_make] = ACTIONS(1904), - [anon_sym_while] = ACTIONS(1904), - [anon_sym_do] = ACTIONS(1904), - [anon_sym_if] = ACTIONS(1904), - [anon_sym_else] = ACTIONS(1904), - [anon_sym_match] = ACTIONS(1904), - [anon_sym_RBRACE] = ACTIONS(1904), - [anon_sym_try] = ACTIONS(1904), - [anon_sym_catch] = ACTIONS(1904), - [anon_sym_return] = ACTIONS(1904), - [anon_sym_source] = ACTIONS(1904), - [anon_sym_source_DASHenv] = ACTIONS(1904), - [anon_sym_register] = ACTIONS(1904), - [anon_sym_hide] = ACTIONS(1904), - [anon_sym_hide_DASHenv] = ACTIONS(1904), - [anon_sym_overlay] = ACTIONS(1904), - [anon_sym_new] = ACTIONS(1904), - [anon_sym_as] = ACTIONS(1904), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1904), - [anon_sym_DOT] = ACTIONS(1824), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1904), - [aux_sym__val_number_decimal_token2] = ACTIONS(1904), - [aux_sym__val_number_decimal_token3] = ACTIONS(1904), - [aux_sym__val_number_decimal_token4] = ACTIONS(1904), - [aux_sym__val_number_token1] = ACTIONS(1904), - [aux_sym__val_number_token2] = ACTIONS(1904), - [aux_sym__val_number_token3] = ACTIONS(1904), - [anon_sym_DQUOTE] = ACTIONS(1904), - [sym__str_single_quotes] = ACTIONS(1904), - [sym__str_back_ticks] = ACTIONS(1904), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1904), - [sym__entry_separator] = ACTIONS(1906), - [anon_sym_PLUS] = ACTIONS(1904), - [anon_sym_POUND] = ACTIONS(3), - }, - [344] = { - [sym_comment] = STATE(344), - [anon_sym_export] = ACTIONS(1667), - [anon_sym_alias] = ACTIONS(1667), - [anon_sym_let] = ACTIONS(1667), - [anon_sym_let_DASHenv] = ACTIONS(1667), - [anon_sym_mut] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1667), - [aux_sym_cmd_identifier_token1] = ACTIONS(1667), - [aux_sym_cmd_identifier_token2] = ACTIONS(1667), - [aux_sym_cmd_identifier_token3] = ACTIONS(1667), - [aux_sym_cmd_identifier_token4] = ACTIONS(1667), - [aux_sym_cmd_identifier_token5] = ACTIONS(1667), - [aux_sym_cmd_identifier_token6] = ACTIONS(1667), - [aux_sym_cmd_identifier_token7] = ACTIONS(1667), - [aux_sym_cmd_identifier_token8] = ACTIONS(1667), - [aux_sym_cmd_identifier_token9] = ACTIONS(1667), - [aux_sym_cmd_identifier_token10] = ACTIONS(1667), - [aux_sym_cmd_identifier_token11] = ACTIONS(1667), - [aux_sym_cmd_identifier_token12] = ACTIONS(1667), - [aux_sym_cmd_identifier_token13] = ACTIONS(1667), - [aux_sym_cmd_identifier_token14] = ACTIONS(1667), - [aux_sym_cmd_identifier_token15] = ACTIONS(1667), - [aux_sym_cmd_identifier_token16] = ACTIONS(1667), - [aux_sym_cmd_identifier_token17] = ACTIONS(1667), - [aux_sym_cmd_identifier_token18] = ACTIONS(1667), - [aux_sym_cmd_identifier_token19] = ACTIONS(1667), - [aux_sym_cmd_identifier_token20] = ACTIONS(1667), - [aux_sym_cmd_identifier_token21] = ACTIONS(1667), - [aux_sym_cmd_identifier_token22] = ACTIONS(1667), - [aux_sym_cmd_identifier_token23] = ACTIONS(1667), - [aux_sym_cmd_identifier_token24] = ACTIONS(1667), - [aux_sym_cmd_identifier_token25] = ACTIONS(1667), - [aux_sym_cmd_identifier_token26] = ACTIONS(1667), - [aux_sym_cmd_identifier_token27] = ACTIONS(1667), - [aux_sym_cmd_identifier_token28] = ACTIONS(1667), - [aux_sym_cmd_identifier_token29] = ACTIONS(1667), - [aux_sym_cmd_identifier_token30] = ACTIONS(1667), - [aux_sym_cmd_identifier_token31] = ACTIONS(1667), - [aux_sym_cmd_identifier_token32] = ACTIONS(1667), - [aux_sym_cmd_identifier_token33] = ACTIONS(1667), - [aux_sym_cmd_identifier_token34] = ACTIONS(1667), - [aux_sym_cmd_identifier_token35] = ACTIONS(1667), - [aux_sym_cmd_identifier_token36] = ACTIONS(1667), - [anon_sym_true] = ACTIONS(1667), - [anon_sym_false] = ACTIONS(1667), - [anon_sym_null] = ACTIONS(1667), - [aux_sym_cmd_identifier_token38] = ACTIONS(1667), - [aux_sym_cmd_identifier_token39] = ACTIONS(1667), - [aux_sym_cmd_identifier_token40] = ACTIONS(1667), - [anon_sym_def] = ACTIONS(1667), - [anon_sym_export_DASHenv] = ACTIONS(1667), - [anon_sym_extern] = ACTIONS(1667), - [anon_sym_module] = ACTIONS(1667), - [anon_sym_use] = ACTIONS(1667), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_DOLLAR] = ACTIONS(1667), - [anon_sym_error] = ACTIONS(1667), - [anon_sym_list] = ACTIONS(1667), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_break] = ACTIONS(1667), - [anon_sym_continue] = ACTIONS(1667), - [anon_sym_for] = ACTIONS(1667), - [anon_sym_in] = ACTIONS(1667), - [anon_sym_loop] = ACTIONS(1667), - [anon_sym_make] = ACTIONS(1667), - [anon_sym_while] = ACTIONS(1667), - [anon_sym_do] = ACTIONS(1667), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_else] = ACTIONS(1667), - [anon_sym_match] = ACTIONS(1667), - [anon_sym_RBRACE] = ACTIONS(1667), - [anon_sym_try] = ACTIONS(1667), - [anon_sym_catch] = ACTIONS(1667), - [anon_sym_return] = ACTIONS(1667), - [anon_sym_source] = ACTIONS(1667), - [anon_sym_source_DASHenv] = ACTIONS(1667), - [anon_sym_register] = ACTIONS(1667), - [anon_sym_hide] = ACTIONS(1667), - [anon_sym_hide_DASHenv] = ACTIONS(1667), - [anon_sym_overlay] = ACTIONS(1667), - [anon_sym_new] = ACTIONS(1667), - [anon_sym_as] = ACTIONS(1667), - [anon_sym_LPAREN2] = ACTIONS(1669), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1667), - [anon_sym_DOT] = ACTIONS(1908), - [aux_sym__immediate_decimal_token2] = ACTIONS(1910), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1667), - [aux_sym__val_number_decimal_token1] = ACTIONS(1667), - [aux_sym__val_number_decimal_token2] = ACTIONS(1667), - [aux_sym__val_number_decimal_token3] = ACTIONS(1667), - [aux_sym__val_number_decimal_token4] = ACTIONS(1667), - [aux_sym__val_number_token1] = ACTIONS(1667), - [aux_sym__val_number_token2] = ACTIONS(1667), - [aux_sym__val_number_token3] = ACTIONS(1667), - [anon_sym_DQUOTE] = ACTIONS(1667), - [sym__str_single_quotes] = ACTIONS(1667), - [sym__str_back_ticks] = ACTIONS(1667), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1667), - [sym__entry_separator] = ACTIONS(1669), - [anon_sym_PLUS] = ACTIONS(1667), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(3), - }, - [345] = { - [sym_comment] = STATE(345), - [anon_sym_export] = ACTIONS(1721), - [anon_sym_alias] = ACTIONS(1721), - [anon_sym_let] = ACTIONS(1721), - [anon_sym_let_DASHenv] = ACTIONS(1721), - [anon_sym_mut] = ACTIONS(1721), - [anon_sym_const] = ACTIONS(1721), - [aux_sym_cmd_identifier_token1] = ACTIONS(1721), - [aux_sym_cmd_identifier_token2] = ACTIONS(1721), - [aux_sym_cmd_identifier_token3] = ACTIONS(1721), - [aux_sym_cmd_identifier_token4] = ACTIONS(1721), - [aux_sym_cmd_identifier_token5] = ACTIONS(1721), - [aux_sym_cmd_identifier_token6] = ACTIONS(1721), - [aux_sym_cmd_identifier_token7] = ACTIONS(1721), - [aux_sym_cmd_identifier_token8] = ACTIONS(1721), - [aux_sym_cmd_identifier_token9] = ACTIONS(1721), - [aux_sym_cmd_identifier_token10] = ACTIONS(1721), - [aux_sym_cmd_identifier_token11] = ACTIONS(1721), - [aux_sym_cmd_identifier_token12] = ACTIONS(1721), - [aux_sym_cmd_identifier_token13] = ACTIONS(1721), - [aux_sym_cmd_identifier_token14] = ACTIONS(1721), - [aux_sym_cmd_identifier_token15] = ACTIONS(1721), - [aux_sym_cmd_identifier_token16] = ACTIONS(1721), - [aux_sym_cmd_identifier_token17] = ACTIONS(1721), - [aux_sym_cmd_identifier_token18] = ACTIONS(1721), - [aux_sym_cmd_identifier_token19] = ACTIONS(1721), - [aux_sym_cmd_identifier_token20] = ACTIONS(1721), - [aux_sym_cmd_identifier_token21] = ACTIONS(1721), - [aux_sym_cmd_identifier_token22] = ACTIONS(1721), - [aux_sym_cmd_identifier_token23] = ACTIONS(1721), - [aux_sym_cmd_identifier_token24] = ACTIONS(1721), - [aux_sym_cmd_identifier_token25] = ACTIONS(1721), - [aux_sym_cmd_identifier_token26] = ACTIONS(1721), - [aux_sym_cmd_identifier_token27] = ACTIONS(1721), - [aux_sym_cmd_identifier_token28] = ACTIONS(1721), - [aux_sym_cmd_identifier_token29] = ACTIONS(1721), - [aux_sym_cmd_identifier_token30] = ACTIONS(1721), - [aux_sym_cmd_identifier_token31] = ACTIONS(1721), - [aux_sym_cmd_identifier_token32] = ACTIONS(1721), - [aux_sym_cmd_identifier_token33] = ACTIONS(1721), - [aux_sym_cmd_identifier_token34] = ACTIONS(1721), - [aux_sym_cmd_identifier_token35] = ACTIONS(1721), - [aux_sym_cmd_identifier_token36] = ACTIONS(1721), - [anon_sym_true] = ACTIONS(1723), - [anon_sym_false] = ACTIONS(1723), - [anon_sym_null] = ACTIONS(1723), - [aux_sym_cmd_identifier_token38] = ACTIONS(1721), - [aux_sym_cmd_identifier_token39] = ACTIONS(1723), - [aux_sym_cmd_identifier_token40] = ACTIONS(1723), - [anon_sym_def] = ACTIONS(1721), - [anon_sym_export_DASHenv] = ACTIONS(1721), - [anon_sym_extern] = ACTIONS(1721), - [anon_sym_module] = ACTIONS(1721), - [anon_sym_use] = ACTIONS(1721), - [anon_sym_LPAREN] = ACTIONS(1721), - [anon_sym_DOLLAR] = ACTIONS(1723), - [anon_sym_error] = ACTIONS(1721), - [anon_sym_list] = ACTIONS(1721), - [anon_sym_DASH] = ACTIONS(1721), - [anon_sym_break] = ACTIONS(1721), - [anon_sym_continue] = ACTIONS(1721), - [anon_sym_for] = ACTIONS(1721), - [anon_sym_in] = ACTIONS(1721), - [anon_sym_loop] = ACTIONS(1721), - [anon_sym_make] = ACTIONS(1721), - [anon_sym_while] = ACTIONS(1721), - [anon_sym_do] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1721), - [anon_sym_else] = ACTIONS(1721), - [anon_sym_match] = ACTIONS(1721), - [anon_sym_RBRACE] = ACTIONS(1723), - [anon_sym_try] = ACTIONS(1721), - [anon_sym_catch] = ACTIONS(1721), - [anon_sym_return] = ACTIONS(1721), - [anon_sym_source] = ACTIONS(1721), - [anon_sym_source_DASHenv] = ACTIONS(1721), - [anon_sym_register] = ACTIONS(1721), - [anon_sym_hide] = ACTIONS(1721), - [anon_sym_hide_DASHenv] = ACTIONS(1721), - [anon_sym_overlay] = ACTIONS(1721), - [anon_sym_new] = ACTIONS(1721), - [anon_sym_as] = ACTIONS(1721), - [anon_sym_LPAREN2] = ACTIONS(1723), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1723), - [anon_sym_DOT_DOT2] = ACTIONS(1721), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1723), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1723), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1723), - [aux_sym__val_number_decimal_token1] = ACTIONS(1721), - [aux_sym__val_number_decimal_token2] = ACTIONS(1723), - [aux_sym__val_number_decimal_token3] = ACTIONS(1723), - [aux_sym__val_number_decimal_token4] = ACTIONS(1723), - [aux_sym__val_number_token1] = ACTIONS(1723), - [aux_sym__val_number_token2] = ACTIONS(1723), - [aux_sym__val_number_token3] = ACTIONS(1723), - [anon_sym_DQUOTE] = ACTIONS(1723), - [sym__str_single_quotes] = ACTIONS(1723), - [sym__str_back_ticks] = ACTIONS(1723), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1723), - [anon_sym_PLUS] = ACTIONS(1721), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1721), - [anon_sym_POUND] = ACTIONS(247), - }, - [346] = { - [sym_cell_path] = STATE(523), - [sym_path] = STATE(527), - [sym_comment] = STATE(346), - [aux_sym_cell_path_repeat1] = STATE(425), - [anon_sym_export] = ACTIONS(1912), - [anon_sym_alias] = ACTIONS(1912), - [anon_sym_let] = ACTIONS(1912), - [anon_sym_let_DASHenv] = ACTIONS(1912), - [anon_sym_mut] = ACTIONS(1912), - [anon_sym_const] = ACTIONS(1912), - [aux_sym_cmd_identifier_token1] = ACTIONS(1912), - [aux_sym_cmd_identifier_token2] = ACTIONS(1912), - [aux_sym_cmd_identifier_token3] = ACTIONS(1912), - [aux_sym_cmd_identifier_token4] = ACTIONS(1912), - [aux_sym_cmd_identifier_token5] = ACTIONS(1912), - [aux_sym_cmd_identifier_token6] = ACTIONS(1912), - [aux_sym_cmd_identifier_token7] = ACTIONS(1912), - [aux_sym_cmd_identifier_token8] = ACTIONS(1912), - [aux_sym_cmd_identifier_token9] = ACTIONS(1912), - [aux_sym_cmd_identifier_token10] = ACTIONS(1912), - [aux_sym_cmd_identifier_token11] = ACTIONS(1912), - [aux_sym_cmd_identifier_token12] = ACTIONS(1912), - [aux_sym_cmd_identifier_token13] = ACTIONS(1912), - [aux_sym_cmd_identifier_token14] = ACTIONS(1912), - [aux_sym_cmd_identifier_token15] = ACTIONS(1912), - [aux_sym_cmd_identifier_token16] = ACTIONS(1912), - [aux_sym_cmd_identifier_token17] = ACTIONS(1912), - [aux_sym_cmd_identifier_token18] = ACTIONS(1912), - [aux_sym_cmd_identifier_token19] = ACTIONS(1912), - [aux_sym_cmd_identifier_token20] = ACTIONS(1912), - [aux_sym_cmd_identifier_token21] = ACTIONS(1912), - [aux_sym_cmd_identifier_token22] = ACTIONS(1912), - [aux_sym_cmd_identifier_token23] = ACTIONS(1912), - [aux_sym_cmd_identifier_token24] = ACTIONS(1912), - [aux_sym_cmd_identifier_token25] = ACTIONS(1912), - [aux_sym_cmd_identifier_token26] = ACTIONS(1912), - [aux_sym_cmd_identifier_token27] = ACTIONS(1912), - [aux_sym_cmd_identifier_token28] = ACTIONS(1912), - [aux_sym_cmd_identifier_token29] = ACTIONS(1912), - [aux_sym_cmd_identifier_token30] = ACTIONS(1912), - [aux_sym_cmd_identifier_token31] = ACTIONS(1912), - [aux_sym_cmd_identifier_token32] = ACTIONS(1912), - [aux_sym_cmd_identifier_token33] = ACTIONS(1912), - [aux_sym_cmd_identifier_token34] = ACTIONS(1912), - [aux_sym_cmd_identifier_token35] = ACTIONS(1912), - [aux_sym_cmd_identifier_token36] = ACTIONS(1912), - [anon_sym_true] = ACTIONS(1912), - [anon_sym_false] = ACTIONS(1912), - [anon_sym_null] = ACTIONS(1912), - [aux_sym_cmd_identifier_token38] = ACTIONS(1912), - [aux_sym_cmd_identifier_token39] = ACTIONS(1912), - [aux_sym_cmd_identifier_token40] = ACTIONS(1912), - [anon_sym_def] = ACTIONS(1912), - [anon_sym_export_DASHenv] = ACTIONS(1912), - [anon_sym_extern] = ACTIONS(1912), - [anon_sym_module] = ACTIONS(1912), - [anon_sym_use] = ACTIONS(1912), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_DOLLAR] = ACTIONS(1912), - [anon_sym_error] = ACTIONS(1912), - [anon_sym_list] = ACTIONS(1912), - [anon_sym_DASH] = ACTIONS(1912), - [anon_sym_break] = ACTIONS(1912), - [anon_sym_continue] = ACTIONS(1912), - [anon_sym_for] = ACTIONS(1912), - [anon_sym_in] = ACTIONS(1912), - [anon_sym_loop] = ACTIONS(1912), - [anon_sym_make] = ACTIONS(1912), - [anon_sym_while] = ACTIONS(1912), - [anon_sym_do] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(1912), - [anon_sym_else] = ACTIONS(1912), - [anon_sym_match] = ACTIONS(1912), - [anon_sym_RBRACE] = ACTIONS(1912), - [anon_sym_try] = ACTIONS(1912), - [anon_sym_catch] = ACTIONS(1912), - [anon_sym_return] = ACTIONS(1912), - [anon_sym_source] = ACTIONS(1912), - [anon_sym_source_DASHenv] = ACTIONS(1912), - [anon_sym_register] = ACTIONS(1912), - [anon_sym_hide] = ACTIONS(1912), - [anon_sym_hide_DASHenv] = ACTIONS(1912), - [anon_sym_overlay] = ACTIONS(1912), - [anon_sym_new] = ACTIONS(1912), - [anon_sym_as] = ACTIONS(1912), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1912), - [anon_sym_DOT] = ACTIONS(1824), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1912), - [aux_sym__val_number_decimal_token1] = ACTIONS(1912), - [aux_sym__val_number_decimal_token2] = ACTIONS(1912), - [aux_sym__val_number_decimal_token3] = ACTIONS(1912), - [aux_sym__val_number_decimal_token4] = ACTIONS(1912), - [aux_sym__val_number_token1] = ACTIONS(1912), - [aux_sym__val_number_token2] = ACTIONS(1912), - [aux_sym__val_number_token3] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [sym__str_single_quotes] = ACTIONS(1912), - [sym__str_back_ticks] = ACTIONS(1912), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1912), - [sym__entry_separator] = ACTIONS(1914), - [anon_sym_PLUS] = ACTIONS(1912), - [anon_sym_POUND] = ACTIONS(3), - }, - [347] = { - [sym_comment] = STATE(347), - [anon_sym_export] = ACTIONS(1659), - [anon_sym_alias] = ACTIONS(1659), - [anon_sym_let] = ACTIONS(1659), - [anon_sym_let_DASHenv] = ACTIONS(1659), - [anon_sym_mut] = ACTIONS(1659), - [anon_sym_const] = ACTIONS(1659), - [aux_sym_cmd_identifier_token1] = ACTIONS(1659), - [aux_sym_cmd_identifier_token2] = ACTIONS(1659), - [aux_sym_cmd_identifier_token3] = ACTIONS(1659), - [aux_sym_cmd_identifier_token4] = ACTIONS(1659), - [aux_sym_cmd_identifier_token5] = ACTIONS(1659), - [aux_sym_cmd_identifier_token6] = ACTIONS(1659), - [aux_sym_cmd_identifier_token7] = ACTIONS(1659), - [aux_sym_cmd_identifier_token8] = ACTIONS(1659), - [aux_sym_cmd_identifier_token9] = ACTIONS(1659), - [aux_sym_cmd_identifier_token10] = ACTIONS(1659), - [aux_sym_cmd_identifier_token11] = ACTIONS(1659), - [aux_sym_cmd_identifier_token12] = ACTIONS(1659), - [aux_sym_cmd_identifier_token13] = ACTIONS(1659), - [aux_sym_cmd_identifier_token14] = ACTIONS(1659), - [aux_sym_cmd_identifier_token15] = ACTIONS(1659), - [aux_sym_cmd_identifier_token16] = ACTIONS(1659), - [aux_sym_cmd_identifier_token17] = ACTIONS(1659), - [aux_sym_cmd_identifier_token18] = ACTIONS(1659), - [aux_sym_cmd_identifier_token19] = ACTIONS(1659), - [aux_sym_cmd_identifier_token20] = ACTIONS(1659), - [aux_sym_cmd_identifier_token21] = ACTIONS(1659), - [aux_sym_cmd_identifier_token22] = ACTIONS(1659), - [aux_sym_cmd_identifier_token23] = ACTIONS(1659), - [aux_sym_cmd_identifier_token24] = ACTIONS(1659), - [aux_sym_cmd_identifier_token25] = ACTIONS(1659), - [aux_sym_cmd_identifier_token26] = ACTIONS(1659), - [aux_sym_cmd_identifier_token27] = ACTIONS(1659), - [aux_sym_cmd_identifier_token28] = ACTIONS(1659), - [aux_sym_cmd_identifier_token29] = ACTIONS(1659), - [aux_sym_cmd_identifier_token30] = ACTIONS(1659), - [aux_sym_cmd_identifier_token31] = ACTIONS(1659), - [aux_sym_cmd_identifier_token32] = ACTIONS(1659), - [aux_sym_cmd_identifier_token33] = ACTIONS(1659), - [aux_sym_cmd_identifier_token34] = ACTIONS(1659), - [aux_sym_cmd_identifier_token35] = ACTIONS(1659), - [aux_sym_cmd_identifier_token36] = ACTIONS(1659), - [anon_sym_true] = ACTIONS(1659), - [anon_sym_false] = ACTIONS(1659), - [anon_sym_null] = ACTIONS(1659), - [aux_sym_cmd_identifier_token38] = ACTIONS(1659), - [aux_sym_cmd_identifier_token39] = ACTIONS(1659), - [aux_sym_cmd_identifier_token40] = ACTIONS(1659), - [anon_sym_def] = ACTIONS(1659), - [anon_sym_export_DASHenv] = ACTIONS(1659), - [anon_sym_extern] = ACTIONS(1659), - [anon_sym_module] = ACTIONS(1659), - [anon_sym_use] = ACTIONS(1659), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_DOLLAR] = ACTIONS(1659), - [anon_sym_error] = ACTIONS(1659), - [anon_sym_list] = ACTIONS(1659), - [anon_sym_DASH] = ACTIONS(1659), - [anon_sym_break] = ACTIONS(1659), - [anon_sym_continue] = ACTIONS(1659), - [anon_sym_for] = ACTIONS(1659), - [anon_sym_in] = ACTIONS(1659), - [anon_sym_loop] = ACTIONS(1659), - [anon_sym_make] = ACTIONS(1659), - [anon_sym_while] = ACTIONS(1659), - [anon_sym_do] = ACTIONS(1659), - [anon_sym_if] = ACTIONS(1659), - [anon_sym_else] = ACTIONS(1659), - [anon_sym_match] = ACTIONS(1659), - [anon_sym_RBRACE] = ACTIONS(1659), - [anon_sym_try] = ACTIONS(1659), - [anon_sym_catch] = ACTIONS(1659), - [anon_sym_return] = ACTIONS(1659), - [anon_sym_source] = ACTIONS(1659), - [anon_sym_source_DASHenv] = ACTIONS(1659), - [anon_sym_register] = ACTIONS(1659), - [anon_sym_hide] = ACTIONS(1659), - [anon_sym_hide_DASHenv] = ACTIONS(1659), - [anon_sym_overlay] = ACTIONS(1659), - [anon_sym_new] = ACTIONS(1659), - [anon_sym_as] = ACTIONS(1659), - [anon_sym_LPAREN2] = ACTIONS(1661), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1659), - [aux_sym__immediate_decimal_token1] = ACTIONS(1916), - [aux_sym__immediate_decimal_token2] = ACTIONS(1918), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1659), - [aux_sym__val_number_decimal_token1] = ACTIONS(1659), - [aux_sym__val_number_decimal_token2] = ACTIONS(1659), - [aux_sym__val_number_decimal_token3] = ACTIONS(1659), - [aux_sym__val_number_decimal_token4] = ACTIONS(1659), - [aux_sym__val_number_token1] = ACTIONS(1659), - [aux_sym__val_number_token2] = ACTIONS(1659), - [aux_sym__val_number_token3] = ACTIONS(1659), - [anon_sym_DQUOTE] = ACTIONS(1659), - [sym__str_single_quotes] = ACTIONS(1659), - [sym__str_back_ticks] = ACTIONS(1659), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1659), - [sym__entry_separator] = ACTIONS(1661), - [anon_sym_PLUS] = ACTIONS(1659), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1659), - [anon_sym_POUND] = ACTIONS(3), - }, - [348] = { - [sym_comment] = STATE(348), - [anon_sym_export] = ACTIONS(1920), - [anon_sym_alias] = ACTIONS(1920), - [anon_sym_let] = ACTIONS(1920), - [anon_sym_let_DASHenv] = ACTIONS(1920), - [anon_sym_mut] = ACTIONS(1920), - [anon_sym_const] = ACTIONS(1920), - [aux_sym_cmd_identifier_token1] = ACTIONS(1920), - [aux_sym_cmd_identifier_token2] = ACTIONS(1920), - [aux_sym_cmd_identifier_token3] = ACTIONS(1920), - [aux_sym_cmd_identifier_token4] = ACTIONS(1920), - [aux_sym_cmd_identifier_token5] = ACTIONS(1920), - [aux_sym_cmd_identifier_token6] = ACTIONS(1920), - [aux_sym_cmd_identifier_token7] = ACTIONS(1920), - [aux_sym_cmd_identifier_token8] = ACTIONS(1920), - [aux_sym_cmd_identifier_token9] = ACTIONS(1920), - [aux_sym_cmd_identifier_token10] = ACTIONS(1920), - [aux_sym_cmd_identifier_token11] = ACTIONS(1920), - [aux_sym_cmd_identifier_token12] = ACTIONS(1920), - [aux_sym_cmd_identifier_token13] = ACTIONS(1920), - [aux_sym_cmd_identifier_token14] = ACTIONS(1920), - [aux_sym_cmd_identifier_token15] = ACTIONS(1920), - [aux_sym_cmd_identifier_token16] = ACTIONS(1920), - [aux_sym_cmd_identifier_token17] = ACTIONS(1920), - [aux_sym_cmd_identifier_token18] = ACTIONS(1920), - [aux_sym_cmd_identifier_token19] = ACTIONS(1920), - [aux_sym_cmd_identifier_token20] = ACTIONS(1920), - [aux_sym_cmd_identifier_token21] = ACTIONS(1920), - [aux_sym_cmd_identifier_token22] = ACTIONS(1920), - [aux_sym_cmd_identifier_token23] = ACTIONS(1920), - [aux_sym_cmd_identifier_token24] = ACTIONS(1922), - [aux_sym_cmd_identifier_token25] = ACTIONS(1920), - [aux_sym_cmd_identifier_token26] = ACTIONS(1922), - [aux_sym_cmd_identifier_token27] = ACTIONS(1920), - [aux_sym_cmd_identifier_token28] = ACTIONS(1920), - [aux_sym_cmd_identifier_token29] = ACTIONS(1920), - [aux_sym_cmd_identifier_token30] = ACTIONS(1920), - [aux_sym_cmd_identifier_token31] = ACTIONS(1922), - [aux_sym_cmd_identifier_token32] = ACTIONS(1922), - [aux_sym_cmd_identifier_token33] = ACTIONS(1922), - [aux_sym_cmd_identifier_token34] = ACTIONS(1922), - [aux_sym_cmd_identifier_token35] = ACTIONS(1922), - [aux_sym_cmd_identifier_token36] = ACTIONS(1920), - [anon_sym_true] = ACTIONS(1922), - [anon_sym_false] = ACTIONS(1922), - [anon_sym_null] = ACTIONS(1922), - [aux_sym_cmd_identifier_token38] = ACTIONS(1920), - [aux_sym_cmd_identifier_token39] = ACTIONS(1922), - [aux_sym_cmd_identifier_token40] = ACTIONS(1922), - [sym__newline] = ACTIONS(1922), - [anon_sym_SEMI] = ACTIONS(1922), - [anon_sym_def] = ACTIONS(1920), - [anon_sym_export_DASHenv] = ACTIONS(1920), - [anon_sym_extern] = ACTIONS(1920), - [anon_sym_module] = ACTIONS(1920), - [anon_sym_use] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(1922), - [anon_sym_LPAREN] = ACTIONS(1922), - [anon_sym_DOLLAR] = ACTIONS(1920), - [anon_sym_error] = ACTIONS(1920), - [anon_sym_DASH] = ACTIONS(1920), - [anon_sym_break] = ACTIONS(1920), - [anon_sym_continue] = ACTIONS(1920), - [anon_sym_for] = ACTIONS(1920), - [anon_sym_loop] = ACTIONS(1920), - [anon_sym_while] = ACTIONS(1920), - [anon_sym_do] = ACTIONS(1920), - [anon_sym_if] = ACTIONS(1920), - [anon_sym_match] = ACTIONS(1920), - [anon_sym_LBRACE] = ACTIONS(1922), - [anon_sym_DOT_DOT] = ACTIONS(1920), - [anon_sym_try] = ACTIONS(1920), - [anon_sym_return] = ACTIONS(1920), - [anon_sym_source] = ACTIONS(1920), - [anon_sym_source_DASHenv] = ACTIONS(1920), - [anon_sym_register] = ACTIONS(1920), - [anon_sym_hide] = ACTIONS(1920), - [anon_sym_hide_DASHenv] = ACTIONS(1920), - [anon_sym_overlay] = ACTIONS(1920), - [anon_sym_where] = ACTIONS(1922), - [aux_sym_expr_unary_token1] = ACTIONS(1922), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1922), - [anon_sym_DOT_DOT_LT] = ACTIONS(1922), - [aux_sym__val_number_decimal_token1] = ACTIONS(1920), - [aux_sym__val_number_decimal_token2] = ACTIONS(1922), - [aux_sym__val_number_decimal_token3] = ACTIONS(1922), - [aux_sym__val_number_decimal_token4] = ACTIONS(1922), - [aux_sym__val_number_token1] = ACTIONS(1922), - [aux_sym__val_number_token2] = ACTIONS(1922), - [aux_sym__val_number_token3] = ACTIONS(1922), - [anon_sym_0b] = ACTIONS(1920), - [anon_sym_0o] = ACTIONS(1920), - [anon_sym_0x] = ACTIONS(1920), - [sym_val_date] = ACTIONS(1922), - [anon_sym_DQUOTE] = ACTIONS(1922), - [sym__str_single_quotes] = ACTIONS(1922), - [sym__str_back_ticks] = ACTIONS(1922), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1922), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1922), - [aux_sym_env_var_token1] = ACTIONS(1920), - [anon_sym_CARET] = ACTIONS(1922), - [anon_sym_POUND] = ACTIONS(247), - }, - [349] = { - [sym_path] = STATE(456), - [sym_comment] = STATE(349), - [aux_sym_cell_path_repeat1] = STATE(350), - [anon_sym_export] = ACTIONS(1011), - [anon_sym_alias] = ACTIONS(1011), - [anon_sym_let] = ACTIONS(1011), - [anon_sym_let_DASHenv] = ACTIONS(1011), - [anon_sym_mut] = ACTIONS(1011), - [anon_sym_const] = ACTIONS(1011), - [aux_sym_cmd_identifier_token1] = ACTIONS(1011), - [aux_sym_cmd_identifier_token2] = ACTIONS(1011), - [aux_sym_cmd_identifier_token3] = ACTIONS(1011), - [aux_sym_cmd_identifier_token4] = ACTIONS(1011), - [aux_sym_cmd_identifier_token5] = ACTIONS(1011), - [aux_sym_cmd_identifier_token6] = ACTIONS(1011), - [aux_sym_cmd_identifier_token7] = ACTIONS(1011), - [aux_sym_cmd_identifier_token8] = ACTIONS(1011), - [aux_sym_cmd_identifier_token9] = ACTIONS(1011), - [aux_sym_cmd_identifier_token10] = ACTIONS(1011), - [aux_sym_cmd_identifier_token11] = ACTIONS(1011), - [aux_sym_cmd_identifier_token12] = ACTIONS(1011), - [aux_sym_cmd_identifier_token13] = ACTIONS(1011), - [aux_sym_cmd_identifier_token14] = ACTIONS(1011), - [aux_sym_cmd_identifier_token15] = ACTIONS(1011), - [aux_sym_cmd_identifier_token16] = ACTIONS(1011), - [aux_sym_cmd_identifier_token17] = ACTIONS(1011), - [aux_sym_cmd_identifier_token18] = ACTIONS(1011), - [aux_sym_cmd_identifier_token19] = ACTIONS(1011), - [aux_sym_cmd_identifier_token20] = ACTIONS(1011), - [aux_sym_cmd_identifier_token21] = ACTIONS(1011), - [aux_sym_cmd_identifier_token22] = ACTIONS(1011), - [aux_sym_cmd_identifier_token23] = ACTIONS(1011), - [aux_sym_cmd_identifier_token24] = ACTIONS(1011), - [aux_sym_cmd_identifier_token25] = ACTIONS(1011), - [aux_sym_cmd_identifier_token26] = ACTIONS(1011), - [aux_sym_cmd_identifier_token27] = ACTIONS(1011), - [aux_sym_cmd_identifier_token28] = ACTIONS(1011), - [aux_sym_cmd_identifier_token29] = ACTIONS(1011), - [aux_sym_cmd_identifier_token30] = ACTIONS(1011), - [aux_sym_cmd_identifier_token31] = ACTIONS(1011), - [aux_sym_cmd_identifier_token32] = ACTIONS(1011), - [aux_sym_cmd_identifier_token33] = ACTIONS(1011), - [aux_sym_cmd_identifier_token34] = ACTIONS(1011), - [aux_sym_cmd_identifier_token35] = ACTIONS(1011), - [aux_sym_cmd_identifier_token36] = ACTIONS(1011), - [anon_sym_true] = ACTIONS(1013), - [anon_sym_false] = ACTIONS(1013), - [anon_sym_null] = ACTIONS(1013), - [aux_sym_cmd_identifier_token38] = ACTIONS(1011), - [aux_sym_cmd_identifier_token39] = ACTIONS(1013), - [aux_sym_cmd_identifier_token40] = ACTIONS(1013), - [anon_sym_def] = ACTIONS(1011), - [anon_sym_export_DASHenv] = ACTIONS(1011), - [anon_sym_extern] = ACTIONS(1011), - [anon_sym_module] = ACTIONS(1011), - [anon_sym_use] = ACTIONS(1011), - [anon_sym_LPAREN] = ACTIONS(1013), - [anon_sym_COMMA] = ACTIONS(1013), - [anon_sym_DOLLAR] = ACTIONS(1013), - [anon_sym_error] = ACTIONS(1011), - [anon_sym_list] = ACTIONS(1011), - [anon_sym_DASH] = ACTIONS(1011), - [anon_sym_break] = ACTIONS(1011), - [anon_sym_continue] = ACTIONS(1011), - [anon_sym_for] = ACTIONS(1011), - [anon_sym_in] = ACTIONS(1011), - [anon_sym_loop] = ACTIONS(1011), - [anon_sym_make] = ACTIONS(1011), - [anon_sym_while] = ACTIONS(1011), - [anon_sym_do] = ACTIONS(1011), - [anon_sym_if] = ACTIONS(1011), - [anon_sym_else] = ACTIONS(1011), - [anon_sym_match] = ACTIONS(1011), - [anon_sym_RBRACE] = ACTIONS(1013), - [anon_sym_try] = ACTIONS(1011), - [anon_sym_catch] = ACTIONS(1011), - [anon_sym_return] = ACTIONS(1011), - [anon_sym_source] = ACTIONS(1011), - [anon_sym_source_DASHenv] = ACTIONS(1011), - [anon_sym_register] = ACTIONS(1011), - [anon_sym_hide] = ACTIONS(1011), - [anon_sym_hide_DASHenv] = ACTIONS(1011), - [anon_sym_overlay] = ACTIONS(1011), - [anon_sym_new] = ACTIONS(1011), - [anon_sym_as] = ACTIONS(1011), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1013), - [anon_sym_DOT] = ACTIONS(1807), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1013), - [aux_sym__val_number_decimal_token1] = ACTIONS(1011), - [aux_sym__val_number_decimal_token2] = ACTIONS(1013), - [aux_sym__val_number_decimal_token3] = ACTIONS(1013), - [aux_sym__val_number_decimal_token4] = ACTIONS(1013), - [aux_sym__val_number_token1] = ACTIONS(1013), - [aux_sym__val_number_token2] = ACTIONS(1013), - [aux_sym__val_number_token3] = ACTIONS(1013), - [anon_sym_DQUOTE] = ACTIONS(1013), - [sym__str_single_quotes] = ACTIONS(1013), - [sym__str_back_ticks] = ACTIONS(1013), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1013), - [aux_sym_record_entry_token1] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(1011), - [anon_sym_POUND] = ACTIONS(247), - }, - [350] = { - [sym_path] = STATE(456), - [sym_comment] = STATE(350), - [aux_sym_cell_path_repeat1] = STATE(350), - [anon_sym_export] = ACTIONS(1015), - [anon_sym_alias] = ACTIONS(1015), - [anon_sym_let] = ACTIONS(1015), - [anon_sym_let_DASHenv] = ACTIONS(1015), - [anon_sym_mut] = ACTIONS(1015), - [anon_sym_const] = ACTIONS(1015), - [aux_sym_cmd_identifier_token1] = ACTIONS(1015), - [aux_sym_cmd_identifier_token2] = ACTIONS(1015), - [aux_sym_cmd_identifier_token3] = ACTIONS(1015), - [aux_sym_cmd_identifier_token4] = ACTIONS(1015), - [aux_sym_cmd_identifier_token5] = ACTIONS(1015), - [aux_sym_cmd_identifier_token6] = ACTIONS(1015), - [aux_sym_cmd_identifier_token7] = ACTIONS(1015), - [aux_sym_cmd_identifier_token8] = ACTIONS(1015), - [aux_sym_cmd_identifier_token9] = ACTIONS(1015), - [aux_sym_cmd_identifier_token10] = ACTIONS(1015), - [aux_sym_cmd_identifier_token11] = ACTIONS(1015), - [aux_sym_cmd_identifier_token12] = ACTIONS(1015), - [aux_sym_cmd_identifier_token13] = ACTIONS(1015), - [aux_sym_cmd_identifier_token14] = ACTIONS(1015), - [aux_sym_cmd_identifier_token15] = ACTIONS(1015), - [aux_sym_cmd_identifier_token16] = ACTIONS(1015), - [aux_sym_cmd_identifier_token17] = ACTIONS(1015), - [aux_sym_cmd_identifier_token18] = ACTIONS(1015), - [aux_sym_cmd_identifier_token19] = ACTIONS(1015), - [aux_sym_cmd_identifier_token20] = ACTIONS(1015), - [aux_sym_cmd_identifier_token21] = ACTIONS(1015), - [aux_sym_cmd_identifier_token22] = ACTIONS(1015), - [aux_sym_cmd_identifier_token23] = ACTIONS(1015), - [aux_sym_cmd_identifier_token24] = ACTIONS(1015), - [aux_sym_cmd_identifier_token25] = ACTIONS(1015), - [aux_sym_cmd_identifier_token26] = ACTIONS(1015), - [aux_sym_cmd_identifier_token27] = ACTIONS(1015), - [aux_sym_cmd_identifier_token28] = ACTIONS(1015), - [aux_sym_cmd_identifier_token29] = ACTIONS(1015), - [aux_sym_cmd_identifier_token30] = ACTIONS(1015), - [aux_sym_cmd_identifier_token31] = ACTIONS(1015), - [aux_sym_cmd_identifier_token32] = ACTIONS(1015), - [aux_sym_cmd_identifier_token33] = ACTIONS(1015), - [aux_sym_cmd_identifier_token34] = ACTIONS(1015), - [aux_sym_cmd_identifier_token35] = ACTIONS(1015), - [aux_sym_cmd_identifier_token36] = ACTIONS(1015), - [anon_sym_true] = ACTIONS(1017), - [anon_sym_false] = ACTIONS(1017), - [anon_sym_null] = ACTIONS(1017), - [aux_sym_cmd_identifier_token38] = ACTIONS(1015), - [aux_sym_cmd_identifier_token39] = ACTIONS(1017), - [aux_sym_cmd_identifier_token40] = ACTIONS(1017), - [anon_sym_def] = ACTIONS(1015), - [anon_sym_export_DASHenv] = ACTIONS(1015), - [anon_sym_extern] = ACTIONS(1015), - [anon_sym_module] = ACTIONS(1015), - [anon_sym_use] = ACTIONS(1015), - [anon_sym_LPAREN] = ACTIONS(1017), - [anon_sym_COMMA] = ACTIONS(1017), - [anon_sym_DOLLAR] = ACTIONS(1017), - [anon_sym_error] = ACTIONS(1015), - [anon_sym_list] = ACTIONS(1015), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_break] = ACTIONS(1015), - [anon_sym_continue] = ACTIONS(1015), - [anon_sym_for] = ACTIONS(1015), - [anon_sym_in] = ACTIONS(1015), - [anon_sym_loop] = ACTIONS(1015), - [anon_sym_make] = ACTIONS(1015), - [anon_sym_while] = ACTIONS(1015), - [anon_sym_do] = ACTIONS(1015), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_else] = ACTIONS(1015), - [anon_sym_match] = ACTIONS(1015), - [anon_sym_RBRACE] = ACTIONS(1017), - [anon_sym_try] = ACTIONS(1015), - [anon_sym_catch] = ACTIONS(1015), - [anon_sym_return] = ACTIONS(1015), - [anon_sym_source] = ACTIONS(1015), - [anon_sym_source_DASHenv] = ACTIONS(1015), - [anon_sym_register] = ACTIONS(1015), - [anon_sym_hide] = ACTIONS(1015), - [anon_sym_hide_DASHenv] = ACTIONS(1015), - [anon_sym_overlay] = ACTIONS(1015), - [anon_sym_new] = ACTIONS(1015), - [anon_sym_as] = ACTIONS(1015), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1017), - [anon_sym_DOT] = ACTIONS(1924), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1017), - [aux_sym__val_number_decimal_token1] = ACTIONS(1015), - [aux_sym__val_number_decimal_token2] = ACTIONS(1017), - [aux_sym__val_number_decimal_token3] = ACTIONS(1017), - [aux_sym__val_number_decimal_token4] = ACTIONS(1017), - [aux_sym__val_number_token1] = ACTIONS(1017), - [aux_sym__val_number_token2] = ACTIONS(1017), - [aux_sym__val_number_token3] = ACTIONS(1017), - [anon_sym_DQUOTE] = ACTIONS(1017), - [sym__str_single_quotes] = ACTIONS(1017), - [sym__str_back_ticks] = ACTIONS(1017), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1017), - [aux_sym_record_entry_token1] = ACTIONS(1017), - [anon_sym_PLUS] = ACTIONS(1015), - [anon_sym_POUND] = ACTIONS(247), - }, - [351] = { - [sym_comment] = STATE(351), - [anon_sym_export] = ACTIONS(1042), - [anon_sym_alias] = ACTIONS(1042), - [anon_sym_let] = ACTIONS(1042), - [anon_sym_let_DASHenv] = ACTIONS(1042), - [anon_sym_mut] = ACTIONS(1042), - [anon_sym_const] = ACTIONS(1042), - [aux_sym_cmd_identifier_token1] = ACTIONS(1042), - [aux_sym_cmd_identifier_token2] = ACTIONS(1042), - [aux_sym_cmd_identifier_token3] = ACTIONS(1042), - [aux_sym_cmd_identifier_token4] = ACTIONS(1042), - [aux_sym_cmd_identifier_token5] = ACTIONS(1042), - [aux_sym_cmd_identifier_token6] = ACTIONS(1042), - [aux_sym_cmd_identifier_token7] = ACTIONS(1042), - [aux_sym_cmd_identifier_token8] = ACTIONS(1042), - [aux_sym_cmd_identifier_token9] = ACTIONS(1042), - [aux_sym_cmd_identifier_token10] = ACTIONS(1042), - [aux_sym_cmd_identifier_token11] = ACTIONS(1042), - [aux_sym_cmd_identifier_token12] = ACTIONS(1042), - [aux_sym_cmd_identifier_token13] = ACTIONS(1042), - [aux_sym_cmd_identifier_token14] = ACTIONS(1042), - [aux_sym_cmd_identifier_token15] = ACTIONS(1042), - [aux_sym_cmd_identifier_token16] = ACTIONS(1042), - [aux_sym_cmd_identifier_token17] = ACTIONS(1042), - [aux_sym_cmd_identifier_token18] = ACTIONS(1042), - [aux_sym_cmd_identifier_token19] = ACTIONS(1042), - [aux_sym_cmd_identifier_token20] = ACTIONS(1042), - [aux_sym_cmd_identifier_token21] = ACTIONS(1042), - [aux_sym_cmd_identifier_token22] = ACTIONS(1042), - [aux_sym_cmd_identifier_token23] = ACTIONS(1042), - [aux_sym_cmd_identifier_token24] = ACTIONS(1042), - [aux_sym_cmd_identifier_token25] = ACTIONS(1042), - [aux_sym_cmd_identifier_token26] = ACTIONS(1042), - [aux_sym_cmd_identifier_token27] = ACTIONS(1042), - [aux_sym_cmd_identifier_token28] = ACTIONS(1042), - [aux_sym_cmd_identifier_token29] = ACTIONS(1042), - [aux_sym_cmd_identifier_token30] = ACTIONS(1042), - [aux_sym_cmd_identifier_token31] = ACTIONS(1042), - [aux_sym_cmd_identifier_token32] = ACTIONS(1042), - [aux_sym_cmd_identifier_token33] = ACTIONS(1042), - [aux_sym_cmd_identifier_token34] = ACTIONS(1042), - [aux_sym_cmd_identifier_token35] = ACTIONS(1042), - [aux_sym_cmd_identifier_token36] = ACTIONS(1042), - [anon_sym_true] = ACTIONS(1044), - [anon_sym_false] = ACTIONS(1044), - [anon_sym_null] = ACTIONS(1044), - [aux_sym_cmd_identifier_token38] = ACTIONS(1042), - [aux_sym_cmd_identifier_token39] = ACTIONS(1044), - [aux_sym_cmd_identifier_token40] = ACTIONS(1044), - [anon_sym_def] = ACTIONS(1042), - [anon_sym_export_DASHenv] = ACTIONS(1042), - [anon_sym_extern] = ACTIONS(1042), - [anon_sym_module] = ACTIONS(1042), - [anon_sym_use] = ACTIONS(1042), - [anon_sym_LPAREN] = ACTIONS(1044), - [anon_sym_DOLLAR] = ACTIONS(1044), - [anon_sym_error] = ACTIONS(1042), - [anon_sym_list] = ACTIONS(1042), - [anon_sym_DASH] = ACTIONS(1042), - [anon_sym_break] = ACTIONS(1042), - [anon_sym_continue] = ACTIONS(1042), - [anon_sym_for] = ACTIONS(1042), - [anon_sym_in] = ACTIONS(1042), - [anon_sym_loop] = ACTIONS(1042), - [anon_sym_make] = ACTIONS(1042), - [anon_sym_while] = ACTIONS(1042), - [anon_sym_do] = ACTIONS(1042), - [anon_sym_if] = ACTIONS(1042), - [anon_sym_else] = ACTIONS(1042), - [anon_sym_match] = ACTIONS(1042), - [anon_sym_RBRACE] = ACTIONS(1044), - [anon_sym_try] = ACTIONS(1042), - [anon_sym_catch] = ACTIONS(1042), - [anon_sym_return] = ACTIONS(1042), - [anon_sym_source] = ACTIONS(1042), - [anon_sym_source_DASHenv] = ACTIONS(1042), - [anon_sym_register] = ACTIONS(1042), - [anon_sym_hide] = ACTIONS(1042), - [anon_sym_hide_DASHenv] = ACTIONS(1042), - [anon_sym_overlay] = ACTIONS(1042), - [anon_sym_new] = ACTIONS(1042), - [anon_sym_as] = ACTIONS(1042), - [anon_sym_QMARK2] = ACTIONS(1044), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1044), - [anon_sym_DOT_DOT2] = ACTIONS(1042), - [anon_sym_DOT] = ACTIONS(1042), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1044), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1044), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1044), - [aux_sym__val_number_decimal_token1] = ACTIONS(1042), - [aux_sym__val_number_decimal_token2] = ACTIONS(1044), - [aux_sym__val_number_decimal_token3] = ACTIONS(1044), - [aux_sym__val_number_decimal_token4] = ACTIONS(1044), - [aux_sym__val_number_token1] = ACTIONS(1044), - [aux_sym__val_number_token2] = ACTIONS(1044), - [aux_sym__val_number_token3] = ACTIONS(1044), - [anon_sym_DQUOTE] = ACTIONS(1044), - [sym__str_single_quotes] = ACTIONS(1044), - [sym__str_back_ticks] = ACTIONS(1044), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1044), - [anon_sym_PLUS] = ACTIONS(1042), - [anon_sym_POUND] = ACTIONS(247), - }, - [352] = { - [sym_cell_path] = STATE(617), - [sym_path] = STATE(527), - [sym_comment] = STATE(352), - [aux_sym_cell_path_repeat1] = STATE(425), - [anon_sym_export] = ACTIONS(1927), - [anon_sym_alias] = ACTIONS(1927), - [anon_sym_let] = ACTIONS(1927), - [anon_sym_let_DASHenv] = ACTIONS(1927), - [anon_sym_mut] = ACTIONS(1927), - [anon_sym_const] = ACTIONS(1927), - [aux_sym_cmd_identifier_token1] = ACTIONS(1927), - [aux_sym_cmd_identifier_token2] = ACTIONS(1927), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), - [aux_sym_cmd_identifier_token6] = ACTIONS(1927), - [aux_sym_cmd_identifier_token7] = ACTIONS(1927), - [aux_sym_cmd_identifier_token8] = ACTIONS(1927), - [aux_sym_cmd_identifier_token9] = ACTIONS(1927), - [aux_sym_cmd_identifier_token10] = ACTIONS(1927), - [aux_sym_cmd_identifier_token11] = ACTIONS(1927), - [aux_sym_cmd_identifier_token12] = ACTIONS(1927), - [aux_sym_cmd_identifier_token13] = ACTIONS(1927), - [aux_sym_cmd_identifier_token14] = ACTIONS(1927), - [aux_sym_cmd_identifier_token15] = ACTIONS(1927), - [aux_sym_cmd_identifier_token16] = ACTIONS(1927), - [aux_sym_cmd_identifier_token17] = ACTIONS(1927), - [aux_sym_cmd_identifier_token18] = ACTIONS(1927), - [aux_sym_cmd_identifier_token19] = ACTIONS(1927), - [aux_sym_cmd_identifier_token20] = ACTIONS(1927), - [aux_sym_cmd_identifier_token21] = ACTIONS(1927), - [aux_sym_cmd_identifier_token22] = ACTIONS(1927), - [aux_sym_cmd_identifier_token23] = ACTIONS(1927), - [aux_sym_cmd_identifier_token24] = ACTIONS(1927), - [aux_sym_cmd_identifier_token25] = ACTIONS(1927), - [aux_sym_cmd_identifier_token26] = ACTIONS(1927), - [aux_sym_cmd_identifier_token27] = ACTIONS(1927), - [aux_sym_cmd_identifier_token28] = ACTIONS(1927), - [aux_sym_cmd_identifier_token29] = ACTIONS(1927), - [aux_sym_cmd_identifier_token30] = ACTIONS(1927), - [aux_sym_cmd_identifier_token31] = ACTIONS(1927), - [aux_sym_cmd_identifier_token32] = ACTIONS(1927), - [aux_sym_cmd_identifier_token33] = ACTIONS(1927), - [aux_sym_cmd_identifier_token34] = ACTIONS(1927), - [aux_sym_cmd_identifier_token35] = ACTIONS(1927), - [aux_sym_cmd_identifier_token36] = ACTIONS(1927), - [anon_sym_true] = ACTIONS(1927), - [anon_sym_false] = ACTIONS(1927), - [anon_sym_null] = ACTIONS(1927), - [aux_sym_cmd_identifier_token38] = ACTIONS(1927), - [aux_sym_cmd_identifier_token39] = ACTIONS(1927), - [aux_sym_cmd_identifier_token40] = ACTIONS(1927), - [anon_sym_def] = ACTIONS(1927), - [anon_sym_export_DASHenv] = ACTIONS(1927), - [anon_sym_extern] = ACTIONS(1927), - [anon_sym_module] = ACTIONS(1927), - [anon_sym_use] = ACTIONS(1927), - [anon_sym_LPAREN] = ACTIONS(1927), - [anon_sym_DOLLAR] = ACTIONS(1927), - [anon_sym_error] = ACTIONS(1927), - [anon_sym_list] = ACTIONS(1927), - [anon_sym_DASH] = ACTIONS(1927), - [anon_sym_break] = ACTIONS(1927), - [anon_sym_continue] = ACTIONS(1927), - [anon_sym_for] = ACTIONS(1927), - [anon_sym_in] = ACTIONS(1927), - [anon_sym_loop] = ACTIONS(1927), - [anon_sym_make] = ACTIONS(1927), - [anon_sym_while] = ACTIONS(1927), - [anon_sym_do] = ACTIONS(1927), - [anon_sym_if] = ACTIONS(1927), - [anon_sym_else] = ACTIONS(1927), - [anon_sym_match] = ACTIONS(1927), - [anon_sym_RBRACE] = ACTIONS(1927), - [anon_sym_try] = ACTIONS(1927), - [anon_sym_catch] = ACTIONS(1927), - [anon_sym_return] = ACTIONS(1927), - [anon_sym_source] = ACTIONS(1927), - [anon_sym_source_DASHenv] = ACTIONS(1927), - [anon_sym_register] = ACTIONS(1927), - [anon_sym_hide] = ACTIONS(1927), - [anon_sym_hide_DASHenv] = ACTIONS(1927), - [anon_sym_overlay] = ACTIONS(1927), - [anon_sym_new] = ACTIONS(1927), - [anon_sym_as] = ACTIONS(1927), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1927), - [anon_sym_DOT] = ACTIONS(1824), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1927), - [aux_sym__val_number_decimal_token1] = ACTIONS(1927), - [aux_sym__val_number_decimal_token2] = ACTIONS(1927), - [aux_sym__val_number_decimal_token3] = ACTIONS(1927), - [aux_sym__val_number_decimal_token4] = ACTIONS(1927), - [aux_sym__val_number_token1] = ACTIONS(1927), - [aux_sym__val_number_token2] = ACTIONS(1927), - [aux_sym__val_number_token3] = ACTIONS(1927), - [anon_sym_DQUOTE] = ACTIONS(1927), - [sym__str_single_quotes] = ACTIONS(1927), - [sym__str_back_ticks] = ACTIONS(1927), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1927), - [sym__entry_separator] = ACTIONS(1929), - [anon_sym_PLUS] = ACTIONS(1927), - [anon_sym_POUND] = ACTIONS(3), - }, - [353] = { - [sym_comment] = STATE(353), + [317] = { + [sym_comment] = STATE(317), [anon_sym_export] = ACTIONS(1038), [anon_sym_alias] = ACTIONS(1038), [anon_sym_let] = ACTIONS(1038), @@ -116522,19 +114080,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(1038), [aux_sym_cmd_identifier_token35] = ACTIONS(1038), [aux_sym_cmd_identifier_token36] = ACTIONS(1038), - [anon_sym_true] = ACTIONS(1040), - [anon_sym_false] = ACTIONS(1040), - [anon_sym_null] = ACTIONS(1040), + [anon_sym_true] = ACTIONS(1038), + [anon_sym_false] = ACTIONS(1038), + [anon_sym_null] = ACTIONS(1038), [aux_sym_cmd_identifier_token38] = ACTIONS(1038), - [aux_sym_cmd_identifier_token39] = ACTIONS(1040), - [aux_sym_cmd_identifier_token40] = ACTIONS(1040), + [aux_sym_cmd_identifier_token39] = ACTIONS(1038), + [aux_sym_cmd_identifier_token40] = ACTIONS(1038), [anon_sym_def] = ACTIONS(1038), [anon_sym_export_DASHenv] = ACTIONS(1038), [anon_sym_extern] = ACTIONS(1038), [anon_sym_module] = ACTIONS(1038), [anon_sym_use] = ACTIONS(1038), - [anon_sym_LPAREN] = ACTIONS(1040), - [anon_sym_DOLLAR] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1038), + [anon_sym_DOLLAR] = ACTIONS(1038), [anon_sym_error] = ACTIONS(1038), [anon_sym_list] = ACTIONS(1038), [anon_sym_DASH] = ACTIONS(1038), @@ -116549,7 +114107,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1038), [anon_sym_else] = ACTIONS(1038), [anon_sym_match] = ACTIONS(1038), - [anon_sym_RBRACE] = ACTIONS(1040), + [anon_sym_RBRACE] = ACTIONS(1038), [anon_sym_try] = ACTIONS(1038), [anon_sym_catch] = ACTIONS(1038), [anon_sym_return] = ACTIONS(1038), @@ -116561,1693 +114119,1194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(1038), [anon_sym_new] = ACTIONS(1038), [anon_sym_as] = ACTIONS(1038), - [anon_sym_QMARK2] = ACTIONS(1040), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1040), + [anon_sym_QMARK2] = ACTIONS(1038), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1038), [anon_sym_DOT_DOT2] = ACTIONS(1038), [anon_sym_DOT] = ACTIONS(1038), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1040), [anon_sym_DOT_DOT_LT2] = ACTIONS(1040), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1038), [aux_sym__val_number_decimal_token1] = ACTIONS(1038), - [aux_sym__val_number_decimal_token2] = ACTIONS(1040), - [aux_sym__val_number_decimal_token3] = ACTIONS(1040), - [aux_sym__val_number_decimal_token4] = ACTIONS(1040), - [aux_sym__val_number_token1] = ACTIONS(1040), - [aux_sym__val_number_token2] = ACTIONS(1040), - [aux_sym__val_number_token3] = ACTIONS(1040), - [anon_sym_DQUOTE] = ACTIONS(1040), - [sym__str_single_quotes] = ACTIONS(1040), - [sym__str_back_ticks] = ACTIONS(1040), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1040), + [aux_sym__val_number_decimal_token2] = ACTIONS(1038), + [aux_sym__val_number_decimal_token3] = ACTIONS(1038), + [aux_sym__val_number_decimal_token4] = ACTIONS(1038), + [aux_sym__val_number_token1] = ACTIONS(1038), + [aux_sym__val_number_token2] = ACTIONS(1038), + [aux_sym__val_number_token3] = ACTIONS(1038), + [anon_sym_DQUOTE] = ACTIONS(1038), + [sym__str_single_quotes] = ACTIONS(1038), + [sym__str_back_ticks] = ACTIONS(1038), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1038), + [sym__entry_separator] = ACTIONS(1040), [anon_sym_PLUS] = ACTIONS(1038), - [anon_sym_POUND] = ACTIONS(247), - }, - [354] = { - [sym_comment] = STATE(354), - [anon_sym_export] = ACTIONS(1034), - [anon_sym_alias] = ACTIONS(1034), - [anon_sym_let] = ACTIONS(1034), - [anon_sym_let_DASHenv] = ACTIONS(1034), - [anon_sym_mut] = ACTIONS(1034), - [anon_sym_const] = ACTIONS(1034), - [aux_sym_cmd_identifier_token1] = ACTIONS(1034), - [aux_sym_cmd_identifier_token2] = ACTIONS(1034), - [aux_sym_cmd_identifier_token3] = ACTIONS(1034), - [aux_sym_cmd_identifier_token4] = ACTIONS(1034), - [aux_sym_cmd_identifier_token5] = ACTIONS(1034), - [aux_sym_cmd_identifier_token6] = ACTIONS(1034), - [aux_sym_cmd_identifier_token7] = ACTIONS(1034), - [aux_sym_cmd_identifier_token8] = ACTIONS(1034), - [aux_sym_cmd_identifier_token9] = ACTIONS(1034), - [aux_sym_cmd_identifier_token10] = ACTIONS(1034), - [aux_sym_cmd_identifier_token11] = ACTIONS(1034), - [aux_sym_cmd_identifier_token12] = ACTIONS(1034), - [aux_sym_cmd_identifier_token13] = ACTIONS(1034), - [aux_sym_cmd_identifier_token14] = ACTIONS(1034), - [aux_sym_cmd_identifier_token15] = ACTIONS(1034), - [aux_sym_cmd_identifier_token16] = ACTIONS(1034), - [aux_sym_cmd_identifier_token17] = ACTIONS(1034), - [aux_sym_cmd_identifier_token18] = ACTIONS(1034), - [aux_sym_cmd_identifier_token19] = ACTIONS(1034), - [aux_sym_cmd_identifier_token20] = ACTIONS(1034), - [aux_sym_cmd_identifier_token21] = ACTIONS(1034), - [aux_sym_cmd_identifier_token22] = ACTIONS(1034), - [aux_sym_cmd_identifier_token23] = ACTIONS(1034), - [aux_sym_cmd_identifier_token24] = ACTIONS(1034), - [aux_sym_cmd_identifier_token25] = ACTIONS(1034), - [aux_sym_cmd_identifier_token26] = ACTIONS(1034), - [aux_sym_cmd_identifier_token27] = ACTIONS(1034), - [aux_sym_cmd_identifier_token28] = ACTIONS(1034), - [aux_sym_cmd_identifier_token29] = ACTIONS(1034), - [aux_sym_cmd_identifier_token30] = ACTIONS(1034), - [aux_sym_cmd_identifier_token31] = ACTIONS(1034), - [aux_sym_cmd_identifier_token32] = ACTIONS(1034), - [aux_sym_cmd_identifier_token33] = ACTIONS(1034), - [aux_sym_cmd_identifier_token34] = ACTIONS(1034), - [aux_sym_cmd_identifier_token35] = ACTIONS(1034), - [aux_sym_cmd_identifier_token36] = ACTIONS(1034), - [anon_sym_true] = ACTIONS(1036), - [anon_sym_false] = ACTIONS(1036), - [anon_sym_null] = ACTIONS(1036), - [aux_sym_cmd_identifier_token38] = ACTIONS(1034), - [aux_sym_cmd_identifier_token39] = ACTIONS(1036), - [aux_sym_cmd_identifier_token40] = ACTIONS(1036), - [anon_sym_def] = ACTIONS(1034), - [anon_sym_export_DASHenv] = ACTIONS(1034), - [anon_sym_extern] = ACTIONS(1034), - [anon_sym_module] = ACTIONS(1034), - [anon_sym_use] = ACTIONS(1034), - [anon_sym_LPAREN] = ACTIONS(1036), - [anon_sym_DOLLAR] = ACTIONS(1036), - [anon_sym_error] = ACTIONS(1034), - [anon_sym_list] = ACTIONS(1034), - [anon_sym_DASH] = ACTIONS(1034), - [anon_sym_break] = ACTIONS(1034), - [anon_sym_continue] = ACTIONS(1034), - [anon_sym_for] = ACTIONS(1034), - [anon_sym_in] = ACTIONS(1034), - [anon_sym_loop] = ACTIONS(1034), - [anon_sym_make] = ACTIONS(1034), - [anon_sym_while] = ACTIONS(1034), - [anon_sym_do] = ACTIONS(1034), - [anon_sym_if] = ACTIONS(1034), - [anon_sym_else] = ACTIONS(1034), - [anon_sym_match] = ACTIONS(1034), - [anon_sym_RBRACE] = ACTIONS(1036), - [anon_sym_try] = ACTIONS(1034), - [anon_sym_catch] = ACTIONS(1034), - [anon_sym_return] = ACTIONS(1034), - [anon_sym_source] = ACTIONS(1034), - [anon_sym_source_DASHenv] = ACTIONS(1034), - [anon_sym_register] = ACTIONS(1034), - [anon_sym_hide] = ACTIONS(1034), - [anon_sym_hide_DASHenv] = ACTIONS(1034), - [anon_sym_overlay] = ACTIONS(1034), - [anon_sym_new] = ACTIONS(1034), - [anon_sym_as] = ACTIONS(1034), - [anon_sym_QMARK2] = ACTIONS(1036), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1036), - [anon_sym_DOT_DOT2] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(1034), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1036), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1036), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1036), - [aux_sym__val_number_decimal_token1] = ACTIONS(1034), - [aux_sym__val_number_decimal_token2] = ACTIONS(1036), - [aux_sym__val_number_decimal_token3] = ACTIONS(1036), - [aux_sym__val_number_decimal_token4] = ACTIONS(1036), - [aux_sym__val_number_token1] = ACTIONS(1036), - [aux_sym__val_number_token2] = ACTIONS(1036), - [aux_sym__val_number_token3] = ACTIONS(1036), - [anon_sym_DQUOTE] = ACTIONS(1036), - [sym__str_single_quotes] = ACTIONS(1036), - [sym__str_back_ticks] = ACTIONS(1036), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1036), - [anon_sym_PLUS] = ACTIONS(1034), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1040), }, - [355] = { - [sym_comment] = STATE(355), - [anon_sym_export] = ACTIONS(1738), - [anon_sym_alias] = ACTIONS(1738), - [anon_sym_let] = ACTIONS(1738), - [anon_sym_let_DASHenv] = ACTIONS(1738), - [anon_sym_mut] = ACTIONS(1738), - [anon_sym_const] = ACTIONS(1738), - [aux_sym_cmd_identifier_token1] = ACTIONS(1738), - [aux_sym_cmd_identifier_token2] = ACTIONS(1738), - [aux_sym_cmd_identifier_token3] = ACTIONS(1738), - [aux_sym_cmd_identifier_token4] = ACTIONS(1738), - [aux_sym_cmd_identifier_token5] = ACTIONS(1738), - [aux_sym_cmd_identifier_token6] = ACTIONS(1738), - [aux_sym_cmd_identifier_token7] = ACTIONS(1738), - [aux_sym_cmd_identifier_token8] = ACTIONS(1738), - [aux_sym_cmd_identifier_token9] = ACTIONS(1738), - [aux_sym_cmd_identifier_token10] = ACTIONS(1738), - [aux_sym_cmd_identifier_token11] = ACTIONS(1738), - [aux_sym_cmd_identifier_token12] = ACTIONS(1738), - [aux_sym_cmd_identifier_token13] = ACTIONS(1738), - [aux_sym_cmd_identifier_token14] = ACTIONS(1738), - [aux_sym_cmd_identifier_token15] = ACTIONS(1738), - [aux_sym_cmd_identifier_token16] = ACTIONS(1738), - [aux_sym_cmd_identifier_token17] = ACTIONS(1738), - [aux_sym_cmd_identifier_token18] = ACTIONS(1738), - [aux_sym_cmd_identifier_token19] = ACTIONS(1738), - [aux_sym_cmd_identifier_token20] = ACTIONS(1738), - [aux_sym_cmd_identifier_token21] = ACTIONS(1738), - [aux_sym_cmd_identifier_token22] = ACTIONS(1738), - [aux_sym_cmd_identifier_token23] = ACTIONS(1738), - [aux_sym_cmd_identifier_token24] = ACTIONS(1738), - [aux_sym_cmd_identifier_token25] = ACTIONS(1738), - [aux_sym_cmd_identifier_token26] = ACTIONS(1738), - [aux_sym_cmd_identifier_token27] = ACTIONS(1738), - [aux_sym_cmd_identifier_token28] = ACTIONS(1738), - [aux_sym_cmd_identifier_token29] = ACTIONS(1738), - [aux_sym_cmd_identifier_token30] = ACTIONS(1738), - [aux_sym_cmd_identifier_token31] = ACTIONS(1738), - [aux_sym_cmd_identifier_token32] = ACTIONS(1738), - [aux_sym_cmd_identifier_token33] = ACTIONS(1738), - [aux_sym_cmd_identifier_token34] = ACTIONS(1738), - [aux_sym_cmd_identifier_token35] = ACTIONS(1738), - [aux_sym_cmd_identifier_token36] = ACTIONS(1738), - [anon_sym_true] = ACTIONS(1740), - [anon_sym_false] = ACTIONS(1740), - [anon_sym_null] = ACTIONS(1740), - [aux_sym_cmd_identifier_token38] = ACTIONS(1738), - [aux_sym_cmd_identifier_token39] = ACTIONS(1740), - [aux_sym_cmd_identifier_token40] = ACTIONS(1740), - [anon_sym_def] = ACTIONS(1738), - [anon_sym_export_DASHenv] = ACTIONS(1738), - [anon_sym_extern] = ACTIONS(1738), - [anon_sym_module] = ACTIONS(1738), - [anon_sym_use] = ACTIONS(1738), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_DOLLAR] = ACTIONS(1740), - [anon_sym_error] = ACTIONS(1738), - [anon_sym_list] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_break] = ACTIONS(1738), - [anon_sym_continue] = ACTIONS(1738), - [anon_sym_for] = ACTIONS(1738), - [anon_sym_in] = ACTIONS(1738), - [anon_sym_loop] = ACTIONS(1738), - [anon_sym_make] = ACTIONS(1738), - [anon_sym_while] = ACTIONS(1738), - [anon_sym_do] = ACTIONS(1738), - [anon_sym_if] = ACTIONS(1738), - [anon_sym_else] = ACTIONS(1738), - [anon_sym_match] = ACTIONS(1738), - [anon_sym_RBRACE] = ACTIONS(1740), - [anon_sym_try] = ACTIONS(1738), - [anon_sym_catch] = ACTIONS(1738), - [anon_sym_return] = ACTIONS(1738), - [anon_sym_source] = ACTIONS(1738), - [anon_sym_source_DASHenv] = ACTIONS(1738), - [anon_sym_register] = ACTIONS(1738), - [anon_sym_hide] = ACTIONS(1738), - [anon_sym_hide_DASHenv] = ACTIONS(1738), - [anon_sym_overlay] = ACTIONS(1738), - [anon_sym_new] = ACTIONS(1738), - [anon_sym_as] = ACTIONS(1738), - [anon_sym_LPAREN2] = ACTIONS(1740), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1740), - [anon_sym_DOT_DOT2] = ACTIONS(1738), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1740), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1740), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1740), - [aux_sym__val_number_decimal_token1] = ACTIONS(1738), - [aux_sym__val_number_decimal_token2] = ACTIONS(1740), - [aux_sym__val_number_decimal_token3] = ACTIONS(1740), - [aux_sym__val_number_decimal_token4] = ACTIONS(1740), - [aux_sym__val_number_token1] = ACTIONS(1740), - [aux_sym__val_number_token2] = ACTIONS(1740), - [aux_sym__val_number_token3] = ACTIONS(1740), - [anon_sym_DQUOTE] = ACTIONS(1740), - [sym__str_single_quotes] = ACTIONS(1740), - [sym__str_back_ticks] = ACTIONS(1740), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1738), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1738), - [anon_sym_POUND] = ACTIONS(247), + [318] = { + [sym_comment] = STATE(318), + [anon_sym_export] = ACTIONS(1364), + [anon_sym_alias] = ACTIONS(1364), + [anon_sym_let] = ACTIONS(1364), + [anon_sym_let_DASHenv] = ACTIONS(1364), + [anon_sym_mut] = ACTIONS(1364), + [anon_sym_const] = ACTIONS(1364), + [aux_sym_cmd_identifier_token1] = ACTIONS(1364), + [aux_sym_cmd_identifier_token2] = ACTIONS(1364), + [aux_sym_cmd_identifier_token3] = ACTIONS(1364), + [aux_sym_cmd_identifier_token4] = ACTIONS(1364), + [aux_sym_cmd_identifier_token5] = ACTIONS(1364), + [aux_sym_cmd_identifier_token6] = ACTIONS(1364), + [aux_sym_cmd_identifier_token7] = ACTIONS(1364), + [aux_sym_cmd_identifier_token8] = ACTIONS(1364), + [aux_sym_cmd_identifier_token9] = ACTIONS(1364), + [aux_sym_cmd_identifier_token10] = ACTIONS(1364), + [aux_sym_cmd_identifier_token11] = ACTIONS(1364), + [aux_sym_cmd_identifier_token12] = ACTIONS(1364), + [aux_sym_cmd_identifier_token13] = ACTIONS(1364), + [aux_sym_cmd_identifier_token14] = ACTIONS(1364), + [aux_sym_cmd_identifier_token15] = ACTIONS(1364), + [aux_sym_cmd_identifier_token16] = ACTIONS(1364), + [aux_sym_cmd_identifier_token17] = ACTIONS(1364), + [aux_sym_cmd_identifier_token18] = ACTIONS(1364), + [aux_sym_cmd_identifier_token19] = ACTIONS(1364), + [aux_sym_cmd_identifier_token20] = ACTIONS(1364), + [aux_sym_cmd_identifier_token21] = ACTIONS(1364), + [aux_sym_cmd_identifier_token22] = ACTIONS(1364), + [aux_sym_cmd_identifier_token23] = ACTIONS(1364), + [aux_sym_cmd_identifier_token24] = ACTIONS(1362), + [aux_sym_cmd_identifier_token25] = ACTIONS(1364), + [aux_sym_cmd_identifier_token26] = ACTIONS(1362), + [aux_sym_cmd_identifier_token27] = ACTIONS(1364), + [aux_sym_cmd_identifier_token28] = ACTIONS(1364), + [aux_sym_cmd_identifier_token29] = ACTIONS(1364), + [aux_sym_cmd_identifier_token30] = ACTIONS(1364), + [aux_sym_cmd_identifier_token31] = ACTIONS(1362), + [aux_sym_cmd_identifier_token32] = ACTIONS(1362), + [aux_sym_cmd_identifier_token33] = ACTIONS(1362), + [aux_sym_cmd_identifier_token34] = ACTIONS(1362), + [aux_sym_cmd_identifier_token35] = ACTIONS(1362), + [aux_sym_cmd_identifier_token36] = ACTIONS(1364), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1362), + [aux_sym_cmd_identifier_token38] = ACTIONS(1364), + [aux_sym_cmd_identifier_token39] = ACTIONS(1362), + [aux_sym_cmd_identifier_token40] = ACTIONS(1362), + [sym__newline] = ACTIONS(1362), + [anon_sym_SEMI] = ACTIONS(1362), + [anon_sym_PIPE] = ACTIONS(1362), + [anon_sym_def] = ACTIONS(1364), + [anon_sym_export_DASHenv] = ACTIONS(1364), + [anon_sym_extern] = ACTIONS(1364), + [anon_sym_module] = ACTIONS(1364), + [anon_sym_use] = ACTIONS(1364), + [anon_sym_LBRACK] = ACTIONS(1362), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_DOLLAR] = ACTIONS(1364), + [anon_sym_error] = ACTIONS(1364), + [anon_sym_DASH] = ACTIONS(1364), + [anon_sym_break] = ACTIONS(1364), + [anon_sym_continue] = ACTIONS(1364), + [anon_sym_for] = ACTIONS(1364), + [anon_sym_loop] = ACTIONS(1364), + [anon_sym_while] = ACTIONS(1364), + [anon_sym_do] = ACTIONS(1364), + [anon_sym_if] = ACTIONS(1364), + [anon_sym_match] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1362), + [anon_sym_DOT_DOT] = ACTIONS(1364), + [anon_sym_try] = ACTIONS(1364), + [anon_sym_return] = ACTIONS(1364), + [anon_sym_source] = ACTIONS(1364), + [anon_sym_source_DASHenv] = ACTIONS(1364), + [anon_sym_register] = ACTIONS(1364), + [anon_sym_hide] = ACTIONS(1364), + [anon_sym_hide_DASHenv] = ACTIONS(1364), + [anon_sym_overlay] = ACTIONS(1364), + [anon_sym_where] = ACTIONS(1362), + [aux_sym_expr_unary_token1] = ACTIONS(1362), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1362), + [anon_sym_DOT_DOT_LT] = ACTIONS(1362), + [aux_sym__val_number_decimal_token1] = ACTIONS(1364), + [aux_sym__val_number_decimal_token2] = ACTIONS(1362), + [aux_sym__val_number_decimal_token3] = ACTIONS(1362), + [aux_sym__val_number_decimal_token4] = ACTIONS(1362), + [aux_sym__val_number_token1] = ACTIONS(1362), + [aux_sym__val_number_token2] = ACTIONS(1362), + [aux_sym__val_number_token3] = ACTIONS(1362), + [anon_sym_0b] = ACTIONS(1364), + [anon_sym_0o] = ACTIONS(1364), + [anon_sym_0x] = ACTIONS(1364), + [sym_val_date] = ACTIONS(1362), + [anon_sym_DQUOTE] = ACTIONS(1362), + [sym__str_single_quotes] = ACTIONS(1362), + [sym__str_back_ticks] = ACTIONS(1362), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1362), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1362), + [aux_sym_env_var_token1] = ACTIONS(1364), + [anon_sym_CARET] = ACTIONS(1362), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1362), }, - [356] = { - [sym_cell_path] = STATE(616), - [sym_path] = STATE(527), - [sym_comment] = STATE(356), - [aux_sym_cell_path_repeat1] = STATE(425), - [anon_sym_export] = ACTIONS(1931), - [anon_sym_alias] = ACTIONS(1931), - [anon_sym_let] = ACTIONS(1931), - [anon_sym_let_DASHenv] = ACTIONS(1931), - [anon_sym_mut] = ACTIONS(1931), - [anon_sym_const] = ACTIONS(1931), - [aux_sym_cmd_identifier_token1] = ACTIONS(1931), - [aux_sym_cmd_identifier_token2] = ACTIONS(1931), - [aux_sym_cmd_identifier_token3] = ACTIONS(1931), - [aux_sym_cmd_identifier_token4] = ACTIONS(1931), - [aux_sym_cmd_identifier_token5] = ACTIONS(1931), - [aux_sym_cmd_identifier_token6] = ACTIONS(1931), - [aux_sym_cmd_identifier_token7] = ACTIONS(1931), - [aux_sym_cmd_identifier_token8] = ACTIONS(1931), - [aux_sym_cmd_identifier_token9] = ACTIONS(1931), - [aux_sym_cmd_identifier_token10] = ACTIONS(1931), - [aux_sym_cmd_identifier_token11] = ACTIONS(1931), - [aux_sym_cmd_identifier_token12] = ACTIONS(1931), - [aux_sym_cmd_identifier_token13] = ACTIONS(1931), - [aux_sym_cmd_identifier_token14] = ACTIONS(1931), - [aux_sym_cmd_identifier_token15] = ACTIONS(1931), - [aux_sym_cmd_identifier_token16] = ACTIONS(1931), - [aux_sym_cmd_identifier_token17] = ACTIONS(1931), - [aux_sym_cmd_identifier_token18] = ACTIONS(1931), - [aux_sym_cmd_identifier_token19] = ACTIONS(1931), - [aux_sym_cmd_identifier_token20] = ACTIONS(1931), - [aux_sym_cmd_identifier_token21] = ACTIONS(1931), - [aux_sym_cmd_identifier_token22] = ACTIONS(1931), - [aux_sym_cmd_identifier_token23] = ACTIONS(1931), - [aux_sym_cmd_identifier_token24] = ACTIONS(1931), - [aux_sym_cmd_identifier_token25] = ACTIONS(1931), - [aux_sym_cmd_identifier_token26] = ACTIONS(1931), - [aux_sym_cmd_identifier_token27] = ACTIONS(1931), - [aux_sym_cmd_identifier_token28] = ACTIONS(1931), - [aux_sym_cmd_identifier_token29] = ACTIONS(1931), - [aux_sym_cmd_identifier_token30] = ACTIONS(1931), - [aux_sym_cmd_identifier_token31] = ACTIONS(1931), - [aux_sym_cmd_identifier_token32] = ACTIONS(1931), - [aux_sym_cmd_identifier_token33] = ACTIONS(1931), - [aux_sym_cmd_identifier_token34] = ACTIONS(1931), - [aux_sym_cmd_identifier_token35] = ACTIONS(1931), - [aux_sym_cmd_identifier_token36] = ACTIONS(1931), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1931), - [aux_sym_cmd_identifier_token38] = ACTIONS(1931), - [aux_sym_cmd_identifier_token39] = ACTIONS(1931), - [aux_sym_cmd_identifier_token40] = ACTIONS(1931), - [anon_sym_def] = ACTIONS(1931), - [anon_sym_export_DASHenv] = ACTIONS(1931), - [anon_sym_extern] = ACTIONS(1931), - [anon_sym_module] = ACTIONS(1931), - [anon_sym_use] = ACTIONS(1931), - [anon_sym_LPAREN] = ACTIONS(1931), - [anon_sym_DOLLAR] = ACTIONS(1931), - [anon_sym_error] = ACTIONS(1931), - [anon_sym_list] = ACTIONS(1931), - [anon_sym_DASH] = ACTIONS(1931), - [anon_sym_break] = ACTIONS(1931), - [anon_sym_continue] = ACTIONS(1931), - [anon_sym_for] = ACTIONS(1931), - [anon_sym_in] = ACTIONS(1931), - [anon_sym_loop] = ACTIONS(1931), - [anon_sym_make] = ACTIONS(1931), - [anon_sym_while] = ACTIONS(1931), - [anon_sym_do] = ACTIONS(1931), - [anon_sym_if] = ACTIONS(1931), - [anon_sym_else] = ACTIONS(1931), - [anon_sym_match] = ACTIONS(1931), - [anon_sym_RBRACE] = ACTIONS(1931), - [anon_sym_try] = ACTIONS(1931), - [anon_sym_catch] = ACTIONS(1931), - [anon_sym_return] = ACTIONS(1931), - [anon_sym_source] = ACTIONS(1931), - [anon_sym_source_DASHenv] = ACTIONS(1931), - [anon_sym_register] = ACTIONS(1931), - [anon_sym_hide] = ACTIONS(1931), - [anon_sym_hide_DASHenv] = ACTIONS(1931), - [anon_sym_overlay] = ACTIONS(1931), - [anon_sym_new] = ACTIONS(1931), - [anon_sym_as] = ACTIONS(1931), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1931), - [anon_sym_DOT] = ACTIONS(1824), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1931), - [aux_sym__val_number_decimal_token1] = ACTIONS(1931), - [aux_sym__val_number_decimal_token2] = ACTIONS(1931), - [aux_sym__val_number_decimal_token3] = ACTIONS(1931), - [aux_sym__val_number_decimal_token4] = ACTIONS(1931), - [aux_sym__val_number_token1] = ACTIONS(1931), - [aux_sym__val_number_token2] = ACTIONS(1931), - [aux_sym__val_number_token3] = ACTIONS(1931), - [anon_sym_DQUOTE] = ACTIONS(1931), - [sym__str_single_quotes] = ACTIONS(1931), - [sym__str_back_ticks] = ACTIONS(1931), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1931), - [sym__entry_separator] = ACTIONS(1933), - [anon_sym_PLUS] = ACTIONS(1931), + [319] = { + [sym_comment] = STATE(319), + [anon_sym_export] = ACTIONS(1769), + [anon_sym_alias] = ACTIONS(1769), + [anon_sym_let] = ACTIONS(1769), + [anon_sym_let_DASHenv] = ACTIONS(1769), + [anon_sym_mut] = ACTIONS(1769), + [anon_sym_const] = ACTIONS(1769), + [aux_sym_cmd_identifier_token1] = ACTIONS(1769), + [aux_sym_cmd_identifier_token2] = ACTIONS(1769), + [aux_sym_cmd_identifier_token3] = ACTIONS(1769), + [aux_sym_cmd_identifier_token4] = ACTIONS(1769), + [aux_sym_cmd_identifier_token5] = ACTIONS(1769), + [aux_sym_cmd_identifier_token6] = ACTIONS(1769), + [aux_sym_cmd_identifier_token7] = ACTIONS(1769), + [aux_sym_cmd_identifier_token8] = ACTIONS(1769), + [aux_sym_cmd_identifier_token9] = ACTIONS(1769), + [aux_sym_cmd_identifier_token10] = ACTIONS(1769), + [aux_sym_cmd_identifier_token11] = ACTIONS(1769), + [aux_sym_cmd_identifier_token12] = ACTIONS(1769), + [aux_sym_cmd_identifier_token13] = ACTIONS(1769), + [aux_sym_cmd_identifier_token14] = ACTIONS(1769), + [aux_sym_cmd_identifier_token15] = ACTIONS(1769), + [aux_sym_cmd_identifier_token16] = ACTIONS(1769), + [aux_sym_cmd_identifier_token17] = ACTIONS(1769), + [aux_sym_cmd_identifier_token18] = ACTIONS(1769), + [aux_sym_cmd_identifier_token19] = ACTIONS(1769), + [aux_sym_cmd_identifier_token20] = ACTIONS(1769), + [aux_sym_cmd_identifier_token21] = ACTIONS(1769), + [aux_sym_cmd_identifier_token22] = ACTIONS(1769), + [aux_sym_cmd_identifier_token23] = ACTIONS(1769), + [aux_sym_cmd_identifier_token24] = ACTIONS(1769), + [aux_sym_cmd_identifier_token25] = ACTIONS(1769), + [aux_sym_cmd_identifier_token26] = ACTIONS(1769), + [aux_sym_cmd_identifier_token27] = ACTIONS(1769), + [aux_sym_cmd_identifier_token28] = ACTIONS(1769), + [aux_sym_cmd_identifier_token29] = ACTIONS(1769), + [aux_sym_cmd_identifier_token30] = ACTIONS(1769), + [aux_sym_cmd_identifier_token31] = ACTIONS(1769), + [aux_sym_cmd_identifier_token32] = ACTIONS(1769), + [aux_sym_cmd_identifier_token33] = ACTIONS(1769), + [aux_sym_cmd_identifier_token34] = ACTIONS(1769), + [aux_sym_cmd_identifier_token35] = ACTIONS(1769), + [aux_sym_cmd_identifier_token36] = ACTIONS(1769), + [anon_sym_true] = ACTIONS(1769), + [anon_sym_false] = ACTIONS(1769), + [anon_sym_null] = ACTIONS(1769), + [aux_sym_cmd_identifier_token38] = ACTIONS(1769), + [aux_sym_cmd_identifier_token39] = ACTIONS(1769), + [aux_sym_cmd_identifier_token40] = ACTIONS(1769), + [anon_sym_def] = ACTIONS(1769), + [anon_sym_export_DASHenv] = ACTIONS(1769), + [anon_sym_extern] = ACTIONS(1769), + [anon_sym_module] = ACTIONS(1769), + [anon_sym_use] = ACTIONS(1769), + [anon_sym_LPAREN] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1769), + [anon_sym_error] = ACTIONS(1769), + [anon_sym_list] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_break] = ACTIONS(1769), + [anon_sym_continue] = ACTIONS(1769), + [anon_sym_for] = ACTIONS(1769), + [anon_sym_in] = ACTIONS(1769), + [anon_sym_loop] = ACTIONS(1769), + [anon_sym_make] = ACTIONS(1769), + [anon_sym_while] = ACTIONS(1769), + [anon_sym_do] = ACTIONS(1769), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_else] = ACTIONS(1769), + [anon_sym_match] = ACTIONS(1769), + [anon_sym_RBRACE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1769), + [anon_sym_catch] = ACTIONS(1769), + [anon_sym_return] = ACTIONS(1769), + [anon_sym_source] = ACTIONS(1769), + [anon_sym_source_DASHenv] = ACTIONS(1769), + [anon_sym_register] = ACTIONS(1769), + [anon_sym_hide] = ACTIONS(1769), + [anon_sym_hide_DASHenv] = ACTIONS(1769), + [anon_sym_overlay] = ACTIONS(1769), + [anon_sym_new] = ACTIONS(1769), + [anon_sym_as] = ACTIONS(1769), + [anon_sym_LPAREN2] = ACTIONS(1771), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1769), + [anon_sym_DOT_DOT2] = ACTIONS(1769), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1771), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1771), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1769), + [aux_sym__val_number_decimal_token1] = ACTIONS(1769), + [aux_sym__val_number_decimal_token2] = ACTIONS(1769), + [aux_sym__val_number_decimal_token3] = ACTIONS(1769), + [aux_sym__val_number_decimal_token4] = ACTIONS(1769), + [aux_sym__val_number_token1] = ACTIONS(1769), + [aux_sym__val_number_token2] = ACTIONS(1769), + [aux_sym__val_number_token3] = ACTIONS(1769), + [anon_sym_DQUOTE] = ACTIONS(1769), + [sym__str_single_quotes] = ACTIONS(1769), + [sym__str_back_ticks] = ACTIONS(1769), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1769), + [sym__entry_separator] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1769), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1769), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1771), }, - [357] = { - [sym_cell_path] = STATE(549), - [sym_path] = STATE(527), - [sym_comment] = STATE(357), - [aux_sym_cell_path_repeat1] = STATE(425), - [anon_sym_export] = ACTIONS(1935), - [anon_sym_alias] = ACTIONS(1935), - [anon_sym_let] = ACTIONS(1935), - [anon_sym_let_DASHenv] = ACTIONS(1935), - [anon_sym_mut] = ACTIONS(1935), - [anon_sym_const] = ACTIONS(1935), - [aux_sym_cmd_identifier_token1] = ACTIONS(1935), - [aux_sym_cmd_identifier_token2] = ACTIONS(1935), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [aux_sym_cmd_identifier_token6] = ACTIONS(1935), - [aux_sym_cmd_identifier_token7] = ACTIONS(1935), - [aux_sym_cmd_identifier_token8] = ACTIONS(1935), - [aux_sym_cmd_identifier_token9] = ACTIONS(1935), - [aux_sym_cmd_identifier_token10] = ACTIONS(1935), - [aux_sym_cmd_identifier_token11] = ACTIONS(1935), - [aux_sym_cmd_identifier_token12] = ACTIONS(1935), - [aux_sym_cmd_identifier_token13] = ACTIONS(1935), - [aux_sym_cmd_identifier_token14] = ACTIONS(1935), - [aux_sym_cmd_identifier_token15] = ACTIONS(1935), - [aux_sym_cmd_identifier_token16] = ACTIONS(1935), - [aux_sym_cmd_identifier_token17] = ACTIONS(1935), - [aux_sym_cmd_identifier_token18] = ACTIONS(1935), - [aux_sym_cmd_identifier_token19] = ACTIONS(1935), - [aux_sym_cmd_identifier_token20] = ACTIONS(1935), - [aux_sym_cmd_identifier_token21] = ACTIONS(1935), - [aux_sym_cmd_identifier_token22] = ACTIONS(1935), - [aux_sym_cmd_identifier_token23] = ACTIONS(1935), - [aux_sym_cmd_identifier_token24] = ACTIONS(1935), - [aux_sym_cmd_identifier_token25] = ACTIONS(1935), - [aux_sym_cmd_identifier_token26] = ACTIONS(1935), - [aux_sym_cmd_identifier_token27] = ACTIONS(1935), - [aux_sym_cmd_identifier_token28] = ACTIONS(1935), - [aux_sym_cmd_identifier_token29] = ACTIONS(1935), - [aux_sym_cmd_identifier_token30] = ACTIONS(1935), - [aux_sym_cmd_identifier_token31] = ACTIONS(1935), - [aux_sym_cmd_identifier_token32] = ACTIONS(1935), - [aux_sym_cmd_identifier_token33] = ACTIONS(1935), - [aux_sym_cmd_identifier_token34] = ACTIONS(1935), - [aux_sym_cmd_identifier_token35] = ACTIONS(1935), - [aux_sym_cmd_identifier_token36] = ACTIONS(1935), - [anon_sym_true] = ACTIONS(1935), - [anon_sym_false] = ACTIONS(1935), - [anon_sym_null] = ACTIONS(1935), - [aux_sym_cmd_identifier_token38] = ACTIONS(1935), - [aux_sym_cmd_identifier_token39] = ACTIONS(1935), - [aux_sym_cmd_identifier_token40] = ACTIONS(1935), - [anon_sym_def] = ACTIONS(1935), - [anon_sym_export_DASHenv] = ACTIONS(1935), - [anon_sym_extern] = ACTIONS(1935), - [anon_sym_module] = ACTIONS(1935), - [anon_sym_use] = ACTIONS(1935), - [anon_sym_LPAREN] = ACTIONS(1935), - [anon_sym_DOLLAR] = ACTIONS(1935), - [anon_sym_error] = ACTIONS(1935), - [anon_sym_list] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1935), - [anon_sym_break] = ACTIONS(1935), - [anon_sym_continue] = ACTIONS(1935), - [anon_sym_for] = ACTIONS(1935), - [anon_sym_in] = ACTIONS(1935), - [anon_sym_loop] = ACTIONS(1935), - [anon_sym_make] = ACTIONS(1935), - [anon_sym_while] = ACTIONS(1935), - [anon_sym_do] = ACTIONS(1935), - [anon_sym_if] = ACTIONS(1935), - [anon_sym_else] = ACTIONS(1935), - [anon_sym_match] = ACTIONS(1935), - [anon_sym_RBRACE] = ACTIONS(1935), - [anon_sym_try] = ACTIONS(1935), - [anon_sym_catch] = ACTIONS(1935), - [anon_sym_return] = ACTIONS(1935), - [anon_sym_source] = ACTIONS(1935), - [anon_sym_source_DASHenv] = ACTIONS(1935), - [anon_sym_register] = ACTIONS(1935), - [anon_sym_hide] = ACTIONS(1935), - [anon_sym_hide_DASHenv] = ACTIONS(1935), - [anon_sym_overlay] = ACTIONS(1935), - [anon_sym_new] = ACTIONS(1935), - [anon_sym_as] = ACTIONS(1935), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1935), - [anon_sym_DOT] = ACTIONS(1824), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1935), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1935), - [aux_sym__val_number_decimal_token3] = ACTIONS(1935), - [aux_sym__val_number_decimal_token4] = ACTIONS(1935), - [aux_sym__val_number_token1] = ACTIONS(1935), - [aux_sym__val_number_token2] = ACTIONS(1935), - [aux_sym__val_number_token3] = ACTIONS(1935), - [anon_sym_DQUOTE] = ACTIONS(1935), - [sym__str_single_quotes] = ACTIONS(1935), - [sym__str_back_ticks] = ACTIONS(1935), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1935), - [sym__entry_separator] = ACTIONS(1937), - [anon_sym_PLUS] = ACTIONS(1935), + [320] = { + [sym_comment] = STATE(320), + [anon_sym_export] = ACTIONS(1826), + [anon_sym_alias] = ACTIONS(1826), + [anon_sym_let] = ACTIONS(1826), + [anon_sym_let_DASHenv] = ACTIONS(1826), + [anon_sym_mut] = ACTIONS(1826), + [anon_sym_const] = ACTIONS(1826), + [aux_sym_cmd_identifier_token1] = ACTIONS(1826), + [aux_sym_cmd_identifier_token2] = ACTIONS(1826), + [aux_sym_cmd_identifier_token3] = ACTIONS(1826), + [aux_sym_cmd_identifier_token4] = ACTIONS(1826), + [aux_sym_cmd_identifier_token5] = ACTIONS(1826), + [aux_sym_cmd_identifier_token6] = ACTIONS(1826), + [aux_sym_cmd_identifier_token7] = ACTIONS(1826), + [aux_sym_cmd_identifier_token8] = ACTIONS(1826), + [aux_sym_cmd_identifier_token9] = ACTIONS(1826), + [aux_sym_cmd_identifier_token10] = ACTIONS(1826), + [aux_sym_cmd_identifier_token11] = ACTIONS(1826), + [aux_sym_cmd_identifier_token12] = ACTIONS(1826), + [aux_sym_cmd_identifier_token13] = ACTIONS(1826), + [aux_sym_cmd_identifier_token14] = ACTIONS(1826), + [aux_sym_cmd_identifier_token15] = ACTIONS(1826), + [aux_sym_cmd_identifier_token16] = ACTIONS(1826), + [aux_sym_cmd_identifier_token17] = ACTIONS(1826), + [aux_sym_cmd_identifier_token18] = ACTIONS(1826), + [aux_sym_cmd_identifier_token19] = ACTIONS(1826), + [aux_sym_cmd_identifier_token20] = ACTIONS(1826), + [aux_sym_cmd_identifier_token21] = ACTIONS(1826), + [aux_sym_cmd_identifier_token22] = ACTIONS(1826), + [aux_sym_cmd_identifier_token23] = ACTIONS(1826), + [aux_sym_cmd_identifier_token24] = ACTIONS(1826), + [aux_sym_cmd_identifier_token25] = ACTIONS(1826), + [aux_sym_cmd_identifier_token26] = ACTIONS(1826), + [aux_sym_cmd_identifier_token27] = ACTIONS(1826), + [aux_sym_cmd_identifier_token28] = ACTIONS(1826), + [aux_sym_cmd_identifier_token29] = ACTIONS(1826), + [aux_sym_cmd_identifier_token30] = ACTIONS(1826), + [aux_sym_cmd_identifier_token31] = ACTIONS(1826), + [aux_sym_cmd_identifier_token32] = ACTIONS(1826), + [aux_sym_cmd_identifier_token33] = ACTIONS(1826), + [aux_sym_cmd_identifier_token34] = ACTIONS(1826), + [aux_sym_cmd_identifier_token35] = ACTIONS(1826), + [aux_sym_cmd_identifier_token36] = ACTIONS(1826), + [anon_sym_true] = ACTIONS(1826), + [anon_sym_false] = ACTIONS(1826), + [anon_sym_null] = ACTIONS(1826), + [aux_sym_cmd_identifier_token38] = ACTIONS(1826), + [aux_sym_cmd_identifier_token39] = ACTIONS(1826), + [aux_sym_cmd_identifier_token40] = ACTIONS(1826), + [anon_sym_def] = ACTIONS(1826), + [anon_sym_export_DASHenv] = ACTIONS(1826), + [anon_sym_extern] = ACTIONS(1826), + [anon_sym_module] = ACTIONS(1826), + [anon_sym_use] = ACTIONS(1826), + [anon_sym_LPAREN] = ACTIONS(1826), + [anon_sym_DOLLAR] = ACTIONS(1826), + [anon_sym_error] = ACTIONS(1826), + [anon_sym_list] = ACTIONS(1826), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_break] = ACTIONS(1826), + [anon_sym_continue] = ACTIONS(1826), + [anon_sym_for] = ACTIONS(1826), + [anon_sym_in] = ACTIONS(1826), + [anon_sym_loop] = ACTIONS(1826), + [anon_sym_make] = ACTIONS(1826), + [anon_sym_while] = ACTIONS(1826), + [anon_sym_do] = ACTIONS(1826), + [anon_sym_if] = ACTIONS(1826), + [anon_sym_else] = ACTIONS(1826), + [anon_sym_match] = ACTIONS(1826), + [anon_sym_RBRACE] = ACTIONS(1826), + [anon_sym_try] = ACTIONS(1826), + [anon_sym_catch] = ACTIONS(1826), + [anon_sym_return] = ACTIONS(1826), + [anon_sym_source] = ACTIONS(1826), + [anon_sym_source_DASHenv] = ACTIONS(1826), + [anon_sym_register] = ACTIONS(1826), + [anon_sym_hide] = ACTIONS(1826), + [anon_sym_hide_DASHenv] = ACTIONS(1826), + [anon_sym_overlay] = ACTIONS(1826), + [anon_sym_new] = ACTIONS(1826), + [anon_sym_as] = ACTIONS(1826), + [anon_sym_LPAREN2] = ACTIONS(1828), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1826), + [anon_sym_DOT_DOT2] = ACTIONS(1826), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1828), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1828), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1826), + [aux_sym__val_number_decimal_token1] = ACTIONS(1826), + [aux_sym__val_number_decimal_token2] = ACTIONS(1826), + [aux_sym__val_number_decimal_token3] = ACTIONS(1826), + [aux_sym__val_number_decimal_token4] = ACTIONS(1826), + [aux_sym__val_number_token1] = ACTIONS(1826), + [aux_sym__val_number_token2] = ACTIONS(1826), + [aux_sym__val_number_token3] = ACTIONS(1826), + [anon_sym_DQUOTE] = ACTIONS(1826), + [sym__str_single_quotes] = ACTIONS(1826), + [sym__str_back_ticks] = ACTIONS(1826), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1826), + [sym__entry_separator] = ACTIONS(1828), + [anon_sym_PLUS] = ACTIONS(1826), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1826), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1828), }, - [358] = { - [sym_comment] = STATE(358), - [anon_sym_export] = ACTIONS(1939), - [anon_sym_alias] = ACTIONS(1939), - [anon_sym_let] = ACTIONS(1939), - [anon_sym_let_DASHenv] = ACTIONS(1939), - [anon_sym_mut] = ACTIONS(1939), - [anon_sym_const] = ACTIONS(1939), - [aux_sym_cmd_identifier_token1] = ACTIONS(1939), - [aux_sym_cmd_identifier_token2] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1939), - [aux_sym_cmd_identifier_token4] = ACTIONS(1939), - [aux_sym_cmd_identifier_token5] = ACTIONS(1939), - [aux_sym_cmd_identifier_token6] = ACTIONS(1939), - [aux_sym_cmd_identifier_token7] = ACTIONS(1939), - [aux_sym_cmd_identifier_token8] = ACTIONS(1939), - [aux_sym_cmd_identifier_token9] = ACTIONS(1939), - [aux_sym_cmd_identifier_token10] = ACTIONS(1939), - [aux_sym_cmd_identifier_token11] = ACTIONS(1939), - [aux_sym_cmd_identifier_token12] = ACTIONS(1939), - [aux_sym_cmd_identifier_token13] = ACTIONS(1939), - [aux_sym_cmd_identifier_token14] = ACTIONS(1939), - [aux_sym_cmd_identifier_token15] = ACTIONS(1939), - [aux_sym_cmd_identifier_token16] = ACTIONS(1939), - [aux_sym_cmd_identifier_token17] = ACTIONS(1939), - [aux_sym_cmd_identifier_token18] = ACTIONS(1939), - [aux_sym_cmd_identifier_token19] = ACTIONS(1939), - [aux_sym_cmd_identifier_token20] = ACTIONS(1939), - [aux_sym_cmd_identifier_token21] = ACTIONS(1939), - [aux_sym_cmd_identifier_token22] = ACTIONS(1939), - [aux_sym_cmd_identifier_token23] = ACTIONS(1939), - [aux_sym_cmd_identifier_token24] = ACTIONS(1941), - [aux_sym_cmd_identifier_token25] = ACTIONS(1939), - [aux_sym_cmd_identifier_token26] = ACTIONS(1941), - [aux_sym_cmd_identifier_token27] = ACTIONS(1939), - [aux_sym_cmd_identifier_token28] = ACTIONS(1939), - [aux_sym_cmd_identifier_token29] = ACTIONS(1939), - [aux_sym_cmd_identifier_token30] = ACTIONS(1939), - [aux_sym_cmd_identifier_token31] = ACTIONS(1941), - [aux_sym_cmd_identifier_token32] = ACTIONS(1941), - [aux_sym_cmd_identifier_token33] = ACTIONS(1941), - [aux_sym_cmd_identifier_token34] = ACTIONS(1941), - [aux_sym_cmd_identifier_token35] = ACTIONS(1941), - [aux_sym_cmd_identifier_token36] = ACTIONS(1939), - [anon_sym_true] = ACTIONS(1941), - [anon_sym_false] = ACTIONS(1941), - [anon_sym_null] = ACTIONS(1941), - [aux_sym_cmd_identifier_token38] = ACTIONS(1939), - [aux_sym_cmd_identifier_token39] = ACTIONS(1941), - [aux_sym_cmd_identifier_token40] = ACTIONS(1941), - [sym__newline] = ACTIONS(1941), - [anon_sym_SEMI] = ACTIONS(1941), - [anon_sym_def] = ACTIONS(1939), - [anon_sym_export_DASHenv] = ACTIONS(1939), - [anon_sym_extern] = ACTIONS(1939), - [anon_sym_module] = ACTIONS(1939), - [anon_sym_use] = ACTIONS(1939), - [anon_sym_LBRACK] = ACTIONS(1941), - [anon_sym_LPAREN] = ACTIONS(1941), - [anon_sym_DOLLAR] = ACTIONS(1939), - [anon_sym_error] = ACTIONS(1939), - [anon_sym_DASH] = ACTIONS(1939), - [anon_sym_break] = ACTIONS(1939), - [anon_sym_continue] = ACTIONS(1939), - [anon_sym_for] = ACTIONS(1939), - [anon_sym_loop] = ACTIONS(1939), - [anon_sym_while] = ACTIONS(1939), - [anon_sym_do] = ACTIONS(1939), - [anon_sym_if] = ACTIONS(1939), - [anon_sym_match] = ACTIONS(1939), - [anon_sym_LBRACE] = ACTIONS(1941), - [anon_sym_DOT_DOT] = ACTIONS(1939), - [anon_sym_try] = ACTIONS(1939), - [anon_sym_return] = ACTIONS(1939), - [anon_sym_source] = ACTIONS(1939), - [anon_sym_source_DASHenv] = ACTIONS(1939), - [anon_sym_register] = ACTIONS(1939), - [anon_sym_hide] = ACTIONS(1939), - [anon_sym_hide_DASHenv] = ACTIONS(1939), - [anon_sym_overlay] = ACTIONS(1939), - [anon_sym_where] = ACTIONS(1941), - [aux_sym_expr_unary_token1] = ACTIONS(1941), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1941), - [anon_sym_DOT_DOT_LT] = ACTIONS(1941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1939), - [aux_sym__val_number_decimal_token2] = ACTIONS(1941), - [aux_sym__val_number_decimal_token3] = ACTIONS(1941), - [aux_sym__val_number_decimal_token4] = ACTIONS(1941), - [aux_sym__val_number_token1] = ACTIONS(1941), - [aux_sym__val_number_token2] = ACTIONS(1941), - [aux_sym__val_number_token3] = ACTIONS(1941), - [anon_sym_0b] = ACTIONS(1939), - [anon_sym_0o] = ACTIONS(1939), - [anon_sym_0x] = ACTIONS(1939), - [sym_val_date] = ACTIONS(1941), - [anon_sym_DQUOTE] = ACTIONS(1941), - [sym__str_single_quotes] = ACTIONS(1941), - [sym__str_back_ticks] = ACTIONS(1941), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1941), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1941), - [aux_sym_env_var_token1] = ACTIONS(1939), - [anon_sym_CARET] = ACTIONS(1941), - [anon_sym_POUND] = ACTIONS(247), - }, - [359] = { - [sym_comment] = STATE(359), - [anon_sym_export] = ACTIONS(1659), - [anon_sym_alias] = ACTIONS(1659), - [anon_sym_let] = ACTIONS(1659), - [anon_sym_let_DASHenv] = ACTIONS(1659), - [anon_sym_mut] = ACTIONS(1659), - [anon_sym_const] = ACTIONS(1659), - [aux_sym_cmd_identifier_token1] = ACTIONS(1659), - [aux_sym_cmd_identifier_token2] = ACTIONS(1659), - [aux_sym_cmd_identifier_token3] = ACTIONS(1659), - [aux_sym_cmd_identifier_token4] = ACTIONS(1659), - [aux_sym_cmd_identifier_token5] = ACTIONS(1659), - [aux_sym_cmd_identifier_token6] = ACTIONS(1659), - [aux_sym_cmd_identifier_token7] = ACTIONS(1659), - [aux_sym_cmd_identifier_token8] = ACTIONS(1659), - [aux_sym_cmd_identifier_token9] = ACTIONS(1659), - [aux_sym_cmd_identifier_token10] = ACTIONS(1659), - [aux_sym_cmd_identifier_token11] = ACTIONS(1659), - [aux_sym_cmd_identifier_token12] = ACTIONS(1659), - [aux_sym_cmd_identifier_token13] = ACTIONS(1659), - [aux_sym_cmd_identifier_token14] = ACTIONS(1659), - [aux_sym_cmd_identifier_token15] = ACTIONS(1659), - [aux_sym_cmd_identifier_token16] = ACTIONS(1659), - [aux_sym_cmd_identifier_token17] = ACTIONS(1659), - [aux_sym_cmd_identifier_token18] = ACTIONS(1659), - [aux_sym_cmd_identifier_token19] = ACTIONS(1659), - [aux_sym_cmd_identifier_token20] = ACTIONS(1659), - [aux_sym_cmd_identifier_token21] = ACTIONS(1659), - [aux_sym_cmd_identifier_token22] = ACTIONS(1659), - [aux_sym_cmd_identifier_token23] = ACTIONS(1659), - [aux_sym_cmd_identifier_token24] = ACTIONS(1659), - [aux_sym_cmd_identifier_token25] = ACTIONS(1659), - [aux_sym_cmd_identifier_token26] = ACTIONS(1659), - [aux_sym_cmd_identifier_token27] = ACTIONS(1659), - [aux_sym_cmd_identifier_token28] = ACTIONS(1659), - [aux_sym_cmd_identifier_token29] = ACTIONS(1659), - [aux_sym_cmd_identifier_token30] = ACTIONS(1659), - [aux_sym_cmd_identifier_token31] = ACTIONS(1659), - [aux_sym_cmd_identifier_token32] = ACTIONS(1659), - [aux_sym_cmd_identifier_token33] = ACTIONS(1659), - [aux_sym_cmd_identifier_token34] = ACTIONS(1659), - [aux_sym_cmd_identifier_token35] = ACTIONS(1659), - [aux_sym_cmd_identifier_token36] = ACTIONS(1659), - [anon_sym_true] = ACTIONS(1661), - [anon_sym_false] = ACTIONS(1661), - [anon_sym_null] = ACTIONS(1661), - [aux_sym_cmd_identifier_token38] = ACTIONS(1659), - [aux_sym_cmd_identifier_token39] = ACTIONS(1661), - [aux_sym_cmd_identifier_token40] = ACTIONS(1661), - [anon_sym_def] = ACTIONS(1659), - [anon_sym_export_DASHenv] = ACTIONS(1659), - [anon_sym_extern] = ACTIONS(1659), - [anon_sym_module] = ACTIONS(1659), - [anon_sym_use] = ACTIONS(1659), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_DOLLAR] = ACTIONS(1661), - [anon_sym_error] = ACTIONS(1659), - [anon_sym_list] = ACTIONS(1659), - [anon_sym_DASH] = ACTIONS(1659), - [anon_sym_break] = ACTIONS(1659), - [anon_sym_continue] = ACTIONS(1659), - [anon_sym_for] = ACTIONS(1659), - [anon_sym_in] = ACTIONS(1659), - [anon_sym_loop] = ACTIONS(1659), - [anon_sym_make] = ACTIONS(1659), - [anon_sym_while] = ACTIONS(1659), - [anon_sym_do] = ACTIONS(1659), - [anon_sym_if] = ACTIONS(1659), - [anon_sym_else] = ACTIONS(1659), - [anon_sym_match] = ACTIONS(1659), - [anon_sym_RBRACE] = ACTIONS(1661), - [anon_sym_try] = ACTIONS(1659), - [anon_sym_catch] = ACTIONS(1659), - [anon_sym_return] = ACTIONS(1659), - [anon_sym_source] = ACTIONS(1659), - [anon_sym_source_DASHenv] = ACTIONS(1659), - [anon_sym_register] = ACTIONS(1659), - [anon_sym_hide] = ACTIONS(1659), - [anon_sym_hide_DASHenv] = ACTIONS(1659), - [anon_sym_overlay] = ACTIONS(1659), - [anon_sym_new] = ACTIONS(1659), - [anon_sym_as] = ACTIONS(1659), - [anon_sym_LPAREN2] = ACTIONS(1661), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1661), - [anon_sym_DOT_DOT2] = ACTIONS(1659), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1661), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1661), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1661), - [aux_sym__val_number_decimal_token1] = ACTIONS(1659), - [aux_sym__val_number_decimal_token2] = ACTIONS(1661), - [aux_sym__val_number_decimal_token3] = ACTIONS(1661), - [aux_sym__val_number_decimal_token4] = ACTIONS(1661), - [aux_sym__val_number_token1] = ACTIONS(1661), - [aux_sym__val_number_token2] = ACTIONS(1661), - [aux_sym__val_number_token3] = ACTIONS(1661), - [anon_sym_DQUOTE] = ACTIONS(1661), - [sym__str_single_quotes] = ACTIONS(1661), - [sym__str_back_ticks] = ACTIONS(1661), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1661), - [anon_sym_PLUS] = ACTIONS(1659), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1659), - [anon_sym_POUND] = ACTIONS(247), - }, - [360] = { - [sym_comment] = STATE(360), - [anon_sym_export] = ACTIONS(1700), - [anon_sym_alias] = ACTIONS(1700), - [anon_sym_let] = ACTIONS(1700), - [anon_sym_let_DASHenv] = ACTIONS(1700), - [anon_sym_mut] = ACTIONS(1700), - [anon_sym_const] = ACTIONS(1700), - [aux_sym_cmd_identifier_token1] = ACTIONS(1700), - [aux_sym_cmd_identifier_token2] = ACTIONS(1700), - [aux_sym_cmd_identifier_token3] = ACTIONS(1700), - [aux_sym_cmd_identifier_token4] = ACTIONS(1700), - [aux_sym_cmd_identifier_token5] = ACTIONS(1700), - [aux_sym_cmd_identifier_token6] = ACTIONS(1700), - [aux_sym_cmd_identifier_token7] = ACTIONS(1700), - [aux_sym_cmd_identifier_token8] = ACTIONS(1700), - [aux_sym_cmd_identifier_token9] = ACTIONS(1700), - [aux_sym_cmd_identifier_token10] = ACTIONS(1700), - [aux_sym_cmd_identifier_token11] = ACTIONS(1700), - [aux_sym_cmd_identifier_token12] = ACTIONS(1700), - [aux_sym_cmd_identifier_token13] = ACTIONS(1700), - [aux_sym_cmd_identifier_token14] = ACTIONS(1700), - [aux_sym_cmd_identifier_token15] = ACTIONS(1700), - [aux_sym_cmd_identifier_token16] = ACTIONS(1700), - [aux_sym_cmd_identifier_token17] = ACTIONS(1700), - [aux_sym_cmd_identifier_token18] = ACTIONS(1700), - [aux_sym_cmd_identifier_token19] = ACTIONS(1700), - [aux_sym_cmd_identifier_token20] = ACTIONS(1700), - [aux_sym_cmd_identifier_token21] = ACTIONS(1700), - [aux_sym_cmd_identifier_token22] = ACTIONS(1700), - [aux_sym_cmd_identifier_token23] = ACTIONS(1700), - [aux_sym_cmd_identifier_token24] = ACTIONS(1702), - [aux_sym_cmd_identifier_token25] = ACTIONS(1700), - [aux_sym_cmd_identifier_token26] = ACTIONS(1702), - [aux_sym_cmd_identifier_token27] = ACTIONS(1700), - [aux_sym_cmd_identifier_token28] = ACTIONS(1700), - [aux_sym_cmd_identifier_token29] = ACTIONS(1700), - [aux_sym_cmd_identifier_token30] = ACTIONS(1700), - [aux_sym_cmd_identifier_token31] = ACTIONS(1702), - [aux_sym_cmd_identifier_token32] = ACTIONS(1702), - [aux_sym_cmd_identifier_token33] = ACTIONS(1702), - [aux_sym_cmd_identifier_token34] = ACTIONS(1702), - [aux_sym_cmd_identifier_token35] = ACTIONS(1702), - [aux_sym_cmd_identifier_token36] = ACTIONS(1700), - [anon_sym_true] = ACTIONS(1702), - [anon_sym_false] = ACTIONS(1702), - [anon_sym_null] = ACTIONS(1702), - [aux_sym_cmd_identifier_token38] = ACTIONS(1700), - [aux_sym_cmd_identifier_token39] = ACTIONS(1702), - [aux_sym_cmd_identifier_token40] = ACTIONS(1702), - [sym__newline] = ACTIONS(1702), - [anon_sym_SEMI] = ACTIONS(1702), - [anon_sym_def] = ACTIONS(1700), - [anon_sym_export_DASHenv] = ACTIONS(1700), - [anon_sym_extern] = ACTIONS(1700), - [anon_sym_module] = ACTIONS(1700), - [anon_sym_use] = ACTIONS(1700), - [anon_sym_LBRACK] = ACTIONS(1702), - [anon_sym_LPAREN] = ACTIONS(1702), - [anon_sym_DOLLAR] = ACTIONS(1700), - [anon_sym_error] = ACTIONS(1700), - [anon_sym_DASH] = ACTIONS(1700), - [anon_sym_break] = ACTIONS(1700), - [anon_sym_continue] = ACTIONS(1700), - [anon_sym_for] = ACTIONS(1700), - [anon_sym_loop] = ACTIONS(1700), - [anon_sym_while] = ACTIONS(1700), - [anon_sym_do] = ACTIONS(1700), - [anon_sym_if] = ACTIONS(1700), - [anon_sym_match] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1702), - [anon_sym_DOT_DOT] = ACTIONS(1700), - [anon_sym_try] = ACTIONS(1700), - [anon_sym_return] = ACTIONS(1700), - [anon_sym_source] = ACTIONS(1700), - [anon_sym_source_DASHenv] = ACTIONS(1700), - [anon_sym_register] = ACTIONS(1700), - [anon_sym_hide] = ACTIONS(1700), - [anon_sym_hide_DASHenv] = ACTIONS(1700), - [anon_sym_overlay] = ACTIONS(1700), - [anon_sym_where] = ACTIONS(1702), - [aux_sym_expr_unary_token1] = ACTIONS(1702), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1702), - [anon_sym_DOT_DOT_LT] = ACTIONS(1702), - [aux_sym__val_number_decimal_token1] = ACTIONS(1700), - [aux_sym__val_number_decimal_token2] = ACTIONS(1702), - [aux_sym__val_number_decimal_token3] = ACTIONS(1702), - [aux_sym__val_number_decimal_token4] = ACTIONS(1702), - [aux_sym__val_number_token1] = ACTIONS(1702), - [aux_sym__val_number_token2] = ACTIONS(1702), - [aux_sym__val_number_token3] = ACTIONS(1702), - [anon_sym_0b] = ACTIONS(1700), - [anon_sym_0o] = ACTIONS(1700), - [anon_sym_0x] = ACTIONS(1700), - [sym_val_date] = ACTIONS(1702), - [anon_sym_DQUOTE] = ACTIONS(1702), - [sym__str_single_quotes] = ACTIONS(1702), - [sym__str_back_ticks] = ACTIONS(1702), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1702), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1702), - [aux_sym_env_var_token1] = ACTIONS(1700), - [anon_sym_CARET] = ACTIONS(1702), - [anon_sym_POUND] = ACTIONS(247), - }, - [361] = { - [sym_comment] = STATE(361), - [anon_sym_export] = ACTIONS(1800), - [anon_sym_alias] = ACTIONS(1800), - [anon_sym_let] = ACTIONS(1800), - [anon_sym_let_DASHenv] = ACTIONS(1800), - [anon_sym_mut] = ACTIONS(1800), - [anon_sym_const] = ACTIONS(1800), - [aux_sym_cmd_identifier_token1] = ACTIONS(1800), - [aux_sym_cmd_identifier_token2] = ACTIONS(1800), - [aux_sym_cmd_identifier_token3] = ACTIONS(1800), - [aux_sym_cmd_identifier_token4] = ACTIONS(1800), - [aux_sym_cmd_identifier_token5] = ACTIONS(1800), - [aux_sym_cmd_identifier_token6] = ACTIONS(1800), - [aux_sym_cmd_identifier_token7] = ACTIONS(1800), - [aux_sym_cmd_identifier_token8] = ACTIONS(1800), - [aux_sym_cmd_identifier_token9] = ACTIONS(1800), - [aux_sym_cmd_identifier_token10] = ACTIONS(1800), - [aux_sym_cmd_identifier_token11] = ACTIONS(1800), - [aux_sym_cmd_identifier_token12] = ACTIONS(1800), - [aux_sym_cmd_identifier_token13] = ACTIONS(1800), - [aux_sym_cmd_identifier_token14] = ACTIONS(1800), - [aux_sym_cmd_identifier_token15] = ACTIONS(1800), - [aux_sym_cmd_identifier_token16] = ACTIONS(1800), - [aux_sym_cmd_identifier_token17] = ACTIONS(1800), - [aux_sym_cmd_identifier_token18] = ACTIONS(1800), - [aux_sym_cmd_identifier_token19] = ACTIONS(1800), - [aux_sym_cmd_identifier_token20] = ACTIONS(1800), - [aux_sym_cmd_identifier_token21] = ACTIONS(1800), - [aux_sym_cmd_identifier_token22] = ACTIONS(1800), - [aux_sym_cmd_identifier_token23] = ACTIONS(1800), - [aux_sym_cmd_identifier_token24] = ACTIONS(1802), - [aux_sym_cmd_identifier_token25] = ACTIONS(1800), - [aux_sym_cmd_identifier_token26] = ACTIONS(1802), - [aux_sym_cmd_identifier_token27] = ACTIONS(1800), - [aux_sym_cmd_identifier_token28] = ACTIONS(1800), - [aux_sym_cmd_identifier_token29] = ACTIONS(1800), - [aux_sym_cmd_identifier_token30] = ACTIONS(1800), - [aux_sym_cmd_identifier_token31] = ACTIONS(1802), - [aux_sym_cmd_identifier_token32] = ACTIONS(1802), - [aux_sym_cmd_identifier_token33] = ACTIONS(1802), - [aux_sym_cmd_identifier_token34] = ACTIONS(1802), - [aux_sym_cmd_identifier_token35] = ACTIONS(1802), - [aux_sym_cmd_identifier_token36] = ACTIONS(1800), - [anon_sym_true] = ACTIONS(1802), - [anon_sym_false] = ACTIONS(1802), - [anon_sym_null] = ACTIONS(1802), - [aux_sym_cmd_identifier_token38] = ACTIONS(1800), - [aux_sym_cmd_identifier_token39] = ACTIONS(1802), - [aux_sym_cmd_identifier_token40] = ACTIONS(1802), - [sym__newline] = ACTIONS(1802), - [anon_sym_SEMI] = ACTIONS(1802), - [anon_sym_def] = ACTIONS(1800), - [anon_sym_export_DASHenv] = ACTIONS(1800), - [anon_sym_extern] = ACTIONS(1800), - [anon_sym_module] = ACTIONS(1800), - [anon_sym_use] = ACTIONS(1800), - [anon_sym_LBRACK] = ACTIONS(1802), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_DOLLAR] = ACTIONS(1800), - [anon_sym_error] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1800), - [anon_sym_break] = ACTIONS(1800), - [anon_sym_continue] = ACTIONS(1800), - [anon_sym_for] = ACTIONS(1800), - [anon_sym_loop] = ACTIONS(1800), - [anon_sym_while] = ACTIONS(1800), - [anon_sym_do] = ACTIONS(1800), - [anon_sym_if] = ACTIONS(1800), - [anon_sym_match] = ACTIONS(1800), - [anon_sym_LBRACE] = ACTIONS(1802), - [anon_sym_DOT_DOT] = ACTIONS(1800), - [anon_sym_try] = ACTIONS(1800), - [anon_sym_return] = ACTIONS(1800), - [anon_sym_source] = ACTIONS(1800), - [anon_sym_source_DASHenv] = ACTIONS(1800), - [anon_sym_register] = ACTIONS(1800), - [anon_sym_hide] = ACTIONS(1800), - [anon_sym_hide_DASHenv] = ACTIONS(1800), - [anon_sym_overlay] = ACTIONS(1800), - [anon_sym_where] = ACTIONS(1802), - [aux_sym_expr_unary_token1] = ACTIONS(1802), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1802), - [anon_sym_DOT_DOT_LT] = ACTIONS(1802), - [aux_sym__val_number_decimal_token1] = ACTIONS(1800), - [aux_sym__val_number_decimal_token2] = ACTIONS(1802), - [aux_sym__val_number_decimal_token3] = ACTIONS(1802), - [aux_sym__val_number_decimal_token4] = ACTIONS(1802), - [aux_sym__val_number_token1] = ACTIONS(1802), - [aux_sym__val_number_token2] = ACTIONS(1802), - [aux_sym__val_number_token3] = ACTIONS(1802), - [anon_sym_0b] = ACTIONS(1800), - [anon_sym_0o] = ACTIONS(1800), - [anon_sym_0x] = ACTIONS(1800), - [sym_val_date] = ACTIONS(1802), - [anon_sym_DQUOTE] = ACTIONS(1802), - [sym__str_single_quotes] = ACTIONS(1802), - [sym__str_back_ticks] = ACTIONS(1802), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1802), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1802), - [aux_sym_env_var_token1] = ACTIONS(1800), - [anon_sym_CARET] = ACTIONS(1802), - [anon_sym_POUND] = ACTIONS(247), + [321] = { + [sym_comment] = STATE(321), + [aux_sym_shebang_repeat1] = STATE(296), + [anon_sym_export] = ACTIONS(1830), + [anon_sym_alias] = ACTIONS(1830), + [anon_sym_let] = ACTIONS(1830), + [anon_sym_let_DASHenv] = ACTIONS(1830), + [anon_sym_mut] = ACTIONS(1830), + [anon_sym_const] = ACTIONS(1830), + [aux_sym_cmd_identifier_token1] = ACTIONS(1830), + [aux_sym_cmd_identifier_token2] = ACTIONS(1830), + [aux_sym_cmd_identifier_token3] = ACTIONS(1830), + [aux_sym_cmd_identifier_token4] = ACTIONS(1830), + [aux_sym_cmd_identifier_token5] = ACTIONS(1830), + [aux_sym_cmd_identifier_token6] = ACTIONS(1830), + [aux_sym_cmd_identifier_token7] = ACTIONS(1830), + [aux_sym_cmd_identifier_token8] = ACTIONS(1830), + [aux_sym_cmd_identifier_token9] = ACTIONS(1830), + [aux_sym_cmd_identifier_token10] = ACTIONS(1830), + [aux_sym_cmd_identifier_token11] = ACTIONS(1830), + [aux_sym_cmd_identifier_token12] = ACTIONS(1830), + [aux_sym_cmd_identifier_token13] = ACTIONS(1830), + [aux_sym_cmd_identifier_token14] = ACTIONS(1830), + [aux_sym_cmd_identifier_token15] = ACTIONS(1830), + [aux_sym_cmd_identifier_token16] = ACTIONS(1830), + [aux_sym_cmd_identifier_token17] = ACTIONS(1830), + [aux_sym_cmd_identifier_token18] = ACTIONS(1830), + [aux_sym_cmd_identifier_token19] = ACTIONS(1830), + [aux_sym_cmd_identifier_token20] = ACTIONS(1830), + [aux_sym_cmd_identifier_token21] = ACTIONS(1830), + [aux_sym_cmd_identifier_token22] = ACTIONS(1830), + [aux_sym_cmd_identifier_token23] = ACTIONS(1830), + [aux_sym_cmd_identifier_token24] = ACTIONS(1832), + [aux_sym_cmd_identifier_token25] = ACTIONS(1830), + [aux_sym_cmd_identifier_token26] = ACTIONS(1832), + [aux_sym_cmd_identifier_token27] = ACTIONS(1830), + [aux_sym_cmd_identifier_token28] = ACTIONS(1830), + [aux_sym_cmd_identifier_token29] = ACTIONS(1830), + [aux_sym_cmd_identifier_token30] = ACTIONS(1830), + [aux_sym_cmd_identifier_token31] = ACTIONS(1832), + [aux_sym_cmd_identifier_token32] = ACTIONS(1832), + [aux_sym_cmd_identifier_token33] = ACTIONS(1832), + [aux_sym_cmd_identifier_token34] = ACTIONS(1832), + [aux_sym_cmd_identifier_token35] = ACTIONS(1832), + [aux_sym_cmd_identifier_token36] = ACTIONS(1830), + [anon_sym_true] = ACTIONS(1832), + [anon_sym_false] = ACTIONS(1832), + [anon_sym_null] = ACTIONS(1832), + [aux_sym_cmd_identifier_token38] = ACTIONS(1830), + [aux_sym_cmd_identifier_token39] = ACTIONS(1832), + [aux_sym_cmd_identifier_token40] = ACTIONS(1832), + [sym__newline] = ACTIONS(1765), + [anon_sym_SEMI] = ACTIONS(1834), + [anon_sym_def] = ACTIONS(1830), + [anon_sym_export_DASHenv] = ACTIONS(1830), + [anon_sym_extern] = ACTIONS(1830), + [anon_sym_module] = ACTIONS(1830), + [anon_sym_use] = ACTIONS(1830), + [anon_sym_LBRACK] = ACTIONS(1832), + [anon_sym_LPAREN] = ACTIONS(1832), + [anon_sym_DOLLAR] = ACTIONS(1830), + [anon_sym_error] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_break] = ACTIONS(1830), + [anon_sym_continue] = ACTIONS(1830), + [anon_sym_for] = ACTIONS(1830), + [anon_sym_loop] = ACTIONS(1830), + [anon_sym_while] = ACTIONS(1830), + [anon_sym_do] = ACTIONS(1830), + [anon_sym_if] = ACTIONS(1830), + [anon_sym_match] = ACTIONS(1830), + [anon_sym_LBRACE] = ACTIONS(1832), + [anon_sym_DOT_DOT] = ACTIONS(1830), + [anon_sym_try] = ACTIONS(1830), + [anon_sym_return] = ACTIONS(1830), + [anon_sym_source] = ACTIONS(1830), + [anon_sym_source_DASHenv] = ACTIONS(1830), + [anon_sym_register] = ACTIONS(1830), + [anon_sym_hide] = ACTIONS(1830), + [anon_sym_hide_DASHenv] = ACTIONS(1830), + [anon_sym_overlay] = ACTIONS(1830), + [anon_sym_where] = ACTIONS(1832), + [aux_sym_expr_unary_token1] = ACTIONS(1832), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1832), + [anon_sym_DOT_DOT_LT] = ACTIONS(1832), + [aux_sym__val_number_decimal_token1] = ACTIONS(1830), + [aux_sym__val_number_decimal_token2] = ACTIONS(1832), + [aux_sym__val_number_decimal_token3] = ACTIONS(1832), + [aux_sym__val_number_decimal_token4] = ACTIONS(1832), + [aux_sym__val_number_token1] = ACTIONS(1832), + [aux_sym__val_number_token2] = ACTIONS(1832), + [aux_sym__val_number_token3] = ACTIONS(1832), + [anon_sym_0b] = ACTIONS(1830), + [anon_sym_0o] = ACTIONS(1830), + [anon_sym_0x] = ACTIONS(1830), + [sym_val_date] = ACTIONS(1832), + [anon_sym_DQUOTE] = ACTIONS(1832), + [sym__str_single_quotes] = ACTIONS(1832), + [sym__str_back_ticks] = ACTIONS(1832), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1832), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1832), + [aux_sym_env_var_token1] = ACTIONS(1830), + [anon_sym_CARET] = ACTIONS(1832), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1832), }, - [362] = { - [sym_cell_path] = STATE(550), - [sym_path] = STATE(527), - [sym_comment] = STATE(362), - [aux_sym_cell_path_repeat1] = STATE(425), - [anon_sym_export] = ACTIONS(1943), - [anon_sym_alias] = ACTIONS(1943), - [anon_sym_let] = ACTIONS(1943), - [anon_sym_let_DASHenv] = ACTIONS(1943), - [anon_sym_mut] = ACTIONS(1943), - [anon_sym_const] = ACTIONS(1943), - [aux_sym_cmd_identifier_token1] = ACTIONS(1943), - [aux_sym_cmd_identifier_token2] = ACTIONS(1943), - [aux_sym_cmd_identifier_token3] = ACTIONS(1943), - [aux_sym_cmd_identifier_token4] = ACTIONS(1943), - [aux_sym_cmd_identifier_token5] = ACTIONS(1943), - [aux_sym_cmd_identifier_token6] = ACTIONS(1943), - [aux_sym_cmd_identifier_token7] = ACTIONS(1943), - [aux_sym_cmd_identifier_token8] = ACTIONS(1943), - [aux_sym_cmd_identifier_token9] = ACTIONS(1943), - [aux_sym_cmd_identifier_token10] = ACTIONS(1943), - [aux_sym_cmd_identifier_token11] = ACTIONS(1943), - [aux_sym_cmd_identifier_token12] = ACTIONS(1943), - [aux_sym_cmd_identifier_token13] = ACTIONS(1943), - [aux_sym_cmd_identifier_token14] = ACTIONS(1943), - [aux_sym_cmd_identifier_token15] = ACTIONS(1943), - [aux_sym_cmd_identifier_token16] = ACTIONS(1943), - [aux_sym_cmd_identifier_token17] = ACTIONS(1943), - [aux_sym_cmd_identifier_token18] = ACTIONS(1943), - [aux_sym_cmd_identifier_token19] = ACTIONS(1943), - [aux_sym_cmd_identifier_token20] = ACTIONS(1943), - [aux_sym_cmd_identifier_token21] = ACTIONS(1943), - [aux_sym_cmd_identifier_token22] = ACTIONS(1943), - [aux_sym_cmd_identifier_token23] = ACTIONS(1943), - [aux_sym_cmd_identifier_token24] = ACTIONS(1943), - [aux_sym_cmd_identifier_token25] = ACTIONS(1943), - [aux_sym_cmd_identifier_token26] = ACTIONS(1943), - [aux_sym_cmd_identifier_token27] = ACTIONS(1943), - [aux_sym_cmd_identifier_token28] = ACTIONS(1943), - [aux_sym_cmd_identifier_token29] = ACTIONS(1943), - [aux_sym_cmd_identifier_token30] = ACTIONS(1943), - [aux_sym_cmd_identifier_token31] = ACTIONS(1943), - [aux_sym_cmd_identifier_token32] = ACTIONS(1943), - [aux_sym_cmd_identifier_token33] = ACTIONS(1943), - [aux_sym_cmd_identifier_token34] = ACTIONS(1943), - [aux_sym_cmd_identifier_token35] = ACTIONS(1943), - [aux_sym_cmd_identifier_token36] = ACTIONS(1943), - [anon_sym_true] = ACTIONS(1943), - [anon_sym_false] = ACTIONS(1943), - [anon_sym_null] = ACTIONS(1943), - [aux_sym_cmd_identifier_token38] = ACTIONS(1943), - [aux_sym_cmd_identifier_token39] = ACTIONS(1943), - [aux_sym_cmd_identifier_token40] = ACTIONS(1943), - [anon_sym_def] = ACTIONS(1943), - [anon_sym_export_DASHenv] = ACTIONS(1943), - [anon_sym_extern] = ACTIONS(1943), - [anon_sym_module] = ACTIONS(1943), - [anon_sym_use] = ACTIONS(1943), - [anon_sym_LPAREN] = ACTIONS(1943), - [anon_sym_DOLLAR] = ACTIONS(1943), - [anon_sym_error] = ACTIONS(1943), - [anon_sym_list] = ACTIONS(1943), - [anon_sym_DASH] = ACTIONS(1943), - [anon_sym_break] = ACTIONS(1943), - [anon_sym_continue] = ACTIONS(1943), - [anon_sym_for] = ACTIONS(1943), - [anon_sym_in] = ACTIONS(1943), - [anon_sym_loop] = ACTIONS(1943), - [anon_sym_make] = ACTIONS(1943), - [anon_sym_while] = ACTIONS(1943), - [anon_sym_do] = ACTIONS(1943), - [anon_sym_if] = ACTIONS(1943), - [anon_sym_else] = ACTIONS(1943), - [anon_sym_match] = ACTIONS(1943), - [anon_sym_RBRACE] = ACTIONS(1943), - [anon_sym_try] = ACTIONS(1943), - [anon_sym_catch] = ACTIONS(1943), - [anon_sym_return] = ACTIONS(1943), - [anon_sym_source] = ACTIONS(1943), - [anon_sym_source_DASHenv] = ACTIONS(1943), - [anon_sym_register] = ACTIONS(1943), - [anon_sym_hide] = ACTIONS(1943), - [anon_sym_hide_DASHenv] = ACTIONS(1943), - [anon_sym_overlay] = ACTIONS(1943), - [anon_sym_new] = ACTIONS(1943), - [anon_sym_as] = ACTIONS(1943), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1943), - [anon_sym_DOT] = ACTIONS(1824), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1943), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1943), - [aux_sym__val_number_decimal_token3] = ACTIONS(1943), - [aux_sym__val_number_decimal_token4] = ACTIONS(1943), - [aux_sym__val_number_token1] = ACTIONS(1943), - [aux_sym__val_number_token2] = ACTIONS(1943), - [aux_sym__val_number_token3] = ACTIONS(1943), - [anon_sym_DQUOTE] = ACTIONS(1943), - [sym__str_single_quotes] = ACTIONS(1943), - [sym__str_back_ticks] = ACTIONS(1943), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1943), - [sym__entry_separator] = ACTIONS(1945), - [anon_sym_PLUS] = ACTIONS(1943), - [anon_sym_POUND] = ACTIONS(3), + [322] = { + [sym_cell_path] = STATE(511), + [sym_path] = STATE(468), + [sym_comment] = STATE(322), + [aux_sym_cell_path_repeat1] = STATE(327), + [anon_sym_export] = ACTIONS(1021), + [anon_sym_alias] = ACTIONS(1021), + [anon_sym_let] = ACTIONS(1021), + [anon_sym_let_DASHenv] = ACTIONS(1021), + [anon_sym_mut] = ACTIONS(1021), + [anon_sym_const] = ACTIONS(1021), + [aux_sym_cmd_identifier_token1] = ACTIONS(1021), + [aux_sym_cmd_identifier_token2] = ACTIONS(1021), + [aux_sym_cmd_identifier_token3] = ACTIONS(1021), + [aux_sym_cmd_identifier_token4] = ACTIONS(1021), + [aux_sym_cmd_identifier_token5] = ACTIONS(1021), + [aux_sym_cmd_identifier_token6] = ACTIONS(1021), + [aux_sym_cmd_identifier_token7] = ACTIONS(1021), + [aux_sym_cmd_identifier_token8] = ACTIONS(1021), + [aux_sym_cmd_identifier_token9] = ACTIONS(1021), + [aux_sym_cmd_identifier_token10] = ACTIONS(1021), + [aux_sym_cmd_identifier_token11] = ACTIONS(1021), + [aux_sym_cmd_identifier_token12] = ACTIONS(1021), + [aux_sym_cmd_identifier_token13] = ACTIONS(1021), + [aux_sym_cmd_identifier_token14] = ACTIONS(1021), + [aux_sym_cmd_identifier_token15] = ACTIONS(1021), + [aux_sym_cmd_identifier_token16] = ACTIONS(1021), + [aux_sym_cmd_identifier_token17] = ACTIONS(1021), + [aux_sym_cmd_identifier_token18] = ACTIONS(1021), + [aux_sym_cmd_identifier_token19] = ACTIONS(1021), + [aux_sym_cmd_identifier_token20] = ACTIONS(1021), + [aux_sym_cmd_identifier_token21] = ACTIONS(1021), + [aux_sym_cmd_identifier_token22] = ACTIONS(1021), + [aux_sym_cmd_identifier_token23] = ACTIONS(1021), + [aux_sym_cmd_identifier_token24] = ACTIONS(1021), + [aux_sym_cmd_identifier_token25] = ACTIONS(1021), + [aux_sym_cmd_identifier_token26] = ACTIONS(1021), + [aux_sym_cmd_identifier_token27] = ACTIONS(1021), + [aux_sym_cmd_identifier_token28] = ACTIONS(1021), + [aux_sym_cmd_identifier_token29] = ACTIONS(1021), + [aux_sym_cmd_identifier_token30] = ACTIONS(1021), + [aux_sym_cmd_identifier_token31] = ACTIONS(1021), + [aux_sym_cmd_identifier_token32] = ACTIONS(1021), + [aux_sym_cmd_identifier_token33] = ACTIONS(1021), + [aux_sym_cmd_identifier_token34] = ACTIONS(1021), + [aux_sym_cmd_identifier_token35] = ACTIONS(1021), + [aux_sym_cmd_identifier_token36] = ACTIONS(1021), + [anon_sym_true] = ACTIONS(1023), + [anon_sym_false] = ACTIONS(1023), + [anon_sym_null] = ACTIONS(1023), + [aux_sym_cmd_identifier_token38] = ACTIONS(1021), + [aux_sym_cmd_identifier_token39] = ACTIONS(1023), + [aux_sym_cmd_identifier_token40] = ACTIONS(1023), + [anon_sym_def] = ACTIONS(1021), + [anon_sym_export_DASHenv] = ACTIONS(1021), + [anon_sym_extern] = ACTIONS(1021), + [anon_sym_module] = ACTIONS(1021), + [anon_sym_use] = ACTIONS(1021), + [anon_sym_LPAREN] = ACTIONS(1023), + [anon_sym_COMMA] = ACTIONS(1023), + [anon_sym_DOLLAR] = ACTIONS(1023), + [anon_sym_error] = ACTIONS(1021), + [anon_sym_list] = ACTIONS(1021), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_break] = ACTIONS(1021), + [anon_sym_continue] = ACTIONS(1021), + [anon_sym_for] = ACTIONS(1021), + [anon_sym_in] = ACTIONS(1021), + [anon_sym_loop] = ACTIONS(1021), + [anon_sym_make] = ACTIONS(1021), + [anon_sym_while] = ACTIONS(1021), + [anon_sym_do] = ACTIONS(1021), + [anon_sym_if] = ACTIONS(1021), + [anon_sym_else] = ACTIONS(1021), + [anon_sym_match] = ACTIONS(1021), + [anon_sym_RBRACE] = ACTIONS(1023), + [anon_sym_try] = ACTIONS(1021), + [anon_sym_catch] = ACTIONS(1021), + [anon_sym_return] = ACTIONS(1021), + [anon_sym_source] = ACTIONS(1021), + [anon_sym_source_DASHenv] = ACTIONS(1021), + [anon_sym_register] = ACTIONS(1021), + [anon_sym_hide] = ACTIONS(1021), + [anon_sym_hide_DASHenv] = ACTIONS(1021), + [anon_sym_overlay] = ACTIONS(1021), + [anon_sym_new] = ACTIONS(1021), + [anon_sym_as] = ACTIONS(1021), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1023), + [anon_sym_DOT] = ACTIONS(1836), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1023), + [aux_sym__val_number_decimal_token1] = ACTIONS(1021), + [aux_sym__val_number_decimal_token2] = ACTIONS(1023), + [aux_sym__val_number_decimal_token3] = ACTIONS(1023), + [aux_sym__val_number_decimal_token4] = ACTIONS(1023), + [aux_sym__val_number_token1] = ACTIONS(1023), + [aux_sym__val_number_token2] = ACTIONS(1023), + [aux_sym__val_number_token3] = ACTIONS(1023), + [anon_sym_DQUOTE] = ACTIONS(1023), + [sym__str_single_quotes] = ACTIONS(1023), + [sym__str_back_ticks] = ACTIONS(1023), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1023), + [aux_sym_record_entry_token1] = ACTIONS(1023), + [anon_sym_PLUS] = ACTIONS(1021), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1023), }, - [363] = { - [sym_cell_path] = STATE(622), - [sym_path] = STATE(527), - [sym_comment] = STATE(363), - [aux_sym_cell_path_repeat1] = STATE(425), - [anon_sym_export] = ACTIONS(1005), - [anon_sym_alias] = ACTIONS(1005), - [anon_sym_let] = ACTIONS(1005), - [anon_sym_let_DASHenv] = ACTIONS(1005), - [anon_sym_mut] = ACTIONS(1005), - [anon_sym_const] = ACTIONS(1005), - [aux_sym_cmd_identifier_token1] = ACTIONS(1005), - [aux_sym_cmd_identifier_token2] = ACTIONS(1005), - [aux_sym_cmd_identifier_token3] = ACTIONS(1005), - [aux_sym_cmd_identifier_token4] = ACTIONS(1005), - [aux_sym_cmd_identifier_token5] = ACTIONS(1005), - [aux_sym_cmd_identifier_token6] = ACTIONS(1005), - [aux_sym_cmd_identifier_token7] = ACTIONS(1005), - [aux_sym_cmd_identifier_token8] = ACTIONS(1005), - [aux_sym_cmd_identifier_token9] = ACTIONS(1005), - [aux_sym_cmd_identifier_token10] = ACTIONS(1005), - [aux_sym_cmd_identifier_token11] = ACTIONS(1005), - [aux_sym_cmd_identifier_token12] = ACTIONS(1005), - [aux_sym_cmd_identifier_token13] = ACTIONS(1005), - [aux_sym_cmd_identifier_token14] = ACTIONS(1005), - [aux_sym_cmd_identifier_token15] = ACTIONS(1005), - [aux_sym_cmd_identifier_token16] = ACTIONS(1005), - [aux_sym_cmd_identifier_token17] = ACTIONS(1005), - [aux_sym_cmd_identifier_token18] = ACTIONS(1005), - [aux_sym_cmd_identifier_token19] = ACTIONS(1005), - [aux_sym_cmd_identifier_token20] = ACTIONS(1005), - [aux_sym_cmd_identifier_token21] = ACTIONS(1005), - [aux_sym_cmd_identifier_token22] = ACTIONS(1005), - [aux_sym_cmd_identifier_token23] = ACTIONS(1005), - [aux_sym_cmd_identifier_token24] = ACTIONS(1005), - [aux_sym_cmd_identifier_token25] = ACTIONS(1005), - [aux_sym_cmd_identifier_token26] = ACTIONS(1005), - [aux_sym_cmd_identifier_token27] = ACTIONS(1005), - [aux_sym_cmd_identifier_token28] = ACTIONS(1005), - [aux_sym_cmd_identifier_token29] = ACTIONS(1005), - [aux_sym_cmd_identifier_token30] = ACTIONS(1005), - [aux_sym_cmd_identifier_token31] = ACTIONS(1005), - [aux_sym_cmd_identifier_token32] = ACTIONS(1005), - [aux_sym_cmd_identifier_token33] = ACTIONS(1005), - [aux_sym_cmd_identifier_token34] = ACTIONS(1005), - [aux_sym_cmd_identifier_token35] = ACTIONS(1005), - [aux_sym_cmd_identifier_token36] = ACTIONS(1005), - [anon_sym_true] = ACTIONS(1005), - [anon_sym_false] = ACTIONS(1005), - [anon_sym_null] = ACTIONS(1005), - [aux_sym_cmd_identifier_token38] = ACTIONS(1005), - [aux_sym_cmd_identifier_token39] = ACTIONS(1005), - [aux_sym_cmd_identifier_token40] = ACTIONS(1005), - [anon_sym_def] = ACTIONS(1005), - [anon_sym_export_DASHenv] = ACTIONS(1005), - [anon_sym_extern] = ACTIONS(1005), - [anon_sym_module] = ACTIONS(1005), - [anon_sym_use] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1005), - [anon_sym_DOLLAR] = ACTIONS(1005), - [anon_sym_error] = ACTIONS(1005), - [anon_sym_list] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_break] = ACTIONS(1005), - [anon_sym_continue] = ACTIONS(1005), - [anon_sym_for] = ACTIONS(1005), - [anon_sym_in] = ACTIONS(1005), - [anon_sym_loop] = ACTIONS(1005), - [anon_sym_make] = ACTIONS(1005), - [anon_sym_while] = ACTIONS(1005), - [anon_sym_do] = ACTIONS(1005), - [anon_sym_if] = ACTIONS(1005), - [anon_sym_else] = ACTIONS(1005), - [anon_sym_match] = ACTIONS(1005), - [anon_sym_RBRACE] = ACTIONS(1005), - [anon_sym_try] = ACTIONS(1005), - [anon_sym_catch] = ACTIONS(1005), - [anon_sym_return] = ACTIONS(1005), - [anon_sym_source] = ACTIONS(1005), - [anon_sym_source_DASHenv] = ACTIONS(1005), - [anon_sym_register] = ACTIONS(1005), - [anon_sym_hide] = ACTIONS(1005), - [anon_sym_hide_DASHenv] = ACTIONS(1005), - [anon_sym_overlay] = ACTIONS(1005), - [anon_sym_new] = ACTIONS(1005), - [anon_sym_as] = ACTIONS(1005), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1005), - [anon_sym_DOT] = ACTIONS(1824), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1005), - [aux_sym__val_number_decimal_token1] = ACTIONS(1005), - [aux_sym__val_number_decimal_token2] = ACTIONS(1005), - [aux_sym__val_number_decimal_token3] = ACTIONS(1005), - [aux_sym__val_number_decimal_token4] = ACTIONS(1005), - [aux_sym__val_number_token1] = ACTIONS(1005), - [aux_sym__val_number_token2] = ACTIONS(1005), - [aux_sym__val_number_token3] = ACTIONS(1005), - [anon_sym_DQUOTE] = ACTIONS(1005), - [sym__str_single_quotes] = ACTIONS(1005), - [sym__str_back_ticks] = ACTIONS(1005), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1005), - [sym__entry_separator] = ACTIONS(1007), - [anon_sym_PLUS] = ACTIONS(1005), + [323] = { + [sym_comment] = STATE(323), + [anon_sym_export] = ACTIONS(1715), + [anon_sym_alias] = ACTIONS(1715), + [anon_sym_let] = ACTIONS(1715), + [anon_sym_let_DASHenv] = ACTIONS(1715), + [anon_sym_mut] = ACTIONS(1715), + [anon_sym_const] = ACTIONS(1715), + [aux_sym_cmd_identifier_token1] = ACTIONS(1715), + [aux_sym_cmd_identifier_token2] = ACTIONS(1715), + [aux_sym_cmd_identifier_token3] = ACTIONS(1715), + [aux_sym_cmd_identifier_token4] = ACTIONS(1715), + [aux_sym_cmd_identifier_token5] = ACTIONS(1715), + [aux_sym_cmd_identifier_token6] = ACTIONS(1715), + [aux_sym_cmd_identifier_token7] = ACTIONS(1715), + [aux_sym_cmd_identifier_token8] = ACTIONS(1715), + [aux_sym_cmd_identifier_token9] = ACTIONS(1715), + [aux_sym_cmd_identifier_token10] = ACTIONS(1715), + [aux_sym_cmd_identifier_token11] = ACTIONS(1715), + [aux_sym_cmd_identifier_token12] = ACTIONS(1715), + [aux_sym_cmd_identifier_token13] = ACTIONS(1715), + [aux_sym_cmd_identifier_token14] = ACTIONS(1715), + [aux_sym_cmd_identifier_token15] = ACTIONS(1715), + [aux_sym_cmd_identifier_token16] = ACTIONS(1715), + [aux_sym_cmd_identifier_token17] = ACTIONS(1715), + [aux_sym_cmd_identifier_token18] = ACTIONS(1715), + [aux_sym_cmd_identifier_token19] = ACTIONS(1715), + [aux_sym_cmd_identifier_token20] = ACTIONS(1715), + [aux_sym_cmd_identifier_token21] = ACTIONS(1715), + [aux_sym_cmd_identifier_token22] = ACTIONS(1715), + [aux_sym_cmd_identifier_token23] = ACTIONS(1715), + [aux_sym_cmd_identifier_token24] = ACTIONS(1715), + [aux_sym_cmd_identifier_token25] = ACTIONS(1715), + [aux_sym_cmd_identifier_token26] = ACTIONS(1715), + [aux_sym_cmd_identifier_token27] = ACTIONS(1715), + [aux_sym_cmd_identifier_token28] = ACTIONS(1715), + [aux_sym_cmd_identifier_token29] = ACTIONS(1715), + [aux_sym_cmd_identifier_token30] = ACTIONS(1715), + [aux_sym_cmd_identifier_token31] = ACTIONS(1715), + [aux_sym_cmd_identifier_token32] = ACTIONS(1715), + [aux_sym_cmd_identifier_token33] = ACTIONS(1715), + [aux_sym_cmd_identifier_token34] = ACTIONS(1715), + [aux_sym_cmd_identifier_token35] = ACTIONS(1715), + [aux_sym_cmd_identifier_token36] = ACTIONS(1715), + [anon_sym_true] = ACTIONS(1715), + [anon_sym_false] = ACTIONS(1715), + [anon_sym_null] = ACTIONS(1715), + [aux_sym_cmd_identifier_token38] = ACTIONS(1715), + [aux_sym_cmd_identifier_token39] = ACTIONS(1715), + [aux_sym_cmd_identifier_token40] = ACTIONS(1715), + [anon_sym_def] = ACTIONS(1715), + [anon_sym_export_DASHenv] = ACTIONS(1715), + [anon_sym_extern] = ACTIONS(1715), + [anon_sym_module] = ACTIONS(1715), + [anon_sym_use] = ACTIONS(1715), + [anon_sym_LPAREN] = ACTIONS(1715), + [anon_sym_DOLLAR] = ACTIONS(1715), + [anon_sym_error] = ACTIONS(1715), + [anon_sym_list] = ACTIONS(1715), + [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_break] = ACTIONS(1715), + [anon_sym_continue] = ACTIONS(1715), + [anon_sym_for] = ACTIONS(1715), + [anon_sym_in] = ACTIONS(1715), + [anon_sym_loop] = ACTIONS(1715), + [anon_sym_make] = ACTIONS(1715), + [anon_sym_while] = ACTIONS(1715), + [anon_sym_do] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1715), + [anon_sym_else] = ACTIONS(1715), + [anon_sym_match] = ACTIONS(1715), + [anon_sym_RBRACE] = ACTIONS(1715), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_catch] = ACTIONS(1715), + [anon_sym_return] = ACTIONS(1715), + [anon_sym_source] = ACTIONS(1715), + [anon_sym_source_DASHenv] = ACTIONS(1715), + [anon_sym_register] = ACTIONS(1715), + [anon_sym_hide] = ACTIONS(1715), + [anon_sym_hide_DASHenv] = ACTIONS(1715), + [anon_sym_overlay] = ACTIONS(1715), + [anon_sym_new] = ACTIONS(1715), + [anon_sym_as] = ACTIONS(1715), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1715), + [anon_sym_DOT_DOT2] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1838), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1717), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1717), + [aux_sym__immediate_decimal_token2] = ACTIONS(1840), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1715), + [aux_sym__val_number_decimal_token1] = ACTIONS(1715), + [aux_sym__val_number_decimal_token2] = ACTIONS(1715), + [aux_sym__val_number_decimal_token3] = ACTIONS(1715), + [aux_sym__val_number_decimal_token4] = ACTIONS(1715), + [aux_sym__val_number_token1] = ACTIONS(1715), + [aux_sym__val_number_token2] = ACTIONS(1715), + [aux_sym__val_number_token3] = ACTIONS(1715), + [anon_sym_DQUOTE] = ACTIONS(1715), + [sym__str_single_quotes] = ACTIONS(1715), + [sym__str_back_ticks] = ACTIONS(1715), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1715), + [sym__entry_separator] = ACTIONS(1717), + [anon_sym_PLUS] = ACTIONS(1715), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1717), }, - [364] = { - [sym_cell_path] = STATE(522), - [sym_path] = STATE(527), - [sym_comment] = STATE(364), - [aux_sym_cell_path_repeat1] = STATE(425), - [anon_sym_export] = ACTIONS(1947), - [anon_sym_alias] = ACTIONS(1947), - [anon_sym_let] = ACTIONS(1947), - [anon_sym_let_DASHenv] = ACTIONS(1947), - [anon_sym_mut] = ACTIONS(1947), - [anon_sym_const] = ACTIONS(1947), - [aux_sym_cmd_identifier_token1] = ACTIONS(1947), - [aux_sym_cmd_identifier_token2] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1947), - [aux_sym_cmd_identifier_token4] = ACTIONS(1947), - [aux_sym_cmd_identifier_token5] = ACTIONS(1947), - [aux_sym_cmd_identifier_token6] = ACTIONS(1947), - [aux_sym_cmd_identifier_token7] = ACTIONS(1947), - [aux_sym_cmd_identifier_token8] = ACTIONS(1947), - [aux_sym_cmd_identifier_token9] = ACTIONS(1947), - [aux_sym_cmd_identifier_token10] = ACTIONS(1947), - [aux_sym_cmd_identifier_token11] = ACTIONS(1947), - [aux_sym_cmd_identifier_token12] = ACTIONS(1947), - [aux_sym_cmd_identifier_token13] = ACTIONS(1947), - [aux_sym_cmd_identifier_token14] = ACTIONS(1947), - [aux_sym_cmd_identifier_token15] = ACTIONS(1947), - [aux_sym_cmd_identifier_token16] = ACTIONS(1947), - [aux_sym_cmd_identifier_token17] = ACTIONS(1947), - [aux_sym_cmd_identifier_token18] = ACTIONS(1947), - [aux_sym_cmd_identifier_token19] = ACTIONS(1947), - [aux_sym_cmd_identifier_token20] = ACTIONS(1947), - [aux_sym_cmd_identifier_token21] = ACTIONS(1947), - [aux_sym_cmd_identifier_token22] = ACTIONS(1947), - [aux_sym_cmd_identifier_token23] = ACTIONS(1947), - [aux_sym_cmd_identifier_token24] = ACTIONS(1947), - [aux_sym_cmd_identifier_token25] = ACTIONS(1947), - [aux_sym_cmd_identifier_token26] = ACTIONS(1947), - [aux_sym_cmd_identifier_token27] = ACTIONS(1947), - [aux_sym_cmd_identifier_token28] = ACTIONS(1947), - [aux_sym_cmd_identifier_token29] = ACTIONS(1947), - [aux_sym_cmd_identifier_token30] = ACTIONS(1947), - [aux_sym_cmd_identifier_token31] = ACTIONS(1947), - [aux_sym_cmd_identifier_token32] = ACTIONS(1947), - [aux_sym_cmd_identifier_token33] = ACTIONS(1947), - [aux_sym_cmd_identifier_token34] = ACTIONS(1947), - [aux_sym_cmd_identifier_token35] = ACTIONS(1947), - [aux_sym_cmd_identifier_token36] = ACTIONS(1947), - [anon_sym_true] = ACTIONS(1947), - [anon_sym_false] = ACTIONS(1947), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token38] = ACTIONS(1947), - [aux_sym_cmd_identifier_token39] = ACTIONS(1947), - [aux_sym_cmd_identifier_token40] = ACTIONS(1947), - [anon_sym_def] = ACTIONS(1947), - [anon_sym_export_DASHenv] = ACTIONS(1947), - [anon_sym_extern] = ACTIONS(1947), - [anon_sym_module] = ACTIONS(1947), - [anon_sym_use] = ACTIONS(1947), - [anon_sym_LPAREN] = ACTIONS(1947), - [anon_sym_DOLLAR] = ACTIONS(1947), - [anon_sym_error] = ACTIONS(1947), - [anon_sym_list] = ACTIONS(1947), - [anon_sym_DASH] = ACTIONS(1947), - [anon_sym_break] = ACTIONS(1947), - [anon_sym_continue] = ACTIONS(1947), - [anon_sym_for] = ACTIONS(1947), - [anon_sym_in] = ACTIONS(1947), - [anon_sym_loop] = ACTIONS(1947), - [anon_sym_make] = ACTIONS(1947), - [anon_sym_while] = ACTIONS(1947), - [anon_sym_do] = ACTIONS(1947), - [anon_sym_if] = ACTIONS(1947), - [anon_sym_else] = ACTIONS(1947), - [anon_sym_match] = ACTIONS(1947), - [anon_sym_RBRACE] = ACTIONS(1947), - [anon_sym_try] = ACTIONS(1947), - [anon_sym_catch] = ACTIONS(1947), - [anon_sym_return] = ACTIONS(1947), - [anon_sym_source] = ACTIONS(1947), - [anon_sym_source_DASHenv] = ACTIONS(1947), - [anon_sym_register] = ACTIONS(1947), - [anon_sym_hide] = ACTIONS(1947), - [anon_sym_hide_DASHenv] = ACTIONS(1947), - [anon_sym_overlay] = ACTIONS(1947), - [anon_sym_new] = ACTIONS(1947), - [anon_sym_as] = ACTIONS(1947), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1947), - [anon_sym_DOT] = ACTIONS(1824), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1947), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1947), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(1947), - [aux_sym__val_number_token2] = ACTIONS(1947), - [aux_sym__val_number_token3] = ACTIONS(1947), - [anon_sym_DQUOTE] = ACTIONS(1947), - [sym__str_single_quotes] = ACTIONS(1947), - [sym__str_back_ticks] = ACTIONS(1947), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1947), - [sym__entry_separator] = ACTIONS(1949), - [anon_sym_PLUS] = ACTIONS(1947), + [324] = { + [sym_comment] = STATE(324), + [anon_sym_export] = ACTIONS(1842), + [anon_sym_alias] = ACTIONS(1842), + [anon_sym_let] = ACTIONS(1842), + [anon_sym_let_DASHenv] = ACTIONS(1842), + [anon_sym_mut] = ACTIONS(1842), + [anon_sym_const] = ACTIONS(1842), + [aux_sym_cmd_identifier_token1] = ACTIONS(1842), + [aux_sym_cmd_identifier_token2] = ACTIONS(1842), + [aux_sym_cmd_identifier_token3] = ACTIONS(1842), + [aux_sym_cmd_identifier_token4] = ACTIONS(1842), + [aux_sym_cmd_identifier_token5] = ACTIONS(1842), + [aux_sym_cmd_identifier_token6] = ACTIONS(1842), + [aux_sym_cmd_identifier_token7] = ACTIONS(1842), + [aux_sym_cmd_identifier_token8] = ACTIONS(1842), + [aux_sym_cmd_identifier_token9] = ACTIONS(1842), + [aux_sym_cmd_identifier_token10] = ACTIONS(1842), + [aux_sym_cmd_identifier_token11] = ACTIONS(1842), + [aux_sym_cmd_identifier_token12] = ACTIONS(1842), + [aux_sym_cmd_identifier_token13] = ACTIONS(1842), + [aux_sym_cmd_identifier_token14] = ACTIONS(1842), + [aux_sym_cmd_identifier_token15] = ACTIONS(1842), + [aux_sym_cmd_identifier_token16] = ACTIONS(1842), + [aux_sym_cmd_identifier_token17] = ACTIONS(1842), + [aux_sym_cmd_identifier_token18] = ACTIONS(1842), + [aux_sym_cmd_identifier_token19] = ACTIONS(1842), + [aux_sym_cmd_identifier_token20] = ACTIONS(1842), + [aux_sym_cmd_identifier_token21] = ACTIONS(1842), + [aux_sym_cmd_identifier_token22] = ACTIONS(1842), + [aux_sym_cmd_identifier_token23] = ACTIONS(1842), + [aux_sym_cmd_identifier_token24] = ACTIONS(1842), + [aux_sym_cmd_identifier_token25] = ACTIONS(1842), + [aux_sym_cmd_identifier_token26] = ACTIONS(1842), + [aux_sym_cmd_identifier_token27] = ACTIONS(1842), + [aux_sym_cmd_identifier_token28] = ACTIONS(1842), + [aux_sym_cmd_identifier_token29] = ACTIONS(1842), + [aux_sym_cmd_identifier_token30] = ACTIONS(1842), + [aux_sym_cmd_identifier_token31] = ACTIONS(1842), + [aux_sym_cmd_identifier_token32] = ACTIONS(1842), + [aux_sym_cmd_identifier_token33] = ACTIONS(1842), + [aux_sym_cmd_identifier_token34] = ACTIONS(1842), + [aux_sym_cmd_identifier_token35] = ACTIONS(1842), + [aux_sym_cmd_identifier_token36] = ACTIONS(1842), + [anon_sym_true] = ACTIONS(1842), + [anon_sym_false] = ACTIONS(1842), + [anon_sym_null] = ACTIONS(1842), + [aux_sym_cmd_identifier_token38] = ACTIONS(1842), + [aux_sym_cmd_identifier_token39] = ACTIONS(1842), + [aux_sym_cmd_identifier_token40] = ACTIONS(1842), + [anon_sym_def] = ACTIONS(1842), + [anon_sym_export_DASHenv] = ACTIONS(1842), + [anon_sym_extern] = ACTIONS(1842), + [anon_sym_module] = ACTIONS(1842), + [anon_sym_use] = ACTIONS(1842), + [anon_sym_LPAREN] = ACTIONS(1842), + [anon_sym_DOLLAR] = ACTIONS(1842), + [anon_sym_error] = ACTIONS(1842), + [anon_sym_list] = ACTIONS(1842), + [anon_sym_DASH] = ACTIONS(1842), + [anon_sym_break] = ACTIONS(1842), + [anon_sym_continue] = ACTIONS(1842), + [anon_sym_for] = ACTIONS(1842), + [anon_sym_in] = ACTIONS(1842), + [anon_sym_loop] = ACTIONS(1842), + [anon_sym_make] = ACTIONS(1842), + [anon_sym_while] = ACTIONS(1842), + [anon_sym_do] = ACTIONS(1842), + [anon_sym_if] = ACTIONS(1842), + [anon_sym_else] = ACTIONS(1842), + [anon_sym_match] = ACTIONS(1842), + [anon_sym_RBRACE] = ACTIONS(1842), + [anon_sym_try] = ACTIONS(1842), + [anon_sym_catch] = ACTIONS(1842), + [anon_sym_return] = ACTIONS(1842), + [anon_sym_source] = ACTIONS(1842), + [anon_sym_source_DASHenv] = ACTIONS(1842), + [anon_sym_register] = ACTIONS(1842), + [anon_sym_hide] = ACTIONS(1842), + [anon_sym_hide_DASHenv] = ACTIONS(1842), + [anon_sym_overlay] = ACTIONS(1842), + [anon_sym_new] = ACTIONS(1842), + [anon_sym_as] = ACTIONS(1842), + [anon_sym_LPAREN2] = ACTIONS(1844), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1842), + [anon_sym_DOT_DOT2] = ACTIONS(1846), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1848), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1848), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1842), + [aux_sym__val_number_decimal_token1] = ACTIONS(1842), + [aux_sym__val_number_decimal_token2] = ACTIONS(1842), + [aux_sym__val_number_decimal_token3] = ACTIONS(1842), + [aux_sym__val_number_decimal_token4] = ACTIONS(1842), + [aux_sym__val_number_token1] = ACTIONS(1842), + [aux_sym__val_number_token2] = ACTIONS(1842), + [aux_sym__val_number_token3] = ACTIONS(1842), + [anon_sym_DQUOTE] = ACTIONS(1842), + [sym__str_single_quotes] = ACTIONS(1842), + [sym__str_back_ticks] = ACTIONS(1842), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1842), + [sym__entry_separator] = ACTIONS(1850), + [anon_sym_PLUS] = ACTIONS(1842), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1852), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1850), }, - [365] = { - [sym_comment] = STATE(365), - [anon_sym_export] = ACTIONS(1022), - [anon_sym_alias] = ACTIONS(1022), - [anon_sym_let] = ACTIONS(1022), - [anon_sym_let_DASHenv] = ACTIONS(1022), - [anon_sym_mut] = ACTIONS(1022), - [anon_sym_const] = ACTIONS(1022), - [aux_sym_cmd_identifier_token1] = ACTIONS(1022), - [aux_sym_cmd_identifier_token2] = ACTIONS(1022), - [aux_sym_cmd_identifier_token3] = ACTIONS(1022), - [aux_sym_cmd_identifier_token4] = ACTIONS(1022), - [aux_sym_cmd_identifier_token5] = ACTIONS(1022), - [aux_sym_cmd_identifier_token6] = ACTIONS(1022), - [aux_sym_cmd_identifier_token7] = ACTIONS(1022), - [aux_sym_cmd_identifier_token8] = ACTIONS(1022), - [aux_sym_cmd_identifier_token9] = ACTIONS(1022), - [aux_sym_cmd_identifier_token10] = ACTIONS(1022), - [aux_sym_cmd_identifier_token11] = ACTIONS(1022), - [aux_sym_cmd_identifier_token12] = ACTIONS(1022), - [aux_sym_cmd_identifier_token13] = ACTIONS(1022), - [aux_sym_cmd_identifier_token14] = ACTIONS(1022), - [aux_sym_cmd_identifier_token15] = ACTIONS(1022), - [aux_sym_cmd_identifier_token16] = ACTIONS(1022), - [aux_sym_cmd_identifier_token17] = ACTIONS(1022), - [aux_sym_cmd_identifier_token18] = ACTIONS(1022), - [aux_sym_cmd_identifier_token19] = ACTIONS(1022), - [aux_sym_cmd_identifier_token20] = ACTIONS(1022), - [aux_sym_cmd_identifier_token21] = ACTIONS(1022), - [aux_sym_cmd_identifier_token22] = ACTIONS(1022), - [aux_sym_cmd_identifier_token23] = ACTIONS(1022), - [aux_sym_cmd_identifier_token24] = ACTIONS(1022), - [aux_sym_cmd_identifier_token25] = ACTIONS(1022), - [aux_sym_cmd_identifier_token26] = ACTIONS(1022), - [aux_sym_cmd_identifier_token27] = ACTIONS(1022), - [aux_sym_cmd_identifier_token28] = ACTIONS(1022), - [aux_sym_cmd_identifier_token29] = ACTIONS(1022), - [aux_sym_cmd_identifier_token30] = ACTIONS(1022), - [aux_sym_cmd_identifier_token31] = ACTIONS(1022), - [aux_sym_cmd_identifier_token32] = ACTIONS(1022), - [aux_sym_cmd_identifier_token33] = ACTIONS(1022), - [aux_sym_cmd_identifier_token34] = ACTIONS(1022), - [aux_sym_cmd_identifier_token35] = ACTIONS(1022), - [aux_sym_cmd_identifier_token36] = ACTIONS(1022), - [anon_sym_true] = ACTIONS(1024), - [anon_sym_false] = ACTIONS(1024), - [anon_sym_null] = ACTIONS(1024), - [aux_sym_cmd_identifier_token38] = ACTIONS(1022), - [aux_sym_cmd_identifier_token39] = ACTIONS(1024), - [aux_sym_cmd_identifier_token40] = ACTIONS(1024), - [anon_sym_def] = ACTIONS(1022), - [anon_sym_export_DASHenv] = ACTIONS(1022), - [anon_sym_extern] = ACTIONS(1022), - [anon_sym_module] = ACTIONS(1022), - [anon_sym_use] = ACTIONS(1022), - [anon_sym_LPAREN] = ACTIONS(1024), - [anon_sym_DOLLAR] = ACTIONS(1024), - [anon_sym_error] = ACTIONS(1022), - [anon_sym_list] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1022), - [anon_sym_break] = ACTIONS(1022), - [anon_sym_continue] = ACTIONS(1022), - [anon_sym_for] = ACTIONS(1022), - [anon_sym_in] = ACTIONS(1022), - [anon_sym_loop] = ACTIONS(1022), - [anon_sym_make] = ACTIONS(1022), - [anon_sym_while] = ACTIONS(1022), - [anon_sym_do] = ACTIONS(1022), - [anon_sym_if] = ACTIONS(1022), - [anon_sym_else] = ACTIONS(1022), - [anon_sym_match] = ACTIONS(1022), - [anon_sym_RBRACE] = ACTIONS(1024), - [anon_sym_try] = ACTIONS(1022), - [anon_sym_catch] = ACTIONS(1022), - [anon_sym_return] = ACTIONS(1022), - [anon_sym_source] = ACTIONS(1022), - [anon_sym_source_DASHenv] = ACTIONS(1022), - [anon_sym_register] = ACTIONS(1022), - [anon_sym_hide] = ACTIONS(1022), - [anon_sym_hide_DASHenv] = ACTIONS(1022), - [anon_sym_overlay] = ACTIONS(1022), - [anon_sym_new] = ACTIONS(1022), - [anon_sym_as] = ACTIONS(1022), - [anon_sym_QMARK2] = ACTIONS(1951), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1024), - [anon_sym_DOT_DOT2] = ACTIONS(1022), - [anon_sym_DOT] = ACTIONS(1022), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1024), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1024), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1024), - [aux_sym__val_number_decimal_token1] = ACTIONS(1022), - [aux_sym__val_number_decimal_token2] = ACTIONS(1024), - [aux_sym__val_number_decimal_token3] = ACTIONS(1024), - [aux_sym__val_number_decimal_token4] = ACTIONS(1024), - [aux_sym__val_number_token1] = ACTIONS(1024), - [aux_sym__val_number_token2] = ACTIONS(1024), - [aux_sym__val_number_token3] = ACTIONS(1024), - [anon_sym_DQUOTE] = ACTIONS(1024), - [sym__str_single_quotes] = ACTIONS(1024), - [sym__str_back_ticks] = ACTIONS(1024), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1024), - [anon_sym_PLUS] = ACTIONS(1022), - [anon_sym_POUND] = ACTIONS(247), - }, - [366] = { - [sym_comment] = STATE(366), - [anon_sym_export] = ACTIONS(1028), - [anon_sym_alias] = ACTIONS(1028), - [anon_sym_let] = ACTIONS(1028), - [anon_sym_let_DASHenv] = ACTIONS(1028), - [anon_sym_mut] = ACTIONS(1028), - [anon_sym_const] = ACTIONS(1028), - [aux_sym_cmd_identifier_token1] = ACTIONS(1028), - [aux_sym_cmd_identifier_token2] = ACTIONS(1028), - [aux_sym_cmd_identifier_token3] = ACTIONS(1028), - [aux_sym_cmd_identifier_token4] = ACTIONS(1028), - [aux_sym_cmd_identifier_token5] = ACTIONS(1028), - [aux_sym_cmd_identifier_token6] = ACTIONS(1028), - [aux_sym_cmd_identifier_token7] = ACTIONS(1028), - [aux_sym_cmd_identifier_token8] = ACTIONS(1028), - [aux_sym_cmd_identifier_token9] = ACTIONS(1028), - [aux_sym_cmd_identifier_token10] = ACTIONS(1028), - [aux_sym_cmd_identifier_token11] = ACTIONS(1028), - [aux_sym_cmd_identifier_token12] = ACTIONS(1028), - [aux_sym_cmd_identifier_token13] = ACTIONS(1028), - [aux_sym_cmd_identifier_token14] = ACTIONS(1028), - [aux_sym_cmd_identifier_token15] = ACTIONS(1028), - [aux_sym_cmd_identifier_token16] = ACTIONS(1028), - [aux_sym_cmd_identifier_token17] = ACTIONS(1028), - [aux_sym_cmd_identifier_token18] = ACTIONS(1028), - [aux_sym_cmd_identifier_token19] = ACTIONS(1028), - [aux_sym_cmd_identifier_token20] = ACTIONS(1028), - [aux_sym_cmd_identifier_token21] = ACTIONS(1028), - [aux_sym_cmd_identifier_token22] = ACTIONS(1028), - [aux_sym_cmd_identifier_token23] = ACTIONS(1028), - [aux_sym_cmd_identifier_token24] = ACTIONS(1028), - [aux_sym_cmd_identifier_token25] = ACTIONS(1028), - [aux_sym_cmd_identifier_token26] = ACTIONS(1028), - [aux_sym_cmd_identifier_token27] = ACTIONS(1028), - [aux_sym_cmd_identifier_token28] = ACTIONS(1028), - [aux_sym_cmd_identifier_token29] = ACTIONS(1028), - [aux_sym_cmd_identifier_token30] = ACTIONS(1028), - [aux_sym_cmd_identifier_token31] = ACTIONS(1028), - [aux_sym_cmd_identifier_token32] = ACTIONS(1028), - [aux_sym_cmd_identifier_token33] = ACTIONS(1028), - [aux_sym_cmd_identifier_token34] = ACTIONS(1028), - [aux_sym_cmd_identifier_token35] = ACTIONS(1028), - [aux_sym_cmd_identifier_token36] = ACTIONS(1028), - [anon_sym_true] = ACTIONS(1030), - [anon_sym_false] = ACTIONS(1030), - [anon_sym_null] = ACTIONS(1030), - [aux_sym_cmd_identifier_token38] = ACTIONS(1028), - [aux_sym_cmd_identifier_token39] = ACTIONS(1030), - [aux_sym_cmd_identifier_token40] = ACTIONS(1030), - [anon_sym_def] = ACTIONS(1028), - [anon_sym_export_DASHenv] = ACTIONS(1028), - [anon_sym_extern] = ACTIONS(1028), - [anon_sym_module] = ACTIONS(1028), - [anon_sym_use] = ACTIONS(1028), - [anon_sym_LPAREN] = ACTIONS(1030), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_error] = ACTIONS(1028), - [anon_sym_list] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1028), - [anon_sym_break] = ACTIONS(1028), - [anon_sym_continue] = ACTIONS(1028), - [anon_sym_for] = ACTIONS(1028), - [anon_sym_in] = ACTIONS(1028), - [anon_sym_loop] = ACTIONS(1028), - [anon_sym_make] = ACTIONS(1028), - [anon_sym_while] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1028), - [anon_sym_if] = ACTIONS(1028), - [anon_sym_else] = ACTIONS(1028), - [anon_sym_match] = ACTIONS(1028), - [anon_sym_RBRACE] = ACTIONS(1030), - [anon_sym_try] = ACTIONS(1028), - [anon_sym_catch] = ACTIONS(1028), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_source] = ACTIONS(1028), - [anon_sym_source_DASHenv] = ACTIONS(1028), - [anon_sym_register] = ACTIONS(1028), - [anon_sym_hide] = ACTIONS(1028), - [anon_sym_hide_DASHenv] = ACTIONS(1028), - [anon_sym_overlay] = ACTIONS(1028), - [anon_sym_new] = ACTIONS(1028), - [anon_sym_as] = ACTIONS(1028), - [anon_sym_QMARK2] = ACTIONS(1953), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1030), - [anon_sym_DOT_DOT2] = ACTIONS(1028), - [anon_sym_DOT] = ACTIONS(1028), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1030), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1030), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1030), - [aux_sym__val_number_decimal_token1] = ACTIONS(1028), - [aux_sym__val_number_decimal_token2] = ACTIONS(1030), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), - [aux_sym__val_number_token1] = ACTIONS(1030), - [aux_sym__val_number_token2] = ACTIONS(1030), - [aux_sym__val_number_token3] = ACTIONS(1030), - [anon_sym_DQUOTE] = ACTIONS(1030), - [sym__str_single_quotes] = ACTIONS(1030), - [sym__str_back_ticks] = ACTIONS(1030), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1030), - [anon_sym_PLUS] = ACTIONS(1028), - [anon_sym_POUND] = ACTIONS(247), + [325] = { + [sym_comment] = STATE(325), + [anon_sym_export] = ACTIONS(1715), + [anon_sym_alias] = ACTIONS(1715), + [anon_sym_let] = ACTIONS(1715), + [anon_sym_let_DASHenv] = ACTIONS(1715), + [anon_sym_mut] = ACTIONS(1715), + [anon_sym_const] = ACTIONS(1715), + [aux_sym_cmd_identifier_token1] = ACTIONS(1715), + [aux_sym_cmd_identifier_token2] = ACTIONS(1715), + [aux_sym_cmd_identifier_token3] = ACTIONS(1715), + [aux_sym_cmd_identifier_token4] = ACTIONS(1715), + [aux_sym_cmd_identifier_token5] = ACTIONS(1715), + [aux_sym_cmd_identifier_token6] = ACTIONS(1715), + [aux_sym_cmd_identifier_token7] = ACTIONS(1715), + [aux_sym_cmd_identifier_token8] = ACTIONS(1715), + [aux_sym_cmd_identifier_token9] = ACTIONS(1715), + [aux_sym_cmd_identifier_token10] = ACTIONS(1715), + [aux_sym_cmd_identifier_token11] = ACTIONS(1715), + [aux_sym_cmd_identifier_token12] = ACTIONS(1715), + [aux_sym_cmd_identifier_token13] = ACTIONS(1715), + [aux_sym_cmd_identifier_token14] = ACTIONS(1715), + [aux_sym_cmd_identifier_token15] = ACTIONS(1715), + [aux_sym_cmd_identifier_token16] = ACTIONS(1715), + [aux_sym_cmd_identifier_token17] = ACTIONS(1715), + [aux_sym_cmd_identifier_token18] = ACTIONS(1715), + [aux_sym_cmd_identifier_token19] = ACTIONS(1715), + [aux_sym_cmd_identifier_token20] = ACTIONS(1715), + [aux_sym_cmd_identifier_token21] = ACTIONS(1715), + [aux_sym_cmd_identifier_token22] = ACTIONS(1715), + [aux_sym_cmd_identifier_token23] = ACTIONS(1715), + [aux_sym_cmd_identifier_token24] = ACTIONS(1715), + [aux_sym_cmd_identifier_token25] = ACTIONS(1715), + [aux_sym_cmd_identifier_token26] = ACTIONS(1715), + [aux_sym_cmd_identifier_token27] = ACTIONS(1715), + [aux_sym_cmd_identifier_token28] = ACTIONS(1715), + [aux_sym_cmd_identifier_token29] = ACTIONS(1715), + [aux_sym_cmd_identifier_token30] = ACTIONS(1715), + [aux_sym_cmd_identifier_token31] = ACTIONS(1715), + [aux_sym_cmd_identifier_token32] = ACTIONS(1715), + [aux_sym_cmd_identifier_token33] = ACTIONS(1715), + [aux_sym_cmd_identifier_token34] = ACTIONS(1715), + [aux_sym_cmd_identifier_token35] = ACTIONS(1715), + [aux_sym_cmd_identifier_token36] = ACTIONS(1715), + [anon_sym_true] = ACTIONS(1717), + [anon_sym_false] = ACTIONS(1717), + [anon_sym_null] = ACTIONS(1717), + [aux_sym_cmd_identifier_token38] = ACTIONS(1715), + [aux_sym_cmd_identifier_token39] = ACTIONS(1717), + [aux_sym_cmd_identifier_token40] = ACTIONS(1717), + [anon_sym_def] = ACTIONS(1715), + [anon_sym_export_DASHenv] = ACTIONS(1715), + [anon_sym_extern] = ACTIONS(1715), + [anon_sym_module] = ACTIONS(1715), + [anon_sym_use] = ACTIONS(1715), + [anon_sym_LPAREN] = ACTIONS(1715), + [anon_sym_DOLLAR] = ACTIONS(1717), + [anon_sym_error] = ACTIONS(1715), + [anon_sym_list] = ACTIONS(1715), + [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_break] = ACTIONS(1715), + [anon_sym_continue] = ACTIONS(1715), + [anon_sym_for] = ACTIONS(1715), + [anon_sym_in] = ACTIONS(1715), + [anon_sym_loop] = ACTIONS(1715), + [anon_sym_make] = ACTIONS(1715), + [anon_sym_while] = ACTIONS(1715), + [anon_sym_do] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1715), + [anon_sym_else] = ACTIONS(1715), + [anon_sym_match] = ACTIONS(1715), + [anon_sym_RBRACE] = ACTIONS(1717), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_catch] = ACTIONS(1715), + [anon_sym_return] = ACTIONS(1715), + [anon_sym_source] = ACTIONS(1715), + [anon_sym_source_DASHenv] = ACTIONS(1715), + [anon_sym_register] = ACTIONS(1715), + [anon_sym_hide] = ACTIONS(1715), + [anon_sym_hide_DASHenv] = ACTIONS(1715), + [anon_sym_overlay] = ACTIONS(1715), + [anon_sym_new] = ACTIONS(1715), + [anon_sym_as] = ACTIONS(1715), + [anon_sym_LPAREN2] = ACTIONS(1717), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1717), + [anon_sym_DOT_DOT2] = ACTIONS(1715), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1717), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1717), + [aux_sym__immediate_decimal_token2] = ACTIONS(1745), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1717), + [aux_sym__val_number_decimal_token1] = ACTIONS(1715), + [aux_sym__val_number_decimal_token2] = ACTIONS(1717), + [aux_sym__val_number_decimal_token3] = ACTIONS(1717), + [aux_sym__val_number_decimal_token4] = ACTIONS(1717), + [aux_sym__val_number_token1] = ACTIONS(1717), + [aux_sym__val_number_token2] = ACTIONS(1717), + [aux_sym__val_number_token3] = ACTIONS(1717), + [anon_sym_DQUOTE] = ACTIONS(1717), + [sym__str_single_quotes] = ACTIONS(1717), + [sym__str_back_ticks] = ACTIONS(1717), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1717), + [anon_sym_PLUS] = ACTIONS(1715), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1715), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1717), }, - [367] = { - [sym_comment] = STATE(367), - [anon_sym_export] = ACTIONS(1667), - [anon_sym_alias] = ACTIONS(1667), - [anon_sym_let] = ACTIONS(1667), - [anon_sym_let_DASHenv] = ACTIONS(1667), - [anon_sym_mut] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1667), - [aux_sym_cmd_identifier_token1] = ACTIONS(1667), - [aux_sym_cmd_identifier_token2] = ACTIONS(1667), - [aux_sym_cmd_identifier_token3] = ACTIONS(1667), - [aux_sym_cmd_identifier_token4] = ACTIONS(1667), - [aux_sym_cmd_identifier_token5] = ACTIONS(1667), - [aux_sym_cmd_identifier_token6] = ACTIONS(1667), - [aux_sym_cmd_identifier_token7] = ACTIONS(1667), - [aux_sym_cmd_identifier_token8] = ACTIONS(1667), - [aux_sym_cmd_identifier_token9] = ACTIONS(1667), - [aux_sym_cmd_identifier_token10] = ACTIONS(1667), - [aux_sym_cmd_identifier_token11] = ACTIONS(1667), - [aux_sym_cmd_identifier_token12] = ACTIONS(1667), - [aux_sym_cmd_identifier_token13] = ACTIONS(1667), - [aux_sym_cmd_identifier_token14] = ACTIONS(1667), - [aux_sym_cmd_identifier_token15] = ACTIONS(1667), - [aux_sym_cmd_identifier_token16] = ACTIONS(1667), - [aux_sym_cmd_identifier_token17] = ACTIONS(1667), - [aux_sym_cmd_identifier_token18] = ACTIONS(1667), - [aux_sym_cmd_identifier_token19] = ACTIONS(1667), - [aux_sym_cmd_identifier_token20] = ACTIONS(1667), - [aux_sym_cmd_identifier_token21] = ACTIONS(1667), - [aux_sym_cmd_identifier_token22] = ACTIONS(1667), - [aux_sym_cmd_identifier_token23] = ACTIONS(1667), - [aux_sym_cmd_identifier_token24] = ACTIONS(1667), - [aux_sym_cmd_identifier_token25] = ACTIONS(1667), - [aux_sym_cmd_identifier_token26] = ACTIONS(1667), - [aux_sym_cmd_identifier_token27] = ACTIONS(1667), - [aux_sym_cmd_identifier_token28] = ACTIONS(1667), - [aux_sym_cmd_identifier_token29] = ACTIONS(1667), - [aux_sym_cmd_identifier_token30] = ACTIONS(1667), - [aux_sym_cmd_identifier_token31] = ACTIONS(1667), - [aux_sym_cmd_identifier_token32] = ACTIONS(1667), - [aux_sym_cmd_identifier_token33] = ACTIONS(1667), - [aux_sym_cmd_identifier_token34] = ACTIONS(1667), - [aux_sym_cmd_identifier_token35] = ACTIONS(1667), - [aux_sym_cmd_identifier_token36] = ACTIONS(1667), - [anon_sym_true] = ACTIONS(1667), - [anon_sym_false] = ACTIONS(1667), - [anon_sym_null] = ACTIONS(1667), - [aux_sym_cmd_identifier_token38] = ACTIONS(1667), - [aux_sym_cmd_identifier_token39] = ACTIONS(1667), - [aux_sym_cmd_identifier_token40] = ACTIONS(1667), - [anon_sym_def] = ACTIONS(1667), - [anon_sym_export_DASHenv] = ACTIONS(1667), - [anon_sym_extern] = ACTIONS(1667), - [anon_sym_module] = ACTIONS(1667), - [anon_sym_use] = ACTIONS(1667), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_DOLLAR] = ACTIONS(1667), - [anon_sym_error] = ACTIONS(1667), - [anon_sym_list] = ACTIONS(1667), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_break] = ACTIONS(1667), - [anon_sym_continue] = ACTIONS(1667), - [anon_sym_for] = ACTIONS(1667), - [anon_sym_in] = ACTIONS(1667), - [anon_sym_loop] = ACTIONS(1667), - [anon_sym_make] = ACTIONS(1667), - [anon_sym_while] = ACTIONS(1667), - [anon_sym_do] = ACTIONS(1667), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_else] = ACTIONS(1667), - [anon_sym_match] = ACTIONS(1667), - [anon_sym_RBRACE] = ACTIONS(1667), - [anon_sym_try] = ACTIONS(1667), - [anon_sym_catch] = ACTIONS(1667), - [anon_sym_return] = ACTIONS(1667), - [anon_sym_source] = ACTIONS(1667), - [anon_sym_source_DASHenv] = ACTIONS(1667), - [anon_sym_register] = ACTIONS(1667), - [anon_sym_hide] = ACTIONS(1667), - [anon_sym_hide_DASHenv] = ACTIONS(1667), - [anon_sym_overlay] = ACTIONS(1667), - [anon_sym_new] = ACTIONS(1667), - [anon_sym_as] = ACTIONS(1667), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1667), - [anon_sym_DOT_DOT2] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [aux_sym__immediate_decimal_token2] = ACTIONS(1776), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1667), - [aux_sym__val_number_decimal_token1] = ACTIONS(1667), - [aux_sym__val_number_decimal_token2] = ACTIONS(1667), - [aux_sym__val_number_decimal_token3] = ACTIONS(1667), - [aux_sym__val_number_decimal_token4] = ACTIONS(1667), - [aux_sym__val_number_token1] = ACTIONS(1667), - [aux_sym__val_number_token2] = ACTIONS(1667), - [aux_sym__val_number_token3] = ACTIONS(1667), - [anon_sym_DQUOTE] = ACTIONS(1667), - [sym__str_single_quotes] = ACTIONS(1667), - [sym__str_back_ticks] = ACTIONS(1667), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1667), - [sym__entry_separator] = ACTIONS(1669), - [anon_sym_PLUS] = ACTIONS(1667), + [326] = { + [sym_cell_path] = STATE(582), + [sym_path] = STATE(518), + [sym_comment] = STATE(326), + [aux_sym_cell_path_repeat1] = STATE(411), + [anon_sym_export] = ACTIONS(1854), + [anon_sym_alias] = ACTIONS(1854), + [anon_sym_let] = ACTIONS(1854), + [anon_sym_let_DASHenv] = ACTIONS(1854), + [anon_sym_mut] = ACTIONS(1854), + [anon_sym_const] = ACTIONS(1854), + [aux_sym_cmd_identifier_token1] = ACTIONS(1854), + [aux_sym_cmd_identifier_token2] = ACTIONS(1854), + [aux_sym_cmd_identifier_token3] = ACTIONS(1854), + [aux_sym_cmd_identifier_token4] = ACTIONS(1854), + [aux_sym_cmd_identifier_token5] = ACTIONS(1854), + [aux_sym_cmd_identifier_token6] = ACTIONS(1854), + [aux_sym_cmd_identifier_token7] = ACTIONS(1854), + [aux_sym_cmd_identifier_token8] = ACTIONS(1854), + [aux_sym_cmd_identifier_token9] = ACTIONS(1854), + [aux_sym_cmd_identifier_token10] = ACTIONS(1854), + [aux_sym_cmd_identifier_token11] = ACTIONS(1854), + [aux_sym_cmd_identifier_token12] = ACTIONS(1854), + [aux_sym_cmd_identifier_token13] = ACTIONS(1854), + [aux_sym_cmd_identifier_token14] = ACTIONS(1854), + [aux_sym_cmd_identifier_token15] = ACTIONS(1854), + [aux_sym_cmd_identifier_token16] = ACTIONS(1854), + [aux_sym_cmd_identifier_token17] = ACTIONS(1854), + [aux_sym_cmd_identifier_token18] = ACTIONS(1854), + [aux_sym_cmd_identifier_token19] = ACTIONS(1854), + [aux_sym_cmd_identifier_token20] = ACTIONS(1854), + [aux_sym_cmd_identifier_token21] = ACTIONS(1854), + [aux_sym_cmd_identifier_token22] = ACTIONS(1854), + [aux_sym_cmd_identifier_token23] = ACTIONS(1854), + [aux_sym_cmd_identifier_token24] = ACTIONS(1854), + [aux_sym_cmd_identifier_token25] = ACTIONS(1854), + [aux_sym_cmd_identifier_token26] = ACTIONS(1854), + [aux_sym_cmd_identifier_token27] = ACTIONS(1854), + [aux_sym_cmd_identifier_token28] = ACTIONS(1854), + [aux_sym_cmd_identifier_token29] = ACTIONS(1854), + [aux_sym_cmd_identifier_token30] = ACTIONS(1854), + [aux_sym_cmd_identifier_token31] = ACTIONS(1854), + [aux_sym_cmd_identifier_token32] = ACTIONS(1854), + [aux_sym_cmd_identifier_token33] = ACTIONS(1854), + [aux_sym_cmd_identifier_token34] = ACTIONS(1854), + [aux_sym_cmd_identifier_token35] = ACTIONS(1854), + [aux_sym_cmd_identifier_token36] = ACTIONS(1854), + [anon_sym_true] = ACTIONS(1854), + [anon_sym_false] = ACTIONS(1854), + [anon_sym_null] = ACTIONS(1854), + [aux_sym_cmd_identifier_token38] = ACTIONS(1854), + [aux_sym_cmd_identifier_token39] = ACTIONS(1854), + [aux_sym_cmd_identifier_token40] = ACTIONS(1854), + [anon_sym_def] = ACTIONS(1854), + [anon_sym_export_DASHenv] = ACTIONS(1854), + [anon_sym_extern] = ACTIONS(1854), + [anon_sym_module] = ACTIONS(1854), + [anon_sym_use] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(1854), + [anon_sym_DOLLAR] = ACTIONS(1854), + [anon_sym_error] = ACTIONS(1854), + [anon_sym_list] = ACTIONS(1854), + [anon_sym_DASH] = ACTIONS(1854), + [anon_sym_break] = ACTIONS(1854), + [anon_sym_continue] = ACTIONS(1854), + [anon_sym_for] = ACTIONS(1854), + [anon_sym_in] = ACTIONS(1854), + [anon_sym_loop] = ACTIONS(1854), + [anon_sym_make] = ACTIONS(1854), + [anon_sym_while] = ACTIONS(1854), + [anon_sym_do] = ACTIONS(1854), + [anon_sym_if] = ACTIONS(1854), + [anon_sym_else] = ACTIONS(1854), + [anon_sym_match] = ACTIONS(1854), + [anon_sym_RBRACE] = ACTIONS(1854), + [anon_sym_try] = ACTIONS(1854), + [anon_sym_catch] = ACTIONS(1854), + [anon_sym_return] = ACTIONS(1854), + [anon_sym_source] = ACTIONS(1854), + [anon_sym_source_DASHenv] = ACTIONS(1854), + [anon_sym_register] = ACTIONS(1854), + [anon_sym_hide] = ACTIONS(1854), + [anon_sym_hide_DASHenv] = ACTIONS(1854), + [anon_sym_overlay] = ACTIONS(1854), + [anon_sym_new] = ACTIONS(1854), + [anon_sym_as] = ACTIONS(1854), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1854), + [anon_sym_DOT] = ACTIONS(1856), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1854), + [aux_sym__val_number_decimal_token1] = ACTIONS(1854), + [aux_sym__val_number_decimal_token2] = ACTIONS(1854), + [aux_sym__val_number_decimal_token3] = ACTIONS(1854), + [aux_sym__val_number_decimal_token4] = ACTIONS(1854), + [aux_sym__val_number_token1] = ACTIONS(1854), + [aux_sym__val_number_token2] = ACTIONS(1854), + [aux_sym__val_number_token3] = ACTIONS(1854), + [anon_sym_DQUOTE] = ACTIONS(1854), + [sym__str_single_quotes] = ACTIONS(1854), + [sym__str_back_ticks] = ACTIONS(1854), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1854), + [sym__entry_separator] = ACTIONS(1858), + [anon_sym_PLUS] = ACTIONS(1854), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1858), }, - [368] = { - [sym_comment] = STATE(368), - [anon_sym_export] = ACTIONS(1659), - [anon_sym_alias] = ACTIONS(1659), - [anon_sym_let] = ACTIONS(1659), - [anon_sym_let_DASHenv] = ACTIONS(1659), - [anon_sym_mut] = ACTIONS(1659), - [anon_sym_const] = ACTIONS(1659), - [aux_sym_cmd_identifier_token1] = ACTIONS(1659), - [aux_sym_cmd_identifier_token2] = ACTIONS(1659), - [aux_sym_cmd_identifier_token3] = ACTIONS(1659), - [aux_sym_cmd_identifier_token4] = ACTIONS(1659), - [aux_sym_cmd_identifier_token5] = ACTIONS(1659), - [aux_sym_cmd_identifier_token6] = ACTIONS(1659), - [aux_sym_cmd_identifier_token7] = ACTIONS(1659), - [aux_sym_cmd_identifier_token8] = ACTIONS(1659), - [aux_sym_cmd_identifier_token9] = ACTIONS(1659), - [aux_sym_cmd_identifier_token10] = ACTIONS(1659), - [aux_sym_cmd_identifier_token11] = ACTIONS(1659), - [aux_sym_cmd_identifier_token12] = ACTIONS(1659), - [aux_sym_cmd_identifier_token13] = ACTIONS(1659), - [aux_sym_cmd_identifier_token14] = ACTIONS(1659), - [aux_sym_cmd_identifier_token15] = ACTIONS(1659), - [aux_sym_cmd_identifier_token16] = ACTIONS(1659), - [aux_sym_cmd_identifier_token17] = ACTIONS(1659), - [aux_sym_cmd_identifier_token18] = ACTIONS(1659), - [aux_sym_cmd_identifier_token19] = ACTIONS(1659), - [aux_sym_cmd_identifier_token20] = ACTIONS(1659), - [aux_sym_cmd_identifier_token21] = ACTIONS(1659), - [aux_sym_cmd_identifier_token22] = ACTIONS(1659), - [aux_sym_cmd_identifier_token23] = ACTIONS(1659), - [aux_sym_cmd_identifier_token24] = ACTIONS(1659), - [aux_sym_cmd_identifier_token25] = ACTIONS(1659), - [aux_sym_cmd_identifier_token26] = ACTIONS(1659), - [aux_sym_cmd_identifier_token27] = ACTIONS(1659), - [aux_sym_cmd_identifier_token28] = ACTIONS(1659), - [aux_sym_cmd_identifier_token29] = ACTIONS(1659), - [aux_sym_cmd_identifier_token30] = ACTIONS(1659), - [aux_sym_cmd_identifier_token31] = ACTIONS(1659), - [aux_sym_cmd_identifier_token32] = ACTIONS(1659), - [aux_sym_cmd_identifier_token33] = ACTIONS(1659), - [aux_sym_cmd_identifier_token34] = ACTIONS(1659), - [aux_sym_cmd_identifier_token35] = ACTIONS(1659), - [aux_sym_cmd_identifier_token36] = ACTIONS(1659), - [anon_sym_true] = ACTIONS(1661), - [anon_sym_false] = ACTIONS(1661), - [anon_sym_null] = ACTIONS(1661), - [aux_sym_cmd_identifier_token38] = ACTIONS(1659), - [aux_sym_cmd_identifier_token39] = ACTIONS(1661), - [aux_sym_cmd_identifier_token40] = ACTIONS(1661), - [anon_sym_def] = ACTIONS(1659), - [anon_sym_export_DASHenv] = ACTIONS(1659), - [anon_sym_extern] = ACTIONS(1659), - [anon_sym_module] = ACTIONS(1659), - [anon_sym_use] = ACTIONS(1659), - [anon_sym_LPAREN] = ACTIONS(1661), - [anon_sym_DOLLAR] = ACTIONS(1661), - [anon_sym_error] = ACTIONS(1659), - [anon_sym_list] = ACTIONS(1659), - [anon_sym_DASH] = ACTIONS(1659), - [anon_sym_break] = ACTIONS(1659), - [anon_sym_continue] = ACTIONS(1659), - [anon_sym_for] = ACTIONS(1659), - [anon_sym_in] = ACTIONS(1659), - [anon_sym_loop] = ACTIONS(1659), - [anon_sym_make] = ACTIONS(1659), - [anon_sym_while] = ACTIONS(1659), - [anon_sym_do] = ACTIONS(1659), - [anon_sym_if] = ACTIONS(1659), - [anon_sym_else] = ACTIONS(1659), - [anon_sym_match] = ACTIONS(1659), - [anon_sym_RBRACE] = ACTIONS(1661), - [anon_sym_try] = ACTIONS(1659), - [anon_sym_catch] = ACTIONS(1659), - [anon_sym_return] = ACTIONS(1659), - [anon_sym_source] = ACTIONS(1659), - [anon_sym_source_DASHenv] = ACTIONS(1659), - [anon_sym_register] = ACTIONS(1659), - [anon_sym_hide] = ACTIONS(1659), - [anon_sym_hide_DASHenv] = ACTIONS(1659), - [anon_sym_overlay] = ACTIONS(1659), - [anon_sym_new] = ACTIONS(1659), - [anon_sym_as] = ACTIONS(1659), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1661), - [anon_sym_DOT_DOT2] = ACTIONS(1659), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1661), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1661), - [aux_sym__immediate_decimal_token1] = ACTIONS(1955), - [aux_sym__immediate_decimal_token2] = ACTIONS(1957), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1661), - [aux_sym__val_number_decimal_token1] = ACTIONS(1659), - [aux_sym__val_number_decimal_token2] = ACTIONS(1661), - [aux_sym__val_number_decimal_token3] = ACTIONS(1661), - [aux_sym__val_number_decimal_token4] = ACTIONS(1661), - [aux_sym__val_number_token1] = ACTIONS(1661), - [aux_sym__val_number_token2] = ACTIONS(1661), - [aux_sym__val_number_token3] = ACTIONS(1661), - [anon_sym_DQUOTE] = ACTIONS(1661), - [sym__str_single_quotes] = ACTIONS(1661), - [sym__str_back_ticks] = ACTIONS(1661), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1661), - [anon_sym_PLUS] = ACTIONS(1659), - [anon_sym_POUND] = ACTIONS(247), + [327] = { + [sym_path] = STATE(468), + [sym_comment] = STATE(327), + [aux_sym_cell_path_repeat1] = STATE(328), + [anon_sym_export] = ACTIONS(1027), + [anon_sym_alias] = ACTIONS(1027), + [anon_sym_let] = ACTIONS(1027), + [anon_sym_let_DASHenv] = ACTIONS(1027), + [anon_sym_mut] = ACTIONS(1027), + [anon_sym_const] = ACTIONS(1027), + [aux_sym_cmd_identifier_token1] = ACTIONS(1027), + [aux_sym_cmd_identifier_token2] = ACTIONS(1027), + [aux_sym_cmd_identifier_token3] = ACTIONS(1027), + [aux_sym_cmd_identifier_token4] = ACTIONS(1027), + [aux_sym_cmd_identifier_token5] = ACTIONS(1027), + [aux_sym_cmd_identifier_token6] = ACTIONS(1027), + [aux_sym_cmd_identifier_token7] = ACTIONS(1027), + [aux_sym_cmd_identifier_token8] = ACTIONS(1027), + [aux_sym_cmd_identifier_token9] = ACTIONS(1027), + [aux_sym_cmd_identifier_token10] = ACTIONS(1027), + [aux_sym_cmd_identifier_token11] = ACTIONS(1027), + [aux_sym_cmd_identifier_token12] = ACTIONS(1027), + [aux_sym_cmd_identifier_token13] = ACTIONS(1027), + [aux_sym_cmd_identifier_token14] = ACTIONS(1027), + [aux_sym_cmd_identifier_token15] = ACTIONS(1027), + [aux_sym_cmd_identifier_token16] = ACTIONS(1027), + [aux_sym_cmd_identifier_token17] = ACTIONS(1027), + [aux_sym_cmd_identifier_token18] = ACTIONS(1027), + [aux_sym_cmd_identifier_token19] = ACTIONS(1027), + [aux_sym_cmd_identifier_token20] = ACTIONS(1027), + [aux_sym_cmd_identifier_token21] = ACTIONS(1027), + [aux_sym_cmd_identifier_token22] = ACTIONS(1027), + [aux_sym_cmd_identifier_token23] = ACTIONS(1027), + [aux_sym_cmd_identifier_token24] = ACTIONS(1027), + [aux_sym_cmd_identifier_token25] = ACTIONS(1027), + [aux_sym_cmd_identifier_token26] = ACTIONS(1027), + [aux_sym_cmd_identifier_token27] = ACTIONS(1027), + [aux_sym_cmd_identifier_token28] = ACTIONS(1027), + [aux_sym_cmd_identifier_token29] = ACTIONS(1027), + [aux_sym_cmd_identifier_token30] = ACTIONS(1027), + [aux_sym_cmd_identifier_token31] = ACTIONS(1027), + [aux_sym_cmd_identifier_token32] = ACTIONS(1027), + [aux_sym_cmd_identifier_token33] = ACTIONS(1027), + [aux_sym_cmd_identifier_token34] = ACTIONS(1027), + [aux_sym_cmd_identifier_token35] = ACTIONS(1027), + [aux_sym_cmd_identifier_token36] = ACTIONS(1027), + [anon_sym_true] = ACTIONS(1029), + [anon_sym_false] = ACTIONS(1029), + [anon_sym_null] = ACTIONS(1029), + [aux_sym_cmd_identifier_token38] = ACTIONS(1027), + [aux_sym_cmd_identifier_token39] = ACTIONS(1029), + [aux_sym_cmd_identifier_token40] = ACTIONS(1029), + [anon_sym_def] = ACTIONS(1027), + [anon_sym_export_DASHenv] = ACTIONS(1027), + [anon_sym_extern] = ACTIONS(1027), + [anon_sym_module] = ACTIONS(1027), + [anon_sym_use] = ACTIONS(1027), + [anon_sym_LPAREN] = ACTIONS(1029), + [anon_sym_COMMA] = ACTIONS(1029), + [anon_sym_DOLLAR] = ACTIONS(1029), + [anon_sym_error] = ACTIONS(1027), + [anon_sym_list] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_break] = ACTIONS(1027), + [anon_sym_continue] = ACTIONS(1027), + [anon_sym_for] = ACTIONS(1027), + [anon_sym_in] = ACTIONS(1027), + [anon_sym_loop] = ACTIONS(1027), + [anon_sym_make] = ACTIONS(1027), + [anon_sym_while] = ACTIONS(1027), + [anon_sym_do] = ACTIONS(1027), + [anon_sym_if] = ACTIONS(1027), + [anon_sym_else] = ACTIONS(1027), + [anon_sym_match] = ACTIONS(1027), + [anon_sym_RBRACE] = ACTIONS(1029), + [anon_sym_try] = ACTIONS(1027), + [anon_sym_catch] = ACTIONS(1027), + [anon_sym_return] = ACTIONS(1027), + [anon_sym_source] = ACTIONS(1027), + [anon_sym_source_DASHenv] = ACTIONS(1027), + [anon_sym_register] = ACTIONS(1027), + [anon_sym_hide] = ACTIONS(1027), + [anon_sym_hide_DASHenv] = ACTIONS(1027), + [anon_sym_overlay] = ACTIONS(1027), + [anon_sym_new] = ACTIONS(1027), + [anon_sym_as] = ACTIONS(1027), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1029), + [anon_sym_DOT] = ACTIONS(1836), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1029), + [aux_sym__val_number_decimal_token1] = ACTIONS(1027), + [aux_sym__val_number_decimal_token2] = ACTIONS(1029), + [aux_sym__val_number_decimal_token3] = ACTIONS(1029), + [aux_sym__val_number_decimal_token4] = ACTIONS(1029), + [aux_sym__val_number_token1] = ACTIONS(1029), + [aux_sym__val_number_token2] = ACTIONS(1029), + [aux_sym__val_number_token3] = ACTIONS(1029), + [anon_sym_DQUOTE] = ACTIONS(1029), + [sym__str_single_quotes] = ACTIONS(1029), + [sym__str_back_ticks] = ACTIONS(1029), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1029), + [aux_sym_record_entry_token1] = ACTIONS(1029), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1029), }, - [369] = { - [sym_comment] = STATE(369), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_alias] = ACTIONS(1046), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_let_DASHenv] = ACTIONS(1046), - [anon_sym_mut] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [aux_sym_cmd_identifier_token1] = ACTIONS(1046), - [aux_sym_cmd_identifier_token2] = ACTIONS(1046), - [aux_sym_cmd_identifier_token3] = ACTIONS(1046), - [aux_sym_cmd_identifier_token4] = ACTIONS(1046), - [aux_sym_cmd_identifier_token5] = ACTIONS(1046), - [aux_sym_cmd_identifier_token6] = ACTIONS(1046), - [aux_sym_cmd_identifier_token7] = ACTIONS(1046), - [aux_sym_cmd_identifier_token8] = ACTIONS(1046), - [aux_sym_cmd_identifier_token9] = ACTIONS(1046), - [aux_sym_cmd_identifier_token10] = ACTIONS(1046), - [aux_sym_cmd_identifier_token11] = ACTIONS(1046), - [aux_sym_cmd_identifier_token12] = ACTIONS(1046), - [aux_sym_cmd_identifier_token13] = ACTIONS(1046), - [aux_sym_cmd_identifier_token14] = ACTIONS(1046), - [aux_sym_cmd_identifier_token15] = ACTIONS(1046), - [aux_sym_cmd_identifier_token16] = ACTIONS(1046), - [aux_sym_cmd_identifier_token17] = ACTIONS(1046), - [aux_sym_cmd_identifier_token18] = ACTIONS(1046), - [aux_sym_cmd_identifier_token19] = ACTIONS(1046), - [aux_sym_cmd_identifier_token20] = ACTIONS(1046), - [aux_sym_cmd_identifier_token21] = ACTIONS(1046), - [aux_sym_cmd_identifier_token22] = ACTIONS(1046), - [aux_sym_cmd_identifier_token23] = ACTIONS(1046), - [aux_sym_cmd_identifier_token24] = ACTIONS(1046), - [aux_sym_cmd_identifier_token25] = ACTIONS(1046), - [aux_sym_cmd_identifier_token26] = ACTIONS(1046), - [aux_sym_cmd_identifier_token27] = ACTIONS(1046), - [aux_sym_cmd_identifier_token28] = ACTIONS(1046), - [aux_sym_cmd_identifier_token29] = ACTIONS(1046), - [aux_sym_cmd_identifier_token30] = ACTIONS(1046), - [aux_sym_cmd_identifier_token31] = ACTIONS(1046), - [aux_sym_cmd_identifier_token32] = ACTIONS(1046), - [aux_sym_cmd_identifier_token33] = ACTIONS(1046), - [aux_sym_cmd_identifier_token34] = ACTIONS(1046), - [aux_sym_cmd_identifier_token35] = ACTIONS(1046), - [aux_sym_cmd_identifier_token36] = ACTIONS(1046), - [anon_sym_true] = ACTIONS(1046), - [anon_sym_false] = ACTIONS(1046), - [anon_sym_null] = ACTIONS(1046), - [aux_sym_cmd_identifier_token38] = ACTIONS(1046), - [aux_sym_cmd_identifier_token39] = ACTIONS(1046), - [aux_sym_cmd_identifier_token40] = ACTIONS(1046), - [anon_sym_def] = ACTIONS(1046), - [anon_sym_export_DASHenv] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_use] = ACTIONS(1046), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_DOLLAR] = ACTIONS(1046), - [anon_sym_error] = ACTIONS(1046), - [anon_sym_list] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_break] = ACTIONS(1046), - [anon_sym_continue] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1046), - [anon_sym_in] = ACTIONS(1046), - [anon_sym_loop] = ACTIONS(1046), - [anon_sym_make] = ACTIONS(1046), - [anon_sym_while] = ACTIONS(1046), - [anon_sym_do] = ACTIONS(1046), - [anon_sym_if] = ACTIONS(1046), - [anon_sym_else] = ACTIONS(1046), - [anon_sym_match] = ACTIONS(1046), - [anon_sym_RBRACE] = ACTIONS(1046), - [anon_sym_try] = ACTIONS(1046), - [anon_sym_catch] = ACTIONS(1046), - [anon_sym_return] = ACTIONS(1046), - [anon_sym_source] = ACTIONS(1046), - [anon_sym_source_DASHenv] = ACTIONS(1046), - [anon_sym_register] = ACTIONS(1046), - [anon_sym_hide] = ACTIONS(1046), - [anon_sym_hide_DASHenv] = ACTIONS(1046), - [anon_sym_overlay] = ACTIONS(1046), - [anon_sym_new] = ACTIONS(1046), - [anon_sym_as] = ACTIONS(1046), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1046), - [anon_sym_DOT_DOT2] = ACTIONS(1046), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1048), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1048), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1046), - [aux_sym__val_number_decimal_token1] = ACTIONS(1046), - [aux_sym__val_number_decimal_token2] = ACTIONS(1046), - [aux_sym__val_number_decimal_token3] = ACTIONS(1046), - [aux_sym__val_number_decimal_token4] = ACTIONS(1046), - [aux_sym__val_number_token1] = ACTIONS(1046), - [aux_sym__val_number_token2] = ACTIONS(1046), - [aux_sym__val_number_token3] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1046), - [sym__str_single_quotes] = ACTIONS(1046), - [sym__str_back_ticks] = ACTIONS(1046), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1046), - [sym__entry_separator] = ACTIONS(1048), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_POUND] = ACTIONS(3), + [328] = { + [sym_path] = STATE(468), + [sym_comment] = STATE(328), + [aux_sym_cell_path_repeat1] = STATE(328), + [anon_sym_export] = ACTIONS(1031), + [anon_sym_alias] = ACTIONS(1031), + [anon_sym_let] = ACTIONS(1031), + [anon_sym_let_DASHenv] = ACTIONS(1031), + [anon_sym_mut] = ACTIONS(1031), + [anon_sym_const] = ACTIONS(1031), + [aux_sym_cmd_identifier_token1] = ACTIONS(1031), + [aux_sym_cmd_identifier_token2] = ACTIONS(1031), + [aux_sym_cmd_identifier_token3] = ACTIONS(1031), + [aux_sym_cmd_identifier_token4] = ACTIONS(1031), + [aux_sym_cmd_identifier_token5] = ACTIONS(1031), + [aux_sym_cmd_identifier_token6] = ACTIONS(1031), + [aux_sym_cmd_identifier_token7] = ACTIONS(1031), + [aux_sym_cmd_identifier_token8] = ACTIONS(1031), + [aux_sym_cmd_identifier_token9] = ACTIONS(1031), + [aux_sym_cmd_identifier_token10] = ACTIONS(1031), + [aux_sym_cmd_identifier_token11] = ACTIONS(1031), + [aux_sym_cmd_identifier_token12] = ACTIONS(1031), + [aux_sym_cmd_identifier_token13] = ACTIONS(1031), + [aux_sym_cmd_identifier_token14] = ACTIONS(1031), + [aux_sym_cmd_identifier_token15] = ACTIONS(1031), + [aux_sym_cmd_identifier_token16] = ACTIONS(1031), + [aux_sym_cmd_identifier_token17] = ACTIONS(1031), + [aux_sym_cmd_identifier_token18] = ACTIONS(1031), + [aux_sym_cmd_identifier_token19] = ACTIONS(1031), + [aux_sym_cmd_identifier_token20] = ACTIONS(1031), + [aux_sym_cmd_identifier_token21] = ACTIONS(1031), + [aux_sym_cmd_identifier_token22] = ACTIONS(1031), + [aux_sym_cmd_identifier_token23] = ACTIONS(1031), + [aux_sym_cmd_identifier_token24] = ACTIONS(1031), + [aux_sym_cmd_identifier_token25] = ACTIONS(1031), + [aux_sym_cmd_identifier_token26] = ACTIONS(1031), + [aux_sym_cmd_identifier_token27] = ACTIONS(1031), + [aux_sym_cmd_identifier_token28] = ACTIONS(1031), + [aux_sym_cmd_identifier_token29] = ACTIONS(1031), + [aux_sym_cmd_identifier_token30] = ACTIONS(1031), + [aux_sym_cmd_identifier_token31] = ACTIONS(1031), + [aux_sym_cmd_identifier_token32] = ACTIONS(1031), + [aux_sym_cmd_identifier_token33] = ACTIONS(1031), + [aux_sym_cmd_identifier_token34] = ACTIONS(1031), + [aux_sym_cmd_identifier_token35] = ACTIONS(1031), + [aux_sym_cmd_identifier_token36] = ACTIONS(1031), + [anon_sym_true] = ACTIONS(1033), + [anon_sym_false] = ACTIONS(1033), + [anon_sym_null] = ACTIONS(1033), + [aux_sym_cmd_identifier_token38] = ACTIONS(1031), + [aux_sym_cmd_identifier_token39] = ACTIONS(1033), + [aux_sym_cmd_identifier_token40] = ACTIONS(1033), + [anon_sym_def] = ACTIONS(1031), + [anon_sym_export_DASHenv] = ACTIONS(1031), + [anon_sym_extern] = ACTIONS(1031), + [anon_sym_module] = ACTIONS(1031), + [anon_sym_use] = ACTIONS(1031), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_COMMA] = ACTIONS(1033), + [anon_sym_DOLLAR] = ACTIONS(1033), + [anon_sym_error] = ACTIONS(1031), + [anon_sym_list] = ACTIONS(1031), + [anon_sym_DASH] = ACTIONS(1031), + [anon_sym_break] = ACTIONS(1031), + [anon_sym_continue] = ACTIONS(1031), + [anon_sym_for] = ACTIONS(1031), + [anon_sym_in] = ACTIONS(1031), + [anon_sym_loop] = ACTIONS(1031), + [anon_sym_make] = ACTIONS(1031), + [anon_sym_while] = ACTIONS(1031), + [anon_sym_do] = ACTIONS(1031), + [anon_sym_if] = ACTIONS(1031), + [anon_sym_else] = ACTIONS(1031), + [anon_sym_match] = ACTIONS(1031), + [anon_sym_RBRACE] = ACTIONS(1033), + [anon_sym_try] = ACTIONS(1031), + [anon_sym_catch] = ACTIONS(1031), + [anon_sym_return] = ACTIONS(1031), + [anon_sym_source] = ACTIONS(1031), + [anon_sym_source_DASHenv] = ACTIONS(1031), + [anon_sym_register] = ACTIONS(1031), + [anon_sym_hide] = ACTIONS(1031), + [anon_sym_hide_DASHenv] = ACTIONS(1031), + [anon_sym_overlay] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1031), + [anon_sym_as] = ACTIONS(1031), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1033), + [anon_sym_DOT] = ACTIONS(1860), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1033), + [aux_sym__val_number_decimal_token1] = ACTIONS(1031), + [aux_sym__val_number_decimal_token2] = ACTIONS(1033), + [aux_sym__val_number_decimal_token3] = ACTIONS(1033), + [aux_sym__val_number_decimal_token4] = ACTIONS(1033), + [aux_sym__val_number_token1] = ACTIONS(1033), + [aux_sym__val_number_token2] = ACTIONS(1033), + [aux_sym__val_number_token3] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(1033), + [sym__str_single_quotes] = ACTIONS(1033), + [sym__str_back_ticks] = ACTIONS(1033), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1033), + [aux_sym_record_entry_token1] = ACTIONS(1033), + [anon_sym_PLUS] = ACTIONS(1031), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1033), }, - [370] = { - [sym_comment] = STATE(370), + [329] = { + [sym_comment] = STATE(329), [anon_sym_export] = ACTIONS(1778), [anon_sym_alias] = ACTIONS(1778), [anon_sym_let] = ACTIONS(1778), @@ -118277,49 +115336,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token21] = ACTIONS(1778), [aux_sym_cmd_identifier_token22] = ACTIONS(1778), [aux_sym_cmd_identifier_token23] = ACTIONS(1778), - [aux_sym_cmd_identifier_token24] = ACTIONS(1778), + [aux_sym_cmd_identifier_token24] = ACTIONS(1780), [aux_sym_cmd_identifier_token25] = ACTIONS(1778), - [aux_sym_cmd_identifier_token26] = ACTIONS(1778), + [aux_sym_cmd_identifier_token26] = ACTIONS(1780), [aux_sym_cmd_identifier_token27] = ACTIONS(1778), [aux_sym_cmd_identifier_token28] = ACTIONS(1778), [aux_sym_cmd_identifier_token29] = ACTIONS(1778), [aux_sym_cmd_identifier_token30] = ACTIONS(1778), - [aux_sym_cmd_identifier_token31] = ACTIONS(1778), - [aux_sym_cmd_identifier_token32] = ACTIONS(1778), - [aux_sym_cmd_identifier_token33] = ACTIONS(1778), - [aux_sym_cmd_identifier_token34] = ACTIONS(1778), - [aux_sym_cmd_identifier_token35] = ACTIONS(1778), + [aux_sym_cmd_identifier_token31] = ACTIONS(1780), + [aux_sym_cmd_identifier_token32] = ACTIONS(1780), + [aux_sym_cmd_identifier_token33] = ACTIONS(1780), + [aux_sym_cmd_identifier_token34] = ACTIONS(1780), + [aux_sym_cmd_identifier_token35] = ACTIONS(1780), [aux_sym_cmd_identifier_token36] = ACTIONS(1778), - [anon_sym_true] = ACTIONS(1786), - [anon_sym_false] = ACTIONS(1786), - [anon_sym_null] = ACTIONS(1786), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_null] = ACTIONS(1780), [aux_sym_cmd_identifier_token38] = ACTIONS(1778), - [aux_sym_cmd_identifier_token39] = ACTIONS(1786), - [aux_sym_cmd_identifier_token40] = ACTIONS(1786), + [aux_sym_cmd_identifier_token39] = ACTIONS(1780), + [aux_sym_cmd_identifier_token40] = ACTIONS(1780), + [sym__newline] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1780), [anon_sym_def] = ACTIONS(1778), [anon_sym_export_DASHenv] = ACTIONS(1778), [anon_sym_extern] = ACTIONS(1778), [anon_sym_module] = ACTIONS(1778), [anon_sym_use] = ACTIONS(1778), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_DOLLAR] = ACTIONS(1786), + [anon_sym_LBRACK] = ACTIONS(1780), + [anon_sym_LPAREN] = ACTIONS(1780), + [anon_sym_DOLLAR] = ACTIONS(1778), [anon_sym_error] = ACTIONS(1778), - [anon_sym_list] = ACTIONS(1778), [anon_sym_DASH] = ACTIONS(1778), [anon_sym_break] = ACTIONS(1778), [anon_sym_continue] = ACTIONS(1778), [anon_sym_for] = ACTIONS(1778), - [anon_sym_in] = ACTIONS(1778), [anon_sym_loop] = ACTIONS(1778), - [anon_sym_make] = ACTIONS(1778), [anon_sym_while] = ACTIONS(1778), [anon_sym_do] = ACTIONS(1778), [anon_sym_if] = ACTIONS(1778), - [anon_sym_else] = ACTIONS(1778), [anon_sym_match] = ACTIONS(1778), - [anon_sym_RBRACE] = ACTIONS(1786), + [anon_sym_LBRACE] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1778), [anon_sym_try] = ACTIONS(1778), - [anon_sym_catch] = ACTIONS(1778), [anon_sym_return] = ACTIONS(1778), [anon_sym_source] = ACTIONS(1778), [anon_sym_source_DASHenv] = ACTIONS(1778), @@ -118327,447 +115385,768 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(1778), [anon_sym_hide_DASHenv] = ACTIONS(1778), [anon_sym_overlay] = ACTIONS(1778), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_as] = ACTIONS(1778), - [anon_sym_LPAREN2] = ACTIONS(1780), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1786), - [anon_sym_DOT_DOT2] = ACTIONS(1959), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1961), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1961), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1786), + [anon_sym_where] = ACTIONS(1780), + [aux_sym_expr_unary_token1] = ACTIONS(1780), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1780), + [anon_sym_DOT_DOT_LT] = ACTIONS(1780), [aux_sym__val_number_decimal_token1] = ACTIONS(1778), - [aux_sym__val_number_decimal_token2] = ACTIONS(1786), - [aux_sym__val_number_decimal_token3] = ACTIONS(1786), - [aux_sym__val_number_decimal_token4] = ACTIONS(1786), - [aux_sym__val_number_token1] = ACTIONS(1786), - [aux_sym__val_number_token2] = ACTIONS(1786), - [aux_sym__val_number_token3] = ACTIONS(1786), - [anon_sym_DQUOTE] = ACTIONS(1786), - [sym__str_single_quotes] = ACTIONS(1786), - [sym__str_back_ticks] = ACTIONS(1786), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1778), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1494), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym__val_number_decimal_token2] = ACTIONS(1780), + [aux_sym__val_number_decimal_token3] = ACTIONS(1780), + [aux_sym__val_number_decimal_token4] = ACTIONS(1780), + [aux_sym__val_number_token1] = ACTIONS(1780), + [aux_sym__val_number_token2] = ACTIONS(1780), + [aux_sym__val_number_token3] = ACTIONS(1780), + [anon_sym_0b] = ACTIONS(1778), + [anon_sym_0o] = ACTIONS(1778), + [anon_sym_0x] = ACTIONS(1778), + [sym_val_date] = ACTIONS(1780), + [anon_sym_DQUOTE] = ACTIONS(1780), + [sym__str_single_quotes] = ACTIONS(1780), + [sym__str_back_ticks] = ACTIONS(1780), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1780), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1780), + [aux_sym_env_var_token1] = ACTIONS(1778), + [anon_sym_CARET] = ACTIONS(1780), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1780), }, - [371] = { - [sym_comment] = STATE(371), - [anon_sym_export] = ACTIONS(1721), - [anon_sym_alias] = ACTIONS(1721), - [anon_sym_let] = ACTIONS(1721), - [anon_sym_let_DASHenv] = ACTIONS(1721), - [anon_sym_mut] = ACTIONS(1721), - [anon_sym_const] = ACTIONS(1721), - [aux_sym_cmd_identifier_token1] = ACTIONS(1721), - [aux_sym_cmd_identifier_token2] = ACTIONS(1721), - [aux_sym_cmd_identifier_token3] = ACTIONS(1721), - [aux_sym_cmd_identifier_token4] = ACTIONS(1721), - [aux_sym_cmd_identifier_token5] = ACTIONS(1721), - [aux_sym_cmd_identifier_token6] = ACTIONS(1721), - [aux_sym_cmd_identifier_token7] = ACTIONS(1721), - [aux_sym_cmd_identifier_token8] = ACTIONS(1721), - [aux_sym_cmd_identifier_token9] = ACTIONS(1721), - [aux_sym_cmd_identifier_token10] = ACTIONS(1721), - [aux_sym_cmd_identifier_token11] = ACTIONS(1721), - [aux_sym_cmd_identifier_token12] = ACTIONS(1721), - [aux_sym_cmd_identifier_token13] = ACTIONS(1721), - [aux_sym_cmd_identifier_token14] = ACTIONS(1721), - [aux_sym_cmd_identifier_token15] = ACTIONS(1721), - [aux_sym_cmd_identifier_token16] = ACTIONS(1721), - [aux_sym_cmd_identifier_token17] = ACTIONS(1721), - [aux_sym_cmd_identifier_token18] = ACTIONS(1721), - [aux_sym_cmd_identifier_token19] = ACTIONS(1721), - [aux_sym_cmd_identifier_token20] = ACTIONS(1721), - [aux_sym_cmd_identifier_token21] = ACTIONS(1721), - [aux_sym_cmd_identifier_token22] = ACTIONS(1721), - [aux_sym_cmd_identifier_token23] = ACTIONS(1721), - [aux_sym_cmd_identifier_token24] = ACTIONS(1721), - [aux_sym_cmd_identifier_token25] = ACTIONS(1721), - [aux_sym_cmd_identifier_token26] = ACTIONS(1721), - [aux_sym_cmd_identifier_token27] = ACTIONS(1721), - [aux_sym_cmd_identifier_token28] = ACTIONS(1721), - [aux_sym_cmd_identifier_token29] = ACTIONS(1721), - [aux_sym_cmd_identifier_token30] = ACTIONS(1721), - [aux_sym_cmd_identifier_token31] = ACTIONS(1721), - [aux_sym_cmd_identifier_token32] = ACTIONS(1721), - [aux_sym_cmd_identifier_token33] = ACTIONS(1721), - [aux_sym_cmd_identifier_token34] = ACTIONS(1721), - [aux_sym_cmd_identifier_token35] = ACTIONS(1721), - [aux_sym_cmd_identifier_token36] = ACTIONS(1721), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [anon_sym_null] = ACTIONS(1721), - [aux_sym_cmd_identifier_token38] = ACTIONS(1721), - [aux_sym_cmd_identifier_token39] = ACTIONS(1721), - [aux_sym_cmd_identifier_token40] = ACTIONS(1721), - [anon_sym_def] = ACTIONS(1721), - [anon_sym_export_DASHenv] = ACTIONS(1721), - [anon_sym_extern] = ACTIONS(1721), - [anon_sym_module] = ACTIONS(1721), - [anon_sym_use] = ACTIONS(1721), - [anon_sym_LPAREN] = ACTIONS(1721), - [anon_sym_DOLLAR] = ACTIONS(1721), - [anon_sym_error] = ACTIONS(1721), - [anon_sym_list] = ACTIONS(1721), - [anon_sym_DASH] = ACTIONS(1721), - [anon_sym_break] = ACTIONS(1721), - [anon_sym_continue] = ACTIONS(1721), - [anon_sym_for] = ACTIONS(1721), - [anon_sym_in] = ACTIONS(1721), - [anon_sym_loop] = ACTIONS(1721), - [anon_sym_make] = ACTIONS(1721), - [anon_sym_while] = ACTIONS(1721), - [anon_sym_do] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1721), - [anon_sym_else] = ACTIONS(1721), - [anon_sym_match] = ACTIONS(1721), - [anon_sym_RBRACE] = ACTIONS(1721), - [anon_sym_try] = ACTIONS(1721), - [anon_sym_catch] = ACTIONS(1721), - [anon_sym_return] = ACTIONS(1721), - [anon_sym_source] = ACTIONS(1721), - [anon_sym_source_DASHenv] = ACTIONS(1721), - [anon_sym_register] = ACTIONS(1721), - [anon_sym_hide] = ACTIONS(1721), - [anon_sym_hide_DASHenv] = ACTIONS(1721), - [anon_sym_overlay] = ACTIONS(1721), - [anon_sym_new] = ACTIONS(1721), - [anon_sym_as] = ACTIONS(1721), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1721), - [anon_sym_DOT_DOT2] = ACTIONS(1721), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1723), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1723), - [aux_sym__immediate_decimal_token2] = ACTIONS(1963), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1721), - [aux_sym__val_number_decimal_token1] = ACTIONS(1721), - [aux_sym__val_number_decimal_token2] = ACTIONS(1721), - [aux_sym__val_number_decimal_token3] = ACTIONS(1721), - [aux_sym__val_number_decimal_token4] = ACTIONS(1721), - [aux_sym__val_number_token1] = ACTIONS(1721), - [aux_sym__val_number_token2] = ACTIONS(1721), - [aux_sym__val_number_token3] = ACTIONS(1721), - [anon_sym_DQUOTE] = ACTIONS(1721), - [sym__str_single_quotes] = ACTIONS(1721), - [sym__str_back_ticks] = ACTIONS(1721), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1721), - [sym__entry_separator] = ACTIONS(1723), - [anon_sym_PLUS] = ACTIONS(1721), - [anon_sym_POUND] = ACTIONS(3), + [330] = { + [sym_comment] = STATE(330), + [anon_sym_export] = ACTIONS(1802), + [anon_sym_alias] = ACTIONS(1802), + [anon_sym_let] = ACTIONS(1802), + [anon_sym_let_DASHenv] = ACTIONS(1802), + [anon_sym_mut] = ACTIONS(1802), + [anon_sym_const] = ACTIONS(1802), + [aux_sym_cmd_identifier_token1] = ACTIONS(1802), + [aux_sym_cmd_identifier_token2] = ACTIONS(1802), + [aux_sym_cmd_identifier_token3] = ACTIONS(1802), + [aux_sym_cmd_identifier_token4] = ACTIONS(1802), + [aux_sym_cmd_identifier_token5] = ACTIONS(1802), + [aux_sym_cmd_identifier_token6] = ACTIONS(1802), + [aux_sym_cmd_identifier_token7] = ACTIONS(1802), + [aux_sym_cmd_identifier_token8] = ACTIONS(1802), + [aux_sym_cmd_identifier_token9] = ACTIONS(1802), + [aux_sym_cmd_identifier_token10] = ACTIONS(1802), + [aux_sym_cmd_identifier_token11] = ACTIONS(1802), + [aux_sym_cmd_identifier_token12] = ACTIONS(1802), + [aux_sym_cmd_identifier_token13] = ACTIONS(1802), + [aux_sym_cmd_identifier_token14] = ACTIONS(1802), + [aux_sym_cmd_identifier_token15] = ACTIONS(1802), + [aux_sym_cmd_identifier_token16] = ACTIONS(1802), + [aux_sym_cmd_identifier_token17] = ACTIONS(1802), + [aux_sym_cmd_identifier_token18] = ACTIONS(1802), + [aux_sym_cmd_identifier_token19] = ACTIONS(1802), + [aux_sym_cmd_identifier_token20] = ACTIONS(1802), + [aux_sym_cmd_identifier_token21] = ACTIONS(1802), + [aux_sym_cmd_identifier_token22] = ACTIONS(1802), + [aux_sym_cmd_identifier_token23] = ACTIONS(1802), + [aux_sym_cmd_identifier_token24] = ACTIONS(1804), + [aux_sym_cmd_identifier_token25] = ACTIONS(1802), + [aux_sym_cmd_identifier_token26] = ACTIONS(1804), + [aux_sym_cmd_identifier_token27] = ACTIONS(1802), + [aux_sym_cmd_identifier_token28] = ACTIONS(1802), + [aux_sym_cmd_identifier_token29] = ACTIONS(1802), + [aux_sym_cmd_identifier_token30] = ACTIONS(1802), + [aux_sym_cmd_identifier_token31] = ACTIONS(1804), + [aux_sym_cmd_identifier_token32] = ACTIONS(1804), + [aux_sym_cmd_identifier_token33] = ACTIONS(1804), + [aux_sym_cmd_identifier_token34] = ACTIONS(1804), + [aux_sym_cmd_identifier_token35] = ACTIONS(1804), + [aux_sym_cmd_identifier_token36] = ACTIONS(1802), + [anon_sym_true] = ACTIONS(1804), + [anon_sym_false] = ACTIONS(1804), + [anon_sym_null] = ACTIONS(1804), + [aux_sym_cmd_identifier_token38] = ACTIONS(1802), + [aux_sym_cmd_identifier_token39] = ACTIONS(1804), + [aux_sym_cmd_identifier_token40] = ACTIONS(1804), + [sym__newline] = ACTIONS(1804), + [anon_sym_SEMI] = ACTIONS(1804), + [anon_sym_def] = ACTIONS(1802), + [anon_sym_export_DASHenv] = ACTIONS(1802), + [anon_sym_extern] = ACTIONS(1802), + [anon_sym_module] = ACTIONS(1802), + [anon_sym_use] = ACTIONS(1802), + [anon_sym_LBRACK] = ACTIONS(1804), + [anon_sym_LPAREN] = ACTIONS(1804), + [anon_sym_DOLLAR] = ACTIONS(1802), + [anon_sym_error] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_break] = ACTIONS(1802), + [anon_sym_continue] = ACTIONS(1802), + [anon_sym_for] = ACTIONS(1802), + [anon_sym_loop] = ACTIONS(1802), + [anon_sym_while] = ACTIONS(1802), + [anon_sym_do] = ACTIONS(1802), + [anon_sym_if] = ACTIONS(1802), + [anon_sym_match] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1804), + [anon_sym_DOT_DOT] = ACTIONS(1802), + [anon_sym_try] = ACTIONS(1802), + [anon_sym_return] = ACTIONS(1802), + [anon_sym_source] = ACTIONS(1802), + [anon_sym_source_DASHenv] = ACTIONS(1802), + [anon_sym_register] = ACTIONS(1802), + [anon_sym_hide] = ACTIONS(1802), + [anon_sym_hide_DASHenv] = ACTIONS(1802), + [anon_sym_overlay] = ACTIONS(1802), + [anon_sym_where] = ACTIONS(1804), + [aux_sym_expr_unary_token1] = ACTIONS(1804), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1804), + [anon_sym_DOT_DOT_LT] = ACTIONS(1804), + [aux_sym__val_number_decimal_token1] = ACTIONS(1802), + [aux_sym__val_number_decimal_token2] = ACTIONS(1804), + [aux_sym__val_number_decimal_token3] = ACTIONS(1804), + [aux_sym__val_number_decimal_token4] = ACTIONS(1804), + [aux_sym__val_number_token1] = ACTIONS(1804), + [aux_sym__val_number_token2] = ACTIONS(1804), + [aux_sym__val_number_token3] = ACTIONS(1804), + [anon_sym_0b] = ACTIONS(1802), + [anon_sym_0o] = ACTIONS(1802), + [anon_sym_0x] = ACTIONS(1802), + [sym_val_date] = ACTIONS(1804), + [anon_sym_DQUOTE] = ACTIONS(1804), + [sym__str_single_quotes] = ACTIONS(1804), + [sym__str_back_ticks] = ACTIONS(1804), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1804), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1804), + [aux_sym_env_var_token1] = ACTIONS(1802), + [anon_sym_CARET] = ACTIONS(1804), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1804), }, - [372] = { - [sym_comment] = STATE(372), - [anon_sym_export] = ACTIONS(1667), - [anon_sym_alias] = ACTIONS(1667), - [anon_sym_let] = ACTIONS(1667), - [anon_sym_let_DASHenv] = ACTIONS(1667), - [anon_sym_mut] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1667), - [aux_sym_cmd_identifier_token1] = ACTIONS(1667), - [aux_sym_cmd_identifier_token2] = ACTIONS(1667), - [aux_sym_cmd_identifier_token3] = ACTIONS(1667), - [aux_sym_cmd_identifier_token4] = ACTIONS(1667), - [aux_sym_cmd_identifier_token5] = ACTIONS(1667), - [aux_sym_cmd_identifier_token6] = ACTIONS(1667), - [aux_sym_cmd_identifier_token7] = ACTIONS(1667), - [aux_sym_cmd_identifier_token8] = ACTIONS(1667), - [aux_sym_cmd_identifier_token9] = ACTIONS(1667), - [aux_sym_cmd_identifier_token10] = ACTIONS(1667), - [aux_sym_cmd_identifier_token11] = ACTIONS(1667), - [aux_sym_cmd_identifier_token12] = ACTIONS(1667), - [aux_sym_cmd_identifier_token13] = ACTIONS(1667), - [aux_sym_cmd_identifier_token14] = ACTIONS(1667), - [aux_sym_cmd_identifier_token15] = ACTIONS(1667), - [aux_sym_cmd_identifier_token16] = ACTIONS(1667), - [aux_sym_cmd_identifier_token17] = ACTIONS(1667), - [aux_sym_cmd_identifier_token18] = ACTIONS(1667), - [aux_sym_cmd_identifier_token19] = ACTIONS(1667), - [aux_sym_cmd_identifier_token20] = ACTIONS(1667), - [aux_sym_cmd_identifier_token21] = ACTIONS(1667), - [aux_sym_cmd_identifier_token22] = ACTIONS(1667), - [aux_sym_cmd_identifier_token23] = ACTIONS(1667), - [aux_sym_cmd_identifier_token24] = ACTIONS(1667), - [aux_sym_cmd_identifier_token25] = ACTIONS(1667), - [aux_sym_cmd_identifier_token26] = ACTIONS(1667), - [aux_sym_cmd_identifier_token27] = ACTIONS(1667), - [aux_sym_cmd_identifier_token28] = ACTIONS(1667), - [aux_sym_cmd_identifier_token29] = ACTIONS(1667), - [aux_sym_cmd_identifier_token30] = ACTIONS(1667), - [aux_sym_cmd_identifier_token31] = ACTIONS(1667), - [aux_sym_cmd_identifier_token32] = ACTIONS(1667), - [aux_sym_cmd_identifier_token33] = ACTIONS(1667), - [aux_sym_cmd_identifier_token34] = ACTIONS(1667), - [aux_sym_cmd_identifier_token35] = ACTIONS(1667), - [aux_sym_cmd_identifier_token36] = ACTIONS(1667), - [anon_sym_true] = ACTIONS(1669), - [anon_sym_false] = ACTIONS(1669), - [anon_sym_null] = ACTIONS(1669), - [aux_sym_cmd_identifier_token38] = ACTIONS(1667), - [aux_sym_cmd_identifier_token39] = ACTIONS(1669), - [aux_sym_cmd_identifier_token40] = ACTIONS(1669), - [anon_sym_def] = ACTIONS(1667), - [anon_sym_export_DASHenv] = ACTIONS(1667), - [anon_sym_extern] = ACTIONS(1667), - [anon_sym_module] = ACTIONS(1667), - [anon_sym_use] = ACTIONS(1667), - [anon_sym_LPAREN] = ACTIONS(1669), - [anon_sym_DOLLAR] = ACTIONS(1669), - [anon_sym_error] = ACTIONS(1667), - [anon_sym_list] = ACTIONS(1667), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_break] = ACTIONS(1667), - [anon_sym_continue] = ACTIONS(1667), - [anon_sym_for] = ACTIONS(1667), - [anon_sym_in] = ACTIONS(1667), - [anon_sym_loop] = ACTIONS(1667), - [anon_sym_make] = ACTIONS(1667), - [anon_sym_while] = ACTIONS(1667), - [anon_sym_do] = ACTIONS(1667), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_else] = ACTIONS(1667), - [anon_sym_match] = ACTIONS(1667), - [anon_sym_RBRACE] = ACTIONS(1669), - [anon_sym_try] = ACTIONS(1667), - [anon_sym_catch] = ACTIONS(1667), - [anon_sym_return] = ACTIONS(1667), - [anon_sym_source] = ACTIONS(1667), - [anon_sym_source_DASHenv] = ACTIONS(1667), - [anon_sym_register] = ACTIONS(1667), - [anon_sym_hide] = ACTIONS(1667), - [anon_sym_hide_DASHenv] = ACTIONS(1667), - [anon_sym_overlay] = ACTIONS(1667), - [anon_sym_new] = ACTIONS(1667), - [anon_sym_as] = ACTIONS(1667), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1669), - [anon_sym_DOT_DOT2] = ACTIONS(1667), - [anon_sym_DOT] = ACTIONS(1965), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [aux_sym__immediate_decimal_token2] = ACTIONS(1967), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1669), - [aux_sym__val_number_decimal_token1] = ACTIONS(1667), - [aux_sym__val_number_decimal_token2] = ACTIONS(1669), - [aux_sym__val_number_decimal_token3] = ACTIONS(1669), - [aux_sym__val_number_decimal_token4] = ACTIONS(1669), - [aux_sym__val_number_token1] = ACTIONS(1669), - [aux_sym__val_number_token2] = ACTIONS(1669), - [aux_sym__val_number_token3] = ACTIONS(1669), - [anon_sym_DQUOTE] = ACTIONS(1669), - [sym__str_single_quotes] = ACTIONS(1669), - [sym__str_back_ticks] = ACTIONS(1669), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1669), - [anon_sym_PLUS] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(247), + [331] = { + [sym_cmd_identifier] = STATE(4714), + [sym_ctrl_if] = STATE(5165), + [sym_block] = STATE(5096), + [sym__expression] = STATE(5096), + [sym_expr_unary] = STATE(2509), + [sym__expr_unary_minus] = STATE(2510), + [sym_expr_binary] = STATE(2509), + [sym__expr_binary_expression] = STATE(3877), + [sym_expr_parenthesized] = STATE(2042), + [sym_val_range] = STATE(3900), + [sym__value] = STATE(2509), + [sym_val_nothing] = STATE(2441), + [sym_val_bool] = STATE(2441), + [sym_val_variable] = STATE(2055), + [sym_val_number] = STATE(2441), + [sym__val_number_decimal] = STATE(3137), + [sym__val_number] = STATE(2488), + [sym_val_duration] = STATE(2441), + [sym_val_filesize] = STATE(2441), + [sym_val_binary] = STATE(2441), + [sym_val_string] = STATE(2441), + [sym__raw_str] = STATE(2065), + [sym__str_double_quotes] = STATE(2065), + [sym_val_interpolated] = STATE(2441), + [sym__inter_single_quotes] = STATE(2563), + [sym__inter_double_quotes] = STATE(2436), + [sym_val_list] = STATE(2441), + [sym_val_record] = STATE(2441), + [sym_val_table] = STATE(2441), + [sym_val_closure] = STATE(2441), + [sym_command] = STATE(5096), + [sym_comment] = STATE(331), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [aux_sym_cmd_identifier_token2] = ACTIONS(21), + [aux_sym_cmd_identifier_token3] = ACTIONS(21), + [aux_sym_cmd_identifier_token4] = ACTIONS(21), + [aux_sym_cmd_identifier_token5] = ACTIONS(21), + [aux_sym_cmd_identifier_token6] = ACTIONS(21), + [aux_sym_cmd_identifier_token7] = ACTIONS(21), + [aux_sym_cmd_identifier_token8] = ACTIONS(21), + [aux_sym_cmd_identifier_token9] = ACTIONS(19), + [aux_sym_cmd_identifier_token10] = ACTIONS(21), + [aux_sym_cmd_identifier_token11] = ACTIONS(21), + [aux_sym_cmd_identifier_token12] = ACTIONS(21), + [aux_sym_cmd_identifier_token13] = ACTIONS(19), + [aux_sym_cmd_identifier_token14] = ACTIONS(21), + [aux_sym_cmd_identifier_token15] = ACTIONS(19), + [aux_sym_cmd_identifier_token16] = ACTIONS(21), + [aux_sym_cmd_identifier_token17] = ACTIONS(21), + [aux_sym_cmd_identifier_token18] = ACTIONS(21), + [aux_sym_cmd_identifier_token19] = ACTIONS(21), + [aux_sym_cmd_identifier_token20] = ACTIONS(21), + [aux_sym_cmd_identifier_token21] = ACTIONS(21), + [aux_sym_cmd_identifier_token22] = ACTIONS(21), + [aux_sym_cmd_identifier_token23] = ACTIONS(19), + [aux_sym_cmd_identifier_token24] = ACTIONS(21), + [aux_sym_cmd_identifier_token25] = ACTIONS(21), + [aux_sym_cmd_identifier_token26] = ACTIONS(21), + [aux_sym_cmd_identifier_token27] = ACTIONS(21), + [aux_sym_cmd_identifier_token28] = ACTIONS(21), + [aux_sym_cmd_identifier_token29] = ACTIONS(21), + [aux_sym_cmd_identifier_token30] = ACTIONS(21), + [aux_sym_cmd_identifier_token31] = ACTIONS(21), + [aux_sym_cmd_identifier_token32] = ACTIONS(21), + [aux_sym_cmd_identifier_token33] = ACTIONS(21), + [aux_sym_cmd_identifier_token34] = ACTIONS(21), + [aux_sym_cmd_identifier_token35] = ACTIONS(21), + [aux_sym_cmd_identifier_token36] = ACTIONS(19), + [anon_sym_true] = ACTIONS(1863), + [anon_sym_false] = ACTIONS(1863), + [anon_sym_null] = ACTIONS(1865), + [aux_sym_cmd_identifier_token38] = ACTIONS(1867), + [aux_sym_cmd_identifier_token39] = ACTIONS(1869), + [aux_sym_cmd_identifier_token40] = ACTIONS(1869), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(53), + [anon_sym_if] = ACTIONS(67), + [anon_sym_LBRACE] = ACTIONS(1871), + [anon_sym_DOT_DOT] = ACTIONS(73), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(93), + [anon_sym_DOT_DOT_LT] = ACTIONS(93), + [aux_sym__val_number_decimal_token1] = ACTIONS(1873), + [aux_sym__val_number_decimal_token2] = ACTIONS(1875), + [aux_sym__val_number_decimal_token3] = ACTIONS(1877), + [aux_sym__val_number_decimal_token4] = ACTIONS(1879), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(109), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(123), }, - [373] = { - [sym_comment] = STATE(373), - [anon_sym_export] = ACTIONS(1788), - [anon_sym_alias] = ACTIONS(1788), - [anon_sym_let] = ACTIONS(1788), - [anon_sym_let_DASHenv] = ACTIONS(1788), - [anon_sym_mut] = ACTIONS(1788), - [anon_sym_const] = ACTIONS(1788), - [aux_sym_cmd_identifier_token1] = ACTIONS(1788), - [aux_sym_cmd_identifier_token2] = ACTIONS(1788), - [aux_sym_cmd_identifier_token3] = ACTIONS(1788), - [aux_sym_cmd_identifier_token4] = ACTIONS(1788), - [aux_sym_cmd_identifier_token5] = ACTIONS(1788), - [aux_sym_cmd_identifier_token6] = ACTIONS(1788), - [aux_sym_cmd_identifier_token7] = ACTIONS(1788), - [aux_sym_cmd_identifier_token8] = ACTIONS(1788), - [aux_sym_cmd_identifier_token9] = ACTIONS(1788), - [aux_sym_cmd_identifier_token10] = ACTIONS(1788), - [aux_sym_cmd_identifier_token11] = ACTIONS(1788), - [aux_sym_cmd_identifier_token12] = ACTIONS(1788), - [aux_sym_cmd_identifier_token13] = ACTIONS(1788), - [aux_sym_cmd_identifier_token14] = ACTIONS(1788), - [aux_sym_cmd_identifier_token15] = ACTIONS(1788), - [aux_sym_cmd_identifier_token16] = ACTIONS(1788), - [aux_sym_cmd_identifier_token17] = ACTIONS(1788), - [aux_sym_cmd_identifier_token18] = ACTIONS(1788), - [aux_sym_cmd_identifier_token19] = ACTIONS(1788), - [aux_sym_cmd_identifier_token20] = ACTIONS(1788), - [aux_sym_cmd_identifier_token21] = ACTIONS(1788), - [aux_sym_cmd_identifier_token22] = ACTIONS(1788), - [aux_sym_cmd_identifier_token23] = ACTIONS(1788), - [aux_sym_cmd_identifier_token24] = ACTIONS(1788), - [aux_sym_cmd_identifier_token25] = ACTIONS(1788), - [aux_sym_cmd_identifier_token26] = ACTIONS(1788), - [aux_sym_cmd_identifier_token27] = ACTIONS(1788), - [aux_sym_cmd_identifier_token28] = ACTIONS(1788), - [aux_sym_cmd_identifier_token29] = ACTIONS(1788), - [aux_sym_cmd_identifier_token30] = ACTIONS(1788), - [aux_sym_cmd_identifier_token31] = ACTIONS(1788), - [aux_sym_cmd_identifier_token32] = ACTIONS(1788), - [aux_sym_cmd_identifier_token33] = ACTIONS(1788), - [aux_sym_cmd_identifier_token34] = ACTIONS(1788), - [aux_sym_cmd_identifier_token35] = ACTIONS(1788), - [aux_sym_cmd_identifier_token36] = ACTIONS(1788), - [anon_sym_true] = ACTIONS(1796), - [anon_sym_false] = ACTIONS(1796), - [anon_sym_null] = ACTIONS(1796), - [aux_sym_cmd_identifier_token38] = ACTIONS(1788), - [aux_sym_cmd_identifier_token39] = ACTIONS(1796), - [aux_sym_cmd_identifier_token40] = ACTIONS(1796), - [anon_sym_def] = ACTIONS(1788), - [anon_sym_export_DASHenv] = ACTIONS(1788), - [anon_sym_extern] = ACTIONS(1788), - [anon_sym_module] = ACTIONS(1788), - [anon_sym_use] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1788), - [anon_sym_DOLLAR] = ACTIONS(1796), - [anon_sym_error] = ACTIONS(1788), - [anon_sym_list] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_break] = ACTIONS(1788), - [anon_sym_continue] = ACTIONS(1788), - [anon_sym_for] = ACTIONS(1788), - [anon_sym_in] = ACTIONS(1788), - [anon_sym_loop] = ACTIONS(1788), - [anon_sym_make] = ACTIONS(1788), - [anon_sym_while] = ACTIONS(1788), - [anon_sym_do] = ACTIONS(1788), - [anon_sym_if] = ACTIONS(1788), - [anon_sym_else] = ACTIONS(1788), - [anon_sym_match] = ACTIONS(1788), - [anon_sym_RBRACE] = ACTIONS(1796), - [anon_sym_try] = ACTIONS(1788), - [anon_sym_catch] = ACTIONS(1788), - [anon_sym_return] = ACTIONS(1788), - [anon_sym_source] = ACTIONS(1788), - [anon_sym_source_DASHenv] = ACTIONS(1788), - [anon_sym_register] = ACTIONS(1788), - [anon_sym_hide] = ACTIONS(1788), - [anon_sym_hide_DASHenv] = ACTIONS(1788), - [anon_sym_overlay] = ACTIONS(1788), - [anon_sym_new] = ACTIONS(1788), - [anon_sym_as] = ACTIONS(1788), - [anon_sym_LPAREN2] = ACTIONS(1790), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1796), - [anon_sym_DOT_DOT2] = ACTIONS(1969), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1971), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1971), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1796), - [aux_sym__val_number_decimal_token1] = ACTIONS(1788), - [aux_sym__val_number_decimal_token2] = ACTIONS(1796), - [aux_sym__val_number_decimal_token3] = ACTIONS(1796), - [aux_sym__val_number_decimal_token4] = ACTIONS(1796), - [aux_sym__val_number_token1] = ACTIONS(1796), - [aux_sym__val_number_token2] = ACTIONS(1796), - [aux_sym__val_number_token3] = ACTIONS(1796), - [anon_sym_DQUOTE] = ACTIONS(1796), - [sym__str_single_quotes] = ACTIONS(1796), - [sym__str_back_ticks] = ACTIONS(1796), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1796), - [anon_sym_PLUS] = ACTIONS(1788), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1798), - [anon_sym_POUND] = ACTIONS(247), + [332] = { + [sym_comment] = STATE(332), + [anon_sym_export] = ACTIONS(1881), + [anon_sym_alias] = ACTIONS(1881), + [anon_sym_let] = ACTIONS(1881), + [anon_sym_let_DASHenv] = ACTIONS(1881), + [anon_sym_mut] = ACTIONS(1881), + [anon_sym_const] = ACTIONS(1881), + [aux_sym_cmd_identifier_token1] = ACTIONS(1881), + [aux_sym_cmd_identifier_token2] = ACTIONS(1881), + [aux_sym_cmd_identifier_token3] = ACTIONS(1881), + [aux_sym_cmd_identifier_token4] = ACTIONS(1881), + [aux_sym_cmd_identifier_token5] = ACTIONS(1881), + [aux_sym_cmd_identifier_token6] = ACTIONS(1881), + [aux_sym_cmd_identifier_token7] = ACTIONS(1881), + [aux_sym_cmd_identifier_token8] = ACTIONS(1881), + [aux_sym_cmd_identifier_token9] = ACTIONS(1881), + [aux_sym_cmd_identifier_token10] = ACTIONS(1881), + [aux_sym_cmd_identifier_token11] = ACTIONS(1881), + [aux_sym_cmd_identifier_token12] = ACTIONS(1881), + [aux_sym_cmd_identifier_token13] = ACTIONS(1881), + [aux_sym_cmd_identifier_token14] = ACTIONS(1881), + [aux_sym_cmd_identifier_token15] = ACTIONS(1881), + [aux_sym_cmd_identifier_token16] = ACTIONS(1881), + [aux_sym_cmd_identifier_token17] = ACTIONS(1881), + [aux_sym_cmd_identifier_token18] = ACTIONS(1881), + [aux_sym_cmd_identifier_token19] = ACTIONS(1881), + [aux_sym_cmd_identifier_token20] = ACTIONS(1881), + [aux_sym_cmd_identifier_token21] = ACTIONS(1881), + [aux_sym_cmd_identifier_token22] = ACTIONS(1881), + [aux_sym_cmd_identifier_token23] = ACTIONS(1881), + [aux_sym_cmd_identifier_token24] = ACTIONS(1883), + [aux_sym_cmd_identifier_token25] = ACTIONS(1881), + [aux_sym_cmd_identifier_token26] = ACTIONS(1883), + [aux_sym_cmd_identifier_token27] = ACTIONS(1881), + [aux_sym_cmd_identifier_token28] = ACTIONS(1881), + [aux_sym_cmd_identifier_token29] = ACTIONS(1881), + [aux_sym_cmd_identifier_token30] = ACTIONS(1881), + [aux_sym_cmd_identifier_token31] = ACTIONS(1883), + [aux_sym_cmd_identifier_token32] = ACTIONS(1883), + [aux_sym_cmd_identifier_token33] = ACTIONS(1883), + [aux_sym_cmd_identifier_token34] = ACTIONS(1883), + [aux_sym_cmd_identifier_token35] = ACTIONS(1883), + [aux_sym_cmd_identifier_token36] = ACTIONS(1881), + [anon_sym_true] = ACTIONS(1883), + [anon_sym_false] = ACTIONS(1883), + [anon_sym_null] = ACTIONS(1883), + [aux_sym_cmd_identifier_token38] = ACTIONS(1881), + [aux_sym_cmd_identifier_token39] = ACTIONS(1883), + [aux_sym_cmd_identifier_token40] = ACTIONS(1883), + [sym__newline] = ACTIONS(1883), + [anon_sym_SEMI] = ACTIONS(1883), + [anon_sym_def] = ACTIONS(1881), + [anon_sym_export_DASHenv] = ACTIONS(1881), + [anon_sym_extern] = ACTIONS(1881), + [anon_sym_module] = ACTIONS(1881), + [anon_sym_use] = ACTIONS(1881), + [anon_sym_LBRACK] = ACTIONS(1883), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_DOLLAR] = ACTIONS(1881), + [anon_sym_error] = ACTIONS(1881), + [anon_sym_DASH] = ACTIONS(1881), + [anon_sym_break] = ACTIONS(1881), + [anon_sym_continue] = ACTIONS(1881), + [anon_sym_for] = ACTIONS(1881), + [anon_sym_loop] = ACTIONS(1881), + [anon_sym_while] = ACTIONS(1881), + [anon_sym_do] = ACTIONS(1881), + [anon_sym_if] = ACTIONS(1881), + [anon_sym_match] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1883), + [anon_sym_DOT_DOT] = ACTIONS(1881), + [anon_sym_try] = ACTIONS(1881), + [anon_sym_return] = ACTIONS(1881), + [anon_sym_source] = ACTIONS(1881), + [anon_sym_source_DASHenv] = ACTIONS(1881), + [anon_sym_register] = ACTIONS(1881), + [anon_sym_hide] = ACTIONS(1881), + [anon_sym_hide_DASHenv] = ACTIONS(1881), + [anon_sym_overlay] = ACTIONS(1881), + [anon_sym_where] = ACTIONS(1883), + [aux_sym_expr_unary_token1] = ACTIONS(1883), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1883), + [anon_sym_DOT_DOT_LT] = ACTIONS(1883), + [aux_sym__val_number_decimal_token1] = ACTIONS(1881), + [aux_sym__val_number_decimal_token2] = ACTIONS(1883), + [aux_sym__val_number_decimal_token3] = ACTIONS(1883), + [aux_sym__val_number_decimal_token4] = ACTIONS(1883), + [aux_sym__val_number_token1] = ACTIONS(1883), + [aux_sym__val_number_token2] = ACTIONS(1883), + [aux_sym__val_number_token3] = ACTIONS(1883), + [anon_sym_0b] = ACTIONS(1881), + [anon_sym_0o] = ACTIONS(1881), + [anon_sym_0x] = ACTIONS(1881), + [sym_val_date] = ACTIONS(1883), + [anon_sym_DQUOTE] = ACTIONS(1883), + [sym__str_single_quotes] = ACTIONS(1883), + [sym__str_back_ticks] = ACTIONS(1883), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1883), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1883), + [aux_sym_env_var_token1] = ACTIONS(1881), + [anon_sym_CARET] = ACTIONS(1883), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1883), }, - [374] = { - [sym_comment] = STATE(374), - [anon_sym_export] = ACTIONS(1050), - [anon_sym_alias] = ACTIONS(1050), - [anon_sym_let] = ACTIONS(1050), - [anon_sym_let_DASHenv] = ACTIONS(1050), - [anon_sym_mut] = ACTIONS(1050), - [anon_sym_const] = ACTIONS(1050), - [aux_sym_cmd_identifier_token1] = ACTIONS(1050), - [aux_sym_cmd_identifier_token2] = ACTIONS(1050), - [aux_sym_cmd_identifier_token3] = ACTIONS(1050), - [aux_sym_cmd_identifier_token4] = ACTIONS(1050), - [aux_sym_cmd_identifier_token5] = ACTIONS(1050), - [aux_sym_cmd_identifier_token6] = ACTIONS(1050), - [aux_sym_cmd_identifier_token7] = ACTIONS(1050), - [aux_sym_cmd_identifier_token8] = ACTIONS(1050), - [aux_sym_cmd_identifier_token9] = ACTIONS(1050), - [aux_sym_cmd_identifier_token10] = ACTIONS(1050), - [aux_sym_cmd_identifier_token11] = ACTIONS(1050), - [aux_sym_cmd_identifier_token12] = ACTIONS(1050), - [aux_sym_cmd_identifier_token13] = ACTIONS(1050), - [aux_sym_cmd_identifier_token14] = ACTIONS(1050), - [aux_sym_cmd_identifier_token15] = ACTIONS(1050), - [aux_sym_cmd_identifier_token16] = ACTIONS(1050), - [aux_sym_cmd_identifier_token17] = ACTIONS(1050), - [aux_sym_cmd_identifier_token18] = ACTIONS(1050), - [aux_sym_cmd_identifier_token19] = ACTIONS(1050), - [aux_sym_cmd_identifier_token20] = ACTIONS(1050), - [aux_sym_cmd_identifier_token21] = ACTIONS(1050), - [aux_sym_cmd_identifier_token22] = ACTIONS(1050), - [aux_sym_cmd_identifier_token23] = ACTIONS(1050), - [aux_sym_cmd_identifier_token24] = ACTIONS(1050), - [aux_sym_cmd_identifier_token25] = ACTIONS(1050), - [aux_sym_cmd_identifier_token26] = ACTIONS(1050), - [aux_sym_cmd_identifier_token27] = ACTIONS(1050), - [aux_sym_cmd_identifier_token28] = ACTIONS(1050), - [aux_sym_cmd_identifier_token29] = ACTIONS(1050), - [aux_sym_cmd_identifier_token30] = ACTIONS(1050), - [aux_sym_cmd_identifier_token31] = ACTIONS(1050), - [aux_sym_cmd_identifier_token32] = ACTIONS(1050), - [aux_sym_cmd_identifier_token33] = ACTIONS(1050), - [aux_sym_cmd_identifier_token34] = ACTIONS(1050), - [aux_sym_cmd_identifier_token35] = ACTIONS(1050), - [aux_sym_cmd_identifier_token36] = ACTIONS(1050), - [anon_sym_true] = ACTIONS(1050), - [anon_sym_false] = ACTIONS(1050), - [anon_sym_null] = ACTIONS(1050), - [aux_sym_cmd_identifier_token38] = ACTIONS(1050), - [aux_sym_cmd_identifier_token39] = ACTIONS(1050), - [aux_sym_cmd_identifier_token40] = ACTIONS(1050), - [anon_sym_def] = ACTIONS(1050), - [anon_sym_export_DASHenv] = ACTIONS(1050), - [anon_sym_extern] = ACTIONS(1050), - [anon_sym_module] = ACTIONS(1050), - [anon_sym_use] = ACTIONS(1050), - [anon_sym_LPAREN] = ACTIONS(1050), - [anon_sym_DOLLAR] = ACTIONS(1050), - [anon_sym_error] = ACTIONS(1050), - [anon_sym_list] = ACTIONS(1050), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_break] = ACTIONS(1050), - [anon_sym_continue] = ACTIONS(1050), - [anon_sym_for] = ACTIONS(1050), - [anon_sym_in] = ACTIONS(1050), - [anon_sym_loop] = ACTIONS(1050), - [anon_sym_make] = ACTIONS(1050), - [anon_sym_while] = ACTIONS(1050), - [anon_sym_do] = ACTIONS(1050), - [anon_sym_if] = ACTIONS(1050), - [anon_sym_else] = ACTIONS(1050), - [anon_sym_match] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(1050), - [anon_sym_try] = ACTIONS(1050), - [anon_sym_catch] = ACTIONS(1050), - [anon_sym_return] = ACTIONS(1050), - [anon_sym_source] = ACTIONS(1050), - [anon_sym_source_DASHenv] = ACTIONS(1050), - [anon_sym_register] = ACTIONS(1050), - [anon_sym_hide] = ACTIONS(1050), - [anon_sym_hide_DASHenv] = ACTIONS(1050), - [anon_sym_overlay] = ACTIONS(1050), - [anon_sym_new] = ACTIONS(1050), - [anon_sym_as] = ACTIONS(1050), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1050), - [anon_sym_DOT_DOT2] = ACTIONS(1050), - [anon_sym_DOT] = ACTIONS(1050), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1052), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1052), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1050), - [aux_sym__val_number_decimal_token1] = ACTIONS(1050), - [aux_sym__val_number_decimal_token2] = ACTIONS(1050), - [aux_sym__val_number_decimal_token3] = ACTIONS(1050), - [aux_sym__val_number_decimal_token4] = ACTIONS(1050), - [aux_sym__val_number_token1] = ACTIONS(1050), - [aux_sym__val_number_token2] = ACTIONS(1050), - [aux_sym__val_number_token3] = ACTIONS(1050), - [anon_sym_DQUOTE] = ACTIONS(1050), - [sym__str_single_quotes] = ACTIONS(1050), - [sym__str_back_ticks] = ACTIONS(1050), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1050), - [sym__entry_separator] = ACTIONS(1052), - [anon_sym_PLUS] = ACTIONS(1050), + [333] = { + [sym_comment] = STATE(333), + [anon_sym_export] = ACTIONS(1058), + [anon_sym_alias] = ACTIONS(1058), + [anon_sym_let] = ACTIONS(1058), + [anon_sym_let_DASHenv] = ACTIONS(1058), + [anon_sym_mut] = ACTIONS(1058), + [anon_sym_const] = ACTIONS(1058), + [aux_sym_cmd_identifier_token1] = ACTIONS(1058), + [aux_sym_cmd_identifier_token2] = ACTIONS(1058), + [aux_sym_cmd_identifier_token3] = ACTIONS(1058), + [aux_sym_cmd_identifier_token4] = ACTIONS(1058), + [aux_sym_cmd_identifier_token5] = ACTIONS(1058), + [aux_sym_cmd_identifier_token6] = ACTIONS(1058), + [aux_sym_cmd_identifier_token7] = ACTIONS(1058), + [aux_sym_cmd_identifier_token8] = ACTIONS(1058), + [aux_sym_cmd_identifier_token9] = ACTIONS(1058), + [aux_sym_cmd_identifier_token10] = ACTIONS(1058), + [aux_sym_cmd_identifier_token11] = ACTIONS(1058), + [aux_sym_cmd_identifier_token12] = ACTIONS(1058), + [aux_sym_cmd_identifier_token13] = ACTIONS(1058), + [aux_sym_cmd_identifier_token14] = ACTIONS(1058), + [aux_sym_cmd_identifier_token15] = ACTIONS(1058), + [aux_sym_cmd_identifier_token16] = ACTIONS(1058), + [aux_sym_cmd_identifier_token17] = ACTIONS(1058), + [aux_sym_cmd_identifier_token18] = ACTIONS(1058), + [aux_sym_cmd_identifier_token19] = ACTIONS(1058), + [aux_sym_cmd_identifier_token20] = ACTIONS(1058), + [aux_sym_cmd_identifier_token21] = ACTIONS(1058), + [aux_sym_cmd_identifier_token22] = ACTIONS(1058), + [aux_sym_cmd_identifier_token23] = ACTIONS(1058), + [aux_sym_cmd_identifier_token24] = ACTIONS(1058), + [aux_sym_cmd_identifier_token25] = ACTIONS(1058), + [aux_sym_cmd_identifier_token26] = ACTIONS(1058), + [aux_sym_cmd_identifier_token27] = ACTIONS(1058), + [aux_sym_cmd_identifier_token28] = ACTIONS(1058), + [aux_sym_cmd_identifier_token29] = ACTIONS(1058), + [aux_sym_cmd_identifier_token30] = ACTIONS(1058), + [aux_sym_cmd_identifier_token31] = ACTIONS(1058), + [aux_sym_cmd_identifier_token32] = ACTIONS(1058), + [aux_sym_cmd_identifier_token33] = ACTIONS(1058), + [aux_sym_cmd_identifier_token34] = ACTIONS(1058), + [aux_sym_cmd_identifier_token35] = ACTIONS(1058), + [aux_sym_cmd_identifier_token36] = ACTIONS(1058), + [anon_sym_true] = ACTIONS(1060), + [anon_sym_false] = ACTIONS(1060), + [anon_sym_null] = ACTIONS(1060), + [aux_sym_cmd_identifier_token38] = ACTIONS(1058), + [aux_sym_cmd_identifier_token39] = ACTIONS(1060), + [aux_sym_cmd_identifier_token40] = ACTIONS(1060), + [anon_sym_def] = ACTIONS(1058), + [anon_sym_export_DASHenv] = ACTIONS(1058), + [anon_sym_extern] = ACTIONS(1058), + [anon_sym_module] = ACTIONS(1058), + [anon_sym_use] = ACTIONS(1058), + [anon_sym_LPAREN] = ACTIONS(1060), + [anon_sym_DOLLAR] = ACTIONS(1060), + [anon_sym_error] = ACTIONS(1058), + [anon_sym_list] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1058), + [anon_sym_break] = ACTIONS(1058), + [anon_sym_continue] = ACTIONS(1058), + [anon_sym_for] = ACTIONS(1058), + [anon_sym_in] = ACTIONS(1058), + [anon_sym_loop] = ACTIONS(1058), + [anon_sym_make] = ACTIONS(1058), + [anon_sym_while] = ACTIONS(1058), + [anon_sym_do] = ACTIONS(1058), + [anon_sym_if] = ACTIONS(1058), + [anon_sym_else] = ACTIONS(1058), + [anon_sym_match] = ACTIONS(1058), + [anon_sym_RBRACE] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1058), + [anon_sym_catch] = ACTIONS(1058), + [anon_sym_return] = ACTIONS(1058), + [anon_sym_source] = ACTIONS(1058), + [anon_sym_source_DASHenv] = ACTIONS(1058), + [anon_sym_register] = ACTIONS(1058), + [anon_sym_hide] = ACTIONS(1058), + [anon_sym_hide_DASHenv] = ACTIONS(1058), + [anon_sym_overlay] = ACTIONS(1058), + [anon_sym_new] = ACTIONS(1058), + [anon_sym_as] = ACTIONS(1058), + [anon_sym_QMARK2] = ACTIONS(1060), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1060), + [anon_sym_DOT_DOT2] = ACTIONS(1058), + [anon_sym_DOT] = ACTIONS(1058), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1060), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1060), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1060), + [aux_sym__val_number_decimal_token1] = ACTIONS(1058), + [aux_sym__val_number_decimal_token2] = ACTIONS(1060), + [aux_sym__val_number_decimal_token3] = ACTIONS(1060), + [aux_sym__val_number_decimal_token4] = ACTIONS(1060), + [aux_sym__val_number_token1] = ACTIONS(1060), + [aux_sym__val_number_token2] = ACTIONS(1060), + [aux_sym__val_number_token3] = ACTIONS(1060), + [anon_sym_DQUOTE] = ACTIONS(1060), + [sym__str_single_quotes] = ACTIONS(1060), + [sym__str_back_ticks] = ACTIONS(1060), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1060), + [anon_sym_PLUS] = ACTIONS(1058), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1060), + }, + [334] = { + [sym_cell_path] = STATE(606), + [sym_path] = STATE(518), + [sym_comment] = STATE(334), + [aux_sym_cell_path_repeat1] = STATE(411), + [anon_sym_export] = ACTIONS(1021), + [anon_sym_alias] = ACTIONS(1021), + [anon_sym_let] = ACTIONS(1021), + [anon_sym_let_DASHenv] = ACTIONS(1021), + [anon_sym_mut] = ACTIONS(1021), + [anon_sym_const] = ACTIONS(1021), + [aux_sym_cmd_identifier_token1] = ACTIONS(1021), + [aux_sym_cmd_identifier_token2] = ACTIONS(1021), + [aux_sym_cmd_identifier_token3] = ACTIONS(1021), + [aux_sym_cmd_identifier_token4] = ACTIONS(1021), + [aux_sym_cmd_identifier_token5] = ACTIONS(1021), + [aux_sym_cmd_identifier_token6] = ACTIONS(1021), + [aux_sym_cmd_identifier_token7] = ACTIONS(1021), + [aux_sym_cmd_identifier_token8] = ACTIONS(1021), + [aux_sym_cmd_identifier_token9] = ACTIONS(1021), + [aux_sym_cmd_identifier_token10] = ACTIONS(1021), + [aux_sym_cmd_identifier_token11] = ACTIONS(1021), + [aux_sym_cmd_identifier_token12] = ACTIONS(1021), + [aux_sym_cmd_identifier_token13] = ACTIONS(1021), + [aux_sym_cmd_identifier_token14] = ACTIONS(1021), + [aux_sym_cmd_identifier_token15] = ACTIONS(1021), + [aux_sym_cmd_identifier_token16] = ACTIONS(1021), + [aux_sym_cmd_identifier_token17] = ACTIONS(1021), + [aux_sym_cmd_identifier_token18] = ACTIONS(1021), + [aux_sym_cmd_identifier_token19] = ACTIONS(1021), + [aux_sym_cmd_identifier_token20] = ACTIONS(1021), + [aux_sym_cmd_identifier_token21] = ACTIONS(1021), + [aux_sym_cmd_identifier_token22] = ACTIONS(1021), + [aux_sym_cmd_identifier_token23] = ACTIONS(1021), + [aux_sym_cmd_identifier_token24] = ACTIONS(1021), + [aux_sym_cmd_identifier_token25] = ACTIONS(1021), + [aux_sym_cmd_identifier_token26] = ACTIONS(1021), + [aux_sym_cmd_identifier_token27] = ACTIONS(1021), + [aux_sym_cmd_identifier_token28] = ACTIONS(1021), + [aux_sym_cmd_identifier_token29] = ACTIONS(1021), + [aux_sym_cmd_identifier_token30] = ACTIONS(1021), + [aux_sym_cmd_identifier_token31] = ACTIONS(1021), + [aux_sym_cmd_identifier_token32] = ACTIONS(1021), + [aux_sym_cmd_identifier_token33] = ACTIONS(1021), + [aux_sym_cmd_identifier_token34] = ACTIONS(1021), + [aux_sym_cmd_identifier_token35] = ACTIONS(1021), + [aux_sym_cmd_identifier_token36] = ACTIONS(1021), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_null] = ACTIONS(1021), + [aux_sym_cmd_identifier_token38] = ACTIONS(1021), + [aux_sym_cmd_identifier_token39] = ACTIONS(1021), + [aux_sym_cmd_identifier_token40] = ACTIONS(1021), + [anon_sym_def] = ACTIONS(1021), + [anon_sym_export_DASHenv] = ACTIONS(1021), + [anon_sym_extern] = ACTIONS(1021), + [anon_sym_module] = ACTIONS(1021), + [anon_sym_use] = ACTIONS(1021), + [anon_sym_LPAREN] = ACTIONS(1021), + [anon_sym_DOLLAR] = ACTIONS(1021), + [anon_sym_error] = ACTIONS(1021), + [anon_sym_list] = ACTIONS(1021), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_break] = ACTIONS(1021), + [anon_sym_continue] = ACTIONS(1021), + [anon_sym_for] = ACTIONS(1021), + [anon_sym_in] = ACTIONS(1021), + [anon_sym_loop] = ACTIONS(1021), + [anon_sym_make] = ACTIONS(1021), + [anon_sym_while] = ACTIONS(1021), + [anon_sym_do] = ACTIONS(1021), + [anon_sym_if] = ACTIONS(1021), + [anon_sym_else] = ACTIONS(1021), + [anon_sym_match] = ACTIONS(1021), + [anon_sym_RBRACE] = ACTIONS(1021), + [anon_sym_try] = ACTIONS(1021), + [anon_sym_catch] = ACTIONS(1021), + [anon_sym_return] = ACTIONS(1021), + [anon_sym_source] = ACTIONS(1021), + [anon_sym_source_DASHenv] = ACTIONS(1021), + [anon_sym_register] = ACTIONS(1021), + [anon_sym_hide] = ACTIONS(1021), + [anon_sym_hide_DASHenv] = ACTIONS(1021), + [anon_sym_overlay] = ACTIONS(1021), + [anon_sym_new] = ACTIONS(1021), + [anon_sym_as] = ACTIONS(1021), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1021), + [anon_sym_DOT] = ACTIONS(1856), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1021), + [aux_sym__val_number_decimal_token1] = ACTIONS(1021), + [aux_sym__val_number_decimal_token2] = ACTIONS(1021), + [aux_sym__val_number_decimal_token3] = ACTIONS(1021), + [aux_sym__val_number_decimal_token4] = ACTIONS(1021), + [aux_sym__val_number_token1] = ACTIONS(1021), + [aux_sym__val_number_token2] = ACTIONS(1021), + [aux_sym__val_number_token3] = ACTIONS(1021), + [anon_sym_DQUOTE] = ACTIONS(1021), + [sym__str_single_quotes] = ACTIONS(1021), + [sym__str_back_ticks] = ACTIONS(1021), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1021), + [sym__entry_separator] = ACTIONS(1023), + [anon_sym_PLUS] = ACTIONS(1021), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1023), }, - [375] = { - [sym_comment] = STATE(375), + [335] = { + [sym_comment] = STATE(335), + [anon_sym_export] = ACTIONS(1062), + [anon_sym_alias] = ACTIONS(1062), + [anon_sym_let] = ACTIONS(1062), + [anon_sym_let_DASHenv] = ACTIONS(1062), + [anon_sym_mut] = ACTIONS(1062), + [anon_sym_const] = ACTIONS(1062), + [aux_sym_cmd_identifier_token1] = ACTIONS(1062), + [aux_sym_cmd_identifier_token2] = ACTIONS(1062), + [aux_sym_cmd_identifier_token3] = ACTIONS(1062), + [aux_sym_cmd_identifier_token4] = ACTIONS(1062), + [aux_sym_cmd_identifier_token5] = ACTIONS(1062), + [aux_sym_cmd_identifier_token6] = ACTIONS(1062), + [aux_sym_cmd_identifier_token7] = ACTIONS(1062), + [aux_sym_cmd_identifier_token8] = ACTIONS(1062), + [aux_sym_cmd_identifier_token9] = ACTIONS(1062), + [aux_sym_cmd_identifier_token10] = ACTIONS(1062), + [aux_sym_cmd_identifier_token11] = ACTIONS(1062), + [aux_sym_cmd_identifier_token12] = ACTIONS(1062), + [aux_sym_cmd_identifier_token13] = ACTIONS(1062), + [aux_sym_cmd_identifier_token14] = ACTIONS(1062), + [aux_sym_cmd_identifier_token15] = ACTIONS(1062), + [aux_sym_cmd_identifier_token16] = ACTIONS(1062), + [aux_sym_cmd_identifier_token17] = ACTIONS(1062), + [aux_sym_cmd_identifier_token18] = ACTIONS(1062), + [aux_sym_cmd_identifier_token19] = ACTIONS(1062), + [aux_sym_cmd_identifier_token20] = ACTIONS(1062), + [aux_sym_cmd_identifier_token21] = ACTIONS(1062), + [aux_sym_cmd_identifier_token22] = ACTIONS(1062), + [aux_sym_cmd_identifier_token23] = ACTIONS(1062), + [aux_sym_cmd_identifier_token24] = ACTIONS(1062), + [aux_sym_cmd_identifier_token25] = ACTIONS(1062), + [aux_sym_cmd_identifier_token26] = ACTIONS(1062), + [aux_sym_cmd_identifier_token27] = ACTIONS(1062), + [aux_sym_cmd_identifier_token28] = ACTIONS(1062), + [aux_sym_cmd_identifier_token29] = ACTIONS(1062), + [aux_sym_cmd_identifier_token30] = ACTIONS(1062), + [aux_sym_cmd_identifier_token31] = ACTIONS(1062), + [aux_sym_cmd_identifier_token32] = ACTIONS(1062), + [aux_sym_cmd_identifier_token33] = ACTIONS(1062), + [aux_sym_cmd_identifier_token34] = ACTIONS(1062), + [aux_sym_cmd_identifier_token35] = ACTIONS(1062), + [aux_sym_cmd_identifier_token36] = ACTIONS(1062), + [anon_sym_true] = ACTIONS(1064), + [anon_sym_false] = ACTIONS(1064), + [anon_sym_null] = ACTIONS(1064), + [aux_sym_cmd_identifier_token38] = ACTIONS(1062), + [aux_sym_cmd_identifier_token39] = ACTIONS(1064), + [aux_sym_cmd_identifier_token40] = ACTIONS(1064), + [anon_sym_def] = ACTIONS(1062), + [anon_sym_export_DASHenv] = ACTIONS(1062), + [anon_sym_extern] = ACTIONS(1062), + [anon_sym_module] = ACTIONS(1062), + [anon_sym_use] = ACTIONS(1062), + [anon_sym_LPAREN] = ACTIONS(1064), + [anon_sym_DOLLAR] = ACTIONS(1064), + [anon_sym_error] = ACTIONS(1062), + [anon_sym_list] = ACTIONS(1062), + [anon_sym_DASH] = ACTIONS(1062), + [anon_sym_break] = ACTIONS(1062), + [anon_sym_continue] = ACTIONS(1062), + [anon_sym_for] = ACTIONS(1062), + [anon_sym_in] = ACTIONS(1062), + [anon_sym_loop] = ACTIONS(1062), + [anon_sym_make] = ACTIONS(1062), + [anon_sym_while] = ACTIONS(1062), + [anon_sym_do] = ACTIONS(1062), + [anon_sym_if] = ACTIONS(1062), + [anon_sym_else] = ACTIONS(1062), + [anon_sym_match] = ACTIONS(1062), + [anon_sym_RBRACE] = ACTIONS(1064), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_catch] = ACTIONS(1062), + [anon_sym_return] = ACTIONS(1062), + [anon_sym_source] = ACTIONS(1062), + [anon_sym_source_DASHenv] = ACTIONS(1062), + [anon_sym_register] = ACTIONS(1062), + [anon_sym_hide] = ACTIONS(1062), + [anon_sym_hide_DASHenv] = ACTIONS(1062), + [anon_sym_overlay] = ACTIONS(1062), + [anon_sym_new] = ACTIONS(1062), + [anon_sym_as] = ACTIONS(1062), + [anon_sym_QMARK2] = ACTIONS(1064), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1064), + [anon_sym_DOT_DOT2] = ACTIONS(1062), + [anon_sym_DOT] = ACTIONS(1062), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1064), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1064), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1064), + [aux_sym__val_number_decimal_token1] = ACTIONS(1062), + [aux_sym__val_number_decimal_token2] = ACTIONS(1064), + [aux_sym__val_number_decimal_token3] = ACTIONS(1064), + [aux_sym__val_number_decimal_token4] = ACTIONS(1064), + [aux_sym__val_number_token1] = ACTIONS(1064), + [aux_sym__val_number_token2] = ACTIONS(1064), + [aux_sym__val_number_token3] = ACTIONS(1064), + [anon_sym_DQUOTE] = ACTIONS(1064), + [sym__str_single_quotes] = ACTIONS(1064), + [sym__str_back_ticks] = ACTIONS(1064), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1064), + [anon_sym_PLUS] = ACTIONS(1062), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1064), + }, + [336] = { + [sym_comment] = STATE(336), + [anon_sym_export] = ACTIONS(1038), + [anon_sym_alias] = ACTIONS(1038), + [anon_sym_let] = ACTIONS(1038), + [anon_sym_let_DASHenv] = ACTIONS(1038), + [anon_sym_mut] = ACTIONS(1038), + [anon_sym_const] = ACTIONS(1038), + [aux_sym_cmd_identifier_token1] = ACTIONS(1038), + [aux_sym_cmd_identifier_token2] = ACTIONS(1038), + [aux_sym_cmd_identifier_token3] = ACTIONS(1038), + [aux_sym_cmd_identifier_token4] = ACTIONS(1038), + [aux_sym_cmd_identifier_token5] = ACTIONS(1038), + [aux_sym_cmd_identifier_token6] = ACTIONS(1038), + [aux_sym_cmd_identifier_token7] = ACTIONS(1038), + [aux_sym_cmd_identifier_token8] = ACTIONS(1038), + [aux_sym_cmd_identifier_token9] = ACTIONS(1038), + [aux_sym_cmd_identifier_token10] = ACTIONS(1038), + [aux_sym_cmd_identifier_token11] = ACTIONS(1038), + [aux_sym_cmd_identifier_token12] = ACTIONS(1038), + [aux_sym_cmd_identifier_token13] = ACTIONS(1038), + [aux_sym_cmd_identifier_token14] = ACTIONS(1038), + [aux_sym_cmd_identifier_token15] = ACTIONS(1038), + [aux_sym_cmd_identifier_token16] = ACTIONS(1038), + [aux_sym_cmd_identifier_token17] = ACTIONS(1038), + [aux_sym_cmd_identifier_token18] = ACTIONS(1038), + [aux_sym_cmd_identifier_token19] = ACTIONS(1038), + [aux_sym_cmd_identifier_token20] = ACTIONS(1038), + [aux_sym_cmd_identifier_token21] = ACTIONS(1038), + [aux_sym_cmd_identifier_token22] = ACTIONS(1038), + [aux_sym_cmd_identifier_token23] = ACTIONS(1038), + [aux_sym_cmd_identifier_token24] = ACTIONS(1038), + [aux_sym_cmd_identifier_token25] = ACTIONS(1038), + [aux_sym_cmd_identifier_token26] = ACTIONS(1038), + [aux_sym_cmd_identifier_token27] = ACTIONS(1038), + [aux_sym_cmd_identifier_token28] = ACTIONS(1038), + [aux_sym_cmd_identifier_token29] = ACTIONS(1038), + [aux_sym_cmd_identifier_token30] = ACTIONS(1038), + [aux_sym_cmd_identifier_token31] = ACTIONS(1038), + [aux_sym_cmd_identifier_token32] = ACTIONS(1038), + [aux_sym_cmd_identifier_token33] = ACTIONS(1038), + [aux_sym_cmd_identifier_token34] = ACTIONS(1038), + [aux_sym_cmd_identifier_token35] = ACTIONS(1038), + [aux_sym_cmd_identifier_token36] = ACTIONS(1038), + [anon_sym_true] = ACTIONS(1040), + [anon_sym_false] = ACTIONS(1040), + [anon_sym_null] = ACTIONS(1040), + [aux_sym_cmd_identifier_token38] = ACTIONS(1038), + [aux_sym_cmd_identifier_token39] = ACTIONS(1040), + [aux_sym_cmd_identifier_token40] = ACTIONS(1040), + [anon_sym_def] = ACTIONS(1038), + [anon_sym_export_DASHenv] = ACTIONS(1038), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_module] = ACTIONS(1038), + [anon_sym_use] = ACTIONS(1038), + [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_DOLLAR] = ACTIONS(1040), + [anon_sym_error] = ACTIONS(1038), + [anon_sym_list] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_break] = ACTIONS(1038), + [anon_sym_continue] = ACTIONS(1038), + [anon_sym_for] = ACTIONS(1038), + [anon_sym_in] = ACTIONS(1038), + [anon_sym_loop] = ACTIONS(1038), + [anon_sym_make] = ACTIONS(1038), + [anon_sym_while] = ACTIONS(1038), + [anon_sym_do] = ACTIONS(1038), + [anon_sym_if] = ACTIONS(1038), + [anon_sym_else] = ACTIONS(1038), + [anon_sym_match] = ACTIONS(1038), + [anon_sym_RBRACE] = ACTIONS(1040), + [anon_sym_try] = ACTIONS(1038), + [anon_sym_catch] = ACTIONS(1038), + [anon_sym_return] = ACTIONS(1038), + [anon_sym_source] = ACTIONS(1038), + [anon_sym_source_DASHenv] = ACTIONS(1038), + [anon_sym_register] = ACTIONS(1038), + [anon_sym_hide] = ACTIONS(1038), + [anon_sym_hide_DASHenv] = ACTIONS(1038), + [anon_sym_overlay] = ACTIONS(1038), + [anon_sym_new] = ACTIONS(1038), + [anon_sym_as] = ACTIONS(1038), + [anon_sym_QMARK2] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1040), + [anon_sym_DOT_DOT2] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(1038), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1040), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1040), + [aux_sym__val_number_decimal_token1] = ACTIONS(1038), + [aux_sym__val_number_decimal_token2] = ACTIONS(1040), + [aux_sym__val_number_decimal_token3] = ACTIONS(1040), + [aux_sym__val_number_decimal_token4] = ACTIONS(1040), + [aux_sym__val_number_token1] = ACTIONS(1040), + [aux_sym__val_number_token2] = ACTIONS(1040), + [aux_sym__val_number_token3] = ACTIONS(1040), + [anon_sym_DQUOTE] = ACTIONS(1040), + [sym__str_single_quotes] = ACTIONS(1040), + [sym__str_back_ticks] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1040), + [anon_sym_PLUS] = ACTIONS(1038), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1040), + }, + [337] = { + [sym_comment] = STATE(337), [anon_sym_export] = ACTIONS(1054), [anon_sym_alias] = ACTIONS(1054), [anon_sym_let] = ACTIONS(1054), @@ -118810,19 +116189,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(1054), [aux_sym_cmd_identifier_token35] = ACTIONS(1054), [aux_sym_cmd_identifier_token36] = ACTIONS(1054), - [anon_sym_true] = ACTIONS(1054), - [anon_sym_false] = ACTIONS(1054), - [anon_sym_null] = ACTIONS(1054), + [anon_sym_true] = ACTIONS(1056), + [anon_sym_false] = ACTIONS(1056), + [anon_sym_null] = ACTIONS(1056), [aux_sym_cmd_identifier_token38] = ACTIONS(1054), - [aux_sym_cmd_identifier_token39] = ACTIONS(1054), - [aux_sym_cmd_identifier_token40] = ACTIONS(1054), + [aux_sym_cmd_identifier_token39] = ACTIONS(1056), + [aux_sym_cmd_identifier_token40] = ACTIONS(1056), [anon_sym_def] = ACTIONS(1054), [anon_sym_export_DASHenv] = ACTIONS(1054), [anon_sym_extern] = ACTIONS(1054), [anon_sym_module] = ACTIONS(1054), [anon_sym_use] = ACTIONS(1054), - [anon_sym_LPAREN] = ACTIONS(1054), - [anon_sym_DOLLAR] = ACTIONS(1054), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_DOLLAR] = ACTIONS(1056), [anon_sym_error] = ACTIONS(1054), [anon_sym_list] = ACTIONS(1054), [anon_sym_DASH] = ACTIONS(1054), @@ -118837,215 +116216,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1054), [anon_sym_else] = ACTIONS(1054), [anon_sym_match] = ACTIONS(1054), - [anon_sym_RBRACE] = ACTIONS(1054), - [anon_sym_try] = ACTIONS(1054), - [anon_sym_catch] = ACTIONS(1054), - [anon_sym_return] = ACTIONS(1054), - [anon_sym_source] = ACTIONS(1054), - [anon_sym_source_DASHenv] = ACTIONS(1054), - [anon_sym_register] = ACTIONS(1054), - [anon_sym_hide] = ACTIONS(1054), - [anon_sym_hide_DASHenv] = ACTIONS(1054), - [anon_sym_overlay] = ACTIONS(1054), - [anon_sym_new] = ACTIONS(1054), - [anon_sym_as] = ACTIONS(1054), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1054), - [anon_sym_DOT_DOT2] = ACTIONS(1054), - [anon_sym_DOT] = ACTIONS(1054), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1056), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1056), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1054), - [aux_sym__val_number_decimal_token1] = ACTIONS(1054), - [aux_sym__val_number_decimal_token2] = ACTIONS(1054), - [aux_sym__val_number_decimal_token3] = ACTIONS(1054), - [aux_sym__val_number_decimal_token4] = ACTIONS(1054), - [aux_sym__val_number_token1] = ACTIONS(1054), - [aux_sym__val_number_token2] = ACTIONS(1054), - [aux_sym__val_number_token3] = ACTIONS(1054), - [anon_sym_DQUOTE] = ACTIONS(1054), - [sym__str_single_quotes] = ACTIONS(1054), - [sym__str_back_ticks] = ACTIONS(1054), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1054), - [sym__entry_separator] = ACTIONS(1056), - [anon_sym_PLUS] = ACTIONS(1054), - [anon_sym_POUND] = ACTIONS(3), - }, - [376] = { - [sym_comment] = STATE(376), - [anon_sym_export] = ACTIONS(1973), - [anon_sym_alias] = ACTIONS(1973), - [anon_sym_let] = ACTIONS(1973), - [anon_sym_let_DASHenv] = ACTIONS(1973), - [anon_sym_mut] = ACTIONS(1973), - [anon_sym_const] = ACTIONS(1973), - [aux_sym_cmd_identifier_token1] = ACTIONS(1973), - [aux_sym_cmd_identifier_token2] = ACTIONS(1973), - [aux_sym_cmd_identifier_token3] = ACTIONS(1973), - [aux_sym_cmd_identifier_token4] = ACTIONS(1973), - [aux_sym_cmd_identifier_token5] = ACTIONS(1973), - [aux_sym_cmd_identifier_token6] = ACTIONS(1973), - [aux_sym_cmd_identifier_token7] = ACTIONS(1973), - [aux_sym_cmd_identifier_token8] = ACTIONS(1973), - [aux_sym_cmd_identifier_token9] = ACTIONS(1973), - [aux_sym_cmd_identifier_token10] = ACTIONS(1973), - [aux_sym_cmd_identifier_token11] = ACTIONS(1973), - [aux_sym_cmd_identifier_token12] = ACTIONS(1973), - [aux_sym_cmd_identifier_token13] = ACTIONS(1973), - [aux_sym_cmd_identifier_token14] = ACTIONS(1973), - [aux_sym_cmd_identifier_token15] = ACTIONS(1973), - [aux_sym_cmd_identifier_token16] = ACTIONS(1973), - [aux_sym_cmd_identifier_token17] = ACTIONS(1973), - [aux_sym_cmd_identifier_token18] = ACTIONS(1973), - [aux_sym_cmd_identifier_token19] = ACTIONS(1973), - [aux_sym_cmd_identifier_token20] = ACTIONS(1973), - [aux_sym_cmd_identifier_token21] = ACTIONS(1973), - [aux_sym_cmd_identifier_token22] = ACTIONS(1973), - [aux_sym_cmd_identifier_token23] = ACTIONS(1973), - [aux_sym_cmd_identifier_token24] = ACTIONS(1975), - [aux_sym_cmd_identifier_token25] = ACTIONS(1973), - [aux_sym_cmd_identifier_token26] = ACTIONS(1975), - [aux_sym_cmd_identifier_token27] = ACTIONS(1973), - [aux_sym_cmd_identifier_token28] = ACTIONS(1973), - [aux_sym_cmd_identifier_token29] = ACTIONS(1973), - [aux_sym_cmd_identifier_token30] = ACTIONS(1973), - [aux_sym_cmd_identifier_token31] = ACTIONS(1975), - [aux_sym_cmd_identifier_token32] = ACTIONS(1975), - [aux_sym_cmd_identifier_token33] = ACTIONS(1975), - [aux_sym_cmd_identifier_token34] = ACTIONS(1975), - [aux_sym_cmd_identifier_token35] = ACTIONS(1975), - [aux_sym_cmd_identifier_token36] = ACTIONS(1973), - [anon_sym_true] = ACTIONS(1975), - [anon_sym_false] = ACTIONS(1975), - [anon_sym_null] = ACTIONS(1975), - [aux_sym_cmd_identifier_token38] = ACTIONS(1973), - [aux_sym_cmd_identifier_token39] = ACTIONS(1975), - [aux_sym_cmd_identifier_token40] = ACTIONS(1975), - [sym__newline] = ACTIONS(1975), - [anon_sym_SEMI] = ACTIONS(1975), - [anon_sym_def] = ACTIONS(1973), - [anon_sym_export_DASHenv] = ACTIONS(1973), - [anon_sym_extern] = ACTIONS(1973), - [anon_sym_module] = ACTIONS(1973), - [anon_sym_use] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_LPAREN] = ACTIONS(1975), - [anon_sym_DOLLAR] = ACTIONS(1973), - [anon_sym_error] = ACTIONS(1973), - [anon_sym_DASH] = ACTIONS(1973), - [anon_sym_break] = ACTIONS(1973), - [anon_sym_continue] = ACTIONS(1973), - [anon_sym_for] = ACTIONS(1973), - [anon_sym_loop] = ACTIONS(1973), - [anon_sym_while] = ACTIONS(1973), - [anon_sym_do] = ACTIONS(1973), - [anon_sym_if] = ACTIONS(1973), - [anon_sym_match] = ACTIONS(1973), - [anon_sym_LBRACE] = ACTIONS(1975), - [anon_sym_DOT_DOT] = ACTIONS(1973), - [anon_sym_try] = ACTIONS(1973), - [anon_sym_return] = ACTIONS(1973), - [anon_sym_source] = ACTIONS(1973), - [anon_sym_source_DASHenv] = ACTIONS(1973), - [anon_sym_register] = ACTIONS(1973), - [anon_sym_hide] = ACTIONS(1973), - [anon_sym_hide_DASHenv] = ACTIONS(1973), - [anon_sym_overlay] = ACTIONS(1973), - [anon_sym_where] = ACTIONS(1975), - [aux_sym_expr_unary_token1] = ACTIONS(1975), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1975), - [anon_sym_DOT_DOT_LT] = ACTIONS(1975), - [aux_sym__val_number_decimal_token1] = ACTIONS(1973), - [aux_sym__val_number_decimal_token2] = ACTIONS(1975), - [aux_sym__val_number_decimal_token3] = ACTIONS(1975), - [aux_sym__val_number_decimal_token4] = ACTIONS(1975), - [aux_sym__val_number_token1] = ACTIONS(1975), - [aux_sym__val_number_token2] = ACTIONS(1975), - [aux_sym__val_number_token3] = ACTIONS(1975), - [anon_sym_0b] = ACTIONS(1973), - [anon_sym_0o] = ACTIONS(1973), - [anon_sym_0x] = ACTIONS(1973), - [sym_val_date] = ACTIONS(1975), - [anon_sym_DQUOTE] = ACTIONS(1975), - [sym__str_single_quotes] = ACTIONS(1975), - [sym__str_back_ticks] = ACTIONS(1975), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1975), - [aux_sym_env_var_token1] = ACTIONS(1973), - [anon_sym_CARET] = ACTIONS(1975), - [anon_sym_POUND] = ACTIONS(247), - }, - [377] = { - [sym_comment] = STATE(377), - [anon_sym_export] = ACTIONS(1054), - [anon_sym_alias] = ACTIONS(1054), - [anon_sym_let] = ACTIONS(1054), - [anon_sym_let_DASHenv] = ACTIONS(1054), - [anon_sym_mut] = ACTIONS(1054), - [anon_sym_const] = ACTIONS(1054), - [aux_sym_cmd_identifier_token1] = ACTIONS(1054), - [aux_sym_cmd_identifier_token2] = ACTIONS(1054), - [aux_sym_cmd_identifier_token3] = ACTIONS(1054), - [aux_sym_cmd_identifier_token4] = ACTIONS(1054), - [aux_sym_cmd_identifier_token5] = ACTIONS(1054), - [aux_sym_cmd_identifier_token6] = ACTIONS(1054), - [aux_sym_cmd_identifier_token7] = ACTIONS(1054), - [aux_sym_cmd_identifier_token8] = ACTIONS(1054), - [aux_sym_cmd_identifier_token9] = ACTIONS(1054), - [aux_sym_cmd_identifier_token10] = ACTIONS(1054), - [aux_sym_cmd_identifier_token11] = ACTIONS(1054), - [aux_sym_cmd_identifier_token12] = ACTIONS(1054), - [aux_sym_cmd_identifier_token13] = ACTIONS(1054), - [aux_sym_cmd_identifier_token14] = ACTIONS(1054), - [aux_sym_cmd_identifier_token15] = ACTIONS(1054), - [aux_sym_cmd_identifier_token16] = ACTIONS(1054), - [aux_sym_cmd_identifier_token17] = ACTIONS(1054), - [aux_sym_cmd_identifier_token18] = ACTIONS(1054), - [aux_sym_cmd_identifier_token19] = ACTIONS(1054), - [aux_sym_cmd_identifier_token20] = ACTIONS(1054), - [aux_sym_cmd_identifier_token21] = ACTIONS(1054), - [aux_sym_cmd_identifier_token22] = ACTIONS(1054), - [aux_sym_cmd_identifier_token23] = ACTIONS(1054), - [aux_sym_cmd_identifier_token24] = ACTIONS(1054), - [aux_sym_cmd_identifier_token25] = ACTIONS(1054), - [aux_sym_cmd_identifier_token26] = ACTIONS(1054), - [aux_sym_cmd_identifier_token27] = ACTIONS(1054), - [aux_sym_cmd_identifier_token28] = ACTIONS(1054), - [aux_sym_cmd_identifier_token29] = ACTIONS(1054), - [aux_sym_cmd_identifier_token30] = ACTIONS(1054), - [aux_sym_cmd_identifier_token31] = ACTIONS(1054), - [aux_sym_cmd_identifier_token32] = ACTIONS(1054), - [aux_sym_cmd_identifier_token33] = ACTIONS(1054), - [aux_sym_cmd_identifier_token34] = ACTIONS(1054), - [aux_sym_cmd_identifier_token35] = ACTIONS(1054), - [aux_sym_cmd_identifier_token36] = ACTIONS(1054), - [anon_sym_true] = ACTIONS(1056), - [anon_sym_false] = ACTIONS(1056), - [anon_sym_null] = ACTIONS(1056), - [aux_sym_cmd_identifier_token38] = ACTIONS(1054), - [aux_sym_cmd_identifier_token39] = ACTIONS(1056), - [aux_sym_cmd_identifier_token40] = ACTIONS(1056), - [anon_sym_def] = ACTIONS(1054), - [anon_sym_export_DASHenv] = ACTIONS(1054), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_module] = ACTIONS(1054), - [anon_sym_use] = ACTIONS(1054), - [anon_sym_LPAREN] = ACTIONS(1056), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_error] = ACTIONS(1054), - [anon_sym_list] = ACTIONS(1054), - [anon_sym_DASH] = ACTIONS(1054), - [anon_sym_break] = ACTIONS(1054), - [anon_sym_continue] = ACTIONS(1054), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_in] = ACTIONS(1054), - [anon_sym_loop] = ACTIONS(1054), - [anon_sym_make] = ACTIONS(1054), - [anon_sym_while] = ACTIONS(1054), - [anon_sym_do] = ACTIONS(1054), - [anon_sym_if] = ACTIONS(1054), - [anon_sym_else] = ACTIONS(1054), - [anon_sym_match] = ACTIONS(1054), - [anon_sym_RBRACE] = ACTIONS(1056), + [anon_sym_RBRACE] = ACTIONS(1056), [anon_sym_try] = ACTIONS(1054), [anon_sym_catch] = ACTIONS(1054), [anon_sym_return] = ACTIONS(1054), @@ -119057,6 +116228,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(1054), [anon_sym_new] = ACTIONS(1054), [anon_sym_as] = ACTIONS(1054), + [anon_sym_QMARK2] = ACTIONS(1056), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1056), [anon_sym_DOT_DOT2] = ACTIONS(1054), [anon_sym_DOT] = ACTIONS(1054), @@ -119075,2173 +116247,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1056), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1056), [anon_sym_PLUS] = ACTIONS(1054), - [anon_sym_POUND] = ACTIONS(247), - }, - [378] = { - [sym_cmd_identifier] = STATE(4758), - [sym__expression_parenthesized] = STATE(3789), - [sym_expr_unary] = STATE(2344), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2344), - [sym__expr_binary_expression_parenthesized] = STATE(3749), - [sym_expr_parenthesized] = STATE(2023), - [sym_val_range] = STATE(3793), - [sym__value] = STATE(2344), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2221), - [sym_val_variable] = STATE(2013), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1532), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_env_var] = STATE(7165), - [sym__command_parenthesized] = STATE(5068), - [sym_comment] = STATE(378), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1065), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(459), - [anon_sym_false] = ACTIONS(459), - [anon_sym_null] = ACTIONS(461), - [aux_sym_cmd_identifier_token38] = ACTIONS(463), - [aux_sym_cmd_identifier_token39] = ACTIONS(465), - [aux_sym_cmd_identifier_token40] = ACTIONS(465), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(469), - [anon_sym_DOLLAR] = ACTIONS(473), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(495), - [aux_sym__val_number_decimal_token2] = ACTIONS(497), - [aux_sym__val_number_decimal_token3] = ACTIONS(499), - [aux_sym__val_number_decimal_token4] = ACTIONS(501), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(509), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(519), - [anon_sym_POUND] = ACTIONS(247), - }, - [379] = { - [sym_comment] = STATE(379), - [anon_sym_export] = ACTIONS(1667), - [anon_sym_alias] = ACTIONS(1667), - [anon_sym_let] = ACTIONS(1667), - [anon_sym_let_DASHenv] = ACTIONS(1667), - [anon_sym_mut] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1667), - [aux_sym_cmd_identifier_token1] = ACTIONS(1667), - [aux_sym_cmd_identifier_token2] = ACTIONS(1667), - [aux_sym_cmd_identifier_token3] = ACTIONS(1667), - [aux_sym_cmd_identifier_token4] = ACTIONS(1667), - [aux_sym_cmd_identifier_token5] = ACTIONS(1667), - [aux_sym_cmd_identifier_token6] = ACTIONS(1667), - [aux_sym_cmd_identifier_token7] = ACTIONS(1667), - [aux_sym_cmd_identifier_token8] = ACTIONS(1667), - [aux_sym_cmd_identifier_token9] = ACTIONS(1667), - [aux_sym_cmd_identifier_token10] = ACTIONS(1667), - [aux_sym_cmd_identifier_token11] = ACTIONS(1667), - [aux_sym_cmd_identifier_token12] = ACTIONS(1667), - [aux_sym_cmd_identifier_token13] = ACTIONS(1667), - [aux_sym_cmd_identifier_token14] = ACTIONS(1667), - [aux_sym_cmd_identifier_token15] = ACTIONS(1667), - [aux_sym_cmd_identifier_token16] = ACTIONS(1667), - [aux_sym_cmd_identifier_token17] = ACTIONS(1667), - [aux_sym_cmd_identifier_token18] = ACTIONS(1667), - [aux_sym_cmd_identifier_token19] = ACTIONS(1667), - [aux_sym_cmd_identifier_token20] = ACTIONS(1667), - [aux_sym_cmd_identifier_token21] = ACTIONS(1667), - [aux_sym_cmd_identifier_token22] = ACTIONS(1667), - [aux_sym_cmd_identifier_token23] = ACTIONS(1667), - [aux_sym_cmd_identifier_token24] = ACTIONS(1667), - [aux_sym_cmd_identifier_token25] = ACTIONS(1667), - [aux_sym_cmd_identifier_token26] = ACTIONS(1667), - [aux_sym_cmd_identifier_token27] = ACTIONS(1667), - [aux_sym_cmd_identifier_token28] = ACTIONS(1667), - [aux_sym_cmd_identifier_token29] = ACTIONS(1667), - [aux_sym_cmd_identifier_token30] = ACTIONS(1667), - [aux_sym_cmd_identifier_token31] = ACTIONS(1667), - [aux_sym_cmd_identifier_token32] = ACTIONS(1667), - [aux_sym_cmd_identifier_token33] = ACTIONS(1667), - [aux_sym_cmd_identifier_token34] = ACTIONS(1667), - [aux_sym_cmd_identifier_token35] = ACTIONS(1667), - [aux_sym_cmd_identifier_token36] = ACTIONS(1667), - [anon_sym_true] = ACTIONS(1667), - [anon_sym_false] = ACTIONS(1667), - [anon_sym_null] = ACTIONS(1667), - [aux_sym_cmd_identifier_token38] = ACTIONS(1667), - [aux_sym_cmd_identifier_token39] = ACTIONS(1667), - [aux_sym_cmd_identifier_token40] = ACTIONS(1667), - [anon_sym_def] = ACTIONS(1667), - [anon_sym_export_DASHenv] = ACTIONS(1667), - [anon_sym_extern] = ACTIONS(1667), - [anon_sym_module] = ACTIONS(1667), - [anon_sym_use] = ACTIONS(1667), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_DOLLAR] = ACTIONS(1667), - [anon_sym_error] = ACTIONS(1667), - [anon_sym_list] = ACTIONS(1667), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_break] = ACTIONS(1667), - [anon_sym_continue] = ACTIONS(1667), - [anon_sym_for] = ACTIONS(1667), - [anon_sym_in] = ACTIONS(1667), - [anon_sym_loop] = ACTIONS(1667), - [anon_sym_make] = ACTIONS(1667), - [anon_sym_while] = ACTIONS(1667), - [anon_sym_do] = ACTIONS(1667), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_else] = ACTIONS(1667), - [anon_sym_match] = ACTIONS(1667), - [anon_sym_RBRACE] = ACTIONS(1667), - [anon_sym_try] = ACTIONS(1667), - [anon_sym_catch] = ACTIONS(1667), - [anon_sym_return] = ACTIONS(1667), - [anon_sym_source] = ACTIONS(1667), - [anon_sym_source_DASHenv] = ACTIONS(1667), - [anon_sym_register] = ACTIONS(1667), - [anon_sym_hide] = ACTIONS(1667), - [anon_sym_hide_DASHenv] = ACTIONS(1667), - [anon_sym_overlay] = ACTIONS(1667), - [anon_sym_new] = ACTIONS(1667), - [anon_sym_as] = ACTIONS(1667), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1667), - [anon_sym_DOT_DOT2] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1667), - [aux_sym__val_number_decimal_token1] = ACTIONS(1667), - [aux_sym__val_number_decimal_token2] = ACTIONS(1667), - [aux_sym__val_number_decimal_token3] = ACTIONS(1667), - [aux_sym__val_number_decimal_token4] = ACTIONS(1667), - [aux_sym__val_number_token1] = ACTIONS(1667), - [aux_sym__val_number_token2] = ACTIONS(1667), - [aux_sym__val_number_token3] = ACTIONS(1667), - [anon_sym_DQUOTE] = ACTIONS(1667), - [sym__str_single_quotes] = ACTIONS(1667), - [sym__str_back_ticks] = ACTIONS(1667), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1667), - [sym__entry_separator] = ACTIONS(1669), - [anon_sym_PLUS] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(3), - }, - [380] = { - [sym_comment] = STATE(380), - [anon_sym_export] = ACTIONS(1659), - [anon_sym_alias] = ACTIONS(1659), - [anon_sym_let] = ACTIONS(1659), - [anon_sym_let_DASHenv] = ACTIONS(1659), - [anon_sym_mut] = ACTIONS(1659), - [anon_sym_const] = ACTIONS(1659), - [aux_sym_cmd_identifier_token1] = ACTIONS(1659), - [aux_sym_cmd_identifier_token2] = ACTIONS(1659), - [aux_sym_cmd_identifier_token3] = ACTIONS(1659), - [aux_sym_cmd_identifier_token4] = ACTIONS(1659), - [aux_sym_cmd_identifier_token5] = ACTIONS(1659), - [aux_sym_cmd_identifier_token6] = ACTIONS(1659), - [aux_sym_cmd_identifier_token7] = ACTIONS(1659), - [aux_sym_cmd_identifier_token8] = ACTIONS(1659), - [aux_sym_cmd_identifier_token9] = ACTIONS(1659), - [aux_sym_cmd_identifier_token10] = ACTIONS(1659), - [aux_sym_cmd_identifier_token11] = ACTIONS(1659), - [aux_sym_cmd_identifier_token12] = ACTIONS(1659), - [aux_sym_cmd_identifier_token13] = ACTIONS(1659), - [aux_sym_cmd_identifier_token14] = ACTIONS(1659), - [aux_sym_cmd_identifier_token15] = ACTIONS(1659), - [aux_sym_cmd_identifier_token16] = ACTIONS(1659), - [aux_sym_cmd_identifier_token17] = ACTIONS(1659), - [aux_sym_cmd_identifier_token18] = ACTIONS(1659), - [aux_sym_cmd_identifier_token19] = ACTIONS(1659), - [aux_sym_cmd_identifier_token20] = ACTIONS(1659), - [aux_sym_cmd_identifier_token21] = ACTIONS(1659), - [aux_sym_cmd_identifier_token22] = ACTIONS(1659), - [aux_sym_cmd_identifier_token23] = ACTIONS(1659), - [aux_sym_cmd_identifier_token24] = ACTIONS(1659), - [aux_sym_cmd_identifier_token25] = ACTIONS(1659), - [aux_sym_cmd_identifier_token26] = ACTIONS(1659), - [aux_sym_cmd_identifier_token27] = ACTIONS(1659), - [aux_sym_cmd_identifier_token28] = ACTIONS(1659), - [aux_sym_cmd_identifier_token29] = ACTIONS(1659), - [aux_sym_cmd_identifier_token30] = ACTIONS(1659), - [aux_sym_cmd_identifier_token31] = ACTIONS(1659), - [aux_sym_cmd_identifier_token32] = ACTIONS(1659), - [aux_sym_cmd_identifier_token33] = ACTIONS(1659), - [aux_sym_cmd_identifier_token34] = ACTIONS(1659), - [aux_sym_cmd_identifier_token35] = ACTIONS(1659), - [aux_sym_cmd_identifier_token36] = ACTIONS(1659), - [anon_sym_true] = ACTIONS(1661), - [anon_sym_false] = ACTIONS(1661), - [anon_sym_null] = ACTIONS(1661), - [aux_sym_cmd_identifier_token38] = ACTIONS(1659), - [aux_sym_cmd_identifier_token39] = ACTIONS(1661), - [aux_sym_cmd_identifier_token40] = ACTIONS(1661), - [anon_sym_def] = ACTIONS(1659), - [anon_sym_export_DASHenv] = ACTIONS(1659), - [anon_sym_extern] = ACTIONS(1659), - [anon_sym_module] = ACTIONS(1659), - [anon_sym_use] = ACTIONS(1659), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_DOLLAR] = ACTIONS(1661), - [anon_sym_error] = ACTIONS(1659), - [anon_sym_list] = ACTIONS(1659), - [anon_sym_DASH] = ACTIONS(1659), - [anon_sym_break] = ACTIONS(1659), - [anon_sym_continue] = ACTIONS(1659), - [anon_sym_for] = ACTIONS(1659), - [anon_sym_in] = ACTIONS(1659), - [anon_sym_loop] = ACTIONS(1659), - [anon_sym_make] = ACTIONS(1659), - [anon_sym_while] = ACTIONS(1659), - [anon_sym_do] = ACTIONS(1659), - [anon_sym_if] = ACTIONS(1659), - [anon_sym_else] = ACTIONS(1659), - [anon_sym_match] = ACTIONS(1659), - [anon_sym_RBRACE] = ACTIONS(1661), - [anon_sym_try] = ACTIONS(1659), - [anon_sym_catch] = ACTIONS(1659), - [anon_sym_return] = ACTIONS(1659), - [anon_sym_source] = ACTIONS(1659), - [anon_sym_source_DASHenv] = ACTIONS(1659), - [anon_sym_register] = ACTIONS(1659), - [anon_sym_hide] = ACTIONS(1659), - [anon_sym_hide_DASHenv] = ACTIONS(1659), - [anon_sym_overlay] = ACTIONS(1659), - [anon_sym_new] = ACTIONS(1659), - [anon_sym_as] = ACTIONS(1659), - [anon_sym_LPAREN2] = ACTIONS(1661), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1661), - [aux_sym__immediate_decimal_token1] = ACTIONS(1977), - [aux_sym__immediate_decimal_token2] = ACTIONS(1979), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1661), - [aux_sym__val_number_decimal_token1] = ACTIONS(1659), - [aux_sym__val_number_decimal_token2] = ACTIONS(1661), - [aux_sym__val_number_decimal_token3] = ACTIONS(1661), - [aux_sym__val_number_decimal_token4] = ACTIONS(1661), - [aux_sym__val_number_token1] = ACTIONS(1661), - [aux_sym__val_number_token2] = ACTIONS(1661), - [aux_sym__val_number_token3] = ACTIONS(1661), - [anon_sym_DQUOTE] = ACTIONS(1661), - [sym__str_single_quotes] = ACTIONS(1661), - [sym__str_back_ticks] = ACTIONS(1661), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1661), - [anon_sym_PLUS] = ACTIONS(1659), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1659), - [anon_sym_POUND] = ACTIONS(247), - }, - [381] = { - [sym_comment] = STATE(381), - [anon_sym_export] = ACTIONS(1981), - [anon_sym_alias] = ACTIONS(1981), - [anon_sym_let] = ACTIONS(1981), - [anon_sym_let_DASHenv] = ACTIONS(1981), - [anon_sym_mut] = ACTIONS(1981), - [anon_sym_const] = ACTIONS(1981), - [aux_sym_cmd_identifier_token1] = ACTIONS(1981), - [aux_sym_cmd_identifier_token2] = ACTIONS(1981), - [aux_sym_cmd_identifier_token3] = ACTIONS(1981), - [aux_sym_cmd_identifier_token4] = ACTIONS(1981), - [aux_sym_cmd_identifier_token5] = ACTIONS(1981), - [aux_sym_cmd_identifier_token6] = ACTIONS(1981), - [aux_sym_cmd_identifier_token7] = ACTIONS(1981), - [aux_sym_cmd_identifier_token8] = ACTIONS(1981), - [aux_sym_cmd_identifier_token9] = ACTIONS(1981), - [aux_sym_cmd_identifier_token10] = ACTIONS(1981), - [aux_sym_cmd_identifier_token11] = ACTIONS(1981), - [aux_sym_cmd_identifier_token12] = ACTIONS(1981), - [aux_sym_cmd_identifier_token13] = ACTIONS(1981), - [aux_sym_cmd_identifier_token14] = ACTIONS(1981), - [aux_sym_cmd_identifier_token15] = ACTIONS(1981), - [aux_sym_cmd_identifier_token16] = ACTIONS(1981), - [aux_sym_cmd_identifier_token17] = ACTIONS(1981), - [aux_sym_cmd_identifier_token18] = ACTIONS(1981), - [aux_sym_cmd_identifier_token19] = ACTIONS(1981), - [aux_sym_cmd_identifier_token20] = ACTIONS(1981), - [aux_sym_cmd_identifier_token21] = ACTIONS(1981), - [aux_sym_cmd_identifier_token22] = ACTIONS(1981), - [aux_sym_cmd_identifier_token23] = ACTIONS(1981), - [aux_sym_cmd_identifier_token24] = ACTIONS(1981), - [aux_sym_cmd_identifier_token25] = ACTIONS(1981), - [aux_sym_cmd_identifier_token26] = ACTIONS(1981), - [aux_sym_cmd_identifier_token27] = ACTIONS(1981), - [aux_sym_cmd_identifier_token28] = ACTIONS(1981), - [aux_sym_cmd_identifier_token29] = ACTIONS(1981), - [aux_sym_cmd_identifier_token30] = ACTIONS(1981), - [aux_sym_cmd_identifier_token31] = ACTIONS(1981), - [aux_sym_cmd_identifier_token32] = ACTIONS(1981), - [aux_sym_cmd_identifier_token33] = ACTIONS(1981), - [aux_sym_cmd_identifier_token34] = ACTIONS(1981), - [aux_sym_cmd_identifier_token35] = ACTIONS(1981), - [aux_sym_cmd_identifier_token36] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(1981), - [anon_sym_false] = ACTIONS(1981), - [anon_sym_null] = ACTIONS(1981), - [aux_sym_cmd_identifier_token38] = ACTIONS(1981), - [aux_sym_cmd_identifier_token39] = ACTIONS(1981), - [aux_sym_cmd_identifier_token40] = ACTIONS(1981), - [anon_sym_def] = ACTIONS(1981), - [anon_sym_export_DASHenv] = ACTIONS(1981), - [anon_sym_extern] = ACTIONS(1981), - [anon_sym_module] = ACTIONS(1981), - [anon_sym_use] = ACTIONS(1981), - [anon_sym_LPAREN] = ACTIONS(1981), - [anon_sym_DOLLAR] = ACTIONS(1981), - [anon_sym_error] = ACTIONS(1981), - [anon_sym_list] = ACTIONS(1981), - [anon_sym_DASH] = ACTIONS(1981), - [anon_sym_break] = ACTIONS(1981), - [anon_sym_continue] = ACTIONS(1981), - [anon_sym_for] = ACTIONS(1981), - [anon_sym_in] = ACTIONS(1981), - [anon_sym_loop] = ACTIONS(1981), - [anon_sym_make] = ACTIONS(1981), - [anon_sym_while] = ACTIONS(1981), - [anon_sym_do] = ACTIONS(1981), - [anon_sym_if] = ACTIONS(1981), - [anon_sym_else] = ACTIONS(1981), - [anon_sym_match] = ACTIONS(1981), - [anon_sym_RBRACE] = ACTIONS(1981), - [anon_sym_try] = ACTIONS(1981), - [anon_sym_catch] = ACTIONS(1981), - [anon_sym_return] = ACTIONS(1981), - [anon_sym_source] = ACTIONS(1981), - [anon_sym_source_DASHenv] = ACTIONS(1981), - [anon_sym_register] = ACTIONS(1981), - [anon_sym_hide] = ACTIONS(1981), - [anon_sym_hide_DASHenv] = ACTIONS(1981), - [anon_sym_overlay] = ACTIONS(1981), - [anon_sym_new] = ACTIONS(1981), - [anon_sym_as] = ACTIONS(1981), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1981), - [anon_sym_DOT_DOT2] = ACTIONS(1983), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1985), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1985), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1981), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1981), - [aux_sym__val_number_decimal_token3] = ACTIONS(1981), - [aux_sym__val_number_decimal_token4] = ACTIONS(1981), - [aux_sym__val_number_token1] = ACTIONS(1981), - [aux_sym__val_number_token2] = ACTIONS(1981), - [aux_sym__val_number_token3] = ACTIONS(1981), - [anon_sym_DQUOTE] = ACTIONS(1981), - [sym__str_single_quotes] = ACTIONS(1981), - [sym__str_back_ticks] = ACTIONS(1981), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1981), - [sym__entry_separator] = ACTIONS(1987), - [anon_sym_PLUS] = ACTIONS(1981), - [anon_sym_POUND] = ACTIONS(3), - }, - [382] = { - [sym_cell_path] = STATE(628), - [sym_path] = STATE(578), - [sym_comment] = STATE(382), - [aux_sym_cell_path_repeat1] = STATE(459), - [anon_sym_export] = ACTIONS(1927), - [anon_sym_alias] = ACTIONS(1927), - [anon_sym_let] = ACTIONS(1927), - [anon_sym_let_DASHenv] = ACTIONS(1927), - [anon_sym_mut] = ACTIONS(1927), - [anon_sym_const] = ACTIONS(1927), - [aux_sym_cmd_identifier_token1] = ACTIONS(1927), - [aux_sym_cmd_identifier_token2] = ACTIONS(1927), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), - [aux_sym_cmd_identifier_token6] = ACTIONS(1927), - [aux_sym_cmd_identifier_token7] = ACTIONS(1927), - [aux_sym_cmd_identifier_token8] = ACTIONS(1927), - [aux_sym_cmd_identifier_token9] = ACTIONS(1927), - [aux_sym_cmd_identifier_token10] = ACTIONS(1927), - [aux_sym_cmd_identifier_token11] = ACTIONS(1927), - [aux_sym_cmd_identifier_token12] = ACTIONS(1927), - [aux_sym_cmd_identifier_token13] = ACTIONS(1927), - [aux_sym_cmd_identifier_token14] = ACTIONS(1927), - [aux_sym_cmd_identifier_token15] = ACTIONS(1927), - [aux_sym_cmd_identifier_token16] = ACTIONS(1927), - [aux_sym_cmd_identifier_token17] = ACTIONS(1927), - [aux_sym_cmd_identifier_token18] = ACTIONS(1927), - [aux_sym_cmd_identifier_token19] = ACTIONS(1927), - [aux_sym_cmd_identifier_token20] = ACTIONS(1927), - [aux_sym_cmd_identifier_token21] = ACTIONS(1927), - [aux_sym_cmd_identifier_token22] = ACTIONS(1927), - [aux_sym_cmd_identifier_token23] = ACTIONS(1927), - [aux_sym_cmd_identifier_token24] = ACTIONS(1927), - [aux_sym_cmd_identifier_token25] = ACTIONS(1927), - [aux_sym_cmd_identifier_token26] = ACTIONS(1927), - [aux_sym_cmd_identifier_token27] = ACTIONS(1927), - [aux_sym_cmd_identifier_token28] = ACTIONS(1927), - [aux_sym_cmd_identifier_token29] = ACTIONS(1927), - [aux_sym_cmd_identifier_token30] = ACTIONS(1927), - [aux_sym_cmd_identifier_token31] = ACTIONS(1927), - [aux_sym_cmd_identifier_token32] = ACTIONS(1927), - [aux_sym_cmd_identifier_token33] = ACTIONS(1927), - [aux_sym_cmd_identifier_token34] = ACTIONS(1927), - [aux_sym_cmd_identifier_token35] = ACTIONS(1927), - [aux_sym_cmd_identifier_token36] = ACTIONS(1927), - [anon_sym_true] = ACTIONS(1929), - [anon_sym_false] = ACTIONS(1929), - [anon_sym_null] = ACTIONS(1929), - [aux_sym_cmd_identifier_token38] = ACTIONS(1927), - [aux_sym_cmd_identifier_token39] = ACTIONS(1929), - [aux_sym_cmd_identifier_token40] = ACTIONS(1929), - [anon_sym_def] = ACTIONS(1927), - [anon_sym_export_DASHenv] = ACTIONS(1927), - [anon_sym_extern] = ACTIONS(1927), - [anon_sym_module] = ACTIONS(1927), - [anon_sym_use] = ACTIONS(1927), - [anon_sym_LPAREN] = ACTIONS(1929), - [anon_sym_DOLLAR] = ACTIONS(1929), - [anon_sym_error] = ACTIONS(1927), - [anon_sym_list] = ACTIONS(1927), - [anon_sym_DASH] = ACTIONS(1927), - [anon_sym_break] = ACTIONS(1927), - [anon_sym_continue] = ACTIONS(1927), - [anon_sym_for] = ACTIONS(1927), - [anon_sym_in] = ACTIONS(1927), - [anon_sym_loop] = ACTIONS(1927), - [anon_sym_make] = ACTIONS(1927), - [anon_sym_while] = ACTIONS(1927), - [anon_sym_do] = ACTIONS(1927), - [anon_sym_if] = ACTIONS(1927), - [anon_sym_else] = ACTIONS(1927), - [anon_sym_match] = ACTIONS(1927), - [anon_sym_RBRACE] = ACTIONS(1929), - [anon_sym_try] = ACTIONS(1927), - [anon_sym_catch] = ACTIONS(1927), - [anon_sym_return] = ACTIONS(1927), - [anon_sym_source] = ACTIONS(1927), - [anon_sym_source_DASHenv] = ACTIONS(1927), - [anon_sym_register] = ACTIONS(1927), - [anon_sym_hide] = ACTIONS(1927), - [anon_sym_hide_DASHenv] = ACTIONS(1927), - [anon_sym_overlay] = ACTIONS(1927), - [anon_sym_new] = ACTIONS(1927), - [anon_sym_as] = ACTIONS(1927), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1929), - [anon_sym_DOT] = ACTIONS(1989), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1929), - [aux_sym__val_number_decimal_token1] = ACTIONS(1927), - [aux_sym__val_number_decimal_token2] = ACTIONS(1929), - [aux_sym__val_number_decimal_token3] = ACTIONS(1929), - [aux_sym__val_number_decimal_token4] = ACTIONS(1929), - [aux_sym__val_number_token1] = ACTIONS(1929), - [aux_sym__val_number_token2] = ACTIONS(1929), - [aux_sym__val_number_token3] = ACTIONS(1929), - [anon_sym_DQUOTE] = ACTIONS(1929), - [sym__str_single_quotes] = ACTIONS(1929), - [sym__str_back_ticks] = ACTIONS(1929), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1929), - [anon_sym_PLUS] = ACTIONS(1927), - [anon_sym_POUND] = ACTIONS(247), - }, - [383] = { - [sym_comment] = STATE(383), - [anon_sym_export] = ACTIONS(1659), - [anon_sym_alias] = ACTIONS(1659), - [anon_sym_let] = ACTIONS(1659), - [anon_sym_let_DASHenv] = ACTIONS(1659), - [anon_sym_mut] = ACTIONS(1659), - [anon_sym_const] = ACTIONS(1659), - [aux_sym_cmd_identifier_token1] = ACTIONS(1659), - [aux_sym_cmd_identifier_token2] = ACTIONS(1659), - [aux_sym_cmd_identifier_token3] = ACTIONS(1659), - [aux_sym_cmd_identifier_token4] = ACTIONS(1659), - [aux_sym_cmd_identifier_token5] = ACTIONS(1659), - [aux_sym_cmd_identifier_token6] = ACTIONS(1659), - [aux_sym_cmd_identifier_token7] = ACTIONS(1659), - [aux_sym_cmd_identifier_token8] = ACTIONS(1659), - [aux_sym_cmd_identifier_token9] = ACTIONS(1659), - [aux_sym_cmd_identifier_token10] = ACTIONS(1659), - [aux_sym_cmd_identifier_token11] = ACTIONS(1659), - [aux_sym_cmd_identifier_token12] = ACTIONS(1659), - [aux_sym_cmd_identifier_token13] = ACTIONS(1659), - [aux_sym_cmd_identifier_token14] = ACTIONS(1659), - [aux_sym_cmd_identifier_token15] = ACTIONS(1659), - [aux_sym_cmd_identifier_token16] = ACTIONS(1659), - [aux_sym_cmd_identifier_token17] = ACTIONS(1659), - [aux_sym_cmd_identifier_token18] = ACTIONS(1659), - [aux_sym_cmd_identifier_token19] = ACTIONS(1659), - [aux_sym_cmd_identifier_token20] = ACTIONS(1659), - [aux_sym_cmd_identifier_token21] = ACTIONS(1659), - [aux_sym_cmd_identifier_token22] = ACTIONS(1659), - [aux_sym_cmd_identifier_token23] = ACTIONS(1659), - [aux_sym_cmd_identifier_token24] = ACTIONS(1659), - [aux_sym_cmd_identifier_token25] = ACTIONS(1659), - [aux_sym_cmd_identifier_token26] = ACTIONS(1659), - [aux_sym_cmd_identifier_token27] = ACTIONS(1659), - [aux_sym_cmd_identifier_token28] = ACTIONS(1659), - [aux_sym_cmd_identifier_token29] = ACTIONS(1659), - [aux_sym_cmd_identifier_token30] = ACTIONS(1659), - [aux_sym_cmd_identifier_token31] = ACTIONS(1659), - [aux_sym_cmd_identifier_token32] = ACTIONS(1659), - [aux_sym_cmd_identifier_token33] = ACTIONS(1659), - [aux_sym_cmd_identifier_token34] = ACTIONS(1659), - [aux_sym_cmd_identifier_token35] = ACTIONS(1659), - [aux_sym_cmd_identifier_token36] = ACTIONS(1659), - [anon_sym_true] = ACTIONS(1659), - [anon_sym_false] = ACTIONS(1659), - [anon_sym_null] = ACTIONS(1659), - [aux_sym_cmd_identifier_token38] = ACTIONS(1659), - [aux_sym_cmd_identifier_token39] = ACTIONS(1659), - [aux_sym_cmd_identifier_token40] = ACTIONS(1659), - [anon_sym_def] = ACTIONS(1659), - [anon_sym_export_DASHenv] = ACTIONS(1659), - [anon_sym_extern] = ACTIONS(1659), - [anon_sym_module] = ACTIONS(1659), - [anon_sym_use] = ACTIONS(1659), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_DOLLAR] = ACTIONS(1659), - [anon_sym_error] = ACTIONS(1659), - [anon_sym_list] = ACTIONS(1659), - [anon_sym_DASH] = ACTIONS(1659), - [anon_sym_break] = ACTIONS(1659), - [anon_sym_continue] = ACTIONS(1659), - [anon_sym_for] = ACTIONS(1659), - [anon_sym_in] = ACTIONS(1659), - [anon_sym_loop] = ACTIONS(1659), - [anon_sym_make] = ACTIONS(1659), - [anon_sym_while] = ACTIONS(1659), - [anon_sym_do] = ACTIONS(1659), - [anon_sym_if] = ACTIONS(1659), - [anon_sym_else] = ACTIONS(1659), - [anon_sym_match] = ACTIONS(1659), - [anon_sym_RBRACE] = ACTIONS(1659), - [anon_sym_try] = ACTIONS(1659), - [anon_sym_catch] = ACTIONS(1659), - [anon_sym_return] = ACTIONS(1659), - [anon_sym_source] = ACTIONS(1659), - [anon_sym_source_DASHenv] = ACTIONS(1659), - [anon_sym_register] = ACTIONS(1659), - [anon_sym_hide] = ACTIONS(1659), - [anon_sym_hide_DASHenv] = ACTIONS(1659), - [anon_sym_overlay] = ACTIONS(1659), - [anon_sym_new] = ACTIONS(1659), - [anon_sym_as] = ACTIONS(1659), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1659), - [anon_sym_DOT_DOT2] = ACTIONS(1659), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1661), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1661), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1659), - [aux_sym__val_number_decimal_token1] = ACTIONS(1659), - [aux_sym__val_number_decimal_token2] = ACTIONS(1659), - [aux_sym__val_number_decimal_token3] = ACTIONS(1659), - [aux_sym__val_number_decimal_token4] = ACTIONS(1659), - [aux_sym__val_number_token1] = ACTIONS(1659), - [aux_sym__val_number_token2] = ACTIONS(1659), - [aux_sym__val_number_token3] = ACTIONS(1659), - [anon_sym_DQUOTE] = ACTIONS(1659), - [sym__str_single_quotes] = ACTIONS(1659), - [sym__str_back_ticks] = ACTIONS(1659), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1659), - [sym__entry_separator] = ACTIONS(1661), - [anon_sym_PLUS] = ACTIONS(1659), - [anon_sym_POUND] = ACTIONS(3), - }, - [384] = { - [sym_comment] = STATE(384), - [anon_sym_export] = ACTIONS(1991), - [anon_sym_alias] = ACTIONS(1991), - [anon_sym_let] = ACTIONS(1991), - [anon_sym_let_DASHenv] = ACTIONS(1991), - [anon_sym_mut] = ACTIONS(1991), - [anon_sym_const] = ACTIONS(1991), - [aux_sym_cmd_identifier_token1] = ACTIONS(1991), - [aux_sym_cmd_identifier_token2] = ACTIONS(1991), - [aux_sym_cmd_identifier_token3] = ACTIONS(1991), - [aux_sym_cmd_identifier_token4] = ACTIONS(1991), - [aux_sym_cmd_identifier_token5] = ACTIONS(1991), - [aux_sym_cmd_identifier_token6] = ACTIONS(1991), - [aux_sym_cmd_identifier_token7] = ACTIONS(1991), - [aux_sym_cmd_identifier_token8] = ACTIONS(1991), - [aux_sym_cmd_identifier_token9] = ACTIONS(1991), - [aux_sym_cmd_identifier_token10] = ACTIONS(1991), - [aux_sym_cmd_identifier_token11] = ACTIONS(1991), - [aux_sym_cmd_identifier_token12] = ACTIONS(1991), - [aux_sym_cmd_identifier_token13] = ACTIONS(1991), - [aux_sym_cmd_identifier_token14] = ACTIONS(1991), - [aux_sym_cmd_identifier_token15] = ACTIONS(1991), - [aux_sym_cmd_identifier_token16] = ACTIONS(1991), - [aux_sym_cmd_identifier_token17] = ACTIONS(1991), - [aux_sym_cmd_identifier_token18] = ACTIONS(1991), - [aux_sym_cmd_identifier_token19] = ACTIONS(1991), - [aux_sym_cmd_identifier_token20] = ACTIONS(1991), - [aux_sym_cmd_identifier_token21] = ACTIONS(1991), - [aux_sym_cmd_identifier_token22] = ACTIONS(1991), - [aux_sym_cmd_identifier_token23] = ACTIONS(1991), - [aux_sym_cmd_identifier_token24] = ACTIONS(1991), - [aux_sym_cmd_identifier_token25] = ACTIONS(1991), - [aux_sym_cmd_identifier_token26] = ACTIONS(1991), - [aux_sym_cmd_identifier_token27] = ACTIONS(1991), - [aux_sym_cmd_identifier_token28] = ACTIONS(1991), - [aux_sym_cmd_identifier_token29] = ACTIONS(1991), - [aux_sym_cmd_identifier_token30] = ACTIONS(1991), - [aux_sym_cmd_identifier_token31] = ACTIONS(1991), - [aux_sym_cmd_identifier_token32] = ACTIONS(1991), - [aux_sym_cmd_identifier_token33] = ACTIONS(1991), - [aux_sym_cmd_identifier_token34] = ACTIONS(1991), - [aux_sym_cmd_identifier_token35] = ACTIONS(1991), - [aux_sym_cmd_identifier_token36] = ACTIONS(1991), - [anon_sym_true] = ACTIONS(1991), - [anon_sym_false] = ACTIONS(1991), - [anon_sym_null] = ACTIONS(1991), - [aux_sym_cmd_identifier_token38] = ACTIONS(1991), - [aux_sym_cmd_identifier_token39] = ACTIONS(1991), - [aux_sym_cmd_identifier_token40] = ACTIONS(1991), - [anon_sym_def] = ACTIONS(1991), - [anon_sym_export_DASHenv] = ACTIONS(1991), - [anon_sym_extern] = ACTIONS(1991), - [anon_sym_module] = ACTIONS(1991), - [anon_sym_use] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1991), - [anon_sym_DOLLAR] = ACTIONS(1991), - [anon_sym_error] = ACTIONS(1991), - [anon_sym_list] = ACTIONS(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_break] = ACTIONS(1991), - [anon_sym_continue] = ACTIONS(1991), - [anon_sym_for] = ACTIONS(1991), - [anon_sym_in] = ACTIONS(1991), - [anon_sym_loop] = ACTIONS(1991), - [anon_sym_make] = ACTIONS(1991), - [anon_sym_while] = ACTIONS(1991), - [anon_sym_do] = ACTIONS(1991), - [anon_sym_if] = ACTIONS(1991), - [anon_sym_else] = ACTIONS(1991), - [anon_sym_match] = ACTIONS(1991), - [anon_sym_RBRACE] = ACTIONS(1991), - [anon_sym_try] = ACTIONS(1991), - [anon_sym_catch] = ACTIONS(1991), - [anon_sym_return] = ACTIONS(1991), - [anon_sym_source] = ACTIONS(1991), - [anon_sym_source_DASHenv] = ACTIONS(1991), - [anon_sym_register] = ACTIONS(1991), - [anon_sym_hide] = ACTIONS(1991), - [anon_sym_hide_DASHenv] = ACTIONS(1991), - [anon_sym_overlay] = ACTIONS(1991), - [anon_sym_new] = ACTIONS(1991), - [anon_sym_as] = ACTIONS(1991), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1991), - [anon_sym_DOT_DOT2] = ACTIONS(1993), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1995), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1995), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1991), - [aux_sym__val_number_decimal_token1] = ACTIONS(1991), - [aux_sym__val_number_decimal_token2] = ACTIONS(1991), - [aux_sym__val_number_decimal_token3] = ACTIONS(1991), - [aux_sym__val_number_decimal_token4] = ACTIONS(1991), - [aux_sym__val_number_token1] = ACTIONS(1991), - [aux_sym__val_number_token2] = ACTIONS(1991), - [aux_sym__val_number_token3] = ACTIONS(1991), - [anon_sym_DQUOTE] = ACTIONS(1991), - [sym__str_single_quotes] = ACTIONS(1991), - [sym__str_back_ticks] = ACTIONS(1991), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1991), - [sym__entry_separator] = ACTIONS(1997), - [anon_sym_PLUS] = ACTIONS(1991), - [anon_sym_POUND] = ACTIONS(3), - }, - [385] = { - [sym_comment] = STATE(385), - [anon_sym_export] = ACTIONS(1999), - [anon_sym_alias] = ACTIONS(1999), - [anon_sym_let] = ACTIONS(1999), - [anon_sym_let_DASHenv] = ACTIONS(1999), - [anon_sym_mut] = ACTIONS(1999), - [anon_sym_const] = ACTIONS(1999), - [aux_sym_cmd_identifier_token1] = ACTIONS(1999), - [aux_sym_cmd_identifier_token2] = ACTIONS(1999), - [aux_sym_cmd_identifier_token3] = ACTIONS(1999), - [aux_sym_cmd_identifier_token4] = ACTIONS(1999), - [aux_sym_cmd_identifier_token5] = ACTIONS(1999), - [aux_sym_cmd_identifier_token6] = ACTIONS(1999), - [aux_sym_cmd_identifier_token7] = ACTIONS(1999), - [aux_sym_cmd_identifier_token8] = ACTIONS(1999), - [aux_sym_cmd_identifier_token9] = ACTIONS(1999), - [aux_sym_cmd_identifier_token10] = ACTIONS(1999), - [aux_sym_cmd_identifier_token11] = ACTIONS(1999), - [aux_sym_cmd_identifier_token12] = ACTIONS(1999), - [aux_sym_cmd_identifier_token13] = ACTIONS(1999), - [aux_sym_cmd_identifier_token14] = ACTIONS(1999), - [aux_sym_cmd_identifier_token15] = ACTIONS(1999), - [aux_sym_cmd_identifier_token16] = ACTIONS(1999), - [aux_sym_cmd_identifier_token17] = ACTIONS(1999), - [aux_sym_cmd_identifier_token18] = ACTIONS(1999), - [aux_sym_cmd_identifier_token19] = ACTIONS(1999), - [aux_sym_cmd_identifier_token20] = ACTIONS(1999), - [aux_sym_cmd_identifier_token21] = ACTIONS(1999), - [aux_sym_cmd_identifier_token22] = ACTIONS(1999), - [aux_sym_cmd_identifier_token23] = ACTIONS(1999), - [aux_sym_cmd_identifier_token24] = ACTIONS(1999), - [aux_sym_cmd_identifier_token25] = ACTIONS(1999), - [aux_sym_cmd_identifier_token26] = ACTIONS(1999), - [aux_sym_cmd_identifier_token27] = ACTIONS(1999), - [aux_sym_cmd_identifier_token28] = ACTIONS(1999), - [aux_sym_cmd_identifier_token29] = ACTIONS(1999), - [aux_sym_cmd_identifier_token30] = ACTIONS(1999), - [aux_sym_cmd_identifier_token31] = ACTIONS(1999), - [aux_sym_cmd_identifier_token32] = ACTIONS(1999), - [aux_sym_cmd_identifier_token33] = ACTIONS(1999), - [aux_sym_cmd_identifier_token34] = ACTIONS(1999), - [aux_sym_cmd_identifier_token35] = ACTIONS(1999), - [aux_sym_cmd_identifier_token36] = ACTIONS(1999), - [anon_sym_true] = ACTIONS(1999), - [anon_sym_false] = ACTIONS(1999), - [anon_sym_null] = ACTIONS(1999), - [aux_sym_cmd_identifier_token38] = ACTIONS(1999), - [aux_sym_cmd_identifier_token39] = ACTIONS(1999), - [aux_sym_cmd_identifier_token40] = ACTIONS(1999), - [anon_sym_def] = ACTIONS(1999), - [anon_sym_export_DASHenv] = ACTIONS(1999), - [anon_sym_extern] = ACTIONS(1999), - [anon_sym_module] = ACTIONS(1999), - [anon_sym_use] = ACTIONS(1999), - [anon_sym_LPAREN] = ACTIONS(1999), - [anon_sym_DOLLAR] = ACTIONS(1999), - [anon_sym_error] = ACTIONS(1999), - [anon_sym_list] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1999), - [anon_sym_break] = ACTIONS(1999), - [anon_sym_continue] = ACTIONS(1999), - [anon_sym_for] = ACTIONS(1999), - [anon_sym_in] = ACTIONS(1999), - [anon_sym_loop] = ACTIONS(1999), - [anon_sym_make] = ACTIONS(1999), - [anon_sym_while] = ACTIONS(1999), - [anon_sym_do] = ACTIONS(1999), - [anon_sym_if] = ACTIONS(1999), - [anon_sym_else] = ACTIONS(1999), - [anon_sym_match] = ACTIONS(1999), - [anon_sym_RBRACE] = ACTIONS(1999), - [anon_sym_try] = ACTIONS(1999), - [anon_sym_catch] = ACTIONS(1999), - [anon_sym_return] = ACTIONS(1999), - [anon_sym_source] = ACTIONS(1999), - [anon_sym_source_DASHenv] = ACTIONS(1999), - [anon_sym_register] = ACTIONS(1999), - [anon_sym_hide] = ACTIONS(1999), - [anon_sym_hide_DASHenv] = ACTIONS(1999), - [anon_sym_overlay] = ACTIONS(1999), - [anon_sym_new] = ACTIONS(1999), - [anon_sym_as] = ACTIONS(1999), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1999), - [anon_sym_DOT_DOT2] = ACTIONS(2001), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2003), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2003), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1999), - [aux_sym__val_number_decimal_token1] = ACTIONS(1999), - [aux_sym__val_number_decimal_token2] = ACTIONS(1999), - [aux_sym__val_number_decimal_token3] = ACTIONS(1999), - [aux_sym__val_number_decimal_token4] = ACTIONS(1999), - [aux_sym__val_number_token1] = ACTIONS(1999), - [aux_sym__val_number_token2] = ACTIONS(1999), - [aux_sym__val_number_token3] = ACTIONS(1999), - [anon_sym_DQUOTE] = ACTIONS(1999), - [sym__str_single_quotes] = ACTIONS(1999), - [sym__str_back_ticks] = ACTIONS(1999), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1999), - [sym__entry_separator] = ACTIONS(2005), - [anon_sym_PLUS] = ACTIONS(1999), - [anon_sym_POUND] = ACTIONS(3), - }, - [386] = { - [sym_comment] = STATE(386), - [anon_sym_export] = ACTIONS(2007), - [anon_sym_alias] = ACTIONS(2007), - [anon_sym_let] = ACTIONS(2007), - [anon_sym_let_DASHenv] = ACTIONS(2007), - [anon_sym_mut] = ACTIONS(2007), - [anon_sym_const] = ACTIONS(2007), - [aux_sym_cmd_identifier_token1] = ACTIONS(2007), - [aux_sym_cmd_identifier_token2] = ACTIONS(2007), - [aux_sym_cmd_identifier_token3] = ACTIONS(2007), - [aux_sym_cmd_identifier_token4] = ACTIONS(2007), - [aux_sym_cmd_identifier_token5] = ACTIONS(2007), - [aux_sym_cmd_identifier_token6] = ACTIONS(2007), - [aux_sym_cmd_identifier_token7] = ACTIONS(2007), - [aux_sym_cmd_identifier_token8] = ACTIONS(2007), - [aux_sym_cmd_identifier_token9] = ACTIONS(2007), - [aux_sym_cmd_identifier_token10] = ACTIONS(2007), - [aux_sym_cmd_identifier_token11] = ACTIONS(2007), - [aux_sym_cmd_identifier_token12] = ACTIONS(2007), - [aux_sym_cmd_identifier_token13] = ACTIONS(2007), - [aux_sym_cmd_identifier_token14] = ACTIONS(2007), - [aux_sym_cmd_identifier_token15] = ACTIONS(2007), - [aux_sym_cmd_identifier_token16] = ACTIONS(2007), - [aux_sym_cmd_identifier_token17] = ACTIONS(2007), - [aux_sym_cmd_identifier_token18] = ACTIONS(2007), - [aux_sym_cmd_identifier_token19] = ACTIONS(2007), - [aux_sym_cmd_identifier_token20] = ACTIONS(2007), - [aux_sym_cmd_identifier_token21] = ACTIONS(2007), - [aux_sym_cmd_identifier_token22] = ACTIONS(2007), - [aux_sym_cmd_identifier_token23] = ACTIONS(2007), - [aux_sym_cmd_identifier_token24] = ACTIONS(2007), - [aux_sym_cmd_identifier_token25] = ACTIONS(2007), - [aux_sym_cmd_identifier_token26] = ACTIONS(2007), - [aux_sym_cmd_identifier_token27] = ACTIONS(2007), - [aux_sym_cmd_identifier_token28] = ACTIONS(2007), - [aux_sym_cmd_identifier_token29] = ACTIONS(2007), - [aux_sym_cmd_identifier_token30] = ACTIONS(2007), - [aux_sym_cmd_identifier_token31] = ACTIONS(2007), - [aux_sym_cmd_identifier_token32] = ACTIONS(2007), - [aux_sym_cmd_identifier_token33] = ACTIONS(2007), - [aux_sym_cmd_identifier_token34] = ACTIONS(2007), - [aux_sym_cmd_identifier_token35] = ACTIONS(2007), - [aux_sym_cmd_identifier_token36] = ACTIONS(2007), - [anon_sym_true] = ACTIONS(2007), - [anon_sym_false] = ACTIONS(2007), - [anon_sym_null] = ACTIONS(2007), - [aux_sym_cmd_identifier_token38] = ACTIONS(2007), - [aux_sym_cmd_identifier_token39] = ACTIONS(2007), - [aux_sym_cmd_identifier_token40] = ACTIONS(2007), - [anon_sym_def] = ACTIONS(2007), - [anon_sym_export_DASHenv] = ACTIONS(2007), - [anon_sym_extern] = ACTIONS(2007), - [anon_sym_module] = ACTIONS(2007), - [anon_sym_use] = ACTIONS(2007), - [anon_sym_LPAREN] = ACTIONS(2007), - [anon_sym_DOLLAR] = ACTIONS(2007), - [anon_sym_error] = ACTIONS(2007), - [anon_sym_list] = ACTIONS(2007), - [anon_sym_DASH] = ACTIONS(2007), - [anon_sym_break] = ACTIONS(2007), - [anon_sym_continue] = ACTIONS(2007), - [anon_sym_for] = ACTIONS(2007), - [anon_sym_in] = ACTIONS(2007), - [anon_sym_loop] = ACTIONS(2007), - [anon_sym_make] = ACTIONS(2007), - [anon_sym_while] = ACTIONS(2007), - [anon_sym_do] = ACTIONS(2007), - [anon_sym_if] = ACTIONS(2007), - [anon_sym_else] = ACTIONS(2007), - [anon_sym_match] = ACTIONS(2007), - [anon_sym_RBRACE] = ACTIONS(2007), - [anon_sym_try] = ACTIONS(2007), - [anon_sym_catch] = ACTIONS(2007), - [anon_sym_return] = ACTIONS(2007), - [anon_sym_source] = ACTIONS(2007), - [anon_sym_source_DASHenv] = ACTIONS(2007), - [anon_sym_register] = ACTIONS(2007), - [anon_sym_hide] = ACTIONS(2007), - [anon_sym_hide_DASHenv] = ACTIONS(2007), - [anon_sym_overlay] = ACTIONS(2007), - [anon_sym_new] = ACTIONS(2007), - [anon_sym_as] = ACTIONS(2007), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2007), - [anon_sym_DOT_DOT2] = ACTIONS(2009), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2011), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2011), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2007), - [aux_sym__val_number_decimal_token1] = ACTIONS(2007), - [aux_sym__val_number_decimal_token2] = ACTIONS(2007), - [aux_sym__val_number_decimal_token3] = ACTIONS(2007), - [aux_sym__val_number_decimal_token4] = ACTIONS(2007), - [aux_sym__val_number_token1] = ACTIONS(2007), - [aux_sym__val_number_token2] = ACTIONS(2007), - [aux_sym__val_number_token3] = ACTIONS(2007), - [anon_sym_DQUOTE] = ACTIONS(2007), - [sym__str_single_quotes] = ACTIONS(2007), - [sym__str_back_ticks] = ACTIONS(2007), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2007), - [sym__entry_separator] = ACTIONS(2013), - [anon_sym_PLUS] = ACTIONS(2007), - [anon_sym_POUND] = ACTIONS(3), - }, - [387] = { - [sym_comment] = STATE(387), - [anon_sym_export] = ACTIONS(2015), - [anon_sym_alias] = ACTIONS(2015), - [anon_sym_let] = ACTIONS(2015), - [anon_sym_let_DASHenv] = ACTIONS(2015), - [anon_sym_mut] = ACTIONS(2015), - [anon_sym_const] = ACTIONS(2015), - [aux_sym_cmd_identifier_token1] = ACTIONS(2015), - [aux_sym_cmd_identifier_token2] = ACTIONS(2015), - [aux_sym_cmd_identifier_token3] = ACTIONS(2015), - [aux_sym_cmd_identifier_token4] = ACTIONS(2015), - [aux_sym_cmd_identifier_token5] = ACTIONS(2015), - [aux_sym_cmd_identifier_token6] = ACTIONS(2015), - [aux_sym_cmd_identifier_token7] = ACTIONS(2015), - [aux_sym_cmd_identifier_token8] = ACTIONS(2015), - [aux_sym_cmd_identifier_token9] = ACTIONS(2015), - [aux_sym_cmd_identifier_token10] = ACTIONS(2015), - [aux_sym_cmd_identifier_token11] = ACTIONS(2015), - [aux_sym_cmd_identifier_token12] = ACTIONS(2015), - [aux_sym_cmd_identifier_token13] = ACTIONS(2015), - [aux_sym_cmd_identifier_token14] = ACTIONS(2015), - [aux_sym_cmd_identifier_token15] = ACTIONS(2015), - [aux_sym_cmd_identifier_token16] = ACTIONS(2015), - [aux_sym_cmd_identifier_token17] = ACTIONS(2015), - [aux_sym_cmd_identifier_token18] = ACTIONS(2015), - [aux_sym_cmd_identifier_token19] = ACTIONS(2015), - [aux_sym_cmd_identifier_token20] = ACTIONS(2015), - [aux_sym_cmd_identifier_token21] = ACTIONS(2015), - [aux_sym_cmd_identifier_token22] = ACTIONS(2015), - [aux_sym_cmd_identifier_token23] = ACTIONS(2015), - [aux_sym_cmd_identifier_token24] = ACTIONS(2015), - [aux_sym_cmd_identifier_token25] = ACTIONS(2015), - [aux_sym_cmd_identifier_token26] = ACTIONS(2015), - [aux_sym_cmd_identifier_token27] = ACTIONS(2015), - [aux_sym_cmd_identifier_token28] = ACTIONS(2015), - [aux_sym_cmd_identifier_token29] = ACTIONS(2015), - [aux_sym_cmd_identifier_token30] = ACTIONS(2015), - [aux_sym_cmd_identifier_token31] = ACTIONS(2015), - [aux_sym_cmd_identifier_token32] = ACTIONS(2015), - [aux_sym_cmd_identifier_token33] = ACTIONS(2015), - [aux_sym_cmd_identifier_token34] = ACTIONS(2015), - [aux_sym_cmd_identifier_token35] = ACTIONS(2015), - [aux_sym_cmd_identifier_token36] = ACTIONS(2015), - [anon_sym_true] = ACTIONS(2015), - [anon_sym_false] = ACTIONS(2015), - [anon_sym_null] = ACTIONS(2015), - [aux_sym_cmd_identifier_token38] = ACTIONS(2015), - [aux_sym_cmd_identifier_token39] = ACTIONS(2015), - [aux_sym_cmd_identifier_token40] = ACTIONS(2015), - [anon_sym_def] = ACTIONS(2015), - [anon_sym_export_DASHenv] = ACTIONS(2015), - [anon_sym_extern] = ACTIONS(2015), - [anon_sym_module] = ACTIONS(2015), - [anon_sym_use] = ACTIONS(2015), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_DOLLAR] = ACTIONS(2015), - [anon_sym_error] = ACTIONS(2015), - [anon_sym_list] = ACTIONS(2015), - [anon_sym_DASH] = ACTIONS(2015), - [anon_sym_break] = ACTIONS(2015), - [anon_sym_continue] = ACTIONS(2015), - [anon_sym_for] = ACTIONS(2015), - [anon_sym_in] = ACTIONS(2015), - [anon_sym_loop] = ACTIONS(2015), - [anon_sym_make] = ACTIONS(2015), - [anon_sym_while] = ACTIONS(2015), - [anon_sym_do] = ACTIONS(2015), - [anon_sym_if] = ACTIONS(2015), - [anon_sym_else] = ACTIONS(2015), - [anon_sym_match] = ACTIONS(2015), - [anon_sym_RBRACE] = ACTIONS(2015), - [anon_sym_try] = ACTIONS(2015), - [anon_sym_catch] = ACTIONS(2015), - [anon_sym_return] = ACTIONS(2015), - [anon_sym_source] = ACTIONS(2015), - [anon_sym_source_DASHenv] = ACTIONS(2015), - [anon_sym_register] = ACTIONS(2015), - [anon_sym_hide] = ACTIONS(2015), - [anon_sym_hide_DASHenv] = ACTIONS(2015), - [anon_sym_overlay] = ACTIONS(2015), - [anon_sym_new] = ACTIONS(2015), - [anon_sym_as] = ACTIONS(2015), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2015), - [anon_sym_DOT_DOT2] = ACTIONS(1983), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1985), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1985), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2015), - [aux_sym__val_number_decimal_token1] = ACTIONS(2015), - [aux_sym__val_number_decimal_token2] = ACTIONS(2015), - [aux_sym__val_number_decimal_token3] = ACTIONS(2015), - [aux_sym__val_number_decimal_token4] = ACTIONS(2015), - [aux_sym__val_number_token1] = ACTIONS(2015), - [aux_sym__val_number_token2] = ACTIONS(2015), - [aux_sym__val_number_token3] = ACTIONS(2015), - [anon_sym_DQUOTE] = ACTIONS(2015), - [sym__str_single_quotes] = ACTIONS(2015), - [sym__str_back_ticks] = ACTIONS(2015), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2015), - [sym__entry_separator] = ACTIONS(2017), - [anon_sym_PLUS] = ACTIONS(2015), - [anon_sym_POUND] = ACTIONS(3), - }, - [388] = { - [sym_cell_path] = STATE(625), - [sym_path] = STATE(578), - [sym_comment] = STATE(388), - [aux_sym_cell_path_repeat1] = STATE(459), - [anon_sym_export] = ACTIONS(1935), - [anon_sym_alias] = ACTIONS(1935), - [anon_sym_let] = ACTIONS(1935), - [anon_sym_let_DASHenv] = ACTIONS(1935), - [anon_sym_mut] = ACTIONS(1935), - [anon_sym_const] = ACTIONS(1935), - [aux_sym_cmd_identifier_token1] = ACTIONS(1935), - [aux_sym_cmd_identifier_token2] = ACTIONS(1935), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [aux_sym_cmd_identifier_token6] = ACTIONS(1935), - [aux_sym_cmd_identifier_token7] = ACTIONS(1935), - [aux_sym_cmd_identifier_token8] = ACTIONS(1935), - [aux_sym_cmd_identifier_token9] = ACTIONS(1935), - [aux_sym_cmd_identifier_token10] = ACTIONS(1935), - [aux_sym_cmd_identifier_token11] = ACTIONS(1935), - [aux_sym_cmd_identifier_token12] = ACTIONS(1935), - [aux_sym_cmd_identifier_token13] = ACTIONS(1935), - [aux_sym_cmd_identifier_token14] = ACTIONS(1935), - [aux_sym_cmd_identifier_token15] = ACTIONS(1935), - [aux_sym_cmd_identifier_token16] = ACTIONS(1935), - [aux_sym_cmd_identifier_token17] = ACTIONS(1935), - [aux_sym_cmd_identifier_token18] = ACTIONS(1935), - [aux_sym_cmd_identifier_token19] = ACTIONS(1935), - [aux_sym_cmd_identifier_token20] = ACTIONS(1935), - [aux_sym_cmd_identifier_token21] = ACTIONS(1935), - [aux_sym_cmd_identifier_token22] = ACTIONS(1935), - [aux_sym_cmd_identifier_token23] = ACTIONS(1935), - [aux_sym_cmd_identifier_token24] = ACTIONS(1935), - [aux_sym_cmd_identifier_token25] = ACTIONS(1935), - [aux_sym_cmd_identifier_token26] = ACTIONS(1935), - [aux_sym_cmd_identifier_token27] = ACTIONS(1935), - [aux_sym_cmd_identifier_token28] = ACTIONS(1935), - [aux_sym_cmd_identifier_token29] = ACTIONS(1935), - [aux_sym_cmd_identifier_token30] = ACTIONS(1935), - [aux_sym_cmd_identifier_token31] = ACTIONS(1935), - [aux_sym_cmd_identifier_token32] = ACTIONS(1935), - [aux_sym_cmd_identifier_token33] = ACTIONS(1935), - [aux_sym_cmd_identifier_token34] = ACTIONS(1935), - [aux_sym_cmd_identifier_token35] = ACTIONS(1935), - [aux_sym_cmd_identifier_token36] = ACTIONS(1935), - [anon_sym_true] = ACTIONS(1937), - [anon_sym_false] = ACTIONS(1937), - [anon_sym_null] = ACTIONS(1937), - [aux_sym_cmd_identifier_token38] = ACTIONS(1935), - [aux_sym_cmd_identifier_token39] = ACTIONS(1937), - [aux_sym_cmd_identifier_token40] = ACTIONS(1937), - [anon_sym_def] = ACTIONS(1935), - [anon_sym_export_DASHenv] = ACTIONS(1935), - [anon_sym_extern] = ACTIONS(1935), - [anon_sym_module] = ACTIONS(1935), - [anon_sym_use] = ACTIONS(1935), - [anon_sym_LPAREN] = ACTIONS(1937), - [anon_sym_DOLLAR] = ACTIONS(1937), - [anon_sym_error] = ACTIONS(1935), - [anon_sym_list] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1935), - [anon_sym_break] = ACTIONS(1935), - [anon_sym_continue] = ACTIONS(1935), - [anon_sym_for] = ACTIONS(1935), - [anon_sym_in] = ACTIONS(1935), - [anon_sym_loop] = ACTIONS(1935), - [anon_sym_make] = ACTIONS(1935), - [anon_sym_while] = ACTIONS(1935), - [anon_sym_do] = ACTIONS(1935), - [anon_sym_if] = ACTIONS(1935), - [anon_sym_else] = ACTIONS(1935), - [anon_sym_match] = ACTIONS(1935), - [anon_sym_RBRACE] = ACTIONS(1937), - [anon_sym_try] = ACTIONS(1935), - [anon_sym_catch] = ACTIONS(1935), - [anon_sym_return] = ACTIONS(1935), - [anon_sym_source] = ACTIONS(1935), - [anon_sym_source_DASHenv] = ACTIONS(1935), - [anon_sym_register] = ACTIONS(1935), - [anon_sym_hide] = ACTIONS(1935), - [anon_sym_hide_DASHenv] = ACTIONS(1935), - [anon_sym_overlay] = ACTIONS(1935), - [anon_sym_new] = ACTIONS(1935), - [anon_sym_as] = ACTIONS(1935), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1937), - [anon_sym_DOT] = ACTIONS(1989), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1937), - [aux_sym__val_number_decimal_token1] = ACTIONS(1935), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1937), - [aux_sym__val_number_decimal_token4] = ACTIONS(1937), - [aux_sym__val_number_token1] = ACTIONS(1937), - [aux_sym__val_number_token2] = ACTIONS(1937), - [aux_sym__val_number_token3] = ACTIONS(1937), - [anon_sym_DQUOTE] = ACTIONS(1937), - [sym__str_single_quotes] = ACTIONS(1937), - [sym__str_back_ticks] = ACTIONS(1937), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1937), - [anon_sym_PLUS] = ACTIONS(1935), - [anon_sym_POUND] = ACTIONS(247), - }, - [389] = { - [sym_cell_path] = STATE(626), - [sym_path] = STATE(578), - [sym_comment] = STATE(389), - [aux_sym_cell_path_repeat1] = STATE(459), - [anon_sym_export] = ACTIONS(1943), - [anon_sym_alias] = ACTIONS(1943), - [anon_sym_let] = ACTIONS(1943), - [anon_sym_let_DASHenv] = ACTIONS(1943), - [anon_sym_mut] = ACTIONS(1943), - [anon_sym_const] = ACTIONS(1943), - [aux_sym_cmd_identifier_token1] = ACTIONS(1943), - [aux_sym_cmd_identifier_token2] = ACTIONS(1943), - [aux_sym_cmd_identifier_token3] = ACTIONS(1943), - [aux_sym_cmd_identifier_token4] = ACTIONS(1943), - [aux_sym_cmd_identifier_token5] = ACTIONS(1943), - [aux_sym_cmd_identifier_token6] = ACTIONS(1943), - [aux_sym_cmd_identifier_token7] = ACTIONS(1943), - [aux_sym_cmd_identifier_token8] = ACTIONS(1943), - [aux_sym_cmd_identifier_token9] = ACTIONS(1943), - [aux_sym_cmd_identifier_token10] = ACTIONS(1943), - [aux_sym_cmd_identifier_token11] = ACTIONS(1943), - [aux_sym_cmd_identifier_token12] = ACTIONS(1943), - [aux_sym_cmd_identifier_token13] = ACTIONS(1943), - [aux_sym_cmd_identifier_token14] = ACTIONS(1943), - [aux_sym_cmd_identifier_token15] = ACTIONS(1943), - [aux_sym_cmd_identifier_token16] = ACTIONS(1943), - [aux_sym_cmd_identifier_token17] = ACTIONS(1943), - [aux_sym_cmd_identifier_token18] = ACTIONS(1943), - [aux_sym_cmd_identifier_token19] = ACTIONS(1943), - [aux_sym_cmd_identifier_token20] = ACTIONS(1943), - [aux_sym_cmd_identifier_token21] = ACTIONS(1943), - [aux_sym_cmd_identifier_token22] = ACTIONS(1943), - [aux_sym_cmd_identifier_token23] = ACTIONS(1943), - [aux_sym_cmd_identifier_token24] = ACTIONS(1943), - [aux_sym_cmd_identifier_token25] = ACTIONS(1943), - [aux_sym_cmd_identifier_token26] = ACTIONS(1943), - [aux_sym_cmd_identifier_token27] = ACTIONS(1943), - [aux_sym_cmd_identifier_token28] = ACTIONS(1943), - [aux_sym_cmd_identifier_token29] = ACTIONS(1943), - [aux_sym_cmd_identifier_token30] = ACTIONS(1943), - [aux_sym_cmd_identifier_token31] = ACTIONS(1943), - [aux_sym_cmd_identifier_token32] = ACTIONS(1943), - [aux_sym_cmd_identifier_token33] = ACTIONS(1943), - [aux_sym_cmd_identifier_token34] = ACTIONS(1943), - [aux_sym_cmd_identifier_token35] = ACTIONS(1943), - [aux_sym_cmd_identifier_token36] = ACTIONS(1943), - [anon_sym_true] = ACTIONS(1945), - [anon_sym_false] = ACTIONS(1945), - [anon_sym_null] = ACTIONS(1945), - [aux_sym_cmd_identifier_token38] = ACTIONS(1943), - [aux_sym_cmd_identifier_token39] = ACTIONS(1945), - [aux_sym_cmd_identifier_token40] = ACTIONS(1945), - [anon_sym_def] = ACTIONS(1943), - [anon_sym_export_DASHenv] = ACTIONS(1943), - [anon_sym_extern] = ACTIONS(1943), - [anon_sym_module] = ACTIONS(1943), - [anon_sym_use] = ACTIONS(1943), - [anon_sym_LPAREN] = ACTIONS(1945), - [anon_sym_DOLLAR] = ACTIONS(1945), - [anon_sym_error] = ACTIONS(1943), - [anon_sym_list] = ACTIONS(1943), - [anon_sym_DASH] = ACTIONS(1943), - [anon_sym_break] = ACTIONS(1943), - [anon_sym_continue] = ACTIONS(1943), - [anon_sym_for] = ACTIONS(1943), - [anon_sym_in] = ACTIONS(1943), - [anon_sym_loop] = ACTIONS(1943), - [anon_sym_make] = ACTIONS(1943), - [anon_sym_while] = ACTIONS(1943), - [anon_sym_do] = ACTIONS(1943), - [anon_sym_if] = ACTIONS(1943), - [anon_sym_else] = ACTIONS(1943), - [anon_sym_match] = ACTIONS(1943), - [anon_sym_RBRACE] = ACTIONS(1945), - [anon_sym_try] = ACTIONS(1943), - [anon_sym_catch] = ACTIONS(1943), - [anon_sym_return] = ACTIONS(1943), - [anon_sym_source] = ACTIONS(1943), - [anon_sym_source_DASHenv] = ACTIONS(1943), - [anon_sym_register] = ACTIONS(1943), - [anon_sym_hide] = ACTIONS(1943), - [anon_sym_hide_DASHenv] = ACTIONS(1943), - [anon_sym_overlay] = ACTIONS(1943), - [anon_sym_new] = ACTIONS(1943), - [anon_sym_as] = ACTIONS(1943), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1945), - [anon_sym_DOT] = ACTIONS(1989), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1943), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1945), - [aux_sym__val_number_decimal_token4] = ACTIONS(1945), - [aux_sym__val_number_token1] = ACTIONS(1945), - [aux_sym__val_number_token2] = ACTIONS(1945), - [aux_sym__val_number_token3] = ACTIONS(1945), - [anon_sym_DQUOTE] = ACTIONS(1945), - [sym__str_single_quotes] = ACTIONS(1945), - [sym__str_back_ticks] = ACTIONS(1945), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1945), - [anon_sym_PLUS] = ACTIONS(1943), - [anon_sym_POUND] = ACTIONS(247), - }, - [390] = { - [sym_cell_path] = STATE(627), - [sym_path] = STATE(578), - [sym_comment] = STATE(390), - [aux_sym_cell_path_repeat1] = STATE(459), - [anon_sym_export] = ACTIONS(1947), - [anon_sym_alias] = ACTIONS(1947), - [anon_sym_let] = ACTIONS(1947), - [anon_sym_let_DASHenv] = ACTIONS(1947), - [anon_sym_mut] = ACTIONS(1947), - [anon_sym_const] = ACTIONS(1947), - [aux_sym_cmd_identifier_token1] = ACTIONS(1947), - [aux_sym_cmd_identifier_token2] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1947), - [aux_sym_cmd_identifier_token4] = ACTIONS(1947), - [aux_sym_cmd_identifier_token5] = ACTIONS(1947), - [aux_sym_cmd_identifier_token6] = ACTIONS(1947), - [aux_sym_cmd_identifier_token7] = ACTIONS(1947), - [aux_sym_cmd_identifier_token8] = ACTIONS(1947), - [aux_sym_cmd_identifier_token9] = ACTIONS(1947), - [aux_sym_cmd_identifier_token10] = ACTIONS(1947), - [aux_sym_cmd_identifier_token11] = ACTIONS(1947), - [aux_sym_cmd_identifier_token12] = ACTIONS(1947), - [aux_sym_cmd_identifier_token13] = ACTIONS(1947), - [aux_sym_cmd_identifier_token14] = ACTIONS(1947), - [aux_sym_cmd_identifier_token15] = ACTIONS(1947), - [aux_sym_cmd_identifier_token16] = ACTIONS(1947), - [aux_sym_cmd_identifier_token17] = ACTIONS(1947), - [aux_sym_cmd_identifier_token18] = ACTIONS(1947), - [aux_sym_cmd_identifier_token19] = ACTIONS(1947), - [aux_sym_cmd_identifier_token20] = ACTIONS(1947), - [aux_sym_cmd_identifier_token21] = ACTIONS(1947), - [aux_sym_cmd_identifier_token22] = ACTIONS(1947), - [aux_sym_cmd_identifier_token23] = ACTIONS(1947), - [aux_sym_cmd_identifier_token24] = ACTIONS(1947), - [aux_sym_cmd_identifier_token25] = ACTIONS(1947), - [aux_sym_cmd_identifier_token26] = ACTIONS(1947), - [aux_sym_cmd_identifier_token27] = ACTIONS(1947), - [aux_sym_cmd_identifier_token28] = ACTIONS(1947), - [aux_sym_cmd_identifier_token29] = ACTIONS(1947), - [aux_sym_cmd_identifier_token30] = ACTIONS(1947), - [aux_sym_cmd_identifier_token31] = ACTIONS(1947), - [aux_sym_cmd_identifier_token32] = ACTIONS(1947), - [aux_sym_cmd_identifier_token33] = ACTIONS(1947), - [aux_sym_cmd_identifier_token34] = ACTIONS(1947), - [aux_sym_cmd_identifier_token35] = ACTIONS(1947), - [aux_sym_cmd_identifier_token36] = ACTIONS(1947), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1949), - [aux_sym_cmd_identifier_token38] = ACTIONS(1947), - [aux_sym_cmd_identifier_token39] = ACTIONS(1949), - [aux_sym_cmd_identifier_token40] = ACTIONS(1949), - [anon_sym_def] = ACTIONS(1947), - [anon_sym_export_DASHenv] = ACTIONS(1947), - [anon_sym_extern] = ACTIONS(1947), - [anon_sym_module] = ACTIONS(1947), - [anon_sym_use] = ACTIONS(1947), - [anon_sym_LPAREN] = ACTIONS(1949), - [anon_sym_DOLLAR] = ACTIONS(1949), - [anon_sym_error] = ACTIONS(1947), - [anon_sym_list] = ACTIONS(1947), - [anon_sym_DASH] = ACTIONS(1947), - [anon_sym_break] = ACTIONS(1947), - [anon_sym_continue] = ACTIONS(1947), - [anon_sym_for] = ACTIONS(1947), - [anon_sym_in] = ACTIONS(1947), - [anon_sym_loop] = ACTIONS(1947), - [anon_sym_make] = ACTIONS(1947), - [anon_sym_while] = ACTIONS(1947), - [anon_sym_do] = ACTIONS(1947), - [anon_sym_if] = ACTIONS(1947), - [anon_sym_else] = ACTIONS(1947), - [anon_sym_match] = ACTIONS(1947), - [anon_sym_RBRACE] = ACTIONS(1949), - [anon_sym_try] = ACTIONS(1947), - [anon_sym_catch] = ACTIONS(1947), - [anon_sym_return] = ACTIONS(1947), - [anon_sym_source] = ACTIONS(1947), - [anon_sym_source_DASHenv] = ACTIONS(1947), - [anon_sym_register] = ACTIONS(1947), - [anon_sym_hide] = ACTIONS(1947), - [anon_sym_hide_DASHenv] = ACTIONS(1947), - [anon_sym_overlay] = ACTIONS(1947), - [anon_sym_new] = ACTIONS(1947), - [anon_sym_as] = ACTIONS(1947), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1949), - [anon_sym_DOT] = ACTIONS(1989), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1949), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1949), - [aux_sym__val_number_decimal_token4] = ACTIONS(1949), - [aux_sym__val_number_token1] = ACTIONS(1949), - [aux_sym__val_number_token2] = ACTIONS(1949), - [aux_sym__val_number_token3] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(1949), - [sym__str_single_quotes] = ACTIONS(1949), - [sym__str_back_ticks] = ACTIONS(1949), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1949), - [anon_sym_PLUS] = ACTIONS(1947), - [anon_sym_POUND] = ACTIONS(247), - }, - [391] = { - [sym_comment] = STATE(391), - [anon_sym_export] = ACTIONS(1667), - [anon_sym_alias] = ACTIONS(1667), - [anon_sym_let] = ACTIONS(1667), - [anon_sym_let_DASHenv] = ACTIONS(1667), - [anon_sym_mut] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1667), - [aux_sym_cmd_identifier_token1] = ACTIONS(1667), - [aux_sym_cmd_identifier_token2] = ACTIONS(1667), - [aux_sym_cmd_identifier_token3] = ACTIONS(1667), - [aux_sym_cmd_identifier_token4] = ACTIONS(1667), - [aux_sym_cmd_identifier_token5] = ACTIONS(1667), - [aux_sym_cmd_identifier_token6] = ACTIONS(1667), - [aux_sym_cmd_identifier_token7] = ACTIONS(1667), - [aux_sym_cmd_identifier_token8] = ACTIONS(1667), - [aux_sym_cmd_identifier_token9] = ACTIONS(1667), - [aux_sym_cmd_identifier_token10] = ACTIONS(1667), - [aux_sym_cmd_identifier_token11] = ACTIONS(1667), - [aux_sym_cmd_identifier_token12] = ACTIONS(1667), - [aux_sym_cmd_identifier_token13] = ACTIONS(1667), - [aux_sym_cmd_identifier_token14] = ACTIONS(1667), - [aux_sym_cmd_identifier_token15] = ACTIONS(1667), - [aux_sym_cmd_identifier_token16] = ACTIONS(1667), - [aux_sym_cmd_identifier_token17] = ACTIONS(1667), - [aux_sym_cmd_identifier_token18] = ACTIONS(1667), - [aux_sym_cmd_identifier_token19] = ACTIONS(1667), - [aux_sym_cmd_identifier_token20] = ACTIONS(1667), - [aux_sym_cmd_identifier_token21] = ACTIONS(1667), - [aux_sym_cmd_identifier_token22] = ACTIONS(1667), - [aux_sym_cmd_identifier_token23] = ACTIONS(1667), - [aux_sym_cmd_identifier_token24] = ACTIONS(1667), - [aux_sym_cmd_identifier_token25] = ACTIONS(1667), - [aux_sym_cmd_identifier_token26] = ACTIONS(1667), - [aux_sym_cmd_identifier_token27] = ACTIONS(1667), - [aux_sym_cmd_identifier_token28] = ACTIONS(1667), - [aux_sym_cmd_identifier_token29] = ACTIONS(1667), - [aux_sym_cmd_identifier_token30] = ACTIONS(1667), - [aux_sym_cmd_identifier_token31] = ACTIONS(1667), - [aux_sym_cmd_identifier_token32] = ACTIONS(1667), - [aux_sym_cmd_identifier_token33] = ACTIONS(1667), - [aux_sym_cmd_identifier_token34] = ACTIONS(1667), - [aux_sym_cmd_identifier_token35] = ACTIONS(1667), - [aux_sym_cmd_identifier_token36] = ACTIONS(1667), - [anon_sym_true] = ACTIONS(1669), - [anon_sym_false] = ACTIONS(1669), - [anon_sym_null] = ACTIONS(1669), - [aux_sym_cmd_identifier_token38] = ACTIONS(1667), - [aux_sym_cmd_identifier_token39] = ACTIONS(1669), - [aux_sym_cmd_identifier_token40] = ACTIONS(1669), - [anon_sym_def] = ACTIONS(1667), - [anon_sym_export_DASHenv] = ACTIONS(1667), - [anon_sym_extern] = ACTIONS(1667), - [anon_sym_module] = ACTIONS(1667), - [anon_sym_use] = ACTIONS(1667), - [anon_sym_LPAREN] = ACTIONS(1669), - [anon_sym_DOLLAR] = ACTIONS(1669), - [anon_sym_error] = ACTIONS(1667), - [anon_sym_list] = ACTIONS(1667), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_break] = ACTIONS(1667), - [anon_sym_continue] = ACTIONS(1667), - [anon_sym_for] = ACTIONS(1667), - [anon_sym_in] = ACTIONS(1667), - [anon_sym_loop] = ACTIONS(1667), - [anon_sym_make] = ACTIONS(1667), - [anon_sym_while] = ACTIONS(1667), - [anon_sym_do] = ACTIONS(1667), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_else] = ACTIONS(1667), - [anon_sym_match] = ACTIONS(1667), - [anon_sym_RBRACE] = ACTIONS(1669), - [anon_sym_try] = ACTIONS(1667), - [anon_sym_catch] = ACTIONS(1667), - [anon_sym_return] = ACTIONS(1667), - [anon_sym_source] = ACTIONS(1667), - [anon_sym_source_DASHenv] = ACTIONS(1667), - [anon_sym_register] = ACTIONS(1667), - [anon_sym_hide] = ACTIONS(1667), - [anon_sym_hide_DASHenv] = ACTIONS(1667), - [anon_sym_overlay] = ACTIONS(1667), - [anon_sym_new] = ACTIONS(1667), - [anon_sym_as] = ACTIONS(1667), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1669), - [anon_sym_DOT_DOT2] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [aux_sym__immediate_decimal_token2] = ACTIONS(1967), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1669), - [aux_sym__val_number_decimal_token1] = ACTIONS(1667), - [aux_sym__val_number_decimal_token2] = ACTIONS(1669), - [aux_sym__val_number_decimal_token3] = ACTIONS(1669), - [aux_sym__val_number_decimal_token4] = ACTIONS(1669), - [aux_sym__val_number_token1] = ACTIONS(1669), - [aux_sym__val_number_token2] = ACTIONS(1669), - [aux_sym__val_number_token3] = ACTIONS(1669), - [anon_sym_DQUOTE] = ACTIONS(1669), - [sym__str_single_quotes] = ACTIONS(1669), - [sym__str_back_ticks] = ACTIONS(1669), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1669), - [anon_sym_PLUS] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(247), - }, - [392] = { - [sym_comment] = STATE(392), - [anon_sym_export] = ACTIONS(2019), - [anon_sym_alias] = ACTIONS(2019), - [anon_sym_let] = ACTIONS(2019), - [anon_sym_let_DASHenv] = ACTIONS(2019), - [anon_sym_mut] = ACTIONS(2019), - [anon_sym_const] = ACTIONS(2019), - [aux_sym_cmd_identifier_token1] = ACTIONS(2019), - [aux_sym_cmd_identifier_token2] = ACTIONS(2019), - [aux_sym_cmd_identifier_token3] = ACTIONS(2019), - [aux_sym_cmd_identifier_token4] = ACTIONS(2019), - [aux_sym_cmd_identifier_token5] = ACTIONS(2019), - [aux_sym_cmd_identifier_token6] = ACTIONS(2019), - [aux_sym_cmd_identifier_token7] = ACTIONS(2019), - [aux_sym_cmd_identifier_token8] = ACTIONS(2019), - [aux_sym_cmd_identifier_token9] = ACTIONS(2019), - [aux_sym_cmd_identifier_token10] = ACTIONS(2019), - [aux_sym_cmd_identifier_token11] = ACTIONS(2019), - [aux_sym_cmd_identifier_token12] = ACTIONS(2019), - [aux_sym_cmd_identifier_token13] = ACTIONS(2019), - [aux_sym_cmd_identifier_token14] = ACTIONS(2019), - [aux_sym_cmd_identifier_token15] = ACTIONS(2019), - [aux_sym_cmd_identifier_token16] = ACTIONS(2019), - [aux_sym_cmd_identifier_token17] = ACTIONS(2019), - [aux_sym_cmd_identifier_token18] = ACTIONS(2019), - [aux_sym_cmd_identifier_token19] = ACTIONS(2019), - [aux_sym_cmd_identifier_token20] = ACTIONS(2019), - [aux_sym_cmd_identifier_token21] = ACTIONS(2019), - [aux_sym_cmd_identifier_token22] = ACTIONS(2019), - [aux_sym_cmd_identifier_token23] = ACTIONS(2019), - [aux_sym_cmd_identifier_token24] = ACTIONS(2019), - [aux_sym_cmd_identifier_token25] = ACTIONS(2019), - [aux_sym_cmd_identifier_token26] = ACTIONS(2019), - [aux_sym_cmd_identifier_token27] = ACTIONS(2019), - [aux_sym_cmd_identifier_token28] = ACTIONS(2019), - [aux_sym_cmd_identifier_token29] = ACTIONS(2019), - [aux_sym_cmd_identifier_token30] = ACTIONS(2019), - [aux_sym_cmd_identifier_token31] = ACTIONS(2019), - [aux_sym_cmd_identifier_token32] = ACTIONS(2019), - [aux_sym_cmd_identifier_token33] = ACTIONS(2019), - [aux_sym_cmd_identifier_token34] = ACTIONS(2019), - [aux_sym_cmd_identifier_token35] = ACTIONS(2019), - [aux_sym_cmd_identifier_token36] = ACTIONS(2019), - [anon_sym_true] = ACTIONS(2019), - [anon_sym_false] = ACTIONS(2019), - [anon_sym_null] = ACTIONS(2019), - [aux_sym_cmd_identifier_token38] = ACTIONS(2019), - [aux_sym_cmd_identifier_token39] = ACTIONS(2019), - [aux_sym_cmd_identifier_token40] = ACTIONS(2019), - [anon_sym_def] = ACTIONS(2019), - [anon_sym_export_DASHenv] = ACTIONS(2019), - [anon_sym_extern] = ACTIONS(2019), - [anon_sym_module] = ACTIONS(2019), - [anon_sym_use] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(2019), - [anon_sym_DOLLAR] = ACTIONS(2019), - [anon_sym_error] = ACTIONS(2019), - [anon_sym_list] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_break] = ACTIONS(2019), - [anon_sym_continue] = ACTIONS(2019), - [anon_sym_for] = ACTIONS(2019), - [anon_sym_in] = ACTIONS(2019), - [anon_sym_loop] = ACTIONS(2019), - [anon_sym_make] = ACTIONS(2019), - [anon_sym_while] = ACTIONS(2019), - [anon_sym_do] = ACTIONS(2019), - [anon_sym_if] = ACTIONS(2019), - [anon_sym_else] = ACTIONS(2019), - [anon_sym_match] = ACTIONS(2019), - [anon_sym_RBRACE] = ACTIONS(2019), - [anon_sym_try] = ACTIONS(2019), - [anon_sym_catch] = ACTIONS(2019), - [anon_sym_return] = ACTIONS(2019), - [anon_sym_source] = ACTIONS(2019), - [anon_sym_source_DASHenv] = ACTIONS(2019), - [anon_sym_register] = ACTIONS(2019), - [anon_sym_hide] = ACTIONS(2019), - [anon_sym_hide_DASHenv] = ACTIONS(2019), - [anon_sym_overlay] = ACTIONS(2019), - [anon_sym_new] = ACTIONS(2019), - [anon_sym_as] = ACTIONS(2019), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2019), - [anon_sym_DOT_DOT2] = ACTIONS(2021), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2023), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2023), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2019), - [aux_sym__val_number_decimal_token1] = ACTIONS(2019), - [aux_sym__val_number_decimal_token2] = ACTIONS(2019), - [aux_sym__val_number_decimal_token3] = ACTIONS(2019), - [aux_sym__val_number_decimal_token4] = ACTIONS(2019), - [aux_sym__val_number_token1] = ACTIONS(2019), - [aux_sym__val_number_token2] = ACTIONS(2019), - [aux_sym__val_number_token3] = ACTIONS(2019), - [anon_sym_DQUOTE] = ACTIONS(2019), - [sym__str_single_quotes] = ACTIONS(2019), - [sym__str_back_ticks] = ACTIONS(2019), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2019), - [sym__entry_separator] = ACTIONS(2025), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_POUND] = ACTIONS(3), - }, - [393] = { - [sym_comment] = STATE(393), - [anon_sym_export] = ACTIONS(1721), - [anon_sym_alias] = ACTIONS(1721), - [anon_sym_let] = ACTIONS(1721), - [anon_sym_let_DASHenv] = ACTIONS(1721), - [anon_sym_mut] = ACTIONS(1721), - [anon_sym_const] = ACTIONS(1721), - [aux_sym_cmd_identifier_token1] = ACTIONS(1721), - [aux_sym_cmd_identifier_token2] = ACTIONS(1721), - [aux_sym_cmd_identifier_token3] = ACTIONS(1721), - [aux_sym_cmd_identifier_token4] = ACTIONS(1721), - [aux_sym_cmd_identifier_token5] = ACTIONS(1721), - [aux_sym_cmd_identifier_token6] = ACTIONS(1721), - [aux_sym_cmd_identifier_token7] = ACTIONS(1721), - [aux_sym_cmd_identifier_token8] = ACTIONS(1721), - [aux_sym_cmd_identifier_token9] = ACTIONS(1721), - [aux_sym_cmd_identifier_token10] = ACTIONS(1721), - [aux_sym_cmd_identifier_token11] = ACTIONS(1721), - [aux_sym_cmd_identifier_token12] = ACTIONS(1721), - [aux_sym_cmd_identifier_token13] = ACTIONS(1721), - [aux_sym_cmd_identifier_token14] = ACTIONS(1721), - [aux_sym_cmd_identifier_token15] = ACTIONS(1721), - [aux_sym_cmd_identifier_token16] = ACTIONS(1721), - [aux_sym_cmd_identifier_token17] = ACTIONS(1721), - [aux_sym_cmd_identifier_token18] = ACTIONS(1721), - [aux_sym_cmd_identifier_token19] = ACTIONS(1721), - [aux_sym_cmd_identifier_token20] = ACTIONS(1721), - [aux_sym_cmd_identifier_token21] = ACTIONS(1721), - [aux_sym_cmd_identifier_token22] = ACTIONS(1721), - [aux_sym_cmd_identifier_token23] = ACTIONS(1721), - [aux_sym_cmd_identifier_token24] = ACTIONS(1721), - [aux_sym_cmd_identifier_token25] = ACTIONS(1721), - [aux_sym_cmd_identifier_token26] = ACTIONS(1721), - [aux_sym_cmd_identifier_token27] = ACTIONS(1721), - [aux_sym_cmd_identifier_token28] = ACTIONS(1721), - [aux_sym_cmd_identifier_token29] = ACTIONS(1721), - [aux_sym_cmd_identifier_token30] = ACTIONS(1721), - [aux_sym_cmd_identifier_token31] = ACTIONS(1721), - [aux_sym_cmd_identifier_token32] = ACTIONS(1721), - [aux_sym_cmd_identifier_token33] = ACTIONS(1721), - [aux_sym_cmd_identifier_token34] = ACTIONS(1721), - [aux_sym_cmd_identifier_token35] = ACTIONS(1721), - [aux_sym_cmd_identifier_token36] = ACTIONS(1721), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [anon_sym_null] = ACTIONS(1721), - [aux_sym_cmd_identifier_token38] = ACTIONS(1721), - [aux_sym_cmd_identifier_token39] = ACTIONS(1721), - [aux_sym_cmd_identifier_token40] = ACTIONS(1721), - [anon_sym_def] = ACTIONS(1721), - [anon_sym_export_DASHenv] = ACTIONS(1721), - [anon_sym_extern] = ACTIONS(1721), - [anon_sym_module] = ACTIONS(1721), - [anon_sym_use] = ACTIONS(1721), - [anon_sym_LPAREN] = ACTIONS(1721), - [anon_sym_DOLLAR] = ACTIONS(1721), - [anon_sym_error] = ACTIONS(1721), - [anon_sym_list] = ACTIONS(1721), - [anon_sym_DASH] = ACTIONS(1721), - [anon_sym_break] = ACTIONS(1721), - [anon_sym_continue] = ACTIONS(1721), - [anon_sym_for] = ACTIONS(1721), - [anon_sym_in] = ACTIONS(1721), - [anon_sym_loop] = ACTIONS(1721), - [anon_sym_make] = ACTIONS(1721), - [anon_sym_while] = ACTIONS(1721), - [anon_sym_do] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1721), - [anon_sym_else] = ACTIONS(1721), - [anon_sym_match] = ACTIONS(1721), - [anon_sym_RBRACE] = ACTIONS(1721), - [anon_sym_try] = ACTIONS(1721), - [anon_sym_catch] = ACTIONS(1721), - [anon_sym_return] = ACTIONS(1721), - [anon_sym_source] = ACTIONS(1721), - [anon_sym_source_DASHenv] = ACTIONS(1721), - [anon_sym_register] = ACTIONS(1721), - [anon_sym_hide] = ACTIONS(1721), - [anon_sym_hide_DASHenv] = ACTIONS(1721), - [anon_sym_overlay] = ACTIONS(1721), - [anon_sym_new] = ACTIONS(1721), - [anon_sym_as] = ACTIONS(1721), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1721), - [anon_sym_DOT_DOT2] = ACTIONS(1721), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1723), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1723), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1721), - [aux_sym__val_number_decimal_token1] = ACTIONS(1721), - [aux_sym__val_number_decimal_token2] = ACTIONS(1721), - [aux_sym__val_number_decimal_token3] = ACTIONS(1721), - [aux_sym__val_number_decimal_token4] = ACTIONS(1721), - [aux_sym__val_number_token1] = ACTIONS(1721), - [aux_sym__val_number_token2] = ACTIONS(1721), - [aux_sym__val_number_token3] = ACTIONS(1721), - [anon_sym_DQUOTE] = ACTIONS(1721), - [sym__str_single_quotes] = ACTIONS(1721), - [sym__str_back_ticks] = ACTIONS(1721), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1721), - [sym__entry_separator] = ACTIONS(1723), - [anon_sym_PLUS] = ACTIONS(1721), - [anon_sym_POUND] = ACTIONS(3), - }, - [394] = { - [sym_comment] = STATE(394), - [anon_sym_export] = ACTIONS(1738), - [anon_sym_alias] = ACTIONS(1738), - [anon_sym_let] = ACTIONS(1738), - [anon_sym_let_DASHenv] = ACTIONS(1738), - [anon_sym_mut] = ACTIONS(1738), - [anon_sym_const] = ACTIONS(1738), - [aux_sym_cmd_identifier_token1] = ACTIONS(1738), - [aux_sym_cmd_identifier_token2] = ACTIONS(1738), - [aux_sym_cmd_identifier_token3] = ACTIONS(1738), - [aux_sym_cmd_identifier_token4] = ACTIONS(1738), - [aux_sym_cmd_identifier_token5] = ACTIONS(1738), - [aux_sym_cmd_identifier_token6] = ACTIONS(1738), - [aux_sym_cmd_identifier_token7] = ACTIONS(1738), - [aux_sym_cmd_identifier_token8] = ACTIONS(1738), - [aux_sym_cmd_identifier_token9] = ACTIONS(1738), - [aux_sym_cmd_identifier_token10] = ACTIONS(1738), - [aux_sym_cmd_identifier_token11] = ACTIONS(1738), - [aux_sym_cmd_identifier_token12] = ACTIONS(1738), - [aux_sym_cmd_identifier_token13] = ACTIONS(1738), - [aux_sym_cmd_identifier_token14] = ACTIONS(1738), - [aux_sym_cmd_identifier_token15] = ACTIONS(1738), - [aux_sym_cmd_identifier_token16] = ACTIONS(1738), - [aux_sym_cmd_identifier_token17] = ACTIONS(1738), - [aux_sym_cmd_identifier_token18] = ACTIONS(1738), - [aux_sym_cmd_identifier_token19] = ACTIONS(1738), - [aux_sym_cmd_identifier_token20] = ACTIONS(1738), - [aux_sym_cmd_identifier_token21] = ACTIONS(1738), - [aux_sym_cmd_identifier_token22] = ACTIONS(1738), - [aux_sym_cmd_identifier_token23] = ACTIONS(1738), - [aux_sym_cmd_identifier_token24] = ACTIONS(1738), - [aux_sym_cmd_identifier_token25] = ACTIONS(1738), - [aux_sym_cmd_identifier_token26] = ACTIONS(1738), - [aux_sym_cmd_identifier_token27] = ACTIONS(1738), - [aux_sym_cmd_identifier_token28] = ACTIONS(1738), - [aux_sym_cmd_identifier_token29] = ACTIONS(1738), - [aux_sym_cmd_identifier_token30] = ACTIONS(1738), - [aux_sym_cmd_identifier_token31] = ACTIONS(1738), - [aux_sym_cmd_identifier_token32] = ACTIONS(1738), - [aux_sym_cmd_identifier_token33] = ACTIONS(1738), - [aux_sym_cmd_identifier_token34] = ACTIONS(1738), - [aux_sym_cmd_identifier_token35] = ACTIONS(1738), - [aux_sym_cmd_identifier_token36] = ACTIONS(1738), - [anon_sym_true] = ACTIONS(1738), - [anon_sym_false] = ACTIONS(1738), - [anon_sym_null] = ACTIONS(1738), - [aux_sym_cmd_identifier_token38] = ACTIONS(1738), - [aux_sym_cmd_identifier_token39] = ACTIONS(1738), - [aux_sym_cmd_identifier_token40] = ACTIONS(1738), - [anon_sym_def] = ACTIONS(1738), - [anon_sym_export_DASHenv] = ACTIONS(1738), - [anon_sym_extern] = ACTIONS(1738), - [anon_sym_module] = ACTIONS(1738), - [anon_sym_use] = ACTIONS(1738), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_DOLLAR] = ACTIONS(1738), - [anon_sym_error] = ACTIONS(1738), - [anon_sym_list] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_break] = ACTIONS(1738), - [anon_sym_continue] = ACTIONS(1738), - [anon_sym_for] = ACTIONS(1738), - [anon_sym_in] = ACTIONS(1738), - [anon_sym_loop] = ACTIONS(1738), - [anon_sym_make] = ACTIONS(1738), - [anon_sym_while] = ACTIONS(1738), - [anon_sym_do] = ACTIONS(1738), - [anon_sym_if] = ACTIONS(1738), - [anon_sym_else] = ACTIONS(1738), - [anon_sym_match] = ACTIONS(1738), - [anon_sym_RBRACE] = ACTIONS(1738), - [anon_sym_try] = ACTIONS(1738), - [anon_sym_catch] = ACTIONS(1738), - [anon_sym_return] = ACTIONS(1738), - [anon_sym_source] = ACTIONS(1738), - [anon_sym_source_DASHenv] = ACTIONS(1738), - [anon_sym_register] = ACTIONS(1738), - [anon_sym_hide] = ACTIONS(1738), - [anon_sym_hide_DASHenv] = ACTIONS(1738), - [anon_sym_overlay] = ACTIONS(1738), - [anon_sym_new] = ACTIONS(1738), - [anon_sym_as] = ACTIONS(1738), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1738), - [anon_sym_DOT_DOT2] = ACTIONS(1738), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1740), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1740), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1738), - [aux_sym__val_number_decimal_token1] = ACTIONS(1738), - [aux_sym__val_number_decimal_token2] = ACTIONS(1738), - [aux_sym__val_number_decimal_token3] = ACTIONS(1738), - [aux_sym__val_number_decimal_token4] = ACTIONS(1738), - [aux_sym__val_number_token1] = ACTIONS(1738), - [aux_sym__val_number_token2] = ACTIONS(1738), - [aux_sym__val_number_token3] = ACTIONS(1738), - [anon_sym_DQUOTE] = ACTIONS(1738), - [sym__str_single_quotes] = ACTIONS(1738), - [sym__str_back_ticks] = ACTIONS(1738), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1738), - [sym__entry_separator] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1738), - [anon_sym_POUND] = ACTIONS(3), - }, - [395] = { - [sym_comment] = STATE(395), - [anon_sym_export] = ACTIONS(1721), - [anon_sym_alias] = ACTIONS(1721), - [anon_sym_let] = ACTIONS(1721), - [anon_sym_let_DASHenv] = ACTIONS(1721), - [anon_sym_mut] = ACTIONS(1721), - [anon_sym_const] = ACTIONS(1721), - [aux_sym_cmd_identifier_token1] = ACTIONS(1721), - [aux_sym_cmd_identifier_token2] = ACTIONS(1721), - [aux_sym_cmd_identifier_token3] = ACTIONS(1721), - [aux_sym_cmd_identifier_token4] = ACTIONS(1721), - [aux_sym_cmd_identifier_token5] = ACTIONS(1721), - [aux_sym_cmd_identifier_token6] = ACTIONS(1721), - [aux_sym_cmd_identifier_token7] = ACTIONS(1721), - [aux_sym_cmd_identifier_token8] = ACTIONS(1721), - [aux_sym_cmd_identifier_token9] = ACTIONS(1721), - [aux_sym_cmd_identifier_token10] = ACTIONS(1721), - [aux_sym_cmd_identifier_token11] = ACTIONS(1721), - [aux_sym_cmd_identifier_token12] = ACTIONS(1721), - [aux_sym_cmd_identifier_token13] = ACTIONS(1721), - [aux_sym_cmd_identifier_token14] = ACTIONS(1721), - [aux_sym_cmd_identifier_token15] = ACTIONS(1721), - [aux_sym_cmd_identifier_token16] = ACTIONS(1721), - [aux_sym_cmd_identifier_token17] = ACTIONS(1721), - [aux_sym_cmd_identifier_token18] = ACTIONS(1721), - [aux_sym_cmd_identifier_token19] = ACTIONS(1721), - [aux_sym_cmd_identifier_token20] = ACTIONS(1721), - [aux_sym_cmd_identifier_token21] = ACTIONS(1721), - [aux_sym_cmd_identifier_token22] = ACTIONS(1721), - [aux_sym_cmd_identifier_token23] = ACTIONS(1721), - [aux_sym_cmd_identifier_token24] = ACTIONS(1721), - [aux_sym_cmd_identifier_token25] = ACTIONS(1721), - [aux_sym_cmd_identifier_token26] = ACTIONS(1721), - [aux_sym_cmd_identifier_token27] = ACTIONS(1721), - [aux_sym_cmd_identifier_token28] = ACTIONS(1721), - [aux_sym_cmd_identifier_token29] = ACTIONS(1721), - [aux_sym_cmd_identifier_token30] = ACTIONS(1721), - [aux_sym_cmd_identifier_token31] = ACTIONS(1721), - [aux_sym_cmd_identifier_token32] = ACTIONS(1721), - [aux_sym_cmd_identifier_token33] = ACTIONS(1721), - [aux_sym_cmd_identifier_token34] = ACTIONS(1721), - [aux_sym_cmd_identifier_token35] = ACTIONS(1721), - [aux_sym_cmd_identifier_token36] = ACTIONS(1721), - [anon_sym_true] = ACTIONS(1723), - [anon_sym_false] = ACTIONS(1723), - [anon_sym_null] = ACTIONS(1723), - [aux_sym_cmd_identifier_token38] = ACTIONS(1721), - [aux_sym_cmd_identifier_token39] = ACTIONS(1723), - [aux_sym_cmd_identifier_token40] = ACTIONS(1723), - [anon_sym_def] = ACTIONS(1721), - [anon_sym_export_DASHenv] = ACTIONS(1721), - [anon_sym_extern] = ACTIONS(1721), - [anon_sym_module] = ACTIONS(1721), - [anon_sym_use] = ACTIONS(1721), - [anon_sym_LPAREN] = ACTIONS(1723), - [anon_sym_DOLLAR] = ACTIONS(1723), - [anon_sym_error] = ACTIONS(1721), - [anon_sym_list] = ACTIONS(1721), - [anon_sym_DASH] = ACTIONS(1721), - [anon_sym_break] = ACTIONS(1721), - [anon_sym_continue] = ACTIONS(1721), - [anon_sym_for] = ACTIONS(1721), - [anon_sym_in] = ACTIONS(1721), - [anon_sym_loop] = ACTIONS(1721), - [anon_sym_make] = ACTIONS(1721), - [anon_sym_while] = ACTIONS(1721), - [anon_sym_do] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1721), - [anon_sym_else] = ACTIONS(1721), - [anon_sym_match] = ACTIONS(1721), - [anon_sym_RBRACE] = ACTIONS(1723), - [anon_sym_try] = ACTIONS(1721), - [anon_sym_catch] = ACTIONS(1721), - [anon_sym_return] = ACTIONS(1721), - [anon_sym_source] = ACTIONS(1721), - [anon_sym_source_DASHenv] = ACTIONS(1721), - [anon_sym_register] = ACTIONS(1721), - [anon_sym_hide] = ACTIONS(1721), - [anon_sym_hide_DASHenv] = ACTIONS(1721), - [anon_sym_overlay] = ACTIONS(1721), - [anon_sym_new] = ACTIONS(1721), - [anon_sym_as] = ACTIONS(1721), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1723), - [anon_sym_DOT_DOT2] = ACTIONS(1721), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1723), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1723), - [aux_sym__immediate_decimal_token2] = ACTIONS(2027), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1723), - [aux_sym__val_number_decimal_token1] = ACTIONS(1721), - [aux_sym__val_number_decimal_token2] = ACTIONS(1723), - [aux_sym__val_number_decimal_token3] = ACTIONS(1723), - [aux_sym__val_number_decimal_token4] = ACTIONS(1723), - [aux_sym__val_number_token1] = ACTIONS(1723), - [aux_sym__val_number_token2] = ACTIONS(1723), - [aux_sym__val_number_token3] = ACTIONS(1723), - [anon_sym_DQUOTE] = ACTIONS(1723), - [sym__str_single_quotes] = ACTIONS(1723), - [sym__str_back_ticks] = ACTIONS(1723), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1723), - [anon_sym_PLUS] = ACTIONS(1721), - [anon_sym_POUND] = ACTIONS(247), - }, - [396] = { - [sym_comment] = STATE(396), - [anon_sym_export] = ACTIONS(2029), - [anon_sym_alias] = ACTIONS(2029), - [anon_sym_let] = ACTIONS(2029), - [anon_sym_let_DASHenv] = ACTIONS(2029), - [anon_sym_mut] = ACTIONS(2029), - [anon_sym_const] = ACTIONS(2029), - [aux_sym_cmd_identifier_token1] = ACTIONS(2029), - [aux_sym_cmd_identifier_token2] = ACTIONS(2029), - [aux_sym_cmd_identifier_token3] = ACTIONS(2029), - [aux_sym_cmd_identifier_token4] = ACTIONS(2029), - [aux_sym_cmd_identifier_token5] = ACTIONS(2029), - [aux_sym_cmd_identifier_token6] = ACTIONS(2029), - [aux_sym_cmd_identifier_token7] = ACTIONS(2029), - [aux_sym_cmd_identifier_token8] = ACTIONS(2029), - [aux_sym_cmd_identifier_token9] = ACTIONS(2029), - [aux_sym_cmd_identifier_token10] = ACTIONS(2029), - [aux_sym_cmd_identifier_token11] = ACTIONS(2029), - [aux_sym_cmd_identifier_token12] = ACTIONS(2029), - [aux_sym_cmd_identifier_token13] = ACTIONS(2029), - [aux_sym_cmd_identifier_token14] = ACTIONS(2029), - [aux_sym_cmd_identifier_token15] = ACTIONS(2029), - [aux_sym_cmd_identifier_token16] = ACTIONS(2029), - [aux_sym_cmd_identifier_token17] = ACTIONS(2029), - [aux_sym_cmd_identifier_token18] = ACTIONS(2029), - [aux_sym_cmd_identifier_token19] = ACTIONS(2029), - [aux_sym_cmd_identifier_token20] = ACTIONS(2029), - [aux_sym_cmd_identifier_token21] = ACTIONS(2029), - [aux_sym_cmd_identifier_token22] = ACTIONS(2029), - [aux_sym_cmd_identifier_token23] = ACTIONS(2029), - [aux_sym_cmd_identifier_token24] = ACTIONS(2029), - [aux_sym_cmd_identifier_token25] = ACTIONS(2029), - [aux_sym_cmd_identifier_token26] = ACTIONS(2029), - [aux_sym_cmd_identifier_token27] = ACTIONS(2029), - [aux_sym_cmd_identifier_token28] = ACTIONS(2029), - [aux_sym_cmd_identifier_token29] = ACTIONS(2029), - [aux_sym_cmd_identifier_token30] = ACTIONS(2029), - [aux_sym_cmd_identifier_token31] = ACTIONS(2029), - [aux_sym_cmd_identifier_token32] = ACTIONS(2029), - [aux_sym_cmd_identifier_token33] = ACTIONS(2029), - [aux_sym_cmd_identifier_token34] = ACTIONS(2029), - [aux_sym_cmd_identifier_token35] = ACTIONS(2029), - [aux_sym_cmd_identifier_token36] = ACTIONS(2029), - [anon_sym_true] = ACTIONS(2029), - [anon_sym_false] = ACTIONS(2029), - [anon_sym_null] = ACTIONS(2029), - [aux_sym_cmd_identifier_token38] = ACTIONS(2029), - [aux_sym_cmd_identifier_token39] = ACTIONS(2029), - [aux_sym_cmd_identifier_token40] = ACTIONS(2029), - [anon_sym_def] = ACTIONS(2029), - [anon_sym_export_DASHenv] = ACTIONS(2029), - [anon_sym_extern] = ACTIONS(2029), - [anon_sym_module] = ACTIONS(2029), - [anon_sym_use] = ACTIONS(2029), - [anon_sym_LPAREN] = ACTIONS(2029), - [anon_sym_DOLLAR] = ACTIONS(2029), - [anon_sym_error] = ACTIONS(2029), - [anon_sym_list] = ACTIONS(2029), - [anon_sym_DASH] = ACTIONS(2029), - [anon_sym_break] = ACTIONS(2029), - [anon_sym_continue] = ACTIONS(2029), - [anon_sym_for] = ACTIONS(2029), - [anon_sym_in] = ACTIONS(2029), - [anon_sym_loop] = ACTIONS(2029), - [anon_sym_make] = ACTIONS(2029), - [anon_sym_while] = ACTIONS(2029), - [anon_sym_do] = ACTIONS(2029), - [anon_sym_if] = ACTIONS(2029), - [anon_sym_else] = ACTIONS(2029), - [anon_sym_match] = ACTIONS(2029), - [anon_sym_RBRACE] = ACTIONS(2029), - [anon_sym_try] = ACTIONS(2029), - [anon_sym_catch] = ACTIONS(2029), - [anon_sym_return] = ACTIONS(2029), - [anon_sym_source] = ACTIONS(2029), - [anon_sym_source_DASHenv] = ACTIONS(2029), - [anon_sym_register] = ACTIONS(2029), - [anon_sym_hide] = ACTIONS(2029), - [anon_sym_hide_DASHenv] = ACTIONS(2029), - [anon_sym_overlay] = ACTIONS(2029), - [anon_sym_new] = ACTIONS(2029), - [anon_sym_as] = ACTIONS(2029), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2029), - [anon_sym_DOT_DOT2] = ACTIONS(2029), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2031), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2031), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2029), - [aux_sym__val_number_decimal_token1] = ACTIONS(2029), - [aux_sym__val_number_decimal_token2] = ACTIONS(2029), - [aux_sym__val_number_decimal_token3] = ACTIONS(2029), - [aux_sym__val_number_decimal_token4] = ACTIONS(2029), - [aux_sym__val_number_token1] = ACTIONS(2029), - [aux_sym__val_number_token2] = ACTIONS(2029), - [aux_sym__val_number_token3] = ACTIONS(2029), - [anon_sym_DQUOTE] = ACTIONS(2029), - [sym__str_single_quotes] = ACTIONS(2029), - [sym__str_back_ticks] = ACTIONS(2029), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2029), - [sym__entry_separator] = ACTIONS(2031), - [anon_sym_PLUS] = ACTIONS(2029), - [anon_sym_POUND] = ACTIONS(3), - }, - [397] = { - [sym_comment] = STATE(397), - [anon_sym_export] = ACTIONS(2033), - [anon_sym_alias] = ACTIONS(2033), - [anon_sym_let] = ACTIONS(2033), - [anon_sym_let_DASHenv] = ACTIONS(2033), - [anon_sym_mut] = ACTIONS(2033), - [anon_sym_const] = ACTIONS(2033), - [aux_sym_cmd_identifier_token1] = ACTIONS(2033), - [aux_sym_cmd_identifier_token2] = ACTIONS(2033), - [aux_sym_cmd_identifier_token3] = ACTIONS(2033), - [aux_sym_cmd_identifier_token4] = ACTIONS(2033), - [aux_sym_cmd_identifier_token5] = ACTIONS(2033), - [aux_sym_cmd_identifier_token6] = ACTIONS(2033), - [aux_sym_cmd_identifier_token7] = ACTIONS(2033), - [aux_sym_cmd_identifier_token8] = ACTIONS(2033), - [aux_sym_cmd_identifier_token9] = ACTIONS(2033), - [aux_sym_cmd_identifier_token10] = ACTIONS(2033), - [aux_sym_cmd_identifier_token11] = ACTIONS(2033), - [aux_sym_cmd_identifier_token12] = ACTIONS(2033), - [aux_sym_cmd_identifier_token13] = ACTIONS(2033), - [aux_sym_cmd_identifier_token14] = ACTIONS(2033), - [aux_sym_cmd_identifier_token15] = ACTIONS(2033), - [aux_sym_cmd_identifier_token16] = ACTIONS(2033), - [aux_sym_cmd_identifier_token17] = ACTIONS(2033), - [aux_sym_cmd_identifier_token18] = ACTIONS(2033), - [aux_sym_cmd_identifier_token19] = ACTIONS(2033), - [aux_sym_cmd_identifier_token20] = ACTIONS(2033), - [aux_sym_cmd_identifier_token21] = ACTIONS(2033), - [aux_sym_cmd_identifier_token22] = ACTIONS(2033), - [aux_sym_cmd_identifier_token23] = ACTIONS(2033), - [aux_sym_cmd_identifier_token24] = ACTIONS(2033), - [aux_sym_cmd_identifier_token25] = ACTIONS(2033), - [aux_sym_cmd_identifier_token26] = ACTIONS(2033), - [aux_sym_cmd_identifier_token27] = ACTIONS(2033), - [aux_sym_cmd_identifier_token28] = ACTIONS(2033), - [aux_sym_cmd_identifier_token29] = ACTIONS(2033), - [aux_sym_cmd_identifier_token30] = ACTIONS(2033), - [aux_sym_cmd_identifier_token31] = ACTIONS(2033), - [aux_sym_cmd_identifier_token32] = ACTIONS(2033), - [aux_sym_cmd_identifier_token33] = ACTIONS(2033), - [aux_sym_cmd_identifier_token34] = ACTIONS(2033), - [aux_sym_cmd_identifier_token35] = ACTIONS(2033), - [aux_sym_cmd_identifier_token36] = ACTIONS(2033), - [anon_sym_true] = ACTIONS(2033), - [anon_sym_false] = ACTIONS(2033), - [anon_sym_null] = ACTIONS(2033), - [aux_sym_cmd_identifier_token38] = ACTIONS(2033), - [aux_sym_cmd_identifier_token39] = ACTIONS(2033), - [aux_sym_cmd_identifier_token40] = ACTIONS(2033), - [anon_sym_def] = ACTIONS(2033), - [anon_sym_export_DASHenv] = ACTIONS(2033), - [anon_sym_extern] = ACTIONS(2033), - [anon_sym_module] = ACTIONS(2033), - [anon_sym_use] = ACTIONS(2033), - [anon_sym_LPAREN] = ACTIONS(2033), - [anon_sym_DOLLAR] = ACTIONS(2033), - [anon_sym_error] = ACTIONS(2033), - [anon_sym_list] = ACTIONS(2033), - [anon_sym_DASH] = ACTIONS(2033), - [anon_sym_break] = ACTIONS(2033), - [anon_sym_continue] = ACTIONS(2033), - [anon_sym_for] = ACTIONS(2033), - [anon_sym_in] = ACTIONS(2033), - [anon_sym_loop] = ACTIONS(2033), - [anon_sym_make] = ACTIONS(2033), - [anon_sym_while] = ACTIONS(2033), - [anon_sym_do] = ACTIONS(2033), - [anon_sym_if] = ACTIONS(2033), - [anon_sym_else] = ACTIONS(2033), - [anon_sym_match] = ACTIONS(2033), - [anon_sym_RBRACE] = ACTIONS(2033), - [anon_sym_try] = ACTIONS(2033), - [anon_sym_catch] = ACTIONS(2033), - [anon_sym_return] = ACTIONS(2033), - [anon_sym_source] = ACTIONS(2033), - [anon_sym_source_DASHenv] = ACTIONS(2033), - [anon_sym_register] = ACTIONS(2033), - [anon_sym_hide] = ACTIONS(2033), - [anon_sym_hide_DASHenv] = ACTIONS(2033), - [anon_sym_overlay] = ACTIONS(2033), - [anon_sym_new] = ACTIONS(2033), - [anon_sym_as] = ACTIONS(2033), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2033), - [anon_sym_DOT_DOT2] = ACTIONS(2033), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2035), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2035), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2033), - [aux_sym__val_number_decimal_token1] = ACTIONS(2033), - [aux_sym__val_number_decimal_token2] = ACTIONS(2033), - [aux_sym__val_number_decimal_token3] = ACTIONS(2033), - [aux_sym__val_number_decimal_token4] = ACTIONS(2033), - [aux_sym__val_number_token1] = ACTIONS(2033), - [aux_sym__val_number_token2] = ACTIONS(2033), - [aux_sym__val_number_token3] = ACTIONS(2033), - [anon_sym_DQUOTE] = ACTIONS(2033), - [sym__str_single_quotes] = ACTIONS(2033), - [sym__str_back_ticks] = ACTIONS(2033), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2033), - [sym__entry_separator] = ACTIONS(2035), - [anon_sym_PLUS] = ACTIONS(2033), - [anon_sym_POUND] = ACTIONS(3), - }, - [398] = { - [sym_comment] = STATE(398), - [anon_sym_export] = ACTIONS(1058), - [anon_sym_alias] = ACTIONS(1058), - [anon_sym_let] = ACTIONS(1058), - [anon_sym_let_DASHenv] = ACTIONS(1058), - [anon_sym_mut] = ACTIONS(1058), - [anon_sym_const] = ACTIONS(1058), - [aux_sym_cmd_identifier_token1] = ACTIONS(1058), - [aux_sym_cmd_identifier_token2] = ACTIONS(1058), - [aux_sym_cmd_identifier_token3] = ACTIONS(1058), - [aux_sym_cmd_identifier_token4] = ACTIONS(1058), - [aux_sym_cmd_identifier_token5] = ACTIONS(1058), - [aux_sym_cmd_identifier_token6] = ACTIONS(1058), - [aux_sym_cmd_identifier_token7] = ACTIONS(1058), - [aux_sym_cmd_identifier_token8] = ACTIONS(1058), - [aux_sym_cmd_identifier_token9] = ACTIONS(1058), - [aux_sym_cmd_identifier_token10] = ACTIONS(1058), - [aux_sym_cmd_identifier_token11] = ACTIONS(1058), - [aux_sym_cmd_identifier_token12] = ACTIONS(1058), - [aux_sym_cmd_identifier_token13] = ACTIONS(1058), - [aux_sym_cmd_identifier_token14] = ACTIONS(1058), - [aux_sym_cmd_identifier_token15] = ACTIONS(1058), - [aux_sym_cmd_identifier_token16] = ACTIONS(1058), - [aux_sym_cmd_identifier_token17] = ACTIONS(1058), - [aux_sym_cmd_identifier_token18] = ACTIONS(1058), - [aux_sym_cmd_identifier_token19] = ACTIONS(1058), - [aux_sym_cmd_identifier_token20] = ACTIONS(1058), - [aux_sym_cmd_identifier_token21] = ACTIONS(1058), - [aux_sym_cmd_identifier_token22] = ACTIONS(1058), - [aux_sym_cmd_identifier_token23] = ACTIONS(1058), - [aux_sym_cmd_identifier_token24] = ACTIONS(1058), - [aux_sym_cmd_identifier_token25] = ACTIONS(1058), - [aux_sym_cmd_identifier_token26] = ACTIONS(1058), - [aux_sym_cmd_identifier_token27] = ACTIONS(1058), - [aux_sym_cmd_identifier_token28] = ACTIONS(1058), - [aux_sym_cmd_identifier_token29] = ACTIONS(1058), - [aux_sym_cmd_identifier_token30] = ACTIONS(1058), - [aux_sym_cmd_identifier_token31] = ACTIONS(1058), - [aux_sym_cmd_identifier_token32] = ACTIONS(1058), - [aux_sym_cmd_identifier_token33] = ACTIONS(1058), - [aux_sym_cmd_identifier_token34] = ACTIONS(1058), - [aux_sym_cmd_identifier_token35] = ACTIONS(1058), - [aux_sym_cmd_identifier_token36] = ACTIONS(1058), - [anon_sym_true] = ACTIONS(1058), - [anon_sym_false] = ACTIONS(1058), - [anon_sym_null] = ACTIONS(1058), - [aux_sym_cmd_identifier_token38] = ACTIONS(1058), - [aux_sym_cmd_identifier_token39] = ACTIONS(1058), - [aux_sym_cmd_identifier_token40] = ACTIONS(1058), - [anon_sym_def] = ACTIONS(1058), - [anon_sym_export_DASHenv] = ACTIONS(1058), - [anon_sym_extern] = ACTIONS(1058), - [anon_sym_module] = ACTIONS(1058), - [anon_sym_use] = ACTIONS(1058), - [anon_sym_LPAREN] = ACTIONS(1058), - [anon_sym_DOLLAR] = ACTIONS(1058), - [anon_sym_error] = ACTIONS(1058), - [anon_sym_list] = ACTIONS(1058), - [anon_sym_DASH] = ACTIONS(1058), - [anon_sym_break] = ACTIONS(1058), - [anon_sym_continue] = ACTIONS(1058), - [anon_sym_for] = ACTIONS(1058), - [anon_sym_in] = ACTIONS(1058), - [anon_sym_loop] = ACTIONS(1058), - [anon_sym_make] = ACTIONS(1058), - [anon_sym_while] = ACTIONS(1058), - [anon_sym_do] = ACTIONS(1058), - [anon_sym_if] = ACTIONS(1058), - [anon_sym_else] = ACTIONS(1058), - [anon_sym_match] = ACTIONS(1058), - [anon_sym_RBRACE] = ACTIONS(1058), - [anon_sym_try] = ACTIONS(1058), - [anon_sym_catch] = ACTIONS(1058), - [anon_sym_return] = ACTIONS(1058), - [anon_sym_source] = ACTIONS(1058), - [anon_sym_source_DASHenv] = ACTIONS(1058), - [anon_sym_register] = ACTIONS(1058), - [anon_sym_hide] = ACTIONS(1058), - [anon_sym_hide_DASHenv] = ACTIONS(1058), - [anon_sym_overlay] = ACTIONS(1058), - [anon_sym_new] = ACTIONS(1058), - [anon_sym_as] = ACTIONS(1058), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1058), - [anon_sym_DOT_DOT2] = ACTIONS(1058), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1060), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1060), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1058), - [aux_sym__val_number_decimal_token1] = ACTIONS(1058), - [aux_sym__val_number_decimal_token2] = ACTIONS(1058), - [aux_sym__val_number_decimal_token3] = ACTIONS(1058), - [aux_sym__val_number_decimal_token4] = ACTIONS(1058), - [aux_sym__val_number_token1] = ACTIONS(1058), - [aux_sym__val_number_token2] = ACTIONS(1058), - [aux_sym__val_number_token3] = ACTIONS(1058), - [anon_sym_DQUOTE] = ACTIONS(1058), - [sym__str_single_quotes] = ACTIONS(1058), - [sym__str_back_ticks] = ACTIONS(1058), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1058), - [sym__entry_separator] = ACTIONS(1060), - [anon_sym_PLUS] = ACTIONS(1058), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1056), }, - [399] = { - [sym_comment] = STATE(399), + [338] = { + [sym_comment] = STATE(338), [anon_sym_export] = ACTIONS(1042), [anon_sym_alias] = ACTIONS(1042), [anon_sym_let] = ACTIONS(1042), @@ -121296,7 +116306,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_module] = ACTIONS(1042), [anon_sym_use] = ACTIONS(1042), [anon_sym_LPAREN] = ACTIONS(1044), - [anon_sym_COMMA] = ACTIONS(1044), [anon_sym_DOLLAR] = ACTIONS(1044), [anon_sym_error] = ACTIONS(1042), [anon_sym_list] = ACTIONS(1042), @@ -121324,9 +116333,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(1042), [anon_sym_new] = ACTIONS(1042), [anon_sym_as] = ACTIONS(1042), - [anon_sym_QMARK2] = ACTIONS(1044), + [anon_sym_QMARK2] = ACTIONS(1885), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1044), + [anon_sym_DOT_DOT2] = ACTIONS(1042), [anon_sym_DOT] = ACTIONS(1042), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1044), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1044), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1044), [aux_sym__val_number_decimal_token1] = ACTIONS(1042), [aux_sym__val_number_decimal_token2] = ACTIONS(1044), @@ -121339,527 +116351,327 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_single_quotes] = ACTIONS(1044), [sym__str_back_ticks] = ACTIONS(1044), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1044), - [aux_sym_record_entry_token1] = ACTIONS(1044), [anon_sym_PLUS] = ACTIONS(1042), - [anon_sym_POUND] = ACTIONS(247), - }, - [400] = { - [sym_expr_parenthesized] = STATE(4217), - [sym__spread_parenthesized] = STATE(4750), - [sym_val_range] = STATE(4769), - [sym__val_range] = STATE(7527), - [sym__val_range_with_end] = STATE(7302), - [sym__value] = STATE(4769), - [sym_val_nothing] = STATE(4764), - [sym_val_bool] = STATE(4456), - [sym__spread_variable] = STATE(4708), - [sym_val_variable] = STATE(4303), - [sym_val_number] = STATE(4764), - [sym__val_number_decimal] = STATE(3935), - [sym__val_number] = STATE(4795), - [sym_val_duration] = STATE(4764), - [sym_val_filesize] = STATE(4764), - [sym_val_binary] = STATE(4764), - [sym_val_string] = STATE(4764), - [sym__str_double_quotes] = STATE(4501), - [sym_val_interpolated] = STATE(4764), - [sym__inter_single_quotes] = STATE(4767), - [sym__inter_double_quotes] = STATE(4768), - [sym_val_list] = STATE(4764), - [sym__spread_list] = STATE(4750), - [sym_val_record] = STATE(4764), - [sym_val_table] = STATE(4764), - [sym_val_closure] = STATE(4764), - [sym__cmd_arg] = STATE(4640), - [sym_redirection] = STATE(4650), - [sym__flag] = STATE(4677), - [sym_short_flag] = STATE(4716), - [sym_long_flag] = STATE(4716), - [sym_unquoted] = STATE(4486), - [sym__unquoted_with_expr] = STATE(4763), - [sym__unquoted_anonymous_prefix] = STATE(6878), - [sym_comment] = STATE(400), - [anon_sym_true] = ACTIONS(2037), - [anon_sym_false] = ACTIONS(2037), - [anon_sym_null] = ACTIONS(2039), - [aux_sym_cmd_identifier_token38] = ACTIONS(2041), - [aux_sym_cmd_identifier_token39] = ACTIONS(2041), - [aux_sym_cmd_identifier_token40] = ACTIONS(2041), - [sym__newline] = ACTIONS(2043), - [sym__space] = ACTIONS(2045), - [anon_sym_SEMI] = ACTIONS(2043), - [anon_sym_PIPE] = ACTIONS(2043), - [anon_sym_err_GT_PIPE] = ACTIONS(2043), - [anon_sym_out_GT_PIPE] = ACTIONS(2043), - [anon_sym_e_GT_PIPE] = ACTIONS(2043), - [anon_sym_o_GT_PIPE] = ACTIONS(2043), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2043), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2043), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2043), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2043), - [anon_sym_LBRACK] = ACTIONS(2047), - [anon_sym_LPAREN] = ACTIONS(2049), - [anon_sym_RPAREN] = ACTIONS(2043), - [anon_sym_DOLLAR] = ACTIONS(2051), - [anon_sym_DASH_DASH] = ACTIONS(2053), - [anon_sym_DASH] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_RBRACE] = ACTIONS(2043), - [anon_sym_DOT_DOT] = ACTIONS(2059), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2061), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2063), - [anon_sym_DOT_DOT_LT] = ACTIONS(2063), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2065), - [aux_sym__val_number_decimal_token1] = ACTIONS(2067), - [aux_sym__val_number_decimal_token2] = ACTIONS(2067), - [aux_sym__val_number_decimal_token3] = ACTIONS(2069), - [aux_sym__val_number_decimal_token4] = ACTIONS(2071), - [aux_sym__val_number_token1] = ACTIONS(2073), - [aux_sym__val_number_token2] = ACTIONS(2073), - [aux_sym__val_number_token3] = ACTIONS(2073), - [anon_sym_0b] = ACTIONS(2075), - [anon_sym_0o] = ACTIONS(2077), - [anon_sym_0x] = ACTIONS(2077), - [sym_val_date] = ACTIONS(2079), - [anon_sym_DQUOTE] = ACTIONS(2081), - [sym__str_single_quotes] = ACTIONS(2083), - [sym__str_back_ticks] = ACTIONS(2083), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2085), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2087), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2089), - [anon_sym_err_GT] = ACTIONS(2091), - [anon_sym_out_GT] = ACTIONS(2091), - [anon_sym_e_GT] = ACTIONS(2091), - [anon_sym_o_GT] = ACTIONS(2091), - [anon_sym_err_PLUSout_GT] = ACTIONS(2091), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2091), - [anon_sym_o_PLUSe_GT] = ACTIONS(2091), - [anon_sym_e_PLUSo_GT] = ACTIONS(2091), - [anon_sym_err_GT_GT] = ACTIONS(2091), - [anon_sym_out_GT_GT] = ACTIONS(2091), - [anon_sym_e_GT_GT] = ACTIONS(2091), - [anon_sym_o_GT_GT] = ACTIONS(2091), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2091), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2091), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2091), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2091), - [aux_sym_unquoted_token1] = ACTIONS(2093), - [anon_sym_POUND] = ACTIONS(3), - }, - [401] = { - [sym_comment] = STATE(401), - [anon_sym_export] = ACTIONS(1038), - [anon_sym_alias] = ACTIONS(1038), - [anon_sym_let] = ACTIONS(1038), - [anon_sym_let_DASHenv] = ACTIONS(1038), - [anon_sym_mut] = ACTIONS(1038), - [anon_sym_const] = ACTIONS(1038), - [aux_sym_cmd_identifier_token1] = ACTIONS(1038), - [aux_sym_cmd_identifier_token2] = ACTIONS(1038), - [aux_sym_cmd_identifier_token3] = ACTIONS(1038), - [aux_sym_cmd_identifier_token4] = ACTIONS(1038), - [aux_sym_cmd_identifier_token5] = ACTIONS(1038), - [aux_sym_cmd_identifier_token6] = ACTIONS(1038), - [aux_sym_cmd_identifier_token7] = ACTIONS(1038), - [aux_sym_cmd_identifier_token8] = ACTIONS(1038), - [aux_sym_cmd_identifier_token9] = ACTIONS(1038), - [aux_sym_cmd_identifier_token10] = ACTIONS(1038), - [aux_sym_cmd_identifier_token11] = ACTIONS(1038), - [aux_sym_cmd_identifier_token12] = ACTIONS(1038), - [aux_sym_cmd_identifier_token13] = ACTIONS(1038), - [aux_sym_cmd_identifier_token14] = ACTIONS(1038), - [aux_sym_cmd_identifier_token15] = ACTIONS(1038), - [aux_sym_cmd_identifier_token16] = ACTIONS(1038), - [aux_sym_cmd_identifier_token17] = ACTIONS(1038), - [aux_sym_cmd_identifier_token18] = ACTIONS(1038), - [aux_sym_cmd_identifier_token19] = ACTIONS(1038), - [aux_sym_cmd_identifier_token20] = ACTIONS(1038), - [aux_sym_cmd_identifier_token21] = ACTIONS(1038), - [aux_sym_cmd_identifier_token22] = ACTIONS(1038), - [aux_sym_cmd_identifier_token23] = ACTIONS(1038), - [aux_sym_cmd_identifier_token24] = ACTIONS(1038), - [aux_sym_cmd_identifier_token25] = ACTIONS(1038), - [aux_sym_cmd_identifier_token26] = ACTIONS(1038), - [aux_sym_cmd_identifier_token27] = ACTIONS(1038), - [aux_sym_cmd_identifier_token28] = ACTIONS(1038), - [aux_sym_cmd_identifier_token29] = ACTIONS(1038), - [aux_sym_cmd_identifier_token30] = ACTIONS(1038), - [aux_sym_cmd_identifier_token31] = ACTIONS(1038), - [aux_sym_cmd_identifier_token32] = ACTIONS(1038), - [aux_sym_cmd_identifier_token33] = ACTIONS(1038), - [aux_sym_cmd_identifier_token34] = ACTIONS(1038), - [aux_sym_cmd_identifier_token35] = ACTIONS(1038), - [aux_sym_cmd_identifier_token36] = ACTIONS(1038), - [anon_sym_true] = ACTIONS(1040), - [anon_sym_false] = ACTIONS(1040), - [anon_sym_null] = ACTIONS(1040), - [aux_sym_cmd_identifier_token38] = ACTIONS(1038), - [aux_sym_cmd_identifier_token39] = ACTIONS(1040), - [aux_sym_cmd_identifier_token40] = ACTIONS(1040), - [anon_sym_def] = ACTIONS(1038), - [anon_sym_export_DASHenv] = ACTIONS(1038), - [anon_sym_extern] = ACTIONS(1038), - [anon_sym_module] = ACTIONS(1038), - [anon_sym_use] = ACTIONS(1038), - [anon_sym_LPAREN] = ACTIONS(1040), - [anon_sym_COMMA] = ACTIONS(1040), - [anon_sym_DOLLAR] = ACTIONS(1040), - [anon_sym_error] = ACTIONS(1038), - [anon_sym_list] = ACTIONS(1038), - [anon_sym_DASH] = ACTIONS(1038), - [anon_sym_break] = ACTIONS(1038), - [anon_sym_continue] = ACTIONS(1038), - [anon_sym_for] = ACTIONS(1038), - [anon_sym_in] = ACTIONS(1038), - [anon_sym_loop] = ACTIONS(1038), - [anon_sym_make] = ACTIONS(1038), - [anon_sym_while] = ACTIONS(1038), - [anon_sym_do] = ACTIONS(1038), - [anon_sym_if] = ACTIONS(1038), - [anon_sym_else] = ACTIONS(1038), - [anon_sym_match] = ACTIONS(1038), - [anon_sym_RBRACE] = ACTIONS(1040), - [anon_sym_try] = ACTIONS(1038), - [anon_sym_catch] = ACTIONS(1038), - [anon_sym_return] = ACTIONS(1038), - [anon_sym_source] = ACTIONS(1038), - [anon_sym_source_DASHenv] = ACTIONS(1038), - [anon_sym_register] = ACTIONS(1038), - [anon_sym_hide] = ACTIONS(1038), - [anon_sym_hide_DASHenv] = ACTIONS(1038), - [anon_sym_overlay] = ACTIONS(1038), - [anon_sym_new] = ACTIONS(1038), - [anon_sym_as] = ACTIONS(1038), - [anon_sym_QMARK2] = ACTIONS(1040), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1040), - [anon_sym_DOT] = ACTIONS(1038), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1040), - [aux_sym__val_number_decimal_token1] = ACTIONS(1038), - [aux_sym__val_number_decimal_token2] = ACTIONS(1040), - [aux_sym__val_number_decimal_token3] = ACTIONS(1040), - [aux_sym__val_number_decimal_token4] = ACTIONS(1040), - [aux_sym__val_number_token1] = ACTIONS(1040), - [aux_sym__val_number_token2] = ACTIONS(1040), - [aux_sym__val_number_token3] = ACTIONS(1040), - [anon_sym_DQUOTE] = ACTIONS(1040), - [sym__str_single_quotes] = ACTIONS(1040), - [sym__str_back_ticks] = ACTIONS(1040), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1040), - [aux_sym_record_entry_token1] = ACTIONS(1040), - [anon_sym_PLUS] = ACTIONS(1038), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1044), }, - [402] = { - [sym_comment] = STATE(402), - [anon_sym_export] = ACTIONS(1667), - [anon_sym_alias] = ACTIONS(1667), - [anon_sym_let] = ACTIONS(1667), - [anon_sym_let_DASHenv] = ACTIONS(1667), - [anon_sym_mut] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1667), - [aux_sym_cmd_identifier_token1] = ACTIONS(1667), - [aux_sym_cmd_identifier_token2] = ACTIONS(1667), - [aux_sym_cmd_identifier_token3] = ACTIONS(1667), - [aux_sym_cmd_identifier_token4] = ACTIONS(1667), - [aux_sym_cmd_identifier_token5] = ACTIONS(1667), - [aux_sym_cmd_identifier_token6] = ACTIONS(1667), - [aux_sym_cmd_identifier_token7] = ACTIONS(1667), - [aux_sym_cmd_identifier_token8] = ACTIONS(1667), - [aux_sym_cmd_identifier_token9] = ACTIONS(1667), - [aux_sym_cmd_identifier_token10] = ACTIONS(1667), - [aux_sym_cmd_identifier_token11] = ACTIONS(1667), - [aux_sym_cmd_identifier_token12] = ACTIONS(1667), - [aux_sym_cmd_identifier_token13] = ACTIONS(1667), - [aux_sym_cmd_identifier_token14] = ACTIONS(1667), - [aux_sym_cmd_identifier_token15] = ACTIONS(1667), - [aux_sym_cmd_identifier_token16] = ACTIONS(1667), - [aux_sym_cmd_identifier_token17] = ACTIONS(1667), - [aux_sym_cmd_identifier_token18] = ACTIONS(1667), - [aux_sym_cmd_identifier_token19] = ACTIONS(1667), - [aux_sym_cmd_identifier_token20] = ACTIONS(1667), - [aux_sym_cmd_identifier_token21] = ACTIONS(1667), - [aux_sym_cmd_identifier_token22] = ACTIONS(1667), - [aux_sym_cmd_identifier_token23] = ACTIONS(1667), - [aux_sym_cmd_identifier_token24] = ACTIONS(1667), - [aux_sym_cmd_identifier_token25] = ACTIONS(1667), - [aux_sym_cmd_identifier_token26] = ACTIONS(1667), - [aux_sym_cmd_identifier_token27] = ACTIONS(1667), - [aux_sym_cmd_identifier_token28] = ACTIONS(1667), - [aux_sym_cmd_identifier_token29] = ACTIONS(1667), - [aux_sym_cmd_identifier_token30] = ACTIONS(1667), - [aux_sym_cmd_identifier_token31] = ACTIONS(1667), - [aux_sym_cmd_identifier_token32] = ACTIONS(1667), - [aux_sym_cmd_identifier_token33] = ACTIONS(1667), - [aux_sym_cmd_identifier_token34] = ACTIONS(1667), - [aux_sym_cmd_identifier_token35] = ACTIONS(1667), - [aux_sym_cmd_identifier_token36] = ACTIONS(1667), - [anon_sym_true] = ACTIONS(1669), - [anon_sym_false] = ACTIONS(1669), - [anon_sym_null] = ACTIONS(1669), - [aux_sym_cmd_identifier_token38] = ACTIONS(1667), - [aux_sym_cmd_identifier_token39] = ACTIONS(1669), - [aux_sym_cmd_identifier_token40] = ACTIONS(1669), - [anon_sym_def] = ACTIONS(1667), - [anon_sym_export_DASHenv] = ACTIONS(1667), - [anon_sym_extern] = ACTIONS(1667), - [anon_sym_module] = ACTIONS(1667), - [anon_sym_use] = ACTIONS(1667), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_DOLLAR] = ACTIONS(1669), - [anon_sym_error] = ACTIONS(1667), - [anon_sym_list] = ACTIONS(1667), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_break] = ACTIONS(1667), - [anon_sym_continue] = ACTIONS(1667), - [anon_sym_for] = ACTIONS(1667), - [anon_sym_in] = ACTIONS(1667), - [anon_sym_loop] = ACTIONS(1667), - [anon_sym_make] = ACTIONS(1667), - [anon_sym_while] = ACTIONS(1667), - [anon_sym_do] = ACTIONS(1667), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_else] = ACTIONS(1667), - [anon_sym_match] = ACTIONS(1667), - [anon_sym_RBRACE] = ACTIONS(1669), - [anon_sym_try] = ACTIONS(1667), - [anon_sym_catch] = ACTIONS(1667), - [anon_sym_return] = ACTIONS(1667), - [anon_sym_source] = ACTIONS(1667), - [anon_sym_source_DASHenv] = ACTIONS(1667), - [anon_sym_register] = ACTIONS(1667), - [anon_sym_hide] = ACTIONS(1667), - [anon_sym_hide_DASHenv] = ACTIONS(1667), - [anon_sym_overlay] = ACTIONS(1667), - [anon_sym_new] = ACTIONS(1667), - [anon_sym_as] = ACTIONS(1667), - [anon_sym_LPAREN2] = ACTIONS(1669), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1669), - [anon_sym_DOT] = ACTIONS(2095), - [aux_sym__immediate_decimal_token2] = ACTIONS(2097), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1669), - [aux_sym__val_number_decimal_token1] = ACTIONS(1667), - [aux_sym__val_number_decimal_token2] = ACTIONS(1669), - [aux_sym__val_number_decimal_token3] = ACTIONS(1669), - [aux_sym__val_number_decimal_token4] = ACTIONS(1669), - [aux_sym__val_number_token1] = ACTIONS(1669), - [aux_sym__val_number_token2] = ACTIONS(1669), - [aux_sym__val_number_token3] = ACTIONS(1669), - [anon_sym_DQUOTE] = ACTIONS(1669), - [sym__str_single_quotes] = ACTIONS(1669), - [sym__str_back_ticks] = ACTIONS(1669), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1669), - [anon_sym_PLUS] = ACTIONS(1667), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(247), + [339] = { + [sym_comment] = STATE(339), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_alias] = ACTIONS(1048), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_let_DASHenv] = ACTIONS(1048), + [anon_sym_mut] = ACTIONS(1048), + [anon_sym_const] = ACTIONS(1048), + [aux_sym_cmd_identifier_token1] = ACTIONS(1048), + [aux_sym_cmd_identifier_token2] = ACTIONS(1048), + [aux_sym_cmd_identifier_token3] = ACTIONS(1048), + [aux_sym_cmd_identifier_token4] = ACTIONS(1048), + [aux_sym_cmd_identifier_token5] = ACTIONS(1048), + [aux_sym_cmd_identifier_token6] = ACTIONS(1048), + [aux_sym_cmd_identifier_token7] = ACTIONS(1048), + [aux_sym_cmd_identifier_token8] = ACTIONS(1048), + [aux_sym_cmd_identifier_token9] = ACTIONS(1048), + [aux_sym_cmd_identifier_token10] = ACTIONS(1048), + [aux_sym_cmd_identifier_token11] = ACTIONS(1048), + [aux_sym_cmd_identifier_token12] = ACTIONS(1048), + [aux_sym_cmd_identifier_token13] = ACTIONS(1048), + [aux_sym_cmd_identifier_token14] = ACTIONS(1048), + [aux_sym_cmd_identifier_token15] = ACTIONS(1048), + [aux_sym_cmd_identifier_token16] = ACTIONS(1048), + [aux_sym_cmd_identifier_token17] = ACTIONS(1048), + [aux_sym_cmd_identifier_token18] = ACTIONS(1048), + [aux_sym_cmd_identifier_token19] = ACTIONS(1048), + [aux_sym_cmd_identifier_token20] = ACTIONS(1048), + [aux_sym_cmd_identifier_token21] = ACTIONS(1048), + [aux_sym_cmd_identifier_token22] = ACTIONS(1048), + [aux_sym_cmd_identifier_token23] = ACTIONS(1048), + [aux_sym_cmd_identifier_token24] = ACTIONS(1048), + [aux_sym_cmd_identifier_token25] = ACTIONS(1048), + [aux_sym_cmd_identifier_token26] = ACTIONS(1048), + [aux_sym_cmd_identifier_token27] = ACTIONS(1048), + [aux_sym_cmd_identifier_token28] = ACTIONS(1048), + [aux_sym_cmd_identifier_token29] = ACTIONS(1048), + [aux_sym_cmd_identifier_token30] = ACTIONS(1048), + [aux_sym_cmd_identifier_token31] = ACTIONS(1048), + [aux_sym_cmd_identifier_token32] = ACTIONS(1048), + [aux_sym_cmd_identifier_token33] = ACTIONS(1048), + [aux_sym_cmd_identifier_token34] = ACTIONS(1048), + [aux_sym_cmd_identifier_token35] = ACTIONS(1048), + [aux_sym_cmd_identifier_token36] = ACTIONS(1048), + [anon_sym_true] = ACTIONS(1050), + [anon_sym_false] = ACTIONS(1050), + [anon_sym_null] = ACTIONS(1050), + [aux_sym_cmd_identifier_token38] = ACTIONS(1048), + [aux_sym_cmd_identifier_token39] = ACTIONS(1050), + [aux_sym_cmd_identifier_token40] = ACTIONS(1050), + [anon_sym_def] = ACTIONS(1048), + [anon_sym_export_DASHenv] = ACTIONS(1048), + [anon_sym_extern] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_use] = ACTIONS(1048), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_DOLLAR] = ACTIONS(1050), + [anon_sym_error] = ACTIONS(1048), + [anon_sym_list] = ACTIONS(1048), + [anon_sym_DASH] = ACTIONS(1048), + [anon_sym_break] = ACTIONS(1048), + [anon_sym_continue] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1048), + [anon_sym_in] = ACTIONS(1048), + [anon_sym_loop] = ACTIONS(1048), + [anon_sym_make] = ACTIONS(1048), + [anon_sym_while] = ACTIONS(1048), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_if] = ACTIONS(1048), + [anon_sym_else] = ACTIONS(1048), + [anon_sym_match] = ACTIONS(1048), + [anon_sym_RBRACE] = ACTIONS(1050), + [anon_sym_try] = ACTIONS(1048), + [anon_sym_catch] = ACTIONS(1048), + [anon_sym_return] = ACTIONS(1048), + [anon_sym_source] = ACTIONS(1048), + [anon_sym_source_DASHenv] = ACTIONS(1048), + [anon_sym_register] = ACTIONS(1048), + [anon_sym_hide] = ACTIONS(1048), + [anon_sym_hide_DASHenv] = ACTIONS(1048), + [anon_sym_overlay] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1048), + [anon_sym_as] = ACTIONS(1048), + [anon_sym_QMARK2] = ACTIONS(1887), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1050), + [anon_sym_DOT_DOT2] = ACTIONS(1048), + [anon_sym_DOT] = ACTIONS(1048), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1050), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1050), + [aux_sym__val_number_decimal_token1] = ACTIONS(1048), + [aux_sym__val_number_decimal_token2] = ACTIONS(1050), + [aux_sym__val_number_decimal_token3] = ACTIONS(1050), + [aux_sym__val_number_decimal_token4] = ACTIONS(1050), + [aux_sym__val_number_token1] = ACTIONS(1050), + [aux_sym__val_number_token2] = ACTIONS(1050), + [aux_sym__val_number_token3] = ACTIONS(1050), + [anon_sym_DQUOTE] = ACTIONS(1050), + [sym__str_single_quotes] = ACTIONS(1050), + [sym__str_back_ticks] = ACTIONS(1050), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1048), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1050), }, - [403] = { - [sym_comment] = STATE(403), - [anon_sym_export] = ACTIONS(1034), - [anon_sym_alias] = ACTIONS(1034), - [anon_sym_let] = ACTIONS(1034), - [anon_sym_let_DASHenv] = ACTIONS(1034), - [anon_sym_mut] = ACTIONS(1034), - [anon_sym_const] = ACTIONS(1034), - [aux_sym_cmd_identifier_token1] = ACTIONS(1034), - [aux_sym_cmd_identifier_token2] = ACTIONS(1034), - [aux_sym_cmd_identifier_token3] = ACTIONS(1034), - [aux_sym_cmd_identifier_token4] = ACTIONS(1034), - [aux_sym_cmd_identifier_token5] = ACTIONS(1034), - [aux_sym_cmd_identifier_token6] = ACTIONS(1034), - [aux_sym_cmd_identifier_token7] = ACTIONS(1034), - [aux_sym_cmd_identifier_token8] = ACTIONS(1034), - [aux_sym_cmd_identifier_token9] = ACTIONS(1034), - [aux_sym_cmd_identifier_token10] = ACTIONS(1034), - [aux_sym_cmd_identifier_token11] = ACTIONS(1034), - [aux_sym_cmd_identifier_token12] = ACTIONS(1034), - [aux_sym_cmd_identifier_token13] = ACTIONS(1034), - [aux_sym_cmd_identifier_token14] = ACTIONS(1034), - [aux_sym_cmd_identifier_token15] = ACTIONS(1034), - [aux_sym_cmd_identifier_token16] = ACTIONS(1034), - [aux_sym_cmd_identifier_token17] = ACTIONS(1034), - [aux_sym_cmd_identifier_token18] = ACTIONS(1034), - [aux_sym_cmd_identifier_token19] = ACTIONS(1034), - [aux_sym_cmd_identifier_token20] = ACTIONS(1034), - [aux_sym_cmd_identifier_token21] = ACTIONS(1034), - [aux_sym_cmd_identifier_token22] = ACTIONS(1034), - [aux_sym_cmd_identifier_token23] = ACTIONS(1034), - [aux_sym_cmd_identifier_token24] = ACTIONS(1034), - [aux_sym_cmd_identifier_token25] = ACTIONS(1034), - [aux_sym_cmd_identifier_token26] = ACTIONS(1034), - [aux_sym_cmd_identifier_token27] = ACTIONS(1034), - [aux_sym_cmd_identifier_token28] = ACTIONS(1034), - [aux_sym_cmd_identifier_token29] = ACTIONS(1034), - [aux_sym_cmd_identifier_token30] = ACTIONS(1034), - [aux_sym_cmd_identifier_token31] = ACTIONS(1034), - [aux_sym_cmd_identifier_token32] = ACTIONS(1034), - [aux_sym_cmd_identifier_token33] = ACTIONS(1034), - [aux_sym_cmd_identifier_token34] = ACTIONS(1034), - [aux_sym_cmd_identifier_token35] = ACTIONS(1034), - [aux_sym_cmd_identifier_token36] = ACTIONS(1034), - [anon_sym_true] = ACTIONS(1036), - [anon_sym_false] = ACTIONS(1036), - [anon_sym_null] = ACTIONS(1036), - [aux_sym_cmd_identifier_token38] = ACTIONS(1034), - [aux_sym_cmd_identifier_token39] = ACTIONS(1036), - [aux_sym_cmd_identifier_token40] = ACTIONS(1036), - [anon_sym_def] = ACTIONS(1034), - [anon_sym_export_DASHenv] = ACTIONS(1034), - [anon_sym_extern] = ACTIONS(1034), - [anon_sym_module] = ACTIONS(1034), - [anon_sym_use] = ACTIONS(1034), - [anon_sym_LPAREN] = ACTIONS(1036), - [anon_sym_COMMA] = ACTIONS(1036), - [anon_sym_DOLLAR] = ACTIONS(1036), - [anon_sym_error] = ACTIONS(1034), - [anon_sym_list] = ACTIONS(1034), - [anon_sym_DASH] = ACTIONS(1034), - [anon_sym_break] = ACTIONS(1034), - [anon_sym_continue] = ACTIONS(1034), - [anon_sym_for] = ACTIONS(1034), - [anon_sym_in] = ACTIONS(1034), - [anon_sym_loop] = ACTIONS(1034), - [anon_sym_make] = ACTIONS(1034), - [anon_sym_while] = ACTIONS(1034), - [anon_sym_do] = ACTIONS(1034), - [anon_sym_if] = ACTIONS(1034), - [anon_sym_else] = ACTIONS(1034), - [anon_sym_match] = ACTIONS(1034), - [anon_sym_RBRACE] = ACTIONS(1036), - [anon_sym_try] = ACTIONS(1034), - [anon_sym_catch] = ACTIONS(1034), - [anon_sym_return] = ACTIONS(1034), - [anon_sym_source] = ACTIONS(1034), - [anon_sym_source_DASHenv] = ACTIONS(1034), - [anon_sym_register] = ACTIONS(1034), - [anon_sym_hide] = ACTIONS(1034), - [anon_sym_hide_DASHenv] = ACTIONS(1034), - [anon_sym_overlay] = ACTIONS(1034), - [anon_sym_new] = ACTIONS(1034), - [anon_sym_as] = ACTIONS(1034), - [anon_sym_QMARK2] = ACTIONS(1036), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1036), - [anon_sym_DOT] = ACTIONS(1034), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1036), - [aux_sym__val_number_decimal_token1] = ACTIONS(1034), - [aux_sym__val_number_decimal_token2] = ACTIONS(1036), - [aux_sym__val_number_decimal_token3] = ACTIONS(1036), - [aux_sym__val_number_decimal_token4] = ACTIONS(1036), - [aux_sym__val_number_token1] = ACTIONS(1036), - [aux_sym__val_number_token2] = ACTIONS(1036), - [aux_sym__val_number_token3] = ACTIONS(1036), - [anon_sym_DQUOTE] = ACTIONS(1036), - [sym__str_single_quotes] = ACTIONS(1036), - [sym__str_back_ticks] = ACTIONS(1036), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1036), - [aux_sym_record_entry_token1] = ACTIONS(1036), - [anon_sym_PLUS] = ACTIONS(1034), - [anon_sym_POUND] = ACTIONS(247), + [340] = { + [sym_comment] = STATE(340), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_alias] = ACTIONS(1074), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_let_DASHenv] = ACTIONS(1074), + [anon_sym_mut] = ACTIONS(1074), + [anon_sym_const] = ACTIONS(1074), + [aux_sym_cmd_identifier_token1] = ACTIONS(1074), + [aux_sym_cmd_identifier_token2] = ACTIONS(1074), + [aux_sym_cmd_identifier_token3] = ACTIONS(1074), + [aux_sym_cmd_identifier_token4] = ACTIONS(1074), + [aux_sym_cmd_identifier_token5] = ACTIONS(1074), + [aux_sym_cmd_identifier_token6] = ACTIONS(1074), + [aux_sym_cmd_identifier_token7] = ACTIONS(1074), + [aux_sym_cmd_identifier_token8] = ACTIONS(1074), + [aux_sym_cmd_identifier_token9] = ACTIONS(1074), + [aux_sym_cmd_identifier_token10] = ACTIONS(1074), + [aux_sym_cmd_identifier_token11] = ACTIONS(1074), + [aux_sym_cmd_identifier_token12] = ACTIONS(1074), + [aux_sym_cmd_identifier_token13] = ACTIONS(1074), + [aux_sym_cmd_identifier_token14] = ACTIONS(1074), + [aux_sym_cmd_identifier_token15] = ACTIONS(1074), + [aux_sym_cmd_identifier_token16] = ACTIONS(1074), + [aux_sym_cmd_identifier_token17] = ACTIONS(1074), + [aux_sym_cmd_identifier_token18] = ACTIONS(1074), + [aux_sym_cmd_identifier_token19] = ACTIONS(1074), + [aux_sym_cmd_identifier_token20] = ACTIONS(1074), + [aux_sym_cmd_identifier_token21] = ACTIONS(1074), + [aux_sym_cmd_identifier_token22] = ACTIONS(1074), + [aux_sym_cmd_identifier_token23] = ACTIONS(1074), + [aux_sym_cmd_identifier_token24] = ACTIONS(1074), + [aux_sym_cmd_identifier_token25] = ACTIONS(1074), + [aux_sym_cmd_identifier_token26] = ACTIONS(1074), + [aux_sym_cmd_identifier_token27] = ACTIONS(1074), + [aux_sym_cmd_identifier_token28] = ACTIONS(1074), + [aux_sym_cmd_identifier_token29] = ACTIONS(1074), + [aux_sym_cmd_identifier_token30] = ACTIONS(1074), + [aux_sym_cmd_identifier_token31] = ACTIONS(1074), + [aux_sym_cmd_identifier_token32] = ACTIONS(1074), + [aux_sym_cmd_identifier_token33] = ACTIONS(1074), + [aux_sym_cmd_identifier_token34] = ACTIONS(1074), + [aux_sym_cmd_identifier_token35] = ACTIONS(1074), + [aux_sym_cmd_identifier_token36] = ACTIONS(1074), + [anon_sym_true] = ACTIONS(1074), + [anon_sym_false] = ACTIONS(1074), + [anon_sym_null] = ACTIONS(1074), + [aux_sym_cmd_identifier_token38] = ACTIONS(1074), + [aux_sym_cmd_identifier_token39] = ACTIONS(1074), + [aux_sym_cmd_identifier_token40] = ACTIONS(1074), + [anon_sym_def] = ACTIONS(1074), + [anon_sym_export_DASHenv] = ACTIONS(1074), + [anon_sym_extern] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_use] = ACTIONS(1074), + [anon_sym_LPAREN] = ACTIONS(1074), + [anon_sym_DOLLAR] = ACTIONS(1074), + [anon_sym_error] = ACTIONS(1074), + [anon_sym_list] = ACTIONS(1074), + [anon_sym_DASH] = ACTIONS(1074), + [anon_sym_break] = ACTIONS(1074), + [anon_sym_continue] = ACTIONS(1074), + [anon_sym_for] = ACTIONS(1074), + [anon_sym_in] = ACTIONS(1074), + [anon_sym_loop] = ACTIONS(1074), + [anon_sym_make] = ACTIONS(1074), + [anon_sym_while] = ACTIONS(1074), + [anon_sym_do] = ACTIONS(1074), + [anon_sym_if] = ACTIONS(1074), + [anon_sym_else] = ACTIONS(1074), + [anon_sym_match] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(1074), + [anon_sym_try] = ACTIONS(1074), + [anon_sym_catch] = ACTIONS(1074), + [anon_sym_return] = ACTIONS(1074), + [anon_sym_source] = ACTIONS(1074), + [anon_sym_source_DASHenv] = ACTIONS(1074), + [anon_sym_register] = ACTIONS(1074), + [anon_sym_hide] = ACTIONS(1074), + [anon_sym_hide_DASHenv] = ACTIONS(1074), + [anon_sym_overlay] = ACTIONS(1074), + [anon_sym_new] = ACTIONS(1074), + [anon_sym_as] = ACTIONS(1074), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1074), + [anon_sym_DOT_DOT2] = ACTIONS(1074), + [anon_sym_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1076), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1076), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1074), + [aux_sym__val_number_decimal_token1] = ACTIONS(1074), + [aux_sym__val_number_decimal_token2] = ACTIONS(1074), + [aux_sym__val_number_decimal_token3] = ACTIONS(1074), + [aux_sym__val_number_decimal_token4] = ACTIONS(1074), + [aux_sym__val_number_token1] = ACTIONS(1074), + [aux_sym__val_number_token2] = ACTIONS(1074), + [aux_sym__val_number_token3] = ACTIONS(1074), + [anon_sym_DQUOTE] = ACTIONS(1074), + [sym__str_single_quotes] = ACTIONS(1074), + [sym__str_back_ticks] = ACTIONS(1074), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1074), + [sym__entry_separator] = ACTIONS(1076), + [anon_sym_PLUS] = ACTIONS(1074), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1076), }, - [404] = { - [sym_cmd_identifier] = STATE(4514), - [sym_ctrl_if] = STATE(4945), - [sym_block] = STATE(4899), - [sym__expression] = STATE(4899), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3819), - [sym_expr_parenthesized] = STATE(1445), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym_val_variable] = STATE(1446), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(2992), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_command] = STATE(4899), - [sym_comment] = STATE(404), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(367), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(2099), - [anon_sym_false] = ACTIONS(2099), - [anon_sym_null] = ACTIONS(2101), - [aux_sym_cmd_identifier_token38] = ACTIONS(2103), - [aux_sym_cmd_identifier_token39] = ACTIONS(2105), - [aux_sym_cmd_identifier_token40] = ACTIONS(2105), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_if] = ACTIONS(411), - [anon_sym_LBRACE] = ACTIONS(2107), - [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(2109), - [aux_sym__val_number_decimal_token2] = ACTIONS(2111), - [aux_sym__val_number_decimal_token3] = ACTIONS(2113), - [aux_sym__val_number_decimal_token4] = ACTIONS(2115), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [341] = { + [sym_comment] = STATE(341), + [anon_sym_export] = ACTIONS(1066), + [anon_sym_alias] = ACTIONS(1066), + [anon_sym_let] = ACTIONS(1066), + [anon_sym_let_DASHenv] = ACTIONS(1066), + [anon_sym_mut] = ACTIONS(1066), + [anon_sym_const] = ACTIONS(1066), + [aux_sym_cmd_identifier_token1] = ACTIONS(1066), + [aux_sym_cmd_identifier_token2] = ACTIONS(1066), + [aux_sym_cmd_identifier_token3] = ACTIONS(1066), + [aux_sym_cmd_identifier_token4] = ACTIONS(1066), + [aux_sym_cmd_identifier_token5] = ACTIONS(1066), + [aux_sym_cmd_identifier_token6] = ACTIONS(1066), + [aux_sym_cmd_identifier_token7] = ACTIONS(1066), + [aux_sym_cmd_identifier_token8] = ACTIONS(1066), + [aux_sym_cmd_identifier_token9] = ACTIONS(1066), + [aux_sym_cmd_identifier_token10] = ACTIONS(1066), + [aux_sym_cmd_identifier_token11] = ACTIONS(1066), + [aux_sym_cmd_identifier_token12] = ACTIONS(1066), + [aux_sym_cmd_identifier_token13] = ACTIONS(1066), + [aux_sym_cmd_identifier_token14] = ACTIONS(1066), + [aux_sym_cmd_identifier_token15] = ACTIONS(1066), + [aux_sym_cmd_identifier_token16] = ACTIONS(1066), + [aux_sym_cmd_identifier_token17] = ACTIONS(1066), + [aux_sym_cmd_identifier_token18] = ACTIONS(1066), + [aux_sym_cmd_identifier_token19] = ACTIONS(1066), + [aux_sym_cmd_identifier_token20] = ACTIONS(1066), + [aux_sym_cmd_identifier_token21] = ACTIONS(1066), + [aux_sym_cmd_identifier_token22] = ACTIONS(1066), + [aux_sym_cmd_identifier_token23] = ACTIONS(1066), + [aux_sym_cmd_identifier_token24] = ACTIONS(1066), + [aux_sym_cmd_identifier_token25] = ACTIONS(1066), + [aux_sym_cmd_identifier_token26] = ACTIONS(1066), + [aux_sym_cmd_identifier_token27] = ACTIONS(1066), + [aux_sym_cmd_identifier_token28] = ACTIONS(1066), + [aux_sym_cmd_identifier_token29] = ACTIONS(1066), + [aux_sym_cmd_identifier_token30] = ACTIONS(1066), + [aux_sym_cmd_identifier_token31] = ACTIONS(1066), + [aux_sym_cmd_identifier_token32] = ACTIONS(1066), + [aux_sym_cmd_identifier_token33] = ACTIONS(1066), + [aux_sym_cmd_identifier_token34] = ACTIONS(1066), + [aux_sym_cmd_identifier_token35] = ACTIONS(1066), + [aux_sym_cmd_identifier_token36] = ACTIONS(1066), + [anon_sym_true] = ACTIONS(1066), + [anon_sym_false] = ACTIONS(1066), + [anon_sym_null] = ACTIONS(1066), + [aux_sym_cmd_identifier_token38] = ACTIONS(1066), + [aux_sym_cmd_identifier_token39] = ACTIONS(1066), + [aux_sym_cmd_identifier_token40] = ACTIONS(1066), + [anon_sym_def] = ACTIONS(1066), + [anon_sym_export_DASHenv] = ACTIONS(1066), + [anon_sym_extern] = ACTIONS(1066), + [anon_sym_module] = ACTIONS(1066), + [anon_sym_use] = ACTIONS(1066), + [anon_sym_LPAREN] = ACTIONS(1066), + [anon_sym_DOLLAR] = ACTIONS(1066), + [anon_sym_error] = ACTIONS(1066), + [anon_sym_list] = ACTIONS(1066), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_break] = ACTIONS(1066), + [anon_sym_continue] = ACTIONS(1066), + [anon_sym_for] = ACTIONS(1066), + [anon_sym_in] = ACTIONS(1066), + [anon_sym_loop] = ACTIONS(1066), + [anon_sym_make] = ACTIONS(1066), + [anon_sym_while] = ACTIONS(1066), + [anon_sym_do] = ACTIONS(1066), + [anon_sym_if] = ACTIONS(1066), + [anon_sym_else] = ACTIONS(1066), + [anon_sym_match] = ACTIONS(1066), + [anon_sym_RBRACE] = ACTIONS(1066), + [anon_sym_try] = ACTIONS(1066), + [anon_sym_catch] = ACTIONS(1066), + [anon_sym_return] = ACTIONS(1066), + [anon_sym_source] = ACTIONS(1066), + [anon_sym_source_DASHenv] = ACTIONS(1066), + [anon_sym_register] = ACTIONS(1066), + [anon_sym_hide] = ACTIONS(1066), + [anon_sym_hide_DASHenv] = ACTIONS(1066), + [anon_sym_overlay] = ACTIONS(1066), + [anon_sym_new] = ACTIONS(1066), + [anon_sym_as] = ACTIONS(1066), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1066), + [anon_sym_DOT_DOT2] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(1066), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1068), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1068), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1066), + [aux_sym__val_number_decimal_token1] = ACTIONS(1066), + [aux_sym__val_number_decimal_token2] = ACTIONS(1066), + [aux_sym__val_number_decimal_token3] = ACTIONS(1066), + [aux_sym__val_number_decimal_token4] = ACTIONS(1066), + [aux_sym__val_number_token1] = ACTIONS(1066), + [aux_sym__val_number_token2] = ACTIONS(1066), + [aux_sym__val_number_token3] = ACTIONS(1066), + [anon_sym_DQUOTE] = ACTIONS(1066), + [sym__str_single_quotes] = ACTIONS(1066), + [sym__str_back_ticks] = ACTIONS(1066), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1066), + [sym__entry_separator] = ACTIONS(1068), + [anon_sym_PLUS] = ACTIONS(1066), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1068), }, - [405] = { - [sym_comment] = STATE(405), + [342] = { + [sym_comment] = STATE(342), [anon_sym_export] = ACTIONS(1070), [anon_sym_alias] = ACTIONS(1070), [anon_sym_let] = ACTIONS(1070), @@ -121942,9 +116754,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(1070), [anon_sym_as] = ACTIONS(1070), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1070), - [anon_sym_DOT_DOT2] = ACTIONS(1983), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1985), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1985), + [anon_sym_DOT_DOT2] = ACTIONS(1070), + [anon_sym_DOT] = ACTIONS(1070), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1072), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1072), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1070), [aux_sym__val_number_decimal_token1] = ACTIONS(1070), [aux_sym__val_number_decimal_token2] = ACTIONS(1070), @@ -121960,760 +116773,1196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__entry_separator] = ACTIONS(1072), [anon_sym_PLUS] = ACTIONS(1070), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1072), }, - [406] = { - [sym_cell_path] = STATE(666), - [sym_path] = STATE(578), - [sym_comment] = STATE(406), - [aux_sym_cell_path_repeat1] = STATE(459), - [anon_sym_export] = ACTIONS(1912), - [anon_sym_alias] = ACTIONS(1912), - [anon_sym_let] = ACTIONS(1912), - [anon_sym_let_DASHenv] = ACTIONS(1912), - [anon_sym_mut] = ACTIONS(1912), - [anon_sym_const] = ACTIONS(1912), - [aux_sym_cmd_identifier_token1] = ACTIONS(1912), - [aux_sym_cmd_identifier_token2] = ACTIONS(1912), - [aux_sym_cmd_identifier_token3] = ACTIONS(1912), - [aux_sym_cmd_identifier_token4] = ACTIONS(1912), - [aux_sym_cmd_identifier_token5] = ACTIONS(1912), - [aux_sym_cmd_identifier_token6] = ACTIONS(1912), - [aux_sym_cmd_identifier_token7] = ACTIONS(1912), - [aux_sym_cmd_identifier_token8] = ACTIONS(1912), - [aux_sym_cmd_identifier_token9] = ACTIONS(1912), - [aux_sym_cmd_identifier_token10] = ACTIONS(1912), - [aux_sym_cmd_identifier_token11] = ACTIONS(1912), - [aux_sym_cmd_identifier_token12] = ACTIONS(1912), - [aux_sym_cmd_identifier_token13] = ACTIONS(1912), - [aux_sym_cmd_identifier_token14] = ACTIONS(1912), - [aux_sym_cmd_identifier_token15] = ACTIONS(1912), - [aux_sym_cmd_identifier_token16] = ACTIONS(1912), - [aux_sym_cmd_identifier_token17] = ACTIONS(1912), - [aux_sym_cmd_identifier_token18] = ACTIONS(1912), - [aux_sym_cmd_identifier_token19] = ACTIONS(1912), - [aux_sym_cmd_identifier_token20] = ACTIONS(1912), - [aux_sym_cmd_identifier_token21] = ACTIONS(1912), - [aux_sym_cmd_identifier_token22] = ACTIONS(1912), - [aux_sym_cmd_identifier_token23] = ACTIONS(1912), - [aux_sym_cmd_identifier_token24] = ACTIONS(1912), - [aux_sym_cmd_identifier_token25] = ACTIONS(1912), - [aux_sym_cmd_identifier_token26] = ACTIONS(1912), - [aux_sym_cmd_identifier_token27] = ACTIONS(1912), - [aux_sym_cmd_identifier_token28] = ACTIONS(1912), - [aux_sym_cmd_identifier_token29] = ACTIONS(1912), - [aux_sym_cmd_identifier_token30] = ACTIONS(1912), - [aux_sym_cmd_identifier_token31] = ACTIONS(1912), - [aux_sym_cmd_identifier_token32] = ACTIONS(1912), - [aux_sym_cmd_identifier_token33] = ACTIONS(1912), - [aux_sym_cmd_identifier_token34] = ACTIONS(1912), - [aux_sym_cmd_identifier_token35] = ACTIONS(1912), - [aux_sym_cmd_identifier_token36] = ACTIONS(1912), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1914), - [aux_sym_cmd_identifier_token38] = ACTIONS(1912), - [aux_sym_cmd_identifier_token39] = ACTIONS(1914), - [aux_sym_cmd_identifier_token40] = ACTIONS(1914), - [anon_sym_def] = ACTIONS(1912), - [anon_sym_export_DASHenv] = ACTIONS(1912), - [anon_sym_extern] = ACTIONS(1912), - [anon_sym_module] = ACTIONS(1912), - [anon_sym_use] = ACTIONS(1912), - [anon_sym_LPAREN] = ACTIONS(1914), - [anon_sym_DOLLAR] = ACTIONS(1914), - [anon_sym_error] = ACTIONS(1912), - [anon_sym_list] = ACTIONS(1912), - [anon_sym_DASH] = ACTIONS(1912), - [anon_sym_break] = ACTIONS(1912), - [anon_sym_continue] = ACTIONS(1912), - [anon_sym_for] = ACTIONS(1912), - [anon_sym_in] = ACTIONS(1912), - [anon_sym_loop] = ACTIONS(1912), - [anon_sym_make] = ACTIONS(1912), - [anon_sym_while] = ACTIONS(1912), - [anon_sym_do] = ACTIONS(1912), - [anon_sym_if] = ACTIONS(1912), - [anon_sym_else] = ACTIONS(1912), - [anon_sym_match] = ACTIONS(1912), - [anon_sym_RBRACE] = ACTIONS(1914), - [anon_sym_try] = ACTIONS(1912), - [anon_sym_catch] = ACTIONS(1912), - [anon_sym_return] = ACTIONS(1912), - [anon_sym_source] = ACTIONS(1912), - [anon_sym_source_DASHenv] = ACTIONS(1912), - [anon_sym_register] = ACTIONS(1912), - [anon_sym_hide] = ACTIONS(1912), - [anon_sym_hide_DASHenv] = ACTIONS(1912), - [anon_sym_overlay] = ACTIONS(1912), - [anon_sym_new] = ACTIONS(1912), - [anon_sym_as] = ACTIONS(1912), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1914), - [anon_sym_DOT] = ACTIONS(1989), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1914), - [aux_sym__val_number_decimal_token1] = ACTIONS(1912), - [aux_sym__val_number_decimal_token2] = ACTIONS(1914), - [aux_sym__val_number_decimal_token3] = ACTIONS(1914), - [aux_sym__val_number_decimal_token4] = ACTIONS(1914), - [aux_sym__val_number_token1] = ACTIONS(1914), - [aux_sym__val_number_token2] = ACTIONS(1914), - [aux_sym__val_number_token3] = ACTIONS(1914), - [anon_sym_DQUOTE] = ACTIONS(1914), - [sym__str_single_quotes] = ACTIONS(1914), - [sym__str_back_ticks] = ACTIONS(1914), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1914), - [anon_sym_PLUS] = ACTIONS(1912), - [anon_sym_POUND] = ACTIONS(247), + [343] = { + [sym_comment] = STATE(343), + [anon_sym_export] = ACTIONS(1715), + [anon_sym_alias] = ACTIONS(1715), + [anon_sym_let] = ACTIONS(1715), + [anon_sym_let_DASHenv] = ACTIONS(1715), + [anon_sym_mut] = ACTIONS(1715), + [anon_sym_const] = ACTIONS(1715), + [aux_sym_cmd_identifier_token1] = ACTIONS(1715), + [aux_sym_cmd_identifier_token2] = ACTIONS(1715), + [aux_sym_cmd_identifier_token3] = ACTIONS(1715), + [aux_sym_cmd_identifier_token4] = ACTIONS(1715), + [aux_sym_cmd_identifier_token5] = ACTIONS(1715), + [aux_sym_cmd_identifier_token6] = ACTIONS(1715), + [aux_sym_cmd_identifier_token7] = ACTIONS(1715), + [aux_sym_cmd_identifier_token8] = ACTIONS(1715), + [aux_sym_cmd_identifier_token9] = ACTIONS(1715), + [aux_sym_cmd_identifier_token10] = ACTIONS(1715), + [aux_sym_cmd_identifier_token11] = ACTIONS(1715), + [aux_sym_cmd_identifier_token12] = ACTIONS(1715), + [aux_sym_cmd_identifier_token13] = ACTIONS(1715), + [aux_sym_cmd_identifier_token14] = ACTIONS(1715), + [aux_sym_cmd_identifier_token15] = ACTIONS(1715), + [aux_sym_cmd_identifier_token16] = ACTIONS(1715), + [aux_sym_cmd_identifier_token17] = ACTIONS(1715), + [aux_sym_cmd_identifier_token18] = ACTIONS(1715), + [aux_sym_cmd_identifier_token19] = ACTIONS(1715), + [aux_sym_cmd_identifier_token20] = ACTIONS(1715), + [aux_sym_cmd_identifier_token21] = ACTIONS(1715), + [aux_sym_cmd_identifier_token22] = ACTIONS(1715), + [aux_sym_cmd_identifier_token23] = ACTIONS(1715), + [aux_sym_cmd_identifier_token24] = ACTIONS(1715), + [aux_sym_cmd_identifier_token25] = ACTIONS(1715), + [aux_sym_cmd_identifier_token26] = ACTIONS(1715), + [aux_sym_cmd_identifier_token27] = ACTIONS(1715), + [aux_sym_cmd_identifier_token28] = ACTIONS(1715), + [aux_sym_cmd_identifier_token29] = ACTIONS(1715), + [aux_sym_cmd_identifier_token30] = ACTIONS(1715), + [aux_sym_cmd_identifier_token31] = ACTIONS(1715), + [aux_sym_cmd_identifier_token32] = ACTIONS(1715), + [aux_sym_cmd_identifier_token33] = ACTIONS(1715), + [aux_sym_cmd_identifier_token34] = ACTIONS(1715), + [aux_sym_cmd_identifier_token35] = ACTIONS(1715), + [aux_sym_cmd_identifier_token36] = ACTIONS(1715), + [anon_sym_true] = ACTIONS(1717), + [anon_sym_false] = ACTIONS(1717), + [anon_sym_null] = ACTIONS(1717), + [aux_sym_cmd_identifier_token38] = ACTIONS(1715), + [aux_sym_cmd_identifier_token39] = ACTIONS(1717), + [aux_sym_cmd_identifier_token40] = ACTIONS(1717), + [anon_sym_def] = ACTIONS(1715), + [anon_sym_export_DASHenv] = ACTIONS(1715), + [anon_sym_extern] = ACTIONS(1715), + [anon_sym_module] = ACTIONS(1715), + [anon_sym_use] = ACTIONS(1715), + [anon_sym_LPAREN] = ACTIONS(1715), + [anon_sym_DOLLAR] = ACTIONS(1717), + [anon_sym_error] = ACTIONS(1715), + [anon_sym_list] = ACTIONS(1715), + [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_break] = ACTIONS(1715), + [anon_sym_continue] = ACTIONS(1715), + [anon_sym_for] = ACTIONS(1715), + [anon_sym_in] = ACTIONS(1715), + [anon_sym_loop] = ACTIONS(1715), + [anon_sym_make] = ACTIONS(1715), + [anon_sym_while] = ACTIONS(1715), + [anon_sym_do] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1715), + [anon_sym_else] = ACTIONS(1715), + [anon_sym_match] = ACTIONS(1715), + [anon_sym_RBRACE] = ACTIONS(1717), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_catch] = ACTIONS(1715), + [anon_sym_return] = ACTIONS(1715), + [anon_sym_source] = ACTIONS(1715), + [anon_sym_source_DASHenv] = ACTIONS(1715), + [anon_sym_register] = ACTIONS(1715), + [anon_sym_hide] = ACTIONS(1715), + [anon_sym_hide_DASHenv] = ACTIONS(1715), + [anon_sym_overlay] = ACTIONS(1715), + [anon_sym_new] = ACTIONS(1715), + [anon_sym_as] = ACTIONS(1715), + [anon_sym_LPAREN2] = ACTIONS(1717), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1717), + [anon_sym_DOT_DOT2] = ACTIONS(1715), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1717), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1717), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1717), + [aux_sym__val_number_decimal_token1] = ACTIONS(1715), + [aux_sym__val_number_decimal_token2] = ACTIONS(1717), + [aux_sym__val_number_decimal_token3] = ACTIONS(1717), + [aux_sym__val_number_decimal_token4] = ACTIONS(1717), + [aux_sym__val_number_token1] = ACTIONS(1717), + [aux_sym__val_number_token2] = ACTIONS(1717), + [aux_sym__val_number_token3] = ACTIONS(1717), + [anon_sym_DQUOTE] = ACTIONS(1717), + [sym__str_single_quotes] = ACTIONS(1717), + [sym__str_back_ticks] = ACTIONS(1717), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1717), + [anon_sym_PLUS] = ACTIONS(1715), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1715), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1717), }, - [407] = { - [sym_cell_path] = STATE(669), - [sym_path] = STATE(578), - [sym_comment] = STATE(407), - [aux_sym_cell_path_repeat1] = STATE(459), - [anon_sym_export] = ACTIONS(1822), - [anon_sym_alias] = ACTIONS(1822), - [anon_sym_let] = ACTIONS(1822), - [anon_sym_let_DASHenv] = ACTIONS(1822), - [anon_sym_mut] = ACTIONS(1822), - [anon_sym_const] = ACTIONS(1822), - [aux_sym_cmd_identifier_token1] = ACTIONS(1822), - [aux_sym_cmd_identifier_token2] = ACTIONS(1822), - [aux_sym_cmd_identifier_token3] = ACTIONS(1822), - [aux_sym_cmd_identifier_token4] = ACTIONS(1822), - [aux_sym_cmd_identifier_token5] = ACTIONS(1822), - [aux_sym_cmd_identifier_token6] = ACTIONS(1822), - [aux_sym_cmd_identifier_token7] = ACTIONS(1822), - [aux_sym_cmd_identifier_token8] = ACTIONS(1822), - [aux_sym_cmd_identifier_token9] = ACTIONS(1822), - [aux_sym_cmd_identifier_token10] = ACTIONS(1822), - [aux_sym_cmd_identifier_token11] = ACTIONS(1822), - [aux_sym_cmd_identifier_token12] = ACTIONS(1822), - [aux_sym_cmd_identifier_token13] = ACTIONS(1822), - [aux_sym_cmd_identifier_token14] = ACTIONS(1822), - [aux_sym_cmd_identifier_token15] = ACTIONS(1822), - [aux_sym_cmd_identifier_token16] = ACTIONS(1822), - [aux_sym_cmd_identifier_token17] = ACTIONS(1822), - [aux_sym_cmd_identifier_token18] = ACTIONS(1822), - [aux_sym_cmd_identifier_token19] = ACTIONS(1822), - [aux_sym_cmd_identifier_token20] = ACTIONS(1822), - [aux_sym_cmd_identifier_token21] = ACTIONS(1822), - [aux_sym_cmd_identifier_token22] = ACTIONS(1822), - [aux_sym_cmd_identifier_token23] = ACTIONS(1822), - [aux_sym_cmd_identifier_token24] = ACTIONS(1822), - [aux_sym_cmd_identifier_token25] = ACTIONS(1822), - [aux_sym_cmd_identifier_token26] = ACTIONS(1822), - [aux_sym_cmd_identifier_token27] = ACTIONS(1822), - [aux_sym_cmd_identifier_token28] = ACTIONS(1822), - [aux_sym_cmd_identifier_token29] = ACTIONS(1822), - [aux_sym_cmd_identifier_token30] = ACTIONS(1822), - [aux_sym_cmd_identifier_token31] = ACTIONS(1822), - [aux_sym_cmd_identifier_token32] = ACTIONS(1822), - [aux_sym_cmd_identifier_token33] = ACTIONS(1822), - [aux_sym_cmd_identifier_token34] = ACTIONS(1822), - [aux_sym_cmd_identifier_token35] = ACTIONS(1822), - [aux_sym_cmd_identifier_token36] = ACTIONS(1822), - [anon_sym_true] = ACTIONS(1826), - [anon_sym_false] = ACTIONS(1826), - [anon_sym_null] = ACTIONS(1826), - [aux_sym_cmd_identifier_token38] = ACTIONS(1822), - [aux_sym_cmd_identifier_token39] = ACTIONS(1826), - [aux_sym_cmd_identifier_token40] = ACTIONS(1826), - [anon_sym_def] = ACTIONS(1822), - [anon_sym_export_DASHenv] = ACTIONS(1822), - [anon_sym_extern] = ACTIONS(1822), - [anon_sym_module] = ACTIONS(1822), - [anon_sym_use] = ACTIONS(1822), + [344] = { + [sym_comment] = STATE(344), + [anon_sym_export] = ACTIONS(1703), + [anon_sym_alias] = ACTIONS(1703), + [anon_sym_let] = ACTIONS(1703), + [anon_sym_let_DASHenv] = ACTIONS(1703), + [anon_sym_mut] = ACTIONS(1703), + [anon_sym_const] = ACTIONS(1703), + [aux_sym_cmd_identifier_token1] = ACTIONS(1703), + [aux_sym_cmd_identifier_token2] = ACTIONS(1703), + [aux_sym_cmd_identifier_token3] = ACTIONS(1703), + [aux_sym_cmd_identifier_token4] = ACTIONS(1703), + [aux_sym_cmd_identifier_token5] = ACTIONS(1703), + [aux_sym_cmd_identifier_token6] = ACTIONS(1703), + [aux_sym_cmd_identifier_token7] = ACTIONS(1703), + [aux_sym_cmd_identifier_token8] = ACTIONS(1703), + [aux_sym_cmd_identifier_token9] = ACTIONS(1703), + [aux_sym_cmd_identifier_token10] = ACTIONS(1703), + [aux_sym_cmd_identifier_token11] = ACTIONS(1703), + [aux_sym_cmd_identifier_token12] = ACTIONS(1703), + [aux_sym_cmd_identifier_token13] = ACTIONS(1703), + [aux_sym_cmd_identifier_token14] = ACTIONS(1703), + [aux_sym_cmd_identifier_token15] = ACTIONS(1703), + [aux_sym_cmd_identifier_token16] = ACTIONS(1703), + [aux_sym_cmd_identifier_token17] = ACTIONS(1703), + [aux_sym_cmd_identifier_token18] = ACTIONS(1703), + [aux_sym_cmd_identifier_token19] = ACTIONS(1703), + [aux_sym_cmd_identifier_token20] = ACTIONS(1703), + [aux_sym_cmd_identifier_token21] = ACTIONS(1703), + [aux_sym_cmd_identifier_token22] = ACTIONS(1703), + [aux_sym_cmd_identifier_token23] = ACTIONS(1703), + [aux_sym_cmd_identifier_token24] = ACTIONS(1703), + [aux_sym_cmd_identifier_token25] = ACTIONS(1703), + [aux_sym_cmd_identifier_token26] = ACTIONS(1703), + [aux_sym_cmd_identifier_token27] = ACTIONS(1703), + [aux_sym_cmd_identifier_token28] = ACTIONS(1703), + [aux_sym_cmd_identifier_token29] = ACTIONS(1703), + [aux_sym_cmd_identifier_token30] = ACTIONS(1703), + [aux_sym_cmd_identifier_token31] = ACTIONS(1703), + [aux_sym_cmd_identifier_token32] = ACTIONS(1703), + [aux_sym_cmd_identifier_token33] = ACTIONS(1703), + [aux_sym_cmd_identifier_token34] = ACTIONS(1703), + [aux_sym_cmd_identifier_token35] = ACTIONS(1703), + [aux_sym_cmd_identifier_token36] = ACTIONS(1703), + [anon_sym_true] = ACTIONS(1705), + [anon_sym_false] = ACTIONS(1705), + [anon_sym_null] = ACTIONS(1705), + [aux_sym_cmd_identifier_token38] = ACTIONS(1703), + [aux_sym_cmd_identifier_token39] = ACTIONS(1705), + [aux_sym_cmd_identifier_token40] = ACTIONS(1705), + [anon_sym_def] = ACTIONS(1703), + [anon_sym_export_DASHenv] = ACTIONS(1703), + [anon_sym_extern] = ACTIONS(1703), + [anon_sym_module] = ACTIONS(1703), + [anon_sym_use] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1705), + [anon_sym_error] = ACTIONS(1703), + [anon_sym_list] = ACTIONS(1703), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_break] = ACTIONS(1703), + [anon_sym_continue] = ACTIONS(1703), + [anon_sym_for] = ACTIONS(1703), + [anon_sym_in] = ACTIONS(1703), + [anon_sym_loop] = ACTIONS(1703), + [anon_sym_make] = ACTIONS(1703), + [anon_sym_while] = ACTIONS(1703), + [anon_sym_do] = ACTIONS(1703), + [anon_sym_if] = ACTIONS(1703), + [anon_sym_else] = ACTIONS(1703), + [anon_sym_match] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1703), + [anon_sym_catch] = ACTIONS(1703), + [anon_sym_return] = ACTIONS(1703), + [anon_sym_source] = ACTIONS(1703), + [anon_sym_source_DASHenv] = ACTIONS(1703), + [anon_sym_register] = ACTIONS(1703), + [anon_sym_hide] = ACTIONS(1703), + [anon_sym_hide_DASHenv] = ACTIONS(1703), + [anon_sym_overlay] = ACTIONS(1703), + [anon_sym_new] = ACTIONS(1703), + [anon_sym_as] = ACTIONS(1703), + [anon_sym_LPAREN2] = ACTIONS(1705), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1705), + [anon_sym_DOT_DOT2] = ACTIONS(1703), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1705), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1705), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1705), + [aux_sym__val_number_decimal_token1] = ACTIONS(1703), + [aux_sym__val_number_decimal_token2] = ACTIONS(1705), + [aux_sym__val_number_decimal_token3] = ACTIONS(1705), + [aux_sym__val_number_decimal_token4] = ACTIONS(1705), + [aux_sym__val_number_token1] = ACTIONS(1705), + [aux_sym__val_number_token2] = ACTIONS(1705), + [aux_sym__val_number_token3] = ACTIONS(1705), + [anon_sym_DQUOTE] = ACTIONS(1705), + [sym__str_single_quotes] = ACTIONS(1705), + [sym__str_back_ticks] = ACTIONS(1705), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1705), + [anon_sym_PLUS] = ACTIONS(1703), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1705), + }, + [345] = { + [sym_comment] = STATE(345), + [anon_sym_export] = ACTIONS(1769), + [anon_sym_alias] = ACTIONS(1769), + [anon_sym_let] = ACTIONS(1769), + [anon_sym_let_DASHenv] = ACTIONS(1769), + [anon_sym_mut] = ACTIONS(1769), + [anon_sym_const] = ACTIONS(1769), + [aux_sym_cmd_identifier_token1] = ACTIONS(1769), + [aux_sym_cmd_identifier_token2] = ACTIONS(1769), + [aux_sym_cmd_identifier_token3] = ACTIONS(1769), + [aux_sym_cmd_identifier_token4] = ACTIONS(1769), + [aux_sym_cmd_identifier_token5] = ACTIONS(1769), + [aux_sym_cmd_identifier_token6] = ACTIONS(1769), + [aux_sym_cmd_identifier_token7] = ACTIONS(1769), + [aux_sym_cmd_identifier_token8] = ACTIONS(1769), + [aux_sym_cmd_identifier_token9] = ACTIONS(1769), + [aux_sym_cmd_identifier_token10] = ACTIONS(1769), + [aux_sym_cmd_identifier_token11] = ACTIONS(1769), + [aux_sym_cmd_identifier_token12] = ACTIONS(1769), + [aux_sym_cmd_identifier_token13] = ACTIONS(1769), + [aux_sym_cmd_identifier_token14] = ACTIONS(1769), + [aux_sym_cmd_identifier_token15] = ACTIONS(1769), + [aux_sym_cmd_identifier_token16] = ACTIONS(1769), + [aux_sym_cmd_identifier_token17] = ACTIONS(1769), + [aux_sym_cmd_identifier_token18] = ACTIONS(1769), + [aux_sym_cmd_identifier_token19] = ACTIONS(1769), + [aux_sym_cmd_identifier_token20] = ACTIONS(1769), + [aux_sym_cmd_identifier_token21] = ACTIONS(1769), + [aux_sym_cmd_identifier_token22] = ACTIONS(1769), + [aux_sym_cmd_identifier_token23] = ACTIONS(1769), + [aux_sym_cmd_identifier_token24] = ACTIONS(1769), + [aux_sym_cmd_identifier_token25] = ACTIONS(1769), + [aux_sym_cmd_identifier_token26] = ACTIONS(1769), + [aux_sym_cmd_identifier_token27] = ACTIONS(1769), + [aux_sym_cmd_identifier_token28] = ACTIONS(1769), + [aux_sym_cmd_identifier_token29] = ACTIONS(1769), + [aux_sym_cmd_identifier_token30] = ACTIONS(1769), + [aux_sym_cmd_identifier_token31] = ACTIONS(1769), + [aux_sym_cmd_identifier_token32] = ACTIONS(1769), + [aux_sym_cmd_identifier_token33] = ACTIONS(1769), + [aux_sym_cmd_identifier_token34] = ACTIONS(1769), + [aux_sym_cmd_identifier_token35] = ACTIONS(1769), + [aux_sym_cmd_identifier_token36] = ACTIONS(1769), + [anon_sym_true] = ACTIONS(1771), + [anon_sym_false] = ACTIONS(1771), + [anon_sym_null] = ACTIONS(1771), + [aux_sym_cmd_identifier_token38] = ACTIONS(1769), + [aux_sym_cmd_identifier_token39] = ACTIONS(1771), + [aux_sym_cmd_identifier_token40] = ACTIONS(1771), + [anon_sym_def] = ACTIONS(1769), + [anon_sym_export_DASHenv] = ACTIONS(1769), + [anon_sym_extern] = ACTIONS(1769), + [anon_sym_module] = ACTIONS(1769), + [anon_sym_use] = ACTIONS(1769), + [anon_sym_LPAREN] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_error] = ACTIONS(1769), + [anon_sym_list] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_break] = ACTIONS(1769), + [anon_sym_continue] = ACTIONS(1769), + [anon_sym_for] = ACTIONS(1769), + [anon_sym_in] = ACTIONS(1769), + [anon_sym_loop] = ACTIONS(1769), + [anon_sym_make] = ACTIONS(1769), + [anon_sym_while] = ACTIONS(1769), + [anon_sym_do] = ACTIONS(1769), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_else] = ACTIONS(1769), + [anon_sym_match] = ACTIONS(1769), + [anon_sym_RBRACE] = ACTIONS(1771), + [anon_sym_try] = ACTIONS(1769), + [anon_sym_catch] = ACTIONS(1769), + [anon_sym_return] = ACTIONS(1769), + [anon_sym_source] = ACTIONS(1769), + [anon_sym_source_DASHenv] = ACTIONS(1769), + [anon_sym_register] = ACTIONS(1769), + [anon_sym_hide] = ACTIONS(1769), + [anon_sym_hide_DASHenv] = ACTIONS(1769), + [anon_sym_overlay] = ACTIONS(1769), + [anon_sym_new] = ACTIONS(1769), + [anon_sym_as] = ACTIONS(1769), + [anon_sym_LPAREN2] = ACTIONS(1771), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1771), + [anon_sym_DOT_DOT2] = ACTIONS(1769), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1771), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1771), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1771), + [aux_sym__val_number_decimal_token1] = ACTIONS(1769), + [aux_sym__val_number_decimal_token2] = ACTIONS(1771), + [aux_sym__val_number_decimal_token3] = ACTIONS(1771), + [aux_sym__val_number_decimal_token4] = ACTIONS(1771), + [aux_sym__val_number_token1] = ACTIONS(1771), + [aux_sym__val_number_token2] = ACTIONS(1771), + [aux_sym__val_number_token3] = ACTIONS(1771), + [anon_sym_DQUOTE] = ACTIONS(1771), + [sym__str_single_quotes] = ACTIONS(1771), + [sym__str_back_ticks] = ACTIONS(1771), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1769), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1769), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1771), + }, + [346] = { + [sym_comment] = STATE(346), + [anon_sym_export] = ACTIONS(1826), + [anon_sym_alias] = ACTIONS(1826), + [anon_sym_let] = ACTIONS(1826), + [anon_sym_let_DASHenv] = ACTIONS(1826), + [anon_sym_mut] = ACTIONS(1826), + [anon_sym_const] = ACTIONS(1826), + [aux_sym_cmd_identifier_token1] = ACTIONS(1826), + [aux_sym_cmd_identifier_token2] = ACTIONS(1826), + [aux_sym_cmd_identifier_token3] = ACTIONS(1826), + [aux_sym_cmd_identifier_token4] = ACTIONS(1826), + [aux_sym_cmd_identifier_token5] = ACTIONS(1826), + [aux_sym_cmd_identifier_token6] = ACTIONS(1826), + [aux_sym_cmd_identifier_token7] = ACTIONS(1826), + [aux_sym_cmd_identifier_token8] = ACTIONS(1826), + [aux_sym_cmd_identifier_token9] = ACTIONS(1826), + [aux_sym_cmd_identifier_token10] = ACTIONS(1826), + [aux_sym_cmd_identifier_token11] = ACTIONS(1826), + [aux_sym_cmd_identifier_token12] = ACTIONS(1826), + [aux_sym_cmd_identifier_token13] = ACTIONS(1826), + [aux_sym_cmd_identifier_token14] = ACTIONS(1826), + [aux_sym_cmd_identifier_token15] = ACTIONS(1826), + [aux_sym_cmd_identifier_token16] = ACTIONS(1826), + [aux_sym_cmd_identifier_token17] = ACTIONS(1826), + [aux_sym_cmd_identifier_token18] = ACTIONS(1826), + [aux_sym_cmd_identifier_token19] = ACTIONS(1826), + [aux_sym_cmd_identifier_token20] = ACTIONS(1826), + [aux_sym_cmd_identifier_token21] = ACTIONS(1826), + [aux_sym_cmd_identifier_token22] = ACTIONS(1826), + [aux_sym_cmd_identifier_token23] = ACTIONS(1826), + [aux_sym_cmd_identifier_token24] = ACTIONS(1826), + [aux_sym_cmd_identifier_token25] = ACTIONS(1826), + [aux_sym_cmd_identifier_token26] = ACTIONS(1826), + [aux_sym_cmd_identifier_token27] = ACTIONS(1826), + [aux_sym_cmd_identifier_token28] = ACTIONS(1826), + [aux_sym_cmd_identifier_token29] = ACTIONS(1826), + [aux_sym_cmd_identifier_token30] = ACTIONS(1826), + [aux_sym_cmd_identifier_token31] = ACTIONS(1826), + [aux_sym_cmd_identifier_token32] = ACTIONS(1826), + [aux_sym_cmd_identifier_token33] = ACTIONS(1826), + [aux_sym_cmd_identifier_token34] = ACTIONS(1826), + [aux_sym_cmd_identifier_token35] = ACTIONS(1826), + [aux_sym_cmd_identifier_token36] = ACTIONS(1826), + [anon_sym_true] = ACTIONS(1828), + [anon_sym_false] = ACTIONS(1828), + [anon_sym_null] = ACTIONS(1828), + [aux_sym_cmd_identifier_token38] = ACTIONS(1826), + [aux_sym_cmd_identifier_token39] = ACTIONS(1828), + [aux_sym_cmd_identifier_token40] = ACTIONS(1828), + [anon_sym_def] = ACTIONS(1826), + [anon_sym_export_DASHenv] = ACTIONS(1826), + [anon_sym_extern] = ACTIONS(1826), + [anon_sym_module] = ACTIONS(1826), + [anon_sym_use] = ACTIONS(1826), [anon_sym_LPAREN] = ACTIONS(1826), - [anon_sym_DOLLAR] = ACTIONS(1826), - [anon_sym_error] = ACTIONS(1822), - [anon_sym_list] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_break] = ACTIONS(1822), - [anon_sym_continue] = ACTIONS(1822), - [anon_sym_for] = ACTIONS(1822), - [anon_sym_in] = ACTIONS(1822), - [anon_sym_loop] = ACTIONS(1822), - [anon_sym_make] = ACTIONS(1822), - [anon_sym_while] = ACTIONS(1822), - [anon_sym_do] = ACTIONS(1822), - [anon_sym_if] = ACTIONS(1822), - [anon_sym_else] = ACTIONS(1822), - [anon_sym_match] = ACTIONS(1822), - [anon_sym_RBRACE] = ACTIONS(1826), - [anon_sym_try] = ACTIONS(1822), - [anon_sym_catch] = ACTIONS(1822), - [anon_sym_return] = ACTIONS(1822), - [anon_sym_source] = ACTIONS(1822), - [anon_sym_source_DASHenv] = ACTIONS(1822), - [anon_sym_register] = ACTIONS(1822), - [anon_sym_hide] = ACTIONS(1822), - [anon_sym_hide_DASHenv] = ACTIONS(1822), - [anon_sym_overlay] = ACTIONS(1822), - [anon_sym_new] = ACTIONS(1822), - [anon_sym_as] = ACTIONS(1822), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1826), - [anon_sym_DOT] = ACTIONS(1989), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1826), - [aux_sym__val_number_decimal_token1] = ACTIONS(1822), - [aux_sym__val_number_decimal_token2] = ACTIONS(1826), - [aux_sym__val_number_decimal_token3] = ACTIONS(1826), - [aux_sym__val_number_decimal_token4] = ACTIONS(1826), - [aux_sym__val_number_token1] = ACTIONS(1826), - [aux_sym__val_number_token2] = ACTIONS(1826), - [aux_sym__val_number_token3] = ACTIONS(1826), - [anon_sym_DQUOTE] = ACTIONS(1826), - [sym__str_single_quotes] = ACTIONS(1826), - [sym__str_back_ticks] = ACTIONS(1826), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1826), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_DOLLAR] = ACTIONS(1828), + [anon_sym_error] = ACTIONS(1826), + [anon_sym_list] = ACTIONS(1826), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_break] = ACTIONS(1826), + [anon_sym_continue] = ACTIONS(1826), + [anon_sym_for] = ACTIONS(1826), + [anon_sym_in] = ACTIONS(1826), + [anon_sym_loop] = ACTIONS(1826), + [anon_sym_make] = ACTIONS(1826), + [anon_sym_while] = ACTIONS(1826), + [anon_sym_do] = ACTIONS(1826), + [anon_sym_if] = ACTIONS(1826), + [anon_sym_else] = ACTIONS(1826), + [anon_sym_match] = ACTIONS(1826), + [anon_sym_RBRACE] = ACTIONS(1828), + [anon_sym_try] = ACTIONS(1826), + [anon_sym_catch] = ACTIONS(1826), + [anon_sym_return] = ACTIONS(1826), + [anon_sym_source] = ACTIONS(1826), + [anon_sym_source_DASHenv] = ACTIONS(1826), + [anon_sym_register] = ACTIONS(1826), + [anon_sym_hide] = ACTIONS(1826), + [anon_sym_hide_DASHenv] = ACTIONS(1826), + [anon_sym_overlay] = ACTIONS(1826), + [anon_sym_new] = ACTIONS(1826), + [anon_sym_as] = ACTIONS(1826), + [anon_sym_LPAREN2] = ACTIONS(1828), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1828), + [anon_sym_DOT_DOT2] = ACTIONS(1826), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1828), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1828), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1828), + [aux_sym__val_number_decimal_token1] = ACTIONS(1826), + [aux_sym__val_number_decimal_token2] = ACTIONS(1828), + [aux_sym__val_number_decimal_token3] = ACTIONS(1828), + [aux_sym__val_number_decimal_token4] = ACTIONS(1828), + [aux_sym__val_number_token1] = ACTIONS(1828), + [aux_sym__val_number_token2] = ACTIONS(1828), + [aux_sym__val_number_token3] = ACTIONS(1828), + [anon_sym_DQUOTE] = ACTIONS(1828), + [sym__str_single_quotes] = ACTIONS(1828), + [sym__str_back_ticks] = ACTIONS(1828), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1828), + [anon_sym_PLUS] = ACTIONS(1826), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1826), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1828), }, - [408] = { - [sym_comment] = STATE(408), - [anon_sym_export] = ACTIONS(1022), - [anon_sym_alias] = ACTIONS(1022), - [anon_sym_let] = ACTIONS(1022), - [anon_sym_let_DASHenv] = ACTIONS(1022), - [anon_sym_mut] = ACTIONS(1022), - [anon_sym_const] = ACTIONS(1022), - [aux_sym_cmd_identifier_token1] = ACTIONS(1022), - [aux_sym_cmd_identifier_token2] = ACTIONS(1022), - [aux_sym_cmd_identifier_token3] = ACTIONS(1022), - [aux_sym_cmd_identifier_token4] = ACTIONS(1022), - [aux_sym_cmd_identifier_token5] = ACTIONS(1022), - [aux_sym_cmd_identifier_token6] = ACTIONS(1022), - [aux_sym_cmd_identifier_token7] = ACTIONS(1022), - [aux_sym_cmd_identifier_token8] = ACTIONS(1022), - [aux_sym_cmd_identifier_token9] = ACTIONS(1022), - [aux_sym_cmd_identifier_token10] = ACTIONS(1022), - [aux_sym_cmd_identifier_token11] = ACTIONS(1022), - [aux_sym_cmd_identifier_token12] = ACTIONS(1022), - [aux_sym_cmd_identifier_token13] = ACTIONS(1022), - [aux_sym_cmd_identifier_token14] = ACTIONS(1022), - [aux_sym_cmd_identifier_token15] = ACTIONS(1022), - [aux_sym_cmd_identifier_token16] = ACTIONS(1022), - [aux_sym_cmd_identifier_token17] = ACTIONS(1022), - [aux_sym_cmd_identifier_token18] = ACTIONS(1022), - [aux_sym_cmd_identifier_token19] = ACTIONS(1022), - [aux_sym_cmd_identifier_token20] = ACTIONS(1022), - [aux_sym_cmd_identifier_token21] = ACTIONS(1022), - [aux_sym_cmd_identifier_token22] = ACTIONS(1022), - [aux_sym_cmd_identifier_token23] = ACTIONS(1022), - [aux_sym_cmd_identifier_token24] = ACTIONS(1022), - [aux_sym_cmd_identifier_token25] = ACTIONS(1022), - [aux_sym_cmd_identifier_token26] = ACTIONS(1022), - [aux_sym_cmd_identifier_token27] = ACTIONS(1022), - [aux_sym_cmd_identifier_token28] = ACTIONS(1022), - [aux_sym_cmd_identifier_token29] = ACTIONS(1022), - [aux_sym_cmd_identifier_token30] = ACTIONS(1022), - [aux_sym_cmd_identifier_token31] = ACTIONS(1022), - [aux_sym_cmd_identifier_token32] = ACTIONS(1022), - [aux_sym_cmd_identifier_token33] = ACTIONS(1022), - [aux_sym_cmd_identifier_token34] = ACTIONS(1022), - [aux_sym_cmd_identifier_token35] = ACTIONS(1022), - [aux_sym_cmd_identifier_token36] = ACTIONS(1022), - [anon_sym_true] = ACTIONS(1024), - [anon_sym_false] = ACTIONS(1024), - [anon_sym_null] = ACTIONS(1024), - [aux_sym_cmd_identifier_token38] = ACTIONS(1022), - [aux_sym_cmd_identifier_token39] = ACTIONS(1024), - [aux_sym_cmd_identifier_token40] = ACTIONS(1024), - [anon_sym_def] = ACTIONS(1022), - [anon_sym_export_DASHenv] = ACTIONS(1022), - [anon_sym_extern] = ACTIONS(1022), - [anon_sym_module] = ACTIONS(1022), - [anon_sym_use] = ACTIONS(1022), - [anon_sym_LPAREN] = ACTIONS(1024), - [anon_sym_COMMA] = ACTIONS(1024), - [anon_sym_DOLLAR] = ACTIONS(1024), - [anon_sym_error] = ACTIONS(1022), - [anon_sym_list] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1022), - [anon_sym_break] = ACTIONS(1022), - [anon_sym_continue] = ACTIONS(1022), - [anon_sym_for] = ACTIONS(1022), - [anon_sym_in] = ACTIONS(1022), - [anon_sym_loop] = ACTIONS(1022), - [anon_sym_make] = ACTIONS(1022), - [anon_sym_while] = ACTIONS(1022), - [anon_sym_do] = ACTIONS(1022), - [anon_sym_if] = ACTIONS(1022), - [anon_sym_else] = ACTIONS(1022), - [anon_sym_match] = ACTIONS(1022), - [anon_sym_RBRACE] = ACTIONS(1024), - [anon_sym_try] = ACTIONS(1022), - [anon_sym_catch] = ACTIONS(1022), - [anon_sym_return] = ACTIONS(1022), - [anon_sym_source] = ACTIONS(1022), - [anon_sym_source_DASHenv] = ACTIONS(1022), - [anon_sym_register] = ACTIONS(1022), - [anon_sym_hide] = ACTIONS(1022), - [anon_sym_hide_DASHenv] = ACTIONS(1022), - [anon_sym_overlay] = ACTIONS(1022), - [anon_sym_new] = ACTIONS(1022), - [anon_sym_as] = ACTIONS(1022), - [anon_sym_QMARK2] = ACTIONS(2117), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1024), - [anon_sym_DOT] = ACTIONS(1022), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1024), - [aux_sym__val_number_decimal_token1] = ACTIONS(1022), - [aux_sym__val_number_decimal_token2] = ACTIONS(1024), - [aux_sym__val_number_decimal_token3] = ACTIONS(1024), - [aux_sym__val_number_decimal_token4] = ACTIONS(1024), - [aux_sym__val_number_token1] = ACTIONS(1024), - [aux_sym__val_number_token2] = ACTIONS(1024), - [aux_sym__val_number_token3] = ACTIONS(1024), - [anon_sym_DQUOTE] = ACTIONS(1024), - [sym__str_single_quotes] = ACTIONS(1024), - [sym__str_back_ticks] = ACTIONS(1024), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1024), - [aux_sym_record_entry_token1] = ACTIONS(1024), - [anon_sym_PLUS] = ACTIONS(1022), - [anon_sym_POUND] = ACTIONS(247), + [347] = { + [sym_comment] = STATE(347), + [anon_sym_export] = ACTIONS(1703), + [anon_sym_alias] = ACTIONS(1703), + [anon_sym_let] = ACTIONS(1703), + [anon_sym_let_DASHenv] = ACTIONS(1703), + [anon_sym_mut] = ACTIONS(1703), + [anon_sym_const] = ACTIONS(1703), + [aux_sym_cmd_identifier_token1] = ACTIONS(1703), + [aux_sym_cmd_identifier_token2] = ACTIONS(1703), + [aux_sym_cmd_identifier_token3] = ACTIONS(1703), + [aux_sym_cmd_identifier_token4] = ACTIONS(1703), + [aux_sym_cmd_identifier_token5] = ACTIONS(1703), + [aux_sym_cmd_identifier_token6] = ACTIONS(1703), + [aux_sym_cmd_identifier_token7] = ACTIONS(1703), + [aux_sym_cmd_identifier_token8] = ACTIONS(1703), + [aux_sym_cmd_identifier_token9] = ACTIONS(1703), + [aux_sym_cmd_identifier_token10] = ACTIONS(1703), + [aux_sym_cmd_identifier_token11] = ACTIONS(1703), + [aux_sym_cmd_identifier_token12] = ACTIONS(1703), + [aux_sym_cmd_identifier_token13] = ACTIONS(1703), + [aux_sym_cmd_identifier_token14] = ACTIONS(1703), + [aux_sym_cmd_identifier_token15] = ACTIONS(1703), + [aux_sym_cmd_identifier_token16] = ACTIONS(1703), + [aux_sym_cmd_identifier_token17] = ACTIONS(1703), + [aux_sym_cmd_identifier_token18] = ACTIONS(1703), + [aux_sym_cmd_identifier_token19] = ACTIONS(1703), + [aux_sym_cmd_identifier_token20] = ACTIONS(1703), + [aux_sym_cmd_identifier_token21] = ACTIONS(1703), + [aux_sym_cmd_identifier_token22] = ACTIONS(1703), + [aux_sym_cmd_identifier_token23] = ACTIONS(1703), + [aux_sym_cmd_identifier_token24] = ACTIONS(1703), + [aux_sym_cmd_identifier_token25] = ACTIONS(1703), + [aux_sym_cmd_identifier_token26] = ACTIONS(1703), + [aux_sym_cmd_identifier_token27] = ACTIONS(1703), + [aux_sym_cmd_identifier_token28] = ACTIONS(1703), + [aux_sym_cmd_identifier_token29] = ACTIONS(1703), + [aux_sym_cmd_identifier_token30] = ACTIONS(1703), + [aux_sym_cmd_identifier_token31] = ACTIONS(1703), + [aux_sym_cmd_identifier_token32] = ACTIONS(1703), + [aux_sym_cmd_identifier_token33] = ACTIONS(1703), + [aux_sym_cmd_identifier_token34] = ACTIONS(1703), + [aux_sym_cmd_identifier_token35] = ACTIONS(1703), + [aux_sym_cmd_identifier_token36] = ACTIONS(1703), + [anon_sym_true] = ACTIONS(1705), + [anon_sym_false] = ACTIONS(1705), + [anon_sym_null] = ACTIONS(1705), + [aux_sym_cmd_identifier_token38] = ACTIONS(1703), + [aux_sym_cmd_identifier_token39] = ACTIONS(1705), + [aux_sym_cmd_identifier_token40] = ACTIONS(1705), + [anon_sym_def] = ACTIONS(1703), + [anon_sym_export_DASHenv] = ACTIONS(1703), + [anon_sym_extern] = ACTIONS(1703), + [anon_sym_module] = ACTIONS(1703), + [anon_sym_use] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1705), + [anon_sym_error] = ACTIONS(1703), + [anon_sym_list] = ACTIONS(1703), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_break] = ACTIONS(1703), + [anon_sym_continue] = ACTIONS(1703), + [anon_sym_for] = ACTIONS(1703), + [anon_sym_in] = ACTIONS(1703), + [anon_sym_loop] = ACTIONS(1703), + [anon_sym_make] = ACTIONS(1703), + [anon_sym_while] = ACTIONS(1703), + [anon_sym_do] = ACTIONS(1703), + [anon_sym_if] = ACTIONS(1703), + [anon_sym_else] = ACTIONS(1703), + [anon_sym_match] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1703), + [anon_sym_catch] = ACTIONS(1703), + [anon_sym_return] = ACTIONS(1703), + [anon_sym_source] = ACTIONS(1703), + [anon_sym_source_DASHenv] = ACTIONS(1703), + [anon_sym_register] = ACTIONS(1703), + [anon_sym_hide] = ACTIONS(1703), + [anon_sym_hide_DASHenv] = ACTIONS(1703), + [anon_sym_overlay] = ACTIONS(1703), + [anon_sym_new] = ACTIONS(1703), + [anon_sym_as] = ACTIONS(1703), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1705), + [anon_sym_DOT_DOT2] = ACTIONS(1703), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1705), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1705), + [aux_sym__immediate_decimal_token1] = ACTIONS(1889), + [aux_sym__immediate_decimal_token2] = ACTIONS(1891), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1705), + [aux_sym__val_number_decimal_token1] = ACTIONS(1703), + [aux_sym__val_number_decimal_token2] = ACTIONS(1705), + [aux_sym__val_number_decimal_token3] = ACTIONS(1705), + [aux_sym__val_number_decimal_token4] = ACTIONS(1705), + [aux_sym__val_number_token1] = ACTIONS(1705), + [aux_sym__val_number_token2] = ACTIONS(1705), + [aux_sym__val_number_token3] = ACTIONS(1705), + [anon_sym_DQUOTE] = ACTIONS(1705), + [sym__str_single_quotes] = ACTIONS(1705), + [sym__str_back_ticks] = ACTIONS(1705), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1705), + [anon_sym_PLUS] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1705), }, - [409] = { - [sym_comment] = STATE(409), - [anon_sym_export] = ACTIONS(1028), - [anon_sym_alias] = ACTIONS(1028), - [anon_sym_let] = ACTIONS(1028), - [anon_sym_let_DASHenv] = ACTIONS(1028), - [anon_sym_mut] = ACTIONS(1028), - [anon_sym_const] = ACTIONS(1028), - [aux_sym_cmd_identifier_token1] = ACTIONS(1028), - [aux_sym_cmd_identifier_token2] = ACTIONS(1028), - [aux_sym_cmd_identifier_token3] = ACTIONS(1028), - [aux_sym_cmd_identifier_token4] = ACTIONS(1028), - [aux_sym_cmd_identifier_token5] = ACTIONS(1028), - [aux_sym_cmd_identifier_token6] = ACTIONS(1028), - [aux_sym_cmd_identifier_token7] = ACTIONS(1028), - [aux_sym_cmd_identifier_token8] = ACTIONS(1028), - [aux_sym_cmd_identifier_token9] = ACTIONS(1028), - [aux_sym_cmd_identifier_token10] = ACTIONS(1028), - [aux_sym_cmd_identifier_token11] = ACTIONS(1028), - [aux_sym_cmd_identifier_token12] = ACTIONS(1028), - [aux_sym_cmd_identifier_token13] = ACTIONS(1028), - [aux_sym_cmd_identifier_token14] = ACTIONS(1028), - [aux_sym_cmd_identifier_token15] = ACTIONS(1028), - [aux_sym_cmd_identifier_token16] = ACTIONS(1028), - [aux_sym_cmd_identifier_token17] = ACTIONS(1028), - [aux_sym_cmd_identifier_token18] = ACTIONS(1028), - [aux_sym_cmd_identifier_token19] = ACTIONS(1028), - [aux_sym_cmd_identifier_token20] = ACTIONS(1028), - [aux_sym_cmd_identifier_token21] = ACTIONS(1028), - [aux_sym_cmd_identifier_token22] = ACTIONS(1028), - [aux_sym_cmd_identifier_token23] = ACTIONS(1028), - [aux_sym_cmd_identifier_token24] = ACTIONS(1028), - [aux_sym_cmd_identifier_token25] = ACTIONS(1028), - [aux_sym_cmd_identifier_token26] = ACTIONS(1028), - [aux_sym_cmd_identifier_token27] = ACTIONS(1028), - [aux_sym_cmd_identifier_token28] = ACTIONS(1028), - [aux_sym_cmd_identifier_token29] = ACTIONS(1028), - [aux_sym_cmd_identifier_token30] = ACTIONS(1028), - [aux_sym_cmd_identifier_token31] = ACTIONS(1028), - [aux_sym_cmd_identifier_token32] = ACTIONS(1028), - [aux_sym_cmd_identifier_token33] = ACTIONS(1028), - [aux_sym_cmd_identifier_token34] = ACTIONS(1028), - [aux_sym_cmd_identifier_token35] = ACTIONS(1028), - [aux_sym_cmd_identifier_token36] = ACTIONS(1028), - [anon_sym_true] = ACTIONS(1030), - [anon_sym_false] = ACTIONS(1030), - [anon_sym_null] = ACTIONS(1030), - [aux_sym_cmd_identifier_token38] = ACTIONS(1028), - [aux_sym_cmd_identifier_token39] = ACTIONS(1030), - [aux_sym_cmd_identifier_token40] = ACTIONS(1030), - [anon_sym_def] = ACTIONS(1028), - [anon_sym_export_DASHenv] = ACTIONS(1028), - [anon_sym_extern] = ACTIONS(1028), - [anon_sym_module] = ACTIONS(1028), - [anon_sym_use] = ACTIONS(1028), - [anon_sym_LPAREN] = ACTIONS(1030), - [anon_sym_COMMA] = ACTIONS(1030), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_error] = ACTIONS(1028), - [anon_sym_list] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1028), - [anon_sym_break] = ACTIONS(1028), - [anon_sym_continue] = ACTIONS(1028), - [anon_sym_for] = ACTIONS(1028), - [anon_sym_in] = ACTIONS(1028), - [anon_sym_loop] = ACTIONS(1028), - [anon_sym_make] = ACTIONS(1028), - [anon_sym_while] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1028), - [anon_sym_if] = ACTIONS(1028), - [anon_sym_else] = ACTIONS(1028), - [anon_sym_match] = ACTIONS(1028), - [anon_sym_RBRACE] = ACTIONS(1030), - [anon_sym_try] = ACTIONS(1028), - [anon_sym_catch] = ACTIONS(1028), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_source] = ACTIONS(1028), - [anon_sym_source_DASHenv] = ACTIONS(1028), - [anon_sym_register] = ACTIONS(1028), - [anon_sym_hide] = ACTIONS(1028), - [anon_sym_hide_DASHenv] = ACTIONS(1028), - [anon_sym_overlay] = ACTIONS(1028), - [anon_sym_new] = ACTIONS(1028), - [anon_sym_as] = ACTIONS(1028), - [anon_sym_QMARK2] = ACTIONS(2119), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1030), - [anon_sym_DOT] = ACTIONS(1028), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1030), - [aux_sym__val_number_decimal_token1] = ACTIONS(1028), - [aux_sym__val_number_decimal_token2] = ACTIONS(1030), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), - [aux_sym__val_number_token1] = ACTIONS(1030), - [aux_sym__val_number_token2] = ACTIONS(1030), - [aux_sym__val_number_token3] = ACTIONS(1030), - [anon_sym_DQUOTE] = ACTIONS(1030), - [sym__str_single_quotes] = ACTIONS(1030), - [sym__str_back_ticks] = ACTIONS(1030), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1030), - [aux_sym_record_entry_token1] = ACTIONS(1030), - [anon_sym_PLUS] = ACTIONS(1028), - [anon_sym_POUND] = ACTIONS(247), + [348] = { + [sym_cell_path] = STATE(613), + [sym_path] = STATE(518), + [sym_comment] = STATE(348), + [aux_sym_cell_path_repeat1] = STATE(411), + [anon_sym_export] = ACTIONS(1893), + [anon_sym_alias] = ACTIONS(1893), + [anon_sym_let] = ACTIONS(1893), + [anon_sym_let_DASHenv] = ACTIONS(1893), + [anon_sym_mut] = ACTIONS(1893), + [anon_sym_const] = ACTIONS(1893), + [aux_sym_cmd_identifier_token1] = ACTIONS(1893), + [aux_sym_cmd_identifier_token2] = ACTIONS(1893), + [aux_sym_cmd_identifier_token3] = ACTIONS(1893), + [aux_sym_cmd_identifier_token4] = ACTIONS(1893), + [aux_sym_cmd_identifier_token5] = ACTIONS(1893), + [aux_sym_cmd_identifier_token6] = ACTIONS(1893), + [aux_sym_cmd_identifier_token7] = ACTIONS(1893), + [aux_sym_cmd_identifier_token8] = ACTIONS(1893), + [aux_sym_cmd_identifier_token9] = ACTIONS(1893), + [aux_sym_cmd_identifier_token10] = ACTIONS(1893), + [aux_sym_cmd_identifier_token11] = ACTIONS(1893), + [aux_sym_cmd_identifier_token12] = ACTIONS(1893), + [aux_sym_cmd_identifier_token13] = ACTIONS(1893), + [aux_sym_cmd_identifier_token14] = ACTIONS(1893), + [aux_sym_cmd_identifier_token15] = ACTIONS(1893), + [aux_sym_cmd_identifier_token16] = ACTIONS(1893), + [aux_sym_cmd_identifier_token17] = ACTIONS(1893), + [aux_sym_cmd_identifier_token18] = ACTIONS(1893), + [aux_sym_cmd_identifier_token19] = ACTIONS(1893), + [aux_sym_cmd_identifier_token20] = ACTIONS(1893), + [aux_sym_cmd_identifier_token21] = ACTIONS(1893), + [aux_sym_cmd_identifier_token22] = ACTIONS(1893), + [aux_sym_cmd_identifier_token23] = ACTIONS(1893), + [aux_sym_cmd_identifier_token24] = ACTIONS(1893), + [aux_sym_cmd_identifier_token25] = ACTIONS(1893), + [aux_sym_cmd_identifier_token26] = ACTIONS(1893), + [aux_sym_cmd_identifier_token27] = ACTIONS(1893), + [aux_sym_cmd_identifier_token28] = ACTIONS(1893), + [aux_sym_cmd_identifier_token29] = ACTIONS(1893), + [aux_sym_cmd_identifier_token30] = ACTIONS(1893), + [aux_sym_cmd_identifier_token31] = ACTIONS(1893), + [aux_sym_cmd_identifier_token32] = ACTIONS(1893), + [aux_sym_cmd_identifier_token33] = ACTIONS(1893), + [aux_sym_cmd_identifier_token34] = ACTIONS(1893), + [aux_sym_cmd_identifier_token35] = ACTIONS(1893), + [aux_sym_cmd_identifier_token36] = ACTIONS(1893), + [anon_sym_true] = ACTIONS(1893), + [anon_sym_false] = ACTIONS(1893), + [anon_sym_null] = ACTIONS(1893), + [aux_sym_cmd_identifier_token38] = ACTIONS(1893), + [aux_sym_cmd_identifier_token39] = ACTIONS(1893), + [aux_sym_cmd_identifier_token40] = ACTIONS(1893), + [anon_sym_def] = ACTIONS(1893), + [anon_sym_export_DASHenv] = ACTIONS(1893), + [anon_sym_extern] = ACTIONS(1893), + [anon_sym_module] = ACTIONS(1893), + [anon_sym_use] = ACTIONS(1893), + [anon_sym_LPAREN] = ACTIONS(1893), + [anon_sym_DOLLAR] = ACTIONS(1893), + [anon_sym_error] = ACTIONS(1893), + [anon_sym_list] = ACTIONS(1893), + [anon_sym_DASH] = ACTIONS(1893), + [anon_sym_break] = ACTIONS(1893), + [anon_sym_continue] = ACTIONS(1893), + [anon_sym_for] = ACTIONS(1893), + [anon_sym_in] = ACTIONS(1893), + [anon_sym_loop] = ACTIONS(1893), + [anon_sym_make] = ACTIONS(1893), + [anon_sym_while] = ACTIONS(1893), + [anon_sym_do] = ACTIONS(1893), + [anon_sym_if] = ACTIONS(1893), + [anon_sym_else] = ACTIONS(1893), + [anon_sym_match] = ACTIONS(1893), + [anon_sym_RBRACE] = ACTIONS(1893), + [anon_sym_try] = ACTIONS(1893), + [anon_sym_catch] = ACTIONS(1893), + [anon_sym_return] = ACTIONS(1893), + [anon_sym_source] = ACTIONS(1893), + [anon_sym_source_DASHenv] = ACTIONS(1893), + [anon_sym_register] = ACTIONS(1893), + [anon_sym_hide] = ACTIONS(1893), + [anon_sym_hide_DASHenv] = ACTIONS(1893), + [anon_sym_overlay] = ACTIONS(1893), + [anon_sym_new] = ACTIONS(1893), + [anon_sym_as] = ACTIONS(1893), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1893), + [anon_sym_DOT] = ACTIONS(1856), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1893), + [aux_sym__val_number_decimal_token1] = ACTIONS(1893), + [aux_sym__val_number_decimal_token2] = ACTIONS(1893), + [aux_sym__val_number_decimal_token3] = ACTIONS(1893), + [aux_sym__val_number_decimal_token4] = ACTIONS(1893), + [aux_sym__val_number_token1] = ACTIONS(1893), + [aux_sym__val_number_token2] = ACTIONS(1893), + [aux_sym__val_number_token3] = ACTIONS(1893), + [anon_sym_DQUOTE] = ACTIONS(1893), + [sym__str_single_quotes] = ACTIONS(1893), + [sym__str_back_ticks] = ACTIONS(1893), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1893), + [sym__entry_separator] = ACTIONS(1895), + [anon_sym_PLUS] = ACTIONS(1893), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1895), }, - [410] = { - [sym_cell_path] = STATE(674), - [sym_path] = STATE(578), - [sym_comment] = STATE(410), - [aux_sym_cell_path_repeat1] = STATE(459), - [anon_sym_export] = ACTIONS(1828), - [anon_sym_alias] = ACTIONS(1828), - [anon_sym_let] = ACTIONS(1828), - [anon_sym_let_DASHenv] = ACTIONS(1828), - [anon_sym_mut] = ACTIONS(1828), - [anon_sym_const] = ACTIONS(1828), - [aux_sym_cmd_identifier_token1] = ACTIONS(1828), - [aux_sym_cmd_identifier_token2] = ACTIONS(1828), - [aux_sym_cmd_identifier_token3] = ACTIONS(1828), - [aux_sym_cmd_identifier_token4] = ACTIONS(1828), - [aux_sym_cmd_identifier_token5] = ACTIONS(1828), - [aux_sym_cmd_identifier_token6] = ACTIONS(1828), - [aux_sym_cmd_identifier_token7] = ACTIONS(1828), - [aux_sym_cmd_identifier_token8] = ACTIONS(1828), - [aux_sym_cmd_identifier_token9] = ACTIONS(1828), - [aux_sym_cmd_identifier_token10] = ACTIONS(1828), - [aux_sym_cmd_identifier_token11] = ACTIONS(1828), - [aux_sym_cmd_identifier_token12] = ACTIONS(1828), - [aux_sym_cmd_identifier_token13] = ACTIONS(1828), - [aux_sym_cmd_identifier_token14] = ACTIONS(1828), - [aux_sym_cmd_identifier_token15] = ACTIONS(1828), - [aux_sym_cmd_identifier_token16] = ACTIONS(1828), - [aux_sym_cmd_identifier_token17] = ACTIONS(1828), - [aux_sym_cmd_identifier_token18] = ACTIONS(1828), - [aux_sym_cmd_identifier_token19] = ACTIONS(1828), - [aux_sym_cmd_identifier_token20] = ACTIONS(1828), - [aux_sym_cmd_identifier_token21] = ACTIONS(1828), - [aux_sym_cmd_identifier_token22] = ACTIONS(1828), - [aux_sym_cmd_identifier_token23] = ACTIONS(1828), - [aux_sym_cmd_identifier_token24] = ACTIONS(1828), - [aux_sym_cmd_identifier_token25] = ACTIONS(1828), - [aux_sym_cmd_identifier_token26] = ACTIONS(1828), - [aux_sym_cmd_identifier_token27] = ACTIONS(1828), - [aux_sym_cmd_identifier_token28] = ACTIONS(1828), - [aux_sym_cmd_identifier_token29] = ACTIONS(1828), - [aux_sym_cmd_identifier_token30] = ACTIONS(1828), - [aux_sym_cmd_identifier_token31] = ACTIONS(1828), - [aux_sym_cmd_identifier_token32] = ACTIONS(1828), - [aux_sym_cmd_identifier_token33] = ACTIONS(1828), - [aux_sym_cmd_identifier_token34] = ACTIONS(1828), - [aux_sym_cmd_identifier_token35] = ACTIONS(1828), - [aux_sym_cmd_identifier_token36] = ACTIONS(1828), - [anon_sym_true] = ACTIONS(1830), - [anon_sym_false] = ACTIONS(1830), - [anon_sym_null] = ACTIONS(1830), - [aux_sym_cmd_identifier_token38] = ACTIONS(1828), - [aux_sym_cmd_identifier_token39] = ACTIONS(1830), - [aux_sym_cmd_identifier_token40] = ACTIONS(1830), - [anon_sym_def] = ACTIONS(1828), - [anon_sym_export_DASHenv] = ACTIONS(1828), - [anon_sym_extern] = ACTIONS(1828), - [anon_sym_module] = ACTIONS(1828), - [anon_sym_use] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1830), - [anon_sym_DOLLAR] = ACTIONS(1830), - [anon_sym_error] = ACTIONS(1828), - [anon_sym_list] = ACTIONS(1828), - [anon_sym_DASH] = ACTIONS(1828), - [anon_sym_break] = ACTIONS(1828), - [anon_sym_continue] = ACTIONS(1828), - [anon_sym_for] = ACTIONS(1828), - [anon_sym_in] = ACTIONS(1828), - [anon_sym_loop] = ACTIONS(1828), - [anon_sym_make] = ACTIONS(1828), - [anon_sym_while] = ACTIONS(1828), - [anon_sym_do] = ACTIONS(1828), - [anon_sym_if] = ACTIONS(1828), - [anon_sym_else] = ACTIONS(1828), - [anon_sym_match] = ACTIONS(1828), - [anon_sym_RBRACE] = ACTIONS(1830), - [anon_sym_try] = ACTIONS(1828), - [anon_sym_catch] = ACTIONS(1828), - [anon_sym_return] = ACTIONS(1828), - [anon_sym_source] = ACTIONS(1828), - [anon_sym_source_DASHenv] = ACTIONS(1828), - [anon_sym_register] = ACTIONS(1828), - [anon_sym_hide] = ACTIONS(1828), - [anon_sym_hide_DASHenv] = ACTIONS(1828), - [anon_sym_overlay] = ACTIONS(1828), - [anon_sym_new] = ACTIONS(1828), - [anon_sym_as] = ACTIONS(1828), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1830), - [anon_sym_DOT] = ACTIONS(1989), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1830), - [aux_sym__val_number_decimal_token1] = ACTIONS(1828), - [aux_sym__val_number_decimal_token2] = ACTIONS(1830), - [aux_sym__val_number_decimal_token3] = ACTIONS(1830), - [aux_sym__val_number_decimal_token4] = ACTIONS(1830), - [aux_sym__val_number_token1] = ACTIONS(1830), - [aux_sym__val_number_token2] = ACTIONS(1830), - [aux_sym__val_number_token3] = ACTIONS(1830), - [anon_sym_DQUOTE] = ACTIONS(1830), - [sym__str_single_quotes] = ACTIONS(1830), - [sym__str_back_ticks] = ACTIONS(1830), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1830), - [anon_sym_PLUS] = ACTIONS(1828), - [anon_sym_POUND] = ACTIONS(247), + [349] = { + [sym_cell_path] = STATE(552), + [sym_path] = STATE(518), + [sym_comment] = STATE(349), + [aux_sym_cell_path_repeat1] = STATE(411), + [anon_sym_export] = ACTIONS(1897), + [anon_sym_alias] = ACTIONS(1897), + [anon_sym_let] = ACTIONS(1897), + [anon_sym_let_DASHenv] = ACTIONS(1897), + [anon_sym_mut] = ACTIONS(1897), + [anon_sym_const] = ACTIONS(1897), + [aux_sym_cmd_identifier_token1] = ACTIONS(1897), + [aux_sym_cmd_identifier_token2] = ACTIONS(1897), + [aux_sym_cmd_identifier_token3] = ACTIONS(1897), + [aux_sym_cmd_identifier_token4] = ACTIONS(1897), + [aux_sym_cmd_identifier_token5] = ACTIONS(1897), + [aux_sym_cmd_identifier_token6] = ACTIONS(1897), + [aux_sym_cmd_identifier_token7] = ACTIONS(1897), + [aux_sym_cmd_identifier_token8] = ACTIONS(1897), + [aux_sym_cmd_identifier_token9] = ACTIONS(1897), + [aux_sym_cmd_identifier_token10] = ACTIONS(1897), + [aux_sym_cmd_identifier_token11] = ACTIONS(1897), + [aux_sym_cmd_identifier_token12] = ACTIONS(1897), + [aux_sym_cmd_identifier_token13] = ACTIONS(1897), + [aux_sym_cmd_identifier_token14] = ACTIONS(1897), + [aux_sym_cmd_identifier_token15] = ACTIONS(1897), + [aux_sym_cmd_identifier_token16] = ACTIONS(1897), + [aux_sym_cmd_identifier_token17] = ACTIONS(1897), + [aux_sym_cmd_identifier_token18] = ACTIONS(1897), + [aux_sym_cmd_identifier_token19] = ACTIONS(1897), + [aux_sym_cmd_identifier_token20] = ACTIONS(1897), + [aux_sym_cmd_identifier_token21] = ACTIONS(1897), + [aux_sym_cmd_identifier_token22] = ACTIONS(1897), + [aux_sym_cmd_identifier_token23] = ACTIONS(1897), + [aux_sym_cmd_identifier_token24] = ACTIONS(1897), + [aux_sym_cmd_identifier_token25] = ACTIONS(1897), + [aux_sym_cmd_identifier_token26] = ACTIONS(1897), + [aux_sym_cmd_identifier_token27] = ACTIONS(1897), + [aux_sym_cmd_identifier_token28] = ACTIONS(1897), + [aux_sym_cmd_identifier_token29] = ACTIONS(1897), + [aux_sym_cmd_identifier_token30] = ACTIONS(1897), + [aux_sym_cmd_identifier_token31] = ACTIONS(1897), + [aux_sym_cmd_identifier_token32] = ACTIONS(1897), + [aux_sym_cmd_identifier_token33] = ACTIONS(1897), + [aux_sym_cmd_identifier_token34] = ACTIONS(1897), + [aux_sym_cmd_identifier_token35] = ACTIONS(1897), + [aux_sym_cmd_identifier_token36] = ACTIONS(1897), + [anon_sym_true] = ACTIONS(1897), + [anon_sym_false] = ACTIONS(1897), + [anon_sym_null] = ACTIONS(1897), + [aux_sym_cmd_identifier_token38] = ACTIONS(1897), + [aux_sym_cmd_identifier_token39] = ACTIONS(1897), + [aux_sym_cmd_identifier_token40] = ACTIONS(1897), + [anon_sym_def] = ACTIONS(1897), + [anon_sym_export_DASHenv] = ACTIONS(1897), + [anon_sym_extern] = ACTIONS(1897), + [anon_sym_module] = ACTIONS(1897), + [anon_sym_use] = ACTIONS(1897), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_DOLLAR] = ACTIONS(1897), + [anon_sym_error] = ACTIONS(1897), + [anon_sym_list] = ACTIONS(1897), + [anon_sym_DASH] = ACTIONS(1897), + [anon_sym_break] = ACTIONS(1897), + [anon_sym_continue] = ACTIONS(1897), + [anon_sym_for] = ACTIONS(1897), + [anon_sym_in] = ACTIONS(1897), + [anon_sym_loop] = ACTIONS(1897), + [anon_sym_make] = ACTIONS(1897), + [anon_sym_while] = ACTIONS(1897), + [anon_sym_do] = ACTIONS(1897), + [anon_sym_if] = ACTIONS(1897), + [anon_sym_else] = ACTIONS(1897), + [anon_sym_match] = ACTIONS(1897), + [anon_sym_RBRACE] = ACTIONS(1897), + [anon_sym_try] = ACTIONS(1897), + [anon_sym_catch] = ACTIONS(1897), + [anon_sym_return] = ACTIONS(1897), + [anon_sym_source] = ACTIONS(1897), + [anon_sym_source_DASHenv] = ACTIONS(1897), + [anon_sym_register] = ACTIONS(1897), + [anon_sym_hide] = ACTIONS(1897), + [anon_sym_hide_DASHenv] = ACTIONS(1897), + [anon_sym_overlay] = ACTIONS(1897), + [anon_sym_new] = ACTIONS(1897), + [anon_sym_as] = ACTIONS(1897), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1897), + [anon_sym_DOT] = ACTIONS(1856), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1897), + [aux_sym__val_number_decimal_token1] = ACTIONS(1897), + [aux_sym__val_number_decimal_token2] = ACTIONS(1897), + [aux_sym__val_number_decimal_token3] = ACTIONS(1897), + [aux_sym__val_number_decimal_token4] = ACTIONS(1897), + [aux_sym__val_number_token1] = ACTIONS(1897), + [aux_sym__val_number_token2] = ACTIONS(1897), + [aux_sym__val_number_token3] = ACTIONS(1897), + [anon_sym_DQUOTE] = ACTIONS(1897), + [sym__str_single_quotes] = ACTIONS(1897), + [sym__str_back_ticks] = ACTIONS(1897), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1897), + [sym__entry_separator] = ACTIONS(1899), + [anon_sym_PLUS] = ACTIONS(1897), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1899), }, - [411] = { - [sym_cmd_identifier] = STATE(4514), - [sym__expression] = STATE(3782), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3836), - [sym_expr_parenthesized] = STATE(1445), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym_val_variable] = STATE(1446), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1465), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(4810), - [sym_comment] = STATE(411), - [aux_sym_pipe_element_repeat2] = STATE(1060), - [aux_sym_cmd_identifier_token1] = ACTIONS(367), - [aux_sym_cmd_identifier_token2] = ACTIONS(369), - [aux_sym_cmd_identifier_token3] = ACTIONS(369), - [aux_sym_cmd_identifier_token4] = ACTIONS(369), - [aux_sym_cmd_identifier_token5] = ACTIONS(369), - [aux_sym_cmd_identifier_token6] = ACTIONS(369), - [aux_sym_cmd_identifier_token7] = ACTIONS(369), - [aux_sym_cmd_identifier_token8] = ACTIONS(369), - [aux_sym_cmd_identifier_token9] = ACTIONS(367), - [aux_sym_cmd_identifier_token10] = ACTIONS(369), - [aux_sym_cmd_identifier_token11] = ACTIONS(369), - [aux_sym_cmd_identifier_token12] = ACTIONS(369), - [aux_sym_cmd_identifier_token13] = ACTIONS(367), - [aux_sym_cmd_identifier_token14] = ACTIONS(369), - [aux_sym_cmd_identifier_token15] = ACTIONS(367), - [aux_sym_cmd_identifier_token16] = ACTIONS(369), - [aux_sym_cmd_identifier_token17] = ACTIONS(369), - [aux_sym_cmd_identifier_token18] = ACTIONS(369), - [aux_sym_cmd_identifier_token19] = ACTIONS(369), - [aux_sym_cmd_identifier_token20] = ACTIONS(369), - [aux_sym_cmd_identifier_token21] = ACTIONS(369), - [aux_sym_cmd_identifier_token22] = ACTIONS(369), - [aux_sym_cmd_identifier_token23] = ACTIONS(369), - [aux_sym_cmd_identifier_token24] = ACTIONS(369), - [aux_sym_cmd_identifier_token25] = ACTIONS(369), - [aux_sym_cmd_identifier_token26] = ACTIONS(369), - [aux_sym_cmd_identifier_token27] = ACTIONS(369), - [aux_sym_cmd_identifier_token28] = ACTIONS(369), - [aux_sym_cmd_identifier_token29] = ACTIONS(369), - [aux_sym_cmd_identifier_token30] = ACTIONS(369), - [aux_sym_cmd_identifier_token31] = ACTIONS(369), - [aux_sym_cmd_identifier_token32] = ACTIONS(369), - [aux_sym_cmd_identifier_token33] = ACTIONS(369), - [aux_sym_cmd_identifier_token34] = ACTIONS(369), - [aux_sym_cmd_identifier_token35] = ACTIONS(369), - [aux_sym_cmd_identifier_token36] = ACTIONS(367), - [anon_sym_true] = ACTIONS(371), - [anon_sym_false] = ACTIONS(371), - [anon_sym_null] = ACTIONS(373), - [aux_sym_cmd_identifier_token38] = ACTIONS(375), - [aux_sym_cmd_identifier_token39] = ACTIONS(377), - [aux_sym_cmd_identifier_token40] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(191), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [aux_sym_env_var_token1] = ACTIONS(119), - [anon_sym_CARET] = ACTIONS(245), - [anon_sym_POUND] = ACTIONS(247), + [350] = { + [sym_cell_path] = STATE(609), + [sym_path] = STATE(518), + [sym_comment] = STATE(350), + [aux_sym_cell_path_repeat1] = STATE(411), + [anon_sym_export] = ACTIONS(1901), + [anon_sym_alias] = ACTIONS(1901), + [anon_sym_let] = ACTIONS(1901), + [anon_sym_let_DASHenv] = ACTIONS(1901), + [anon_sym_mut] = ACTIONS(1901), + [anon_sym_const] = ACTIONS(1901), + [aux_sym_cmd_identifier_token1] = ACTIONS(1901), + [aux_sym_cmd_identifier_token2] = ACTIONS(1901), + [aux_sym_cmd_identifier_token3] = ACTIONS(1901), + [aux_sym_cmd_identifier_token4] = ACTIONS(1901), + [aux_sym_cmd_identifier_token5] = ACTIONS(1901), + [aux_sym_cmd_identifier_token6] = ACTIONS(1901), + [aux_sym_cmd_identifier_token7] = ACTIONS(1901), + [aux_sym_cmd_identifier_token8] = ACTIONS(1901), + [aux_sym_cmd_identifier_token9] = ACTIONS(1901), + [aux_sym_cmd_identifier_token10] = ACTIONS(1901), + [aux_sym_cmd_identifier_token11] = ACTIONS(1901), + [aux_sym_cmd_identifier_token12] = ACTIONS(1901), + [aux_sym_cmd_identifier_token13] = ACTIONS(1901), + [aux_sym_cmd_identifier_token14] = ACTIONS(1901), + [aux_sym_cmd_identifier_token15] = ACTIONS(1901), + [aux_sym_cmd_identifier_token16] = ACTIONS(1901), + [aux_sym_cmd_identifier_token17] = ACTIONS(1901), + [aux_sym_cmd_identifier_token18] = ACTIONS(1901), + [aux_sym_cmd_identifier_token19] = ACTIONS(1901), + [aux_sym_cmd_identifier_token20] = ACTIONS(1901), + [aux_sym_cmd_identifier_token21] = ACTIONS(1901), + [aux_sym_cmd_identifier_token22] = ACTIONS(1901), + [aux_sym_cmd_identifier_token23] = ACTIONS(1901), + [aux_sym_cmd_identifier_token24] = ACTIONS(1901), + [aux_sym_cmd_identifier_token25] = ACTIONS(1901), + [aux_sym_cmd_identifier_token26] = ACTIONS(1901), + [aux_sym_cmd_identifier_token27] = ACTIONS(1901), + [aux_sym_cmd_identifier_token28] = ACTIONS(1901), + [aux_sym_cmd_identifier_token29] = ACTIONS(1901), + [aux_sym_cmd_identifier_token30] = ACTIONS(1901), + [aux_sym_cmd_identifier_token31] = ACTIONS(1901), + [aux_sym_cmd_identifier_token32] = ACTIONS(1901), + [aux_sym_cmd_identifier_token33] = ACTIONS(1901), + [aux_sym_cmd_identifier_token34] = ACTIONS(1901), + [aux_sym_cmd_identifier_token35] = ACTIONS(1901), + [aux_sym_cmd_identifier_token36] = ACTIONS(1901), + [anon_sym_true] = ACTIONS(1901), + [anon_sym_false] = ACTIONS(1901), + [anon_sym_null] = ACTIONS(1901), + [aux_sym_cmd_identifier_token38] = ACTIONS(1901), + [aux_sym_cmd_identifier_token39] = ACTIONS(1901), + [aux_sym_cmd_identifier_token40] = ACTIONS(1901), + [anon_sym_def] = ACTIONS(1901), + [anon_sym_export_DASHenv] = ACTIONS(1901), + [anon_sym_extern] = ACTIONS(1901), + [anon_sym_module] = ACTIONS(1901), + [anon_sym_use] = ACTIONS(1901), + [anon_sym_LPAREN] = ACTIONS(1901), + [anon_sym_DOLLAR] = ACTIONS(1901), + [anon_sym_error] = ACTIONS(1901), + [anon_sym_list] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_break] = ACTIONS(1901), + [anon_sym_continue] = ACTIONS(1901), + [anon_sym_for] = ACTIONS(1901), + [anon_sym_in] = ACTIONS(1901), + [anon_sym_loop] = ACTIONS(1901), + [anon_sym_make] = ACTIONS(1901), + [anon_sym_while] = ACTIONS(1901), + [anon_sym_do] = ACTIONS(1901), + [anon_sym_if] = ACTIONS(1901), + [anon_sym_else] = ACTIONS(1901), + [anon_sym_match] = ACTIONS(1901), + [anon_sym_RBRACE] = ACTIONS(1901), + [anon_sym_try] = ACTIONS(1901), + [anon_sym_catch] = ACTIONS(1901), + [anon_sym_return] = ACTIONS(1901), + [anon_sym_source] = ACTIONS(1901), + [anon_sym_source_DASHenv] = ACTIONS(1901), + [anon_sym_register] = ACTIONS(1901), + [anon_sym_hide] = ACTIONS(1901), + [anon_sym_hide_DASHenv] = ACTIONS(1901), + [anon_sym_overlay] = ACTIONS(1901), + [anon_sym_new] = ACTIONS(1901), + [anon_sym_as] = ACTIONS(1901), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1901), + [anon_sym_DOT] = ACTIONS(1856), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1901), + [aux_sym__val_number_decimal_token1] = ACTIONS(1901), + [aux_sym__val_number_decimal_token2] = ACTIONS(1901), + [aux_sym__val_number_decimal_token3] = ACTIONS(1901), + [aux_sym__val_number_decimal_token4] = ACTIONS(1901), + [aux_sym__val_number_token1] = ACTIONS(1901), + [aux_sym__val_number_token2] = ACTIONS(1901), + [aux_sym__val_number_token3] = ACTIONS(1901), + [anon_sym_DQUOTE] = ACTIONS(1901), + [sym__str_single_quotes] = ACTIONS(1901), + [sym__str_back_ticks] = ACTIONS(1901), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1901), + [sym__entry_separator] = ACTIONS(1903), + [anon_sym_PLUS] = ACTIONS(1901), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1903), }, - [412] = { - [sym_cell_path] = STATE(676), - [sym_path] = STATE(578), - [sym_comment] = STATE(412), - [aux_sym_cell_path_repeat1] = STATE(459), - [anon_sym_export] = ACTIONS(1832), - [anon_sym_alias] = ACTIONS(1832), - [anon_sym_let] = ACTIONS(1832), - [anon_sym_let_DASHenv] = ACTIONS(1832), - [anon_sym_mut] = ACTIONS(1832), - [anon_sym_const] = ACTIONS(1832), - [aux_sym_cmd_identifier_token1] = ACTIONS(1832), - [aux_sym_cmd_identifier_token2] = ACTIONS(1832), - [aux_sym_cmd_identifier_token3] = ACTIONS(1832), - [aux_sym_cmd_identifier_token4] = ACTIONS(1832), - [aux_sym_cmd_identifier_token5] = ACTIONS(1832), - [aux_sym_cmd_identifier_token6] = ACTIONS(1832), - [aux_sym_cmd_identifier_token7] = ACTIONS(1832), - [aux_sym_cmd_identifier_token8] = ACTIONS(1832), - [aux_sym_cmd_identifier_token9] = ACTIONS(1832), - [aux_sym_cmd_identifier_token10] = ACTIONS(1832), - [aux_sym_cmd_identifier_token11] = ACTIONS(1832), - [aux_sym_cmd_identifier_token12] = ACTIONS(1832), - [aux_sym_cmd_identifier_token13] = ACTIONS(1832), - [aux_sym_cmd_identifier_token14] = ACTIONS(1832), - [aux_sym_cmd_identifier_token15] = ACTIONS(1832), - [aux_sym_cmd_identifier_token16] = ACTIONS(1832), - [aux_sym_cmd_identifier_token17] = ACTIONS(1832), - [aux_sym_cmd_identifier_token18] = ACTIONS(1832), - [aux_sym_cmd_identifier_token19] = ACTIONS(1832), - [aux_sym_cmd_identifier_token20] = ACTIONS(1832), - [aux_sym_cmd_identifier_token21] = ACTIONS(1832), - [aux_sym_cmd_identifier_token22] = ACTIONS(1832), - [aux_sym_cmd_identifier_token23] = ACTIONS(1832), - [aux_sym_cmd_identifier_token24] = ACTIONS(1832), - [aux_sym_cmd_identifier_token25] = ACTIONS(1832), - [aux_sym_cmd_identifier_token26] = ACTIONS(1832), - [aux_sym_cmd_identifier_token27] = ACTIONS(1832), - [aux_sym_cmd_identifier_token28] = ACTIONS(1832), - [aux_sym_cmd_identifier_token29] = ACTIONS(1832), - [aux_sym_cmd_identifier_token30] = ACTIONS(1832), - [aux_sym_cmd_identifier_token31] = ACTIONS(1832), - [aux_sym_cmd_identifier_token32] = ACTIONS(1832), - [aux_sym_cmd_identifier_token33] = ACTIONS(1832), - [aux_sym_cmd_identifier_token34] = ACTIONS(1832), - [aux_sym_cmd_identifier_token35] = ACTIONS(1832), - [aux_sym_cmd_identifier_token36] = ACTIONS(1832), - [anon_sym_true] = ACTIONS(1834), - [anon_sym_false] = ACTIONS(1834), - [anon_sym_null] = ACTIONS(1834), - [aux_sym_cmd_identifier_token38] = ACTIONS(1832), - [aux_sym_cmd_identifier_token39] = ACTIONS(1834), - [aux_sym_cmd_identifier_token40] = ACTIONS(1834), - [anon_sym_def] = ACTIONS(1832), - [anon_sym_export_DASHenv] = ACTIONS(1832), - [anon_sym_extern] = ACTIONS(1832), - [anon_sym_module] = ACTIONS(1832), - [anon_sym_use] = ACTIONS(1832), - [anon_sym_LPAREN] = ACTIONS(1834), - [anon_sym_DOLLAR] = ACTIONS(1834), - [anon_sym_error] = ACTIONS(1832), - [anon_sym_list] = ACTIONS(1832), - [anon_sym_DASH] = ACTIONS(1832), - [anon_sym_break] = ACTIONS(1832), - [anon_sym_continue] = ACTIONS(1832), - [anon_sym_for] = ACTIONS(1832), - [anon_sym_in] = ACTIONS(1832), - [anon_sym_loop] = ACTIONS(1832), - [anon_sym_make] = ACTIONS(1832), - [anon_sym_while] = ACTIONS(1832), - [anon_sym_do] = ACTIONS(1832), - [anon_sym_if] = ACTIONS(1832), - [anon_sym_else] = ACTIONS(1832), - [anon_sym_match] = ACTIONS(1832), - [anon_sym_RBRACE] = ACTIONS(1834), - [anon_sym_try] = ACTIONS(1832), - [anon_sym_catch] = ACTIONS(1832), - [anon_sym_return] = ACTIONS(1832), - [anon_sym_source] = ACTIONS(1832), - [anon_sym_source_DASHenv] = ACTIONS(1832), - [anon_sym_register] = ACTIONS(1832), - [anon_sym_hide] = ACTIONS(1832), - [anon_sym_hide_DASHenv] = ACTIONS(1832), - [anon_sym_overlay] = ACTIONS(1832), - [anon_sym_new] = ACTIONS(1832), - [anon_sym_as] = ACTIONS(1832), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1834), - [anon_sym_DOT] = ACTIONS(1989), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1834), - [aux_sym__val_number_decimal_token1] = ACTIONS(1832), - [aux_sym__val_number_decimal_token2] = ACTIONS(1834), - [aux_sym__val_number_decimal_token3] = ACTIONS(1834), - [aux_sym__val_number_decimal_token4] = ACTIONS(1834), - [aux_sym__val_number_token1] = ACTIONS(1834), - [aux_sym__val_number_token2] = ACTIONS(1834), - [aux_sym__val_number_token3] = ACTIONS(1834), - [anon_sym_DQUOTE] = ACTIONS(1834), - [sym__str_single_quotes] = ACTIONS(1834), - [sym__str_back_ticks] = ACTIONS(1834), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1834), - [anon_sym_PLUS] = ACTIONS(1832), - [anon_sym_POUND] = ACTIONS(247), + [351] = { + [sym_comment] = STATE(351), + [anon_sym_export] = ACTIONS(1703), + [anon_sym_alias] = ACTIONS(1703), + [anon_sym_let] = ACTIONS(1703), + [anon_sym_let_DASHenv] = ACTIONS(1703), + [anon_sym_mut] = ACTIONS(1703), + [anon_sym_const] = ACTIONS(1703), + [aux_sym_cmd_identifier_token1] = ACTIONS(1703), + [aux_sym_cmd_identifier_token2] = ACTIONS(1703), + [aux_sym_cmd_identifier_token3] = ACTIONS(1703), + [aux_sym_cmd_identifier_token4] = ACTIONS(1703), + [aux_sym_cmd_identifier_token5] = ACTIONS(1703), + [aux_sym_cmd_identifier_token6] = ACTIONS(1703), + [aux_sym_cmd_identifier_token7] = ACTIONS(1703), + [aux_sym_cmd_identifier_token8] = ACTIONS(1703), + [aux_sym_cmd_identifier_token9] = ACTIONS(1703), + [aux_sym_cmd_identifier_token10] = ACTIONS(1703), + [aux_sym_cmd_identifier_token11] = ACTIONS(1703), + [aux_sym_cmd_identifier_token12] = ACTIONS(1703), + [aux_sym_cmd_identifier_token13] = ACTIONS(1703), + [aux_sym_cmd_identifier_token14] = ACTIONS(1703), + [aux_sym_cmd_identifier_token15] = ACTIONS(1703), + [aux_sym_cmd_identifier_token16] = ACTIONS(1703), + [aux_sym_cmd_identifier_token17] = ACTIONS(1703), + [aux_sym_cmd_identifier_token18] = ACTIONS(1703), + [aux_sym_cmd_identifier_token19] = ACTIONS(1703), + [aux_sym_cmd_identifier_token20] = ACTIONS(1703), + [aux_sym_cmd_identifier_token21] = ACTIONS(1703), + [aux_sym_cmd_identifier_token22] = ACTIONS(1703), + [aux_sym_cmd_identifier_token23] = ACTIONS(1703), + [aux_sym_cmd_identifier_token24] = ACTIONS(1703), + [aux_sym_cmd_identifier_token25] = ACTIONS(1703), + [aux_sym_cmd_identifier_token26] = ACTIONS(1703), + [aux_sym_cmd_identifier_token27] = ACTIONS(1703), + [aux_sym_cmd_identifier_token28] = ACTIONS(1703), + [aux_sym_cmd_identifier_token29] = ACTIONS(1703), + [aux_sym_cmd_identifier_token30] = ACTIONS(1703), + [aux_sym_cmd_identifier_token31] = ACTIONS(1703), + [aux_sym_cmd_identifier_token32] = ACTIONS(1703), + [aux_sym_cmd_identifier_token33] = ACTIONS(1703), + [aux_sym_cmd_identifier_token34] = ACTIONS(1703), + [aux_sym_cmd_identifier_token35] = ACTIONS(1703), + [aux_sym_cmd_identifier_token36] = ACTIONS(1703), + [anon_sym_true] = ACTIONS(1703), + [anon_sym_false] = ACTIONS(1703), + [anon_sym_null] = ACTIONS(1703), + [aux_sym_cmd_identifier_token38] = ACTIONS(1703), + [aux_sym_cmd_identifier_token39] = ACTIONS(1703), + [aux_sym_cmd_identifier_token40] = ACTIONS(1703), + [anon_sym_def] = ACTIONS(1703), + [anon_sym_export_DASHenv] = ACTIONS(1703), + [anon_sym_extern] = ACTIONS(1703), + [anon_sym_module] = ACTIONS(1703), + [anon_sym_use] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1703), + [anon_sym_error] = ACTIONS(1703), + [anon_sym_list] = ACTIONS(1703), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_break] = ACTIONS(1703), + [anon_sym_continue] = ACTIONS(1703), + [anon_sym_for] = ACTIONS(1703), + [anon_sym_in] = ACTIONS(1703), + [anon_sym_loop] = ACTIONS(1703), + [anon_sym_make] = ACTIONS(1703), + [anon_sym_while] = ACTIONS(1703), + [anon_sym_do] = ACTIONS(1703), + [anon_sym_if] = ACTIONS(1703), + [anon_sym_else] = ACTIONS(1703), + [anon_sym_match] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1703), + [anon_sym_try] = ACTIONS(1703), + [anon_sym_catch] = ACTIONS(1703), + [anon_sym_return] = ACTIONS(1703), + [anon_sym_source] = ACTIONS(1703), + [anon_sym_source_DASHenv] = ACTIONS(1703), + [anon_sym_register] = ACTIONS(1703), + [anon_sym_hide] = ACTIONS(1703), + [anon_sym_hide_DASHenv] = ACTIONS(1703), + [anon_sym_overlay] = ACTIONS(1703), + [anon_sym_new] = ACTIONS(1703), + [anon_sym_as] = ACTIONS(1703), + [anon_sym_LPAREN2] = ACTIONS(1705), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1703), + [aux_sym__immediate_decimal_token1] = ACTIONS(1905), + [aux_sym__immediate_decimal_token2] = ACTIONS(1907), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1703), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1703), + [sym__entry_separator] = ACTIONS(1705), + [anon_sym_PLUS] = ACTIONS(1703), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1705), }, - [413] = { - [sym_cmd_identifier] = STATE(4801), - [sym__expression] = STATE(3807), - [sym_expr_unary] = STATE(2430), - [sym__expr_unary_minus] = STATE(2432), - [sym_expr_binary] = STATE(2430), - [sym__expr_binary_expression] = STATE(3832), - [sym_expr_parenthesized] = STATE(2004), - [sym_val_range] = STATE(3821), - [sym__value] = STATE(2430), - [sym_val_nothing] = STATE(2399), - [sym_val_bool] = STATE(2399), - [sym_val_variable] = STATE(1994), - [sym_val_number] = STATE(2399), - [sym__val_number_decimal] = STATE(1568), - [sym__val_number] = STATE(2385), - [sym_val_duration] = STATE(2399), - [sym_val_filesize] = STATE(2399), - [sym_val_binary] = STATE(2399), - [sym_val_string] = STATE(2399), - [sym__str_double_quotes] = STATE(1975), - [sym_val_interpolated] = STATE(2399), - [sym__inter_single_quotes] = STATE(2384), - [sym__inter_double_quotes] = STATE(2390), - [sym_val_list] = STATE(2399), - [sym_val_record] = STATE(2399), - [sym_val_table] = STATE(2399), - [sym_val_closure] = STATE(2399), - [sym_env_var] = STATE(7340), - [sym_command] = STATE(5150), - [sym_comment] = STATE(413), - [aux_sym_pipe_element_repeat2] = STATE(1060), + [352] = { + [sym_cell_path] = STATE(629), + [sym_path] = STATE(518), + [sym_comment] = STATE(352), + [aux_sym_cell_path_repeat1] = STATE(411), + [anon_sym_export] = ACTIONS(1909), + [anon_sym_alias] = ACTIONS(1909), + [anon_sym_let] = ACTIONS(1909), + [anon_sym_let_DASHenv] = ACTIONS(1909), + [anon_sym_mut] = ACTIONS(1909), + [anon_sym_const] = ACTIONS(1909), + [aux_sym_cmd_identifier_token1] = ACTIONS(1909), + [aux_sym_cmd_identifier_token2] = ACTIONS(1909), + [aux_sym_cmd_identifier_token3] = ACTIONS(1909), + [aux_sym_cmd_identifier_token4] = ACTIONS(1909), + [aux_sym_cmd_identifier_token5] = ACTIONS(1909), + [aux_sym_cmd_identifier_token6] = ACTIONS(1909), + [aux_sym_cmd_identifier_token7] = ACTIONS(1909), + [aux_sym_cmd_identifier_token8] = ACTIONS(1909), + [aux_sym_cmd_identifier_token9] = ACTIONS(1909), + [aux_sym_cmd_identifier_token10] = ACTIONS(1909), + [aux_sym_cmd_identifier_token11] = ACTIONS(1909), + [aux_sym_cmd_identifier_token12] = ACTIONS(1909), + [aux_sym_cmd_identifier_token13] = ACTIONS(1909), + [aux_sym_cmd_identifier_token14] = ACTIONS(1909), + [aux_sym_cmd_identifier_token15] = ACTIONS(1909), + [aux_sym_cmd_identifier_token16] = ACTIONS(1909), + [aux_sym_cmd_identifier_token17] = ACTIONS(1909), + [aux_sym_cmd_identifier_token18] = ACTIONS(1909), + [aux_sym_cmd_identifier_token19] = ACTIONS(1909), + [aux_sym_cmd_identifier_token20] = ACTIONS(1909), + [aux_sym_cmd_identifier_token21] = ACTIONS(1909), + [aux_sym_cmd_identifier_token22] = ACTIONS(1909), + [aux_sym_cmd_identifier_token23] = ACTIONS(1909), + [aux_sym_cmd_identifier_token24] = ACTIONS(1909), + [aux_sym_cmd_identifier_token25] = ACTIONS(1909), + [aux_sym_cmd_identifier_token26] = ACTIONS(1909), + [aux_sym_cmd_identifier_token27] = ACTIONS(1909), + [aux_sym_cmd_identifier_token28] = ACTIONS(1909), + [aux_sym_cmd_identifier_token29] = ACTIONS(1909), + [aux_sym_cmd_identifier_token30] = ACTIONS(1909), + [aux_sym_cmd_identifier_token31] = ACTIONS(1909), + [aux_sym_cmd_identifier_token32] = ACTIONS(1909), + [aux_sym_cmd_identifier_token33] = ACTIONS(1909), + [aux_sym_cmd_identifier_token34] = ACTIONS(1909), + [aux_sym_cmd_identifier_token35] = ACTIONS(1909), + [aux_sym_cmd_identifier_token36] = ACTIONS(1909), + [anon_sym_true] = ACTIONS(1909), + [anon_sym_false] = ACTIONS(1909), + [anon_sym_null] = ACTIONS(1909), + [aux_sym_cmd_identifier_token38] = ACTIONS(1909), + [aux_sym_cmd_identifier_token39] = ACTIONS(1909), + [aux_sym_cmd_identifier_token40] = ACTIONS(1909), + [anon_sym_def] = ACTIONS(1909), + [anon_sym_export_DASHenv] = ACTIONS(1909), + [anon_sym_extern] = ACTIONS(1909), + [anon_sym_module] = ACTIONS(1909), + [anon_sym_use] = ACTIONS(1909), + [anon_sym_LPAREN] = ACTIONS(1909), + [anon_sym_DOLLAR] = ACTIONS(1909), + [anon_sym_error] = ACTIONS(1909), + [anon_sym_list] = ACTIONS(1909), + [anon_sym_DASH] = ACTIONS(1909), + [anon_sym_break] = ACTIONS(1909), + [anon_sym_continue] = ACTIONS(1909), + [anon_sym_for] = ACTIONS(1909), + [anon_sym_in] = ACTIONS(1909), + [anon_sym_loop] = ACTIONS(1909), + [anon_sym_make] = ACTIONS(1909), + [anon_sym_while] = ACTIONS(1909), + [anon_sym_do] = ACTIONS(1909), + [anon_sym_if] = ACTIONS(1909), + [anon_sym_else] = ACTIONS(1909), + [anon_sym_match] = ACTIONS(1909), + [anon_sym_RBRACE] = ACTIONS(1909), + [anon_sym_try] = ACTIONS(1909), + [anon_sym_catch] = ACTIONS(1909), + [anon_sym_return] = ACTIONS(1909), + [anon_sym_source] = ACTIONS(1909), + [anon_sym_source_DASHenv] = ACTIONS(1909), + [anon_sym_register] = ACTIONS(1909), + [anon_sym_hide] = ACTIONS(1909), + [anon_sym_hide_DASHenv] = ACTIONS(1909), + [anon_sym_overlay] = ACTIONS(1909), + [anon_sym_new] = ACTIONS(1909), + [anon_sym_as] = ACTIONS(1909), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1909), + [anon_sym_DOT] = ACTIONS(1856), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1909), + [aux_sym__val_number_decimal_token1] = ACTIONS(1909), + [aux_sym__val_number_decimal_token2] = ACTIONS(1909), + [aux_sym__val_number_decimal_token3] = ACTIONS(1909), + [aux_sym__val_number_decimal_token4] = ACTIONS(1909), + [aux_sym__val_number_token1] = ACTIONS(1909), + [aux_sym__val_number_token2] = ACTIONS(1909), + [aux_sym__val_number_token3] = ACTIONS(1909), + [anon_sym_DQUOTE] = ACTIONS(1909), + [sym__str_single_quotes] = ACTIONS(1909), + [sym__str_back_ticks] = ACTIONS(1909), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1909), + [sym__entry_separator] = ACTIONS(1911), + [anon_sym_PLUS] = ACTIONS(1909), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1911), + }, + [353] = { + [sym_comment] = STATE(353), + [anon_sym_export] = ACTIONS(1715), + [anon_sym_alias] = ACTIONS(1715), + [anon_sym_let] = ACTIONS(1715), + [anon_sym_let_DASHenv] = ACTIONS(1715), + [anon_sym_mut] = ACTIONS(1715), + [anon_sym_const] = ACTIONS(1715), + [aux_sym_cmd_identifier_token1] = ACTIONS(1715), + [aux_sym_cmd_identifier_token2] = ACTIONS(1715), + [aux_sym_cmd_identifier_token3] = ACTIONS(1715), + [aux_sym_cmd_identifier_token4] = ACTIONS(1715), + [aux_sym_cmd_identifier_token5] = ACTIONS(1715), + [aux_sym_cmd_identifier_token6] = ACTIONS(1715), + [aux_sym_cmd_identifier_token7] = ACTIONS(1715), + [aux_sym_cmd_identifier_token8] = ACTIONS(1715), + [aux_sym_cmd_identifier_token9] = ACTIONS(1715), + [aux_sym_cmd_identifier_token10] = ACTIONS(1715), + [aux_sym_cmd_identifier_token11] = ACTIONS(1715), + [aux_sym_cmd_identifier_token12] = ACTIONS(1715), + [aux_sym_cmd_identifier_token13] = ACTIONS(1715), + [aux_sym_cmd_identifier_token14] = ACTIONS(1715), + [aux_sym_cmd_identifier_token15] = ACTIONS(1715), + [aux_sym_cmd_identifier_token16] = ACTIONS(1715), + [aux_sym_cmd_identifier_token17] = ACTIONS(1715), + [aux_sym_cmd_identifier_token18] = ACTIONS(1715), + [aux_sym_cmd_identifier_token19] = ACTIONS(1715), + [aux_sym_cmd_identifier_token20] = ACTIONS(1715), + [aux_sym_cmd_identifier_token21] = ACTIONS(1715), + [aux_sym_cmd_identifier_token22] = ACTIONS(1715), + [aux_sym_cmd_identifier_token23] = ACTIONS(1715), + [aux_sym_cmd_identifier_token24] = ACTIONS(1715), + [aux_sym_cmd_identifier_token25] = ACTIONS(1715), + [aux_sym_cmd_identifier_token26] = ACTIONS(1715), + [aux_sym_cmd_identifier_token27] = ACTIONS(1715), + [aux_sym_cmd_identifier_token28] = ACTIONS(1715), + [aux_sym_cmd_identifier_token29] = ACTIONS(1715), + [aux_sym_cmd_identifier_token30] = ACTIONS(1715), + [aux_sym_cmd_identifier_token31] = ACTIONS(1715), + [aux_sym_cmd_identifier_token32] = ACTIONS(1715), + [aux_sym_cmd_identifier_token33] = ACTIONS(1715), + [aux_sym_cmd_identifier_token34] = ACTIONS(1715), + [aux_sym_cmd_identifier_token35] = ACTIONS(1715), + [aux_sym_cmd_identifier_token36] = ACTIONS(1715), + [anon_sym_true] = ACTIONS(1715), + [anon_sym_false] = ACTIONS(1715), + [anon_sym_null] = ACTIONS(1715), + [aux_sym_cmd_identifier_token38] = ACTIONS(1715), + [aux_sym_cmd_identifier_token39] = ACTIONS(1715), + [aux_sym_cmd_identifier_token40] = ACTIONS(1715), + [anon_sym_def] = ACTIONS(1715), + [anon_sym_export_DASHenv] = ACTIONS(1715), + [anon_sym_extern] = ACTIONS(1715), + [anon_sym_module] = ACTIONS(1715), + [anon_sym_use] = ACTIONS(1715), + [anon_sym_LPAREN] = ACTIONS(1715), + [anon_sym_DOLLAR] = ACTIONS(1715), + [anon_sym_error] = ACTIONS(1715), + [anon_sym_list] = ACTIONS(1715), + [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_break] = ACTIONS(1715), + [anon_sym_continue] = ACTIONS(1715), + [anon_sym_for] = ACTIONS(1715), + [anon_sym_in] = ACTIONS(1715), + [anon_sym_loop] = ACTIONS(1715), + [anon_sym_make] = ACTIONS(1715), + [anon_sym_while] = ACTIONS(1715), + [anon_sym_do] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1715), + [anon_sym_else] = ACTIONS(1715), + [anon_sym_match] = ACTIONS(1715), + [anon_sym_RBRACE] = ACTIONS(1715), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_catch] = ACTIONS(1715), + [anon_sym_return] = ACTIONS(1715), + [anon_sym_source] = ACTIONS(1715), + [anon_sym_source_DASHenv] = ACTIONS(1715), + [anon_sym_register] = ACTIONS(1715), + [anon_sym_hide] = ACTIONS(1715), + [anon_sym_hide_DASHenv] = ACTIONS(1715), + [anon_sym_overlay] = ACTIONS(1715), + [anon_sym_new] = ACTIONS(1715), + [anon_sym_as] = ACTIONS(1715), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1715), + [anon_sym_DOT_DOT2] = ACTIONS(1715), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1717), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1717), + [aux_sym__immediate_decimal_token2] = ACTIONS(1840), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1715), + [aux_sym__val_number_decimal_token1] = ACTIONS(1715), + [aux_sym__val_number_decimal_token2] = ACTIONS(1715), + [aux_sym__val_number_decimal_token3] = ACTIONS(1715), + [aux_sym__val_number_decimal_token4] = ACTIONS(1715), + [aux_sym__val_number_token1] = ACTIONS(1715), + [aux_sym__val_number_token2] = ACTIONS(1715), + [aux_sym__val_number_token3] = ACTIONS(1715), + [anon_sym_DQUOTE] = ACTIONS(1715), + [sym__str_single_quotes] = ACTIONS(1715), + [sym__str_back_ticks] = ACTIONS(1715), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1715), + [sym__entry_separator] = ACTIONS(1717), + [anon_sym_PLUS] = ACTIONS(1715), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1717), + }, + [354] = { + [sym_cmd_identifier] = STATE(4714), + [sym__expression] = STATE(3855), + [sym_expr_unary] = STATE(2509), + [sym__expr_unary_minus] = STATE(2510), + [sym_expr_binary] = STATE(2509), + [sym__expr_binary_expression] = STATE(3876), + [sym_expr_parenthesized] = STATE(2042), + [sym_val_range] = STATE(3900), + [sym__value] = STATE(2509), + [sym_val_nothing] = STATE(2441), + [sym_val_bool] = STATE(2441), + [sym_val_variable] = STATE(2055), + [sym_val_number] = STATE(2441), + [sym__val_number_decimal] = STATE(1665), + [sym__val_number] = STATE(2488), + [sym_val_duration] = STATE(2441), + [sym_val_filesize] = STATE(2441), + [sym_val_binary] = STATE(2441), + [sym_val_string] = STATE(2441), + [sym__raw_str] = STATE(2065), + [sym__str_double_quotes] = STATE(2065), + [sym_val_interpolated] = STATE(2441), + [sym__inter_single_quotes] = STATE(2563), + [sym__inter_double_quotes] = STATE(2436), + [sym_val_list] = STATE(2441), + [sym_val_record] = STATE(2441), + [sym_val_table] = STATE(2441), + [sym_val_closure] = STATE(2441), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5170), + [sym_comment] = STATE(354), + [aux_sym_pipe_element_repeat2] = STATE(1075), [aux_sym_cmd_identifier_token1] = ACTIONS(19), [aux_sym_cmd_identifier_token2] = ACTIONS(21), [aux_sym_cmd_identifier_token3] = ACTIONS(21), @@ -122783,3185 +118032,4604 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), [aux_sym_env_var_token1] = ACTIONS(119), [anon_sym_CARET] = ACTIONS(121), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(123), }, - [414] = { - [sym_comment] = STATE(414), - [anon_sym_export] = ACTIONS(1721), - [anon_sym_alias] = ACTIONS(1721), - [anon_sym_let] = ACTIONS(1721), - [anon_sym_let_DASHenv] = ACTIONS(1721), - [anon_sym_mut] = ACTIONS(1721), - [anon_sym_const] = ACTIONS(1721), - [aux_sym_cmd_identifier_token1] = ACTIONS(1721), - [aux_sym_cmd_identifier_token2] = ACTIONS(1721), - [aux_sym_cmd_identifier_token3] = ACTIONS(1721), - [aux_sym_cmd_identifier_token4] = ACTIONS(1721), - [aux_sym_cmd_identifier_token5] = ACTIONS(1721), - [aux_sym_cmd_identifier_token6] = ACTIONS(1721), - [aux_sym_cmd_identifier_token7] = ACTIONS(1721), - [aux_sym_cmd_identifier_token8] = ACTIONS(1721), - [aux_sym_cmd_identifier_token9] = ACTIONS(1721), - [aux_sym_cmd_identifier_token10] = ACTIONS(1721), - [aux_sym_cmd_identifier_token11] = ACTIONS(1721), - [aux_sym_cmd_identifier_token12] = ACTIONS(1721), - [aux_sym_cmd_identifier_token13] = ACTIONS(1721), - [aux_sym_cmd_identifier_token14] = ACTIONS(1721), - [aux_sym_cmd_identifier_token15] = ACTIONS(1721), - [aux_sym_cmd_identifier_token16] = ACTIONS(1721), - [aux_sym_cmd_identifier_token17] = ACTIONS(1721), - [aux_sym_cmd_identifier_token18] = ACTIONS(1721), - [aux_sym_cmd_identifier_token19] = ACTIONS(1721), - [aux_sym_cmd_identifier_token20] = ACTIONS(1721), - [aux_sym_cmd_identifier_token21] = ACTIONS(1721), - [aux_sym_cmd_identifier_token22] = ACTIONS(1721), - [aux_sym_cmd_identifier_token23] = ACTIONS(1721), - [aux_sym_cmd_identifier_token24] = ACTIONS(1721), - [aux_sym_cmd_identifier_token25] = ACTIONS(1721), - [aux_sym_cmd_identifier_token26] = ACTIONS(1721), - [aux_sym_cmd_identifier_token27] = ACTIONS(1721), - [aux_sym_cmd_identifier_token28] = ACTIONS(1721), - [aux_sym_cmd_identifier_token29] = ACTIONS(1721), - [aux_sym_cmd_identifier_token30] = ACTIONS(1721), - [aux_sym_cmd_identifier_token31] = ACTIONS(1721), - [aux_sym_cmd_identifier_token32] = ACTIONS(1721), - [aux_sym_cmd_identifier_token33] = ACTIONS(1721), - [aux_sym_cmd_identifier_token34] = ACTIONS(1721), - [aux_sym_cmd_identifier_token35] = ACTIONS(1721), - [aux_sym_cmd_identifier_token36] = ACTIONS(1721), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [anon_sym_null] = ACTIONS(1721), - [aux_sym_cmd_identifier_token38] = ACTIONS(1721), - [aux_sym_cmd_identifier_token39] = ACTIONS(1721), - [aux_sym_cmd_identifier_token40] = ACTIONS(1721), - [anon_sym_def] = ACTIONS(1721), - [anon_sym_export_DASHenv] = ACTIONS(1721), - [anon_sym_extern] = ACTIONS(1721), - [anon_sym_module] = ACTIONS(1721), - [anon_sym_use] = ACTIONS(1721), - [anon_sym_LPAREN] = ACTIONS(1721), - [anon_sym_DOLLAR] = ACTIONS(1721), - [anon_sym_error] = ACTIONS(1721), - [anon_sym_list] = ACTIONS(1721), - [anon_sym_DASH] = ACTIONS(1721), - [anon_sym_break] = ACTIONS(1721), - [anon_sym_continue] = ACTIONS(1721), - [anon_sym_for] = ACTIONS(1721), - [anon_sym_in] = ACTIONS(1721), - [anon_sym_loop] = ACTIONS(1721), - [anon_sym_make] = ACTIONS(1721), - [anon_sym_while] = ACTIONS(1721), - [anon_sym_do] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1721), - [anon_sym_else] = ACTIONS(1721), - [anon_sym_match] = ACTIONS(1721), - [anon_sym_RBRACE] = ACTIONS(1721), - [anon_sym_try] = ACTIONS(1721), - [anon_sym_catch] = ACTIONS(1721), - [anon_sym_return] = ACTIONS(1721), - [anon_sym_source] = ACTIONS(1721), - [anon_sym_source_DASHenv] = ACTIONS(1721), - [anon_sym_register] = ACTIONS(1721), - [anon_sym_hide] = ACTIONS(1721), - [anon_sym_hide_DASHenv] = ACTIONS(1721), - [anon_sym_overlay] = ACTIONS(1721), - [anon_sym_new] = ACTIONS(1721), - [anon_sym_as] = ACTIONS(1721), - [anon_sym_LPAREN2] = ACTIONS(1723), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1721), - [aux_sym__immediate_decimal_token2] = ACTIONS(2121), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1721), - [aux_sym__val_number_decimal_token1] = ACTIONS(1721), - [aux_sym__val_number_decimal_token2] = ACTIONS(1721), - [aux_sym__val_number_decimal_token3] = ACTIONS(1721), - [aux_sym__val_number_decimal_token4] = ACTIONS(1721), - [aux_sym__val_number_token1] = ACTIONS(1721), - [aux_sym__val_number_token2] = ACTIONS(1721), - [aux_sym__val_number_token3] = ACTIONS(1721), - [anon_sym_DQUOTE] = ACTIONS(1721), - [sym__str_single_quotes] = ACTIONS(1721), - [sym__str_back_ticks] = ACTIONS(1721), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1721), - [sym__entry_separator] = ACTIONS(1723), - [anon_sym_PLUS] = ACTIONS(1721), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1721), + [355] = { + [sym_comment] = STATE(355), + [anon_sym_export] = ACTIONS(1715), + [anon_sym_alias] = ACTIONS(1715), + [anon_sym_let] = ACTIONS(1715), + [anon_sym_let_DASHenv] = ACTIONS(1715), + [anon_sym_mut] = ACTIONS(1715), + [anon_sym_const] = ACTIONS(1715), + [aux_sym_cmd_identifier_token1] = ACTIONS(1715), + [aux_sym_cmd_identifier_token2] = ACTIONS(1715), + [aux_sym_cmd_identifier_token3] = ACTIONS(1715), + [aux_sym_cmd_identifier_token4] = ACTIONS(1715), + [aux_sym_cmd_identifier_token5] = ACTIONS(1715), + [aux_sym_cmd_identifier_token6] = ACTIONS(1715), + [aux_sym_cmd_identifier_token7] = ACTIONS(1715), + [aux_sym_cmd_identifier_token8] = ACTIONS(1715), + [aux_sym_cmd_identifier_token9] = ACTIONS(1715), + [aux_sym_cmd_identifier_token10] = ACTIONS(1715), + [aux_sym_cmd_identifier_token11] = ACTIONS(1715), + [aux_sym_cmd_identifier_token12] = ACTIONS(1715), + [aux_sym_cmd_identifier_token13] = ACTIONS(1715), + [aux_sym_cmd_identifier_token14] = ACTIONS(1715), + [aux_sym_cmd_identifier_token15] = ACTIONS(1715), + [aux_sym_cmd_identifier_token16] = ACTIONS(1715), + [aux_sym_cmd_identifier_token17] = ACTIONS(1715), + [aux_sym_cmd_identifier_token18] = ACTIONS(1715), + [aux_sym_cmd_identifier_token19] = ACTIONS(1715), + [aux_sym_cmd_identifier_token20] = ACTIONS(1715), + [aux_sym_cmd_identifier_token21] = ACTIONS(1715), + [aux_sym_cmd_identifier_token22] = ACTIONS(1715), + [aux_sym_cmd_identifier_token23] = ACTIONS(1715), + [aux_sym_cmd_identifier_token24] = ACTIONS(1715), + [aux_sym_cmd_identifier_token25] = ACTIONS(1715), + [aux_sym_cmd_identifier_token26] = ACTIONS(1715), + [aux_sym_cmd_identifier_token27] = ACTIONS(1715), + [aux_sym_cmd_identifier_token28] = ACTIONS(1715), + [aux_sym_cmd_identifier_token29] = ACTIONS(1715), + [aux_sym_cmd_identifier_token30] = ACTIONS(1715), + [aux_sym_cmd_identifier_token31] = ACTIONS(1715), + [aux_sym_cmd_identifier_token32] = ACTIONS(1715), + [aux_sym_cmd_identifier_token33] = ACTIONS(1715), + [aux_sym_cmd_identifier_token34] = ACTIONS(1715), + [aux_sym_cmd_identifier_token35] = ACTIONS(1715), + [aux_sym_cmd_identifier_token36] = ACTIONS(1715), + [anon_sym_true] = ACTIONS(1717), + [anon_sym_false] = ACTIONS(1717), + [anon_sym_null] = ACTIONS(1717), + [aux_sym_cmd_identifier_token38] = ACTIONS(1715), + [aux_sym_cmd_identifier_token39] = ACTIONS(1717), + [aux_sym_cmd_identifier_token40] = ACTIONS(1717), + [anon_sym_def] = ACTIONS(1715), + [anon_sym_export_DASHenv] = ACTIONS(1715), + [anon_sym_extern] = ACTIONS(1715), + [anon_sym_module] = ACTIONS(1715), + [anon_sym_use] = ACTIONS(1715), + [anon_sym_LPAREN] = ACTIONS(1717), + [anon_sym_DOLLAR] = ACTIONS(1717), + [anon_sym_error] = ACTIONS(1715), + [anon_sym_list] = ACTIONS(1715), + [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_break] = ACTIONS(1715), + [anon_sym_continue] = ACTIONS(1715), + [anon_sym_for] = ACTIONS(1715), + [anon_sym_in] = ACTIONS(1715), + [anon_sym_loop] = ACTIONS(1715), + [anon_sym_make] = ACTIONS(1715), + [anon_sym_while] = ACTIONS(1715), + [anon_sym_do] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1715), + [anon_sym_else] = ACTIONS(1715), + [anon_sym_match] = ACTIONS(1715), + [anon_sym_RBRACE] = ACTIONS(1717), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_catch] = ACTIONS(1715), + [anon_sym_return] = ACTIONS(1715), + [anon_sym_source] = ACTIONS(1715), + [anon_sym_source_DASHenv] = ACTIONS(1715), + [anon_sym_register] = ACTIONS(1715), + [anon_sym_hide] = ACTIONS(1715), + [anon_sym_hide_DASHenv] = ACTIONS(1715), + [anon_sym_overlay] = ACTIONS(1715), + [anon_sym_new] = ACTIONS(1715), + [anon_sym_as] = ACTIONS(1715), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1717), + [anon_sym_DOT_DOT2] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1913), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1717), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1717), + [aux_sym__immediate_decimal_token2] = ACTIONS(1915), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1717), + [aux_sym__val_number_decimal_token1] = ACTIONS(1715), + [aux_sym__val_number_decimal_token2] = ACTIONS(1717), + [aux_sym__val_number_decimal_token3] = ACTIONS(1717), + [aux_sym__val_number_decimal_token4] = ACTIONS(1717), + [aux_sym__val_number_token1] = ACTIONS(1717), + [aux_sym__val_number_token2] = ACTIONS(1717), + [aux_sym__val_number_token3] = ACTIONS(1717), + [anon_sym_DQUOTE] = ACTIONS(1717), + [sym__str_single_quotes] = ACTIONS(1717), + [sym__str_back_ticks] = ACTIONS(1717), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1717), + [anon_sym_PLUS] = ACTIONS(1715), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1717), + }, + [356] = { + [sym_comment] = STATE(356), + [anon_sym_export] = ACTIONS(1715), + [anon_sym_alias] = ACTIONS(1715), + [anon_sym_let] = ACTIONS(1715), + [anon_sym_let_DASHenv] = ACTIONS(1715), + [anon_sym_mut] = ACTIONS(1715), + [anon_sym_const] = ACTIONS(1715), + [aux_sym_cmd_identifier_token1] = ACTIONS(1715), + [aux_sym_cmd_identifier_token2] = ACTIONS(1715), + [aux_sym_cmd_identifier_token3] = ACTIONS(1715), + [aux_sym_cmd_identifier_token4] = ACTIONS(1715), + [aux_sym_cmd_identifier_token5] = ACTIONS(1715), + [aux_sym_cmd_identifier_token6] = ACTIONS(1715), + [aux_sym_cmd_identifier_token7] = ACTIONS(1715), + [aux_sym_cmd_identifier_token8] = ACTIONS(1715), + [aux_sym_cmd_identifier_token9] = ACTIONS(1715), + [aux_sym_cmd_identifier_token10] = ACTIONS(1715), + [aux_sym_cmd_identifier_token11] = ACTIONS(1715), + [aux_sym_cmd_identifier_token12] = ACTIONS(1715), + [aux_sym_cmd_identifier_token13] = ACTIONS(1715), + [aux_sym_cmd_identifier_token14] = ACTIONS(1715), + [aux_sym_cmd_identifier_token15] = ACTIONS(1715), + [aux_sym_cmd_identifier_token16] = ACTIONS(1715), + [aux_sym_cmd_identifier_token17] = ACTIONS(1715), + [aux_sym_cmd_identifier_token18] = ACTIONS(1715), + [aux_sym_cmd_identifier_token19] = ACTIONS(1715), + [aux_sym_cmd_identifier_token20] = ACTIONS(1715), + [aux_sym_cmd_identifier_token21] = ACTIONS(1715), + [aux_sym_cmd_identifier_token22] = ACTIONS(1715), + [aux_sym_cmd_identifier_token23] = ACTIONS(1715), + [aux_sym_cmd_identifier_token24] = ACTIONS(1715), + [aux_sym_cmd_identifier_token25] = ACTIONS(1715), + [aux_sym_cmd_identifier_token26] = ACTIONS(1715), + [aux_sym_cmd_identifier_token27] = ACTIONS(1715), + [aux_sym_cmd_identifier_token28] = ACTIONS(1715), + [aux_sym_cmd_identifier_token29] = ACTIONS(1715), + [aux_sym_cmd_identifier_token30] = ACTIONS(1715), + [aux_sym_cmd_identifier_token31] = ACTIONS(1715), + [aux_sym_cmd_identifier_token32] = ACTIONS(1715), + [aux_sym_cmd_identifier_token33] = ACTIONS(1715), + [aux_sym_cmd_identifier_token34] = ACTIONS(1715), + [aux_sym_cmd_identifier_token35] = ACTIONS(1715), + [aux_sym_cmd_identifier_token36] = ACTIONS(1715), + [anon_sym_true] = ACTIONS(1715), + [anon_sym_false] = ACTIONS(1715), + [anon_sym_null] = ACTIONS(1715), + [aux_sym_cmd_identifier_token38] = ACTIONS(1715), + [aux_sym_cmd_identifier_token39] = ACTIONS(1715), + [aux_sym_cmd_identifier_token40] = ACTIONS(1715), + [anon_sym_def] = ACTIONS(1715), + [anon_sym_export_DASHenv] = ACTIONS(1715), + [anon_sym_extern] = ACTIONS(1715), + [anon_sym_module] = ACTIONS(1715), + [anon_sym_use] = ACTIONS(1715), + [anon_sym_LPAREN] = ACTIONS(1715), + [anon_sym_DOLLAR] = ACTIONS(1715), + [anon_sym_error] = ACTIONS(1715), + [anon_sym_list] = ACTIONS(1715), + [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_break] = ACTIONS(1715), + [anon_sym_continue] = ACTIONS(1715), + [anon_sym_for] = ACTIONS(1715), + [anon_sym_in] = ACTIONS(1715), + [anon_sym_loop] = ACTIONS(1715), + [anon_sym_make] = ACTIONS(1715), + [anon_sym_while] = ACTIONS(1715), + [anon_sym_do] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1715), + [anon_sym_else] = ACTIONS(1715), + [anon_sym_match] = ACTIONS(1715), + [anon_sym_RBRACE] = ACTIONS(1715), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_catch] = ACTIONS(1715), + [anon_sym_return] = ACTIONS(1715), + [anon_sym_source] = ACTIONS(1715), + [anon_sym_source_DASHenv] = ACTIONS(1715), + [anon_sym_register] = ACTIONS(1715), + [anon_sym_hide] = ACTIONS(1715), + [anon_sym_hide_DASHenv] = ACTIONS(1715), + [anon_sym_overlay] = ACTIONS(1715), + [anon_sym_new] = ACTIONS(1715), + [anon_sym_as] = ACTIONS(1715), + [anon_sym_LPAREN2] = ACTIONS(1717), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(1917), + [aux_sym__immediate_decimal_token2] = ACTIONS(1919), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1715), + [aux_sym__val_number_decimal_token1] = ACTIONS(1715), + [aux_sym__val_number_decimal_token2] = ACTIONS(1715), + [aux_sym__val_number_decimal_token3] = ACTIONS(1715), + [aux_sym__val_number_decimal_token4] = ACTIONS(1715), + [aux_sym__val_number_token1] = ACTIONS(1715), + [aux_sym__val_number_token2] = ACTIONS(1715), + [aux_sym__val_number_token3] = ACTIONS(1715), + [anon_sym_DQUOTE] = ACTIONS(1715), + [sym__str_single_quotes] = ACTIONS(1715), + [sym__str_back_ticks] = ACTIONS(1715), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1715), + [sym__entry_separator] = ACTIONS(1717), + [anon_sym_PLUS] = ACTIONS(1715), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1715), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1717), }, - [415] = { - [sym_cmd_identifier] = STATE(4801), - [sym_ctrl_if] = STATE(5057), - [sym_block] = STATE(5058), - [sym__expression] = STATE(5058), - [sym_expr_unary] = STATE(2430), - [sym__expr_unary_minus] = STATE(2432), - [sym_expr_binary] = STATE(2430), - [sym__expr_binary_expression] = STATE(3833), - [sym_expr_parenthesized] = STATE(2004), - [sym_val_range] = STATE(3821), - [sym__value] = STATE(2430), - [sym_val_nothing] = STATE(2399), - [sym_val_bool] = STATE(2399), - [sym_val_variable] = STATE(1994), - [sym_val_number] = STATE(2399), - [sym__val_number_decimal] = STATE(3097), - [sym__val_number] = STATE(2385), - [sym_val_duration] = STATE(2399), - [sym_val_filesize] = STATE(2399), - [sym_val_binary] = STATE(2399), - [sym_val_string] = STATE(2399), - [sym__str_double_quotes] = STATE(1975), - [sym_val_interpolated] = STATE(2399), - [sym__inter_single_quotes] = STATE(2384), - [sym__inter_double_quotes] = STATE(2390), - [sym_val_list] = STATE(2399), - [sym_val_record] = STATE(2399), - [sym_val_table] = STATE(2399), - [sym_val_closure] = STATE(2399), - [sym_command] = STATE(5058), - [sym_comment] = STATE(415), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [aux_sym_cmd_identifier_token2] = ACTIONS(21), - [aux_sym_cmd_identifier_token3] = ACTIONS(21), - [aux_sym_cmd_identifier_token4] = ACTIONS(21), - [aux_sym_cmd_identifier_token5] = ACTIONS(21), - [aux_sym_cmd_identifier_token6] = ACTIONS(21), - [aux_sym_cmd_identifier_token7] = ACTIONS(21), - [aux_sym_cmd_identifier_token8] = ACTIONS(21), - [aux_sym_cmd_identifier_token9] = ACTIONS(19), - [aux_sym_cmd_identifier_token10] = ACTIONS(21), - [aux_sym_cmd_identifier_token11] = ACTIONS(21), - [aux_sym_cmd_identifier_token12] = ACTIONS(21), - [aux_sym_cmd_identifier_token13] = ACTIONS(19), - [aux_sym_cmd_identifier_token14] = ACTIONS(21), - [aux_sym_cmd_identifier_token15] = ACTIONS(19), - [aux_sym_cmd_identifier_token16] = ACTIONS(21), - [aux_sym_cmd_identifier_token17] = ACTIONS(21), - [aux_sym_cmd_identifier_token18] = ACTIONS(21), - [aux_sym_cmd_identifier_token19] = ACTIONS(21), - [aux_sym_cmd_identifier_token20] = ACTIONS(21), - [aux_sym_cmd_identifier_token21] = ACTIONS(21), - [aux_sym_cmd_identifier_token22] = ACTIONS(21), - [aux_sym_cmd_identifier_token23] = ACTIONS(19), - [aux_sym_cmd_identifier_token24] = ACTIONS(21), - [aux_sym_cmd_identifier_token25] = ACTIONS(21), - [aux_sym_cmd_identifier_token26] = ACTIONS(21), - [aux_sym_cmd_identifier_token27] = ACTIONS(21), - [aux_sym_cmd_identifier_token28] = ACTIONS(21), - [aux_sym_cmd_identifier_token29] = ACTIONS(21), - [aux_sym_cmd_identifier_token30] = ACTIONS(21), - [aux_sym_cmd_identifier_token31] = ACTIONS(21), - [aux_sym_cmd_identifier_token32] = ACTIONS(21), - [aux_sym_cmd_identifier_token33] = ACTIONS(21), - [aux_sym_cmd_identifier_token34] = ACTIONS(21), - [aux_sym_cmd_identifier_token35] = ACTIONS(21), - [aux_sym_cmd_identifier_token36] = ACTIONS(19), - [anon_sym_true] = ACTIONS(2123), - [anon_sym_false] = ACTIONS(2123), - [anon_sym_null] = ACTIONS(2125), - [aux_sym_cmd_identifier_token38] = ACTIONS(2127), - [aux_sym_cmd_identifier_token39] = ACTIONS(2129), - [aux_sym_cmd_identifier_token40] = ACTIONS(2129), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(47), - [anon_sym_DOLLAR] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_if] = ACTIONS(67), - [anon_sym_LBRACE] = ACTIONS(2131), - [anon_sym_DOT_DOT] = ACTIONS(73), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(93), - [anon_sym_DOT_DOT_LT] = ACTIONS(93), - [aux_sym__val_number_decimal_token1] = ACTIONS(2133), - [aux_sym__val_number_decimal_token2] = ACTIONS(2135), - [aux_sym__val_number_decimal_token3] = ACTIONS(2137), - [aux_sym__val_number_decimal_token4] = ACTIONS(2139), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(109), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(121), - [anon_sym_POUND] = ACTIONS(247), + [357] = { + [sym_comment] = STATE(357), + [anon_sym_export] = ACTIONS(1921), + [anon_sym_alias] = ACTIONS(1921), + [anon_sym_let] = ACTIONS(1921), + [anon_sym_let_DASHenv] = ACTIONS(1921), + [anon_sym_mut] = ACTIONS(1921), + [anon_sym_const] = ACTIONS(1921), + [aux_sym_cmd_identifier_token1] = ACTIONS(1921), + [aux_sym_cmd_identifier_token2] = ACTIONS(1921), + [aux_sym_cmd_identifier_token3] = ACTIONS(1921), + [aux_sym_cmd_identifier_token4] = ACTIONS(1921), + [aux_sym_cmd_identifier_token5] = ACTIONS(1921), + [aux_sym_cmd_identifier_token6] = ACTIONS(1921), + [aux_sym_cmd_identifier_token7] = ACTIONS(1921), + [aux_sym_cmd_identifier_token8] = ACTIONS(1921), + [aux_sym_cmd_identifier_token9] = ACTIONS(1921), + [aux_sym_cmd_identifier_token10] = ACTIONS(1921), + [aux_sym_cmd_identifier_token11] = ACTIONS(1921), + [aux_sym_cmd_identifier_token12] = ACTIONS(1921), + [aux_sym_cmd_identifier_token13] = ACTIONS(1921), + [aux_sym_cmd_identifier_token14] = ACTIONS(1921), + [aux_sym_cmd_identifier_token15] = ACTIONS(1921), + [aux_sym_cmd_identifier_token16] = ACTIONS(1921), + [aux_sym_cmd_identifier_token17] = ACTIONS(1921), + [aux_sym_cmd_identifier_token18] = ACTIONS(1921), + [aux_sym_cmd_identifier_token19] = ACTIONS(1921), + [aux_sym_cmd_identifier_token20] = ACTIONS(1921), + [aux_sym_cmd_identifier_token21] = ACTIONS(1921), + [aux_sym_cmd_identifier_token22] = ACTIONS(1921), + [aux_sym_cmd_identifier_token23] = ACTIONS(1921), + [aux_sym_cmd_identifier_token24] = ACTIONS(1923), + [aux_sym_cmd_identifier_token25] = ACTIONS(1921), + [aux_sym_cmd_identifier_token26] = ACTIONS(1923), + [aux_sym_cmd_identifier_token27] = ACTIONS(1921), + [aux_sym_cmd_identifier_token28] = ACTIONS(1921), + [aux_sym_cmd_identifier_token29] = ACTIONS(1921), + [aux_sym_cmd_identifier_token30] = ACTIONS(1921), + [aux_sym_cmd_identifier_token31] = ACTIONS(1923), + [aux_sym_cmd_identifier_token32] = ACTIONS(1923), + [aux_sym_cmd_identifier_token33] = ACTIONS(1923), + [aux_sym_cmd_identifier_token34] = ACTIONS(1923), + [aux_sym_cmd_identifier_token35] = ACTIONS(1923), + [aux_sym_cmd_identifier_token36] = ACTIONS(1921), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [anon_sym_null] = ACTIONS(1923), + [aux_sym_cmd_identifier_token38] = ACTIONS(1921), + [aux_sym_cmd_identifier_token39] = ACTIONS(1923), + [aux_sym_cmd_identifier_token40] = ACTIONS(1923), + [sym__newline] = ACTIONS(1923), + [anon_sym_SEMI] = ACTIONS(1923), + [anon_sym_def] = ACTIONS(1921), + [anon_sym_export_DASHenv] = ACTIONS(1921), + [anon_sym_extern] = ACTIONS(1921), + [anon_sym_module] = ACTIONS(1921), + [anon_sym_use] = ACTIONS(1921), + [anon_sym_LBRACK] = ACTIONS(1923), + [anon_sym_LPAREN] = ACTIONS(1923), + [anon_sym_DOLLAR] = ACTIONS(1921), + [anon_sym_error] = ACTIONS(1921), + [anon_sym_DASH] = ACTIONS(1921), + [anon_sym_break] = ACTIONS(1921), + [anon_sym_continue] = ACTIONS(1921), + [anon_sym_for] = ACTIONS(1921), + [anon_sym_loop] = ACTIONS(1921), + [anon_sym_while] = ACTIONS(1921), + [anon_sym_do] = ACTIONS(1921), + [anon_sym_if] = ACTIONS(1921), + [anon_sym_match] = ACTIONS(1921), + [anon_sym_LBRACE] = ACTIONS(1923), + [anon_sym_DOT_DOT] = ACTIONS(1921), + [anon_sym_try] = ACTIONS(1921), + [anon_sym_return] = ACTIONS(1921), + [anon_sym_source] = ACTIONS(1921), + [anon_sym_source_DASHenv] = ACTIONS(1921), + [anon_sym_register] = ACTIONS(1921), + [anon_sym_hide] = ACTIONS(1921), + [anon_sym_hide_DASHenv] = ACTIONS(1921), + [anon_sym_overlay] = ACTIONS(1921), + [anon_sym_where] = ACTIONS(1923), + [aux_sym_expr_unary_token1] = ACTIONS(1923), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1923), + [anon_sym_DOT_DOT_LT] = ACTIONS(1923), + [aux_sym__val_number_decimal_token1] = ACTIONS(1921), + [aux_sym__val_number_decimal_token2] = ACTIONS(1923), + [aux_sym__val_number_decimal_token3] = ACTIONS(1923), + [aux_sym__val_number_decimal_token4] = ACTIONS(1923), + [aux_sym__val_number_token1] = ACTIONS(1923), + [aux_sym__val_number_token2] = ACTIONS(1923), + [aux_sym__val_number_token3] = ACTIONS(1923), + [anon_sym_0b] = ACTIONS(1921), + [anon_sym_0o] = ACTIONS(1921), + [anon_sym_0x] = ACTIONS(1921), + [sym_val_date] = ACTIONS(1923), + [anon_sym_DQUOTE] = ACTIONS(1923), + [sym__str_single_quotes] = ACTIONS(1923), + [sym__str_back_ticks] = ACTIONS(1923), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1923), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1923), + [aux_sym_env_var_token1] = ACTIONS(1921), + [anon_sym_CARET] = ACTIONS(1923), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1923), }, - [416] = { - [sym_cell_path] = STATE(646), - [sym_path] = STATE(578), - [sym_comment] = STATE(416), - [aux_sym_cell_path_repeat1] = STATE(459), - [anon_sym_export] = ACTIONS(1005), - [anon_sym_alias] = ACTIONS(1005), - [anon_sym_let] = ACTIONS(1005), - [anon_sym_let_DASHenv] = ACTIONS(1005), - [anon_sym_mut] = ACTIONS(1005), - [anon_sym_const] = ACTIONS(1005), - [aux_sym_cmd_identifier_token1] = ACTIONS(1005), - [aux_sym_cmd_identifier_token2] = ACTIONS(1005), - [aux_sym_cmd_identifier_token3] = ACTIONS(1005), - [aux_sym_cmd_identifier_token4] = ACTIONS(1005), - [aux_sym_cmd_identifier_token5] = ACTIONS(1005), - [aux_sym_cmd_identifier_token6] = ACTIONS(1005), - [aux_sym_cmd_identifier_token7] = ACTIONS(1005), - [aux_sym_cmd_identifier_token8] = ACTIONS(1005), - [aux_sym_cmd_identifier_token9] = ACTIONS(1005), - [aux_sym_cmd_identifier_token10] = ACTIONS(1005), - [aux_sym_cmd_identifier_token11] = ACTIONS(1005), - [aux_sym_cmd_identifier_token12] = ACTIONS(1005), - [aux_sym_cmd_identifier_token13] = ACTIONS(1005), - [aux_sym_cmd_identifier_token14] = ACTIONS(1005), - [aux_sym_cmd_identifier_token15] = ACTIONS(1005), - [aux_sym_cmd_identifier_token16] = ACTIONS(1005), - [aux_sym_cmd_identifier_token17] = ACTIONS(1005), - [aux_sym_cmd_identifier_token18] = ACTIONS(1005), - [aux_sym_cmd_identifier_token19] = ACTIONS(1005), - [aux_sym_cmd_identifier_token20] = ACTIONS(1005), - [aux_sym_cmd_identifier_token21] = ACTIONS(1005), - [aux_sym_cmd_identifier_token22] = ACTIONS(1005), - [aux_sym_cmd_identifier_token23] = ACTIONS(1005), - [aux_sym_cmd_identifier_token24] = ACTIONS(1005), - [aux_sym_cmd_identifier_token25] = ACTIONS(1005), - [aux_sym_cmd_identifier_token26] = ACTIONS(1005), - [aux_sym_cmd_identifier_token27] = ACTIONS(1005), - [aux_sym_cmd_identifier_token28] = ACTIONS(1005), - [aux_sym_cmd_identifier_token29] = ACTIONS(1005), - [aux_sym_cmd_identifier_token30] = ACTIONS(1005), - [aux_sym_cmd_identifier_token31] = ACTIONS(1005), - [aux_sym_cmd_identifier_token32] = ACTIONS(1005), - [aux_sym_cmd_identifier_token33] = ACTIONS(1005), - [aux_sym_cmd_identifier_token34] = ACTIONS(1005), - [aux_sym_cmd_identifier_token35] = ACTIONS(1005), - [aux_sym_cmd_identifier_token36] = ACTIONS(1005), - [anon_sym_true] = ACTIONS(1007), - [anon_sym_false] = ACTIONS(1007), - [anon_sym_null] = ACTIONS(1007), - [aux_sym_cmd_identifier_token38] = ACTIONS(1005), - [aux_sym_cmd_identifier_token39] = ACTIONS(1007), - [aux_sym_cmd_identifier_token40] = ACTIONS(1007), - [anon_sym_def] = ACTIONS(1005), - [anon_sym_export_DASHenv] = ACTIONS(1005), - [anon_sym_extern] = ACTIONS(1005), - [anon_sym_module] = ACTIONS(1005), - [anon_sym_use] = ACTIONS(1005), - [anon_sym_LPAREN] = ACTIONS(1007), - [anon_sym_DOLLAR] = ACTIONS(1007), - [anon_sym_error] = ACTIONS(1005), - [anon_sym_list] = ACTIONS(1005), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_break] = ACTIONS(1005), - [anon_sym_continue] = ACTIONS(1005), - [anon_sym_for] = ACTIONS(1005), - [anon_sym_in] = ACTIONS(1005), - [anon_sym_loop] = ACTIONS(1005), - [anon_sym_make] = ACTIONS(1005), - [anon_sym_while] = ACTIONS(1005), - [anon_sym_do] = ACTIONS(1005), - [anon_sym_if] = ACTIONS(1005), - [anon_sym_else] = ACTIONS(1005), - [anon_sym_match] = ACTIONS(1005), - [anon_sym_RBRACE] = ACTIONS(1007), - [anon_sym_try] = ACTIONS(1005), - [anon_sym_catch] = ACTIONS(1005), - [anon_sym_return] = ACTIONS(1005), - [anon_sym_source] = ACTIONS(1005), - [anon_sym_source_DASHenv] = ACTIONS(1005), - [anon_sym_register] = ACTIONS(1005), - [anon_sym_hide] = ACTIONS(1005), - [anon_sym_hide_DASHenv] = ACTIONS(1005), - [anon_sym_overlay] = ACTIONS(1005), - [anon_sym_new] = ACTIONS(1005), - [anon_sym_as] = ACTIONS(1005), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1007), - [anon_sym_DOT] = ACTIONS(1989), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1007), - [aux_sym__val_number_decimal_token1] = ACTIONS(1005), - [aux_sym__val_number_decimal_token2] = ACTIONS(1007), - [aux_sym__val_number_decimal_token3] = ACTIONS(1007), - [aux_sym__val_number_decimal_token4] = ACTIONS(1007), - [aux_sym__val_number_token1] = ACTIONS(1007), - [aux_sym__val_number_token2] = ACTIONS(1007), - [aux_sym__val_number_token3] = ACTIONS(1007), - [anon_sym_DQUOTE] = ACTIONS(1007), - [sym__str_single_quotes] = ACTIONS(1007), - [sym__str_back_ticks] = ACTIONS(1007), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1007), - [anon_sym_PLUS] = ACTIONS(1005), - [anon_sym_POUND] = ACTIONS(247), + [358] = { + [sym_cmd_identifier] = STATE(4817), + [sym__expression_parenthesized] = STATE(3847), + [sym_expr_unary] = STATE(2318), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2318), + [sym__expr_binary_expression_parenthesized] = STATE(3834), + [sym_expr_parenthesized] = STATE(2053), + [sym_val_range] = STATE(3856), + [sym__value] = STATE(2318), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2358), + [sym_val_variable] = STATE(2028), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1674), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_env_var] = STATE(7384), + [sym__command_parenthesized] = STATE(5133), + [sym_comment] = STATE(358), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1078), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(373), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(467), + [anon_sym_false] = ACTIONS(467), + [anon_sym_null] = ACTIONS(469), + [aux_sym_cmd_identifier_token38] = ACTIONS(471), + [aux_sym_cmd_identifier_token39] = ACTIONS(473), + [aux_sym_cmd_identifier_token40] = ACTIONS(473), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(477), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(193), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(503), + [aux_sym__val_number_decimal_token2] = ACTIONS(505), + [aux_sym__val_number_decimal_token3] = ACTIONS(507), + [aux_sym__val_number_decimal_token4] = ACTIONS(509), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(517), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, - [417] = { - [sym_cell_path] = STATE(648), - [sym_path] = STATE(578), - [sym_comment] = STATE(417), - [aux_sym_cell_path_repeat1] = STATE(459), - [anon_sym_export] = ACTIONS(1931), - [anon_sym_alias] = ACTIONS(1931), - [anon_sym_let] = ACTIONS(1931), - [anon_sym_let_DASHenv] = ACTIONS(1931), - [anon_sym_mut] = ACTIONS(1931), - [anon_sym_const] = ACTIONS(1931), - [aux_sym_cmd_identifier_token1] = ACTIONS(1931), - [aux_sym_cmd_identifier_token2] = ACTIONS(1931), - [aux_sym_cmd_identifier_token3] = ACTIONS(1931), - [aux_sym_cmd_identifier_token4] = ACTIONS(1931), - [aux_sym_cmd_identifier_token5] = ACTIONS(1931), - [aux_sym_cmd_identifier_token6] = ACTIONS(1931), - [aux_sym_cmd_identifier_token7] = ACTIONS(1931), - [aux_sym_cmd_identifier_token8] = ACTIONS(1931), - [aux_sym_cmd_identifier_token9] = ACTIONS(1931), - [aux_sym_cmd_identifier_token10] = ACTIONS(1931), - [aux_sym_cmd_identifier_token11] = ACTIONS(1931), - [aux_sym_cmd_identifier_token12] = ACTIONS(1931), - [aux_sym_cmd_identifier_token13] = ACTIONS(1931), - [aux_sym_cmd_identifier_token14] = ACTIONS(1931), - [aux_sym_cmd_identifier_token15] = ACTIONS(1931), - [aux_sym_cmd_identifier_token16] = ACTIONS(1931), - [aux_sym_cmd_identifier_token17] = ACTIONS(1931), - [aux_sym_cmd_identifier_token18] = ACTIONS(1931), - [aux_sym_cmd_identifier_token19] = ACTIONS(1931), - [aux_sym_cmd_identifier_token20] = ACTIONS(1931), - [aux_sym_cmd_identifier_token21] = ACTIONS(1931), - [aux_sym_cmd_identifier_token22] = ACTIONS(1931), - [aux_sym_cmd_identifier_token23] = ACTIONS(1931), - [aux_sym_cmd_identifier_token24] = ACTIONS(1931), - [aux_sym_cmd_identifier_token25] = ACTIONS(1931), - [aux_sym_cmd_identifier_token26] = ACTIONS(1931), - [aux_sym_cmd_identifier_token27] = ACTIONS(1931), - [aux_sym_cmd_identifier_token28] = ACTIONS(1931), - [aux_sym_cmd_identifier_token29] = ACTIONS(1931), - [aux_sym_cmd_identifier_token30] = ACTIONS(1931), - [aux_sym_cmd_identifier_token31] = ACTIONS(1931), - [aux_sym_cmd_identifier_token32] = ACTIONS(1931), - [aux_sym_cmd_identifier_token33] = ACTIONS(1931), - [aux_sym_cmd_identifier_token34] = ACTIONS(1931), - [aux_sym_cmd_identifier_token35] = ACTIONS(1931), - [aux_sym_cmd_identifier_token36] = ACTIONS(1931), + [359] = { + [sym_comment] = STATE(359), + [anon_sym_export] = ACTIONS(1925), + [anon_sym_alias] = ACTIONS(1925), + [anon_sym_let] = ACTIONS(1925), + [anon_sym_let_DASHenv] = ACTIONS(1925), + [anon_sym_mut] = ACTIONS(1925), + [anon_sym_const] = ACTIONS(1925), + [aux_sym_cmd_identifier_token1] = ACTIONS(1925), + [aux_sym_cmd_identifier_token2] = ACTIONS(1925), + [aux_sym_cmd_identifier_token3] = ACTIONS(1925), + [aux_sym_cmd_identifier_token4] = ACTIONS(1925), + [aux_sym_cmd_identifier_token5] = ACTIONS(1925), + [aux_sym_cmd_identifier_token6] = ACTIONS(1925), + [aux_sym_cmd_identifier_token7] = ACTIONS(1925), + [aux_sym_cmd_identifier_token8] = ACTIONS(1925), + [aux_sym_cmd_identifier_token9] = ACTIONS(1925), + [aux_sym_cmd_identifier_token10] = ACTIONS(1925), + [aux_sym_cmd_identifier_token11] = ACTIONS(1925), + [aux_sym_cmd_identifier_token12] = ACTIONS(1925), + [aux_sym_cmd_identifier_token13] = ACTIONS(1925), + [aux_sym_cmd_identifier_token14] = ACTIONS(1925), + [aux_sym_cmd_identifier_token15] = ACTIONS(1925), + [aux_sym_cmd_identifier_token16] = ACTIONS(1925), + [aux_sym_cmd_identifier_token17] = ACTIONS(1925), + [aux_sym_cmd_identifier_token18] = ACTIONS(1925), + [aux_sym_cmd_identifier_token19] = ACTIONS(1925), + [aux_sym_cmd_identifier_token20] = ACTIONS(1925), + [aux_sym_cmd_identifier_token21] = ACTIONS(1925), + [aux_sym_cmd_identifier_token22] = ACTIONS(1925), + [aux_sym_cmd_identifier_token23] = ACTIONS(1925), + [aux_sym_cmd_identifier_token24] = ACTIONS(1927), + [aux_sym_cmd_identifier_token25] = ACTIONS(1925), + [aux_sym_cmd_identifier_token26] = ACTIONS(1927), + [aux_sym_cmd_identifier_token27] = ACTIONS(1925), + [aux_sym_cmd_identifier_token28] = ACTIONS(1925), + [aux_sym_cmd_identifier_token29] = ACTIONS(1925), + [aux_sym_cmd_identifier_token30] = ACTIONS(1925), + [aux_sym_cmd_identifier_token31] = ACTIONS(1927), + [aux_sym_cmd_identifier_token32] = ACTIONS(1927), + [aux_sym_cmd_identifier_token33] = ACTIONS(1927), + [aux_sym_cmd_identifier_token34] = ACTIONS(1927), + [aux_sym_cmd_identifier_token35] = ACTIONS(1927), + [aux_sym_cmd_identifier_token36] = ACTIONS(1925), + [anon_sym_true] = ACTIONS(1927), + [anon_sym_false] = ACTIONS(1927), + [anon_sym_null] = ACTIONS(1927), + [aux_sym_cmd_identifier_token38] = ACTIONS(1925), + [aux_sym_cmd_identifier_token39] = ACTIONS(1927), + [aux_sym_cmd_identifier_token40] = ACTIONS(1927), + [sym__newline] = ACTIONS(1927), + [anon_sym_SEMI] = ACTIONS(1927), + [anon_sym_def] = ACTIONS(1925), + [anon_sym_export_DASHenv] = ACTIONS(1925), + [anon_sym_extern] = ACTIONS(1925), + [anon_sym_module] = ACTIONS(1925), + [anon_sym_use] = ACTIONS(1925), + [anon_sym_LBRACK] = ACTIONS(1927), + [anon_sym_LPAREN] = ACTIONS(1927), + [anon_sym_DOLLAR] = ACTIONS(1925), + [anon_sym_error] = ACTIONS(1925), + [anon_sym_DASH] = ACTIONS(1925), + [anon_sym_break] = ACTIONS(1925), + [anon_sym_continue] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(1925), + [anon_sym_loop] = ACTIONS(1925), + [anon_sym_while] = ACTIONS(1925), + [anon_sym_do] = ACTIONS(1925), + [anon_sym_if] = ACTIONS(1925), + [anon_sym_match] = ACTIONS(1925), + [anon_sym_LBRACE] = ACTIONS(1927), + [anon_sym_DOT_DOT] = ACTIONS(1925), + [anon_sym_try] = ACTIONS(1925), + [anon_sym_return] = ACTIONS(1925), + [anon_sym_source] = ACTIONS(1925), + [anon_sym_source_DASHenv] = ACTIONS(1925), + [anon_sym_register] = ACTIONS(1925), + [anon_sym_hide] = ACTIONS(1925), + [anon_sym_hide_DASHenv] = ACTIONS(1925), + [anon_sym_overlay] = ACTIONS(1925), + [anon_sym_where] = ACTIONS(1927), + [aux_sym_expr_unary_token1] = ACTIONS(1927), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1927), + [anon_sym_DOT_DOT_LT] = ACTIONS(1927), + [aux_sym__val_number_decimal_token1] = ACTIONS(1925), + [aux_sym__val_number_decimal_token2] = ACTIONS(1927), + [aux_sym__val_number_decimal_token3] = ACTIONS(1927), + [aux_sym__val_number_decimal_token4] = ACTIONS(1927), + [aux_sym__val_number_token1] = ACTIONS(1927), + [aux_sym__val_number_token2] = ACTIONS(1927), + [aux_sym__val_number_token3] = ACTIONS(1927), + [anon_sym_0b] = ACTIONS(1925), + [anon_sym_0o] = ACTIONS(1925), + [anon_sym_0x] = ACTIONS(1925), + [sym_val_date] = ACTIONS(1927), + [anon_sym_DQUOTE] = ACTIONS(1927), + [sym__str_single_quotes] = ACTIONS(1927), + [sym__str_back_ticks] = ACTIONS(1927), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1927), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1927), + [aux_sym_env_var_token1] = ACTIONS(1925), + [anon_sym_CARET] = ACTIONS(1927), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1927), + }, + [360] = { + [sym_cell_path] = STATE(619), + [sym_path] = STATE(518), + [sym_comment] = STATE(360), + [aux_sym_cell_path_repeat1] = STATE(411), + [anon_sym_export] = ACTIONS(1929), + [anon_sym_alias] = ACTIONS(1929), + [anon_sym_let] = ACTIONS(1929), + [anon_sym_let_DASHenv] = ACTIONS(1929), + [anon_sym_mut] = ACTIONS(1929), + [anon_sym_const] = ACTIONS(1929), + [aux_sym_cmd_identifier_token1] = ACTIONS(1929), + [aux_sym_cmd_identifier_token2] = ACTIONS(1929), + [aux_sym_cmd_identifier_token3] = ACTIONS(1929), + [aux_sym_cmd_identifier_token4] = ACTIONS(1929), + [aux_sym_cmd_identifier_token5] = ACTIONS(1929), + [aux_sym_cmd_identifier_token6] = ACTIONS(1929), + [aux_sym_cmd_identifier_token7] = ACTIONS(1929), + [aux_sym_cmd_identifier_token8] = ACTIONS(1929), + [aux_sym_cmd_identifier_token9] = ACTIONS(1929), + [aux_sym_cmd_identifier_token10] = ACTIONS(1929), + [aux_sym_cmd_identifier_token11] = ACTIONS(1929), + [aux_sym_cmd_identifier_token12] = ACTIONS(1929), + [aux_sym_cmd_identifier_token13] = ACTIONS(1929), + [aux_sym_cmd_identifier_token14] = ACTIONS(1929), + [aux_sym_cmd_identifier_token15] = ACTIONS(1929), + [aux_sym_cmd_identifier_token16] = ACTIONS(1929), + [aux_sym_cmd_identifier_token17] = ACTIONS(1929), + [aux_sym_cmd_identifier_token18] = ACTIONS(1929), + [aux_sym_cmd_identifier_token19] = ACTIONS(1929), + [aux_sym_cmd_identifier_token20] = ACTIONS(1929), + [aux_sym_cmd_identifier_token21] = ACTIONS(1929), + [aux_sym_cmd_identifier_token22] = ACTIONS(1929), + [aux_sym_cmd_identifier_token23] = ACTIONS(1929), + [aux_sym_cmd_identifier_token24] = ACTIONS(1929), + [aux_sym_cmd_identifier_token25] = ACTIONS(1929), + [aux_sym_cmd_identifier_token26] = ACTIONS(1929), + [aux_sym_cmd_identifier_token27] = ACTIONS(1929), + [aux_sym_cmd_identifier_token28] = ACTIONS(1929), + [aux_sym_cmd_identifier_token29] = ACTIONS(1929), + [aux_sym_cmd_identifier_token30] = ACTIONS(1929), + [aux_sym_cmd_identifier_token31] = ACTIONS(1929), + [aux_sym_cmd_identifier_token32] = ACTIONS(1929), + [aux_sym_cmd_identifier_token33] = ACTIONS(1929), + [aux_sym_cmd_identifier_token34] = ACTIONS(1929), + [aux_sym_cmd_identifier_token35] = ACTIONS(1929), + [aux_sym_cmd_identifier_token36] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(1929), + [anon_sym_false] = ACTIONS(1929), + [anon_sym_null] = ACTIONS(1929), + [aux_sym_cmd_identifier_token38] = ACTIONS(1929), + [aux_sym_cmd_identifier_token39] = ACTIONS(1929), + [aux_sym_cmd_identifier_token40] = ACTIONS(1929), + [anon_sym_def] = ACTIONS(1929), + [anon_sym_export_DASHenv] = ACTIONS(1929), + [anon_sym_extern] = ACTIONS(1929), + [anon_sym_module] = ACTIONS(1929), + [anon_sym_use] = ACTIONS(1929), + [anon_sym_LPAREN] = ACTIONS(1929), + [anon_sym_DOLLAR] = ACTIONS(1929), + [anon_sym_error] = ACTIONS(1929), + [anon_sym_list] = ACTIONS(1929), + [anon_sym_DASH] = ACTIONS(1929), + [anon_sym_break] = ACTIONS(1929), + [anon_sym_continue] = ACTIONS(1929), + [anon_sym_for] = ACTIONS(1929), + [anon_sym_in] = ACTIONS(1929), + [anon_sym_loop] = ACTIONS(1929), + [anon_sym_make] = ACTIONS(1929), + [anon_sym_while] = ACTIONS(1929), + [anon_sym_do] = ACTIONS(1929), + [anon_sym_if] = ACTIONS(1929), + [anon_sym_else] = ACTIONS(1929), + [anon_sym_match] = ACTIONS(1929), + [anon_sym_RBRACE] = ACTIONS(1929), + [anon_sym_try] = ACTIONS(1929), + [anon_sym_catch] = ACTIONS(1929), + [anon_sym_return] = ACTIONS(1929), + [anon_sym_source] = ACTIONS(1929), + [anon_sym_source_DASHenv] = ACTIONS(1929), + [anon_sym_register] = ACTIONS(1929), + [anon_sym_hide] = ACTIONS(1929), + [anon_sym_hide_DASHenv] = ACTIONS(1929), + [anon_sym_overlay] = ACTIONS(1929), + [anon_sym_new] = ACTIONS(1929), + [anon_sym_as] = ACTIONS(1929), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1929), + [anon_sym_DOT] = ACTIONS(1856), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1929), + [aux_sym__val_number_decimal_token1] = ACTIONS(1929), + [aux_sym__val_number_decimal_token2] = ACTIONS(1929), + [aux_sym__val_number_decimal_token3] = ACTIONS(1929), + [aux_sym__val_number_decimal_token4] = ACTIONS(1929), + [aux_sym__val_number_token1] = ACTIONS(1929), + [aux_sym__val_number_token2] = ACTIONS(1929), + [aux_sym__val_number_token3] = ACTIONS(1929), + [anon_sym_DQUOTE] = ACTIONS(1929), + [sym__str_single_quotes] = ACTIONS(1929), + [sym__str_back_ticks] = ACTIONS(1929), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1929), + [sym__entry_separator] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(1929), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1931), + }, + [361] = { + [sym_cmd_identifier] = STATE(4616), + [sym__expression] = STATE(3837), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3884), + [sym_expr_parenthesized] = STATE(1922), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(1929), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1569), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_env_var] = STATE(7513), + [sym_command] = STATE(5027), + [sym_comment] = STATE(361), + [aux_sym_pipe_element_repeat2] = STATE(1075), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(373), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(375), + [anon_sym_false] = ACTIONS(375), + [anon_sym_null] = ACTIONS(377), + [aux_sym_cmd_identifier_token38] = ACTIONS(379), + [aux_sym_cmd_identifier_token39] = ACTIONS(381), + [aux_sym_cmd_identifier_token40] = ACTIONS(381), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(193), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(435), + [aux_sym__val_number_decimal_token2] = ACTIONS(437), + [aux_sym__val_number_decimal_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token4] = ACTIONS(441), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_env_var_token1] = ACTIONS(119), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), + }, + [362] = { + [sym_expr_parenthesized] = STATE(4363), + [sym__spread_parenthesized] = STATE(4752), + [sym_val_range] = STATE(4754), + [sym__val_range] = STATE(7973), + [sym__val_range_with_end] = STATE(7533), + [sym__value] = STATE(4754), + [sym_val_nothing] = STATE(4718), + [sym_val_bool] = STATE(4461), + [sym__spread_variable] = STATE(4769), + [sym_val_variable] = STATE(4330), + [sym_val_number] = STATE(4718), + [sym__val_number_decimal] = STATE(3996), + [sym__val_number] = STATE(4796), + [sym_val_duration] = STATE(4718), + [sym_val_filesize] = STATE(4718), + [sym_val_binary] = STATE(4718), + [sym_val_string] = STATE(4718), + [sym__raw_str] = STATE(4414), + [sym__str_double_quotes] = STATE(4414), + [sym_val_interpolated] = STATE(4718), + [sym__inter_single_quotes] = STATE(4787), + [sym__inter_double_quotes] = STATE(4810), + [sym_val_list] = STATE(4718), + [sym__spread_list] = STATE(4752), + [sym_val_record] = STATE(4718), + [sym_val_table] = STATE(4718), + [sym_val_closure] = STATE(4718), + [sym__cmd_arg] = STATE(4774), + [sym_redirection] = STATE(4791), + [sym__flag] = STATE(4798), + [sym_short_flag] = STATE(4826), + [sym_long_flag] = STATE(4826), + [sym_unquoted] = STATE(4556), + [sym__unquoted_with_expr] = STATE(4807), + [sym__unquoted_anonymous_prefix] = STATE(7039), + [sym_comment] = STATE(362), [anon_sym_true] = ACTIONS(1933), [anon_sym_false] = ACTIONS(1933), - [anon_sym_null] = ACTIONS(1933), - [aux_sym_cmd_identifier_token38] = ACTIONS(1931), - [aux_sym_cmd_identifier_token39] = ACTIONS(1933), - [aux_sym_cmd_identifier_token40] = ACTIONS(1933), - [anon_sym_def] = ACTIONS(1931), - [anon_sym_export_DASHenv] = ACTIONS(1931), - [anon_sym_extern] = ACTIONS(1931), - [anon_sym_module] = ACTIONS(1931), - [anon_sym_use] = ACTIONS(1931), - [anon_sym_LPAREN] = ACTIONS(1933), - [anon_sym_DOLLAR] = ACTIONS(1933), - [anon_sym_error] = ACTIONS(1931), - [anon_sym_list] = ACTIONS(1931), - [anon_sym_DASH] = ACTIONS(1931), - [anon_sym_break] = ACTIONS(1931), - [anon_sym_continue] = ACTIONS(1931), - [anon_sym_for] = ACTIONS(1931), - [anon_sym_in] = ACTIONS(1931), - [anon_sym_loop] = ACTIONS(1931), - [anon_sym_make] = ACTIONS(1931), - [anon_sym_while] = ACTIONS(1931), - [anon_sym_do] = ACTIONS(1931), - [anon_sym_if] = ACTIONS(1931), - [anon_sym_else] = ACTIONS(1931), - [anon_sym_match] = ACTIONS(1931), - [anon_sym_RBRACE] = ACTIONS(1933), - [anon_sym_try] = ACTIONS(1931), - [anon_sym_catch] = ACTIONS(1931), - [anon_sym_return] = ACTIONS(1931), - [anon_sym_source] = ACTIONS(1931), - [anon_sym_source_DASHenv] = ACTIONS(1931), - [anon_sym_register] = ACTIONS(1931), - [anon_sym_hide] = ACTIONS(1931), - [anon_sym_hide_DASHenv] = ACTIONS(1931), - [anon_sym_overlay] = ACTIONS(1931), - [anon_sym_new] = ACTIONS(1931), - [anon_sym_as] = ACTIONS(1931), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1933), - [anon_sym_DOT] = ACTIONS(1989), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1931), - [aux_sym__val_number_decimal_token2] = ACTIONS(1933), - [aux_sym__val_number_decimal_token3] = ACTIONS(1933), - [aux_sym__val_number_decimal_token4] = ACTIONS(1933), - [aux_sym__val_number_token1] = ACTIONS(1933), - [aux_sym__val_number_token2] = ACTIONS(1933), - [aux_sym__val_number_token3] = ACTIONS(1933), - [anon_sym_DQUOTE] = ACTIONS(1933), - [sym__str_single_quotes] = ACTIONS(1933), - [sym__str_back_ticks] = ACTIONS(1933), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1933), - [anon_sym_PLUS] = ACTIONS(1931), - [anon_sym_POUND] = ACTIONS(247), - }, - [418] = { - [sym_comment] = STATE(418), - [anon_sym_export] = ACTIONS(1675), - [anon_sym_alias] = ACTIONS(1675), - [anon_sym_let] = ACTIONS(1675), - [anon_sym_let_DASHenv] = ACTIONS(1675), - [anon_sym_mut] = ACTIONS(1675), - [anon_sym_const] = ACTIONS(1675), - [aux_sym_cmd_identifier_token1] = ACTIONS(1675), - [aux_sym_cmd_identifier_token2] = ACTIONS(1675), - [aux_sym_cmd_identifier_token3] = ACTIONS(1675), - [aux_sym_cmd_identifier_token4] = ACTIONS(1675), - [aux_sym_cmd_identifier_token5] = ACTIONS(1675), - [aux_sym_cmd_identifier_token6] = ACTIONS(1675), - [aux_sym_cmd_identifier_token7] = ACTIONS(1675), - [aux_sym_cmd_identifier_token8] = ACTIONS(1675), - [aux_sym_cmd_identifier_token9] = ACTIONS(1675), - [aux_sym_cmd_identifier_token10] = ACTIONS(1675), - [aux_sym_cmd_identifier_token11] = ACTIONS(1675), - [aux_sym_cmd_identifier_token12] = ACTIONS(1675), - [aux_sym_cmd_identifier_token13] = ACTIONS(1675), - [aux_sym_cmd_identifier_token14] = ACTIONS(1675), - [aux_sym_cmd_identifier_token15] = ACTIONS(1675), - [aux_sym_cmd_identifier_token16] = ACTIONS(1675), - [aux_sym_cmd_identifier_token17] = ACTIONS(1675), - [aux_sym_cmd_identifier_token18] = ACTIONS(1675), - [aux_sym_cmd_identifier_token19] = ACTIONS(1675), - [aux_sym_cmd_identifier_token20] = ACTIONS(1675), - [aux_sym_cmd_identifier_token21] = ACTIONS(1675), - [aux_sym_cmd_identifier_token22] = ACTIONS(1675), - [aux_sym_cmd_identifier_token23] = ACTIONS(1675), - [aux_sym_cmd_identifier_token24] = ACTIONS(1675), - [aux_sym_cmd_identifier_token25] = ACTIONS(1675), - [aux_sym_cmd_identifier_token26] = ACTIONS(1675), - [aux_sym_cmd_identifier_token27] = ACTIONS(1675), - [aux_sym_cmd_identifier_token28] = ACTIONS(1675), - [aux_sym_cmd_identifier_token29] = ACTIONS(1675), - [aux_sym_cmd_identifier_token30] = ACTIONS(1675), - [aux_sym_cmd_identifier_token31] = ACTIONS(1675), - [aux_sym_cmd_identifier_token32] = ACTIONS(1675), - [aux_sym_cmd_identifier_token33] = ACTIONS(1675), - [aux_sym_cmd_identifier_token34] = ACTIONS(1675), - [aux_sym_cmd_identifier_token35] = ACTIONS(1675), - [aux_sym_cmd_identifier_token36] = ACTIONS(1675), - [anon_sym_true] = ACTIONS(1675), - [anon_sym_false] = ACTIONS(1675), - [anon_sym_null] = ACTIONS(1675), - [aux_sym_cmd_identifier_token38] = ACTIONS(1675), - [aux_sym_cmd_identifier_token39] = ACTIONS(1675), - [aux_sym_cmd_identifier_token40] = ACTIONS(1675), - [anon_sym_def] = ACTIONS(1675), - [anon_sym_export_DASHenv] = ACTIONS(1675), - [anon_sym_extern] = ACTIONS(1675), - [anon_sym_module] = ACTIONS(1675), - [anon_sym_use] = ACTIONS(1675), - [anon_sym_LPAREN] = ACTIONS(1675), - [anon_sym_DOLLAR] = ACTIONS(1675), - [anon_sym_error] = ACTIONS(1675), - [anon_sym_list] = ACTIONS(1675), - [anon_sym_DASH] = ACTIONS(1675), - [anon_sym_break] = ACTIONS(1675), - [anon_sym_continue] = ACTIONS(1675), - [anon_sym_for] = ACTIONS(1675), - [anon_sym_in] = ACTIONS(1675), - [anon_sym_loop] = ACTIONS(1675), - [anon_sym_make] = ACTIONS(1675), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_do] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1675), - [anon_sym_else] = ACTIONS(1675), - [anon_sym_match] = ACTIONS(1675), - [anon_sym_RBRACE] = ACTIONS(1675), - [anon_sym_try] = ACTIONS(1675), - [anon_sym_catch] = ACTIONS(1675), - [anon_sym_return] = ACTIONS(1675), - [anon_sym_source] = ACTIONS(1675), - [anon_sym_source_DASHenv] = ACTIONS(1675), - [anon_sym_register] = ACTIONS(1675), - [anon_sym_hide] = ACTIONS(1675), - [anon_sym_hide_DASHenv] = ACTIONS(1675), - [anon_sym_overlay] = ACTIONS(1675), - [anon_sym_new] = ACTIONS(1675), - [anon_sym_as] = ACTIONS(1675), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1675), - [anon_sym_DOT_DOT2] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1677), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1677), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1675), - [aux_sym__val_number_decimal_token1] = ACTIONS(1675), - [aux_sym__val_number_decimal_token2] = ACTIONS(1675), - [aux_sym__val_number_decimal_token3] = ACTIONS(1675), - [aux_sym__val_number_decimal_token4] = ACTIONS(1675), - [aux_sym__val_number_token1] = ACTIONS(1675), - [aux_sym__val_number_token2] = ACTIONS(1675), - [aux_sym__val_number_token3] = ACTIONS(1675), - [anon_sym_DQUOTE] = ACTIONS(1675), - [sym__str_single_quotes] = ACTIONS(1675), - [sym__str_back_ticks] = ACTIONS(1675), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1675), - [sym__entry_separator] = ACTIONS(1677), - [anon_sym_PLUS] = ACTIONS(1675), + [anon_sym_null] = ACTIONS(1935), + [aux_sym_cmd_identifier_token38] = ACTIONS(1937), + [aux_sym_cmd_identifier_token39] = ACTIONS(1937), + [aux_sym_cmd_identifier_token40] = ACTIONS(1937), + [sym__newline] = ACTIONS(1939), + [sym__space] = ACTIONS(1941), + [anon_sym_SEMI] = ACTIONS(1939), + [anon_sym_PIPE] = ACTIONS(1939), + [anon_sym_err_GT_PIPE] = ACTIONS(1939), + [anon_sym_out_GT_PIPE] = ACTIONS(1939), + [anon_sym_e_GT_PIPE] = ACTIONS(1939), + [anon_sym_o_GT_PIPE] = ACTIONS(1939), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1939), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1939), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1939), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1939), + [anon_sym_LBRACK] = ACTIONS(1943), + [anon_sym_LPAREN] = ACTIONS(1945), + [anon_sym_RPAREN] = ACTIONS(1939), + [anon_sym_DOLLAR] = ACTIONS(1947), + [anon_sym_DASH_DASH] = ACTIONS(1949), + [anon_sym_DASH] = ACTIONS(1951), + [anon_sym_LBRACE] = ACTIONS(1953), + [anon_sym_RBRACE] = ACTIONS(1939), + [anon_sym_DOT_DOT] = ACTIONS(1955), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1957), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_LT] = ACTIONS(1959), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1961), + [aux_sym__val_number_decimal_token1] = ACTIONS(1963), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1967), + [aux_sym__val_number_token1] = ACTIONS(1969), + [aux_sym__val_number_token2] = ACTIONS(1969), + [aux_sym__val_number_token3] = ACTIONS(1969), + [anon_sym_0b] = ACTIONS(1971), + [anon_sym_0o] = ACTIONS(1973), + [anon_sym_0x] = ACTIONS(1973), + [sym_val_date] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1977), + [sym__str_single_quotes] = ACTIONS(1979), + [sym__str_back_ticks] = ACTIONS(1979), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1981), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1983), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1985), + [anon_sym_err_GT] = ACTIONS(1987), + [anon_sym_out_GT] = ACTIONS(1987), + [anon_sym_e_GT] = ACTIONS(1987), + [anon_sym_o_GT] = ACTIONS(1987), + [anon_sym_err_PLUSout_GT] = ACTIONS(1987), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1987), + [anon_sym_o_PLUSe_GT] = ACTIONS(1987), + [anon_sym_e_PLUSo_GT] = ACTIONS(1987), + [anon_sym_err_GT_GT] = ACTIONS(1987), + [anon_sym_out_GT_GT] = ACTIONS(1987), + [anon_sym_e_GT_GT] = ACTIONS(1987), + [anon_sym_o_GT_GT] = ACTIONS(1987), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1987), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1987), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1987), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1987), + [aux_sym_unquoted_token1] = ACTIONS(1989), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1991), }, - [419] = { - [sym_cell_path] = STATE(678), - [sym_path] = STATE(578), - [sym_comment] = STATE(419), - [aux_sym_cell_path_repeat1] = STATE(459), - [anon_sym_export] = ACTIONS(1836), - [anon_sym_alias] = ACTIONS(1836), - [anon_sym_let] = ACTIONS(1836), - [anon_sym_let_DASHenv] = ACTIONS(1836), - [anon_sym_mut] = ACTIONS(1836), - [anon_sym_const] = ACTIONS(1836), - [aux_sym_cmd_identifier_token1] = ACTIONS(1836), - [aux_sym_cmd_identifier_token2] = ACTIONS(1836), - [aux_sym_cmd_identifier_token3] = ACTIONS(1836), - [aux_sym_cmd_identifier_token4] = ACTIONS(1836), - [aux_sym_cmd_identifier_token5] = ACTIONS(1836), - [aux_sym_cmd_identifier_token6] = ACTIONS(1836), - [aux_sym_cmd_identifier_token7] = ACTIONS(1836), - [aux_sym_cmd_identifier_token8] = ACTIONS(1836), - [aux_sym_cmd_identifier_token9] = ACTIONS(1836), - [aux_sym_cmd_identifier_token10] = ACTIONS(1836), - [aux_sym_cmd_identifier_token11] = ACTIONS(1836), - [aux_sym_cmd_identifier_token12] = ACTIONS(1836), - [aux_sym_cmd_identifier_token13] = ACTIONS(1836), - [aux_sym_cmd_identifier_token14] = ACTIONS(1836), - [aux_sym_cmd_identifier_token15] = ACTIONS(1836), - [aux_sym_cmd_identifier_token16] = ACTIONS(1836), - [aux_sym_cmd_identifier_token17] = ACTIONS(1836), - [aux_sym_cmd_identifier_token18] = ACTIONS(1836), - [aux_sym_cmd_identifier_token19] = ACTIONS(1836), - [aux_sym_cmd_identifier_token20] = ACTIONS(1836), - [aux_sym_cmd_identifier_token21] = ACTIONS(1836), - [aux_sym_cmd_identifier_token22] = ACTIONS(1836), - [aux_sym_cmd_identifier_token23] = ACTIONS(1836), - [aux_sym_cmd_identifier_token24] = ACTIONS(1836), - [aux_sym_cmd_identifier_token25] = ACTIONS(1836), - [aux_sym_cmd_identifier_token26] = ACTIONS(1836), - [aux_sym_cmd_identifier_token27] = ACTIONS(1836), - [aux_sym_cmd_identifier_token28] = ACTIONS(1836), - [aux_sym_cmd_identifier_token29] = ACTIONS(1836), - [aux_sym_cmd_identifier_token30] = ACTIONS(1836), - [aux_sym_cmd_identifier_token31] = ACTIONS(1836), - [aux_sym_cmd_identifier_token32] = ACTIONS(1836), - [aux_sym_cmd_identifier_token33] = ACTIONS(1836), - [aux_sym_cmd_identifier_token34] = ACTIONS(1836), - [aux_sym_cmd_identifier_token35] = ACTIONS(1836), - [aux_sym_cmd_identifier_token36] = ACTIONS(1836), - [anon_sym_true] = ACTIONS(1838), - [anon_sym_false] = ACTIONS(1838), - [anon_sym_null] = ACTIONS(1838), - [aux_sym_cmd_identifier_token38] = ACTIONS(1836), - [aux_sym_cmd_identifier_token39] = ACTIONS(1838), - [aux_sym_cmd_identifier_token40] = ACTIONS(1838), - [anon_sym_def] = ACTIONS(1836), - [anon_sym_export_DASHenv] = ACTIONS(1836), - [anon_sym_extern] = ACTIONS(1836), - [anon_sym_module] = ACTIONS(1836), - [anon_sym_use] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(1838), - [anon_sym_DOLLAR] = ACTIONS(1838), - [anon_sym_error] = ACTIONS(1836), - [anon_sym_list] = ACTIONS(1836), - [anon_sym_DASH] = ACTIONS(1836), - [anon_sym_break] = ACTIONS(1836), - [anon_sym_continue] = ACTIONS(1836), - [anon_sym_for] = ACTIONS(1836), - [anon_sym_in] = ACTIONS(1836), - [anon_sym_loop] = ACTIONS(1836), - [anon_sym_make] = ACTIONS(1836), - [anon_sym_while] = ACTIONS(1836), - [anon_sym_do] = ACTIONS(1836), - [anon_sym_if] = ACTIONS(1836), - [anon_sym_else] = ACTIONS(1836), - [anon_sym_match] = ACTIONS(1836), - [anon_sym_RBRACE] = ACTIONS(1838), - [anon_sym_try] = ACTIONS(1836), - [anon_sym_catch] = ACTIONS(1836), - [anon_sym_return] = ACTIONS(1836), - [anon_sym_source] = ACTIONS(1836), - [anon_sym_source_DASHenv] = ACTIONS(1836), - [anon_sym_register] = ACTIONS(1836), - [anon_sym_hide] = ACTIONS(1836), - [anon_sym_hide_DASHenv] = ACTIONS(1836), - [anon_sym_overlay] = ACTIONS(1836), - [anon_sym_new] = ACTIONS(1836), - [anon_sym_as] = ACTIONS(1836), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1838), - [anon_sym_DOT] = ACTIONS(1989), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1838), - [aux_sym__val_number_decimal_token1] = ACTIONS(1836), - [aux_sym__val_number_decimal_token2] = ACTIONS(1838), - [aux_sym__val_number_decimal_token3] = ACTIONS(1838), - [aux_sym__val_number_decimal_token4] = ACTIONS(1838), - [aux_sym__val_number_token1] = ACTIONS(1838), - [aux_sym__val_number_token2] = ACTIONS(1838), - [aux_sym__val_number_token3] = ACTIONS(1838), - [anon_sym_DQUOTE] = ACTIONS(1838), - [sym__str_single_quotes] = ACTIONS(1838), - [sym__str_back_ticks] = ACTIONS(1838), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1838), - [anon_sym_PLUS] = ACTIONS(1836), - [anon_sym_POUND] = ACTIONS(247), + [363] = { + [sym_cell_path] = STATE(626), + [sym_path] = STATE(518), + [sym_comment] = STATE(363), + [aux_sym_cell_path_repeat1] = STATE(411), + [anon_sym_export] = ACTIONS(1993), + [anon_sym_alias] = ACTIONS(1993), + [anon_sym_let] = ACTIONS(1993), + [anon_sym_let_DASHenv] = ACTIONS(1993), + [anon_sym_mut] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1993), + [aux_sym_cmd_identifier_token1] = ACTIONS(1993), + [aux_sym_cmd_identifier_token2] = ACTIONS(1993), + [aux_sym_cmd_identifier_token3] = ACTIONS(1993), + [aux_sym_cmd_identifier_token4] = ACTIONS(1993), + [aux_sym_cmd_identifier_token5] = ACTIONS(1993), + [aux_sym_cmd_identifier_token6] = ACTIONS(1993), + [aux_sym_cmd_identifier_token7] = ACTIONS(1993), + [aux_sym_cmd_identifier_token8] = ACTIONS(1993), + [aux_sym_cmd_identifier_token9] = ACTIONS(1993), + [aux_sym_cmd_identifier_token10] = ACTIONS(1993), + [aux_sym_cmd_identifier_token11] = ACTIONS(1993), + [aux_sym_cmd_identifier_token12] = ACTIONS(1993), + [aux_sym_cmd_identifier_token13] = ACTIONS(1993), + [aux_sym_cmd_identifier_token14] = ACTIONS(1993), + [aux_sym_cmd_identifier_token15] = ACTIONS(1993), + [aux_sym_cmd_identifier_token16] = ACTIONS(1993), + [aux_sym_cmd_identifier_token17] = ACTIONS(1993), + [aux_sym_cmd_identifier_token18] = ACTIONS(1993), + [aux_sym_cmd_identifier_token19] = ACTIONS(1993), + [aux_sym_cmd_identifier_token20] = ACTIONS(1993), + [aux_sym_cmd_identifier_token21] = ACTIONS(1993), + [aux_sym_cmd_identifier_token22] = ACTIONS(1993), + [aux_sym_cmd_identifier_token23] = ACTIONS(1993), + [aux_sym_cmd_identifier_token24] = ACTIONS(1993), + [aux_sym_cmd_identifier_token25] = ACTIONS(1993), + [aux_sym_cmd_identifier_token26] = ACTIONS(1993), + [aux_sym_cmd_identifier_token27] = ACTIONS(1993), + [aux_sym_cmd_identifier_token28] = ACTIONS(1993), + [aux_sym_cmd_identifier_token29] = ACTIONS(1993), + [aux_sym_cmd_identifier_token30] = ACTIONS(1993), + [aux_sym_cmd_identifier_token31] = ACTIONS(1993), + [aux_sym_cmd_identifier_token32] = ACTIONS(1993), + [aux_sym_cmd_identifier_token33] = ACTIONS(1993), + [aux_sym_cmd_identifier_token34] = ACTIONS(1993), + [aux_sym_cmd_identifier_token35] = ACTIONS(1993), + [aux_sym_cmd_identifier_token36] = ACTIONS(1993), + [anon_sym_true] = ACTIONS(1993), + [anon_sym_false] = ACTIONS(1993), + [anon_sym_null] = ACTIONS(1993), + [aux_sym_cmd_identifier_token38] = ACTIONS(1993), + [aux_sym_cmd_identifier_token39] = ACTIONS(1993), + [aux_sym_cmd_identifier_token40] = ACTIONS(1993), + [anon_sym_def] = ACTIONS(1993), + [anon_sym_export_DASHenv] = ACTIONS(1993), + [anon_sym_extern] = ACTIONS(1993), + [anon_sym_module] = ACTIONS(1993), + [anon_sym_use] = ACTIONS(1993), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_DOLLAR] = ACTIONS(1993), + [anon_sym_error] = ACTIONS(1993), + [anon_sym_list] = ACTIONS(1993), + [anon_sym_DASH] = ACTIONS(1993), + [anon_sym_break] = ACTIONS(1993), + [anon_sym_continue] = ACTIONS(1993), + [anon_sym_for] = ACTIONS(1993), + [anon_sym_in] = ACTIONS(1993), + [anon_sym_loop] = ACTIONS(1993), + [anon_sym_make] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1993), + [anon_sym_do] = ACTIONS(1993), + [anon_sym_if] = ACTIONS(1993), + [anon_sym_else] = ACTIONS(1993), + [anon_sym_match] = ACTIONS(1993), + [anon_sym_RBRACE] = ACTIONS(1993), + [anon_sym_try] = ACTIONS(1993), + [anon_sym_catch] = ACTIONS(1993), + [anon_sym_return] = ACTIONS(1993), + [anon_sym_source] = ACTIONS(1993), + [anon_sym_source_DASHenv] = ACTIONS(1993), + [anon_sym_register] = ACTIONS(1993), + [anon_sym_hide] = ACTIONS(1993), + [anon_sym_hide_DASHenv] = ACTIONS(1993), + [anon_sym_overlay] = ACTIONS(1993), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_as] = ACTIONS(1993), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1993), + [anon_sym_DOT] = ACTIONS(1856), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1993), + [aux_sym__val_number_decimal_token1] = ACTIONS(1993), + [aux_sym__val_number_decimal_token2] = ACTIONS(1993), + [aux_sym__val_number_decimal_token3] = ACTIONS(1993), + [aux_sym__val_number_decimal_token4] = ACTIONS(1993), + [aux_sym__val_number_token1] = ACTIONS(1993), + [aux_sym__val_number_token2] = ACTIONS(1993), + [aux_sym__val_number_token3] = ACTIONS(1993), + [anon_sym_DQUOTE] = ACTIONS(1993), + [sym__str_single_quotes] = ACTIONS(1993), + [sym__str_back_ticks] = ACTIONS(1993), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1993), + [sym__entry_separator] = ACTIONS(1995), + [anon_sym_PLUS] = ACTIONS(1993), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1995), }, - [420] = { - [sym_comment] = STATE(420), - [anon_sym_export] = ACTIONS(2141), - [anon_sym_alias] = ACTIONS(2141), - [anon_sym_let] = ACTIONS(2141), - [anon_sym_let_DASHenv] = ACTIONS(2141), - [anon_sym_mut] = ACTIONS(2141), - [anon_sym_const] = ACTIONS(2141), - [aux_sym_cmd_identifier_token1] = ACTIONS(2141), - [aux_sym_cmd_identifier_token2] = ACTIONS(2141), - [aux_sym_cmd_identifier_token3] = ACTIONS(2141), - [aux_sym_cmd_identifier_token4] = ACTIONS(2141), - [aux_sym_cmd_identifier_token5] = ACTIONS(2141), - [aux_sym_cmd_identifier_token6] = ACTIONS(2141), - [aux_sym_cmd_identifier_token7] = ACTIONS(2141), - [aux_sym_cmd_identifier_token8] = ACTIONS(2141), - [aux_sym_cmd_identifier_token9] = ACTIONS(2141), - [aux_sym_cmd_identifier_token10] = ACTIONS(2141), - [aux_sym_cmd_identifier_token11] = ACTIONS(2141), - [aux_sym_cmd_identifier_token12] = ACTIONS(2141), - [aux_sym_cmd_identifier_token13] = ACTIONS(2141), - [aux_sym_cmd_identifier_token14] = ACTIONS(2141), - [aux_sym_cmd_identifier_token15] = ACTIONS(2141), - [aux_sym_cmd_identifier_token16] = ACTIONS(2141), - [aux_sym_cmd_identifier_token17] = ACTIONS(2141), - [aux_sym_cmd_identifier_token18] = ACTIONS(2141), - [aux_sym_cmd_identifier_token19] = ACTIONS(2141), - [aux_sym_cmd_identifier_token20] = ACTIONS(2141), - [aux_sym_cmd_identifier_token21] = ACTIONS(2141), - [aux_sym_cmd_identifier_token22] = ACTIONS(2141), - [aux_sym_cmd_identifier_token23] = ACTIONS(2141), - [aux_sym_cmd_identifier_token24] = ACTIONS(2141), - [aux_sym_cmd_identifier_token25] = ACTIONS(2141), - [aux_sym_cmd_identifier_token26] = ACTIONS(2141), - [aux_sym_cmd_identifier_token27] = ACTIONS(2141), - [aux_sym_cmd_identifier_token28] = ACTIONS(2141), - [aux_sym_cmd_identifier_token29] = ACTIONS(2141), - [aux_sym_cmd_identifier_token30] = ACTIONS(2141), - [aux_sym_cmd_identifier_token31] = ACTIONS(2141), - [aux_sym_cmd_identifier_token32] = ACTIONS(2141), - [aux_sym_cmd_identifier_token33] = ACTIONS(2141), - [aux_sym_cmd_identifier_token34] = ACTIONS(2141), - [aux_sym_cmd_identifier_token35] = ACTIONS(2141), - [aux_sym_cmd_identifier_token36] = ACTIONS(2141), - [anon_sym_true] = ACTIONS(2141), - [anon_sym_false] = ACTIONS(2141), - [anon_sym_null] = ACTIONS(2141), - [aux_sym_cmd_identifier_token38] = ACTIONS(2141), - [aux_sym_cmd_identifier_token39] = ACTIONS(2141), - [aux_sym_cmd_identifier_token40] = ACTIONS(2141), - [anon_sym_def] = ACTIONS(2141), - [anon_sym_export_DASHenv] = ACTIONS(2141), - [anon_sym_extern] = ACTIONS(2141), - [anon_sym_module] = ACTIONS(2141), - [anon_sym_use] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(2141), - [anon_sym_DOLLAR] = ACTIONS(2141), - [anon_sym_error] = ACTIONS(2141), - [anon_sym_list] = ACTIONS(2141), - [anon_sym_DASH] = ACTIONS(2141), - [anon_sym_break] = ACTIONS(2141), - [anon_sym_continue] = ACTIONS(2141), - [anon_sym_for] = ACTIONS(2141), - [anon_sym_in] = ACTIONS(2141), - [anon_sym_loop] = ACTIONS(2141), - [anon_sym_make] = ACTIONS(2141), - [anon_sym_while] = ACTIONS(2141), - [anon_sym_do] = ACTIONS(2141), - [anon_sym_if] = ACTIONS(2141), - [anon_sym_else] = ACTIONS(2141), - [anon_sym_match] = ACTIONS(2141), - [anon_sym_RBRACE] = ACTIONS(2141), - [anon_sym_try] = ACTIONS(2141), - [anon_sym_catch] = ACTIONS(2141), - [anon_sym_return] = ACTIONS(2141), - [anon_sym_source] = ACTIONS(2141), - [anon_sym_source_DASHenv] = ACTIONS(2141), - [anon_sym_register] = ACTIONS(2141), - [anon_sym_hide] = ACTIONS(2141), - [anon_sym_hide_DASHenv] = ACTIONS(2141), - [anon_sym_overlay] = ACTIONS(2141), - [anon_sym_new] = ACTIONS(2141), - [anon_sym_as] = ACTIONS(2141), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2141), - [anon_sym_DOT_DOT2] = ACTIONS(2141), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2143), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2143), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2141), - [aux_sym__val_number_decimal_token1] = ACTIONS(2141), - [aux_sym__val_number_decimal_token2] = ACTIONS(2141), - [aux_sym__val_number_decimal_token3] = ACTIONS(2141), - [aux_sym__val_number_decimal_token4] = ACTIONS(2141), - [aux_sym__val_number_token1] = ACTIONS(2141), - [aux_sym__val_number_token2] = ACTIONS(2141), - [aux_sym__val_number_token3] = ACTIONS(2141), - [anon_sym_DQUOTE] = ACTIONS(2141), - [sym__str_single_quotes] = ACTIONS(2141), - [sym__str_back_ticks] = ACTIONS(2141), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2141), - [sym__entry_separator] = ACTIONS(2143), - [anon_sym_PLUS] = ACTIONS(2141), + [364] = { + [sym_cell_path] = STATE(608), + [sym_path] = STATE(518), + [sym_comment] = STATE(364), + [aux_sym_cell_path_repeat1] = STATE(411), + [anon_sym_export] = ACTIONS(1997), + [anon_sym_alias] = ACTIONS(1997), + [anon_sym_let] = ACTIONS(1997), + [anon_sym_let_DASHenv] = ACTIONS(1997), + [anon_sym_mut] = ACTIONS(1997), + [anon_sym_const] = ACTIONS(1997), + [aux_sym_cmd_identifier_token1] = ACTIONS(1997), + [aux_sym_cmd_identifier_token2] = ACTIONS(1997), + [aux_sym_cmd_identifier_token3] = ACTIONS(1997), + [aux_sym_cmd_identifier_token4] = ACTIONS(1997), + [aux_sym_cmd_identifier_token5] = ACTIONS(1997), + [aux_sym_cmd_identifier_token6] = ACTIONS(1997), + [aux_sym_cmd_identifier_token7] = ACTIONS(1997), + [aux_sym_cmd_identifier_token8] = ACTIONS(1997), + [aux_sym_cmd_identifier_token9] = ACTIONS(1997), + [aux_sym_cmd_identifier_token10] = ACTIONS(1997), + [aux_sym_cmd_identifier_token11] = ACTIONS(1997), + [aux_sym_cmd_identifier_token12] = ACTIONS(1997), + [aux_sym_cmd_identifier_token13] = ACTIONS(1997), + [aux_sym_cmd_identifier_token14] = ACTIONS(1997), + [aux_sym_cmd_identifier_token15] = ACTIONS(1997), + [aux_sym_cmd_identifier_token16] = ACTIONS(1997), + [aux_sym_cmd_identifier_token17] = ACTIONS(1997), + [aux_sym_cmd_identifier_token18] = ACTIONS(1997), + [aux_sym_cmd_identifier_token19] = ACTIONS(1997), + [aux_sym_cmd_identifier_token20] = ACTIONS(1997), + [aux_sym_cmd_identifier_token21] = ACTIONS(1997), + [aux_sym_cmd_identifier_token22] = ACTIONS(1997), + [aux_sym_cmd_identifier_token23] = ACTIONS(1997), + [aux_sym_cmd_identifier_token24] = ACTIONS(1997), + [aux_sym_cmd_identifier_token25] = ACTIONS(1997), + [aux_sym_cmd_identifier_token26] = ACTIONS(1997), + [aux_sym_cmd_identifier_token27] = ACTIONS(1997), + [aux_sym_cmd_identifier_token28] = ACTIONS(1997), + [aux_sym_cmd_identifier_token29] = ACTIONS(1997), + [aux_sym_cmd_identifier_token30] = ACTIONS(1997), + [aux_sym_cmd_identifier_token31] = ACTIONS(1997), + [aux_sym_cmd_identifier_token32] = ACTIONS(1997), + [aux_sym_cmd_identifier_token33] = ACTIONS(1997), + [aux_sym_cmd_identifier_token34] = ACTIONS(1997), + [aux_sym_cmd_identifier_token35] = ACTIONS(1997), + [aux_sym_cmd_identifier_token36] = ACTIONS(1997), + [anon_sym_true] = ACTIONS(1997), + [anon_sym_false] = ACTIONS(1997), + [anon_sym_null] = ACTIONS(1997), + [aux_sym_cmd_identifier_token38] = ACTIONS(1997), + [aux_sym_cmd_identifier_token39] = ACTIONS(1997), + [aux_sym_cmd_identifier_token40] = ACTIONS(1997), + [anon_sym_def] = ACTIONS(1997), + [anon_sym_export_DASHenv] = ACTIONS(1997), + [anon_sym_extern] = ACTIONS(1997), + [anon_sym_module] = ACTIONS(1997), + [anon_sym_use] = ACTIONS(1997), + [anon_sym_LPAREN] = ACTIONS(1997), + [anon_sym_DOLLAR] = ACTIONS(1997), + [anon_sym_error] = ACTIONS(1997), + [anon_sym_list] = ACTIONS(1997), + [anon_sym_DASH] = ACTIONS(1997), + [anon_sym_break] = ACTIONS(1997), + [anon_sym_continue] = ACTIONS(1997), + [anon_sym_for] = ACTIONS(1997), + [anon_sym_in] = ACTIONS(1997), + [anon_sym_loop] = ACTIONS(1997), + [anon_sym_make] = ACTIONS(1997), + [anon_sym_while] = ACTIONS(1997), + [anon_sym_do] = ACTIONS(1997), + [anon_sym_if] = ACTIONS(1997), + [anon_sym_else] = ACTIONS(1997), + [anon_sym_match] = ACTIONS(1997), + [anon_sym_RBRACE] = ACTIONS(1997), + [anon_sym_try] = ACTIONS(1997), + [anon_sym_catch] = ACTIONS(1997), + [anon_sym_return] = ACTIONS(1997), + [anon_sym_source] = ACTIONS(1997), + [anon_sym_source_DASHenv] = ACTIONS(1997), + [anon_sym_register] = ACTIONS(1997), + [anon_sym_hide] = ACTIONS(1997), + [anon_sym_hide_DASHenv] = ACTIONS(1997), + [anon_sym_overlay] = ACTIONS(1997), + [anon_sym_new] = ACTIONS(1997), + [anon_sym_as] = ACTIONS(1997), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1997), + [anon_sym_DOT] = ACTIONS(1856), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1997), + [aux_sym__val_number_decimal_token1] = ACTIONS(1997), + [aux_sym__val_number_decimal_token2] = ACTIONS(1997), + [aux_sym__val_number_decimal_token3] = ACTIONS(1997), + [aux_sym__val_number_decimal_token4] = ACTIONS(1997), + [aux_sym__val_number_token1] = ACTIONS(1997), + [aux_sym__val_number_token2] = ACTIONS(1997), + [aux_sym__val_number_token3] = ACTIONS(1997), + [anon_sym_DQUOTE] = ACTIONS(1997), + [sym__str_single_quotes] = ACTIONS(1997), + [sym__str_back_ticks] = ACTIONS(1997), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1997), + [sym__entry_separator] = ACTIONS(1999), + [anon_sym_PLUS] = ACTIONS(1997), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1999), }, - [421] = { - [sym_cell_path] = STATE(679), - [sym_path] = STATE(578), - [sym_comment] = STATE(421), - [aux_sym_cell_path_repeat1] = STATE(459), - [anon_sym_export] = ACTIONS(1840), - [anon_sym_alias] = ACTIONS(1840), - [anon_sym_let] = ACTIONS(1840), - [anon_sym_let_DASHenv] = ACTIONS(1840), - [anon_sym_mut] = ACTIONS(1840), - [anon_sym_const] = ACTIONS(1840), - [aux_sym_cmd_identifier_token1] = ACTIONS(1840), - [aux_sym_cmd_identifier_token2] = ACTIONS(1840), - [aux_sym_cmd_identifier_token3] = ACTIONS(1840), - [aux_sym_cmd_identifier_token4] = ACTIONS(1840), - [aux_sym_cmd_identifier_token5] = ACTIONS(1840), - [aux_sym_cmd_identifier_token6] = ACTIONS(1840), - [aux_sym_cmd_identifier_token7] = ACTIONS(1840), - [aux_sym_cmd_identifier_token8] = ACTIONS(1840), - [aux_sym_cmd_identifier_token9] = ACTIONS(1840), - [aux_sym_cmd_identifier_token10] = ACTIONS(1840), - [aux_sym_cmd_identifier_token11] = ACTIONS(1840), - [aux_sym_cmd_identifier_token12] = ACTIONS(1840), - [aux_sym_cmd_identifier_token13] = ACTIONS(1840), - [aux_sym_cmd_identifier_token14] = ACTIONS(1840), - [aux_sym_cmd_identifier_token15] = ACTIONS(1840), - [aux_sym_cmd_identifier_token16] = ACTIONS(1840), - [aux_sym_cmd_identifier_token17] = ACTIONS(1840), - [aux_sym_cmd_identifier_token18] = ACTIONS(1840), - [aux_sym_cmd_identifier_token19] = ACTIONS(1840), - [aux_sym_cmd_identifier_token20] = ACTIONS(1840), - [aux_sym_cmd_identifier_token21] = ACTIONS(1840), - [aux_sym_cmd_identifier_token22] = ACTIONS(1840), - [aux_sym_cmd_identifier_token23] = ACTIONS(1840), - [aux_sym_cmd_identifier_token24] = ACTIONS(1840), - [aux_sym_cmd_identifier_token25] = ACTIONS(1840), - [aux_sym_cmd_identifier_token26] = ACTIONS(1840), - [aux_sym_cmd_identifier_token27] = ACTIONS(1840), - [aux_sym_cmd_identifier_token28] = ACTIONS(1840), - [aux_sym_cmd_identifier_token29] = ACTIONS(1840), - [aux_sym_cmd_identifier_token30] = ACTIONS(1840), - [aux_sym_cmd_identifier_token31] = ACTIONS(1840), - [aux_sym_cmd_identifier_token32] = ACTIONS(1840), - [aux_sym_cmd_identifier_token33] = ACTIONS(1840), - [aux_sym_cmd_identifier_token34] = ACTIONS(1840), - [aux_sym_cmd_identifier_token35] = ACTIONS(1840), - [aux_sym_cmd_identifier_token36] = ACTIONS(1840), - [anon_sym_true] = ACTIONS(1842), - [anon_sym_false] = ACTIONS(1842), - [anon_sym_null] = ACTIONS(1842), - [aux_sym_cmd_identifier_token38] = ACTIONS(1840), - [aux_sym_cmd_identifier_token39] = ACTIONS(1842), - [aux_sym_cmd_identifier_token40] = ACTIONS(1842), - [anon_sym_def] = ACTIONS(1840), - [anon_sym_export_DASHenv] = ACTIONS(1840), - [anon_sym_extern] = ACTIONS(1840), - [anon_sym_module] = ACTIONS(1840), - [anon_sym_use] = ACTIONS(1840), - [anon_sym_LPAREN] = ACTIONS(1842), - [anon_sym_DOLLAR] = ACTIONS(1842), - [anon_sym_error] = ACTIONS(1840), - [anon_sym_list] = ACTIONS(1840), - [anon_sym_DASH] = ACTIONS(1840), - [anon_sym_break] = ACTIONS(1840), - [anon_sym_continue] = ACTIONS(1840), - [anon_sym_for] = ACTIONS(1840), - [anon_sym_in] = ACTIONS(1840), - [anon_sym_loop] = ACTIONS(1840), - [anon_sym_make] = ACTIONS(1840), - [anon_sym_while] = ACTIONS(1840), - [anon_sym_do] = ACTIONS(1840), - [anon_sym_if] = ACTIONS(1840), - [anon_sym_else] = ACTIONS(1840), - [anon_sym_match] = ACTIONS(1840), - [anon_sym_RBRACE] = ACTIONS(1842), - [anon_sym_try] = ACTIONS(1840), - [anon_sym_catch] = ACTIONS(1840), - [anon_sym_return] = ACTIONS(1840), - [anon_sym_source] = ACTIONS(1840), - [anon_sym_source_DASHenv] = ACTIONS(1840), - [anon_sym_register] = ACTIONS(1840), - [anon_sym_hide] = ACTIONS(1840), - [anon_sym_hide_DASHenv] = ACTIONS(1840), - [anon_sym_overlay] = ACTIONS(1840), - [anon_sym_new] = ACTIONS(1840), - [anon_sym_as] = ACTIONS(1840), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1842), - [anon_sym_DOT] = ACTIONS(1989), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1842), - [aux_sym__val_number_decimal_token1] = ACTIONS(1840), - [aux_sym__val_number_decimal_token2] = ACTIONS(1842), - [aux_sym__val_number_decimal_token3] = ACTIONS(1842), - [aux_sym__val_number_decimal_token4] = ACTIONS(1842), - [aux_sym__val_number_token1] = ACTIONS(1842), - [aux_sym__val_number_token2] = ACTIONS(1842), - [aux_sym__val_number_token3] = ACTIONS(1842), - [anon_sym_DQUOTE] = ACTIONS(1842), - [sym__str_single_quotes] = ACTIONS(1842), - [sym__str_back_ticks] = ACTIONS(1842), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1842), - [anon_sym_PLUS] = ACTIONS(1840), - [anon_sym_POUND] = ACTIONS(247), + [365] = { + [sym_cell_path] = STATE(575), + [sym_path] = STATE(518), + [sym_comment] = STATE(365), + [aux_sym_cell_path_repeat1] = STATE(411), + [anon_sym_export] = ACTIONS(2001), + [anon_sym_alias] = ACTIONS(2001), + [anon_sym_let] = ACTIONS(2001), + [anon_sym_let_DASHenv] = ACTIONS(2001), + [anon_sym_mut] = ACTIONS(2001), + [anon_sym_const] = ACTIONS(2001), + [aux_sym_cmd_identifier_token1] = ACTIONS(2001), + [aux_sym_cmd_identifier_token2] = ACTIONS(2001), + [aux_sym_cmd_identifier_token3] = ACTIONS(2001), + [aux_sym_cmd_identifier_token4] = ACTIONS(2001), + [aux_sym_cmd_identifier_token5] = ACTIONS(2001), + [aux_sym_cmd_identifier_token6] = ACTIONS(2001), + [aux_sym_cmd_identifier_token7] = ACTIONS(2001), + [aux_sym_cmd_identifier_token8] = ACTIONS(2001), + [aux_sym_cmd_identifier_token9] = ACTIONS(2001), + [aux_sym_cmd_identifier_token10] = ACTIONS(2001), + [aux_sym_cmd_identifier_token11] = ACTIONS(2001), + [aux_sym_cmd_identifier_token12] = ACTIONS(2001), + [aux_sym_cmd_identifier_token13] = ACTIONS(2001), + [aux_sym_cmd_identifier_token14] = ACTIONS(2001), + [aux_sym_cmd_identifier_token15] = ACTIONS(2001), + [aux_sym_cmd_identifier_token16] = ACTIONS(2001), + [aux_sym_cmd_identifier_token17] = ACTIONS(2001), + [aux_sym_cmd_identifier_token18] = ACTIONS(2001), + [aux_sym_cmd_identifier_token19] = ACTIONS(2001), + [aux_sym_cmd_identifier_token20] = ACTIONS(2001), + [aux_sym_cmd_identifier_token21] = ACTIONS(2001), + [aux_sym_cmd_identifier_token22] = ACTIONS(2001), + [aux_sym_cmd_identifier_token23] = ACTIONS(2001), + [aux_sym_cmd_identifier_token24] = ACTIONS(2001), + [aux_sym_cmd_identifier_token25] = ACTIONS(2001), + [aux_sym_cmd_identifier_token26] = ACTIONS(2001), + [aux_sym_cmd_identifier_token27] = ACTIONS(2001), + [aux_sym_cmd_identifier_token28] = ACTIONS(2001), + [aux_sym_cmd_identifier_token29] = ACTIONS(2001), + [aux_sym_cmd_identifier_token30] = ACTIONS(2001), + [aux_sym_cmd_identifier_token31] = ACTIONS(2001), + [aux_sym_cmd_identifier_token32] = ACTIONS(2001), + [aux_sym_cmd_identifier_token33] = ACTIONS(2001), + [aux_sym_cmd_identifier_token34] = ACTIONS(2001), + [aux_sym_cmd_identifier_token35] = ACTIONS(2001), + [aux_sym_cmd_identifier_token36] = ACTIONS(2001), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_null] = ACTIONS(2001), + [aux_sym_cmd_identifier_token38] = ACTIONS(2001), + [aux_sym_cmd_identifier_token39] = ACTIONS(2001), + [aux_sym_cmd_identifier_token40] = ACTIONS(2001), + [anon_sym_def] = ACTIONS(2001), + [anon_sym_export_DASHenv] = ACTIONS(2001), + [anon_sym_extern] = ACTIONS(2001), + [anon_sym_module] = ACTIONS(2001), + [anon_sym_use] = ACTIONS(2001), + [anon_sym_LPAREN] = ACTIONS(2001), + [anon_sym_DOLLAR] = ACTIONS(2001), + [anon_sym_error] = ACTIONS(2001), + [anon_sym_list] = ACTIONS(2001), + [anon_sym_DASH] = ACTIONS(2001), + [anon_sym_break] = ACTIONS(2001), + [anon_sym_continue] = ACTIONS(2001), + [anon_sym_for] = ACTIONS(2001), + [anon_sym_in] = ACTIONS(2001), + [anon_sym_loop] = ACTIONS(2001), + [anon_sym_make] = ACTIONS(2001), + [anon_sym_while] = ACTIONS(2001), + [anon_sym_do] = ACTIONS(2001), + [anon_sym_if] = ACTIONS(2001), + [anon_sym_else] = ACTIONS(2001), + [anon_sym_match] = ACTIONS(2001), + [anon_sym_RBRACE] = ACTIONS(2001), + [anon_sym_try] = ACTIONS(2001), + [anon_sym_catch] = ACTIONS(2001), + [anon_sym_return] = ACTIONS(2001), + [anon_sym_source] = ACTIONS(2001), + [anon_sym_source_DASHenv] = ACTIONS(2001), + [anon_sym_register] = ACTIONS(2001), + [anon_sym_hide] = ACTIONS(2001), + [anon_sym_hide_DASHenv] = ACTIONS(2001), + [anon_sym_overlay] = ACTIONS(2001), + [anon_sym_new] = ACTIONS(2001), + [anon_sym_as] = ACTIONS(2001), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2001), + [anon_sym_DOT] = ACTIONS(1856), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2001), + [aux_sym__val_number_decimal_token1] = ACTIONS(2001), + [aux_sym__val_number_decimal_token2] = ACTIONS(2001), + [aux_sym__val_number_decimal_token3] = ACTIONS(2001), + [aux_sym__val_number_decimal_token4] = ACTIONS(2001), + [aux_sym__val_number_token1] = ACTIONS(2001), + [aux_sym__val_number_token2] = ACTIONS(2001), + [aux_sym__val_number_token3] = ACTIONS(2001), + [anon_sym_DQUOTE] = ACTIONS(2001), + [sym__str_single_quotes] = ACTIONS(2001), + [sym__str_back_ticks] = ACTIONS(2001), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2001), + [sym__entry_separator] = ACTIONS(2003), + [anon_sym_PLUS] = ACTIONS(2001), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2003), }, - [422] = { - [sym_cell_path] = STATE(680), - [sym_path] = STATE(578), - [sym_comment] = STATE(422), - [aux_sym_cell_path_repeat1] = STATE(459), - [anon_sym_export] = ACTIONS(1844), - [anon_sym_alias] = ACTIONS(1844), - [anon_sym_let] = ACTIONS(1844), - [anon_sym_let_DASHenv] = ACTIONS(1844), - [anon_sym_mut] = ACTIONS(1844), - [anon_sym_const] = ACTIONS(1844), - [aux_sym_cmd_identifier_token1] = ACTIONS(1844), - [aux_sym_cmd_identifier_token2] = ACTIONS(1844), - [aux_sym_cmd_identifier_token3] = ACTIONS(1844), - [aux_sym_cmd_identifier_token4] = ACTIONS(1844), - [aux_sym_cmd_identifier_token5] = ACTIONS(1844), - [aux_sym_cmd_identifier_token6] = ACTIONS(1844), - [aux_sym_cmd_identifier_token7] = ACTIONS(1844), - [aux_sym_cmd_identifier_token8] = ACTIONS(1844), - [aux_sym_cmd_identifier_token9] = ACTIONS(1844), - [aux_sym_cmd_identifier_token10] = ACTIONS(1844), - [aux_sym_cmd_identifier_token11] = ACTIONS(1844), - [aux_sym_cmd_identifier_token12] = ACTIONS(1844), - [aux_sym_cmd_identifier_token13] = ACTIONS(1844), - [aux_sym_cmd_identifier_token14] = ACTIONS(1844), - [aux_sym_cmd_identifier_token15] = ACTIONS(1844), - [aux_sym_cmd_identifier_token16] = ACTIONS(1844), - [aux_sym_cmd_identifier_token17] = ACTIONS(1844), - [aux_sym_cmd_identifier_token18] = ACTIONS(1844), - [aux_sym_cmd_identifier_token19] = ACTIONS(1844), - [aux_sym_cmd_identifier_token20] = ACTIONS(1844), - [aux_sym_cmd_identifier_token21] = ACTIONS(1844), - [aux_sym_cmd_identifier_token22] = ACTIONS(1844), - [aux_sym_cmd_identifier_token23] = ACTIONS(1844), - [aux_sym_cmd_identifier_token24] = ACTIONS(1844), - [aux_sym_cmd_identifier_token25] = ACTIONS(1844), - [aux_sym_cmd_identifier_token26] = ACTIONS(1844), - [aux_sym_cmd_identifier_token27] = ACTIONS(1844), - [aux_sym_cmd_identifier_token28] = ACTIONS(1844), - [aux_sym_cmd_identifier_token29] = ACTIONS(1844), - [aux_sym_cmd_identifier_token30] = ACTIONS(1844), - [aux_sym_cmd_identifier_token31] = ACTIONS(1844), - [aux_sym_cmd_identifier_token32] = ACTIONS(1844), - [aux_sym_cmd_identifier_token33] = ACTIONS(1844), - [aux_sym_cmd_identifier_token34] = ACTIONS(1844), - [aux_sym_cmd_identifier_token35] = ACTIONS(1844), - [aux_sym_cmd_identifier_token36] = ACTIONS(1844), - [anon_sym_true] = ACTIONS(1846), - [anon_sym_false] = ACTIONS(1846), - [anon_sym_null] = ACTIONS(1846), - [aux_sym_cmd_identifier_token38] = ACTIONS(1844), - [aux_sym_cmd_identifier_token39] = ACTIONS(1846), - [aux_sym_cmd_identifier_token40] = ACTIONS(1846), - [anon_sym_def] = ACTIONS(1844), - [anon_sym_export_DASHenv] = ACTIONS(1844), - [anon_sym_extern] = ACTIONS(1844), - [anon_sym_module] = ACTIONS(1844), - [anon_sym_use] = ACTIONS(1844), - [anon_sym_LPAREN] = ACTIONS(1846), - [anon_sym_DOLLAR] = ACTIONS(1846), - [anon_sym_error] = ACTIONS(1844), - [anon_sym_list] = ACTIONS(1844), - [anon_sym_DASH] = ACTIONS(1844), - [anon_sym_break] = ACTIONS(1844), - [anon_sym_continue] = ACTIONS(1844), - [anon_sym_for] = ACTIONS(1844), - [anon_sym_in] = ACTIONS(1844), - [anon_sym_loop] = ACTIONS(1844), - [anon_sym_make] = ACTIONS(1844), - [anon_sym_while] = ACTIONS(1844), - [anon_sym_do] = ACTIONS(1844), - [anon_sym_if] = ACTIONS(1844), - [anon_sym_else] = ACTIONS(1844), - [anon_sym_match] = ACTIONS(1844), - [anon_sym_RBRACE] = ACTIONS(1846), - [anon_sym_try] = ACTIONS(1844), - [anon_sym_catch] = ACTIONS(1844), - [anon_sym_return] = ACTIONS(1844), - [anon_sym_source] = ACTIONS(1844), - [anon_sym_source_DASHenv] = ACTIONS(1844), - [anon_sym_register] = ACTIONS(1844), - [anon_sym_hide] = ACTIONS(1844), - [anon_sym_hide_DASHenv] = ACTIONS(1844), - [anon_sym_overlay] = ACTIONS(1844), - [anon_sym_new] = ACTIONS(1844), - [anon_sym_as] = ACTIONS(1844), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1846), - [anon_sym_DOT] = ACTIONS(1989), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1846), - [aux_sym__val_number_decimal_token1] = ACTIONS(1844), - [aux_sym__val_number_decimal_token2] = ACTIONS(1846), - [aux_sym__val_number_decimal_token3] = ACTIONS(1846), - [aux_sym__val_number_decimal_token4] = ACTIONS(1846), - [aux_sym__val_number_token1] = ACTIONS(1846), - [aux_sym__val_number_token2] = ACTIONS(1846), - [aux_sym__val_number_token3] = ACTIONS(1846), - [anon_sym_DQUOTE] = ACTIONS(1846), - [sym__str_single_quotes] = ACTIONS(1846), - [sym__str_back_ticks] = ACTIONS(1846), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1846), - [anon_sym_PLUS] = ACTIONS(1844), - [anon_sym_POUND] = ACTIONS(247), + [366] = { + [sym_cell_path] = STATE(577), + [sym_path] = STATE(518), + [sym_comment] = STATE(366), + [aux_sym_cell_path_repeat1] = STATE(411), + [anon_sym_export] = ACTIONS(2005), + [anon_sym_alias] = ACTIONS(2005), + [anon_sym_let] = ACTIONS(2005), + [anon_sym_let_DASHenv] = ACTIONS(2005), + [anon_sym_mut] = ACTIONS(2005), + [anon_sym_const] = ACTIONS(2005), + [aux_sym_cmd_identifier_token1] = ACTIONS(2005), + [aux_sym_cmd_identifier_token2] = ACTIONS(2005), + [aux_sym_cmd_identifier_token3] = ACTIONS(2005), + [aux_sym_cmd_identifier_token4] = ACTIONS(2005), + [aux_sym_cmd_identifier_token5] = ACTIONS(2005), + [aux_sym_cmd_identifier_token6] = ACTIONS(2005), + [aux_sym_cmd_identifier_token7] = ACTIONS(2005), + [aux_sym_cmd_identifier_token8] = ACTIONS(2005), + [aux_sym_cmd_identifier_token9] = ACTIONS(2005), + [aux_sym_cmd_identifier_token10] = ACTIONS(2005), + [aux_sym_cmd_identifier_token11] = ACTIONS(2005), + [aux_sym_cmd_identifier_token12] = ACTIONS(2005), + [aux_sym_cmd_identifier_token13] = ACTIONS(2005), + [aux_sym_cmd_identifier_token14] = ACTIONS(2005), + [aux_sym_cmd_identifier_token15] = ACTIONS(2005), + [aux_sym_cmd_identifier_token16] = ACTIONS(2005), + [aux_sym_cmd_identifier_token17] = ACTIONS(2005), + [aux_sym_cmd_identifier_token18] = ACTIONS(2005), + [aux_sym_cmd_identifier_token19] = ACTIONS(2005), + [aux_sym_cmd_identifier_token20] = ACTIONS(2005), + [aux_sym_cmd_identifier_token21] = ACTIONS(2005), + [aux_sym_cmd_identifier_token22] = ACTIONS(2005), + [aux_sym_cmd_identifier_token23] = ACTIONS(2005), + [aux_sym_cmd_identifier_token24] = ACTIONS(2005), + [aux_sym_cmd_identifier_token25] = ACTIONS(2005), + [aux_sym_cmd_identifier_token26] = ACTIONS(2005), + [aux_sym_cmd_identifier_token27] = ACTIONS(2005), + [aux_sym_cmd_identifier_token28] = ACTIONS(2005), + [aux_sym_cmd_identifier_token29] = ACTIONS(2005), + [aux_sym_cmd_identifier_token30] = ACTIONS(2005), + [aux_sym_cmd_identifier_token31] = ACTIONS(2005), + [aux_sym_cmd_identifier_token32] = ACTIONS(2005), + [aux_sym_cmd_identifier_token33] = ACTIONS(2005), + [aux_sym_cmd_identifier_token34] = ACTIONS(2005), + [aux_sym_cmd_identifier_token35] = ACTIONS(2005), + [aux_sym_cmd_identifier_token36] = ACTIONS(2005), + [anon_sym_true] = ACTIONS(2005), + [anon_sym_false] = ACTIONS(2005), + [anon_sym_null] = ACTIONS(2005), + [aux_sym_cmd_identifier_token38] = ACTIONS(2005), + [aux_sym_cmd_identifier_token39] = ACTIONS(2005), + [aux_sym_cmd_identifier_token40] = ACTIONS(2005), + [anon_sym_def] = ACTIONS(2005), + [anon_sym_export_DASHenv] = ACTIONS(2005), + [anon_sym_extern] = ACTIONS(2005), + [anon_sym_module] = ACTIONS(2005), + [anon_sym_use] = ACTIONS(2005), + [anon_sym_LPAREN] = ACTIONS(2005), + [anon_sym_DOLLAR] = ACTIONS(2005), + [anon_sym_error] = ACTIONS(2005), + [anon_sym_list] = ACTIONS(2005), + [anon_sym_DASH] = ACTIONS(2005), + [anon_sym_break] = ACTIONS(2005), + [anon_sym_continue] = ACTIONS(2005), + [anon_sym_for] = ACTIONS(2005), + [anon_sym_in] = ACTIONS(2005), + [anon_sym_loop] = ACTIONS(2005), + [anon_sym_make] = ACTIONS(2005), + [anon_sym_while] = ACTIONS(2005), + [anon_sym_do] = ACTIONS(2005), + [anon_sym_if] = ACTIONS(2005), + [anon_sym_else] = ACTIONS(2005), + [anon_sym_match] = ACTIONS(2005), + [anon_sym_RBRACE] = ACTIONS(2005), + [anon_sym_try] = ACTIONS(2005), + [anon_sym_catch] = ACTIONS(2005), + [anon_sym_return] = ACTIONS(2005), + [anon_sym_source] = ACTIONS(2005), + [anon_sym_source_DASHenv] = ACTIONS(2005), + [anon_sym_register] = ACTIONS(2005), + [anon_sym_hide] = ACTIONS(2005), + [anon_sym_hide_DASHenv] = ACTIONS(2005), + [anon_sym_overlay] = ACTIONS(2005), + [anon_sym_new] = ACTIONS(2005), + [anon_sym_as] = ACTIONS(2005), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2005), + [anon_sym_DOT] = ACTIONS(1856), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2005), + [aux_sym__val_number_decimal_token1] = ACTIONS(2005), + [aux_sym__val_number_decimal_token2] = ACTIONS(2005), + [aux_sym__val_number_decimal_token3] = ACTIONS(2005), + [aux_sym__val_number_decimal_token4] = ACTIONS(2005), + [aux_sym__val_number_token1] = ACTIONS(2005), + [aux_sym__val_number_token2] = ACTIONS(2005), + [aux_sym__val_number_token3] = ACTIONS(2005), + [anon_sym_DQUOTE] = ACTIONS(2005), + [sym__str_single_quotes] = ACTIONS(2005), + [sym__str_back_ticks] = ACTIONS(2005), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2005), + [sym__entry_separator] = ACTIONS(2007), + [anon_sym_PLUS] = ACTIONS(2005), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2007), }, - [423] = { - [sym_cell_path] = STATE(681), - [sym_path] = STATE(578), - [sym_comment] = STATE(423), - [aux_sym_cell_path_repeat1] = STATE(459), - [anon_sym_export] = ACTIONS(1848), - [anon_sym_alias] = ACTIONS(1848), - [anon_sym_let] = ACTIONS(1848), - [anon_sym_let_DASHenv] = ACTIONS(1848), - [anon_sym_mut] = ACTIONS(1848), - [anon_sym_const] = ACTIONS(1848), - [aux_sym_cmd_identifier_token1] = ACTIONS(1848), - [aux_sym_cmd_identifier_token2] = ACTIONS(1848), - [aux_sym_cmd_identifier_token3] = ACTIONS(1848), - [aux_sym_cmd_identifier_token4] = ACTIONS(1848), - [aux_sym_cmd_identifier_token5] = ACTIONS(1848), - [aux_sym_cmd_identifier_token6] = ACTIONS(1848), - [aux_sym_cmd_identifier_token7] = ACTIONS(1848), - [aux_sym_cmd_identifier_token8] = ACTIONS(1848), - [aux_sym_cmd_identifier_token9] = ACTIONS(1848), - [aux_sym_cmd_identifier_token10] = ACTIONS(1848), - [aux_sym_cmd_identifier_token11] = ACTIONS(1848), - [aux_sym_cmd_identifier_token12] = ACTIONS(1848), - [aux_sym_cmd_identifier_token13] = ACTIONS(1848), - [aux_sym_cmd_identifier_token14] = ACTIONS(1848), - [aux_sym_cmd_identifier_token15] = ACTIONS(1848), - [aux_sym_cmd_identifier_token16] = ACTIONS(1848), - [aux_sym_cmd_identifier_token17] = ACTIONS(1848), - [aux_sym_cmd_identifier_token18] = ACTIONS(1848), - [aux_sym_cmd_identifier_token19] = ACTIONS(1848), - [aux_sym_cmd_identifier_token20] = ACTIONS(1848), - [aux_sym_cmd_identifier_token21] = ACTIONS(1848), - [aux_sym_cmd_identifier_token22] = ACTIONS(1848), - [aux_sym_cmd_identifier_token23] = ACTIONS(1848), - [aux_sym_cmd_identifier_token24] = ACTIONS(1848), - [aux_sym_cmd_identifier_token25] = ACTIONS(1848), - [aux_sym_cmd_identifier_token26] = ACTIONS(1848), - [aux_sym_cmd_identifier_token27] = ACTIONS(1848), - [aux_sym_cmd_identifier_token28] = ACTIONS(1848), - [aux_sym_cmd_identifier_token29] = ACTIONS(1848), - [aux_sym_cmd_identifier_token30] = ACTIONS(1848), - [aux_sym_cmd_identifier_token31] = ACTIONS(1848), - [aux_sym_cmd_identifier_token32] = ACTIONS(1848), - [aux_sym_cmd_identifier_token33] = ACTIONS(1848), - [aux_sym_cmd_identifier_token34] = ACTIONS(1848), - [aux_sym_cmd_identifier_token35] = ACTIONS(1848), - [aux_sym_cmd_identifier_token36] = ACTIONS(1848), - [anon_sym_true] = ACTIONS(1850), - [anon_sym_false] = ACTIONS(1850), - [anon_sym_null] = ACTIONS(1850), - [aux_sym_cmd_identifier_token38] = ACTIONS(1848), - [aux_sym_cmd_identifier_token39] = ACTIONS(1850), - [aux_sym_cmd_identifier_token40] = ACTIONS(1850), - [anon_sym_def] = ACTIONS(1848), - [anon_sym_export_DASHenv] = ACTIONS(1848), - [anon_sym_extern] = ACTIONS(1848), - [anon_sym_module] = ACTIONS(1848), - [anon_sym_use] = ACTIONS(1848), - [anon_sym_LPAREN] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1850), - [anon_sym_error] = ACTIONS(1848), - [anon_sym_list] = ACTIONS(1848), - [anon_sym_DASH] = ACTIONS(1848), - [anon_sym_break] = ACTIONS(1848), - [anon_sym_continue] = ACTIONS(1848), - [anon_sym_for] = ACTIONS(1848), - [anon_sym_in] = ACTIONS(1848), - [anon_sym_loop] = ACTIONS(1848), - [anon_sym_make] = ACTIONS(1848), - [anon_sym_while] = ACTIONS(1848), - [anon_sym_do] = ACTIONS(1848), - [anon_sym_if] = ACTIONS(1848), - [anon_sym_else] = ACTIONS(1848), - [anon_sym_match] = ACTIONS(1848), - [anon_sym_RBRACE] = ACTIONS(1850), - [anon_sym_try] = ACTIONS(1848), - [anon_sym_catch] = ACTIONS(1848), - [anon_sym_return] = ACTIONS(1848), - [anon_sym_source] = ACTIONS(1848), - [anon_sym_source_DASHenv] = ACTIONS(1848), - [anon_sym_register] = ACTIONS(1848), - [anon_sym_hide] = ACTIONS(1848), - [anon_sym_hide_DASHenv] = ACTIONS(1848), - [anon_sym_overlay] = ACTIONS(1848), - [anon_sym_new] = ACTIONS(1848), - [anon_sym_as] = ACTIONS(1848), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1850), - [anon_sym_DOT] = ACTIONS(1989), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1850), - [aux_sym__val_number_decimal_token1] = ACTIONS(1848), - [aux_sym__val_number_decimal_token2] = ACTIONS(1850), - [aux_sym__val_number_decimal_token3] = ACTIONS(1850), - [aux_sym__val_number_decimal_token4] = ACTIONS(1850), - [aux_sym__val_number_token1] = ACTIONS(1850), - [aux_sym__val_number_token2] = ACTIONS(1850), - [aux_sym__val_number_token3] = ACTIONS(1850), - [anon_sym_DQUOTE] = ACTIONS(1850), - [sym__str_single_quotes] = ACTIONS(1850), - [sym__str_back_ticks] = ACTIONS(1850), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1850), - [anon_sym_PLUS] = ACTIONS(1848), - [anon_sym_POUND] = ACTIONS(247), + [367] = { + [sym_cell_path] = STATE(612), + [sym_path] = STATE(518), + [sym_comment] = STATE(367), + [aux_sym_cell_path_repeat1] = STATE(411), + [anon_sym_export] = ACTIONS(2009), + [anon_sym_alias] = ACTIONS(2009), + [anon_sym_let] = ACTIONS(2009), + [anon_sym_let_DASHenv] = ACTIONS(2009), + [anon_sym_mut] = ACTIONS(2009), + [anon_sym_const] = ACTIONS(2009), + [aux_sym_cmd_identifier_token1] = ACTIONS(2009), + [aux_sym_cmd_identifier_token2] = ACTIONS(2009), + [aux_sym_cmd_identifier_token3] = ACTIONS(2009), + [aux_sym_cmd_identifier_token4] = ACTIONS(2009), + [aux_sym_cmd_identifier_token5] = ACTIONS(2009), + [aux_sym_cmd_identifier_token6] = ACTIONS(2009), + [aux_sym_cmd_identifier_token7] = ACTIONS(2009), + [aux_sym_cmd_identifier_token8] = ACTIONS(2009), + [aux_sym_cmd_identifier_token9] = ACTIONS(2009), + [aux_sym_cmd_identifier_token10] = ACTIONS(2009), + [aux_sym_cmd_identifier_token11] = ACTIONS(2009), + [aux_sym_cmd_identifier_token12] = ACTIONS(2009), + [aux_sym_cmd_identifier_token13] = ACTIONS(2009), + [aux_sym_cmd_identifier_token14] = ACTIONS(2009), + [aux_sym_cmd_identifier_token15] = ACTIONS(2009), + [aux_sym_cmd_identifier_token16] = ACTIONS(2009), + [aux_sym_cmd_identifier_token17] = ACTIONS(2009), + [aux_sym_cmd_identifier_token18] = ACTIONS(2009), + [aux_sym_cmd_identifier_token19] = ACTIONS(2009), + [aux_sym_cmd_identifier_token20] = ACTIONS(2009), + [aux_sym_cmd_identifier_token21] = ACTIONS(2009), + [aux_sym_cmd_identifier_token22] = ACTIONS(2009), + [aux_sym_cmd_identifier_token23] = ACTIONS(2009), + [aux_sym_cmd_identifier_token24] = ACTIONS(2009), + [aux_sym_cmd_identifier_token25] = ACTIONS(2009), + [aux_sym_cmd_identifier_token26] = ACTIONS(2009), + [aux_sym_cmd_identifier_token27] = ACTIONS(2009), + [aux_sym_cmd_identifier_token28] = ACTIONS(2009), + [aux_sym_cmd_identifier_token29] = ACTIONS(2009), + [aux_sym_cmd_identifier_token30] = ACTIONS(2009), + [aux_sym_cmd_identifier_token31] = ACTIONS(2009), + [aux_sym_cmd_identifier_token32] = ACTIONS(2009), + [aux_sym_cmd_identifier_token33] = ACTIONS(2009), + [aux_sym_cmd_identifier_token34] = ACTIONS(2009), + [aux_sym_cmd_identifier_token35] = ACTIONS(2009), + [aux_sym_cmd_identifier_token36] = ACTIONS(2009), + [anon_sym_true] = ACTIONS(2009), + [anon_sym_false] = ACTIONS(2009), + [anon_sym_null] = ACTIONS(2009), + [aux_sym_cmd_identifier_token38] = ACTIONS(2009), + [aux_sym_cmd_identifier_token39] = ACTIONS(2009), + [aux_sym_cmd_identifier_token40] = ACTIONS(2009), + [anon_sym_def] = ACTIONS(2009), + [anon_sym_export_DASHenv] = ACTIONS(2009), + [anon_sym_extern] = ACTIONS(2009), + [anon_sym_module] = ACTIONS(2009), + [anon_sym_use] = ACTIONS(2009), + [anon_sym_LPAREN] = ACTIONS(2009), + [anon_sym_DOLLAR] = ACTIONS(2009), + [anon_sym_error] = ACTIONS(2009), + [anon_sym_list] = ACTIONS(2009), + [anon_sym_DASH] = ACTIONS(2009), + [anon_sym_break] = ACTIONS(2009), + [anon_sym_continue] = ACTIONS(2009), + [anon_sym_for] = ACTIONS(2009), + [anon_sym_in] = ACTIONS(2009), + [anon_sym_loop] = ACTIONS(2009), + [anon_sym_make] = ACTIONS(2009), + [anon_sym_while] = ACTIONS(2009), + [anon_sym_do] = ACTIONS(2009), + [anon_sym_if] = ACTIONS(2009), + [anon_sym_else] = ACTIONS(2009), + [anon_sym_match] = ACTIONS(2009), + [anon_sym_RBRACE] = ACTIONS(2009), + [anon_sym_try] = ACTIONS(2009), + [anon_sym_catch] = ACTIONS(2009), + [anon_sym_return] = ACTIONS(2009), + [anon_sym_source] = ACTIONS(2009), + [anon_sym_source_DASHenv] = ACTIONS(2009), + [anon_sym_register] = ACTIONS(2009), + [anon_sym_hide] = ACTIONS(2009), + [anon_sym_hide_DASHenv] = ACTIONS(2009), + [anon_sym_overlay] = ACTIONS(2009), + [anon_sym_new] = ACTIONS(2009), + [anon_sym_as] = ACTIONS(2009), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2009), + [anon_sym_DOT] = ACTIONS(1856), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2009), + [aux_sym__val_number_decimal_token1] = ACTIONS(2009), + [aux_sym__val_number_decimal_token2] = ACTIONS(2009), + [aux_sym__val_number_decimal_token3] = ACTIONS(2009), + [aux_sym__val_number_decimal_token4] = ACTIONS(2009), + [aux_sym__val_number_token1] = ACTIONS(2009), + [aux_sym__val_number_token2] = ACTIONS(2009), + [aux_sym__val_number_token3] = ACTIONS(2009), + [anon_sym_DQUOTE] = ACTIONS(2009), + [sym__str_single_quotes] = ACTIONS(2009), + [sym__str_back_ticks] = ACTIONS(2009), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2009), + [sym__entry_separator] = ACTIONS(2011), + [anon_sym_PLUS] = ACTIONS(2009), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2011), }, - [424] = { - [sym_cell_path] = STATE(682), - [sym_path] = STATE(578), - [sym_comment] = STATE(424), - [aux_sym_cell_path_repeat1] = STATE(459), - [anon_sym_export] = ACTIONS(1852), - [anon_sym_alias] = ACTIONS(1852), - [anon_sym_let] = ACTIONS(1852), - [anon_sym_let_DASHenv] = ACTIONS(1852), - [anon_sym_mut] = ACTIONS(1852), - [anon_sym_const] = ACTIONS(1852), - [aux_sym_cmd_identifier_token1] = ACTIONS(1852), - [aux_sym_cmd_identifier_token2] = ACTIONS(1852), - [aux_sym_cmd_identifier_token3] = ACTIONS(1852), - [aux_sym_cmd_identifier_token4] = ACTIONS(1852), - [aux_sym_cmd_identifier_token5] = ACTIONS(1852), - [aux_sym_cmd_identifier_token6] = ACTIONS(1852), - [aux_sym_cmd_identifier_token7] = ACTIONS(1852), - [aux_sym_cmd_identifier_token8] = ACTIONS(1852), - [aux_sym_cmd_identifier_token9] = ACTIONS(1852), - [aux_sym_cmd_identifier_token10] = ACTIONS(1852), - [aux_sym_cmd_identifier_token11] = ACTIONS(1852), - [aux_sym_cmd_identifier_token12] = ACTIONS(1852), - [aux_sym_cmd_identifier_token13] = ACTIONS(1852), - [aux_sym_cmd_identifier_token14] = ACTIONS(1852), - [aux_sym_cmd_identifier_token15] = ACTIONS(1852), - [aux_sym_cmd_identifier_token16] = ACTIONS(1852), - [aux_sym_cmd_identifier_token17] = ACTIONS(1852), - [aux_sym_cmd_identifier_token18] = ACTIONS(1852), - [aux_sym_cmd_identifier_token19] = ACTIONS(1852), - [aux_sym_cmd_identifier_token20] = ACTIONS(1852), - [aux_sym_cmd_identifier_token21] = ACTIONS(1852), - [aux_sym_cmd_identifier_token22] = ACTIONS(1852), - [aux_sym_cmd_identifier_token23] = ACTIONS(1852), - [aux_sym_cmd_identifier_token24] = ACTIONS(1852), - [aux_sym_cmd_identifier_token25] = ACTIONS(1852), - [aux_sym_cmd_identifier_token26] = ACTIONS(1852), - [aux_sym_cmd_identifier_token27] = ACTIONS(1852), - [aux_sym_cmd_identifier_token28] = ACTIONS(1852), - [aux_sym_cmd_identifier_token29] = ACTIONS(1852), - [aux_sym_cmd_identifier_token30] = ACTIONS(1852), - [aux_sym_cmd_identifier_token31] = ACTIONS(1852), - [aux_sym_cmd_identifier_token32] = ACTIONS(1852), - [aux_sym_cmd_identifier_token33] = ACTIONS(1852), - [aux_sym_cmd_identifier_token34] = ACTIONS(1852), - [aux_sym_cmd_identifier_token35] = ACTIONS(1852), - [aux_sym_cmd_identifier_token36] = ACTIONS(1852), - [anon_sym_true] = ACTIONS(1854), - [anon_sym_false] = ACTIONS(1854), - [anon_sym_null] = ACTIONS(1854), - [aux_sym_cmd_identifier_token38] = ACTIONS(1852), - [aux_sym_cmd_identifier_token39] = ACTIONS(1854), - [aux_sym_cmd_identifier_token40] = ACTIONS(1854), - [anon_sym_def] = ACTIONS(1852), - [anon_sym_export_DASHenv] = ACTIONS(1852), - [anon_sym_extern] = ACTIONS(1852), - [anon_sym_module] = ACTIONS(1852), - [anon_sym_use] = ACTIONS(1852), - [anon_sym_LPAREN] = ACTIONS(1854), - [anon_sym_DOLLAR] = ACTIONS(1854), - [anon_sym_error] = ACTIONS(1852), - [anon_sym_list] = ACTIONS(1852), - [anon_sym_DASH] = ACTIONS(1852), - [anon_sym_break] = ACTIONS(1852), - [anon_sym_continue] = ACTIONS(1852), - [anon_sym_for] = ACTIONS(1852), - [anon_sym_in] = ACTIONS(1852), - [anon_sym_loop] = ACTIONS(1852), - [anon_sym_make] = ACTIONS(1852), - [anon_sym_while] = ACTIONS(1852), - [anon_sym_do] = ACTIONS(1852), - [anon_sym_if] = ACTIONS(1852), - [anon_sym_else] = ACTIONS(1852), - [anon_sym_match] = ACTIONS(1852), - [anon_sym_RBRACE] = ACTIONS(1854), - [anon_sym_try] = ACTIONS(1852), - [anon_sym_catch] = ACTIONS(1852), - [anon_sym_return] = ACTIONS(1852), - [anon_sym_source] = ACTIONS(1852), - [anon_sym_source_DASHenv] = ACTIONS(1852), - [anon_sym_register] = ACTIONS(1852), - [anon_sym_hide] = ACTIONS(1852), - [anon_sym_hide_DASHenv] = ACTIONS(1852), - [anon_sym_overlay] = ACTIONS(1852), - [anon_sym_new] = ACTIONS(1852), - [anon_sym_as] = ACTIONS(1852), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1854), - [anon_sym_DOT] = ACTIONS(1989), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1854), - [aux_sym__val_number_decimal_token1] = ACTIONS(1852), - [aux_sym__val_number_decimal_token2] = ACTIONS(1854), - [aux_sym__val_number_decimal_token3] = ACTIONS(1854), - [aux_sym__val_number_decimal_token4] = ACTIONS(1854), - [aux_sym__val_number_token1] = ACTIONS(1854), - [aux_sym__val_number_token2] = ACTIONS(1854), - [aux_sym__val_number_token3] = ACTIONS(1854), - [anon_sym_DQUOTE] = ACTIONS(1854), - [sym__str_single_quotes] = ACTIONS(1854), - [sym__str_back_ticks] = ACTIONS(1854), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1854), - [anon_sym_PLUS] = ACTIONS(1852), - [anon_sym_POUND] = ACTIONS(247), + [368] = { + [sym_cell_path] = STATE(622), + [sym_path] = STATE(518), + [sym_comment] = STATE(368), + [aux_sym_cell_path_repeat1] = STATE(411), + [anon_sym_export] = ACTIONS(2013), + [anon_sym_alias] = ACTIONS(2013), + [anon_sym_let] = ACTIONS(2013), + [anon_sym_let_DASHenv] = ACTIONS(2013), + [anon_sym_mut] = ACTIONS(2013), + [anon_sym_const] = ACTIONS(2013), + [aux_sym_cmd_identifier_token1] = ACTIONS(2013), + [aux_sym_cmd_identifier_token2] = ACTIONS(2013), + [aux_sym_cmd_identifier_token3] = ACTIONS(2013), + [aux_sym_cmd_identifier_token4] = ACTIONS(2013), + [aux_sym_cmd_identifier_token5] = ACTIONS(2013), + [aux_sym_cmd_identifier_token6] = ACTIONS(2013), + [aux_sym_cmd_identifier_token7] = ACTIONS(2013), + [aux_sym_cmd_identifier_token8] = ACTIONS(2013), + [aux_sym_cmd_identifier_token9] = ACTIONS(2013), + [aux_sym_cmd_identifier_token10] = ACTIONS(2013), + [aux_sym_cmd_identifier_token11] = ACTIONS(2013), + [aux_sym_cmd_identifier_token12] = ACTIONS(2013), + [aux_sym_cmd_identifier_token13] = ACTIONS(2013), + [aux_sym_cmd_identifier_token14] = ACTIONS(2013), + [aux_sym_cmd_identifier_token15] = ACTIONS(2013), + [aux_sym_cmd_identifier_token16] = ACTIONS(2013), + [aux_sym_cmd_identifier_token17] = ACTIONS(2013), + [aux_sym_cmd_identifier_token18] = ACTIONS(2013), + [aux_sym_cmd_identifier_token19] = ACTIONS(2013), + [aux_sym_cmd_identifier_token20] = ACTIONS(2013), + [aux_sym_cmd_identifier_token21] = ACTIONS(2013), + [aux_sym_cmd_identifier_token22] = ACTIONS(2013), + [aux_sym_cmd_identifier_token23] = ACTIONS(2013), + [aux_sym_cmd_identifier_token24] = ACTIONS(2013), + [aux_sym_cmd_identifier_token25] = ACTIONS(2013), + [aux_sym_cmd_identifier_token26] = ACTIONS(2013), + [aux_sym_cmd_identifier_token27] = ACTIONS(2013), + [aux_sym_cmd_identifier_token28] = ACTIONS(2013), + [aux_sym_cmd_identifier_token29] = ACTIONS(2013), + [aux_sym_cmd_identifier_token30] = ACTIONS(2013), + [aux_sym_cmd_identifier_token31] = ACTIONS(2013), + [aux_sym_cmd_identifier_token32] = ACTIONS(2013), + [aux_sym_cmd_identifier_token33] = ACTIONS(2013), + [aux_sym_cmd_identifier_token34] = ACTIONS(2013), + [aux_sym_cmd_identifier_token35] = ACTIONS(2013), + [aux_sym_cmd_identifier_token36] = ACTIONS(2013), + [anon_sym_true] = ACTIONS(2013), + [anon_sym_false] = ACTIONS(2013), + [anon_sym_null] = ACTIONS(2013), + [aux_sym_cmd_identifier_token38] = ACTIONS(2013), + [aux_sym_cmd_identifier_token39] = ACTIONS(2013), + [aux_sym_cmd_identifier_token40] = ACTIONS(2013), + [anon_sym_def] = ACTIONS(2013), + [anon_sym_export_DASHenv] = ACTIONS(2013), + [anon_sym_extern] = ACTIONS(2013), + [anon_sym_module] = ACTIONS(2013), + [anon_sym_use] = ACTIONS(2013), + [anon_sym_LPAREN] = ACTIONS(2013), + [anon_sym_DOLLAR] = ACTIONS(2013), + [anon_sym_error] = ACTIONS(2013), + [anon_sym_list] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_break] = ACTIONS(2013), + [anon_sym_continue] = ACTIONS(2013), + [anon_sym_for] = ACTIONS(2013), + [anon_sym_in] = ACTIONS(2013), + [anon_sym_loop] = ACTIONS(2013), + [anon_sym_make] = ACTIONS(2013), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_do] = ACTIONS(2013), + [anon_sym_if] = ACTIONS(2013), + [anon_sym_else] = ACTIONS(2013), + [anon_sym_match] = ACTIONS(2013), + [anon_sym_RBRACE] = ACTIONS(2013), + [anon_sym_try] = ACTIONS(2013), + [anon_sym_catch] = ACTIONS(2013), + [anon_sym_return] = ACTIONS(2013), + [anon_sym_source] = ACTIONS(2013), + [anon_sym_source_DASHenv] = ACTIONS(2013), + [anon_sym_register] = ACTIONS(2013), + [anon_sym_hide] = ACTIONS(2013), + [anon_sym_hide_DASHenv] = ACTIONS(2013), + [anon_sym_overlay] = ACTIONS(2013), + [anon_sym_new] = ACTIONS(2013), + [anon_sym_as] = ACTIONS(2013), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2013), + [anon_sym_DOT] = ACTIONS(1856), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2013), + [aux_sym__val_number_decimal_token1] = ACTIONS(2013), + [aux_sym__val_number_decimal_token2] = ACTIONS(2013), + [aux_sym__val_number_decimal_token3] = ACTIONS(2013), + [aux_sym__val_number_decimal_token4] = ACTIONS(2013), + [aux_sym__val_number_token1] = ACTIONS(2013), + [aux_sym__val_number_token2] = ACTIONS(2013), + [aux_sym__val_number_token3] = ACTIONS(2013), + [anon_sym_DQUOTE] = ACTIONS(2013), + [sym__str_single_quotes] = ACTIONS(2013), + [sym__str_back_ticks] = ACTIONS(2013), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2013), + [sym__entry_separator] = ACTIONS(2015), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2015), }, - [425] = { - [sym_path] = STATE(527), - [sym_comment] = STATE(425), - [aux_sym_cell_path_repeat1] = STATE(426), - [anon_sym_export] = ACTIONS(1011), - [anon_sym_alias] = ACTIONS(1011), - [anon_sym_let] = ACTIONS(1011), - [anon_sym_let_DASHenv] = ACTIONS(1011), - [anon_sym_mut] = ACTIONS(1011), - [anon_sym_const] = ACTIONS(1011), - [aux_sym_cmd_identifier_token1] = ACTIONS(1011), - [aux_sym_cmd_identifier_token2] = ACTIONS(1011), - [aux_sym_cmd_identifier_token3] = ACTIONS(1011), - [aux_sym_cmd_identifier_token4] = ACTIONS(1011), - [aux_sym_cmd_identifier_token5] = ACTIONS(1011), - [aux_sym_cmd_identifier_token6] = ACTIONS(1011), - [aux_sym_cmd_identifier_token7] = ACTIONS(1011), - [aux_sym_cmd_identifier_token8] = ACTIONS(1011), - [aux_sym_cmd_identifier_token9] = ACTIONS(1011), - [aux_sym_cmd_identifier_token10] = ACTIONS(1011), - [aux_sym_cmd_identifier_token11] = ACTIONS(1011), - [aux_sym_cmd_identifier_token12] = ACTIONS(1011), - [aux_sym_cmd_identifier_token13] = ACTIONS(1011), - [aux_sym_cmd_identifier_token14] = ACTIONS(1011), - [aux_sym_cmd_identifier_token15] = ACTIONS(1011), - [aux_sym_cmd_identifier_token16] = ACTIONS(1011), - [aux_sym_cmd_identifier_token17] = ACTIONS(1011), - [aux_sym_cmd_identifier_token18] = ACTIONS(1011), - [aux_sym_cmd_identifier_token19] = ACTIONS(1011), - [aux_sym_cmd_identifier_token20] = ACTIONS(1011), - [aux_sym_cmd_identifier_token21] = ACTIONS(1011), - [aux_sym_cmd_identifier_token22] = ACTIONS(1011), - [aux_sym_cmd_identifier_token23] = ACTIONS(1011), - [aux_sym_cmd_identifier_token24] = ACTIONS(1011), - [aux_sym_cmd_identifier_token25] = ACTIONS(1011), - [aux_sym_cmd_identifier_token26] = ACTIONS(1011), - [aux_sym_cmd_identifier_token27] = ACTIONS(1011), - [aux_sym_cmd_identifier_token28] = ACTIONS(1011), - [aux_sym_cmd_identifier_token29] = ACTIONS(1011), - [aux_sym_cmd_identifier_token30] = ACTIONS(1011), - [aux_sym_cmd_identifier_token31] = ACTIONS(1011), - [aux_sym_cmd_identifier_token32] = ACTIONS(1011), - [aux_sym_cmd_identifier_token33] = ACTIONS(1011), - [aux_sym_cmd_identifier_token34] = ACTIONS(1011), - [aux_sym_cmd_identifier_token35] = ACTIONS(1011), - [aux_sym_cmd_identifier_token36] = ACTIONS(1011), - [anon_sym_true] = ACTIONS(1011), - [anon_sym_false] = ACTIONS(1011), - [anon_sym_null] = ACTIONS(1011), - [aux_sym_cmd_identifier_token38] = ACTIONS(1011), - [aux_sym_cmd_identifier_token39] = ACTIONS(1011), - [aux_sym_cmd_identifier_token40] = ACTIONS(1011), - [anon_sym_def] = ACTIONS(1011), - [anon_sym_export_DASHenv] = ACTIONS(1011), - [anon_sym_extern] = ACTIONS(1011), - [anon_sym_module] = ACTIONS(1011), - [anon_sym_use] = ACTIONS(1011), - [anon_sym_LPAREN] = ACTIONS(1011), - [anon_sym_DOLLAR] = ACTIONS(1011), - [anon_sym_error] = ACTIONS(1011), - [anon_sym_list] = ACTIONS(1011), - [anon_sym_DASH] = ACTIONS(1011), - [anon_sym_break] = ACTIONS(1011), - [anon_sym_continue] = ACTIONS(1011), - [anon_sym_for] = ACTIONS(1011), - [anon_sym_in] = ACTIONS(1011), - [anon_sym_loop] = ACTIONS(1011), - [anon_sym_make] = ACTIONS(1011), - [anon_sym_while] = ACTIONS(1011), - [anon_sym_do] = ACTIONS(1011), - [anon_sym_if] = ACTIONS(1011), - [anon_sym_else] = ACTIONS(1011), - [anon_sym_match] = ACTIONS(1011), - [anon_sym_RBRACE] = ACTIONS(1011), - [anon_sym_try] = ACTIONS(1011), - [anon_sym_catch] = ACTIONS(1011), - [anon_sym_return] = ACTIONS(1011), - [anon_sym_source] = ACTIONS(1011), - [anon_sym_source_DASHenv] = ACTIONS(1011), - [anon_sym_register] = ACTIONS(1011), - [anon_sym_hide] = ACTIONS(1011), - [anon_sym_hide_DASHenv] = ACTIONS(1011), - [anon_sym_overlay] = ACTIONS(1011), - [anon_sym_new] = ACTIONS(1011), - [anon_sym_as] = ACTIONS(1011), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1011), - [anon_sym_DOT] = ACTIONS(1824), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1011), - [aux_sym__val_number_decimal_token1] = ACTIONS(1011), - [aux_sym__val_number_decimal_token2] = ACTIONS(1011), - [aux_sym__val_number_decimal_token3] = ACTIONS(1011), - [aux_sym__val_number_decimal_token4] = ACTIONS(1011), - [aux_sym__val_number_token1] = ACTIONS(1011), - [aux_sym__val_number_token2] = ACTIONS(1011), - [aux_sym__val_number_token3] = ACTIONS(1011), - [anon_sym_DQUOTE] = ACTIONS(1011), - [sym__str_single_quotes] = ACTIONS(1011), - [sym__str_back_ticks] = ACTIONS(1011), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1011), - [sym__entry_separator] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(1011), + [369] = { + [sym_cell_path] = STATE(562), + [sym_path] = STATE(518), + [sym_comment] = STATE(369), + [aux_sym_cell_path_repeat1] = STATE(411), + [anon_sym_export] = ACTIONS(2017), + [anon_sym_alias] = ACTIONS(2017), + [anon_sym_let] = ACTIONS(2017), + [anon_sym_let_DASHenv] = ACTIONS(2017), + [anon_sym_mut] = ACTIONS(2017), + [anon_sym_const] = ACTIONS(2017), + [aux_sym_cmd_identifier_token1] = ACTIONS(2017), + [aux_sym_cmd_identifier_token2] = ACTIONS(2017), + [aux_sym_cmd_identifier_token3] = ACTIONS(2017), + [aux_sym_cmd_identifier_token4] = ACTIONS(2017), + [aux_sym_cmd_identifier_token5] = ACTIONS(2017), + [aux_sym_cmd_identifier_token6] = ACTIONS(2017), + [aux_sym_cmd_identifier_token7] = ACTIONS(2017), + [aux_sym_cmd_identifier_token8] = ACTIONS(2017), + [aux_sym_cmd_identifier_token9] = ACTIONS(2017), + [aux_sym_cmd_identifier_token10] = ACTIONS(2017), + [aux_sym_cmd_identifier_token11] = ACTIONS(2017), + [aux_sym_cmd_identifier_token12] = ACTIONS(2017), + [aux_sym_cmd_identifier_token13] = ACTIONS(2017), + [aux_sym_cmd_identifier_token14] = ACTIONS(2017), + [aux_sym_cmd_identifier_token15] = ACTIONS(2017), + [aux_sym_cmd_identifier_token16] = ACTIONS(2017), + [aux_sym_cmd_identifier_token17] = ACTIONS(2017), + [aux_sym_cmd_identifier_token18] = ACTIONS(2017), + [aux_sym_cmd_identifier_token19] = ACTIONS(2017), + [aux_sym_cmd_identifier_token20] = ACTIONS(2017), + [aux_sym_cmd_identifier_token21] = ACTIONS(2017), + [aux_sym_cmd_identifier_token22] = ACTIONS(2017), + [aux_sym_cmd_identifier_token23] = ACTIONS(2017), + [aux_sym_cmd_identifier_token24] = ACTIONS(2017), + [aux_sym_cmd_identifier_token25] = ACTIONS(2017), + [aux_sym_cmd_identifier_token26] = ACTIONS(2017), + [aux_sym_cmd_identifier_token27] = ACTIONS(2017), + [aux_sym_cmd_identifier_token28] = ACTIONS(2017), + [aux_sym_cmd_identifier_token29] = ACTIONS(2017), + [aux_sym_cmd_identifier_token30] = ACTIONS(2017), + [aux_sym_cmd_identifier_token31] = ACTIONS(2017), + [aux_sym_cmd_identifier_token32] = ACTIONS(2017), + [aux_sym_cmd_identifier_token33] = ACTIONS(2017), + [aux_sym_cmd_identifier_token34] = ACTIONS(2017), + [aux_sym_cmd_identifier_token35] = ACTIONS(2017), + [aux_sym_cmd_identifier_token36] = ACTIONS(2017), + [anon_sym_true] = ACTIONS(2017), + [anon_sym_false] = ACTIONS(2017), + [anon_sym_null] = ACTIONS(2017), + [aux_sym_cmd_identifier_token38] = ACTIONS(2017), + [aux_sym_cmd_identifier_token39] = ACTIONS(2017), + [aux_sym_cmd_identifier_token40] = ACTIONS(2017), + [anon_sym_def] = ACTIONS(2017), + [anon_sym_export_DASHenv] = ACTIONS(2017), + [anon_sym_extern] = ACTIONS(2017), + [anon_sym_module] = ACTIONS(2017), + [anon_sym_use] = ACTIONS(2017), + [anon_sym_LPAREN] = ACTIONS(2017), + [anon_sym_DOLLAR] = ACTIONS(2017), + [anon_sym_error] = ACTIONS(2017), + [anon_sym_list] = ACTIONS(2017), + [anon_sym_DASH] = ACTIONS(2017), + [anon_sym_break] = ACTIONS(2017), + [anon_sym_continue] = ACTIONS(2017), + [anon_sym_for] = ACTIONS(2017), + [anon_sym_in] = ACTIONS(2017), + [anon_sym_loop] = ACTIONS(2017), + [anon_sym_make] = ACTIONS(2017), + [anon_sym_while] = ACTIONS(2017), + [anon_sym_do] = ACTIONS(2017), + [anon_sym_if] = ACTIONS(2017), + [anon_sym_else] = ACTIONS(2017), + [anon_sym_match] = ACTIONS(2017), + [anon_sym_RBRACE] = ACTIONS(2017), + [anon_sym_try] = ACTIONS(2017), + [anon_sym_catch] = ACTIONS(2017), + [anon_sym_return] = ACTIONS(2017), + [anon_sym_source] = ACTIONS(2017), + [anon_sym_source_DASHenv] = ACTIONS(2017), + [anon_sym_register] = ACTIONS(2017), + [anon_sym_hide] = ACTIONS(2017), + [anon_sym_hide_DASHenv] = ACTIONS(2017), + [anon_sym_overlay] = ACTIONS(2017), + [anon_sym_new] = ACTIONS(2017), + [anon_sym_as] = ACTIONS(2017), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2017), + [anon_sym_DOT] = ACTIONS(1856), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2017), + [aux_sym__val_number_decimal_token1] = ACTIONS(2017), + [aux_sym__val_number_decimal_token2] = ACTIONS(2017), + [aux_sym__val_number_decimal_token3] = ACTIONS(2017), + [aux_sym__val_number_decimal_token4] = ACTIONS(2017), + [aux_sym__val_number_token1] = ACTIONS(2017), + [aux_sym__val_number_token2] = ACTIONS(2017), + [aux_sym__val_number_token3] = ACTIONS(2017), + [anon_sym_DQUOTE] = ACTIONS(2017), + [sym__str_single_quotes] = ACTIONS(2017), + [sym__str_back_ticks] = ACTIONS(2017), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2017), + [sym__entry_separator] = ACTIONS(2019), + [anon_sym_PLUS] = ACTIONS(2017), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2019), }, - [426] = { - [sym_path] = STATE(527), - [sym_comment] = STATE(426), - [aux_sym_cell_path_repeat1] = STATE(426), - [anon_sym_export] = ACTIONS(1015), - [anon_sym_alias] = ACTIONS(1015), - [anon_sym_let] = ACTIONS(1015), - [anon_sym_let_DASHenv] = ACTIONS(1015), - [anon_sym_mut] = ACTIONS(1015), - [anon_sym_const] = ACTIONS(1015), - [aux_sym_cmd_identifier_token1] = ACTIONS(1015), - [aux_sym_cmd_identifier_token2] = ACTIONS(1015), - [aux_sym_cmd_identifier_token3] = ACTIONS(1015), - [aux_sym_cmd_identifier_token4] = ACTIONS(1015), - [aux_sym_cmd_identifier_token5] = ACTIONS(1015), - [aux_sym_cmd_identifier_token6] = ACTIONS(1015), - [aux_sym_cmd_identifier_token7] = ACTIONS(1015), - [aux_sym_cmd_identifier_token8] = ACTIONS(1015), - [aux_sym_cmd_identifier_token9] = ACTIONS(1015), - [aux_sym_cmd_identifier_token10] = ACTIONS(1015), - [aux_sym_cmd_identifier_token11] = ACTIONS(1015), - [aux_sym_cmd_identifier_token12] = ACTIONS(1015), - [aux_sym_cmd_identifier_token13] = ACTIONS(1015), - [aux_sym_cmd_identifier_token14] = ACTIONS(1015), - [aux_sym_cmd_identifier_token15] = ACTIONS(1015), - [aux_sym_cmd_identifier_token16] = ACTIONS(1015), - [aux_sym_cmd_identifier_token17] = ACTIONS(1015), - [aux_sym_cmd_identifier_token18] = ACTIONS(1015), - [aux_sym_cmd_identifier_token19] = ACTIONS(1015), - [aux_sym_cmd_identifier_token20] = ACTIONS(1015), - [aux_sym_cmd_identifier_token21] = ACTIONS(1015), - [aux_sym_cmd_identifier_token22] = ACTIONS(1015), - [aux_sym_cmd_identifier_token23] = ACTIONS(1015), - [aux_sym_cmd_identifier_token24] = ACTIONS(1015), - [aux_sym_cmd_identifier_token25] = ACTIONS(1015), - [aux_sym_cmd_identifier_token26] = ACTIONS(1015), - [aux_sym_cmd_identifier_token27] = ACTIONS(1015), - [aux_sym_cmd_identifier_token28] = ACTIONS(1015), - [aux_sym_cmd_identifier_token29] = ACTIONS(1015), - [aux_sym_cmd_identifier_token30] = ACTIONS(1015), - [aux_sym_cmd_identifier_token31] = ACTIONS(1015), - [aux_sym_cmd_identifier_token32] = ACTIONS(1015), - [aux_sym_cmd_identifier_token33] = ACTIONS(1015), - [aux_sym_cmd_identifier_token34] = ACTIONS(1015), - [aux_sym_cmd_identifier_token35] = ACTIONS(1015), - [aux_sym_cmd_identifier_token36] = ACTIONS(1015), - [anon_sym_true] = ACTIONS(1015), - [anon_sym_false] = ACTIONS(1015), - [anon_sym_null] = ACTIONS(1015), - [aux_sym_cmd_identifier_token38] = ACTIONS(1015), - [aux_sym_cmd_identifier_token39] = ACTIONS(1015), - [aux_sym_cmd_identifier_token40] = ACTIONS(1015), - [anon_sym_def] = ACTIONS(1015), - [anon_sym_export_DASHenv] = ACTIONS(1015), - [anon_sym_extern] = ACTIONS(1015), - [anon_sym_module] = ACTIONS(1015), - [anon_sym_use] = ACTIONS(1015), - [anon_sym_LPAREN] = ACTIONS(1015), - [anon_sym_DOLLAR] = ACTIONS(1015), - [anon_sym_error] = ACTIONS(1015), - [anon_sym_list] = ACTIONS(1015), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_break] = ACTIONS(1015), - [anon_sym_continue] = ACTIONS(1015), - [anon_sym_for] = ACTIONS(1015), - [anon_sym_in] = ACTIONS(1015), - [anon_sym_loop] = ACTIONS(1015), - [anon_sym_make] = ACTIONS(1015), - [anon_sym_while] = ACTIONS(1015), - [anon_sym_do] = ACTIONS(1015), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_else] = ACTIONS(1015), - [anon_sym_match] = ACTIONS(1015), - [anon_sym_RBRACE] = ACTIONS(1015), - [anon_sym_try] = ACTIONS(1015), - [anon_sym_catch] = ACTIONS(1015), - [anon_sym_return] = ACTIONS(1015), - [anon_sym_source] = ACTIONS(1015), - [anon_sym_source_DASHenv] = ACTIONS(1015), - [anon_sym_register] = ACTIONS(1015), - [anon_sym_hide] = ACTIONS(1015), - [anon_sym_hide_DASHenv] = ACTIONS(1015), - [anon_sym_overlay] = ACTIONS(1015), - [anon_sym_new] = ACTIONS(1015), - [anon_sym_as] = ACTIONS(1015), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1015), - [anon_sym_DOT] = ACTIONS(2145), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1015), - [aux_sym__val_number_decimal_token1] = ACTIONS(1015), - [aux_sym__val_number_decimal_token2] = ACTIONS(1015), - [aux_sym__val_number_decimal_token3] = ACTIONS(1015), - [aux_sym__val_number_decimal_token4] = ACTIONS(1015), - [aux_sym__val_number_token1] = ACTIONS(1015), - [aux_sym__val_number_token2] = ACTIONS(1015), - [aux_sym__val_number_token3] = ACTIONS(1015), - [anon_sym_DQUOTE] = ACTIONS(1015), - [sym__str_single_quotes] = ACTIONS(1015), - [sym__str_back_ticks] = ACTIONS(1015), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1015), - [sym__entry_separator] = ACTIONS(1017), - [anon_sym_PLUS] = ACTIONS(1015), + [370] = { + [sym_cell_path] = STATE(563), + [sym_path] = STATE(518), + [sym_comment] = STATE(370), + [aux_sym_cell_path_repeat1] = STATE(411), + [anon_sym_export] = ACTIONS(2021), + [anon_sym_alias] = ACTIONS(2021), + [anon_sym_let] = ACTIONS(2021), + [anon_sym_let_DASHenv] = ACTIONS(2021), + [anon_sym_mut] = ACTIONS(2021), + [anon_sym_const] = ACTIONS(2021), + [aux_sym_cmd_identifier_token1] = ACTIONS(2021), + [aux_sym_cmd_identifier_token2] = ACTIONS(2021), + [aux_sym_cmd_identifier_token3] = ACTIONS(2021), + [aux_sym_cmd_identifier_token4] = ACTIONS(2021), + [aux_sym_cmd_identifier_token5] = ACTIONS(2021), + [aux_sym_cmd_identifier_token6] = ACTIONS(2021), + [aux_sym_cmd_identifier_token7] = ACTIONS(2021), + [aux_sym_cmd_identifier_token8] = ACTIONS(2021), + [aux_sym_cmd_identifier_token9] = ACTIONS(2021), + [aux_sym_cmd_identifier_token10] = ACTIONS(2021), + [aux_sym_cmd_identifier_token11] = ACTIONS(2021), + [aux_sym_cmd_identifier_token12] = ACTIONS(2021), + [aux_sym_cmd_identifier_token13] = ACTIONS(2021), + [aux_sym_cmd_identifier_token14] = ACTIONS(2021), + [aux_sym_cmd_identifier_token15] = ACTIONS(2021), + [aux_sym_cmd_identifier_token16] = ACTIONS(2021), + [aux_sym_cmd_identifier_token17] = ACTIONS(2021), + [aux_sym_cmd_identifier_token18] = ACTIONS(2021), + [aux_sym_cmd_identifier_token19] = ACTIONS(2021), + [aux_sym_cmd_identifier_token20] = ACTIONS(2021), + [aux_sym_cmd_identifier_token21] = ACTIONS(2021), + [aux_sym_cmd_identifier_token22] = ACTIONS(2021), + [aux_sym_cmd_identifier_token23] = ACTIONS(2021), + [aux_sym_cmd_identifier_token24] = ACTIONS(2021), + [aux_sym_cmd_identifier_token25] = ACTIONS(2021), + [aux_sym_cmd_identifier_token26] = ACTIONS(2021), + [aux_sym_cmd_identifier_token27] = ACTIONS(2021), + [aux_sym_cmd_identifier_token28] = ACTIONS(2021), + [aux_sym_cmd_identifier_token29] = ACTIONS(2021), + [aux_sym_cmd_identifier_token30] = ACTIONS(2021), + [aux_sym_cmd_identifier_token31] = ACTIONS(2021), + [aux_sym_cmd_identifier_token32] = ACTIONS(2021), + [aux_sym_cmd_identifier_token33] = ACTIONS(2021), + [aux_sym_cmd_identifier_token34] = ACTIONS(2021), + [aux_sym_cmd_identifier_token35] = ACTIONS(2021), + [aux_sym_cmd_identifier_token36] = ACTIONS(2021), + [anon_sym_true] = ACTIONS(2021), + [anon_sym_false] = ACTIONS(2021), + [anon_sym_null] = ACTIONS(2021), + [aux_sym_cmd_identifier_token38] = ACTIONS(2021), + [aux_sym_cmd_identifier_token39] = ACTIONS(2021), + [aux_sym_cmd_identifier_token40] = ACTIONS(2021), + [anon_sym_def] = ACTIONS(2021), + [anon_sym_export_DASHenv] = ACTIONS(2021), + [anon_sym_extern] = ACTIONS(2021), + [anon_sym_module] = ACTIONS(2021), + [anon_sym_use] = ACTIONS(2021), + [anon_sym_LPAREN] = ACTIONS(2021), + [anon_sym_DOLLAR] = ACTIONS(2021), + [anon_sym_error] = ACTIONS(2021), + [anon_sym_list] = ACTIONS(2021), + [anon_sym_DASH] = ACTIONS(2021), + [anon_sym_break] = ACTIONS(2021), + [anon_sym_continue] = ACTIONS(2021), + [anon_sym_for] = ACTIONS(2021), + [anon_sym_in] = ACTIONS(2021), + [anon_sym_loop] = ACTIONS(2021), + [anon_sym_make] = ACTIONS(2021), + [anon_sym_while] = ACTIONS(2021), + [anon_sym_do] = ACTIONS(2021), + [anon_sym_if] = ACTIONS(2021), + [anon_sym_else] = ACTIONS(2021), + [anon_sym_match] = ACTIONS(2021), + [anon_sym_RBRACE] = ACTIONS(2021), + [anon_sym_try] = ACTIONS(2021), + [anon_sym_catch] = ACTIONS(2021), + [anon_sym_return] = ACTIONS(2021), + [anon_sym_source] = ACTIONS(2021), + [anon_sym_source_DASHenv] = ACTIONS(2021), + [anon_sym_register] = ACTIONS(2021), + [anon_sym_hide] = ACTIONS(2021), + [anon_sym_hide_DASHenv] = ACTIONS(2021), + [anon_sym_overlay] = ACTIONS(2021), + [anon_sym_new] = ACTIONS(2021), + [anon_sym_as] = ACTIONS(2021), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2021), + [anon_sym_DOT] = ACTIONS(1856), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2021), + [aux_sym__val_number_decimal_token1] = ACTIONS(2021), + [aux_sym__val_number_decimal_token2] = ACTIONS(2021), + [aux_sym__val_number_decimal_token3] = ACTIONS(2021), + [aux_sym__val_number_decimal_token4] = ACTIONS(2021), + [aux_sym__val_number_token1] = ACTIONS(2021), + [aux_sym__val_number_token2] = ACTIONS(2021), + [aux_sym__val_number_token3] = ACTIONS(2021), + [anon_sym_DQUOTE] = ACTIONS(2021), + [sym__str_single_quotes] = ACTIONS(2021), + [sym__str_back_ticks] = ACTIONS(2021), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2021), + [sym__entry_separator] = ACTIONS(2023), + [anon_sym_PLUS] = ACTIONS(2021), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2023), }, - [427] = { - [sym_cell_path] = STATE(683), - [sym_path] = STATE(578), - [sym_comment] = STATE(427), - [aux_sym_cell_path_repeat1] = STATE(459), - [anon_sym_export] = ACTIONS(1856), - [anon_sym_alias] = ACTIONS(1856), - [anon_sym_let] = ACTIONS(1856), - [anon_sym_let_DASHenv] = ACTIONS(1856), - [anon_sym_mut] = ACTIONS(1856), - [anon_sym_const] = ACTIONS(1856), - [aux_sym_cmd_identifier_token1] = ACTIONS(1856), - [aux_sym_cmd_identifier_token2] = ACTIONS(1856), - [aux_sym_cmd_identifier_token3] = ACTIONS(1856), - [aux_sym_cmd_identifier_token4] = ACTIONS(1856), - [aux_sym_cmd_identifier_token5] = ACTIONS(1856), - [aux_sym_cmd_identifier_token6] = ACTIONS(1856), - [aux_sym_cmd_identifier_token7] = ACTIONS(1856), - [aux_sym_cmd_identifier_token8] = ACTIONS(1856), - [aux_sym_cmd_identifier_token9] = ACTIONS(1856), - [aux_sym_cmd_identifier_token10] = ACTIONS(1856), - [aux_sym_cmd_identifier_token11] = ACTIONS(1856), - [aux_sym_cmd_identifier_token12] = ACTIONS(1856), - [aux_sym_cmd_identifier_token13] = ACTIONS(1856), - [aux_sym_cmd_identifier_token14] = ACTIONS(1856), - [aux_sym_cmd_identifier_token15] = ACTIONS(1856), - [aux_sym_cmd_identifier_token16] = ACTIONS(1856), - [aux_sym_cmd_identifier_token17] = ACTIONS(1856), - [aux_sym_cmd_identifier_token18] = ACTIONS(1856), - [aux_sym_cmd_identifier_token19] = ACTIONS(1856), - [aux_sym_cmd_identifier_token20] = ACTIONS(1856), - [aux_sym_cmd_identifier_token21] = ACTIONS(1856), - [aux_sym_cmd_identifier_token22] = ACTIONS(1856), - [aux_sym_cmd_identifier_token23] = ACTIONS(1856), - [aux_sym_cmd_identifier_token24] = ACTIONS(1856), - [aux_sym_cmd_identifier_token25] = ACTIONS(1856), - [aux_sym_cmd_identifier_token26] = ACTIONS(1856), - [aux_sym_cmd_identifier_token27] = ACTIONS(1856), - [aux_sym_cmd_identifier_token28] = ACTIONS(1856), - [aux_sym_cmd_identifier_token29] = ACTIONS(1856), - [aux_sym_cmd_identifier_token30] = ACTIONS(1856), - [aux_sym_cmd_identifier_token31] = ACTIONS(1856), - [aux_sym_cmd_identifier_token32] = ACTIONS(1856), - [aux_sym_cmd_identifier_token33] = ACTIONS(1856), - [aux_sym_cmd_identifier_token34] = ACTIONS(1856), - [aux_sym_cmd_identifier_token35] = ACTIONS(1856), - [aux_sym_cmd_identifier_token36] = ACTIONS(1856), - [anon_sym_true] = ACTIONS(1858), - [anon_sym_false] = ACTIONS(1858), - [anon_sym_null] = ACTIONS(1858), - [aux_sym_cmd_identifier_token38] = ACTIONS(1856), - [aux_sym_cmd_identifier_token39] = ACTIONS(1858), - [aux_sym_cmd_identifier_token40] = ACTIONS(1858), - [anon_sym_def] = ACTIONS(1856), - [anon_sym_export_DASHenv] = ACTIONS(1856), - [anon_sym_extern] = ACTIONS(1856), - [anon_sym_module] = ACTIONS(1856), - [anon_sym_use] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(1858), - [anon_sym_DOLLAR] = ACTIONS(1858), - [anon_sym_error] = ACTIONS(1856), - [anon_sym_list] = ACTIONS(1856), - [anon_sym_DASH] = ACTIONS(1856), - [anon_sym_break] = ACTIONS(1856), - [anon_sym_continue] = ACTIONS(1856), - [anon_sym_for] = ACTIONS(1856), - [anon_sym_in] = ACTIONS(1856), - [anon_sym_loop] = ACTIONS(1856), - [anon_sym_make] = ACTIONS(1856), - [anon_sym_while] = ACTIONS(1856), - [anon_sym_do] = ACTIONS(1856), - [anon_sym_if] = ACTIONS(1856), - [anon_sym_else] = ACTIONS(1856), - [anon_sym_match] = ACTIONS(1856), - [anon_sym_RBRACE] = ACTIONS(1858), - [anon_sym_try] = ACTIONS(1856), - [anon_sym_catch] = ACTIONS(1856), - [anon_sym_return] = ACTIONS(1856), - [anon_sym_source] = ACTIONS(1856), - [anon_sym_source_DASHenv] = ACTIONS(1856), - [anon_sym_register] = ACTIONS(1856), - [anon_sym_hide] = ACTIONS(1856), - [anon_sym_hide_DASHenv] = ACTIONS(1856), - [anon_sym_overlay] = ACTIONS(1856), - [anon_sym_new] = ACTIONS(1856), - [anon_sym_as] = ACTIONS(1856), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1858), - [anon_sym_DOT] = ACTIONS(1989), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1858), - [aux_sym__val_number_decimal_token1] = ACTIONS(1856), - [aux_sym__val_number_decimal_token2] = ACTIONS(1858), - [aux_sym__val_number_decimal_token3] = ACTIONS(1858), - [aux_sym__val_number_decimal_token4] = ACTIONS(1858), - [aux_sym__val_number_token1] = ACTIONS(1858), - [aux_sym__val_number_token2] = ACTIONS(1858), - [aux_sym__val_number_token3] = ACTIONS(1858), - [anon_sym_DQUOTE] = ACTIONS(1858), - [sym__str_single_quotes] = ACTIONS(1858), - [sym__str_back_ticks] = ACTIONS(1858), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1858), - [anon_sym_PLUS] = ACTIONS(1856), - [anon_sym_POUND] = ACTIONS(247), + [371] = { + [sym_cmd_identifier] = STATE(4616), + [sym_ctrl_if] = STATE(4885), + [sym_block] = STATE(4886), + [sym__expression] = STATE(4886), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3881), + [sym_expr_parenthesized] = STATE(1922), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(1929), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(3053), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_command] = STATE(4886), + [sym_comment] = STATE(371), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(373), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(371), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(2025), + [anon_sym_false] = ACTIONS(2025), + [anon_sym_null] = ACTIONS(2027), + [aux_sym_cmd_identifier_token38] = ACTIONS(2029), + [aux_sym_cmd_identifier_token39] = ACTIONS(2031), + [aux_sym_cmd_identifier_token40] = ACTIONS(2031), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_if] = ACTIONS(415), + [anon_sym_LBRACE] = ACTIONS(2033), + [anon_sym_DOT_DOT] = ACTIONS(193), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(2035), + [aux_sym__val_number_decimal_token2] = ACTIONS(2037), + [aux_sym__val_number_decimal_token3] = ACTIONS(2039), + [aux_sym__val_number_decimal_token4] = ACTIONS(2041), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_CARET] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, - [428] = { - [sym_comment] = STATE(428), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_alias] = ACTIONS(1046), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_let_DASHenv] = ACTIONS(1046), - [anon_sym_mut] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [aux_sym_cmd_identifier_token1] = ACTIONS(1046), - [aux_sym_cmd_identifier_token2] = ACTIONS(1046), - [aux_sym_cmd_identifier_token3] = ACTIONS(1046), - [aux_sym_cmd_identifier_token4] = ACTIONS(1046), - [aux_sym_cmd_identifier_token5] = ACTIONS(1046), - [aux_sym_cmd_identifier_token6] = ACTIONS(1046), - [aux_sym_cmd_identifier_token7] = ACTIONS(1046), - [aux_sym_cmd_identifier_token8] = ACTIONS(1046), - [aux_sym_cmd_identifier_token9] = ACTIONS(1046), - [aux_sym_cmd_identifier_token10] = ACTIONS(1046), - [aux_sym_cmd_identifier_token11] = ACTIONS(1046), - [aux_sym_cmd_identifier_token12] = ACTIONS(1046), - [aux_sym_cmd_identifier_token13] = ACTIONS(1046), - [aux_sym_cmd_identifier_token14] = ACTIONS(1046), - [aux_sym_cmd_identifier_token15] = ACTIONS(1046), - [aux_sym_cmd_identifier_token16] = ACTIONS(1046), - [aux_sym_cmd_identifier_token17] = ACTIONS(1046), - [aux_sym_cmd_identifier_token18] = ACTIONS(1046), - [aux_sym_cmd_identifier_token19] = ACTIONS(1046), - [aux_sym_cmd_identifier_token20] = ACTIONS(1046), - [aux_sym_cmd_identifier_token21] = ACTIONS(1046), - [aux_sym_cmd_identifier_token22] = ACTIONS(1046), - [aux_sym_cmd_identifier_token23] = ACTIONS(1046), - [aux_sym_cmd_identifier_token24] = ACTIONS(1046), - [aux_sym_cmd_identifier_token25] = ACTIONS(1046), - [aux_sym_cmd_identifier_token26] = ACTIONS(1046), - [aux_sym_cmd_identifier_token27] = ACTIONS(1046), - [aux_sym_cmd_identifier_token28] = ACTIONS(1046), - [aux_sym_cmd_identifier_token29] = ACTIONS(1046), - [aux_sym_cmd_identifier_token30] = ACTIONS(1046), - [aux_sym_cmd_identifier_token31] = ACTIONS(1046), - [aux_sym_cmd_identifier_token32] = ACTIONS(1046), - [aux_sym_cmd_identifier_token33] = ACTIONS(1046), - [aux_sym_cmd_identifier_token34] = ACTIONS(1046), - [aux_sym_cmd_identifier_token35] = ACTIONS(1046), - [aux_sym_cmd_identifier_token36] = ACTIONS(1046), - [anon_sym_true] = ACTIONS(1048), - [anon_sym_false] = ACTIONS(1048), - [anon_sym_null] = ACTIONS(1048), - [aux_sym_cmd_identifier_token38] = ACTIONS(1046), - [aux_sym_cmd_identifier_token39] = ACTIONS(1048), - [aux_sym_cmd_identifier_token40] = ACTIONS(1048), - [anon_sym_def] = ACTIONS(1046), - [anon_sym_export_DASHenv] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_use] = ACTIONS(1046), - [anon_sym_LPAREN] = ACTIONS(1048), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_error] = ACTIONS(1046), - [anon_sym_list] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_break] = ACTIONS(1046), - [anon_sym_continue] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1046), - [anon_sym_in] = ACTIONS(1046), - [anon_sym_loop] = ACTIONS(1046), - [anon_sym_make] = ACTIONS(1046), - [anon_sym_while] = ACTIONS(1046), - [anon_sym_do] = ACTIONS(1046), - [anon_sym_if] = ACTIONS(1046), - [anon_sym_else] = ACTIONS(1046), - [anon_sym_match] = ACTIONS(1046), - [anon_sym_RBRACE] = ACTIONS(1048), - [anon_sym_try] = ACTIONS(1046), - [anon_sym_catch] = ACTIONS(1046), - [anon_sym_return] = ACTIONS(1046), - [anon_sym_source] = ACTIONS(1046), - [anon_sym_source_DASHenv] = ACTIONS(1046), - [anon_sym_register] = ACTIONS(1046), - [anon_sym_hide] = ACTIONS(1046), - [anon_sym_hide_DASHenv] = ACTIONS(1046), - [anon_sym_overlay] = ACTIONS(1046), - [anon_sym_new] = ACTIONS(1046), - [anon_sym_as] = ACTIONS(1046), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1048), - [anon_sym_DOT_DOT2] = ACTIONS(1046), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1048), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1048), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1048), - [aux_sym__val_number_decimal_token1] = ACTIONS(1046), - [aux_sym__val_number_decimal_token2] = ACTIONS(1048), - [aux_sym__val_number_decimal_token3] = ACTIONS(1048), - [aux_sym__val_number_decimal_token4] = ACTIONS(1048), - [aux_sym__val_number_token1] = ACTIONS(1048), - [aux_sym__val_number_token2] = ACTIONS(1048), - [aux_sym__val_number_token3] = ACTIONS(1048), - [anon_sym_DQUOTE] = ACTIONS(1048), - [sym__str_single_quotes] = ACTIONS(1048), - [sym__str_back_ticks] = ACTIONS(1048), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1048), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_POUND] = ACTIONS(247), + [372] = { + [sym_cell_path] = STATE(566), + [sym_path] = STATE(518), + [sym_comment] = STATE(372), + [aux_sym_cell_path_repeat1] = STATE(411), + [anon_sym_export] = ACTIONS(2043), + [anon_sym_alias] = ACTIONS(2043), + [anon_sym_let] = ACTIONS(2043), + [anon_sym_let_DASHenv] = ACTIONS(2043), + [anon_sym_mut] = ACTIONS(2043), + [anon_sym_const] = ACTIONS(2043), + [aux_sym_cmd_identifier_token1] = ACTIONS(2043), + [aux_sym_cmd_identifier_token2] = ACTIONS(2043), + [aux_sym_cmd_identifier_token3] = ACTIONS(2043), + [aux_sym_cmd_identifier_token4] = ACTIONS(2043), + [aux_sym_cmd_identifier_token5] = ACTIONS(2043), + [aux_sym_cmd_identifier_token6] = ACTIONS(2043), + [aux_sym_cmd_identifier_token7] = ACTIONS(2043), + [aux_sym_cmd_identifier_token8] = ACTIONS(2043), + [aux_sym_cmd_identifier_token9] = ACTIONS(2043), + [aux_sym_cmd_identifier_token10] = ACTIONS(2043), + [aux_sym_cmd_identifier_token11] = ACTIONS(2043), + [aux_sym_cmd_identifier_token12] = ACTIONS(2043), + [aux_sym_cmd_identifier_token13] = ACTIONS(2043), + [aux_sym_cmd_identifier_token14] = ACTIONS(2043), + [aux_sym_cmd_identifier_token15] = ACTIONS(2043), + [aux_sym_cmd_identifier_token16] = ACTIONS(2043), + [aux_sym_cmd_identifier_token17] = ACTIONS(2043), + [aux_sym_cmd_identifier_token18] = ACTIONS(2043), + [aux_sym_cmd_identifier_token19] = ACTIONS(2043), + [aux_sym_cmd_identifier_token20] = ACTIONS(2043), + [aux_sym_cmd_identifier_token21] = ACTIONS(2043), + [aux_sym_cmd_identifier_token22] = ACTIONS(2043), + [aux_sym_cmd_identifier_token23] = ACTIONS(2043), + [aux_sym_cmd_identifier_token24] = ACTIONS(2043), + [aux_sym_cmd_identifier_token25] = ACTIONS(2043), + [aux_sym_cmd_identifier_token26] = ACTIONS(2043), + [aux_sym_cmd_identifier_token27] = ACTIONS(2043), + [aux_sym_cmd_identifier_token28] = ACTIONS(2043), + [aux_sym_cmd_identifier_token29] = ACTIONS(2043), + [aux_sym_cmd_identifier_token30] = ACTIONS(2043), + [aux_sym_cmd_identifier_token31] = ACTIONS(2043), + [aux_sym_cmd_identifier_token32] = ACTIONS(2043), + [aux_sym_cmd_identifier_token33] = ACTIONS(2043), + [aux_sym_cmd_identifier_token34] = ACTIONS(2043), + [aux_sym_cmd_identifier_token35] = ACTIONS(2043), + [aux_sym_cmd_identifier_token36] = ACTIONS(2043), + [anon_sym_true] = ACTIONS(2043), + [anon_sym_false] = ACTIONS(2043), + [anon_sym_null] = ACTIONS(2043), + [aux_sym_cmd_identifier_token38] = ACTIONS(2043), + [aux_sym_cmd_identifier_token39] = ACTIONS(2043), + [aux_sym_cmd_identifier_token40] = ACTIONS(2043), + [anon_sym_def] = ACTIONS(2043), + [anon_sym_export_DASHenv] = ACTIONS(2043), + [anon_sym_extern] = ACTIONS(2043), + [anon_sym_module] = ACTIONS(2043), + [anon_sym_use] = ACTIONS(2043), + [anon_sym_LPAREN] = ACTIONS(2043), + [anon_sym_DOLLAR] = ACTIONS(2043), + [anon_sym_error] = ACTIONS(2043), + [anon_sym_list] = ACTIONS(2043), + [anon_sym_DASH] = ACTIONS(2043), + [anon_sym_break] = ACTIONS(2043), + [anon_sym_continue] = ACTIONS(2043), + [anon_sym_for] = ACTIONS(2043), + [anon_sym_in] = ACTIONS(2043), + [anon_sym_loop] = ACTIONS(2043), + [anon_sym_make] = ACTIONS(2043), + [anon_sym_while] = ACTIONS(2043), + [anon_sym_do] = ACTIONS(2043), + [anon_sym_if] = ACTIONS(2043), + [anon_sym_else] = ACTIONS(2043), + [anon_sym_match] = ACTIONS(2043), + [anon_sym_RBRACE] = ACTIONS(2043), + [anon_sym_try] = ACTIONS(2043), + [anon_sym_catch] = ACTIONS(2043), + [anon_sym_return] = ACTIONS(2043), + [anon_sym_source] = ACTIONS(2043), + [anon_sym_source_DASHenv] = ACTIONS(2043), + [anon_sym_register] = ACTIONS(2043), + [anon_sym_hide] = ACTIONS(2043), + [anon_sym_hide_DASHenv] = ACTIONS(2043), + [anon_sym_overlay] = ACTIONS(2043), + [anon_sym_new] = ACTIONS(2043), + [anon_sym_as] = ACTIONS(2043), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2043), + [anon_sym_DOT] = ACTIONS(1856), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2043), + [aux_sym__val_number_decimal_token1] = ACTIONS(2043), + [aux_sym__val_number_decimal_token2] = ACTIONS(2043), + [aux_sym__val_number_decimal_token3] = ACTIONS(2043), + [aux_sym__val_number_decimal_token4] = ACTIONS(2043), + [aux_sym__val_number_token1] = ACTIONS(2043), + [aux_sym__val_number_token2] = ACTIONS(2043), + [aux_sym__val_number_token3] = ACTIONS(2043), + [anon_sym_DQUOTE] = ACTIONS(2043), + [sym__str_single_quotes] = ACTIONS(2043), + [sym__str_back_ticks] = ACTIONS(2043), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2043), + [sym__entry_separator] = ACTIONS(2045), + [anon_sym_PLUS] = ACTIONS(2043), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2045), }, - [429] = { - [sym_cell_path] = STATE(684), - [sym_path] = STATE(578), - [sym_comment] = STATE(429), - [aux_sym_cell_path_repeat1] = STATE(459), - [anon_sym_export] = ACTIONS(1860), - [anon_sym_alias] = ACTIONS(1860), - [anon_sym_let] = ACTIONS(1860), - [anon_sym_let_DASHenv] = ACTIONS(1860), - [anon_sym_mut] = ACTIONS(1860), - [anon_sym_const] = ACTIONS(1860), - [aux_sym_cmd_identifier_token1] = ACTIONS(1860), - [aux_sym_cmd_identifier_token2] = ACTIONS(1860), - [aux_sym_cmd_identifier_token3] = ACTIONS(1860), - [aux_sym_cmd_identifier_token4] = ACTIONS(1860), - [aux_sym_cmd_identifier_token5] = ACTIONS(1860), - [aux_sym_cmd_identifier_token6] = ACTIONS(1860), - [aux_sym_cmd_identifier_token7] = ACTIONS(1860), - [aux_sym_cmd_identifier_token8] = ACTIONS(1860), - [aux_sym_cmd_identifier_token9] = ACTIONS(1860), - [aux_sym_cmd_identifier_token10] = ACTIONS(1860), - [aux_sym_cmd_identifier_token11] = ACTIONS(1860), - [aux_sym_cmd_identifier_token12] = ACTIONS(1860), - [aux_sym_cmd_identifier_token13] = ACTIONS(1860), - [aux_sym_cmd_identifier_token14] = ACTIONS(1860), - [aux_sym_cmd_identifier_token15] = ACTIONS(1860), - [aux_sym_cmd_identifier_token16] = ACTIONS(1860), - [aux_sym_cmd_identifier_token17] = ACTIONS(1860), - [aux_sym_cmd_identifier_token18] = ACTIONS(1860), - [aux_sym_cmd_identifier_token19] = ACTIONS(1860), - [aux_sym_cmd_identifier_token20] = ACTIONS(1860), - [aux_sym_cmd_identifier_token21] = ACTIONS(1860), - [aux_sym_cmd_identifier_token22] = ACTIONS(1860), - [aux_sym_cmd_identifier_token23] = ACTIONS(1860), - [aux_sym_cmd_identifier_token24] = ACTIONS(1860), - [aux_sym_cmd_identifier_token25] = ACTIONS(1860), - [aux_sym_cmd_identifier_token26] = ACTIONS(1860), - [aux_sym_cmd_identifier_token27] = ACTIONS(1860), - [aux_sym_cmd_identifier_token28] = ACTIONS(1860), - [aux_sym_cmd_identifier_token29] = ACTIONS(1860), - [aux_sym_cmd_identifier_token30] = ACTIONS(1860), - [aux_sym_cmd_identifier_token31] = ACTIONS(1860), - [aux_sym_cmd_identifier_token32] = ACTIONS(1860), - [aux_sym_cmd_identifier_token33] = ACTIONS(1860), - [aux_sym_cmd_identifier_token34] = ACTIONS(1860), - [aux_sym_cmd_identifier_token35] = ACTIONS(1860), - [aux_sym_cmd_identifier_token36] = ACTIONS(1860), - [anon_sym_true] = ACTIONS(1862), - [anon_sym_false] = ACTIONS(1862), - [anon_sym_null] = ACTIONS(1862), - [aux_sym_cmd_identifier_token38] = ACTIONS(1860), - [aux_sym_cmd_identifier_token39] = ACTIONS(1862), - [aux_sym_cmd_identifier_token40] = ACTIONS(1862), - [anon_sym_def] = ACTIONS(1860), - [anon_sym_export_DASHenv] = ACTIONS(1860), - [anon_sym_extern] = ACTIONS(1860), - [anon_sym_module] = ACTIONS(1860), - [anon_sym_use] = ACTIONS(1860), - [anon_sym_LPAREN] = ACTIONS(1862), - [anon_sym_DOLLAR] = ACTIONS(1862), - [anon_sym_error] = ACTIONS(1860), - [anon_sym_list] = ACTIONS(1860), - [anon_sym_DASH] = ACTIONS(1860), - [anon_sym_break] = ACTIONS(1860), - [anon_sym_continue] = ACTIONS(1860), - [anon_sym_for] = ACTIONS(1860), - [anon_sym_in] = ACTIONS(1860), - [anon_sym_loop] = ACTIONS(1860), - [anon_sym_make] = ACTIONS(1860), - [anon_sym_while] = ACTIONS(1860), - [anon_sym_do] = ACTIONS(1860), - [anon_sym_if] = ACTIONS(1860), - [anon_sym_else] = ACTIONS(1860), - [anon_sym_match] = ACTIONS(1860), - [anon_sym_RBRACE] = ACTIONS(1862), - [anon_sym_try] = ACTIONS(1860), - [anon_sym_catch] = ACTIONS(1860), - [anon_sym_return] = ACTIONS(1860), - [anon_sym_source] = ACTIONS(1860), - [anon_sym_source_DASHenv] = ACTIONS(1860), - [anon_sym_register] = ACTIONS(1860), - [anon_sym_hide] = ACTIONS(1860), - [anon_sym_hide_DASHenv] = ACTIONS(1860), - [anon_sym_overlay] = ACTIONS(1860), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_as] = ACTIONS(1860), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1862), - [anon_sym_DOT] = ACTIONS(1989), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1862), - [aux_sym__val_number_decimal_token1] = ACTIONS(1860), - [aux_sym__val_number_decimal_token2] = ACTIONS(1862), - [aux_sym__val_number_decimal_token3] = ACTIONS(1862), - [aux_sym__val_number_decimal_token4] = ACTIONS(1862), - [aux_sym__val_number_token1] = ACTIONS(1862), - [aux_sym__val_number_token2] = ACTIONS(1862), - [aux_sym__val_number_token3] = ACTIONS(1862), - [anon_sym_DQUOTE] = ACTIONS(1862), - [sym__str_single_quotes] = ACTIONS(1862), - [sym__str_back_ticks] = ACTIONS(1862), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1862), - [anon_sym_PLUS] = ACTIONS(1860), - [anon_sym_POUND] = ACTIONS(247), + [373] = { + [sym_cell_path] = STATE(569), + [sym_path] = STATE(518), + [sym_comment] = STATE(373), + [aux_sym_cell_path_repeat1] = STATE(411), + [anon_sym_export] = ACTIONS(2047), + [anon_sym_alias] = ACTIONS(2047), + [anon_sym_let] = ACTIONS(2047), + [anon_sym_let_DASHenv] = ACTIONS(2047), + [anon_sym_mut] = ACTIONS(2047), + [anon_sym_const] = ACTIONS(2047), + [aux_sym_cmd_identifier_token1] = ACTIONS(2047), + [aux_sym_cmd_identifier_token2] = ACTIONS(2047), + [aux_sym_cmd_identifier_token3] = ACTIONS(2047), + [aux_sym_cmd_identifier_token4] = ACTIONS(2047), + [aux_sym_cmd_identifier_token5] = ACTIONS(2047), + [aux_sym_cmd_identifier_token6] = ACTIONS(2047), + [aux_sym_cmd_identifier_token7] = ACTIONS(2047), + [aux_sym_cmd_identifier_token8] = ACTIONS(2047), + [aux_sym_cmd_identifier_token9] = ACTIONS(2047), + [aux_sym_cmd_identifier_token10] = ACTIONS(2047), + [aux_sym_cmd_identifier_token11] = ACTIONS(2047), + [aux_sym_cmd_identifier_token12] = ACTIONS(2047), + [aux_sym_cmd_identifier_token13] = ACTIONS(2047), + [aux_sym_cmd_identifier_token14] = ACTIONS(2047), + [aux_sym_cmd_identifier_token15] = ACTIONS(2047), + [aux_sym_cmd_identifier_token16] = ACTIONS(2047), + [aux_sym_cmd_identifier_token17] = ACTIONS(2047), + [aux_sym_cmd_identifier_token18] = ACTIONS(2047), + [aux_sym_cmd_identifier_token19] = ACTIONS(2047), + [aux_sym_cmd_identifier_token20] = ACTIONS(2047), + [aux_sym_cmd_identifier_token21] = ACTIONS(2047), + [aux_sym_cmd_identifier_token22] = ACTIONS(2047), + [aux_sym_cmd_identifier_token23] = ACTIONS(2047), + [aux_sym_cmd_identifier_token24] = ACTIONS(2047), + [aux_sym_cmd_identifier_token25] = ACTIONS(2047), + [aux_sym_cmd_identifier_token26] = ACTIONS(2047), + [aux_sym_cmd_identifier_token27] = ACTIONS(2047), + [aux_sym_cmd_identifier_token28] = ACTIONS(2047), + [aux_sym_cmd_identifier_token29] = ACTIONS(2047), + [aux_sym_cmd_identifier_token30] = ACTIONS(2047), + [aux_sym_cmd_identifier_token31] = ACTIONS(2047), + [aux_sym_cmd_identifier_token32] = ACTIONS(2047), + [aux_sym_cmd_identifier_token33] = ACTIONS(2047), + [aux_sym_cmd_identifier_token34] = ACTIONS(2047), + [aux_sym_cmd_identifier_token35] = ACTIONS(2047), + [aux_sym_cmd_identifier_token36] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2047), + [aux_sym_cmd_identifier_token38] = ACTIONS(2047), + [aux_sym_cmd_identifier_token39] = ACTIONS(2047), + [aux_sym_cmd_identifier_token40] = ACTIONS(2047), + [anon_sym_def] = ACTIONS(2047), + [anon_sym_export_DASHenv] = ACTIONS(2047), + [anon_sym_extern] = ACTIONS(2047), + [anon_sym_module] = ACTIONS(2047), + [anon_sym_use] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(2047), + [anon_sym_DOLLAR] = ACTIONS(2047), + [anon_sym_error] = ACTIONS(2047), + [anon_sym_list] = ACTIONS(2047), + [anon_sym_DASH] = ACTIONS(2047), + [anon_sym_break] = ACTIONS(2047), + [anon_sym_continue] = ACTIONS(2047), + [anon_sym_for] = ACTIONS(2047), + [anon_sym_in] = ACTIONS(2047), + [anon_sym_loop] = ACTIONS(2047), + [anon_sym_make] = ACTIONS(2047), + [anon_sym_while] = ACTIONS(2047), + [anon_sym_do] = ACTIONS(2047), + [anon_sym_if] = ACTIONS(2047), + [anon_sym_else] = ACTIONS(2047), + [anon_sym_match] = ACTIONS(2047), + [anon_sym_RBRACE] = ACTIONS(2047), + [anon_sym_try] = ACTIONS(2047), + [anon_sym_catch] = ACTIONS(2047), + [anon_sym_return] = ACTIONS(2047), + [anon_sym_source] = ACTIONS(2047), + [anon_sym_source_DASHenv] = ACTIONS(2047), + [anon_sym_register] = ACTIONS(2047), + [anon_sym_hide] = ACTIONS(2047), + [anon_sym_hide_DASHenv] = ACTIONS(2047), + [anon_sym_overlay] = ACTIONS(2047), + [anon_sym_new] = ACTIONS(2047), + [anon_sym_as] = ACTIONS(2047), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2047), + [anon_sym_DOT] = ACTIONS(1856), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2047), + [aux_sym__val_number_decimal_token1] = ACTIONS(2047), + [aux_sym__val_number_decimal_token2] = ACTIONS(2047), + [aux_sym__val_number_decimal_token3] = ACTIONS(2047), + [aux_sym__val_number_decimal_token4] = ACTIONS(2047), + [aux_sym__val_number_token1] = ACTIONS(2047), + [aux_sym__val_number_token2] = ACTIONS(2047), + [aux_sym__val_number_token3] = ACTIONS(2047), + [anon_sym_DQUOTE] = ACTIONS(2047), + [sym__str_single_quotes] = ACTIONS(2047), + [sym__str_back_ticks] = ACTIONS(2047), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2047), + [sym__entry_separator] = ACTIONS(2049), + [anon_sym_PLUS] = ACTIONS(2047), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2049), }, - [430] = { - [sym_cell_path] = STATE(685), - [sym_path] = STATE(578), - [sym_comment] = STATE(430), - [aux_sym_cell_path_repeat1] = STATE(459), - [anon_sym_export] = ACTIONS(1864), - [anon_sym_alias] = ACTIONS(1864), - [anon_sym_let] = ACTIONS(1864), - [anon_sym_let_DASHenv] = ACTIONS(1864), - [anon_sym_mut] = ACTIONS(1864), - [anon_sym_const] = ACTIONS(1864), - [aux_sym_cmd_identifier_token1] = ACTIONS(1864), - [aux_sym_cmd_identifier_token2] = ACTIONS(1864), - [aux_sym_cmd_identifier_token3] = ACTIONS(1864), - [aux_sym_cmd_identifier_token4] = ACTIONS(1864), - [aux_sym_cmd_identifier_token5] = ACTIONS(1864), - [aux_sym_cmd_identifier_token6] = ACTIONS(1864), - [aux_sym_cmd_identifier_token7] = ACTIONS(1864), - [aux_sym_cmd_identifier_token8] = ACTIONS(1864), - [aux_sym_cmd_identifier_token9] = ACTIONS(1864), - [aux_sym_cmd_identifier_token10] = ACTIONS(1864), - [aux_sym_cmd_identifier_token11] = ACTIONS(1864), - [aux_sym_cmd_identifier_token12] = ACTIONS(1864), - [aux_sym_cmd_identifier_token13] = ACTIONS(1864), - [aux_sym_cmd_identifier_token14] = ACTIONS(1864), - [aux_sym_cmd_identifier_token15] = ACTIONS(1864), - [aux_sym_cmd_identifier_token16] = ACTIONS(1864), - [aux_sym_cmd_identifier_token17] = ACTIONS(1864), - [aux_sym_cmd_identifier_token18] = ACTIONS(1864), - [aux_sym_cmd_identifier_token19] = ACTIONS(1864), - [aux_sym_cmd_identifier_token20] = ACTIONS(1864), - [aux_sym_cmd_identifier_token21] = ACTIONS(1864), - [aux_sym_cmd_identifier_token22] = ACTIONS(1864), - [aux_sym_cmd_identifier_token23] = ACTIONS(1864), - [aux_sym_cmd_identifier_token24] = ACTIONS(1864), - [aux_sym_cmd_identifier_token25] = ACTIONS(1864), - [aux_sym_cmd_identifier_token26] = ACTIONS(1864), - [aux_sym_cmd_identifier_token27] = ACTIONS(1864), - [aux_sym_cmd_identifier_token28] = ACTIONS(1864), - [aux_sym_cmd_identifier_token29] = ACTIONS(1864), - [aux_sym_cmd_identifier_token30] = ACTIONS(1864), - [aux_sym_cmd_identifier_token31] = ACTIONS(1864), - [aux_sym_cmd_identifier_token32] = ACTIONS(1864), - [aux_sym_cmd_identifier_token33] = ACTIONS(1864), - [aux_sym_cmd_identifier_token34] = ACTIONS(1864), - [aux_sym_cmd_identifier_token35] = ACTIONS(1864), - [aux_sym_cmd_identifier_token36] = ACTIONS(1864), - [anon_sym_true] = ACTIONS(1866), - [anon_sym_false] = ACTIONS(1866), - [anon_sym_null] = ACTIONS(1866), - [aux_sym_cmd_identifier_token38] = ACTIONS(1864), - [aux_sym_cmd_identifier_token39] = ACTIONS(1866), - [aux_sym_cmd_identifier_token40] = ACTIONS(1866), - [anon_sym_def] = ACTIONS(1864), - [anon_sym_export_DASHenv] = ACTIONS(1864), - [anon_sym_extern] = ACTIONS(1864), - [anon_sym_module] = ACTIONS(1864), - [anon_sym_use] = ACTIONS(1864), - [anon_sym_LPAREN] = ACTIONS(1866), - [anon_sym_DOLLAR] = ACTIONS(1866), - [anon_sym_error] = ACTIONS(1864), - [anon_sym_list] = ACTIONS(1864), - [anon_sym_DASH] = ACTIONS(1864), - [anon_sym_break] = ACTIONS(1864), - [anon_sym_continue] = ACTIONS(1864), - [anon_sym_for] = ACTIONS(1864), - [anon_sym_in] = ACTIONS(1864), - [anon_sym_loop] = ACTIONS(1864), - [anon_sym_make] = ACTIONS(1864), - [anon_sym_while] = ACTIONS(1864), - [anon_sym_do] = ACTIONS(1864), - [anon_sym_if] = ACTIONS(1864), - [anon_sym_else] = ACTIONS(1864), - [anon_sym_match] = ACTIONS(1864), - [anon_sym_RBRACE] = ACTIONS(1866), - [anon_sym_try] = ACTIONS(1864), - [anon_sym_catch] = ACTIONS(1864), - [anon_sym_return] = ACTIONS(1864), - [anon_sym_source] = ACTIONS(1864), - [anon_sym_source_DASHenv] = ACTIONS(1864), - [anon_sym_register] = ACTIONS(1864), - [anon_sym_hide] = ACTIONS(1864), - [anon_sym_hide_DASHenv] = ACTIONS(1864), - [anon_sym_overlay] = ACTIONS(1864), - [anon_sym_new] = ACTIONS(1864), - [anon_sym_as] = ACTIONS(1864), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1866), - [anon_sym_DOT] = ACTIONS(1989), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1866), - [aux_sym__val_number_decimal_token1] = ACTIONS(1864), - [aux_sym__val_number_decimal_token2] = ACTIONS(1866), - [aux_sym__val_number_decimal_token3] = ACTIONS(1866), - [aux_sym__val_number_decimal_token4] = ACTIONS(1866), - [aux_sym__val_number_token1] = ACTIONS(1866), - [aux_sym__val_number_token2] = ACTIONS(1866), - [aux_sym__val_number_token3] = ACTIONS(1866), - [anon_sym_DQUOTE] = ACTIONS(1866), - [sym__str_single_quotes] = ACTIONS(1866), - [sym__str_back_ticks] = ACTIONS(1866), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1866), - [anon_sym_PLUS] = ACTIONS(1864), - [anon_sym_POUND] = ACTIONS(247), + [374] = { + [sym_cell_path] = STATE(570), + [sym_path] = STATE(518), + [sym_comment] = STATE(374), + [aux_sym_cell_path_repeat1] = STATE(411), + [anon_sym_export] = ACTIONS(2051), + [anon_sym_alias] = ACTIONS(2051), + [anon_sym_let] = ACTIONS(2051), + [anon_sym_let_DASHenv] = ACTIONS(2051), + [anon_sym_mut] = ACTIONS(2051), + [anon_sym_const] = ACTIONS(2051), + [aux_sym_cmd_identifier_token1] = ACTIONS(2051), + [aux_sym_cmd_identifier_token2] = ACTIONS(2051), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), + [aux_sym_cmd_identifier_token6] = ACTIONS(2051), + [aux_sym_cmd_identifier_token7] = ACTIONS(2051), + [aux_sym_cmd_identifier_token8] = ACTIONS(2051), + [aux_sym_cmd_identifier_token9] = ACTIONS(2051), + [aux_sym_cmd_identifier_token10] = ACTIONS(2051), + [aux_sym_cmd_identifier_token11] = ACTIONS(2051), + [aux_sym_cmd_identifier_token12] = ACTIONS(2051), + [aux_sym_cmd_identifier_token13] = ACTIONS(2051), + [aux_sym_cmd_identifier_token14] = ACTIONS(2051), + [aux_sym_cmd_identifier_token15] = ACTIONS(2051), + [aux_sym_cmd_identifier_token16] = ACTIONS(2051), + [aux_sym_cmd_identifier_token17] = ACTIONS(2051), + [aux_sym_cmd_identifier_token18] = ACTIONS(2051), + [aux_sym_cmd_identifier_token19] = ACTIONS(2051), + [aux_sym_cmd_identifier_token20] = ACTIONS(2051), + [aux_sym_cmd_identifier_token21] = ACTIONS(2051), + [aux_sym_cmd_identifier_token22] = ACTIONS(2051), + [aux_sym_cmd_identifier_token23] = ACTIONS(2051), + [aux_sym_cmd_identifier_token24] = ACTIONS(2051), + [aux_sym_cmd_identifier_token25] = ACTIONS(2051), + [aux_sym_cmd_identifier_token26] = ACTIONS(2051), + [aux_sym_cmd_identifier_token27] = ACTIONS(2051), + [aux_sym_cmd_identifier_token28] = ACTIONS(2051), + [aux_sym_cmd_identifier_token29] = ACTIONS(2051), + [aux_sym_cmd_identifier_token30] = ACTIONS(2051), + [aux_sym_cmd_identifier_token31] = ACTIONS(2051), + [aux_sym_cmd_identifier_token32] = ACTIONS(2051), + [aux_sym_cmd_identifier_token33] = ACTIONS(2051), + [aux_sym_cmd_identifier_token34] = ACTIONS(2051), + [aux_sym_cmd_identifier_token35] = ACTIONS(2051), + [aux_sym_cmd_identifier_token36] = ACTIONS(2051), + [anon_sym_true] = ACTIONS(2051), + [anon_sym_false] = ACTIONS(2051), + [anon_sym_null] = ACTIONS(2051), + [aux_sym_cmd_identifier_token38] = ACTIONS(2051), + [aux_sym_cmd_identifier_token39] = ACTIONS(2051), + [aux_sym_cmd_identifier_token40] = ACTIONS(2051), + [anon_sym_def] = ACTIONS(2051), + [anon_sym_export_DASHenv] = ACTIONS(2051), + [anon_sym_extern] = ACTIONS(2051), + [anon_sym_module] = ACTIONS(2051), + [anon_sym_use] = ACTIONS(2051), + [anon_sym_LPAREN] = ACTIONS(2051), + [anon_sym_DOLLAR] = ACTIONS(2051), + [anon_sym_error] = ACTIONS(2051), + [anon_sym_list] = ACTIONS(2051), + [anon_sym_DASH] = ACTIONS(2051), + [anon_sym_break] = ACTIONS(2051), + [anon_sym_continue] = ACTIONS(2051), + [anon_sym_for] = ACTIONS(2051), + [anon_sym_in] = ACTIONS(2051), + [anon_sym_loop] = ACTIONS(2051), + [anon_sym_make] = ACTIONS(2051), + [anon_sym_while] = ACTIONS(2051), + [anon_sym_do] = ACTIONS(2051), + [anon_sym_if] = ACTIONS(2051), + [anon_sym_else] = ACTIONS(2051), + [anon_sym_match] = ACTIONS(2051), + [anon_sym_RBRACE] = ACTIONS(2051), + [anon_sym_try] = ACTIONS(2051), + [anon_sym_catch] = ACTIONS(2051), + [anon_sym_return] = ACTIONS(2051), + [anon_sym_source] = ACTIONS(2051), + [anon_sym_source_DASHenv] = ACTIONS(2051), + [anon_sym_register] = ACTIONS(2051), + [anon_sym_hide] = ACTIONS(2051), + [anon_sym_hide_DASHenv] = ACTIONS(2051), + [anon_sym_overlay] = ACTIONS(2051), + [anon_sym_new] = ACTIONS(2051), + [anon_sym_as] = ACTIONS(2051), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2051), + [anon_sym_DOT] = ACTIONS(1856), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2051), + [aux_sym__val_number_decimal_token1] = ACTIONS(2051), + [aux_sym__val_number_decimal_token2] = ACTIONS(2051), + [aux_sym__val_number_decimal_token3] = ACTIONS(2051), + [aux_sym__val_number_decimal_token4] = ACTIONS(2051), + [aux_sym__val_number_token1] = ACTIONS(2051), + [aux_sym__val_number_token2] = ACTIONS(2051), + [aux_sym__val_number_token3] = ACTIONS(2051), + [anon_sym_DQUOTE] = ACTIONS(2051), + [sym__str_single_quotes] = ACTIONS(2051), + [sym__str_back_ticks] = ACTIONS(2051), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2051), + [sym__entry_separator] = ACTIONS(2053), + [anon_sym_PLUS] = ACTIONS(2051), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2053), }, - [431] = { - [sym_cell_path] = STATE(686), - [sym_path] = STATE(578), - [sym_comment] = STATE(431), - [aux_sym_cell_path_repeat1] = STATE(459), - [anon_sym_export] = ACTIONS(1868), - [anon_sym_alias] = ACTIONS(1868), - [anon_sym_let] = ACTIONS(1868), - [anon_sym_let_DASHenv] = ACTIONS(1868), - [anon_sym_mut] = ACTIONS(1868), - [anon_sym_const] = ACTIONS(1868), - [aux_sym_cmd_identifier_token1] = ACTIONS(1868), - [aux_sym_cmd_identifier_token2] = ACTIONS(1868), - [aux_sym_cmd_identifier_token3] = ACTIONS(1868), - [aux_sym_cmd_identifier_token4] = ACTIONS(1868), - [aux_sym_cmd_identifier_token5] = ACTIONS(1868), - [aux_sym_cmd_identifier_token6] = ACTIONS(1868), - [aux_sym_cmd_identifier_token7] = ACTIONS(1868), - [aux_sym_cmd_identifier_token8] = ACTIONS(1868), - [aux_sym_cmd_identifier_token9] = ACTIONS(1868), - [aux_sym_cmd_identifier_token10] = ACTIONS(1868), - [aux_sym_cmd_identifier_token11] = ACTIONS(1868), - [aux_sym_cmd_identifier_token12] = ACTIONS(1868), - [aux_sym_cmd_identifier_token13] = ACTIONS(1868), - [aux_sym_cmd_identifier_token14] = ACTIONS(1868), - [aux_sym_cmd_identifier_token15] = ACTIONS(1868), - [aux_sym_cmd_identifier_token16] = ACTIONS(1868), - [aux_sym_cmd_identifier_token17] = ACTIONS(1868), - [aux_sym_cmd_identifier_token18] = ACTIONS(1868), - [aux_sym_cmd_identifier_token19] = ACTIONS(1868), - [aux_sym_cmd_identifier_token20] = ACTIONS(1868), - [aux_sym_cmd_identifier_token21] = ACTIONS(1868), - [aux_sym_cmd_identifier_token22] = ACTIONS(1868), - [aux_sym_cmd_identifier_token23] = ACTIONS(1868), - [aux_sym_cmd_identifier_token24] = ACTIONS(1868), - [aux_sym_cmd_identifier_token25] = ACTIONS(1868), - [aux_sym_cmd_identifier_token26] = ACTIONS(1868), - [aux_sym_cmd_identifier_token27] = ACTIONS(1868), - [aux_sym_cmd_identifier_token28] = ACTIONS(1868), - [aux_sym_cmd_identifier_token29] = ACTIONS(1868), - [aux_sym_cmd_identifier_token30] = ACTIONS(1868), - [aux_sym_cmd_identifier_token31] = ACTIONS(1868), - [aux_sym_cmd_identifier_token32] = ACTIONS(1868), - [aux_sym_cmd_identifier_token33] = ACTIONS(1868), - [aux_sym_cmd_identifier_token34] = ACTIONS(1868), - [aux_sym_cmd_identifier_token35] = ACTIONS(1868), - [aux_sym_cmd_identifier_token36] = ACTIONS(1868), - [anon_sym_true] = ACTIONS(1870), - [anon_sym_false] = ACTIONS(1870), - [anon_sym_null] = ACTIONS(1870), - [aux_sym_cmd_identifier_token38] = ACTIONS(1868), - [aux_sym_cmd_identifier_token39] = ACTIONS(1870), - [aux_sym_cmd_identifier_token40] = ACTIONS(1870), - [anon_sym_def] = ACTIONS(1868), - [anon_sym_export_DASHenv] = ACTIONS(1868), - [anon_sym_extern] = ACTIONS(1868), - [anon_sym_module] = ACTIONS(1868), - [anon_sym_use] = ACTIONS(1868), - [anon_sym_LPAREN] = ACTIONS(1870), - [anon_sym_DOLLAR] = ACTIONS(1870), - [anon_sym_error] = ACTIONS(1868), - [anon_sym_list] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1868), - [anon_sym_break] = ACTIONS(1868), - [anon_sym_continue] = ACTIONS(1868), - [anon_sym_for] = ACTIONS(1868), - [anon_sym_in] = ACTIONS(1868), - [anon_sym_loop] = ACTIONS(1868), - [anon_sym_make] = ACTIONS(1868), - [anon_sym_while] = ACTIONS(1868), - [anon_sym_do] = ACTIONS(1868), - [anon_sym_if] = ACTIONS(1868), - [anon_sym_else] = ACTIONS(1868), - [anon_sym_match] = ACTIONS(1868), - [anon_sym_RBRACE] = ACTIONS(1870), - [anon_sym_try] = ACTIONS(1868), - [anon_sym_catch] = ACTIONS(1868), - [anon_sym_return] = ACTIONS(1868), - [anon_sym_source] = ACTIONS(1868), - [anon_sym_source_DASHenv] = ACTIONS(1868), - [anon_sym_register] = ACTIONS(1868), - [anon_sym_hide] = ACTIONS(1868), - [anon_sym_hide_DASHenv] = ACTIONS(1868), - [anon_sym_overlay] = ACTIONS(1868), - [anon_sym_new] = ACTIONS(1868), - [anon_sym_as] = ACTIONS(1868), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1870), - [anon_sym_DOT] = ACTIONS(1989), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1870), - [aux_sym__val_number_decimal_token1] = ACTIONS(1868), - [aux_sym__val_number_decimal_token2] = ACTIONS(1870), - [aux_sym__val_number_decimal_token3] = ACTIONS(1870), - [aux_sym__val_number_decimal_token4] = ACTIONS(1870), - [aux_sym__val_number_token1] = ACTIONS(1870), - [aux_sym__val_number_token2] = ACTIONS(1870), - [aux_sym__val_number_token3] = ACTIONS(1870), - [anon_sym_DQUOTE] = ACTIONS(1870), - [sym__str_single_quotes] = ACTIONS(1870), - [sym__str_back_ticks] = ACTIONS(1870), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1870), - [anon_sym_PLUS] = ACTIONS(1868), - [anon_sym_POUND] = ACTIONS(247), + [375] = { + [sym_cell_path] = STATE(576), + [sym_path] = STATE(518), + [sym_comment] = STATE(375), + [aux_sym_cell_path_repeat1] = STATE(411), + [anon_sym_export] = ACTIONS(2055), + [anon_sym_alias] = ACTIONS(2055), + [anon_sym_let] = ACTIONS(2055), + [anon_sym_let_DASHenv] = ACTIONS(2055), + [anon_sym_mut] = ACTIONS(2055), + [anon_sym_const] = ACTIONS(2055), + [aux_sym_cmd_identifier_token1] = ACTIONS(2055), + [aux_sym_cmd_identifier_token2] = ACTIONS(2055), + [aux_sym_cmd_identifier_token3] = ACTIONS(2055), + [aux_sym_cmd_identifier_token4] = ACTIONS(2055), + [aux_sym_cmd_identifier_token5] = ACTIONS(2055), + [aux_sym_cmd_identifier_token6] = ACTIONS(2055), + [aux_sym_cmd_identifier_token7] = ACTIONS(2055), + [aux_sym_cmd_identifier_token8] = ACTIONS(2055), + [aux_sym_cmd_identifier_token9] = ACTIONS(2055), + [aux_sym_cmd_identifier_token10] = ACTIONS(2055), + [aux_sym_cmd_identifier_token11] = ACTIONS(2055), + [aux_sym_cmd_identifier_token12] = ACTIONS(2055), + [aux_sym_cmd_identifier_token13] = ACTIONS(2055), + [aux_sym_cmd_identifier_token14] = ACTIONS(2055), + [aux_sym_cmd_identifier_token15] = ACTIONS(2055), + [aux_sym_cmd_identifier_token16] = ACTIONS(2055), + [aux_sym_cmd_identifier_token17] = ACTIONS(2055), + [aux_sym_cmd_identifier_token18] = ACTIONS(2055), + [aux_sym_cmd_identifier_token19] = ACTIONS(2055), + [aux_sym_cmd_identifier_token20] = ACTIONS(2055), + [aux_sym_cmd_identifier_token21] = ACTIONS(2055), + [aux_sym_cmd_identifier_token22] = ACTIONS(2055), + [aux_sym_cmd_identifier_token23] = ACTIONS(2055), + [aux_sym_cmd_identifier_token24] = ACTIONS(2055), + [aux_sym_cmd_identifier_token25] = ACTIONS(2055), + [aux_sym_cmd_identifier_token26] = ACTIONS(2055), + [aux_sym_cmd_identifier_token27] = ACTIONS(2055), + [aux_sym_cmd_identifier_token28] = ACTIONS(2055), + [aux_sym_cmd_identifier_token29] = ACTIONS(2055), + [aux_sym_cmd_identifier_token30] = ACTIONS(2055), + [aux_sym_cmd_identifier_token31] = ACTIONS(2055), + [aux_sym_cmd_identifier_token32] = ACTIONS(2055), + [aux_sym_cmd_identifier_token33] = ACTIONS(2055), + [aux_sym_cmd_identifier_token34] = ACTIONS(2055), + [aux_sym_cmd_identifier_token35] = ACTIONS(2055), + [aux_sym_cmd_identifier_token36] = ACTIONS(2055), + [anon_sym_true] = ACTIONS(2055), + [anon_sym_false] = ACTIONS(2055), + [anon_sym_null] = ACTIONS(2055), + [aux_sym_cmd_identifier_token38] = ACTIONS(2055), + [aux_sym_cmd_identifier_token39] = ACTIONS(2055), + [aux_sym_cmd_identifier_token40] = ACTIONS(2055), + [anon_sym_def] = ACTIONS(2055), + [anon_sym_export_DASHenv] = ACTIONS(2055), + [anon_sym_extern] = ACTIONS(2055), + [anon_sym_module] = ACTIONS(2055), + [anon_sym_use] = ACTIONS(2055), + [anon_sym_LPAREN] = ACTIONS(2055), + [anon_sym_DOLLAR] = ACTIONS(2055), + [anon_sym_error] = ACTIONS(2055), + [anon_sym_list] = ACTIONS(2055), + [anon_sym_DASH] = ACTIONS(2055), + [anon_sym_break] = ACTIONS(2055), + [anon_sym_continue] = ACTIONS(2055), + [anon_sym_for] = ACTIONS(2055), + [anon_sym_in] = ACTIONS(2055), + [anon_sym_loop] = ACTIONS(2055), + [anon_sym_make] = ACTIONS(2055), + [anon_sym_while] = ACTIONS(2055), + [anon_sym_do] = ACTIONS(2055), + [anon_sym_if] = ACTIONS(2055), + [anon_sym_else] = ACTIONS(2055), + [anon_sym_match] = ACTIONS(2055), + [anon_sym_RBRACE] = ACTIONS(2055), + [anon_sym_try] = ACTIONS(2055), + [anon_sym_catch] = ACTIONS(2055), + [anon_sym_return] = ACTIONS(2055), + [anon_sym_source] = ACTIONS(2055), + [anon_sym_source_DASHenv] = ACTIONS(2055), + [anon_sym_register] = ACTIONS(2055), + [anon_sym_hide] = ACTIONS(2055), + [anon_sym_hide_DASHenv] = ACTIONS(2055), + [anon_sym_overlay] = ACTIONS(2055), + [anon_sym_new] = ACTIONS(2055), + [anon_sym_as] = ACTIONS(2055), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2055), + [anon_sym_DOT] = ACTIONS(1856), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2055), + [aux_sym__val_number_decimal_token1] = ACTIONS(2055), + [aux_sym__val_number_decimal_token2] = ACTIONS(2055), + [aux_sym__val_number_decimal_token3] = ACTIONS(2055), + [aux_sym__val_number_decimal_token4] = ACTIONS(2055), + [aux_sym__val_number_token1] = ACTIONS(2055), + [aux_sym__val_number_token2] = ACTIONS(2055), + [aux_sym__val_number_token3] = ACTIONS(2055), + [anon_sym_DQUOTE] = ACTIONS(2055), + [sym__str_single_quotes] = ACTIONS(2055), + [sym__str_back_ticks] = ACTIONS(2055), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2055), + [sym__entry_separator] = ACTIONS(2057), + [anon_sym_PLUS] = ACTIONS(2055), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2057), }, - [432] = { - [sym_cell_path] = STATE(687), - [sym_path] = STATE(578), - [sym_comment] = STATE(432), - [aux_sym_cell_path_repeat1] = STATE(459), - [anon_sym_export] = ACTIONS(1872), - [anon_sym_alias] = ACTIONS(1872), - [anon_sym_let] = ACTIONS(1872), - [anon_sym_let_DASHenv] = ACTIONS(1872), - [anon_sym_mut] = ACTIONS(1872), - [anon_sym_const] = ACTIONS(1872), - [aux_sym_cmd_identifier_token1] = ACTIONS(1872), - [aux_sym_cmd_identifier_token2] = ACTIONS(1872), - [aux_sym_cmd_identifier_token3] = ACTIONS(1872), - [aux_sym_cmd_identifier_token4] = ACTIONS(1872), - [aux_sym_cmd_identifier_token5] = ACTIONS(1872), - [aux_sym_cmd_identifier_token6] = ACTIONS(1872), - [aux_sym_cmd_identifier_token7] = ACTIONS(1872), - [aux_sym_cmd_identifier_token8] = ACTIONS(1872), - [aux_sym_cmd_identifier_token9] = ACTIONS(1872), - [aux_sym_cmd_identifier_token10] = ACTIONS(1872), - [aux_sym_cmd_identifier_token11] = ACTIONS(1872), - [aux_sym_cmd_identifier_token12] = ACTIONS(1872), - [aux_sym_cmd_identifier_token13] = ACTIONS(1872), - [aux_sym_cmd_identifier_token14] = ACTIONS(1872), - [aux_sym_cmd_identifier_token15] = ACTIONS(1872), - [aux_sym_cmd_identifier_token16] = ACTIONS(1872), - [aux_sym_cmd_identifier_token17] = ACTIONS(1872), - [aux_sym_cmd_identifier_token18] = ACTIONS(1872), - [aux_sym_cmd_identifier_token19] = ACTIONS(1872), - [aux_sym_cmd_identifier_token20] = ACTIONS(1872), - [aux_sym_cmd_identifier_token21] = ACTIONS(1872), - [aux_sym_cmd_identifier_token22] = ACTIONS(1872), - [aux_sym_cmd_identifier_token23] = ACTIONS(1872), - [aux_sym_cmd_identifier_token24] = ACTIONS(1872), - [aux_sym_cmd_identifier_token25] = ACTIONS(1872), - [aux_sym_cmd_identifier_token26] = ACTIONS(1872), - [aux_sym_cmd_identifier_token27] = ACTIONS(1872), - [aux_sym_cmd_identifier_token28] = ACTIONS(1872), - [aux_sym_cmd_identifier_token29] = ACTIONS(1872), - [aux_sym_cmd_identifier_token30] = ACTIONS(1872), - [aux_sym_cmd_identifier_token31] = ACTIONS(1872), - [aux_sym_cmd_identifier_token32] = ACTIONS(1872), - [aux_sym_cmd_identifier_token33] = ACTIONS(1872), - [aux_sym_cmd_identifier_token34] = ACTIONS(1872), - [aux_sym_cmd_identifier_token35] = ACTIONS(1872), - [aux_sym_cmd_identifier_token36] = ACTIONS(1872), - [anon_sym_true] = ACTIONS(1874), - [anon_sym_false] = ACTIONS(1874), - [anon_sym_null] = ACTIONS(1874), - [aux_sym_cmd_identifier_token38] = ACTIONS(1872), - [aux_sym_cmd_identifier_token39] = ACTIONS(1874), - [aux_sym_cmd_identifier_token40] = ACTIONS(1874), - [anon_sym_def] = ACTIONS(1872), - [anon_sym_export_DASHenv] = ACTIONS(1872), - [anon_sym_extern] = ACTIONS(1872), - [anon_sym_module] = ACTIONS(1872), - [anon_sym_use] = ACTIONS(1872), - [anon_sym_LPAREN] = ACTIONS(1874), - [anon_sym_DOLLAR] = ACTIONS(1874), - [anon_sym_error] = ACTIONS(1872), - [anon_sym_list] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_break] = ACTIONS(1872), - [anon_sym_continue] = ACTIONS(1872), - [anon_sym_for] = ACTIONS(1872), - [anon_sym_in] = ACTIONS(1872), - [anon_sym_loop] = ACTIONS(1872), - [anon_sym_make] = ACTIONS(1872), - [anon_sym_while] = ACTIONS(1872), - [anon_sym_do] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(1872), - [anon_sym_else] = ACTIONS(1872), - [anon_sym_match] = ACTIONS(1872), - [anon_sym_RBRACE] = ACTIONS(1874), - [anon_sym_try] = ACTIONS(1872), - [anon_sym_catch] = ACTIONS(1872), - [anon_sym_return] = ACTIONS(1872), - [anon_sym_source] = ACTIONS(1872), - [anon_sym_source_DASHenv] = ACTIONS(1872), - [anon_sym_register] = ACTIONS(1872), - [anon_sym_hide] = ACTIONS(1872), - [anon_sym_hide_DASHenv] = ACTIONS(1872), - [anon_sym_overlay] = ACTIONS(1872), - [anon_sym_new] = ACTIONS(1872), - [anon_sym_as] = ACTIONS(1872), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1874), - [anon_sym_DOT] = ACTIONS(1989), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1874), - [aux_sym__val_number_decimal_token1] = ACTIONS(1872), - [aux_sym__val_number_decimal_token2] = ACTIONS(1874), - [aux_sym__val_number_decimal_token3] = ACTIONS(1874), - [aux_sym__val_number_decimal_token4] = ACTIONS(1874), - [aux_sym__val_number_token1] = ACTIONS(1874), - [aux_sym__val_number_token2] = ACTIONS(1874), - [aux_sym__val_number_token3] = ACTIONS(1874), - [anon_sym_DQUOTE] = ACTIONS(1874), - [sym__str_single_quotes] = ACTIONS(1874), - [sym__str_back_ticks] = ACTIONS(1874), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1874), - [anon_sym_PLUS] = ACTIONS(1872), - [anon_sym_POUND] = ACTIONS(247), + [376] = { + [sym_cell_path] = STATE(578), + [sym_path] = STATE(518), + [sym_comment] = STATE(376), + [aux_sym_cell_path_repeat1] = STATE(411), + [anon_sym_export] = ACTIONS(2059), + [anon_sym_alias] = ACTIONS(2059), + [anon_sym_let] = ACTIONS(2059), + [anon_sym_let_DASHenv] = ACTIONS(2059), + [anon_sym_mut] = ACTIONS(2059), + [anon_sym_const] = ACTIONS(2059), + [aux_sym_cmd_identifier_token1] = ACTIONS(2059), + [aux_sym_cmd_identifier_token2] = ACTIONS(2059), + [aux_sym_cmd_identifier_token3] = ACTIONS(2059), + [aux_sym_cmd_identifier_token4] = ACTIONS(2059), + [aux_sym_cmd_identifier_token5] = ACTIONS(2059), + [aux_sym_cmd_identifier_token6] = ACTIONS(2059), + [aux_sym_cmd_identifier_token7] = ACTIONS(2059), + [aux_sym_cmd_identifier_token8] = ACTIONS(2059), + [aux_sym_cmd_identifier_token9] = ACTIONS(2059), + [aux_sym_cmd_identifier_token10] = ACTIONS(2059), + [aux_sym_cmd_identifier_token11] = ACTIONS(2059), + [aux_sym_cmd_identifier_token12] = ACTIONS(2059), + [aux_sym_cmd_identifier_token13] = ACTIONS(2059), + [aux_sym_cmd_identifier_token14] = ACTIONS(2059), + [aux_sym_cmd_identifier_token15] = ACTIONS(2059), + [aux_sym_cmd_identifier_token16] = ACTIONS(2059), + [aux_sym_cmd_identifier_token17] = ACTIONS(2059), + [aux_sym_cmd_identifier_token18] = ACTIONS(2059), + [aux_sym_cmd_identifier_token19] = ACTIONS(2059), + [aux_sym_cmd_identifier_token20] = ACTIONS(2059), + [aux_sym_cmd_identifier_token21] = ACTIONS(2059), + [aux_sym_cmd_identifier_token22] = ACTIONS(2059), + [aux_sym_cmd_identifier_token23] = ACTIONS(2059), + [aux_sym_cmd_identifier_token24] = ACTIONS(2059), + [aux_sym_cmd_identifier_token25] = ACTIONS(2059), + [aux_sym_cmd_identifier_token26] = ACTIONS(2059), + [aux_sym_cmd_identifier_token27] = ACTIONS(2059), + [aux_sym_cmd_identifier_token28] = ACTIONS(2059), + [aux_sym_cmd_identifier_token29] = ACTIONS(2059), + [aux_sym_cmd_identifier_token30] = ACTIONS(2059), + [aux_sym_cmd_identifier_token31] = ACTIONS(2059), + [aux_sym_cmd_identifier_token32] = ACTIONS(2059), + [aux_sym_cmd_identifier_token33] = ACTIONS(2059), + [aux_sym_cmd_identifier_token34] = ACTIONS(2059), + [aux_sym_cmd_identifier_token35] = ACTIONS(2059), + [aux_sym_cmd_identifier_token36] = ACTIONS(2059), + [anon_sym_true] = ACTIONS(2059), + [anon_sym_false] = ACTIONS(2059), + [anon_sym_null] = ACTIONS(2059), + [aux_sym_cmd_identifier_token38] = ACTIONS(2059), + [aux_sym_cmd_identifier_token39] = ACTIONS(2059), + [aux_sym_cmd_identifier_token40] = ACTIONS(2059), + [anon_sym_def] = ACTIONS(2059), + [anon_sym_export_DASHenv] = ACTIONS(2059), + [anon_sym_extern] = ACTIONS(2059), + [anon_sym_module] = ACTIONS(2059), + [anon_sym_use] = ACTIONS(2059), + [anon_sym_LPAREN] = ACTIONS(2059), + [anon_sym_DOLLAR] = ACTIONS(2059), + [anon_sym_error] = ACTIONS(2059), + [anon_sym_list] = ACTIONS(2059), + [anon_sym_DASH] = ACTIONS(2059), + [anon_sym_break] = ACTIONS(2059), + [anon_sym_continue] = ACTIONS(2059), + [anon_sym_for] = ACTIONS(2059), + [anon_sym_in] = ACTIONS(2059), + [anon_sym_loop] = ACTIONS(2059), + [anon_sym_make] = ACTIONS(2059), + [anon_sym_while] = ACTIONS(2059), + [anon_sym_do] = ACTIONS(2059), + [anon_sym_if] = ACTIONS(2059), + [anon_sym_else] = ACTIONS(2059), + [anon_sym_match] = ACTIONS(2059), + [anon_sym_RBRACE] = ACTIONS(2059), + [anon_sym_try] = ACTIONS(2059), + [anon_sym_catch] = ACTIONS(2059), + [anon_sym_return] = ACTIONS(2059), + [anon_sym_source] = ACTIONS(2059), + [anon_sym_source_DASHenv] = ACTIONS(2059), + [anon_sym_register] = ACTIONS(2059), + [anon_sym_hide] = ACTIONS(2059), + [anon_sym_hide_DASHenv] = ACTIONS(2059), + [anon_sym_overlay] = ACTIONS(2059), + [anon_sym_new] = ACTIONS(2059), + [anon_sym_as] = ACTIONS(2059), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2059), + [anon_sym_DOT] = ACTIONS(1856), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2059), + [aux_sym__val_number_decimal_token1] = ACTIONS(2059), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2059), + [aux_sym__val_number_decimal_token4] = ACTIONS(2059), + [aux_sym__val_number_token1] = ACTIONS(2059), + [aux_sym__val_number_token2] = ACTIONS(2059), + [aux_sym__val_number_token3] = ACTIONS(2059), + [anon_sym_DQUOTE] = ACTIONS(2059), + [sym__str_single_quotes] = ACTIONS(2059), + [sym__str_back_ticks] = ACTIONS(2059), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2059), + [sym__entry_separator] = ACTIONS(2061), + [anon_sym_PLUS] = ACTIONS(2059), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2061), }, - [433] = { - [sym_comment] = STATE(433), - [anon_sym_export] = ACTIONS(1050), - [anon_sym_alias] = ACTIONS(1050), - [anon_sym_let] = ACTIONS(1050), - [anon_sym_let_DASHenv] = ACTIONS(1050), - [anon_sym_mut] = ACTIONS(1050), - [anon_sym_const] = ACTIONS(1050), - [aux_sym_cmd_identifier_token1] = ACTIONS(1050), - [aux_sym_cmd_identifier_token2] = ACTIONS(1050), - [aux_sym_cmd_identifier_token3] = ACTIONS(1050), - [aux_sym_cmd_identifier_token4] = ACTIONS(1050), - [aux_sym_cmd_identifier_token5] = ACTIONS(1050), - [aux_sym_cmd_identifier_token6] = ACTIONS(1050), - [aux_sym_cmd_identifier_token7] = ACTIONS(1050), - [aux_sym_cmd_identifier_token8] = ACTIONS(1050), - [aux_sym_cmd_identifier_token9] = ACTIONS(1050), - [aux_sym_cmd_identifier_token10] = ACTIONS(1050), - [aux_sym_cmd_identifier_token11] = ACTIONS(1050), - [aux_sym_cmd_identifier_token12] = ACTIONS(1050), - [aux_sym_cmd_identifier_token13] = ACTIONS(1050), - [aux_sym_cmd_identifier_token14] = ACTIONS(1050), - [aux_sym_cmd_identifier_token15] = ACTIONS(1050), - [aux_sym_cmd_identifier_token16] = ACTIONS(1050), - [aux_sym_cmd_identifier_token17] = ACTIONS(1050), - [aux_sym_cmd_identifier_token18] = ACTIONS(1050), - [aux_sym_cmd_identifier_token19] = ACTIONS(1050), - [aux_sym_cmd_identifier_token20] = ACTIONS(1050), - [aux_sym_cmd_identifier_token21] = ACTIONS(1050), - [aux_sym_cmd_identifier_token22] = ACTIONS(1050), - [aux_sym_cmd_identifier_token23] = ACTIONS(1050), - [aux_sym_cmd_identifier_token24] = ACTIONS(1050), - [aux_sym_cmd_identifier_token25] = ACTIONS(1050), - [aux_sym_cmd_identifier_token26] = ACTIONS(1050), - [aux_sym_cmd_identifier_token27] = ACTIONS(1050), - [aux_sym_cmd_identifier_token28] = ACTIONS(1050), - [aux_sym_cmd_identifier_token29] = ACTIONS(1050), - [aux_sym_cmd_identifier_token30] = ACTIONS(1050), - [aux_sym_cmd_identifier_token31] = ACTIONS(1050), - [aux_sym_cmd_identifier_token32] = ACTIONS(1050), - [aux_sym_cmd_identifier_token33] = ACTIONS(1050), - [aux_sym_cmd_identifier_token34] = ACTIONS(1050), - [aux_sym_cmd_identifier_token35] = ACTIONS(1050), - [aux_sym_cmd_identifier_token36] = ACTIONS(1050), - [anon_sym_true] = ACTIONS(1052), - [anon_sym_false] = ACTIONS(1052), - [anon_sym_null] = ACTIONS(1052), - [aux_sym_cmd_identifier_token38] = ACTIONS(1050), - [aux_sym_cmd_identifier_token39] = ACTIONS(1052), - [aux_sym_cmd_identifier_token40] = ACTIONS(1052), - [anon_sym_def] = ACTIONS(1050), - [anon_sym_export_DASHenv] = ACTIONS(1050), - [anon_sym_extern] = ACTIONS(1050), - [anon_sym_module] = ACTIONS(1050), - [anon_sym_use] = ACTIONS(1050), - [anon_sym_LPAREN] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(1052), - [anon_sym_error] = ACTIONS(1050), - [anon_sym_list] = ACTIONS(1050), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_break] = ACTIONS(1050), - [anon_sym_continue] = ACTIONS(1050), - [anon_sym_for] = ACTIONS(1050), - [anon_sym_in] = ACTIONS(1050), - [anon_sym_loop] = ACTIONS(1050), - [anon_sym_make] = ACTIONS(1050), - [anon_sym_while] = ACTIONS(1050), - [anon_sym_do] = ACTIONS(1050), - [anon_sym_if] = ACTIONS(1050), - [anon_sym_else] = ACTIONS(1050), - [anon_sym_match] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(1052), - [anon_sym_try] = ACTIONS(1050), - [anon_sym_catch] = ACTIONS(1050), - [anon_sym_return] = ACTIONS(1050), - [anon_sym_source] = ACTIONS(1050), - [anon_sym_source_DASHenv] = ACTIONS(1050), - [anon_sym_register] = ACTIONS(1050), - [anon_sym_hide] = ACTIONS(1050), - [anon_sym_hide_DASHenv] = ACTIONS(1050), - [anon_sym_overlay] = ACTIONS(1050), - [anon_sym_new] = ACTIONS(1050), - [anon_sym_as] = ACTIONS(1050), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1052), - [anon_sym_DOT_DOT2] = ACTIONS(1050), - [anon_sym_DOT] = ACTIONS(1050), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1052), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1052), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1052), - [aux_sym__val_number_decimal_token1] = ACTIONS(1050), - [aux_sym__val_number_decimal_token2] = ACTIONS(1052), - [aux_sym__val_number_decimal_token3] = ACTIONS(1052), - [aux_sym__val_number_decimal_token4] = ACTIONS(1052), - [aux_sym__val_number_token1] = ACTIONS(1052), - [aux_sym__val_number_token2] = ACTIONS(1052), - [aux_sym__val_number_token3] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(1052), - [sym__str_single_quotes] = ACTIONS(1052), - [sym__str_back_ticks] = ACTIONS(1052), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1052), - [anon_sym_PLUS] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(247), + [377] = { + [sym_cell_path] = STATE(588), + [sym_path] = STATE(518), + [sym_comment] = STATE(377), + [aux_sym_cell_path_repeat1] = STATE(411), + [anon_sym_export] = ACTIONS(2063), + [anon_sym_alias] = ACTIONS(2063), + [anon_sym_let] = ACTIONS(2063), + [anon_sym_let_DASHenv] = ACTIONS(2063), + [anon_sym_mut] = ACTIONS(2063), + [anon_sym_const] = ACTIONS(2063), + [aux_sym_cmd_identifier_token1] = ACTIONS(2063), + [aux_sym_cmd_identifier_token2] = ACTIONS(2063), + [aux_sym_cmd_identifier_token3] = ACTIONS(2063), + [aux_sym_cmd_identifier_token4] = ACTIONS(2063), + [aux_sym_cmd_identifier_token5] = ACTIONS(2063), + [aux_sym_cmd_identifier_token6] = ACTIONS(2063), + [aux_sym_cmd_identifier_token7] = ACTIONS(2063), + [aux_sym_cmd_identifier_token8] = ACTIONS(2063), + [aux_sym_cmd_identifier_token9] = ACTIONS(2063), + [aux_sym_cmd_identifier_token10] = ACTIONS(2063), + [aux_sym_cmd_identifier_token11] = ACTIONS(2063), + [aux_sym_cmd_identifier_token12] = ACTIONS(2063), + [aux_sym_cmd_identifier_token13] = ACTIONS(2063), + [aux_sym_cmd_identifier_token14] = ACTIONS(2063), + [aux_sym_cmd_identifier_token15] = ACTIONS(2063), + [aux_sym_cmd_identifier_token16] = ACTIONS(2063), + [aux_sym_cmd_identifier_token17] = ACTIONS(2063), + [aux_sym_cmd_identifier_token18] = ACTIONS(2063), + [aux_sym_cmd_identifier_token19] = ACTIONS(2063), + [aux_sym_cmd_identifier_token20] = ACTIONS(2063), + [aux_sym_cmd_identifier_token21] = ACTIONS(2063), + [aux_sym_cmd_identifier_token22] = ACTIONS(2063), + [aux_sym_cmd_identifier_token23] = ACTIONS(2063), + [aux_sym_cmd_identifier_token24] = ACTIONS(2063), + [aux_sym_cmd_identifier_token25] = ACTIONS(2063), + [aux_sym_cmd_identifier_token26] = ACTIONS(2063), + [aux_sym_cmd_identifier_token27] = ACTIONS(2063), + [aux_sym_cmd_identifier_token28] = ACTIONS(2063), + [aux_sym_cmd_identifier_token29] = ACTIONS(2063), + [aux_sym_cmd_identifier_token30] = ACTIONS(2063), + [aux_sym_cmd_identifier_token31] = ACTIONS(2063), + [aux_sym_cmd_identifier_token32] = ACTIONS(2063), + [aux_sym_cmd_identifier_token33] = ACTIONS(2063), + [aux_sym_cmd_identifier_token34] = ACTIONS(2063), + [aux_sym_cmd_identifier_token35] = ACTIONS(2063), + [aux_sym_cmd_identifier_token36] = ACTIONS(2063), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2063), + [aux_sym_cmd_identifier_token38] = ACTIONS(2063), + [aux_sym_cmd_identifier_token39] = ACTIONS(2063), + [aux_sym_cmd_identifier_token40] = ACTIONS(2063), + [anon_sym_def] = ACTIONS(2063), + [anon_sym_export_DASHenv] = ACTIONS(2063), + [anon_sym_extern] = ACTIONS(2063), + [anon_sym_module] = ACTIONS(2063), + [anon_sym_use] = ACTIONS(2063), + [anon_sym_LPAREN] = ACTIONS(2063), + [anon_sym_DOLLAR] = ACTIONS(2063), + [anon_sym_error] = ACTIONS(2063), + [anon_sym_list] = ACTIONS(2063), + [anon_sym_DASH] = ACTIONS(2063), + [anon_sym_break] = ACTIONS(2063), + [anon_sym_continue] = ACTIONS(2063), + [anon_sym_for] = ACTIONS(2063), + [anon_sym_in] = ACTIONS(2063), + [anon_sym_loop] = ACTIONS(2063), + [anon_sym_make] = ACTIONS(2063), + [anon_sym_while] = ACTIONS(2063), + [anon_sym_do] = ACTIONS(2063), + [anon_sym_if] = ACTIONS(2063), + [anon_sym_else] = ACTIONS(2063), + [anon_sym_match] = ACTIONS(2063), + [anon_sym_RBRACE] = ACTIONS(2063), + [anon_sym_try] = ACTIONS(2063), + [anon_sym_catch] = ACTIONS(2063), + [anon_sym_return] = ACTIONS(2063), + [anon_sym_source] = ACTIONS(2063), + [anon_sym_source_DASHenv] = ACTIONS(2063), + [anon_sym_register] = ACTIONS(2063), + [anon_sym_hide] = ACTIONS(2063), + [anon_sym_hide_DASHenv] = ACTIONS(2063), + [anon_sym_overlay] = ACTIONS(2063), + [anon_sym_new] = ACTIONS(2063), + [anon_sym_as] = ACTIONS(2063), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2063), + [anon_sym_DOT] = ACTIONS(1856), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2063), + [aux_sym__val_number_decimal_token1] = ACTIONS(2063), + [aux_sym__val_number_decimal_token2] = ACTIONS(2063), + [aux_sym__val_number_decimal_token3] = ACTIONS(2063), + [aux_sym__val_number_decimal_token4] = ACTIONS(2063), + [aux_sym__val_number_token1] = ACTIONS(2063), + [aux_sym__val_number_token2] = ACTIONS(2063), + [aux_sym__val_number_token3] = ACTIONS(2063), + [anon_sym_DQUOTE] = ACTIONS(2063), + [sym__str_single_quotes] = ACTIONS(2063), + [sym__str_back_ticks] = ACTIONS(2063), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2063), + [sym__entry_separator] = ACTIONS(2065), + [anon_sym_PLUS] = ACTIONS(2063), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2065), }, - [434] = { - [sym_cell_path] = STATE(688), - [sym_path] = STATE(578), - [sym_comment] = STATE(434), - [aux_sym_cell_path_repeat1] = STATE(459), - [anon_sym_export] = ACTIONS(1876), - [anon_sym_alias] = ACTIONS(1876), - [anon_sym_let] = ACTIONS(1876), - [anon_sym_let_DASHenv] = ACTIONS(1876), - [anon_sym_mut] = ACTIONS(1876), - [anon_sym_const] = ACTIONS(1876), - [aux_sym_cmd_identifier_token1] = ACTIONS(1876), - [aux_sym_cmd_identifier_token2] = ACTIONS(1876), - [aux_sym_cmd_identifier_token3] = ACTIONS(1876), - [aux_sym_cmd_identifier_token4] = ACTIONS(1876), - [aux_sym_cmd_identifier_token5] = ACTIONS(1876), - [aux_sym_cmd_identifier_token6] = ACTIONS(1876), - [aux_sym_cmd_identifier_token7] = ACTIONS(1876), - [aux_sym_cmd_identifier_token8] = ACTIONS(1876), - [aux_sym_cmd_identifier_token9] = ACTIONS(1876), - [aux_sym_cmd_identifier_token10] = ACTIONS(1876), - [aux_sym_cmd_identifier_token11] = ACTIONS(1876), - [aux_sym_cmd_identifier_token12] = ACTIONS(1876), - [aux_sym_cmd_identifier_token13] = ACTIONS(1876), - [aux_sym_cmd_identifier_token14] = ACTIONS(1876), - [aux_sym_cmd_identifier_token15] = ACTIONS(1876), - [aux_sym_cmd_identifier_token16] = ACTIONS(1876), - [aux_sym_cmd_identifier_token17] = ACTIONS(1876), - [aux_sym_cmd_identifier_token18] = ACTIONS(1876), - [aux_sym_cmd_identifier_token19] = ACTIONS(1876), - [aux_sym_cmd_identifier_token20] = ACTIONS(1876), - [aux_sym_cmd_identifier_token21] = ACTIONS(1876), - [aux_sym_cmd_identifier_token22] = ACTIONS(1876), - [aux_sym_cmd_identifier_token23] = ACTIONS(1876), - [aux_sym_cmd_identifier_token24] = ACTIONS(1876), - [aux_sym_cmd_identifier_token25] = ACTIONS(1876), - [aux_sym_cmd_identifier_token26] = ACTIONS(1876), - [aux_sym_cmd_identifier_token27] = ACTIONS(1876), - [aux_sym_cmd_identifier_token28] = ACTIONS(1876), - [aux_sym_cmd_identifier_token29] = ACTIONS(1876), - [aux_sym_cmd_identifier_token30] = ACTIONS(1876), - [aux_sym_cmd_identifier_token31] = ACTIONS(1876), - [aux_sym_cmd_identifier_token32] = ACTIONS(1876), - [aux_sym_cmd_identifier_token33] = ACTIONS(1876), - [aux_sym_cmd_identifier_token34] = ACTIONS(1876), - [aux_sym_cmd_identifier_token35] = ACTIONS(1876), - [aux_sym_cmd_identifier_token36] = ACTIONS(1876), - [anon_sym_true] = ACTIONS(1878), - [anon_sym_false] = ACTIONS(1878), - [anon_sym_null] = ACTIONS(1878), - [aux_sym_cmd_identifier_token38] = ACTIONS(1876), - [aux_sym_cmd_identifier_token39] = ACTIONS(1878), - [aux_sym_cmd_identifier_token40] = ACTIONS(1878), - [anon_sym_def] = ACTIONS(1876), - [anon_sym_export_DASHenv] = ACTIONS(1876), - [anon_sym_extern] = ACTIONS(1876), - [anon_sym_module] = ACTIONS(1876), - [anon_sym_use] = ACTIONS(1876), - [anon_sym_LPAREN] = ACTIONS(1878), - [anon_sym_DOLLAR] = ACTIONS(1878), - [anon_sym_error] = ACTIONS(1876), - [anon_sym_list] = ACTIONS(1876), - [anon_sym_DASH] = ACTIONS(1876), - [anon_sym_break] = ACTIONS(1876), - [anon_sym_continue] = ACTIONS(1876), - [anon_sym_for] = ACTIONS(1876), - [anon_sym_in] = ACTIONS(1876), - [anon_sym_loop] = ACTIONS(1876), - [anon_sym_make] = ACTIONS(1876), - [anon_sym_while] = ACTIONS(1876), - [anon_sym_do] = ACTIONS(1876), - [anon_sym_if] = ACTIONS(1876), - [anon_sym_else] = ACTIONS(1876), - [anon_sym_match] = ACTIONS(1876), - [anon_sym_RBRACE] = ACTIONS(1878), - [anon_sym_try] = ACTIONS(1876), - [anon_sym_catch] = ACTIONS(1876), - [anon_sym_return] = ACTIONS(1876), - [anon_sym_source] = ACTIONS(1876), - [anon_sym_source_DASHenv] = ACTIONS(1876), - [anon_sym_register] = ACTIONS(1876), - [anon_sym_hide] = ACTIONS(1876), - [anon_sym_hide_DASHenv] = ACTIONS(1876), - [anon_sym_overlay] = ACTIONS(1876), - [anon_sym_new] = ACTIONS(1876), - [anon_sym_as] = ACTIONS(1876), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1878), - [anon_sym_DOT] = ACTIONS(1989), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1878), - [aux_sym__val_number_decimal_token1] = ACTIONS(1876), - [aux_sym__val_number_decimal_token2] = ACTIONS(1878), - [aux_sym__val_number_decimal_token3] = ACTIONS(1878), - [aux_sym__val_number_decimal_token4] = ACTIONS(1878), - [aux_sym__val_number_token1] = ACTIONS(1878), - [aux_sym__val_number_token2] = ACTIONS(1878), - [aux_sym__val_number_token3] = ACTIONS(1878), - [anon_sym_DQUOTE] = ACTIONS(1878), - [sym__str_single_quotes] = ACTIONS(1878), - [sym__str_back_ticks] = ACTIONS(1878), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1878), - [anon_sym_PLUS] = ACTIONS(1876), - [anon_sym_POUND] = ACTIONS(247), + [378] = { + [sym_cell_path] = STATE(580), + [sym_path] = STATE(518), + [sym_comment] = STATE(378), + [aux_sym_cell_path_repeat1] = STATE(411), + [anon_sym_export] = ACTIONS(2067), + [anon_sym_alias] = ACTIONS(2067), + [anon_sym_let] = ACTIONS(2067), + [anon_sym_let_DASHenv] = ACTIONS(2067), + [anon_sym_mut] = ACTIONS(2067), + [anon_sym_const] = ACTIONS(2067), + [aux_sym_cmd_identifier_token1] = ACTIONS(2067), + [aux_sym_cmd_identifier_token2] = ACTIONS(2067), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [aux_sym_cmd_identifier_token6] = ACTIONS(2067), + [aux_sym_cmd_identifier_token7] = ACTIONS(2067), + [aux_sym_cmd_identifier_token8] = ACTIONS(2067), + [aux_sym_cmd_identifier_token9] = ACTIONS(2067), + [aux_sym_cmd_identifier_token10] = ACTIONS(2067), + [aux_sym_cmd_identifier_token11] = ACTIONS(2067), + [aux_sym_cmd_identifier_token12] = ACTIONS(2067), + [aux_sym_cmd_identifier_token13] = ACTIONS(2067), + [aux_sym_cmd_identifier_token14] = ACTIONS(2067), + [aux_sym_cmd_identifier_token15] = ACTIONS(2067), + [aux_sym_cmd_identifier_token16] = ACTIONS(2067), + [aux_sym_cmd_identifier_token17] = ACTIONS(2067), + [aux_sym_cmd_identifier_token18] = ACTIONS(2067), + [aux_sym_cmd_identifier_token19] = ACTIONS(2067), + [aux_sym_cmd_identifier_token20] = ACTIONS(2067), + [aux_sym_cmd_identifier_token21] = ACTIONS(2067), + [aux_sym_cmd_identifier_token22] = ACTIONS(2067), + [aux_sym_cmd_identifier_token23] = ACTIONS(2067), + [aux_sym_cmd_identifier_token24] = ACTIONS(2067), + [aux_sym_cmd_identifier_token25] = ACTIONS(2067), + [aux_sym_cmd_identifier_token26] = ACTIONS(2067), + [aux_sym_cmd_identifier_token27] = ACTIONS(2067), + [aux_sym_cmd_identifier_token28] = ACTIONS(2067), + [aux_sym_cmd_identifier_token29] = ACTIONS(2067), + [aux_sym_cmd_identifier_token30] = ACTIONS(2067), + [aux_sym_cmd_identifier_token31] = ACTIONS(2067), + [aux_sym_cmd_identifier_token32] = ACTIONS(2067), + [aux_sym_cmd_identifier_token33] = ACTIONS(2067), + [aux_sym_cmd_identifier_token34] = ACTIONS(2067), + [aux_sym_cmd_identifier_token35] = ACTIONS(2067), + [aux_sym_cmd_identifier_token36] = ACTIONS(2067), + [anon_sym_true] = ACTIONS(2067), + [anon_sym_false] = ACTIONS(2067), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token38] = ACTIONS(2067), + [aux_sym_cmd_identifier_token39] = ACTIONS(2067), + [aux_sym_cmd_identifier_token40] = ACTIONS(2067), + [anon_sym_def] = ACTIONS(2067), + [anon_sym_export_DASHenv] = ACTIONS(2067), + [anon_sym_extern] = ACTIONS(2067), + [anon_sym_module] = ACTIONS(2067), + [anon_sym_use] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_DOLLAR] = ACTIONS(2067), + [anon_sym_error] = ACTIONS(2067), + [anon_sym_list] = ACTIONS(2067), + [anon_sym_DASH] = ACTIONS(2067), + [anon_sym_break] = ACTIONS(2067), + [anon_sym_continue] = ACTIONS(2067), + [anon_sym_for] = ACTIONS(2067), + [anon_sym_in] = ACTIONS(2067), + [anon_sym_loop] = ACTIONS(2067), + [anon_sym_make] = ACTIONS(2067), + [anon_sym_while] = ACTIONS(2067), + [anon_sym_do] = ACTIONS(2067), + [anon_sym_if] = ACTIONS(2067), + [anon_sym_else] = ACTIONS(2067), + [anon_sym_match] = ACTIONS(2067), + [anon_sym_RBRACE] = ACTIONS(2067), + [anon_sym_try] = ACTIONS(2067), + [anon_sym_catch] = ACTIONS(2067), + [anon_sym_return] = ACTIONS(2067), + [anon_sym_source] = ACTIONS(2067), + [anon_sym_source_DASHenv] = ACTIONS(2067), + [anon_sym_register] = ACTIONS(2067), + [anon_sym_hide] = ACTIONS(2067), + [anon_sym_hide_DASHenv] = ACTIONS(2067), + [anon_sym_overlay] = ACTIONS(2067), + [anon_sym_new] = ACTIONS(2067), + [anon_sym_as] = ACTIONS(2067), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2067), + [anon_sym_DOT] = ACTIONS(1856), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2067), + [aux_sym__val_number_decimal_token1] = ACTIONS(2067), + [aux_sym__val_number_decimal_token2] = ACTIONS(2067), + [aux_sym__val_number_decimal_token3] = ACTIONS(2067), + [aux_sym__val_number_decimal_token4] = ACTIONS(2067), + [aux_sym__val_number_token1] = ACTIONS(2067), + [aux_sym__val_number_token2] = ACTIONS(2067), + [aux_sym__val_number_token3] = ACTIONS(2067), + [anon_sym_DQUOTE] = ACTIONS(2067), + [sym__str_single_quotes] = ACTIONS(2067), + [sym__str_back_ticks] = ACTIONS(2067), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2067), + [sym__entry_separator] = ACTIONS(2069), + [anon_sym_PLUS] = ACTIONS(2067), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2069), }, - [435] = { - [sym_cell_path] = STATE(689), - [sym_path] = STATE(578), - [sym_comment] = STATE(435), - [aux_sym_cell_path_repeat1] = STATE(459), - [anon_sym_export] = ACTIONS(1880), - [anon_sym_alias] = ACTIONS(1880), - [anon_sym_let] = ACTIONS(1880), - [anon_sym_let_DASHenv] = ACTIONS(1880), - [anon_sym_mut] = ACTIONS(1880), - [anon_sym_const] = ACTIONS(1880), - [aux_sym_cmd_identifier_token1] = ACTIONS(1880), - [aux_sym_cmd_identifier_token2] = ACTIONS(1880), - [aux_sym_cmd_identifier_token3] = ACTIONS(1880), - [aux_sym_cmd_identifier_token4] = ACTIONS(1880), - [aux_sym_cmd_identifier_token5] = ACTIONS(1880), - [aux_sym_cmd_identifier_token6] = ACTIONS(1880), - [aux_sym_cmd_identifier_token7] = ACTIONS(1880), - [aux_sym_cmd_identifier_token8] = ACTIONS(1880), - [aux_sym_cmd_identifier_token9] = ACTIONS(1880), - [aux_sym_cmd_identifier_token10] = ACTIONS(1880), - [aux_sym_cmd_identifier_token11] = ACTIONS(1880), - [aux_sym_cmd_identifier_token12] = ACTIONS(1880), - [aux_sym_cmd_identifier_token13] = ACTIONS(1880), - [aux_sym_cmd_identifier_token14] = ACTIONS(1880), - [aux_sym_cmd_identifier_token15] = ACTIONS(1880), - [aux_sym_cmd_identifier_token16] = ACTIONS(1880), - [aux_sym_cmd_identifier_token17] = ACTIONS(1880), - [aux_sym_cmd_identifier_token18] = ACTIONS(1880), - [aux_sym_cmd_identifier_token19] = ACTIONS(1880), - [aux_sym_cmd_identifier_token20] = ACTIONS(1880), - [aux_sym_cmd_identifier_token21] = ACTIONS(1880), - [aux_sym_cmd_identifier_token22] = ACTIONS(1880), - [aux_sym_cmd_identifier_token23] = ACTIONS(1880), - [aux_sym_cmd_identifier_token24] = ACTIONS(1880), - [aux_sym_cmd_identifier_token25] = ACTIONS(1880), - [aux_sym_cmd_identifier_token26] = ACTIONS(1880), - [aux_sym_cmd_identifier_token27] = ACTIONS(1880), - [aux_sym_cmd_identifier_token28] = ACTIONS(1880), - [aux_sym_cmd_identifier_token29] = ACTIONS(1880), - [aux_sym_cmd_identifier_token30] = ACTIONS(1880), - [aux_sym_cmd_identifier_token31] = ACTIONS(1880), - [aux_sym_cmd_identifier_token32] = ACTIONS(1880), - [aux_sym_cmd_identifier_token33] = ACTIONS(1880), - [aux_sym_cmd_identifier_token34] = ACTIONS(1880), - [aux_sym_cmd_identifier_token35] = ACTIONS(1880), - [aux_sym_cmd_identifier_token36] = ACTIONS(1880), - [anon_sym_true] = ACTIONS(1882), - [anon_sym_false] = ACTIONS(1882), - [anon_sym_null] = ACTIONS(1882), - [aux_sym_cmd_identifier_token38] = ACTIONS(1880), - [aux_sym_cmd_identifier_token39] = ACTIONS(1882), - [aux_sym_cmd_identifier_token40] = ACTIONS(1882), - [anon_sym_def] = ACTIONS(1880), - [anon_sym_export_DASHenv] = ACTIONS(1880), - [anon_sym_extern] = ACTIONS(1880), - [anon_sym_module] = ACTIONS(1880), - [anon_sym_use] = ACTIONS(1880), - [anon_sym_LPAREN] = ACTIONS(1882), - [anon_sym_DOLLAR] = ACTIONS(1882), - [anon_sym_error] = ACTIONS(1880), - [anon_sym_list] = ACTIONS(1880), - [anon_sym_DASH] = ACTIONS(1880), - [anon_sym_break] = ACTIONS(1880), - [anon_sym_continue] = ACTIONS(1880), - [anon_sym_for] = ACTIONS(1880), - [anon_sym_in] = ACTIONS(1880), - [anon_sym_loop] = ACTIONS(1880), - [anon_sym_make] = ACTIONS(1880), - [anon_sym_while] = ACTIONS(1880), - [anon_sym_do] = ACTIONS(1880), - [anon_sym_if] = ACTIONS(1880), - [anon_sym_else] = ACTIONS(1880), - [anon_sym_match] = ACTIONS(1880), - [anon_sym_RBRACE] = ACTIONS(1882), - [anon_sym_try] = ACTIONS(1880), - [anon_sym_catch] = ACTIONS(1880), - [anon_sym_return] = ACTIONS(1880), - [anon_sym_source] = ACTIONS(1880), - [anon_sym_source_DASHenv] = ACTIONS(1880), - [anon_sym_register] = ACTIONS(1880), - [anon_sym_hide] = ACTIONS(1880), - [anon_sym_hide_DASHenv] = ACTIONS(1880), - [anon_sym_overlay] = ACTIONS(1880), - [anon_sym_new] = ACTIONS(1880), - [anon_sym_as] = ACTIONS(1880), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1882), - [anon_sym_DOT] = ACTIONS(1989), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1882), - [aux_sym__val_number_decimal_token1] = ACTIONS(1880), - [aux_sym__val_number_decimal_token2] = ACTIONS(1882), - [aux_sym__val_number_decimal_token3] = ACTIONS(1882), - [aux_sym__val_number_decimal_token4] = ACTIONS(1882), - [aux_sym__val_number_token1] = ACTIONS(1882), - [aux_sym__val_number_token2] = ACTIONS(1882), - [aux_sym__val_number_token3] = ACTIONS(1882), - [anon_sym_DQUOTE] = ACTIONS(1882), - [sym__str_single_quotes] = ACTIONS(1882), - [sym__str_back_ticks] = ACTIONS(1882), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1882), - [anon_sym_PLUS] = ACTIONS(1880), - [anon_sym_POUND] = ACTIONS(247), + [379] = { + [sym_cell_path] = STATE(599), + [sym_path] = STATE(518), + [sym_comment] = STATE(379), + [aux_sym_cell_path_repeat1] = STATE(411), + [anon_sym_export] = ACTIONS(2071), + [anon_sym_alias] = ACTIONS(2071), + [anon_sym_let] = ACTIONS(2071), + [anon_sym_let_DASHenv] = ACTIONS(2071), + [anon_sym_mut] = ACTIONS(2071), + [anon_sym_const] = ACTIONS(2071), + [aux_sym_cmd_identifier_token1] = ACTIONS(2071), + [aux_sym_cmd_identifier_token2] = ACTIONS(2071), + [aux_sym_cmd_identifier_token3] = ACTIONS(2071), + [aux_sym_cmd_identifier_token4] = ACTIONS(2071), + [aux_sym_cmd_identifier_token5] = ACTIONS(2071), + [aux_sym_cmd_identifier_token6] = ACTIONS(2071), + [aux_sym_cmd_identifier_token7] = ACTIONS(2071), + [aux_sym_cmd_identifier_token8] = ACTIONS(2071), + [aux_sym_cmd_identifier_token9] = ACTIONS(2071), + [aux_sym_cmd_identifier_token10] = ACTIONS(2071), + [aux_sym_cmd_identifier_token11] = ACTIONS(2071), + [aux_sym_cmd_identifier_token12] = ACTIONS(2071), + [aux_sym_cmd_identifier_token13] = ACTIONS(2071), + [aux_sym_cmd_identifier_token14] = ACTIONS(2071), + [aux_sym_cmd_identifier_token15] = ACTIONS(2071), + [aux_sym_cmd_identifier_token16] = ACTIONS(2071), + [aux_sym_cmd_identifier_token17] = ACTIONS(2071), + [aux_sym_cmd_identifier_token18] = ACTIONS(2071), + [aux_sym_cmd_identifier_token19] = ACTIONS(2071), + [aux_sym_cmd_identifier_token20] = ACTIONS(2071), + [aux_sym_cmd_identifier_token21] = ACTIONS(2071), + [aux_sym_cmd_identifier_token22] = ACTIONS(2071), + [aux_sym_cmd_identifier_token23] = ACTIONS(2071), + [aux_sym_cmd_identifier_token24] = ACTIONS(2071), + [aux_sym_cmd_identifier_token25] = ACTIONS(2071), + [aux_sym_cmd_identifier_token26] = ACTIONS(2071), + [aux_sym_cmd_identifier_token27] = ACTIONS(2071), + [aux_sym_cmd_identifier_token28] = ACTIONS(2071), + [aux_sym_cmd_identifier_token29] = ACTIONS(2071), + [aux_sym_cmd_identifier_token30] = ACTIONS(2071), + [aux_sym_cmd_identifier_token31] = ACTIONS(2071), + [aux_sym_cmd_identifier_token32] = ACTIONS(2071), + [aux_sym_cmd_identifier_token33] = ACTIONS(2071), + [aux_sym_cmd_identifier_token34] = ACTIONS(2071), + [aux_sym_cmd_identifier_token35] = ACTIONS(2071), + [aux_sym_cmd_identifier_token36] = ACTIONS(2071), + [anon_sym_true] = ACTIONS(2071), + [anon_sym_false] = ACTIONS(2071), + [anon_sym_null] = ACTIONS(2071), + [aux_sym_cmd_identifier_token38] = ACTIONS(2071), + [aux_sym_cmd_identifier_token39] = ACTIONS(2071), + [aux_sym_cmd_identifier_token40] = ACTIONS(2071), + [anon_sym_def] = ACTIONS(2071), + [anon_sym_export_DASHenv] = ACTIONS(2071), + [anon_sym_extern] = ACTIONS(2071), + [anon_sym_module] = ACTIONS(2071), + [anon_sym_use] = ACTIONS(2071), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_DOLLAR] = ACTIONS(2071), + [anon_sym_error] = ACTIONS(2071), + [anon_sym_list] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_break] = ACTIONS(2071), + [anon_sym_continue] = ACTIONS(2071), + [anon_sym_for] = ACTIONS(2071), + [anon_sym_in] = ACTIONS(2071), + [anon_sym_loop] = ACTIONS(2071), + [anon_sym_make] = ACTIONS(2071), + [anon_sym_while] = ACTIONS(2071), + [anon_sym_do] = ACTIONS(2071), + [anon_sym_if] = ACTIONS(2071), + [anon_sym_else] = ACTIONS(2071), + [anon_sym_match] = ACTIONS(2071), + [anon_sym_RBRACE] = ACTIONS(2071), + [anon_sym_try] = ACTIONS(2071), + [anon_sym_catch] = ACTIONS(2071), + [anon_sym_return] = ACTIONS(2071), + [anon_sym_source] = ACTIONS(2071), + [anon_sym_source_DASHenv] = ACTIONS(2071), + [anon_sym_register] = ACTIONS(2071), + [anon_sym_hide] = ACTIONS(2071), + [anon_sym_hide_DASHenv] = ACTIONS(2071), + [anon_sym_overlay] = ACTIONS(2071), + [anon_sym_new] = ACTIONS(2071), + [anon_sym_as] = ACTIONS(2071), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2071), + [anon_sym_DOT] = ACTIONS(1856), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2071), + [aux_sym__val_number_decimal_token1] = ACTIONS(2071), + [aux_sym__val_number_decimal_token2] = ACTIONS(2071), + [aux_sym__val_number_decimal_token3] = ACTIONS(2071), + [aux_sym__val_number_decimal_token4] = ACTIONS(2071), + [aux_sym__val_number_token1] = ACTIONS(2071), + [aux_sym__val_number_token2] = ACTIONS(2071), + [aux_sym__val_number_token3] = ACTIONS(2071), + [anon_sym_DQUOTE] = ACTIONS(2071), + [sym__str_single_quotes] = ACTIONS(2071), + [sym__str_back_ticks] = ACTIONS(2071), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2071), + [sym__entry_separator] = ACTIONS(2073), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2073), }, - [436] = { - [sym_cell_path] = STATE(690), - [sym_path] = STATE(578), - [sym_comment] = STATE(436), - [aux_sym_cell_path_repeat1] = STATE(459), - [anon_sym_export] = ACTIONS(1884), - [anon_sym_alias] = ACTIONS(1884), - [anon_sym_let] = ACTIONS(1884), - [anon_sym_let_DASHenv] = ACTIONS(1884), - [anon_sym_mut] = ACTIONS(1884), - [anon_sym_const] = ACTIONS(1884), - [aux_sym_cmd_identifier_token1] = ACTIONS(1884), - [aux_sym_cmd_identifier_token2] = ACTIONS(1884), - [aux_sym_cmd_identifier_token3] = ACTIONS(1884), - [aux_sym_cmd_identifier_token4] = ACTIONS(1884), - [aux_sym_cmd_identifier_token5] = ACTIONS(1884), - [aux_sym_cmd_identifier_token6] = ACTIONS(1884), - [aux_sym_cmd_identifier_token7] = ACTIONS(1884), - [aux_sym_cmd_identifier_token8] = ACTIONS(1884), - [aux_sym_cmd_identifier_token9] = ACTIONS(1884), - [aux_sym_cmd_identifier_token10] = ACTIONS(1884), - [aux_sym_cmd_identifier_token11] = ACTIONS(1884), - [aux_sym_cmd_identifier_token12] = ACTIONS(1884), - [aux_sym_cmd_identifier_token13] = ACTIONS(1884), - [aux_sym_cmd_identifier_token14] = ACTIONS(1884), - [aux_sym_cmd_identifier_token15] = ACTIONS(1884), - [aux_sym_cmd_identifier_token16] = ACTIONS(1884), - [aux_sym_cmd_identifier_token17] = ACTIONS(1884), - [aux_sym_cmd_identifier_token18] = ACTIONS(1884), - [aux_sym_cmd_identifier_token19] = ACTIONS(1884), - [aux_sym_cmd_identifier_token20] = ACTIONS(1884), - [aux_sym_cmd_identifier_token21] = ACTIONS(1884), - [aux_sym_cmd_identifier_token22] = ACTIONS(1884), - [aux_sym_cmd_identifier_token23] = ACTIONS(1884), - [aux_sym_cmd_identifier_token24] = ACTIONS(1884), - [aux_sym_cmd_identifier_token25] = ACTIONS(1884), - [aux_sym_cmd_identifier_token26] = ACTIONS(1884), - [aux_sym_cmd_identifier_token27] = ACTIONS(1884), - [aux_sym_cmd_identifier_token28] = ACTIONS(1884), - [aux_sym_cmd_identifier_token29] = ACTIONS(1884), - [aux_sym_cmd_identifier_token30] = ACTIONS(1884), - [aux_sym_cmd_identifier_token31] = ACTIONS(1884), - [aux_sym_cmd_identifier_token32] = ACTIONS(1884), - [aux_sym_cmd_identifier_token33] = ACTIONS(1884), - [aux_sym_cmd_identifier_token34] = ACTIONS(1884), - [aux_sym_cmd_identifier_token35] = ACTIONS(1884), - [aux_sym_cmd_identifier_token36] = ACTIONS(1884), - [anon_sym_true] = ACTIONS(1886), - [anon_sym_false] = ACTIONS(1886), - [anon_sym_null] = ACTIONS(1886), - [aux_sym_cmd_identifier_token38] = ACTIONS(1884), - [aux_sym_cmd_identifier_token39] = ACTIONS(1886), - [aux_sym_cmd_identifier_token40] = ACTIONS(1886), - [anon_sym_def] = ACTIONS(1884), - [anon_sym_export_DASHenv] = ACTIONS(1884), - [anon_sym_extern] = ACTIONS(1884), - [anon_sym_module] = ACTIONS(1884), - [anon_sym_use] = ACTIONS(1884), - [anon_sym_LPAREN] = ACTIONS(1886), - [anon_sym_DOLLAR] = ACTIONS(1886), - [anon_sym_error] = ACTIONS(1884), - [anon_sym_list] = ACTIONS(1884), - [anon_sym_DASH] = ACTIONS(1884), - [anon_sym_break] = ACTIONS(1884), - [anon_sym_continue] = ACTIONS(1884), - [anon_sym_for] = ACTIONS(1884), - [anon_sym_in] = ACTIONS(1884), - [anon_sym_loop] = ACTIONS(1884), - [anon_sym_make] = ACTIONS(1884), - [anon_sym_while] = ACTIONS(1884), - [anon_sym_do] = ACTIONS(1884), - [anon_sym_if] = ACTIONS(1884), - [anon_sym_else] = ACTIONS(1884), - [anon_sym_match] = ACTIONS(1884), - [anon_sym_RBRACE] = ACTIONS(1886), - [anon_sym_try] = ACTIONS(1884), - [anon_sym_catch] = ACTIONS(1884), - [anon_sym_return] = ACTIONS(1884), - [anon_sym_source] = ACTIONS(1884), - [anon_sym_source_DASHenv] = ACTIONS(1884), - [anon_sym_register] = ACTIONS(1884), - [anon_sym_hide] = ACTIONS(1884), - [anon_sym_hide_DASHenv] = ACTIONS(1884), - [anon_sym_overlay] = ACTIONS(1884), - [anon_sym_new] = ACTIONS(1884), - [anon_sym_as] = ACTIONS(1884), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1886), - [anon_sym_DOT] = ACTIONS(1989), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1886), - [aux_sym__val_number_decimal_token1] = ACTIONS(1884), - [aux_sym__val_number_decimal_token2] = ACTIONS(1886), - [aux_sym__val_number_decimal_token3] = ACTIONS(1886), - [aux_sym__val_number_decimal_token4] = ACTIONS(1886), - [aux_sym__val_number_token1] = ACTIONS(1886), - [aux_sym__val_number_token2] = ACTIONS(1886), - [aux_sym__val_number_token3] = ACTIONS(1886), - [anon_sym_DQUOTE] = ACTIONS(1886), - [sym__str_single_quotes] = ACTIONS(1886), - [sym__str_back_ticks] = ACTIONS(1886), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1886), - [anon_sym_PLUS] = ACTIONS(1884), - [anon_sym_POUND] = ACTIONS(247), + [380] = { + [sym_cell_path] = STATE(601), + [sym_path] = STATE(518), + [sym_comment] = STATE(380), + [aux_sym_cell_path_repeat1] = STATE(411), + [anon_sym_export] = ACTIONS(2075), + [anon_sym_alias] = ACTIONS(2075), + [anon_sym_let] = ACTIONS(2075), + [anon_sym_let_DASHenv] = ACTIONS(2075), + [anon_sym_mut] = ACTIONS(2075), + [anon_sym_const] = ACTIONS(2075), + [aux_sym_cmd_identifier_token1] = ACTIONS(2075), + [aux_sym_cmd_identifier_token2] = ACTIONS(2075), + [aux_sym_cmd_identifier_token3] = ACTIONS(2075), + [aux_sym_cmd_identifier_token4] = ACTIONS(2075), + [aux_sym_cmd_identifier_token5] = ACTIONS(2075), + [aux_sym_cmd_identifier_token6] = ACTIONS(2075), + [aux_sym_cmd_identifier_token7] = ACTIONS(2075), + [aux_sym_cmd_identifier_token8] = ACTIONS(2075), + [aux_sym_cmd_identifier_token9] = ACTIONS(2075), + [aux_sym_cmd_identifier_token10] = ACTIONS(2075), + [aux_sym_cmd_identifier_token11] = ACTIONS(2075), + [aux_sym_cmd_identifier_token12] = ACTIONS(2075), + [aux_sym_cmd_identifier_token13] = ACTIONS(2075), + [aux_sym_cmd_identifier_token14] = ACTIONS(2075), + [aux_sym_cmd_identifier_token15] = ACTIONS(2075), + [aux_sym_cmd_identifier_token16] = ACTIONS(2075), + [aux_sym_cmd_identifier_token17] = ACTIONS(2075), + [aux_sym_cmd_identifier_token18] = ACTIONS(2075), + [aux_sym_cmd_identifier_token19] = ACTIONS(2075), + [aux_sym_cmd_identifier_token20] = ACTIONS(2075), + [aux_sym_cmd_identifier_token21] = ACTIONS(2075), + [aux_sym_cmd_identifier_token22] = ACTIONS(2075), + [aux_sym_cmd_identifier_token23] = ACTIONS(2075), + [aux_sym_cmd_identifier_token24] = ACTIONS(2075), + [aux_sym_cmd_identifier_token25] = ACTIONS(2075), + [aux_sym_cmd_identifier_token26] = ACTIONS(2075), + [aux_sym_cmd_identifier_token27] = ACTIONS(2075), + [aux_sym_cmd_identifier_token28] = ACTIONS(2075), + [aux_sym_cmd_identifier_token29] = ACTIONS(2075), + [aux_sym_cmd_identifier_token30] = ACTIONS(2075), + [aux_sym_cmd_identifier_token31] = ACTIONS(2075), + [aux_sym_cmd_identifier_token32] = ACTIONS(2075), + [aux_sym_cmd_identifier_token33] = ACTIONS(2075), + [aux_sym_cmd_identifier_token34] = ACTIONS(2075), + [aux_sym_cmd_identifier_token35] = ACTIONS(2075), + [aux_sym_cmd_identifier_token36] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2075), + [anon_sym_false] = ACTIONS(2075), + [anon_sym_null] = ACTIONS(2075), + [aux_sym_cmd_identifier_token38] = ACTIONS(2075), + [aux_sym_cmd_identifier_token39] = ACTIONS(2075), + [aux_sym_cmd_identifier_token40] = ACTIONS(2075), + [anon_sym_def] = ACTIONS(2075), + [anon_sym_export_DASHenv] = ACTIONS(2075), + [anon_sym_extern] = ACTIONS(2075), + [anon_sym_module] = ACTIONS(2075), + [anon_sym_use] = ACTIONS(2075), + [anon_sym_LPAREN] = ACTIONS(2075), + [anon_sym_DOLLAR] = ACTIONS(2075), + [anon_sym_error] = ACTIONS(2075), + [anon_sym_list] = ACTIONS(2075), + [anon_sym_DASH] = ACTIONS(2075), + [anon_sym_break] = ACTIONS(2075), + [anon_sym_continue] = ACTIONS(2075), + [anon_sym_for] = ACTIONS(2075), + [anon_sym_in] = ACTIONS(2075), + [anon_sym_loop] = ACTIONS(2075), + [anon_sym_make] = ACTIONS(2075), + [anon_sym_while] = ACTIONS(2075), + [anon_sym_do] = ACTIONS(2075), + [anon_sym_if] = ACTIONS(2075), + [anon_sym_else] = ACTIONS(2075), + [anon_sym_match] = ACTIONS(2075), + [anon_sym_RBRACE] = ACTIONS(2075), + [anon_sym_try] = ACTIONS(2075), + [anon_sym_catch] = ACTIONS(2075), + [anon_sym_return] = ACTIONS(2075), + [anon_sym_source] = ACTIONS(2075), + [anon_sym_source_DASHenv] = ACTIONS(2075), + [anon_sym_register] = ACTIONS(2075), + [anon_sym_hide] = ACTIONS(2075), + [anon_sym_hide_DASHenv] = ACTIONS(2075), + [anon_sym_overlay] = ACTIONS(2075), + [anon_sym_new] = ACTIONS(2075), + [anon_sym_as] = ACTIONS(2075), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2075), + [anon_sym_DOT] = ACTIONS(1856), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2075), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_decimal_token2] = ACTIONS(2075), + [aux_sym__val_number_decimal_token3] = ACTIONS(2075), + [aux_sym__val_number_decimal_token4] = ACTIONS(2075), + [aux_sym__val_number_token1] = ACTIONS(2075), + [aux_sym__val_number_token2] = ACTIONS(2075), + [aux_sym__val_number_token3] = ACTIONS(2075), + [anon_sym_DQUOTE] = ACTIONS(2075), + [sym__str_single_quotes] = ACTIONS(2075), + [sym__str_back_ticks] = ACTIONS(2075), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2075), + [sym__entry_separator] = ACTIONS(2077), + [anon_sym_PLUS] = ACTIONS(2075), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2077), }, - [437] = { - [sym_cell_path] = STATE(691), - [sym_path] = STATE(578), - [sym_comment] = STATE(437), - [aux_sym_cell_path_repeat1] = STATE(459), - [anon_sym_export] = ACTIONS(1888), - [anon_sym_alias] = ACTIONS(1888), - [anon_sym_let] = ACTIONS(1888), - [anon_sym_let_DASHenv] = ACTIONS(1888), - [anon_sym_mut] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(1888), - [aux_sym_cmd_identifier_token1] = ACTIONS(1888), - [aux_sym_cmd_identifier_token2] = ACTIONS(1888), - [aux_sym_cmd_identifier_token3] = ACTIONS(1888), - [aux_sym_cmd_identifier_token4] = ACTIONS(1888), - [aux_sym_cmd_identifier_token5] = ACTIONS(1888), - [aux_sym_cmd_identifier_token6] = ACTIONS(1888), - [aux_sym_cmd_identifier_token7] = ACTIONS(1888), - [aux_sym_cmd_identifier_token8] = ACTIONS(1888), - [aux_sym_cmd_identifier_token9] = ACTIONS(1888), - [aux_sym_cmd_identifier_token10] = ACTIONS(1888), - [aux_sym_cmd_identifier_token11] = ACTIONS(1888), - [aux_sym_cmd_identifier_token12] = ACTIONS(1888), - [aux_sym_cmd_identifier_token13] = ACTIONS(1888), - [aux_sym_cmd_identifier_token14] = ACTIONS(1888), - [aux_sym_cmd_identifier_token15] = ACTIONS(1888), - [aux_sym_cmd_identifier_token16] = ACTIONS(1888), - [aux_sym_cmd_identifier_token17] = ACTIONS(1888), - [aux_sym_cmd_identifier_token18] = ACTIONS(1888), - [aux_sym_cmd_identifier_token19] = ACTIONS(1888), - [aux_sym_cmd_identifier_token20] = ACTIONS(1888), - [aux_sym_cmd_identifier_token21] = ACTIONS(1888), - [aux_sym_cmd_identifier_token22] = ACTIONS(1888), - [aux_sym_cmd_identifier_token23] = ACTIONS(1888), - [aux_sym_cmd_identifier_token24] = ACTIONS(1888), - [aux_sym_cmd_identifier_token25] = ACTIONS(1888), - [aux_sym_cmd_identifier_token26] = ACTIONS(1888), - [aux_sym_cmd_identifier_token27] = ACTIONS(1888), - [aux_sym_cmd_identifier_token28] = ACTIONS(1888), - [aux_sym_cmd_identifier_token29] = ACTIONS(1888), - [aux_sym_cmd_identifier_token30] = ACTIONS(1888), - [aux_sym_cmd_identifier_token31] = ACTIONS(1888), - [aux_sym_cmd_identifier_token32] = ACTIONS(1888), - [aux_sym_cmd_identifier_token33] = ACTIONS(1888), - [aux_sym_cmd_identifier_token34] = ACTIONS(1888), - [aux_sym_cmd_identifier_token35] = ACTIONS(1888), - [aux_sym_cmd_identifier_token36] = ACTIONS(1888), - [anon_sym_true] = ACTIONS(1890), - [anon_sym_false] = ACTIONS(1890), - [anon_sym_null] = ACTIONS(1890), - [aux_sym_cmd_identifier_token38] = ACTIONS(1888), - [aux_sym_cmd_identifier_token39] = ACTIONS(1890), - [aux_sym_cmd_identifier_token40] = ACTIONS(1890), - [anon_sym_def] = ACTIONS(1888), - [anon_sym_export_DASHenv] = ACTIONS(1888), - [anon_sym_extern] = ACTIONS(1888), - [anon_sym_module] = ACTIONS(1888), - [anon_sym_use] = ACTIONS(1888), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_DOLLAR] = ACTIONS(1890), - [anon_sym_error] = ACTIONS(1888), - [anon_sym_list] = ACTIONS(1888), - [anon_sym_DASH] = ACTIONS(1888), - [anon_sym_break] = ACTIONS(1888), - [anon_sym_continue] = ACTIONS(1888), - [anon_sym_for] = ACTIONS(1888), - [anon_sym_in] = ACTIONS(1888), - [anon_sym_loop] = ACTIONS(1888), - [anon_sym_make] = ACTIONS(1888), - [anon_sym_while] = ACTIONS(1888), - [anon_sym_do] = ACTIONS(1888), - [anon_sym_if] = ACTIONS(1888), - [anon_sym_else] = ACTIONS(1888), - [anon_sym_match] = ACTIONS(1888), - [anon_sym_RBRACE] = ACTIONS(1890), - [anon_sym_try] = ACTIONS(1888), - [anon_sym_catch] = ACTIONS(1888), - [anon_sym_return] = ACTIONS(1888), - [anon_sym_source] = ACTIONS(1888), - [anon_sym_source_DASHenv] = ACTIONS(1888), - [anon_sym_register] = ACTIONS(1888), - [anon_sym_hide] = ACTIONS(1888), - [anon_sym_hide_DASHenv] = ACTIONS(1888), - [anon_sym_overlay] = ACTIONS(1888), - [anon_sym_new] = ACTIONS(1888), - [anon_sym_as] = ACTIONS(1888), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1890), - [anon_sym_DOT] = ACTIONS(1989), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1890), - [aux_sym__val_number_decimal_token1] = ACTIONS(1888), - [aux_sym__val_number_decimal_token2] = ACTIONS(1890), - [aux_sym__val_number_decimal_token3] = ACTIONS(1890), - [aux_sym__val_number_decimal_token4] = ACTIONS(1890), - [aux_sym__val_number_token1] = ACTIONS(1890), - [aux_sym__val_number_token2] = ACTIONS(1890), - [aux_sym__val_number_token3] = ACTIONS(1890), - [anon_sym_DQUOTE] = ACTIONS(1890), - [sym__str_single_quotes] = ACTIONS(1890), - [sym__str_back_ticks] = ACTIONS(1890), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1890), - [anon_sym_PLUS] = ACTIONS(1888), - [anon_sym_POUND] = ACTIONS(247), + [381] = { + [sym_cell_path] = STATE(602), + [sym_path] = STATE(518), + [sym_comment] = STATE(381), + [aux_sym_cell_path_repeat1] = STATE(411), + [anon_sym_export] = ACTIONS(2079), + [anon_sym_alias] = ACTIONS(2079), + [anon_sym_let] = ACTIONS(2079), + [anon_sym_let_DASHenv] = ACTIONS(2079), + [anon_sym_mut] = ACTIONS(2079), + [anon_sym_const] = ACTIONS(2079), + [aux_sym_cmd_identifier_token1] = ACTIONS(2079), + [aux_sym_cmd_identifier_token2] = ACTIONS(2079), + [aux_sym_cmd_identifier_token3] = ACTIONS(2079), + [aux_sym_cmd_identifier_token4] = ACTIONS(2079), + [aux_sym_cmd_identifier_token5] = ACTIONS(2079), + [aux_sym_cmd_identifier_token6] = ACTIONS(2079), + [aux_sym_cmd_identifier_token7] = ACTIONS(2079), + [aux_sym_cmd_identifier_token8] = ACTIONS(2079), + [aux_sym_cmd_identifier_token9] = ACTIONS(2079), + [aux_sym_cmd_identifier_token10] = ACTIONS(2079), + [aux_sym_cmd_identifier_token11] = ACTIONS(2079), + [aux_sym_cmd_identifier_token12] = ACTIONS(2079), + [aux_sym_cmd_identifier_token13] = ACTIONS(2079), + [aux_sym_cmd_identifier_token14] = ACTIONS(2079), + [aux_sym_cmd_identifier_token15] = ACTIONS(2079), + [aux_sym_cmd_identifier_token16] = ACTIONS(2079), + [aux_sym_cmd_identifier_token17] = ACTIONS(2079), + [aux_sym_cmd_identifier_token18] = ACTIONS(2079), + [aux_sym_cmd_identifier_token19] = ACTIONS(2079), + [aux_sym_cmd_identifier_token20] = ACTIONS(2079), + [aux_sym_cmd_identifier_token21] = ACTIONS(2079), + [aux_sym_cmd_identifier_token22] = ACTIONS(2079), + [aux_sym_cmd_identifier_token23] = ACTIONS(2079), + [aux_sym_cmd_identifier_token24] = ACTIONS(2079), + [aux_sym_cmd_identifier_token25] = ACTIONS(2079), + [aux_sym_cmd_identifier_token26] = ACTIONS(2079), + [aux_sym_cmd_identifier_token27] = ACTIONS(2079), + [aux_sym_cmd_identifier_token28] = ACTIONS(2079), + [aux_sym_cmd_identifier_token29] = ACTIONS(2079), + [aux_sym_cmd_identifier_token30] = ACTIONS(2079), + [aux_sym_cmd_identifier_token31] = ACTIONS(2079), + [aux_sym_cmd_identifier_token32] = ACTIONS(2079), + [aux_sym_cmd_identifier_token33] = ACTIONS(2079), + [aux_sym_cmd_identifier_token34] = ACTIONS(2079), + [aux_sym_cmd_identifier_token35] = ACTIONS(2079), + [aux_sym_cmd_identifier_token36] = ACTIONS(2079), + [anon_sym_true] = ACTIONS(2079), + [anon_sym_false] = ACTIONS(2079), + [anon_sym_null] = ACTIONS(2079), + [aux_sym_cmd_identifier_token38] = ACTIONS(2079), + [aux_sym_cmd_identifier_token39] = ACTIONS(2079), + [aux_sym_cmd_identifier_token40] = ACTIONS(2079), + [anon_sym_def] = ACTIONS(2079), + [anon_sym_export_DASHenv] = ACTIONS(2079), + [anon_sym_extern] = ACTIONS(2079), + [anon_sym_module] = ACTIONS(2079), + [anon_sym_use] = ACTIONS(2079), + [anon_sym_LPAREN] = ACTIONS(2079), + [anon_sym_DOLLAR] = ACTIONS(2079), + [anon_sym_error] = ACTIONS(2079), + [anon_sym_list] = ACTIONS(2079), + [anon_sym_DASH] = ACTIONS(2079), + [anon_sym_break] = ACTIONS(2079), + [anon_sym_continue] = ACTIONS(2079), + [anon_sym_for] = ACTIONS(2079), + [anon_sym_in] = ACTIONS(2079), + [anon_sym_loop] = ACTIONS(2079), + [anon_sym_make] = ACTIONS(2079), + [anon_sym_while] = ACTIONS(2079), + [anon_sym_do] = ACTIONS(2079), + [anon_sym_if] = ACTIONS(2079), + [anon_sym_else] = ACTIONS(2079), + [anon_sym_match] = ACTIONS(2079), + [anon_sym_RBRACE] = ACTIONS(2079), + [anon_sym_try] = ACTIONS(2079), + [anon_sym_catch] = ACTIONS(2079), + [anon_sym_return] = ACTIONS(2079), + [anon_sym_source] = ACTIONS(2079), + [anon_sym_source_DASHenv] = ACTIONS(2079), + [anon_sym_register] = ACTIONS(2079), + [anon_sym_hide] = ACTIONS(2079), + [anon_sym_hide_DASHenv] = ACTIONS(2079), + [anon_sym_overlay] = ACTIONS(2079), + [anon_sym_new] = ACTIONS(2079), + [anon_sym_as] = ACTIONS(2079), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2079), + [anon_sym_DOT] = ACTIONS(1856), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2079), + [aux_sym__val_number_decimal_token1] = ACTIONS(2079), + [aux_sym__val_number_decimal_token2] = ACTIONS(2079), + [aux_sym__val_number_decimal_token3] = ACTIONS(2079), + [aux_sym__val_number_decimal_token4] = ACTIONS(2079), + [aux_sym__val_number_token1] = ACTIONS(2079), + [aux_sym__val_number_token2] = ACTIONS(2079), + [aux_sym__val_number_token3] = ACTIONS(2079), + [anon_sym_DQUOTE] = ACTIONS(2079), + [sym__str_single_quotes] = ACTIONS(2079), + [sym__str_back_ticks] = ACTIONS(2079), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2079), + [sym__entry_separator] = ACTIONS(2081), + [anon_sym_PLUS] = ACTIONS(2079), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2081), }, - [438] = { - [sym_cell_path] = STATE(692), - [sym_path] = STATE(578), - [sym_comment] = STATE(438), - [aux_sym_cell_path_repeat1] = STATE(459), - [anon_sym_export] = ACTIONS(1892), - [anon_sym_alias] = ACTIONS(1892), - [anon_sym_let] = ACTIONS(1892), - [anon_sym_let_DASHenv] = ACTIONS(1892), - [anon_sym_mut] = ACTIONS(1892), - [anon_sym_const] = ACTIONS(1892), - [aux_sym_cmd_identifier_token1] = ACTIONS(1892), - [aux_sym_cmd_identifier_token2] = ACTIONS(1892), - [aux_sym_cmd_identifier_token3] = ACTIONS(1892), - [aux_sym_cmd_identifier_token4] = ACTIONS(1892), - [aux_sym_cmd_identifier_token5] = ACTIONS(1892), - [aux_sym_cmd_identifier_token6] = ACTIONS(1892), - [aux_sym_cmd_identifier_token7] = ACTIONS(1892), - [aux_sym_cmd_identifier_token8] = ACTIONS(1892), - [aux_sym_cmd_identifier_token9] = ACTIONS(1892), - [aux_sym_cmd_identifier_token10] = ACTIONS(1892), - [aux_sym_cmd_identifier_token11] = ACTIONS(1892), - [aux_sym_cmd_identifier_token12] = ACTIONS(1892), - [aux_sym_cmd_identifier_token13] = ACTIONS(1892), - [aux_sym_cmd_identifier_token14] = ACTIONS(1892), - [aux_sym_cmd_identifier_token15] = ACTIONS(1892), - [aux_sym_cmd_identifier_token16] = ACTIONS(1892), - [aux_sym_cmd_identifier_token17] = ACTIONS(1892), - [aux_sym_cmd_identifier_token18] = ACTIONS(1892), - [aux_sym_cmd_identifier_token19] = ACTIONS(1892), - [aux_sym_cmd_identifier_token20] = ACTIONS(1892), - [aux_sym_cmd_identifier_token21] = ACTIONS(1892), - [aux_sym_cmd_identifier_token22] = ACTIONS(1892), - [aux_sym_cmd_identifier_token23] = ACTIONS(1892), - [aux_sym_cmd_identifier_token24] = ACTIONS(1892), - [aux_sym_cmd_identifier_token25] = ACTIONS(1892), - [aux_sym_cmd_identifier_token26] = ACTIONS(1892), - [aux_sym_cmd_identifier_token27] = ACTIONS(1892), - [aux_sym_cmd_identifier_token28] = ACTIONS(1892), - [aux_sym_cmd_identifier_token29] = ACTIONS(1892), - [aux_sym_cmd_identifier_token30] = ACTIONS(1892), - [aux_sym_cmd_identifier_token31] = ACTIONS(1892), - [aux_sym_cmd_identifier_token32] = ACTIONS(1892), - [aux_sym_cmd_identifier_token33] = ACTIONS(1892), - [aux_sym_cmd_identifier_token34] = ACTIONS(1892), - [aux_sym_cmd_identifier_token35] = ACTIONS(1892), - [aux_sym_cmd_identifier_token36] = ACTIONS(1892), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1894), - [aux_sym_cmd_identifier_token38] = ACTIONS(1892), - [aux_sym_cmd_identifier_token39] = ACTIONS(1894), - [aux_sym_cmd_identifier_token40] = ACTIONS(1894), - [anon_sym_def] = ACTIONS(1892), - [anon_sym_export_DASHenv] = ACTIONS(1892), - [anon_sym_extern] = ACTIONS(1892), - [anon_sym_module] = ACTIONS(1892), - [anon_sym_use] = ACTIONS(1892), - [anon_sym_LPAREN] = ACTIONS(1894), - [anon_sym_DOLLAR] = ACTIONS(1894), - [anon_sym_error] = ACTIONS(1892), - [anon_sym_list] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1892), - [anon_sym_break] = ACTIONS(1892), - [anon_sym_continue] = ACTIONS(1892), - [anon_sym_for] = ACTIONS(1892), - [anon_sym_in] = ACTIONS(1892), - [anon_sym_loop] = ACTIONS(1892), - [anon_sym_make] = ACTIONS(1892), - [anon_sym_while] = ACTIONS(1892), - [anon_sym_do] = ACTIONS(1892), - [anon_sym_if] = ACTIONS(1892), - [anon_sym_else] = ACTIONS(1892), - [anon_sym_match] = ACTIONS(1892), - [anon_sym_RBRACE] = ACTIONS(1894), - [anon_sym_try] = ACTIONS(1892), - [anon_sym_catch] = ACTIONS(1892), - [anon_sym_return] = ACTIONS(1892), - [anon_sym_source] = ACTIONS(1892), - [anon_sym_source_DASHenv] = ACTIONS(1892), - [anon_sym_register] = ACTIONS(1892), - [anon_sym_hide] = ACTIONS(1892), - [anon_sym_hide_DASHenv] = ACTIONS(1892), - [anon_sym_overlay] = ACTIONS(1892), - [anon_sym_new] = ACTIONS(1892), - [anon_sym_as] = ACTIONS(1892), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1894), - [anon_sym_DOT] = ACTIONS(1989), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1894), - [aux_sym__val_number_decimal_token1] = ACTIONS(1892), - [aux_sym__val_number_decimal_token2] = ACTIONS(1894), - [aux_sym__val_number_decimal_token3] = ACTIONS(1894), - [aux_sym__val_number_decimal_token4] = ACTIONS(1894), - [aux_sym__val_number_token1] = ACTIONS(1894), - [aux_sym__val_number_token2] = ACTIONS(1894), - [aux_sym__val_number_token3] = ACTIONS(1894), - [anon_sym_DQUOTE] = ACTIONS(1894), - [sym__str_single_quotes] = ACTIONS(1894), - [sym__str_back_ticks] = ACTIONS(1894), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1892), - [anon_sym_POUND] = ACTIONS(247), + [382] = { + [sym_cell_path] = STATE(586), + [sym_path] = STATE(518), + [sym_comment] = STATE(382), + [aux_sym_cell_path_repeat1] = STATE(411), + [anon_sym_export] = ACTIONS(2083), + [anon_sym_alias] = ACTIONS(2083), + [anon_sym_let] = ACTIONS(2083), + [anon_sym_let_DASHenv] = ACTIONS(2083), + [anon_sym_mut] = ACTIONS(2083), + [anon_sym_const] = ACTIONS(2083), + [aux_sym_cmd_identifier_token1] = ACTIONS(2083), + [aux_sym_cmd_identifier_token2] = ACTIONS(2083), + [aux_sym_cmd_identifier_token3] = ACTIONS(2083), + [aux_sym_cmd_identifier_token4] = ACTIONS(2083), + [aux_sym_cmd_identifier_token5] = ACTIONS(2083), + [aux_sym_cmd_identifier_token6] = ACTIONS(2083), + [aux_sym_cmd_identifier_token7] = ACTIONS(2083), + [aux_sym_cmd_identifier_token8] = ACTIONS(2083), + [aux_sym_cmd_identifier_token9] = ACTIONS(2083), + [aux_sym_cmd_identifier_token10] = ACTIONS(2083), + [aux_sym_cmd_identifier_token11] = ACTIONS(2083), + [aux_sym_cmd_identifier_token12] = ACTIONS(2083), + [aux_sym_cmd_identifier_token13] = ACTIONS(2083), + [aux_sym_cmd_identifier_token14] = ACTIONS(2083), + [aux_sym_cmd_identifier_token15] = ACTIONS(2083), + [aux_sym_cmd_identifier_token16] = ACTIONS(2083), + [aux_sym_cmd_identifier_token17] = ACTIONS(2083), + [aux_sym_cmd_identifier_token18] = ACTIONS(2083), + [aux_sym_cmd_identifier_token19] = ACTIONS(2083), + [aux_sym_cmd_identifier_token20] = ACTIONS(2083), + [aux_sym_cmd_identifier_token21] = ACTIONS(2083), + [aux_sym_cmd_identifier_token22] = ACTIONS(2083), + [aux_sym_cmd_identifier_token23] = ACTIONS(2083), + [aux_sym_cmd_identifier_token24] = ACTIONS(2083), + [aux_sym_cmd_identifier_token25] = ACTIONS(2083), + [aux_sym_cmd_identifier_token26] = ACTIONS(2083), + [aux_sym_cmd_identifier_token27] = ACTIONS(2083), + [aux_sym_cmd_identifier_token28] = ACTIONS(2083), + [aux_sym_cmd_identifier_token29] = ACTIONS(2083), + [aux_sym_cmd_identifier_token30] = ACTIONS(2083), + [aux_sym_cmd_identifier_token31] = ACTIONS(2083), + [aux_sym_cmd_identifier_token32] = ACTIONS(2083), + [aux_sym_cmd_identifier_token33] = ACTIONS(2083), + [aux_sym_cmd_identifier_token34] = ACTIONS(2083), + [aux_sym_cmd_identifier_token35] = ACTIONS(2083), + [aux_sym_cmd_identifier_token36] = ACTIONS(2083), + [anon_sym_true] = ACTIONS(2083), + [anon_sym_false] = ACTIONS(2083), + [anon_sym_null] = ACTIONS(2083), + [aux_sym_cmd_identifier_token38] = ACTIONS(2083), + [aux_sym_cmd_identifier_token39] = ACTIONS(2083), + [aux_sym_cmd_identifier_token40] = ACTIONS(2083), + [anon_sym_def] = ACTIONS(2083), + [anon_sym_export_DASHenv] = ACTIONS(2083), + [anon_sym_extern] = ACTIONS(2083), + [anon_sym_module] = ACTIONS(2083), + [anon_sym_use] = ACTIONS(2083), + [anon_sym_LPAREN] = ACTIONS(2083), + [anon_sym_DOLLAR] = ACTIONS(2083), + [anon_sym_error] = ACTIONS(2083), + [anon_sym_list] = ACTIONS(2083), + [anon_sym_DASH] = ACTIONS(2083), + [anon_sym_break] = ACTIONS(2083), + [anon_sym_continue] = ACTIONS(2083), + [anon_sym_for] = ACTIONS(2083), + [anon_sym_in] = ACTIONS(2083), + [anon_sym_loop] = ACTIONS(2083), + [anon_sym_make] = ACTIONS(2083), + [anon_sym_while] = ACTIONS(2083), + [anon_sym_do] = ACTIONS(2083), + [anon_sym_if] = ACTIONS(2083), + [anon_sym_else] = ACTIONS(2083), + [anon_sym_match] = ACTIONS(2083), + [anon_sym_RBRACE] = ACTIONS(2083), + [anon_sym_try] = ACTIONS(2083), + [anon_sym_catch] = ACTIONS(2083), + [anon_sym_return] = ACTIONS(2083), + [anon_sym_source] = ACTIONS(2083), + [anon_sym_source_DASHenv] = ACTIONS(2083), + [anon_sym_register] = ACTIONS(2083), + [anon_sym_hide] = ACTIONS(2083), + [anon_sym_hide_DASHenv] = ACTIONS(2083), + [anon_sym_overlay] = ACTIONS(2083), + [anon_sym_new] = ACTIONS(2083), + [anon_sym_as] = ACTIONS(2083), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2083), + [anon_sym_DOT] = ACTIONS(1856), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2083), + [aux_sym__val_number_decimal_token1] = ACTIONS(2083), + [aux_sym__val_number_decimal_token2] = ACTIONS(2083), + [aux_sym__val_number_decimal_token3] = ACTIONS(2083), + [aux_sym__val_number_decimal_token4] = ACTIONS(2083), + [aux_sym__val_number_token1] = ACTIONS(2083), + [aux_sym__val_number_token2] = ACTIONS(2083), + [aux_sym__val_number_token3] = ACTIONS(2083), + [anon_sym_DQUOTE] = ACTIONS(2083), + [sym__str_single_quotes] = ACTIONS(2083), + [sym__str_back_ticks] = ACTIONS(2083), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2083), + [sym__entry_separator] = ACTIONS(2085), + [anon_sym_PLUS] = ACTIONS(2083), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2085), }, - [439] = { - [sym_cell_path] = STATE(693), - [sym_path] = STATE(578), - [sym_comment] = STATE(439), - [aux_sym_cell_path_repeat1] = STATE(459), - [anon_sym_export] = ACTIONS(1896), - [anon_sym_alias] = ACTIONS(1896), - [anon_sym_let] = ACTIONS(1896), - [anon_sym_let_DASHenv] = ACTIONS(1896), - [anon_sym_mut] = ACTIONS(1896), - [anon_sym_const] = ACTIONS(1896), - [aux_sym_cmd_identifier_token1] = ACTIONS(1896), - [aux_sym_cmd_identifier_token2] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1896), - [aux_sym_cmd_identifier_token4] = ACTIONS(1896), - [aux_sym_cmd_identifier_token5] = ACTIONS(1896), - [aux_sym_cmd_identifier_token6] = ACTIONS(1896), - [aux_sym_cmd_identifier_token7] = ACTIONS(1896), - [aux_sym_cmd_identifier_token8] = ACTIONS(1896), - [aux_sym_cmd_identifier_token9] = ACTIONS(1896), - [aux_sym_cmd_identifier_token10] = ACTIONS(1896), - [aux_sym_cmd_identifier_token11] = ACTIONS(1896), - [aux_sym_cmd_identifier_token12] = ACTIONS(1896), - [aux_sym_cmd_identifier_token13] = ACTIONS(1896), - [aux_sym_cmd_identifier_token14] = ACTIONS(1896), - [aux_sym_cmd_identifier_token15] = ACTIONS(1896), - [aux_sym_cmd_identifier_token16] = ACTIONS(1896), - [aux_sym_cmd_identifier_token17] = ACTIONS(1896), - [aux_sym_cmd_identifier_token18] = ACTIONS(1896), - [aux_sym_cmd_identifier_token19] = ACTIONS(1896), - [aux_sym_cmd_identifier_token20] = ACTIONS(1896), - [aux_sym_cmd_identifier_token21] = ACTIONS(1896), - [aux_sym_cmd_identifier_token22] = ACTIONS(1896), - [aux_sym_cmd_identifier_token23] = ACTIONS(1896), - [aux_sym_cmd_identifier_token24] = ACTIONS(1896), - [aux_sym_cmd_identifier_token25] = ACTIONS(1896), - [aux_sym_cmd_identifier_token26] = ACTIONS(1896), - [aux_sym_cmd_identifier_token27] = ACTIONS(1896), - [aux_sym_cmd_identifier_token28] = ACTIONS(1896), - [aux_sym_cmd_identifier_token29] = ACTIONS(1896), - [aux_sym_cmd_identifier_token30] = ACTIONS(1896), - [aux_sym_cmd_identifier_token31] = ACTIONS(1896), - [aux_sym_cmd_identifier_token32] = ACTIONS(1896), - [aux_sym_cmd_identifier_token33] = ACTIONS(1896), - [aux_sym_cmd_identifier_token34] = ACTIONS(1896), - [aux_sym_cmd_identifier_token35] = ACTIONS(1896), - [aux_sym_cmd_identifier_token36] = ACTIONS(1896), - [anon_sym_true] = ACTIONS(1898), - [anon_sym_false] = ACTIONS(1898), - [anon_sym_null] = ACTIONS(1898), - [aux_sym_cmd_identifier_token38] = ACTIONS(1896), - [aux_sym_cmd_identifier_token39] = ACTIONS(1898), - [aux_sym_cmd_identifier_token40] = ACTIONS(1898), - [anon_sym_def] = ACTIONS(1896), - [anon_sym_export_DASHenv] = ACTIONS(1896), - [anon_sym_extern] = ACTIONS(1896), - [anon_sym_module] = ACTIONS(1896), - [anon_sym_use] = ACTIONS(1896), - [anon_sym_LPAREN] = ACTIONS(1898), - [anon_sym_DOLLAR] = ACTIONS(1898), - [anon_sym_error] = ACTIONS(1896), - [anon_sym_list] = ACTIONS(1896), - [anon_sym_DASH] = ACTIONS(1896), - [anon_sym_break] = ACTIONS(1896), - [anon_sym_continue] = ACTIONS(1896), - [anon_sym_for] = ACTIONS(1896), - [anon_sym_in] = ACTIONS(1896), - [anon_sym_loop] = ACTIONS(1896), - [anon_sym_make] = ACTIONS(1896), - [anon_sym_while] = ACTIONS(1896), - [anon_sym_do] = ACTIONS(1896), - [anon_sym_if] = ACTIONS(1896), - [anon_sym_else] = ACTIONS(1896), - [anon_sym_match] = ACTIONS(1896), - [anon_sym_RBRACE] = ACTIONS(1898), - [anon_sym_try] = ACTIONS(1896), - [anon_sym_catch] = ACTIONS(1896), - [anon_sym_return] = ACTIONS(1896), - [anon_sym_source] = ACTIONS(1896), - [anon_sym_source_DASHenv] = ACTIONS(1896), - [anon_sym_register] = ACTIONS(1896), - [anon_sym_hide] = ACTIONS(1896), - [anon_sym_hide_DASHenv] = ACTIONS(1896), - [anon_sym_overlay] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1896), - [anon_sym_as] = ACTIONS(1896), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1898), - [anon_sym_DOT] = ACTIONS(1989), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1898), - [aux_sym__val_number_decimal_token1] = ACTIONS(1896), - [aux_sym__val_number_decimal_token2] = ACTIONS(1898), - [aux_sym__val_number_decimal_token3] = ACTIONS(1898), - [aux_sym__val_number_decimal_token4] = ACTIONS(1898), - [aux_sym__val_number_token1] = ACTIONS(1898), - [aux_sym__val_number_token2] = ACTIONS(1898), - [aux_sym__val_number_token3] = ACTIONS(1898), - [anon_sym_DQUOTE] = ACTIONS(1898), - [sym__str_single_quotes] = ACTIONS(1898), - [sym__str_back_ticks] = ACTIONS(1898), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1898), - [anon_sym_PLUS] = ACTIONS(1896), - [anon_sym_POUND] = ACTIONS(247), + [383] = { + [sym_cell_path] = STATE(595), + [sym_path] = STATE(518), + [sym_comment] = STATE(383), + [aux_sym_cell_path_repeat1] = STATE(411), + [anon_sym_export] = ACTIONS(2087), + [anon_sym_alias] = ACTIONS(2087), + [anon_sym_let] = ACTIONS(2087), + [anon_sym_let_DASHenv] = ACTIONS(2087), + [anon_sym_mut] = ACTIONS(2087), + [anon_sym_const] = ACTIONS(2087), + [aux_sym_cmd_identifier_token1] = ACTIONS(2087), + [aux_sym_cmd_identifier_token2] = ACTIONS(2087), + [aux_sym_cmd_identifier_token3] = ACTIONS(2087), + [aux_sym_cmd_identifier_token4] = ACTIONS(2087), + [aux_sym_cmd_identifier_token5] = ACTIONS(2087), + [aux_sym_cmd_identifier_token6] = ACTIONS(2087), + [aux_sym_cmd_identifier_token7] = ACTIONS(2087), + [aux_sym_cmd_identifier_token8] = ACTIONS(2087), + [aux_sym_cmd_identifier_token9] = ACTIONS(2087), + [aux_sym_cmd_identifier_token10] = ACTIONS(2087), + [aux_sym_cmd_identifier_token11] = ACTIONS(2087), + [aux_sym_cmd_identifier_token12] = ACTIONS(2087), + [aux_sym_cmd_identifier_token13] = ACTIONS(2087), + [aux_sym_cmd_identifier_token14] = ACTIONS(2087), + [aux_sym_cmd_identifier_token15] = ACTIONS(2087), + [aux_sym_cmd_identifier_token16] = ACTIONS(2087), + [aux_sym_cmd_identifier_token17] = ACTIONS(2087), + [aux_sym_cmd_identifier_token18] = ACTIONS(2087), + [aux_sym_cmd_identifier_token19] = ACTIONS(2087), + [aux_sym_cmd_identifier_token20] = ACTIONS(2087), + [aux_sym_cmd_identifier_token21] = ACTIONS(2087), + [aux_sym_cmd_identifier_token22] = ACTIONS(2087), + [aux_sym_cmd_identifier_token23] = ACTIONS(2087), + [aux_sym_cmd_identifier_token24] = ACTIONS(2087), + [aux_sym_cmd_identifier_token25] = ACTIONS(2087), + [aux_sym_cmd_identifier_token26] = ACTIONS(2087), + [aux_sym_cmd_identifier_token27] = ACTIONS(2087), + [aux_sym_cmd_identifier_token28] = ACTIONS(2087), + [aux_sym_cmd_identifier_token29] = ACTIONS(2087), + [aux_sym_cmd_identifier_token30] = ACTIONS(2087), + [aux_sym_cmd_identifier_token31] = ACTIONS(2087), + [aux_sym_cmd_identifier_token32] = ACTIONS(2087), + [aux_sym_cmd_identifier_token33] = ACTIONS(2087), + [aux_sym_cmd_identifier_token34] = ACTIONS(2087), + [aux_sym_cmd_identifier_token35] = ACTIONS(2087), + [aux_sym_cmd_identifier_token36] = ACTIONS(2087), + [anon_sym_true] = ACTIONS(2087), + [anon_sym_false] = ACTIONS(2087), + [anon_sym_null] = ACTIONS(2087), + [aux_sym_cmd_identifier_token38] = ACTIONS(2087), + [aux_sym_cmd_identifier_token39] = ACTIONS(2087), + [aux_sym_cmd_identifier_token40] = ACTIONS(2087), + [anon_sym_def] = ACTIONS(2087), + [anon_sym_export_DASHenv] = ACTIONS(2087), + [anon_sym_extern] = ACTIONS(2087), + [anon_sym_module] = ACTIONS(2087), + [anon_sym_use] = ACTIONS(2087), + [anon_sym_LPAREN] = ACTIONS(2087), + [anon_sym_DOLLAR] = ACTIONS(2087), + [anon_sym_error] = ACTIONS(2087), + [anon_sym_list] = ACTIONS(2087), + [anon_sym_DASH] = ACTIONS(2087), + [anon_sym_break] = ACTIONS(2087), + [anon_sym_continue] = ACTIONS(2087), + [anon_sym_for] = ACTIONS(2087), + [anon_sym_in] = ACTIONS(2087), + [anon_sym_loop] = ACTIONS(2087), + [anon_sym_make] = ACTIONS(2087), + [anon_sym_while] = ACTIONS(2087), + [anon_sym_do] = ACTIONS(2087), + [anon_sym_if] = ACTIONS(2087), + [anon_sym_else] = ACTIONS(2087), + [anon_sym_match] = ACTIONS(2087), + [anon_sym_RBRACE] = ACTIONS(2087), + [anon_sym_try] = ACTIONS(2087), + [anon_sym_catch] = ACTIONS(2087), + [anon_sym_return] = ACTIONS(2087), + [anon_sym_source] = ACTIONS(2087), + [anon_sym_source_DASHenv] = ACTIONS(2087), + [anon_sym_register] = ACTIONS(2087), + [anon_sym_hide] = ACTIONS(2087), + [anon_sym_hide_DASHenv] = ACTIONS(2087), + [anon_sym_overlay] = ACTIONS(2087), + [anon_sym_new] = ACTIONS(2087), + [anon_sym_as] = ACTIONS(2087), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2087), + [anon_sym_DOT] = ACTIONS(1856), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2087), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2087), + [aux_sym__val_number_decimal_token3] = ACTIONS(2087), + [aux_sym__val_number_decimal_token4] = ACTIONS(2087), + [aux_sym__val_number_token1] = ACTIONS(2087), + [aux_sym__val_number_token2] = ACTIONS(2087), + [aux_sym__val_number_token3] = ACTIONS(2087), + [anon_sym_DQUOTE] = ACTIONS(2087), + [sym__str_single_quotes] = ACTIONS(2087), + [sym__str_back_ticks] = ACTIONS(2087), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2087), + [sym__entry_separator] = ACTIONS(2089), + [anon_sym_PLUS] = ACTIONS(2087), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2089), }, - [440] = { - [sym_cell_path] = STATE(694), - [sym_path] = STATE(578), - [sym_comment] = STATE(440), - [aux_sym_cell_path_repeat1] = STATE(459), - [anon_sym_export] = ACTIONS(1900), - [anon_sym_alias] = ACTIONS(1900), - [anon_sym_let] = ACTIONS(1900), - [anon_sym_let_DASHenv] = ACTIONS(1900), - [anon_sym_mut] = ACTIONS(1900), - [anon_sym_const] = ACTIONS(1900), - [aux_sym_cmd_identifier_token1] = ACTIONS(1900), - [aux_sym_cmd_identifier_token2] = ACTIONS(1900), - [aux_sym_cmd_identifier_token3] = ACTIONS(1900), - [aux_sym_cmd_identifier_token4] = ACTIONS(1900), - [aux_sym_cmd_identifier_token5] = ACTIONS(1900), - [aux_sym_cmd_identifier_token6] = ACTIONS(1900), - [aux_sym_cmd_identifier_token7] = ACTIONS(1900), - [aux_sym_cmd_identifier_token8] = ACTIONS(1900), - [aux_sym_cmd_identifier_token9] = ACTIONS(1900), - [aux_sym_cmd_identifier_token10] = ACTIONS(1900), - [aux_sym_cmd_identifier_token11] = ACTIONS(1900), - [aux_sym_cmd_identifier_token12] = ACTIONS(1900), - [aux_sym_cmd_identifier_token13] = ACTIONS(1900), - [aux_sym_cmd_identifier_token14] = ACTIONS(1900), - [aux_sym_cmd_identifier_token15] = ACTIONS(1900), - [aux_sym_cmd_identifier_token16] = ACTIONS(1900), - [aux_sym_cmd_identifier_token17] = ACTIONS(1900), - [aux_sym_cmd_identifier_token18] = ACTIONS(1900), - [aux_sym_cmd_identifier_token19] = ACTIONS(1900), - [aux_sym_cmd_identifier_token20] = ACTIONS(1900), - [aux_sym_cmd_identifier_token21] = ACTIONS(1900), - [aux_sym_cmd_identifier_token22] = ACTIONS(1900), - [aux_sym_cmd_identifier_token23] = ACTIONS(1900), - [aux_sym_cmd_identifier_token24] = ACTIONS(1900), - [aux_sym_cmd_identifier_token25] = ACTIONS(1900), - [aux_sym_cmd_identifier_token26] = ACTIONS(1900), - [aux_sym_cmd_identifier_token27] = ACTIONS(1900), - [aux_sym_cmd_identifier_token28] = ACTIONS(1900), - [aux_sym_cmd_identifier_token29] = ACTIONS(1900), - [aux_sym_cmd_identifier_token30] = ACTIONS(1900), - [aux_sym_cmd_identifier_token31] = ACTIONS(1900), - [aux_sym_cmd_identifier_token32] = ACTIONS(1900), - [aux_sym_cmd_identifier_token33] = ACTIONS(1900), - [aux_sym_cmd_identifier_token34] = ACTIONS(1900), - [aux_sym_cmd_identifier_token35] = ACTIONS(1900), - [aux_sym_cmd_identifier_token36] = ACTIONS(1900), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1902), - [anon_sym_null] = ACTIONS(1902), - [aux_sym_cmd_identifier_token38] = ACTIONS(1900), - [aux_sym_cmd_identifier_token39] = ACTIONS(1902), - [aux_sym_cmd_identifier_token40] = ACTIONS(1902), - [anon_sym_def] = ACTIONS(1900), - [anon_sym_export_DASHenv] = ACTIONS(1900), - [anon_sym_extern] = ACTIONS(1900), - [anon_sym_module] = ACTIONS(1900), - [anon_sym_use] = ACTIONS(1900), - [anon_sym_LPAREN] = ACTIONS(1902), - [anon_sym_DOLLAR] = ACTIONS(1902), - [anon_sym_error] = ACTIONS(1900), - [anon_sym_list] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_break] = ACTIONS(1900), - [anon_sym_continue] = ACTIONS(1900), - [anon_sym_for] = ACTIONS(1900), - [anon_sym_in] = ACTIONS(1900), - [anon_sym_loop] = ACTIONS(1900), - [anon_sym_make] = ACTIONS(1900), - [anon_sym_while] = ACTIONS(1900), - [anon_sym_do] = ACTIONS(1900), - [anon_sym_if] = ACTIONS(1900), - [anon_sym_else] = ACTIONS(1900), - [anon_sym_match] = ACTIONS(1900), - [anon_sym_RBRACE] = ACTIONS(1902), - [anon_sym_try] = ACTIONS(1900), - [anon_sym_catch] = ACTIONS(1900), - [anon_sym_return] = ACTIONS(1900), - [anon_sym_source] = ACTIONS(1900), - [anon_sym_source_DASHenv] = ACTIONS(1900), - [anon_sym_register] = ACTIONS(1900), - [anon_sym_hide] = ACTIONS(1900), - [anon_sym_hide_DASHenv] = ACTIONS(1900), - [anon_sym_overlay] = ACTIONS(1900), - [anon_sym_new] = ACTIONS(1900), - [anon_sym_as] = ACTIONS(1900), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1902), - [anon_sym_DOT] = ACTIONS(1989), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1902), - [aux_sym__val_number_decimal_token1] = ACTIONS(1900), - [aux_sym__val_number_decimal_token2] = ACTIONS(1902), - [aux_sym__val_number_decimal_token3] = ACTIONS(1902), - [aux_sym__val_number_decimal_token4] = ACTIONS(1902), - [aux_sym__val_number_token1] = ACTIONS(1902), - [aux_sym__val_number_token2] = ACTIONS(1902), - [aux_sym__val_number_token3] = ACTIONS(1902), - [anon_sym_DQUOTE] = ACTIONS(1902), - [sym__str_single_quotes] = ACTIONS(1902), - [sym__str_back_ticks] = ACTIONS(1902), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1902), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_POUND] = ACTIONS(247), + [384] = { + [sym_comment] = STATE(384), + [anon_sym_export] = ACTIONS(1788), + [anon_sym_alias] = ACTIONS(1788), + [anon_sym_let] = ACTIONS(1788), + [anon_sym_let_DASHenv] = ACTIONS(1788), + [anon_sym_mut] = ACTIONS(1788), + [anon_sym_const] = ACTIONS(1788), + [aux_sym_cmd_identifier_token1] = ACTIONS(1788), + [aux_sym_cmd_identifier_token2] = ACTIONS(1788), + [aux_sym_cmd_identifier_token3] = ACTIONS(1788), + [aux_sym_cmd_identifier_token4] = ACTIONS(1788), + [aux_sym_cmd_identifier_token5] = ACTIONS(1788), + [aux_sym_cmd_identifier_token6] = ACTIONS(1788), + [aux_sym_cmd_identifier_token7] = ACTIONS(1788), + [aux_sym_cmd_identifier_token8] = ACTIONS(1788), + [aux_sym_cmd_identifier_token9] = ACTIONS(1788), + [aux_sym_cmd_identifier_token10] = ACTIONS(1788), + [aux_sym_cmd_identifier_token11] = ACTIONS(1788), + [aux_sym_cmd_identifier_token12] = ACTIONS(1788), + [aux_sym_cmd_identifier_token13] = ACTIONS(1788), + [aux_sym_cmd_identifier_token14] = ACTIONS(1788), + [aux_sym_cmd_identifier_token15] = ACTIONS(1788), + [aux_sym_cmd_identifier_token16] = ACTIONS(1788), + [aux_sym_cmd_identifier_token17] = ACTIONS(1788), + [aux_sym_cmd_identifier_token18] = ACTIONS(1788), + [aux_sym_cmd_identifier_token19] = ACTIONS(1788), + [aux_sym_cmd_identifier_token20] = ACTIONS(1788), + [aux_sym_cmd_identifier_token21] = ACTIONS(1788), + [aux_sym_cmd_identifier_token22] = ACTIONS(1788), + [aux_sym_cmd_identifier_token23] = ACTIONS(1788), + [aux_sym_cmd_identifier_token24] = ACTIONS(1788), + [aux_sym_cmd_identifier_token25] = ACTIONS(1788), + [aux_sym_cmd_identifier_token26] = ACTIONS(1788), + [aux_sym_cmd_identifier_token27] = ACTIONS(1788), + [aux_sym_cmd_identifier_token28] = ACTIONS(1788), + [aux_sym_cmd_identifier_token29] = ACTIONS(1788), + [aux_sym_cmd_identifier_token30] = ACTIONS(1788), + [aux_sym_cmd_identifier_token31] = ACTIONS(1788), + [aux_sym_cmd_identifier_token32] = ACTIONS(1788), + [aux_sym_cmd_identifier_token33] = ACTIONS(1788), + [aux_sym_cmd_identifier_token34] = ACTIONS(1788), + [aux_sym_cmd_identifier_token35] = ACTIONS(1788), + [aux_sym_cmd_identifier_token36] = ACTIONS(1788), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_null] = ACTIONS(1796), + [aux_sym_cmd_identifier_token38] = ACTIONS(1788), + [aux_sym_cmd_identifier_token39] = ACTIONS(1796), + [aux_sym_cmd_identifier_token40] = ACTIONS(1796), + [anon_sym_def] = ACTIONS(1788), + [anon_sym_export_DASHenv] = ACTIONS(1788), + [anon_sym_extern] = ACTIONS(1788), + [anon_sym_module] = ACTIONS(1788), + [anon_sym_use] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1788), + [anon_sym_DOLLAR] = ACTIONS(1796), + [anon_sym_error] = ACTIONS(1788), + [anon_sym_list] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_break] = ACTIONS(1788), + [anon_sym_continue] = ACTIONS(1788), + [anon_sym_for] = ACTIONS(1788), + [anon_sym_in] = ACTIONS(1788), + [anon_sym_loop] = ACTIONS(1788), + [anon_sym_make] = ACTIONS(1788), + [anon_sym_while] = ACTIONS(1788), + [anon_sym_do] = ACTIONS(1788), + [anon_sym_if] = ACTIONS(1788), + [anon_sym_else] = ACTIONS(1788), + [anon_sym_match] = ACTIONS(1788), + [anon_sym_RBRACE] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1788), + [anon_sym_catch] = ACTIONS(1788), + [anon_sym_return] = ACTIONS(1788), + [anon_sym_source] = ACTIONS(1788), + [anon_sym_source_DASHenv] = ACTIONS(1788), + [anon_sym_register] = ACTIONS(1788), + [anon_sym_hide] = ACTIONS(1788), + [anon_sym_hide_DASHenv] = ACTIONS(1788), + [anon_sym_overlay] = ACTIONS(1788), + [anon_sym_new] = ACTIONS(1788), + [anon_sym_as] = ACTIONS(1788), + [anon_sym_LPAREN2] = ACTIONS(1790), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1796), + [anon_sym_DOT_DOT2] = ACTIONS(2091), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2093), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2093), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1796), + [aux_sym__val_number_decimal_token1] = ACTIONS(1788), + [aux_sym__val_number_decimal_token2] = ACTIONS(1796), + [aux_sym__val_number_decimal_token3] = ACTIONS(1796), + [aux_sym__val_number_decimal_token4] = ACTIONS(1796), + [aux_sym__val_number_token1] = ACTIONS(1796), + [aux_sym__val_number_token2] = ACTIONS(1796), + [aux_sym__val_number_token3] = ACTIONS(1796), + [anon_sym_DQUOTE] = ACTIONS(1796), + [sym__str_single_quotes] = ACTIONS(1796), + [sym__str_back_ticks] = ACTIONS(1796), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1788), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1526), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1796), }, - [441] = { - [sym_cell_path] = STATE(695), - [sym_path] = STATE(578), - [sym_comment] = STATE(441), - [aux_sym_cell_path_repeat1] = STATE(459), - [anon_sym_export] = ACTIONS(1904), - [anon_sym_alias] = ACTIONS(1904), - [anon_sym_let] = ACTIONS(1904), - [anon_sym_let_DASHenv] = ACTIONS(1904), - [anon_sym_mut] = ACTIONS(1904), - [anon_sym_const] = ACTIONS(1904), - [aux_sym_cmd_identifier_token1] = ACTIONS(1904), - [aux_sym_cmd_identifier_token2] = ACTIONS(1904), - [aux_sym_cmd_identifier_token3] = ACTIONS(1904), - [aux_sym_cmd_identifier_token4] = ACTIONS(1904), - [aux_sym_cmd_identifier_token5] = ACTIONS(1904), - [aux_sym_cmd_identifier_token6] = ACTIONS(1904), - [aux_sym_cmd_identifier_token7] = ACTIONS(1904), - [aux_sym_cmd_identifier_token8] = ACTIONS(1904), - [aux_sym_cmd_identifier_token9] = ACTIONS(1904), - [aux_sym_cmd_identifier_token10] = ACTIONS(1904), - [aux_sym_cmd_identifier_token11] = ACTIONS(1904), - [aux_sym_cmd_identifier_token12] = ACTIONS(1904), - [aux_sym_cmd_identifier_token13] = ACTIONS(1904), - [aux_sym_cmd_identifier_token14] = ACTIONS(1904), - [aux_sym_cmd_identifier_token15] = ACTIONS(1904), - [aux_sym_cmd_identifier_token16] = ACTIONS(1904), - [aux_sym_cmd_identifier_token17] = ACTIONS(1904), - [aux_sym_cmd_identifier_token18] = ACTIONS(1904), - [aux_sym_cmd_identifier_token19] = ACTIONS(1904), - [aux_sym_cmd_identifier_token20] = ACTIONS(1904), - [aux_sym_cmd_identifier_token21] = ACTIONS(1904), - [aux_sym_cmd_identifier_token22] = ACTIONS(1904), - [aux_sym_cmd_identifier_token23] = ACTIONS(1904), - [aux_sym_cmd_identifier_token24] = ACTIONS(1904), - [aux_sym_cmd_identifier_token25] = ACTIONS(1904), - [aux_sym_cmd_identifier_token26] = ACTIONS(1904), - [aux_sym_cmd_identifier_token27] = ACTIONS(1904), - [aux_sym_cmd_identifier_token28] = ACTIONS(1904), - [aux_sym_cmd_identifier_token29] = ACTIONS(1904), - [aux_sym_cmd_identifier_token30] = ACTIONS(1904), - [aux_sym_cmd_identifier_token31] = ACTIONS(1904), - [aux_sym_cmd_identifier_token32] = ACTIONS(1904), - [aux_sym_cmd_identifier_token33] = ACTIONS(1904), - [aux_sym_cmd_identifier_token34] = ACTIONS(1904), - [aux_sym_cmd_identifier_token35] = ACTIONS(1904), - [aux_sym_cmd_identifier_token36] = ACTIONS(1904), - [anon_sym_true] = ACTIONS(1906), - [anon_sym_false] = ACTIONS(1906), - [anon_sym_null] = ACTIONS(1906), - [aux_sym_cmd_identifier_token38] = ACTIONS(1904), - [aux_sym_cmd_identifier_token39] = ACTIONS(1906), - [aux_sym_cmd_identifier_token40] = ACTIONS(1906), - [anon_sym_def] = ACTIONS(1904), - [anon_sym_export_DASHenv] = ACTIONS(1904), - [anon_sym_extern] = ACTIONS(1904), - [anon_sym_module] = ACTIONS(1904), - [anon_sym_use] = ACTIONS(1904), - [anon_sym_LPAREN] = ACTIONS(1906), - [anon_sym_DOLLAR] = ACTIONS(1906), - [anon_sym_error] = ACTIONS(1904), - [anon_sym_list] = ACTIONS(1904), - [anon_sym_DASH] = ACTIONS(1904), - [anon_sym_break] = ACTIONS(1904), - [anon_sym_continue] = ACTIONS(1904), - [anon_sym_for] = ACTIONS(1904), - [anon_sym_in] = ACTIONS(1904), - [anon_sym_loop] = ACTIONS(1904), - [anon_sym_make] = ACTIONS(1904), - [anon_sym_while] = ACTIONS(1904), - [anon_sym_do] = ACTIONS(1904), - [anon_sym_if] = ACTIONS(1904), - [anon_sym_else] = ACTIONS(1904), - [anon_sym_match] = ACTIONS(1904), - [anon_sym_RBRACE] = ACTIONS(1906), - [anon_sym_try] = ACTIONS(1904), - [anon_sym_catch] = ACTIONS(1904), - [anon_sym_return] = ACTIONS(1904), - [anon_sym_source] = ACTIONS(1904), - [anon_sym_source_DASHenv] = ACTIONS(1904), - [anon_sym_register] = ACTIONS(1904), - [anon_sym_hide] = ACTIONS(1904), - [anon_sym_hide_DASHenv] = ACTIONS(1904), - [anon_sym_overlay] = ACTIONS(1904), - [anon_sym_new] = ACTIONS(1904), - [anon_sym_as] = ACTIONS(1904), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1906), - [anon_sym_DOT] = ACTIONS(1989), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1906), - [aux_sym__val_number_decimal_token1] = ACTIONS(1904), - [aux_sym__val_number_decimal_token2] = ACTIONS(1906), - [aux_sym__val_number_decimal_token3] = ACTIONS(1906), - [aux_sym__val_number_decimal_token4] = ACTIONS(1906), - [aux_sym__val_number_token1] = ACTIONS(1906), - [aux_sym__val_number_token2] = ACTIONS(1906), - [aux_sym__val_number_token3] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1906), - [sym__str_single_quotes] = ACTIONS(1906), - [sym__str_back_ticks] = ACTIONS(1906), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1906), - [anon_sym_PLUS] = ACTIONS(1904), - [anon_sym_POUND] = ACTIONS(247), + [385] = { + [sym_cell_path] = STATE(607), + [sym_path] = STATE(518), + [sym_comment] = STATE(385), + [aux_sym_cell_path_repeat1] = STATE(411), + [anon_sym_export] = ACTIONS(2095), + [anon_sym_alias] = ACTIONS(2095), + [anon_sym_let] = ACTIONS(2095), + [anon_sym_let_DASHenv] = ACTIONS(2095), + [anon_sym_mut] = ACTIONS(2095), + [anon_sym_const] = ACTIONS(2095), + [aux_sym_cmd_identifier_token1] = ACTIONS(2095), + [aux_sym_cmd_identifier_token2] = ACTIONS(2095), + [aux_sym_cmd_identifier_token3] = ACTIONS(2095), + [aux_sym_cmd_identifier_token4] = ACTIONS(2095), + [aux_sym_cmd_identifier_token5] = ACTIONS(2095), + [aux_sym_cmd_identifier_token6] = ACTIONS(2095), + [aux_sym_cmd_identifier_token7] = ACTIONS(2095), + [aux_sym_cmd_identifier_token8] = ACTIONS(2095), + [aux_sym_cmd_identifier_token9] = ACTIONS(2095), + [aux_sym_cmd_identifier_token10] = ACTIONS(2095), + [aux_sym_cmd_identifier_token11] = ACTIONS(2095), + [aux_sym_cmd_identifier_token12] = ACTIONS(2095), + [aux_sym_cmd_identifier_token13] = ACTIONS(2095), + [aux_sym_cmd_identifier_token14] = ACTIONS(2095), + [aux_sym_cmd_identifier_token15] = ACTIONS(2095), + [aux_sym_cmd_identifier_token16] = ACTIONS(2095), + [aux_sym_cmd_identifier_token17] = ACTIONS(2095), + [aux_sym_cmd_identifier_token18] = ACTIONS(2095), + [aux_sym_cmd_identifier_token19] = ACTIONS(2095), + [aux_sym_cmd_identifier_token20] = ACTIONS(2095), + [aux_sym_cmd_identifier_token21] = ACTIONS(2095), + [aux_sym_cmd_identifier_token22] = ACTIONS(2095), + [aux_sym_cmd_identifier_token23] = ACTIONS(2095), + [aux_sym_cmd_identifier_token24] = ACTIONS(2095), + [aux_sym_cmd_identifier_token25] = ACTIONS(2095), + [aux_sym_cmd_identifier_token26] = ACTIONS(2095), + [aux_sym_cmd_identifier_token27] = ACTIONS(2095), + [aux_sym_cmd_identifier_token28] = ACTIONS(2095), + [aux_sym_cmd_identifier_token29] = ACTIONS(2095), + [aux_sym_cmd_identifier_token30] = ACTIONS(2095), + [aux_sym_cmd_identifier_token31] = ACTIONS(2095), + [aux_sym_cmd_identifier_token32] = ACTIONS(2095), + [aux_sym_cmd_identifier_token33] = ACTIONS(2095), + [aux_sym_cmd_identifier_token34] = ACTIONS(2095), + [aux_sym_cmd_identifier_token35] = ACTIONS(2095), + [aux_sym_cmd_identifier_token36] = ACTIONS(2095), + [anon_sym_true] = ACTIONS(2095), + [anon_sym_false] = ACTIONS(2095), + [anon_sym_null] = ACTIONS(2095), + [aux_sym_cmd_identifier_token38] = ACTIONS(2095), + [aux_sym_cmd_identifier_token39] = ACTIONS(2095), + [aux_sym_cmd_identifier_token40] = ACTIONS(2095), + [anon_sym_def] = ACTIONS(2095), + [anon_sym_export_DASHenv] = ACTIONS(2095), + [anon_sym_extern] = ACTIONS(2095), + [anon_sym_module] = ACTIONS(2095), + [anon_sym_use] = ACTIONS(2095), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_DOLLAR] = ACTIONS(2095), + [anon_sym_error] = ACTIONS(2095), + [anon_sym_list] = ACTIONS(2095), + [anon_sym_DASH] = ACTIONS(2095), + [anon_sym_break] = ACTIONS(2095), + [anon_sym_continue] = ACTIONS(2095), + [anon_sym_for] = ACTIONS(2095), + [anon_sym_in] = ACTIONS(2095), + [anon_sym_loop] = ACTIONS(2095), + [anon_sym_make] = ACTIONS(2095), + [anon_sym_while] = ACTIONS(2095), + [anon_sym_do] = ACTIONS(2095), + [anon_sym_if] = ACTIONS(2095), + [anon_sym_else] = ACTIONS(2095), + [anon_sym_match] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_try] = ACTIONS(2095), + [anon_sym_catch] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2095), + [anon_sym_source] = ACTIONS(2095), + [anon_sym_source_DASHenv] = ACTIONS(2095), + [anon_sym_register] = ACTIONS(2095), + [anon_sym_hide] = ACTIONS(2095), + [anon_sym_hide_DASHenv] = ACTIONS(2095), + [anon_sym_overlay] = ACTIONS(2095), + [anon_sym_new] = ACTIONS(2095), + [anon_sym_as] = ACTIONS(2095), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2095), + [anon_sym_DOT] = ACTIONS(1856), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2095), + [aux_sym__val_number_decimal_token1] = ACTIONS(2095), + [aux_sym__val_number_decimal_token2] = ACTIONS(2095), + [aux_sym__val_number_decimal_token3] = ACTIONS(2095), + [aux_sym__val_number_decimal_token4] = ACTIONS(2095), + [aux_sym__val_number_token1] = ACTIONS(2095), + [aux_sym__val_number_token2] = ACTIONS(2095), + [aux_sym__val_number_token3] = ACTIONS(2095), + [anon_sym_DQUOTE] = ACTIONS(2095), + [sym__str_single_quotes] = ACTIONS(2095), + [sym__str_back_ticks] = ACTIONS(2095), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2095), + [sym__entry_separator] = ACTIONS(2097), + [anon_sym_PLUS] = ACTIONS(2095), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2097), }, - [442] = { - [sym_comment] = STATE(442), - [anon_sym_export] = ACTIONS(1667), - [anon_sym_alias] = ACTIONS(1667), - [anon_sym_let] = ACTIONS(1667), - [anon_sym_let_DASHenv] = ACTIONS(1667), - [anon_sym_mut] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1667), - [aux_sym_cmd_identifier_token1] = ACTIONS(1667), - [aux_sym_cmd_identifier_token2] = ACTIONS(1667), - [aux_sym_cmd_identifier_token3] = ACTIONS(1667), - [aux_sym_cmd_identifier_token4] = ACTIONS(1667), - [aux_sym_cmd_identifier_token5] = ACTIONS(1667), - [aux_sym_cmd_identifier_token6] = ACTIONS(1667), - [aux_sym_cmd_identifier_token7] = ACTIONS(1667), - [aux_sym_cmd_identifier_token8] = ACTIONS(1667), - [aux_sym_cmd_identifier_token9] = ACTIONS(1667), - [aux_sym_cmd_identifier_token10] = ACTIONS(1667), - [aux_sym_cmd_identifier_token11] = ACTIONS(1667), - [aux_sym_cmd_identifier_token12] = ACTIONS(1667), - [aux_sym_cmd_identifier_token13] = ACTIONS(1667), - [aux_sym_cmd_identifier_token14] = ACTIONS(1667), - [aux_sym_cmd_identifier_token15] = ACTIONS(1667), - [aux_sym_cmd_identifier_token16] = ACTIONS(1667), - [aux_sym_cmd_identifier_token17] = ACTIONS(1667), - [aux_sym_cmd_identifier_token18] = ACTIONS(1667), - [aux_sym_cmd_identifier_token19] = ACTIONS(1667), - [aux_sym_cmd_identifier_token20] = ACTIONS(1667), - [aux_sym_cmd_identifier_token21] = ACTIONS(1667), - [aux_sym_cmd_identifier_token22] = ACTIONS(1667), - [aux_sym_cmd_identifier_token23] = ACTIONS(1667), - [aux_sym_cmd_identifier_token24] = ACTIONS(1667), - [aux_sym_cmd_identifier_token25] = ACTIONS(1667), - [aux_sym_cmd_identifier_token26] = ACTIONS(1667), - [aux_sym_cmd_identifier_token27] = ACTIONS(1667), - [aux_sym_cmd_identifier_token28] = ACTIONS(1667), - [aux_sym_cmd_identifier_token29] = ACTIONS(1667), - [aux_sym_cmd_identifier_token30] = ACTIONS(1667), - [aux_sym_cmd_identifier_token31] = ACTIONS(1667), - [aux_sym_cmd_identifier_token32] = ACTIONS(1667), - [aux_sym_cmd_identifier_token33] = ACTIONS(1667), - [aux_sym_cmd_identifier_token34] = ACTIONS(1667), - [aux_sym_cmd_identifier_token35] = ACTIONS(1667), - [aux_sym_cmd_identifier_token36] = ACTIONS(1667), - [anon_sym_true] = ACTIONS(1667), - [anon_sym_false] = ACTIONS(1667), - [anon_sym_null] = ACTIONS(1667), - [aux_sym_cmd_identifier_token38] = ACTIONS(1667), - [aux_sym_cmd_identifier_token39] = ACTIONS(1667), - [aux_sym_cmd_identifier_token40] = ACTIONS(1667), - [anon_sym_def] = ACTIONS(1667), - [anon_sym_export_DASHenv] = ACTIONS(1667), - [anon_sym_extern] = ACTIONS(1667), - [anon_sym_module] = ACTIONS(1667), - [anon_sym_use] = ACTIONS(1667), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_DOLLAR] = ACTIONS(1667), - [anon_sym_error] = ACTIONS(1667), - [anon_sym_list] = ACTIONS(1667), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_break] = ACTIONS(1667), - [anon_sym_continue] = ACTIONS(1667), - [anon_sym_for] = ACTIONS(1667), - [anon_sym_in] = ACTIONS(1667), - [anon_sym_loop] = ACTIONS(1667), - [anon_sym_make] = ACTIONS(1667), - [anon_sym_while] = ACTIONS(1667), - [anon_sym_do] = ACTIONS(1667), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_else] = ACTIONS(1667), - [anon_sym_match] = ACTIONS(1667), - [anon_sym_RBRACE] = ACTIONS(1667), - [anon_sym_try] = ACTIONS(1667), - [anon_sym_catch] = ACTIONS(1667), - [anon_sym_return] = ACTIONS(1667), - [anon_sym_source] = ACTIONS(1667), - [anon_sym_source_DASHenv] = ACTIONS(1667), - [anon_sym_register] = ACTIONS(1667), - [anon_sym_hide] = ACTIONS(1667), - [anon_sym_hide_DASHenv] = ACTIONS(1667), - [anon_sym_overlay] = ACTIONS(1667), - [anon_sym_new] = ACTIONS(1667), - [anon_sym_as] = ACTIONS(1667), - [anon_sym_LPAREN2] = ACTIONS(1669), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1667), - [aux_sym__immediate_decimal_token2] = ACTIONS(1910), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1667), - [aux_sym__val_number_decimal_token1] = ACTIONS(1667), - [aux_sym__val_number_decimal_token2] = ACTIONS(1667), - [aux_sym__val_number_decimal_token3] = ACTIONS(1667), - [aux_sym__val_number_decimal_token4] = ACTIONS(1667), - [aux_sym__val_number_token1] = ACTIONS(1667), - [aux_sym__val_number_token2] = ACTIONS(1667), - [aux_sym__val_number_token3] = ACTIONS(1667), - [anon_sym_DQUOTE] = ACTIONS(1667), - [sym__str_single_quotes] = ACTIONS(1667), - [sym__str_back_ticks] = ACTIONS(1667), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1667), - [sym__entry_separator] = ACTIONS(1669), - [anon_sym_PLUS] = ACTIONS(1667), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1667), + [386] = { + [sym_comment] = STATE(386), + [anon_sym_export] = ACTIONS(1842), + [anon_sym_alias] = ACTIONS(1842), + [anon_sym_let] = ACTIONS(1842), + [anon_sym_let_DASHenv] = ACTIONS(1842), + [anon_sym_mut] = ACTIONS(1842), + [anon_sym_const] = ACTIONS(1842), + [aux_sym_cmd_identifier_token1] = ACTIONS(1842), + [aux_sym_cmd_identifier_token2] = ACTIONS(1842), + [aux_sym_cmd_identifier_token3] = ACTIONS(1842), + [aux_sym_cmd_identifier_token4] = ACTIONS(1842), + [aux_sym_cmd_identifier_token5] = ACTIONS(1842), + [aux_sym_cmd_identifier_token6] = ACTIONS(1842), + [aux_sym_cmd_identifier_token7] = ACTIONS(1842), + [aux_sym_cmd_identifier_token8] = ACTIONS(1842), + [aux_sym_cmd_identifier_token9] = ACTIONS(1842), + [aux_sym_cmd_identifier_token10] = ACTIONS(1842), + [aux_sym_cmd_identifier_token11] = ACTIONS(1842), + [aux_sym_cmd_identifier_token12] = ACTIONS(1842), + [aux_sym_cmd_identifier_token13] = ACTIONS(1842), + [aux_sym_cmd_identifier_token14] = ACTIONS(1842), + [aux_sym_cmd_identifier_token15] = ACTIONS(1842), + [aux_sym_cmd_identifier_token16] = ACTIONS(1842), + [aux_sym_cmd_identifier_token17] = ACTIONS(1842), + [aux_sym_cmd_identifier_token18] = ACTIONS(1842), + [aux_sym_cmd_identifier_token19] = ACTIONS(1842), + [aux_sym_cmd_identifier_token20] = ACTIONS(1842), + [aux_sym_cmd_identifier_token21] = ACTIONS(1842), + [aux_sym_cmd_identifier_token22] = ACTIONS(1842), + [aux_sym_cmd_identifier_token23] = ACTIONS(1842), + [aux_sym_cmd_identifier_token24] = ACTIONS(1842), + [aux_sym_cmd_identifier_token25] = ACTIONS(1842), + [aux_sym_cmd_identifier_token26] = ACTIONS(1842), + [aux_sym_cmd_identifier_token27] = ACTIONS(1842), + [aux_sym_cmd_identifier_token28] = ACTIONS(1842), + [aux_sym_cmd_identifier_token29] = ACTIONS(1842), + [aux_sym_cmd_identifier_token30] = ACTIONS(1842), + [aux_sym_cmd_identifier_token31] = ACTIONS(1842), + [aux_sym_cmd_identifier_token32] = ACTIONS(1842), + [aux_sym_cmd_identifier_token33] = ACTIONS(1842), + [aux_sym_cmd_identifier_token34] = ACTIONS(1842), + [aux_sym_cmd_identifier_token35] = ACTIONS(1842), + [aux_sym_cmd_identifier_token36] = ACTIONS(1842), + [anon_sym_true] = ACTIONS(1850), + [anon_sym_false] = ACTIONS(1850), + [anon_sym_null] = ACTIONS(1850), + [aux_sym_cmd_identifier_token38] = ACTIONS(1842), + [aux_sym_cmd_identifier_token39] = ACTIONS(1850), + [aux_sym_cmd_identifier_token40] = ACTIONS(1850), + [anon_sym_def] = ACTIONS(1842), + [anon_sym_export_DASHenv] = ACTIONS(1842), + [anon_sym_extern] = ACTIONS(1842), + [anon_sym_module] = ACTIONS(1842), + [anon_sym_use] = ACTIONS(1842), + [anon_sym_LPAREN] = ACTIONS(1842), + [anon_sym_DOLLAR] = ACTIONS(1850), + [anon_sym_error] = ACTIONS(1842), + [anon_sym_list] = ACTIONS(1842), + [anon_sym_DASH] = ACTIONS(1842), + [anon_sym_break] = ACTIONS(1842), + [anon_sym_continue] = ACTIONS(1842), + [anon_sym_for] = ACTIONS(1842), + [anon_sym_in] = ACTIONS(1842), + [anon_sym_loop] = ACTIONS(1842), + [anon_sym_make] = ACTIONS(1842), + [anon_sym_while] = ACTIONS(1842), + [anon_sym_do] = ACTIONS(1842), + [anon_sym_if] = ACTIONS(1842), + [anon_sym_else] = ACTIONS(1842), + [anon_sym_match] = ACTIONS(1842), + [anon_sym_RBRACE] = ACTIONS(1850), + [anon_sym_try] = ACTIONS(1842), + [anon_sym_catch] = ACTIONS(1842), + [anon_sym_return] = ACTIONS(1842), + [anon_sym_source] = ACTIONS(1842), + [anon_sym_source_DASHenv] = ACTIONS(1842), + [anon_sym_register] = ACTIONS(1842), + [anon_sym_hide] = ACTIONS(1842), + [anon_sym_hide_DASHenv] = ACTIONS(1842), + [anon_sym_overlay] = ACTIONS(1842), + [anon_sym_new] = ACTIONS(1842), + [anon_sym_as] = ACTIONS(1842), + [anon_sym_LPAREN2] = ACTIONS(1844), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1850), + [anon_sym_DOT_DOT2] = ACTIONS(2099), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2101), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2101), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1850), + [aux_sym__val_number_decimal_token1] = ACTIONS(1842), + [aux_sym__val_number_decimal_token2] = ACTIONS(1850), + [aux_sym__val_number_decimal_token3] = ACTIONS(1850), + [aux_sym__val_number_decimal_token4] = ACTIONS(1850), + [aux_sym__val_number_token1] = ACTIONS(1850), + [aux_sym__val_number_token2] = ACTIONS(1850), + [aux_sym__val_number_token3] = ACTIONS(1850), + [anon_sym_DQUOTE] = ACTIONS(1850), + [sym__str_single_quotes] = ACTIONS(1850), + [sym__str_back_ticks] = ACTIONS(1850), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1850), + [anon_sym_PLUS] = ACTIONS(1842), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1852), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1850), + }, + [387] = { + [sym_comment] = STATE(387), + [anon_sym_export] = ACTIONS(1769), + [anon_sym_alias] = ACTIONS(1769), + [anon_sym_let] = ACTIONS(1769), + [anon_sym_let_DASHenv] = ACTIONS(1769), + [anon_sym_mut] = ACTIONS(1769), + [anon_sym_const] = ACTIONS(1769), + [aux_sym_cmd_identifier_token1] = ACTIONS(1769), + [aux_sym_cmd_identifier_token2] = ACTIONS(1769), + [aux_sym_cmd_identifier_token3] = ACTIONS(1769), + [aux_sym_cmd_identifier_token4] = ACTIONS(1769), + [aux_sym_cmd_identifier_token5] = ACTIONS(1769), + [aux_sym_cmd_identifier_token6] = ACTIONS(1769), + [aux_sym_cmd_identifier_token7] = ACTIONS(1769), + [aux_sym_cmd_identifier_token8] = ACTIONS(1769), + [aux_sym_cmd_identifier_token9] = ACTIONS(1769), + [aux_sym_cmd_identifier_token10] = ACTIONS(1769), + [aux_sym_cmd_identifier_token11] = ACTIONS(1769), + [aux_sym_cmd_identifier_token12] = ACTIONS(1769), + [aux_sym_cmd_identifier_token13] = ACTIONS(1769), + [aux_sym_cmd_identifier_token14] = ACTIONS(1769), + [aux_sym_cmd_identifier_token15] = ACTIONS(1769), + [aux_sym_cmd_identifier_token16] = ACTIONS(1769), + [aux_sym_cmd_identifier_token17] = ACTIONS(1769), + [aux_sym_cmd_identifier_token18] = ACTIONS(1769), + [aux_sym_cmd_identifier_token19] = ACTIONS(1769), + [aux_sym_cmd_identifier_token20] = ACTIONS(1769), + [aux_sym_cmd_identifier_token21] = ACTIONS(1769), + [aux_sym_cmd_identifier_token22] = ACTIONS(1769), + [aux_sym_cmd_identifier_token23] = ACTIONS(1769), + [aux_sym_cmd_identifier_token24] = ACTIONS(1769), + [aux_sym_cmd_identifier_token25] = ACTIONS(1769), + [aux_sym_cmd_identifier_token26] = ACTIONS(1769), + [aux_sym_cmd_identifier_token27] = ACTIONS(1769), + [aux_sym_cmd_identifier_token28] = ACTIONS(1769), + [aux_sym_cmd_identifier_token29] = ACTIONS(1769), + [aux_sym_cmd_identifier_token30] = ACTIONS(1769), + [aux_sym_cmd_identifier_token31] = ACTIONS(1769), + [aux_sym_cmd_identifier_token32] = ACTIONS(1769), + [aux_sym_cmd_identifier_token33] = ACTIONS(1769), + [aux_sym_cmd_identifier_token34] = ACTIONS(1769), + [aux_sym_cmd_identifier_token35] = ACTIONS(1769), + [aux_sym_cmd_identifier_token36] = ACTIONS(1769), + [anon_sym_true] = ACTIONS(1769), + [anon_sym_false] = ACTIONS(1769), + [anon_sym_null] = ACTIONS(1769), + [aux_sym_cmd_identifier_token38] = ACTIONS(1769), + [aux_sym_cmd_identifier_token39] = ACTIONS(1769), + [aux_sym_cmd_identifier_token40] = ACTIONS(1769), + [anon_sym_def] = ACTIONS(1769), + [anon_sym_export_DASHenv] = ACTIONS(1769), + [anon_sym_extern] = ACTIONS(1769), + [anon_sym_module] = ACTIONS(1769), + [anon_sym_use] = ACTIONS(1769), + [anon_sym_LPAREN] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1769), + [anon_sym_error] = ACTIONS(1769), + [anon_sym_list] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_break] = ACTIONS(1769), + [anon_sym_continue] = ACTIONS(1769), + [anon_sym_for] = ACTIONS(1769), + [anon_sym_in] = ACTIONS(1769), + [anon_sym_loop] = ACTIONS(1769), + [anon_sym_make] = ACTIONS(1769), + [anon_sym_while] = ACTIONS(1769), + [anon_sym_do] = ACTIONS(1769), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_else] = ACTIONS(1769), + [anon_sym_match] = ACTIONS(1769), + [anon_sym_RBRACE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1769), + [anon_sym_catch] = ACTIONS(1769), + [anon_sym_return] = ACTIONS(1769), + [anon_sym_source] = ACTIONS(1769), + [anon_sym_source_DASHenv] = ACTIONS(1769), + [anon_sym_register] = ACTIONS(1769), + [anon_sym_hide] = ACTIONS(1769), + [anon_sym_hide_DASHenv] = ACTIONS(1769), + [anon_sym_overlay] = ACTIONS(1769), + [anon_sym_new] = ACTIONS(1769), + [anon_sym_as] = ACTIONS(1769), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1769), + [anon_sym_DOT_DOT2] = ACTIONS(1769), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1771), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1771), + [aux_sym__immediate_decimal_token2] = ACTIONS(2103), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1769), + [aux_sym__val_number_decimal_token1] = ACTIONS(1769), + [aux_sym__val_number_decimal_token2] = ACTIONS(1769), + [aux_sym__val_number_decimal_token3] = ACTIONS(1769), + [aux_sym__val_number_decimal_token4] = ACTIONS(1769), + [aux_sym__val_number_token1] = ACTIONS(1769), + [aux_sym__val_number_token2] = ACTIONS(1769), + [aux_sym__val_number_token3] = ACTIONS(1769), + [anon_sym_DQUOTE] = ACTIONS(1769), + [sym__str_single_quotes] = ACTIONS(1769), + [sym__str_back_ticks] = ACTIONS(1769), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1769), + [sym__entry_separator] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1769), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1771), }, - [443] = { - [sym_comment] = STATE(443), - [anon_sym_export] = ACTIONS(1738), - [anon_sym_alias] = ACTIONS(1738), - [anon_sym_let] = ACTIONS(1738), - [anon_sym_let_DASHenv] = ACTIONS(1738), - [anon_sym_mut] = ACTIONS(1738), - [anon_sym_const] = ACTIONS(1738), - [aux_sym_cmd_identifier_token1] = ACTIONS(1738), - [aux_sym_cmd_identifier_token2] = ACTIONS(1738), - [aux_sym_cmd_identifier_token3] = ACTIONS(1738), - [aux_sym_cmd_identifier_token4] = ACTIONS(1738), - [aux_sym_cmd_identifier_token5] = ACTIONS(1738), - [aux_sym_cmd_identifier_token6] = ACTIONS(1738), - [aux_sym_cmd_identifier_token7] = ACTIONS(1738), - [aux_sym_cmd_identifier_token8] = ACTIONS(1738), - [aux_sym_cmd_identifier_token9] = ACTIONS(1738), - [aux_sym_cmd_identifier_token10] = ACTIONS(1738), - [aux_sym_cmd_identifier_token11] = ACTIONS(1738), - [aux_sym_cmd_identifier_token12] = ACTIONS(1738), - [aux_sym_cmd_identifier_token13] = ACTIONS(1738), - [aux_sym_cmd_identifier_token14] = ACTIONS(1738), - [aux_sym_cmd_identifier_token15] = ACTIONS(1738), - [aux_sym_cmd_identifier_token16] = ACTIONS(1738), - [aux_sym_cmd_identifier_token17] = ACTIONS(1738), - [aux_sym_cmd_identifier_token18] = ACTIONS(1738), - [aux_sym_cmd_identifier_token19] = ACTIONS(1738), - [aux_sym_cmd_identifier_token20] = ACTIONS(1738), - [aux_sym_cmd_identifier_token21] = ACTIONS(1738), - [aux_sym_cmd_identifier_token22] = ACTIONS(1738), - [aux_sym_cmd_identifier_token23] = ACTIONS(1738), - [aux_sym_cmd_identifier_token24] = ACTIONS(1738), - [aux_sym_cmd_identifier_token25] = ACTIONS(1738), - [aux_sym_cmd_identifier_token26] = ACTIONS(1738), - [aux_sym_cmd_identifier_token27] = ACTIONS(1738), - [aux_sym_cmd_identifier_token28] = ACTIONS(1738), - [aux_sym_cmd_identifier_token29] = ACTIONS(1738), - [aux_sym_cmd_identifier_token30] = ACTIONS(1738), - [aux_sym_cmd_identifier_token31] = ACTIONS(1738), - [aux_sym_cmd_identifier_token32] = ACTIONS(1738), - [aux_sym_cmd_identifier_token33] = ACTIONS(1738), - [aux_sym_cmd_identifier_token34] = ACTIONS(1738), - [aux_sym_cmd_identifier_token35] = ACTIONS(1738), - [aux_sym_cmd_identifier_token36] = ACTIONS(1738), - [anon_sym_true] = ACTIONS(1740), - [anon_sym_false] = ACTIONS(1740), - [anon_sym_null] = ACTIONS(1740), - [aux_sym_cmd_identifier_token38] = ACTIONS(1738), - [aux_sym_cmd_identifier_token39] = ACTIONS(1740), - [aux_sym_cmd_identifier_token40] = ACTIONS(1740), - [anon_sym_def] = ACTIONS(1738), - [anon_sym_export_DASHenv] = ACTIONS(1738), - [anon_sym_extern] = ACTIONS(1738), - [anon_sym_module] = ACTIONS(1738), - [anon_sym_use] = ACTIONS(1738), - [anon_sym_LPAREN] = ACTIONS(1740), - [anon_sym_DOLLAR] = ACTIONS(1740), - [anon_sym_error] = ACTIONS(1738), - [anon_sym_list] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_break] = ACTIONS(1738), - [anon_sym_continue] = ACTIONS(1738), - [anon_sym_for] = ACTIONS(1738), - [anon_sym_in] = ACTIONS(1738), - [anon_sym_loop] = ACTIONS(1738), - [anon_sym_make] = ACTIONS(1738), - [anon_sym_while] = ACTIONS(1738), - [anon_sym_do] = ACTIONS(1738), - [anon_sym_if] = ACTIONS(1738), - [anon_sym_else] = ACTIONS(1738), - [anon_sym_match] = ACTIONS(1738), - [anon_sym_RBRACE] = ACTIONS(1740), - [anon_sym_try] = ACTIONS(1738), - [anon_sym_catch] = ACTIONS(1738), - [anon_sym_return] = ACTIONS(1738), - [anon_sym_source] = ACTIONS(1738), - [anon_sym_source_DASHenv] = ACTIONS(1738), - [anon_sym_register] = ACTIONS(1738), - [anon_sym_hide] = ACTIONS(1738), - [anon_sym_hide_DASHenv] = ACTIONS(1738), - [anon_sym_overlay] = ACTIONS(1738), - [anon_sym_new] = ACTIONS(1738), - [anon_sym_as] = ACTIONS(1738), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1740), - [anon_sym_DOT_DOT2] = ACTIONS(1738), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1740), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1740), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1740), - [aux_sym__val_number_decimal_token1] = ACTIONS(1738), - [aux_sym__val_number_decimal_token2] = ACTIONS(1740), - [aux_sym__val_number_decimal_token3] = ACTIONS(1740), - [aux_sym__val_number_decimal_token4] = ACTIONS(1740), - [aux_sym__val_number_token1] = ACTIONS(1740), - [aux_sym__val_number_token2] = ACTIONS(1740), - [aux_sym__val_number_token3] = ACTIONS(1740), - [anon_sym_DQUOTE] = ACTIONS(1740), - [sym__str_single_quotes] = ACTIONS(1740), - [sym__str_back_ticks] = ACTIONS(1740), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1738), - [anon_sym_POUND] = ACTIONS(247), + [388] = { + [sym_comment] = STATE(388), + [anon_sym_export] = ACTIONS(2105), + [anon_sym_alias] = ACTIONS(2105), + [anon_sym_let] = ACTIONS(2105), + [anon_sym_let_DASHenv] = ACTIONS(2105), + [anon_sym_mut] = ACTIONS(2105), + [anon_sym_const] = ACTIONS(2105), + [aux_sym_cmd_identifier_token1] = ACTIONS(2105), + [aux_sym_cmd_identifier_token2] = ACTIONS(2105), + [aux_sym_cmd_identifier_token3] = ACTIONS(2105), + [aux_sym_cmd_identifier_token4] = ACTIONS(2105), + [aux_sym_cmd_identifier_token5] = ACTIONS(2105), + [aux_sym_cmd_identifier_token6] = ACTIONS(2105), + [aux_sym_cmd_identifier_token7] = ACTIONS(2105), + [aux_sym_cmd_identifier_token8] = ACTIONS(2105), + [aux_sym_cmd_identifier_token9] = ACTIONS(2105), + [aux_sym_cmd_identifier_token10] = ACTIONS(2105), + [aux_sym_cmd_identifier_token11] = ACTIONS(2105), + [aux_sym_cmd_identifier_token12] = ACTIONS(2105), + [aux_sym_cmd_identifier_token13] = ACTIONS(2105), + [aux_sym_cmd_identifier_token14] = ACTIONS(2105), + [aux_sym_cmd_identifier_token15] = ACTIONS(2105), + [aux_sym_cmd_identifier_token16] = ACTIONS(2105), + [aux_sym_cmd_identifier_token17] = ACTIONS(2105), + [aux_sym_cmd_identifier_token18] = ACTIONS(2105), + [aux_sym_cmd_identifier_token19] = ACTIONS(2105), + [aux_sym_cmd_identifier_token20] = ACTIONS(2105), + [aux_sym_cmd_identifier_token21] = ACTIONS(2105), + [aux_sym_cmd_identifier_token22] = ACTIONS(2105), + [aux_sym_cmd_identifier_token23] = ACTIONS(2105), + [aux_sym_cmd_identifier_token24] = ACTIONS(2105), + [aux_sym_cmd_identifier_token25] = ACTIONS(2105), + [aux_sym_cmd_identifier_token26] = ACTIONS(2105), + [aux_sym_cmd_identifier_token27] = ACTIONS(2105), + [aux_sym_cmd_identifier_token28] = ACTIONS(2105), + [aux_sym_cmd_identifier_token29] = ACTIONS(2105), + [aux_sym_cmd_identifier_token30] = ACTIONS(2105), + [aux_sym_cmd_identifier_token31] = ACTIONS(2105), + [aux_sym_cmd_identifier_token32] = ACTIONS(2105), + [aux_sym_cmd_identifier_token33] = ACTIONS(2105), + [aux_sym_cmd_identifier_token34] = ACTIONS(2105), + [aux_sym_cmd_identifier_token35] = ACTIONS(2105), + [aux_sym_cmd_identifier_token36] = ACTIONS(2105), + [anon_sym_true] = ACTIONS(2105), + [anon_sym_false] = ACTIONS(2105), + [anon_sym_null] = ACTIONS(2105), + [aux_sym_cmd_identifier_token38] = ACTIONS(2105), + [aux_sym_cmd_identifier_token39] = ACTIONS(2105), + [aux_sym_cmd_identifier_token40] = ACTIONS(2105), + [anon_sym_def] = ACTIONS(2105), + [anon_sym_export_DASHenv] = ACTIONS(2105), + [anon_sym_extern] = ACTIONS(2105), + [anon_sym_module] = ACTIONS(2105), + [anon_sym_use] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2105), + [anon_sym_DOLLAR] = ACTIONS(2105), + [anon_sym_error] = ACTIONS(2105), + [anon_sym_list] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_break] = ACTIONS(2105), + [anon_sym_continue] = ACTIONS(2105), + [anon_sym_for] = ACTIONS(2105), + [anon_sym_in] = ACTIONS(2105), + [anon_sym_loop] = ACTIONS(2105), + [anon_sym_make] = ACTIONS(2105), + [anon_sym_while] = ACTIONS(2105), + [anon_sym_do] = ACTIONS(2105), + [anon_sym_if] = ACTIONS(2105), + [anon_sym_else] = ACTIONS(2105), + [anon_sym_match] = ACTIONS(2105), + [anon_sym_RBRACE] = ACTIONS(2105), + [anon_sym_try] = ACTIONS(2105), + [anon_sym_catch] = ACTIONS(2105), + [anon_sym_return] = ACTIONS(2105), + [anon_sym_source] = ACTIONS(2105), + [anon_sym_source_DASHenv] = ACTIONS(2105), + [anon_sym_register] = ACTIONS(2105), + [anon_sym_hide] = ACTIONS(2105), + [anon_sym_hide_DASHenv] = ACTIONS(2105), + [anon_sym_overlay] = ACTIONS(2105), + [anon_sym_new] = ACTIONS(2105), + [anon_sym_as] = ACTIONS(2105), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2105), + [anon_sym_DOT_DOT2] = ACTIONS(2105), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2107), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2107), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2105), + [aux_sym__val_number_decimal_token1] = ACTIONS(2105), + [aux_sym__val_number_decimal_token2] = ACTIONS(2105), + [aux_sym__val_number_decimal_token3] = ACTIONS(2105), + [aux_sym__val_number_decimal_token4] = ACTIONS(2105), + [aux_sym__val_number_token1] = ACTIONS(2105), + [aux_sym__val_number_token2] = ACTIONS(2105), + [aux_sym__val_number_token3] = ACTIONS(2105), + [anon_sym_DQUOTE] = ACTIONS(2105), + [sym__str_single_quotes] = ACTIONS(2105), + [sym__str_back_ticks] = ACTIONS(2105), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2105), + [sym__entry_separator] = ACTIONS(2107), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2107), }, - [444] = { - [sym__expr_parenthesized_immediate] = STATE(7335), - [sym_comment] = STATE(444), - [anon_sym_export] = ACTIONS(2015), - [anon_sym_alias] = ACTIONS(2015), - [anon_sym_let] = ACTIONS(2015), - [anon_sym_let_DASHenv] = ACTIONS(2015), - [anon_sym_mut] = ACTIONS(2015), - [anon_sym_const] = ACTIONS(2015), - [aux_sym_cmd_identifier_token1] = ACTIONS(2015), - [aux_sym_cmd_identifier_token2] = ACTIONS(2015), - [aux_sym_cmd_identifier_token3] = ACTIONS(2015), - [aux_sym_cmd_identifier_token4] = ACTIONS(2015), - [aux_sym_cmd_identifier_token5] = ACTIONS(2015), - [aux_sym_cmd_identifier_token6] = ACTIONS(2015), - [aux_sym_cmd_identifier_token7] = ACTIONS(2015), - [aux_sym_cmd_identifier_token8] = ACTIONS(2015), - [aux_sym_cmd_identifier_token9] = ACTIONS(2015), - [aux_sym_cmd_identifier_token10] = ACTIONS(2015), - [aux_sym_cmd_identifier_token11] = ACTIONS(2015), - [aux_sym_cmd_identifier_token12] = ACTIONS(2015), - [aux_sym_cmd_identifier_token13] = ACTIONS(2015), - [aux_sym_cmd_identifier_token14] = ACTIONS(2015), - [aux_sym_cmd_identifier_token15] = ACTIONS(2015), - [aux_sym_cmd_identifier_token16] = ACTIONS(2015), - [aux_sym_cmd_identifier_token17] = ACTIONS(2015), - [aux_sym_cmd_identifier_token18] = ACTIONS(2015), - [aux_sym_cmd_identifier_token19] = ACTIONS(2015), - [aux_sym_cmd_identifier_token20] = ACTIONS(2015), - [aux_sym_cmd_identifier_token21] = ACTIONS(2015), - [aux_sym_cmd_identifier_token22] = ACTIONS(2015), - [aux_sym_cmd_identifier_token23] = ACTIONS(2015), - [aux_sym_cmd_identifier_token24] = ACTIONS(2015), - [aux_sym_cmd_identifier_token25] = ACTIONS(2015), - [aux_sym_cmd_identifier_token26] = ACTIONS(2015), - [aux_sym_cmd_identifier_token27] = ACTIONS(2015), - [aux_sym_cmd_identifier_token28] = ACTIONS(2015), - [aux_sym_cmd_identifier_token29] = ACTIONS(2015), - [aux_sym_cmd_identifier_token30] = ACTIONS(2015), - [aux_sym_cmd_identifier_token31] = ACTIONS(2015), - [aux_sym_cmd_identifier_token32] = ACTIONS(2015), - [aux_sym_cmd_identifier_token33] = ACTIONS(2015), - [aux_sym_cmd_identifier_token34] = ACTIONS(2015), - [aux_sym_cmd_identifier_token35] = ACTIONS(2015), - [aux_sym_cmd_identifier_token36] = ACTIONS(2015), + [389] = { + [sym_comment] = STATE(389), + [anon_sym_export] = ACTIONS(1090), + [anon_sym_alias] = ACTIONS(1090), + [anon_sym_let] = ACTIONS(1090), + [anon_sym_let_DASHenv] = ACTIONS(1090), + [anon_sym_mut] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [aux_sym_cmd_identifier_token1] = ACTIONS(1090), + [aux_sym_cmd_identifier_token2] = ACTIONS(1090), + [aux_sym_cmd_identifier_token3] = ACTIONS(1090), + [aux_sym_cmd_identifier_token4] = ACTIONS(1090), + [aux_sym_cmd_identifier_token5] = ACTIONS(1090), + [aux_sym_cmd_identifier_token6] = ACTIONS(1090), + [aux_sym_cmd_identifier_token7] = ACTIONS(1090), + [aux_sym_cmd_identifier_token8] = ACTIONS(1090), + [aux_sym_cmd_identifier_token9] = ACTIONS(1090), + [aux_sym_cmd_identifier_token10] = ACTIONS(1090), + [aux_sym_cmd_identifier_token11] = ACTIONS(1090), + [aux_sym_cmd_identifier_token12] = ACTIONS(1090), + [aux_sym_cmd_identifier_token13] = ACTIONS(1090), + [aux_sym_cmd_identifier_token14] = ACTIONS(1090), + [aux_sym_cmd_identifier_token15] = ACTIONS(1090), + [aux_sym_cmd_identifier_token16] = ACTIONS(1090), + [aux_sym_cmd_identifier_token17] = ACTIONS(1090), + [aux_sym_cmd_identifier_token18] = ACTIONS(1090), + [aux_sym_cmd_identifier_token19] = ACTIONS(1090), + [aux_sym_cmd_identifier_token20] = ACTIONS(1090), + [aux_sym_cmd_identifier_token21] = ACTIONS(1090), + [aux_sym_cmd_identifier_token22] = ACTIONS(1090), + [aux_sym_cmd_identifier_token23] = ACTIONS(1090), + [aux_sym_cmd_identifier_token24] = ACTIONS(1090), + [aux_sym_cmd_identifier_token25] = ACTIONS(1090), + [aux_sym_cmd_identifier_token26] = ACTIONS(1090), + [aux_sym_cmd_identifier_token27] = ACTIONS(1090), + [aux_sym_cmd_identifier_token28] = ACTIONS(1090), + [aux_sym_cmd_identifier_token29] = ACTIONS(1090), + [aux_sym_cmd_identifier_token30] = ACTIONS(1090), + [aux_sym_cmd_identifier_token31] = ACTIONS(1090), + [aux_sym_cmd_identifier_token32] = ACTIONS(1090), + [aux_sym_cmd_identifier_token33] = ACTIONS(1090), + [aux_sym_cmd_identifier_token34] = ACTIONS(1090), + [aux_sym_cmd_identifier_token35] = ACTIONS(1090), + [aux_sym_cmd_identifier_token36] = ACTIONS(1090), + [anon_sym_true] = ACTIONS(1090), + [anon_sym_false] = ACTIONS(1090), + [anon_sym_null] = ACTIONS(1090), + [aux_sym_cmd_identifier_token38] = ACTIONS(1090), + [aux_sym_cmd_identifier_token39] = ACTIONS(1090), + [aux_sym_cmd_identifier_token40] = ACTIONS(1090), + [anon_sym_def] = ACTIONS(1090), + [anon_sym_export_DASHenv] = ACTIONS(1090), + [anon_sym_extern] = ACTIONS(1090), + [anon_sym_module] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1090), + [anon_sym_LPAREN] = ACTIONS(1090), + [anon_sym_DOLLAR] = ACTIONS(1090), + [anon_sym_error] = ACTIONS(1090), + [anon_sym_list] = ACTIONS(1090), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_break] = ACTIONS(1090), + [anon_sym_continue] = ACTIONS(1090), + [anon_sym_for] = ACTIONS(1090), + [anon_sym_in] = ACTIONS(1090), + [anon_sym_loop] = ACTIONS(1090), + [anon_sym_make] = ACTIONS(1090), + [anon_sym_while] = ACTIONS(1090), + [anon_sym_do] = ACTIONS(1090), + [anon_sym_if] = ACTIONS(1090), + [anon_sym_else] = ACTIONS(1090), + [anon_sym_match] = ACTIONS(1090), + [anon_sym_RBRACE] = ACTIONS(1090), + [anon_sym_try] = ACTIONS(1090), + [anon_sym_catch] = ACTIONS(1090), + [anon_sym_return] = ACTIONS(1090), + [anon_sym_source] = ACTIONS(1090), + [anon_sym_source_DASHenv] = ACTIONS(1090), + [anon_sym_register] = ACTIONS(1090), + [anon_sym_hide] = ACTIONS(1090), + [anon_sym_hide_DASHenv] = ACTIONS(1090), + [anon_sym_overlay] = ACTIONS(1090), + [anon_sym_new] = ACTIONS(1090), + [anon_sym_as] = ACTIONS(1090), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1090), + [anon_sym_DOT_DOT2] = ACTIONS(2109), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2111), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2111), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1090), + [aux_sym__val_number_decimal_token1] = ACTIONS(1090), + [aux_sym__val_number_decimal_token2] = ACTIONS(1090), + [aux_sym__val_number_decimal_token3] = ACTIONS(1090), + [aux_sym__val_number_decimal_token4] = ACTIONS(1090), + [aux_sym__val_number_token1] = ACTIONS(1090), + [aux_sym__val_number_token2] = ACTIONS(1090), + [aux_sym__val_number_token3] = ACTIONS(1090), + [anon_sym_DQUOTE] = ACTIONS(1090), + [sym__str_single_quotes] = ACTIONS(1090), + [sym__str_back_ticks] = ACTIONS(1090), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1090), + [sym__entry_separator] = ACTIONS(1092), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1092), + }, + [390] = { + [sym_comment] = STATE(390), + [anon_sym_export] = ACTIONS(2113), + [anon_sym_alias] = ACTIONS(2113), + [anon_sym_let] = ACTIONS(2113), + [anon_sym_let_DASHenv] = ACTIONS(2113), + [anon_sym_mut] = ACTIONS(2113), + [anon_sym_const] = ACTIONS(2113), + [aux_sym_cmd_identifier_token1] = ACTIONS(2113), + [aux_sym_cmd_identifier_token2] = ACTIONS(2113), + [aux_sym_cmd_identifier_token3] = ACTIONS(2113), + [aux_sym_cmd_identifier_token4] = ACTIONS(2113), + [aux_sym_cmd_identifier_token5] = ACTIONS(2113), + [aux_sym_cmd_identifier_token6] = ACTIONS(2113), + [aux_sym_cmd_identifier_token7] = ACTIONS(2113), + [aux_sym_cmd_identifier_token8] = ACTIONS(2113), + [aux_sym_cmd_identifier_token9] = ACTIONS(2113), + [aux_sym_cmd_identifier_token10] = ACTIONS(2113), + [aux_sym_cmd_identifier_token11] = ACTIONS(2113), + [aux_sym_cmd_identifier_token12] = ACTIONS(2113), + [aux_sym_cmd_identifier_token13] = ACTIONS(2113), + [aux_sym_cmd_identifier_token14] = ACTIONS(2113), + [aux_sym_cmd_identifier_token15] = ACTIONS(2113), + [aux_sym_cmd_identifier_token16] = ACTIONS(2113), + [aux_sym_cmd_identifier_token17] = ACTIONS(2113), + [aux_sym_cmd_identifier_token18] = ACTIONS(2113), + [aux_sym_cmd_identifier_token19] = ACTIONS(2113), + [aux_sym_cmd_identifier_token20] = ACTIONS(2113), + [aux_sym_cmd_identifier_token21] = ACTIONS(2113), + [aux_sym_cmd_identifier_token22] = ACTIONS(2113), + [aux_sym_cmd_identifier_token23] = ACTIONS(2113), + [aux_sym_cmd_identifier_token24] = ACTIONS(2113), + [aux_sym_cmd_identifier_token25] = ACTIONS(2113), + [aux_sym_cmd_identifier_token26] = ACTIONS(2113), + [aux_sym_cmd_identifier_token27] = ACTIONS(2113), + [aux_sym_cmd_identifier_token28] = ACTIONS(2113), + [aux_sym_cmd_identifier_token29] = ACTIONS(2113), + [aux_sym_cmd_identifier_token30] = ACTIONS(2113), + [aux_sym_cmd_identifier_token31] = ACTIONS(2113), + [aux_sym_cmd_identifier_token32] = ACTIONS(2113), + [aux_sym_cmd_identifier_token33] = ACTIONS(2113), + [aux_sym_cmd_identifier_token34] = ACTIONS(2113), + [aux_sym_cmd_identifier_token35] = ACTIONS(2113), + [aux_sym_cmd_identifier_token36] = ACTIONS(2113), + [anon_sym_true] = ACTIONS(2113), + [anon_sym_false] = ACTIONS(2113), + [anon_sym_null] = ACTIONS(2113), + [aux_sym_cmd_identifier_token38] = ACTIONS(2113), + [aux_sym_cmd_identifier_token39] = ACTIONS(2113), + [aux_sym_cmd_identifier_token40] = ACTIONS(2113), + [anon_sym_def] = ACTIONS(2113), + [anon_sym_export_DASHenv] = ACTIONS(2113), + [anon_sym_extern] = ACTIONS(2113), + [anon_sym_module] = ACTIONS(2113), + [anon_sym_use] = ACTIONS(2113), + [anon_sym_LPAREN] = ACTIONS(2113), + [anon_sym_DOLLAR] = ACTIONS(2113), + [anon_sym_error] = ACTIONS(2113), + [anon_sym_list] = ACTIONS(2113), + [anon_sym_DASH] = ACTIONS(2113), + [anon_sym_break] = ACTIONS(2113), + [anon_sym_continue] = ACTIONS(2113), + [anon_sym_for] = ACTIONS(2113), + [anon_sym_in] = ACTIONS(2113), + [anon_sym_loop] = ACTIONS(2113), + [anon_sym_make] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(2113), + [anon_sym_do] = ACTIONS(2113), + [anon_sym_if] = ACTIONS(2113), + [anon_sym_else] = ACTIONS(2113), + [anon_sym_match] = ACTIONS(2113), + [anon_sym_RBRACE] = ACTIONS(2113), + [anon_sym_try] = ACTIONS(2113), + [anon_sym_catch] = ACTIONS(2113), + [anon_sym_return] = ACTIONS(2113), + [anon_sym_source] = ACTIONS(2113), + [anon_sym_source_DASHenv] = ACTIONS(2113), + [anon_sym_register] = ACTIONS(2113), + [anon_sym_hide] = ACTIONS(2113), + [anon_sym_hide_DASHenv] = ACTIONS(2113), + [anon_sym_overlay] = ACTIONS(2113), + [anon_sym_new] = ACTIONS(2113), + [anon_sym_as] = ACTIONS(2113), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2113), + [anon_sym_DOT_DOT2] = ACTIONS(2115), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2117), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2117), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2113), + [aux_sym__val_number_decimal_token1] = ACTIONS(2113), + [aux_sym__val_number_decimal_token2] = ACTIONS(2113), + [aux_sym__val_number_decimal_token3] = ACTIONS(2113), + [aux_sym__val_number_decimal_token4] = ACTIONS(2113), + [aux_sym__val_number_token1] = ACTIONS(2113), + [aux_sym__val_number_token2] = ACTIONS(2113), + [aux_sym__val_number_token3] = ACTIONS(2113), + [anon_sym_DQUOTE] = ACTIONS(2113), + [sym__str_single_quotes] = ACTIONS(2113), + [sym__str_back_ticks] = ACTIONS(2113), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2113), + [sym__entry_separator] = ACTIONS(2119), + [anon_sym_PLUS] = ACTIONS(2113), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2119), + }, + [391] = { + [sym_expr_parenthesized] = STATE(4448), + [sym__spread_parenthesized] = STATE(4985), + [sym_val_range] = STATE(4986), + [sym__val_range] = STATE(7676), + [sym__val_range_with_end] = STATE(7463), + [sym__value] = STATE(4986), + [sym_val_nothing] = STATE(5010), + [sym_val_bool] = STATE(4627), + [sym__spread_variable] = STATE(4987), + [sym_val_variable] = STATE(4464), + [sym_val_number] = STATE(5010), + [sym__val_number_decimal] = STATE(4016), + [sym__val_number] = STATE(5054), + [sym_val_duration] = STATE(5010), + [sym_val_filesize] = STATE(5010), + [sym_val_binary] = STATE(5010), + [sym_val_string] = STATE(5010), + [sym__raw_str] = STATE(4660), + [sym__str_double_quotes] = STATE(4660), + [sym_val_interpolated] = STATE(5010), + [sym__inter_single_quotes] = STATE(5011), + [sym__inter_double_quotes] = STATE(5012), + [sym_val_list] = STATE(5010), + [sym__spread_list] = STATE(4985), + [sym_val_record] = STATE(5010), + [sym_val_table] = STATE(5010), + [sym_val_closure] = STATE(5010), + [sym__cmd_arg] = STATE(4992), + [sym_redirection] = STATE(4995), + [sym__flag] = STATE(4996), + [sym_short_flag] = STATE(4954), + [sym_long_flag] = STATE(4954), + [sym_unquoted] = STATE(4666), + [sym__unquoted_with_expr] = STATE(5004), + [sym__unquoted_anonymous_prefix] = STATE(6762), + [sym_comment] = STATE(391), + [ts_builtin_sym_end] = ACTIONS(1941), + [anon_sym_true] = ACTIONS(2121), + [anon_sym_false] = ACTIONS(2121), + [anon_sym_null] = ACTIONS(2123), + [aux_sym_cmd_identifier_token38] = ACTIONS(2125), + [aux_sym_cmd_identifier_token39] = ACTIONS(2125), + [aux_sym_cmd_identifier_token40] = ACTIONS(2125), + [sym__newline] = ACTIONS(1939), + [sym__space] = ACTIONS(1941), + [anon_sym_SEMI] = ACTIONS(1939), + [anon_sym_PIPE] = ACTIONS(1939), + [anon_sym_err_GT_PIPE] = ACTIONS(1939), + [anon_sym_out_GT_PIPE] = ACTIONS(1939), + [anon_sym_e_GT_PIPE] = ACTIONS(1939), + [anon_sym_o_GT_PIPE] = ACTIONS(1939), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1939), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1939), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1939), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1939), + [anon_sym_LBRACK] = ACTIONS(2127), + [anon_sym_LPAREN] = ACTIONS(2129), + [anon_sym_DOLLAR] = ACTIONS(2131), + [anon_sym_DASH_DASH] = ACTIONS(2133), + [anon_sym_DASH] = ACTIONS(2135), + [anon_sym_LBRACE] = ACTIONS(2137), + [anon_sym_DOT_DOT] = ACTIONS(2139), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2141), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2143), + [anon_sym_DOT_DOT_LT] = ACTIONS(2143), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2145), + [aux_sym__val_number_decimal_token1] = ACTIONS(2147), + [aux_sym__val_number_decimal_token2] = ACTIONS(2147), + [aux_sym__val_number_decimal_token3] = ACTIONS(2149), + [aux_sym__val_number_decimal_token4] = ACTIONS(2151), + [aux_sym__val_number_token1] = ACTIONS(2153), + [aux_sym__val_number_token2] = ACTIONS(2153), + [aux_sym__val_number_token3] = ACTIONS(2153), + [anon_sym_0b] = ACTIONS(2155), + [anon_sym_0o] = ACTIONS(2157), + [anon_sym_0x] = ACTIONS(2157), + [sym_val_date] = ACTIONS(2159), + [anon_sym_DQUOTE] = ACTIONS(2161), + [sym__str_single_quotes] = ACTIONS(2163), + [sym__str_back_ticks] = ACTIONS(2163), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2165), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2167), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2169), + [anon_sym_err_GT] = ACTIONS(2171), + [anon_sym_out_GT] = ACTIONS(2171), + [anon_sym_e_GT] = ACTIONS(2171), + [anon_sym_o_GT] = ACTIONS(2171), + [anon_sym_err_PLUSout_GT] = ACTIONS(2171), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2171), + [anon_sym_o_PLUSe_GT] = ACTIONS(2171), + [anon_sym_e_PLUSo_GT] = ACTIONS(2171), + [anon_sym_err_GT_GT] = ACTIONS(2171), + [anon_sym_out_GT_GT] = ACTIONS(2171), + [anon_sym_e_GT_GT] = ACTIONS(2171), + [anon_sym_o_GT_GT] = ACTIONS(2171), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2171), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2171), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2171), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2171), + [aux_sym_unquoted_token1] = ACTIONS(2173), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2175), + }, + [392] = { + [sym_cell_path] = STATE(671), + [sym_path] = STATE(631), + [sym_comment] = STATE(392), + [aux_sym_cell_path_repeat1] = STATE(456), + [anon_sym_export] = ACTIONS(1993), + [anon_sym_alias] = ACTIONS(1993), + [anon_sym_let] = ACTIONS(1993), + [anon_sym_let_DASHenv] = ACTIONS(1993), + [anon_sym_mut] = ACTIONS(1993), + [anon_sym_const] = ACTIONS(1993), + [aux_sym_cmd_identifier_token1] = ACTIONS(1993), + [aux_sym_cmd_identifier_token2] = ACTIONS(1993), + [aux_sym_cmd_identifier_token3] = ACTIONS(1993), + [aux_sym_cmd_identifier_token4] = ACTIONS(1993), + [aux_sym_cmd_identifier_token5] = ACTIONS(1993), + [aux_sym_cmd_identifier_token6] = ACTIONS(1993), + [aux_sym_cmd_identifier_token7] = ACTIONS(1993), + [aux_sym_cmd_identifier_token8] = ACTIONS(1993), + [aux_sym_cmd_identifier_token9] = ACTIONS(1993), + [aux_sym_cmd_identifier_token10] = ACTIONS(1993), + [aux_sym_cmd_identifier_token11] = ACTIONS(1993), + [aux_sym_cmd_identifier_token12] = ACTIONS(1993), + [aux_sym_cmd_identifier_token13] = ACTIONS(1993), + [aux_sym_cmd_identifier_token14] = ACTIONS(1993), + [aux_sym_cmd_identifier_token15] = ACTIONS(1993), + [aux_sym_cmd_identifier_token16] = ACTIONS(1993), + [aux_sym_cmd_identifier_token17] = ACTIONS(1993), + [aux_sym_cmd_identifier_token18] = ACTIONS(1993), + [aux_sym_cmd_identifier_token19] = ACTIONS(1993), + [aux_sym_cmd_identifier_token20] = ACTIONS(1993), + [aux_sym_cmd_identifier_token21] = ACTIONS(1993), + [aux_sym_cmd_identifier_token22] = ACTIONS(1993), + [aux_sym_cmd_identifier_token23] = ACTIONS(1993), + [aux_sym_cmd_identifier_token24] = ACTIONS(1993), + [aux_sym_cmd_identifier_token25] = ACTIONS(1993), + [aux_sym_cmd_identifier_token26] = ACTIONS(1993), + [aux_sym_cmd_identifier_token27] = ACTIONS(1993), + [aux_sym_cmd_identifier_token28] = ACTIONS(1993), + [aux_sym_cmd_identifier_token29] = ACTIONS(1993), + [aux_sym_cmd_identifier_token30] = ACTIONS(1993), + [aux_sym_cmd_identifier_token31] = ACTIONS(1993), + [aux_sym_cmd_identifier_token32] = ACTIONS(1993), + [aux_sym_cmd_identifier_token33] = ACTIONS(1993), + [aux_sym_cmd_identifier_token34] = ACTIONS(1993), + [aux_sym_cmd_identifier_token35] = ACTIONS(1993), + [aux_sym_cmd_identifier_token36] = ACTIONS(1993), + [anon_sym_true] = ACTIONS(1995), + [anon_sym_false] = ACTIONS(1995), + [anon_sym_null] = ACTIONS(1995), + [aux_sym_cmd_identifier_token38] = ACTIONS(1993), + [aux_sym_cmd_identifier_token39] = ACTIONS(1995), + [aux_sym_cmd_identifier_token40] = ACTIONS(1995), + [anon_sym_def] = ACTIONS(1993), + [anon_sym_export_DASHenv] = ACTIONS(1993), + [anon_sym_extern] = ACTIONS(1993), + [anon_sym_module] = ACTIONS(1993), + [anon_sym_use] = ACTIONS(1993), + [anon_sym_LPAREN] = ACTIONS(1995), + [anon_sym_DOLLAR] = ACTIONS(1995), + [anon_sym_error] = ACTIONS(1993), + [anon_sym_list] = ACTIONS(1993), + [anon_sym_DASH] = ACTIONS(1993), + [anon_sym_break] = ACTIONS(1993), + [anon_sym_continue] = ACTIONS(1993), + [anon_sym_for] = ACTIONS(1993), + [anon_sym_in] = ACTIONS(1993), + [anon_sym_loop] = ACTIONS(1993), + [anon_sym_make] = ACTIONS(1993), + [anon_sym_while] = ACTIONS(1993), + [anon_sym_do] = ACTIONS(1993), + [anon_sym_if] = ACTIONS(1993), + [anon_sym_else] = ACTIONS(1993), + [anon_sym_match] = ACTIONS(1993), + [anon_sym_RBRACE] = ACTIONS(1995), + [anon_sym_try] = ACTIONS(1993), + [anon_sym_catch] = ACTIONS(1993), + [anon_sym_return] = ACTIONS(1993), + [anon_sym_source] = ACTIONS(1993), + [anon_sym_source_DASHenv] = ACTIONS(1993), + [anon_sym_register] = ACTIONS(1993), + [anon_sym_hide] = ACTIONS(1993), + [anon_sym_hide_DASHenv] = ACTIONS(1993), + [anon_sym_overlay] = ACTIONS(1993), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_as] = ACTIONS(1993), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1995), + [anon_sym_DOT] = ACTIONS(2177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1995), + [aux_sym__val_number_decimal_token1] = ACTIONS(1993), + [aux_sym__val_number_decimal_token2] = ACTIONS(1995), + [aux_sym__val_number_decimal_token3] = ACTIONS(1995), + [aux_sym__val_number_decimal_token4] = ACTIONS(1995), + [aux_sym__val_number_token1] = ACTIONS(1995), + [aux_sym__val_number_token2] = ACTIONS(1995), + [aux_sym__val_number_token3] = ACTIONS(1995), + [anon_sym_DQUOTE] = ACTIONS(1995), + [sym__str_single_quotes] = ACTIONS(1995), + [sym__str_back_ticks] = ACTIONS(1995), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1995), + [anon_sym_PLUS] = ACTIONS(1993), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1995), + }, + [393] = { + [sym_cell_path] = STATE(672), + [sym_path] = STATE(631), + [sym_comment] = STATE(393), + [aux_sym_cell_path_repeat1] = STATE(456), + [anon_sym_export] = ACTIONS(1997), + [anon_sym_alias] = ACTIONS(1997), + [anon_sym_let] = ACTIONS(1997), + [anon_sym_let_DASHenv] = ACTIONS(1997), + [anon_sym_mut] = ACTIONS(1997), + [anon_sym_const] = ACTIONS(1997), + [aux_sym_cmd_identifier_token1] = ACTIONS(1997), + [aux_sym_cmd_identifier_token2] = ACTIONS(1997), + [aux_sym_cmd_identifier_token3] = ACTIONS(1997), + [aux_sym_cmd_identifier_token4] = ACTIONS(1997), + [aux_sym_cmd_identifier_token5] = ACTIONS(1997), + [aux_sym_cmd_identifier_token6] = ACTIONS(1997), + [aux_sym_cmd_identifier_token7] = ACTIONS(1997), + [aux_sym_cmd_identifier_token8] = ACTIONS(1997), + [aux_sym_cmd_identifier_token9] = ACTIONS(1997), + [aux_sym_cmd_identifier_token10] = ACTIONS(1997), + [aux_sym_cmd_identifier_token11] = ACTIONS(1997), + [aux_sym_cmd_identifier_token12] = ACTIONS(1997), + [aux_sym_cmd_identifier_token13] = ACTIONS(1997), + [aux_sym_cmd_identifier_token14] = ACTIONS(1997), + [aux_sym_cmd_identifier_token15] = ACTIONS(1997), + [aux_sym_cmd_identifier_token16] = ACTIONS(1997), + [aux_sym_cmd_identifier_token17] = ACTIONS(1997), + [aux_sym_cmd_identifier_token18] = ACTIONS(1997), + [aux_sym_cmd_identifier_token19] = ACTIONS(1997), + [aux_sym_cmd_identifier_token20] = ACTIONS(1997), + [aux_sym_cmd_identifier_token21] = ACTIONS(1997), + [aux_sym_cmd_identifier_token22] = ACTIONS(1997), + [aux_sym_cmd_identifier_token23] = ACTIONS(1997), + [aux_sym_cmd_identifier_token24] = ACTIONS(1997), + [aux_sym_cmd_identifier_token25] = ACTIONS(1997), + [aux_sym_cmd_identifier_token26] = ACTIONS(1997), + [aux_sym_cmd_identifier_token27] = ACTIONS(1997), + [aux_sym_cmd_identifier_token28] = ACTIONS(1997), + [aux_sym_cmd_identifier_token29] = ACTIONS(1997), + [aux_sym_cmd_identifier_token30] = ACTIONS(1997), + [aux_sym_cmd_identifier_token31] = ACTIONS(1997), + [aux_sym_cmd_identifier_token32] = ACTIONS(1997), + [aux_sym_cmd_identifier_token33] = ACTIONS(1997), + [aux_sym_cmd_identifier_token34] = ACTIONS(1997), + [aux_sym_cmd_identifier_token35] = ACTIONS(1997), + [aux_sym_cmd_identifier_token36] = ACTIONS(1997), + [anon_sym_true] = ACTIONS(1999), + [anon_sym_false] = ACTIONS(1999), + [anon_sym_null] = ACTIONS(1999), + [aux_sym_cmd_identifier_token38] = ACTIONS(1997), + [aux_sym_cmd_identifier_token39] = ACTIONS(1999), + [aux_sym_cmd_identifier_token40] = ACTIONS(1999), + [anon_sym_def] = ACTIONS(1997), + [anon_sym_export_DASHenv] = ACTIONS(1997), + [anon_sym_extern] = ACTIONS(1997), + [anon_sym_module] = ACTIONS(1997), + [anon_sym_use] = ACTIONS(1997), + [anon_sym_LPAREN] = ACTIONS(1999), + [anon_sym_DOLLAR] = ACTIONS(1999), + [anon_sym_error] = ACTIONS(1997), + [anon_sym_list] = ACTIONS(1997), + [anon_sym_DASH] = ACTIONS(1997), + [anon_sym_break] = ACTIONS(1997), + [anon_sym_continue] = ACTIONS(1997), + [anon_sym_for] = ACTIONS(1997), + [anon_sym_in] = ACTIONS(1997), + [anon_sym_loop] = ACTIONS(1997), + [anon_sym_make] = ACTIONS(1997), + [anon_sym_while] = ACTIONS(1997), + [anon_sym_do] = ACTIONS(1997), + [anon_sym_if] = ACTIONS(1997), + [anon_sym_else] = ACTIONS(1997), + [anon_sym_match] = ACTIONS(1997), + [anon_sym_RBRACE] = ACTIONS(1999), + [anon_sym_try] = ACTIONS(1997), + [anon_sym_catch] = ACTIONS(1997), + [anon_sym_return] = ACTIONS(1997), + [anon_sym_source] = ACTIONS(1997), + [anon_sym_source_DASHenv] = ACTIONS(1997), + [anon_sym_register] = ACTIONS(1997), + [anon_sym_hide] = ACTIONS(1997), + [anon_sym_hide_DASHenv] = ACTIONS(1997), + [anon_sym_overlay] = ACTIONS(1997), + [anon_sym_new] = ACTIONS(1997), + [anon_sym_as] = ACTIONS(1997), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1999), + [anon_sym_DOT] = ACTIONS(2177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1999), + [aux_sym__val_number_decimal_token1] = ACTIONS(1997), + [aux_sym__val_number_decimal_token2] = ACTIONS(1999), + [aux_sym__val_number_decimal_token3] = ACTIONS(1999), + [aux_sym__val_number_decimal_token4] = ACTIONS(1999), + [aux_sym__val_number_token1] = ACTIONS(1999), + [aux_sym__val_number_token2] = ACTIONS(1999), + [aux_sym__val_number_token3] = ACTIONS(1999), + [anon_sym_DQUOTE] = ACTIONS(1999), + [sym__str_single_quotes] = ACTIONS(1999), + [sym__str_back_ticks] = ACTIONS(1999), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1999), + [anon_sym_PLUS] = ACTIONS(1997), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1999), + }, + [394] = { + [sym_cell_path] = STATE(673), + [sym_path] = STATE(631), + [sym_comment] = STATE(394), + [aux_sym_cell_path_repeat1] = STATE(456), + [anon_sym_export] = ACTIONS(2001), + [anon_sym_alias] = ACTIONS(2001), + [anon_sym_let] = ACTIONS(2001), + [anon_sym_let_DASHenv] = ACTIONS(2001), + [anon_sym_mut] = ACTIONS(2001), + [anon_sym_const] = ACTIONS(2001), + [aux_sym_cmd_identifier_token1] = ACTIONS(2001), + [aux_sym_cmd_identifier_token2] = ACTIONS(2001), + [aux_sym_cmd_identifier_token3] = ACTIONS(2001), + [aux_sym_cmd_identifier_token4] = ACTIONS(2001), + [aux_sym_cmd_identifier_token5] = ACTIONS(2001), + [aux_sym_cmd_identifier_token6] = ACTIONS(2001), + [aux_sym_cmd_identifier_token7] = ACTIONS(2001), + [aux_sym_cmd_identifier_token8] = ACTIONS(2001), + [aux_sym_cmd_identifier_token9] = ACTIONS(2001), + [aux_sym_cmd_identifier_token10] = ACTIONS(2001), + [aux_sym_cmd_identifier_token11] = ACTIONS(2001), + [aux_sym_cmd_identifier_token12] = ACTIONS(2001), + [aux_sym_cmd_identifier_token13] = ACTIONS(2001), + [aux_sym_cmd_identifier_token14] = ACTIONS(2001), + [aux_sym_cmd_identifier_token15] = ACTIONS(2001), + [aux_sym_cmd_identifier_token16] = ACTIONS(2001), + [aux_sym_cmd_identifier_token17] = ACTIONS(2001), + [aux_sym_cmd_identifier_token18] = ACTIONS(2001), + [aux_sym_cmd_identifier_token19] = ACTIONS(2001), + [aux_sym_cmd_identifier_token20] = ACTIONS(2001), + [aux_sym_cmd_identifier_token21] = ACTIONS(2001), + [aux_sym_cmd_identifier_token22] = ACTIONS(2001), + [aux_sym_cmd_identifier_token23] = ACTIONS(2001), + [aux_sym_cmd_identifier_token24] = ACTIONS(2001), + [aux_sym_cmd_identifier_token25] = ACTIONS(2001), + [aux_sym_cmd_identifier_token26] = ACTIONS(2001), + [aux_sym_cmd_identifier_token27] = ACTIONS(2001), + [aux_sym_cmd_identifier_token28] = ACTIONS(2001), + [aux_sym_cmd_identifier_token29] = ACTIONS(2001), + [aux_sym_cmd_identifier_token30] = ACTIONS(2001), + [aux_sym_cmd_identifier_token31] = ACTIONS(2001), + [aux_sym_cmd_identifier_token32] = ACTIONS(2001), + [aux_sym_cmd_identifier_token33] = ACTIONS(2001), + [aux_sym_cmd_identifier_token34] = ACTIONS(2001), + [aux_sym_cmd_identifier_token35] = ACTIONS(2001), + [aux_sym_cmd_identifier_token36] = ACTIONS(2001), + [anon_sym_true] = ACTIONS(2003), + [anon_sym_false] = ACTIONS(2003), + [anon_sym_null] = ACTIONS(2003), + [aux_sym_cmd_identifier_token38] = ACTIONS(2001), + [aux_sym_cmd_identifier_token39] = ACTIONS(2003), + [aux_sym_cmd_identifier_token40] = ACTIONS(2003), + [anon_sym_def] = ACTIONS(2001), + [anon_sym_export_DASHenv] = ACTIONS(2001), + [anon_sym_extern] = ACTIONS(2001), + [anon_sym_module] = ACTIONS(2001), + [anon_sym_use] = ACTIONS(2001), + [anon_sym_LPAREN] = ACTIONS(2003), + [anon_sym_DOLLAR] = ACTIONS(2003), + [anon_sym_error] = ACTIONS(2001), + [anon_sym_list] = ACTIONS(2001), + [anon_sym_DASH] = ACTIONS(2001), + [anon_sym_break] = ACTIONS(2001), + [anon_sym_continue] = ACTIONS(2001), + [anon_sym_for] = ACTIONS(2001), + [anon_sym_in] = ACTIONS(2001), + [anon_sym_loop] = ACTIONS(2001), + [anon_sym_make] = ACTIONS(2001), + [anon_sym_while] = ACTIONS(2001), + [anon_sym_do] = ACTIONS(2001), + [anon_sym_if] = ACTIONS(2001), + [anon_sym_else] = ACTIONS(2001), + [anon_sym_match] = ACTIONS(2001), + [anon_sym_RBRACE] = ACTIONS(2003), + [anon_sym_try] = ACTIONS(2001), + [anon_sym_catch] = ACTIONS(2001), + [anon_sym_return] = ACTIONS(2001), + [anon_sym_source] = ACTIONS(2001), + [anon_sym_source_DASHenv] = ACTIONS(2001), + [anon_sym_register] = ACTIONS(2001), + [anon_sym_hide] = ACTIONS(2001), + [anon_sym_hide_DASHenv] = ACTIONS(2001), + [anon_sym_overlay] = ACTIONS(2001), + [anon_sym_new] = ACTIONS(2001), + [anon_sym_as] = ACTIONS(2001), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2003), + [anon_sym_DOT] = ACTIONS(2177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2003), + [aux_sym__val_number_decimal_token1] = ACTIONS(2001), + [aux_sym__val_number_decimal_token2] = ACTIONS(2003), + [aux_sym__val_number_decimal_token3] = ACTIONS(2003), + [aux_sym__val_number_decimal_token4] = ACTIONS(2003), + [aux_sym__val_number_token1] = ACTIONS(2003), + [aux_sym__val_number_token2] = ACTIONS(2003), + [aux_sym__val_number_token3] = ACTIONS(2003), + [anon_sym_DQUOTE] = ACTIONS(2003), + [sym__str_single_quotes] = ACTIONS(2003), + [sym__str_back_ticks] = ACTIONS(2003), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2003), + [anon_sym_PLUS] = ACTIONS(2001), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2003), + }, + [395] = { + [sym_cell_path] = STATE(674), + [sym_path] = STATE(631), + [sym_comment] = STATE(395), + [aux_sym_cell_path_repeat1] = STATE(456), + [anon_sym_export] = ACTIONS(2005), + [anon_sym_alias] = ACTIONS(2005), + [anon_sym_let] = ACTIONS(2005), + [anon_sym_let_DASHenv] = ACTIONS(2005), + [anon_sym_mut] = ACTIONS(2005), + [anon_sym_const] = ACTIONS(2005), + [aux_sym_cmd_identifier_token1] = ACTIONS(2005), + [aux_sym_cmd_identifier_token2] = ACTIONS(2005), + [aux_sym_cmd_identifier_token3] = ACTIONS(2005), + [aux_sym_cmd_identifier_token4] = ACTIONS(2005), + [aux_sym_cmd_identifier_token5] = ACTIONS(2005), + [aux_sym_cmd_identifier_token6] = ACTIONS(2005), + [aux_sym_cmd_identifier_token7] = ACTIONS(2005), + [aux_sym_cmd_identifier_token8] = ACTIONS(2005), + [aux_sym_cmd_identifier_token9] = ACTIONS(2005), + [aux_sym_cmd_identifier_token10] = ACTIONS(2005), + [aux_sym_cmd_identifier_token11] = ACTIONS(2005), + [aux_sym_cmd_identifier_token12] = ACTIONS(2005), + [aux_sym_cmd_identifier_token13] = ACTIONS(2005), + [aux_sym_cmd_identifier_token14] = ACTIONS(2005), + [aux_sym_cmd_identifier_token15] = ACTIONS(2005), + [aux_sym_cmd_identifier_token16] = ACTIONS(2005), + [aux_sym_cmd_identifier_token17] = ACTIONS(2005), + [aux_sym_cmd_identifier_token18] = ACTIONS(2005), + [aux_sym_cmd_identifier_token19] = ACTIONS(2005), + [aux_sym_cmd_identifier_token20] = ACTIONS(2005), + [aux_sym_cmd_identifier_token21] = ACTIONS(2005), + [aux_sym_cmd_identifier_token22] = ACTIONS(2005), + [aux_sym_cmd_identifier_token23] = ACTIONS(2005), + [aux_sym_cmd_identifier_token24] = ACTIONS(2005), + [aux_sym_cmd_identifier_token25] = ACTIONS(2005), + [aux_sym_cmd_identifier_token26] = ACTIONS(2005), + [aux_sym_cmd_identifier_token27] = ACTIONS(2005), + [aux_sym_cmd_identifier_token28] = ACTIONS(2005), + [aux_sym_cmd_identifier_token29] = ACTIONS(2005), + [aux_sym_cmd_identifier_token30] = ACTIONS(2005), + [aux_sym_cmd_identifier_token31] = ACTIONS(2005), + [aux_sym_cmd_identifier_token32] = ACTIONS(2005), + [aux_sym_cmd_identifier_token33] = ACTIONS(2005), + [aux_sym_cmd_identifier_token34] = ACTIONS(2005), + [aux_sym_cmd_identifier_token35] = ACTIONS(2005), + [aux_sym_cmd_identifier_token36] = ACTIONS(2005), + [anon_sym_true] = ACTIONS(2007), + [anon_sym_false] = ACTIONS(2007), + [anon_sym_null] = ACTIONS(2007), + [aux_sym_cmd_identifier_token38] = ACTIONS(2005), + [aux_sym_cmd_identifier_token39] = ACTIONS(2007), + [aux_sym_cmd_identifier_token40] = ACTIONS(2007), + [anon_sym_def] = ACTIONS(2005), + [anon_sym_export_DASHenv] = ACTIONS(2005), + [anon_sym_extern] = ACTIONS(2005), + [anon_sym_module] = ACTIONS(2005), + [anon_sym_use] = ACTIONS(2005), + [anon_sym_LPAREN] = ACTIONS(2007), + [anon_sym_DOLLAR] = ACTIONS(2007), + [anon_sym_error] = ACTIONS(2005), + [anon_sym_list] = ACTIONS(2005), + [anon_sym_DASH] = ACTIONS(2005), + [anon_sym_break] = ACTIONS(2005), + [anon_sym_continue] = ACTIONS(2005), + [anon_sym_for] = ACTIONS(2005), + [anon_sym_in] = ACTIONS(2005), + [anon_sym_loop] = ACTIONS(2005), + [anon_sym_make] = ACTIONS(2005), + [anon_sym_while] = ACTIONS(2005), + [anon_sym_do] = ACTIONS(2005), + [anon_sym_if] = ACTIONS(2005), + [anon_sym_else] = ACTIONS(2005), + [anon_sym_match] = ACTIONS(2005), + [anon_sym_RBRACE] = ACTIONS(2007), + [anon_sym_try] = ACTIONS(2005), + [anon_sym_catch] = ACTIONS(2005), + [anon_sym_return] = ACTIONS(2005), + [anon_sym_source] = ACTIONS(2005), + [anon_sym_source_DASHenv] = ACTIONS(2005), + [anon_sym_register] = ACTIONS(2005), + [anon_sym_hide] = ACTIONS(2005), + [anon_sym_hide_DASHenv] = ACTIONS(2005), + [anon_sym_overlay] = ACTIONS(2005), + [anon_sym_new] = ACTIONS(2005), + [anon_sym_as] = ACTIONS(2005), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2007), + [anon_sym_DOT] = ACTIONS(2177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2007), + [aux_sym__val_number_decimal_token1] = ACTIONS(2005), + [aux_sym__val_number_decimal_token2] = ACTIONS(2007), + [aux_sym__val_number_decimal_token3] = ACTIONS(2007), + [aux_sym__val_number_decimal_token4] = ACTIONS(2007), + [aux_sym__val_number_token1] = ACTIONS(2007), + [aux_sym__val_number_token2] = ACTIONS(2007), + [aux_sym__val_number_token3] = ACTIONS(2007), + [anon_sym_DQUOTE] = ACTIONS(2007), + [sym__str_single_quotes] = ACTIONS(2007), + [sym__str_back_ticks] = ACTIONS(2007), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2007), + [anon_sym_PLUS] = ACTIONS(2005), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2007), + }, + [396] = { + [sym_cell_path] = STATE(675), + [sym_path] = STATE(631), + [sym_comment] = STATE(396), + [aux_sym_cell_path_repeat1] = STATE(456), + [anon_sym_export] = ACTIONS(2009), + [anon_sym_alias] = ACTIONS(2009), + [anon_sym_let] = ACTIONS(2009), + [anon_sym_let_DASHenv] = ACTIONS(2009), + [anon_sym_mut] = ACTIONS(2009), + [anon_sym_const] = ACTIONS(2009), + [aux_sym_cmd_identifier_token1] = ACTIONS(2009), + [aux_sym_cmd_identifier_token2] = ACTIONS(2009), + [aux_sym_cmd_identifier_token3] = ACTIONS(2009), + [aux_sym_cmd_identifier_token4] = ACTIONS(2009), + [aux_sym_cmd_identifier_token5] = ACTIONS(2009), + [aux_sym_cmd_identifier_token6] = ACTIONS(2009), + [aux_sym_cmd_identifier_token7] = ACTIONS(2009), + [aux_sym_cmd_identifier_token8] = ACTIONS(2009), + [aux_sym_cmd_identifier_token9] = ACTIONS(2009), + [aux_sym_cmd_identifier_token10] = ACTIONS(2009), + [aux_sym_cmd_identifier_token11] = ACTIONS(2009), + [aux_sym_cmd_identifier_token12] = ACTIONS(2009), + [aux_sym_cmd_identifier_token13] = ACTIONS(2009), + [aux_sym_cmd_identifier_token14] = ACTIONS(2009), + [aux_sym_cmd_identifier_token15] = ACTIONS(2009), + [aux_sym_cmd_identifier_token16] = ACTIONS(2009), + [aux_sym_cmd_identifier_token17] = ACTIONS(2009), + [aux_sym_cmd_identifier_token18] = ACTIONS(2009), + [aux_sym_cmd_identifier_token19] = ACTIONS(2009), + [aux_sym_cmd_identifier_token20] = ACTIONS(2009), + [aux_sym_cmd_identifier_token21] = ACTIONS(2009), + [aux_sym_cmd_identifier_token22] = ACTIONS(2009), + [aux_sym_cmd_identifier_token23] = ACTIONS(2009), + [aux_sym_cmd_identifier_token24] = ACTIONS(2009), + [aux_sym_cmd_identifier_token25] = ACTIONS(2009), + [aux_sym_cmd_identifier_token26] = ACTIONS(2009), + [aux_sym_cmd_identifier_token27] = ACTIONS(2009), + [aux_sym_cmd_identifier_token28] = ACTIONS(2009), + [aux_sym_cmd_identifier_token29] = ACTIONS(2009), + [aux_sym_cmd_identifier_token30] = ACTIONS(2009), + [aux_sym_cmd_identifier_token31] = ACTIONS(2009), + [aux_sym_cmd_identifier_token32] = ACTIONS(2009), + [aux_sym_cmd_identifier_token33] = ACTIONS(2009), + [aux_sym_cmd_identifier_token34] = ACTIONS(2009), + [aux_sym_cmd_identifier_token35] = ACTIONS(2009), + [aux_sym_cmd_identifier_token36] = ACTIONS(2009), + [anon_sym_true] = ACTIONS(2011), + [anon_sym_false] = ACTIONS(2011), + [anon_sym_null] = ACTIONS(2011), + [aux_sym_cmd_identifier_token38] = ACTIONS(2009), + [aux_sym_cmd_identifier_token39] = ACTIONS(2011), + [aux_sym_cmd_identifier_token40] = ACTIONS(2011), + [anon_sym_def] = ACTIONS(2009), + [anon_sym_export_DASHenv] = ACTIONS(2009), + [anon_sym_extern] = ACTIONS(2009), + [anon_sym_module] = ACTIONS(2009), + [anon_sym_use] = ACTIONS(2009), + [anon_sym_LPAREN] = ACTIONS(2011), + [anon_sym_DOLLAR] = ACTIONS(2011), + [anon_sym_error] = ACTIONS(2009), + [anon_sym_list] = ACTIONS(2009), + [anon_sym_DASH] = ACTIONS(2009), + [anon_sym_break] = ACTIONS(2009), + [anon_sym_continue] = ACTIONS(2009), + [anon_sym_for] = ACTIONS(2009), + [anon_sym_in] = ACTIONS(2009), + [anon_sym_loop] = ACTIONS(2009), + [anon_sym_make] = ACTIONS(2009), + [anon_sym_while] = ACTIONS(2009), + [anon_sym_do] = ACTIONS(2009), + [anon_sym_if] = ACTIONS(2009), + [anon_sym_else] = ACTIONS(2009), + [anon_sym_match] = ACTIONS(2009), + [anon_sym_RBRACE] = ACTIONS(2011), + [anon_sym_try] = ACTIONS(2009), + [anon_sym_catch] = ACTIONS(2009), + [anon_sym_return] = ACTIONS(2009), + [anon_sym_source] = ACTIONS(2009), + [anon_sym_source_DASHenv] = ACTIONS(2009), + [anon_sym_register] = ACTIONS(2009), + [anon_sym_hide] = ACTIONS(2009), + [anon_sym_hide_DASHenv] = ACTIONS(2009), + [anon_sym_overlay] = ACTIONS(2009), + [anon_sym_new] = ACTIONS(2009), + [anon_sym_as] = ACTIONS(2009), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2011), + [anon_sym_DOT] = ACTIONS(2177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2011), + [aux_sym__val_number_decimal_token1] = ACTIONS(2009), + [aux_sym__val_number_decimal_token2] = ACTIONS(2011), + [aux_sym__val_number_decimal_token3] = ACTIONS(2011), + [aux_sym__val_number_decimal_token4] = ACTIONS(2011), + [aux_sym__val_number_token1] = ACTIONS(2011), + [aux_sym__val_number_token2] = ACTIONS(2011), + [aux_sym__val_number_token3] = ACTIONS(2011), + [anon_sym_DQUOTE] = ACTIONS(2011), + [sym__str_single_quotes] = ACTIONS(2011), + [sym__str_back_ticks] = ACTIONS(2011), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2011), + [anon_sym_PLUS] = ACTIONS(2009), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2011), + }, + [397] = { + [sym_cell_path] = STATE(652), + [sym_path] = STATE(631), + [sym_comment] = STATE(397), + [aux_sym_cell_path_repeat1] = STATE(456), + [anon_sym_export] = ACTIONS(1893), + [anon_sym_alias] = ACTIONS(1893), + [anon_sym_let] = ACTIONS(1893), + [anon_sym_let_DASHenv] = ACTIONS(1893), + [anon_sym_mut] = ACTIONS(1893), + [anon_sym_const] = ACTIONS(1893), + [aux_sym_cmd_identifier_token1] = ACTIONS(1893), + [aux_sym_cmd_identifier_token2] = ACTIONS(1893), + [aux_sym_cmd_identifier_token3] = ACTIONS(1893), + [aux_sym_cmd_identifier_token4] = ACTIONS(1893), + [aux_sym_cmd_identifier_token5] = ACTIONS(1893), + [aux_sym_cmd_identifier_token6] = ACTIONS(1893), + [aux_sym_cmd_identifier_token7] = ACTIONS(1893), + [aux_sym_cmd_identifier_token8] = ACTIONS(1893), + [aux_sym_cmd_identifier_token9] = ACTIONS(1893), + [aux_sym_cmd_identifier_token10] = ACTIONS(1893), + [aux_sym_cmd_identifier_token11] = ACTIONS(1893), + [aux_sym_cmd_identifier_token12] = ACTIONS(1893), + [aux_sym_cmd_identifier_token13] = ACTIONS(1893), + [aux_sym_cmd_identifier_token14] = ACTIONS(1893), + [aux_sym_cmd_identifier_token15] = ACTIONS(1893), + [aux_sym_cmd_identifier_token16] = ACTIONS(1893), + [aux_sym_cmd_identifier_token17] = ACTIONS(1893), + [aux_sym_cmd_identifier_token18] = ACTIONS(1893), + [aux_sym_cmd_identifier_token19] = ACTIONS(1893), + [aux_sym_cmd_identifier_token20] = ACTIONS(1893), + [aux_sym_cmd_identifier_token21] = ACTIONS(1893), + [aux_sym_cmd_identifier_token22] = ACTIONS(1893), + [aux_sym_cmd_identifier_token23] = ACTIONS(1893), + [aux_sym_cmd_identifier_token24] = ACTIONS(1893), + [aux_sym_cmd_identifier_token25] = ACTIONS(1893), + [aux_sym_cmd_identifier_token26] = ACTIONS(1893), + [aux_sym_cmd_identifier_token27] = ACTIONS(1893), + [aux_sym_cmd_identifier_token28] = ACTIONS(1893), + [aux_sym_cmd_identifier_token29] = ACTIONS(1893), + [aux_sym_cmd_identifier_token30] = ACTIONS(1893), + [aux_sym_cmd_identifier_token31] = ACTIONS(1893), + [aux_sym_cmd_identifier_token32] = ACTIONS(1893), + [aux_sym_cmd_identifier_token33] = ACTIONS(1893), + [aux_sym_cmd_identifier_token34] = ACTIONS(1893), + [aux_sym_cmd_identifier_token35] = ACTIONS(1893), + [aux_sym_cmd_identifier_token36] = ACTIONS(1893), + [anon_sym_true] = ACTIONS(1895), + [anon_sym_false] = ACTIONS(1895), + [anon_sym_null] = ACTIONS(1895), + [aux_sym_cmd_identifier_token38] = ACTIONS(1893), + [aux_sym_cmd_identifier_token39] = ACTIONS(1895), + [aux_sym_cmd_identifier_token40] = ACTIONS(1895), + [anon_sym_def] = ACTIONS(1893), + [anon_sym_export_DASHenv] = ACTIONS(1893), + [anon_sym_extern] = ACTIONS(1893), + [anon_sym_module] = ACTIONS(1893), + [anon_sym_use] = ACTIONS(1893), + [anon_sym_LPAREN] = ACTIONS(1895), + [anon_sym_DOLLAR] = ACTIONS(1895), + [anon_sym_error] = ACTIONS(1893), + [anon_sym_list] = ACTIONS(1893), + [anon_sym_DASH] = ACTIONS(1893), + [anon_sym_break] = ACTIONS(1893), + [anon_sym_continue] = ACTIONS(1893), + [anon_sym_for] = ACTIONS(1893), + [anon_sym_in] = ACTIONS(1893), + [anon_sym_loop] = ACTIONS(1893), + [anon_sym_make] = ACTIONS(1893), + [anon_sym_while] = ACTIONS(1893), + [anon_sym_do] = ACTIONS(1893), + [anon_sym_if] = ACTIONS(1893), + [anon_sym_else] = ACTIONS(1893), + [anon_sym_match] = ACTIONS(1893), + [anon_sym_RBRACE] = ACTIONS(1895), + [anon_sym_try] = ACTIONS(1893), + [anon_sym_catch] = ACTIONS(1893), + [anon_sym_return] = ACTIONS(1893), + [anon_sym_source] = ACTIONS(1893), + [anon_sym_source_DASHenv] = ACTIONS(1893), + [anon_sym_register] = ACTIONS(1893), + [anon_sym_hide] = ACTIONS(1893), + [anon_sym_hide_DASHenv] = ACTIONS(1893), + [anon_sym_overlay] = ACTIONS(1893), + [anon_sym_new] = ACTIONS(1893), + [anon_sym_as] = ACTIONS(1893), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1895), + [anon_sym_DOT] = ACTIONS(2177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1895), + [aux_sym__val_number_decimal_token1] = ACTIONS(1893), + [aux_sym__val_number_decimal_token2] = ACTIONS(1895), + [aux_sym__val_number_decimal_token3] = ACTIONS(1895), + [aux_sym__val_number_decimal_token4] = ACTIONS(1895), + [aux_sym__val_number_token1] = ACTIONS(1895), + [aux_sym__val_number_token2] = ACTIONS(1895), + [aux_sym__val_number_token3] = ACTIONS(1895), + [anon_sym_DQUOTE] = ACTIONS(1895), + [sym__str_single_quotes] = ACTIONS(1895), + [sym__str_back_ticks] = ACTIONS(1895), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1895), + [anon_sym_PLUS] = ACTIONS(1893), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1895), + }, + [398] = { + [sym_cell_path] = STATE(676), + [sym_path] = STATE(631), + [sym_comment] = STATE(398), + [aux_sym_cell_path_repeat1] = STATE(456), + [anon_sym_export] = ACTIONS(2013), + [anon_sym_alias] = ACTIONS(2013), + [anon_sym_let] = ACTIONS(2013), + [anon_sym_let_DASHenv] = ACTIONS(2013), + [anon_sym_mut] = ACTIONS(2013), + [anon_sym_const] = ACTIONS(2013), + [aux_sym_cmd_identifier_token1] = ACTIONS(2013), + [aux_sym_cmd_identifier_token2] = ACTIONS(2013), + [aux_sym_cmd_identifier_token3] = ACTIONS(2013), + [aux_sym_cmd_identifier_token4] = ACTIONS(2013), + [aux_sym_cmd_identifier_token5] = ACTIONS(2013), + [aux_sym_cmd_identifier_token6] = ACTIONS(2013), + [aux_sym_cmd_identifier_token7] = ACTIONS(2013), + [aux_sym_cmd_identifier_token8] = ACTIONS(2013), + [aux_sym_cmd_identifier_token9] = ACTIONS(2013), + [aux_sym_cmd_identifier_token10] = ACTIONS(2013), + [aux_sym_cmd_identifier_token11] = ACTIONS(2013), + [aux_sym_cmd_identifier_token12] = ACTIONS(2013), + [aux_sym_cmd_identifier_token13] = ACTIONS(2013), + [aux_sym_cmd_identifier_token14] = ACTIONS(2013), + [aux_sym_cmd_identifier_token15] = ACTIONS(2013), + [aux_sym_cmd_identifier_token16] = ACTIONS(2013), + [aux_sym_cmd_identifier_token17] = ACTIONS(2013), + [aux_sym_cmd_identifier_token18] = ACTIONS(2013), + [aux_sym_cmd_identifier_token19] = ACTIONS(2013), + [aux_sym_cmd_identifier_token20] = ACTIONS(2013), + [aux_sym_cmd_identifier_token21] = ACTIONS(2013), + [aux_sym_cmd_identifier_token22] = ACTIONS(2013), + [aux_sym_cmd_identifier_token23] = ACTIONS(2013), + [aux_sym_cmd_identifier_token24] = ACTIONS(2013), + [aux_sym_cmd_identifier_token25] = ACTIONS(2013), + [aux_sym_cmd_identifier_token26] = ACTIONS(2013), + [aux_sym_cmd_identifier_token27] = ACTIONS(2013), + [aux_sym_cmd_identifier_token28] = ACTIONS(2013), + [aux_sym_cmd_identifier_token29] = ACTIONS(2013), + [aux_sym_cmd_identifier_token30] = ACTIONS(2013), + [aux_sym_cmd_identifier_token31] = ACTIONS(2013), + [aux_sym_cmd_identifier_token32] = ACTIONS(2013), + [aux_sym_cmd_identifier_token33] = ACTIONS(2013), + [aux_sym_cmd_identifier_token34] = ACTIONS(2013), + [aux_sym_cmd_identifier_token35] = ACTIONS(2013), + [aux_sym_cmd_identifier_token36] = ACTIONS(2013), [anon_sym_true] = ACTIONS(2015), [anon_sym_false] = ACTIONS(2015), [anon_sym_null] = ACTIONS(2015), - [aux_sym_cmd_identifier_token38] = ACTIONS(2015), + [aux_sym_cmd_identifier_token38] = ACTIONS(2013), [aux_sym_cmd_identifier_token39] = ACTIONS(2015), [aux_sym_cmd_identifier_token40] = ACTIONS(2015), - [anon_sym_def] = ACTIONS(2015), - [anon_sym_export_DASHenv] = ACTIONS(2015), - [anon_sym_extern] = ACTIONS(2015), - [anon_sym_module] = ACTIONS(2015), - [anon_sym_use] = ACTIONS(2015), + [anon_sym_def] = ACTIONS(2013), + [anon_sym_export_DASHenv] = ACTIONS(2013), + [anon_sym_extern] = ACTIONS(2013), + [anon_sym_module] = ACTIONS(2013), + [anon_sym_use] = ACTIONS(2013), [anon_sym_LPAREN] = ACTIONS(2015), [anon_sym_DOLLAR] = ACTIONS(2015), - [anon_sym_error] = ACTIONS(2015), - [anon_sym_list] = ACTIONS(2015), - [anon_sym_DASH] = ACTIONS(2015), - [anon_sym_break] = ACTIONS(2015), - [anon_sym_continue] = ACTIONS(2015), - [anon_sym_for] = ACTIONS(2015), - [anon_sym_in] = ACTIONS(2015), - [anon_sym_loop] = ACTIONS(2015), - [anon_sym_make] = ACTIONS(2015), - [anon_sym_while] = ACTIONS(2015), - [anon_sym_do] = ACTIONS(2015), - [anon_sym_if] = ACTIONS(2015), - [anon_sym_else] = ACTIONS(2015), - [anon_sym_match] = ACTIONS(2015), + [anon_sym_error] = ACTIONS(2013), + [anon_sym_list] = ACTIONS(2013), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_break] = ACTIONS(2013), + [anon_sym_continue] = ACTIONS(2013), + [anon_sym_for] = ACTIONS(2013), + [anon_sym_in] = ACTIONS(2013), + [anon_sym_loop] = ACTIONS(2013), + [anon_sym_make] = ACTIONS(2013), + [anon_sym_while] = ACTIONS(2013), + [anon_sym_do] = ACTIONS(2013), + [anon_sym_if] = ACTIONS(2013), + [anon_sym_else] = ACTIONS(2013), + [anon_sym_match] = ACTIONS(2013), [anon_sym_RBRACE] = ACTIONS(2015), - [anon_sym_try] = ACTIONS(2015), - [anon_sym_catch] = ACTIONS(2015), - [anon_sym_return] = ACTIONS(2015), - [anon_sym_source] = ACTIONS(2015), - [anon_sym_source_DASHenv] = ACTIONS(2015), - [anon_sym_register] = ACTIONS(2015), - [anon_sym_hide] = ACTIONS(2015), - [anon_sym_hide_DASHenv] = ACTIONS(2015), - [anon_sym_overlay] = ACTIONS(2015), - [anon_sym_new] = ACTIONS(2015), - [anon_sym_as] = ACTIONS(2015), - [anon_sym_LPAREN2] = ACTIONS(1562), + [anon_sym_try] = ACTIONS(2013), + [anon_sym_catch] = ACTIONS(2013), + [anon_sym_return] = ACTIONS(2013), + [anon_sym_source] = ACTIONS(2013), + [anon_sym_source_DASHenv] = ACTIONS(2013), + [anon_sym_register] = ACTIONS(2013), + [anon_sym_hide] = ACTIONS(2013), + [anon_sym_hide_DASHenv] = ACTIONS(2013), + [anon_sym_overlay] = ACTIONS(2013), + [anon_sym_new] = ACTIONS(2013), + [anon_sym_as] = ACTIONS(2013), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2015), + [anon_sym_DOT] = ACTIONS(2177), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2015), - [aux_sym__val_number_decimal_token1] = ACTIONS(2015), + [aux_sym__val_number_decimal_token1] = ACTIONS(2013), [aux_sym__val_number_decimal_token2] = ACTIONS(2015), [aux_sym__val_number_decimal_token3] = ACTIONS(2015), [aux_sym__val_number_decimal_token4] = ACTIONS(2015), @@ -125972,1338 +122640,1676 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_single_quotes] = ACTIONS(2015), [sym__str_back_ticks] = ACTIONS(2015), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2015), - [sym__entry_separator] = ACTIONS(2017), - [anon_sym_PLUS] = ACTIONS(2015), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_PLUS] = ACTIONS(2013), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2015), }, - [445] = { - [sym_comment] = STATE(445), - [anon_sym_export] = ACTIONS(1675), - [anon_sym_alias] = ACTIONS(1675), - [anon_sym_let] = ACTIONS(1675), - [anon_sym_let_DASHenv] = ACTIONS(1675), - [anon_sym_mut] = ACTIONS(1675), - [anon_sym_const] = ACTIONS(1675), - [aux_sym_cmd_identifier_token1] = ACTIONS(1675), - [aux_sym_cmd_identifier_token2] = ACTIONS(1675), - [aux_sym_cmd_identifier_token3] = ACTIONS(1675), - [aux_sym_cmd_identifier_token4] = ACTIONS(1675), - [aux_sym_cmd_identifier_token5] = ACTIONS(1675), - [aux_sym_cmd_identifier_token6] = ACTIONS(1675), - [aux_sym_cmd_identifier_token7] = ACTIONS(1675), - [aux_sym_cmd_identifier_token8] = ACTIONS(1675), - [aux_sym_cmd_identifier_token9] = ACTIONS(1675), - [aux_sym_cmd_identifier_token10] = ACTIONS(1675), - [aux_sym_cmd_identifier_token11] = ACTIONS(1675), - [aux_sym_cmd_identifier_token12] = ACTIONS(1675), - [aux_sym_cmd_identifier_token13] = ACTIONS(1675), - [aux_sym_cmd_identifier_token14] = ACTIONS(1675), - [aux_sym_cmd_identifier_token15] = ACTIONS(1675), - [aux_sym_cmd_identifier_token16] = ACTIONS(1675), - [aux_sym_cmd_identifier_token17] = ACTIONS(1675), - [aux_sym_cmd_identifier_token18] = ACTIONS(1675), - [aux_sym_cmd_identifier_token19] = ACTIONS(1675), - [aux_sym_cmd_identifier_token20] = ACTIONS(1675), - [aux_sym_cmd_identifier_token21] = ACTIONS(1675), - [aux_sym_cmd_identifier_token22] = ACTIONS(1675), - [aux_sym_cmd_identifier_token23] = ACTIONS(1675), - [aux_sym_cmd_identifier_token24] = ACTIONS(1675), - [aux_sym_cmd_identifier_token25] = ACTIONS(1675), - [aux_sym_cmd_identifier_token26] = ACTIONS(1675), - [aux_sym_cmd_identifier_token27] = ACTIONS(1675), - [aux_sym_cmd_identifier_token28] = ACTIONS(1675), - [aux_sym_cmd_identifier_token29] = ACTIONS(1675), - [aux_sym_cmd_identifier_token30] = ACTIONS(1675), - [aux_sym_cmd_identifier_token31] = ACTIONS(1675), - [aux_sym_cmd_identifier_token32] = ACTIONS(1675), - [aux_sym_cmd_identifier_token33] = ACTIONS(1675), - [aux_sym_cmd_identifier_token34] = ACTIONS(1675), - [aux_sym_cmd_identifier_token35] = ACTIONS(1675), - [aux_sym_cmd_identifier_token36] = ACTIONS(1675), - [anon_sym_true] = ACTIONS(1677), - [anon_sym_false] = ACTIONS(1677), - [anon_sym_null] = ACTIONS(1677), - [aux_sym_cmd_identifier_token38] = ACTIONS(1675), - [aux_sym_cmd_identifier_token39] = ACTIONS(1677), - [aux_sym_cmd_identifier_token40] = ACTIONS(1677), - [anon_sym_def] = ACTIONS(1675), - [anon_sym_export_DASHenv] = ACTIONS(1675), - [anon_sym_extern] = ACTIONS(1675), - [anon_sym_module] = ACTIONS(1675), - [anon_sym_use] = ACTIONS(1675), - [anon_sym_LPAREN] = ACTIONS(1677), - [anon_sym_DOLLAR] = ACTIONS(1677), - [anon_sym_error] = ACTIONS(1675), - [anon_sym_list] = ACTIONS(1675), - [anon_sym_DASH] = ACTIONS(1675), - [anon_sym_break] = ACTIONS(1675), - [anon_sym_continue] = ACTIONS(1675), - [anon_sym_for] = ACTIONS(1675), - [anon_sym_in] = ACTIONS(1675), - [anon_sym_loop] = ACTIONS(1675), - [anon_sym_make] = ACTIONS(1675), - [anon_sym_while] = ACTIONS(1675), - [anon_sym_do] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1675), - [anon_sym_else] = ACTIONS(1675), - [anon_sym_match] = ACTIONS(1675), - [anon_sym_RBRACE] = ACTIONS(1677), - [anon_sym_try] = ACTIONS(1675), - [anon_sym_catch] = ACTIONS(1675), - [anon_sym_return] = ACTIONS(1675), - [anon_sym_source] = ACTIONS(1675), - [anon_sym_source_DASHenv] = ACTIONS(1675), - [anon_sym_register] = ACTIONS(1675), - [anon_sym_hide] = ACTIONS(1675), - [anon_sym_hide_DASHenv] = ACTIONS(1675), - [anon_sym_overlay] = ACTIONS(1675), - [anon_sym_new] = ACTIONS(1675), - [anon_sym_as] = ACTIONS(1675), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1677), - [anon_sym_DOT_DOT2] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1677), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1677), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1677), - [aux_sym__val_number_decimal_token1] = ACTIONS(1675), - [aux_sym__val_number_decimal_token2] = ACTIONS(1677), - [aux_sym__val_number_decimal_token3] = ACTIONS(1677), - [aux_sym__val_number_decimal_token4] = ACTIONS(1677), - [aux_sym__val_number_token1] = ACTIONS(1677), - [aux_sym__val_number_token2] = ACTIONS(1677), - [aux_sym__val_number_token3] = ACTIONS(1677), - [anon_sym_DQUOTE] = ACTIONS(1677), - [sym__str_single_quotes] = ACTIONS(1677), - [sym__str_back_ticks] = ACTIONS(1677), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1677), - [anon_sym_PLUS] = ACTIONS(1675), - [anon_sym_POUND] = ACTIONS(247), + [399] = { + [sym_cell_path] = STATE(677), + [sym_path] = STATE(631), + [sym_comment] = STATE(399), + [aux_sym_cell_path_repeat1] = STATE(456), + [anon_sym_export] = ACTIONS(2017), + [anon_sym_alias] = ACTIONS(2017), + [anon_sym_let] = ACTIONS(2017), + [anon_sym_let_DASHenv] = ACTIONS(2017), + [anon_sym_mut] = ACTIONS(2017), + [anon_sym_const] = ACTIONS(2017), + [aux_sym_cmd_identifier_token1] = ACTIONS(2017), + [aux_sym_cmd_identifier_token2] = ACTIONS(2017), + [aux_sym_cmd_identifier_token3] = ACTIONS(2017), + [aux_sym_cmd_identifier_token4] = ACTIONS(2017), + [aux_sym_cmd_identifier_token5] = ACTIONS(2017), + [aux_sym_cmd_identifier_token6] = ACTIONS(2017), + [aux_sym_cmd_identifier_token7] = ACTIONS(2017), + [aux_sym_cmd_identifier_token8] = ACTIONS(2017), + [aux_sym_cmd_identifier_token9] = ACTIONS(2017), + [aux_sym_cmd_identifier_token10] = ACTIONS(2017), + [aux_sym_cmd_identifier_token11] = ACTIONS(2017), + [aux_sym_cmd_identifier_token12] = ACTIONS(2017), + [aux_sym_cmd_identifier_token13] = ACTIONS(2017), + [aux_sym_cmd_identifier_token14] = ACTIONS(2017), + [aux_sym_cmd_identifier_token15] = ACTIONS(2017), + [aux_sym_cmd_identifier_token16] = ACTIONS(2017), + [aux_sym_cmd_identifier_token17] = ACTIONS(2017), + [aux_sym_cmd_identifier_token18] = ACTIONS(2017), + [aux_sym_cmd_identifier_token19] = ACTIONS(2017), + [aux_sym_cmd_identifier_token20] = ACTIONS(2017), + [aux_sym_cmd_identifier_token21] = ACTIONS(2017), + [aux_sym_cmd_identifier_token22] = ACTIONS(2017), + [aux_sym_cmd_identifier_token23] = ACTIONS(2017), + [aux_sym_cmd_identifier_token24] = ACTIONS(2017), + [aux_sym_cmd_identifier_token25] = ACTIONS(2017), + [aux_sym_cmd_identifier_token26] = ACTIONS(2017), + [aux_sym_cmd_identifier_token27] = ACTIONS(2017), + [aux_sym_cmd_identifier_token28] = ACTIONS(2017), + [aux_sym_cmd_identifier_token29] = ACTIONS(2017), + [aux_sym_cmd_identifier_token30] = ACTIONS(2017), + [aux_sym_cmd_identifier_token31] = ACTIONS(2017), + [aux_sym_cmd_identifier_token32] = ACTIONS(2017), + [aux_sym_cmd_identifier_token33] = ACTIONS(2017), + [aux_sym_cmd_identifier_token34] = ACTIONS(2017), + [aux_sym_cmd_identifier_token35] = ACTIONS(2017), + [aux_sym_cmd_identifier_token36] = ACTIONS(2017), + [anon_sym_true] = ACTIONS(2019), + [anon_sym_false] = ACTIONS(2019), + [anon_sym_null] = ACTIONS(2019), + [aux_sym_cmd_identifier_token38] = ACTIONS(2017), + [aux_sym_cmd_identifier_token39] = ACTIONS(2019), + [aux_sym_cmd_identifier_token40] = ACTIONS(2019), + [anon_sym_def] = ACTIONS(2017), + [anon_sym_export_DASHenv] = ACTIONS(2017), + [anon_sym_extern] = ACTIONS(2017), + [anon_sym_module] = ACTIONS(2017), + [anon_sym_use] = ACTIONS(2017), + [anon_sym_LPAREN] = ACTIONS(2019), + [anon_sym_DOLLAR] = ACTIONS(2019), + [anon_sym_error] = ACTIONS(2017), + [anon_sym_list] = ACTIONS(2017), + [anon_sym_DASH] = ACTIONS(2017), + [anon_sym_break] = ACTIONS(2017), + [anon_sym_continue] = ACTIONS(2017), + [anon_sym_for] = ACTIONS(2017), + [anon_sym_in] = ACTIONS(2017), + [anon_sym_loop] = ACTIONS(2017), + [anon_sym_make] = ACTIONS(2017), + [anon_sym_while] = ACTIONS(2017), + [anon_sym_do] = ACTIONS(2017), + [anon_sym_if] = ACTIONS(2017), + [anon_sym_else] = ACTIONS(2017), + [anon_sym_match] = ACTIONS(2017), + [anon_sym_RBRACE] = ACTIONS(2019), + [anon_sym_try] = ACTIONS(2017), + [anon_sym_catch] = ACTIONS(2017), + [anon_sym_return] = ACTIONS(2017), + [anon_sym_source] = ACTIONS(2017), + [anon_sym_source_DASHenv] = ACTIONS(2017), + [anon_sym_register] = ACTIONS(2017), + [anon_sym_hide] = ACTIONS(2017), + [anon_sym_hide_DASHenv] = ACTIONS(2017), + [anon_sym_overlay] = ACTIONS(2017), + [anon_sym_new] = ACTIONS(2017), + [anon_sym_as] = ACTIONS(2017), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2019), + [anon_sym_DOT] = ACTIONS(2177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2019), + [aux_sym__val_number_decimal_token1] = ACTIONS(2017), + [aux_sym__val_number_decimal_token2] = ACTIONS(2019), + [aux_sym__val_number_decimal_token3] = ACTIONS(2019), + [aux_sym__val_number_decimal_token4] = ACTIONS(2019), + [aux_sym__val_number_token1] = ACTIONS(2019), + [aux_sym__val_number_token2] = ACTIONS(2019), + [aux_sym__val_number_token3] = ACTIONS(2019), + [anon_sym_DQUOTE] = ACTIONS(2019), + [sym__str_single_quotes] = ACTIONS(2019), + [sym__str_back_ticks] = ACTIONS(2019), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2019), + [anon_sym_PLUS] = ACTIONS(2017), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2019), }, - [446] = { - [sym_comment] = STATE(446), - [anon_sym_export] = ACTIONS(2141), - [anon_sym_alias] = ACTIONS(2141), - [anon_sym_let] = ACTIONS(2141), - [anon_sym_let_DASHenv] = ACTIONS(2141), - [anon_sym_mut] = ACTIONS(2141), - [anon_sym_const] = ACTIONS(2141), - [aux_sym_cmd_identifier_token1] = ACTIONS(2141), - [aux_sym_cmd_identifier_token2] = ACTIONS(2141), - [aux_sym_cmd_identifier_token3] = ACTIONS(2141), - [aux_sym_cmd_identifier_token4] = ACTIONS(2141), - [aux_sym_cmd_identifier_token5] = ACTIONS(2141), - [aux_sym_cmd_identifier_token6] = ACTIONS(2141), - [aux_sym_cmd_identifier_token7] = ACTIONS(2141), - [aux_sym_cmd_identifier_token8] = ACTIONS(2141), - [aux_sym_cmd_identifier_token9] = ACTIONS(2141), - [aux_sym_cmd_identifier_token10] = ACTIONS(2141), - [aux_sym_cmd_identifier_token11] = ACTIONS(2141), - [aux_sym_cmd_identifier_token12] = ACTIONS(2141), - [aux_sym_cmd_identifier_token13] = ACTIONS(2141), - [aux_sym_cmd_identifier_token14] = ACTIONS(2141), - [aux_sym_cmd_identifier_token15] = ACTIONS(2141), - [aux_sym_cmd_identifier_token16] = ACTIONS(2141), - [aux_sym_cmd_identifier_token17] = ACTIONS(2141), - [aux_sym_cmd_identifier_token18] = ACTIONS(2141), - [aux_sym_cmd_identifier_token19] = ACTIONS(2141), - [aux_sym_cmd_identifier_token20] = ACTIONS(2141), - [aux_sym_cmd_identifier_token21] = ACTIONS(2141), - [aux_sym_cmd_identifier_token22] = ACTIONS(2141), - [aux_sym_cmd_identifier_token23] = ACTIONS(2141), - [aux_sym_cmd_identifier_token24] = ACTIONS(2141), - [aux_sym_cmd_identifier_token25] = ACTIONS(2141), - [aux_sym_cmd_identifier_token26] = ACTIONS(2141), - [aux_sym_cmd_identifier_token27] = ACTIONS(2141), - [aux_sym_cmd_identifier_token28] = ACTIONS(2141), - [aux_sym_cmd_identifier_token29] = ACTIONS(2141), - [aux_sym_cmd_identifier_token30] = ACTIONS(2141), - [aux_sym_cmd_identifier_token31] = ACTIONS(2141), - [aux_sym_cmd_identifier_token32] = ACTIONS(2141), - [aux_sym_cmd_identifier_token33] = ACTIONS(2141), - [aux_sym_cmd_identifier_token34] = ACTIONS(2141), - [aux_sym_cmd_identifier_token35] = ACTIONS(2141), - [aux_sym_cmd_identifier_token36] = ACTIONS(2141), - [anon_sym_true] = ACTIONS(2143), - [anon_sym_false] = ACTIONS(2143), - [anon_sym_null] = ACTIONS(2143), - [aux_sym_cmd_identifier_token38] = ACTIONS(2141), - [aux_sym_cmd_identifier_token39] = ACTIONS(2143), - [aux_sym_cmd_identifier_token40] = ACTIONS(2143), - [anon_sym_def] = ACTIONS(2141), - [anon_sym_export_DASHenv] = ACTIONS(2141), - [anon_sym_extern] = ACTIONS(2141), - [anon_sym_module] = ACTIONS(2141), - [anon_sym_use] = ACTIONS(2141), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_DOLLAR] = ACTIONS(2143), - [anon_sym_error] = ACTIONS(2141), - [anon_sym_list] = ACTIONS(2141), - [anon_sym_DASH] = ACTIONS(2141), - [anon_sym_break] = ACTIONS(2141), - [anon_sym_continue] = ACTIONS(2141), - [anon_sym_for] = ACTIONS(2141), - [anon_sym_in] = ACTIONS(2141), - [anon_sym_loop] = ACTIONS(2141), - [anon_sym_make] = ACTIONS(2141), - [anon_sym_while] = ACTIONS(2141), - [anon_sym_do] = ACTIONS(2141), - [anon_sym_if] = ACTIONS(2141), - [anon_sym_else] = ACTIONS(2141), - [anon_sym_match] = ACTIONS(2141), - [anon_sym_RBRACE] = ACTIONS(2143), - [anon_sym_try] = ACTIONS(2141), - [anon_sym_catch] = ACTIONS(2141), - [anon_sym_return] = ACTIONS(2141), - [anon_sym_source] = ACTIONS(2141), - [anon_sym_source_DASHenv] = ACTIONS(2141), - [anon_sym_register] = ACTIONS(2141), - [anon_sym_hide] = ACTIONS(2141), - [anon_sym_hide_DASHenv] = ACTIONS(2141), - [anon_sym_overlay] = ACTIONS(2141), - [anon_sym_new] = ACTIONS(2141), - [anon_sym_as] = ACTIONS(2141), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2143), - [anon_sym_DOT_DOT2] = ACTIONS(2141), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2143), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2143), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2143), - [aux_sym__val_number_decimal_token1] = ACTIONS(2141), - [aux_sym__val_number_decimal_token2] = ACTIONS(2143), - [aux_sym__val_number_decimal_token3] = ACTIONS(2143), - [aux_sym__val_number_decimal_token4] = ACTIONS(2143), - [aux_sym__val_number_token1] = ACTIONS(2143), - [aux_sym__val_number_token2] = ACTIONS(2143), - [aux_sym__val_number_token3] = ACTIONS(2143), - [anon_sym_DQUOTE] = ACTIONS(2143), - [sym__str_single_quotes] = ACTIONS(2143), - [sym__str_back_ticks] = ACTIONS(2143), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2143), - [anon_sym_PLUS] = ACTIONS(2141), - [anon_sym_POUND] = ACTIONS(247), + [400] = { + [sym_cell_path] = STATE(678), + [sym_path] = STATE(631), + [sym_comment] = STATE(400), + [aux_sym_cell_path_repeat1] = STATE(456), + [anon_sym_export] = ACTIONS(2021), + [anon_sym_alias] = ACTIONS(2021), + [anon_sym_let] = ACTIONS(2021), + [anon_sym_let_DASHenv] = ACTIONS(2021), + [anon_sym_mut] = ACTIONS(2021), + [anon_sym_const] = ACTIONS(2021), + [aux_sym_cmd_identifier_token1] = ACTIONS(2021), + [aux_sym_cmd_identifier_token2] = ACTIONS(2021), + [aux_sym_cmd_identifier_token3] = ACTIONS(2021), + [aux_sym_cmd_identifier_token4] = ACTIONS(2021), + [aux_sym_cmd_identifier_token5] = ACTIONS(2021), + [aux_sym_cmd_identifier_token6] = ACTIONS(2021), + [aux_sym_cmd_identifier_token7] = ACTIONS(2021), + [aux_sym_cmd_identifier_token8] = ACTIONS(2021), + [aux_sym_cmd_identifier_token9] = ACTIONS(2021), + [aux_sym_cmd_identifier_token10] = ACTIONS(2021), + [aux_sym_cmd_identifier_token11] = ACTIONS(2021), + [aux_sym_cmd_identifier_token12] = ACTIONS(2021), + [aux_sym_cmd_identifier_token13] = ACTIONS(2021), + [aux_sym_cmd_identifier_token14] = ACTIONS(2021), + [aux_sym_cmd_identifier_token15] = ACTIONS(2021), + [aux_sym_cmd_identifier_token16] = ACTIONS(2021), + [aux_sym_cmd_identifier_token17] = ACTIONS(2021), + [aux_sym_cmd_identifier_token18] = ACTIONS(2021), + [aux_sym_cmd_identifier_token19] = ACTIONS(2021), + [aux_sym_cmd_identifier_token20] = ACTIONS(2021), + [aux_sym_cmd_identifier_token21] = ACTIONS(2021), + [aux_sym_cmd_identifier_token22] = ACTIONS(2021), + [aux_sym_cmd_identifier_token23] = ACTIONS(2021), + [aux_sym_cmd_identifier_token24] = ACTIONS(2021), + [aux_sym_cmd_identifier_token25] = ACTIONS(2021), + [aux_sym_cmd_identifier_token26] = ACTIONS(2021), + [aux_sym_cmd_identifier_token27] = ACTIONS(2021), + [aux_sym_cmd_identifier_token28] = ACTIONS(2021), + [aux_sym_cmd_identifier_token29] = ACTIONS(2021), + [aux_sym_cmd_identifier_token30] = ACTIONS(2021), + [aux_sym_cmd_identifier_token31] = ACTIONS(2021), + [aux_sym_cmd_identifier_token32] = ACTIONS(2021), + [aux_sym_cmd_identifier_token33] = ACTIONS(2021), + [aux_sym_cmd_identifier_token34] = ACTIONS(2021), + [aux_sym_cmd_identifier_token35] = ACTIONS(2021), + [aux_sym_cmd_identifier_token36] = ACTIONS(2021), + [anon_sym_true] = ACTIONS(2023), + [anon_sym_false] = ACTIONS(2023), + [anon_sym_null] = ACTIONS(2023), + [aux_sym_cmd_identifier_token38] = ACTIONS(2021), + [aux_sym_cmd_identifier_token39] = ACTIONS(2023), + [aux_sym_cmd_identifier_token40] = ACTIONS(2023), + [anon_sym_def] = ACTIONS(2021), + [anon_sym_export_DASHenv] = ACTIONS(2021), + [anon_sym_extern] = ACTIONS(2021), + [anon_sym_module] = ACTIONS(2021), + [anon_sym_use] = ACTIONS(2021), + [anon_sym_LPAREN] = ACTIONS(2023), + [anon_sym_DOLLAR] = ACTIONS(2023), + [anon_sym_error] = ACTIONS(2021), + [anon_sym_list] = ACTIONS(2021), + [anon_sym_DASH] = ACTIONS(2021), + [anon_sym_break] = ACTIONS(2021), + [anon_sym_continue] = ACTIONS(2021), + [anon_sym_for] = ACTIONS(2021), + [anon_sym_in] = ACTIONS(2021), + [anon_sym_loop] = ACTIONS(2021), + [anon_sym_make] = ACTIONS(2021), + [anon_sym_while] = ACTIONS(2021), + [anon_sym_do] = ACTIONS(2021), + [anon_sym_if] = ACTIONS(2021), + [anon_sym_else] = ACTIONS(2021), + [anon_sym_match] = ACTIONS(2021), + [anon_sym_RBRACE] = ACTIONS(2023), + [anon_sym_try] = ACTIONS(2021), + [anon_sym_catch] = ACTIONS(2021), + [anon_sym_return] = ACTIONS(2021), + [anon_sym_source] = ACTIONS(2021), + [anon_sym_source_DASHenv] = ACTIONS(2021), + [anon_sym_register] = ACTIONS(2021), + [anon_sym_hide] = ACTIONS(2021), + [anon_sym_hide_DASHenv] = ACTIONS(2021), + [anon_sym_overlay] = ACTIONS(2021), + [anon_sym_new] = ACTIONS(2021), + [anon_sym_as] = ACTIONS(2021), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2023), + [anon_sym_DOT] = ACTIONS(2177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2023), + [aux_sym__val_number_decimal_token1] = ACTIONS(2021), + [aux_sym__val_number_decimal_token2] = ACTIONS(2023), + [aux_sym__val_number_decimal_token3] = ACTIONS(2023), + [aux_sym__val_number_decimal_token4] = ACTIONS(2023), + [aux_sym__val_number_token1] = ACTIONS(2023), + [aux_sym__val_number_token2] = ACTIONS(2023), + [aux_sym__val_number_token3] = ACTIONS(2023), + [anon_sym_DQUOTE] = ACTIONS(2023), + [sym__str_single_quotes] = ACTIONS(2023), + [sym__str_back_ticks] = ACTIONS(2023), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2023), + [anon_sym_PLUS] = ACTIONS(2021), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2023), }, - [447] = { - [sym_expr_parenthesized] = STATE(4217), - [sym__spread_parenthesized] = STATE(4750), - [sym_val_range] = STATE(4769), - [sym__val_range] = STATE(7527), - [sym__val_range_with_end] = STATE(7302), - [sym__value] = STATE(4769), - [sym_val_nothing] = STATE(4764), - [sym_val_bool] = STATE(4456), - [sym__spread_variable] = STATE(4708), - [sym_val_variable] = STATE(4303), - [sym_val_number] = STATE(4764), - [sym__val_number_decimal] = STATE(3935), - [sym__val_number] = STATE(4795), - [sym_val_duration] = STATE(4764), - [sym_val_filesize] = STATE(4764), - [sym_val_binary] = STATE(4764), - [sym_val_string] = STATE(4764), - [sym__str_double_quotes] = STATE(4501), - [sym_val_interpolated] = STATE(4764), - [sym__inter_single_quotes] = STATE(4767), - [sym__inter_double_quotes] = STATE(4768), - [sym_val_list] = STATE(4764), - [sym__spread_list] = STATE(4750), - [sym_val_record] = STATE(4764), - [sym_val_table] = STATE(4764), - [sym_val_closure] = STATE(4764), - [sym__cmd_arg] = STATE(4903), - [sym_redirection] = STATE(4650), - [sym__flag] = STATE(4677), - [sym_short_flag] = STATE(4716), - [sym_long_flag] = STATE(4716), - [sym_unquoted] = STATE(4486), - [sym__unquoted_with_expr] = STATE(4763), - [sym__unquoted_anonymous_prefix] = STATE(6878), - [sym_comment] = STATE(447), - [anon_sym_true] = ACTIONS(2037), - [anon_sym_false] = ACTIONS(2037), - [anon_sym_null] = ACTIONS(2039), - [aux_sym_cmd_identifier_token38] = ACTIONS(2041), - [aux_sym_cmd_identifier_token39] = ACTIONS(2041), - [aux_sym_cmd_identifier_token40] = ACTIONS(2041), - [sym__newline] = ACTIONS(2148), - [sym__space] = ACTIONS(2150), - [anon_sym_SEMI] = ACTIONS(2148), - [anon_sym_PIPE] = ACTIONS(2148), - [anon_sym_err_GT_PIPE] = ACTIONS(2148), - [anon_sym_out_GT_PIPE] = ACTIONS(2148), - [anon_sym_e_GT_PIPE] = ACTIONS(2148), - [anon_sym_o_GT_PIPE] = ACTIONS(2148), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2148), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2148), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2148), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2148), - [anon_sym_LBRACK] = ACTIONS(2047), + [401] = { + [sym_cell_path] = STATE(679), + [sym_path] = STATE(631), + [sym_comment] = STATE(401), + [aux_sym_cell_path_repeat1] = STATE(456), + [anon_sym_export] = ACTIONS(2043), + [anon_sym_alias] = ACTIONS(2043), + [anon_sym_let] = ACTIONS(2043), + [anon_sym_let_DASHenv] = ACTIONS(2043), + [anon_sym_mut] = ACTIONS(2043), + [anon_sym_const] = ACTIONS(2043), + [aux_sym_cmd_identifier_token1] = ACTIONS(2043), + [aux_sym_cmd_identifier_token2] = ACTIONS(2043), + [aux_sym_cmd_identifier_token3] = ACTIONS(2043), + [aux_sym_cmd_identifier_token4] = ACTIONS(2043), + [aux_sym_cmd_identifier_token5] = ACTIONS(2043), + [aux_sym_cmd_identifier_token6] = ACTIONS(2043), + [aux_sym_cmd_identifier_token7] = ACTIONS(2043), + [aux_sym_cmd_identifier_token8] = ACTIONS(2043), + [aux_sym_cmd_identifier_token9] = ACTIONS(2043), + [aux_sym_cmd_identifier_token10] = ACTIONS(2043), + [aux_sym_cmd_identifier_token11] = ACTIONS(2043), + [aux_sym_cmd_identifier_token12] = ACTIONS(2043), + [aux_sym_cmd_identifier_token13] = ACTIONS(2043), + [aux_sym_cmd_identifier_token14] = ACTIONS(2043), + [aux_sym_cmd_identifier_token15] = ACTIONS(2043), + [aux_sym_cmd_identifier_token16] = ACTIONS(2043), + [aux_sym_cmd_identifier_token17] = ACTIONS(2043), + [aux_sym_cmd_identifier_token18] = ACTIONS(2043), + [aux_sym_cmd_identifier_token19] = ACTIONS(2043), + [aux_sym_cmd_identifier_token20] = ACTIONS(2043), + [aux_sym_cmd_identifier_token21] = ACTIONS(2043), + [aux_sym_cmd_identifier_token22] = ACTIONS(2043), + [aux_sym_cmd_identifier_token23] = ACTIONS(2043), + [aux_sym_cmd_identifier_token24] = ACTIONS(2043), + [aux_sym_cmd_identifier_token25] = ACTIONS(2043), + [aux_sym_cmd_identifier_token26] = ACTIONS(2043), + [aux_sym_cmd_identifier_token27] = ACTIONS(2043), + [aux_sym_cmd_identifier_token28] = ACTIONS(2043), + [aux_sym_cmd_identifier_token29] = ACTIONS(2043), + [aux_sym_cmd_identifier_token30] = ACTIONS(2043), + [aux_sym_cmd_identifier_token31] = ACTIONS(2043), + [aux_sym_cmd_identifier_token32] = ACTIONS(2043), + [aux_sym_cmd_identifier_token33] = ACTIONS(2043), + [aux_sym_cmd_identifier_token34] = ACTIONS(2043), + [aux_sym_cmd_identifier_token35] = ACTIONS(2043), + [aux_sym_cmd_identifier_token36] = ACTIONS(2043), + [anon_sym_true] = ACTIONS(2045), + [anon_sym_false] = ACTIONS(2045), + [anon_sym_null] = ACTIONS(2045), + [aux_sym_cmd_identifier_token38] = ACTIONS(2043), + [aux_sym_cmd_identifier_token39] = ACTIONS(2045), + [aux_sym_cmd_identifier_token40] = ACTIONS(2045), + [anon_sym_def] = ACTIONS(2043), + [anon_sym_export_DASHenv] = ACTIONS(2043), + [anon_sym_extern] = ACTIONS(2043), + [anon_sym_module] = ACTIONS(2043), + [anon_sym_use] = ACTIONS(2043), + [anon_sym_LPAREN] = ACTIONS(2045), + [anon_sym_DOLLAR] = ACTIONS(2045), + [anon_sym_error] = ACTIONS(2043), + [anon_sym_list] = ACTIONS(2043), + [anon_sym_DASH] = ACTIONS(2043), + [anon_sym_break] = ACTIONS(2043), + [anon_sym_continue] = ACTIONS(2043), + [anon_sym_for] = ACTIONS(2043), + [anon_sym_in] = ACTIONS(2043), + [anon_sym_loop] = ACTIONS(2043), + [anon_sym_make] = ACTIONS(2043), + [anon_sym_while] = ACTIONS(2043), + [anon_sym_do] = ACTIONS(2043), + [anon_sym_if] = ACTIONS(2043), + [anon_sym_else] = ACTIONS(2043), + [anon_sym_match] = ACTIONS(2043), + [anon_sym_RBRACE] = ACTIONS(2045), + [anon_sym_try] = ACTIONS(2043), + [anon_sym_catch] = ACTIONS(2043), + [anon_sym_return] = ACTIONS(2043), + [anon_sym_source] = ACTIONS(2043), + [anon_sym_source_DASHenv] = ACTIONS(2043), + [anon_sym_register] = ACTIONS(2043), + [anon_sym_hide] = ACTIONS(2043), + [anon_sym_hide_DASHenv] = ACTIONS(2043), + [anon_sym_overlay] = ACTIONS(2043), + [anon_sym_new] = ACTIONS(2043), + [anon_sym_as] = ACTIONS(2043), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2045), + [anon_sym_DOT] = ACTIONS(2177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2045), + [aux_sym__val_number_decimal_token1] = ACTIONS(2043), + [aux_sym__val_number_decimal_token2] = ACTIONS(2045), + [aux_sym__val_number_decimal_token3] = ACTIONS(2045), + [aux_sym__val_number_decimal_token4] = ACTIONS(2045), + [aux_sym__val_number_token1] = ACTIONS(2045), + [aux_sym__val_number_token2] = ACTIONS(2045), + [aux_sym__val_number_token3] = ACTIONS(2045), + [anon_sym_DQUOTE] = ACTIONS(2045), + [sym__str_single_quotes] = ACTIONS(2045), + [sym__str_back_ticks] = ACTIONS(2045), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2045), + [anon_sym_PLUS] = ACTIONS(2043), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2045), + }, + [402] = { + [sym_cell_path] = STATE(680), + [sym_path] = STATE(631), + [sym_comment] = STATE(402), + [aux_sym_cell_path_repeat1] = STATE(456), + [anon_sym_export] = ACTIONS(2047), + [anon_sym_alias] = ACTIONS(2047), + [anon_sym_let] = ACTIONS(2047), + [anon_sym_let_DASHenv] = ACTIONS(2047), + [anon_sym_mut] = ACTIONS(2047), + [anon_sym_const] = ACTIONS(2047), + [aux_sym_cmd_identifier_token1] = ACTIONS(2047), + [aux_sym_cmd_identifier_token2] = ACTIONS(2047), + [aux_sym_cmd_identifier_token3] = ACTIONS(2047), + [aux_sym_cmd_identifier_token4] = ACTIONS(2047), + [aux_sym_cmd_identifier_token5] = ACTIONS(2047), + [aux_sym_cmd_identifier_token6] = ACTIONS(2047), + [aux_sym_cmd_identifier_token7] = ACTIONS(2047), + [aux_sym_cmd_identifier_token8] = ACTIONS(2047), + [aux_sym_cmd_identifier_token9] = ACTIONS(2047), + [aux_sym_cmd_identifier_token10] = ACTIONS(2047), + [aux_sym_cmd_identifier_token11] = ACTIONS(2047), + [aux_sym_cmd_identifier_token12] = ACTIONS(2047), + [aux_sym_cmd_identifier_token13] = ACTIONS(2047), + [aux_sym_cmd_identifier_token14] = ACTIONS(2047), + [aux_sym_cmd_identifier_token15] = ACTIONS(2047), + [aux_sym_cmd_identifier_token16] = ACTIONS(2047), + [aux_sym_cmd_identifier_token17] = ACTIONS(2047), + [aux_sym_cmd_identifier_token18] = ACTIONS(2047), + [aux_sym_cmd_identifier_token19] = ACTIONS(2047), + [aux_sym_cmd_identifier_token20] = ACTIONS(2047), + [aux_sym_cmd_identifier_token21] = ACTIONS(2047), + [aux_sym_cmd_identifier_token22] = ACTIONS(2047), + [aux_sym_cmd_identifier_token23] = ACTIONS(2047), + [aux_sym_cmd_identifier_token24] = ACTIONS(2047), + [aux_sym_cmd_identifier_token25] = ACTIONS(2047), + [aux_sym_cmd_identifier_token26] = ACTIONS(2047), + [aux_sym_cmd_identifier_token27] = ACTIONS(2047), + [aux_sym_cmd_identifier_token28] = ACTIONS(2047), + [aux_sym_cmd_identifier_token29] = ACTIONS(2047), + [aux_sym_cmd_identifier_token30] = ACTIONS(2047), + [aux_sym_cmd_identifier_token31] = ACTIONS(2047), + [aux_sym_cmd_identifier_token32] = ACTIONS(2047), + [aux_sym_cmd_identifier_token33] = ACTIONS(2047), + [aux_sym_cmd_identifier_token34] = ACTIONS(2047), + [aux_sym_cmd_identifier_token35] = ACTIONS(2047), + [aux_sym_cmd_identifier_token36] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(2049), + [anon_sym_false] = ACTIONS(2049), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token38] = ACTIONS(2047), + [aux_sym_cmd_identifier_token39] = ACTIONS(2049), + [aux_sym_cmd_identifier_token40] = ACTIONS(2049), + [anon_sym_def] = ACTIONS(2047), + [anon_sym_export_DASHenv] = ACTIONS(2047), + [anon_sym_extern] = ACTIONS(2047), + [anon_sym_module] = ACTIONS(2047), + [anon_sym_use] = ACTIONS(2047), [anon_sym_LPAREN] = ACTIONS(2049), - [anon_sym_RPAREN] = ACTIONS(2148), - [anon_sym_DOLLAR] = ACTIONS(2051), - [anon_sym_DASH_DASH] = ACTIONS(2053), + [anon_sym_DOLLAR] = ACTIONS(2049), + [anon_sym_error] = ACTIONS(2047), + [anon_sym_list] = ACTIONS(2047), + [anon_sym_DASH] = ACTIONS(2047), + [anon_sym_break] = ACTIONS(2047), + [anon_sym_continue] = ACTIONS(2047), + [anon_sym_for] = ACTIONS(2047), + [anon_sym_in] = ACTIONS(2047), + [anon_sym_loop] = ACTIONS(2047), + [anon_sym_make] = ACTIONS(2047), + [anon_sym_while] = ACTIONS(2047), + [anon_sym_do] = ACTIONS(2047), + [anon_sym_if] = ACTIONS(2047), + [anon_sym_else] = ACTIONS(2047), + [anon_sym_match] = ACTIONS(2047), + [anon_sym_RBRACE] = ACTIONS(2049), + [anon_sym_try] = ACTIONS(2047), + [anon_sym_catch] = ACTIONS(2047), + [anon_sym_return] = ACTIONS(2047), + [anon_sym_source] = ACTIONS(2047), + [anon_sym_source_DASHenv] = ACTIONS(2047), + [anon_sym_register] = ACTIONS(2047), + [anon_sym_hide] = ACTIONS(2047), + [anon_sym_hide_DASHenv] = ACTIONS(2047), + [anon_sym_overlay] = ACTIONS(2047), + [anon_sym_new] = ACTIONS(2047), + [anon_sym_as] = ACTIONS(2047), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2049), + [anon_sym_DOT] = ACTIONS(2177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2049), + [aux_sym__val_number_decimal_token1] = ACTIONS(2047), + [aux_sym__val_number_decimal_token2] = ACTIONS(2049), + [aux_sym__val_number_decimal_token3] = ACTIONS(2049), + [aux_sym__val_number_decimal_token4] = ACTIONS(2049), + [aux_sym__val_number_token1] = ACTIONS(2049), + [aux_sym__val_number_token2] = ACTIONS(2049), + [aux_sym__val_number_token3] = ACTIONS(2049), + [anon_sym_DQUOTE] = ACTIONS(2049), + [sym__str_single_quotes] = ACTIONS(2049), + [sym__str_back_ticks] = ACTIONS(2049), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2049), + [anon_sym_PLUS] = ACTIONS(2047), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2049), + }, + [403] = { + [sym_cell_path] = STATE(681), + [sym_path] = STATE(631), + [sym_comment] = STATE(403), + [aux_sym_cell_path_repeat1] = STATE(456), + [anon_sym_export] = ACTIONS(2051), + [anon_sym_alias] = ACTIONS(2051), + [anon_sym_let] = ACTIONS(2051), + [anon_sym_let_DASHenv] = ACTIONS(2051), + [anon_sym_mut] = ACTIONS(2051), + [anon_sym_const] = ACTIONS(2051), + [aux_sym_cmd_identifier_token1] = ACTIONS(2051), + [aux_sym_cmd_identifier_token2] = ACTIONS(2051), + [aux_sym_cmd_identifier_token3] = ACTIONS(2051), + [aux_sym_cmd_identifier_token4] = ACTIONS(2051), + [aux_sym_cmd_identifier_token5] = ACTIONS(2051), + [aux_sym_cmd_identifier_token6] = ACTIONS(2051), + [aux_sym_cmd_identifier_token7] = ACTIONS(2051), + [aux_sym_cmd_identifier_token8] = ACTIONS(2051), + [aux_sym_cmd_identifier_token9] = ACTIONS(2051), + [aux_sym_cmd_identifier_token10] = ACTIONS(2051), + [aux_sym_cmd_identifier_token11] = ACTIONS(2051), + [aux_sym_cmd_identifier_token12] = ACTIONS(2051), + [aux_sym_cmd_identifier_token13] = ACTIONS(2051), + [aux_sym_cmd_identifier_token14] = ACTIONS(2051), + [aux_sym_cmd_identifier_token15] = ACTIONS(2051), + [aux_sym_cmd_identifier_token16] = ACTIONS(2051), + [aux_sym_cmd_identifier_token17] = ACTIONS(2051), + [aux_sym_cmd_identifier_token18] = ACTIONS(2051), + [aux_sym_cmd_identifier_token19] = ACTIONS(2051), + [aux_sym_cmd_identifier_token20] = ACTIONS(2051), + [aux_sym_cmd_identifier_token21] = ACTIONS(2051), + [aux_sym_cmd_identifier_token22] = ACTIONS(2051), + [aux_sym_cmd_identifier_token23] = ACTIONS(2051), + [aux_sym_cmd_identifier_token24] = ACTIONS(2051), + [aux_sym_cmd_identifier_token25] = ACTIONS(2051), + [aux_sym_cmd_identifier_token26] = ACTIONS(2051), + [aux_sym_cmd_identifier_token27] = ACTIONS(2051), + [aux_sym_cmd_identifier_token28] = ACTIONS(2051), + [aux_sym_cmd_identifier_token29] = ACTIONS(2051), + [aux_sym_cmd_identifier_token30] = ACTIONS(2051), + [aux_sym_cmd_identifier_token31] = ACTIONS(2051), + [aux_sym_cmd_identifier_token32] = ACTIONS(2051), + [aux_sym_cmd_identifier_token33] = ACTIONS(2051), + [aux_sym_cmd_identifier_token34] = ACTIONS(2051), + [aux_sym_cmd_identifier_token35] = ACTIONS(2051), + [aux_sym_cmd_identifier_token36] = ACTIONS(2051), + [anon_sym_true] = ACTIONS(2053), + [anon_sym_false] = ACTIONS(2053), + [anon_sym_null] = ACTIONS(2053), + [aux_sym_cmd_identifier_token38] = ACTIONS(2051), + [aux_sym_cmd_identifier_token39] = ACTIONS(2053), + [aux_sym_cmd_identifier_token40] = ACTIONS(2053), + [anon_sym_def] = ACTIONS(2051), + [anon_sym_export_DASHenv] = ACTIONS(2051), + [anon_sym_extern] = ACTIONS(2051), + [anon_sym_module] = ACTIONS(2051), + [anon_sym_use] = ACTIONS(2051), + [anon_sym_LPAREN] = ACTIONS(2053), + [anon_sym_DOLLAR] = ACTIONS(2053), + [anon_sym_error] = ACTIONS(2051), + [anon_sym_list] = ACTIONS(2051), + [anon_sym_DASH] = ACTIONS(2051), + [anon_sym_break] = ACTIONS(2051), + [anon_sym_continue] = ACTIONS(2051), + [anon_sym_for] = ACTIONS(2051), + [anon_sym_in] = ACTIONS(2051), + [anon_sym_loop] = ACTIONS(2051), + [anon_sym_make] = ACTIONS(2051), + [anon_sym_while] = ACTIONS(2051), + [anon_sym_do] = ACTIONS(2051), + [anon_sym_if] = ACTIONS(2051), + [anon_sym_else] = ACTIONS(2051), + [anon_sym_match] = ACTIONS(2051), + [anon_sym_RBRACE] = ACTIONS(2053), + [anon_sym_try] = ACTIONS(2051), + [anon_sym_catch] = ACTIONS(2051), + [anon_sym_return] = ACTIONS(2051), + [anon_sym_source] = ACTIONS(2051), + [anon_sym_source_DASHenv] = ACTIONS(2051), + [anon_sym_register] = ACTIONS(2051), + [anon_sym_hide] = ACTIONS(2051), + [anon_sym_hide_DASHenv] = ACTIONS(2051), + [anon_sym_overlay] = ACTIONS(2051), + [anon_sym_new] = ACTIONS(2051), + [anon_sym_as] = ACTIONS(2051), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2053), + [anon_sym_DOT] = ACTIONS(2177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2053), + [aux_sym__val_number_decimal_token1] = ACTIONS(2051), + [aux_sym__val_number_decimal_token2] = ACTIONS(2053), + [aux_sym__val_number_decimal_token3] = ACTIONS(2053), + [aux_sym__val_number_decimal_token4] = ACTIONS(2053), + [aux_sym__val_number_token1] = ACTIONS(2053), + [aux_sym__val_number_token2] = ACTIONS(2053), + [aux_sym__val_number_token3] = ACTIONS(2053), + [anon_sym_DQUOTE] = ACTIONS(2053), + [sym__str_single_quotes] = ACTIONS(2053), + [sym__str_back_ticks] = ACTIONS(2053), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2053), + [anon_sym_PLUS] = ACTIONS(2051), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2053), + }, + [404] = { + [sym_cell_path] = STATE(682), + [sym_path] = STATE(631), + [sym_comment] = STATE(404), + [aux_sym_cell_path_repeat1] = STATE(456), + [anon_sym_export] = ACTIONS(2055), + [anon_sym_alias] = ACTIONS(2055), + [anon_sym_let] = ACTIONS(2055), + [anon_sym_let_DASHenv] = ACTIONS(2055), + [anon_sym_mut] = ACTIONS(2055), + [anon_sym_const] = ACTIONS(2055), + [aux_sym_cmd_identifier_token1] = ACTIONS(2055), + [aux_sym_cmd_identifier_token2] = ACTIONS(2055), + [aux_sym_cmd_identifier_token3] = ACTIONS(2055), + [aux_sym_cmd_identifier_token4] = ACTIONS(2055), + [aux_sym_cmd_identifier_token5] = ACTIONS(2055), + [aux_sym_cmd_identifier_token6] = ACTIONS(2055), + [aux_sym_cmd_identifier_token7] = ACTIONS(2055), + [aux_sym_cmd_identifier_token8] = ACTIONS(2055), + [aux_sym_cmd_identifier_token9] = ACTIONS(2055), + [aux_sym_cmd_identifier_token10] = ACTIONS(2055), + [aux_sym_cmd_identifier_token11] = ACTIONS(2055), + [aux_sym_cmd_identifier_token12] = ACTIONS(2055), + [aux_sym_cmd_identifier_token13] = ACTIONS(2055), + [aux_sym_cmd_identifier_token14] = ACTIONS(2055), + [aux_sym_cmd_identifier_token15] = ACTIONS(2055), + [aux_sym_cmd_identifier_token16] = ACTIONS(2055), + [aux_sym_cmd_identifier_token17] = ACTIONS(2055), + [aux_sym_cmd_identifier_token18] = ACTIONS(2055), + [aux_sym_cmd_identifier_token19] = ACTIONS(2055), + [aux_sym_cmd_identifier_token20] = ACTIONS(2055), + [aux_sym_cmd_identifier_token21] = ACTIONS(2055), + [aux_sym_cmd_identifier_token22] = ACTIONS(2055), + [aux_sym_cmd_identifier_token23] = ACTIONS(2055), + [aux_sym_cmd_identifier_token24] = ACTIONS(2055), + [aux_sym_cmd_identifier_token25] = ACTIONS(2055), + [aux_sym_cmd_identifier_token26] = ACTIONS(2055), + [aux_sym_cmd_identifier_token27] = ACTIONS(2055), + [aux_sym_cmd_identifier_token28] = ACTIONS(2055), + [aux_sym_cmd_identifier_token29] = ACTIONS(2055), + [aux_sym_cmd_identifier_token30] = ACTIONS(2055), + [aux_sym_cmd_identifier_token31] = ACTIONS(2055), + [aux_sym_cmd_identifier_token32] = ACTIONS(2055), + [aux_sym_cmd_identifier_token33] = ACTIONS(2055), + [aux_sym_cmd_identifier_token34] = ACTIONS(2055), + [aux_sym_cmd_identifier_token35] = ACTIONS(2055), + [aux_sym_cmd_identifier_token36] = ACTIONS(2055), + [anon_sym_true] = ACTIONS(2057), + [anon_sym_false] = ACTIONS(2057), + [anon_sym_null] = ACTIONS(2057), + [aux_sym_cmd_identifier_token38] = ACTIONS(2055), + [aux_sym_cmd_identifier_token39] = ACTIONS(2057), + [aux_sym_cmd_identifier_token40] = ACTIONS(2057), + [anon_sym_def] = ACTIONS(2055), + [anon_sym_export_DASHenv] = ACTIONS(2055), + [anon_sym_extern] = ACTIONS(2055), + [anon_sym_module] = ACTIONS(2055), + [anon_sym_use] = ACTIONS(2055), + [anon_sym_LPAREN] = ACTIONS(2057), + [anon_sym_DOLLAR] = ACTIONS(2057), + [anon_sym_error] = ACTIONS(2055), + [anon_sym_list] = ACTIONS(2055), [anon_sym_DASH] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_DOT_DOT] = ACTIONS(2059), + [anon_sym_break] = ACTIONS(2055), + [anon_sym_continue] = ACTIONS(2055), + [anon_sym_for] = ACTIONS(2055), + [anon_sym_in] = ACTIONS(2055), + [anon_sym_loop] = ACTIONS(2055), + [anon_sym_make] = ACTIONS(2055), + [anon_sym_while] = ACTIONS(2055), + [anon_sym_do] = ACTIONS(2055), + [anon_sym_if] = ACTIONS(2055), + [anon_sym_else] = ACTIONS(2055), + [anon_sym_match] = ACTIONS(2055), + [anon_sym_RBRACE] = ACTIONS(2057), + [anon_sym_try] = ACTIONS(2055), + [anon_sym_catch] = ACTIONS(2055), + [anon_sym_return] = ACTIONS(2055), + [anon_sym_source] = ACTIONS(2055), + [anon_sym_source_DASHenv] = ACTIONS(2055), + [anon_sym_register] = ACTIONS(2055), + [anon_sym_hide] = ACTIONS(2055), + [anon_sym_hide_DASHenv] = ACTIONS(2055), + [anon_sym_overlay] = ACTIONS(2055), + [anon_sym_new] = ACTIONS(2055), + [anon_sym_as] = ACTIONS(2055), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2057), + [anon_sym_DOT] = ACTIONS(2177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2057), + [aux_sym__val_number_decimal_token1] = ACTIONS(2055), + [aux_sym__val_number_decimal_token2] = ACTIONS(2057), + [aux_sym__val_number_decimal_token3] = ACTIONS(2057), + [aux_sym__val_number_decimal_token4] = ACTIONS(2057), + [aux_sym__val_number_token1] = ACTIONS(2057), + [aux_sym__val_number_token2] = ACTIONS(2057), + [aux_sym__val_number_token3] = ACTIONS(2057), + [anon_sym_DQUOTE] = ACTIONS(2057), + [sym__str_single_quotes] = ACTIONS(2057), + [sym__str_back_ticks] = ACTIONS(2057), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2057), + [anon_sym_PLUS] = ACTIONS(2055), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2057), + }, + [405] = { + [sym_cell_path] = STATE(683), + [sym_path] = STATE(631), + [sym_comment] = STATE(405), + [aux_sym_cell_path_repeat1] = STATE(456), + [anon_sym_export] = ACTIONS(2059), + [anon_sym_alias] = ACTIONS(2059), + [anon_sym_let] = ACTIONS(2059), + [anon_sym_let_DASHenv] = ACTIONS(2059), + [anon_sym_mut] = ACTIONS(2059), + [anon_sym_const] = ACTIONS(2059), + [aux_sym_cmd_identifier_token1] = ACTIONS(2059), + [aux_sym_cmd_identifier_token2] = ACTIONS(2059), + [aux_sym_cmd_identifier_token3] = ACTIONS(2059), + [aux_sym_cmd_identifier_token4] = ACTIONS(2059), + [aux_sym_cmd_identifier_token5] = ACTIONS(2059), + [aux_sym_cmd_identifier_token6] = ACTIONS(2059), + [aux_sym_cmd_identifier_token7] = ACTIONS(2059), + [aux_sym_cmd_identifier_token8] = ACTIONS(2059), + [aux_sym_cmd_identifier_token9] = ACTIONS(2059), + [aux_sym_cmd_identifier_token10] = ACTIONS(2059), + [aux_sym_cmd_identifier_token11] = ACTIONS(2059), + [aux_sym_cmd_identifier_token12] = ACTIONS(2059), + [aux_sym_cmd_identifier_token13] = ACTIONS(2059), + [aux_sym_cmd_identifier_token14] = ACTIONS(2059), + [aux_sym_cmd_identifier_token15] = ACTIONS(2059), + [aux_sym_cmd_identifier_token16] = ACTIONS(2059), + [aux_sym_cmd_identifier_token17] = ACTIONS(2059), + [aux_sym_cmd_identifier_token18] = ACTIONS(2059), + [aux_sym_cmd_identifier_token19] = ACTIONS(2059), + [aux_sym_cmd_identifier_token20] = ACTIONS(2059), + [aux_sym_cmd_identifier_token21] = ACTIONS(2059), + [aux_sym_cmd_identifier_token22] = ACTIONS(2059), + [aux_sym_cmd_identifier_token23] = ACTIONS(2059), + [aux_sym_cmd_identifier_token24] = ACTIONS(2059), + [aux_sym_cmd_identifier_token25] = ACTIONS(2059), + [aux_sym_cmd_identifier_token26] = ACTIONS(2059), + [aux_sym_cmd_identifier_token27] = ACTIONS(2059), + [aux_sym_cmd_identifier_token28] = ACTIONS(2059), + [aux_sym_cmd_identifier_token29] = ACTIONS(2059), + [aux_sym_cmd_identifier_token30] = ACTIONS(2059), + [aux_sym_cmd_identifier_token31] = ACTIONS(2059), + [aux_sym_cmd_identifier_token32] = ACTIONS(2059), + [aux_sym_cmd_identifier_token33] = ACTIONS(2059), + [aux_sym_cmd_identifier_token34] = ACTIONS(2059), + [aux_sym_cmd_identifier_token35] = ACTIONS(2059), + [aux_sym_cmd_identifier_token36] = ACTIONS(2059), + [anon_sym_true] = ACTIONS(2061), + [anon_sym_false] = ACTIONS(2061), + [anon_sym_null] = ACTIONS(2061), + [aux_sym_cmd_identifier_token38] = ACTIONS(2059), + [aux_sym_cmd_identifier_token39] = ACTIONS(2061), + [aux_sym_cmd_identifier_token40] = ACTIONS(2061), + [anon_sym_def] = ACTIONS(2059), + [anon_sym_export_DASHenv] = ACTIONS(2059), + [anon_sym_extern] = ACTIONS(2059), + [anon_sym_module] = ACTIONS(2059), + [anon_sym_use] = ACTIONS(2059), + [anon_sym_LPAREN] = ACTIONS(2061), + [anon_sym_DOLLAR] = ACTIONS(2061), + [anon_sym_error] = ACTIONS(2059), + [anon_sym_list] = ACTIONS(2059), + [anon_sym_DASH] = ACTIONS(2059), + [anon_sym_break] = ACTIONS(2059), + [anon_sym_continue] = ACTIONS(2059), + [anon_sym_for] = ACTIONS(2059), + [anon_sym_in] = ACTIONS(2059), + [anon_sym_loop] = ACTIONS(2059), + [anon_sym_make] = ACTIONS(2059), + [anon_sym_while] = ACTIONS(2059), + [anon_sym_do] = ACTIONS(2059), + [anon_sym_if] = ACTIONS(2059), + [anon_sym_else] = ACTIONS(2059), + [anon_sym_match] = ACTIONS(2059), + [anon_sym_RBRACE] = ACTIONS(2061), + [anon_sym_try] = ACTIONS(2059), + [anon_sym_catch] = ACTIONS(2059), + [anon_sym_return] = ACTIONS(2059), + [anon_sym_source] = ACTIONS(2059), + [anon_sym_source_DASHenv] = ACTIONS(2059), + [anon_sym_register] = ACTIONS(2059), + [anon_sym_hide] = ACTIONS(2059), + [anon_sym_hide_DASHenv] = ACTIONS(2059), + [anon_sym_overlay] = ACTIONS(2059), + [anon_sym_new] = ACTIONS(2059), + [anon_sym_as] = ACTIONS(2059), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2061), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2063), - [anon_sym_DOT_DOT_LT] = ACTIONS(2063), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2065), + [anon_sym_DOT] = ACTIONS(2177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2061), + [aux_sym__val_number_decimal_token1] = ACTIONS(2059), + [aux_sym__val_number_decimal_token2] = ACTIONS(2061), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), + [aux_sym__val_number_token1] = ACTIONS(2061), + [aux_sym__val_number_token2] = ACTIONS(2061), + [aux_sym__val_number_token3] = ACTIONS(2061), + [anon_sym_DQUOTE] = ACTIONS(2061), + [sym__str_single_quotes] = ACTIONS(2061), + [sym__str_back_ticks] = ACTIONS(2061), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2061), + [anon_sym_PLUS] = ACTIONS(2059), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2061), + }, + [406] = { + [sym_cell_path] = STATE(684), + [sym_path] = STATE(631), + [sym_comment] = STATE(406), + [aux_sym_cell_path_repeat1] = STATE(456), + [anon_sym_export] = ACTIONS(2067), + [anon_sym_alias] = ACTIONS(2067), + [anon_sym_let] = ACTIONS(2067), + [anon_sym_let_DASHenv] = ACTIONS(2067), + [anon_sym_mut] = ACTIONS(2067), + [anon_sym_const] = ACTIONS(2067), + [aux_sym_cmd_identifier_token1] = ACTIONS(2067), + [aux_sym_cmd_identifier_token2] = ACTIONS(2067), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [aux_sym_cmd_identifier_token6] = ACTIONS(2067), + [aux_sym_cmd_identifier_token7] = ACTIONS(2067), + [aux_sym_cmd_identifier_token8] = ACTIONS(2067), + [aux_sym_cmd_identifier_token9] = ACTIONS(2067), + [aux_sym_cmd_identifier_token10] = ACTIONS(2067), + [aux_sym_cmd_identifier_token11] = ACTIONS(2067), + [aux_sym_cmd_identifier_token12] = ACTIONS(2067), + [aux_sym_cmd_identifier_token13] = ACTIONS(2067), + [aux_sym_cmd_identifier_token14] = ACTIONS(2067), + [aux_sym_cmd_identifier_token15] = ACTIONS(2067), + [aux_sym_cmd_identifier_token16] = ACTIONS(2067), + [aux_sym_cmd_identifier_token17] = ACTIONS(2067), + [aux_sym_cmd_identifier_token18] = ACTIONS(2067), + [aux_sym_cmd_identifier_token19] = ACTIONS(2067), + [aux_sym_cmd_identifier_token20] = ACTIONS(2067), + [aux_sym_cmd_identifier_token21] = ACTIONS(2067), + [aux_sym_cmd_identifier_token22] = ACTIONS(2067), + [aux_sym_cmd_identifier_token23] = ACTIONS(2067), + [aux_sym_cmd_identifier_token24] = ACTIONS(2067), + [aux_sym_cmd_identifier_token25] = ACTIONS(2067), + [aux_sym_cmd_identifier_token26] = ACTIONS(2067), + [aux_sym_cmd_identifier_token27] = ACTIONS(2067), + [aux_sym_cmd_identifier_token28] = ACTIONS(2067), + [aux_sym_cmd_identifier_token29] = ACTIONS(2067), + [aux_sym_cmd_identifier_token30] = ACTIONS(2067), + [aux_sym_cmd_identifier_token31] = ACTIONS(2067), + [aux_sym_cmd_identifier_token32] = ACTIONS(2067), + [aux_sym_cmd_identifier_token33] = ACTIONS(2067), + [aux_sym_cmd_identifier_token34] = ACTIONS(2067), + [aux_sym_cmd_identifier_token35] = ACTIONS(2067), + [aux_sym_cmd_identifier_token36] = ACTIONS(2067), + [anon_sym_true] = ACTIONS(2069), + [anon_sym_false] = ACTIONS(2069), + [anon_sym_null] = ACTIONS(2069), + [aux_sym_cmd_identifier_token38] = ACTIONS(2067), + [aux_sym_cmd_identifier_token39] = ACTIONS(2069), + [aux_sym_cmd_identifier_token40] = ACTIONS(2069), + [anon_sym_def] = ACTIONS(2067), + [anon_sym_export_DASHenv] = ACTIONS(2067), + [anon_sym_extern] = ACTIONS(2067), + [anon_sym_module] = ACTIONS(2067), + [anon_sym_use] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(2069), + [anon_sym_DOLLAR] = ACTIONS(2069), + [anon_sym_error] = ACTIONS(2067), + [anon_sym_list] = ACTIONS(2067), + [anon_sym_DASH] = ACTIONS(2067), + [anon_sym_break] = ACTIONS(2067), + [anon_sym_continue] = ACTIONS(2067), + [anon_sym_for] = ACTIONS(2067), + [anon_sym_in] = ACTIONS(2067), + [anon_sym_loop] = ACTIONS(2067), + [anon_sym_make] = ACTIONS(2067), + [anon_sym_while] = ACTIONS(2067), + [anon_sym_do] = ACTIONS(2067), + [anon_sym_if] = ACTIONS(2067), + [anon_sym_else] = ACTIONS(2067), + [anon_sym_match] = ACTIONS(2067), + [anon_sym_RBRACE] = ACTIONS(2069), + [anon_sym_try] = ACTIONS(2067), + [anon_sym_catch] = ACTIONS(2067), + [anon_sym_return] = ACTIONS(2067), + [anon_sym_source] = ACTIONS(2067), + [anon_sym_source_DASHenv] = ACTIONS(2067), + [anon_sym_register] = ACTIONS(2067), + [anon_sym_hide] = ACTIONS(2067), + [anon_sym_hide_DASHenv] = ACTIONS(2067), + [anon_sym_overlay] = ACTIONS(2067), + [anon_sym_new] = ACTIONS(2067), + [anon_sym_as] = ACTIONS(2067), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2069), + [anon_sym_DOT] = ACTIONS(2177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2069), [aux_sym__val_number_decimal_token1] = ACTIONS(2067), - [aux_sym__val_number_decimal_token2] = ACTIONS(2067), + [aux_sym__val_number_decimal_token2] = ACTIONS(2069), [aux_sym__val_number_decimal_token3] = ACTIONS(2069), - [aux_sym__val_number_decimal_token4] = ACTIONS(2071), - [aux_sym__val_number_token1] = ACTIONS(2073), - [aux_sym__val_number_token2] = ACTIONS(2073), - [aux_sym__val_number_token3] = ACTIONS(2073), - [anon_sym_0b] = ACTIONS(2075), - [anon_sym_0o] = ACTIONS(2077), - [anon_sym_0x] = ACTIONS(2077), - [sym_val_date] = ACTIONS(2079), - [anon_sym_DQUOTE] = ACTIONS(2081), - [sym__str_single_quotes] = ACTIONS(2083), - [sym__str_back_ticks] = ACTIONS(2083), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2085), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2087), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2089), - [anon_sym_err_GT] = ACTIONS(2091), - [anon_sym_out_GT] = ACTIONS(2091), - [anon_sym_e_GT] = ACTIONS(2091), - [anon_sym_o_GT] = ACTIONS(2091), - [anon_sym_err_PLUSout_GT] = ACTIONS(2091), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2091), - [anon_sym_o_PLUSe_GT] = ACTIONS(2091), - [anon_sym_e_PLUSo_GT] = ACTIONS(2091), - [anon_sym_err_GT_GT] = ACTIONS(2091), - [anon_sym_out_GT_GT] = ACTIONS(2091), - [anon_sym_e_GT_GT] = ACTIONS(2091), - [anon_sym_o_GT_GT] = ACTIONS(2091), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2091), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2091), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2091), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2091), - [aux_sym_unquoted_token1] = ACTIONS(2093), - [anon_sym_POUND] = ACTIONS(3), - }, - [448] = { - [sym_comment] = STATE(448), - [anon_sym_export] = ACTIONS(2029), - [anon_sym_alias] = ACTIONS(2029), - [anon_sym_let] = ACTIONS(2029), - [anon_sym_let_DASHenv] = ACTIONS(2029), - [anon_sym_mut] = ACTIONS(2029), - [anon_sym_const] = ACTIONS(2029), - [aux_sym_cmd_identifier_token1] = ACTIONS(2029), - [aux_sym_cmd_identifier_token2] = ACTIONS(2029), - [aux_sym_cmd_identifier_token3] = ACTIONS(2029), - [aux_sym_cmd_identifier_token4] = ACTIONS(2029), - [aux_sym_cmd_identifier_token5] = ACTIONS(2029), - [aux_sym_cmd_identifier_token6] = ACTIONS(2029), - [aux_sym_cmd_identifier_token7] = ACTIONS(2029), - [aux_sym_cmd_identifier_token8] = ACTIONS(2029), - [aux_sym_cmd_identifier_token9] = ACTIONS(2029), - [aux_sym_cmd_identifier_token10] = ACTIONS(2029), - [aux_sym_cmd_identifier_token11] = ACTIONS(2029), - [aux_sym_cmd_identifier_token12] = ACTIONS(2029), - [aux_sym_cmd_identifier_token13] = ACTIONS(2029), - [aux_sym_cmd_identifier_token14] = ACTIONS(2029), - [aux_sym_cmd_identifier_token15] = ACTIONS(2029), - [aux_sym_cmd_identifier_token16] = ACTIONS(2029), - [aux_sym_cmd_identifier_token17] = ACTIONS(2029), - [aux_sym_cmd_identifier_token18] = ACTIONS(2029), - [aux_sym_cmd_identifier_token19] = ACTIONS(2029), - [aux_sym_cmd_identifier_token20] = ACTIONS(2029), - [aux_sym_cmd_identifier_token21] = ACTIONS(2029), - [aux_sym_cmd_identifier_token22] = ACTIONS(2029), - [aux_sym_cmd_identifier_token23] = ACTIONS(2029), - [aux_sym_cmd_identifier_token24] = ACTIONS(2029), - [aux_sym_cmd_identifier_token25] = ACTIONS(2029), - [aux_sym_cmd_identifier_token26] = ACTIONS(2029), - [aux_sym_cmd_identifier_token27] = ACTIONS(2029), - [aux_sym_cmd_identifier_token28] = ACTIONS(2029), - [aux_sym_cmd_identifier_token29] = ACTIONS(2029), - [aux_sym_cmd_identifier_token30] = ACTIONS(2029), - [aux_sym_cmd_identifier_token31] = ACTIONS(2029), - [aux_sym_cmd_identifier_token32] = ACTIONS(2029), - [aux_sym_cmd_identifier_token33] = ACTIONS(2029), - [aux_sym_cmd_identifier_token34] = ACTIONS(2029), - [aux_sym_cmd_identifier_token35] = ACTIONS(2029), - [aux_sym_cmd_identifier_token36] = ACTIONS(2029), - [anon_sym_true] = ACTIONS(2031), - [anon_sym_false] = ACTIONS(2031), - [anon_sym_null] = ACTIONS(2031), - [aux_sym_cmd_identifier_token38] = ACTIONS(2029), - [aux_sym_cmd_identifier_token39] = ACTIONS(2031), - [aux_sym_cmd_identifier_token40] = ACTIONS(2031), - [anon_sym_def] = ACTIONS(2029), - [anon_sym_export_DASHenv] = ACTIONS(2029), - [anon_sym_extern] = ACTIONS(2029), - [anon_sym_module] = ACTIONS(2029), - [anon_sym_use] = ACTIONS(2029), - [anon_sym_LPAREN] = ACTIONS(2031), - [anon_sym_DOLLAR] = ACTIONS(2031), - [anon_sym_error] = ACTIONS(2029), - [anon_sym_list] = ACTIONS(2029), - [anon_sym_DASH] = ACTIONS(2029), - [anon_sym_break] = ACTIONS(2029), - [anon_sym_continue] = ACTIONS(2029), - [anon_sym_for] = ACTIONS(2029), - [anon_sym_in] = ACTIONS(2029), - [anon_sym_loop] = ACTIONS(2029), - [anon_sym_make] = ACTIONS(2029), - [anon_sym_while] = ACTIONS(2029), - [anon_sym_do] = ACTIONS(2029), - [anon_sym_if] = ACTIONS(2029), - [anon_sym_else] = ACTIONS(2029), - [anon_sym_match] = ACTIONS(2029), - [anon_sym_RBRACE] = ACTIONS(2031), - [anon_sym_try] = ACTIONS(2029), - [anon_sym_catch] = ACTIONS(2029), - [anon_sym_return] = ACTIONS(2029), - [anon_sym_source] = ACTIONS(2029), - [anon_sym_source_DASHenv] = ACTIONS(2029), - [anon_sym_register] = ACTIONS(2029), - [anon_sym_hide] = ACTIONS(2029), - [anon_sym_hide_DASHenv] = ACTIONS(2029), - [anon_sym_overlay] = ACTIONS(2029), - [anon_sym_new] = ACTIONS(2029), - [anon_sym_as] = ACTIONS(2029), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2031), - [anon_sym_DOT_DOT2] = ACTIONS(2029), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2031), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2031), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2031), - [aux_sym__val_number_decimal_token1] = ACTIONS(2029), - [aux_sym__val_number_decimal_token2] = ACTIONS(2031), - [aux_sym__val_number_decimal_token3] = ACTIONS(2031), - [aux_sym__val_number_decimal_token4] = ACTIONS(2031), - [aux_sym__val_number_token1] = ACTIONS(2031), - [aux_sym__val_number_token2] = ACTIONS(2031), - [aux_sym__val_number_token3] = ACTIONS(2031), - [anon_sym_DQUOTE] = ACTIONS(2031), - [sym__str_single_quotes] = ACTIONS(2031), - [sym__str_back_ticks] = ACTIONS(2031), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2031), - [anon_sym_PLUS] = ACTIONS(2029), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym__val_number_decimal_token4] = ACTIONS(2069), + [aux_sym__val_number_token1] = ACTIONS(2069), + [aux_sym__val_number_token2] = ACTIONS(2069), + [aux_sym__val_number_token3] = ACTIONS(2069), + [anon_sym_DQUOTE] = ACTIONS(2069), + [sym__str_single_quotes] = ACTIONS(2069), + [sym__str_back_ticks] = ACTIONS(2069), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2069), + [anon_sym_PLUS] = ACTIONS(2067), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2069), }, - [449] = { - [sym_comment] = STATE(449), - [anon_sym_export] = ACTIONS(2033), - [anon_sym_alias] = ACTIONS(2033), - [anon_sym_let] = ACTIONS(2033), - [anon_sym_let_DASHenv] = ACTIONS(2033), - [anon_sym_mut] = ACTIONS(2033), - [anon_sym_const] = ACTIONS(2033), - [aux_sym_cmd_identifier_token1] = ACTIONS(2033), - [aux_sym_cmd_identifier_token2] = ACTIONS(2033), - [aux_sym_cmd_identifier_token3] = ACTIONS(2033), - [aux_sym_cmd_identifier_token4] = ACTIONS(2033), - [aux_sym_cmd_identifier_token5] = ACTIONS(2033), - [aux_sym_cmd_identifier_token6] = ACTIONS(2033), - [aux_sym_cmd_identifier_token7] = ACTIONS(2033), - [aux_sym_cmd_identifier_token8] = ACTIONS(2033), - [aux_sym_cmd_identifier_token9] = ACTIONS(2033), - [aux_sym_cmd_identifier_token10] = ACTIONS(2033), - [aux_sym_cmd_identifier_token11] = ACTIONS(2033), - [aux_sym_cmd_identifier_token12] = ACTIONS(2033), - [aux_sym_cmd_identifier_token13] = ACTIONS(2033), - [aux_sym_cmd_identifier_token14] = ACTIONS(2033), - [aux_sym_cmd_identifier_token15] = ACTIONS(2033), - [aux_sym_cmd_identifier_token16] = ACTIONS(2033), - [aux_sym_cmd_identifier_token17] = ACTIONS(2033), - [aux_sym_cmd_identifier_token18] = ACTIONS(2033), - [aux_sym_cmd_identifier_token19] = ACTIONS(2033), - [aux_sym_cmd_identifier_token20] = ACTIONS(2033), - [aux_sym_cmd_identifier_token21] = ACTIONS(2033), - [aux_sym_cmd_identifier_token22] = ACTIONS(2033), - [aux_sym_cmd_identifier_token23] = ACTIONS(2033), - [aux_sym_cmd_identifier_token24] = ACTIONS(2033), - [aux_sym_cmd_identifier_token25] = ACTIONS(2033), - [aux_sym_cmd_identifier_token26] = ACTIONS(2033), - [aux_sym_cmd_identifier_token27] = ACTIONS(2033), - [aux_sym_cmd_identifier_token28] = ACTIONS(2033), - [aux_sym_cmd_identifier_token29] = ACTIONS(2033), - [aux_sym_cmd_identifier_token30] = ACTIONS(2033), - [aux_sym_cmd_identifier_token31] = ACTIONS(2033), - [aux_sym_cmd_identifier_token32] = ACTIONS(2033), - [aux_sym_cmd_identifier_token33] = ACTIONS(2033), - [aux_sym_cmd_identifier_token34] = ACTIONS(2033), - [aux_sym_cmd_identifier_token35] = ACTIONS(2033), - [aux_sym_cmd_identifier_token36] = ACTIONS(2033), - [anon_sym_true] = ACTIONS(2035), - [anon_sym_false] = ACTIONS(2035), - [anon_sym_null] = ACTIONS(2035), - [aux_sym_cmd_identifier_token38] = ACTIONS(2033), - [aux_sym_cmd_identifier_token39] = ACTIONS(2035), - [aux_sym_cmd_identifier_token40] = ACTIONS(2035), - [anon_sym_def] = ACTIONS(2033), - [anon_sym_export_DASHenv] = ACTIONS(2033), - [anon_sym_extern] = ACTIONS(2033), - [anon_sym_module] = ACTIONS(2033), - [anon_sym_use] = ACTIONS(2033), - [anon_sym_LPAREN] = ACTIONS(2035), - [anon_sym_DOLLAR] = ACTIONS(2035), - [anon_sym_error] = ACTIONS(2033), - [anon_sym_list] = ACTIONS(2033), - [anon_sym_DASH] = ACTIONS(2033), - [anon_sym_break] = ACTIONS(2033), - [anon_sym_continue] = ACTIONS(2033), - [anon_sym_for] = ACTIONS(2033), - [anon_sym_in] = ACTIONS(2033), - [anon_sym_loop] = ACTIONS(2033), - [anon_sym_make] = ACTIONS(2033), - [anon_sym_while] = ACTIONS(2033), - [anon_sym_do] = ACTIONS(2033), - [anon_sym_if] = ACTIONS(2033), - [anon_sym_else] = ACTIONS(2033), - [anon_sym_match] = ACTIONS(2033), - [anon_sym_RBRACE] = ACTIONS(2035), - [anon_sym_try] = ACTIONS(2033), - [anon_sym_catch] = ACTIONS(2033), - [anon_sym_return] = ACTIONS(2033), - [anon_sym_source] = ACTIONS(2033), - [anon_sym_source_DASHenv] = ACTIONS(2033), - [anon_sym_register] = ACTIONS(2033), - [anon_sym_hide] = ACTIONS(2033), - [anon_sym_hide_DASHenv] = ACTIONS(2033), - [anon_sym_overlay] = ACTIONS(2033), - [anon_sym_new] = ACTIONS(2033), - [anon_sym_as] = ACTIONS(2033), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2035), - [anon_sym_DOT_DOT2] = ACTIONS(2033), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2035), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2035), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2035), - [aux_sym__val_number_decimal_token1] = ACTIONS(2033), - [aux_sym__val_number_decimal_token2] = ACTIONS(2035), - [aux_sym__val_number_decimal_token3] = ACTIONS(2035), - [aux_sym__val_number_decimal_token4] = ACTIONS(2035), - [aux_sym__val_number_token1] = ACTIONS(2035), - [aux_sym__val_number_token2] = ACTIONS(2035), - [aux_sym__val_number_token3] = ACTIONS(2035), - [anon_sym_DQUOTE] = ACTIONS(2035), - [sym__str_single_quotes] = ACTIONS(2035), - [sym__str_back_ticks] = ACTIONS(2035), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2035), - [anon_sym_PLUS] = ACTIONS(2033), - [anon_sym_POUND] = ACTIONS(247), + [407] = { + [sym_cell_path] = STATE(685), + [sym_path] = STATE(631), + [sym_comment] = STATE(407), + [aux_sym_cell_path_repeat1] = STATE(456), + [anon_sym_export] = ACTIONS(2083), + [anon_sym_alias] = ACTIONS(2083), + [anon_sym_let] = ACTIONS(2083), + [anon_sym_let_DASHenv] = ACTIONS(2083), + [anon_sym_mut] = ACTIONS(2083), + [anon_sym_const] = ACTIONS(2083), + [aux_sym_cmd_identifier_token1] = ACTIONS(2083), + [aux_sym_cmd_identifier_token2] = ACTIONS(2083), + [aux_sym_cmd_identifier_token3] = ACTIONS(2083), + [aux_sym_cmd_identifier_token4] = ACTIONS(2083), + [aux_sym_cmd_identifier_token5] = ACTIONS(2083), + [aux_sym_cmd_identifier_token6] = ACTIONS(2083), + [aux_sym_cmd_identifier_token7] = ACTIONS(2083), + [aux_sym_cmd_identifier_token8] = ACTIONS(2083), + [aux_sym_cmd_identifier_token9] = ACTIONS(2083), + [aux_sym_cmd_identifier_token10] = ACTIONS(2083), + [aux_sym_cmd_identifier_token11] = ACTIONS(2083), + [aux_sym_cmd_identifier_token12] = ACTIONS(2083), + [aux_sym_cmd_identifier_token13] = ACTIONS(2083), + [aux_sym_cmd_identifier_token14] = ACTIONS(2083), + [aux_sym_cmd_identifier_token15] = ACTIONS(2083), + [aux_sym_cmd_identifier_token16] = ACTIONS(2083), + [aux_sym_cmd_identifier_token17] = ACTIONS(2083), + [aux_sym_cmd_identifier_token18] = ACTIONS(2083), + [aux_sym_cmd_identifier_token19] = ACTIONS(2083), + [aux_sym_cmd_identifier_token20] = ACTIONS(2083), + [aux_sym_cmd_identifier_token21] = ACTIONS(2083), + [aux_sym_cmd_identifier_token22] = ACTIONS(2083), + [aux_sym_cmd_identifier_token23] = ACTIONS(2083), + [aux_sym_cmd_identifier_token24] = ACTIONS(2083), + [aux_sym_cmd_identifier_token25] = ACTIONS(2083), + [aux_sym_cmd_identifier_token26] = ACTIONS(2083), + [aux_sym_cmd_identifier_token27] = ACTIONS(2083), + [aux_sym_cmd_identifier_token28] = ACTIONS(2083), + [aux_sym_cmd_identifier_token29] = ACTIONS(2083), + [aux_sym_cmd_identifier_token30] = ACTIONS(2083), + [aux_sym_cmd_identifier_token31] = ACTIONS(2083), + [aux_sym_cmd_identifier_token32] = ACTIONS(2083), + [aux_sym_cmd_identifier_token33] = ACTIONS(2083), + [aux_sym_cmd_identifier_token34] = ACTIONS(2083), + [aux_sym_cmd_identifier_token35] = ACTIONS(2083), + [aux_sym_cmd_identifier_token36] = ACTIONS(2083), + [anon_sym_true] = ACTIONS(2085), + [anon_sym_false] = ACTIONS(2085), + [anon_sym_null] = ACTIONS(2085), + [aux_sym_cmd_identifier_token38] = ACTIONS(2083), + [aux_sym_cmd_identifier_token39] = ACTIONS(2085), + [aux_sym_cmd_identifier_token40] = ACTIONS(2085), + [anon_sym_def] = ACTIONS(2083), + [anon_sym_export_DASHenv] = ACTIONS(2083), + [anon_sym_extern] = ACTIONS(2083), + [anon_sym_module] = ACTIONS(2083), + [anon_sym_use] = ACTIONS(2083), + [anon_sym_LPAREN] = ACTIONS(2085), + [anon_sym_DOLLAR] = ACTIONS(2085), + [anon_sym_error] = ACTIONS(2083), + [anon_sym_list] = ACTIONS(2083), + [anon_sym_DASH] = ACTIONS(2083), + [anon_sym_break] = ACTIONS(2083), + [anon_sym_continue] = ACTIONS(2083), + [anon_sym_for] = ACTIONS(2083), + [anon_sym_in] = ACTIONS(2083), + [anon_sym_loop] = ACTIONS(2083), + [anon_sym_make] = ACTIONS(2083), + [anon_sym_while] = ACTIONS(2083), + [anon_sym_do] = ACTIONS(2083), + [anon_sym_if] = ACTIONS(2083), + [anon_sym_else] = ACTIONS(2083), + [anon_sym_match] = ACTIONS(2083), + [anon_sym_RBRACE] = ACTIONS(2085), + [anon_sym_try] = ACTIONS(2083), + [anon_sym_catch] = ACTIONS(2083), + [anon_sym_return] = ACTIONS(2083), + [anon_sym_source] = ACTIONS(2083), + [anon_sym_source_DASHenv] = ACTIONS(2083), + [anon_sym_register] = ACTIONS(2083), + [anon_sym_hide] = ACTIONS(2083), + [anon_sym_hide_DASHenv] = ACTIONS(2083), + [anon_sym_overlay] = ACTIONS(2083), + [anon_sym_new] = ACTIONS(2083), + [anon_sym_as] = ACTIONS(2083), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2085), + [anon_sym_DOT] = ACTIONS(2177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2085), + [aux_sym__val_number_decimal_token1] = ACTIONS(2083), + [aux_sym__val_number_decimal_token2] = ACTIONS(2085), + [aux_sym__val_number_decimal_token3] = ACTIONS(2085), + [aux_sym__val_number_decimal_token4] = ACTIONS(2085), + [aux_sym__val_number_token1] = ACTIONS(2085), + [aux_sym__val_number_token2] = ACTIONS(2085), + [aux_sym__val_number_token3] = ACTIONS(2085), + [anon_sym_DQUOTE] = ACTIONS(2085), + [sym__str_single_quotes] = ACTIONS(2085), + [sym__str_back_ticks] = ACTIONS(2085), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2085), + [anon_sym_PLUS] = ACTIONS(2083), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2085), }, - [450] = { - [sym__expr_parenthesized_immediate] = STATE(7671), - [sym_comment] = STATE(450), - [anon_sym_export] = ACTIONS(2152), - [anon_sym_alias] = ACTIONS(2152), - [anon_sym_let] = ACTIONS(2152), - [anon_sym_let_DASHenv] = ACTIONS(2152), - [anon_sym_mut] = ACTIONS(2152), - [anon_sym_const] = ACTIONS(2152), - [aux_sym_cmd_identifier_token1] = ACTIONS(2152), - [aux_sym_cmd_identifier_token2] = ACTIONS(2152), - [aux_sym_cmd_identifier_token3] = ACTIONS(2152), - [aux_sym_cmd_identifier_token4] = ACTIONS(2152), - [aux_sym_cmd_identifier_token5] = ACTIONS(2152), - [aux_sym_cmd_identifier_token6] = ACTIONS(2152), - [aux_sym_cmd_identifier_token7] = ACTIONS(2152), - [aux_sym_cmd_identifier_token8] = ACTIONS(2152), - [aux_sym_cmd_identifier_token9] = ACTIONS(2152), - [aux_sym_cmd_identifier_token10] = ACTIONS(2152), - [aux_sym_cmd_identifier_token11] = ACTIONS(2152), - [aux_sym_cmd_identifier_token12] = ACTIONS(2152), - [aux_sym_cmd_identifier_token13] = ACTIONS(2152), - [aux_sym_cmd_identifier_token14] = ACTIONS(2152), - [aux_sym_cmd_identifier_token15] = ACTIONS(2152), - [aux_sym_cmd_identifier_token16] = ACTIONS(2152), - [aux_sym_cmd_identifier_token17] = ACTIONS(2152), - [aux_sym_cmd_identifier_token18] = ACTIONS(2152), - [aux_sym_cmd_identifier_token19] = ACTIONS(2152), - [aux_sym_cmd_identifier_token20] = ACTIONS(2152), - [aux_sym_cmd_identifier_token21] = ACTIONS(2152), - [aux_sym_cmd_identifier_token22] = ACTIONS(2152), - [aux_sym_cmd_identifier_token23] = ACTIONS(2152), - [aux_sym_cmd_identifier_token24] = ACTIONS(2152), - [aux_sym_cmd_identifier_token25] = ACTIONS(2152), - [aux_sym_cmd_identifier_token26] = ACTIONS(2152), - [aux_sym_cmd_identifier_token27] = ACTIONS(2152), - [aux_sym_cmd_identifier_token28] = ACTIONS(2152), - [aux_sym_cmd_identifier_token29] = ACTIONS(2152), - [aux_sym_cmd_identifier_token30] = ACTIONS(2152), - [aux_sym_cmd_identifier_token31] = ACTIONS(2152), - [aux_sym_cmd_identifier_token32] = ACTIONS(2152), - [aux_sym_cmd_identifier_token33] = ACTIONS(2152), - [aux_sym_cmd_identifier_token34] = ACTIONS(2152), - [aux_sym_cmd_identifier_token35] = ACTIONS(2152), - [aux_sym_cmd_identifier_token36] = ACTIONS(2152), - [anon_sym_true] = ACTIONS(2152), - [anon_sym_false] = ACTIONS(2152), - [anon_sym_null] = ACTIONS(2152), - [aux_sym_cmd_identifier_token38] = ACTIONS(2152), - [aux_sym_cmd_identifier_token39] = ACTIONS(2152), - [aux_sym_cmd_identifier_token40] = ACTIONS(2152), - [anon_sym_def] = ACTIONS(2152), - [anon_sym_export_DASHenv] = ACTIONS(2152), - [anon_sym_extern] = ACTIONS(2152), - [anon_sym_module] = ACTIONS(2152), - [anon_sym_use] = ACTIONS(2152), - [anon_sym_LPAREN] = ACTIONS(2152), - [anon_sym_DOLLAR] = ACTIONS(2152), - [anon_sym_error] = ACTIONS(2152), - [anon_sym_list] = ACTIONS(2152), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_break] = ACTIONS(2152), - [anon_sym_continue] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(2152), - [anon_sym_in] = ACTIONS(2152), - [anon_sym_loop] = ACTIONS(2152), - [anon_sym_make] = ACTIONS(2152), - [anon_sym_while] = ACTIONS(2152), - [anon_sym_do] = ACTIONS(2152), - [anon_sym_if] = ACTIONS(2152), - [anon_sym_else] = ACTIONS(2152), - [anon_sym_match] = ACTIONS(2152), - [anon_sym_RBRACE] = ACTIONS(2152), - [anon_sym_try] = ACTIONS(2152), - [anon_sym_catch] = ACTIONS(2152), - [anon_sym_return] = ACTIONS(2152), - [anon_sym_source] = ACTIONS(2152), - [anon_sym_source_DASHenv] = ACTIONS(2152), - [anon_sym_register] = ACTIONS(2152), - [anon_sym_hide] = ACTIONS(2152), - [anon_sym_hide_DASHenv] = ACTIONS(2152), - [anon_sym_overlay] = ACTIONS(2152), - [anon_sym_new] = ACTIONS(2152), - [anon_sym_as] = ACTIONS(2152), - [anon_sym_LPAREN2] = ACTIONS(1562), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2152), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2152), - [aux_sym__val_number_decimal_token1] = ACTIONS(2152), - [aux_sym__val_number_decimal_token2] = ACTIONS(2152), - [aux_sym__val_number_decimal_token3] = ACTIONS(2152), - [aux_sym__val_number_decimal_token4] = ACTIONS(2152), - [aux_sym__val_number_token1] = ACTIONS(2152), - [aux_sym__val_number_token2] = ACTIONS(2152), - [aux_sym__val_number_token3] = ACTIONS(2152), - [anon_sym_DQUOTE] = ACTIONS(2152), - [sym__str_single_quotes] = ACTIONS(2152), - [sym__str_back_ticks] = ACTIONS(2152), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2152), - [sym__entry_separator] = ACTIONS(2154), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_POUND] = ACTIONS(3), + [408] = { + [sym_cell_path] = STATE(686), + [sym_path] = STATE(631), + [sym_comment] = STATE(408), + [aux_sym_cell_path_repeat1] = STATE(456), + [anon_sym_export] = ACTIONS(2087), + [anon_sym_alias] = ACTIONS(2087), + [anon_sym_let] = ACTIONS(2087), + [anon_sym_let_DASHenv] = ACTIONS(2087), + [anon_sym_mut] = ACTIONS(2087), + [anon_sym_const] = ACTIONS(2087), + [aux_sym_cmd_identifier_token1] = ACTIONS(2087), + [aux_sym_cmd_identifier_token2] = ACTIONS(2087), + [aux_sym_cmd_identifier_token3] = ACTIONS(2087), + [aux_sym_cmd_identifier_token4] = ACTIONS(2087), + [aux_sym_cmd_identifier_token5] = ACTIONS(2087), + [aux_sym_cmd_identifier_token6] = ACTIONS(2087), + [aux_sym_cmd_identifier_token7] = ACTIONS(2087), + [aux_sym_cmd_identifier_token8] = ACTIONS(2087), + [aux_sym_cmd_identifier_token9] = ACTIONS(2087), + [aux_sym_cmd_identifier_token10] = ACTIONS(2087), + [aux_sym_cmd_identifier_token11] = ACTIONS(2087), + [aux_sym_cmd_identifier_token12] = ACTIONS(2087), + [aux_sym_cmd_identifier_token13] = ACTIONS(2087), + [aux_sym_cmd_identifier_token14] = ACTIONS(2087), + [aux_sym_cmd_identifier_token15] = ACTIONS(2087), + [aux_sym_cmd_identifier_token16] = ACTIONS(2087), + [aux_sym_cmd_identifier_token17] = ACTIONS(2087), + [aux_sym_cmd_identifier_token18] = ACTIONS(2087), + [aux_sym_cmd_identifier_token19] = ACTIONS(2087), + [aux_sym_cmd_identifier_token20] = ACTIONS(2087), + [aux_sym_cmd_identifier_token21] = ACTIONS(2087), + [aux_sym_cmd_identifier_token22] = ACTIONS(2087), + [aux_sym_cmd_identifier_token23] = ACTIONS(2087), + [aux_sym_cmd_identifier_token24] = ACTIONS(2087), + [aux_sym_cmd_identifier_token25] = ACTIONS(2087), + [aux_sym_cmd_identifier_token26] = ACTIONS(2087), + [aux_sym_cmd_identifier_token27] = ACTIONS(2087), + [aux_sym_cmd_identifier_token28] = ACTIONS(2087), + [aux_sym_cmd_identifier_token29] = ACTIONS(2087), + [aux_sym_cmd_identifier_token30] = ACTIONS(2087), + [aux_sym_cmd_identifier_token31] = ACTIONS(2087), + [aux_sym_cmd_identifier_token32] = ACTIONS(2087), + [aux_sym_cmd_identifier_token33] = ACTIONS(2087), + [aux_sym_cmd_identifier_token34] = ACTIONS(2087), + [aux_sym_cmd_identifier_token35] = ACTIONS(2087), + [aux_sym_cmd_identifier_token36] = ACTIONS(2087), + [anon_sym_true] = ACTIONS(2089), + [anon_sym_false] = ACTIONS(2089), + [anon_sym_null] = ACTIONS(2089), + [aux_sym_cmd_identifier_token38] = ACTIONS(2087), + [aux_sym_cmd_identifier_token39] = ACTIONS(2089), + [aux_sym_cmd_identifier_token40] = ACTIONS(2089), + [anon_sym_def] = ACTIONS(2087), + [anon_sym_export_DASHenv] = ACTIONS(2087), + [anon_sym_extern] = ACTIONS(2087), + [anon_sym_module] = ACTIONS(2087), + [anon_sym_use] = ACTIONS(2087), + [anon_sym_LPAREN] = ACTIONS(2089), + [anon_sym_DOLLAR] = ACTIONS(2089), + [anon_sym_error] = ACTIONS(2087), + [anon_sym_list] = ACTIONS(2087), + [anon_sym_DASH] = ACTIONS(2087), + [anon_sym_break] = ACTIONS(2087), + [anon_sym_continue] = ACTIONS(2087), + [anon_sym_for] = ACTIONS(2087), + [anon_sym_in] = ACTIONS(2087), + [anon_sym_loop] = ACTIONS(2087), + [anon_sym_make] = ACTIONS(2087), + [anon_sym_while] = ACTIONS(2087), + [anon_sym_do] = ACTIONS(2087), + [anon_sym_if] = ACTIONS(2087), + [anon_sym_else] = ACTIONS(2087), + [anon_sym_match] = ACTIONS(2087), + [anon_sym_RBRACE] = ACTIONS(2089), + [anon_sym_try] = ACTIONS(2087), + [anon_sym_catch] = ACTIONS(2087), + [anon_sym_return] = ACTIONS(2087), + [anon_sym_source] = ACTIONS(2087), + [anon_sym_source_DASHenv] = ACTIONS(2087), + [anon_sym_register] = ACTIONS(2087), + [anon_sym_hide] = ACTIONS(2087), + [anon_sym_hide_DASHenv] = ACTIONS(2087), + [anon_sym_overlay] = ACTIONS(2087), + [anon_sym_new] = ACTIONS(2087), + [anon_sym_as] = ACTIONS(2087), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2089), + [anon_sym_DOT] = ACTIONS(2177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2089), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2089), + [aux_sym__val_number_decimal_token4] = ACTIONS(2089), + [aux_sym__val_number_token1] = ACTIONS(2089), + [aux_sym__val_number_token2] = ACTIONS(2089), + [aux_sym__val_number_token3] = ACTIONS(2089), + [anon_sym_DQUOTE] = ACTIONS(2089), + [sym__str_single_quotes] = ACTIONS(2089), + [sym__str_back_ticks] = ACTIONS(2089), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2089), + [anon_sym_PLUS] = ACTIONS(2087), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2089), }, - [451] = { - [sym__expr_parenthesized_immediate] = STATE(7671), - [sym_comment] = STATE(451), - [anon_sym_export] = ACTIONS(2156), - [anon_sym_alias] = ACTIONS(2156), - [anon_sym_let] = ACTIONS(2156), - [anon_sym_let_DASHenv] = ACTIONS(2156), - [anon_sym_mut] = ACTIONS(2156), - [anon_sym_const] = ACTIONS(2156), - [aux_sym_cmd_identifier_token1] = ACTIONS(2156), - [aux_sym_cmd_identifier_token2] = ACTIONS(2156), - [aux_sym_cmd_identifier_token3] = ACTIONS(2156), - [aux_sym_cmd_identifier_token4] = ACTIONS(2156), - [aux_sym_cmd_identifier_token5] = ACTIONS(2156), - [aux_sym_cmd_identifier_token6] = ACTIONS(2156), - [aux_sym_cmd_identifier_token7] = ACTIONS(2156), - [aux_sym_cmd_identifier_token8] = ACTIONS(2156), - [aux_sym_cmd_identifier_token9] = ACTIONS(2156), - [aux_sym_cmd_identifier_token10] = ACTIONS(2156), - [aux_sym_cmd_identifier_token11] = ACTIONS(2156), - [aux_sym_cmd_identifier_token12] = ACTIONS(2156), - [aux_sym_cmd_identifier_token13] = ACTIONS(2156), - [aux_sym_cmd_identifier_token14] = ACTIONS(2156), - [aux_sym_cmd_identifier_token15] = ACTIONS(2156), - [aux_sym_cmd_identifier_token16] = ACTIONS(2156), - [aux_sym_cmd_identifier_token17] = ACTIONS(2156), - [aux_sym_cmd_identifier_token18] = ACTIONS(2156), - [aux_sym_cmd_identifier_token19] = ACTIONS(2156), - [aux_sym_cmd_identifier_token20] = ACTIONS(2156), - [aux_sym_cmd_identifier_token21] = ACTIONS(2156), - [aux_sym_cmd_identifier_token22] = ACTIONS(2156), - [aux_sym_cmd_identifier_token23] = ACTIONS(2156), - [aux_sym_cmd_identifier_token24] = ACTIONS(2156), - [aux_sym_cmd_identifier_token25] = ACTIONS(2156), - [aux_sym_cmd_identifier_token26] = ACTIONS(2156), - [aux_sym_cmd_identifier_token27] = ACTIONS(2156), - [aux_sym_cmd_identifier_token28] = ACTIONS(2156), - [aux_sym_cmd_identifier_token29] = ACTIONS(2156), - [aux_sym_cmd_identifier_token30] = ACTIONS(2156), - [aux_sym_cmd_identifier_token31] = ACTIONS(2156), - [aux_sym_cmd_identifier_token32] = ACTIONS(2156), - [aux_sym_cmd_identifier_token33] = ACTIONS(2156), - [aux_sym_cmd_identifier_token34] = ACTIONS(2156), - [aux_sym_cmd_identifier_token35] = ACTIONS(2156), - [aux_sym_cmd_identifier_token36] = ACTIONS(2156), - [anon_sym_true] = ACTIONS(2156), - [anon_sym_false] = ACTIONS(2156), - [anon_sym_null] = ACTIONS(2156), - [aux_sym_cmd_identifier_token38] = ACTIONS(2156), - [aux_sym_cmd_identifier_token39] = ACTIONS(2156), - [aux_sym_cmd_identifier_token40] = ACTIONS(2156), - [anon_sym_def] = ACTIONS(2156), - [anon_sym_export_DASHenv] = ACTIONS(2156), - [anon_sym_extern] = ACTIONS(2156), - [anon_sym_module] = ACTIONS(2156), - [anon_sym_use] = ACTIONS(2156), - [anon_sym_LPAREN] = ACTIONS(2156), - [anon_sym_DOLLAR] = ACTIONS(2156), - [anon_sym_error] = ACTIONS(2156), - [anon_sym_list] = ACTIONS(2156), - [anon_sym_DASH] = ACTIONS(2156), - [anon_sym_break] = ACTIONS(2156), - [anon_sym_continue] = ACTIONS(2156), - [anon_sym_for] = ACTIONS(2156), - [anon_sym_in] = ACTIONS(2156), - [anon_sym_loop] = ACTIONS(2156), - [anon_sym_make] = ACTIONS(2156), - [anon_sym_while] = ACTIONS(2156), - [anon_sym_do] = ACTIONS(2156), - [anon_sym_if] = ACTIONS(2156), - [anon_sym_else] = ACTIONS(2156), - [anon_sym_match] = ACTIONS(2156), - [anon_sym_RBRACE] = ACTIONS(2156), - [anon_sym_try] = ACTIONS(2156), - [anon_sym_catch] = ACTIONS(2156), - [anon_sym_return] = ACTIONS(2156), - [anon_sym_source] = ACTIONS(2156), - [anon_sym_source_DASHenv] = ACTIONS(2156), - [anon_sym_register] = ACTIONS(2156), - [anon_sym_hide] = ACTIONS(2156), - [anon_sym_hide_DASHenv] = ACTIONS(2156), - [anon_sym_overlay] = ACTIONS(2156), - [anon_sym_new] = ACTIONS(2156), - [anon_sym_as] = ACTIONS(2156), - [anon_sym_LPAREN2] = ACTIONS(1562), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2156), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2156), - [aux_sym__val_number_decimal_token1] = ACTIONS(2156), - [aux_sym__val_number_decimal_token2] = ACTIONS(2156), - [aux_sym__val_number_decimal_token3] = ACTIONS(2156), - [aux_sym__val_number_decimal_token4] = ACTIONS(2156), - [aux_sym__val_number_token1] = ACTIONS(2156), - [aux_sym__val_number_token2] = ACTIONS(2156), - [aux_sym__val_number_token3] = ACTIONS(2156), - [anon_sym_DQUOTE] = ACTIONS(2156), - [sym__str_single_quotes] = ACTIONS(2156), - [sym__str_back_ticks] = ACTIONS(2156), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2156), - [sym__entry_separator] = ACTIONS(2158), - [anon_sym_PLUS] = ACTIONS(2156), - [anon_sym_POUND] = ACTIONS(3), + [409] = { + [sym_cell_path] = STATE(687), + [sym_path] = STATE(631), + [sym_comment] = STATE(409), + [aux_sym_cell_path_repeat1] = STATE(456), + [anon_sym_export] = ACTIONS(2095), + [anon_sym_alias] = ACTIONS(2095), + [anon_sym_let] = ACTIONS(2095), + [anon_sym_let_DASHenv] = ACTIONS(2095), + [anon_sym_mut] = ACTIONS(2095), + [anon_sym_const] = ACTIONS(2095), + [aux_sym_cmd_identifier_token1] = ACTIONS(2095), + [aux_sym_cmd_identifier_token2] = ACTIONS(2095), + [aux_sym_cmd_identifier_token3] = ACTIONS(2095), + [aux_sym_cmd_identifier_token4] = ACTIONS(2095), + [aux_sym_cmd_identifier_token5] = ACTIONS(2095), + [aux_sym_cmd_identifier_token6] = ACTIONS(2095), + [aux_sym_cmd_identifier_token7] = ACTIONS(2095), + [aux_sym_cmd_identifier_token8] = ACTIONS(2095), + [aux_sym_cmd_identifier_token9] = ACTIONS(2095), + [aux_sym_cmd_identifier_token10] = ACTIONS(2095), + [aux_sym_cmd_identifier_token11] = ACTIONS(2095), + [aux_sym_cmd_identifier_token12] = ACTIONS(2095), + [aux_sym_cmd_identifier_token13] = ACTIONS(2095), + [aux_sym_cmd_identifier_token14] = ACTIONS(2095), + [aux_sym_cmd_identifier_token15] = ACTIONS(2095), + [aux_sym_cmd_identifier_token16] = ACTIONS(2095), + [aux_sym_cmd_identifier_token17] = ACTIONS(2095), + [aux_sym_cmd_identifier_token18] = ACTIONS(2095), + [aux_sym_cmd_identifier_token19] = ACTIONS(2095), + [aux_sym_cmd_identifier_token20] = ACTIONS(2095), + [aux_sym_cmd_identifier_token21] = ACTIONS(2095), + [aux_sym_cmd_identifier_token22] = ACTIONS(2095), + [aux_sym_cmd_identifier_token23] = ACTIONS(2095), + [aux_sym_cmd_identifier_token24] = ACTIONS(2095), + [aux_sym_cmd_identifier_token25] = ACTIONS(2095), + [aux_sym_cmd_identifier_token26] = ACTIONS(2095), + [aux_sym_cmd_identifier_token27] = ACTIONS(2095), + [aux_sym_cmd_identifier_token28] = ACTIONS(2095), + [aux_sym_cmd_identifier_token29] = ACTIONS(2095), + [aux_sym_cmd_identifier_token30] = ACTIONS(2095), + [aux_sym_cmd_identifier_token31] = ACTIONS(2095), + [aux_sym_cmd_identifier_token32] = ACTIONS(2095), + [aux_sym_cmd_identifier_token33] = ACTIONS(2095), + [aux_sym_cmd_identifier_token34] = ACTIONS(2095), + [aux_sym_cmd_identifier_token35] = ACTIONS(2095), + [aux_sym_cmd_identifier_token36] = ACTIONS(2095), + [anon_sym_true] = ACTIONS(2097), + [anon_sym_false] = ACTIONS(2097), + [anon_sym_null] = ACTIONS(2097), + [aux_sym_cmd_identifier_token38] = ACTIONS(2095), + [aux_sym_cmd_identifier_token39] = ACTIONS(2097), + [aux_sym_cmd_identifier_token40] = ACTIONS(2097), + [anon_sym_def] = ACTIONS(2095), + [anon_sym_export_DASHenv] = ACTIONS(2095), + [anon_sym_extern] = ACTIONS(2095), + [anon_sym_module] = ACTIONS(2095), + [anon_sym_use] = ACTIONS(2095), + [anon_sym_LPAREN] = ACTIONS(2097), + [anon_sym_DOLLAR] = ACTIONS(2097), + [anon_sym_error] = ACTIONS(2095), + [anon_sym_list] = ACTIONS(2095), + [anon_sym_DASH] = ACTIONS(2095), + [anon_sym_break] = ACTIONS(2095), + [anon_sym_continue] = ACTIONS(2095), + [anon_sym_for] = ACTIONS(2095), + [anon_sym_in] = ACTIONS(2095), + [anon_sym_loop] = ACTIONS(2095), + [anon_sym_make] = ACTIONS(2095), + [anon_sym_while] = ACTIONS(2095), + [anon_sym_do] = ACTIONS(2095), + [anon_sym_if] = ACTIONS(2095), + [anon_sym_else] = ACTIONS(2095), + [anon_sym_match] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2097), + [anon_sym_try] = ACTIONS(2095), + [anon_sym_catch] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2095), + [anon_sym_source] = ACTIONS(2095), + [anon_sym_source_DASHenv] = ACTIONS(2095), + [anon_sym_register] = ACTIONS(2095), + [anon_sym_hide] = ACTIONS(2095), + [anon_sym_hide_DASHenv] = ACTIONS(2095), + [anon_sym_overlay] = ACTIONS(2095), + [anon_sym_new] = ACTIONS(2095), + [anon_sym_as] = ACTIONS(2095), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2097), + [anon_sym_DOT] = ACTIONS(2177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2097), + [aux_sym__val_number_decimal_token1] = ACTIONS(2095), + [aux_sym__val_number_decimal_token2] = ACTIONS(2097), + [aux_sym__val_number_decimal_token3] = ACTIONS(2097), + [aux_sym__val_number_decimal_token4] = ACTIONS(2097), + [aux_sym__val_number_token1] = ACTIONS(2097), + [aux_sym__val_number_token2] = ACTIONS(2097), + [aux_sym__val_number_token3] = ACTIONS(2097), + [anon_sym_DQUOTE] = ACTIONS(2097), + [sym__str_single_quotes] = ACTIONS(2097), + [sym__str_back_ticks] = ACTIONS(2097), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2097), + [anon_sym_PLUS] = ACTIONS(2095), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2097), }, - [452] = { - [sym_expr_parenthesized] = STATE(4458), - [sym__spread_parenthesized] = STATE(4971), - [sym_val_range] = STATE(4988), - [sym__val_range] = STATE(7614), - [sym__val_range_with_end] = STATE(7248), - [sym__value] = STATE(4988), - [sym_val_nothing] = STATE(4843), - [sym_val_bool] = STATE(4562), - [sym__spread_variable] = STATE(4811), - [sym_val_variable] = STATE(4457), - [sym_val_number] = STATE(4843), - [sym__val_number_decimal] = STATE(3979), - [sym__val_number] = STATE(4928), - [sym_val_duration] = STATE(4843), - [sym_val_filesize] = STATE(4843), - [sym_val_binary] = STATE(4843), - [sym_val_string] = STATE(4843), - [sym__str_double_quotes] = STATE(4626), - [sym_val_interpolated] = STATE(4843), - [sym__inter_single_quotes] = STATE(4866), - [sym__inter_double_quotes] = STATE(4872), - [sym_val_list] = STATE(4843), - [sym__spread_list] = STATE(4971), - [sym_val_record] = STATE(4843), - [sym_val_table] = STATE(4843), - [sym_val_closure] = STATE(4843), - [sym__cmd_arg] = STATE(4839), - [sym_redirection] = STATE(4841), - [sym__flag] = STATE(4842), - [sym_short_flag] = STATE(4835), - [sym_long_flag] = STATE(4835), - [sym_unquoted] = STATE(4529), - [sym__unquoted_with_expr] = STATE(4862), - [sym__unquoted_anonymous_prefix] = STATE(7039), - [sym_comment] = STATE(452), - [ts_builtin_sym_end] = ACTIONS(2045), - [anon_sym_true] = ACTIONS(2160), - [anon_sym_false] = ACTIONS(2160), - [anon_sym_null] = ACTIONS(2162), - [aux_sym_cmd_identifier_token38] = ACTIONS(2164), - [aux_sym_cmd_identifier_token39] = ACTIONS(2164), - [aux_sym_cmd_identifier_token40] = ACTIONS(2164), - [sym__newline] = ACTIONS(2043), - [sym__space] = ACTIONS(2045), - [anon_sym_SEMI] = ACTIONS(2043), - [anon_sym_PIPE] = ACTIONS(2043), - [anon_sym_err_GT_PIPE] = ACTIONS(2043), - [anon_sym_out_GT_PIPE] = ACTIONS(2043), - [anon_sym_e_GT_PIPE] = ACTIONS(2043), - [anon_sym_o_GT_PIPE] = ACTIONS(2043), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2043), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2043), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2043), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2043), - [anon_sym_LBRACK] = ACTIONS(2166), - [anon_sym_LPAREN] = ACTIONS(2168), - [anon_sym_DOLLAR] = ACTIONS(2170), - [anon_sym_DASH_DASH] = ACTIONS(2172), - [anon_sym_DASH] = ACTIONS(2174), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_DOT_DOT] = ACTIONS(2178), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2180), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2182), - [anon_sym_DOT_DOT_LT] = ACTIONS(2182), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2184), - [aux_sym__val_number_decimal_token1] = ACTIONS(2186), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2188), - [aux_sym__val_number_decimal_token4] = ACTIONS(2190), - [aux_sym__val_number_token1] = ACTIONS(2192), - [aux_sym__val_number_token2] = ACTIONS(2192), - [aux_sym__val_number_token3] = ACTIONS(2192), - [anon_sym_0b] = ACTIONS(2194), - [anon_sym_0o] = ACTIONS(2196), - [anon_sym_0x] = ACTIONS(2196), - [sym_val_date] = ACTIONS(2198), - [anon_sym_DQUOTE] = ACTIONS(2200), - [sym__str_single_quotes] = ACTIONS(2202), - [sym__str_back_ticks] = ACTIONS(2202), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2204), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2206), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2208), - [anon_sym_err_GT] = ACTIONS(2210), - [anon_sym_out_GT] = ACTIONS(2210), - [anon_sym_e_GT] = ACTIONS(2210), - [anon_sym_o_GT] = ACTIONS(2210), - [anon_sym_err_PLUSout_GT] = ACTIONS(2210), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2210), - [anon_sym_o_PLUSe_GT] = ACTIONS(2210), - [anon_sym_e_PLUSo_GT] = ACTIONS(2210), - [anon_sym_err_GT_GT] = ACTIONS(2210), - [anon_sym_out_GT_GT] = ACTIONS(2210), - [anon_sym_e_GT_GT] = ACTIONS(2210), - [anon_sym_o_GT_GT] = ACTIONS(2210), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2210), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2210), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2210), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2210), - [aux_sym_unquoted_token1] = ACTIONS(2212), - [anon_sym_POUND] = ACTIONS(3), + [410] = { + [sym_comment] = STATE(410), + [anon_sym_export] = ACTIONS(1062), + [anon_sym_alias] = ACTIONS(1062), + [anon_sym_let] = ACTIONS(1062), + [anon_sym_let_DASHenv] = ACTIONS(1062), + [anon_sym_mut] = ACTIONS(1062), + [anon_sym_const] = ACTIONS(1062), + [aux_sym_cmd_identifier_token1] = ACTIONS(1062), + [aux_sym_cmd_identifier_token2] = ACTIONS(1062), + [aux_sym_cmd_identifier_token3] = ACTIONS(1062), + [aux_sym_cmd_identifier_token4] = ACTIONS(1062), + [aux_sym_cmd_identifier_token5] = ACTIONS(1062), + [aux_sym_cmd_identifier_token6] = ACTIONS(1062), + [aux_sym_cmd_identifier_token7] = ACTIONS(1062), + [aux_sym_cmd_identifier_token8] = ACTIONS(1062), + [aux_sym_cmd_identifier_token9] = ACTIONS(1062), + [aux_sym_cmd_identifier_token10] = ACTIONS(1062), + [aux_sym_cmd_identifier_token11] = ACTIONS(1062), + [aux_sym_cmd_identifier_token12] = ACTIONS(1062), + [aux_sym_cmd_identifier_token13] = ACTIONS(1062), + [aux_sym_cmd_identifier_token14] = ACTIONS(1062), + [aux_sym_cmd_identifier_token15] = ACTIONS(1062), + [aux_sym_cmd_identifier_token16] = ACTIONS(1062), + [aux_sym_cmd_identifier_token17] = ACTIONS(1062), + [aux_sym_cmd_identifier_token18] = ACTIONS(1062), + [aux_sym_cmd_identifier_token19] = ACTIONS(1062), + [aux_sym_cmd_identifier_token20] = ACTIONS(1062), + [aux_sym_cmd_identifier_token21] = ACTIONS(1062), + [aux_sym_cmd_identifier_token22] = ACTIONS(1062), + [aux_sym_cmd_identifier_token23] = ACTIONS(1062), + [aux_sym_cmd_identifier_token24] = ACTIONS(1062), + [aux_sym_cmd_identifier_token25] = ACTIONS(1062), + [aux_sym_cmd_identifier_token26] = ACTIONS(1062), + [aux_sym_cmd_identifier_token27] = ACTIONS(1062), + [aux_sym_cmd_identifier_token28] = ACTIONS(1062), + [aux_sym_cmd_identifier_token29] = ACTIONS(1062), + [aux_sym_cmd_identifier_token30] = ACTIONS(1062), + [aux_sym_cmd_identifier_token31] = ACTIONS(1062), + [aux_sym_cmd_identifier_token32] = ACTIONS(1062), + [aux_sym_cmd_identifier_token33] = ACTIONS(1062), + [aux_sym_cmd_identifier_token34] = ACTIONS(1062), + [aux_sym_cmd_identifier_token35] = ACTIONS(1062), + [aux_sym_cmd_identifier_token36] = ACTIONS(1062), + [anon_sym_true] = ACTIONS(1064), + [anon_sym_false] = ACTIONS(1064), + [anon_sym_null] = ACTIONS(1064), + [aux_sym_cmd_identifier_token38] = ACTIONS(1062), + [aux_sym_cmd_identifier_token39] = ACTIONS(1064), + [aux_sym_cmd_identifier_token40] = ACTIONS(1064), + [anon_sym_def] = ACTIONS(1062), + [anon_sym_export_DASHenv] = ACTIONS(1062), + [anon_sym_extern] = ACTIONS(1062), + [anon_sym_module] = ACTIONS(1062), + [anon_sym_use] = ACTIONS(1062), + [anon_sym_LPAREN] = ACTIONS(1064), + [anon_sym_COMMA] = ACTIONS(1064), + [anon_sym_DOLLAR] = ACTIONS(1064), + [anon_sym_error] = ACTIONS(1062), + [anon_sym_list] = ACTIONS(1062), + [anon_sym_DASH] = ACTIONS(1062), + [anon_sym_break] = ACTIONS(1062), + [anon_sym_continue] = ACTIONS(1062), + [anon_sym_for] = ACTIONS(1062), + [anon_sym_in] = ACTIONS(1062), + [anon_sym_loop] = ACTIONS(1062), + [anon_sym_make] = ACTIONS(1062), + [anon_sym_while] = ACTIONS(1062), + [anon_sym_do] = ACTIONS(1062), + [anon_sym_if] = ACTIONS(1062), + [anon_sym_else] = ACTIONS(1062), + [anon_sym_match] = ACTIONS(1062), + [anon_sym_RBRACE] = ACTIONS(1064), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_catch] = ACTIONS(1062), + [anon_sym_return] = ACTIONS(1062), + [anon_sym_source] = ACTIONS(1062), + [anon_sym_source_DASHenv] = ACTIONS(1062), + [anon_sym_register] = ACTIONS(1062), + [anon_sym_hide] = ACTIONS(1062), + [anon_sym_hide_DASHenv] = ACTIONS(1062), + [anon_sym_overlay] = ACTIONS(1062), + [anon_sym_new] = ACTIONS(1062), + [anon_sym_as] = ACTIONS(1062), + [anon_sym_QMARK2] = ACTIONS(1064), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1064), + [anon_sym_DOT] = ACTIONS(1062), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1064), + [aux_sym__val_number_decimal_token1] = ACTIONS(1062), + [aux_sym__val_number_decimal_token2] = ACTIONS(1064), + [aux_sym__val_number_decimal_token3] = ACTIONS(1064), + [aux_sym__val_number_decimal_token4] = ACTIONS(1064), + [aux_sym__val_number_token1] = ACTIONS(1064), + [aux_sym__val_number_token2] = ACTIONS(1064), + [aux_sym__val_number_token3] = ACTIONS(1064), + [anon_sym_DQUOTE] = ACTIONS(1064), + [sym__str_single_quotes] = ACTIONS(1064), + [sym__str_back_ticks] = ACTIONS(1064), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1064), + [aux_sym_record_entry_token1] = ACTIONS(1064), + [anon_sym_PLUS] = ACTIONS(1062), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1064), }, - [453] = { - [sym__expr_parenthesized_immediate] = STATE(7671), - [sym_comment] = STATE(453), - [anon_sym_export] = ACTIONS(2214), - [anon_sym_alias] = ACTIONS(2214), - [anon_sym_let] = ACTIONS(2214), - [anon_sym_let_DASHenv] = ACTIONS(2214), - [anon_sym_mut] = ACTIONS(2214), - [anon_sym_const] = ACTIONS(2214), - [aux_sym_cmd_identifier_token1] = ACTIONS(2214), - [aux_sym_cmd_identifier_token2] = ACTIONS(2214), - [aux_sym_cmd_identifier_token3] = ACTIONS(2214), - [aux_sym_cmd_identifier_token4] = ACTIONS(2214), - [aux_sym_cmd_identifier_token5] = ACTIONS(2214), - [aux_sym_cmd_identifier_token6] = ACTIONS(2214), - [aux_sym_cmd_identifier_token7] = ACTIONS(2214), - [aux_sym_cmd_identifier_token8] = ACTIONS(2214), - [aux_sym_cmd_identifier_token9] = ACTIONS(2214), - [aux_sym_cmd_identifier_token10] = ACTIONS(2214), - [aux_sym_cmd_identifier_token11] = ACTIONS(2214), - [aux_sym_cmd_identifier_token12] = ACTIONS(2214), - [aux_sym_cmd_identifier_token13] = ACTIONS(2214), - [aux_sym_cmd_identifier_token14] = ACTIONS(2214), - [aux_sym_cmd_identifier_token15] = ACTIONS(2214), - [aux_sym_cmd_identifier_token16] = ACTIONS(2214), - [aux_sym_cmd_identifier_token17] = ACTIONS(2214), - [aux_sym_cmd_identifier_token18] = ACTIONS(2214), - [aux_sym_cmd_identifier_token19] = ACTIONS(2214), - [aux_sym_cmd_identifier_token20] = ACTIONS(2214), - [aux_sym_cmd_identifier_token21] = ACTIONS(2214), - [aux_sym_cmd_identifier_token22] = ACTIONS(2214), - [aux_sym_cmd_identifier_token23] = ACTIONS(2214), - [aux_sym_cmd_identifier_token24] = ACTIONS(2214), - [aux_sym_cmd_identifier_token25] = ACTIONS(2214), - [aux_sym_cmd_identifier_token26] = ACTIONS(2214), - [aux_sym_cmd_identifier_token27] = ACTIONS(2214), - [aux_sym_cmd_identifier_token28] = ACTIONS(2214), - [aux_sym_cmd_identifier_token29] = ACTIONS(2214), - [aux_sym_cmd_identifier_token30] = ACTIONS(2214), - [aux_sym_cmd_identifier_token31] = ACTIONS(2214), - [aux_sym_cmd_identifier_token32] = ACTIONS(2214), - [aux_sym_cmd_identifier_token33] = ACTIONS(2214), - [aux_sym_cmd_identifier_token34] = ACTIONS(2214), - [aux_sym_cmd_identifier_token35] = ACTIONS(2214), - [aux_sym_cmd_identifier_token36] = ACTIONS(2214), - [anon_sym_true] = ACTIONS(2214), - [anon_sym_false] = ACTIONS(2214), - [anon_sym_null] = ACTIONS(2214), - [aux_sym_cmd_identifier_token38] = ACTIONS(2214), - [aux_sym_cmd_identifier_token39] = ACTIONS(2214), - [aux_sym_cmd_identifier_token40] = ACTIONS(2214), - [anon_sym_def] = ACTIONS(2214), - [anon_sym_export_DASHenv] = ACTIONS(2214), - [anon_sym_extern] = ACTIONS(2214), - [anon_sym_module] = ACTIONS(2214), - [anon_sym_use] = ACTIONS(2214), - [anon_sym_LPAREN] = ACTIONS(2214), - [anon_sym_DOLLAR] = ACTIONS(2214), - [anon_sym_error] = ACTIONS(2214), - [anon_sym_list] = ACTIONS(2214), - [anon_sym_DASH] = ACTIONS(2214), - [anon_sym_break] = ACTIONS(2214), - [anon_sym_continue] = ACTIONS(2214), - [anon_sym_for] = ACTIONS(2214), - [anon_sym_in] = ACTIONS(2214), - [anon_sym_loop] = ACTIONS(2214), - [anon_sym_make] = ACTIONS(2214), - [anon_sym_while] = ACTIONS(2214), - [anon_sym_do] = ACTIONS(2214), - [anon_sym_if] = ACTIONS(2214), - [anon_sym_else] = ACTIONS(2214), - [anon_sym_match] = ACTIONS(2214), - [anon_sym_RBRACE] = ACTIONS(2214), - [anon_sym_try] = ACTIONS(2214), - [anon_sym_catch] = ACTIONS(2214), - [anon_sym_return] = ACTIONS(2214), - [anon_sym_source] = ACTIONS(2214), - [anon_sym_source_DASHenv] = ACTIONS(2214), - [anon_sym_register] = ACTIONS(2214), - [anon_sym_hide] = ACTIONS(2214), - [anon_sym_hide_DASHenv] = ACTIONS(2214), - [anon_sym_overlay] = ACTIONS(2214), - [anon_sym_new] = ACTIONS(2214), - [anon_sym_as] = ACTIONS(2214), - [anon_sym_LPAREN2] = ACTIONS(1562), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2214), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2214), - [aux_sym__val_number_decimal_token1] = ACTIONS(2214), - [aux_sym__val_number_decimal_token2] = ACTIONS(2214), - [aux_sym__val_number_decimal_token3] = ACTIONS(2214), - [aux_sym__val_number_decimal_token4] = ACTIONS(2214), - [aux_sym__val_number_token1] = ACTIONS(2214), - [aux_sym__val_number_token2] = ACTIONS(2214), - [aux_sym__val_number_token3] = ACTIONS(2214), - [anon_sym_DQUOTE] = ACTIONS(2214), - [sym__str_single_quotes] = ACTIONS(2214), - [sym__str_back_ticks] = ACTIONS(2214), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2214), - [sym__entry_separator] = ACTIONS(2216), - [anon_sym_PLUS] = ACTIONS(2214), + [411] = { + [sym_path] = STATE(518), + [sym_comment] = STATE(411), + [aux_sym_cell_path_repeat1] = STATE(412), + [anon_sym_export] = ACTIONS(1027), + [anon_sym_alias] = ACTIONS(1027), + [anon_sym_let] = ACTIONS(1027), + [anon_sym_let_DASHenv] = ACTIONS(1027), + [anon_sym_mut] = ACTIONS(1027), + [anon_sym_const] = ACTIONS(1027), + [aux_sym_cmd_identifier_token1] = ACTIONS(1027), + [aux_sym_cmd_identifier_token2] = ACTIONS(1027), + [aux_sym_cmd_identifier_token3] = ACTIONS(1027), + [aux_sym_cmd_identifier_token4] = ACTIONS(1027), + [aux_sym_cmd_identifier_token5] = ACTIONS(1027), + [aux_sym_cmd_identifier_token6] = ACTIONS(1027), + [aux_sym_cmd_identifier_token7] = ACTIONS(1027), + [aux_sym_cmd_identifier_token8] = ACTIONS(1027), + [aux_sym_cmd_identifier_token9] = ACTIONS(1027), + [aux_sym_cmd_identifier_token10] = ACTIONS(1027), + [aux_sym_cmd_identifier_token11] = ACTIONS(1027), + [aux_sym_cmd_identifier_token12] = ACTIONS(1027), + [aux_sym_cmd_identifier_token13] = ACTIONS(1027), + [aux_sym_cmd_identifier_token14] = ACTIONS(1027), + [aux_sym_cmd_identifier_token15] = ACTIONS(1027), + [aux_sym_cmd_identifier_token16] = ACTIONS(1027), + [aux_sym_cmd_identifier_token17] = ACTIONS(1027), + [aux_sym_cmd_identifier_token18] = ACTIONS(1027), + [aux_sym_cmd_identifier_token19] = ACTIONS(1027), + [aux_sym_cmd_identifier_token20] = ACTIONS(1027), + [aux_sym_cmd_identifier_token21] = ACTIONS(1027), + [aux_sym_cmd_identifier_token22] = ACTIONS(1027), + [aux_sym_cmd_identifier_token23] = ACTIONS(1027), + [aux_sym_cmd_identifier_token24] = ACTIONS(1027), + [aux_sym_cmd_identifier_token25] = ACTIONS(1027), + [aux_sym_cmd_identifier_token26] = ACTIONS(1027), + [aux_sym_cmd_identifier_token27] = ACTIONS(1027), + [aux_sym_cmd_identifier_token28] = ACTIONS(1027), + [aux_sym_cmd_identifier_token29] = ACTIONS(1027), + [aux_sym_cmd_identifier_token30] = ACTIONS(1027), + [aux_sym_cmd_identifier_token31] = ACTIONS(1027), + [aux_sym_cmd_identifier_token32] = ACTIONS(1027), + [aux_sym_cmd_identifier_token33] = ACTIONS(1027), + [aux_sym_cmd_identifier_token34] = ACTIONS(1027), + [aux_sym_cmd_identifier_token35] = ACTIONS(1027), + [aux_sym_cmd_identifier_token36] = ACTIONS(1027), + [anon_sym_true] = ACTIONS(1027), + [anon_sym_false] = ACTIONS(1027), + [anon_sym_null] = ACTIONS(1027), + [aux_sym_cmd_identifier_token38] = ACTIONS(1027), + [aux_sym_cmd_identifier_token39] = ACTIONS(1027), + [aux_sym_cmd_identifier_token40] = ACTIONS(1027), + [anon_sym_def] = ACTIONS(1027), + [anon_sym_export_DASHenv] = ACTIONS(1027), + [anon_sym_extern] = ACTIONS(1027), + [anon_sym_module] = ACTIONS(1027), + [anon_sym_use] = ACTIONS(1027), + [anon_sym_LPAREN] = ACTIONS(1027), + [anon_sym_DOLLAR] = ACTIONS(1027), + [anon_sym_error] = ACTIONS(1027), + [anon_sym_list] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_break] = ACTIONS(1027), + [anon_sym_continue] = ACTIONS(1027), + [anon_sym_for] = ACTIONS(1027), + [anon_sym_in] = ACTIONS(1027), + [anon_sym_loop] = ACTIONS(1027), + [anon_sym_make] = ACTIONS(1027), + [anon_sym_while] = ACTIONS(1027), + [anon_sym_do] = ACTIONS(1027), + [anon_sym_if] = ACTIONS(1027), + [anon_sym_else] = ACTIONS(1027), + [anon_sym_match] = ACTIONS(1027), + [anon_sym_RBRACE] = ACTIONS(1027), + [anon_sym_try] = ACTIONS(1027), + [anon_sym_catch] = ACTIONS(1027), + [anon_sym_return] = ACTIONS(1027), + [anon_sym_source] = ACTIONS(1027), + [anon_sym_source_DASHenv] = ACTIONS(1027), + [anon_sym_register] = ACTIONS(1027), + [anon_sym_hide] = ACTIONS(1027), + [anon_sym_hide_DASHenv] = ACTIONS(1027), + [anon_sym_overlay] = ACTIONS(1027), + [anon_sym_new] = ACTIONS(1027), + [anon_sym_as] = ACTIONS(1027), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1027), + [anon_sym_DOT] = ACTIONS(1856), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1027), + [aux_sym__val_number_decimal_token1] = ACTIONS(1027), + [aux_sym__val_number_decimal_token2] = ACTIONS(1027), + [aux_sym__val_number_decimal_token3] = ACTIONS(1027), + [aux_sym__val_number_decimal_token4] = ACTIONS(1027), + [aux_sym__val_number_token1] = ACTIONS(1027), + [aux_sym__val_number_token2] = ACTIONS(1027), + [aux_sym__val_number_token3] = ACTIONS(1027), + [anon_sym_DQUOTE] = ACTIONS(1027), + [sym__str_single_quotes] = ACTIONS(1027), + [sym__str_back_ticks] = ACTIONS(1027), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1027), + [sym__entry_separator] = ACTIONS(1029), + [anon_sym_PLUS] = ACTIONS(1027), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1029), }, - [454] = { - [sym__expr_parenthesized_immediate] = STATE(7671), - [sym_comment] = STATE(454), - [anon_sym_export] = ACTIONS(2218), - [anon_sym_alias] = ACTIONS(2218), - [anon_sym_let] = ACTIONS(2218), - [anon_sym_let_DASHenv] = ACTIONS(2218), - [anon_sym_mut] = ACTIONS(2218), - [anon_sym_const] = ACTIONS(2218), - [aux_sym_cmd_identifier_token1] = ACTIONS(2218), - [aux_sym_cmd_identifier_token2] = ACTIONS(2218), - [aux_sym_cmd_identifier_token3] = ACTIONS(2218), - [aux_sym_cmd_identifier_token4] = ACTIONS(2218), - [aux_sym_cmd_identifier_token5] = ACTIONS(2218), - [aux_sym_cmd_identifier_token6] = ACTIONS(2218), - [aux_sym_cmd_identifier_token7] = ACTIONS(2218), - [aux_sym_cmd_identifier_token8] = ACTIONS(2218), - [aux_sym_cmd_identifier_token9] = ACTIONS(2218), - [aux_sym_cmd_identifier_token10] = ACTIONS(2218), - [aux_sym_cmd_identifier_token11] = ACTIONS(2218), - [aux_sym_cmd_identifier_token12] = ACTIONS(2218), - [aux_sym_cmd_identifier_token13] = ACTIONS(2218), - [aux_sym_cmd_identifier_token14] = ACTIONS(2218), - [aux_sym_cmd_identifier_token15] = ACTIONS(2218), - [aux_sym_cmd_identifier_token16] = ACTIONS(2218), - [aux_sym_cmd_identifier_token17] = ACTIONS(2218), - [aux_sym_cmd_identifier_token18] = ACTIONS(2218), - [aux_sym_cmd_identifier_token19] = ACTIONS(2218), - [aux_sym_cmd_identifier_token20] = ACTIONS(2218), - [aux_sym_cmd_identifier_token21] = ACTIONS(2218), - [aux_sym_cmd_identifier_token22] = ACTIONS(2218), - [aux_sym_cmd_identifier_token23] = ACTIONS(2218), - [aux_sym_cmd_identifier_token24] = ACTIONS(2218), - [aux_sym_cmd_identifier_token25] = ACTIONS(2218), - [aux_sym_cmd_identifier_token26] = ACTIONS(2218), - [aux_sym_cmd_identifier_token27] = ACTIONS(2218), - [aux_sym_cmd_identifier_token28] = ACTIONS(2218), - [aux_sym_cmd_identifier_token29] = ACTIONS(2218), - [aux_sym_cmd_identifier_token30] = ACTIONS(2218), - [aux_sym_cmd_identifier_token31] = ACTIONS(2218), - [aux_sym_cmd_identifier_token32] = ACTIONS(2218), - [aux_sym_cmd_identifier_token33] = ACTIONS(2218), - [aux_sym_cmd_identifier_token34] = ACTIONS(2218), - [aux_sym_cmd_identifier_token35] = ACTIONS(2218), - [aux_sym_cmd_identifier_token36] = ACTIONS(2218), - [anon_sym_true] = ACTIONS(2218), - [anon_sym_false] = ACTIONS(2218), - [anon_sym_null] = ACTIONS(2218), - [aux_sym_cmd_identifier_token38] = ACTIONS(2218), - [aux_sym_cmd_identifier_token39] = ACTIONS(2218), - [aux_sym_cmd_identifier_token40] = ACTIONS(2218), - [anon_sym_def] = ACTIONS(2218), - [anon_sym_export_DASHenv] = ACTIONS(2218), - [anon_sym_extern] = ACTIONS(2218), - [anon_sym_module] = ACTIONS(2218), - [anon_sym_use] = ACTIONS(2218), - [anon_sym_LPAREN] = ACTIONS(2218), - [anon_sym_DOLLAR] = ACTIONS(2218), - [anon_sym_error] = ACTIONS(2218), - [anon_sym_list] = ACTIONS(2218), - [anon_sym_DASH] = ACTIONS(2218), - [anon_sym_break] = ACTIONS(2218), - [anon_sym_continue] = ACTIONS(2218), - [anon_sym_for] = ACTIONS(2218), - [anon_sym_in] = ACTIONS(2218), - [anon_sym_loop] = ACTIONS(2218), - [anon_sym_make] = ACTIONS(2218), - [anon_sym_while] = ACTIONS(2218), - [anon_sym_do] = ACTIONS(2218), - [anon_sym_if] = ACTIONS(2218), - [anon_sym_else] = ACTIONS(2218), - [anon_sym_match] = ACTIONS(2218), - [anon_sym_RBRACE] = ACTIONS(2218), - [anon_sym_try] = ACTIONS(2218), - [anon_sym_catch] = ACTIONS(2218), - [anon_sym_return] = ACTIONS(2218), - [anon_sym_source] = ACTIONS(2218), - [anon_sym_source_DASHenv] = ACTIONS(2218), - [anon_sym_register] = ACTIONS(2218), - [anon_sym_hide] = ACTIONS(2218), - [anon_sym_hide_DASHenv] = ACTIONS(2218), - [anon_sym_overlay] = ACTIONS(2218), - [anon_sym_new] = ACTIONS(2218), - [anon_sym_as] = ACTIONS(2218), - [anon_sym_LPAREN2] = ACTIONS(1562), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2218), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2218), - [aux_sym__val_number_decimal_token1] = ACTIONS(2218), - [aux_sym__val_number_decimal_token2] = ACTIONS(2218), - [aux_sym__val_number_decimal_token3] = ACTIONS(2218), - [aux_sym__val_number_decimal_token4] = ACTIONS(2218), - [aux_sym__val_number_token1] = ACTIONS(2218), - [aux_sym__val_number_token2] = ACTIONS(2218), - [aux_sym__val_number_token3] = ACTIONS(2218), - [anon_sym_DQUOTE] = ACTIONS(2218), - [sym__str_single_quotes] = ACTIONS(2218), - [sym__str_back_ticks] = ACTIONS(2218), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2218), - [sym__entry_separator] = ACTIONS(2220), - [anon_sym_PLUS] = ACTIONS(2218), + [412] = { + [sym_path] = STATE(518), + [sym_comment] = STATE(412), + [aux_sym_cell_path_repeat1] = STATE(412), + [anon_sym_export] = ACTIONS(1031), + [anon_sym_alias] = ACTIONS(1031), + [anon_sym_let] = ACTIONS(1031), + [anon_sym_let_DASHenv] = ACTIONS(1031), + [anon_sym_mut] = ACTIONS(1031), + [anon_sym_const] = ACTIONS(1031), + [aux_sym_cmd_identifier_token1] = ACTIONS(1031), + [aux_sym_cmd_identifier_token2] = ACTIONS(1031), + [aux_sym_cmd_identifier_token3] = ACTIONS(1031), + [aux_sym_cmd_identifier_token4] = ACTIONS(1031), + [aux_sym_cmd_identifier_token5] = ACTIONS(1031), + [aux_sym_cmd_identifier_token6] = ACTIONS(1031), + [aux_sym_cmd_identifier_token7] = ACTIONS(1031), + [aux_sym_cmd_identifier_token8] = ACTIONS(1031), + [aux_sym_cmd_identifier_token9] = ACTIONS(1031), + [aux_sym_cmd_identifier_token10] = ACTIONS(1031), + [aux_sym_cmd_identifier_token11] = ACTIONS(1031), + [aux_sym_cmd_identifier_token12] = ACTIONS(1031), + [aux_sym_cmd_identifier_token13] = ACTIONS(1031), + [aux_sym_cmd_identifier_token14] = ACTIONS(1031), + [aux_sym_cmd_identifier_token15] = ACTIONS(1031), + [aux_sym_cmd_identifier_token16] = ACTIONS(1031), + [aux_sym_cmd_identifier_token17] = ACTIONS(1031), + [aux_sym_cmd_identifier_token18] = ACTIONS(1031), + [aux_sym_cmd_identifier_token19] = ACTIONS(1031), + [aux_sym_cmd_identifier_token20] = ACTIONS(1031), + [aux_sym_cmd_identifier_token21] = ACTIONS(1031), + [aux_sym_cmd_identifier_token22] = ACTIONS(1031), + [aux_sym_cmd_identifier_token23] = ACTIONS(1031), + [aux_sym_cmd_identifier_token24] = ACTIONS(1031), + [aux_sym_cmd_identifier_token25] = ACTIONS(1031), + [aux_sym_cmd_identifier_token26] = ACTIONS(1031), + [aux_sym_cmd_identifier_token27] = ACTIONS(1031), + [aux_sym_cmd_identifier_token28] = ACTIONS(1031), + [aux_sym_cmd_identifier_token29] = ACTIONS(1031), + [aux_sym_cmd_identifier_token30] = ACTIONS(1031), + [aux_sym_cmd_identifier_token31] = ACTIONS(1031), + [aux_sym_cmd_identifier_token32] = ACTIONS(1031), + [aux_sym_cmd_identifier_token33] = ACTIONS(1031), + [aux_sym_cmd_identifier_token34] = ACTIONS(1031), + [aux_sym_cmd_identifier_token35] = ACTIONS(1031), + [aux_sym_cmd_identifier_token36] = ACTIONS(1031), + [anon_sym_true] = ACTIONS(1031), + [anon_sym_false] = ACTIONS(1031), + [anon_sym_null] = ACTIONS(1031), + [aux_sym_cmd_identifier_token38] = ACTIONS(1031), + [aux_sym_cmd_identifier_token39] = ACTIONS(1031), + [aux_sym_cmd_identifier_token40] = ACTIONS(1031), + [anon_sym_def] = ACTIONS(1031), + [anon_sym_export_DASHenv] = ACTIONS(1031), + [anon_sym_extern] = ACTIONS(1031), + [anon_sym_module] = ACTIONS(1031), + [anon_sym_use] = ACTIONS(1031), + [anon_sym_LPAREN] = ACTIONS(1031), + [anon_sym_DOLLAR] = ACTIONS(1031), + [anon_sym_error] = ACTIONS(1031), + [anon_sym_list] = ACTIONS(1031), + [anon_sym_DASH] = ACTIONS(1031), + [anon_sym_break] = ACTIONS(1031), + [anon_sym_continue] = ACTIONS(1031), + [anon_sym_for] = ACTIONS(1031), + [anon_sym_in] = ACTIONS(1031), + [anon_sym_loop] = ACTIONS(1031), + [anon_sym_make] = ACTIONS(1031), + [anon_sym_while] = ACTIONS(1031), + [anon_sym_do] = ACTIONS(1031), + [anon_sym_if] = ACTIONS(1031), + [anon_sym_else] = ACTIONS(1031), + [anon_sym_match] = ACTIONS(1031), + [anon_sym_RBRACE] = ACTIONS(1031), + [anon_sym_try] = ACTIONS(1031), + [anon_sym_catch] = ACTIONS(1031), + [anon_sym_return] = ACTIONS(1031), + [anon_sym_source] = ACTIONS(1031), + [anon_sym_source_DASHenv] = ACTIONS(1031), + [anon_sym_register] = ACTIONS(1031), + [anon_sym_hide] = ACTIONS(1031), + [anon_sym_hide_DASHenv] = ACTIONS(1031), + [anon_sym_overlay] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1031), + [anon_sym_as] = ACTIONS(1031), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1031), + [anon_sym_DOT] = ACTIONS(2179), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1031), + [aux_sym__val_number_decimal_token1] = ACTIONS(1031), + [aux_sym__val_number_decimal_token2] = ACTIONS(1031), + [aux_sym__val_number_decimal_token3] = ACTIONS(1031), + [aux_sym__val_number_decimal_token4] = ACTIONS(1031), + [aux_sym__val_number_token1] = ACTIONS(1031), + [aux_sym__val_number_token2] = ACTIONS(1031), + [aux_sym__val_number_token3] = ACTIONS(1031), + [anon_sym_DQUOTE] = ACTIONS(1031), + [sym__str_single_quotes] = ACTIONS(1031), + [sym__str_back_ticks] = ACTIONS(1031), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1031), + [sym__entry_separator] = ACTIONS(1033), + [anon_sym_PLUS] = ACTIONS(1031), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1033), }, - [455] = { - [sym_comment] = STATE(455), - [anon_sym_export] = ACTIONS(1058), - [anon_sym_alias] = ACTIONS(1058), - [anon_sym_let] = ACTIONS(1058), - [anon_sym_let_DASHenv] = ACTIONS(1058), - [anon_sym_mut] = ACTIONS(1058), - [anon_sym_const] = ACTIONS(1058), - [aux_sym_cmd_identifier_token1] = ACTIONS(1058), - [aux_sym_cmd_identifier_token2] = ACTIONS(1058), - [aux_sym_cmd_identifier_token3] = ACTIONS(1058), - [aux_sym_cmd_identifier_token4] = ACTIONS(1058), - [aux_sym_cmd_identifier_token5] = ACTIONS(1058), - [aux_sym_cmd_identifier_token6] = ACTIONS(1058), - [aux_sym_cmd_identifier_token7] = ACTIONS(1058), - [aux_sym_cmd_identifier_token8] = ACTIONS(1058), - [aux_sym_cmd_identifier_token9] = ACTIONS(1058), - [aux_sym_cmd_identifier_token10] = ACTIONS(1058), - [aux_sym_cmd_identifier_token11] = ACTIONS(1058), - [aux_sym_cmd_identifier_token12] = ACTIONS(1058), - [aux_sym_cmd_identifier_token13] = ACTIONS(1058), - [aux_sym_cmd_identifier_token14] = ACTIONS(1058), - [aux_sym_cmd_identifier_token15] = ACTIONS(1058), - [aux_sym_cmd_identifier_token16] = ACTIONS(1058), - [aux_sym_cmd_identifier_token17] = ACTIONS(1058), - [aux_sym_cmd_identifier_token18] = ACTIONS(1058), - [aux_sym_cmd_identifier_token19] = ACTIONS(1058), - [aux_sym_cmd_identifier_token20] = ACTIONS(1058), - [aux_sym_cmd_identifier_token21] = ACTIONS(1058), - [aux_sym_cmd_identifier_token22] = ACTIONS(1058), - [aux_sym_cmd_identifier_token23] = ACTIONS(1058), - [aux_sym_cmd_identifier_token24] = ACTIONS(1058), - [aux_sym_cmd_identifier_token25] = ACTIONS(1058), - [aux_sym_cmd_identifier_token26] = ACTIONS(1058), - [aux_sym_cmd_identifier_token27] = ACTIONS(1058), - [aux_sym_cmd_identifier_token28] = ACTIONS(1058), - [aux_sym_cmd_identifier_token29] = ACTIONS(1058), - [aux_sym_cmd_identifier_token30] = ACTIONS(1058), - [aux_sym_cmd_identifier_token31] = ACTIONS(1058), - [aux_sym_cmd_identifier_token32] = ACTIONS(1058), - [aux_sym_cmd_identifier_token33] = ACTIONS(1058), - [aux_sym_cmd_identifier_token34] = ACTIONS(1058), - [aux_sym_cmd_identifier_token35] = ACTIONS(1058), - [aux_sym_cmd_identifier_token36] = ACTIONS(1058), - [anon_sym_true] = ACTIONS(1060), - [anon_sym_false] = ACTIONS(1060), - [anon_sym_null] = ACTIONS(1060), - [aux_sym_cmd_identifier_token38] = ACTIONS(1058), - [aux_sym_cmd_identifier_token39] = ACTIONS(1060), - [aux_sym_cmd_identifier_token40] = ACTIONS(1060), - [anon_sym_def] = ACTIONS(1058), - [anon_sym_export_DASHenv] = ACTIONS(1058), - [anon_sym_extern] = ACTIONS(1058), - [anon_sym_module] = ACTIONS(1058), - [anon_sym_use] = ACTIONS(1058), - [anon_sym_LPAREN] = ACTIONS(1060), - [anon_sym_DOLLAR] = ACTIONS(1060), - [anon_sym_error] = ACTIONS(1058), - [anon_sym_list] = ACTIONS(1058), - [anon_sym_DASH] = ACTIONS(1058), - [anon_sym_break] = ACTIONS(1058), - [anon_sym_continue] = ACTIONS(1058), - [anon_sym_for] = ACTIONS(1058), - [anon_sym_in] = ACTIONS(1058), - [anon_sym_loop] = ACTIONS(1058), - [anon_sym_make] = ACTIONS(1058), - [anon_sym_while] = ACTIONS(1058), - [anon_sym_do] = ACTIONS(1058), - [anon_sym_if] = ACTIONS(1058), - [anon_sym_else] = ACTIONS(1058), - [anon_sym_match] = ACTIONS(1058), - [anon_sym_RBRACE] = ACTIONS(1060), - [anon_sym_try] = ACTIONS(1058), - [anon_sym_catch] = ACTIONS(1058), - [anon_sym_return] = ACTIONS(1058), - [anon_sym_source] = ACTIONS(1058), - [anon_sym_source_DASHenv] = ACTIONS(1058), - [anon_sym_register] = ACTIONS(1058), - [anon_sym_hide] = ACTIONS(1058), - [anon_sym_hide_DASHenv] = ACTIONS(1058), - [anon_sym_overlay] = ACTIONS(1058), - [anon_sym_new] = ACTIONS(1058), - [anon_sym_as] = ACTIONS(1058), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1060), - [anon_sym_DOT_DOT2] = ACTIONS(1058), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1060), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1060), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1060), - [aux_sym__val_number_decimal_token1] = ACTIONS(1058), - [aux_sym__val_number_decimal_token2] = ACTIONS(1060), - [aux_sym__val_number_decimal_token3] = ACTIONS(1060), - [aux_sym__val_number_decimal_token4] = ACTIONS(1060), - [aux_sym__val_number_token1] = ACTIONS(1060), - [aux_sym__val_number_token2] = ACTIONS(1060), - [aux_sym__val_number_token3] = ACTIONS(1060), - [anon_sym_DQUOTE] = ACTIONS(1060), - [sym__str_single_quotes] = ACTIONS(1060), - [sym__str_back_ticks] = ACTIONS(1060), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1060), - [anon_sym_PLUS] = ACTIONS(1058), - [anon_sym_POUND] = ACTIONS(247), - }, - [456] = { - [sym_comment] = STATE(456), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_alias] = ACTIONS(1046), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_let_DASHenv] = ACTIONS(1046), - [anon_sym_mut] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [aux_sym_cmd_identifier_token1] = ACTIONS(1046), - [aux_sym_cmd_identifier_token2] = ACTIONS(1046), - [aux_sym_cmd_identifier_token3] = ACTIONS(1046), - [aux_sym_cmd_identifier_token4] = ACTIONS(1046), - [aux_sym_cmd_identifier_token5] = ACTIONS(1046), - [aux_sym_cmd_identifier_token6] = ACTIONS(1046), - [aux_sym_cmd_identifier_token7] = ACTIONS(1046), - [aux_sym_cmd_identifier_token8] = ACTIONS(1046), - [aux_sym_cmd_identifier_token9] = ACTIONS(1046), - [aux_sym_cmd_identifier_token10] = ACTIONS(1046), - [aux_sym_cmd_identifier_token11] = ACTIONS(1046), - [aux_sym_cmd_identifier_token12] = ACTIONS(1046), - [aux_sym_cmd_identifier_token13] = ACTIONS(1046), - [aux_sym_cmd_identifier_token14] = ACTIONS(1046), - [aux_sym_cmd_identifier_token15] = ACTIONS(1046), - [aux_sym_cmd_identifier_token16] = ACTIONS(1046), - [aux_sym_cmd_identifier_token17] = ACTIONS(1046), - [aux_sym_cmd_identifier_token18] = ACTIONS(1046), - [aux_sym_cmd_identifier_token19] = ACTIONS(1046), - [aux_sym_cmd_identifier_token20] = ACTIONS(1046), - [aux_sym_cmd_identifier_token21] = ACTIONS(1046), - [aux_sym_cmd_identifier_token22] = ACTIONS(1046), - [aux_sym_cmd_identifier_token23] = ACTIONS(1046), - [aux_sym_cmd_identifier_token24] = ACTIONS(1046), - [aux_sym_cmd_identifier_token25] = ACTIONS(1046), - [aux_sym_cmd_identifier_token26] = ACTIONS(1046), - [aux_sym_cmd_identifier_token27] = ACTIONS(1046), - [aux_sym_cmd_identifier_token28] = ACTIONS(1046), - [aux_sym_cmd_identifier_token29] = ACTIONS(1046), - [aux_sym_cmd_identifier_token30] = ACTIONS(1046), - [aux_sym_cmd_identifier_token31] = ACTIONS(1046), - [aux_sym_cmd_identifier_token32] = ACTIONS(1046), - [aux_sym_cmd_identifier_token33] = ACTIONS(1046), - [aux_sym_cmd_identifier_token34] = ACTIONS(1046), - [aux_sym_cmd_identifier_token35] = ACTIONS(1046), - [aux_sym_cmd_identifier_token36] = ACTIONS(1046), - [anon_sym_true] = ACTIONS(1048), - [anon_sym_false] = ACTIONS(1048), - [anon_sym_null] = ACTIONS(1048), - [aux_sym_cmd_identifier_token38] = ACTIONS(1046), - [aux_sym_cmd_identifier_token39] = ACTIONS(1048), - [aux_sym_cmd_identifier_token40] = ACTIONS(1048), - [anon_sym_def] = ACTIONS(1046), - [anon_sym_export_DASHenv] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_use] = ACTIONS(1046), - [anon_sym_LPAREN] = ACTIONS(1048), - [anon_sym_COMMA] = ACTIONS(1048), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_error] = ACTIONS(1046), - [anon_sym_list] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_break] = ACTIONS(1046), - [anon_sym_continue] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1046), - [anon_sym_in] = ACTIONS(1046), - [anon_sym_loop] = ACTIONS(1046), - [anon_sym_make] = ACTIONS(1046), - [anon_sym_while] = ACTIONS(1046), - [anon_sym_do] = ACTIONS(1046), - [anon_sym_if] = ACTIONS(1046), - [anon_sym_else] = ACTIONS(1046), - [anon_sym_match] = ACTIONS(1046), - [anon_sym_RBRACE] = ACTIONS(1048), - [anon_sym_try] = ACTIONS(1046), - [anon_sym_catch] = ACTIONS(1046), - [anon_sym_return] = ACTIONS(1046), - [anon_sym_source] = ACTIONS(1046), - [anon_sym_source_DASHenv] = ACTIONS(1046), - [anon_sym_register] = ACTIONS(1046), - [anon_sym_hide] = ACTIONS(1046), - [anon_sym_hide_DASHenv] = ACTIONS(1046), - [anon_sym_overlay] = ACTIONS(1046), - [anon_sym_new] = ACTIONS(1046), - [anon_sym_as] = ACTIONS(1046), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1048), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1048), - [aux_sym__val_number_decimal_token1] = ACTIONS(1046), - [aux_sym__val_number_decimal_token2] = ACTIONS(1048), - [aux_sym__val_number_decimal_token3] = ACTIONS(1048), - [aux_sym__val_number_decimal_token4] = ACTIONS(1048), - [aux_sym__val_number_token1] = ACTIONS(1048), - [aux_sym__val_number_token2] = ACTIONS(1048), - [aux_sym__val_number_token3] = ACTIONS(1048), - [anon_sym_DQUOTE] = ACTIONS(1048), - [sym__str_single_quotes] = ACTIONS(1048), - [sym__str_back_ticks] = ACTIONS(1048), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1048), - [aux_sym_record_entry_token1] = ACTIONS(1048), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_POUND] = ACTIONS(247), + [413] = { + [sym_cell_path] = STATE(655), + [sym_path] = STATE(631), + [sym_comment] = STATE(413), + [aux_sym_cell_path_repeat1] = STATE(456), + [anon_sym_export] = ACTIONS(1897), + [anon_sym_alias] = ACTIONS(1897), + [anon_sym_let] = ACTIONS(1897), + [anon_sym_let_DASHenv] = ACTIONS(1897), + [anon_sym_mut] = ACTIONS(1897), + [anon_sym_const] = ACTIONS(1897), + [aux_sym_cmd_identifier_token1] = ACTIONS(1897), + [aux_sym_cmd_identifier_token2] = ACTIONS(1897), + [aux_sym_cmd_identifier_token3] = ACTIONS(1897), + [aux_sym_cmd_identifier_token4] = ACTIONS(1897), + [aux_sym_cmd_identifier_token5] = ACTIONS(1897), + [aux_sym_cmd_identifier_token6] = ACTIONS(1897), + [aux_sym_cmd_identifier_token7] = ACTIONS(1897), + [aux_sym_cmd_identifier_token8] = ACTIONS(1897), + [aux_sym_cmd_identifier_token9] = ACTIONS(1897), + [aux_sym_cmd_identifier_token10] = ACTIONS(1897), + [aux_sym_cmd_identifier_token11] = ACTIONS(1897), + [aux_sym_cmd_identifier_token12] = ACTIONS(1897), + [aux_sym_cmd_identifier_token13] = ACTIONS(1897), + [aux_sym_cmd_identifier_token14] = ACTIONS(1897), + [aux_sym_cmd_identifier_token15] = ACTIONS(1897), + [aux_sym_cmd_identifier_token16] = ACTIONS(1897), + [aux_sym_cmd_identifier_token17] = ACTIONS(1897), + [aux_sym_cmd_identifier_token18] = ACTIONS(1897), + [aux_sym_cmd_identifier_token19] = ACTIONS(1897), + [aux_sym_cmd_identifier_token20] = ACTIONS(1897), + [aux_sym_cmd_identifier_token21] = ACTIONS(1897), + [aux_sym_cmd_identifier_token22] = ACTIONS(1897), + [aux_sym_cmd_identifier_token23] = ACTIONS(1897), + [aux_sym_cmd_identifier_token24] = ACTIONS(1897), + [aux_sym_cmd_identifier_token25] = ACTIONS(1897), + [aux_sym_cmd_identifier_token26] = ACTIONS(1897), + [aux_sym_cmd_identifier_token27] = ACTIONS(1897), + [aux_sym_cmd_identifier_token28] = ACTIONS(1897), + [aux_sym_cmd_identifier_token29] = ACTIONS(1897), + [aux_sym_cmd_identifier_token30] = ACTIONS(1897), + [aux_sym_cmd_identifier_token31] = ACTIONS(1897), + [aux_sym_cmd_identifier_token32] = ACTIONS(1897), + [aux_sym_cmd_identifier_token33] = ACTIONS(1897), + [aux_sym_cmd_identifier_token34] = ACTIONS(1897), + [aux_sym_cmd_identifier_token35] = ACTIONS(1897), + [aux_sym_cmd_identifier_token36] = ACTIONS(1897), + [anon_sym_true] = ACTIONS(1899), + [anon_sym_false] = ACTIONS(1899), + [anon_sym_null] = ACTIONS(1899), + [aux_sym_cmd_identifier_token38] = ACTIONS(1897), + [aux_sym_cmd_identifier_token39] = ACTIONS(1899), + [aux_sym_cmd_identifier_token40] = ACTIONS(1899), + [anon_sym_def] = ACTIONS(1897), + [anon_sym_export_DASHenv] = ACTIONS(1897), + [anon_sym_extern] = ACTIONS(1897), + [anon_sym_module] = ACTIONS(1897), + [anon_sym_use] = ACTIONS(1897), + [anon_sym_LPAREN] = ACTIONS(1899), + [anon_sym_DOLLAR] = ACTIONS(1899), + [anon_sym_error] = ACTIONS(1897), + [anon_sym_list] = ACTIONS(1897), + [anon_sym_DASH] = ACTIONS(1897), + [anon_sym_break] = ACTIONS(1897), + [anon_sym_continue] = ACTIONS(1897), + [anon_sym_for] = ACTIONS(1897), + [anon_sym_in] = ACTIONS(1897), + [anon_sym_loop] = ACTIONS(1897), + [anon_sym_make] = ACTIONS(1897), + [anon_sym_while] = ACTIONS(1897), + [anon_sym_do] = ACTIONS(1897), + [anon_sym_if] = ACTIONS(1897), + [anon_sym_else] = ACTIONS(1897), + [anon_sym_match] = ACTIONS(1897), + [anon_sym_RBRACE] = ACTIONS(1899), + [anon_sym_try] = ACTIONS(1897), + [anon_sym_catch] = ACTIONS(1897), + [anon_sym_return] = ACTIONS(1897), + [anon_sym_source] = ACTIONS(1897), + [anon_sym_source_DASHenv] = ACTIONS(1897), + [anon_sym_register] = ACTIONS(1897), + [anon_sym_hide] = ACTIONS(1897), + [anon_sym_hide_DASHenv] = ACTIONS(1897), + [anon_sym_overlay] = ACTIONS(1897), + [anon_sym_new] = ACTIONS(1897), + [anon_sym_as] = ACTIONS(1897), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1899), + [anon_sym_DOT] = ACTIONS(2177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1899), + [aux_sym__val_number_decimal_token1] = ACTIONS(1897), + [aux_sym__val_number_decimal_token2] = ACTIONS(1899), + [aux_sym__val_number_decimal_token3] = ACTIONS(1899), + [aux_sym__val_number_decimal_token4] = ACTIONS(1899), + [aux_sym__val_number_token1] = ACTIONS(1899), + [aux_sym__val_number_token2] = ACTIONS(1899), + [aux_sym__val_number_token3] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1899), + [sym__str_single_quotes] = ACTIONS(1899), + [sym__str_back_ticks] = ACTIONS(1899), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1899), + [anon_sym_PLUS] = ACTIONS(1897), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1899), }, - [457] = { - [sym_comment] = STATE(457), - [anon_sym_export] = ACTIONS(1050), - [anon_sym_alias] = ACTIONS(1050), - [anon_sym_let] = ACTIONS(1050), - [anon_sym_let_DASHenv] = ACTIONS(1050), - [anon_sym_mut] = ACTIONS(1050), - [anon_sym_const] = ACTIONS(1050), - [aux_sym_cmd_identifier_token1] = ACTIONS(1050), - [aux_sym_cmd_identifier_token2] = ACTIONS(1050), - [aux_sym_cmd_identifier_token3] = ACTIONS(1050), - [aux_sym_cmd_identifier_token4] = ACTIONS(1050), - [aux_sym_cmd_identifier_token5] = ACTIONS(1050), - [aux_sym_cmd_identifier_token6] = ACTIONS(1050), - [aux_sym_cmd_identifier_token7] = ACTIONS(1050), - [aux_sym_cmd_identifier_token8] = ACTIONS(1050), - [aux_sym_cmd_identifier_token9] = ACTIONS(1050), - [aux_sym_cmd_identifier_token10] = ACTIONS(1050), - [aux_sym_cmd_identifier_token11] = ACTIONS(1050), - [aux_sym_cmd_identifier_token12] = ACTIONS(1050), - [aux_sym_cmd_identifier_token13] = ACTIONS(1050), - [aux_sym_cmd_identifier_token14] = ACTIONS(1050), - [aux_sym_cmd_identifier_token15] = ACTIONS(1050), - [aux_sym_cmd_identifier_token16] = ACTIONS(1050), - [aux_sym_cmd_identifier_token17] = ACTIONS(1050), - [aux_sym_cmd_identifier_token18] = ACTIONS(1050), - [aux_sym_cmd_identifier_token19] = ACTIONS(1050), - [aux_sym_cmd_identifier_token20] = ACTIONS(1050), - [aux_sym_cmd_identifier_token21] = ACTIONS(1050), - [aux_sym_cmd_identifier_token22] = ACTIONS(1050), - [aux_sym_cmd_identifier_token23] = ACTIONS(1050), - [aux_sym_cmd_identifier_token24] = ACTIONS(1050), - [aux_sym_cmd_identifier_token25] = ACTIONS(1050), - [aux_sym_cmd_identifier_token26] = ACTIONS(1050), - [aux_sym_cmd_identifier_token27] = ACTIONS(1050), - [aux_sym_cmd_identifier_token28] = ACTIONS(1050), - [aux_sym_cmd_identifier_token29] = ACTIONS(1050), - [aux_sym_cmd_identifier_token30] = ACTIONS(1050), - [aux_sym_cmd_identifier_token31] = ACTIONS(1050), - [aux_sym_cmd_identifier_token32] = ACTIONS(1050), - [aux_sym_cmd_identifier_token33] = ACTIONS(1050), - [aux_sym_cmd_identifier_token34] = ACTIONS(1050), - [aux_sym_cmd_identifier_token35] = ACTIONS(1050), - [aux_sym_cmd_identifier_token36] = ACTIONS(1050), - [anon_sym_true] = ACTIONS(1052), - [anon_sym_false] = ACTIONS(1052), - [anon_sym_null] = ACTIONS(1052), - [aux_sym_cmd_identifier_token38] = ACTIONS(1050), - [aux_sym_cmd_identifier_token39] = ACTIONS(1052), - [aux_sym_cmd_identifier_token40] = ACTIONS(1052), - [anon_sym_def] = ACTIONS(1050), - [anon_sym_export_DASHenv] = ACTIONS(1050), - [anon_sym_extern] = ACTIONS(1050), - [anon_sym_module] = ACTIONS(1050), - [anon_sym_use] = ACTIONS(1050), - [anon_sym_LPAREN] = ACTIONS(1052), - [anon_sym_COMMA] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(1052), - [anon_sym_error] = ACTIONS(1050), - [anon_sym_list] = ACTIONS(1050), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_break] = ACTIONS(1050), - [anon_sym_continue] = ACTIONS(1050), - [anon_sym_for] = ACTIONS(1050), - [anon_sym_in] = ACTIONS(1050), - [anon_sym_loop] = ACTIONS(1050), - [anon_sym_make] = ACTIONS(1050), - [anon_sym_while] = ACTIONS(1050), - [anon_sym_do] = ACTIONS(1050), - [anon_sym_if] = ACTIONS(1050), - [anon_sym_else] = ACTIONS(1050), - [anon_sym_match] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(1052), - [anon_sym_try] = ACTIONS(1050), - [anon_sym_catch] = ACTIONS(1050), - [anon_sym_return] = ACTIONS(1050), - [anon_sym_source] = ACTIONS(1050), - [anon_sym_source_DASHenv] = ACTIONS(1050), - [anon_sym_register] = ACTIONS(1050), - [anon_sym_hide] = ACTIONS(1050), - [anon_sym_hide_DASHenv] = ACTIONS(1050), - [anon_sym_overlay] = ACTIONS(1050), - [anon_sym_new] = ACTIONS(1050), - [anon_sym_as] = ACTIONS(1050), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1052), - [anon_sym_DOT] = ACTIONS(1050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1052), - [aux_sym__val_number_decimal_token1] = ACTIONS(1050), - [aux_sym__val_number_decimal_token2] = ACTIONS(1052), - [aux_sym__val_number_decimal_token3] = ACTIONS(1052), - [aux_sym__val_number_decimal_token4] = ACTIONS(1052), - [aux_sym__val_number_token1] = ACTIONS(1052), - [aux_sym__val_number_token2] = ACTIONS(1052), - [aux_sym__val_number_token3] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(1052), - [sym__str_single_quotes] = ACTIONS(1052), - [sym__str_back_ticks] = ACTIONS(1052), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1052), - [aux_sym_record_entry_token1] = ACTIONS(1052), - [anon_sym_PLUS] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(247), + [414] = { + [sym_comment] = STATE(414), + [anon_sym_export] = ACTIONS(1038), + [anon_sym_alias] = ACTIONS(1038), + [anon_sym_let] = ACTIONS(1038), + [anon_sym_let_DASHenv] = ACTIONS(1038), + [anon_sym_mut] = ACTIONS(1038), + [anon_sym_const] = ACTIONS(1038), + [aux_sym_cmd_identifier_token1] = ACTIONS(1038), + [aux_sym_cmd_identifier_token2] = ACTIONS(1038), + [aux_sym_cmd_identifier_token3] = ACTIONS(1038), + [aux_sym_cmd_identifier_token4] = ACTIONS(1038), + [aux_sym_cmd_identifier_token5] = ACTIONS(1038), + [aux_sym_cmd_identifier_token6] = ACTIONS(1038), + [aux_sym_cmd_identifier_token7] = ACTIONS(1038), + [aux_sym_cmd_identifier_token8] = ACTIONS(1038), + [aux_sym_cmd_identifier_token9] = ACTIONS(1038), + [aux_sym_cmd_identifier_token10] = ACTIONS(1038), + [aux_sym_cmd_identifier_token11] = ACTIONS(1038), + [aux_sym_cmd_identifier_token12] = ACTIONS(1038), + [aux_sym_cmd_identifier_token13] = ACTIONS(1038), + [aux_sym_cmd_identifier_token14] = ACTIONS(1038), + [aux_sym_cmd_identifier_token15] = ACTIONS(1038), + [aux_sym_cmd_identifier_token16] = ACTIONS(1038), + [aux_sym_cmd_identifier_token17] = ACTIONS(1038), + [aux_sym_cmd_identifier_token18] = ACTIONS(1038), + [aux_sym_cmd_identifier_token19] = ACTIONS(1038), + [aux_sym_cmd_identifier_token20] = ACTIONS(1038), + [aux_sym_cmd_identifier_token21] = ACTIONS(1038), + [aux_sym_cmd_identifier_token22] = ACTIONS(1038), + [aux_sym_cmd_identifier_token23] = ACTIONS(1038), + [aux_sym_cmd_identifier_token24] = ACTIONS(1038), + [aux_sym_cmd_identifier_token25] = ACTIONS(1038), + [aux_sym_cmd_identifier_token26] = ACTIONS(1038), + [aux_sym_cmd_identifier_token27] = ACTIONS(1038), + [aux_sym_cmd_identifier_token28] = ACTIONS(1038), + [aux_sym_cmd_identifier_token29] = ACTIONS(1038), + [aux_sym_cmd_identifier_token30] = ACTIONS(1038), + [aux_sym_cmd_identifier_token31] = ACTIONS(1038), + [aux_sym_cmd_identifier_token32] = ACTIONS(1038), + [aux_sym_cmd_identifier_token33] = ACTIONS(1038), + [aux_sym_cmd_identifier_token34] = ACTIONS(1038), + [aux_sym_cmd_identifier_token35] = ACTIONS(1038), + [aux_sym_cmd_identifier_token36] = ACTIONS(1038), + [anon_sym_true] = ACTIONS(1040), + [anon_sym_false] = ACTIONS(1040), + [anon_sym_null] = ACTIONS(1040), + [aux_sym_cmd_identifier_token38] = ACTIONS(1038), + [aux_sym_cmd_identifier_token39] = ACTIONS(1040), + [aux_sym_cmd_identifier_token40] = ACTIONS(1040), + [anon_sym_def] = ACTIONS(1038), + [anon_sym_export_DASHenv] = ACTIONS(1038), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_module] = ACTIONS(1038), + [anon_sym_use] = ACTIONS(1038), + [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_COMMA] = ACTIONS(1040), + [anon_sym_DOLLAR] = ACTIONS(1040), + [anon_sym_error] = ACTIONS(1038), + [anon_sym_list] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_break] = ACTIONS(1038), + [anon_sym_continue] = ACTIONS(1038), + [anon_sym_for] = ACTIONS(1038), + [anon_sym_in] = ACTIONS(1038), + [anon_sym_loop] = ACTIONS(1038), + [anon_sym_make] = ACTIONS(1038), + [anon_sym_while] = ACTIONS(1038), + [anon_sym_do] = ACTIONS(1038), + [anon_sym_if] = ACTIONS(1038), + [anon_sym_else] = ACTIONS(1038), + [anon_sym_match] = ACTIONS(1038), + [anon_sym_RBRACE] = ACTIONS(1040), + [anon_sym_try] = ACTIONS(1038), + [anon_sym_catch] = ACTIONS(1038), + [anon_sym_return] = ACTIONS(1038), + [anon_sym_source] = ACTIONS(1038), + [anon_sym_source_DASHenv] = ACTIONS(1038), + [anon_sym_register] = ACTIONS(1038), + [anon_sym_hide] = ACTIONS(1038), + [anon_sym_hide_DASHenv] = ACTIONS(1038), + [anon_sym_overlay] = ACTIONS(1038), + [anon_sym_new] = ACTIONS(1038), + [anon_sym_as] = ACTIONS(1038), + [anon_sym_QMARK2] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1040), + [anon_sym_DOT] = ACTIONS(1038), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1040), + [aux_sym__val_number_decimal_token1] = ACTIONS(1038), + [aux_sym__val_number_decimal_token2] = ACTIONS(1040), + [aux_sym__val_number_decimal_token3] = ACTIONS(1040), + [aux_sym__val_number_decimal_token4] = ACTIONS(1040), + [aux_sym__val_number_token1] = ACTIONS(1040), + [aux_sym__val_number_token2] = ACTIONS(1040), + [aux_sym__val_number_token3] = ACTIONS(1040), + [anon_sym_DQUOTE] = ACTIONS(1040), + [sym__str_single_quotes] = ACTIONS(1040), + [sym__str_back_ticks] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1040), + [aux_sym_record_entry_token1] = ACTIONS(1040), + [anon_sym_PLUS] = ACTIONS(1038), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1040), }, - [458] = { - [sym_comment] = STATE(458), + [415] = { + [sym_comment] = STATE(415), [anon_sym_export] = ACTIONS(1054), [anon_sym_alias] = ACTIONS(1054), [anon_sym_let] = ACTIONS(1054), @@ -127386,6 +124392,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(1054), [anon_sym_new] = ACTIONS(1054), [anon_sym_as] = ACTIONS(1054), + [anon_sym_QMARK2] = ACTIONS(1056), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1056), [anon_sym_DOT] = ACTIONS(1054), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1056), @@ -127402,827 +124409,1156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1056), [aux_sym_record_entry_token1] = ACTIONS(1056), [anon_sym_PLUS] = ACTIONS(1054), - [anon_sym_POUND] = ACTIONS(247), - }, - [459] = { - [sym_path] = STATE(578), - [sym_comment] = STATE(459), - [aux_sym_cell_path_repeat1] = STATE(460), - [anon_sym_export] = ACTIONS(1011), - [anon_sym_alias] = ACTIONS(1011), - [anon_sym_let] = ACTIONS(1011), - [anon_sym_let_DASHenv] = ACTIONS(1011), - [anon_sym_mut] = ACTIONS(1011), - [anon_sym_const] = ACTIONS(1011), - [aux_sym_cmd_identifier_token1] = ACTIONS(1011), - [aux_sym_cmd_identifier_token2] = ACTIONS(1011), - [aux_sym_cmd_identifier_token3] = ACTIONS(1011), - [aux_sym_cmd_identifier_token4] = ACTIONS(1011), - [aux_sym_cmd_identifier_token5] = ACTIONS(1011), - [aux_sym_cmd_identifier_token6] = ACTIONS(1011), - [aux_sym_cmd_identifier_token7] = ACTIONS(1011), - [aux_sym_cmd_identifier_token8] = ACTIONS(1011), - [aux_sym_cmd_identifier_token9] = ACTIONS(1011), - [aux_sym_cmd_identifier_token10] = ACTIONS(1011), - [aux_sym_cmd_identifier_token11] = ACTIONS(1011), - [aux_sym_cmd_identifier_token12] = ACTIONS(1011), - [aux_sym_cmd_identifier_token13] = ACTIONS(1011), - [aux_sym_cmd_identifier_token14] = ACTIONS(1011), - [aux_sym_cmd_identifier_token15] = ACTIONS(1011), - [aux_sym_cmd_identifier_token16] = ACTIONS(1011), - [aux_sym_cmd_identifier_token17] = ACTIONS(1011), - [aux_sym_cmd_identifier_token18] = ACTIONS(1011), - [aux_sym_cmd_identifier_token19] = ACTIONS(1011), - [aux_sym_cmd_identifier_token20] = ACTIONS(1011), - [aux_sym_cmd_identifier_token21] = ACTIONS(1011), - [aux_sym_cmd_identifier_token22] = ACTIONS(1011), - [aux_sym_cmd_identifier_token23] = ACTIONS(1011), - [aux_sym_cmd_identifier_token24] = ACTIONS(1011), - [aux_sym_cmd_identifier_token25] = ACTIONS(1011), - [aux_sym_cmd_identifier_token26] = ACTIONS(1011), - [aux_sym_cmd_identifier_token27] = ACTIONS(1011), - [aux_sym_cmd_identifier_token28] = ACTIONS(1011), - [aux_sym_cmd_identifier_token29] = ACTIONS(1011), - [aux_sym_cmd_identifier_token30] = ACTIONS(1011), - [aux_sym_cmd_identifier_token31] = ACTIONS(1011), - [aux_sym_cmd_identifier_token32] = ACTIONS(1011), - [aux_sym_cmd_identifier_token33] = ACTIONS(1011), - [aux_sym_cmd_identifier_token34] = ACTIONS(1011), - [aux_sym_cmd_identifier_token35] = ACTIONS(1011), - [aux_sym_cmd_identifier_token36] = ACTIONS(1011), - [anon_sym_true] = ACTIONS(1013), - [anon_sym_false] = ACTIONS(1013), - [anon_sym_null] = ACTIONS(1013), - [aux_sym_cmd_identifier_token38] = ACTIONS(1011), - [aux_sym_cmd_identifier_token39] = ACTIONS(1013), - [aux_sym_cmd_identifier_token40] = ACTIONS(1013), - [anon_sym_def] = ACTIONS(1011), - [anon_sym_export_DASHenv] = ACTIONS(1011), - [anon_sym_extern] = ACTIONS(1011), - [anon_sym_module] = ACTIONS(1011), - [anon_sym_use] = ACTIONS(1011), - [anon_sym_LPAREN] = ACTIONS(1013), - [anon_sym_DOLLAR] = ACTIONS(1013), - [anon_sym_error] = ACTIONS(1011), - [anon_sym_list] = ACTIONS(1011), - [anon_sym_DASH] = ACTIONS(1011), - [anon_sym_break] = ACTIONS(1011), - [anon_sym_continue] = ACTIONS(1011), - [anon_sym_for] = ACTIONS(1011), - [anon_sym_in] = ACTIONS(1011), - [anon_sym_loop] = ACTIONS(1011), - [anon_sym_make] = ACTIONS(1011), - [anon_sym_while] = ACTIONS(1011), - [anon_sym_do] = ACTIONS(1011), - [anon_sym_if] = ACTIONS(1011), - [anon_sym_else] = ACTIONS(1011), - [anon_sym_match] = ACTIONS(1011), - [anon_sym_RBRACE] = ACTIONS(1013), - [anon_sym_try] = ACTIONS(1011), - [anon_sym_catch] = ACTIONS(1011), - [anon_sym_return] = ACTIONS(1011), - [anon_sym_source] = ACTIONS(1011), - [anon_sym_source_DASHenv] = ACTIONS(1011), - [anon_sym_register] = ACTIONS(1011), - [anon_sym_hide] = ACTIONS(1011), - [anon_sym_hide_DASHenv] = ACTIONS(1011), - [anon_sym_overlay] = ACTIONS(1011), - [anon_sym_new] = ACTIONS(1011), - [anon_sym_as] = ACTIONS(1011), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1013), - [anon_sym_DOT] = ACTIONS(1989), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1013), - [aux_sym__val_number_decimal_token1] = ACTIONS(1011), - [aux_sym__val_number_decimal_token2] = ACTIONS(1013), - [aux_sym__val_number_decimal_token3] = ACTIONS(1013), - [aux_sym__val_number_decimal_token4] = ACTIONS(1013), - [aux_sym__val_number_token1] = ACTIONS(1013), - [aux_sym__val_number_token2] = ACTIONS(1013), - [aux_sym__val_number_token3] = ACTIONS(1013), - [anon_sym_DQUOTE] = ACTIONS(1013), - [sym__str_single_quotes] = ACTIONS(1013), - [sym__str_back_ticks] = ACTIONS(1013), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(1011), - [anon_sym_POUND] = ACTIONS(247), - }, - [460] = { - [sym_path] = STATE(578), - [sym_comment] = STATE(460), - [aux_sym_cell_path_repeat1] = STATE(460), - [anon_sym_export] = ACTIONS(1015), - [anon_sym_alias] = ACTIONS(1015), - [anon_sym_let] = ACTIONS(1015), - [anon_sym_let_DASHenv] = ACTIONS(1015), - [anon_sym_mut] = ACTIONS(1015), - [anon_sym_const] = ACTIONS(1015), - [aux_sym_cmd_identifier_token1] = ACTIONS(1015), - [aux_sym_cmd_identifier_token2] = ACTIONS(1015), - [aux_sym_cmd_identifier_token3] = ACTIONS(1015), - [aux_sym_cmd_identifier_token4] = ACTIONS(1015), - [aux_sym_cmd_identifier_token5] = ACTIONS(1015), - [aux_sym_cmd_identifier_token6] = ACTIONS(1015), - [aux_sym_cmd_identifier_token7] = ACTIONS(1015), - [aux_sym_cmd_identifier_token8] = ACTIONS(1015), - [aux_sym_cmd_identifier_token9] = ACTIONS(1015), - [aux_sym_cmd_identifier_token10] = ACTIONS(1015), - [aux_sym_cmd_identifier_token11] = ACTIONS(1015), - [aux_sym_cmd_identifier_token12] = ACTIONS(1015), - [aux_sym_cmd_identifier_token13] = ACTIONS(1015), - [aux_sym_cmd_identifier_token14] = ACTIONS(1015), - [aux_sym_cmd_identifier_token15] = ACTIONS(1015), - [aux_sym_cmd_identifier_token16] = ACTIONS(1015), - [aux_sym_cmd_identifier_token17] = ACTIONS(1015), - [aux_sym_cmd_identifier_token18] = ACTIONS(1015), - [aux_sym_cmd_identifier_token19] = ACTIONS(1015), - [aux_sym_cmd_identifier_token20] = ACTIONS(1015), - [aux_sym_cmd_identifier_token21] = ACTIONS(1015), - [aux_sym_cmd_identifier_token22] = ACTIONS(1015), - [aux_sym_cmd_identifier_token23] = ACTIONS(1015), - [aux_sym_cmd_identifier_token24] = ACTIONS(1015), - [aux_sym_cmd_identifier_token25] = ACTIONS(1015), - [aux_sym_cmd_identifier_token26] = ACTIONS(1015), - [aux_sym_cmd_identifier_token27] = ACTIONS(1015), - [aux_sym_cmd_identifier_token28] = ACTIONS(1015), - [aux_sym_cmd_identifier_token29] = ACTIONS(1015), - [aux_sym_cmd_identifier_token30] = ACTIONS(1015), - [aux_sym_cmd_identifier_token31] = ACTIONS(1015), - [aux_sym_cmd_identifier_token32] = ACTIONS(1015), - [aux_sym_cmd_identifier_token33] = ACTIONS(1015), - [aux_sym_cmd_identifier_token34] = ACTIONS(1015), - [aux_sym_cmd_identifier_token35] = ACTIONS(1015), - [aux_sym_cmd_identifier_token36] = ACTIONS(1015), - [anon_sym_true] = ACTIONS(1017), - [anon_sym_false] = ACTIONS(1017), - [anon_sym_null] = ACTIONS(1017), - [aux_sym_cmd_identifier_token38] = ACTIONS(1015), - [aux_sym_cmd_identifier_token39] = ACTIONS(1017), - [aux_sym_cmd_identifier_token40] = ACTIONS(1017), - [anon_sym_def] = ACTIONS(1015), - [anon_sym_export_DASHenv] = ACTIONS(1015), - [anon_sym_extern] = ACTIONS(1015), - [anon_sym_module] = ACTIONS(1015), - [anon_sym_use] = ACTIONS(1015), - [anon_sym_LPAREN] = ACTIONS(1017), - [anon_sym_DOLLAR] = ACTIONS(1017), - [anon_sym_error] = ACTIONS(1015), - [anon_sym_list] = ACTIONS(1015), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_break] = ACTIONS(1015), - [anon_sym_continue] = ACTIONS(1015), - [anon_sym_for] = ACTIONS(1015), - [anon_sym_in] = ACTIONS(1015), - [anon_sym_loop] = ACTIONS(1015), - [anon_sym_make] = ACTIONS(1015), - [anon_sym_while] = ACTIONS(1015), - [anon_sym_do] = ACTIONS(1015), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_else] = ACTIONS(1015), - [anon_sym_match] = ACTIONS(1015), - [anon_sym_RBRACE] = ACTIONS(1017), - [anon_sym_try] = ACTIONS(1015), - [anon_sym_catch] = ACTIONS(1015), - [anon_sym_return] = ACTIONS(1015), - [anon_sym_source] = ACTIONS(1015), - [anon_sym_source_DASHenv] = ACTIONS(1015), - [anon_sym_register] = ACTIONS(1015), - [anon_sym_hide] = ACTIONS(1015), - [anon_sym_hide_DASHenv] = ACTIONS(1015), - [anon_sym_overlay] = ACTIONS(1015), - [anon_sym_new] = ACTIONS(1015), - [anon_sym_as] = ACTIONS(1015), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1017), - [anon_sym_DOT] = ACTIONS(2222), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1017), - [aux_sym__val_number_decimal_token1] = ACTIONS(1015), - [aux_sym__val_number_decimal_token2] = ACTIONS(1017), - [aux_sym__val_number_decimal_token3] = ACTIONS(1017), - [aux_sym__val_number_decimal_token4] = ACTIONS(1017), - [aux_sym__val_number_token1] = ACTIONS(1017), - [aux_sym__val_number_token2] = ACTIONS(1017), - [aux_sym__val_number_token3] = ACTIONS(1017), - [anon_sym_DQUOTE] = ACTIONS(1017), - [sym__str_single_quotes] = ACTIONS(1017), - [sym__str_back_ticks] = ACTIONS(1017), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1017), - [anon_sym_PLUS] = ACTIONS(1015), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1056), }, - [461] = { - [sym_comment] = STATE(461), - [anon_sym_export] = ACTIONS(1070), - [anon_sym_alias] = ACTIONS(1070), - [anon_sym_let] = ACTIONS(1070), - [anon_sym_let_DASHenv] = ACTIONS(1070), - [anon_sym_mut] = ACTIONS(1070), - [anon_sym_const] = ACTIONS(1070), - [aux_sym_cmd_identifier_token1] = ACTIONS(1070), - [aux_sym_cmd_identifier_token2] = ACTIONS(1070), - [aux_sym_cmd_identifier_token3] = ACTIONS(1070), - [aux_sym_cmd_identifier_token4] = ACTIONS(1070), - [aux_sym_cmd_identifier_token5] = ACTIONS(1070), - [aux_sym_cmd_identifier_token6] = ACTIONS(1070), - [aux_sym_cmd_identifier_token7] = ACTIONS(1070), - [aux_sym_cmd_identifier_token8] = ACTIONS(1070), - [aux_sym_cmd_identifier_token9] = ACTIONS(1070), - [aux_sym_cmd_identifier_token10] = ACTIONS(1070), - [aux_sym_cmd_identifier_token11] = ACTIONS(1070), - [aux_sym_cmd_identifier_token12] = ACTIONS(1070), - [aux_sym_cmd_identifier_token13] = ACTIONS(1070), - [aux_sym_cmd_identifier_token14] = ACTIONS(1070), - [aux_sym_cmd_identifier_token15] = ACTIONS(1070), - [aux_sym_cmd_identifier_token16] = ACTIONS(1070), - [aux_sym_cmd_identifier_token17] = ACTIONS(1070), - [aux_sym_cmd_identifier_token18] = ACTIONS(1070), - [aux_sym_cmd_identifier_token19] = ACTIONS(1070), - [aux_sym_cmd_identifier_token20] = ACTIONS(1070), - [aux_sym_cmd_identifier_token21] = ACTIONS(1070), - [aux_sym_cmd_identifier_token22] = ACTIONS(1070), - [aux_sym_cmd_identifier_token23] = ACTIONS(1070), - [aux_sym_cmd_identifier_token24] = ACTIONS(1070), - [aux_sym_cmd_identifier_token25] = ACTIONS(1070), - [aux_sym_cmd_identifier_token26] = ACTIONS(1070), - [aux_sym_cmd_identifier_token27] = ACTIONS(1070), - [aux_sym_cmd_identifier_token28] = ACTIONS(1070), - [aux_sym_cmd_identifier_token29] = ACTIONS(1070), - [aux_sym_cmd_identifier_token30] = ACTIONS(1070), - [aux_sym_cmd_identifier_token31] = ACTIONS(1070), - [aux_sym_cmd_identifier_token32] = ACTIONS(1070), - [aux_sym_cmd_identifier_token33] = ACTIONS(1070), - [aux_sym_cmd_identifier_token34] = ACTIONS(1070), - [aux_sym_cmd_identifier_token35] = ACTIONS(1070), - [aux_sym_cmd_identifier_token36] = ACTIONS(1070), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [anon_sym_null] = ACTIONS(1070), - [aux_sym_cmd_identifier_token38] = ACTIONS(1070), - [aux_sym_cmd_identifier_token39] = ACTIONS(1070), - [aux_sym_cmd_identifier_token40] = ACTIONS(1070), - [anon_sym_def] = ACTIONS(1070), - [anon_sym_export_DASHenv] = ACTIONS(1070), - [anon_sym_extern] = ACTIONS(1070), - [anon_sym_module] = ACTIONS(1070), - [anon_sym_use] = ACTIONS(1070), - [anon_sym_LPAREN] = ACTIONS(1070), - [anon_sym_DOLLAR] = ACTIONS(1070), - [anon_sym_error] = ACTIONS(1070), - [anon_sym_list] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_break] = ACTIONS(1070), - [anon_sym_continue] = ACTIONS(1070), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_in] = ACTIONS(1070), - [anon_sym_loop] = ACTIONS(1070), - [anon_sym_make] = ACTIONS(1070), - [anon_sym_while] = ACTIONS(1070), - [anon_sym_do] = ACTIONS(1070), - [anon_sym_if] = ACTIONS(1070), - [anon_sym_else] = ACTIONS(1070), - [anon_sym_match] = ACTIONS(1070), - [anon_sym_RBRACE] = ACTIONS(1070), - [anon_sym_try] = ACTIONS(1070), - [anon_sym_catch] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1070), - [anon_sym_source] = ACTIONS(1070), - [anon_sym_source_DASHenv] = ACTIONS(1070), - [anon_sym_register] = ACTIONS(1070), - [anon_sym_hide] = ACTIONS(1070), - [anon_sym_hide_DASHenv] = ACTIONS(1070), - [anon_sym_overlay] = ACTIONS(1070), - [anon_sym_new] = ACTIONS(1070), - [anon_sym_as] = ACTIONS(1070), - [anon_sym_LPAREN2] = ACTIONS(2225), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1070), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1070), - [aux_sym__val_number_decimal_token1] = ACTIONS(1070), - [aux_sym__val_number_decimal_token2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1070), - [aux_sym__val_number_decimal_token4] = ACTIONS(1070), - [aux_sym__val_number_token1] = ACTIONS(1070), - [aux_sym__val_number_token2] = ACTIONS(1070), - [aux_sym__val_number_token3] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1070), - [sym__str_single_quotes] = ACTIONS(1070), - [sym__str_back_ticks] = ACTIONS(1070), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1070), - [sym__entry_separator] = ACTIONS(1072), - [anon_sym_PLUS] = ACTIONS(1070), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2227), + [416] = { + [sym_comment] = STATE(416), + [anon_sym_export] = ACTIONS(1078), + [anon_sym_alias] = ACTIONS(1078), + [anon_sym_let] = ACTIONS(1078), + [anon_sym_let_DASHenv] = ACTIONS(1078), + [anon_sym_mut] = ACTIONS(1078), + [anon_sym_const] = ACTIONS(1078), + [aux_sym_cmd_identifier_token1] = ACTIONS(1078), + [aux_sym_cmd_identifier_token2] = ACTIONS(1078), + [aux_sym_cmd_identifier_token3] = ACTIONS(1078), + [aux_sym_cmd_identifier_token4] = ACTIONS(1078), + [aux_sym_cmd_identifier_token5] = ACTIONS(1078), + [aux_sym_cmd_identifier_token6] = ACTIONS(1078), + [aux_sym_cmd_identifier_token7] = ACTIONS(1078), + [aux_sym_cmd_identifier_token8] = ACTIONS(1078), + [aux_sym_cmd_identifier_token9] = ACTIONS(1078), + [aux_sym_cmd_identifier_token10] = ACTIONS(1078), + [aux_sym_cmd_identifier_token11] = ACTIONS(1078), + [aux_sym_cmd_identifier_token12] = ACTIONS(1078), + [aux_sym_cmd_identifier_token13] = ACTIONS(1078), + [aux_sym_cmd_identifier_token14] = ACTIONS(1078), + [aux_sym_cmd_identifier_token15] = ACTIONS(1078), + [aux_sym_cmd_identifier_token16] = ACTIONS(1078), + [aux_sym_cmd_identifier_token17] = ACTIONS(1078), + [aux_sym_cmd_identifier_token18] = ACTIONS(1078), + [aux_sym_cmd_identifier_token19] = ACTIONS(1078), + [aux_sym_cmd_identifier_token20] = ACTIONS(1078), + [aux_sym_cmd_identifier_token21] = ACTIONS(1078), + [aux_sym_cmd_identifier_token22] = ACTIONS(1078), + [aux_sym_cmd_identifier_token23] = ACTIONS(1078), + [aux_sym_cmd_identifier_token24] = ACTIONS(1078), + [aux_sym_cmd_identifier_token25] = ACTIONS(1078), + [aux_sym_cmd_identifier_token26] = ACTIONS(1078), + [aux_sym_cmd_identifier_token27] = ACTIONS(1078), + [aux_sym_cmd_identifier_token28] = ACTIONS(1078), + [aux_sym_cmd_identifier_token29] = ACTIONS(1078), + [aux_sym_cmd_identifier_token30] = ACTIONS(1078), + [aux_sym_cmd_identifier_token31] = ACTIONS(1078), + [aux_sym_cmd_identifier_token32] = ACTIONS(1078), + [aux_sym_cmd_identifier_token33] = ACTIONS(1078), + [aux_sym_cmd_identifier_token34] = ACTIONS(1078), + [aux_sym_cmd_identifier_token35] = ACTIONS(1078), + [aux_sym_cmd_identifier_token36] = ACTIONS(1078), + [anon_sym_true] = ACTIONS(1078), + [anon_sym_false] = ACTIONS(1078), + [anon_sym_null] = ACTIONS(1078), + [aux_sym_cmd_identifier_token38] = ACTIONS(1078), + [aux_sym_cmd_identifier_token39] = ACTIONS(1078), + [aux_sym_cmd_identifier_token40] = ACTIONS(1078), + [anon_sym_def] = ACTIONS(1078), + [anon_sym_export_DASHenv] = ACTIONS(1078), + [anon_sym_extern] = ACTIONS(1078), + [anon_sym_module] = ACTIONS(1078), + [anon_sym_use] = ACTIONS(1078), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_DOLLAR] = ACTIONS(1078), + [anon_sym_error] = ACTIONS(1078), + [anon_sym_list] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_break] = ACTIONS(1078), + [anon_sym_continue] = ACTIONS(1078), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_in] = ACTIONS(1078), + [anon_sym_loop] = ACTIONS(1078), + [anon_sym_make] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1078), + [anon_sym_do] = ACTIONS(1078), + [anon_sym_if] = ACTIONS(1078), + [anon_sym_else] = ACTIONS(1078), + [anon_sym_match] = ACTIONS(1078), + [anon_sym_RBRACE] = ACTIONS(1078), + [anon_sym_try] = ACTIONS(1078), + [anon_sym_catch] = ACTIONS(1078), + [anon_sym_return] = ACTIONS(1078), + [anon_sym_source] = ACTIONS(1078), + [anon_sym_source_DASHenv] = ACTIONS(1078), + [anon_sym_register] = ACTIONS(1078), + [anon_sym_hide] = ACTIONS(1078), + [anon_sym_hide_DASHenv] = ACTIONS(1078), + [anon_sym_overlay] = ACTIONS(1078), + [anon_sym_new] = ACTIONS(1078), + [anon_sym_as] = ACTIONS(1078), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1078), + [anon_sym_DOT_DOT2] = ACTIONS(1078), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1080), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1080), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1078), + [aux_sym__val_number_decimal_token1] = ACTIONS(1078), + [aux_sym__val_number_decimal_token2] = ACTIONS(1078), + [aux_sym__val_number_decimal_token3] = ACTIONS(1078), + [aux_sym__val_number_decimal_token4] = ACTIONS(1078), + [aux_sym__val_number_token1] = ACTIONS(1078), + [aux_sym__val_number_token2] = ACTIONS(1078), + [aux_sym__val_number_token3] = ACTIONS(1078), + [anon_sym_DQUOTE] = ACTIONS(1078), + [sym__str_single_quotes] = ACTIONS(1078), + [sym__str_back_ticks] = ACTIONS(1078), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1078), + [sym__entry_separator] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1078), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1080), }, - [462] = { - [sym_comment] = STATE(462), - [anon_sym_export] = ACTIONS(2229), - [anon_sym_alias] = ACTIONS(2229), - [anon_sym_let] = ACTIONS(2229), - [anon_sym_let_DASHenv] = ACTIONS(2229), - [anon_sym_mut] = ACTIONS(2229), - [anon_sym_const] = ACTIONS(2229), - [aux_sym_cmd_identifier_token1] = ACTIONS(2229), - [aux_sym_cmd_identifier_token2] = ACTIONS(2229), - [aux_sym_cmd_identifier_token3] = ACTIONS(2229), - [aux_sym_cmd_identifier_token4] = ACTIONS(2229), - [aux_sym_cmd_identifier_token5] = ACTIONS(2229), - [aux_sym_cmd_identifier_token6] = ACTIONS(2229), - [aux_sym_cmd_identifier_token7] = ACTIONS(2229), - [aux_sym_cmd_identifier_token8] = ACTIONS(2229), - [aux_sym_cmd_identifier_token9] = ACTIONS(2229), - [aux_sym_cmd_identifier_token10] = ACTIONS(2229), - [aux_sym_cmd_identifier_token11] = ACTIONS(2229), - [aux_sym_cmd_identifier_token12] = ACTIONS(2229), - [aux_sym_cmd_identifier_token13] = ACTIONS(2229), - [aux_sym_cmd_identifier_token14] = ACTIONS(2229), - [aux_sym_cmd_identifier_token15] = ACTIONS(2229), - [aux_sym_cmd_identifier_token16] = ACTIONS(2229), - [aux_sym_cmd_identifier_token17] = ACTIONS(2229), - [aux_sym_cmd_identifier_token18] = ACTIONS(2229), - [aux_sym_cmd_identifier_token19] = ACTIONS(2229), - [aux_sym_cmd_identifier_token20] = ACTIONS(2229), - [aux_sym_cmd_identifier_token21] = ACTIONS(2229), - [aux_sym_cmd_identifier_token22] = ACTIONS(2229), - [aux_sym_cmd_identifier_token23] = ACTIONS(2229), - [aux_sym_cmd_identifier_token24] = ACTIONS(2229), - [aux_sym_cmd_identifier_token25] = ACTIONS(2229), - [aux_sym_cmd_identifier_token26] = ACTIONS(2229), - [aux_sym_cmd_identifier_token27] = ACTIONS(2229), - [aux_sym_cmd_identifier_token28] = ACTIONS(2229), - [aux_sym_cmd_identifier_token29] = ACTIONS(2229), - [aux_sym_cmd_identifier_token30] = ACTIONS(2229), - [aux_sym_cmd_identifier_token31] = ACTIONS(2229), - [aux_sym_cmd_identifier_token32] = ACTIONS(2229), - [aux_sym_cmd_identifier_token33] = ACTIONS(2229), - [aux_sym_cmd_identifier_token34] = ACTIONS(2229), - [aux_sym_cmd_identifier_token35] = ACTIONS(2229), - [aux_sym_cmd_identifier_token36] = ACTIONS(2229), - [anon_sym_true] = ACTIONS(2229), - [anon_sym_false] = ACTIONS(2229), - [anon_sym_null] = ACTIONS(2229), - [aux_sym_cmd_identifier_token38] = ACTIONS(2229), - [aux_sym_cmd_identifier_token39] = ACTIONS(2229), - [aux_sym_cmd_identifier_token40] = ACTIONS(2229), - [anon_sym_def] = ACTIONS(2229), - [anon_sym_export_DASHenv] = ACTIONS(2229), - [anon_sym_extern] = ACTIONS(2229), - [anon_sym_module] = ACTIONS(2229), - [anon_sym_use] = ACTIONS(2229), - [anon_sym_LPAREN] = ACTIONS(2229), - [anon_sym_DOLLAR] = ACTIONS(2229), - [anon_sym_error] = ACTIONS(2229), - [anon_sym_list] = ACTIONS(2229), - [anon_sym_DASH] = ACTIONS(2229), - [anon_sym_break] = ACTIONS(2229), - [anon_sym_continue] = ACTIONS(2229), - [anon_sym_for] = ACTIONS(2229), - [anon_sym_in] = ACTIONS(2229), - [anon_sym_loop] = ACTIONS(2229), - [anon_sym_make] = ACTIONS(2229), - [anon_sym_while] = ACTIONS(2229), - [anon_sym_do] = ACTIONS(2229), - [anon_sym_if] = ACTIONS(2229), - [anon_sym_else] = ACTIONS(2229), - [anon_sym_match] = ACTIONS(2229), - [anon_sym_RBRACE] = ACTIONS(2229), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_catch] = ACTIONS(2229), - [anon_sym_return] = ACTIONS(2229), - [anon_sym_source] = ACTIONS(2229), - [anon_sym_source_DASHenv] = ACTIONS(2229), - [anon_sym_register] = ACTIONS(2229), - [anon_sym_hide] = ACTIONS(2229), - [anon_sym_hide_DASHenv] = ACTIONS(2229), - [anon_sym_overlay] = ACTIONS(2229), - [anon_sym_new] = ACTIONS(2229), - [anon_sym_as] = ACTIONS(2229), - [anon_sym_LPAREN2] = ACTIONS(2231), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2229), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2229), - [aux_sym__val_number_decimal_token1] = ACTIONS(2229), - [aux_sym__val_number_decimal_token2] = ACTIONS(2229), - [aux_sym__val_number_decimal_token3] = ACTIONS(2229), - [aux_sym__val_number_decimal_token4] = ACTIONS(2229), - [aux_sym__val_number_token1] = ACTIONS(2229), - [aux_sym__val_number_token2] = ACTIONS(2229), - [aux_sym__val_number_token3] = ACTIONS(2229), - [anon_sym_DQUOTE] = ACTIONS(2229), - [sym__str_single_quotes] = ACTIONS(2229), - [sym__str_back_ticks] = ACTIONS(2229), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2229), - [sym__entry_separator] = ACTIONS(2233), - [anon_sym_PLUS] = ACTIONS(2229), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2235), - [anon_sym_POUND] = ACTIONS(3), + [417] = { + [sym_comment] = STATE(417), + [anon_sym_export] = ACTIONS(1703), + [anon_sym_alias] = ACTIONS(1703), + [anon_sym_let] = ACTIONS(1703), + [anon_sym_let_DASHenv] = ACTIONS(1703), + [anon_sym_mut] = ACTIONS(1703), + [anon_sym_const] = ACTIONS(1703), + [aux_sym_cmd_identifier_token1] = ACTIONS(1703), + [aux_sym_cmd_identifier_token2] = ACTIONS(1703), + [aux_sym_cmd_identifier_token3] = ACTIONS(1703), + [aux_sym_cmd_identifier_token4] = ACTIONS(1703), + [aux_sym_cmd_identifier_token5] = ACTIONS(1703), + [aux_sym_cmd_identifier_token6] = ACTIONS(1703), + [aux_sym_cmd_identifier_token7] = ACTIONS(1703), + [aux_sym_cmd_identifier_token8] = ACTIONS(1703), + [aux_sym_cmd_identifier_token9] = ACTIONS(1703), + [aux_sym_cmd_identifier_token10] = ACTIONS(1703), + [aux_sym_cmd_identifier_token11] = ACTIONS(1703), + [aux_sym_cmd_identifier_token12] = ACTIONS(1703), + [aux_sym_cmd_identifier_token13] = ACTIONS(1703), + [aux_sym_cmd_identifier_token14] = ACTIONS(1703), + [aux_sym_cmd_identifier_token15] = ACTIONS(1703), + [aux_sym_cmd_identifier_token16] = ACTIONS(1703), + [aux_sym_cmd_identifier_token17] = ACTIONS(1703), + [aux_sym_cmd_identifier_token18] = ACTIONS(1703), + [aux_sym_cmd_identifier_token19] = ACTIONS(1703), + [aux_sym_cmd_identifier_token20] = ACTIONS(1703), + [aux_sym_cmd_identifier_token21] = ACTIONS(1703), + [aux_sym_cmd_identifier_token22] = ACTIONS(1703), + [aux_sym_cmd_identifier_token23] = ACTIONS(1703), + [aux_sym_cmd_identifier_token24] = ACTIONS(1703), + [aux_sym_cmd_identifier_token25] = ACTIONS(1703), + [aux_sym_cmd_identifier_token26] = ACTIONS(1703), + [aux_sym_cmd_identifier_token27] = ACTIONS(1703), + [aux_sym_cmd_identifier_token28] = ACTIONS(1703), + [aux_sym_cmd_identifier_token29] = ACTIONS(1703), + [aux_sym_cmd_identifier_token30] = ACTIONS(1703), + [aux_sym_cmd_identifier_token31] = ACTIONS(1703), + [aux_sym_cmd_identifier_token32] = ACTIONS(1703), + [aux_sym_cmd_identifier_token33] = ACTIONS(1703), + [aux_sym_cmd_identifier_token34] = ACTIONS(1703), + [aux_sym_cmd_identifier_token35] = ACTIONS(1703), + [aux_sym_cmd_identifier_token36] = ACTIONS(1703), + [anon_sym_true] = ACTIONS(1705), + [anon_sym_false] = ACTIONS(1705), + [anon_sym_null] = ACTIONS(1705), + [aux_sym_cmd_identifier_token38] = ACTIONS(1703), + [aux_sym_cmd_identifier_token39] = ACTIONS(1705), + [aux_sym_cmd_identifier_token40] = ACTIONS(1705), + [anon_sym_def] = ACTIONS(1703), + [anon_sym_export_DASHenv] = ACTIONS(1703), + [anon_sym_extern] = ACTIONS(1703), + [anon_sym_module] = ACTIONS(1703), + [anon_sym_use] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1705), + [anon_sym_error] = ACTIONS(1703), + [anon_sym_list] = ACTIONS(1703), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_break] = ACTIONS(1703), + [anon_sym_continue] = ACTIONS(1703), + [anon_sym_for] = ACTIONS(1703), + [anon_sym_in] = ACTIONS(1703), + [anon_sym_loop] = ACTIONS(1703), + [anon_sym_make] = ACTIONS(1703), + [anon_sym_while] = ACTIONS(1703), + [anon_sym_do] = ACTIONS(1703), + [anon_sym_if] = ACTIONS(1703), + [anon_sym_else] = ACTIONS(1703), + [anon_sym_match] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1703), + [anon_sym_catch] = ACTIONS(1703), + [anon_sym_return] = ACTIONS(1703), + [anon_sym_source] = ACTIONS(1703), + [anon_sym_source_DASHenv] = ACTIONS(1703), + [anon_sym_register] = ACTIONS(1703), + [anon_sym_hide] = ACTIONS(1703), + [anon_sym_hide_DASHenv] = ACTIONS(1703), + [anon_sym_overlay] = ACTIONS(1703), + [anon_sym_new] = ACTIONS(1703), + [anon_sym_as] = ACTIONS(1703), + [anon_sym_LPAREN2] = ACTIONS(1705), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1705), + [aux_sym__immediate_decimal_token1] = ACTIONS(2182), + [aux_sym__immediate_decimal_token2] = ACTIONS(2184), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1705), + [aux_sym__val_number_decimal_token1] = ACTIONS(1703), + [aux_sym__val_number_decimal_token2] = ACTIONS(1705), + [aux_sym__val_number_decimal_token3] = ACTIONS(1705), + [aux_sym__val_number_decimal_token4] = ACTIONS(1705), + [aux_sym__val_number_token1] = ACTIONS(1705), + [aux_sym__val_number_token2] = ACTIONS(1705), + [aux_sym__val_number_token3] = ACTIONS(1705), + [anon_sym_DQUOTE] = ACTIONS(1705), + [sym__str_single_quotes] = ACTIONS(1705), + [sym__str_back_ticks] = ACTIONS(1705), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1705), + [anon_sym_PLUS] = ACTIONS(1703), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1705), }, - [463] = { - [sym_comment] = STATE(463), - [anon_sym_export] = ACTIONS(2237), - [anon_sym_alias] = ACTIONS(2237), - [anon_sym_let] = ACTIONS(2237), - [anon_sym_let_DASHenv] = ACTIONS(2237), - [anon_sym_mut] = ACTIONS(2237), - [anon_sym_const] = ACTIONS(2237), - [aux_sym_cmd_identifier_token1] = ACTIONS(2237), - [aux_sym_cmd_identifier_token2] = ACTIONS(2237), - [aux_sym_cmd_identifier_token3] = ACTIONS(2237), - [aux_sym_cmd_identifier_token4] = ACTIONS(2237), - [aux_sym_cmd_identifier_token5] = ACTIONS(2237), - [aux_sym_cmd_identifier_token6] = ACTIONS(2237), - [aux_sym_cmd_identifier_token7] = ACTIONS(2237), - [aux_sym_cmd_identifier_token8] = ACTIONS(2237), - [aux_sym_cmd_identifier_token9] = ACTIONS(2237), - [aux_sym_cmd_identifier_token10] = ACTIONS(2237), - [aux_sym_cmd_identifier_token11] = ACTIONS(2237), - [aux_sym_cmd_identifier_token12] = ACTIONS(2237), - [aux_sym_cmd_identifier_token13] = ACTIONS(2237), - [aux_sym_cmd_identifier_token14] = ACTIONS(2237), - [aux_sym_cmd_identifier_token15] = ACTIONS(2237), - [aux_sym_cmd_identifier_token16] = ACTIONS(2237), - [aux_sym_cmd_identifier_token17] = ACTIONS(2237), - [aux_sym_cmd_identifier_token18] = ACTIONS(2237), - [aux_sym_cmd_identifier_token19] = ACTIONS(2237), - [aux_sym_cmd_identifier_token20] = ACTIONS(2237), - [aux_sym_cmd_identifier_token21] = ACTIONS(2237), - [aux_sym_cmd_identifier_token22] = ACTIONS(2237), - [aux_sym_cmd_identifier_token23] = ACTIONS(2237), - [aux_sym_cmd_identifier_token24] = ACTIONS(2237), - [aux_sym_cmd_identifier_token25] = ACTIONS(2237), - [aux_sym_cmd_identifier_token26] = ACTIONS(2237), - [aux_sym_cmd_identifier_token27] = ACTIONS(2237), - [aux_sym_cmd_identifier_token28] = ACTIONS(2237), - [aux_sym_cmd_identifier_token29] = ACTIONS(2237), - [aux_sym_cmd_identifier_token30] = ACTIONS(2237), - [aux_sym_cmd_identifier_token31] = ACTIONS(2237), - [aux_sym_cmd_identifier_token32] = ACTIONS(2237), - [aux_sym_cmd_identifier_token33] = ACTIONS(2237), - [aux_sym_cmd_identifier_token34] = ACTIONS(2237), - [aux_sym_cmd_identifier_token35] = ACTIONS(2237), - [aux_sym_cmd_identifier_token36] = ACTIONS(2237), - [anon_sym_true] = ACTIONS(2237), - [anon_sym_false] = ACTIONS(2237), - [anon_sym_null] = ACTIONS(2237), - [aux_sym_cmd_identifier_token38] = ACTIONS(2237), - [aux_sym_cmd_identifier_token39] = ACTIONS(2237), - [aux_sym_cmd_identifier_token40] = ACTIONS(2237), - [anon_sym_def] = ACTIONS(2237), - [anon_sym_export_DASHenv] = ACTIONS(2237), - [anon_sym_extern] = ACTIONS(2237), - [anon_sym_module] = ACTIONS(2237), - [anon_sym_use] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(2237), - [anon_sym_DOLLAR] = ACTIONS(2237), - [anon_sym_error] = ACTIONS(2237), - [anon_sym_list] = ACTIONS(2237), - [anon_sym_DASH] = ACTIONS(2237), - [anon_sym_break] = ACTIONS(2237), - [anon_sym_continue] = ACTIONS(2237), - [anon_sym_for] = ACTIONS(2237), - [anon_sym_in] = ACTIONS(2237), - [anon_sym_loop] = ACTIONS(2237), - [anon_sym_make] = ACTIONS(2237), - [anon_sym_while] = ACTIONS(2237), - [anon_sym_do] = ACTIONS(2237), - [anon_sym_if] = ACTIONS(2237), - [anon_sym_else] = ACTIONS(2237), - [anon_sym_match] = ACTIONS(2237), - [anon_sym_RBRACE] = ACTIONS(2237), - [anon_sym_try] = ACTIONS(2237), - [anon_sym_catch] = ACTIONS(2237), - [anon_sym_return] = ACTIONS(2237), - [anon_sym_source] = ACTIONS(2237), - [anon_sym_source_DASHenv] = ACTIONS(2237), - [anon_sym_register] = ACTIONS(2237), - [anon_sym_hide] = ACTIONS(2237), - [anon_sym_hide_DASHenv] = ACTIONS(2237), - [anon_sym_overlay] = ACTIONS(2237), - [anon_sym_new] = ACTIONS(2237), - [anon_sym_as] = ACTIONS(2237), - [anon_sym_LPAREN2] = ACTIONS(2239), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2237), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2237), - [aux_sym__val_number_decimal_token1] = ACTIONS(2237), - [aux_sym__val_number_decimal_token2] = ACTIONS(2237), - [aux_sym__val_number_decimal_token3] = ACTIONS(2237), - [aux_sym__val_number_decimal_token4] = ACTIONS(2237), - [aux_sym__val_number_token1] = ACTIONS(2237), - [aux_sym__val_number_token2] = ACTIONS(2237), - [aux_sym__val_number_token3] = ACTIONS(2237), - [anon_sym_DQUOTE] = ACTIONS(2237), - [sym__str_single_quotes] = ACTIONS(2237), - [sym__str_back_ticks] = ACTIONS(2237), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2237), - [sym__entry_separator] = ACTIONS(2241), - [anon_sym_PLUS] = ACTIONS(2237), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2243), - [anon_sym_POUND] = ACTIONS(3), + [418] = { + [sym_comment] = STATE(418), + [anon_sym_export] = ACTIONS(1715), + [anon_sym_alias] = ACTIONS(1715), + [anon_sym_let] = ACTIONS(1715), + [anon_sym_let_DASHenv] = ACTIONS(1715), + [anon_sym_mut] = ACTIONS(1715), + [anon_sym_const] = ACTIONS(1715), + [aux_sym_cmd_identifier_token1] = ACTIONS(1715), + [aux_sym_cmd_identifier_token2] = ACTIONS(1715), + [aux_sym_cmd_identifier_token3] = ACTIONS(1715), + [aux_sym_cmd_identifier_token4] = ACTIONS(1715), + [aux_sym_cmd_identifier_token5] = ACTIONS(1715), + [aux_sym_cmd_identifier_token6] = ACTIONS(1715), + [aux_sym_cmd_identifier_token7] = ACTIONS(1715), + [aux_sym_cmd_identifier_token8] = ACTIONS(1715), + [aux_sym_cmd_identifier_token9] = ACTIONS(1715), + [aux_sym_cmd_identifier_token10] = ACTIONS(1715), + [aux_sym_cmd_identifier_token11] = ACTIONS(1715), + [aux_sym_cmd_identifier_token12] = ACTIONS(1715), + [aux_sym_cmd_identifier_token13] = ACTIONS(1715), + [aux_sym_cmd_identifier_token14] = ACTIONS(1715), + [aux_sym_cmd_identifier_token15] = ACTIONS(1715), + [aux_sym_cmd_identifier_token16] = ACTIONS(1715), + [aux_sym_cmd_identifier_token17] = ACTIONS(1715), + [aux_sym_cmd_identifier_token18] = ACTIONS(1715), + [aux_sym_cmd_identifier_token19] = ACTIONS(1715), + [aux_sym_cmd_identifier_token20] = ACTIONS(1715), + [aux_sym_cmd_identifier_token21] = ACTIONS(1715), + [aux_sym_cmd_identifier_token22] = ACTIONS(1715), + [aux_sym_cmd_identifier_token23] = ACTIONS(1715), + [aux_sym_cmd_identifier_token24] = ACTIONS(1715), + [aux_sym_cmd_identifier_token25] = ACTIONS(1715), + [aux_sym_cmd_identifier_token26] = ACTIONS(1715), + [aux_sym_cmd_identifier_token27] = ACTIONS(1715), + [aux_sym_cmd_identifier_token28] = ACTIONS(1715), + [aux_sym_cmd_identifier_token29] = ACTIONS(1715), + [aux_sym_cmd_identifier_token30] = ACTIONS(1715), + [aux_sym_cmd_identifier_token31] = ACTIONS(1715), + [aux_sym_cmd_identifier_token32] = ACTIONS(1715), + [aux_sym_cmd_identifier_token33] = ACTIONS(1715), + [aux_sym_cmd_identifier_token34] = ACTIONS(1715), + [aux_sym_cmd_identifier_token35] = ACTIONS(1715), + [aux_sym_cmd_identifier_token36] = ACTIONS(1715), + [anon_sym_true] = ACTIONS(1717), + [anon_sym_false] = ACTIONS(1717), + [anon_sym_null] = ACTIONS(1717), + [aux_sym_cmd_identifier_token38] = ACTIONS(1715), + [aux_sym_cmd_identifier_token39] = ACTIONS(1717), + [aux_sym_cmd_identifier_token40] = ACTIONS(1717), + [anon_sym_def] = ACTIONS(1715), + [anon_sym_export_DASHenv] = ACTIONS(1715), + [anon_sym_extern] = ACTIONS(1715), + [anon_sym_module] = ACTIONS(1715), + [anon_sym_use] = ACTIONS(1715), + [anon_sym_LPAREN] = ACTIONS(1717), + [anon_sym_DOLLAR] = ACTIONS(1717), + [anon_sym_error] = ACTIONS(1715), + [anon_sym_list] = ACTIONS(1715), + [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_break] = ACTIONS(1715), + [anon_sym_continue] = ACTIONS(1715), + [anon_sym_for] = ACTIONS(1715), + [anon_sym_in] = ACTIONS(1715), + [anon_sym_loop] = ACTIONS(1715), + [anon_sym_make] = ACTIONS(1715), + [anon_sym_while] = ACTIONS(1715), + [anon_sym_do] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1715), + [anon_sym_else] = ACTIONS(1715), + [anon_sym_match] = ACTIONS(1715), + [anon_sym_RBRACE] = ACTIONS(1717), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_catch] = ACTIONS(1715), + [anon_sym_return] = ACTIONS(1715), + [anon_sym_source] = ACTIONS(1715), + [anon_sym_source_DASHenv] = ACTIONS(1715), + [anon_sym_register] = ACTIONS(1715), + [anon_sym_hide] = ACTIONS(1715), + [anon_sym_hide_DASHenv] = ACTIONS(1715), + [anon_sym_overlay] = ACTIONS(1715), + [anon_sym_new] = ACTIONS(1715), + [anon_sym_as] = ACTIONS(1715), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1717), + [anon_sym_DOT_DOT2] = ACTIONS(1715), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1717), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1717), + [aux_sym__immediate_decimal_token2] = ACTIONS(1915), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1717), + [aux_sym__val_number_decimal_token1] = ACTIONS(1715), + [aux_sym__val_number_decimal_token2] = ACTIONS(1717), + [aux_sym__val_number_decimal_token3] = ACTIONS(1717), + [aux_sym__val_number_decimal_token4] = ACTIONS(1717), + [aux_sym__val_number_token1] = ACTIONS(1717), + [aux_sym__val_number_token2] = ACTIONS(1717), + [aux_sym__val_number_token3] = ACTIONS(1717), + [anon_sym_DQUOTE] = ACTIONS(1717), + [sym__str_single_quotes] = ACTIONS(1717), + [sym__str_back_ticks] = ACTIONS(1717), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1717), + [anon_sym_PLUS] = ACTIONS(1715), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1717), }, - [464] = { - [sym_comment] = STATE(464), - [anon_sym_export] = ACTIONS(2245), - [anon_sym_alias] = ACTIONS(2245), - [anon_sym_let] = ACTIONS(2245), - [anon_sym_let_DASHenv] = ACTIONS(2245), - [anon_sym_mut] = ACTIONS(2245), - [anon_sym_const] = ACTIONS(2245), - [aux_sym_cmd_identifier_token1] = ACTIONS(2245), - [aux_sym_cmd_identifier_token2] = ACTIONS(2245), - [aux_sym_cmd_identifier_token3] = ACTIONS(2245), - [aux_sym_cmd_identifier_token4] = ACTIONS(2245), - [aux_sym_cmd_identifier_token5] = ACTIONS(2245), - [aux_sym_cmd_identifier_token6] = ACTIONS(2245), - [aux_sym_cmd_identifier_token7] = ACTIONS(2245), - [aux_sym_cmd_identifier_token8] = ACTIONS(2245), - [aux_sym_cmd_identifier_token9] = ACTIONS(2245), - [aux_sym_cmd_identifier_token10] = ACTIONS(2245), - [aux_sym_cmd_identifier_token11] = ACTIONS(2245), - [aux_sym_cmd_identifier_token12] = ACTIONS(2245), - [aux_sym_cmd_identifier_token13] = ACTIONS(2245), - [aux_sym_cmd_identifier_token14] = ACTIONS(2245), - [aux_sym_cmd_identifier_token15] = ACTIONS(2245), - [aux_sym_cmd_identifier_token16] = ACTIONS(2245), - [aux_sym_cmd_identifier_token17] = ACTIONS(2245), - [aux_sym_cmd_identifier_token18] = ACTIONS(2245), - [aux_sym_cmd_identifier_token19] = ACTIONS(2245), - [aux_sym_cmd_identifier_token20] = ACTIONS(2245), - [aux_sym_cmd_identifier_token21] = ACTIONS(2245), - [aux_sym_cmd_identifier_token22] = ACTIONS(2245), - [aux_sym_cmd_identifier_token23] = ACTIONS(2245), - [aux_sym_cmd_identifier_token24] = ACTIONS(2245), - [aux_sym_cmd_identifier_token25] = ACTIONS(2245), - [aux_sym_cmd_identifier_token26] = ACTIONS(2245), - [aux_sym_cmd_identifier_token27] = ACTIONS(2245), - [aux_sym_cmd_identifier_token28] = ACTIONS(2245), - [aux_sym_cmd_identifier_token29] = ACTIONS(2245), - [aux_sym_cmd_identifier_token30] = ACTIONS(2245), - [aux_sym_cmd_identifier_token31] = ACTIONS(2245), - [aux_sym_cmd_identifier_token32] = ACTIONS(2245), - [aux_sym_cmd_identifier_token33] = ACTIONS(2245), - [aux_sym_cmd_identifier_token34] = ACTIONS(2245), - [aux_sym_cmd_identifier_token35] = ACTIONS(2245), - [aux_sym_cmd_identifier_token36] = ACTIONS(2245), - [anon_sym_true] = ACTIONS(2245), - [anon_sym_false] = ACTIONS(2245), - [anon_sym_null] = ACTIONS(2245), - [aux_sym_cmd_identifier_token38] = ACTIONS(2245), - [aux_sym_cmd_identifier_token39] = ACTIONS(2245), - [aux_sym_cmd_identifier_token40] = ACTIONS(2245), - [anon_sym_def] = ACTIONS(2245), - [anon_sym_export_DASHenv] = ACTIONS(2245), - [anon_sym_extern] = ACTIONS(2245), - [anon_sym_module] = ACTIONS(2245), - [anon_sym_use] = ACTIONS(2245), - [anon_sym_LPAREN] = ACTIONS(2245), - [anon_sym_DOLLAR] = ACTIONS(2245), - [anon_sym_error] = ACTIONS(2245), - [anon_sym_list] = ACTIONS(2245), - [anon_sym_DASH] = ACTIONS(2245), - [anon_sym_break] = ACTIONS(2245), - [anon_sym_continue] = ACTIONS(2245), - [anon_sym_for] = ACTIONS(2245), - [anon_sym_in] = ACTIONS(2245), - [anon_sym_loop] = ACTIONS(2245), - [anon_sym_make] = ACTIONS(2245), - [anon_sym_while] = ACTIONS(2245), - [anon_sym_do] = ACTIONS(2245), - [anon_sym_if] = ACTIONS(2245), - [anon_sym_else] = ACTIONS(2245), - [anon_sym_match] = ACTIONS(2245), - [anon_sym_RBRACE] = ACTIONS(2245), - [anon_sym_try] = ACTIONS(2245), - [anon_sym_catch] = ACTIONS(2245), - [anon_sym_return] = ACTIONS(2245), - [anon_sym_source] = ACTIONS(2245), - [anon_sym_source_DASHenv] = ACTIONS(2245), - [anon_sym_register] = ACTIONS(2245), - [anon_sym_hide] = ACTIONS(2245), - [anon_sym_hide_DASHenv] = ACTIONS(2245), - [anon_sym_overlay] = ACTIONS(2245), - [anon_sym_new] = ACTIONS(2245), - [anon_sym_as] = ACTIONS(2245), - [anon_sym_LPAREN2] = ACTIONS(2239), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2245), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2245), - [aux_sym__val_number_decimal_token1] = ACTIONS(2245), - [aux_sym__val_number_decimal_token2] = ACTIONS(2245), - [aux_sym__val_number_decimal_token3] = ACTIONS(2245), - [aux_sym__val_number_decimal_token4] = ACTIONS(2245), - [aux_sym__val_number_token1] = ACTIONS(2245), - [aux_sym__val_number_token2] = ACTIONS(2245), - [aux_sym__val_number_token3] = ACTIONS(2245), - [anon_sym_DQUOTE] = ACTIONS(2245), - [sym__str_single_quotes] = ACTIONS(2245), - [sym__str_back_ticks] = ACTIONS(2245), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2245), - [sym__entry_separator] = ACTIONS(2247), - [anon_sym_PLUS] = ACTIONS(2245), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2243), + [419] = { + [sym_expr_parenthesized] = STATE(4363), + [sym__spread_parenthesized] = STATE(4752), + [sym_val_range] = STATE(4754), + [sym__val_range] = STATE(7973), + [sym__val_range_with_end] = STATE(7533), + [sym__value] = STATE(4754), + [sym_val_nothing] = STATE(4718), + [sym_val_bool] = STATE(4461), + [sym__spread_variable] = STATE(4769), + [sym_val_variable] = STATE(4330), + [sym_val_number] = STATE(4718), + [sym__val_number_decimal] = STATE(3996), + [sym__val_number] = STATE(4796), + [sym_val_duration] = STATE(4718), + [sym_val_filesize] = STATE(4718), + [sym_val_binary] = STATE(4718), + [sym_val_string] = STATE(4718), + [sym__raw_str] = STATE(4414), + [sym__str_double_quotes] = STATE(4414), + [sym_val_interpolated] = STATE(4718), + [sym__inter_single_quotes] = STATE(4787), + [sym__inter_double_quotes] = STATE(4810), + [sym_val_list] = STATE(4718), + [sym__spread_list] = STATE(4752), + [sym_val_record] = STATE(4718), + [sym_val_table] = STATE(4718), + [sym_val_closure] = STATE(4718), + [sym__cmd_arg] = STATE(4880), + [sym_redirection] = STATE(4791), + [sym__flag] = STATE(4798), + [sym_short_flag] = STATE(4826), + [sym_long_flag] = STATE(4826), + [sym_unquoted] = STATE(4556), + [sym__unquoted_with_expr] = STATE(4807), + [sym__unquoted_anonymous_prefix] = STATE(7039), + [sym_comment] = STATE(419), + [anon_sym_true] = ACTIONS(1933), + [anon_sym_false] = ACTIONS(1933), + [anon_sym_null] = ACTIONS(1935), + [aux_sym_cmd_identifier_token38] = ACTIONS(1937), + [aux_sym_cmd_identifier_token39] = ACTIONS(1937), + [aux_sym_cmd_identifier_token40] = ACTIONS(1937), + [sym__newline] = ACTIONS(2186), + [sym__space] = ACTIONS(2188), + [anon_sym_SEMI] = ACTIONS(2186), + [anon_sym_PIPE] = ACTIONS(2186), + [anon_sym_err_GT_PIPE] = ACTIONS(2186), + [anon_sym_out_GT_PIPE] = ACTIONS(2186), + [anon_sym_e_GT_PIPE] = ACTIONS(2186), + [anon_sym_o_GT_PIPE] = ACTIONS(2186), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2186), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2186), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2186), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2186), + [anon_sym_LBRACK] = ACTIONS(1943), + [anon_sym_LPAREN] = ACTIONS(1945), + [anon_sym_RPAREN] = ACTIONS(2186), + [anon_sym_DOLLAR] = ACTIONS(1947), + [anon_sym_DASH_DASH] = ACTIONS(1949), + [anon_sym_DASH] = ACTIONS(1951), + [anon_sym_LBRACE] = ACTIONS(1953), + [anon_sym_DOT_DOT] = ACTIONS(1955), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1957), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_LT] = ACTIONS(1959), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1961), + [aux_sym__val_number_decimal_token1] = ACTIONS(1963), + [aux_sym__val_number_decimal_token2] = ACTIONS(1963), + [aux_sym__val_number_decimal_token3] = ACTIONS(1965), + [aux_sym__val_number_decimal_token4] = ACTIONS(1967), + [aux_sym__val_number_token1] = ACTIONS(1969), + [aux_sym__val_number_token2] = ACTIONS(1969), + [aux_sym__val_number_token3] = ACTIONS(1969), + [anon_sym_0b] = ACTIONS(1971), + [anon_sym_0o] = ACTIONS(1973), + [anon_sym_0x] = ACTIONS(1973), + [sym_val_date] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(1977), + [sym__str_single_quotes] = ACTIONS(1979), + [sym__str_back_ticks] = ACTIONS(1979), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1981), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1983), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1985), + [anon_sym_err_GT] = ACTIONS(1987), + [anon_sym_out_GT] = ACTIONS(1987), + [anon_sym_e_GT] = ACTIONS(1987), + [anon_sym_o_GT] = ACTIONS(1987), + [anon_sym_err_PLUSout_GT] = ACTIONS(1987), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1987), + [anon_sym_o_PLUSe_GT] = ACTIONS(1987), + [anon_sym_e_PLUSo_GT] = ACTIONS(1987), + [anon_sym_err_GT_GT] = ACTIONS(1987), + [anon_sym_out_GT_GT] = ACTIONS(1987), + [anon_sym_e_GT_GT] = ACTIONS(1987), + [anon_sym_o_GT_GT] = ACTIONS(1987), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1987), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1987), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1987), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1987), + [aux_sym_unquoted_token1] = ACTIONS(1989), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1991), }, - [465] = { - [sym_comment] = STATE(465), - [anon_sym_export] = ACTIONS(1022), - [anon_sym_alias] = ACTIONS(1022), - [anon_sym_let] = ACTIONS(1022), - [anon_sym_let_DASHenv] = ACTIONS(1022), - [anon_sym_mut] = ACTIONS(1022), - [anon_sym_const] = ACTIONS(1022), - [aux_sym_cmd_identifier_token1] = ACTIONS(1022), - [aux_sym_cmd_identifier_token2] = ACTIONS(1022), - [aux_sym_cmd_identifier_token3] = ACTIONS(1022), - [aux_sym_cmd_identifier_token4] = ACTIONS(1022), - [aux_sym_cmd_identifier_token5] = ACTIONS(1022), - [aux_sym_cmd_identifier_token6] = ACTIONS(1022), - [aux_sym_cmd_identifier_token7] = ACTIONS(1022), - [aux_sym_cmd_identifier_token8] = ACTIONS(1022), - [aux_sym_cmd_identifier_token9] = ACTIONS(1022), - [aux_sym_cmd_identifier_token10] = ACTIONS(1022), - [aux_sym_cmd_identifier_token11] = ACTIONS(1022), - [aux_sym_cmd_identifier_token12] = ACTIONS(1022), - [aux_sym_cmd_identifier_token13] = ACTIONS(1022), - [aux_sym_cmd_identifier_token14] = ACTIONS(1022), - [aux_sym_cmd_identifier_token15] = ACTIONS(1022), - [aux_sym_cmd_identifier_token16] = ACTIONS(1022), - [aux_sym_cmd_identifier_token17] = ACTIONS(1022), - [aux_sym_cmd_identifier_token18] = ACTIONS(1022), - [aux_sym_cmd_identifier_token19] = ACTIONS(1022), - [aux_sym_cmd_identifier_token20] = ACTIONS(1022), - [aux_sym_cmd_identifier_token21] = ACTIONS(1022), - [aux_sym_cmd_identifier_token22] = ACTIONS(1022), - [aux_sym_cmd_identifier_token23] = ACTIONS(1022), - [aux_sym_cmd_identifier_token24] = ACTIONS(1022), - [aux_sym_cmd_identifier_token25] = ACTIONS(1022), - [aux_sym_cmd_identifier_token26] = ACTIONS(1022), - [aux_sym_cmd_identifier_token27] = ACTIONS(1022), - [aux_sym_cmd_identifier_token28] = ACTIONS(1022), - [aux_sym_cmd_identifier_token29] = ACTIONS(1022), - [aux_sym_cmd_identifier_token30] = ACTIONS(1022), - [aux_sym_cmd_identifier_token31] = ACTIONS(1022), - [aux_sym_cmd_identifier_token32] = ACTIONS(1022), - [aux_sym_cmd_identifier_token33] = ACTIONS(1022), - [aux_sym_cmd_identifier_token34] = ACTIONS(1022), - [aux_sym_cmd_identifier_token35] = ACTIONS(1022), - [aux_sym_cmd_identifier_token36] = ACTIONS(1022), - [anon_sym_true] = ACTIONS(1022), - [anon_sym_false] = ACTIONS(1022), - [anon_sym_null] = ACTIONS(1022), - [aux_sym_cmd_identifier_token38] = ACTIONS(1022), - [aux_sym_cmd_identifier_token39] = ACTIONS(1022), - [aux_sym_cmd_identifier_token40] = ACTIONS(1022), - [anon_sym_def] = ACTIONS(1022), - [anon_sym_export_DASHenv] = ACTIONS(1022), - [anon_sym_extern] = ACTIONS(1022), - [anon_sym_module] = ACTIONS(1022), - [anon_sym_use] = ACTIONS(1022), - [anon_sym_LPAREN] = ACTIONS(1022), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_error] = ACTIONS(1022), - [anon_sym_list] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1022), - [anon_sym_break] = ACTIONS(1022), - [anon_sym_continue] = ACTIONS(1022), - [anon_sym_for] = ACTIONS(1022), - [anon_sym_in] = ACTIONS(1022), - [anon_sym_loop] = ACTIONS(1022), - [anon_sym_make] = ACTIONS(1022), - [anon_sym_while] = ACTIONS(1022), - [anon_sym_do] = ACTIONS(1022), - [anon_sym_if] = ACTIONS(1022), - [anon_sym_else] = ACTIONS(1022), - [anon_sym_match] = ACTIONS(1022), - [anon_sym_RBRACE] = ACTIONS(1022), - [anon_sym_try] = ACTIONS(1022), - [anon_sym_catch] = ACTIONS(1022), - [anon_sym_return] = ACTIONS(1022), - [anon_sym_source] = ACTIONS(1022), - [anon_sym_source_DASHenv] = ACTIONS(1022), - [anon_sym_register] = ACTIONS(1022), - [anon_sym_hide] = ACTIONS(1022), - [anon_sym_hide_DASHenv] = ACTIONS(1022), - [anon_sym_overlay] = ACTIONS(1022), - [anon_sym_new] = ACTIONS(1022), - [anon_sym_as] = ACTIONS(1022), - [anon_sym_QMARK2] = ACTIONS(2249), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1022), - [anon_sym_DOT] = ACTIONS(1022), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1022), - [aux_sym__val_number_decimal_token1] = ACTIONS(1022), - [aux_sym__val_number_decimal_token2] = ACTIONS(1022), - [aux_sym__val_number_decimal_token3] = ACTIONS(1022), - [aux_sym__val_number_decimal_token4] = ACTIONS(1022), - [aux_sym__val_number_token1] = ACTIONS(1022), - [aux_sym__val_number_token2] = ACTIONS(1022), - [aux_sym__val_number_token3] = ACTIONS(1022), - [anon_sym_DQUOTE] = ACTIONS(1022), - [sym__str_single_quotes] = ACTIONS(1022), - [sym__str_back_ticks] = ACTIONS(1022), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1022), - [sym__entry_separator] = ACTIONS(1024), - [anon_sym_PLUS] = ACTIONS(1022), - [anon_sym_POUND] = ACTIONS(3), + [420] = { + [sym_cell_path] = STATE(704), + [sym_path] = STATE(631), + [sym_comment] = STATE(420), + [aux_sym_cell_path_repeat1] = STATE(456), + [anon_sym_export] = ACTIONS(1854), + [anon_sym_alias] = ACTIONS(1854), + [anon_sym_let] = ACTIONS(1854), + [anon_sym_let_DASHenv] = ACTIONS(1854), + [anon_sym_mut] = ACTIONS(1854), + [anon_sym_const] = ACTIONS(1854), + [aux_sym_cmd_identifier_token1] = ACTIONS(1854), + [aux_sym_cmd_identifier_token2] = ACTIONS(1854), + [aux_sym_cmd_identifier_token3] = ACTIONS(1854), + [aux_sym_cmd_identifier_token4] = ACTIONS(1854), + [aux_sym_cmd_identifier_token5] = ACTIONS(1854), + [aux_sym_cmd_identifier_token6] = ACTIONS(1854), + [aux_sym_cmd_identifier_token7] = ACTIONS(1854), + [aux_sym_cmd_identifier_token8] = ACTIONS(1854), + [aux_sym_cmd_identifier_token9] = ACTIONS(1854), + [aux_sym_cmd_identifier_token10] = ACTIONS(1854), + [aux_sym_cmd_identifier_token11] = ACTIONS(1854), + [aux_sym_cmd_identifier_token12] = ACTIONS(1854), + [aux_sym_cmd_identifier_token13] = ACTIONS(1854), + [aux_sym_cmd_identifier_token14] = ACTIONS(1854), + [aux_sym_cmd_identifier_token15] = ACTIONS(1854), + [aux_sym_cmd_identifier_token16] = ACTIONS(1854), + [aux_sym_cmd_identifier_token17] = ACTIONS(1854), + [aux_sym_cmd_identifier_token18] = ACTIONS(1854), + [aux_sym_cmd_identifier_token19] = ACTIONS(1854), + [aux_sym_cmd_identifier_token20] = ACTIONS(1854), + [aux_sym_cmd_identifier_token21] = ACTIONS(1854), + [aux_sym_cmd_identifier_token22] = ACTIONS(1854), + [aux_sym_cmd_identifier_token23] = ACTIONS(1854), + [aux_sym_cmd_identifier_token24] = ACTIONS(1854), + [aux_sym_cmd_identifier_token25] = ACTIONS(1854), + [aux_sym_cmd_identifier_token26] = ACTIONS(1854), + [aux_sym_cmd_identifier_token27] = ACTIONS(1854), + [aux_sym_cmd_identifier_token28] = ACTIONS(1854), + [aux_sym_cmd_identifier_token29] = ACTIONS(1854), + [aux_sym_cmd_identifier_token30] = ACTIONS(1854), + [aux_sym_cmd_identifier_token31] = ACTIONS(1854), + [aux_sym_cmd_identifier_token32] = ACTIONS(1854), + [aux_sym_cmd_identifier_token33] = ACTIONS(1854), + [aux_sym_cmd_identifier_token34] = ACTIONS(1854), + [aux_sym_cmd_identifier_token35] = ACTIONS(1854), + [aux_sym_cmd_identifier_token36] = ACTIONS(1854), + [anon_sym_true] = ACTIONS(1858), + [anon_sym_false] = ACTIONS(1858), + [anon_sym_null] = ACTIONS(1858), + [aux_sym_cmd_identifier_token38] = ACTIONS(1854), + [aux_sym_cmd_identifier_token39] = ACTIONS(1858), + [aux_sym_cmd_identifier_token40] = ACTIONS(1858), + [anon_sym_def] = ACTIONS(1854), + [anon_sym_export_DASHenv] = ACTIONS(1854), + [anon_sym_extern] = ACTIONS(1854), + [anon_sym_module] = ACTIONS(1854), + [anon_sym_use] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(1858), + [anon_sym_DOLLAR] = ACTIONS(1858), + [anon_sym_error] = ACTIONS(1854), + [anon_sym_list] = ACTIONS(1854), + [anon_sym_DASH] = ACTIONS(1854), + [anon_sym_break] = ACTIONS(1854), + [anon_sym_continue] = ACTIONS(1854), + [anon_sym_for] = ACTIONS(1854), + [anon_sym_in] = ACTIONS(1854), + [anon_sym_loop] = ACTIONS(1854), + [anon_sym_make] = ACTIONS(1854), + [anon_sym_while] = ACTIONS(1854), + [anon_sym_do] = ACTIONS(1854), + [anon_sym_if] = ACTIONS(1854), + [anon_sym_else] = ACTIONS(1854), + [anon_sym_match] = ACTIONS(1854), + [anon_sym_RBRACE] = ACTIONS(1858), + [anon_sym_try] = ACTIONS(1854), + [anon_sym_catch] = ACTIONS(1854), + [anon_sym_return] = ACTIONS(1854), + [anon_sym_source] = ACTIONS(1854), + [anon_sym_source_DASHenv] = ACTIONS(1854), + [anon_sym_register] = ACTIONS(1854), + [anon_sym_hide] = ACTIONS(1854), + [anon_sym_hide_DASHenv] = ACTIONS(1854), + [anon_sym_overlay] = ACTIONS(1854), + [anon_sym_new] = ACTIONS(1854), + [anon_sym_as] = ACTIONS(1854), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1858), + [anon_sym_DOT] = ACTIONS(2177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1858), + [aux_sym__val_number_decimal_token1] = ACTIONS(1854), + [aux_sym__val_number_decimal_token2] = ACTIONS(1858), + [aux_sym__val_number_decimal_token3] = ACTIONS(1858), + [aux_sym__val_number_decimal_token4] = ACTIONS(1858), + [aux_sym__val_number_token1] = ACTIONS(1858), + [aux_sym__val_number_token2] = ACTIONS(1858), + [aux_sym__val_number_token3] = ACTIONS(1858), + [anon_sym_DQUOTE] = ACTIONS(1858), + [sym__str_single_quotes] = ACTIONS(1858), + [sym__str_back_ticks] = ACTIONS(1858), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1858), + [anon_sym_PLUS] = ACTIONS(1854), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1858), }, - [466] = { - [sym_comment] = STATE(466), - [anon_sym_export] = ACTIONS(1028), - [anon_sym_alias] = ACTIONS(1028), - [anon_sym_let] = ACTIONS(1028), - [anon_sym_let_DASHenv] = ACTIONS(1028), - [anon_sym_mut] = ACTIONS(1028), - [anon_sym_const] = ACTIONS(1028), - [aux_sym_cmd_identifier_token1] = ACTIONS(1028), - [aux_sym_cmd_identifier_token2] = ACTIONS(1028), - [aux_sym_cmd_identifier_token3] = ACTIONS(1028), - [aux_sym_cmd_identifier_token4] = ACTIONS(1028), - [aux_sym_cmd_identifier_token5] = ACTIONS(1028), - [aux_sym_cmd_identifier_token6] = ACTIONS(1028), - [aux_sym_cmd_identifier_token7] = ACTIONS(1028), - [aux_sym_cmd_identifier_token8] = ACTIONS(1028), - [aux_sym_cmd_identifier_token9] = ACTIONS(1028), - [aux_sym_cmd_identifier_token10] = ACTIONS(1028), - [aux_sym_cmd_identifier_token11] = ACTIONS(1028), - [aux_sym_cmd_identifier_token12] = ACTIONS(1028), - [aux_sym_cmd_identifier_token13] = ACTIONS(1028), - [aux_sym_cmd_identifier_token14] = ACTIONS(1028), - [aux_sym_cmd_identifier_token15] = ACTIONS(1028), - [aux_sym_cmd_identifier_token16] = ACTIONS(1028), - [aux_sym_cmd_identifier_token17] = ACTIONS(1028), - [aux_sym_cmd_identifier_token18] = ACTIONS(1028), - [aux_sym_cmd_identifier_token19] = ACTIONS(1028), - [aux_sym_cmd_identifier_token20] = ACTIONS(1028), - [aux_sym_cmd_identifier_token21] = ACTIONS(1028), - [aux_sym_cmd_identifier_token22] = ACTIONS(1028), - [aux_sym_cmd_identifier_token23] = ACTIONS(1028), - [aux_sym_cmd_identifier_token24] = ACTIONS(1028), - [aux_sym_cmd_identifier_token25] = ACTIONS(1028), - [aux_sym_cmd_identifier_token26] = ACTIONS(1028), - [aux_sym_cmd_identifier_token27] = ACTIONS(1028), - [aux_sym_cmd_identifier_token28] = ACTIONS(1028), - [aux_sym_cmd_identifier_token29] = ACTIONS(1028), - [aux_sym_cmd_identifier_token30] = ACTIONS(1028), - [aux_sym_cmd_identifier_token31] = ACTIONS(1028), - [aux_sym_cmd_identifier_token32] = ACTIONS(1028), - [aux_sym_cmd_identifier_token33] = ACTIONS(1028), - [aux_sym_cmd_identifier_token34] = ACTIONS(1028), - [aux_sym_cmd_identifier_token35] = ACTIONS(1028), - [aux_sym_cmd_identifier_token36] = ACTIONS(1028), - [anon_sym_true] = ACTIONS(1028), - [anon_sym_false] = ACTIONS(1028), - [anon_sym_null] = ACTIONS(1028), - [aux_sym_cmd_identifier_token38] = ACTIONS(1028), - [aux_sym_cmd_identifier_token39] = ACTIONS(1028), - [aux_sym_cmd_identifier_token40] = ACTIONS(1028), - [anon_sym_def] = ACTIONS(1028), - [anon_sym_export_DASHenv] = ACTIONS(1028), - [anon_sym_extern] = ACTIONS(1028), - [anon_sym_module] = ACTIONS(1028), - [anon_sym_use] = ACTIONS(1028), - [anon_sym_LPAREN] = ACTIONS(1028), - [anon_sym_DOLLAR] = ACTIONS(1028), - [anon_sym_error] = ACTIONS(1028), - [anon_sym_list] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1028), - [anon_sym_break] = ACTIONS(1028), - [anon_sym_continue] = ACTIONS(1028), - [anon_sym_for] = ACTIONS(1028), - [anon_sym_in] = ACTIONS(1028), - [anon_sym_loop] = ACTIONS(1028), - [anon_sym_make] = ACTIONS(1028), - [anon_sym_while] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1028), - [anon_sym_if] = ACTIONS(1028), - [anon_sym_else] = ACTIONS(1028), - [anon_sym_match] = ACTIONS(1028), - [anon_sym_RBRACE] = ACTIONS(1028), - [anon_sym_try] = ACTIONS(1028), - [anon_sym_catch] = ACTIONS(1028), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_source] = ACTIONS(1028), - [anon_sym_source_DASHenv] = ACTIONS(1028), - [anon_sym_register] = ACTIONS(1028), - [anon_sym_hide] = ACTIONS(1028), - [anon_sym_hide_DASHenv] = ACTIONS(1028), - [anon_sym_overlay] = ACTIONS(1028), - [anon_sym_new] = ACTIONS(1028), - [anon_sym_as] = ACTIONS(1028), - [anon_sym_QMARK2] = ACTIONS(2251), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1028), - [anon_sym_DOT] = ACTIONS(1028), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1028), - [aux_sym__val_number_decimal_token1] = ACTIONS(1028), - [aux_sym__val_number_decimal_token2] = ACTIONS(1028), - [aux_sym__val_number_decimal_token3] = ACTIONS(1028), - [aux_sym__val_number_decimal_token4] = ACTIONS(1028), - [aux_sym__val_number_token1] = ACTIONS(1028), - [aux_sym__val_number_token2] = ACTIONS(1028), - [aux_sym__val_number_token3] = ACTIONS(1028), - [anon_sym_DQUOTE] = ACTIONS(1028), - [sym__str_single_quotes] = ACTIONS(1028), - [sym__str_back_ticks] = ACTIONS(1028), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1028), - [sym__entry_separator] = ACTIONS(1030), - [anon_sym_PLUS] = ACTIONS(1028), - [anon_sym_POUND] = ACTIONS(3), + [421] = { + [sym_comment] = STATE(421), + [anon_sym_export] = ACTIONS(1769), + [anon_sym_alias] = ACTIONS(1769), + [anon_sym_let] = ACTIONS(1769), + [anon_sym_let_DASHenv] = ACTIONS(1769), + [anon_sym_mut] = ACTIONS(1769), + [anon_sym_const] = ACTIONS(1769), + [aux_sym_cmd_identifier_token1] = ACTIONS(1769), + [aux_sym_cmd_identifier_token2] = ACTIONS(1769), + [aux_sym_cmd_identifier_token3] = ACTIONS(1769), + [aux_sym_cmd_identifier_token4] = ACTIONS(1769), + [aux_sym_cmd_identifier_token5] = ACTIONS(1769), + [aux_sym_cmd_identifier_token6] = ACTIONS(1769), + [aux_sym_cmd_identifier_token7] = ACTIONS(1769), + [aux_sym_cmd_identifier_token8] = ACTIONS(1769), + [aux_sym_cmd_identifier_token9] = ACTIONS(1769), + [aux_sym_cmd_identifier_token10] = ACTIONS(1769), + [aux_sym_cmd_identifier_token11] = ACTIONS(1769), + [aux_sym_cmd_identifier_token12] = ACTIONS(1769), + [aux_sym_cmd_identifier_token13] = ACTIONS(1769), + [aux_sym_cmd_identifier_token14] = ACTIONS(1769), + [aux_sym_cmd_identifier_token15] = ACTIONS(1769), + [aux_sym_cmd_identifier_token16] = ACTIONS(1769), + [aux_sym_cmd_identifier_token17] = ACTIONS(1769), + [aux_sym_cmd_identifier_token18] = ACTIONS(1769), + [aux_sym_cmd_identifier_token19] = ACTIONS(1769), + [aux_sym_cmd_identifier_token20] = ACTIONS(1769), + [aux_sym_cmd_identifier_token21] = ACTIONS(1769), + [aux_sym_cmd_identifier_token22] = ACTIONS(1769), + [aux_sym_cmd_identifier_token23] = ACTIONS(1769), + [aux_sym_cmd_identifier_token24] = ACTIONS(1769), + [aux_sym_cmd_identifier_token25] = ACTIONS(1769), + [aux_sym_cmd_identifier_token26] = ACTIONS(1769), + [aux_sym_cmd_identifier_token27] = ACTIONS(1769), + [aux_sym_cmd_identifier_token28] = ACTIONS(1769), + [aux_sym_cmd_identifier_token29] = ACTIONS(1769), + [aux_sym_cmd_identifier_token30] = ACTIONS(1769), + [aux_sym_cmd_identifier_token31] = ACTIONS(1769), + [aux_sym_cmd_identifier_token32] = ACTIONS(1769), + [aux_sym_cmd_identifier_token33] = ACTIONS(1769), + [aux_sym_cmd_identifier_token34] = ACTIONS(1769), + [aux_sym_cmd_identifier_token35] = ACTIONS(1769), + [aux_sym_cmd_identifier_token36] = ACTIONS(1769), + [anon_sym_true] = ACTIONS(1771), + [anon_sym_false] = ACTIONS(1771), + [anon_sym_null] = ACTIONS(1771), + [aux_sym_cmd_identifier_token38] = ACTIONS(1769), + [aux_sym_cmd_identifier_token39] = ACTIONS(1771), + [aux_sym_cmd_identifier_token40] = ACTIONS(1771), + [anon_sym_def] = ACTIONS(1769), + [anon_sym_export_DASHenv] = ACTIONS(1769), + [anon_sym_extern] = ACTIONS(1769), + [anon_sym_module] = ACTIONS(1769), + [anon_sym_use] = ACTIONS(1769), + [anon_sym_LPAREN] = ACTIONS(1771), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_error] = ACTIONS(1769), + [anon_sym_list] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_break] = ACTIONS(1769), + [anon_sym_continue] = ACTIONS(1769), + [anon_sym_for] = ACTIONS(1769), + [anon_sym_in] = ACTIONS(1769), + [anon_sym_loop] = ACTIONS(1769), + [anon_sym_make] = ACTIONS(1769), + [anon_sym_while] = ACTIONS(1769), + [anon_sym_do] = ACTIONS(1769), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_else] = ACTIONS(1769), + [anon_sym_match] = ACTIONS(1769), + [anon_sym_RBRACE] = ACTIONS(1771), + [anon_sym_try] = ACTIONS(1769), + [anon_sym_catch] = ACTIONS(1769), + [anon_sym_return] = ACTIONS(1769), + [anon_sym_source] = ACTIONS(1769), + [anon_sym_source_DASHenv] = ACTIONS(1769), + [anon_sym_register] = ACTIONS(1769), + [anon_sym_hide] = ACTIONS(1769), + [anon_sym_hide_DASHenv] = ACTIONS(1769), + [anon_sym_overlay] = ACTIONS(1769), + [anon_sym_new] = ACTIONS(1769), + [anon_sym_as] = ACTIONS(1769), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1771), + [anon_sym_DOT_DOT2] = ACTIONS(1769), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1771), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1771), + [aux_sym__immediate_decimal_token2] = ACTIONS(2190), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1771), + [aux_sym__val_number_decimal_token1] = ACTIONS(1769), + [aux_sym__val_number_decimal_token2] = ACTIONS(1771), + [aux_sym__val_number_decimal_token3] = ACTIONS(1771), + [aux_sym__val_number_decimal_token4] = ACTIONS(1771), + [aux_sym__val_number_token1] = ACTIONS(1771), + [aux_sym__val_number_token2] = ACTIONS(1771), + [aux_sym__val_number_token3] = ACTIONS(1771), + [anon_sym_DQUOTE] = ACTIONS(1771), + [sym__str_single_quotes] = ACTIONS(1771), + [sym__str_back_ticks] = ACTIONS(1771), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1769), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1771), }, - [467] = { - [sym_comment] = STATE(467), - [anon_sym_export] = ACTIONS(1042), + [422] = { + [sym_cell_path] = STATE(658), + [sym_path] = STATE(631), + [sym_comment] = STATE(422), + [aux_sym_cell_path_repeat1] = STATE(456), + [anon_sym_export] = ACTIONS(1901), + [anon_sym_alias] = ACTIONS(1901), + [anon_sym_let] = ACTIONS(1901), + [anon_sym_let_DASHenv] = ACTIONS(1901), + [anon_sym_mut] = ACTIONS(1901), + [anon_sym_const] = ACTIONS(1901), + [aux_sym_cmd_identifier_token1] = ACTIONS(1901), + [aux_sym_cmd_identifier_token2] = ACTIONS(1901), + [aux_sym_cmd_identifier_token3] = ACTIONS(1901), + [aux_sym_cmd_identifier_token4] = ACTIONS(1901), + [aux_sym_cmd_identifier_token5] = ACTIONS(1901), + [aux_sym_cmd_identifier_token6] = ACTIONS(1901), + [aux_sym_cmd_identifier_token7] = ACTIONS(1901), + [aux_sym_cmd_identifier_token8] = ACTIONS(1901), + [aux_sym_cmd_identifier_token9] = ACTIONS(1901), + [aux_sym_cmd_identifier_token10] = ACTIONS(1901), + [aux_sym_cmd_identifier_token11] = ACTIONS(1901), + [aux_sym_cmd_identifier_token12] = ACTIONS(1901), + [aux_sym_cmd_identifier_token13] = ACTIONS(1901), + [aux_sym_cmd_identifier_token14] = ACTIONS(1901), + [aux_sym_cmd_identifier_token15] = ACTIONS(1901), + [aux_sym_cmd_identifier_token16] = ACTIONS(1901), + [aux_sym_cmd_identifier_token17] = ACTIONS(1901), + [aux_sym_cmd_identifier_token18] = ACTIONS(1901), + [aux_sym_cmd_identifier_token19] = ACTIONS(1901), + [aux_sym_cmd_identifier_token20] = ACTIONS(1901), + [aux_sym_cmd_identifier_token21] = ACTIONS(1901), + [aux_sym_cmd_identifier_token22] = ACTIONS(1901), + [aux_sym_cmd_identifier_token23] = ACTIONS(1901), + [aux_sym_cmd_identifier_token24] = ACTIONS(1901), + [aux_sym_cmd_identifier_token25] = ACTIONS(1901), + [aux_sym_cmd_identifier_token26] = ACTIONS(1901), + [aux_sym_cmd_identifier_token27] = ACTIONS(1901), + [aux_sym_cmd_identifier_token28] = ACTIONS(1901), + [aux_sym_cmd_identifier_token29] = ACTIONS(1901), + [aux_sym_cmd_identifier_token30] = ACTIONS(1901), + [aux_sym_cmd_identifier_token31] = ACTIONS(1901), + [aux_sym_cmd_identifier_token32] = ACTIONS(1901), + [aux_sym_cmd_identifier_token33] = ACTIONS(1901), + [aux_sym_cmd_identifier_token34] = ACTIONS(1901), + [aux_sym_cmd_identifier_token35] = ACTIONS(1901), + [aux_sym_cmd_identifier_token36] = ACTIONS(1901), + [anon_sym_true] = ACTIONS(1903), + [anon_sym_false] = ACTIONS(1903), + [anon_sym_null] = ACTIONS(1903), + [aux_sym_cmd_identifier_token38] = ACTIONS(1901), + [aux_sym_cmd_identifier_token39] = ACTIONS(1903), + [aux_sym_cmd_identifier_token40] = ACTIONS(1903), + [anon_sym_def] = ACTIONS(1901), + [anon_sym_export_DASHenv] = ACTIONS(1901), + [anon_sym_extern] = ACTIONS(1901), + [anon_sym_module] = ACTIONS(1901), + [anon_sym_use] = ACTIONS(1901), + [anon_sym_LPAREN] = ACTIONS(1903), + [anon_sym_DOLLAR] = ACTIONS(1903), + [anon_sym_error] = ACTIONS(1901), + [anon_sym_list] = ACTIONS(1901), + [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_break] = ACTIONS(1901), + [anon_sym_continue] = ACTIONS(1901), + [anon_sym_for] = ACTIONS(1901), + [anon_sym_in] = ACTIONS(1901), + [anon_sym_loop] = ACTIONS(1901), + [anon_sym_make] = ACTIONS(1901), + [anon_sym_while] = ACTIONS(1901), + [anon_sym_do] = ACTIONS(1901), + [anon_sym_if] = ACTIONS(1901), + [anon_sym_else] = ACTIONS(1901), + [anon_sym_match] = ACTIONS(1901), + [anon_sym_RBRACE] = ACTIONS(1903), + [anon_sym_try] = ACTIONS(1901), + [anon_sym_catch] = ACTIONS(1901), + [anon_sym_return] = ACTIONS(1901), + [anon_sym_source] = ACTIONS(1901), + [anon_sym_source_DASHenv] = ACTIONS(1901), + [anon_sym_register] = ACTIONS(1901), + [anon_sym_hide] = ACTIONS(1901), + [anon_sym_hide_DASHenv] = ACTIONS(1901), + [anon_sym_overlay] = ACTIONS(1901), + [anon_sym_new] = ACTIONS(1901), + [anon_sym_as] = ACTIONS(1901), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1903), + [anon_sym_DOT] = ACTIONS(2177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1903), + [aux_sym__val_number_decimal_token1] = ACTIONS(1901), + [aux_sym__val_number_decimal_token2] = ACTIONS(1903), + [aux_sym__val_number_decimal_token3] = ACTIONS(1903), + [aux_sym__val_number_decimal_token4] = ACTIONS(1903), + [aux_sym__val_number_token1] = ACTIONS(1903), + [aux_sym__val_number_token2] = ACTIONS(1903), + [aux_sym__val_number_token3] = ACTIONS(1903), + [anon_sym_DQUOTE] = ACTIONS(1903), + [sym__str_single_quotes] = ACTIONS(1903), + [sym__str_back_ticks] = ACTIONS(1903), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1903), + [anon_sym_PLUS] = ACTIONS(1901), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1903), + }, + [423] = { + [sym_comment] = STATE(423), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_alias] = ACTIONS(1074), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_let_DASHenv] = ACTIONS(1074), + [anon_sym_mut] = ACTIONS(1074), + [anon_sym_const] = ACTIONS(1074), + [aux_sym_cmd_identifier_token1] = ACTIONS(1074), + [aux_sym_cmd_identifier_token2] = ACTIONS(1074), + [aux_sym_cmd_identifier_token3] = ACTIONS(1074), + [aux_sym_cmd_identifier_token4] = ACTIONS(1074), + [aux_sym_cmd_identifier_token5] = ACTIONS(1074), + [aux_sym_cmd_identifier_token6] = ACTIONS(1074), + [aux_sym_cmd_identifier_token7] = ACTIONS(1074), + [aux_sym_cmd_identifier_token8] = ACTIONS(1074), + [aux_sym_cmd_identifier_token9] = ACTIONS(1074), + [aux_sym_cmd_identifier_token10] = ACTIONS(1074), + [aux_sym_cmd_identifier_token11] = ACTIONS(1074), + [aux_sym_cmd_identifier_token12] = ACTIONS(1074), + [aux_sym_cmd_identifier_token13] = ACTIONS(1074), + [aux_sym_cmd_identifier_token14] = ACTIONS(1074), + [aux_sym_cmd_identifier_token15] = ACTIONS(1074), + [aux_sym_cmd_identifier_token16] = ACTIONS(1074), + [aux_sym_cmd_identifier_token17] = ACTIONS(1074), + [aux_sym_cmd_identifier_token18] = ACTIONS(1074), + [aux_sym_cmd_identifier_token19] = ACTIONS(1074), + [aux_sym_cmd_identifier_token20] = ACTIONS(1074), + [aux_sym_cmd_identifier_token21] = ACTIONS(1074), + [aux_sym_cmd_identifier_token22] = ACTIONS(1074), + [aux_sym_cmd_identifier_token23] = ACTIONS(1074), + [aux_sym_cmd_identifier_token24] = ACTIONS(1074), + [aux_sym_cmd_identifier_token25] = ACTIONS(1074), + [aux_sym_cmd_identifier_token26] = ACTIONS(1074), + [aux_sym_cmd_identifier_token27] = ACTIONS(1074), + [aux_sym_cmd_identifier_token28] = ACTIONS(1074), + [aux_sym_cmd_identifier_token29] = ACTIONS(1074), + [aux_sym_cmd_identifier_token30] = ACTIONS(1074), + [aux_sym_cmd_identifier_token31] = ACTIONS(1074), + [aux_sym_cmd_identifier_token32] = ACTIONS(1074), + [aux_sym_cmd_identifier_token33] = ACTIONS(1074), + [aux_sym_cmd_identifier_token34] = ACTIONS(1074), + [aux_sym_cmd_identifier_token35] = ACTIONS(1074), + [aux_sym_cmd_identifier_token36] = ACTIONS(1074), + [anon_sym_true] = ACTIONS(1076), + [anon_sym_false] = ACTIONS(1076), + [anon_sym_null] = ACTIONS(1076), + [aux_sym_cmd_identifier_token38] = ACTIONS(1074), + [aux_sym_cmd_identifier_token39] = ACTIONS(1076), + [aux_sym_cmd_identifier_token40] = ACTIONS(1076), + [anon_sym_def] = ACTIONS(1074), + [anon_sym_export_DASHenv] = ACTIONS(1074), + [anon_sym_extern] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_use] = ACTIONS(1074), + [anon_sym_LPAREN] = ACTIONS(1076), + [anon_sym_DOLLAR] = ACTIONS(1076), + [anon_sym_error] = ACTIONS(1074), + [anon_sym_list] = ACTIONS(1074), + [anon_sym_DASH] = ACTIONS(1074), + [anon_sym_break] = ACTIONS(1074), + [anon_sym_continue] = ACTIONS(1074), + [anon_sym_for] = ACTIONS(1074), + [anon_sym_in] = ACTIONS(1074), + [anon_sym_loop] = ACTIONS(1074), + [anon_sym_make] = ACTIONS(1074), + [anon_sym_while] = ACTIONS(1074), + [anon_sym_do] = ACTIONS(1074), + [anon_sym_if] = ACTIONS(1074), + [anon_sym_else] = ACTIONS(1074), + [anon_sym_match] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(1076), + [anon_sym_try] = ACTIONS(1074), + [anon_sym_catch] = ACTIONS(1074), + [anon_sym_return] = ACTIONS(1074), + [anon_sym_source] = ACTIONS(1074), + [anon_sym_source_DASHenv] = ACTIONS(1074), + [anon_sym_register] = ACTIONS(1074), + [anon_sym_hide] = ACTIONS(1074), + [anon_sym_hide_DASHenv] = ACTIONS(1074), + [anon_sym_overlay] = ACTIONS(1074), + [anon_sym_new] = ACTIONS(1074), + [anon_sym_as] = ACTIONS(1074), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1076), + [anon_sym_DOT_DOT2] = ACTIONS(1074), + [anon_sym_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1076), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1076), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1076), + [aux_sym__val_number_decimal_token1] = ACTIONS(1074), + [aux_sym__val_number_decimal_token2] = ACTIONS(1076), + [aux_sym__val_number_decimal_token3] = ACTIONS(1076), + [aux_sym__val_number_decimal_token4] = ACTIONS(1076), + [aux_sym__val_number_token1] = ACTIONS(1076), + [aux_sym__val_number_token2] = ACTIONS(1076), + [aux_sym__val_number_token3] = ACTIONS(1076), + [anon_sym_DQUOTE] = ACTIONS(1076), + [sym__str_single_quotes] = ACTIONS(1076), + [sym__str_back_ticks] = ACTIONS(1076), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1076), + [anon_sym_PLUS] = ACTIONS(1074), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1076), + }, + [424] = { + [sym_cell_path] = STATE(632), + [sym_path] = STATE(631), + [sym_comment] = STATE(424), + [aux_sym_cell_path_repeat1] = STATE(456), + [anon_sym_export] = ACTIONS(1909), + [anon_sym_alias] = ACTIONS(1909), + [anon_sym_let] = ACTIONS(1909), + [anon_sym_let_DASHenv] = ACTIONS(1909), + [anon_sym_mut] = ACTIONS(1909), + [anon_sym_const] = ACTIONS(1909), + [aux_sym_cmd_identifier_token1] = ACTIONS(1909), + [aux_sym_cmd_identifier_token2] = ACTIONS(1909), + [aux_sym_cmd_identifier_token3] = ACTIONS(1909), + [aux_sym_cmd_identifier_token4] = ACTIONS(1909), + [aux_sym_cmd_identifier_token5] = ACTIONS(1909), + [aux_sym_cmd_identifier_token6] = ACTIONS(1909), + [aux_sym_cmd_identifier_token7] = ACTIONS(1909), + [aux_sym_cmd_identifier_token8] = ACTIONS(1909), + [aux_sym_cmd_identifier_token9] = ACTIONS(1909), + [aux_sym_cmd_identifier_token10] = ACTIONS(1909), + [aux_sym_cmd_identifier_token11] = ACTIONS(1909), + [aux_sym_cmd_identifier_token12] = ACTIONS(1909), + [aux_sym_cmd_identifier_token13] = ACTIONS(1909), + [aux_sym_cmd_identifier_token14] = ACTIONS(1909), + [aux_sym_cmd_identifier_token15] = ACTIONS(1909), + [aux_sym_cmd_identifier_token16] = ACTIONS(1909), + [aux_sym_cmd_identifier_token17] = ACTIONS(1909), + [aux_sym_cmd_identifier_token18] = ACTIONS(1909), + [aux_sym_cmd_identifier_token19] = ACTIONS(1909), + [aux_sym_cmd_identifier_token20] = ACTIONS(1909), + [aux_sym_cmd_identifier_token21] = ACTIONS(1909), + [aux_sym_cmd_identifier_token22] = ACTIONS(1909), + [aux_sym_cmd_identifier_token23] = ACTIONS(1909), + [aux_sym_cmd_identifier_token24] = ACTIONS(1909), + [aux_sym_cmd_identifier_token25] = ACTIONS(1909), + [aux_sym_cmd_identifier_token26] = ACTIONS(1909), + [aux_sym_cmd_identifier_token27] = ACTIONS(1909), + [aux_sym_cmd_identifier_token28] = ACTIONS(1909), + [aux_sym_cmd_identifier_token29] = ACTIONS(1909), + [aux_sym_cmd_identifier_token30] = ACTIONS(1909), + [aux_sym_cmd_identifier_token31] = ACTIONS(1909), + [aux_sym_cmd_identifier_token32] = ACTIONS(1909), + [aux_sym_cmd_identifier_token33] = ACTIONS(1909), + [aux_sym_cmd_identifier_token34] = ACTIONS(1909), + [aux_sym_cmd_identifier_token35] = ACTIONS(1909), + [aux_sym_cmd_identifier_token36] = ACTIONS(1909), + [anon_sym_true] = ACTIONS(1911), + [anon_sym_false] = ACTIONS(1911), + [anon_sym_null] = ACTIONS(1911), + [aux_sym_cmd_identifier_token38] = ACTIONS(1909), + [aux_sym_cmd_identifier_token39] = ACTIONS(1911), + [aux_sym_cmd_identifier_token40] = ACTIONS(1911), + [anon_sym_def] = ACTIONS(1909), + [anon_sym_export_DASHenv] = ACTIONS(1909), + [anon_sym_extern] = ACTIONS(1909), + [anon_sym_module] = ACTIONS(1909), + [anon_sym_use] = ACTIONS(1909), + [anon_sym_LPAREN] = ACTIONS(1911), + [anon_sym_DOLLAR] = ACTIONS(1911), + [anon_sym_error] = ACTIONS(1909), + [anon_sym_list] = ACTIONS(1909), + [anon_sym_DASH] = ACTIONS(1909), + [anon_sym_break] = ACTIONS(1909), + [anon_sym_continue] = ACTIONS(1909), + [anon_sym_for] = ACTIONS(1909), + [anon_sym_in] = ACTIONS(1909), + [anon_sym_loop] = ACTIONS(1909), + [anon_sym_make] = ACTIONS(1909), + [anon_sym_while] = ACTIONS(1909), + [anon_sym_do] = ACTIONS(1909), + [anon_sym_if] = ACTIONS(1909), + [anon_sym_else] = ACTIONS(1909), + [anon_sym_match] = ACTIONS(1909), + [anon_sym_RBRACE] = ACTIONS(1911), + [anon_sym_try] = ACTIONS(1909), + [anon_sym_catch] = ACTIONS(1909), + [anon_sym_return] = ACTIONS(1909), + [anon_sym_source] = ACTIONS(1909), + [anon_sym_source_DASHenv] = ACTIONS(1909), + [anon_sym_register] = ACTIONS(1909), + [anon_sym_hide] = ACTIONS(1909), + [anon_sym_hide_DASHenv] = ACTIONS(1909), + [anon_sym_overlay] = ACTIONS(1909), + [anon_sym_new] = ACTIONS(1909), + [anon_sym_as] = ACTIONS(1909), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1911), + [anon_sym_DOT] = ACTIONS(2177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1911), + [aux_sym__val_number_decimal_token1] = ACTIONS(1909), + [aux_sym__val_number_decimal_token2] = ACTIONS(1911), + [aux_sym__val_number_decimal_token3] = ACTIONS(1911), + [aux_sym__val_number_decimal_token4] = ACTIONS(1911), + [aux_sym__val_number_token1] = ACTIONS(1911), + [aux_sym__val_number_token2] = ACTIONS(1911), + [aux_sym__val_number_token3] = ACTIONS(1911), + [anon_sym_DQUOTE] = ACTIONS(1911), + [sym__str_single_quotes] = ACTIONS(1911), + [sym__str_back_ticks] = ACTIONS(1911), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1911), + [anon_sym_PLUS] = ACTIONS(1909), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1911), + }, + [425] = { + [sym_comment] = STATE(425), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_alias] = ACTIONS(1048), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_let_DASHenv] = ACTIONS(1048), + [anon_sym_mut] = ACTIONS(1048), + [anon_sym_const] = ACTIONS(1048), + [aux_sym_cmd_identifier_token1] = ACTIONS(1048), + [aux_sym_cmd_identifier_token2] = ACTIONS(1048), + [aux_sym_cmd_identifier_token3] = ACTIONS(1048), + [aux_sym_cmd_identifier_token4] = ACTIONS(1048), + [aux_sym_cmd_identifier_token5] = ACTIONS(1048), + [aux_sym_cmd_identifier_token6] = ACTIONS(1048), + [aux_sym_cmd_identifier_token7] = ACTIONS(1048), + [aux_sym_cmd_identifier_token8] = ACTIONS(1048), + [aux_sym_cmd_identifier_token9] = ACTIONS(1048), + [aux_sym_cmd_identifier_token10] = ACTIONS(1048), + [aux_sym_cmd_identifier_token11] = ACTIONS(1048), + [aux_sym_cmd_identifier_token12] = ACTIONS(1048), + [aux_sym_cmd_identifier_token13] = ACTIONS(1048), + [aux_sym_cmd_identifier_token14] = ACTIONS(1048), + [aux_sym_cmd_identifier_token15] = ACTIONS(1048), + [aux_sym_cmd_identifier_token16] = ACTIONS(1048), + [aux_sym_cmd_identifier_token17] = ACTIONS(1048), + [aux_sym_cmd_identifier_token18] = ACTIONS(1048), + [aux_sym_cmd_identifier_token19] = ACTIONS(1048), + [aux_sym_cmd_identifier_token20] = ACTIONS(1048), + [aux_sym_cmd_identifier_token21] = ACTIONS(1048), + [aux_sym_cmd_identifier_token22] = ACTIONS(1048), + [aux_sym_cmd_identifier_token23] = ACTIONS(1048), + [aux_sym_cmd_identifier_token24] = ACTIONS(1048), + [aux_sym_cmd_identifier_token25] = ACTIONS(1048), + [aux_sym_cmd_identifier_token26] = ACTIONS(1048), + [aux_sym_cmd_identifier_token27] = ACTIONS(1048), + [aux_sym_cmd_identifier_token28] = ACTIONS(1048), + [aux_sym_cmd_identifier_token29] = ACTIONS(1048), + [aux_sym_cmd_identifier_token30] = ACTIONS(1048), + [aux_sym_cmd_identifier_token31] = ACTIONS(1048), + [aux_sym_cmd_identifier_token32] = ACTIONS(1048), + [aux_sym_cmd_identifier_token33] = ACTIONS(1048), + [aux_sym_cmd_identifier_token34] = ACTIONS(1048), + [aux_sym_cmd_identifier_token35] = ACTIONS(1048), + [aux_sym_cmd_identifier_token36] = ACTIONS(1048), + [anon_sym_true] = ACTIONS(1050), + [anon_sym_false] = ACTIONS(1050), + [anon_sym_null] = ACTIONS(1050), + [aux_sym_cmd_identifier_token38] = ACTIONS(1048), + [aux_sym_cmd_identifier_token39] = ACTIONS(1050), + [aux_sym_cmd_identifier_token40] = ACTIONS(1050), + [anon_sym_def] = ACTIONS(1048), + [anon_sym_export_DASHenv] = ACTIONS(1048), + [anon_sym_extern] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_use] = ACTIONS(1048), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_COMMA] = ACTIONS(1050), + [anon_sym_DOLLAR] = ACTIONS(1050), + [anon_sym_error] = ACTIONS(1048), + [anon_sym_list] = ACTIONS(1048), + [anon_sym_DASH] = ACTIONS(1048), + [anon_sym_break] = ACTIONS(1048), + [anon_sym_continue] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1048), + [anon_sym_in] = ACTIONS(1048), + [anon_sym_loop] = ACTIONS(1048), + [anon_sym_make] = ACTIONS(1048), + [anon_sym_while] = ACTIONS(1048), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_if] = ACTIONS(1048), + [anon_sym_else] = ACTIONS(1048), + [anon_sym_match] = ACTIONS(1048), + [anon_sym_RBRACE] = ACTIONS(1050), + [anon_sym_try] = ACTIONS(1048), + [anon_sym_catch] = ACTIONS(1048), + [anon_sym_return] = ACTIONS(1048), + [anon_sym_source] = ACTIONS(1048), + [anon_sym_source_DASHenv] = ACTIONS(1048), + [anon_sym_register] = ACTIONS(1048), + [anon_sym_hide] = ACTIONS(1048), + [anon_sym_hide_DASHenv] = ACTIONS(1048), + [anon_sym_overlay] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1048), + [anon_sym_as] = ACTIONS(1048), + [anon_sym_QMARK2] = ACTIONS(2192), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1050), + [anon_sym_DOT] = ACTIONS(1048), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1050), + [aux_sym__val_number_decimal_token1] = ACTIONS(1048), + [aux_sym__val_number_decimal_token2] = ACTIONS(1050), + [aux_sym__val_number_decimal_token3] = ACTIONS(1050), + [aux_sym__val_number_decimal_token4] = ACTIONS(1050), + [aux_sym__val_number_token1] = ACTIONS(1050), + [aux_sym__val_number_token2] = ACTIONS(1050), + [aux_sym__val_number_token3] = ACTIONS(1050), + [anon_sym_DQUOTE] = ACTIONS(1050), + [sym__str_single_quotes] = ACTIONS(1050), + [sym__str_back_ticks] = ACTIONS(1050), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1050), + [aux_sym_record_entry_token1] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1048), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1050), + }, + [426] = { + [sym_cell_path] = STATE(706), + [sym_path] = STATE(631), + [sym_comment] = STATE(426), + [aux_sym_cell_path_repeat1] = STATE(456), + [anon_sym_export] = ACTIONS(2063), + [anon_sym_alias] = ACTIONS(2063), + [anon_sym_let] = ACTIONS(2063), + [anon_sym_let_DASHenv] = ACTIONS(2063), + [anon_sym_mut] = ACTIONS(2063), + [anon_sym_const] = ACTIONS(2063), + [aux_sym_cmd_identifier_token1] = ACTIONS(2063), + [aux_sym_cmd_identifier_token2] = ACTIONS(2063), + [aux_sym_cmd_identifier_token3] = ACTIONS(2063), + [aux_sym_cmd_identifier_token4] = ACTIONS(2063), + [aux_sym_cmd_identifier_token5] = ACTIONS(2063), + [aux_sym_cmd_identifier_token6] = ACTIONS(2063), + [aux_sym_cmd_identifier_token7] = ACTIONS(2063), + [aux_sym_cmd_identifier_token8] = ACTIONS(2063), + [aux_sym_cmd_identifier_token9] = ACTIONS(2063), + [aux_sym_cmd_identifier_token10] = ACTIONS(2063), + [aux_sym_cmd_identifier_token11] = ACTIONS(2063), + [aux_sym_cmd_identifier_token12] = ACTIONS(2063), + [aux_sym_cmd_identifier_token13] = ACTIONS(2063), + [aux_sym_cmd_identifier_token14] = ACTIONS(2063), + [aux_sym_cmd_identifier_token15] = ACTIONS(2063), + [aux_sym_cmd_identifier_token16] = ACTIONS(2063), + [aux_sym_cmd_identifier_token17] = ACTIONS(2063), + [aux_sym_cmd_identifier_token18] = ACTIONS(2063), + [aux_sym_cmd_identifier_token19] = ACTIONS(2063), + [aux_sym_cmd_identifier_token20] = ACTIONS(2063), + [aux_sym_cmd_identifier_token21] = ACTIONS(2063), + [aux_sym_cmd_identifier_token22] = ACTIONS(2063), + [aux_sym_cmd_identifier_token23] = ACTIONS(2063), + [aux_sym_cmd_identifier_token24] = ACTIONS(2063), + [aux_sym_cmd_identifier_token25] = ACTIONS(2063), + [aux_sym_cmd_identifier_token26] = ACTIONS(2063), + [aux_sym_cmd_identifier_token27] = ACTIONS(2063), + [aux_sym_cmd_identifier_token28] = ACTIONS(2063), + [aux_sym_cmd_identifier_token29] = ACTIONS(2063), + [aux_sym_cmd_identifier_token30] = ACTIONS(2063), + [aux_sym_cmd_identifier_token31] = ACTIONS(2063), + [aux_sym_cmd_identifier_token32] = ACTIONS(2063), + [aux_sym_cmd_identifier_token33] = ACTIONS(2063), + [aux_sym_cmd_identifier_token34] = ACTIONS(2063), + [aux_sym_cmd_identifier_token35] = ACTIONS(2063), + [aux_sym_cmd_identifier_token36] = ACTIONS(2063), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token38] = ACTIONS(2063), + [aux_sym_cmd_identifier_token39] = ACTIONS(2065), + [aux_sym_cmd_identifier_token40] = ACTIONS(2065), + [anon_sym_def] = ACTIONS(2063), + [anon_sym_export_DASHenv] = ACTIONS(2063), + [anon_sym_extern] = ACTIONS(2063), + [anon_sym_module] = ACTIONS(2063), + [anon_sym_use] = ACTIONS(2063), + [anon_sym_LPAREN] = ACTIONS(2065), + [anon_sym_DOLLAR] = ACTIONS(2065), + [anon_sym_error] = ACTIONS(2063), + [anon_sym_list] = ACTIONS(2063), + [anon_sym_DASH] = ACTIONS(2063), + [anon_sym_break] = ACTIONS(2063), + [anon_sym_continue] = ACTIONS(2063), + [anon_sym_for] = ACTIONS(2063), + [anon_sym_in] = ACTIONS(2063), + [anon_sym_loop] = ACTIONS(2063), + [anon_sym_make] = ACTIONS(2063), + [anon_sym_while] = ACTIONS(2063), + [anon_sym_do] = ACTIONS(2063), + [anon_sym_if] = ACTIONS(2063), + [anon_sym_else] = ACTIONS(2063), + [anon_sym_match] = ACTIONS(2063), + [anon_sym_RBRACE] = ACTIONS(2065), + [anon_sym_try] = ACTIONS(2063), + [anon_sym_catch] = ACTIONS(2063), + [anon_sym_return] = ACTIONS(2063), + [anon_sym_source] = ACTIONS(2063), + [anon_sym_source_DASHenv] = ACTIONS(2063), + [anon_sym_register] = ACTIONS(2063), + [anon_sym_hide] = ACTIONS(2063), + [anon_sym_hide_DASHenv] = ACTIONS(2063), + [anon_sym_overlay] = ACTIONS(2063), + [anon_sym_new] = ACTIONS(2063), + [anon_sym_as] = ACTIONS(2063), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2065), + [anon_sym_DOT] = ACTIONS(2177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2065), + [aux_sym__val_number_decimal_token1] = ACTIONS(2063), + [aux_sym__val_number_decimal_token2] = ACTIONS(2065), + [aux_sym__val_number_decimal_token3] = ACTIONS(2065), + [aux_sym__val_number_decimal_token4] = ACTIONS(2065), + [aux_sym__val_number_token1] = ACTIONS(2065), + [aux_sym__val_number_token2] = ACTIONS(2065), + [aux_sym__val_number_token3] = ACTIONS(2065), + [anon_sym_DQUOTE] = ACTIONS(2065), + [sym__str_single_quotes] = ACTIONS(2065), + [sym__str_back_ticks] = ACTIONS(2065), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2065), + [anon_sym_PLUS] = ACTIONS(2063), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2065), + }, + [427] = { + [sym_comment] = STATE(427), + [anon_sym_export] = ACTIONS(1042), [anon_sym_alias] = ACTIONS(1042), [anon_sym_let] = ACTIONS(1042), [anon_sym_let_DASHenv] = ACTIONS(1042), @@ -128264,19 +125600,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(1042), [aux_sym_cmd_identifier_token35] = ACTIONS(1042), [aux_sym_cmd_identifier_token36] = ACTIONS(1042), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_null] = ACTIONS(1042), + [anon_sym_true] = ACTIONS(1044), + [anon_sym_false] = ACTIONS(1044), + [anon_sym_null] = ACTIONS(1044), [aux_sym_cmd_identifier_token38] = ACTIONS(1042), - [aux_sym_cmd_identifier_token39] = ACTIONS(1042), - [aux_sym_cmd_identifier_token40] = ACTIONS(1042), + [aux_sym_cmd_identifier_token39] = ACTIONS(1044), + [aux_sym_cmd_identifier_token40] = ACTIONS(1044), [anon_sym_def] = ACTIONS(1042), [anon_sym_export_DASHenv] = ACTIONS(1042), [anon_sym_extern] = ACTIONS(1042), [anon_sym_module] = ACTIONS(1042), [anon_sym_use] = ACTIONS(1042), - [anon_sym_LPAREN] = ACTIONS(1042), - [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_LPAREN] = ACTIONS(1044), + [anon_sym_COMMA] = ACTIONS(1044), + [anon_sym_DOLLAR] = ACTIONS(1044), [anon_sym_error] = ACTIONS(1042), [anon_sym_list] = ACTIONS(1042), [anon_sym_DASH] = ACTIONS(1042), @@ -128291,7 +125628,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1042), [anon_sym_else] = ACTIONS(1042), [anon_sym_match] = ACTIONS(1042), - [anon_sym_RBRACE] = ACTIONS(1042), + [anon_sym_RBRACE] = ACTIONS(1044), [anon_sym_try] = ACTIONS(1042), [anon_sym_catch] = ACTIONS(1042), [anon_sym_return] = ACTIONS(1042), @@ -128303,2577 +125640,1172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(1042), [anon_sym_new] = ACTIONS(1042), [anon_sym_as] = ACTIONS(1042), - [anon_sym_QMARK2] = ACTIONS(1042), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1042), + [anon_sym_QMARK2] = ACTIONS(2194), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1044), [anon_sym_DOT] = ACTIONS(1042), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1042), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1044), [aux_sym__val_number_decimal_token1] = ACTIONS(1042), - [aux_sym__val_number_decimal_token2] = ACTIONS(1042), - [aux_sym__val_number_decimal_token3] = ACTIONS(1042), - [aux_sym__val_number_decimal_token4] = ACTIONS(1042), - [aux_sym__val_number_token1] = ACTIONS(1042), - [aux_sym__val_number_token2] = ACTIONS(1042), - [aux_sym__val_number_token3] = ACTIONS(1042), - [anon_sym_DQUOTE] = ACTIONS(1042), - [sym__str_single_quotes] = ACTIONS(1042), - [sym__str_back_ticks] = ACTIONS(1042), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1042), - [sym__entry_separator] = ACTIONS(1044), + [aux_sym__val_number_decimal_token2] = ACTIONS(1044), + [aux_sym__val_number_decimal_token3] = ACTIONS(1044), + [aux_sym__val_number_decimal_token4] = ACTIONS(1044), + [aux_sym__val_number_token1] = ACTIONS(1044), + [aux_sym__val_number_token2] = ACTIONS(1044), + [aux_sym__val_number_token3] = ACTIONS(1044), + [anon_sym_DQUOTE] = ACTIONS(1044), + [sym__str_single_quotes] = ACTIONS(1044), + [sym__str_back_ticks] = ACTIONS(1044), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1044), + [aux_sym_record_entry_token1] = ACTIONS(1044), [anon_sym_PLUS] = ACTIONS(1042), - [anon_sym_POUND] = ACTIONS(3), - }, - [468] = { - [sym_comment] = STATE(468), - [anon_sym_export] = ACTIONS(1038), - [anon_sym_alias] = ACTIONS(1038), - [anon_sym_let] = ACTIONS(1038), - [anon_sym_let_DASHenv] = ACTIONS(1038), - [anon_sym_mut] = ACTIONS(1038), - [anon_sym_const] = ACTIONS(1038), - [aux_sym_cmd_identifier_token1] = ACTIONS(1038), - [aux_sym_cmd_identifier_token2] = ACTIONS(1038), - [aux_sym_cmd_identifier_token3] = ACTIONS(1038), - [aux_sym_cmd_identifier_token4] = ACTIONS(1038), - [aux_sym_cmd_identifier_token5] = ACTIONS(1038), - [aux_sym_cmd_identifier_token6] = ACTIONS(1038), - [aux_sym_cmd_identifier_token7] = ACTIONS(1038), - [aux_sym_cmd_identifier_token8] = ACTIONS(1038), - [aux_sym_cmd_identifier_token9] = ACTIONS(1038), - [aux_sym_cmd_identifier_token10] = ACTIONS(1038), - [aux_sym_cmd_identifier_token11] = ACTIONS(1038), - [aux_sym_cmd_identifier_token12] = ACTIONS(1038), - [aux_sym_cmd_identifier_token13] = ACTIONS(1038), - [aux_sym_cmd_identifier_token14] = ACTIONS(1038), - [aux_sym_cmd_identifier_token15] = ACTIONS(1038), - [aux_sym_cmd_identifier_token16] = ACTIONS(1038), - [aux_sym_cmd_identifier_token17] = ACTIONS(1038), - [aux_sym_cmd_identifier_token18] = ACTIONS(1038), - [aux_sym_cmd_identifier_token19] = ACTIONS(1038), - [aux_sym_cmd_identifier_token20] = ACTIONS(1038), - [aux_sym_cmd_identifier_token21] = ACTIONS(1038), - [aux_sym_cmd_identifier_token22] = ACTIONS(1038), - [aux_sym_cmd_identifier_token23] = ACTIONS(1038), - [aux_sym_cmd_identifier_token24] = ACTIONS(1038), - [aux_sym_cmd_identifier_token25] = ACTIONS(1038), - [aux_sym_cmd_identifier_token26] = ACTIONS(1038), - [aux_sym_cmd_identifier_token27] = ACTIONS(1038), - [aux_sym_cmd_identifier_token28] = ACTIONS(1038), - [aux_sym_cmd_identifier_token29] = ACTIONS(1038), - [aux_sym_cmd_identifier_token30] = ACTIONS(1038), - [aux_sym_cmd_identifier_token31] = ACTIONS(1038), - [aux_sym_cmd_identifier_token32] = ACTIONS(1038), - [aux_sym_cmd_identifier_token33] = ACTIONS(1038), - [aux_sym_cmd_identifier_token34] = ACTIONS(1038), - [aux_sym_cmd_identifier_token35] = ACTIONS(1038), - [aux_sym_cmd_identifier_token36] = ACTIONS(1038), - [anon_sym_true] = ACTIONS(1038), - [anon_sym_false] = ACTIONS(1038), - [anon_sym_null] = ACTIONS(1038), - [aux_sym_cmd_identifier_token38] = ACTIONS(1038), - [aux_sym_cmd_identifier_token39] = ACTIONS(1038), - [aux_sym_cmd_identifier_token40] = ACTIONS(1038), - [anon_sym_def] = ACTIONS(1038), - [anon_sym_export_DASHenv] = ACTIONS(1038), - [anon_sym_extern] = ACTIONS(1038), - [anon_sym_module] = ACTIONS(1038), - [anon_sym_use] = ACTIONS(1038), - [anon_sym_LPAREN] = ACTIONS(1038), - [anon_sym_DOLLAR] = ACTIONS(1038), - [anon_sym_error] = ACTIONS(1038), - [anon_sym_list] = ACTIONS(1038), - [anon_sym_DASH] = ACTIONS(1038), - [anon_sym_break] = ACTIONS(1038), - [anon_sym_continue] = ACTIONS(1038), - [anon_sym_for] = ACTIONS(1038), - [anon_sym_in] = ACTIONS(1038), - [anon_sym_loop] = ACTIONS(1038), - [anon_sym_make] = ACTIONS(1038), - [anon_sym_while] = ACTIONS(1038), - [anon_sym_do] = ACTIONS(1038), - [anon_sym_if] = ACTIONS(1038), - [anon_sym_else] = ACTIONS(1038), - [anon_sym_match] = ACTIONS(1038), - [anon_sym_RBRACE] = ACTIONS(1038), - [anon_sym_try] = ACTIONS(1038), - [anon_sym_catch] = ACTIONS(1038), - [anon_sym_return] = ACTIONS(1038), - [anon_sym_source] = ACTIONS(1038), - [anon_sym_source_DASHenv] = ACTIONS(1038), - [anon_sym_register] = ACTIONS(1038), - [anon_sym_hide] = ACTIONS(1038), - [anon_sym_hide_DASHenv] = ACTIONS(1038), - [anon_sym_overlay] = ACTIONS(1038), - [anon_sym_new] = ACTIONS(1038), - [anon_sym_as] = ACTIONS(1038), - [anon_sym_QMARK2] = ACTIONS(1038), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1038), - [anon_sym_DOT] = ACTIONS(1038), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1038), - [aux_sym__val_number_decimal_token1] = ACTIONS(1038), - [aux_sym__val_number_decimal_token2] = ACTIONS(1038), - [aux_sym__val_number_decimal_token3] = ACTIONS(1038), - [aux_sym__val_number_decimal_token4] = ACTIONS(1038), - [aux_sym__val_number_token1] = ACTIONS(1038), - [aux_sym__val_number_token2] = ACTIONS(1038), - [aux_sym__val_number_token3] = ACTIONS(1038), - [anon_sym_DQUOTE] = ACTIONS(1038), - [sym__str_single_quotes] = ACTIONS(1038), - [sym__str_back_ticks] = ACTIONS(1038), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1038), - [sym__entry_separator] = ACTIONS(1040), - [anon_sym_PLUS] = ACTIONS(1038), - [anon_sym_POUND] = ACTIONS(3), - }, - [469] = { - [sym_comment] = STATE(469), - [anon_sym_export] = ACTIONS(1034), - [anon_sym_alias] = ACTIONS(1034), - [anon_sym_let] = ACTIONS(1034), - [anon_sym_let_DASHenv] = ACTIONS(1034), - [anon_sym_mut] = ACTIONS(1034), - [anon_sym_const] = ACTIONS(1034), - [aux_sym_cmd_identifier_token1] = ACTIONS(1034), - [aux_sym_cmd_identifier_token2] = ACTIONS(1034), - [aux_sym_cmd_identifier_token3] = ACTIONS(1034), - [aux_sym_cmd_identifier_token4] = ACTIONS(1034), - [aux_sym_cmd_identifier_token5] = ACTIONS(1034), - [aux_sym_cmd_identifier_token6] = ACTIONS(1034), - [aux_sym_cmd_identifier_token7] = ACTIONS(1034), - [aux_sym_cmd_identifier_token8] = ACTIONS(1034), - [aux_sym_cmd_identifier_token9] = ACTIONS(1034), - [aux_sym_cmd_identifier_token10] = ACTIONS(1034), - [aux_sym_cmd_identifier_token11] = ACTIONS(1034), - [aux_sym_cmd_identifier_token12] = ACTIONS(1034), - [aux_sym_cmd_identifier_token13] = ACTIONS(1034), - [aux_sym_cmd_identifier_token14] = ACTIONS(1034), - [aux_sym_cmd_identifier_token15] = ACTIONS(1034), - [aux_sym_cmd_identifier_token16] = ACTIONS(1034), - [aux_sym_cmd_identifier_token17] = ACTIONS(1034), - [aux_sym_cmd_identifier_token18] = ACTIONS(1034), - [aux_sym_cmd_identifier_token19] = ACTIONS(1034), - [aux_sym_cmd_identifier_token20] = ACTIONS(1034), - [aux_sym_cmd_identifier_token21] = ACTIONS(1034), - [aux_sym_cmd_identifier_token22] = ACTIONS(1034), - [aux_sym_cmd_identifier_token23] = ACTIONS(1034), - [aux_sym_cmd_identifier_token24] = ACTIONS(1034), - [aux_sym_cmd_identifier_token25] = ACTIONS(1034), - [aux_sym_cmd_identifier_token26] = ACTIONS(1034), - [aux_sym_cmd_identifier_token27] = ACTIONS(1034), - [aux_sym_cmd_identifier_token28] = ACTIONS(1034), - [aux_sym_cmd_identifier_token29] = ACTIONS(1034), - [aux_sym_cmd_identifier_token30] = ACTIONS(1034), - [aux_sym_cmd_identifier_token31] = ACTIONS(1034), - [aux_sym_cmd_identifier_token32] = ACTIONS(1034), - [aux_sym_cmd_identifier_token33] = ACTIONS(1034), - [aux_sym_cmd_identifier_token34] = ACTIONS(1034), - [aux_sym_cmd_identifier_token35] = ACTIONS(1034), - [aux_sym_cmd_identifier_token36] = ACTIONS(1034), - [anon_sym_true] = ACTIONS(1034), - [anon_sym_false] = ACTIONS(1034), - [anon_sym_null] = ACTIONS(1034), - [aux_sym_cmd_identifier_token38] = ACTIONS(1034), - [aux_sym_cmd_identifier_token39] = ACTIONS(1034), - [aux_sym_cmd_identifier_token40] = ACTIONS(1034), - [anon_sym_def] = ACTIONS(1034), - [anon_sym_export_DASHenv] = ACTIONS(1034), - [anon_sym_extern] = ACTIONS(1034), - [anon_sym_module] = ACTIONS(1034), - [anon_sym_use] = ACTIONS(1034), - [anon_sym_LPAREN] = ACTIONS(1034), - [anon_sym_DOLLAR] = ACTIONS(1034), - [anon_sym_error] = ACTIONS(1034), - [anon_sym_list] = ACTIONS(1034), - [anon_sym_DASH] = ACTIONS(1034), - [anon_sym_break] = ACTIONS(1034), - [anon_sym_continue] = ACTIONS(1034), - [anon_sym_for] = ACTIONS(1034), - [anon_sym_in] = ACTIONS(1034), - [anon_sym_loop] = ACTIONS(1034), - [anon_sym_make] = ACTIONS(1034), - [anon_sym_while] = ACTIONS(1034), - [anon_sym_do] = ACTIONS(1034), - [anon_sym_if] = ACTIONS(1034), - [anon_sym_else] = ACTIONS(1034), - [anon_sym_match] = ACTIONS(1034), - [anon_sym_RBRACE] = ACTIONS(1034), - [anon_sym_try] = ACTIONS(1034), - [anon_sym_catch] = ACTIONS(1034), - [anon_sym_return] = ACTIONS(1034), - [anon_sym_source] = ACTIONS(1034), - [anon_sym_source_DASHenv] = ACTIONS(1034), - [anon_sym_register] = ACTIONS(1034), - [anon_sym_hide] = ACTIONS(1034), - [anon_sym_hide_DASHenv] = ACTIONS(1034), - [anon_sym_overlay] = ACTIONS(1034), - [anon_sym_new] = ACTIONS(1034), - [anon_sym_as] = ACTIONS(1034), - [anon_sym_QMARK2] = ACTIONS(1034), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(1034), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1034), - [aux_sym__val_number_decimal_token1] = ACTIONS(1034), - [aux_sym__val_number_decimal_token2] = ACTIONS(1034), - [aux_sym__val_number_decimal_token3] = ACTIONS(1034), - [aux_sym__val_number_decimal_token4] = ACTIONS(1034), - [aux_sym__val_number_token1] = ACTIONS(1034), - [aux_sym__val_number_token2] = ACTIONS(1034), - [aux_sym__val_number_token3] = ACTIONS(1034), - [anon_sym_DQUOTE] = ACTIONS(1034), - [sym__str_single_quotes] = ACTIONS(1034), - [sym__str_back_ticks] = ACTIONS(1034), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1034), - [sym__entry_separator] = ACTIONS(1036), - [anon_sym_PLUS] = ACTIONS(1034), - [anon_sym_POUND] = ACTIONS(3), - }, - [470] = { - [sym_comment] = STATE(470), - [anon_sym_export] = ACTIONS(2253), - [anon_sym_alias] = ACTIONS(2253), - [anon_sym_let] = ACTIONS(2253), - [anon_sym_let_DASHenv] = ACTIONS(2253), - [anon_sym_mut] = ACTIONS(2253), - [anon_sym_const] = ACTIONS(2253), - [aux_sym_cmd_identifier_token1] = ACTIONS(2253), - [aux_sym_cmd_identifier_token2] = ACTIONS(2253), - [aux_sym_cmd_identifier_token3] = ACTIONS(2253), - [aux_sym_cmd_identifier_token4] = ACTIONS(2253), - [aux_sym_cmd_identifier_token5] = ACTIONS(2253), - [aux_sym_cmd_identifier_token6] = ACTIONS(2253), - [aux_sym_cmd_identifier_token7] = ACTIONS(2253), - [aux_sym_cmd_identifier_token8] = ACTIONS(2253), - [aux_sym_cmd_identifier_token9] = ACTIONS(2253), - [aux_sym_cmd_identifier_token10] = ACTIONS(2253), - [aux_sym_cmd_identifier_token11] = ACTIONS(2253), - [aux_sym_cmd_identifier_token12] = ACTIONS(2253), - [aux_sym_cmd_identifier_token13] = ACTIONS(2253), - [aux_sym_cmd_identifier_token14] = ACTIONS(2253), - [aux_sym_cmd_identifier_token15] = ACTIONS(2253), - [aux_sym_cmd_identifier_token16] = ACTIONS(2253), - [aux_sym_cmd_identifier_token17] = ACTIONS(2253), - [aux_sym_cmd_identifier_token18] = ACTIONS(2253), - [aux_sym_cmd_identifier_token19] = ACTIONS(2253), - [aux_sym_cmd_identifier_token20] = ACTIONS(2253), - [aux_sym_cmd_identifier_token21] = ACTIONS(2253), - [aux_sym_cmd_identifier_token22] = ACTIONS(2253), - [aux_sym_cmd_identifier_token23] = ACTIONS(2253), - [aux_sym_cmd_identifier_token24] = ACTIONS(2253), - [aux_sym_cmd_identifier_token25] = ACTIONS(2253), - [aux_sym_cmd_identifier_token26] = ACTIONS(2253), - [aux_sym_cmd_identifier_token27] = ACTIONS(2253), - [aux_sym_cmd_identifier_token28] = ACTIONS(2253), - [aux_sym_cmd_identifier_token29] = ACTIONS(2253), - [aux_sym_cmd_identifier_token30] = ACTIONS(2253), - [aux_sym_cmd_identifier_token31] = ACTIONS(2253), - [aux_sym_cmd_identifier_token32] = ACTIONS(2253), - [aux_sym_cmd_identifier_token33] = ACTIONS(2253), - [aux_sym_cmd_identifier_token34] = ACTIONS(2253), - [aux_sym_cmd_identifier_token35] = ACTIONS(2253), - [aux_sym_cmd_identifier_token36] = ACTIONS(2253), - [anon_sym_true] = ACTIONS(2253), - [anon_sym_false] = ACTIONS(2253), - [anon_sym_null] = ACTIONS(2253), - [aux_sym_cmd_identifier_token38] = ACTIONS(2253), - [aux_sym_cmd_identifier_token39] = ACTIONS(2253), - [aux_sym_cmd_identifier_token40] = ACTIONS(2253), - [anon_sym_def] = ACTIONS(2253), - [anon_sym_export_DASHenv] = ACTIONS(2253), - [anon_sym_extern] = ACTIONS(2253), - [anon_sym_module] = ACTIONS(2253), - [anon_sym_use] = ACTIONS(2253), - [anon_sym_LPAREN] = ACTIONS(2253), - [anon_sym_DOLLAR] = ACTIONS(2253), - [anon_sym_error] = ACTIONS(2253), - [anon_sym_list] = ACTIONS(2253), - [anon_sym_DASH] = ACTIONS(2253), - [anon_sym_break] = ACTIONS(2253), - [anon_sym_continue] = ACTIONS(2253), - [anon_sym_for] = ACTIONS(2253), - [anon_sym_in] = ACTIONS(2253), - [anon_sym_loop] = ACTIONS(2253), - [anon_sym_make] = ACTIONS(2253), - [anon_sym_while] = ACTIONS(2253), - [anon_sym_do] = ACTIONS(2253), - [anon_sym_if] = ACTIONS(2253), - [anon_sym_else] = ACTIONS(2253), - [anon_sym_match] = ACTIONS(2253), - [anon_sym_RBRACE] = ACTIONS(2253), - [anon_sym_try] = ACTIONS(2253), - [anon_sym_catch] = ACTIONS(2253), - [anon_sym_return] = ACTIONS(2253), - [anon_sym_source] = ACTIONS(2253), - [anon_sym_source_DASHenv] = ACTIONS(2253), - [anon_sym_register] = ACTIONS(2253), - [anon_sym_hide] = ACTIONS(2253), - [anon_sym_hide_DASHenv] = ACTIONS(2253), - [anon_sym_overlay] = ACTIONS(2253), - [anon_sym_new] = ACTIONS(2253), - [anon_sym_as] = ACTIONS(2253), - [anon_sym_LPAREN2] = ACTIONS(2255), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2253), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2253), - [aux_sym__val_number_decimal_token1] = ACTIONS(2253), - [aux_sym__val_number_decimal_token2] = ACTIONS(2253), - [aux_sym__val_number_decimal_token3] = ACTIONS(2253), - [aux_sym__val_number_decimal_token4] = ACTIONS(2253), - [aux_sym__val_number_token1] = ACTIONS(2253), - [aux_sym__val_number_token2] = ACTIONS(2253), - [aux_sym__val_number_token3] = ACTIONS(2253), - [anon_sym_DQUOTE] = ACTIONS(2253), - [sym__str_single_quotes] = ACTIONS(2253), - [sym__str_back_ticks] = ACTIONS(2253), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2253), - [sym__entry_separator] = ACTIONS(2255), - [anon_sym_PLUS] = ACTIONS(2253), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2253), - [anon_sym_POUND] = ACTIONS(3), - }, - [471] = { - [sym_comment] = STATE(471), - [anon_sym_export] = ACTIONS(1667), - [anon_sym_alias] = ACTIONS(1667), - [anon_sym_let] = ACTIONS(1667), - [anon_sym_let_DASHenv] = ACTIONS(1667), - [anon_sym_mut] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1667), - [aux_sym_cmd_identifier_token1] = ACTIONS(1667), - [aux_sym_cmd_identifier_token2] = ACTIONS(1667), - [aux_sym_cmd_identifier_token3] = ACTIONS(1667), - [aux_sym_cmd_identifier_token4] = ACTIONS(1667), - [aux_sym_cmd_identifier_token5] = ACTIONS(1667), - [aux_sym_cmd_identifier_token6] = ACTIONS(1667), - [aux_sym_cmd_identifier_token7] = ACTIONS(1667), - [aux_sym_cmd_identifier_token8] = ACTIONS(1667), - [aux_sym_cmd_identifier_token9] = ACTIONS(1667), - [aux_sym_cmd_identifier_token10] = ACTIONS(1667), - [aux_sym_cmd_identifier_token11] = ACTIONS(1667), - [aux_sym_cmd_identifier_token12] = ACTIONS(1667), - [aux_sym_cmd_identifier_token13] = ACTIONS(1667), - [aux_sym_cmd_identifier_token14] = ACTIONS(1667), - [aux_sym_cmd_identifier_token15] = ACTIONS(1667), - [aux_sym_cmd_identifier_token16] = ACTIONS(1667), - [aux_sym_cmd_identifier_token17] = ACTIONS(1667), - [aux_sym_cmd_identifier_token18] = ACTIONS(1667), - [aux_sym_cmd_identifier_token19] = ACTIONS(1667), - [aux_sym_cmd_identifier_token20] = ACTIONS(1667), - [aux_sym_cmd_identifier_token21] = ACTIONS(1667), - [aux_sym_cmd_identifier_token22] = ACTIONS(1667), - [aux_sym_cmd_identifier_token23] = ACTIONS(1667), - [aux_sym_cmd_identifier_token24] = ACTIONS(1667), - [aux_sym_cmd_identifier_token25] = ACTIONS(1667), - [aux_sym_cmd_identifier_token26] = ACTIONS(1667), - [aux_sym_cmd_identifier_token27] = ACTIONS(1667), - [aux_sym_cmd_identifier_token28] = ACTIONS(1667), - [aux_sym_cmd_identifier_token29] = ACTIONS(1667), - [aux_sym_cmd_identifier_token30] = ACTIONS(1667), - [aux_sym_cmd_identifier_token31] = ACTIONS(1667), - [aux_sym_cmd_identifier_token32] = ACTIONS(1667), - [aux_sym_cmd_identifier_token33] = ACTIONS(1667), - [aux_sym_cmd_identifier_token34] = ACTIONS(1667), - [aux_sym_cmd_identifier_token35] = ACTIONS(1667), - [aux_sym_cmd_identifier_token36] = ACTIONS(1667), - [anon_sym_true] = ACTIONS(1669), - [anon_sym_false] = ACTIONS(1669), - [anon_sym_null] = ACTIONS(1669), - [aux_sym_cmd_identifier_token38] = ACTIONS(1667), - [aux_sym_cmd_identifier_token39] = ACTIONS(1669), - [aux_sym_cmd_identifier_token40] = ACTIONS(1669), - [anon_sym_def] = ACTIONS(1667), - [anon_sym_export_DASHenv] = ACTIONS(1667), - [anon_sym_extern] = ACTIONS(1667), - [anon_sym_module] = ACTIONS(1667), - [anon_sym_use] = ACTIONS(1667), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_DOLLAR] = ACTIONS(1669), - [anon_sym_error] = ACTIONS(1667), - [anon_sym_list] = ACTIONS(1667), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_break] = ACTIONS(1667), - [anon_sym_continue] = ACTIONS(1667), - [anon_sym_for] = ACTIONS(1667), - [anon_sym_in] = ACTIONS(1667), - [anon_sym_loop] = ACTIONS(1667), - [anon_sym_make] = ACTIONS(1667), - [anon_sym_while] = ACTIONS(1667), - [anon_sym_do] = ACTIONS(1667), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_else] = ACTIONS(1667), - [anon_sym_match] = ACTIONS(1667), - [anon_sym_RBRACE] = ACTIONS(1669), - [anon_sym_try] = ACTIONS(1667), - [anon_sym_catch] = ACTIONS(1667), - [anon_sym_return] = ACTIONS(1667), - [anon_sym_source] = ACTIONS(1667), - [anon_sym_source_DASHenv] = ACTIONS(1667), - [anon_sym_register] = ACTIONS(1667), - [anon_sym_hide] = ACTIONS(1667), - [anon_sym_hide_DASHenv] = ACTIONS(1667), - [anon_sym_overlay] = ACTIONS(1667), - [anon_sym_new] = ACTIONS(1667), - [anon_sym_as] = ACTIONS(1667), - [anon_sym_LPAREN2] = ACTIONS(1669), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1669), - [aux_sym__immediate_decimal_token2] = ACTIONS(2097), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1669), - [aux_sym__val_number_decimal_token1] = ACTIONS(1667), - [aux_sym__val_number_decimal_token2] = ACTIONS(1669), - [aux_sym__val_number_decimal_token3] = ACTIONS(1669), - [aux_sym__val_number_decimal_token4] = ACTIONS(1669), - [aux_sym__val_number_token1] = ACTIONS(1669), - [aux_sym__val_number_token2] = ACTIONS(1669), - [aux_sym__val_number_token3] = ACTIONS(1669), - [anon_sym_DQUOTE] = ACTIONS(1669), - [sym__str_single_quotes] = ACTIONS(1669), - [sym__str_back_ticks] = ACTIONS(1669), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1669), - [anon_sym_PLUS] = ACTIONS(1667), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(247), - }, - [472] = { - [sym_comment] = STATE(472), - [anon_sym_export] = ACTIONS(1721), - [anon_sym_alias] = ACTIONS(1721), - [anon_sym_let] = ACTIONS(1721), - [anon_sym_let_DASHenv] = ACTIONS(1721), - [anon_sym_mut] = ACTIONS(1721), - [anon_sym_const] = ACTIONS(1721), - [aux_sym_cmd_identifier_token1] = ACTIONS(1721), - [aux_sym_cmd_identifier_token2] = ACTIONS(1721), - [aux_sym_cmd_identifier_token3] = ACTIONS(1721), - [aux_sym_cmd_identifier_token4] = ACTIONS(1721), - [aux_sym_cmd_identifier_token5] = ACTIONS(1721), - [aux_sym_cmd_identifier_token6] = ACTIONS(1721), - [aux_sym_cmd_identifier_token7] = ACTIONS(1721), - [aux_sym_cmd_identifier_token8] = ACTIONS(1721), - [aux_sym_cmd_identifier_token9] = ACTIONS(1721), - [aux_sym_cmd_identifier_token10] = ACTIONS(1721), - [aux_sym_cmd_identifier_token11] = ACTIONS(1721), - [aux_sym_cmd_identifier_token12] = ACTIONS(1721), - [aux_sym_cmd_identifier_token13] = ACTIONS(1721), - [aux_sym_cmd_identifier_token14] = ACTIONS(1721), - [aux_sym_cmd_identifier_token15] = ACTIONS(1721), - [aux_sym_cmd_identifier_token16] = ACTIONS(1721), - [aux_sym_cmd_identifier_token17] = ACTIONS(1721), - [aux_sym_cmd_identifier_token18] = ACTIONS(1721), - [aux_sym_cmd_identifier_token19] = ACTIONS(1721), - [aux_sym_cmd_identifier_token20] = ACTIONS(1721), - [aux_sym_cmd_identifier_token21] = ACTIONS(1721), - [aux_sym_cmd_identifier_token22] = ACTIONS(1721), - [aux_sym_cmd_identifier_token23] = ACTIONS(1721), - [aux_sym_cmd_identifier_token24] = ACTIONS(1721), - [aux_sym_cmd_identifier_token25] = ACTIONS(1721), - [aux_sym_cmd_identifier_token26] = ACTIONS(1721), - [aux_sym_cmd_identifier_token27] = ACTIONS(1721), - [aux_sym_cmd_identifier_token28] = ACTIONS(1721), - [aux_sym_cmd_identifier_token29] = ACTIONS(1721), - [aux_sym_cmd_identifier_token30] = ACTIONS(1721), - [aux_sym_cmd_identifier_token31] = ACTIONS(1721), - [aux_sym_cmd_identifier_token32] = ACTIONS(1721), - [aux_sym_cmd_identifier_token33] = ACTIONS(1721), - [aux_sym_cmd_identifier_token34] = ACTIONS(1721), - [aux_sym_cmd_identifier_token35] = ACTIONS(1721), - [aux_sym_cmd_identifier_token36] = ACTIONS(1721), - [anon_sym_true] = ACTIONS(1723), - [anon_sym_false] = ACTIONS(1723), - [anon_sym_null] = ACTIONS(1723), - [aux_sym_cmd_identifier_token38] = ACTIONS(1721), - [aux_sym_cmd_identifier_token39] = ACTIONS(1723), - [aux_sym_cmd_identifier_token40] = ACTIONS(1723), - [anon_sym_def] = ACTIONS(1721), - [anon_sym_export_DASHenv] = ACTIONS(1721), - [anon_sym_extern] = ACTIONS(1721), - [anon_sym_module] = ACTIONS(1721), - [anon_sym_use] = ACTIONS(1721), - [anon_sym_LPAREN] = ACTIONS(1721), - [anon_sym_DOLLAR] = ACTIONS(1723), - [anon_sym_error] = ACTIONS(1721), - [anon_sym_list] = ACTIONS(1721), - [anon_sym_DASH] = ACTIONS(1721), - [anon_sym_break] = ACTIONS(1721), - [anon_sym_continue] = ACTIONS(1721), - [anon_sym_for] = ACTIONS(1721), - [anon_sym_in] = ACTIONS(1721), - [anon_sym_loop] = ACTIONS(1721), - [anon_sym_make] = ACTIONS(1721), - [anon_sym_while] = ACTIONS(1721), - [anon_sym_do] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1721), - [anon_sym_else] = ACTIONS(1721), - [anon_sym_match] = ACTIONS(1721), - [anon_sym_RBRACE] = ACTIONS(1723), - [anon_sym_try] = ACTIONS(1721), - [anon_sym_catch] = ACTIONS(1721), - [anon_sym_return] = ACTIONS(1721), - [anon_sym_source] = ACTIONS(1721), - [anon_sym_source_DASHenv] = ACTIONS(1721), - [anon_sym_register] = ACTIONS(1721), - [anon_sym_hide] = ACTIONS(1721), - [anon_sym_hide_DASHenv] = ACTIONS(1721), - [anon_sym_overlay] = ACTIONS(1721), - [anon_sym_new] = ACTIONS(1721), - [anon_sym_as] = ACTIONS(1721), - [anon_sym_LPAREN2] = ACTIONS(1723), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1723), - [aux_sym__immediate_decimal_token2] = ACTIONS(2257), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1723), - [aux_sym__val_number_decimal_token1] = ACTIONS(1721), - [aux_sym__val_number_decimal_token2] = ACTIONS(1723), - [aux_sym__val_number_decimal_token3] = ACTIONS(1723), - [aux_sym__val_number_decimal_token4] = ACTIONS(1723), - [aux_sym__val_number_token1] = ACTIONS(1723), - [aux_sym__val_number_token2] = ACTIONS(1723), - [aux_sym__val_number_token3] = ACTIONS(1723), - [anon_sym_DQUOTE] = ACTIONS(1723), - [sym__str_single_quotes] = ACTIONS(1723), - [sym__str_back_ticks] = ACTIONS(1723), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1723), - [anon_sym_PLUS] = ACTIONS(1721), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1721), - [anon_sym_POUND] = ACTIONS(247), - }, - [473] = { - [sym_comment] = STATE(473), - [anon_sym_export] = ACTIONS(1667), - [anon_sym_alias] = ACTIONS(1667), - [anon_sym_let] = ACTIONS(1667), - [anon_sym_let_DASHenv] = ACTIONS(1667), - [anon_sym_mut] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1667), - [aux_sym_cmd_identifier_token1] = ACTIONS(1667), - [aux_sym_cmd_identifier_token2] = ACTIONS(1667), - [aux_sym_cmd_identifier_token3] = ACTIONS(1667), - [aux_sym_cmd_identifier_token4] = ACTIONS(1667), - [aux_sym_cmd_identifier_token5] = ACTIONS(1667), - [aux_sym_cmd_identifier_token6] = ACTIONS(1667), - [aux_sym_cmd_identifier_token7] = ACTIONS(1667), - [aux_sym_cmd_identifier_token8] = ACTIONS(1667), - [aux_sym_cmd_identifier_token9] = ACTIONS(1667), - [aux_sym_cmd_identifier_token10] = ACTIONS(1667), - [aux_sym_cmd_identifier_token11] = ACTIONS(1667), - [aux_sym_cmd_identifier_token12] = ACTIONS(1667), - [aux_sym_cmd_identifier_token13] = ACTIONS(1667), - [aux_sym_cmd_identifier_token14] = ACTIONS(1667), - [aux_sym_cmd_identifier_token15] = ACTIONS(1667), - [aux_sym_cmd_identifier_token16] = ACTIONS(1667), - [aux_sym_cmd_identifier_token17] = ACTIONS(1667), - [aux_sym_cmd_identifier_token18] = ACTIONS(1667), - [aux_sym_cmd_identifier_token19] = ACTIONS(1667), - [aux_sym_cmd_identifier_token20] = ACTIONS(1667), - [aux_sym_cmd_identifier_token21] = ACTIONS(1667), - [aux_sym_cmd_identifier_token22] = ACTIONS(1667), - [aux_sym_cmd_identifier_token23] = ACTIONS(1667), - [aux_sym_cmd_identifier_token24] = ACTIONS(1667), - [aux_sym_cmd_identifier_token25] = ACTIONS(1667), - [aux_sym_cmd_identifier_token26] = ACTIONS(1667), - [aux_sym_cmd_identifier_token27] = ACTIONS(1667), - [aux_sym_cmd_identifier_token28] = ACTIONS(1667), - [aux_sym_cmd_identifier_token29] = ACTIONS(1667), - [aux_sym_cmd_identifier_token30] = ACTIONS(1667), - [aux_sym_cmd_identifier_token31] = ACTIONS(1667), - [aux_sym_cmd_identifier_token32] = ACTIONS(1667), - [aux_sym_cmd_identifier_token33] = ACTIONS(1667), - [aux_sym_cmd_identifier_token34] = ACTIONS(1667), - [aux_sym_cmd_identifier_token35] = ACTIONS(1667), - [aux_sym_cmd_identifier_token36] = ACTIONS(1667), - [anon_sym_true] = ACTIONS(1669), - [anon_sym_false] = ACTIONS(1669), - [anon_sym_null] = ACTIONS(1669), - [aux_sym_cmd_identifier_token38] = ACTIONS(1667), - [aux_sym_cmd_identifier_token39] = ACTIONS(1669), - [aux_sym_cmd_identifier_token40] = ACTIONS(1669), - [anon_sym_def] = ACTIONS(1667), - [anon_sym_export_DASHenv] = ACTIONS(1667), - [anon_sym_extern] = ACTIONS(1667), - [anon_sym_module] = ACTIONS(1667), - [anon_sym_use] = ACTIONS(1667), - [anon_sym_LPAREN] = ACTIONS(1669), - [anon_sym_DOLLAR] = ACTIONS(1669), - [anon_sym_error] = ACTIONS(1667), - [anon_sym_list] = ACTIONS(1667), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_break] = ACTIONS(1667), - [anon_sym_continue] = ACTIONS(1667), - [anon_sym_for] = ACTIONS(1667), - [anon_sym_in] = ACTIONS(1667), - [anon_sym_loop] = ACTIONS(1667), - [anon_sym_make] = ACTIONS(1667), - [anon_sym_while] = ACTIONS(1667), - [anon_sym_do] = ACTIONS(1667), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_else] = ACTIONS(1667), - [anon_sym_match] = ACTIONS(1667), - [anon_sym_RBRACE] = ACTIONS(1669), - [anon_sym_try] = ACTIONS(1667), - [anon_sym_catch] = ACTIONS(1667), - [anon_sym_return] = ACTIONS(1667), - [anon_sym_source] = ACTIONS(1667), - [anon_sym_source_DASHenv] = ACTIONS(1667), - [anon_sym_register] = ACTIONS(1667), - [anon_sym_hide] = ACTIONS(1667), - [anon_sym_hide_DASHenv] = ACTIONS(1667), - [anon_sym_overlay] = ACTIONS(1667), - [anon_sym_new] = ACTIONS(1667), - [anon_sym_as] = ACTIONS(1667), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1669), - [anon_sym_DOT_DOT2] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1669), - [aux_sym__val_number_decimal_token1] = ACTIONS(1667), - [aux_sym__val_number_decimal_token2] = ACTIONS(1669), - [aux_sym__val_number_decimal_token3] = ACTIONS(1669), - [aux_sym__val_number_decimal_token4] = ACTIONS(1669), - [aux_sym__val_number_token1] = ACTIONS(1669), - [aux_sym__val_number_token2] = ACTIONS(1669), - [aux_sym__val_number_token3] = ACTIONS(1669), - [anon_sym_DQUOTE] = ACTIONS(1669), - [sym__str_single_quotes] = ACTIONS(1669), - [sym__str_back_ticks] = ACTIONS(1669), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1669), - [anon_sym_PLUS] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(247), - }, - [474] = { - [sym_comment] = STATE(474), - [anon_sym_export] = ACTIONS(1659), - [anon_sym_alias] = ACTIONS(1659), - [anon_sym_let] = ACTIONS(1659), - [anon_sym_let_DASHenv] = ACTIONS(1659), - [anon_sym_mut] = ACTIONS(1659), - [anon_sym_const] = ACTIONS(1659), - [aux_sym_cmd_identifier_token1] = ACTIONS(1659), - [aux_sym_cmd_identifier_token2] = ACTIONS(1659), - [aux_sym_cmd_identifier_token3] = ACTIONS(1659), - [aux_sym_cmd_identifier_token4] = ACTIONS(1659), - [aux_sym_cmd_identifier_token5] = ACTIONS(1659), - [aux_sym_cmd_identifier_token6] = ACTIONS(1659), - [aux_sym_cmd_identifier_token7] = ACTIONS(1659), - [aux_sym_cmd_identifier_token8] = ACTIONS(1659), - [aux_sym_cmd_identifier_token9] = ACTIONS(1659), - [aux_sym_cmd_identifier_token10] = ACTIONS(1659), - [aux_sym_cmd_identifier_token11] = ACTIONS(1659), - [aux_sym_cmd_identifier_token12] = ACTIONS(1659), - [aux_sym_cmd_identifier_token13] = ACTIONS(1659), - [aux_sym_cmd_identifier_token14] = ACTIONS(1659), - [aux_sym_cmd_identifier_token15] = ACTIONS(1659), - [aux_sym_cmd_identifier_token16] = ACTIONS(1659), - [aux_sym_cmd_identifier_token17] = ACTIONS(1659), - [aux_sym_cmd_identifier_token18] = ACTIONS(1659), - [aux_sym_cmd_identifier_token19] = ACTIONS(1659), - [aux_sym_cmd_identifier_token20] = ACTIONS(1659), - [aux_sym_cmd_identifier_token21] = ACTIONS(1659), - [aux_sym_cmd_identifier_token22] = ACTIONS(1659), - [aux_sym_cmd_identifier_token23] = ACTIONS(1659), - [aux_sym_cmd_identifier_token24] = ACTIONS(1659), - [aux_sym_cmd_identifier_token25] = ACTIONS(1659), - [aux_sym_cmd_identifier_token26] = ACTIONS(1659), - [aux_sym_cmd_identifier_token27] = ACTIONS(1659), - [aux_sym_cmd_identifier_token28] = ACTIONS(1659), - [aux_sym_cmd_identifier_token29] = ACTIONS(1659), - [aux_sym_cmd_identifier_token30] = ACTIONS(1659), - [aux_sym_cmd_identifier_token31] = ACTIONS(1659), - [aux_sym_cmd_identifier_token32] = ACTIONS(1659), - [aux_sym_cmd_identifier_token33] = ACTIONS(1659), - [aux_sym_cmd_identifier_token34] = ACTIONS(1659), - [aux_sym_cmd_identifier_token35] = ACTIONS(1659), - [aux_sym_cmd_identifier_token36] = ACTIONS(1659), - [anon_sym_true] = ACTIONS(1661), - [anon_sym_false] = ACTIONS(1661), - [anon_sym_null] = ACTIONS(1661), - [aux_sym_cmd_identifier_token38] = ACTIONS(1659), - [aux_sym_cmd_identifier_token39] = ACTIONS(1661), - [aux_sym_cmd_identifier_token40] = ACTIONS(1661), - [anon_sym_def] = ACTIONS(1659), - [anon_sym_export_DASHenv] = ACTIONS(1659), - [anon_sym_extern] = ACTIONS(1659), - [anon_sym_module] = ACTIONS(1659), - [anon_sym_use] = ACTIONS(1659), - [anon_sym_LPAREN] = ACTIONS(1661), - [anon_sym_DOLLAR] = ACTIONS(1661), - [anon_sym_error] = ACTIONS(1659), - [anon_sym_list] = ACTIONS(1659), - [anon_sym_DASH] = ACTIONS(1659), - [anon_sym_break] = ACTIONS(1659), - [anon_sym_continue] = ACTIONS(1659), - [anon_sym_for] = ACTIONS(1659), - [anon_sym_in] = ACTIONS(1659), - [anon_sym_loop] = ACTIONS(1659), - [anon_sym_make] = ACTIONS(1659), - [anon_sym_while] = ACTIONS(1659), - [anon_sym_do] = ACTIONS(1659), - [anon_sym_if] = ACTIONS(1659), - [anon_sym_else] = ACTIONS(1659), - [anon_sym_match] = ACTIONS(1659), - [anon_sym_RBRACE] = ACTIONS(1661), - [anon_sym_try] = ACTIONS(1659), - [anon_sym_catch] = ACTIONS(1659), - [anon_sym_return] = ACTIONS(1659), - [anon_sym_source] = ACTIONS(1659), - [anon_sym_source_DASHenv] = ACTIONS(1659), - [anon_sym_register] = ACTIONS(1659), - [anon_sym_hide] = ACTIONS(1659), - [anon_sym_hide_DASHenv] = ACTIONS(1659), - [anon_sym_overlay] = ACTIONS(1659), - [anon_sym_new] = ACTIONS(1659), - [anon_sym_as] = ACTIONS(1659), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1661), - [anon_sym_DOT_DOT2] = ACTIONS(1659), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1661), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1661), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1661), - [aux_sym__val_number_decimal_token1] = ACTIONS(1659), - [aux_sym__val_number_decimal_token2] = ACTIONS(1661), - [aux_sym__val_number_decimal_token3] = ACTIONS(1661), - [aux_sym__val_number_decimal_token4] = ACTIONS(1661), - [aux_sym__val_number_token1] = ACTIONS(1661), - [aux_sym__val_number_token2] = ACTIONS(1661), - [aux_sym__val_number_token3] = ACTIONS(1661), - [anon_sym_DQUOTE] = ACTIONS(1661), - [sym__str_single_quotes] = ACTIONS(1661), - [sym__str_back_ticks] = ACTIONS(1661), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1661), - [anon_sym_PLUS] = ACTIONS(1659), - [anon_sym_POUND] = ACTIONS(247), - }, - [475] = { - [sym_comment] = STATE(475), - [anon_sym_export] = ACTIONS(1981), - [anon_sym_alias] = ACTIONS(1981), - [anon_sym_let] = ACTIONS(1981), - [anon_sym_let_DASHenv] = ACTIONS(1981), - [anon_sym_mut] = ACTIONS(1981), - [anon_sym_const] = ACTIONS(1981), - [aux_sym_cmd_identifier_token1] = ACTIONS(1981), - [aux_sym_cmd_identifier_token2] = ACTIONS(1981), - [aux_sym_cmd_identifier_token3] = ACTIONS(1981), - [aux_sym_cmd_identifier_token4] = ACTIONS(1981), - [aux_sym_cmd_identifier_token5] = ACTIONS(1981), - [aux_sym_cmd_identifier_token6] = ACTIONS(1981), - [aux_sym_cmd_identifier_token7] = ACTIONS(1981), - [aux_sym_cmd_identifier_token8] = ACTIONS(1981), - [aux_sym_cmd_identifier_token9] = ACTIONS(1981), - [aux_sym_cmd_identifier_token10] = ACTIONS(1981), - [aux_sym_cmd_identifier_token11] = ACTIONS(1981), - [aux_sym_cmd_identifier_token12] = ACTIONS(1981), - [aux_sym_cmd_identifier_token13] = ACTIONS(1981), - [aux_sym_cmd_identifier_token14] = ACTIONS(1981), - [aux_sym_cmd_identifier_token15] = ACTIONS(1981), - [aux_sym_cmd_identifier_token16] = ACTIONS(1981), - [aux_sym_cmd_identifier_token17] = ACTIONS(1981), - [aux_sym_cmd_identifier_token18] = ACTIONS(1981), - [aux_sym_cmd_identifier_token19] = ACTIONS(1981), - [aux_sym_cmd_identifier_token20] = ACTIONS(1981), - [aux_sym_cmd_identifier_token21] = ACTIONS(1981), - [aux_sym_cmd_identifier_token22] = ACTIONS(1981), - [aux_sym_cmd_identifier_token23] = ACTIONS(1981), - [aux_sym_cmd_identifier_token24] = ACTIONS(1981), - [aux_sym_cmd_identifier_token25] = ACTIONS(1981), - [aux_sym_cmd_identifier_token26] = ACTIONS(1981), - [aux_sym_cmd_identifier_token27] = ACTIONS(1981), - [aux_sym_cmd_identifier_token28] = ACTIONS(1981), - [aux_sym_cmd_identifier_token29] = ACTIONS(1981), - [aux_sym_cmd_identifier_token30] = ACTIONS(1981), - [aux_sym_cmd_identifier_token31] = ACTIONS(1981), - [aux_sym_cmd_identifier_token32] = ACTIONS(1981), - [aux_sym_cmd_identifier_token33] = ACTIONS(1981), - [aux_sym_cmd_identifier_token34] = ACTIONS(1981), - [aux_sym_cmd_identifier_token35] = ACTIONS(1981), - [aux_sym_cmd_identifier_token36] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(1987), - [anon_sym_false] = ACTIONS(1987), - [anon_sym_null] = ACTIONS(1987), - [aux_sym_cmd_identifier_token38] = ACTIONS(1981), - [aux_sym_cmd_identifier_token39] = ACTIONS(1987), - [aux_sym_cmd_identifier_token40] = ACTIONS(1987), - [anon_sym_def] = ACTIONS(1981), - [anon_sym_export_DASHenv] = ACTIONS(1981), - [anon_sym_extern] = ACTIONS(1981), - [anon_sym_module] = ACTIONS(1981), - [anon_sym_use] = ACTIONS(1981), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_DOLLAR] = ACTIONS(1987), - [anon_sym_error] = ACTIONS(1981), - [anon_sym_list] = ACTIONS(1981), - [anon_sym_DASH] = ACTIONS(1981), - [anon_sym_break] = ACTIONS(1981), - [anon_sym_continue] = ACTIONS(1981), - [anon_sym_for] = ACTIONS(1981), - [anon_sym_in] = ACTIONS(1981), - [anon_sym_loop] = ACTIONS(1981), - [anon_sym_make] = ACTIONS(1981), - [anon_sym_while] = ACTIONS(1981), - [anon_sym_do] = ACTIONS(1981), - [anon_sym_if] = ACTIONS(1981), - [anon_sym_else] = ACTIONS(1981), - [anon_sym_match] = ACTIONS(1981), - [anon_sym_RBRACE] = ACTIONS(1987), - [anon_sym_try] = ACTIONS(1981), - [anon_sym_catch] = ACTIONS(1981), - [anon_sym_return] = ACTIONS(1981), - [anon_sym_source] = ACTIONS(1981), - [anon_sym_source_DASHenv] = ACTIONS(1981), - [anon_sym_register] = ACTIONS(1981), - [anon_sym_hide] = ACTIONS(1981), - [anon_sym_hide_DASHenv] = ACTIONS(1981), - [anon_sym_overlay] = ACTIONS(1981), - [anon_sym_new] = ACTIONS(1981), - [anon_sym_as] = ACTIONS(1981), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1987), - [anon_sym_DOT_DOT2] = ACTIONS(2259), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2261), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2261), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1987), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1987), - [aux_sym__val_number_decimal_token3] = ACTIONS(1987), - [aux_sym__val_number_decimal_token4] = ACTIONS(1987), - [aux_sym__val_number_token1] = ACTIONS(1987), - [aux_sym__val_number_token2] = ACTIONS(1987), - [aux_sym__val_number_token3] = ACTIONS(1987), - [anon_sym_DQUOTE] = ACTIONS(1987), - [sym__str_single_quotes] = ACTIONS(1987), - [sym__str_back_ticks] = ACTIONS(1987), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1987), - [anon_sym_PLUS] = ACTIONS(1981), - [anon_sym_POUND] = ACTIONS(247), - }, - [476] = { - [sym_comment] = STATE(476), - [anon_sym_export] = ACTIONS(2015), - [anon_sym_alias] = ACTIONS(2015), - [anon_sym_let] = ACTIONS(2015), - [anon_sym_let_DASHenv] = ACTIONS(2015), - [anon_sym_mut] = ACTIONS(2015), - [anon_sym_const] = ACTIONS(2015), - [aux_sym_cmd_identifier_token1] = ACTIONS(2015), - [aux_sym_cmd_identifier_token2] = ACTIONS(2015), - [aux_sym_cmd_identifier_token3] = ACTIONS(2015), - [aux_sym_cmd_identifier_token4] = ACTIONS(2015), - [aux_sym_cmd_identifier_token5] = ACTIONS(2015), - [aux_sym_cmd_identifier_token6] = ACTIONS(2015), - [aux_sym_cmd_identifier_token7] = ACTIONS(2015), - [aux_sym_cmd_identifier_token8] = ACTIONS(2015), - [aux_sym_cmd_identifier_token9] = ACTIONS(2015), - [aux_sym_cmd_identifier_token10] = ACTIONS(2015), - [aux_sym_cmd_identifier_token11] = ACTIONS(2015), - [aux_sym_cmd_identifier_token12] = ACTIONS(2015), - [aux_sym_cmd_identifier_token13] = ACTIONS(2015), - [aux_sym_cmd_identifier_token14] = ACTIONS(2015), - [aux_sym_cmd_identifier_token15] = ACTIONS(2015), - [aux_sym_cmd_identifier_token16] = ACTIONS(2015), - [aux_sym_cmd_identifier_token17] = ACTIONS(2015), - [aux_sym_cmd_identifier_token18] = ACTIONS(2015), - [aux_sym_cmd_identifier_token19] = ACTIONS(2015), - [aux_sym_cmd_identifier_token20] = ACTIONS(2015), - [aux_sym_cmd_identifier_token21] = ACTIONS(2015), - [aux_sym_cmd_identifier_token22] = ACTIONS(2015), - [aux_sym_cmd_identifier_token23] = ACTIONS(2015), - [aux_sym_cmd_identifier_token24] = ACTIONS(2015), - [aux_sym_cmd_identifier_token25] = ACTIONS(2015), - [aux_sym_cmd_identifier_token26] = ACTIONS(2015), - [aux_sym_cmd_identifier_token27] = ACTIONS(2015), - [aux_sym_cmd_identifier_token28] = ACTIONS(2015), - [aux_sym_cmd_identifier_token29] = ACTIONS(2015), - [aux_sym_cmd_identifier_token30] = ACTIONS(2015), - [aux_sym_cmd_identifier_token31] = ACTIONS(2015), - [aux_sym_cmd_identifier_token32] = ACTIONS(2015), - [aux_sym_cmd_identifier_token33] = ACTIONS(2015), - [aux_sym_cmd_identifier_token34] = ACTIONS(2015), - [aux_sym_cmd_identifier_token35] = ACTIONS(2015), - [aux_sym_cmd_identifier_token36] = ACTIONS(2015), - [anon_sym_true] = ACTIONS(2017), - [anon_sym_false] = ACTIONS(2017), - [anon_sym_null] = ACTIONS(2017), - [aux_sym_cmd_identifier_token38] = ACTIONS(2015), - [aux_sym_cmd_identifier_token39] = ACTIONS(2017), - [aux_sym_cmd_identifier_token40] = ACTIONS(2017), - [anon_sym_def] = ACTIONS(2015), - [anon_sym_export_DASHenv] = ACTIONS(2015), - [anon_sym_extern] = ACTIONS(2015), - [anon_sym_module] = ACTIONS(2015), - [anon_sym_use] = ACTIONS(2015), - [anon_sym_LPAREN] = ACTIONS(2017), - [anon_sym_DOLLAR] = ACTIONS(2017), - [anon_sym_error] = ACTIONS(2015), - [anon_sym_list] = ACTIONS(2015), - [anon_sym_DASH] = ACTIONS(2015), - [anon_sym_break] = ACTIONS(2015), - [anon_sym_continue] = ACTIONS(2015), - [anon_sym_for] = ACTIONS(2015), - [anon_sym_in] = ACTIONS(2015), - [anon_sym_loop] = ACTIONS(2015), - [anon_sym_make] = ACTIONS(2015), - [anon_sym_while] = ACTIONS(2015), - [anon_sym_do] = ACTIONS(2015), - [anon_sym_if] = ACTIONS(2015), - [anon_sym_else] = ACTIONS(2015), - [anon_sym_match] = ACTIONS(2015), - [anon_sym_RBRACE] = ACTIONS(2017), - [anon_sym_try] = ACTIONS(2015), - [anon_sym_catch] = ACTIONS(2015), - [anon_sym_return] = ACTIONS(2015), - [anon_sym_source] = ACTIONS(2015), - [anon_sym_source_DASHenv] = ACTIONS(2015), - [anon_sym_register] = ACTIONS(2015), - [anon_sym_hide] = ACTIONS(2015), - [anon_sym_hide_DASHenv] = ACTIONS(2015), - [anon_sym_overlay] = ACTIONS(2015), - [anon_sym_new] = ACTIONS(2015), - [anon_sym_as] = ACTIONS(2015), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2017), - [anon_sym_DOT_DOT2] = ACTIONS(2259), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2261), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2261), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2017), - [aux_sym__val_number_decimal_token1] = ACTIONS(2015), - [aux_sym__val_number_decimal_token2] = ACTIONS(2017), - [aux_sym__val_number_decimal_token3] = ACTIONS(2017), - [aux_sym__val_number_decimal_token4] = ACTIONS(2017), - [aux_sym__val_number_token1] = ACTIONS(2017), - [aux_sym__val_number_token2] = ACTIONS(2017), - [aux_sym__val_number_token3] = ACTIONS(2017), - [anon_sym_DQUOTE] = ACTIONS(2017), - [sym__str_single_quotes] = ACTIONS(2017), - [sym__str_back_ticks] = ACTIONS(2017), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2017), - [anon_sym_PLUS] = ACTIONS(2015), - [anon_sym_POUND] = ACTIONS(247), - }, - [477] = { - [sym_comment] = STATE(477), - [anon_sym_export] = ACTIONS(1667), - [anon_sym_alias] = ACTIONS(1667), - [anon_sym_let] = ACTIONS(1667), - [anon_sym_let_DASHenv] = ACTIONS(1667), - [anon_sym_mut] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1667), - [aux_sym_cmd_identifier_token1] = ACTIONS(1667), - [aux_sym_cmd_identifier_token2] = ACTIONS(1667), - [aux_sym_cmd_identifier_token3] = ACTIONS(1667), - [aux_sym_cmd_identifier_token4] = ACTIONS(1667), - [aux_sym_cmd_identifier_token5] = ACTIONS(1667), - [aux_sym_cmd_identifier_token6] = ACTIONS(1667), - [aux_sym_cmd_identifier_token7] = ACTIONS(1667), - [aux_sym_cmd_identifier_token8] = ACTIONS(1667), - [aux_sym_cmd_identifier_token9] = ACTIONS(1667), - [aux_sym_cmd_identifier_token10] = ACTIONS(1667), - [aux_sym_cmd_identifier_token11] = ACTIONS(1667), - [aux_sym_cmd_identifier_token12] = ACTIONS(1667), - [aux_sym_cmd_identifier_token13] = ACTIONS(1667), - [aux_sym_cmd_identifier_token14] = ACTIONS(1667), - [aux_sym_cmd_identifier_token15] = ACTIONS(1667), - [aux_sym_cmd_identifier_token16] = ACTIONS(1667), - [aux_sym_cmd_identifier_token17] = ACTIONS(1667), - [aux_sym_cmd_identifier_token18] = ACTIONS(1667), - [aux_sym_cmd_identifier_token19] = ACTIONS(1667), - [aux_sym_cmd_identifier_token20] = ACTIONS(1667), - [aux_sym_cmd_identifier_token21] = ACTIONS(1667), - [aux_sym_cmd_identifier_token22] = ACTIONS(1667), - [aux_sym_cmd_identifier_token23] = ACTIONS(1667), - [aux_sym_cmd_identifier_token24] = ACTIONS(1667), - [aux_sym_cmd_identifier_token25] = ACTIONS(1667), - [aux_sym_cmd_identifier_token26] = ACTIONS(1667), - [aux_sym_cmd_identifier_token27] = ACTIONS(1667), - [aux_sym_cmd_identifier_token28] = ACTIONS(1667), - [aux_sym_cmd_identifier_token29] = ACTIONS(1667), - [aux_sym_cmd_identifier_token30] = ACTIONS(1667), - [aux_sym_cmd_identifier_token31] = ACTIONS(1667), - [aux_sym_cmd_identifier_token32] = ACTIONS(1667), - [aux_sym_cmd_identifier_token33] = ACTIONS(1667), - [aux_sym_cmd_identifier_token34] = ACTIONS(1667), - [aux_sym_cmd_identifier_token35] = ACTIONS(1667), - [aux_sym_cmd_identifier_token36] = ACTIONS(1667), - [anon_sym_true] = ACTIONS(1667), - [anon_sym_false] = ACTIONS(1667), - [anon_sym_null] = ACTIONS(1667), - [aux_sym_cmd_identifier_token38] = ACTIONS(1667), - [aux_sym_cmd_identifier_token39] = ACTIONS(1667), - [aux_sym_cmd_identifier_token40] = ACTIONS(1667), - [anon_sym_def] = ACTIONS(1667), - [anon_sym_export_DASHenv] = ACTIONS(1667), - [anon_sym_extern] = ACTIONS(1667), - [anon_sym_module] = ACTIONS(1667), - [anon_sym_use] = ACTIONS(1667), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_DOLLAR] = ACTIONS(1667), - [anon_sym_error] = ACTIONS(1667), - [anon_sym_list] = ACTIONS(1667), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_break] = ACTIONS(1667), - [anon_sym_continue] = ACTIONS(1667), - [anon_sym_for] = ACTIONS(1667), - [anon_sym_in] = ACTIONS(1667), - [anon_sym_loop] = ACTIONS(1667), - [anon_sym_make] = ACTIONS(1667), - [anon_sym_while] = ACTIONS(1667), - [anon_sym_do] = ACTIONS(1667), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_else] = ACTIONS(1667), - [anon_sym_match] = ACTIONS(1667), - [anon_sym_RBRACE] = ACTIONS(1667), - [anon_sym_try] = ACTIONS(1667), - [anon_sym_catch] = ACTIONS(1667), - [anon_sym_return] = ACTIONS(1667), - [anon_sym_source] = ACTIONS(1667), - [anon_sym_source_DASHenv] = ACTIONS(1667), - [anon_sym_register] = ACTIONS(1667), - [anon_sym_hide] = ACTIONS(1667), - [anon_sym_hide_DASHenv] = ACTIONS(1667), - [anon_sym_overlay] = ACTIONS(1667), - [anon_sym_new] = ACTIONS(1667), - [anon_sym_as] = ACTIONS(1667), - [anon_sym_LPAREN2] = ACTIONS(1669), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1667), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1667), - [aux_sym__val_number_decimal_token1] = ACTIONS(1667), - [aux_sym__val_number_decimal_token2] = ACTIONS(1667), - [aux_sym__val_number_decimal_token3] = ACTIONS(1667), - [aux_sym__val_number_decimal_token4] = ACTIONS(1667), - [aux_sym__val_number_token1] = ACTIONS(1667), - [aux_sym__val_number_token2] = ACTIONS(1667), - [aux_sym__val_number_token3] = ACTIONS(1667), - [anon_sym_DQUOTE] = ACTIONS(1667), - [sym__str_single_quotes] = ACTIONS(1667), - [sym__str_back_ticks] = ACTIONS(1667), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1667), - [sym__entry_separator] = ACTIONS(1669), - [anon_sym_PLUS] = ACTIONS(1667), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1044), }, - [478] = { - [sym_comment] = STATE(478), - [anon_sym_export] = ACTIONS(1659), - [anon_sym_alias] = ACTIONS(1659), - [anon_sym_let] = ACTIONS(1659), - [anon_sym_let_DASHenv] = ACTIONS(1659), - [anon_sym_mut] = ACTIONS(1659), - [anon_sym_const] = ACTIONS(1659), - [aux_sym_cmd_identifier_token1] = ACTIONS(1659), - [aux_sym_cmd_identifier_token2] = ACTIONS(1659), - [aux_sym_cmd_identifier_token3] = ACTIONS(1659), - [aux_sym_cmd_identifier_token4] = ACTIONS(1659), - [aux_sym_cmd_identifier_token5] = ACTIONS(1659), - [aux_sym_cmd_identifier_token6] = ACTIONS(1659), - [aux_sym_cmd_identifier_token7] = ACTIONS(1659), - [aux_sym_cmd_identifier_token8] = ACTIONS(1659), - [aux_sym_cmd_identifier_token9] = ACTIONS(1659), - [aux_sym_cmd_identifier_token10] = ACTIONS(1659), - [aux_sym_cmd_identifier_token11] = ACTIONS(1659), - [aux_sym_cmd_identifier_token12] = ACTIONS(1659), - [aux_sym_cmd_identifier_token13] = ACTIONS(1659), - [aux_sym_cmd_identifier_token14] = ACTIONS(1659), - [aux_sym_cmd_identifier_token15] = ACTIONS(1659), - [aux_sym_cmd_identifier_token16] = ACTIONS(1659), - [aux_sym_cmd_identifier_token17] = ACTIONS(1659), - [aux_sym_cmd_identifier_token18] = ACTIONS(1659), - [aux_sym_cmd_identifier_token19] = ACTIONS(1659), - [aux_sym_cmd_identifier_token20] = ACTIONS(1659), - [aux_sym_cmd_identifier_token21] = ACTIONS(1659), - [aux_sym_cmd_identifier_token22] = ACTIONS(1659), - [aux_sym_cmd_identifier_token23] = ACTIONS(1659), - [aux_sym_cmd_identifier_token24] = ACTIONS(1659), - [aux_sym_cmd_identifier_token25] = ACTIONS(1659), - [aux_sym_cmd_identifier_token26] = ACTIONS(1659), - [aux_sym_cmd_identifier_token27] = ACTIONS(1659), - [aux_sym_cmd_identifier_token28] = ACTIONS(1659), - [aux_sym_cmd_identifier_token29] = ACTIONS(1659), - [aux_sym_cmd_identifier_token30] = ACTIONS(1659), - [aux_sym_cmd_identifier_token31] = ACTIONS(1659), - [aux_sym_cmd_identifier_token32] = ACTIONS(1659), - [aux_sym_cmd_identifier_token33] = ACTIONS(1659), - [aux_sym_cmd_identifier_token34] = ACTIONS(1659), - [aux_sym_cmd_identifier_token35] = ACTIONS(1659), - [aux_sym_cmd_identifier_token36] = ACTIONS(1659), - [anon_sym_true] = ACTIONS(1659), - [anon_sym_false] = ACTIONS(1659), - [anon_sym_null] = ACTIONS(1659), - [aux_sym_cmd_identifier_token38] = ACTIONS(1659), - [aux_sym_cmd_identifier_token39] = ACTIONS(1659), - [aux_sym_cmd_identifier_token40] = ACTIONS(1659), - [anon_sym_def] = ACTIONS(1659), - [anon_sym_export_DASHenv] = ACTIONS(1659), - [anon_sym_extern] = ACTIONS(1659), - [anon_sym_module] = ACTIONS(1659), - [anon_sym_use] = ACTIONS(1659), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_DOLLAR] = ACTIONS(1659), - [anon_sym_error] = ACTIONS(1659), - [anon_sym_list] = ACTIONS(1659), - [anon_sym_DASH] = ACTIONS(1659), - [anon_sym_break] = ACTIONS(1659), - [anon_sym_continue] = ACTIONS(1659), - [anon_sym_for] = ACTIONS(1659), - [anon_sym_in] = ACTIONS(1659), - [anon_sym_loop] = ACTIONS(1659), - [anon_sym_make] = ACTIONS(1659), - [anon_sym_while] = ACTIONS(1659), - [anon_sym_do] = ACTIONS(1659), - [anon_sym_if] = ACTIONS(1659), - [anon_sym_else] = ACTIONS(1659), - [anon_sym_match] = ACTIONS(1659), - [anon_sym_RBRACE] = ACTIONS(1659), - [anon_sym_try] = ACTIONS(1659), - [anon_sym_catch] = ACTIONS(1659), - [anon_sym_return] = ACTIONS(1659), - [anon_sym_source] = ACTIONS(1659), - [anon_sym_source_DASHenv] = ACTIONS(1659), - [anon_sym_register] = ACTIONS(1659), - [anon_sym_hide] = ACTIONS(1659), - [anon_sym_hide_DASHenv] = ACTIONS(1659), - [anon_sym_overlay] = ACTIONS(1659), - [anon_sym_new] = ACTIONS(1659), - [anon_sym_as] = ACTIONS(1659), - [anon_sym_LPAREN2] = ACTIONS(1661), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1659), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1659), - [aux_sym__val_number_decimal_token1] = ACTIONS(1659), - [aux_sym__val_number_decimal_token2] = ACTIONS(1659), - [aux_sym__val_number_decimal_token3] = ACTIONS(1659), - [aux_sym__val_number_decimal_token4] = ACTIONS(1659), - [aux_sym__val_number_token1] = ACTIONS(1659), - [aux_sym__val_number_token2] = ACTIONS(1659), - [aux_sym__val_number_token3] = ACTIONS(1659), - [anon_sym_DQUOTE] = ACTIONS(1659), - [sym__str_single_quotes] = ACTIONS(1659), - [sym__str_back_ticks] = ACTIONS(1659), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1659), - [sym__entry_separator] = ACTIONS(1661), - [anon_sym_PLUS] = ACTIONS(1659), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1659), + [428] = { + [sym_comment] = STATE(428), + [anon_sym_export] = ACTIONS(1715), + [anon_sym_alias] = ACTIONS(1715), + [anon_sym_let] = ACTIONS(1715), + [anon_sym_let_DASHenv] = ACTIONS(1715), + [anon_sym_mut] = ACTIONS(1715), + [anon_sym_const] = ACTIONS(1715), + [aux_sym_cmd_identifier_token1] = ACTIONS(1715), + [aux_sym_cmd_identifier_token2] = ACTIONS(1715), + [aux_sym_cmd_identifier_token3] = ACTIONS(1715), + [aux_sym_cmd_identifier_token4] = ACTIONS(1715), + [aux_sym_cmd_identifier_token5] = ACTIONS(1715), + [aux_sym_cmd_identifier_token6] = ACTIONS(1715), + [aux_sym_cmd_identifier_token7] = ACTIONS(1715), + [aux_sym_cmd_identifier_token8] = ACTIONS(1715), + [aux_sym_cmd_identifier_token9] = ACTIONS(1715), + [aux_sym_cmd_identifier_token10] = ACTIONS(1715), + [aux_sym_cmd_identifier_token11] = ACTIONS(1715), + [aux_sym_cmd_identifier_token12] = ACTIONS(1715), + [aux_sym_cmd_identifier_token13] = ACTIONS(1715), + [aux_sym_cmd_identifier_token14] = ACTIONS(1715), + [aux_sym_cmd_identifier_token15] = ACTIONS(1715), + [aux_sym_cmd_identifier_token16] = ACTIONS(1715), + [aux_sym_cmd_identifier_token17] = ACTIONS(1715), + [aux_sym_cmd_identifier_token18] = ACTIONS(1715), + [aux_sym_cmd_identifier_token19] = ACTIONS(1715), + [aux_sym_cmd_identifier_token20] = ACTIONS(1715), + [aux_sym_cmd_identifier_token21] = ACTIONS(1715), + [aux_sym_cmd_identifier_token22] = ACTIONS(1715), + [aux_sym_cmd_identifier_token23] = ACTIONS(1715), + [aux_sym_cmd_identifier_token24] = ACTIONS(1715), + [aux_sym_cmd_identifier_token25] = ACTIONS(1715), + [aux_sym_cmd_identifier_token26] = ACTIONS(1715), + [aux_sym_cmd_identifier_token27] = ACTIONS(1715), + [aux_sym_cmd_identifier_token28] = ACTIONS(1715), + [aux_sym_cmd_identifier_token29] = ACTIONS(1715), + [aux_sym_cmd_identifier_token30] = ACTIONS(1715), + [aux_sym_cmd_identifier_token31] = ACTIONS(1715), + [aux_sym_cmd_identifier_token32] = ACTIONS(1715), + [aux_sym_cmd_identifier_token33] = ACTIONS(1715), + [aux_sym_cmd_identifier_token34] = ACTIONS(1715), + [aux_sym_cmd_identifier_token35] = ACTIONS(1715), + [aux_sym_cmd_identifier_token36] = ACTIONS(1715), + [anon_sym_true] = ACTIONS(1715), + [anon_sym_false] = ACTIONS(1715), + [anon_sym_null] = ACTIONS(1715), + [aux_sym_cmd_identifier_token38] = ACTIONS(1715), + [aux_sym_cmd_identifier_token39] = ACTIONS(1715), + [aux_sym_cmd_identifier_token40] = ACTIONS(1715), + [anon_sym_def] = ACTIONS(1715), + [anon_sym_export_DASHenv] = ACTIONS(1715), + [anon_sym_extern] = ACTIONS(1715), + [anon_sym_module] = ACTIONS(1715), + [anon_sym_use] = ACTIONS(1715), + [anon_sym_LPAREN] = ACTIONS(1715), + [anon_sym_DOLLAR] = ACTIONS(1715), + [anon_sym_error] = ACTIONS(1715), + [anon_sym_list] = ACTIONS(1715), + [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_break] = ACTIONS(1715), + [anon_sym_continue] = ACTIONS(1715), + [anon_sym_for] = ACTIONS(1715), + [anon_sym_in] = ACTIONS(1715), + [anon_sym_loop] = ACTIONS(1715), + [anon_sym_make] = ACTIONS(1715), + [anon_sym_while] = ACTIONS(1715), + [anon_sym_do] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1715), + [anon_sym_else] = ACTIONS(1715), + [anon_sym_match] = ACTIONS(1715), + [anon_sym_RBRACE] = ACTIONS(1715), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_catch] = ACTIONS(1715), + [anon_sym_return] = ACTIONS(1715), + [anon_sym_source] = ACTIONS(1715), + [anon_sym_source_DASHenv] = ACTIONS(1715), + [anon_sym_register] = ACTIONS(1715), + [anon_sym_hide] = ACTIONS(1715), + [anon_sym_hide_DASHenv] = ACTIONS(1715), + [anon_sym_overlay] = ACTIONS(1715), + [anon_sym_new] = ACTIONS(1715), + [anon_sym_as] = ACTIONS(1715), + [anon_sym_LPAREN2] = ACTIONS(1717), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1715), + [aux_sym__immediate_decimal_token2] = ACTIONS(1919), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1715), + [aux_sym__val_number_decimal_token1] = ACTIONS(1715), + [aux_sym__val_number_decimal_token2] = ACTIONS(1715), + [aux_sym__val_number_decimal_token3] = ACTIONS(1715), + [aux_sym__val_number_decimal_token4] = ACTIONS(1715), + [aux_sym__val_number_token1] = ACTIONS(1715), + [aux_sym__val_number_token2] = ACTIONS(1715), + [aux_sym__val_number_token3] = ACTIONS(1715), + [anon_sym_DQUOTE] = ACTIONS(1715), + [sym__str_single_quotes] = ACTIONS(1715), + [sym__str_back_ticks] = ACTIONS(1715), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1715), + [sym__entry_separator] = ACTIONS(1717), + [anon_sym_PLUS] = ACTIONS(1715), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1715), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1717), }, - [479] = { - [sym_comment] = STATE(479), - [anon_sym_export] = ACTIONS(1721), - [anon_sym_alias] = ACTIONS(1721), - [anon_sym_let] = ACTIONS(1721), - [anon_sym_let_DASHenv] = ACTIONS(1721), - [anon_sym_mut] = ACTIONS(1721), - [anon_sym_const] = ACTIONS(1721), - [aux_sym_cmd_identifier_token1] = ACTIONS(1721), - [aux_sym_cmd_identifier_token2] = ACTIONS(1721), - [aux_sym_cmd_identifier_token3] = ACTIONS(1721), - [aux_sym_cmd_identifier_token4] = ACTIONS(1721), - [aux_sym_cmd_identifier_token5] = ACTIONS(1721), - [aux_sym_cmd_identifier_token6] = ACTIONS(1721), - [aux_sym_cmd_identifier_token7] = ACTIONS(1721), - [aux_sym_cmd_identifier_token8] = ACTIONS(1721), - [aux_sym_cmd_identifier_token9] = ACTIONS(1721), - [aux_sym_cmd_identifier_token10] = ACTIONS(1721), - [aux_sym_cmd_identifier_token11] = ACTIONS(1721), - [aux_sym_cmd_identifier_token12] = ACTIONS(1721), - [aux_sym_cmd_identifier_token13] = ACTIONS(1721), - [aux_sym_cmd_identifier_token14] = ACTIONS(1721), - [aux_sym_cmd_identifier_token15] = ACTIONS(1721), - [aux_sym_cmd_identifier_token16] = ACTIONS(1721), - [aux_sym_cmd_identifier_token17] = ACTIONS(1721), - [aux_sym_cmd_identifier_token18] = ACTIONS(1721), - [aux_sym_cmd_identifier_token19] = ACTIONS(1721), - [aux_sym_cmd_identifier_token20] = ACTIONS(1721), - [aux_sym_cmd_identifier_token21] = ACTIONS(1721), - [aux_sym_cmd_identifier_token22] = ACTIONS(1721), - [aux_sym_cmd_identifier_token23] = ACTIONS(1721), - [aux_sym_cmd_identifier_token24] = ACTIONS(1721), - [aux_sym_cmd_identifier_token25] = ACTIONS(1721), - [aux_sym_cmd_identifier_token26] = ACTIONS(1721), - [aux_sym_cmd_identifier_token27] = ACTIONS(1721), - [aux_sym_cmd_identifier_token28] = ACTIONS(1721), - [aux_sym_cmd_identifier_token29] = ACTIONS(1721), - [aux_sym_cmd_identifier_token30] = ACTIONS(1721), - [aux_sym_cmd_identifier_token31] = ACTIONS(1721), - [aux_sym_cmd_identifier_token32] = ACTIONS(1721), - [aux_sym_cmd_identifier_token33] = ACTIONS(1721), - [aux_sym_cmd_identifier_token34] = ACTIONS(1721), - [aux_sym_cmd_identifier_token35] = ACTIONS(1721), - [aux_sym_cmd_identifier_token36] = ACTIONS(1721), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [anon_sym_null] = ACTIONS(1721), - [aux_sym_cmd_identifier_token38] = ACTIONS(1721), - [aux_sym_cmd_identifier_token39] = ACTIONS(1721), - [aux_sym_cmd_identifier_token40] = ACTIONS(1721), - [anon_sym_def] = ACTIONS(1721), - [anon_sym_export_DASHenv] = ACTIONS(1721), - [anon_sym_extern] = ACTIONS(1721), - [anon_sym_module] = ACTIONS(1721), - [anon_sym_use] = ACTIONS(1721), - [anon_sym_LPAREN] = ACTIONS(1721), - [anon_sym_DOLLAR] = ACTIONS(1721), - [anon_sym_error] = ACTIONS(1721), - [anon_sym_list] = ACTIONS(1721), - [anon_sym_DASH] = ACTIONS(1721), - [anon_sym_break] = ACTIONS(1721), - [anon_sym_continue] = ACTIONS(1721), - [anon_sym_for] = ACTIONS(1721), - [anon_sym_in] = ACTIONS(1721), - [anon_sym_loop] = ACTIONS(1721), - [anon_sym_make] = ACTIONS(1721), - [anon_sym_while] = ACTIONS(1721), - [anon_sym_do] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1721), - [anon_sym_else] = ACTIONS(1721), - [anon_sym_match] = ACTIONS(1721), - [anon_sym_RBRACE] = ACTIONS(1721), - [anon_sym_try] = ACTIONS(1721), - [anon_sym_catch] = ACTIONS(1721), - [anon_sym_return] = ACTIONS(1721), - [anon_sym_source] = ACTIONS(1721), - [anon_sym_source_DASHenv] = ACTIONS(1721), - [anon_sym_register] = ACTIONS(1721), - [anon_sym_hide] = ACTIONS(1721), - [anon_sym_hide_DASHenv] = ACTIONS(1721), - [anon_sym_overlay] = ACTIONS(1721), - [anon_sym_new] = ACTIONS(1721), - [anon_sym_as] = ACTIONS(1721), - [anon_sym_LPAREN2] = ACTIONS(1723), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1721), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1721), - [aux_sym__val_number_decimal_token1] = ACTIONS(1721), - [aux_sym__val_number_decimal_token2] = ACTIONS(1721), - [aux_sym__val_number_decimal_token3] = ACTIONS(1721), - [aux_sym__val_number_decimal_token4] = ACTIONS(1721), - [aux_sym__val_number_token1] = ACTIONS(1721), - [aux_sym__val_number_token2] = ACTIONS(1721), - [aux_sym__val_number_token3] = ACTIONS(1721), - [anon_sym_DQUOTE] = ACTIONS(1721), - [sym__str_single_quotes] = ACTIONS(1721), - [sym__str_back_ticks] = ACTIONS(1721), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1721), - [sym__entry_separator] = ACTIONS(1723), - [anon_sym_PLUS] = ACTIONS(1721), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1721), - [anon_sym_POUND] = ACTIONS(3), + [429] = { + [sym_comment] = STATE(429), + [anon_sym_export] = ACTIONS(1058), + [anon_sym_alias] = ACTIONS(1058), + [anon_sym_let] = ACTIONS(1058), + [anon_sym_let_DASHenv] = ACTIONS(1058), + [anon_sym_mut] = ACTIONS(1058), + [anon_sym_const] = ACTIONS(1058), + [aux_sym_cmd_identifier_token1] = ACTIONS(1058), + [aux_sym_cmd_identifier_token2] = ACTIONS(1058), + [aux_sym_cmd_identifier_token3] = ACTIONS(1058), + [aux_sym_cmd_identifier_token4] = ACTIONS(1058), + [aux_sym_cmd_identifier_token5] = ACTIONS(1058), + [aux_sym_cmd_identifier_token6] = ACTIONS(1058), + [aux_sym_cmd_identifier_token7] = ACTIONS(1058), + [aux_sym_cmd_identifier_token8] = ACTIONS(1058), + [aux_sym_cmd_identifier_token9] = ACTIONS(1058), + [aux_sym_cmd_identifier_token10] = ACTIONS(1058), + [aux_sym_cmd_identifier_token11] = ACTIONS(1058), + [aux_sym_cmd_identifier_token12] = ACTIONS(1058), + [aux_sym_cmd_identifier_token13] = ACTIONS(1058), + [aux_sym_cmd_identifier_token14] = ACTIONS(1058), + [aux_sym_cmd_identifier_token15] = ACTIONS(1058), + [aux_sym_cmd_identifier_token16] = ACTIONS(1058), + [aux_sym_cmd_identifier_token17] = ACTIONS(1058), + [aux_sym_cmd_identifier_token18] = ACTIONS(1058), + [aux_sym_cmd_identifier_token19] = ACTIONS(1058), + [aux_sym_cmd_identifier_token20] = ACTIONS(1058), + [aux_sym_cmd_identifier_token21] = ACTIONS(1058), + [aux_sym_cmd_identifier_token22] = ACTIONS(1058), + [aux_sym_cmd_identifier_token23] = ACTIONS(1058), + [aux_sym_cmd_identifier_token24] = ACTIONS(1058), + [aux_sym_cmd_identifier_token25] = ACTIONS(1058), + [aux_sym_cmd_identifier_token26] = ACTIONS(1058), + [aux_sym_cmd_identifier_token27] = ACTIONS(1058), + [aux_sym_cmd_identifier_token28] = ACTIONS(1058), + [aux_sym_cmd_identifier_token29] = ACTIONS(1058), + [aux_sym_cmd_identifier_token30] = ACTIONS(1058), + [aux_sym_cmd_identifier_token31] = ACTIONS(1058), + [aux_sym_cmd_identifier_token32] = ACTIONS(1058), + [aux_sym_cmd_identifier_token33] = ACTIONS(1058), + [aux_sym_cmd_identifier_token34] = ACTIONS(1058), + [aux_sym_cmd_identifier_token35] = ACTIONS(1058), + [aux_sym_cmd_identifier_token36] = ACTIONS(1058), + [anon_sym_true] = ACTIONS(1060), + [anon_sym_false] = ACTIONS(1060), + [anon_sym_null] = ACTIONS(1060), + [aux_sym_cmd_identifier_token38] = ACTIONS(1058), + [aux_sym_cmd_identifier_token39] = ACTIONS(1060), + [aux_sym_cmd_identifier_token40] = ACTIONS(1060), + [anon_sym_def] = ACTIONS(1058), + [anon_sym_export_DASHenv] = ACTIONS(1058), + [anon_sym_extern] = ACTIONS(1058), + [anon_sym_module] = ACTIONS(1058), + [anon_sym_use] = ACTIONS(1058), + [anon_sym_LPAREN] = ACTIONS(1060), + [anon_sym_COMMA] = ACTIONS(1060), + [anon_sym_DOLLAR] = ACTIONS(1060), + [anon_sym_error] = ACTIONS(1058), + [anon_sym_list] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1058), + [anon_sym_break] = ACTIONS(1058), + [anon_sym_continue] = ACTIONS(1058), + [anon_sym_for] = ACTIONS(1058), + [anon_sym_in] = ACTIONS(1058), + [anon_sym_loop] = ACTIONS(1058), + [anon_sym_make] = ACTIONS(1058), + [anon_sym_while] = ACTIONS(1058), + [anon_sym_do] = ACTIONS(1058), + [anon_sym_if] = ACTIONS(1058), + [anon_sym_else] = ACTIONS(1058), + [anon_sym_match] = ACTIONS(1058), + [anon_sym_RBRACE] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1058), + [anon_sym_catch] = ACTIONS(1058), + [anon_sym_return] = ACTIONS(1058), + [anon_sym_source] = ACTIONS(1058), + [anon_sym_source_DASHenv] = ACTIONS(1058), + [anon_sym_register] = ACTIONS(1058), + [anon_sym_hide] = ACTIONS(1058), + [anon_sym_hide_DASHenv] = ACTIONS(1058), + [anon_sym_overlay] = ACTIONS(1058), + [anon_sym_new] = ACTIONS(1058), + [anon_sym_as] = ACTIONS(1058), + [anon_sym_QMARK2] = ACTIONS(1060), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1060), + [anon_sym_DOT] = ACTIONS(1058), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1060), + [aux_sym__val_number_decimal_token1] = ACTIONS(1058), + [aux_sym__val_number_decimal_token2] = ACTIONS(1060), + [aux_sym__val_number_decimal_token3] = ACTIONS(1060), + [aux_sym__val_number_decimal_token4] = ACTIONS(1060), + [aux_sym__val_number_token1] = ACTIONS(1060), + [aux_sym__val_number_token2] = ACTIONS(1060), + [aux_sym__val_number_token3] = ACTIONS(1060), + [anon_sym_DQUOTE] = ACTIONS(1060), + [sym__str_single_quotes] = ACTIONS(1060), + [sym__str_back_ticks] = ACTIONS(1060), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1060), + [aux_sym_record_entry_token1] = ACTIONS(1060), + [anon_sym_PLUS] = ACTIONS(1058), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1060), }, - [480] = { - [sym_comment] = STATE(480), - [anon_sym_export] = ACTIONS(1738), - [anon_sym_alias] = ACTIONS(1738), - [anon_sym_let] = ACTIONS(1738), - [anon_sym_let_DASHenv] = ACTIONS(1738), - [anon_sym_mut] = ACTIONS(1738), - [anon_sym_const] = ACTIONS(1738), - [aux_sym_cmd_identifier_token1] = ACTIONS(1738), - [aux_sym_cmd_identifier_token2] = ACTIONS(1738), - [aux_sym_cmd_identifier_token3] = ACTIONS(1738), - [aux_sym_cmd_identifier_token4] = ACTIONS(1738), - [aux_sym_cmd_identifier_token5] = ACTIONS(1738), - [aux_sym_cmd_identifier_token6] = ACTIONS(1738), - [aux_sym_cmd_identifier_token7] = ACTIONS(1738), - [aux_sym_cmd_identifier_token8] = ACTIONS(1738), - [aux_sym_cmd_identifier_token9] = ACTIONS(1738), - [aux_sym_cmd_identifier_token10] = ACTIONS(1738), - [aux_sym_cmd_identifier_token11] = ACTIONS(1738), - [aux_sym_cmd_identifier_token12] = ACTIONS(1738), - [aux_sym_cmd_identifier_token13] = ACTIONS(1738), - [aux_sym_cmd_identifier_token14] = ACTIONS(1738), - [aux_sym_cmd_identifier_token15] = ACTIONS(1738), - [aux_sym_cmd_identifier_token16] = ACTIONS(1738), - [aux_sym_cmd_identifier_token17] = ACTIONS(1738), - [aux_sym_cmd_identifier_token18] = ACTIONS(1738), - [aux_sym_cmd_identifier_token19] = ACTIONS(1738), - [aux_sym_cmd_identifier_token20] = ACTIONS(1738), - [aux_sym_cmd_identifier_token21] = ACTIONS(1738), - [aux_sym_cmd_identifier_token22] = ACTIONS(1738), - [aux_sym_cmd_identifier_token23] = ACTIONS(1738), - [aux_sym_cmd_identifier_token24] = ACTIONS(1738), - [aux_sym_cmd_identifier_token25] = ACTIONS(1738), - [aux_sym_cmd_identifier_token26] = ACTIONS(1738), - [aux_sym_cmd_identifier_token27] = ACTIONS(1738), - [aux_sym_cmd_identifier_token28] = ACTIONS(1738), - [aux_sym_cmd_identifier_token29] = ACTIONS(1738), - [aux_sym_cmd_identifier_token30] = ACTIONS(1738), - [aux_sym_cmd_identifier_token31] = ACTIONS(1738), - [aux_sym_cmd_identifier_token32] = ACTIONS(1738), - [aux_sym_cmd_identifier_token33] = ACTIONS(1738), - [aux_sym_cmd_identifier_token34] = ACTIONS(1738), - [aux_sym_cmd_identifier_token35] = ACTIONS(1738), - [aux_sym_cmd_identifier_token36] = ACTIONS(1738), - [anon_sym_true] = ACTIONS(1738), - [anon_sym_false] = ACTIONS(1738), - [anon_sym_null] = ACTIONS(1738), - [aux_sym_cmd_identifier_token38] = ACTIONS(1738), - [aux_sym_cmd_identifier_token39] = ACTIONS(1738), - [aux_sym_cmd_identifier_token40] = ACTIONS(1738), - [anon_sym_def] = ACTIONS(1738), - [anon_sym_export_DASHenv] = ACTIONS(1738), - [anon_sym_extern] = ACTIONS(1738), - [anon_sym_module] = ACTIONS(1738), - [anon_sym_use] = ACTIONS(1738), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_DOLLAR] = ACTIONS(1738), - [anon_sym_error] = ACTIONS(1738), - [anon_sym_list] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_break] = ACTIONS(1738), - [anon_sym_continue] = ACTIONS(1738), - [anon_sym_for] = ACTIONS(1738), - [anon_sym_in] = ACTIONS(1738), - [anon_sym_loop] = ACTIONS(1738), - [anon_sym_make] = ACTIONS(1738), - [anon_sym_while] = ACTIONS(1738), - [anon_sym_do] = ACTIONS(1738), - [anon_sym_if] = ACTIONS(1738), - [anon_sym_else] = ACTIONS(1738), - [anon_sym_match] = ACTIONS(1738), - [anon_sym_RBRACE] = ACTIONS(1738), - [anon_sym_try] = ACTIONS(1738), - [anon_sym_catch] = ACTIONS(1738), - [anon_sym_return] = ACTIONS(1738), - [anon_sym_source] = ACTIONS(1738), - [anon_sym_source_DASHenv] = ACTIONS(1738), - [anon_sym_register] = ACTIONS(1738), - [anon_sym_hide] = ACTIONS(1738), - [anon_sym_hide_DASHenv] = ACTIONS(1738), - [anon_sym_overlay] = ACTIONS(1738), - [anon_sym_new] = ACTIONS(1738), - [anon_sym_as] = ACTIONS(1738), - [anon_sym_LPAREN2] = ACTIONS(1740), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1738), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1738), - [aux_sym__val_number_decimal_token1] = ACTIONS(1738), - [aux_sym__val_number_decimal_token2] = ACTIONS(1738), - [aux_sym__val_number_decimal_token3] = ACTIONS(1738), - [aux_sym__val_number_decimal_token4] = ACTIONS(1738), - [aux_sym__val_number_token1] = ACTIONS(1738), - [aux_sym__val_number_token2] = ACTIONS(1738), - [aux_sym__val_number_token3] = ACTIONS(1738), - [anon_sym_DQUOTE] = ACTIONS(1738), - [sym__str_single_quotes] = ACTIONS(1738), - [sym__str_back_ticks] = ACTIONS(1738), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1738), - [sym__entry_separator] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1738), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1738), + [430] = { + [sym_comment] = STATE(430), + [anon_sym_export] = ACTIONS(2196), + [anon_sym_alias] = ACTIONS(2196), + [anon_sym_let] = ACTIONS(2196), + [anon_sym_let_DASHenv] = ACTIONS(2196), + [anon_sym_mut] = ACTIONS(2196), + [anon_sym_const] = ACTIONS(2196), + [aux_sym_cmd_identifier_token1] = ACTIONS(2196), + [aux_sym_cmd_identifier_token2] = ACTIONS(2196), + [aux_sym_cmd_identifier_token3] = ACTIONS(2196), + [aux_sym_cmd_identifier_token4] = ACTIONS(2196), + [aux_sym_cmd_identifier_token5] = ACTIONS(2196), + [aux_sym_cmd_identifier_token6] = ACTIONS(2196), + [aux_sym_cmd_identifier_token7] = ACTIONS(2196), + [aux_sym_cmd_identifier_token8] = ACTIONS(2196), + [aux_sym_cmd_identifier_token9] = ACTIONS(2196), + [aux_sym_cmd_identifier_token10] = ACTIONS(2196), + [aux_sym_cmd_identifier_token11] = ACTIONS(2196), + [aux_sym_cmd_identifier_token12] = ACTIONS(2196), + [aux_sym_cmd_identifier_token13] = ACTIONS(2196), + [aux_sym_cmd_identifier_token14] = ACTIONS(2196), + [aux_sym_cmd_identifier_token15] = ACTIONS(2196), + [aux_sym_cmd_identifier_token16] = ACTIONS(2196), + [aux_sym_cmd_identifier_token17] = ACTIONS(2196), + [aux_sym_cmd_identifier_token18] = ACTIONS(2196), + [aux_sym_cmd_identifier_token19] = ACTIONS(2196), + [aux_sym_cmd_identifier_token20] = ACTIONS(2196), + [aux_sym_cmd_identifier_token21] = ACTIONS(2196), + [aux_sym_cmd_identifier_token22] = ACTIONS(2196), + [aux_sym_cmd_identifier_token23] = ACTIONS(2196), + [aux_sym_cmd_identifier_token24] = ACTIONS(2196), + [aux_sym_cmd_identifier_token25] = ACTIONS(2196), + [aux_sym_cmd_identifier_token26] = ACTIONS(2196), + [aux_sym_cmd_identifier_token27] = ACTIONS(2196), + [aux_sym_cmd_identifier_token28] = ACTIONS(2196), + [aux_sym_cmd_identifier_token29] = ACTIONS(2196), + [aux_sym_cmd_identifier_token30] = ACTIONS(2196), + [aux_sym_cmd_identifier_token31] = ACTIONS(2196), + [aux_sym_cmd_identifier_token32] = ACTIONS(2196), + [aux_sym_cmd_identifier_token33] = ACTIONS(2196), + [aux_sym_cmd_identifier_token34] = ACTIONS(2196), + [aux_sym_cmd_identifier_token35] = ACTIONS(2196), + [aux_sym_cmd_identifier_token36] = ACTIONS(2196), + [anon_sym_true] = ACTIONS(2196), + [anon_sym_false] = ACTIONS(2196), + [anon_sym_null] = ACTIONS(2196), + [aux_sym_cmd_identifier_token38] = ACTIONS(2196), + [aux_sym_cmd_identifier_token39] = ACTIONS(2196), + [aux_sym_cmd_identifier_token40] = ACTIONS(2196), + [anon_sym_def] = ACTIONS(2196), + [anon_sym_export_DASHenv] = ACTIONS(2196), + [anon_sym_extern] = ACTIONS(2196), + [anon_sym_module] = ACTIONS(2196), + [anon_sym_use] = ACTIONS(2196), + [anon_sym_LPAREN] = ACTIONS(2196), + [anon_sym_DOLLAR] = ACTIONS(2196), + [anon_sym_error] = ACTIONS(2196), + [anon_sym_list] = ACTIONS(2196), + [anon_sym_DASH] = ACTIONS(2196), + [anon_sym_break] = ACTIONS(2196), + [anon_sym_continue] = ACTIONS(2196), + [anon_sym_for] = ACTIONS(2196), + [anon_sym_in] = ACTIONS(2196), + [anon_sym_loop] = ACTIONS(2196), + [anon_sym_make] = ACTIONS(2196), + [anon_sym_while] = ACTIONS(2196), + [anon_sym_do] = ACTIONS(2196), + [anon_sym_if] = ACTIONS(2196), + [anon_sym_else] = ACTIONS(2196), + [anon_sym_match] = ACTIONS(2196), + [anon_sym_RBRACE] = ACTIONS(2196), + [anon_sym_try] = ACTIONS(2196), + [anon_sym_catch] = ACTIONS(2196), + [anon_sym_return] = ACTIONS(2196), + [anon_sym_source] = ACTIONS(2196), + [anon_sym_source_DASHenv] = ACTIONS(2196), + [anon_sym_register] = ACTIONS(2196), + [anon_sym_hide] = ACTIONS(2196), + [anon_sym_hide_DASHenv] = ACTIONS(2196), + [anon_sym_overlay] = ACTIONS(2196), + [anon_sym_new] = ACTIONS(2196), + [anon_sym_as] = ACTIONS(2196), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2196), + [anon_sym_DOT_DOT2] = ACTIONS(2109), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2111), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2111), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2196), + [aux_sym__val_number_decimal_token1] = ACTIONS(2196), + [aux_sym__val_number_decimal_token2] = ACTIONS(2196), + [aux_sym__val_number_decimal_token3] = ACTIONS(2196), + [aux_sym__val_number_decimal_token4] = ACTIONS(2196), + [aux_sym__val_number_token1] = ACTIONS(2196), + [aux_sym__val_number_token2] = ACTIONS(2196), + [aux_sym__val_number_token3] = ACTIONS(2196), + [anon_sym_DQUOTE] = ACTIONS(2196), + [sym__str_single_quotes] = ACTIONS(2196), + [sym__str_back_ticks] = ACTIONS(2196), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2196), + [sym__entry_separator] = ACTIONS(2198), + [anon_sym_PLUS] = ACTIONS(2196), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2198), }, - [481] = { - [sym_comment] = STATE(481), - [anon_sym_export] = ACTIONS(1659), - [anon_sym_alias] = ACTIONS(1659), - [anon_sym_let] = ACTIONS(1659), - [anon_sym_let_DASHenv] = ACTIONS(1659), - [anon_sym_mut] = ACTIONS(1659), - [anon_sym_const] = ACTIONS(1659), - [aux_sym_cmd_identifier_token1] = ACTIONS(1659), - [aux_sym_cmd_identifier_token2] = ACTIONS(1659), - [aux_sym_cmd_identifier_token3] = ACTIONS(1659), - [aux_sym_cmd_identifier_token4] = ACTIONS(1659), - [aux_sym_cmd_identifier_token5] = ACTIONS(1659), - [aux_sym_cmd_identifier_token6] = ACTIONS(1659), - [aux_sym_cmd_identifier_token7] = ACTIONS(1659), - [aux_sym_cmd_identifier_token8] = ACTIONS(1659), - [aux_sym_cmd_identifier_token9] = ACTIONS(1659), - [aux_sym_cmd_identifier_token10] = ACTIONS(1659), - [aux_sym_cmd_identifier_token11] = ACTIONS(1659), - [aux_sym_cmd_identifier_token12] = ACTIONS(1659), - [aux_sym_cmd_identifier_token13] = ACTIONS(1659), - [aux_sym_cmd_identifier_token14] = ACTIONS(1659), - [aux_sym_cmd_identifier_token15] = ACTIONS(1659), - [aux_sym_cmd_identifier_token16] = ACTIONS(1659), - [aux_sym_cmd_identifier_token17] = ACTIONS(1659), - [aux_sym_cmd_identifier_token18] = ACTIONS(1659), - [aux_sym_cmd_identifier_token19] = ACTIONS(1659), - [aux_sym_cmd_identifier_token20] = ACTIONS(1659), - [aux_sym_cmd_identifier_token21] = ACTIONS(1659), - [aux_sym_cmd_identifier_token22] = ACTIONS(1659), - [aux_sym_cmd_identifier_token23] = ACTIONS(1659), - [aux_sym_cmd_identifier_token24] = ACTIONS(1659), - [aux_sym_cmd_identifier_token25] = ACTIONS(1659), - [aux_sym_cmd_identifier_token26] = ACTIONS(1659), - [aux_sym_cmd_identifier_token27] = ACTIONS(1659), - [aux_sym_cmd_identifier_token28] = ACTIONS(1659), - [aux_sym_cmd_identifier_token29] = ACTIONS(1659), - [aux_sym_cmd_identifier_token30] = ACTIONS(1659), - [aux_sym_cmd_identifier_token31] = ACTIONS(1659), - [aux_sym_cmd_identifier_token32] = ACTIONS(1659), - [aux_sym_cmd_identifier_token33] = ACTIONS(1659), - [aux_sym_cmd_identifier_token34] = ACTIONS(1659), - [aux_sym_cmd_identifier_token35] = ACTIONS(1659), - [aux_sym_cmd_identifier_token36] = ACTIONS(1659), - [anon_sym_true] = ACTIONS(1659), - [anon_sym_false] = ACTIONS(1659), - [anon_sym_null] = ACTIONS(1659), - [aux_sym_cmd_identifier_token38] = ACTIONS(1659), - [aux_sym_cmd_identifier_token39] = ACTIONS(1659), - [aux_sym_cmd_identifier_token40] = ACTIONS(1659), - [anon_sym_def] = ACTIONS(1659), - [anon_sym_export_DASHenv] = ACTIONS(1659), - [anon_sym_extern] = ACTIONS(1659), - [anon_sym_module] = ACTIONS(1659), - [anon_sym_use] = ACTIONS(1659), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_DOLLAR] = ACTIONS(1659), - [anon_sym_error] = ACTIONS(1659), - [anon_sym_list] = ACTIONS(1659), - [anon_sym_DASH] = ACTIONS(1659), - [anon_sym_break] = ACTIONS(1659), - [anon_sym_continue] = ACTIONS(1659), - [anon_sym_for] = ACTIONS(1659), - [anon_sym_in] = ACTIONS(1659), - [anon_sym_loop] = ACTIONS(1659), - [anon_sym_make] = ACTIONS(1659), - [anon_sym_while] = ACTIONS(1659), - [anon_sym_do] = ACTIONS(1659), - [anon_sym_if] = ACTIONS(1659), - [anon_sym_else] = ACTIONS(1659), - [anon_sym_match] = ACTIONS(1659), - [anon_sym_RBRACE] = ACTIONS(1659), - [anon_sym_try] = ACTIONS(1659), - [anon_sym_catch] = ACTIONS(1659), - [anon_sym_return] = ACTIONS(1659), - [anon_sym_source] = ACTIONS(1659), - [anon_sym_source_DASHenv] = ACTIONS(1659), - [anon_sym_register] = ACTIONS(1659), - [anon_sym_hide] = ACTIONS(1659), - [anon_sym_hide_DASHenv] = ACTIONS(1659), - [anon_sym_overlay] = ACTIONS(1659), - [anon_sym_new] = ACTIONS(1659), - [anon_sym_as] = ACTIONS(1659), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1659), - [aux_sym__immediate_decimal_token1] = ACTIONS(2263), - [aux_sym__immediate_decimal_token2] = ACTIONS(2265), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1659), - [aux_sym__val_number_decimal_token1] = ACTIONS(1659), - [aux_sym__val_number_decimal_token2] = ACTIONS(1659), - [aux_sym__val_number_decimal_token3] = ACTIONS(1659), - [aux_sym__val_number_decimal_token4] = ACTIONS(1659), - [aux_sym__val_number_token1] = ACTIONS(1659), - [aux_sym__val_number_token2] = ACTIONS(1659), - [aux_sym__val_number_token3] = ACTIONS(1659), - [anon_sym_DQUOTE] = ACTIONS(1659), - [sym__str_single_quotes] = ACTIONS(1659), - [sym__str_back_ticks] = ACTIONS(1659), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1659), - [sym__entry_separator] = ACTIONS(1661), - [anon_sym_PLUS] = ACTIONS(1659), - [anon_sym_POUND] = ACTIONS(3), + [431] = { + [sym_comment] = STATE(431), + [anon_sym_export] = ACTIONS(1066), + [anon_sym_alias] = ACTIONS(1066), + [anon_sym_let] = ACTIONS(1066), + [anon_sym_let_DASHenv] = ACTIONS(1066), + [anon_sym_mut] = ACTIONS(1066), + [anon_sym_const] = ACTIONS(1066), + [aux_sym_cmd_identifier_token1] = ACTIONS(1066), + [aux_sym_cmd_identifier_token2] = ACTIONS(1066), + [aux_sym_cmd_identifier_token3] = ACTIONS(1066), + [aux_sym_cmd_identifier_token4] = ACTIONS(1066), + [aux_sym_cmd_identifier_token5] = ACTIONS(1066), + [aux_sym_cmd_identifier_token6] = ACTIONS(1066), + [aux_sym_cmd_identifier_token7] = ACTIONS(1066), + [aux_sym_cmd_identifier_token8] = ACTIONS(1066), + [aux_sym_cmd_identifier_token9] = ACTIONS(1066), + [aux_sym_cmd_identifier_token10] = ACTIONS(1066), + [aux_sym_cmd_identifier_token11] = ACTIONS(1066), + [aux_sym_cmd_identifier_token12] = ACTIONS(1066), + [aux_sym_cmd_identifier_token13] = ACTIONS(1066), + [aux_sym_cmd_identifier_token14] = ACTIONS(1066), + [aux_sym_cmd_identifier_token15] = ACTIONS(1066), + [aux_sym_cmd_identifier_token16] = ACTIONS(1066), + [aux_sym_cmd_identifier_token17] = ACTIONS(1066), + [aux_sym_cmd_identifier_token18] = ACTIONS(1066), + [aux_sym_cmd_identifier_token19] = ACTIONS(1066), + [aux_sym_cmd_identifier_token20] = ACTIONS(1066), + [aux_sym_cmd_identifier_token21] = ACTIONS(1066), + [aux_sym_cmd_identifier_token22] = ACTIONS(1066), + [aux_sym_cmd_identifier_token23] = ACTIONS(1066), + [aux_sym_cmd_identifier_token24] = ACTIONS(1066), + [aux_sym_cmd_identifier_token25] = ACTIONS(1066), + [aux_sym_cmd_identifier_token26] = ACTIONS(1066), + [aux_sym_cmd_identifier_token27] = ACTIONS(1066), + [aux_sym_cmd_identifier_token28] = ACTIONS(1066), + [aux_sym_cmd_identifier_token29] = ACTIONS(1066), + [aux_sym_cmd_identifier_token30] = ACTIONS(1066), + [aux_sym_cmd_identifier_token31] = ACTIONS(1066), + [aux_sym_cmd_identifier_token32] = ACTIONS(1066), + [aux_sym_cmd_identifier_token33] = ACTIONS(1066), + [aux_sym_cmd_identifier_token34] = ACTIONS(1066), + [aux_sym_cmd_identifier_token35] = ACTIONS(1066), + [aux_sym_cmd_identifier_token36] = ACTIONS(1066), + [anon_sym_true] = ACTIONS(1068), + [anon_sym_false] = ACTIONS(1068), + [anon_sym_null] = ACTIONS(1068), + [aux_sym_cmd_identifier_token38] = ACTIONS(1066), + [aux_sym_cmd_identifier_token39] = ACTIONS(1068), + [aux_sym_cmd_identifier_token40] = ACTIONS(1068), + [anon_sym_def] = ACTIONS(1066), + [anon_sym_export_DASHenv] = ACTIONS(1066), + [anon_sym_extern] = ACTIONS(1066), + [anon_sym_module] = ACTIONS(1066), + [anon_sym_use] = ACTIONS(1066), + [anon_sym_LPAREN] = ACTIONS(1068), + [anon_sym_DOLLAR] = ACTIONS(1068), + [anon_sym_error] = ACTIONS(1066), + [anon_sym_list] = ACTIONS(1066), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_break] = ACTIONS(1066), + [anon_sym_continue] = ACTIONS(1066), + [anon_sym_for] = ACTIONS(1066), + [anon_sym_in] = ACTIONS(1066), + [anon_sym_loop] = ACTIONS(1066), + [anon_sym_make] = ACTIONS(1066), + [anon_sym_while] = ACTIONS(1066), + [anon_sym_do] = ACTIONS(1066), + [anon_sym_if] = ACTIONS(1066), + [anon_sym_else] = ACTIONS(1066), + [anon_sym_match] = ACTIONS(1066), + [anon_sym_RBRACE] = ACTIONS(1068), + [anon_sym_try] = ACTIONS(1066), + [anon_sym_catch] = ACTIONS(1066), + [anon_sym_return] = ACTIONS(1066), + [anon_sym_source] = ACTIONS(1066), + [anon_sym_source_DASHenv] = ACTIONS(1066), + [anon_sym_register] = ACTIONS(1066), + [anon_sym_hide] = ACTIONS(1066), + [anon_sym_hide_DASHenv] = ACTIONS(1066), + [anon_sym_overlay] = ACTIONS(1066), + [anon_sym_new] = ACTIONS(1066), + [anon_sym_as] = ACTIONS(1066), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1068), + [anon_sym_DOT_DOT2] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(1066), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1068), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1068), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1068), + [aux_sym__val_number_decimal_token1] = ACTIONS(1066), + [aux_sym__val_number_decimal_token2] = ACTIONS(1068), + [aux_sym__val_number_decimal_token3] = ACTIONS(1068), + [aux_sym__val_number_decimal_token4] = ACTIONS(1068), + [aux_sym__val_number_token1] = ACTIONS(1068), + [aux_sym__val_number_token2] = ACTIONS(1068), + [aux_sym__val_number_token3] = ACTIONS(1068), + [anon_sym_DQUOTE] = ACTIONS(1068), + [sym__str_single_quotes] = ACTIONS(1068), + [sym__str_back_ticks] = ACTIONS(1068), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1068), + [anon_sym_PLUS] = ACTIONS(1066), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1068), }, - [482] = { - [sym_comment] = STATE(482), - [anon_sym_export] = ACTIONS(1667), - [anon_sym_alias] = ACTIONS(1667), - [anon_sym_let] = ACTIONS(1667), - [anon_sym_let_DASHenv] = ACTIONS(1667), - [anon_sym_mut] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1667), - [aux_sym_cmd_identifier_token1] = ACTIONS(1667), - [aux_sym_cmd_identifier_token2] = ACTIONS(1667), - [aux_sym_cmd_identifier_token3] = ACTIONS(1667), - [aux_sym_cmd_identifier_token4] = ACTIONS(1667), - [aux_sym_cmd_identifier_token5] = ACTIONS(1667), - [aux_sym_cmd_identifier_token6] = ACTIONS(1667), - [aux_sym_cmd_identifier_token7] = ACTIONS(1667), - [aux_sym_cmd_identifier_token8] = ACTIONS(1667), - [aux_sym_cmd_identifier_token9] = ACTIONS(1667), - [aux_sym_cmd_identifier_token10] = ACTIONS(1667), - [aux_sym_cmd_identifier_token11] = ACTIONS(1667), - [aux_sym_cmd_identifier_token12] = ACTIONS(1667), - [aux_sym_cmd_identifier_token13] = ACTIONS(1667), - [aux_sym_cmd_identifier_token14] = ACTIONS(1667), - [aux_sym_cmd_identifier_token15] = ACTIONS(1667), - [aux_sym_cmd_identifier_token16] = ACTIONS(1667), - [aux_sym_cmd_identifier_token17] = ACTIONS(1667), - [aux_sym_cmd_identifier_token18] = ACTIONS(1667), - [aux_sym_cmd_identifier_token19] = ACTIONS(1667), - [aux_sym_cmd_identifier_token20] = ACTIONS(1667), - [aux_sym_cmd_identifier_token21] = ACTIONS(1667), - [aux_sym_cmd_identifier_token22] = ACTIONS(1667), - [aux_sym_cmd_identifier_token23] = ACTIONS(1667), - [aux_sym_cmd_identifier_token24] = ACTIONS(1667), - [aux_sym_cmd_identifier_token25] = ACTIONS(1667), - [aux_sym_cmd_identifier_token26] = ACTIONS(1667), - [aux_sym_cmd_identifier_token27] = ACTIONS(1667), - [aux_sym_cmd_identifier_token28] = ACTIONS(1667), - [aux_sym_cmd_identifier_token29] = ACTIONS(1667), - [aux_sym_cmd_identifier_token30] = ACTIONS(1667), - [aux_sym_cmd_identifier_token31] = ACTIONS(1667), - [aux_sym_cmd_identifier_token32] = ACTIONS(1667), - [aux_sym_cmd_identifier_token33] = ACTIONS(1667), - [aux_sym_cmd_identifier_token34] = ACTIONS(1667), - [aux_sym_cmd_identifier_token35] = ACTIONS(1667), - [aux_sym_cmd_identifier_token36] = ACTIONS(1667), - [anon_sym_true] = ACTIONS(1667), - [anon_sym_false] = ACTIONS(1667), - [anon_sym_null] = ACTIONS(1667), - [aux_sym_cmd_identifier_token38] = ACTIONS(1667), - [aux_sym_cmd_identifier_token39] = ACTIONS(1667), - [aux_sym_cmd_identifier_token40] = ACTIONS(1667), - [anon_sym_def] = ACTIONS(1667), - [anon_sym_export_DASHenv] = ACTIONS(1667), - [anon_sym_extern] = ACTIONS(1667), - [anon_sym_module] = ACTIONS(1667), - [anon_sym_use] = ACTIONS(1667), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_DOLLAR] = ACTIONS(1667), - [anon_sym_error] = ACTIONS(1667), - [anon_sym_list] = ACTIONS(1667), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_break] = ACTIONS(1667), - [anon_sym_continue] = ACTIONS(1667), - [anon_sym_for] = ACTIONS(1667), - [anon_sym_in] = ACTIONS(1667), - [anon_sym_loop] = ACTIONS(1667), - [anon_sym_make] = ACTIONS(1667), - [anon_sym_while] = ACTIONS(1667), - [anon_sym_do] = ACTIONS(1667), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_else] = ACTIONS(1667), - [anon_sym_match] = ACTIONS(1667), - [anon_sym_RBRACE] = ACTIONS(1667), - [anon_sym_try] = ACTIONS(1667), - [anon_sym_catch] = ACTIONS(1667), - [anon_sym_return] = ACTIONS(1667), - [anon_sym_source] = ACTIONS(1667), - [anon_sym_source_DASHenv] = ACTIONS(1667), - [anon_sym_register] = ACTIONS(1667), - [anon_sym_hide] = ACTIONS(1667), - [anon_sym_hide_DASHenv] = ACTIONS(1667), - [anon_sym_overlay] = ACTIONS(1667), - [anon_sym_new] = ACTIONS(1667), - [anon_sym_as] = ACTIONS(1667), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1667), - [anon_sym_DOT] = ACTIONS(2267), - [aux_sym__immediate_decimal_token2] = ACTIONS(2269), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1667), - [aux_sym__val_number_decimal_token1] = ACTIONS(1667), - [aux_sym__val_number_decimal_token2] = ACTIONS(1667), - [aux_sym__val_number_decimal_token3] = ACTIONS(1667), - [aux_sym__val_number_decimal_token4] = ACTIONS(1667), - [aux_sym__val_number_token1] = ACTIONS(1667), - [aux_sym__val_number_token2] = ACTIONS(1667), - [aux_sym__val_number_token3] = ACTIONS(1667), - [anon_sym_DQUOTE] = ACTIONS(1667), - [sym__str_single_quotes] = ACTIONS(1667), - [sym__str_back_ticks] = ACTIONS(1667), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1667), - [sym__entry_separator] = ACTIONS(1669), - [anon_sym_PLUS] = ACTIONS(1667), + [432] = { + [sym_comment] = STATE(432), + [anon_sym_export] = ACTIONS(1670), + [anon_sym_alias] = ACTIONS(1670), + [anon_sym_let] = ACTIONS(1670), + [anon_sym_let_DASHenv] = ACTIONS(1670), + [anon_sym_mut] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(1670), + [aux_sym_cmd_identifier_token1] = ACTIONS(1670), + [aux_sym_cmd_identifier_token2] = ACTIONS(1670), + [aux_sym_cmd_identifier_token3] = ACTIONS(1670), + [aux_sym_cmd_identifier_token4] = ACTIONS(1670), + [aux_sym_cmd_identifier_token5] = ACTIONS(1670), + [aux_sym_cmd_identifier_token6] = ACTIONS(1670), + [aux_sym_cmd_identifier_token7] = ACTIONS(1670), + [aux_sym_cmd_identifier_token8] = ACTIONS(1670), + [aux_sym_cmd_identifier_token9] = ACTIONS(1670), + [aux_sym_cmd_identifier_token10] = ACTIONS(1670), + [aux_sym_cmd_identifier_token11] = ACTIONS(1670), + [aux_sym_cmd_identifier_token12] = ACTIONS(1670), + [aux_sym_cmd_identifier_token13] = ACTIONS(1670), + [aux_sym_cmd_identifier_token14] = ACTIONS(1670), + [aux_sym_cmd_identifier_token15] = ACTIONS(1670), + [aux_sym_cmd_identifier_token16] = ACTIONS(1670), + [aux_sym_cmd_identifier_token17] = ACTIONS(1670), + [aux_sym_cmd_identifier_token18] = ACTIONS(1670), + [aux_sym_cmd_identifier_token19] = ACTIONS(1670), + [aux_sym_cmd_identifier_token20] = ACTIONS(1670), + [aux_sym_cmd_identifier_token21] = ACTIONS(1670), + [aux_sym_cmd_identifier_token22] = ACTIONS(1670), + [aux_sym_cmd_identifier_token23] = ACTIONS(1670), + [aux_sym_cmd_identifier_token24] = ACTIONS(1670), + [aux_sym_cmd_identifier_token25] = ACTIONS(1670), + [aux_sym_cmd_identifier_token26] = ACTIONS(1670), + [aux_sym_cmd_identifier_token27] = ACTIONS(1670), + [aux_sym_cmd_identifier_token28] = ACTIONS(1670), + [aux_sym_cmd_identifier_token29] = ACTIONS(1670), + [aux_sym_cmd_identifier_token30] = ACTIONS(1670), + [aux_sym_cmd_identifier_token31] = ACTIONS(1670), + [aux_sym_cmd_identifier_token32] = ACTIONS(1670), + [aux_sym_cmd_identifier_token33] = ACTIONS(1670), + [aux_sym_cmd_identifier_token34] = ACTIONS(1670), + [aux_sym_cmd_identifier_token35] = ACTIONS(1670), + [aux_sym_cmd_identifier_token36] = ACTIONS(1670), + [anon_sym_true] = ACTIONS(1670), + [anon_sym_false] = ACTIONS(1670), + [anon_sym_null] = ACTIONS(1670), + [aux_sym_cmd_identifier_token38] = ACTIONS(1670), + [aux_sym_cmd_identifier_token39] = ACTIONS(1670), + [aux_sym_cmd_identifier_token40] = ACTIONS(1670), + [anon_sym_def] = ACTIONS(1670), + [anon_sym_export_DASHenv] = ACTIONS(1670), + [anon_sym_extern] = ACTIONS(1670), + [anon_sym_module] = ACTIONS(1670), + [anon_sym_use] = ACTIONS(1670), + [anon_sym_LPAREN] = ACTIONS(1670), + [anon_sym_DOLLAR] = ACTIONS(1670), + [anon_sym_error] = ACTIONS(1670), + [anon_sym_list] = ACTIONS(1670), + [anon_sym_DASH] = ACTIONS(1670), + [anon_sym_break] = ACTIONS(1670), + [anon_sym_continue] = ACTIONS(1670), + [anon_sym_for] = ACTIONS(1670), + [anon_sym_in] = ACTIONS(1670), + [anon_sym_loop] = ACTIONS(1670), + [anon_sym_make] = ACTIONS(1670), + [anon_sym_while] = ACTIONS(1670), + [anon_sym_do] = ACTIONS(1670), + [anon_sym_if] = ACTIONS(1670), + [anon_sym_else] = ACTIONS(1670), + [anon_sym_match] = ACTIONS(1670), + [anon_sym_RBRACE] = ACTIONS(1670), + [anon_sym_try] = ACTIONS(1670), + [anon_sym_catch] = ACTIONS(1670), + [anon_sym_return] = ACTIONS(1670), + [anon_sym_source] = ACTIONS(1670), + [anon_sym_source_DASHenv] = ACTIONS(1670), + [anon_sym_register] = ACTIONS(1670), + [anon_sym_hide] = ACTIONS(1670), + [anon_sym_hide_DASHenv] = ACTIONS(1670), + [anon_sym_overlay] = ACTIONS(1670), + [anon_sym_new] = ACTIONS(1670), + [anon_sym_as] = ACTIONS(1670), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1670), + [anon_sym_DOT_DOT2] = ACTIONS(1670), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1672), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1672), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1670), + [aux_sym__val_number_decimal_token1] = ACTIONS(1670), + [aux_sym__val_number_decimal_token2] = ACTIONS(1670), + [aux_sym__val_number_decimal_token3] = ACTIONS(1670), + [aux_sym__val_number_decimal_token4] = ACTIONS(1670), + [aux_sym__val_number_token1] = ACTIONS(1670), + [aux_sym__val_number_token2] = ACTIONS(1670), + [aux_sym__val_number_token3] = ACTIONS(1670), + [anon_sym_DQUOTE] = ACTIONS(1670), + [sym__str_single_quotes] = ACTIONS(1670), + [sym__str_back_ticks] = ACTIONS(1670), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1670), + [sym__entry_separator] = ACTIONS(1672), + [anon_sym_PLUS] = ACTIONS(1670), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1672), }, - [483] = { - [sym_comment] = STATE(483), - [anon_sym_export] = ACTIONS(1991), - [anon_sym_alias] = ACTIONS(1991), - [anon_sym_let] = ACTIONS(1991), - [anon_sym_let_DASHenv] = ACTIONS(1991), - [anon_sym_mut] = ACTIONS(1991), - [anon_sym_const] = ACTIONS(1991), - [aux_sym_cmd_identifier_token1] = ACTIONS(1991), - [aux_sym_cmd_identifier_token2] = ACTIONS(1991), - [aux_sym_cmd_identifier_token3] = ACTIONS(1991), - [aux_sym_cmd_identifier_token4] = ACTIONS(1991), - [aux_sym_cmd_identifier_token5] = ACTIONS(1991), - [aux_sym_cmd_identifier_token6] = ACTIONS(1991), - [aux_sym_cmd_identifier_token7] = ACTIONS(1991), - [aux_sym_cmd_identifier_token8] = ACTIONS(1991), - [aux_sym_cmd_identifier_token9] = ACTIONS(1991), - [aux_sym_cmd_identifier_token10] = ACTIONS(1991), - [aux_sym_cmd_identifier_token11] = ACTIONS(1991), - [aux_sym_cmd_identifier_token12] = ACTIONS(1991), - [aux_sym_cmd_identifier_token13] = ACTIONS(1991), - [aux_sym_cmd_identifier_token14] = ACTIONS(1991), - [aux_sym_cmd_identifier_token15] = ACTIONS(1991), - [aux_sym_cmd_identifier_token16] = ACTIONS(1991), - [aux_sym_cmd_identifier_token17] = ACTIONS(1991), - [aux_sym_cmd_identifier_token18] = ACTIONS(1991), - [aux_sym_cmd_identifier_token19] = ACTIONS(1991), - [aux_sym_cmd_identifier_token20] = ACTIONS(1991), - [aux_sym_cmd_identifier_token21] = ACTIONS(1991), - [aux_sym_cmd_identifier_token22] = ACTIONS(1991), - [aux_sym_cmd_identifier_token23] = ACTIONS(1991), - [aux_sym_cmd_identifier_token24] = ACTIONS(1991), - [aux_sym_cmd_identifier_token25] = ACTIONS(1991), - [aux_sym_cmd_identifier_token26] = ACTIONS(1991), - [aux_sym_cmd_identifier_token27] = ACTIONS(1991), - [aux_sym_cmd_identifier_token28] = ACTIONS(1991), - [aux_sym_cmd_identifier_token29] = ACTIONS(1991), - [aux_sym_cmd_identifier_token30] = ACTIONS(1991), - [aux_sym_cmd_identifier_token31] = ACTIONS(1991), - [aux_sym_cmd_identifier_token32] = ACTIONS(1991), - [aux_sym_cmd_identifier_token33] = ACTIONS(1991), - [aux_sym_cmd_identifier_token34] = ACTIONS(1991), - [aux_sym_cmd_identifier_token35] = ACTIONS(1991), - [aux_sym_cmd_identifier_token36] = ACTIONS(1991), - [anon_sym_true] = ACTIONS(1997), - [anon_sym_false] = ACTIONS(1997), - [anon_sym_null] = ACTIONS(1997), - [aux_sym_cmd_identifier_token38] = ACTIONS(1991), - [aux_sym_cmd_identifier_token39] = ACTIONS(1997), - [aux_sym_cmd_identifier_token40] = ACTIONS(1997), - [anon_sym_def] = ACTIONS(1991), - [anon_sym_export_DASHenv] = ACTIONS(1991), - [anon_sym_extern] = ACTIONS(1991), - [anon_sym_module] = ACTIONS(1991), - [anon_sym_use] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1997), - [anon_sym_DOLLAR] = ACTIONS(1997), - [anon_sym_error] = ACTIONS(1991), - [anon_sym_list] = ACTIONS(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_break] = ACTIONS(1991), - [anon_sym_continue] = ACTIONS(1991), - [anon_sym_for] = ACTIONS(1991), - [anon_sym_in] = ACTIONS(1991), - [anon_sym_loop] = ACTIONS(1991), - [anon_sym_make] = ACTIONS(1991), - [anon_sym_while] = ACTIONS(1991), - [anon_sym_do] = ACTIONS(1991), - [anon_sym_if] = ACTIONS(1991), - [anon_sym_else] = ACTIONS(1991), - [anon_sym_match] = ACTIONS(1991), - [anon_sym_RBRACE] = ACTIONS(1997), - [anon_sym_try] = ACTIONS(1991), - [anon_sym_catch] = ACTIONS(1991), - [anon_sym_return] = ACTIONS(1991), - [anon_sym_source] = ACTIONS(1991), - [anon_sym_source_DASHenv] = ACTIONS(1991), - [anon_sym_register] = ACTIONS(1991), - [anon_sym_hide] = ACTIONS(1991), - [anon_sym_hide_DASHenv] = ACTIONS(1991), - [anon_sym_overlay] = ACTIONS(1991), - [anon_sym_new] = ACTIONS(1991), - [anon_sym_as] = ACTIONS(1991), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1997), - [anon_sym_DOT_DOT2] = ACTIONS(2271), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2273), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2273), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1997), - [aux_sym__val_number_decimal_token1] = ACTIONS(1991), - [aux_sym__val_number_decimal_token2] = ACTIONS(1997), - [aux_sym__val_number_decimal_token3] = ACTIONS(1997), - [aux_sym__val_number_decimal_token4] = ACTIONS(1997), - [aux_sym__val_number_token1] = ACTIONS(1997), - [aux_sym__val_number_token2] = ACTIONS(1997), - [aux_sym__val_number_token3] = ACTIONS(1997), - [anon_sym_DQUOTE] = ACTIONS(1997), - [sym__str_single_quotes] = ACTIONS(1997), - [sym__str_back_ticks] = ACTIONS(1997), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1997), - [anon_sym_PLUS] = ACTIONS(1991), - [anon_sym_POUND] = ACTIONS(247), - }, - [484] = { - [sym_comment] = STATE(484), - [anon_sym_export] = ACTIONS(1999), - [anon_sym_alias] = ACTIONS(1999), - [anon_sym_let] = ACTIONS(1999), - [anon_sym_let_DASHenv] = ACTIONS(1999), - [anon_sym_mut] = ACTIONS(1999), - [anon_sym_const] = ACTIONS(1999), - [aux_sym_cmd_identifier_token1] = ACTIONS(1999), - [aux_sym_cmd_identifier_token2] = ACTIONS(1999), - [aux_sym_cmd_identifier_token3] = ACTIONS(1999), - [aux_sym_cmd_identifier_token4] = ACTIONS(1999), - [aux_sym_cmd_identifier_token5] = ACTIONS(1999), - [aux_sym_cmd_identifier_token6] = ACTIONS(1999), - [aux_sym_cmd_identifier_token7] = ACTIONS(1999), - [aux_sym_cmd_identifier_token8] = ACTIONS(1999), - [aux_sym_cmd_identifier_token9] = ACTIONS(1999), - [aux_sym_cmd_identifier_token10] = ACTIONS(1999), - [aux_sym_cmd_identifier_token11] = ACTIONS(1999), - [aux_sym_cmd_identifier_token12] = ACTIONS(1999), - [aux_sym_cmd_identifier_token13] = ACTIONS(1999), - [aux_sym_cmd_identifier_token14] = ACTIONS(1999), - [aux_sym_cmd_identifier_token15] = ACTIONS(1999), - [aux_sym_cmd_identifier_token16] = ACTIONS(1999), - [aux_sym_cmd_identifier_token17] = ACTIONS(1999), - [aux_sym_cmd_identifier_token18] = ACTIONS(1999), - [aux_sym_cmd_identifier_token19] = ACTIONS(1999), - [aux_sym_cmd_identifier_token20] = ACTIONS(1999), - [aux_sym_cmd_identifier_token21] = ACTIONS(1999), - [aux_sym_cmd_identifier_token22] = ACTIONS(1999), - [aux_sym_cmd_identifier_token23] = ACTIONS(1999), - [aux_sym_cmd_identifier_token24] = ACTIONS(1999), - [aux_sym_cmd_identifier_token25] = ACTIONS(1999), - [aux_sym_cmd_identifier_token26] = ACTIONS(1999), - [aux_sym_cmd_identifier_token27] = ACTIONS(1999), - [aux_sym_cmd_identifier_token28] = ACTIONS(1999), - [aux_sym_cmd_identifier_token29] = ACTIONS(1999), - [aux_sym_cmd_identifier_token30] = ACTIONS(1999), - [aux_sym_cmd_identifier_token31] = ACTIONS(1999), - [aux_sym_cmd_identifier_token32] = ACTIONS(1999), - [aux_sym_cmd_identifier_token33] = ACTIONS(1999), - [aux_sym_cmd_identifier_token34] = ACTIONS(1999), - [aux_sym_cmd_identifier_token35] = ACTIONS(1999), - [aux_sym_cmd_identifier_token36] = ACTIONS(1999), - [anon_sym_true] = ACTIONS(2005), - [anon_sym_false] = ACTIONS(2005), - [anon_sym_null] = ACTIONS(2005), - [aux_sym_cmd_identifier_token38] = ACTIONS(1999), - [aux_sym_cmd_identifier_token39] = ACTIONS(2005), - [aux_sym_cmd_identifier_token40] = ACTIONS(2005), - [anon_sym_def] = ACTIONS(1999), - [anon_sym_export_DASHenv] = ACTIONS(1999), - [anon_sym_extern] = ACTIONS(1999), - [anon_sym_module] = ACTIONS(1999), - [anon_sym_use] = ACTIONS(1999), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_DOLLAR] = ACTIONS(2005), - [anon_sym_error] = ACTIONS(1999), - [anon_sym_list] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1999), - [anon_sym_break] = ACTIONS(1999), - [anon_sym_continue] = ACTIONS(1999), - [anon_sym_for] = ACTIONS(1999), - [anon_sym_in] = ACTIONS(1999), - [anon_sym_loop] = ACTIONS(1999), - [anon_sym_make] = ACTIONS(1999), - [anon_sym_while] = ACTIONS(1999), - [anon_sym_do] = ACTIONS(1999), - [anon_sym_if] = ACTIONS(1999), - [anon_sym_else] = ACTIONS(1999), - [anon_sym_match] = ACTIONS(1999), - [anon_sym_RBRACE] = ACTIONS(2005), - [anon_sym_try] = ACTIONS(1999), - [anon_sym_catch] = ACTIONS(1999), - [anon_sym_return] = ACTIONS(1999), - [anon_sym_source] = ACTIONS(1999), - [anon_sym_source_DASHenv] = ACTIONS(1999), - [anon_sym_register] = ACTIONS(1999), - [anon_sym_hide] = ACTIONS(1999), - [anon_sym_hide_DASHenv] = ACTIONS(1999), - [anon_sym_overlay] = ACTIONS(1999), - [anon_sym_new] = ACTIONS(1999), - [anon_sym_as] = ACTIONS(1999), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2005), - [anon_sym_DOT_DOT2] = ACTIONS(2275), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2277), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2277), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2005), - [aux_sym__val_number_decimal_token1] = ACTIONS(1999), - [aux_sym__val_number_decimal_token2] = ACTIONS(2005), - [aux_sym__val_number_decimal_token3] = ACTIONS(2005), - [aux_sym__val_number_decimal_token4] = ACTIONS(2005), - [aux_sym__val_number_token1] = ACTIONS(2005), - [aux_sym__val_number_token2] = ACTIONS(2005), - [aux_sym__val_number_token3] = ACTIONS(2005), - [anon_sym_DQUOTE] = ACTIONS(2005), - [sym__str_single_quotes] = ACTIONS(2005), - [sym__str_back_ticks] = ACTIONS(2005), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2005), - [anon_sym_PLUS] = ACTIONS(1999), - [anon_sym_POUND] = ACTIONS(247), - }, - [485] = { - [sym_comment] = STATE(485), - [anon_sym_export] = ACTIONS(2007), - [anon_sym_alias] = ACTIONS(2007), - [anon_sym_let] = ACTIONS(2007), - [anon_sym_let_DASHenv] = ACTIONS(2007), - [anon_sym_mut] = ACTIONS(2007), - [anon_sym_const] = ACTIONS(2007), - [aux_sym_cmd_identifier_token1] = ACTIONS(2007), - [aux_sym_cmd_identifier_token2] = ACTIONS(2007), - [aux_sym_cmd_identifier_token3] = ACTIONS(2007), - [aux_sym_cmd_identifier_token4] = ACTIONS(2007), - [aux_sym_cmd_identifier_token5] = ACTIONS(2007), - [aux_sym_cmd_identifier_token6] = ACTIONS(2007), - [aux_sym_cmd_identifier_token7] = ACTIONS(2007), - [aux_sym_cmd_identifier_token8] = ACTIONS(2007), - [aux_sym_cmd_identifier_token9] = ACTIONS(2007), - [aux_sym_cmd_identifier_token10] = ACTIONS(2007), - [aux_sym_cmd_identifier_token11] = ACTIONS(2007), - [aux_sym_cmd_identifier_token12] = ACTIONS(2007), - [aux_sym_cmd_identifier_token13] = ACTIONS(2007), - [aux_sym_cmd_identifier_token14] = ACTIONS(2007), - [aux_sym_cmd_identifier_token15] = ACTIONS(2007), - [aux_sym_cmd_identifier_token16] = ACTIONS(2007), - [aux_sym_cmd_identifier_token17] = ACTIONS(2007), - [aux_sym_cmd_identifier_token18] = ACTIONS(2007), - [aux_sym_cmd_identifier_token19] = ACTIONS(2007), - [aux_sym_cmd_identifier_token20] = ACTIONS(2007), - [aux_sym_cmd_identifier_token21] = ACTIONS(2007), - [aux_sym_cmd_identifier_token22] = ACTIONS(2007), - [aux_sym_cmd_identifier_token23] = ACTIONS(2007), - [aux_sym_cmd_identifier_token24] = ACTIONS(2007), - [aux_sym_cmd_identifier_token25] = ACTIONS(2007), - [aux_sym_cmd_identifier_token26] = ACTIONS(2007), - [aux_sym_cmd_identifier_token27] = ACTIONS(2007), - [aux_sym_cmd_identifier_token28] = ACTIONS(2007), - [aux_sym_cmd_identifier_token29] = ACTIONS(2007), - [aux_sym_cmd_identifier_token30] = ACTIONS(2007), - [aux_sym_cmd_identifier_token31] = ACTIONS(2007), - [aux_sym_cmd_identifier_token32] = ACTIONS(2007), - [aux_sym_cmd_identifier_token33] = ACTIONS(2007), - [aux_sym_cmd_identifier_token34] = ACTIONS(2007), - [aux_sym_cmd_identifier_token35] = ACTIONS(2007), - [aux_sym_cmd_identifier_token36] = ACTIONS(2007), - [anon_sym_true] = ACTIONS(2013), - [anon_sym_false] = ACTIONS(2013), - [anon_sym_null] = ACTIONS(2013), - [aux_sym_cmd_identifier_token38] = ACTIONS(2007), - [aux_sym_cmd_identifier_token39] = ACTIONS(2013), - [aux_sym_cmd_identifier_token40] = ACTIONS(2013), - [anon_sym_def] = ACTIONS(2007), - [anon_sym_export_DASHenv] = ACTIONS(2007), - [anon_sym_extern] = ACTIONS(2007), - [anon_sym_module] = ACTIONS(2007), - [anon_sym_use] = ACTIONS(2007), - [anon_sym_LPAREN] = ACTIONS(2013), - [anon_sym_DOLLAR] = ACTIONS(2013), - [anon_sym_error] = ACTIONS(2007), - [anon_sym_list] = ACTIONS(2007), - [anon_sym_DASH] = ACTIONS(2007), - [anon_sym_break] = ACTIONS(2007), - [anon_sym_continue] = ACTIONS(2007), - [anon_sym_for] = ACTIONS(2007), - [anon_sym_in] = ACTIONS(2007), - [anon_sym_loop] = ACTIONS(2007), - [anon_sym_make] = ACTIONS(2007), - [anon_sym_while] = ACTIONS(2007), - [anon_sym_do] = ACTIONS(2007), - [anon_sym_if] = ACTIONS(2007), - [anon_sym_else] = ACTIONS(2007), - [anon_sym_match] = ACTIONS(2007), - [anon_sym_RBRACE] = ACTIONS(2013), - [anon_sym_try] = ACTIONS(2007), - [anon_sym_catch] = ACTIONS(2007), - [anon_sym_return] = ACTIONS(2007), - [anon_sym_source] = ACTIONS(2007), - [anon_sym_source_DASHenv] = ACTIONS(2007), - [anon_sym_register] = ACTIONS(2007), - [anon_sym_hide] = ACTIONS(2007), - [anon_sym_hide_DASHenv] = ACTIONS(2007), - [anon_sym_overlay] = ACTIONS(2007), - [anon_sym_new] = ACTIONS(2007), - [anon_sym_as] = ACTIONS(2007), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2013), - [anon_sym_DOT_DOT2] = ACTIONS(2279), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2281), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2281), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2013), - [aux_sym__val_number_decimal_token1] = ACTIONS(2007), - [aux_sym__val_number_decimal_token2] = ACTIONS(2013), - [aux_sym__val_number_decimal_token3] = ACTIONS(2013), - [aux_sym__val_number_decimal_token4] = ACTIONS(2013), - [aux_sym__val_number_token1] = ACTIONS(2013), - [aux_sym__val_number_token2] = ACTIONS(2013), - [aux_sym__val_number_token3] = ACTIONS(2013), - [anon_sym_DQUOTE] = ACTIONS(2013), - [sym__str_single_quotes] = ACTIONS(2013), - [sym__str_back_ticks] = ACTIONS(2013), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2013), - [anon_sym_PLUS] = ACTIONS(2007), - [anon_sym_POUND] = ACTIONS(247), - }, - [486] = { - [sym_comment] = STATE(486), - [anon_sym_export] = ACTIONS(2019), - [anon_sym_alias] = ACTIONS(2019), - [anon_sym_let] = ACTIONS(2019), - [anon_sym_let_DASHenv] = ACTIONS(2019), - [anon_sym_mut] = ACTIONS(2019), - [anon_sym_const] = ACTIONS(2019), - [aux_sym_cmd_identifier_token1] = ACTIONS(2019), - [aux_sym_cmd_identifier_token2] = ACTIONS(2019), - [aux_sym_cmd_identifier_token3] = ACTIONS(2019), - [aux_sym_cmd_identifier_token4] = ACTIONS(2019), - [aux_sym_cmd_identifier_token5] = ACTIONS(2019), - [aux_sym_cmd_identifier_token6] = ACTIONS(2019), - [aux_sym_cmd_identifier_token7] = ACTIONS(2019), - [aux_sym_cmd_identifier_token8] = ACTIONS(2019), - [aux_sym_cmd_identifier_token9] = ACTIONS(2019), - [aux_sym_cmd_identifier_token10] = ACTIONS(2019), - [aux_sym_cmd_identifier_token11] = ACTIONS(2019), - [aux_sym_cmd_identifier_token12] = ACTIONS(2019), - [aux_sym_cmd_identifier_token13] = ACTIONS(2019), - [aux_sym_cmd_identifier_token14] = ACTIONS(2019), - [aux_sym_cmd_identifier_token15] = ACTIONS(2019), - [aux_sym_cmd_identifier_token16] = ACTIONS(2019), - [aux_sym_cmd_identifier_token17] = ACTIONS(2019), - [aux_sym_cmd_identifier_token18] = ACTIONS(2019), - [aux_sym_cmd_identifier_token19] = ACTIONS(2019), - [aux_sym_cmd_identifier_token20] = ACTIONS(2019), - [aux_sym_cmd_identifier_token21] = ACTIONS(2019), - [aux_sym_cmd_identifier_token22] = ACTIONS(2019), - [aux_sym_cmd_identifier_token23] = ACTIONS(2019), - [aux_sym_cmd_identifier_token24] = ACTIONS(2019), - [aux_sym_cmd_identifier_token25] = ACTIONS(2019), - [aux_sym_cmd_identifier_token26] = ACTIONS(2019), - [aux_sym_cmd_identifier_token27] = ACTIONS(2019), - [aux_sym_cmd_identifier_token28] = ACTIONS(2019), - [aux_sym_cmd_identifier_token29] = ACTIONS(2019), - [aux_sym_cmd_identifier_token30] = ACTIONS(2019), - [aux_sym_cmd_identifier_token31] = ACTIONS(2019), - [aux_sym_cmd_identifier_token32] = ACTIONS(2019), - [aux_sym_cmd_identifier_token33] = ACTIONS(2019), - [aux_sym_cmd_identifier_token34] = ACTIONS(2019), - [aux_sym_cmd_identifier_token35] = ACTIONS(2019), - [aux_sym_cmd_identifier_token36] = ACTIONS(2019), - [anon_sym_true] = ACTIONS(2025), - [anon_sym_false] = ACTIONS(2025), - [anon_sym_null] = ACTIONS(2025), - [aux_sym_cmd_identifier_token38] = ACTIONS(2019), - [aux_sym_cmd_identifier_token39] = ACTIONS(2025), - [aux_sym_cmd_identifier_token40] = ACTIONS(2025), - [anon_sym_def] = ACTIONS(2019), - [anon_sym_export_DASHenv] = ACTIONS(2019), - [anon_sym_extern] = ACTIONS(2019), - [anon_sym_module] = ACTIONS(2019), - [anon_sym_use] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(2025), - [anon_sym_DOLLAR] = ACTIONS(2025), - [anon_sym_error] = ACTIONS(2019), - [anon_sym_list] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_break] = ACTIONS(2019), - [anon_sym_continue] = ACTIONS(2019), - [anon_sym_for] = ACTIONS(2019), - [anon_sym_in] = ACTIONS(2019), - [anon_sym_loop] = ACTIONS(2019), - [anon_sym_make] = ACTIONS(2019), - [anon_sym_while] = ACTIONS(2019), - [anon_sym_do] = ACTIONS(2019), - [anon_sym_if] = ACTIONS(2019), - [anon_sym_else] = ACTIONS(2019), - [anon_sym_match] = ACTIONS(2019), - [anon_sym_RBRACE] = ACTIONS(2025), - [anon_sym_try] = ACTIONS(2019), - [anon_sym_catch] = ACTIONS(2019), - [anon_sym_return] = ACTIONS(2019), - [anon_sym_source] = ACTIONS(2019), - [anon_sym_source_DASHenv] = ACTIONS(2019), - [anon_sym_register] = ACTIONS(2019), - [anon_sym_hide] = ACTIONS(2019), - [anon_sym_hide_DASHenv] = ACTIONS(2019), - [anon_sym_overlay] = ACTIONS(2019), - [anon_sym_new] = ACTIONS(2019), - [anon_sym_as] = ACTIONS(2019), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2025), - [anon_sym_DOT_DOT2] = ACTIONS(2283), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2285), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2285), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2025), - [aux_sym__val_number_decimal_token1] = ACTIONS(2019), - [aux_sym__val_number_decimal_token2] = ACTIONS(2025), - [aux_sym__val_number_decimal_token3] = ACTIONS(2025), - [aux_sym__val_number_decimal_token4] = ACTIONS(2025), - [aux_sym__val_number_token1] = ACTIONS(2025), - [aux_sym__val_number_token2] = ACTIONS(2025), - [aux_sym__val_number_token3] = ACTIONS(2025), - [anon_sym_DQUOTE] = ACTIONS(2025), - [sym__str_single_quotes] = ACTIONS(2025), - [sym__str_back_ticks] = ACTIONS(2025), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2025), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_POUND] = ACTIONS(247), - }, - [487] = { - [sym_comment] = STATE(487), - [anon_sym_export] = ACTIONS(1778), - [anon_sym_alias] = ACTIONS(1778), - [anon_sym_let] = ACTIONS(1778), - [anon_sym_let_DASHenv] = ACTIONS(1778), - [anon_sym_mut] = ACTIONS(1778), - [anon_sym_const] = ACTIONS(1778), - [aux_sym_cmd_identifier_token1] = ACTIONS(1778), - [aux_sym_cmd_identifier_token2] = ACTIONS(1778), - [aux_sym_cmd_identifier_token3] = ACTIONS(1778), - [aux_sym_cmd_identifier_token4] = ACTIONS(1778), - [aux_sym_cmd_identifier_token5] = ACTIONS(1778), - [aux_sym_cmd_identifier_token6] = ACTIONS(1778), - [aux_sym_cmd_identifier_token7] = ACTIONS(1778), - [aux_sym_cmd_identifier_token8] = ACTIONS(1778), - [aux_sym_cmd_identifier_token9] = ACTIONS(1778), - [aux_sym_cmd_identifier_token10] = ACTIONS(1778), - [aux_sym_cmd_identifier_token11] = ACTIONS(1778), - [aux_sym_cmd_identifier_token12] = ACTIONS(1778), - [aux_sym_cmd_identifier_token13] = ACTIONS(1778), - [aux_sym_cmd_identifier_token14] = ACTIONS(1778), - [aux_sym_cmd_identifier_token15] = ACTIONS(1778), - [aux_sym_cmd_identifier_token16] = ACTIONS(1778), - [aux_sym_cmd_identifier_token17] = ACTIONS(1778), - [aux_sym_cmd_identifier_token18] = ACTIONS(1778), - [aux_sym_cmd_identifier_token19] = ACTIONS(1778), - [aux_sym_cmd_identifier_token20] = ACTIONS(1778), - [aux_sym_cmd_identifier_token21] = ACTIONS(1778), - [aux_sym_cmd_identifier_token22] = ACTIONS(1778), - [aux_sym_cmd_identifier_token23] = ACTIONS(1778), - [aux_sym_cmd_identifier_token24] = ACTIONS(1778), - [aux_sym_cmd_identifier_token25] = ACTIONS(1778), - [aux_sym_cmd_identifier_token26] = ACTIONS(1778), - [aux_sym_cmd_identifier_token27] = ACTIONS(1778), - [aux_sym_cmd_identifier_token28] = ACTIONS(1778), - [aux_sym_cmd_identifier_token29] = ACTIONS(1778), - [aux_sym_cmd_identifier_token30] = ACTIONS(1778), - [aux_sym_cmd_identifier_token31] = ACTIONS(1778), - [aux_sym_cmd_identifier_token32] = ACTIONS(1778), - [aux_sym_cmd_identifier_token33] = ACTIONS(1778), - [aux_sym_cmd_identifier_token34] = ACTIONS(1778), - [aux_sym_cmd_identifier_token35] = ACTIONS(1778), - [aux_sym_cmd_identifier_token36] = ACTIONS(1778), - [anon_sym_true] = ACTIONS(1778), - [anon_sym_false] = ACTIONS(1778), - [anon_sym_null] = ACTIONS(1778), - [aux_sym_cmd_identifier_token38] = ACTIONS(1778), - [aux_sym_cmd_identifier_token39] = ACTIONS(1778), - [aux_sym_cmd_identifier_token40] = ACTIONS(1778), - [anon_sym_def] = ACTIONS(1778), - [anon_sym_export_DASHenv] = ACTIONS(1778), - [anon_sym_extern] = ACTIONS(1778), - [anon_sym_module] = ACTIONS(1778), - [anon_sym_use] = ACTIONS(1778), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_DOLLAR] = ACTIONS(1778), - [anon_sym_error] = ACTIONS(1778), - [anon_sym_list] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_break] = ACTIONS(1778), - [anon_sym_continue] = ACTIONS(1778), - [anon_sym_for] = ACTIONS(1778), - [anon_sym_in] = ACTIONS(1778), - [anon_sym_loop] = ACTIONS(1778), - [anon_sym_make] = ACTIONS(1778), - [anon_sym_while] = ACTIONS(1778), - [anon_sym_do] = ACTIONS(1778), - [anon_sym_if] = ACTIONS(1778), - [anon_sym_else] = ACTIONS(1778), - [anon_sym_match] = ACTIONS(1778), - [anon_sym_RBRACE] = ACTIONS(1778), - [anon_sym_try] = ACTIONS(1778), - [anon_sym_catch] = ACTIONS(1778), - [anon_sym_return] = ACTIONS(1778), - [anon_sym_source] = ACTIONS(1778), - [anon_sym_source_DASHenv] = ACTIONS(1778), - [anon_sym_register] = ACTIONS(1778), - [anon_sym_hide] = ACTIONS(1778), - [anon_sym_hide_DASHenv] = ACTIONS(1778), - [anon_sym_overlay] = ACTIONS(1778), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_as] = ACTIONS(1778), - [anon_sym_LPAREN2] = ACTIONS(1780), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1778), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1778), - [aux_sym__val_number_decimal_token1] = ACTIONS(1778), - [aux_sym__val_number_decimal_token2] = ACTIONS(1778), - [aux_sym__val_number_decimal_token3] = ACTIONS(1778), - [aux_sym__val_number_decimal_token4] = ACTIONS(1778), - [aux_sym__val_number_token1] = ACTIONS(1778), - [aux_sym__val_number_token2] = ACTIONS(1778), - [aux_sym__val_number_token3] = ACTIONS(1778), - [anon_sym_DQUOTE] = ACTIONS(1778), - [sym__str_single_quotes] = ACTIONS(1778), - [sym__str_back_ticks] = ACTIONS(1778), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1778), - [sym__entry_separator] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1778), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1494), + [433] = { + [sym_comment] = STATE(433), + [anon_sym_export] = ACTIONS(2200), + [anon_sym_alias] = ACTIONS(2200), + [anon_sym_let] = ACTIONS(2200), + [anon_sym_let_DASHenv] = ACTIONS(2200), + [anon_sym_mut] = ACTIONS(2200), + [anon_sym_const] = ACTIONS(2200), + [aux_sym_cmd_identifier_token1] = ACTIONS(2200), + [aux_sym_cmd_identifier_token2] = ACTIONS(2200), + [aux_sym_cmd_identifier_token3] = ACTIONS(2200), + [aux_sym_cmd_identifier_token4] = ACTIONS(2200), + [aux_sym_cmd_identifier_token5] = ACTIONS(2200), + [aux_sym_cmd_identifier_token6] = ACTIONS(2200), + [aux_sym_cmd_identifier_token7] = ACTIONS(2200), + [aux_sym_cmd_identifier_token8] = ACTIONS(2200), + [aux_sym_cmd_identifier_token9] = ACTIONS(2200), + [aux_sym_cmd_identifier_token10] = ACTIONS(2200), + [aux_sym_cmd_identifier_token11] = ACTIONS(2200), + [aux_sym_cmd_identifier_token12] = ACTIONS(2200), + [aux_sym_cmd_identifier_token13] = ACTIONS(2200), + [aux_sym_cmd_identifier_token14] = ACTIONS(2200), + [aux_sym_cmd_identifier_token15] = ACTIONS(2200), + [aux_sym_cmd_identifier_token16] = ACTIONS(2200), + [aux_sym_cmd_identifier_token17] = ACTIONS(2200), + [aux_sym_cmd_identifier_token18] = ACTIONS(2200), + [aux_sym_cmd_identifier_token19] = ACTIONS(2200), + [aux_sym_cmd_identifier_token20] = ACTIONS(2200), + [aux_sym_cmd_identifier_token21] = ACTIONS(2200), + [aux_sym_cmd_identifier_token22] = ACTIONS(2200), + [aux_sym_cmd_identifier_token23] = ACTIONS(2200), + [aux_sym_cmd_identifier_token24] = ACTIONS(2200), + [aux_sym_cmd_identifier_token25] = ACTIONS(2200), + [aux_sym_cmd_identifier_token26] = ACTIONS(2200), + [aux_sym_cmd_identifier_token27] = ACTIONS(2200), + [aux_sym_cmd_identifier_token28] = ACTIONS(2200), + [aux_sym_cmd_identifier_token29] = ACTIONS(2200), + [aux_sym_cmd_identifier_token30] = ACTIONS(2200), + [aux_sym_cmd_identifier_token31] = ACTIONS(2200), + [aux_sym_cmd_identifier_token32] = ACTIONS(2200), + [aux_sym_cmd_identifier_token33] = ACTIONS(2200), + [aux_sym_cmd_identifier_token34] = ACTIONS(2200), + [aux_sym_cmd_identifier_token35] = ACTIONS(2200), + [aux_sym_cmd_identifier_token36] = ACTIONS(2200), + [anon_sym_true] = ACTIONS(2200), + [anon_sym_false] = ACTIONS(2200), + [anon_sym_null] = ACTIONS(2200), + [aux_sym_cmd_identifier_token38] = ACTIONS(2200), + [aux_sym_cmd_identifier_token39] = ACTIONS(2200), + [aux_sym_cmd_identifier_token40] = ACTIONS(2200), + [anon_sym_def] = ACTIONS(2200), + [anon_sym_export_DASHenv] = ACTIONS(2200), + [anon_sym_extern] = ACTIONS(2200), + [anon_sym_module] = ACTIONS(2200), + [anon_sym_use] = ACTIONS(2200), + [anon_sym_LPAREN] = ACTIONS(2200), + [anon_sym_DOLLAR] = ACTIONS(2200), + [anon_sym_error] = ACTIONS(2200), + [anon_sym_list] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(2200), + [anon_sym_break] = ACTIONS(2200), + [anon_sym_continue] = ACTIONS(2200), + [anon_sym_for] = ACTIONS(2200), + [anon_sym_in] = ACTIONS(2200), + [anon_sym_loop] = ACTIONS(2200), + [anon_sym_make] = ACTIONS(2200), + [anon_sym_while] = ACTIONS(2200), + [anon_sym_do] = ACTIONS(2200), + [anon_sym_if] = ACTIONS(2200), + [anon_sym_else] = ACTIONS(2200), + [anon_sym_match] = ACTIONS(2200), + [anon_sym_RBRACE] = ACTIONS(2200), + [anon_sym_try] = ACTIONS(2200), + [anon_sym_catch] = ACTIONS(2200), + [anon_sym_return] = ACTIONS(2200), + [anon_sym_source] = ACTIONS(2200), + [anon_sym_source_DASHenv] = ACTIONS(2200), + [anon_sym_register] = ACTIONS(2200), + [anon_sym_hide] = ACTIONS(2200), + [anon_sym_hide_DASHenv] = ACTIONS(2200), + [anon_sym_overlay] = ACTIONS(2200), + [anon_sym_new] = ACTIONS(2200), + [anon_sym_as] = ACTIONS(2200), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2200), + [anon_sym_DOT_DOT2] = ACTIONS(2109), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2111), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2111), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2200), + [aux_sym__val_number_decimal_token1] = ACTIONS(2200), + [aux_sym__val_number_decimal_token2] = ACTIONS(2200), + [aux_sym__val_number_decimal_token3] = ACTIONS(2200), + [aux_sym__val_number_decimal_token4] = ACTIONS(2200), + [aux_sym__val_number_token1] = ACTIONS(2200), + [aux_sym__val_number_token2] = ACTIONS(2200), + [aux_sym__val_number_token3] = ACTIONS(2200), + [anon_sym_DQUOTE] = ACTIONS(2200), + [sym__str_single_quotes] = ACTIONS(2200), + [sym__str_back_ticks] = ACTIONS(2200), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2200), + [sym__entry_separator] = ACTIONS(2202), + [anon_sym_PLUS] = ACTIONS(2200), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2202), }, - [488] = { - [sym_comment] = STATE(488), - [anon_sym_export] = ACTIONS(2287), - [anon_sym_alias] = ACTIONS(2287), - [anon_sym_let] = ACTIONS(2287), - [anon_sym_let_DASHenv] = ACTIONS(2287), - [anon_sym_mut] = ACTIONS(2287), - [anon_sym_const] = ACTIONS(2287), - [aux_sym_cmd_identifier_token1] = ACTIONS(2287), - [aux_sym_cmd_identifier_token2] = ACTIONS(2287), - [aux_sym_cmd_identifier_token3] = ACTIONS(2287), - [aux_sym_cmd_identifier_token4] = ACTIONS(2287), - [aux_sym_cmd_identifier_token5] = ACTIONS(2287), - [aux_sym_cmd_identifier_token6] = ACTIONS(2287), - [aux_sym_cmd_identifier_token7] = ACTIONS(2287), - [aux_sym_cmd_identifier_token8] = ACTIONS(2287), - [aux_sym_cmd_identifier_token9] = ACTIONS(2287), - [aux_sym_cmd_identifier_token10] = ACTIONS(2287), - [aux_sym_cmd_identifier_token11] = ACTIONS(2287), - [aux_sym_cmd_identifier_token12] = ACTIONS(2287), - [aux_sym_cmd_identifier_token13] = ACTIONS(2287), - [aux_sym_cmd_identifier_token14] = ACTIONS(2287), - [aux_sym_cmd_identifier_token15] = ACTIONS(2287), - [aux_sym_cmd_identifier_token16] = ACTIONS(2287), - [aux_sym_cmd_identifier_token17] = ACTIONS(2287), - [aux_sym_cmd_identifier_token18] = ACTIONS(2287), - [aux_sym_cmd_identifier_token19] = ACTIONS(2287), - [aux_sym_cmd_identifier_token20] = ACTIONS(2287), - [aux_sym_cmd_identifier_token21] = ACTIONS(2287), - [aux_sym_cmd_identifier_token22] = ACTIONS(2287), - [aux_sym_cmd_identifier_token23] = ACTIONS(2287), - [aux_sym_cmd_identifier_token24] = ACTIONS(2287), - [aux_sym_cmd_identifier_token25] = ACTIONS(2287), - [aux_sym_cmd_identifier_token26] = ACTIONS(2287), - [aux_sym_cmd_identifier_token27] = ACTIONS(2287), - [aux_sym_cmd_identifier_token28] = ACTIONS(2287), - [aux_sym_cmd_identifier_token29] = ACTIONS(2287), - [aux_sym_cmd_identifier_token30] = ACTIONS(2287), - [aux_sym_cmd_identifier_token31] = ACTIONS(2287), - [aux_sym_cmd_identifier_token32] = ACTIONS(2287), - [aux_sym_cmd_identifier_token33] = ACTIONS(2287), - [aux_sym_cmd_identifier_token34] = ACTIONS(2287), - [aux_sym_cmd_identifier_token35] = ACTIONS(2287), - [aux_sym_cmd_identifier_token36] = ACTIONS(2287), - [anon_sym_true] = ACTIONS(2287), - [anon_sym_false] = ACTIONS(2287), - [anon_sym_null] = ACTIONS(2287), - [aux_sym_cmd_identifier_token38] = ACTIONS(2287), - [aux_sym_cmd_identifier_token39] = ACTIONS(2287), - [aux_sym_cmd_identifier_token40] = ACTIONS(2287), - [anon_sym_def] = ACTIONS(2287), - [anon_sym_export_DASHenv] = ACTIONS(2287), - [anon_sym_extern] = ACTIONS(2287), - [anon_sym_module] = ACTIONS(2287), - [anon_sym_use] = ACTIONS(2287), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_DOLLAR] = ACTIONS(2287), - [anon_sym_error] = ACTIONS(2287), - [anon_sym_list] = ACTIONS(2287), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_break] = ACTIONS(2287), - [anon_sym_continue] = ACTIONS(2287), - [anon_sym_for] = ACTIONS(2287), - [anon_sym_in] = ACTIONS(2287), - [anon_sym_loop] = ACTIONS(2287), - [anon_sym_make] = ACTIONS(2287), - [anon_sym_while] = ACTIONS(2287), - [anon_sym_do] = ACTIONS(2287), - [anon_sym_if] = ACTIONS(2287), - [anon_sym_else] = ACTIONS(2287), - [anon_sym_match] = ACTIONS(2287), - [anon_sym_RBRACE] = ACTIONS(2287), - [anon_sym_try] = ACTIONS(2287), - [anon_sym_catch] = ACTIONS(2287), - [anon_sym_return] = ACTIONS(2287), - [anon_sym_source] = ACTIONS(2287), - [anon_sym_source_DASHenv] = ACTIONS(2287), - [anon_sym_register] = ACTIONS(2287), - [anon_sym_hide] = ACTIONS(2287), - [anon_sym_hide_DASHenv] = ACTIONS(2287), - [anon_sym_overlay] = ACTIONS(2287), - [anon_sym_new] = ACTIONS(2287), - [anon_sym_as] = ACTIONS(2287), - [anon_sym_LPAREN2] = ACTIONS(1790), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2287), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2287), - [aux_sym__val_number_decimal_token1] = ACTIONS(2287), - [aux_sym__val_number_decimal_token2] = ACTIONS(2287), - [aux_sym__val_number_decimal_token3] = ACTIONS(2287), - [aux_sym__val_number_decimal_token4] = ACTIONS(2287), - [aux_sym__val_number_token1] = ACTIONS(2287), - [aux_sym__val_number_token2] = ACTIONS(2287), - [aux_sym__val_number_token3] = ACTIONS(2287), - [anon_sym_DQUOTE] = ACTIONS(2287), - [sym__str_single_quotes] = ACTIONS(2287), - [sym__str_back_ticks] = ACTIONS(2287), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2287), - [sym__entry_separator] = ACTIONS(2289), - [anon_sym_PLUS] = ACTIONS(2287), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1798), + [434] = { + [sym_comment] = STATE(434), + [anon_sym_export] = ACTIONS(1769), + [anon_sym_alias] = ACTIONS(1769), + [anon_sym_let] = ACTIONS(1769), + [anon_sym_let_DASHenv] = ACTIONS(1769), + [anon_sym_mut] = ACTIONS(1769), + [anon_sym_const] = ACTIONS(1769), + [aux_sym_cmd_identifier_token1] = ACTIONS(1769), + [aux_sym_cmd_identifier_token2] = ACTIONS(1769), + [aux_sym_cmd_identifier_token3] = ACTIONS(1769), + [aux_sym_cmd_identifier_token4] = ACTIONS(1769), + [aux_sym_cmd_identifier_token5] = ACTIONS(1769), + [aux_sym_cmd_identifier_token6] = ACTIONS(1769), + [aux_sym_cmd_identifier_token7] = ACTIONS(1769), + [aux_sym_cmd_identifier_token8] = ACTIONS(1769), + [aux_sym_cmd_identifier_token9] = ACTIONS(1769), + [aux_sym_cmd_identifier_token10] = ACTIONS(1769), + [aux_sym_cmd_identifier_token11] = ACTIONS(1769), + [aux_sym_cmd_identifier_token12] = ACTIONS(1769), + [aux_sym_cmd_identifier_token13] = ACTIONS(1769), + [aux_sym_cmd_identifier_token14] = ACTIONS(1769), + [aux_sym_cmd_identifier_token15] = ACTIONS(1769), + [aux_sym_cmd_identifier_token16] = ACTIONS(1769), + [aux_sym_cmd_identifier_token17] = ACTIONS(1769), + [aux_sym_cmd_identifier_token18] = ACTIONS(1769), + [aux_sym_cmd_identifier_token19] = ACTIONS(1769), + [aux_sym_cmd_identifier_token20] = ACTIONS(1769), + [aux_sym_cmd_identifier_token21] = ACTIONS(1769), + [aux_sym_cmd_identifier_token22] = ACTIONS(1769), + [aux_sym_cmd_identifier_token23] = ACTIONS(1769), + [aux_sym_cmd_identifier_token24] = ACTIONS(1769), + [aux_sym_cmd_identifier_token25] = ACTIONS(1769), + [aux_sym_cmd_identifier_token26] = ACTIONS(1769), + [aux_sym_cmd_identifier_token27] = ACTIONS(1769), + [aux_sym_cmd_identifier_token28] = ACTIONS(1769), + [aux_sym_cmd_identifier_token29] = ACTIONS(1769), + [aux_sym_cmd_identifier_token30] = ACTIONS(1769), + [aux_sym_cmd_identifier_token31] = ACTIONS(1769), + [aux_sym_cmd_identifier_token32] = ACTIONS(1769), + [aux_sym_cmd_identifier_token33] = ACTIONS(1769), + [aux_sym_cmd_identifier_token34] = ACTIONS(1769), + [aux_sym_cmd_identifier_token35] = ACTIONS(1769), + [aux_sym_cmd_identifier_token36] = ACTIONS(1769), + [anon_sym_true] = ACTIONS(1769), + [anon_sym_false] = ACTIONS(1769), + [anon_sym_null] = ACTIONS(1769), + [aux_sym_cmd_identifier_token38] = ACTIONS(1769), + [aux_sym_cmd_identifier_token39] = ACTIONS(1769), + [aux_sym_cmd_identifier_token40] = ACTIONS(1769), + [anon_sym_def] = ACTIONS(1769), + [anon_sym_export_DASHenv] = ACTIONS(1769), + [anon_sym_extern] = ACTIONS(1769), + [anon_sym_module] = ACTIONS(1769), + [anon_sym_use] = ACTIONS(1769), + [anon_sym_LPAREN] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1769), + [anon_sym_error] = ACTIONS(1769), + [anon_sym_list] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_break] = ACTIONS(1769), + [anon_sym_continue] = ACTIONS(1769), + [anon_sym_for] = ACTIONS(1769), + [anon_sym_in] = ACTIONS(1769), + [anon_sym_loop] = ACTIONS(1769), + [anon_sym_make] = ACTIONS(1769), + [anon_sym_while] = ACTIONS(1769), + [anon_sym_do] = ACTIONS(1769), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_else] = ACTIONS(1769), + [anon_sym_match] = ACTIONS(1769), + [anon_sym_RBRACE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1769), + [anon_sym_catch] = ACTIONS(1769), + [anon_sym_return] = ACTIONS(1769), + [anon_sym_source] = ACTIONS(1769), + [anon_sym_source_DASHenv] = ACTIONS(1769), + [anon_sym_register] = ACTIONS(1769), + [anon_sym_hide] = ACTIONS(1769), + [anon_sym_hide_DASHenv] = ACTIONS(1769), + [anon_sym_overlay] = ACTIONS(1769), + [anon_sym_new] = ACTIONS(1769), + [anon_sym_as] = ACTIONS(1769), + [anon_sym_LPAREN2] = ACTIONS(1771), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1769), + [aux_sym__immediate_decimal_token2] = ACTIONS(2204), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1769), + [aux_sym__val_number_decimal_token1] = ACTIONS(1769), + [aux_sym__val_number_decimal_token2] = ACTIONS(1769), + [aux_sym__val_number_decimal_token3] = ACTIONS(1769), + [aux_sym__val_number_decimal_token4] = ACTIONS(1769), + [aux_sym__val_number_token1] = ACTIONS(1769), + [aux_sym__val_number_token2] = ACTIONS(1769), + [aux_sym__val_number_token3] = ACTIONS(1769), + [anon_sym_DQUOTE] = ACTIONS(1769), + [sym__str_single_quotes] = ACTIONS(1769), + [sym__str_back_ticks] = ACTIONS(1769), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1769), + [sym__entry_separator] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1769), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1769), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1771), }, - [489] = { - [sym_comment] = STATE(489), - [anon_sym_export] = ACTIONS(1788), - [anon_sym_alias] = ACTIONS(1788), - [anon_sym_let] = ACTIONS(1788), - [anon_sym_let_DASHenv] = ACTIONS(1788), - [anon_sym_mut] = ACTIONS(1788), - [anon_sym_const] = ACTIONS(1788), - [aux_sym_cmd_identifier_token1] = ACTIONS(1788), - [aux_sym_cmd_identifier_token2] = ACTIONS(1788), - [aux_sym_cmd_identifier_token3] = ACTIONS(1788), - [aux_sym_cmd_identifier_token4] = ACTIONS(1788), - [aux_sym_cmd_identifier_token5] = ACTIONS(1788), - [aux_sym_cmd_identifier_token6] = ACTIONS(1788), - [aux_sym_cmd_identifier_token7] = ACTIONS(1788), - [aux_sym_cmd_identifier_token8] = ACTIONS(1788), - [aux_sym_cmd_identifier_token9] = ACTIONS(1788), - [aux_sym_cmd_identifier_token10] = ACTIONS(1788), - [aux_sym_cmd_identifier_token11] = ACTIONS(1788), - [aux_sym_cmd_identifier_token12] = ACTIONS(1788), - [aux_sym_cmd_identifier_token13] = ACTIONS(1788), - [aux_sym_cmd_identifier_token14] = ACTIONS(1788), - [aux_sym_cmd_identifier_token15] = ACTIONS(1788), - [aux_sym_cmd_identifier_token16] = ACTIONS(1788), - [aux_sym_cmd_identifier_token17] = ACTIONS(1788), - [aux_sym_cmd_identifier_token18] = ACTIONS(1788), - [aux_sym_cmd_identifier_token19] = ACTIONS(1788), - [aux_sym_cmd_identifier_token20] = ACTIONS(1788), - [aux_sym_cmd_identifier_token21] = ACTIONS(1788), - [aux_sym_cmd_identifier_token22] = ACTIONS(1788), - [aux_sym_cmd_identifier_token23] = ACTIONS(1788), - [aux_sym_cmd_identifier_token24] = ACTIONS(1788), - [aux_sym_cmd_identifier_token25] = ACTIONS(1788), - [aux_sym_cmd_identifier_token26] = ACTIONS(1788), - [aux_sym_cmd_identifier_token27] = ACTIONS(1788), - [aux_sym_cmd_identifier_token28] = ACTIONS(1788), - [aux_sym_cmd_identifier_token29] = ACTIONS(1788), - [aux_sym_cmd_identifier_token30] = ACTIONS(1788), - [aux_sym_cmd_identifier_token31] = ACTIONS(1788), - [aux_sym_cmd_identifier_token32] = ACTIONS(1788), - [aux_sym_cmd_identifier_token33] = ACTIONS(1788), - [aux_sym_cmd_identifier_token34] = ACTIONS(1788), - [aux_sym_cmd_identifier_token35] = ACTIONS(1788), - [aux_sym_cmd_identifier_token36] = ACTIONS(1788), - [anon_sym_true] = ACTIONS(1788), - [anon_sym_false] = ACTIONS(1788), - [anon_sym_null] = ACTIONS(1788), - [aux_sym_cmd_identifier_token38] = ACTIONS(1788), - [aux_sym_cmd_identifier_token39] = ACTIONS(1788), - [aux_sym_cmd_identifier_token40] = ACTIONS(1788), - [anon_sym_def] = ACTIONS(1788), - [anon_sym_export_DASHenv] = ACTIONS(1788), - [anon_sym_extern] = ACTIONS(1788), - [anon_sym_module] = ACTIONS(1788), - [anon_sym_use] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1788), - [anon_sym_DOLLAR] = ACTIONS(1788), - [anon_sym_error] = ACTIONS(1788), - [anon_sym_list] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_break] = ACTIONS(1788), - [anon_sym_continue] = ACTIONS(1788), - [anon_sym_for] = ACTIONS(1788), - [anon_sym_in] = ACTIONS(1788), - [anon_sym_loop] = ACTIONS(1788), - [anon_sym_make] = ACTIONS(1788), - [anon_sym_while] = ACTIONS(1788), - [anon_sym_do] = ACTIONS(1788), - [anon_sym_if] = ACTIONS(1788), - [anon_sym_else] = ACTIONS(1788), - [anon_sym_match] = ACTIONS(1788), - [anon_sym_RBRACE] = ACTIONS(1788), - [anon_sym_try] = ACTIONS(1788), - [anon_sym_catch] = ACTIONS(1788), - [anon_sym_return] = ACTIONS(1788), - [anon_sym_source] = ACTIONS(1788), - [anon_sym_source_DASHenv] = ACTIONS(1788), - [anon_sym_register] = ACTIONS(1788), - [anon_sym_hide] = ACTIONS(1788), - [anon_sym_hide_DASHenv] = ACTIONS(1788), - [anon_sym_overlay] = ACTIONS(1788), - [anon_sym_new] = ACTIONS(1788), - [anon_sym_as] = ACTIONS(1788), - [anon_sym_LPAREN2] = ACTIONS(1790), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1788), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1788), - [aux_sym__val_number_decimal_token1] = ACTIONS(1788), - [aux_sym__val_number_decimal_token2] = ACTIONS(1788), - [aux_sym__val_number_decimal_token3] = ACTIONS(1788), - [aux_sym__val_number_decimal_token4] = ACTIONS(1788), - [aux_sym__val_number_token1] = ACTIONS(1788), - [aux_sym__val_number_token2] = ACTIONS(1788), - [aux_sym__val_number_token3] = ACTIONS(1788), - [anon_sym_DQUOTE] = ACTIONS(1788), - [sym__str_single_quotes] = ACTIONS(1788), - [sym__str_back_ticks] = ACTIONS(1788), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1788), - [sym__entry_separator] = ACTIONS(1796), - [anon_sym_PLUS] = ACTIONS(1788), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1798), - [anon_sym_POUND] = ACTIONS(3), + [435] = { + [sym_cell_path] = STATE(638), + [sym_path] = STATE(631), + [sym_comment] = STATE(435), + [aux_sym_cell_path_repeat1] = STATE(456), + [anon_sym_export] = ACTIONS(2071), + [anon_sym_alias] = ACTIONS(2071), + [anon_sym_let] = ACTIONS(2071), + [anon_sym_let_DASHenv] = ACTIONS(2071), + [anon_sym_mut] = ACTIONS(2071), + [anon_sym_const] = ACTIONS(2071), + [aux_sym_cmd_identifier_token1] = ACTIONS(2071), + [aux_sym_cmd_identifier_token2] = ACTIONS(2071), + [aux_sym_cmd_identifier_token3] = ACTIONS(2071), + [aux_sym_cmd_identifier_token4] = ACTIONS(2071), + [aux_sym_cmd_identifier_token5] = ACTIONS(2071), + [aux_sym_cmd_identifier_token6] = ACTIONS(2071), + [aux_sym_cmd_identifier_token7] = ACTIONS(2071), + [aux_sym_cmd_identifier_token8] = ACTIONS(2071), + [aux_sym_cmd_identifier_token9] = ACTIONS(2071), + [aux_sym_cmd_identifier_token10] = ACTIONS(2071), + [aux_sym_cmd_identifier_token11] = ACTIONS(2071), + [aux_sym_cmd_identifier_token12] = ACTIONS(2071), + [aux_sym_cmd_identifier_token13] = ACTIONS(2071), + [aux_sym_cmd_identifier_token14] = ACTIONS(2071), + [aux_sym_cmd_identifier_token15] = ACTIONS(2071), + [aux_sym_cmd_identifier_token16] = ACTIONS(2071), + [aux_sym_cmd_identifier_token17] = ACTIONS(2071), + [aux_sym_cmd_identifier_token18] = ACTIONS(2071), + [aux_sym_cmd_identifier_token19] = ACTIONS(2071), + [aux_sym_cmd_identifier_token20] = ACTIONS(2071), + [aux_sym_cmd_identifier_token21] = ACTIONS(2071), + [aux_sym_cmd_identifier_token22] = ACTIONS(2071), + [aux_sym_cmd_identifier_token23] = ACTIONS(2071), + [aux_sym_cmd_identifier_token24] = ACTIONS(2071), + [aux_sym_cmd_identifier_token25] = ACTIONS(2071), + [aux_sym_cmd_identifier_token26] = ACTIONS(2071), + [aux_sym_cmd_identifier_token27] = ACTIONS(2071), + [aux_sym_cmd_identifier_token28] = ACTIONS(2071), + [aux_sym_cmd_identifier_token29] = ACTIONS(2071), + [aux_sym_cmd_identifier_token30] = ACTIONS(2071), + [aux_sym_cmd_identifier_token31] = ACTIONS(2071), + [aux_sym_cmd_identifier_token32] = ACTIONS(2071), + [aux_sym_cmd_identifier_token33] = ACTIONS(2071), + [aux_sym_cmd_identifier_token34] = ACTIONS(2071), + [aux_sym_cmd_identifier_token35] = ACTIONS(2071), + [aux_sym_cmd_identifier_token36] = ACTIONS(2071), + [anon_sym_true] = ACTIONS(2073), + [anon_sym_false] = ACTIONS(2073), + [anon_sym_null] = ACTIONS(2073), + [aux_sym_cmd_identifier_token38] = ACTIONS(2071), + [aux_sym_cmd_identifier_token39] = ACTIONS(2073), + [aux_sym_cmd_identifier_token40] = ACTIONS(2073), + [anon_sym_def] = ACTIONS(2071), + [anon_sym_export_DASHenv] = ACTIONS(2071), + [anon_sym_extern] = ACTIONS(2071), + [anon_sym_module] = ACTIONS(2071), + [anon_sym_use] = ACTIONS(2071), + [anon_sym_LPAREN] = ACTIONS(2073), + [anon_sym_DOLLAR] = ACTIONS(2073), + [anon_sym_error] = ACTIONS(2071), + [anon_sym_list] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_break] = ACTIONS(2071), + [anon_sym_continue] = ACTIONS(2071), + [anon_sym_for] = ACTIONS(2071), + [anon_sym_in] = ACTIONS(2071), + [anon_sym_loop] = ACTIONS(2071), + [anon_sym_make] = ACTIONS(2071), + [anon_sym_while] = ACTIONS(2071), + [anon_sym_do] = ACTIONS(2071), + [anon_sym_if] = ACTIONS(2071), + [anon_sym_else] = ACTIONS(2071), + [anon_sym_match] = ACTIONS(2071), + [anon_sym_RBRACE] = ACTIONS(2073), + [anon_sym_try] = ACTIONS(2071), + [anon_sym_catch] = ACTIONS(2071), + [anon_sym_return] = ACTIONS(2071), + [anon_sym_source] = ACTIONS(2071), + [anon_sym_source_DASHenv] = ACTIONS(2071), + [anon_sym_register] = ACTIONS(2071), + [anon_sym_hide] = ACTIONS(2071), + [anon_sym_hide_DASHenv] = ACTIONS(2071), + [anon_sym_overlay] = ACTIONS(2071), + [anon_sym_new] = ACTIONS(2071), + [anon_sym_as] = ACTIONS(2071), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2073), + [anon_sym_DOT] = ACTIONS(2177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2073), + [aux_sym__val_number_decimal_token1] = ACTIONS(2071), + [aux_sym__val_number_decimal_token2] = ACTIONS(2073), + [aux_sym__val_number_decimal_token3] = ACTIONS(2073), + [aux_sym__val_number_decimal_token4] = ACTIONS(2073), + [aux_sym__val_number_token1] = ACTIONS(2073), + [aux_sym__val_number_token2] = ACTIONS(2073), + [aux_sym__val_number_token3] = ACTIONS(2073), + [anon_sym_DQUOTE] = ACTIONS(2073), + [sym__str_single_quotes] = ACTIONS(2073), + [sym__str_back_ticks] = ACTIONS(2073), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2073), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2073), }, - [490] = { - [sym__expr_parenthesized_immediate] = STATE(7335), - [sym_comment] = STATE(490), - [anon_sym_export] = ACTIONS(1981), - [anon_sym_alias] = ACTIONS(1981), - [anon_sym_let] = ACTIONS(1981), - [anon_sym_let_DASHenv] = ACTIONS(1981), - [anon_sym_mut] = ACTIONS(1981), - [anon_sym_const] = ACTIONS(1981), - [aux_sym_cmd_identifier_token1] = ACTIONS(1981), - [aux_sym_cmd_identifier_token2] = ACTIONS(1981), - [aux_sym_cmd_identifier_token3] = ACTIONS(1981), - [aux_sym_cmd_identifier_token4] = ACTIONS(1981), - [aux_sym_cmd_identifier_token5] = ACTIONS(1981), - [aux_sym_cmd_identifier_token6] = ACTIONS(1981), - [aux_sym_cmd_identifier_token7] = ACTIONS(1981), - [aux_sym_cmd_identifier_token8] = ACTIONS(1981), - [aux_sym_cmd_identifier_token9] = ACTIONS(1981), - [aux_sym_cmd_identifier_token10] = ACTIONS(1981), - [aux_sym_cmd_identifier_token11] = ACTIONS(1981), - [aux_sym_cmd_identifier_token12] = ACTIONS(1981), - [aux_sym_cmd_identifier_token13] = ACTIONS(1981), - [aux_sym_cmd_identifier_token14] = ACTIONS(1981), - [aux_sym_cmd_identifier_token15] = ACTIONS(1981), - [aux_sym_cmd_identifier_token16] = ACTIONS(1981), - [aux_sym_cmd_identifier_token17] = ACTIONS(1981), - [aux_sym_cmd_identifier_token18] = ACTIONS(1981), - [aux_sym_cmd_identifier_token19] = ACTIONS(1981), - [aux_sym_cmd_identifier_token20] = ACTIONS(1981), - [aux_sym_cmd_identifier_token21] = ACTIONS(1981), - [aux_sym_cmd_identifier_token22] = ACTIONS(1981), - [aux_sym_cmd_identifier_token23] = ACTIONS(1981), - [aux_sym_cmd_identifier_token24] = ACTIONS(1981), - [aux_sym_cmd_identifier_token25] = ACTIONS(1981), - [aux_sym_cmd_identifier_token26] = ACTIONS(1981), - [aux_sym_cmd_identifier_token27] = ACTIONS(1981), - [aux_sym_cmd_identifier_token28] = ACTIONS(1981), - [aux_sym_cmd_identifier_token29] = ACTIONS(1981), - [aux_sym_cmd_identifier_token30] = ACTIONS(1981), - [aux_sym_cmd_identifier_token31] = ACTIONS(1981), - [aux_sym_cmd_identifier_token32] = ACTIONS(1981), - [aux_sym_cmd_identifier_token33] = ACTIONS(1981), - [aux_sym_cmd_identifier_token34] = ACTIONS(1981), - [aux_sym_cmd_identifier_token35] = ACTIONS(1981), - [aux_sym_cmd_identifier_token36] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(1981), - [anon_sym_false] = ACTIONS(1981), - [anon_sym_null] = ACTIONS(1981), - [aux_sym_cmd_identifier_token38] = ACTIONS(1981), - [aux_sym_cmd_identifier_token39] = ACTIONS(1981), - [aux_sym_cmd_identifier_token40] = ACTIONS(1981), - [anon_sym_def] = ACTIONS(1981), - [anon_sym_export_DASHenv] = ACTIONS(1981), - [anon_sym_extern] = ACTIONS(1981), - [anon_sym_module] = ACTIONS(1981), - [anon_sym_use] = ACTIONS(1981), - [anon_sym_LPAREN] = ACTIONS(1981), - [anon_sym_DOLLAR] = ACTIONS(1981), - [anon_sym_error] = ACTIONS(1981), - [anon_sym_list] = ACTIONS(1981), - [anon_sym_DASH] = ACTIONS(1981), - [anon_sym_break] = ACTIONS(1981), - [anon_sym_continue] = ACTIONS(1981), - [anon_sym_for] = ACTIONS(1981), - [anon_sym_in] = ACTIONS(1981), - [anon_sym_loop] = ACTIONS(1981), - [anon_sym_make] = ACTIONS(1981), - [anon_sym_while] = ACTIONS(1981), - [anon_sym_do] = ACTIONS(1981), - [anon_sym_if] = ACTIONS(1981), - [anon_sym_else] = ACTIONS(1981), - [anon_sym_match] = ACTIONS(1981), - [anon_sym_RBRACE] = ACTIONS(1981), - [anon_sym_try] = ACTIONS(1981), - [anon_sym_catch] = ACTIONS(1981), - [anon_sym_return] = ACTIONS(1981), - [anon_sym_source] = ACTIONS(1981), - [anon_sym_source_DASHenv] = ACTIONS(1981), - [anon_sym_register] = ACTIONS(1981), - [anon_sym_hide] = ACTIONS(1981), - [anon_sym_hide_DASHenv] = ACTIONS(1981), - [anon_sym_overlay] = ACTIONS(1981), - [anon_sym_new] = ACTIONS(1981), - [anon_sym_as] = ACTIONS(1981), - [anon_sym_LPAREN2] = ACTIONS(1562), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1981), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1981), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1981), - [aux_sym__val_number_decimal_token3] = ACTIONS(1981), - [aux_sym__val_number_decimal_token4] = ACTIONS(1981), - [aux_sym__val_number_token1] = ACTIONS(1981), - [aux_sym__val_number_token2] = ACTIONS(1981), - [aux_sym__val_number_token3] = ACTIONS(1981), - [anon_sym_DQUOTE] = ACTIONS(1981), - [sym__str_single_quotes] = ACTIONS(1981), - [sym__str_back_ticks] = ACTIONS(1981), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1981), - [sym__entry_separator] = ACTIONS(1987), - [anon_sym_PLUS] = ACTIONS(1981), - [anon_sym_POUND] = ACTIONS(3), + [436] = { + [sym_cell_path] = STATE(633), + [sym_path] = STATE(631), + [sym_comment] = STATE(436), + [aux_sym_cell_path_repeat1] = STATE(456), + [anon_sym_export] = ACTIONS(2075), + [anon_sym_alias] = ACTIONS(2075), + [anon_sym_let] = ACTIONS(2075), + [anon_sym_let_DASHenv] = ACTIONS(2075), + [anon_sym_mut] = ACTIONS(2075), + [anon_sym_const] = ACTIONS(2075), + [aux_sym_cmd_identifier_token1] = ACTIONS(2075), + [aux_sym_cmd_identifier_token2] = ACTIONS(2075), + [aux_sym_cmd_identifier_token3] = ACTIONS(2075), + [aux_sym_cmd_identifier_token4] = ACTIONS(2075), + [aux_sym_cmd_identifier_token5] = ACTIONS(2075), + [aux_sym_cmd_identifier_token6] = ACTIONS(2075), + [aux_sym_cmd_identifier_token7] = ACTIONS(2075), + [aux_sym_cmd_identifier_token8] = ACTIONS(2075), + [aux_sym_cmd_identifier_token9] = ACTIONS(2075), + [aux_sym_cmd_identifier_token10] = ACTIONS(2075), + [aux_sym_cmd_identifier_token11] = ACTIONS(2075), + [aux_sym_cmd_identifier_token12] = ACTIONS(2075), + [aux_sym_cmd_identifier_token13] = ACTIONS(2075), + [aux_sym_cmd_identifier_token14] = ACTIONS(2075), + [aux_sym_cmd_identifier_token15] = ACTIONS(2075), + [aux_sym_cmd_identifier_token16] = ACTIONS(2075), + [aux_sym_cmd_identifier_token17] = ACTIONS(2075), + [aux_sym_cmd_identifier_token18] = ACTIONS(2075), + [aux_sym_cmd_identifier_token19] = ACTIONS(2075), + [aux_sym_cmd_identifier_token20] = ACTIONS(2075), + [aux_sym_cmd_identifier_token21] = ACTIONS(2075), + [aux_sym_cmd_identifier_token22] = ACTIONS(2075), + [aux_sym_cmd_identifier_token23] = ACTIONS(2075), + [aux_sym_cmd_identifier_token24] = ACTIONS(2075), + [aux_sym_cmd_identifier_token25] = ACTIONS(2075), + [aux_sym_cmd_identifier_token26] = ACTIONS(2075), + [aux_sym_cmd_identifier_token27] = ACTIONS(2075), + [aux_sym_cmd_identifier_token28] = ACTIONS(2075), + [aux_sym_cmd_identifier_token29] = ACTIONS(2075), + [aux_sym_cmd_identifier_token30] = ACTIONS(2075), + [aux_sym_cmd_identifier_token31] = ACTIONS(2075), + [aux_sym_cmd_identifier_token32] = ACTIONS(2075), + [aux_sym_cmd_identifier_token33] = ACTIONS(2075), + [aux_sym_cmd_identifier_token34] = ACTIONS(2075), + [aux_sym_cmd_identifier_token35] = ACTIONS(2075), + [aux_sym_cmd_identifier_token36] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(2077), + [anon_sym_false] = ACTIONS(2077), + [anon_sym_null] = ACTIONS(2077), + [aux_sym_cmd_identifier_token38] = ACTIONS(2075), + [aux_sym_cmd_identifier_token39] = ACTIONS(2077), + [aux_sym_cmd_identifier_token40] = ACTIONS(2077), + [anon_sym_def] = ACTIONS(2075), + [anon_sym_export_DASHenv] = ACTIONS(2075), + [anon_sym_extern] = ACTIONS(2075), + [anon_sym_module] = ACTIONS(2075), + [anon_sym_use] = ACTIONS(2075), + [anon_sym_LPAREN] = ACTIONS(2077), + [anon_sym_DOLLAR] = ACTIONS(2077), + [anon_sym_error] = ACTIONS(2075), + [anon_sym_list] = ACTIONS(2075), + [anon_sym_DASH] = ACTIONS(2075), + [anon_sym_break] = ACTIONS(2075), + [anon_sym_continue] = ACTIONS(2075), + [anon_sym_for] = ACTIONS(2075), + [anon_sym_in] = ACTIONS(2075), + [anon_sym_loop] = ACTIONS(2075), + [anon_sym_make] = ACTIONS(2075), + [anon_sym_while] = ACTIONS(2075), + [anon_sym_do] = ACTIONS(2075), + [anon_sym_if] = ACTIONS(2075), + [anon_sym_else] = ACTIONS(2075), + [anon_sym_match] = ACTIONS(2075), + [anon_sym_RBRACE] = ACTIONS(2077), + [anon_sym_try] = ACTIONS(2075), + [anon_sym_catch] = ACTIONS(2075), + [anon_sym_return] = ACTIONS(2075), + [anon_sym_source] = ACTIONS(2075), + [anon_sym_source_DASHenv] = ACTIONS(2075), + [anon_sym_register] = ACTIONS(2075), + [anon_sym_hide] = ACTIONS(2075), + [anon_sym_hide_DASHenv] = ACTIONS(2075), + [anon_sym_overlay] = ACTIONS(2075), + [anon_sym_new] = ACTIONS(2075), + [anon_sym_as] = ACTIONS(2075), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2077), + [anon_sym_DOT] = ACTIONS(2177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2077), + [aux_sym__val_number_decimal_token1] = ACTIONS(2075), + [aux_sym__val_number_decimal_token2] = ACTIONS(2077), + [aux_sym__val_number_decimal_token3] = ACTIONS(2077), + [aux_sym__val_number_decimal_token4] = ACTIONS(2077), + [aux_sym__val_number_token1] = ACTIONS(2077), + [aux_sym__val_number_token2] = ACTIONS(2077), + [aux_sym__val_number_token3] = ACTIONS(2077), + [anon_sym_DQUOTE] = ACTIONS(2077), + [sym__str_single_quotes] = ACTIONS(2077), + [sym__str_back_ticks] = ACTIONS(2077), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2077), + [anon_sym_PLUS] = ACTIONS(2075), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2077), }, - [491] = { - [sym_comment] = STATE(491), - [anon_sym_export] = ACTIONS(2291), - [anon_sym_alias] = ACTIONS(2291), - [anon_sym_let] = ACTIONS(2291), - [anon_sym_let_DASHenv] = ACTIONS(2291), - [anon_sym_mut] = ACTIONS(2291), - [anon_sym_const] = ACTIONS(2291), - [aux_sym_cmd_identifier_token1] = ACTIONS(2291), - [aux_sym_cmd_identifier_token2] = ACTIONS(2291), - [aux_sym_cmd_identifier_token3] = ACTIONS(2291), - [aux_sym_cmd_identifier_token4] = ACTIONS(2291), - [aux_sym_cmd_identifier_token5] = ACTIONS(2291), - [aux_sym_cmd_identifier_token6] = ACTIONS(2291), - [aux_sym_cmd_identifier_token7] = ACTIONS(2291), - [aux_sym_cmd_identifier_token8] = ACTIONS(2291), - [aux_sym_cmd_identifier_token9] = ACTIONS(2291), - [aux_sym_cmd_identifier_token10] = ACTIONS(2291), - [aux_sym_cmd_identifier_token11] = ACTIONS(2291), - [aux_sym_cmd_identifier_token12] = ACTIONS(2291), - [aux_sym_cmd_identifier_token13] = ACTIONS(2291), - [aux_sym_cmd_identifier_token14] = ACTIONS(2291), - [aux_sym_cmd_identifier_token15] = ACTIONS(2291), - [aux_sym_cmd_identifier_token16] = ACTIONS(2291), - [aux_sym_cmd_identifier_token17] = ACTIONS(2291), - [aux_sym_cmd_identifier_token18] = ACTIONS(2291), - [aux_sym_cmd_identifier_token19] = ACTIONS(2291), - [aux_sym_cmd_identifier_token20] = ACTIONS(2291), - [aux_sym_cmd_identifier_token21] = ACTIONS(2291), - [aux_sym_cmd_identifier_token22] = ACTIONS(2291), - [aux_sym_cmd_identifier_token23] = ACTIONS(2291), - [aux_sym_cmd_identifier_token24] = ACTIONS(2291), - [aux_sym_cmd_identifier_token25] = ACTIONS(2291), - [aux_sym_cmd_identifier_token26] = ACTIONS(2291), - [aux_sym_cmd_identifier_token27] = ACTIONS(2291), - [aux_sym_cmd_identifier_token28] = ACTIONS(2291), - [aux_sym_cmd_identifier_token29] = ACTIONS(2291), - [aux_sym_cmd_identifier_token30] = ACTIONS(2291), - [aux_sym_cmd_identifier_token31] = ACTIONS(2291), - [aux_sym_cmd_identifier_token32] = ACTIONS(2291), - [aux_sym_cmd_identifier_token33] = ACTIONS(2291), - [aux_sym_cmd_identifier_token34] = ACTIONS(2291), - [aux_sym_cmd_identifier_token35] = ACTIONS(2291), - [aux_sym_cmd_identifier_token36] = ACTIONS(2291), - [anon_sym_true] = ACTIONS(2291), - [anon_sym_false] = ACTIONS(2291), - [anon_sym_null] = ACTIONS(2291), - [aux_sym_cmd_identifier_token38] = ACTIONS(2291), - [aux_sym_cmd_identifier_token39] = ACTIONS(2291), - [aux_sym_cmd_identifier_token40] = ACTIONS(2291), - [anon_sym_def] = ACTIONS(2291), - [anon_sym_export_DASHenv] = ACTIONS(2291), - [anon_sym_extern] = ACTIONS(2291), - [anon_sym_module] = ACTIONS(2291), - [anon_sym_use] = ACTIONS(2291), - [anon_sym_LPAREN] = ACTIONS(2291), - [anon_sym_DOLLAR] = ACTIONS(2291), - [anon_sym_error] = ACTIONS(2291), - [anon_sym_list] = ACTIONS(2291), - [anon_sym_DASH] = ACTIONS(2291), - [anon_sym_break] = ACTIONS(2291), - [anon_sym_continue] = ACTIONS(2291), - [anon_sym_for] = ACTIONS(2291), - [anon_sym_in] = ACTIONS(2291), - [anon_sym_loop] = ACTIONS(2291), - [anon_sym_make] = ACTIONS(2291), - [anon_sym_while] = ACTIONS(2291), - [anon_sym_do] = ACTIONS(2291), - [anon_sym_if] = ACTIONS(2291), - [anon_sym_else] = ACTIONS(2291), - [anon_sym_match] = ACTIONS(2291), - [anon_sym_RBRACE] = ACTIONS(2291), - [anon_sym_try] = ACTIONS(2291), - [anon_sym_catch] = ACTIONS(2291), - [anon_sym_return] = ACTIONS(2291), - [anon_sym_source] = ACTIONS(2291), - [anon_sym_source_DASHenv] = ACTIONS(2291), - [anon_sym_register] = ACTIONS(2291), - [anon_sym_hide] = ACTIONS(2291), - [anon_sym_hide_DASHenv] = ACTIONS(2291), - [anon_sym_overlay] = ACTIONS(2291), - [anon_sym_new] = ACTIONS(2291), - [anon_sym_as] = ACTIONS(2291), - [anon_sym_LPAREN2] = ACTIONS(2293), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2291), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2291), - [aux_sym__val_number_decimal_token1] = ACTIONS(2291), - [aux_sym__val_number_decimal_token2] = ACTIONS(2291), - [aux_sym__val_number_decimal_token3] = ACTIONS(2291), - [aux_sym__val_number_decimal_token4] = ACTIONS(2291), - [aux_sym__val_number_token1] = ACTIONS(2291), - [aux_sym__val_number_token2] = ACTIONS(2291), - [aux_sym__val_number_token3] = ACTIONS(2291), - [anon_sym_DQUOTE] = ACTIONS(2291), - [sym__str_single_quotes] = ACTIONS(2291), - [sym__str_back_ticks] = ACTIONS(2291), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2291), - [sym__entry_separator] = ACTIONS(2295), - [anon_sym_PLUS] = ACTIONS(2291), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1552), - [anon_sym_POUND] = ACTIONS(3), + [437] = { + [sym_cell_path] = STATE(634), + [sym_path] = STATE(631), + [sym_comment] = STATE(437), + [aux_sym_cell_path_repeat1] = STATE(456), + [anon_sym_export] = ACTIONS(2079), + [anon_sym_alias] = ACTIONS(2079), + [anon_sym_let] = ACTIONS(2079), + [anon_sym_let_DASHenv] = ACTIONS(2079), + [anon_sym_mut] = ACTIONS(2079), + [anon_sym_const] = ACTIONS(2079), + [aux_sym_cmd_identifier_token1] = ACTIONS(2079), + [aux_sym_cmd_identifier_token2] = ACTIONS(2079), + [aux_sym_cmd_identifier_token3] = ACTIONS(2079), + [aux_sym_cmd_identifier_token4] = ACTIONS(2079), + [aux_sym_cmd_identifier_token5] = ACTIONS(2079), + [aux_sym_cmd_identifier_token6] = ACTIONS(2079), + [aux_sym_cmd_identifier_token7] = ACTIONS(2079), + [aux_sym_cmd_identifier_token8] = ACTIONS(2079), + [aux_sym_cmd_identifier_token9] = ACTIONS(2079), + [aux_sym_cmd_identifier_token10] = ACTIONS(2079), + [aux_sym_cmd_identifier_token11] = ACTIONS(2079), + [aux_sym_cmd_identifier_token12] = ACTIONS(2079), + [aux_sym_cmd_identifier_token13] = ACTIONS(2079), + [aux_sym_cmd_identifier_token14] = ACTIONS(2079), + [aux_sym_cmd_identifier_token15] = ACTIONS(2079), + [aux_sym_cmd_identifier_token16] = ACTIONS(2079), + [aux_sym_cmd_identifier_token17] = ACTIONS(2079), + [aux_sym_cmd_identifier_token18] = ACTIONS(2079), + [aux_sym_cmd_identifier_token19] = ACTIONS(2079), + [aux_sym_cmd_identifier_token20] = ACTIONS(2079), + [aux_sym_cmd_identifier_token21] = ACTIONS(2079), + [aux_sym_cmd_identifier_token22] = ACTIONS(2079), + [aux_sym_cmd_identifier_token23] = ACTIONS(2079), + [aux_sym_cmd_identifier_token24] = ACTIONS(2079), + [aux_sym_cmd_identifier_token25] = ACTIONS(2079), + [aux_sym_cmd_identifier_token26] = ACTIONS(2079), + [aux_sym_cmd_identifier_token27] = ACTIONS(2079), + [aux_sym_cmd_identifier_token28] = ACTIONS(2079), + [aux_sym_cmd_identifier_token29] = ACTIONS(2079), + [aux_sym_cmd_identifier_token30] = ACTIONS(2079), + [aux_sym_cmd_identifier_token31] = ACTIONS(2079), + [aux_sym_cmd_identifier_token32] = ACTIONS(2079), + [aux_sym_cmd_identifier_token33] = ACTIONS(2079), + [aux_sym_cmd_identifier_token34] = ACTIONS(2079), + [aux_sym_cmd_identifier_token35] = ACTIONS(2079), + [aux_sym_cmd_identifier_token36] = ACTIONS(2079), + [anon_sym_true] = ACTIONS(2081), + [anon_sym_false] = ACTIONS(2081), + [anon_sym_null] = ACTIONS(2081), + [aux_sym_cmd_identifier_token38] = ACTIONS(2079), + [aux_sym_cmd_identifier_token39] = ACTIONS(2081), + [aux_sym_cmd_identifier_token40] = ACTIONS(2081), + [anon_sym_def] = ACTIONS(2079), + [anon_sym_export_DASHenv] = ACTIONS(2079), + [anon_sym_extern] = ACTIONS(2079), + [anon_sym_module] = ACTIONS(2079), + [anon_sym_use] = ACTIONS(2079), + [anon_sym_LPAREN] = ACTIONS(2081), + [anon_sym_DOLLAR] = ACTIONS(2081), + [anon_sym_error] = ACTIONS(2079), + [anon_sym_list] = ACTIONS(2079), + [anon_sym_DASH] = ACTIONS(2079), + [anon_sym_break] = ACTIONS(2079), + [anon_sym_continue] = ACTIONS(2079), + [anon_sym_for] = ACTIONS(2079), + [anon_sym_in] = ACTIONS(2079), + [anon_sym_loop] = ACTIONS(2079), + [anon_sym_make] = ACTIONS(2079), + [anon_sym_while] = ACTIONS(2079), + [anon_sym_do] = ACTIONS(2079), + [anon_sym_if] = ACTIONS(2079), + [anon_sym_else] = ACTIONS(2079), + [anon_sym_match] = ACTIONS(2079), + [anon_sym_RBRACE] = ACTIONS(2081), + [anon_sym_try] = ACTIONS(2079), + [anon_sym_catch] = ACTIONS(2079), + [anon_sym_return] = ACTIONS(2079), + [anon_sym_source] = ACTIONS(2079), + [anon_sym_source_DASHenv] = ACTIONS(2079), + [anon_sym_register] = ACTIONS(2079), + [anon_sym_hide] = ACTIONS(2079), + [anon_sym_hide_DASHenv] = ACTIONS(2079), + [anon_sym_overlay] = ACTIONS(2079), + [anon_sym_new] = ACTIONS(2079), + [anon_sym_as] = ACTIONS(2079), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2081), + [anon_sym_DOT] = ACTIONS(2177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2081), + [aux_sym__val_number_decimal_token1] = ACTIONS(2079), + [aux_sym__val_number_decimal_token2] = ACTIONS(2081), + [aux_sym__val_number_decimal_token3] = ACTIONS(2081), + [aux_sym__val_number_decimal_token4] = ACTIONS(2081), + [aux_sym__val_number_token1] = ACTIONS(2081), + [aux_sym__val_number_token2] = ACTIONS(2081), + [aux_sym__val_number_token3] = ACTIONS(2081), + [anon_sym_DQUOTE] = ACTIONS(2081), + [sym__str_single_quotes] = ACTIONS(2081), + [sym__str_back_ticks] = ACTIONS(2081), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2081), + [anon_sym_PLUS] = ACTIONS(2079), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2081), }, - [492] = { - [sym_comment] = STATE(492), - [anon_sym_export] = ACTIONS(2297), - [anon_sym_alias] = ACTIONS(2297), - [anon_sym_let] = ACTIONS(2297), - [anon_sym_let_DASHenv] = ACTIONS(2297), - [anon_sym_mut] = ACTIONS(2297), - [anon_sym_const] = ACTIONS(2297), - [aux_sym_cmd_identifier_token1] = ACTIONS(2297), - [aux_sym_cmd_identifier_token2] = ACTIONS(2297), - [aux_sym_cmd_identifier_token3] = ACTIONS(2297), - [aux_sym_cmd_identifier_token4] = ACTIONS(2297), - [aux_sym_cmd_identifier_token5] = ACTIONS(2297), - [aux_sym_cmd_identifier_token6] = ACTIONS(2297), - [aux_sym_cmd_identifier_token7] = ACTIONS(2297), - [aux_sym_cmd_identifier_token8] = ACTIONS(2297), - [aux_sym_cmd_identifier_token9] = ACTIONS(2297), - [aux_sym_cmd_identifier_token10] = ACTIONS(2297), - [aux_sym_cmd_identifier_token11] = ACTIONS(2297), - [aux_sym_cmd_identifier_token12] = ACTIONS(2297), - [aux_sym_cmd_identifier_token13] = ACTIONS(2297), - [aux_sym_cmd_identifier_token14] = ACTIONS(2297), - [aux_sym_cmd_identifier_token15] = ACTIONS(2297), - [aux_sym_cmd_identifier_token16] = ACTIONS(2297), - [aux_sym_cmd_identifier_token17] = ACTIONS(2297), - [aux_sym_cmd_identifier_token18] = ACTIONS(2297), - [aux_sym_cmd_identifier_token19] = ACTIONS(2297), - [aux_sym_cmd_identifier_token20] = ACTIONS(2297), - [aux_sym_cmd_identifier_token21] = ACTIONS(2297), - [aux_sym_cmd_identifier_token22] = ACTIONS(2297), - [aux_sym_cmd_identifier_token23] = ACTIONS(2297), - [aux_sym_cmd_identifier_token24] = ACTIONS(2297), - [aux_sym_cmd_identifier_token25] = ACTIONS(2297), - [aux_sym_cmd_identifier_token26] = ACTIONS(2297), - [aux_sym_cmd_identifier_token27] = ACTIONS(2297), - [aux_sym_cmd_identifier_token28] = ACTIONS(2297), - [aux_sym_cmd_identifier_token29] = ACTIONS(2297), - [aux_sym_cmd_identifier_token30] = ACTIONS(2297), - [aux_sym_cmd_identifier_token31] = ACTIONS(2297), - [aux_sym_cmd_identifier_token32] = ACTIONS(2297), - [aux_sym_cmd_identifier_token33] = ACTIONS(2297), - [aux_sym_cmd_identifier_token34] = ACTIONS(2297), - [aux_sym_cmd_identifier_token35] = ACTIONS(2297), - [aux_sym_cmd_identifier_token36] = ACTIONS(2297), - [anon_sym_true] = ACTIONS(2297), - [anon_sym_false] = ACTIONS(2297), - [anon_sym_null] = ACTIONS(2297), - [aux_sym_cmd_identifier_token38] = ACTIONS(2297), - [aux_sym_cmd_identifier_token39] = ACTIONS(2297), - [aux_sym_cmd_identifier_token40] = ACTIONS(2297), - [anon_sym_def] = ACTIONS(2297), - [anon_sym_export_DASHenv] = ACTIONS(2297), - [anon_sym_extern] = ACTIONS(2297), - [anon_sym_module] = ACTIONS(2297), - [anon_sym_use] = ACTIONS(2297), - [anon_sym_LPAREN] = ACTIONS(2297), - [anon_sym_DOLLAR] = ACTIONS(2297), - [anon_sym_error] = ACTIONS(2297), - [anon_sym_list] = ACTIONS(2297), - [anon_sym_DASH] = ACTIONS(2297), - [anon_sym_break] = ACTIONS(2297), - [anon_sym_continue] = ACTIONS(2297), - [anon_sym_for] = ACTIONS(2297), - [anon_sym_in] = ACTIONS(2297), - [anon_sym_loop] = ACTIONS(2297), - [anon_sym_make] = ACTIONS(2297), - [anon_sym_while] = ACTIONS(2297), - [anon_sym_do] = ACTIONS(2297), - [anon_sym_if] = ACTIONS(2297), - [anon_sym_else] = ACTIONS(2297), - [anon_sym_match] = ACTIONS(2297), - [anon_sym_RBRACE] = ACTIONS(2297), - [anon_sym_try] = ACTIONS(2297), - [anon_sym_catch] = ACTIONS(2297), - [anon_sym_return] = ACTIONS(2297), - [anon_sym_source] = ACTIONS(2297), - [anon_sym_source_DASHenv] = ACTIONS(2297), - [anon_sym_register] = ACTIONS(2297), - [anon_sym_hide] = ACTIONS(2297), - [anon_sym_hide_DASHenv] = ACTIONS(2297), - [anon_sym_overlay] = ACTIONS(2297), - [anon_sym_new] = ACTIONS(2297), - [anon_sym_as] = ACTIONS(2297), - [anon_sym_LPAREN2] = ACTIONS(2299), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2297), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2297), - [aux_sym__val_number_decimal_token1] = ACTIONS(2297), - [aux_sym__val_number_decimal_token2] = ACTIONS(2297), - [aux_sym__val_number_decimal_token3] = ACTIONS(2297), - [aux_sym__val_number_decimal_token4] = ACTIONS(2297), - [aux_sym__val_number_token1] = ACTIONS(2297), - [aux_sym__val_number_token2] = ACTIONS(2297), - [aux_sym__val_number_token3] = ACTIONS(2297), - [anon_sym_DQUOTE] = ACTIONS(2297), - [sym__str_single_quotes] = ACTIONS(2297), - [sym__str_back_ticks] = ACTIONS(2297), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2297), - [sym__entry_separator] = ACTIONS(2301), - [anon_sym_PLUS] = ACTIONS(2297), - [aux_sym__unquoted_in_record_token2] = ACTIONS(2303), + [438] = { + [sym_comment] = STATE(438), + [anon_sym_export] = ACTIONS(1715), + [anon_sym_alias] = ACTIONS(1715), + [anon_sym_let] = ACTIONS(1715), + [anon_sym_let_DASHenv] = ACTIONS(1715), + [anon_sym_mut] = ACTIONS(1715), + [anon_sym_const] = ACTIONS(1715), + [aux_sym_cmd_identifier_token1] = ACTIONS(1715), + [aux_sym_cmd_identifier_token2] = ACTIONS(1715), + [aux_sym_cmd_identifier_token3] = ACTIONS(1715), + [aux_sym_cmd_identifier_token4] = ACTIONS(1715), + [aux_sym_cmd_identifier_token5] = ACTIONS(1715), + [aux_sym_cmd_identifier_token6] = ACTIONS(1715), + [aux_sym_cmd_identifier_token7] = ACTIONS(1715), + [aux_sym_cmd_identifier_token8] = ACTIONS(1715), + [aux_sym_cmd_identifier_token9] = ACTIONS(1715), + [aux_sym_cmd_identifier_token10] = ACTIONS(1715), + [aux_sym_cmd_identifier_token11] = ACTIONS(1715), + [aux_sym_cmd_identifier_token12] = ACTIONS(1715), + [aux_sym_cmd_identifier_token13] = ACTIONS(1715), + [aux_sym_cmd_identifier_token14] = ACTIONS(1715), + [aux_sym_cmd_identifier_token15] = ACTIONS(1715), + [aux_sym_cmd_identifier_token16] = ACTIONS(1715), + [aux_sym_cmd_identifier_token17] = ACTIONS(1715), + [aux_sym_cmd_identifier_token18] = ACTIONS(1715), + [aux_sym_cmd_identifier_token19] = ACTIONS(1715), + [aux_sym_cmd_identifier_token20] = ACTIONS(1715), + [aux_sym_cmd_identifier_token21] = ACTIONS(1715), + [aux_sym_cmd_identifier_token22] = ACTIONS(1715), + [aux_sym_cmd_identifier_token23] = ACTIONS(1715), + [aux_sym_cmd_identifier_token24] = ACTIONS(1715), + [aux_sym_cmd_identifier_token25] = ACTIONS(1715), + [aux_sym_cmd_identifier_token26] = ACTIONS(1715), + [aux_sym_cmd_identifier_token27] = ACTIONS(1715), + [aux_sym_cmd_identifier_token28] = ACTIONS(1715), + [aux_sym_cmd_identifier_token29] = ACTIONS(1715), + [aux_sym_cmd_identifier_token30] = ACTIONS(1715), + [aux_sym_cmd_identifier_token31] = ACTIONS(1715), + [aux_sym_cmd_identifier_token32] = ACTIONS(1715), + [aux_sym_cmd_identifier_token33] = ACTIONS(1715), + [aux_sym_cmd_identifier_token34] = ACTIONS(1715), + [aux_sym_cmd_identifier_token35] = ACTIONS(1715), + [aux_sym_cmd_identifier_token36] = ACTIONS(1715), + [anon_sym_true] = ACTIONS(1715), + [anon_sym_false] = ACTIONS(1715), + [anon_sym_null] = ACTIONS(1715), + [aux_sym_cmd_identifier_token38] = ACTIONS(1715), + [aux_sym_cmd_identifier_token39] = ACTIONS(1715), + [aux_sym_cmd_identifier_token40] = ACTIONS(1715), + [anon_sym_def] = ACTIONS(1715), + [anon_sym_export_DASHenv] = ACTIONS(1715), + [anon_sym_extern] = ACTIONS(1715), + [anon_sym_module] = ACTIONS(1715), + [anon_sym_use] = ACTIONS(1715), + [anon_sym_LPAREN] = ACTIONS(1715), + [anon_sym_DOLLAR] = ACTIONS(1715), + [anon_sym_error] = ACTIONS(1715), + [anon_sym_list] = ACTIONS(1715), + [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_break] = ACTIONS(1715), + [anon_sym_continue] = ACTIONS(1715), + [anon_sym_for] = ACTIONS(1715), + [anon_sym_in] = ACTIONS(1715), + [anon_sym_loop] = ACTIONS(1715), + [anon_sym_make] = ACTIONS(1715), + [anon_sym_while] = ACTIONS(1715), + [anon_sym_do] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1715), + [anon_sym_else] = ACTIONS(1715), + [anon_sym_match] = ACTIONS(1715), + [anon_sym_RBRACE] = ACTIONS(1715), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_catch] = ACTIONS(1715), + [anon_sym_return] = ACTIONS(1715), + [anon_sym_source] = ACTIONS(1715), + [anon_sym_source_DASHenv] = ACTIONS(1715), + [anon_sym_register] = ACTIONS(1715), + [anon_sym_hide] = ACTIONS(1715), + [anon_sym_hide_DASHenv] = ACTIONS(1715), + [anon_sym_overlay] = ACTIONS(1715), + [anon_sym_new] = ACTIONS(1715), + [anon_sym_as] = ACTIONS(1715), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1715), + [anon_sym_DOT_DOT2] = ACTIONS(1715), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1717), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1717), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1715), + [aux_sym__val_number_decimal_token1] = ACTIONS(1715), + [aux_sym__val_number_decimal_token2] = ACTIONS(1715), + [aux_sym__val_number_decimal_token3] = ACTIONS(1715), + [aux_sym__val_number_decimal_token4] = ACTIONS(1715), + [aux_sym__val_number_token1] = ACTIONS(1715), + [aux_sym__val_number_token2] = ACTIONS(1715), + [aux_sym__val_number_token3] = ACTIONS(1715), + [anon_sym_DQUOTE] = ACTIONS(1715), + [sym__str_single_quotes] = ACTIONS(1715), + [sym__str_back_ticks] = ACTIONS(1715), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1715), + [sym__entry_separator] = ACTIONS(1717), + [anon_sym_PLUS] = ACTIONS(1715), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1717), }, - [493] = { - [sym_comment] = STATE(493), + [439] = { + [sym_comment] = STATE(439), [anon_sym_export] = ACTIONS(1070), [anon_sym_alias] = ACTIONS(1070), [anon_sym_let] = ACTIONS(1070), @@ -130956,9 +126888,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(1070), [anon_sym_as] = ACTIONS(1070), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1072), - [anon_sym_DOT_DOT2] = ACTIONS(2259), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2261), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2261), + [anon_sym_DOT_DOT2] = ACTIONS(1070), + [anon_sym_DOT] = ACTIONS(1070), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1072), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1072), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1072), [aux_sym__val_number_decimal_token1] = ACTIONS(1070), [aux_sym__val_number_decimal_token2] = ACTIONS(1072), @@ -130972,2537 +126905,531 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1072), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1072), [anon_sym_PLUS] = ACTIONS(1070), - [anon_sym_POUND] = ACTIONS(247), - }, - [494] = { - [sym_comment] = STATE(494), - [anon_sym_export] = ACTIONS(1721), - [anon_sym_alias] = ACTIONS(1721), - [anon_sym_let] = ACTIONS(1721), - [anon_sym_let_DASHenv] = ACTIONS(1721), - [anon_sym_mut] = ACTIONS(1721), - [anon_sym_const] = ACTIONS(1721), - [aux_sym_cmd_identifier_token1] = ACTIONS(1721), - [aux_sym_cmd_identifier_token2] = ACTIONS(1721), - [aux_sym_cmd_identifier_token3] = ACTIONS(1721), - [aux_sym_cmd_identifier_token4] = ACTIONS(1721), - [aux_sym_cmd_identifier_token5] = ACTIONS(1721), - [aux_sym_cmd_identifier_token6] = ACTIONS(1721), - [aux_sym_cmd_identifier_token7] = ACTIONS(1721), - [aux_sym_cmd_identifier_token8] = ACTIONS(1721), - [aux_sym_cmd_identifier_token9] = ACTIONS(1721), - [aux_sym_cmd_identifier_token10] = ACTIONS(1721), - [aux_sym_cmd_identifier_token11] = ACTIONS(1721), - [aux_sym_cmd_identifier_token12] = ACTIONS(1721), - [aux_sym_cmd_identifier_token13] = ACTIONS(1721), - [aux_sym_cmd_identifier_token14] = ACTIONS(1721), - [aux_sym_cmd_identifier_token15] = ACTIONS(1721), - [aux_sym_cmd_identifier_token16] = ACTIONS(1721), - [aux_sym_cmd_identifier_token17] = ACTIONS(1721), - [aux_sym_cmd_identifier_token18] = ACTIONS(1721), - [aux_sym_cmd_identifier_token19] = ACTIONS(1721), - [aux_sym_cmd_identifier_token20] = ACTIONS(1721), - [aux_sym_cmd_identifier_token21] = ACTIONS(1721), - [aux_sym_cmd_identifier_token22] = ACTIONS(1721), - [aux_sym_cmd_identifier_token23] = ACTIONS(1721), - [aux_sym_cmd_identifier_token24] = ACTIONS(1721), - [aux_sym_cmd_identifier_token25] = ACTIONS(1721), - [aux_sym_cmd_identifier_token26] = ACTIONS(1721), - [aux_sym_cmd_identifier_token27] = ACTIONS(1721), - [aux_sym_cmd_identifier_token28] = ACTIONS(1721), - [aux_sym_cmd_identifier_token29] = ACTIONS(1721), - [aux_sym_cmd_identifier_token30] = ACTIONS(1721), - [aux_sym_cmd_identifier_token31] = ACTIONS(1721), - [aux_sym_cmd_identifier_token32] = ACTIONS(1721), - [aux_sym_cmd_identifier_token33] = ACTIONS(1721), - [aux_sym_cmd_identifier_token34] = ACTIONS(1721), - [aux_sym_cmd_identifier_token35] = ACTIONS(1721), - [aux_sym_cmd_identifier_token36] = ACTIONS(1721), - [anon_sym_true] = ACTIONS(1723), - [anon_sym_false] = ACTIONS(1723), - [anon_sym_null] = ACTIONS(1723), - [aux_sym_cmd_identifier_token38] = ACTIONS(1721), - [aux_sym_cmd_identifier_token39] = ACTIONS(1723), - [aux_sym_cmd_identifier_token40] = ACTIONS(1723), - [anon_sym_def] = ACTIONS(1721), - [anon_sym_export_DASHenv] = ACTIONS(1721), - [anon_sym_extern] = ACTIONS(1721), - [anon_sym_module] = ACTIONS(1721), - [anon_sym_use] = ACTIONS(1721), - [anon_sym_LPAREN] = ACTIONS(1723), - [anon_sym_DOLLAR] = ACTIONS(1723), - [anon_sym_error] = ACTIONS(1721), - [anon_sym_list] = ACTIONS(1721), - [anon_sym_DASH] = ACTIONS(1721), - [anon_sym_break] = ACTIONS(1721), - [anon_sym_continue] = ACTIONS(1721), - [anon_sym_for] = ACTIONS(1721), - [anon_sym_in] = ACTIONS(1721), - [anon_sym_loop] = ACTIONS(1721), - [anon_sym_make] = ACTIONS(1721), - [anon_sym_while] = ACTIONS(1721), - [anon_sym_do] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1721), - [anon_sym_else] = ACTIONS(1721), - [anon_sym_match] = ACTIONS(1721), - [anon_sym_RBRACE] = ACTIONS(1723), - [anon_sym_try] = ACTIONS(1721), - [anon_sym_catch] = ACTIONS(1721), - [anon_sym_return] = ACTIONS(1721), - [anon_sym_source] = ACTIONS(1721), - [anon_sym_source_DASHenv] = ACTIONS(1721), - [anon_sym_register] = ACTIONS(1721), - [anon_sym_hide] = ACTIONS(1721), - [anon_sym_hide_DASHenv] = ACTIONS(1721), - [anon_sym_overlay] = ACTIONS(1721), - [anon_sym_new] = ACTIONS(1721), - [anon_sym_as] = ACTIONS(1721), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1723), - [anon_sym_DOT_DOT2] = ACTIONS(1721), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1723), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1723), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1723), - [aux_sym__val_number_decimal_token1] = ACTIONS(1721), - [aux_sym__val_number_decimal_token2] = ACTIONS(1723), - [aux_sym__val_number_decimal_token3] = ACTIONS(1723), - [aux_sym__val_number_decimal_token4] = ACTIONS(1723), - [aux_sym__val_number_token1] = ACTIONS(1723), - [aux_sym__val_number_token2] = ACTIONS(1723), - [aux_sym__val_number_token3] = ACTIONS(1723), - [anon_sym_DQUOTE] = ACTIONS(1723), - [sym__str_single_quotes] = ACTIONS(1723), - [sym__str_back_ticks] = ACTIONS(1723), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1723), - [anon_sym_PLUS] = ACTIONS(1721), - [anon_sym_POUND] = ACTIONS(247), - }, - [495] = { - [sym_comment] = STATE(495), - [anon_sym_export] = ACTIONS(2305), - [anon_sym_alias] = ACTIONS(2305), - [anon_sym_let] = ACTIONS(2305), - [anon_sym_let_DASHenv] = ACTIONS(2305), - [anon_sym_mut] = ACTIONS(2305), - [anon_sym_const] = ACTIONS(2305), - [aux_sym_cmd_identifier_token1] = ACTIONS(2305), - [aux_sym_cmd_identifier_token2] = ACTIONS(2305), - [aux_sym_cmd_identifier_token3] = ACTIONS(2305), - [aux_sym_cmd_identifier_token4] = ACTIONS(2305), - [aux_sym_cmd_identifier_token5] = ACTIONS(2305), - [aux_sym_cmd_identifier_token6] = ACTIONS(2305), - [aux_sym_cmd_identifier_token7] = ACTIONS(2305), - [aux_sym_cmd_identifier_token8] = ACTIONS(2305), - [aux_sym_cmd_identifier_token9] = ACTIONS(2305), - [aux_sym_cmd_identifier_token10] = ACTIONS(2305), - [aux_sym_cmd_identifier_token11] = ACTIONS(2305), - [aux_sym_cmd_identifier_token12] = ACTIONS(2305), - [aux_sym_cmd_identifier_token13] = ACTIONS(2305), - [aux_sym_cmd_identifier_token14] = ACTIONS(2305), - [aux_sym_cmd_identifier_token15] = ACTIONS(2305), - [aux_sym_cmd_identifier_token16] = ACTIONS(2305), - [aux_sym_cmd_identifier_token17] = ACTIONS(2305), - [aux_sym_cmd_identifier_token18] = ACTIONS(2305), - [aux_sym_cmd_identifier_token19] = ACTIONS(2305), - [aux_sym_cmd_identifier_token20] = ACTIONS(2305), - [aux_sym_cmd_identifier_token21] = ACTIONS(2305), - [aux_sym_cmd_identifier_token22] = ACTIONS(2305), - [aux_sym_cmd_identifier_token23] = ACTIONS(2305), - [aux_sym_cmd_identifier_token24] = ACTIONS(2305), - [aux_sym_cmd_identifier_token25] = ACTIONS(2305), - [aux_sym_cmd_identifier_token26] = ACTIONS(2305), - [aux_sym_cmd_identifier_token27] = ACTIONS(2305), - [aux_sym_cmd_identifier_token28] = ACTIONS(2305), - [aux_sym_cmd_identifier_token29] = ACTIONS(2305), - [aux_sym_cmd_identifier_token30] = ACTIONS(2305), - [aux_sym_cmd_identifier_token31] = ACTIONS(2305), - [aux_sym_cmd_identifier_token32] = ACTIONS(2305), - [aux_sym_cmd_identifier_token33] = ACTIONS(2305), - [aux_sym_cmd_identifier_token34] = ACTIONS(2305), - [aux_sym_cmd_identifier_token35] = ACTIONS(2305), - [aux_sym_cmd_identifier_token36] = ACTIONS(2305), - [anon_sym_true] = ACTIONS(2305), - [anon_sym_false] = ACTIONS(2305), - [anon_sym_null] = ACTIONS(2305), - [aux_sym_cmd_identifier_token38] = ACTIONS(2305), - [aux_sym_cmd_identifier_token39] = ACTIONS(2305), - [aux_sym_cmd_identifier_token40] = ACTIONS(2305), - [anon_sym_def] = ACTIONS(2305), - [anon_sym_export_DASHenv] = ACTIONS(2305), - [anon_sym_extern] = ACTIONS(2305), - [anon_sym_module] = ACTIONS(2305), - [anon_sym_use] = ACTIONS(2305), - [anon_sym_RBRACK] = ACTIONS(2305), - [anon_sym_LPAREN] = ACTIONS(2305), - [anon_sym_DOLLAR] = ACTIONS(2305), - [anon_sym_error] = ACTIONS(2305), - [anon_sym_list] = ACTIONS(2305), - [anon_sym_DASH] = ACTIONS(2305), - [anon_sym_break] = ACTIONS(2305), - [anon_sym_continue] = ACTIONS(2305), - [anon_sym_for] = ACTIONS(2305), - [anon_sym_in] = ACTIONS(2305), - [anon_sym_loop] = ACTIONS(2305), - [anon_sym_make] = ACTIONS(2305), - [anon_sym_while] = ACTIONS(2305), - [anon_sym_do] = ACTIONS(2305), - [anon_sym_if] = ACTIONS(2305), - [anon_sym_else] = ACTIONS(2305), - [anon_sym_match] = ACTIONS(2305), - [anon_sym_RBRACE] = ACTIONS(2305), - [anon_sym_try] = ACTIONS(2305), - [anon_sym_catch] = ACTIONS(2305), - [anon_sym_return] = ACTIONS(2305), - [anon_sym_source] = ACTIONS(2305), - [anon_sym_source_DASHenv] = ACTIONS(2305), - [anon_sym_register] = ACTIONS(2305), - [anon_sym_hide] = ACTIONS(2305), - [anon_sym_hide_DASHenv] = ACTIONS(2305), - [anon_sym_overlay] = ACTIONS(2305), - [anon_sym_new] = ACTIONS(2305), - [anon_sym_as] = ACTIONS(2305), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2305), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2305), - [aux_sym__val_number_decimal_token1] = ACTIONS(2305), - [aux_sym__val_number_decimal_token2] = ACTIONS(2305), - [aux_sym__val_number_decimal_token3] = ACTIONS(2305), - [aux_sym__val_number_decimal_token4] = ACTIONS(2305), - [aux_sym__val_number_token1] = ACTIONS(2305), - [aux_sym__val_number_token2] = ACTIONS(2305), - [aux_sym__val_number_token3] = ACTIONS(2305), - [anon_sym_DQUOTE] = ACTIONS(2305), - [sym__str_single_quotes] = ACTIONS(2305), - [sym__str_back_ticks] = ACTIONS(2305), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2305), - [sym__entry_separator] = ACTIONS(2307), - [anon_sym_PLUS] = ACTIONS(2305), - [anon_sym_POUND] = ACTIONS(3), - }, - [496] = { - [sym_comment] = STATE(496), - [anon_sym_export] = ACTIONS(1659), - [anon_sym_alias] = ACTIONS(1659), - [anon_sym_let] = ACTIONS(1659), - [anon_sym_let_DASHenv] = ACTIONS(1659), - [anon_sym_mut] = ACTIONS(1659), - [anon_sym_const] = ACTIONS(1659), - [aux_sym_cmd_identifier_token1] = ACTIONS(1659), - [aux_sym_cmd_identifier_token2] = ACTIONS(1659), - [aux_sym_cmd_identifier_token3] = ACTIONS(1659), - [aux_sym_cmd_identifier_token4] = ACTIONS(1659), - [aux_sym_cmd_identifier_token5] = ACTIONS(1659), - [aux_sym_cmd_identifier_token6] = ACTIONS(1659), - [aux_sym_cmd_identifier_token7] = ACTIONS(1659), - [aux_sym_cmd_identifier_token8] = ACTIONS(1659), - [aux_sym_cmd_identifier_token9] = ACTIONS(1659), - [aux_sym_cmd_identifier_token10] = ACTIONS(1659), - [aux_sym_cmd_identifier_token11] = ACTIONS(1659), - [aux_sym_cmd_identifier_token12] = ACTIONS(1659), - [aux_sym_cmd_identifier_token13] = ACTIONS(1659), - [aux_sym_cmd_identifier_token14] = ACTIONS(1659), - [aux_sym_cmd_identifier_token15] = ACTIONS(1659), - [aux_sym_cmd_identifier_token16] = ACTIONS(1659), - [aux_sym_cmd_identifier_token17] = ACTIONS(1659), - [aux_sym_cmd_identifier_token18] = ACTIONS(1659), - [aux_sym_cmd_identifier_token19] = ACTIONS(1659), - [aux_sym_cmd_identifier_token20] = ACTIONS(1659), - [aux_sym_cmd_identifier_token21] = ACTIONS(1659), - [aux_sym_cmd_identifier_token22] = ACTIONS(1659), - [aux_sym_cmd_identifier_token23] = ACTIONS(1659), - [aux_sym_cmd_identifier_token24] = ACTIONS(1659), - [aux_sym_cmd_identifier_token25] = ACTIONS(1659), - [aux_sym_cmd_identifier_token26] = ACTIONS(1659), - [aux_sym_cmd_identifier_token27] = ACTIONS(1659), - [aux_sym_cmd_identifier_token28] = ACTIONS(1659), - [aux_sym_cmd_identifier_token29] = ACTIONS(1659), - [aux_sym_cmd_identifier_token30] = ACTIONS(1659), - [aux_sym_cmd_identifier_token31] = ACTIONS(1659), - [aux_sym_cmd_identifier_token32] = ACTIONS(1659), - [aux_sym_cmd_identifier_token33] = ACTIONS(1659), - [aux_sym_cmd_identifier_token34] = ACTIONS(1659), - [aux_sym_cmd_identifier_token35] = ACTIONS(1659), - [aux_sym_cmd_identifier_token36] = ACTIONS(1659), - [anon_sym_true] = ACTIONS(1661), - [anon_sym_false] = ACTIONS(1661), - [anon_sym_null] = ACTIONS(1661), - [aux_sym_cmd_identifier_token38] = ACTIONS(1659), - [aux_sym_cmd_identifier_token39] = ACTIONS(1661), - [aux_sym_cmd_identifier_token40] = ACTIONS(1661), - [anon_sym_def] = ACTIONS(1659), - [anon_sym_export_DASHenv] = ACTIONS(1659), - [anon_sym_extern] = ACTIONS(1659), - [anon_sym_module] = ACTIONS(1659), - [anon_sym_use] = ACTIONS(1659), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_DOLLAR] = ACTIONS(1661), - [anon_sym_error] = ACTIONS(1659), - [anon_sym_list] = ACTIONS(1659), - [anon_sym_DASH] = ACTIONS(1659), - [anon_sym_break] = ACTIONS(1659), - [anon_sym_continue] = ACTIONS(1659), - [anon_sym_for] = ACTIONS(1659), - [anon_sym_in] = ACTIONS(1659), - [anon_sym_loop] = ACTIONS(1659), - [anon_sym_make] = ACTIONS(1659), - [anon_sym_while] = ACTIONS(1659), - [anon_sym_do] = ACTIONS(1659), - [anon_sym_if] = ACTIONS(1659), - [anon_sym_else] = ACTIONS(1659), - [anon_sym_match] = ACTIONS(1659), - [anon_sym_RBRACE] = ACTIONS(1661), - [anon_sym_try] = ACTIONS(1659), - [anon_sym_catch] = ACTIONS(1659), - [anon_sym_return] = ACTIONS(1659), - [anon_sym_source] = ACTIONS(1659), - [anon_sym_source_DASHenv] = ACTIONS(1659), - [anon_sym_register] = ACTIONS(1659), - [anon_sym_hide] = ACTIONS(1659), - [anon_sym_hide_DASHenv] = ACTIONS(1659), - [anon_sym_overlay] = ACTIONS(1659), - [anon_sym_new] = ACTIONS(1659), - [anon_sym_as] = ACTIONS(1659), - [anon_sym_LPAREN2] = ACTIONS(1661), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1661), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1661), - [aux_sym__val_number_decimal_token1] = ACTIONS(1659), - [aux_sym__val_number_decimal_token2] = ACTIONS(1661), - [aux_sym__val_number_decimal_token3] = ACTIONS(1661), - [aux_sym__val_number_decimal_token4] = ACTIONS(1661), - [aux_sym__val_number_token1] = ACTIONS(1661), - [aux_sym__val_number_token2] = ACTIONS(1661), - [aux_sym__val_number_token3] = ACTIONS(1661), - [anon_sym_DQUOTE] = ACTIONS(1661), - [sym__str_single_quotes] = ACTIONS(1661), - [sym__str_back_ticks] = ACTIONS(1661), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1661), - [anon_sym_PLUS] = ACTIONS(1659), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1659), - [anon_sym_POUND] = ACTIONS(247), - }, - [497] = { - [sym_comment] = STATE(497), - [anon_sym_export] = ACTIONS(1034), - [anon_sym_alias] = ACTIONS(1034), - [anon_sym_let] = ACTIONS(1034), - [anon_sym_let_DASHenv] = ACTIONS(1034), - [anon_sym_mut] = ACTIONS(1034), - [anon_sym_const] = ACTIONS(1034), - [aux_sym_cmd_identifier_token1] = ACTIONS(1034), - [aux_sym_cmd_identifier_token2] = ACTIONS(1034), - [aux_sym_cmd_identifier_token3] = ACTIONS(1034), - [aux_sym_cmd_identifier_token4] = ACTIONS(1034), - [aux_sym_cmd_identifier_token5] = ACTIONS(1034), - [aux_sym_cmd_identifier_token6] = ACTIONS(1034), - [aux_sym_cmd_identifier_token7] = ACTIONS(1034), - [aux_sym_cmd_identifier_token8] = ACTIONS(1034), - [aux_sym_cmd_identifier_token9] = ACTIONS(1034), - [aux_sym_cmd_identifier_token10] = ACTIONS(1034), - [aux_sym_cmd_identifier_token11] = ACTIONS(1034), - [aux_sym_cmd_identifier_token12] = ACTIONS(1034), - [aux_sym_cmd_identifier_token13] = ACTIONS(1034), - [aux_sym_cmd_identifier_token14] = ACTIONS(1034), - [aux_sym_cmd_identifier_token15] = ACTIONS(1034), - [aux_sym_cmd_identifier_token16] = ACTIONS(1034), - [aux_sym_cmd_identifier_token17] = ACTIONS(1034), - [aux_sym_cmd_identifier_token18] = ACTIONS(1034), - [aux_sym_cmd_identifier_token19] = ACTIONS(1034), - [aux_sym_cmd_identifier_token20] = ACTIONS(1034), - [aux_sym_cmd_identifier_token21] = ACTIONS(1034), - [aux_sym_cmd_identifier_token22] = ACTIONS(1034), - [aux_sym_cmd_identifier_token23] = ACTIONS(1034), - [aux_sym_cmd_identifier_token24] = ACTIONS(1034), - [aux_sym_cmd_identifier_token25] = ACTIONS(1034), - [aux_sym_cmd_identifier_token26] = ACTIONS(1034), - [aux_sym_cmd_identifier_token27] = ACTIONS(1034), - [aux_sym_cmd_identifier_token28] = ACTIONS(1034), - [aux_sym_cmd_identifier_token29] = ACTIONS(1034), - [aux_sym_cmd_identifier_token30] = ACTIONS(1034), - [aux_sym_cmd_identifier_token31] = ACTIONS(1034), - [aux_sym_cmd_identifier_token32] = ACTIONS(1034), - [aux_sym_cmd_identifier_token33] = ACTIONS(1034), - [aux_sym_cmd_identifier_token34] = ACTIONS(1034), - [aux_sym_cmd_identifier_token35] = ACTIONS(1034), - [aux_sym_cmd_identifier_token36] = ACTIONS(1034), - [anon_sym_true] = ACTIONS(1036), - [anon_sym_false] = ACTIONS(1036), - [anon_sym_null] = ACTIONS(1036), - [aux_sym_cmd_identifier_token38] = ACTIONS(1034), - [aux_sym_cmd_identifier_token39] = ACTIONS(1036), - [aux_sym_cmd_identifier_token40] = ACTIONS(1036), - [anon_sym_def] = ACTIONS(1034), - [anon_sym_export_DASHenv] = ACTIONS(1034), - [anon_sym_extern] = ACTIONS(1034), - [anon_sym_module] = ACTIONS(1034), - [anon_sym_use] = ACTIONS(1034), - [anon_sym_LPAREN] = ACTIONS(1036), - [anon_sym_DOLLAR] = ACTIONS(1036), - [anon_sym_error] = ACTIONS(1034), - [anon_sym_list] = ACTIONS(1034), - [anon_sym_DASH] = ACTIONS(1034), - [anon_sym_break] = ACTIONS(1034), - [anon_sym_continue] = ACTIONS(1034), - [anon_sym_for] = ACTIONS(1034), - [anon_sym_in] = ACTIONS(1034), - [anon_sym_loop] = ACTIONS(1034), - [anon_sym_make] = ACTIONS(1034), - [anon_sym_while] = ACTIONS(1034), - [anon_sym_do] = ACTIONS(1034), - [anon_sym_if] = ACTIONS(1034), - [anon_sym_else] = ACTIONS(1034), - [anon_sym_match] = ACTIONS(1034), - [anon_sym_RBRACE] = ACTIONS(1036), - [anon_sym_try] = ACTIONS(1034), - [anon_sym_catch] = ACTIONS(1034), - [anon_sym_return] = ACTIONS(1034), - [anon_sym_source] = ACTIONS(1034), - [anon_sym_source_DASHenv] = ACTIONS(1034), - [anon_sym_register] = ACTIONS(1034), - [anon_sym_hide] = ACTIONS(1034), - [anon_sym_hide_DASHenv] = ACTIONS(1034), - [anon_sym_overlay] = ACTIONS(1034), - [anon_sym_new] = ACTIONS(1034), - [anon_sym_as] = ACTIONS(1034), - [anon_sym_QMARK2] = ACTIONS(1036), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1036), - [anon_sym_DOT] = ACTIONS(1034), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1036), - [aux_sym__val_number_decimal_token1] = ACTIONS(1034), - [aux_sym__val_number_decimal_token2] = ACTIONS(1036), - [aux_sym__val_number_decimal_token3] = ACTIONS(1036), - [aux_sym__val_number_decimal_token4] = ACTIONS(1036), - [aux_sym__val_number_token1] = ACTIONS(1036), - [aux_sym__val_number_token2] = ACTIONS(1036), - [aux_sym__val_number_token3] = ACTIONS(1036), - [anon_sym_DQUOTE] = ACTIONS(1036), - [sym__str_single_quotes] = ACTIONS(1036), - [sym__str_back_ticks] = ACTIONS(1036), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1036), - [anon_sym_PLUS] = ACTIONS(1034), - [anon_sym_POUND] = ACTIONS(247), - }, - [498] = { - [sym_comment] = STATE(498), - [anon_sym_export] = ACTIONS(1721), - [anon_sym_alias] = ACTIONS(1721), - [anon_sym_let] = ACTIONS(1721), - [anon_sym_let_DASHenv] = ACTIONS(1721), - [anon_sym_mut] = ACTIONS(1721), - [anon_sym_const] = ACTIONS(1721), - [aux_sym_cmd_identifier_token1] = ACTIONS(1721), - [aux_sym_cmd_identifier_token2] = ACTIONS(1721), - [aux_sym_cmd_identifier_token3] = ACTIONS(1721), - [aux_sym_cmd_identifier_token4] = ACTIONS(1721), - [aux_sym_cmd_identifier_token5] = ACTIONS(1721), - [aux_sym_cmd_identifier_token6] = ACTIONS(1721), - [aux_sym_cmd_identifier_token7] = ACTIONS(1721), - [aux_sym_cmd_identifier_token8] = ACTIONS(1721), - [aux_sym_cmd_identifier_token9] = ACTIONS(1721), - [aux_sym_cmd_identifier_token10] = ACTIONS(1721), - [aux_sym_cmd_identifier_token11] = ACTIONS(1721), - [aux_sym_cmd_identifier_token12] = ACTIONS(1721), - [aux_sym_cmd_identifier_token13] = ACTIONS(1721), - [aux_sym_cmd_identifier_token14] = ACTIONS(1721), - [aux_sym_cmd_identifier_token15] = ACTIONS(1721), - [aux_sym_cmd_identifier_token16] = ACTIONS(1721), - [aux_sym_cmd_identifier_token17] = ACTIONS(1721), - [aux_sym_cmd_identifier_token18] = ACTIONS(1721), - [aux_sym_cmd_identifier_token19] = ACTIONS(1721), - [aux_sym_cmd_identifier_token20] = ACTIONS(1721), - [aux_sym_cmd_identifier_token21] = ACTIONS(1721), - [aux_sym_cmd_identifier_token22] = ACTIONS(1721), - [aux_sym_cmd_identifier_token23] = ACTIONS(1721), - [aux_sym_cmd_identifier_token24] = ACTIONS(1721), - [aux_sym_cmd_identifier_token25] = ACTIONS(1721), - [aux_sym_cmd_identifier_token26] = ACTIONS(1721), - [aux_sym_cmd_identifier_token27] = ACTIONS(1721), - [aux_sym_cmd_identifier_token28] = ACTIONS(1721), - [aux_sym_cmd_identifier_token29] = ACTIONS(1721), - [aux_sym_cmd_identifier_token30] = ACTIONS(1721), - [aux_sym_cmd_identifier_token31] = ACTIONS(1721), - [aux_sym_cmd_identifier_token32] = ACTIONS(1721), - [aux_sym_cmd_identifier_token33] = ACTIONS(1721), - [aux_sym_cmd_identifier_token34] = ACTIONS(1721), - [aux_sym_cmd_identifier_token35] = ACTIONS(1721), - [aux_sym_cmd_identifier_token36] = ACTIONS(1721), - [anon_sym_true] = ACTIONS(1723), - [anon_sym_false] = ACTIONS(1723), - [anon_sym_null] = ACTIONS(1723), - [aux_sym_cmd_identifier_token38] = ACTIONS(1721), - [aux_sym_cmd_identifier_token39] = ACTIONS(1723), - [aux_sym_cmd_identifier_token40] = ACTIONS(1723), - [anon_sym_def] = ACTIONS(1721), - [anon_sym_export_DASHenv] = ACTIONS(1721), - [anon_sym_extern] = ACTIONS(1721), - [anon_sym_module] = ACTIONS(1721), - [anon_sym_use] = ACTIONS(1721), - [anon_sym_LPAREN] = ACTIONS(1721), - [anon_sym_DOLLAR] = ACTIONS(1723), - [anon_sym_error] = ACTIONS(1721), - [anon_sym_list] = ACTIONS(1721), - [anon_sym_DASH] = ACTIONS(1721), - [anon_sym_break] = ACTIONS(1721), - [anon_sym_continue] = ACTIONS(1721), - [anon_sym_for] = ACTIONS(1721), - [anon_sym_in] = ACTIONS(1721), - [anon_sym_loop] = ACTIONS(1721), - [anon_sym_make] = ACTIONS(1721), - [anon_sym_while] = ACTIONS(1721), - [anon_sym_do] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1721), - [anon_sym_else] = ACTIONS(1721), - [anon_sym_match] = ACTIONS(1721), - [anon_sym_RBRACE] = ACTIONS(1723), - [anon_sym_try] = ACTIONS(1721), - [anon_sym_catch] = ACTIONS(1721), - [anon_sym_return] = ACTIONS(1721), - [anon_sym_source] = ACTIONS(1721), - [anon_sym_source_DASHenv] = ACTIONS(1721), - [anon_sym_register] = ACTIONS(1721), - [anon_sym_hide] = ACTIONS(1721), - [anon_sym_hide_DASHenv] = ACTIONS(1721), - [anon_sym_overlay] = ACTIONS(1721), - [anon_sym_new] = ACTIONS(1721), - [anon_sym_as] = ACTIONS(1721), - [anon_sym_LPAREN2] = ACTIONS(1723), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1723), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1723), - [aux_sym__val_number_decimal_token1] = ACTIONS(1721), - [aux_sym__val_number_decimal_token2] = ACTIONS(1723), - [aux_sym__val_number_decimal_token3] = ACTIONS(1723), - [aux_sym__val_number_decimal_token4] = ACTIONS(1723), - [aux_sym__val_number_token1] = ACTIONS(1723), - [aux_sym__val_number_token2] = ACTIONS(1723), - [aux_sym__val_number_token3] = ACTIONS(1723), - [anon_sym_DQUOTE] = ACTIONS(1723), - [sym__str_single_quotes] = ACTIONS(1723), - [sym__str_back_ticks] = ACTIONS(1723), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1723), - [anon_sym_PLUS] = ACTIONS(1721), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1721), - [anon_sym_POUND] = ACTIONS(247), - }, - [499] = { - [sym_comment] = STATE(499), - [anon_sym_export] = ACTIONS(1738), - [anon_sym_alias] = ACTIONS(1738), - [anon_sym_let] = ACTIONS(1738), - [anon_sym_let_DASHenv] = ACTIONS(1738), - [anon_sym_mut] = ACTIONS(1738), - [anon_sym_const] = ACTIONS(1738), - [aux_sym_cmd_identifier_token1] = ACTIONS(1738), - [aux_sym_cmd_identifier_token2] = ACTIONS(1738), - [aux_sym_cmd_identifier_token3] = ACTIONS(1738), - [aux_sym_cmd_identifier_token4] = ACTIONS(1738), - [aux_sym_cmd_identifier_token5] = ACTIONS(1738), - [aux_sym_cmd_identifier_token6] = ACTIONS(1738), - [aux_sym_cmd_identifier_token7] = ACTIONS(1738), - [aux_sym_cmd_identifier_token8] = ACTIONS(1738), - [aux_sym_cmd_identifier_token9] = ACTIONS(1738), - [aux_sym_cmd_identifier_token10] = ACTIONS(1738), - [aux_sym_cmd_identifier_token11] = ACTIONS(1738), - [aux_sym_cmd_identifier_token12] = ACTIONS(1738), - [aux_sym_cmd_identifier_token13] = ACTIONS(1738), - [aux_sym_cmd_identifier_token14] = ACTIONS(1738), - [aux_sym_cmd_identifier_token15] = ACTIONS(1738), - [aux_sym_cmd_identifier_token16] = ACTIONS(1738), - [aux_sym_cmd_identifier_token17] = ACTIONS(1738), - [aux_sym_cmd_identifier_token18] = ACTIONS(1738), - [aux_sym_cmd_identifier_token19] = ACTIONS(1738), - [aux_sym_cmd_identifier_token20] = ACTIONS(1738), - [aux_sym_cmd_identifier_token21] = ACTIONS(1738), - [aux_sym_cmd_identifier_token22] = ACTIONS(1738), - [aux_sym_cmd_identifier_token23] = ACTIONS(1738), - [aux_sym_cmd_identifier_token24] = ACTIONS(1738), - [aux_sym_cmd_identifier_token25] = ACTIONS(1738), - [aux_sym_cmd_identifier_token26] = ACTIONS(1738), - [aux_sym_cmd_identifier_token27] = ACTIONS(1738), - [aux_sym_cmd_identifier_token28] = ACTIONS(1738), - [aux_sym_cmd_identifier_token29] = ACTIONS(1738), - [aux_sym_cmd_identifier_token30] = ACTIONS(1738), - [aux_sym_cmd_identifier_token31] = ACTIONS(1738), - [aux_sym_cmd_identifier_token32] = ACTIONS(1738), - [aux_sym_cmd_identifier_token33] = ACTIONS(1738), - [aux_sym_cmd_identifier_token34] = ACTIONS(1738), - [aux_sym_cmd_identifier_token35] = ACTIONS(1738), - [aux_sym_cmd_identifier_token36] = ACTIONS(1738), - [anon_sym_true] = ACTIONS(1740), - [anon_sym_false] = ACTIONS(1740), - [anon_sym_null] = ACTIONS(1740), - [aux_sym_cmd_identifier_token38] = ACTIONS(1738), - [aux_sym_cmd_identifier_token39] = ACTIONS(1740), - [aux_sym_cmd_identifier_token40] = ACTIONS(1740), - [anon_sym_def] = ACTIONS(1738), - [anon_sym_export_DASHenv] = ACTIONS(1738), - [anon_sym_extern] = ACTIONS(1738), - [anon_sym_module] = ACTIONS(1738), - [anon_sym_use] = ACTIONS(1738), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_DOLLAR] = ACTIONS(1740), - [anon_sym_error] = ACTIONS(1738), - [anon_sym_list] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_break] = ACTIONS(1738), - [anon_sym_continue] = ACTIONS(1738), - [anon_sym_for] = ACTIONS(1738), - [anon_sym_in] = ACTIONS(1738), - [anon_sym_loop] = ACTIONS(1738), - [anon_sym_make] = ACTIONS(1738), - [anon_sym_while] = ACTIONS(1738), - [anon_sym_do] = ACTIONS(1738), - [anon_sym_if] = ACTIONS(1738), - [anon_sym_else] = ACTIONS(1738), - [anon_sym_match] = ACTIONS(1738), - [anon_sym_RBRACE] = ACTIONS(1740), - [anon_sym_try] = ACTIONS(1738), - [anon_sym_catch] = ACTIONS(1738), - [anon_sym_return] = ACTIONS(1738), - [anon_sym_source] = ACTIONS(1738), - [anon_sym_source_DASHenv] = ACTIONS(1738), - [anon_sym_register] = ACTIONS(1738), - [anon_sym_hide] = ACTIONS(1738), - [anon_sym_hide_DASHenv] = ACTIONS(1738), - [anon_sym_overlay] = ACTIONS(1738), - [anon_sym_new] = ACTIONS(1738), - [anon_sym_as] = ACTIONS(1738), - [anon_sym_LPAREN2] = ACTIONS(1740), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1740), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1740), - [aux_sym__val_number_decimal_token1] = ACTIONS(1738), - [aux_sym__val_number_decimal_token2] = ACTIONS(1740), - [aux_sym__val_number_decimal_token3] = ACTIONS(1740), - [aux_sym__val_number_decimal_token4] = ACTIONS(1740), - [aux_sym__val_number_token1] = ACTIONS(1740), - [aux_sym__val_number_token2] = ACTIONS(1740), - [aux_sym__val_number_token3] = ACTIONS(1740), - [anon_sym_DQUOTE] = ACTIONS(1740), - [sym__str_single_quotes] = ACTIONS(1740), - [sym__str_back_ticks] = ACTIONS(1740), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1738), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1738), - [anon_sym_POUND] = ACTIONS(247), - }, - [500] = { - [sym_comment] = STATE(500), - [anon_sym_export] = ACTIONS(2229), - [anon_sym_alias] = ACTIONS(2229), - [anon_sym_let] = ACTIONS(2229), - [anon_sym_let_DASHenv] = ACTIONS(2229), - [anon_sym_mut] = ACTIONS(2229), - [anon_sym_const] = ACTIONS(2229), - [aux_sym_cmd_identifier_token1] = ACTIONS(2229), - [aux_sym_cmd_identifier_token2] = ACTIONS(2229), - [aux_sym_cmd_identifier_token3] = ACTIONS(2229), - [aux_sym_cmd_identifier_token4] = ACTIONS(2229), - [aux_sym_cmd_identifier_token5] = ACTIONS(2229), - [aux_sym_cmd_identifier_token6] = ACTIONS(2229), - [aux_sym_cmd_identifier_token7] = ACTIONS(2229), - [aux_sym_cmd_identifier_token8] = ACTIONS(2229), - [aux_sym_cmd_identifier_token9] = ACTIONS(2229), - [aux_sym_cmd_identifier_token10] = ACTIONS(2229), - [aux_sym_cmd_identifier_token11] = ACTIONS(2229), - [aux_sym_cmd_identifier_token12] = ACTIONS(2229), - [aux_sym_cmd_identifier_token13] = ACTIONS(2229), - [aux_sym_cmd_identifier_token14] = ACTIONS(2229), - [aux_sym_cmd_identifier_token15] = ACTIONS(2229), - [aux_sym_cmd_identifier_token16] = ACTIONS(2229), - [aux_sym_cmd_identifier_token17] = ACTIONS(2229), - [aux_sym_cmd_identifier_token18] = ACTIONS(2229), - [aux_sym_cmd_identifier_token19] = ACTIONS(2229), - [aux_sym_cmd_identifier_token20] = ACTIONS(2229), - [aux_sym_cmd_identifier_token21] = ACTIONS(2229), - [aux_sym_cmd_identifier_token22] = ACTIONS(2229), - [aux_sym_cmd_identifier_token23] = ACTIONS(2229), - [aux_sym_cmd_identifier_token24] = ACTIONS(2229), - [aux_sym_cmd_identifier_token25] = ACTIONS(2229), - [aux_sym_cmd_identifier_token26] = ACTIONS(2229), - [aux_sym_cmd_identifier_token27] = ACTIONS(2229), - [aux_sym_cmd_identifier_token28] = ACTIONS(2229), - [aux_sym_cmd_identifier_token29] = ACTIONS(2229), - [aux_sym_cmd_identifier_token30] = ACTIONS(2229), - [aux_sym_cmd_identifier_token31] = ACTIONS(2229), - [aux_sym_cmd_identifier_token32] = ACTIONS(2229), - [aux_sym_cmd_identifier_token33] = ACTIONS(2229), - [aux_sym_cmd_identifier_token34] = ACTIONS(2229), - [aux_sym_cmd_identifier_token35] = ACTIONS(2229), - [aux_sym_cmd_identifier_token36] = ACTIONS(2229), - [anon_sym_true] = ACTIONS(2229), - [anon_sym_false] = ACTIONS(2229), - [anon_sym_null] = ACTIONS(2229), - [aux_sym_cmd_identifier_token38] = ACTIONS(2229), - [aux_sym_cmd_identifier_token39] = ACTIONS(2229), - [aux_sym_cmd_identifier_token40] = ACTIONS(2229), - [anon_sym_def] = ACTIONS(2229), - [anon_sym_export_DASHenv] = ACTIONS(2229), - [anon_sym_extern] = ACTIONS(2229), - [anon_sym_module] = ACTIONS(2229), - [anon_sym_use] = ACTIONS(2229), - [anon_sym_LPAREN] = ACTIONS(2229), - [anon_sym_DOLLAR] = ACTIONS(2229), - [anon_sym_error] = ACTIONS(2229), - [anon_sym_list] = ACTIONS(2229), - [anon_sym_DASH] = ACTIONS(2229), - [anon_sym_break] = ACTIONS(2229), - [anon_sym_continue] = ACTIONS(2229), - [anon_sym_for] = ACTIONS(2229), - [anon_sym_in] = ACTIONS(2229), - [anon_sym_loop] = ACTIONS(2229), - [anon_sym_make] = ACTIONS(2229), - [anon_sym_while] = ACTIONS(2229), - [anon_sym_do] = ACTIONS(2229), - [anon_sym_if] = ACTIONS(2229), - [anon_sym_else] = ACTIONS(2229), - [anon_sym_match] = ACTIONS(2229), - [anon_sym_RBRACE] = ACTIONS(2233), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_catch] = ACTIONS(2229), - [anon_sym_return] = ACTIONS(2229), - [anon_sym_source] = ACTIONS(2229), - [anon_sym_source_DASHenv] = ACTIONS(2229), - [anon_sym_register] = ACTIONS(2229), - [anon_sym_hide] = ACTIONS(2229), - [anon_sym_hide_DASHenv] = ACTIONS(2229), - [anon_sym_overlay] = ACTIONS(2229), - [anon_sym_new] = ACTIONS(2229), - [anon_sym_as] = ACTIONS(2229), - [anon_sym_LPAREN2] = ACTIONS(2231), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2233), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2229), - [aux_sym__val_number_decimal_token1] = ACTIONS(2229), - [aux_sym__val_number_decimal_token2] = ACTIONS(2229), - [aux_sym__val_number_decimal_token3] = ACTIONS(2229), - [aux_sym__val_number_decimal_token4] = ACTIONS(2229), - [aux_sym__val_number_token1] = ACTIONS(2229), - [aux_sym__val_number_token2] = ACTIONS(2229), - [aux_sym__val_number_token3] = ACTIONS(2229), - [anon_sym_DQUOTE] = ACTIONS(2233), - [sym__str_single_quotes] = ACTIONS(2233), - [sym__str_back_ticks] = ACTIONS(2233), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2233), - [anon_sym_PLUS] = ACTIONS(2229), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2235), - [anon_sym_POUND] = ACTIONS(3), - }, - [501] = { - [sym_comment] = STATE(501), - [anon_sym_export] = ACTIONS(2309), - [anon_sym_alias] = ACTIONS(2309), - [anon_sym_let] = ACTIONS(2309), - [anon_sym_let_DASHenv] = ACTIONS(2309), - [anon_sym_mut] = ACTIONS(2309), - [anon_sym_const] = ACTIONS(2309), - [aux_sym_cmd_identifier_token1] = ACTIONS(2309), - [aux_sym_cmd_identifier_token2] = ACTIONS(2309), - [aux_sym_cmd_identifier_token3] = ACTIONS(2309), - [aux_sym_cmd_identifier_token4] = ACTIONS(2309), - [aux_sym_cmd_identifier_token5] = ACTIONS(2309), - [aux_sym_cmd_identifier_token6] = ACTIONS(2309), - [aux_sym_cmd_identifier_token7] = ACTIONS(2309), - [aux_sym_cmd_identifier_token8] = ACTIONS(2309), - [aux_sym_cmd_identifier_token9] = ACTIONS(2309), - [aux_sym_cmd_identifier_token10] = ACTIONS(2309), - [aux_sym_cmd_identifier_token11] = ACTIONS(2309), - [aux_sym_cmd_identifier_token12] = ACTIONS(2309), - [aux_sym_cmd_identifier_token13] = ACTIONS(2309), - [aux_sym_cmd_identifier_token14] = ACTIONS(2309), - [aux_sym_cmd_identifier_token15] = ACTIONS(2309), - [aux_sym_cmd_identifier_token16] = ACTIONS(2309), - [aux_sym_cmd_identifier_token17] = ACTIONS(2309), - [aux_sym_cmd_identifier_token18] = ACTIONS(2309), - [aux_sym_cmd_identifier_token19] = ACTIONS(2309), - [aux_sym_cmd_identifier_token20] = ACTIONS(2309), - [aux_sym_cmd_identifier_token21] = ACTIONS(2309), - [aux_sym_cmd_identifier_token22] = ACTIONS(2309), - [aux_sym_cmd_identifier_token23] = ACTIONS(2309), - [aux_sym_cmd_identifier_token24] = ACTIONS(2309), - [aux_sym_cmd_identifier_token25] = ACTIONS(2309), - [aux_sym_cmd_identifier_token26] = ACTIONS(2309), - [aux_sym_cmd_identifier_token27] = ACTIONS(2309), - [aux_sym_cmd_identifier_token28] = ACTIONS(2309), - [aux_sym_cmd_identifier_token29] = ACTIONS(2309), - [aux_sym_cmd_identifier_token30] = ACTIONS(2309), - [aux_sym_cmd_identifier_token31] = ACTIONS(2309), - [aux_sym_cmd_identifier_token32] = ACTIONS(2309), - [aux_sym_cmd_identifier_token33] = ACTIONS(2309), - [aux_sym_cmd_identifier_token34] = ACTIONS(2309), - [aux_sym_cmd_identifier_token35] = ACTIONS(2309), - [aux_sym_cmd_identifier_token36] = ACTIONS(2309), - [anon_sym_true] = ACTIONS(2309), - [anon_sym_false] = ACTIONS(2309), - [anon_sym_null] = ACTIONS(2309), - [aux_sym_cmd_identifier_token38] = ACTIONS(2309), - [aux_sym_cmd_identifier_token39] = ACTIONS(2309), - [aux_sym_cmd_identifier_token40] = ACTIONS(2309), - [anon_sym_def] = ACTIONS(2309), - [anon_sym_export_DASHenv] = ACTIONS(2309), - [anon_sym_extern] = ACTIONS(2309), - [anon_sym_module] = ACTIONS(2309), - [anon_sym_use] = ACTIONS(2309), - [anon_sym_RBRACK] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(2309), - [anon_sym_DOLLAR] = ACTIONS(2309), - [anon_sym_error] = ACTIONS(2309), - [anon_sym_list] = ACTIONS(2309), - [anon_sym_DASH] = ACTIONS(2309), - [anon_sym_break] = ACTIONS(2309), - [anon_sym_continue] = ACTIONS(2309), - [anon_sym_for] = ACTIONS(2309), - [anon_sym_in] = ACTIONS(2309), - [anon_sym_loop] = ACTIONS(2309), - [anon_sym_make] = ACTIONS(2309), - [anon_sym_while] = ACTIONS(2309), - [anon_sym_do] = ACTIONS(2309), - [anon_sym_if] = ACTIONS(2309), - [anon_sym_else] = ACTIONS(2309), - [anon_sym_match] = ACTIONS(2309), - [anon_sym_RBRACE] = ACTIONS(2309), - [anon_sym_try] = ACTIONS(2309), - [anon_sym_catch] = ACTIONS(2309), - [anon_sym_return] = ACTIONS(2309), - [anon_sym_source] = ACTIONS(2309), - [anon_sym_source_DASHenv] = ACTIONS(2309), - [anon_sym_register] = ACTIONS(2309), - [anon_sym_hide] = ACTIONS(2309), - [anon_sym_hide_DASHenv] = ACTIONS(2309), - [anon_sym_overlay] = ACTIONS(2309), - [anon_sym_new] = ACTIONS(2309), - [anon_sym_as] = ACTIONS(2309), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2309), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2309), - [aux_sym__val_number_decimal_token2] = ACTIONS(2309), - [aux_sym__val_number_decimal_token3] = ACTIONS(2309), - [aux_sym__val_number_decimal_token4] = ACTIONS(2309), - [aux_sym__val_number_token1] = ACTIONS(2309), - [aux_sym__val_number_token2] = ACTIONS(2309), - [aux_sym__val_number_token3] = ACTIONS(2309), - [anon_sym_DQUOTE] = ACTIONS(2309), - [sym__str_single_quotes] = ACTIONS(2309), - [sym__str_back_ticks] = ACTIONS(2309), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2309), - [sym__entry_separator] = ACTIONS(2311), - [anon_sym_PLUS] = ACTIONS(2309), - [anon_sym_POUND] = ACTIONS(3), - }, - [502] = { - [sym_comment] = STATE(502), - [anon_sym_export] = ACTIONS(2237), - [anon_sym_alias] = ACTIONS(2237), - [anon_sym_let] = ACTIONS(2237), - [anon_sym_let_DASHenv] = ACTIONS(2237), - [anon_sym_mut] = ACTIONS(2237), - [anon_sym_const] = ACTIONS(2237), - [aux_sym_cmd_identifier_token1] = ACTIONS(2237), - [aux_sym_cmd_identifier_token2] = ACTIONS(2237), - [aux_sym_cmd_identifier_token3] = ACTIONS(2237), - [aux_sym_cmd_identifier_token4] = ACTIONS(2237), - [aux_sym_cmd_identifier_token5] = ACTIONS(2237), - [aux_sym_cmd_identifier_token6] = ACTIONS(2237), - [aux_sym_cmd_identifier_token7] = ACTIONS(2237), - [aux_sym_cmd_identifier_token8] = ACTIONS(2237), - [aux_sym_cmd_identifier_token9] = ACTIONS(2237), - [aux_sym_cmd_identifier_token10] = ACTIONS(2237), - [aux_sym_cmd_identifier_token11] = ACTIONS(2237), - [aux_sym_cmd_identifier_token12] = ACTIONS(2237), - [aux_sym_cmd_identifier_token13] = ACTIONS(2237), - [aux_sym_cmd_identifier_token14] = ACTIONS(2237), - [aux_sym_cmd_identifier_token15] = ACTIONS(2237), - [aux_sym_cmd_identifier_token16] = ACTIONS(2237), - [aux_sym_cmd_identifier_token17] = ACTIONS(2237), - [aux_sym_cmd_identifier_token18] = ACTIONS(2237), - [aux_sym_cmd_identifier_token19] = ACTIONS(2237), - [aux_sym_cmd_identifier_token20] = ACTIONS(2237), - [aux_sym_cmd_identifier_token21] = ACTIONS(2237), - [aux_sym_cmd_identifier_token22] = ACTIONS(2237), - [aux_sym_cmd_identifier_token23] = ACTIONS(2237), - [aux_sym_cmd_identifier_token24] = ACTIONS(2237), - [aux_sym_cmd_identifier_token25] = ACTIONS(2237), - [aux_sym_cmd_identifier_token26] = ACTIONS(2237), - [aux_sym_cmd_identifier_token27] = ACTIONS(2237), - [aux_sym_cmd_identifier_token28] = ACTIONS(2237), - [aux_sym_cmd_identifier_token29] = ACTIONS(2237), - [aux_sym_cmd_identifier_token30] = ACTIONS(2237), - [aux_sym_cmd_identifier_token31] = ACTIONS(2237), - [aux_sym_cmd_identifier_token32] = ACTIONS(2237), - [aux_sym_cmd_identifier_token33] = ACTIONS(2237), - [aux_sym_cmd_identifier_token34] = ACTIONS(2237), - [aux_sym_cmd_identifier_token35] = ACTIONS(2237), - [aux_sym_cmd_identifier_token36] = ACTIONS(2237), - [anon_sym_true] = ACTIONS(2237), - [anon_sym_false] = ACTIONS(2237), - [anon_sym_null] = ACTIONS(2237), - [aux_sym_cmd_identifier_token38] = ACTIONS(2237), - [aux_sym_cmd_identifier_token39] = ACTIONS(2237), - [aux_sym_cmd_identifier_token40] = ACTIONS(2237), - [anon_sym_def] = ACTIONS(2237), - [anon_sym_export_DASHenv] = ACTIONS(2237), - [anon_sym_extern] = ACTIONS(2237), - [anon_sym_module] = ACTIONS(2237), - [anon_sym_use] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(2237), - [anon_sym_DOLLAR] = ACTIONS(2237), - [anon_sym_error] = ACTIONS(2237), - [anon_sym_list] = ACTIONS(2237), - [anon_sym_DASH] = ACTIONS(2237), - [anon_sym_break] = ACTIONS(2237), - [anon_sym_continue] = ACTIONS(2237), - [anon_sym_for] = ACTIONS(2237), - [anon_sym_in] = ACTIONS(2237), - [anon_sym_loop] = ACTIONS(2237), - [anon_sym_make] = ACTIONS(2237), - [anon_sym_while] = ACTIONS(2237), - [anon_sym_do] = ACTIONS(2237), - [anon_sym_if] = ACTIONS(2237), - [anon_sym_else] = ACTIONS(2237), - [anon_sym_match] = ACTIONS(2237), - [anon_sym_RBRACE] = ACTIONS(2241), - [anon_sym_try] = ACTIONS(2237), - [anon_sym_catch] = ACTIONS(2237), - [anon_sym_return] = ACTIONS(2237), - [anon_sym_source] = ACTIONS(2237), - [anon_sym_source_DASHenv] = ACTIONS(2237), - [anon_sym_register] = ACTIONS(2237), - [anon_sym_hide] = ACTIONS(2237), - [anon_sym_hide_DASHenv] = ACTIONS(2237), - [anon_sym_overlay] = ACTIONS(2237), - [anon_sym_new] = ACTIONS(2237), - [anon_sym_as] = ACTIONS(2237), - [anon_sym_LPAREN2] = ACTIONS(2239), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2241), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2237), - [aux_sym__val_number_decimal_token1] = ACTIONS(2237), - [aux_sym__val_number_decimal_token2] = ACTIONS(2237), - [aux_sym__val_number_decimal_token3] = ACTIONS(2237), - [aux_sym__val_number_decimal_token4] = ACTIONS(2237), - [aux_sym__val_number_token1] = ACTIONS(2237), - [aux_sym__val_number_token2] = ACTIONS(2237), - [aux_sym__val_number_token3] = ACTIONS(2237), - [anon_sym_DQUOTE] = ACTIONS(2241), - [sym__str_single_quotes] = ACTIONS(2241), - [sym__str_back_ticks] = ACTIONS(2241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2241), - [anon_sym_PLUS] = ACTIONS(2237), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2243), - [anon_sym_POUND] = ACTIONS(3), - }, - [503] = { - [sym_comment] = STATE(503), - [anon_sym_export] = ACTIONS(2313), - [anon_sym_alias] = ACTIONS(2313), - [anon_sym_let] = ACTIONS(2313), - [anon_sym_let_DASHenv] = ACTIONS(2313), - [anon_sym_mut] = ACTIONS(2313), - [anon_sym_const] = ACTIONS(2313), - [aux_sym_cmd_identifier_token1] = ACTIONS(2313), - [aux_sym_cmd_identifier_token2] = ACTIONS(2313), - [aux_sym_cmd_identifier_token3] = ACTIONS(2313), - [aux_sym_cmd_identifier_token4] = ACTIONS(2313), - [aux_sym_cmd_identifier_token5] = ACTIONS(2313), - [aux_sym_cmd_identifier_token6] = ACTIONS(2313), - [aux_sym_cmd_identifier_token7] = ACTIONS(2313), - [aux_sym_cmd_identifier_token8] = ACTIONS(2313), - [aux_sym_cmd_identifier_token9] = ACTIONS(2313), - [aux_sym_cmd_identifier_token10] = ACTIONS(2313), - [aux_sym_cmd_identifier_token11] = ACTIONS(2313), - [aux_sym_cmd_identifier_token12] = ACTIONS(2313), - [aux_sym_cmd_identifier_token13] = ACTIONS(2313), - [aux_sym_cmd_identifier_token14] = ACTIONS(2313), - [aux_sym_cmd_identifier_token15] = ACTIONS(2313), - [aux_sym_cmd_identifier_token16] = ACTIONS(2313), - [aux_sym_cmd_identifier_token17] = ACTIONS(2313), - [aux_sym_cmd_identifier_token18] = ACTIONS(2313), - [aux_sym_cmd_identifier_token19] = ACTIONS(2313), - [aux_sym_cmd_identifier_token20] = ACTIONS(2313), - [aux_sym_cmd_identifier_token21] = ACTIONS(2313), - [aux_sym_cmd_identifier_token22] = ACTIONS(2313), - [aux_sym_cmd_identifier_token23] = ACTIONS(2313), - [aux_sym_cmd_identifier_token24] = ACTIONS(2313), - [aux_sym_cmd_identifier_token25] = ACTIONS(2313), - [aux_sym_cmd_identifier_token26] = ACTIONS(2313), - [aux_sym_cmd_identifier_token27] = ACTIONS(2313), - [aux_sym_cmd_identifier_token28] = ACTIONS(2313), - [aux_sym_cmd_identifier_token29] = ACTIONS(2313), - [aux_sym_cmd_identifier_token30] = ACTIONS(2313), - [aux_sym_cmd_identifier_token31] = ACTIONS(2313), - [aux_sym_cmd_identifier_token32] = ACTIONS(2313), - [aux_sym_cmd_identifier_token33] = ACTIONS(2313), - [aux_sym_cmd_identifier_token34] = ACTIONS(2313), - [aux_sym_cmd_identifier_token35] = ACTIONS(2313), - [aux_sym_cmd_identifier_token36] = ACTIONS(2313), - [anon_sym_true] = ACTIONS(2313), - [anon_sym_false] = ACTIONS(2313), - [anon_sym_null] = ACTIONS(2313), - [aux_sym_cmd_identifier_token38] = ACTIONS(2313), - [aux_sym_cmd_identifier_token39] = ACTIONS(2313), - [aux_sym_cmd_identifier_token40] = ACTIONS(2313), - [anon_sym_def] = ACTIONS(2313), - [anon_sym_export_DASHenv] = ACTIONS(2313), - [anon_sym_extern] = ACTIONS(2313), - [anon_sym_module] = ACTIONS(2313), - [anon_sym_use] = ACTIONS(2313), - [anon_sym_LPAREN] = ACTIONS(2313), - [anon_sym_DOLLAR] = ACTIONS(2313), - [anon_sym_error] = ACTIONS(2313), - [anon_sym_list] = ACTIONS(2313), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_break] = ACTIONS(2313), - [anon_sym_continue] = ACTIONS(2313), - [anon_sym_for] = ACTIONS(2313), - [anon_sym_in] = ACTIONS(2313), - [anon_sym_loop] = ACTIONS(2313), - [anon_sym_make] = ACTIONS(2313), - [anon_sym_while] = ACTIONS(2313), - [anon_sym_do] = ACTIONS(2313), - [anon_sym_if] = ACTIONS(2313), - [anon_sym_else] = ACTIONS(2313), - [anon_sym_match] = ACTIONS(2313), - [anon_sym_RBRACE] = ACTIONS(2313), - [anon_sym_try] = ACTIONS(2313), - [anon_sym_catch] = ACTIONS(2313), - [anon_sym_return] = ACTIONS(2313), - [anon_sym_source] = ACTIONS(2313), - [anon_sym_source_DASHenv] = ACTIONS(2313), - [anon_sym_register] = ACTIONS(2313), - [anon_sym_hide] = ACTIONS(2313), - [anon_sym_hide_DASHenv] = ACTIONS(2313), - [anon_sym_overlay] = ACTIONS(2313), - [anon_sym_new] = ACTIONS(2313), - [anon_sym_as] = ACTIONS(2313), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2313), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2313), - [aux_sym__val_number_decimal_token1] = ACTIONS(2313), - [aux_sym__val_number_decimal_token2] = ACTIONS(2313), - [aux_sym__val_number_decimal_token3] = ACTIONS(2313), - [aux_sym__val_number_decimal_token4] = ACTIONS(2313), - [aux_sym__val_number_token1] = ACTIONS(2313), - [aux_sym__val_number_token2] = ACTIONS(2313), - [aux_sym__val_number_token3] = ACTIONS(2313), - [anon_sym_LBRACK2] = ACTIONS(2315), - [anon_sym_DQUOTE] = ACTIONS(2313), - [sym__str_single_quotes] = ACTIONS(2313), - [sym__str_back_ticks] = ACTIONS(2313), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2313), - [sym__entry_separator] = ACTIONS(2317), - [anon_sym_PLUS] = ACTIONS(2313), - [anon_sym_POUND] = ACTIONS(3), - }, - [504] = { - [sym_comment] = STATE(504), - [aux_sym__multiple_types_repeat1] = STATE(504), - [anon_sym_export] = ACTIONS(2319), - [anon_sym_alias] = ACTIONS(2319), - [anon_sym_let] = ACTIONS(2319), - [anon_sym_let_DASHenv] = ACTIONS(2319), - [anon_sym_mut] = ACTIONS(2319), - [anon_sym_const] = ACTIONS(2319), - [aux_sym_cmd_identifier_token1] = ACTIONS(2319), - [aux_sym_cmd_identifier_token2] = ACTIONS(2319), - [aux_sym_cmd_identifier_token3] = ACTIONS(2319), - [aux_sym_cmd_identifier_token4] = ACTIONS(2319), - [aux_sym_cmd_identifier_token5] = ACTIONS(2319), - [aux_sym_cmd_identifier_token6] = ACTIONS(2319), - [aux_sym_cmd_identifier_token7] = ACTIONS(2319), - [aux_sym_cmd_identifier_token8] = ACTIONS(2319), - [aux_sym_cmd_identifier_token9] = ACTIONS(2319), - [aux_sym_cmd_identifier_token10] = ACTIONS(2319), - [aux_sym_cmd_identifier_token11] = ACTIONS(2319), - [aux_sym_cmd_identifier_token12] = ACTIONS(2319), - [aux_sym_cmd_identifier_token13] = ACTIONS(2319), - [aux_sym_cmd_identifier_token14] = ACTIONS(2319), - [aux_sym_cmd_identifier_token15] = ACTIONS(2319), - [aux_sym_cmd_identifier_token16] = ACTIONS(2319), - [aux_sym_cmd_identifier_token17] = ACTIONS(2319), - [aux_sym_cmd_identifier_token18] = ACTIONS(2319), - [aux_sym_cmd_identifier_token19] = ACTIONS(2319), - [aux_sym_cmd_identifier_token20] = ACTIONS(2319), - [aux_sym_cmd_identifier_token21] = ACTIONS(2319), - [aux_sym_cmd_identifier_token22] = ACTIONS(2319), - [aux_sym_cmd_identifier_token23] = ACTIONS(2319), - [aux_sym_cmd_identifier_token24] = ACTIONS(2319), - [aux_sym_cmd_identifier_token25] = ACTIONS(2319), - [aux_sym_cmd_identifier_token26] = ACTIONS(2319), - [aux_sym_cmd_identifier_token27] = ACTIONS(2319), - [aux_sym_cmd_identifier_token28] = ACTIONS(2319), - [aux_sym_cmd_identifier_token29] = ACTIONS(2319), - [aux_sym_cmd_identifier_token30] = ACTIONS(2319), - [aux_sym_cmd_identifier_token31] = ACTIONS(2319), - [aux_sym_cmd_identifier_token32] = ACTIONS(2319), - [aux_sym_cmd_identifier_token33] = ACTIONS(2319), - [aux_sym_cmd_identifier_token34] = ACTIONS(2319), - [aux_sym_cmd_identifier_token35] = ACTIONS(2319), - [aux_sym_cmd_identifier_token36] = ACTIONS(2319), - [anon_sym_true] = ACTIONS(2319), - [anon_sym_false] = ACTIONS(2319), - [anon_sym_null] = ACTIONS(2319), - [aux_sym_cmd_identifier_token38] = ACTIONS(2319), - [aux_sym_cmd_identifier_token39] = ACTIONS(2319), - [aux_sym_cmd_identifier_token40] = ACTIONS(2319), - [anon_sym_def] = ACTIONS(2319), - [anon_sym_export_DASHenv] = ACTIONS(2319), - [anon_sym_extern] = ACTIONS(2319), - [anon_sym_module] = ACTIONS(2319), - [anon_sym_use] = ACTIONS(2319), - [anon_sym_LPAREN] = ACTIONS(2319), - [anon_sym_DOLLAR] = ACTIONS(2319), - [anon_sym_error] = ACTIONS(2319), - [anon_sym_list] = ACTIONS(2319), - [anon_sym_DASH] = ACTIONS(2319), - [anon_sym_break] = ACTIONS(2319), - [anon_sym_continue] = ACTIONS(2319), - [anon_sym_for] = ACTIONS(2319), - [anon_sym_in] = ACTIONS(2319), - [anon_sym_loop] = ACTIONS(2319), - [anon_sym_make] = ACTIONS(2319), - [anon_sym_while] = ACTIONS(2319), - [anon_sym_do] = ACTIONS(2319), - [anon_sym_if] = ACTIONS(2319), - [anon_sym_else] = ACTIONS(2319), - [anon_sym_match] = ACTIONS(2319), - [anon_sym_RBRACE] = ACTIONS(2319), - [anon_sym_try] = ACTIONS(2319), - [anon_sym_catch] = ACTIONS(2319), - [anon_sym_return] = ACTIONS(2319), - [anon_sym_source] = ACTIONS(2319), - [anon_sym_source_DASHenv] = ACTIONS(2319), - [anon_sym_register] = ACTIONS(2319), - [anon_sym_hide] = ACTIONS(2319), - [anon_sym_hide_DASHenv] = ACTIONS(2319), - [anon_sym_overlay] = ACTIONS(2319), - [anon_sym_new] = ACTIONS(2319), - [anon_sym_as] = ACTIONS(2319), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2319), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2319), - [aux_sym__val_number_decimal_token1] = ACTIONS(2319), - [aux_sym__val_number_decimal_token2] = ACTIONS(2319), - [aux_sym__val_number_decimal_token3] = ACTIONS(2319), - [aux_sym__val_number_decimal_token4] = ACTIONS(2319), - [aux_sym__val_number_token1] = ACTIONS(2319), - [aux_sym__val_number_token2] = ACTIONS(2319), - [aux_sym__val_number_token3] = ACTIONS(2319), - [anon_sym_DQUOTE] = ACTIONS(2319), - [sym__str_single_quotes] = ACTIONS(2319), - [sym__str_back_ticks] = ACTIONS(2319), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2319), - [sym__entry_separator] = ACTIONS(2321), - [anon_sym_PLUS] = ACTIONS(2319), - [anon_sym_POUND] = ACTIONS(3), - }, - [505] = { - [sym_comment] = STATE(505), - [anon_sym_export] = ACTIONS(1659), - [anon_sym_alias] = ACTIONS(1659), - [anon_sym_let] = ACTIONS(1659), - [anon_sym_let_DASHenv] = ACTIONS(1659), - [anon_sym_mut] = ACTIONS(1659), - [anon_sym_const] = ACTIONS(1659), - [aux_sym_cmd_identifier_token1] = ACTIONS(1659), - [aux_sym_cmd_identifier_token2] = ACTIONS(1659), - [aux_sym_cmd_identifier_token3] = ACTIONS(1659), - [aux_sym_cmd_identifier_token4] = ACTIONS(1659), - [aux_sym_cmd_identifier_token5] = ACTIONS(1659), - [aux_sym_cmd_identifier_token6] = ACTIONS(1659), - [aux_sym_cmd_identifier_token7] = ACTIONS(1659), - [aux_sym_cmd_identifier_token8] = ACTIONS(1659), - [aux_sym_cmd_identifier_token9] = ACTIONS(1659), - [aux_sym_cmd_identifier_token10] = ACTIONS(1659), - [aux_sym_cmd_identifier_token11] = ACTIONS(1659), - [aux_sym_cmd_identifier_token12] = ACTIONS(1659), - [aux_sym_cmd_identifier_token13] = ACTIONS(1659), - [aux_sym_cmd_identifier_token14] = ACTIONS(1659), - [aux_sym_cmd_identifier_token15] = ACTIONS(1659), - [aux_sym_cmd_identifier_token16] = ACTIONS(1659), - [aux_sym_cmd_identifier_token17] = ACTIONS(1659), - [aux_sym_cmd_identifier_token18] = ACTIONS(1659), - [aux_sym_cmd_identifier_token19] = ACTIONS(1659), - [aux_sym_cmd_identifier_token20] = ACTIONS(1659), - [aux_sym_cmd_identifier_token21] = ACTIONS(1659), - [aux_sym_cmd_identifier_token22] = ACTIONS(1659), - [aux_sym_cmd_identifier_token23] = ACTIONS(1659), - [aux_sym_cmd_identifier_token24] = ACTIONS(1659), - [aux_sym_cmd_identifier_token25] = ACTIONS(1659), - [aux_sym_cmd_identifier_token26] = ACTIONS(1659), - [aux_sym_cmd_identifier_token27] = ACTIONS(1659), - [aux_sym_cmd_identifier_token28] = ACTIONS(1659), - [aux_sym_cmd_identifier_token29] = ACTIONS(1659), - [aux_sym_cmd_identifier_token30] = ACTIONS(1659), - [aux_sym_cmd_identifier_token31] = ACTIONS(1659), - [aux_sym_cmd_identifier_token32] = ACTIONS(1659), - [aux_sym_cmd_identifier_token33] = ACTIONS(1659), - [aux_sym_cmd_identifier_token34] = ACTIONS(1659), - [aux_sym_cmd_identifier_token35] = ACTIONS(1659), - [aux_sym_cmd_identifier_token36] = ACTIONS(1659), - [anon_sym_true] = ACTIONS(1661), - [anon_sym_false] = ACTIONS(1661), - [anon_sym_null] = ACTIONS(1661), - [aux_sym_cmd_identifier_token38] = ACTIONS(1659), - [aux_sym_cmd_identifier_token39] = ACTIONS(1661), - [aux_sym_cmd_identifier_token40] = ACTIONS(1661), - [anon_sym_def] = ACTIONS(1659), - [anon_sym_export_DASHenv] = ACTIONS(1659), - [anon_sym_extern] = ACTIONS(1659), - [anon_sym_module] = ACTIONS(1659), - [anon_sym_use] = ACTIONS(1659), - [anon_sym_LPAREN] = ACTIONS(1661), - [anon_sym_DOLLAR] = ACTIONS(1661), - [anon_sym_error] = ACTIONS(1659), - [anon_sym_list] = ACTIONS(1659), - [anon_sym_DASH] = ACTIONS(1659), - [anon_sym_break] = ACTIONS(1659), - [anon_sym_continue] = ACTIONS(1659), - [anon_sym_for] = ACTIONS(1659), - [anon_sym_in] = ACTIONS(1659), - [anon_sym_loop] = ACTIONS(1659), - [anon_sym_make] = ACTIONS(1659), - [anon_sym_while] = ACTIONS(1659), - [anon_sym_do] = ACTIONS(1659), - [anon_sym_if] = ACTIONS(1659), - [anon_sym_else] = ACTIONS(1659), - [anon_sym_match] = ACTIONS(1659), - [anon_sym_RBRACE] = ACTIONS(1661), - [anon_sym_try] = ACTIONS(1659), - [anon_sym_catch] = ACTIONS(1659), - [anon_sym_return] = ACTIONS(1659), - [anon_sym_source] = ACTIONS(1659), - [anon_sym_source_DASHenv] = ACTIONS(1659), - [anon_sym_register] = ACTIONS(1659), - [anon_sym_hide] = ACTIONS(1659), - [anon_sym_hide_DASHenv] = ACTIONS(1659), - [anon_sym_overlay] = ACTIONS(1659), - [anon_sym_new] = ACTIONS(1659), - [anon_sym_as] = ACTIONS(1659), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1661), - [aux_sym__immediate_decimal_token1] = ACTIONS(2324), - [aux_sym__immediate_decimal_token2] = ACTIONS(2326), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1661), - [aux_sym__val_number_decimal_token1] = ACTIONS(1659), - [aux_sym__val_number_decimal_token2] = ACTIONS(1661), - [aux_sym__val_number_decimal_token3] = ACTIONS(1661), - [aux_sym__val_number_decimal_token4] = ACTIONS(1661), - [aux_sym__val_number_token1] = ACTIONS(1661), - [aux_sym__val_number_token2] = ACTIONS(1661), - [aux_sym__val_number_token3] = ACTIONS(1661), - [anon_sym_DQUOTE] = ACTIONS(1661), - [sym__str_single_quotes] = ACTIONS(1661), - [sym__str_back_ticks] = ACTIONS(1661), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1661), - [anon_sym_PLUS] = ACTIONS(1659), - [anon_sym_POUND] = ACTIONS(247), - }, - [506] = { - [sym_comment] = STATE(506), - [anon_sym_export] = ACTIONS(2245), - [anon_sym_alias] = ACTIONS(2245), - [anon_sym_let] = ACTIONS(2245), - [anon_sym_let_DASHenv] = ACTIONS(2245), - [anon_sym_mut] = ACTIONS(2245), - [anon_sym_const] = ACTIONS(2245), - [aux_sym_cmd_identifier_token1] = ACTIONS(2245), - [aux_sym_cmd_identifier_token2] = ACTIONS(2245), - [aux_sym_cmd_identifier_token3] = ACTIONS(2245), - [aux_sym_cmd_identifier_token4] = ACTIONS(2245), - [aux_sym_cmd_identifier_token5] = ACTIONS(2245), - [aux_sym_cmd_identifier_token6] = ACTIONS(2245), - [aux_sym_cmd_identifier_token7] = ACTIONS(2245), - [aux_sym_cmd_identifier_token8] = ACTIONS(2245), - [aux_sym_cmd_identifier_token9] = ACTIONS(2245), - [aux_sym_cmd_identifier_token10] = ACTIONS(2245), - [aux_sym_cmd_identifier_token11] = ACTIONS(2245), - [aux_sym_cmd_identifier_token12] = ACTIONS(2245), - [aux_sym_cmd_identifier_token13] = ACTIONS(2245), - [aux_sym_cmd_identifier_token14] = ACTIONS(2245), - [aux_sym_cmd_identifier_token15] = ACTIONS(2245), - [aux_sym_cmd_identifier_token16] = ACTIONS(2245), - [aux_sym_cmd_identifier_token17] = ACTIONS(2245), - [aux_sym_cmd_identifier_token18] = ACTIONS(2245), - [aux_sym_cmd_identifier_token19] = ACTIONS(2245), - [aux_sym_cmd_identifier_token20] = ACTIONS(2245), - [aux_sym_cmd_identifier_token21] = ACTIONS(2245), - [aux_sym_cmd_identifier_token22] = ACTIONS(2245), - [aux_sym_cmd_identifier_token23] = ACTIONS(2245), - [aux_sym_cmd_identifier_token24] = ACTIONS(2245), - [aux_sym_cmd_identifier_token25] = ACTIONS(2245), - [aux_sym_cmd_identifier_token26] = ACTIONS(2245), - [aux_sym_cmd_identifier_token27] = ACTIONS(2245), - [aux_sym_cmd_identifier_token28] = ACTIONS(2245), - [aux_sym_cmd_identifier_token29] = ACTIONS(2245), - [aux_sym_cmd_identifier_token30] = ACTIONS(2245), - [aux_sym_cmd_identifier_token31] = ACTIONS(2245), - [aux_sym_cmd_identifier_token32] = ACTIONS(2245), - [aux_sym_cmd_identifier_token33] = ACTIONS(2245), - [aux_sym_cmd_identifier_token34] = ACTIONS(2245), - [aux_sym_cmd_identifier_token35] = ACTIONS(2245), - [aux_sym_cmd_identifier_token36] = ACTIONS(2245), - [anon_sym_true] = ACTIONS(2245), - [anon_sym_false] = ACTIONS(2245), - [anon_sym_null] = ACTIONS(2245), - [aux_sym_cmd_identifier_token38] = ACTIONS(2245), - [aux_sym_cmd_identifier_token39] = ACTIONS(2245), - [aux_sym_cmd_identifier_token40] = ACTIONS(2245), - [anon_sym_def] = ACTIONS(2245), - [anon_sym_export_DASHenv] = ACTIONS(2245), - [anon_sym_extern] = ACTIONS(2245), - [anon_sym_module] = ACTIONS(2245), - [anon_sym_use] = ACTIONS(2245), - [anon_sym_LPAREN] = ACTIONS(2245), - [anon_sym_DOLLAR] = ACTIONS(2245), - [anon_sym_error] = ACTIONS(2245), - [anon_sym_list] = ACTIONS(2245), - [anon_sym_DASH] = ACTIONS(2245), - [anon_sym_break] = ACTIONS(2245), - [anon_sym_continue] = ACTIONS(2245), - [anon_sym_for] = ACTIONS(2245), - [anon_sym_in] = ACTIONS(2245), - [anon_sym_loop] = ACTIONS(2245), - [anon_sym_make] = ACTIONS(2245), - [anon_sym_while] = ACTIONS(2245), - [anon_sym_do] = ACTIONS(2245), - [anon_sym_if] = ACTIONS(2245), - [anon_sym_else] = ACTIONS(2245), - [anon_sym_match] = ACTIONS(2245), - [anon_sym_RBRACE] = ACTIONS(2247), - [anon_sym_try] = ACTIONS(2245), - [anon_sym_catch] = ACTIONS(2245), - [anon_sym_return] = ACTIONS(2245), - [anon_sym_source] = ACTIONS(2245), - [anon_sym_source_DASHenv] = ACTIONS(2245), - [anon_sym_register] = ACTIONS(2245), - [anon_sym_hide] = ACTIONS(2245), - [anon_sym_hide_DASHenv] = ACTIONS(2245), - [anon_sym_overlay] = ACTIONS(2245), - [anon_sym_new] = ACTIONS(2245), - [anon_sym_as] = ACTIONS(2245), - [anon_sym_LPAREN2] = ACTIONS(2239), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2247), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2245), - [aux_sym__val_number_decimal_token1] = ACTIONS(2245), - [aux_sym__val_number_decimal_token2] = ACTIONS(2245), - [aux_sym__val_number_decimal_token3] = ACTIONS(2245), - [aux_sym__val_number_decimal_token4] = ACTIONS(2245), - [aux_sym__val_number_token1] = ACTIONS(2245), - [aux_sym__val_number_token2] = ACTIONS(2245), - [aux_sym__val_number_token3] = ACTIONS(2245), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym__str_single_quotes] = ACTIONS(2247), - [sym__str_back_ticks] = ACTIONS(2247), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2247), - [anon_sym_PLUS] = ACTIONS(2245), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2243), - [anon_sym_POUND] = ACTIONS(3), - }, - [507] = { - [sym__expr_parenthesized_immediate] = STATE(7310), - [sym_comment] = STATE(507), - [anon_sym_export] = ACTIONS(1981), - [anon_sym_alias] = ACTIONS(1981), - [anon_sym_let] = ACTIONS(1981), - [anon_sym_let_DASHenv] = ACTIONS(1981), - [anon_sym_mut] = ACTIONS(1981), - [anon_sym_const] = ACTIONS(1981), - [aux_sym_cmd_identifier_token1] = ACTIONS(1981), - [aux_sym_cmd_identifier_token2] = ACTIONS(1981), - [aux_sym_cmd_identifier_token3] = ACTIONS(1981), - [aux_sym_cmd_identifier_token4] = ACTIONS(1981), - [aux_sym_cmd_identifier_token5] = ACTIONS(1981), - [aux_sym_cmd_identifier_token6] = ACTIONS(1981), - [aux_sym_cmd_identifier_token7] = ACTIONS(1981), - [aux_sym_cmd_identifier_token8] = ACTIONS(1981), - [aux_sym_cmd_identifier_token9] = ACTIONS(1981), - [aux_sym_cmd_identifier_token10] = ACTIONS(1981), - [aux_sym_cmd_identifier_token11] = ACTIONS(1981), - [aux_sym_cmd_identifier_token12] = ACTIONS(1981), - [aux_sym_cmd_identifier_token13] = ACTIONS(1981), - [aux_sym_cmd_identifier_token14] = ACTIONS(1981), - [aux_sym_cmd_identifier_token15] = ACTIONS(1981), - [aux_sym_cmd_identifier_token16] = ACTIONS(1981), - [aux_sym_cmd_identifier_token17] = ACTIONS(1981), - [aux_sym_cmd_identifier_token18] = ACTIONS(1981), - [aux_sym_cmd_identifier_token19] = ACTIONS(1981), - [aux_sym_cmd_identifier_token20] = ACTIONS(1981), - [aux_sym_cmd_identifier_token21] = ACTIONS(1981), - [aux_sym_cmd_identifier_token22] = ACTIONS(1981), - [aux_sym_cmd_identifier_token23] = ACTIONS(1981), - [aux_sym_cmd_identifier_token24] = ACTIONS(1981), - [aux_sym_cmd_identifier_token25] = ACTIONS(1981), - [aux_sym_cmd_identifier_token26] = ACTIONS(1981), - [aux_sym_cmd_identifier_token27] = ACTIONS(1981), - [aux_sym_cmd_identifier_token28] = ACTIONS(1981), - [aux_sym_cmd_identifier_token29] = ACTIONS(1981), - [aux_sym_cmd_identifier_token30] = ACTIONS(1981), - [aux_sym_cmd_identifier_token31] = ACTIONS(1981), - [aux_sym_cmd_identifier_token32] = ACTIONS(1981), - [aux_sym_cmd_identifier_token33] = ACTIONS(1981), - [aux_sym_cmd_identifier_token34] = ACTIONS(1981), - [aux_sym_cmd_identifier_token35] = ACTIONS(1981), - [aux_sym_cmd_identifier_token36] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(1987), - [anon_sym_false] = ACTIONS(1987), - [anon_sym_null] = ACTIONS(1987), - [aux_sym_cmd_identifier_token38] = ACTIONS(1981), - [aux_sym_cmd_identifier_token39] = ACTIONS(1987), - [aux_sym_cmd_identifier_token40] = ACTIONS(1987), - [anon_sym_def] = ACTIONS(1981), - [anon_sym_export_DASHenv] = ACTIONS(1981), - [anon_sym_extern] = ACTIONS(1981), - [anon_sym_module] = ACTIONS(1981), - [anon_sym_use] = ACTIONS(1981), - [anon_sym_LPAREN] = ACTIONS(1981), - [anon_sym_DOLLAR] = ACTIONS(1987), - [anon_sym_error] = ACTIONS(1981), - [anon_sym_list] = ACTIONS(1981), - [anon_sym_DASH] = ACTIONS(1981), - [anon_sym_break] = ACTIONS(1981), - [anon_sym_continue] = ACTIONS(1981), - [anon_sym_for] = ACTIONS(1981), - [anon_sym_in] = ACTIONS(1981), - [anon_sym_loop] = ACTIONS(1981), - [anon_sym_make] = ACTIONS(1981), - [anon_sym_while] = ACTIONS(1981), - [anon_sym_do] = ACTIONS(1981), - [anon_sym_if] = ACTIONS(1981), - [anon_sym_else] = ACTIONS(1981), - [anon_sym_match] = ACTIONS(1981), - [anon_sym_RBRACE] = ACTIONS(1987), - [anon_sym_try] = ACTIONS(1981), - [anon_sym_catch] = ACTIONS(1981), - [anon_sym_return] = ACTIONS(1981), - [anon_sym_source] = ACTIONS(1981), - [anon_sym_source_DASHenv] = ACTIONS(1981), - [anon_sym_register] = ACTIONS(1981), - [anon_sym_hide] = ACTIONS(1981), - [anon_sym_hide_DASHenv] = ACTIONS(1981), - [anon_sym_overlay] = ACTIONS(1981), - [anon_sym_new] = ACTIONS(1981), - [anon_sym_as] = ACTIONS(1981), - [anon_sym_LPAREN2] = ACTIONS(1562), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1987), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1987), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1987), - [aux_sym__val_number_decimal_token3] = ACTIONS(1987), - [aux_sym__val_number_decimal_token4] = ACTIONS(1987), - [aux_sym__val_number_token1] = ACTIONS(1987), - [aux_sym__val_number_token2] = ACTIONS(1987), - [aux_sym__val_number_token3] = ACTIONS(1987), - [anon_sym_DQUOTE] = ACTIONS(1987), - [sym__str_single_quotes] = ACTIONS(1987), - [sym__str_back_ticks] = ACTIONS(1987), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1987), - [anon_sym_PLUS] = ACTIONS(1981), - [anon_sym_POUND] = ACTIONS(247), - }, - [508] = { - [sym_comment] = STATE(508), - [anon_sym_export] = ACTIONS(2328), - [anon_sym_alias] = ACTIONS(2328), - [anon_sym_let] = ACTIONS(2328), - [anon_sym_let_DASHenv] = ACTIONS(2328), - [anon_sym_mut] = ACTIONS(2328), - [anon_sym_const] = ACTIONS(2328), - [aux_sym_cmd_identifier_token1] = ACTIONS(2328), - [aux_sym_cmd_identifier_token2] = ACTIONS(2328), - [aux_sym_cmd_identifier_token3] = ACTIONS(2328), - [aux_sym_cmd_identifier_token4] = ACTIONS(2328), - [aux_sym_cmd_identifier_token5] = ACTIONS(2328), - [aux_sym_cmd_identifier_token6] = ACTIONS(2328), - [aux_sym_cmd_identifier_token7] = ACTIONS(2328), - [aux_sym_cmd_identifier_token8] = ACTIONS(2328), - [aux_sym_cmd_identifier_token9] = ACTIONS(2328), - [aux_sym_cmd_identifier_token10] = ACTIONS(2328), - [aux_sym_cmd_identifier_token11] = ACTIONS(2328), - [aux_sym_cmd_identifier_token12] = ACTIONS(2328), - [aux_sym_cmd_identifier_token13] = ACTIONS(2328), - [aux_sym_cmd_identifier_token14] = ACTIONS(2328), - [aux_sym_cmd_identifier_token15] = ACTIONS(2328), - [aux_sym_cmd_identifier_token16] = ACTIONS(2328), - [aux_sym_cmd_identifier_token17] = ACTIONS(2328), - [aux_sym_cmd_identifier_token18] = ACTIONS(2328), - [aux_sym_cmd_identifier_token19] = ACTIONS(2328), - [aux_sym_cmd_identifier_token20] = ACTIONS(2328), - [aux_sym_cmd_identifier_token21] = ACTIONS(2328), - [aux_sym_cmd_identifier_token22] = ACTIONS(2328), - [aux_sym_cmd_identifier_token23] = ACTIONS(2328), - [aux_sym_cmd_identifier_token24] = ACTIONS(2328), - [aux_sym_cmd_identifier_token25] = ACTIONS(2328), - [aux_sym_cmd_identifier_token26] = ACTIONS(2328), - [aux_sym_cmd_identifier_token27] = ACTIONS(2328), - [aux_sym_cmd_identifier_token28] = ACTIONS(2328), - [aux_sym_cmd_identifier_token29] = ACTIONS(2328), - [aux_sym_cmd_identifier_token30] = ACTIONS(2328), - [aux_sym_cmd_identifier_token31] = ACTIONS(2328), - [aux_sym_cmd_identifier_token32] = ACTIONS(2328), - [aux_sym_cmd_identifier_token33] = ACTIONS(2328), - [aux_sym_cmd_identifier_token34] = ACTIONS(2328), - [aux_sym_cmd_identifier_token35] = ACTIONS(2328), - [aux_sym_cmd_identifier_token36] = ACTIONS(2328), - [anon_sym_true] = ACTIONS(2328), - [anon_sym_false] = ACTIONS(2328), - [anon_sym_null] = ACTIONS(2328), - [aux_sym_cmd_identifier_token38] = ACTIONS(2328), - [aux_sym_cmd_identifier_token39] = ACTIONS(2328), - [aux_sym_cmd_identifier_token40] = ACTIONS(2328), - [anon_sym_def] = ACTIONS(2328), - [anon_sym_export_DASHenv] = ACTIONS(2328), - [anon_sym_extern] = ACTIONS(2328), - [anon_sym_module] = ACTIONS(2328), - [anon_sym_use] = ACTIONS(2328), - [anon_sym_RBRACK] = ACTIONS(2328), - [anon_sym_LPAREN] = ACTIONS(2328), - [anon_sym_DOLLAR] = ACTIONS(2328), - [anon_sym_error] = ACTIONS(2328), - [anon_sym_list] = ACTIONS(2328), - [anon_sym_DASH] = ACTIONS(2328), - [anon_sym_break] = ACTIONS(2328), - [anon_sym_continue] = ACTIONS(2328), - [anon_sym_for] = ACTIONS(2328), - [anon_sym_in] = ACTIONS(2328), - [anon_sym_loop] = ACTIONS(2328), - [anon_sym_make] = ACTIONS(2328), - [anon_sym_while] = ACTIONS(2328), - [anon_sym_do] = ACTIONS(2328), - [anon_sym_if] = ACTIONS(2328), - [anon_sym_else] = ACTIONS(2328), - [anon_sym_match] = ACTIONS(2328), - [anon_sym_RBRACE] = ACTIONS(2328), - [anon_sym_try] = ACTIONS(2328), - [anon_sym_catch] = ACTIONS(2328), - [anon_sym_return] = ACTIONS(2328), - [anon_sym_source] = ACTIONS(2328), - [anon_sym_source_DASHenv] = ACTIONS(2328), - [anon_sym_register] = ACTIONS(2328), - [anon_sym_hide] = ACTIONS(2328), - [anon_sym_hide_DASHenv] = ACTIONS(2328), - [anon_sym_overlay] = ACTIONS(2328), - [anon_sym_new] = ACTIONS(2328), - [anon_sym_as] = ACTIONS(2328), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2328), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2328), - [aux_sym__val_number_decimal_token1] = ACTIONS(2328), - [aux_sym__val_number_decimal_token2] = ACTIONS(2328), - [aux_sym__val_number_decimal_token3] = ACTIONS(2328), - [aux_sym__val_number_decimal_token4] = ACTIONS(2328), - [aux_sym__val_number_token1] = ACTIONS(2328), - [aux_sym__val_number_token2] = ACTIONS(2328), - [aux_sym__val_number_token3] = ACTIONS(2328), - [anon_sym_DQUOTE] = ACTIONS(2328), - [sym__str_single_quotes] = ACTIONS(2328), - [sym__str_back_ticks] = ACTIONS(2328), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2328), - [sym__entry_separator] = ACTIONS(2330), - [anon_sym_PLUS] = ACTIONS(2328), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1072), }, - [509] = { - [sym_comment] = STATE(509), - [aux_sym__multiple_types_repeat1] = STATE(504), - [anon_sym_export] = ACTIONS(2332), - [anon_sym_alias] = ACTIONS(2332), - [anon_sym_let] = ACTIONS(2332), - [anon_sym_let_DASHenv] = ACTIONS(2332), - [anon_sym_mut] = ACTIONS(2332), - [anon_sym_const] = ACTIONS(2332), - [aux_sym_cmd_identifier_token1] = ACTIONS(2332), - [aux_sym_cmd_identifier_token2] = ACTIONS(2332), - [aux_sym_cmd_identifier_token3] = ACTIONS(2332), - [aux_sym_cmd_identifier_token4] = ACTIONS(2332), - [aux_sym_cmd_identifier_token5] = ACTIONS(2332), - [aux_sym_cmd_identifier_token6] = ACTIONS(2332), - [aux_sym_cmd_identifier_token7] = ACTIONS(2332), - [aux_sym_cmd_identifier_token8] = ACTIONS(2332), - [aux_sym_cmd_identifier_token9] = ACTIONS(2332), - [aux_sym_cmd_identifier_token10] = ACTIONS(2332), - [aux_sym_cmd_identifier_token11] = ACTIONS(2332), - [aux_sym_cmd_identifier_token12] = ACTIONS(2332), - [aux_sym_cmd_identifier_token13] = ACTIONS(2332), - [aux_sym_cmd_identifier_token14] = ACTIONS(2332), - [aux_sym_cmd_identifier_token15] = ACTIONS(2332), - [aux_sym_cmd_identifier_token16] = ACTIONS(2332), - [aux_sym_cmd_identifier_token17] = ACTIONS(2332), - [aux_sym_cmd_identifier_token18] = ACTIONS(2332), - [aux_sym_cmd_identifier_token19] = ACTIONS(2332), - [aux_sym_cmd_identifier_token20] = ACTIONS(2332), - [aux_sym_cmd_identifier_token21] = ACTIONS(2332), - [aux_sym_cmd_identifier_token22] = ACTIONS(2332), - [aux_sym_cmd_identifier_token23] = ACTIONS(2332), - [aux_sym_cmd_identifier_token24] = ACTIONS(2332), - [aux_sym_cmd_identifier_token25] = ACTIONS(2332), - [aux_sym_cmd_identifier_token26] = ACTIONS(2332), - [aux_sym_cmd_identifier_token27] = ACTIONS(2332), - [aux_sym_cmd_identifier_token28] = ACTIONS(2332), - [aux_sym_cmd_identifier_token29] = ACTIONS(2332), - [aux_sym_cmd_identifier_token30] = ACTIONS(2332), - [aux_sym_cmd_identifier_token31] = ACTIONS(2332), - [aux_sym_cmd_identifier_token32] = ACTIONS(2332), - [aux_sym_cmd_identifier_token33] = ACTIONS(2332), - [aux_sym_cmd_identifier_token34] = ACTIONS(2332), - [aux_sym_cmd_identifier_token35] = ACTIONS(2332), - [aux_sym_cmd_identifier_token36] = ACTIONS(2332), - [anon_sym_true] = ACTIONS(2332), - [anon_sym_false] = ACTIONS(2332), - [anon_sym_null] = ACTIONS(2332), - [aux_sym_cmd_identifier_token38] = ACTIONS(2332), - [aux_sym_cmd_identifier_token39] = ACTIONS(2332), - [aux_sym_cmd_identifier_token40] = ACTIONS(2332), - [anon_sym_def] = ACTIONS(2332), - [anon_sym_export_DASHenv] = ACTIONS(2332), - [anon_sym_extern] = ACTIONS(2332), - [anon_sym_module] = ACTIONS(2332), - [anon_sym_use] = ACTIONS(2332), - [anon_sym_LPAREN] = ACTIONS(2332), - [anon_sym_DOLLAR] = ACTIONS(2332), - [anon_sym_error] = ACTIONS(2332), - [anon_sym_list] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2332), - [anon_sym_break] = ACTIONS(2332), - [anon_sym_continue] = ACTIONS(2332), - [anon_sym_for] = ACTIONS(2332), - [anon_sym_in] = ACTIONS(2332), - [anon_sym_loop] = ACTIONS(2332), - [anon_sym_make] = ACTIONS(2332), - [anon_sym_while] = ACTIONS(2332), - [anon_sym_do] = ACTIONS(2332), - [anon_sym_if] = ACTIONS(2332), - [anon_sym_else] = ACTIONS(2332), - [anon_sym_match] = ACTIONS(2332), - [anon_sym_RBRACE] = ACTIONS(2334), - [anon_sym_try] = ACTIONS(2332), - [anon_sym_catch] = ACTIONS(2332), - [anon_sym_return] = ACTIONS(2332), - [anon_sym_source] = ACTIONS(2332), - [anon_sym_source_DASHenv] = ACTIONS(2332), - [anon_sym_register] = ACTIONS(2332), - [anon_sym_hide] = ACTIONS(2332), - [anon_sym_hide_DASHenv] = ACTIONS(2332), - [anon_sym_overlay] = ACTIONS(2332), - [anon_sym_new] = ACTIONS(2332), - [anon_sym_as] = ACTIONS(2332), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2332), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2332), - [aux_sym__val_number_decimal_token1] = ACTIONS(2332), - [aux_sym__val_number_decimal_token2] = ACTIONS(2332), - [aux_sym__val_number_decimal_token3] = ACTIONS(2332), - [aux_sym__val_number_decimal_token4] = ACTIONS(2332), - [aux_sym__val_number_token1] = ACTIONS(2332), - [aux_sym__val_number_token2] = ACTIONS(2332), - [aux_sym__val_number_token3] = ACTIONS(2332), - [anon_sym_DQUOTE] = ACTIONS(2332), - [sym__str_single_quotes] = ACTIONS(2332), - [sym__str_back_ticks] = ACTIONS(2332), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2332), - [sym__entry_separator] = ACTIONS(2336), - [anon_sym_PLUS] = ACTIONS(2332), - [anon_sym_POUND] = ACTIONS(3), - }, - [510] = { - [sym__expr_parenthesized_immediate] = STATE(7310), - [sym_comment] = STATE(510), - [anon_sym_export] = ACTIONS(2015), - [anon_sym_alias] = ACTIONS(2015), - [anon_sym_let] = ACTIONS(2015), - [anon_sym_let_DASHenv] = ACTIONS(2015), - [anon_sym_mut] = ACTIONS(2015), - [anon_sym_const] = ACTIONS(2015), - [aux_sym_cmd_identifier_token1] = ACTIONS(2015), - [aux_sym_cmd_identifier_token2] = ACTIONS(2015), - [aux_sym_cmd_identifier_token3] = ACTIONS(2015), - [aux_sym_cmd_identifier_token4] = ACTIONS(2015), - [aux_sym_cmd_identifier_token5] = ACTIONS(2015), - [aux_sym_cmd_identifier_token6] = ACTIONS(2015), - [aux_sym_cmd_identifier_token7] = ACTIONS(2015), - [aux_sym_cmd_identifier_token8] = ACTIONS(2015), - [aux_sym_cmd_identifier_token9] = ACTIONS(2015), - [aux_sym_cmd_identifier_token10] = ACTIONS(2015), - [aux_sym_cmd_identifier_token11] = ACTIONS(2015), - [aux_sym_cmd_identifier_token12] = ACTIONS(2015), - [aux_sym_cmd_identifier_token13] = ACTIONS(2015), - [aux_sym_cmd_identifier_token14] = ACTIONS(2015), - [aux_sym_cmd_identifier_token15] = ACTIONS(2015), - [aux_sym_cmd_identifier_token16] = ACTIONS(2015), - [aux_sym_cmd_identifier_token17] = ACTIONS(2015), - [aux_sym_cmd_identifier_token18] = ACTIONS(2015), - [aux_sym_cmd_identifier_token19] = ACTIONS(2015), - [aux_sym_cmd_identifier_token20] = ACTIONS(2015), - [aux_sym_cmd_identifier_token21] = ACTIONS(2015), - [aux_sym_cmd_identifier_token22] = ACTIONS(2015), - [aux_sym_cmd_identifier_token23] = ACTIONS(2015), - [aux_sym_cmd_identifier_token24] = ACTIONS(2015), - [aux_sym_cmd_identifier_token25] = ACTIONS(2015), - [aux_sym_cmd_identifier_token26] = ACTIONS(2015), - [aux_sym_cmd_identifier_token27] = ACTIONS(2015), - [aux_sym_cmd_identifier_token28] = ACTIONS(2015), - [aux_sym_cmd_identifier_token29] = ACTIONS(2015), - [aux_sym_cmd_identifier_token30] = ACTIONS(2015), - [aux_sym_cmd_identifier_token31] = ACTIONS(2015), - [aux_sym_cmd_identifier_token32] = ACTIONS(2015), - [aux_sym_cmd_identifier_token33] = ACTIONS(2015), - [aux_sym_cmd_identifier_token34] = ACTIONS(2015), - [aux_sym_cmd_identifier_token35] = ACTIONS(2015), - [aux_sym_cmd_identifier_token36] = ACTIONS(2015), - [anon_sym_true] = ACTIONS(2017), - [anon_sym_false] = ACTIONS(2017), - [anon_sym_null] = ACTIONS(2017), - [aux_sym_cmd_identifier_token38] = ACTIONS(2015), - [aux_sym_cmd_identifier_token39] = ACTIONS(2017), - [aux_sym_cmd_identifier_token40] = ACTIONS(2017), - [anon_sym_def] = ACTIONS(2015), - [anon_sym_export_DASHenv] = ACTIONS(2015), - [anon_sym_extern] = ACTIONS(2015), - [anon_sym_module] = ACTIONS(2015), - [anon_sym_use] = ACTIONS(2015), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_DOLLAR] = ACTIONS(2017), - [anon_sym_error] = ACTIONS(2015), - [anon_sym_list] = ACTIONS(2015), - [anon_sym_DASH] = ACTIONS(2015), - [anon_sym_break] = ACTIONS(2015), - [anon_sym_continue] = ACTIONS(2015), - [anon_sym_for] = ACTIONS(2015), - [anon_sym_in] = ACTIONS(2015), - [anon_sym_loop] = ACTIONS(2015), - [anon_sym_make] = ACTIONS(2015), - [anon_sym_while] = ACTIONS(2015), - [anon_sym_do] = ACTIONS(2015), - [anon_sym_if] = ACTIONS(2015), - [anon_sym_else] = ACTIONS(2015), - [anon_sym_match] = ACTIONS(2015), - [anon_sym_RBRACE] = ACTIONS(2017), - [anon_sym_try] = ACTIONS(2015), - [anon_sym_catch] = ACTIONS(2015), - [anon_sym_return] = ACTIONS(2015), - [anon_sym_source] = ACTIONS(2015), - [anon_sym_source_DASHenv] = ACTIONS(2015), - [anon_sym_register] = ACTIONS(2015), - [anon_sym_hide] = ACTIONS(2015), - [anon_sym_hide_DASHenv] = ACTIONS(2015), - [anon_sym_overlay] = ACTIONS(2015), - [anon_sym_new] = ACTIONS(2015), - [anon_sym_as] = ACTIONS(2015), - [anon_sym_LPAREN2] = ACTIONS(1562), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2017), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2017), - [aux_sym__val_number_decimal_token1] = ACTIONS(2015), - [aux_sym__val_number_decimal_token2] = ACTIONS(2017), - [aux_sym__val_number_decimal_token3] = ACTIONS(2017), - [aux_sym__val_number_decimal_token4] = ACTIONS(2017), - [aux_sym__val_number_token1] = ACTIONS(2017), - [aux_sym__val_number_token2] = ACTIONS(2017), - [aux_sym__val_number_token3] = ACTIONS(2017), - [anon_sym_DQUOTE] = ACTIONS(2017), - [sym__str_single_quotes] = ACTIONS(2017), - [sym__str_back_ticks] = ACTIONS(2017), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2017), - [anon_sym_PLUS] = ACTIONS(2015), - [anon_sym_POUND] = ACTIONS(247), - }, - [511] = { - [sym_comment] = STATE(511), - [anon_sym_export] = ACTIONS(2338), - [anon_sym_alias] = ACTIONS(2338), - [anon_sym_let] = ACTIONS(2338), - [anon_sym_let_DASHenv] = ACTIONS(2338), - [anon_sym_mut] = ACTIONS(2338), - [anon_sym_const] = ACTIONS(2338), - [aux_sym_cmd_identifier_token1] = ACTIONS(2338), - [aux_sym_cmd_identifier_token2] = ACTIONS(2338), - [aux_sym_cmd_identifier_token3] = ACTIONS(2338), - [aux_sym_cmd_identifier_token4] = ACTIONS(2338), - [aux_sym_cmd_identifier_token5] = ACTIONS(2338), - [aux_sym_cmd_identifier_token6] = ACTIONS(2338), - [aux_sym_cmd_identifier_token7] = ACTIONS(2338), - [aux_sym_cmd_identifier_token8] = ACTIONS(2338), - [aux_sym_cmd_identifier_token9] = ACTIONS(2338), - [aux_sym_cmd_identifier_token10] = ACTIONS(2338), - [aux_sym_cmd_identifier_token11] = ACTIONS(2338), - [aux_sym_cmd_identifier_token12] = ACTIONS(2338), - [aux_sym_cmd_identifier_token13] = ACTIONS(2338), - [aux_sym_cmd_identifier_token14] = ACTIONS(2338), - [aux_sym_cmd_identifier_token15] = ACTIONS(2338), - [aux_sym_cmd_identifier_token16] = ACTIONS(2338), - [aux_sym_cmd_identifier_token17] = ACTIONS(2338), - [aux_sym_cmd_identifier_token18] = ACTIONS(2338), - [aux_sym_cmd_identifier_token19] = ACTIONS(2338), - [aux_sym_cmd_identifier_token20] = ACTIONS(2338), - [aux_sym_cmd_identifier_token21] = ACTIONS(2338), - [aux_sym_cmd_identifier_token22] = ACTIONS(2338), - [aux_sym_cmd_identifier_token23] = ACTIONS(2338), - [aux_sym_cmd_identifier_token24] = ACTIONS(2338), - [aux_sym_cmd_identifier_token25] = ACTIONS(2338), - [aux_sym_cmd_identifier_token26] = ACTIONS(2338), - [aux_sym_cmd_identifier_token27] = ACTIONS(2338), - [aux_sym_cmd_identifier_token28] = ACTIONS(2338), - [aux_sym_cmd_identifier_token29] = ACTIONS(2338), - [aux_sym_cmd_identifier_token30] = ACTIONS(2338), - [aux_sym_cmd_identifier_token31] = ACTIONS(2338), - [aux_sym_cmd_identifier_token32] = ACTIONS(2338), - [aux_sym_cmd_identifier_token33] = ACTIONS(2338), - [aux_sym_cmd_identifier_token34] = ACTIONS(2338), - [aux_sym_cmd_identifier_token35] = ACTIONS(2338), - [aux_sym_cmd_identifier_token36] = ACTIONS(2338), - [anon_sym_true] = ACTIONS(2338), - [anon_sym_false] = ACTIONS(2338), - [anon_sym_null] = ACTIONS(2338), - [aux_sym_cmd_identifier_token38] = ACTIONS(2338), - [aux_sym_cmd_identifier_token39] = ACTIONS(2338), - [aux_sym_cmd_identifier_token40] = ACTIONS(2338), - [anon_sym_def] = ACTIONS(2338), - [anon_sym_export_DASHenv] = ACTIONS(2338), - [anon_sym_extern] = ACTIONS(2338), - [anon_sym_module] = ACTIONS(2338), - [anon_sym_use] = ACTIONS(2338), - [anon_sym_RBRACK] = ACTIONS(2338), - [anon_sym_LPAREN] = ACTIONS(2338), - [anon_sym_DOLLAR] = ACTIONS(2338), - [anon_sym_error] = ACTIONS(2338), - [anon_sym_list] = ACTIONS(2338), - [anon_sym_DASH] = ACTIONS(2338), - [anon_sym_break] = ACTIONS(2338), - [anon_sym_continue] = ACTIONS(2338), - [anon_sym_for] = ACTIONS(2338), - [anon_sym_in] = ACTIONS(2338), - [anon_sym_loop] = ACTIONS(2338), - [anon_sym_make] = ACTIONS(2338), - [anon_sym_while] = ACTIONS(2338), - [anon_sym_do] = ACTIONS(2338), - [anon_sym_if] = ACTIONS(2338), - [anon_sym_else] = ACTIONS(2338), - [anon_sym_match] = ACTIONS(2338), - [anon_sym_RBRACE] = ACTIONS(2338), - [anon_sym_try] = ACTIONS(2338), - [anon_sym_catch] = ACTIONS(2338), - [anon_sym_return] = ACTIONS(2338), - [anon_sym_source] = ACTIONS(2338), - [anon_sym_source_DASHenv] = ACTIONS(2338), - [anon_sym_register] = ACTIONS(2338), - [anon_sym_hide] = ACTIONS(2338), - [anon_sym_hide_DASHenv] = ACTIONS(2338), - [anon_sym_overlay] = ACTIONS(2338), - [anon_sym_new] = ACTIONS(2338), - [anon_sym_as] = ACTIONS(2338), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2338), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2338), - [aux_sym__val_number_decimal_token1] = ACTIONS(2338), - [aux_sym__val_number_decimal_token2] = ACTIONS(2338), - [aux_sym__val_number_decimal_token3] = ACTIONS(2338), - [aux_sym__val_number_decimal_token4] = ACTIONS(2338), - [aux_sym__val_number_token1] = ACTIONS(2338), - [aux_sym__val_number_token2] = ACTIONS(2338), - [aux_sym__val_number_token3] = ACTIONS(2338), - [anon_sym_DQUOTE] = ACTIONS(2338), - [sym__str_single_quotes] = ACTIONS(2338), - [sym__str_back_ticks] = ACTIONS(2338), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2338), - [sym__entry_separator] = ACTIONS(2340), - [anon_sym_PLUS] = ACTIONS(2338), + [440] = { + [sym_comment] = STATE(440), + [anon_sym_export] = ACTIONS(1703), + [anon_sym_alias] = ACTIONS(1703), + [anon_sym_let] = ACTIONS(1703), + [anon_sym_let_DASHenv] = ACTIONS(1703), + [anon_sym_mut] = ACTIONS(1703), + [anon_sym_const] = ACTIONS(1703), + [aux_sym_cmd_identifier_token1] = ACTIONS(1703), + [aux_sym_cmd_identifier_token2] = ACTIONS(1703), + [aux_sym_cmd_identifier_token3] = ACTIONS(1703), + [aux_sym_cmd_identifier_token4] = ACTIONS(1703), + [aux_sym_cmd_identifier_token5] = ACTIONS(1703), + [aux_sym_cmd_identifier_token6] = ACTIONS(1703), + [aux_sym_cmd_identifier_token7] = ACTIONS(1703), + [aux_sym_cmd_identifier_token8] = ACTIONS(1703), + [aux_sym_cmd_identifier_token9] = ACTIONS(1703), + [aux_sym_cmd_identifier_token10] = ACTIONS(1703), + [aux_sym_cmd_identifier_token11] = ACTIONS(1703), + [aux_sym_cmd_identifier_token12] = ACTIONS(1703), + [aux_sym_cmd_identifier_token13] = ACTIONS(1703), + [aux_sym_cmd_identifier_token14] = ACTIONS(1703), + [aux_sym_cmd_identifier_token15] = ACTIONS(1703), + [aux_sym_cmd_identifier_token16] = ACTIONS(1703), + [aux_sym_cmd_identifier_token17] = ACTIONS(1703), + [aux_sym_cmd_identifier_token18] = ACTIONS(1703), + [aux_sym_cmd_identifier_token19] = ACTIONS(1703), + [aux_sym_cmd_identifier_token20] = ACTIONS(1703), + [aux_sym_cmd_identifier_token21] = ACTIONS(1703), + [aux_sym_cmd_identifier_token22] = ACTIONS(1703), + [aux_sym_cmd_identifier_token23] = ACTIONS(1703), + [aux_sym_cmd_identifier_token24] = ACTIONS(1703), + [aux_sym_cmd_identifier_token25] = ACTIONS(1703), + [aux_sym_cmd_identifier_token26] = ACTIONS(1703), + [aux_sym_cmd_identifier_token27] = ACTIONS(1703), + [aux_sym_cmd_identifier_token28] = ACTIONS(1703), + [aux_sym_cmd_identifier_token29] = ACTIONS(1703), + [aux_sym_cmd_identifier_token30] = ACTIONS(1703), + [aux_sym_cmd_identifier_token31] = ACTIONS(1703), + [aux_sym_cmd_identifier_token32] = ACTIONS(1703), + [aux_sym_cmd_identifier_token33] = ACTIONS(1703), + [aux_sym_cmd_identifier_token34] = ACTIONS(1703), + [aux_sym_cmd_identifier_token35] = ACTIONS(1703), + [aux_sym_cmd_identifier_token36] = ACTIONS(1703), + [anon_sym_true] = ACTIONS(1703), + [anon_sym_false] = ACTIONS(1703), + [anon_sym_null] = ACTIONS(1703), + [aux_sym_cmd_identifier_token38] = ACTIONS(1703), + [aux_sym_cmd_identifier_token39] = ACTIONS(1703), + [aux_sym_cmd_identifier_token40] = ACTIONS(1703), + [anon_sym_def] = ACTIONS(1703), + [anon_sym_export_DASHenv] = ACTIONS(1703), + [anon_sym_extern] = ACTIONS(1703), + [anon_sym_module] = ACTIONS(1703), + [anon_sym_use] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1703), + [anon_sym_error] = ACTIONS(1703), + [anon_sym_list] = ACTIONS(1703), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_break] = ACTIONS(1703), + [anon_sym_continue] = ACTIONS(1703), + [anon_sym_for] = ACTIONS(1703), + [anon_sym_in] = ACTIONS(1703), + [anon_sym_loop] = ACTIONS(1703), + [anon_sym_make] = ACTIONS(1703), + [anon_sym_while] = ACTIONS(1703), + [anon_sym_do] = ACTIONS(1703), + [anon_sym_if] = ACTIONS(1703), + [anon_sym_else] = ACTIONS(1703), + [anon_sym_match] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1703), + [anon_sym_try] = ACTIONS(1703), + [anon_sym_catch] = ACTIONS(1703), + [anon_sym_return] = ACTIONS(1703), + [anon_sym_source] = ACTIONS(1703), + [anon_sym_source_DASHenv] = ACTIONS(1703), + [anon_sym_register] = ACTIONS(1703), + [anon_sym_hide] = ACTIONS(1703), + [anon_sym_hide_DASHenv] = ACTIONS(1703), + [anon_sym_overlay] = ACTIONS(1703), + [anon_sym_new] = ACTIONS(1703), + [anon_sym_as] = ACTIONS(1703), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1703), + [anon_sym_DOT_DOT2] = ACTIONS(1703), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1705), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1705), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1703), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1703), + [sym__entry_separator] = ACTIONS(1705), + [anon_sym_PLUS] = ACTIONS(1703), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1705), }, - [512] = { - [sym_comment] = STATE(512), - [anon_sym_export] = ACTIONS(2342), - [anon_sym_alias] = ACTIONS(2342), - [anon_sym_let] = ACTIONS(2342), - [anon_sym_let_DASHenv] = ACTIONS(2342), - [anon_sym_mut] = ACTIONS(2342), - [anon_sym_const] = ACTIONS(2342), - [aux_sym_cmd_identifier_token1] = ACTIONS(2342), - [aux_sym_cmd_identifier_token2] = ACTIONS(2342), - [aux_sym_cmd_identifier_token3] = ACTIONS(2342), - [aux_sym_cmd_identifier_token4] = ACTIONS(2342), - [aux_sym_cmd_identifier_token5] = ACTIONS(2342), - [aux_sym_cmd_identifier_token6] = ACTIONS(2342), - [aux_sym_cmd_identifier_token7] = ACTIONS(2342), - [aux_sym_cmd_identifier_token8] = ACTIONS(2342), - [aux_sym_cmd_identifier_token9] = ACTIONS(2342), - [aux_sym_cmd_identifier_token10] = ACTIONS(2342), - [aux_sym_cmd_identifier_token11] = ACTIONS(2342), - [aux_sym_cmd_identifier_token12] = ACTIONS(2342), - [aux_sym_cmd_identifier_token13] = ACTIONS(2342), - [aux_sym_cmd_identifier_token14] = ACTIONS(2342), - [aux_sym_cmd_identifier_token15] = ACTIONS(2342), - [aux_sym_cmd_identifier_token16] = ACTIONS(2342), - [aux_sym_cmd_identifier_token17] = ACTIONS(2342), - [aux_sym_cmd_identifier_token18] = ACTIONS(2342), - [aux_sym_cmd_identifier_token19] = ACTIONS(2342), - [aux_sym_cmd_identifier_token20] = ACTIONS(2342), - [aux_sym_cmd_identifier_token21] = ACTIONS(2342), - [aux_sym_cmd_identifier_token22] = ACTIONS(2342), - [aux_sym_cmd_identifier_token23] = ACTIONS(2342), - [aux_sym_cmd_identifier_token24] = ACTIONS(2342), - [aux_sym_cmd_identifier_token25] = ACTIONS(2342), - [aux_sym_cmd_identifier_token26] = ACTIONS(2342), - [aux_sym_cmd_identifier_token27] = ACTIONS(2342), - [aux_sym_cmd_identifier_token28] = ACTIONS(2342), - [aux_sym_cmd_identifier_token29] = ACTIONS(2342), - [aux_sym_cmd_identifier_token30] = ACTIONS(2342), - [aux_sym_cmd_identifier_token31] = ACTIONS(2342), - [aux_sym_cmd_identifier_token32] = ACTIONS(2342), - [aux_sym_cmd_identifier_token33] = ACTIONS(2342), - [aux_sym_cmd_identifier_token34] = ACTIONS(2342), - [aux_sym_cmd_identifier_token35] = ACTIONS(2342), - [aux_sym_cmd_identifier_token36] = ACTIONS(2342), - [anon_sym_true] = ACTIONS(2342), - [anon_sym_false] = ACTIONS(2342), - [anon_sym_null] = ACTIONS(2342), - [aux_sym_cmd_identifier_token38] = ACTIONS(2342), - [aux_sym_cmd_identifier_token39] = ACTIONS(2342), - [aux_sym_cmd_identifier_token40] = ACTIONS(2342), - [anon_sym_def] = ACTIONS(2342), - [anon_sym_export_DASHenv] = ACTIONS(2342), - [anon_sym_extern] = ACTIONS(2342), - [anon_sym_module] = ACTIONS(2342), - [anon_sym_use] = ACTIONS(2342), - [anon_sym_RBRACK] = ACTIONS(2342), - [anon_sym_LPAREN] = ACTIONS(2342), - [anon_sym_DOLLAR] = ACTIONS(2342), - [anon_sym_error] = ACTIONS(2342), - [anon_sym_list] = ACTIONS(2342), - [anon_sym_DASH] = ACTIONS(2342), - [anon_sym_break] = ACTIONS(2342), - [anon_sym_continue] = ACTIONS(2342), - [anon_sym_for] = ACTIONS(2342), - [anon_sym_in] = ACTIONS(2342), - [anon_sym_loop] = ACTIONS(2342), - [anon_sym_make] = ACTIONS(2342), - [anon_sym_while] = ACTIONS(2342), - [anon_sym_do] = ACTIONS(2342), - [anon_sym_if] = ACTIONS(2342), - [anon_sym_else] = ACTIONS(2342), - [anon_sym_match] = ACTIONS(2342), - [anon_sym_RBRACE] = ACTIONS(2342), - [anon_sym_try] = ACTIONS(2342), - [anon_sym_catch] = ACTIONS(2342), - [anon_sym_return] = ACTIONS(2342), - [anon_sym_source] = ACTIONS(2342), - [anon_sym_source_DASHenv] = ACTIONS(2342), - [anon_sym_register] = ACTIONS(2342), - [anon_sym_hide] = ACTIONS(2342), - [anon_sym_hide_DASHenv] = ACTIONS(2342), - [anon_sym_overlay] = ACTIONS(2342), - [anon_sym_new] = ACTIONS(2342), - [anon_sym_as] = ACTIONS(2342), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2342), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2342), - [aux_sym__val_number_decimal_token1] = ACTIONS(2342), - [aux_sym__val_number_decimal_token2] = ACTIONS(2342), - [aux_sym__val_number_decimal_token3] = ACTIONS(2342), - [aux_sym__val_number_decimal_token4] = ACTIONS(2342), - [aux_sym__val_number_token1] = ACTIONS(2342), - [aux_sym__val_number_token2] = ACTIONS(2342), - [aux_sym__val_number_token3] = ACTIONS(2342), - [anon_sym_DQUOTE] = ACTIONS(2342), - [sym__str_single_quotes] = ACTIONS(2342), - [sym__str_back_ticks] = ACTIONS(2342), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2342), - [sym__entry_separator] = ACTIONS(2344), - [anon_sym_PLUS] = ACTIONS(2342), + [441] = { + [sym_comment] = STATE(441), + [anon_sym_export] = ACTIONS(2206), + [anon_sym_alias] = ACTIONS(2206), + [anon_sym_let] = ACTIONS(2206), + [anon_sym_let_DASHenv] = ACTIONS(2206), + [anon_sym_mut] = ACTIONS(2206), + [anon_sym_const] = ACTIONS(2206), + [aux_sym_cmd_identifier_token1] = ACTIONS(2206), + [aux_sym_cmd_identifier_token2] = ACTIONS(2206), + [aux_sym_cmd_identifier_token3] = ACTIONS(2206), + [aux_sym_cmd_identifier_token4] = ACTIONS(2206), + [aux_sym_cmd_identifier_token5] = ACTIONS(2206), + [aux_sym_cmd_identifier_token6] = ACTIONS(2206), + [aux_sym_cmd_identifier_token7] = ACTIONS(2206), + [aux_sym_cmd_identifier_token8] = ACTIONS(2206), + [aux_sym_cmd_identifier_token9] = ACTIONS(2206), + [aux_sym_cmd_identifier_token10] = ACTIONS(2206), + [aux_sym_cmd_identifier_token11] = ACTIONS(2206), + [aux_sym_cmd_identifier_token12] = ACTIONS(2206), + [aux_sym_cmd_identifier_token13] = ACTIONS(2206), + [aux_sym_cmd_identifier_token14] = ACTIONS(2206), + [aux_sym_cmd_identifier_token15] = ACTIONS(2206), + [aux_sym_cmd_identifier_token16] = ACTIONS(2206), + [aux_sym_cmd_identifier_token17] = ACTIONS(2206), + [aux_sym_cmd_identifier_token18] = ACTIONS(2206), + [aux_sym_cmd_identifier_token19] = ACTIONS(2206), + [aux_sym_cmd_identifier_token20] = ACTIONS(2206), + [aux_sym_cmd_identifier_token21] = ACTIONS(2206), + [aux_sym_cmd_identifier_token22] = ACTIONS(2206), + [aux_sym_cmd_identifier_token23] = ACTIONS(2206), + [aux_sym_cmd_identifier_token24] = ACTIONS(2206), + [aux_sym_cmd_identifier_token25] = ACTIONS(2206), + [aux_sym_cmd_identifier_token26] = ACTIONS(2206), + [aux_sym_cmd_identifier_token27] = ACTIONS(2206), + [aux_sym_cmd_identifier_token28] = ACTIONS(2206), + [aux_sym_cmd_identifier_token29] = ACTIONS(2206), + [aux_sym_cmd_identifier_token30] = ACTIONS(2206), + [aux_sym_cmd_identifier_token31] = ACTIONS(2206), + [aux_sym_cmd_identifier_token32] = ACTIONS(2206), + [aux_sym_cmd_identifier_token33] = ACTIONS(2206), + [aux_sym_cmd_identifier_token34] = ACTIONS(2206), + [aux_sym_cmd_identifier_token35] = ACTIONS(2206), + [aux_sym_cmd_identifier_token36] = ACTIONS(2206), + [anon_sym_true] = ACTIONS(2206), + [anon_sym_false] = ACTIONS(2206), + [anon_sym_null] = ACTIONS(2206), + [aux_sym_cmd_identifier_token38] = ACTIONS(2206), + [aux_sym_cmd_identifier_token39] = ACTIONS(2206), + [aux_sym_cmd_identifier_token40] = ACTIONS(2206), + [anon_sym_def] = ACTIONS(2206), + [anon_sym_export_DASHenv] = ACTIONS(2206), + [anon_sym_extern] = ACTIONS(2206), + [anon_sym_module] = ACTIONS(2206), + [anon_sym_use] = ACTIONS(2206), + [anon_sym_LPAREN] = ACTIONS(2206), + [anon_sym_DOLLAR] = ACTIONS(2206), + [anon_sym_error] = ACTIONS(2206), + [anon_sym_list] = ACTIONS(2206), + [anon_sym_DASH] = ACTIONS(2206), + [anon_sym_break] = ACTIONS(2206), + [anon_sym_continue] = ACTIONS(2206), + [anon_sym_for] = ACTIONS(2206), + [anon_sym_in] = ACTIONS(2206), + [anon_sym_loop] = ACTIONS(2206), + [anon_sym_make] = ACTIONS(2206), + [anon_sym_while] = ACTIONS(2206), + [anon_sym_do] = ACTIONS(2206), + [anon_sym_if] = ACTIONS(2206), + [anon_sym_else] = ACTIONS(2206), + [anon_sym_match] = ACTIONS(2206), + [anon_sym_RBRACE] = ACTIONS(2206), + [anon_sym_try] = ACTIONS(2206), + [anon_sym_catch] = ACTIONS(2206), + [anon_sym_return] = ACTIONS(2206), + [anon_sym_source] = ACTIONS(2206), + [anon_sym_source_DASHenv] = ACTIONS(2206), + [anon_sym_register] = ACTIONS(2206), + [anon_sym_hide] = ACTIONS(2206), + [anon_sym_hide_DASHenv] = ACTIONS(2206), + [anon_sym_overlay] = ACTIONS(2206), + [anon_sym_new] = ACTIONS(2206), + [anon_sym_as] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2206), + [anon_sym_DOT_DOT2] = ACTIONS(2208), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2210), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2210), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2206), + [aux_sym__val_number_decimal_token1] = ACTIONS(2206), + [aux_sym__val_number_decimal_token2] = ACTIONS(2206), + [aux_sym__val_number_decimal_token3] = ACTIONS(2206), + [aux_sym__val_number_decimal_token4] = ACTIONS(2206), + [aux_sym__val_number_token1] = ACTIONS(2206), + [aux_sym__val_number_token2] = ACTIONS(2206), + [aux_sym__val_number_token3] = ACTIONS(2206), + [anon_sym_DQUOTE] = ACTIONS(2206), + [sym__str_single_quotes] = ACTIONS(2206), + [sym__str_back_ticks] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2206), + [sym__entry_separator] = ACTIONS(2212), + [anon_sym_PLUS] = ACTIONS(2206), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2212), }, - [513] = { - [sym_comment] = STATE(513), - [anon_sym_export] = ACTIONS(1062), - [anon_sym_alias] = ACTIONS(1062), - [anon_sym_let] = ACTIONS(1062), - [anon_sym_let_DASHenv] = ACTIONS(1062), - [anon_sym_mut] = ACTIONS(1062), - [anon_sym_const] = ACTIONS(1062), - [aux_sym_cmd_identifier_token1] = ACTIONS(1062), - [aux_sym_cmd_identifier_token2] = ACTIONS(1062), - [aux_sym_cmd_identifier_token3] = ACTIONS(1062), - [aux_sym_cmd_identifier_token4] = ACTIONS(1062), - [aux_sym_cmd_identifier_token5] = ACTIONS(1062), - [aux_sym_cmd_identifier_token6] = ACTIONS(1062), - [aux_sym_cmd_identifier_token7] = ACTIONS(1062), - [aux_sym_cmd_identifier_token8] = ACTIONS(1062), - [aux_sym_cmd_identifier_token9] = ACTIONS(1062), - [aux_sym_cmd_identifier_token10] = ACTIONS(1062), - [aux_sym_cmd_identifier_token11] = ACTIONS(1062), - [aux_sym_cmd_identifier_token12] = ACTIONS(1062), - [aux_sym_cmd_identifier_token13] = ACTIONS(1062), - [aux_sym_cmd_identifier_token14] = ACTIONS(1062), - [aux_sym_cmd_identifier_token15] = ACTIONS(1062), - [aux_sym_cmd_identifier_token16] = ACTIONS(1062), - [aux_sym_cmd_identifier_token17] = ACTIONS(1062), - [aux_sym_cmd_identifier_token18] = ACTIONS(1062), - [aux_sym_cmd_identifier_token19] = ACTIONS(1062), - [aux_sym_cmd_identifier_token20] = ACTIONS(1062), - [aux_sym_cmd_identifier_token21] = ACTIONS(1062), - [aux_sym_cmd_identifier_token22] = ACTIONS(1062), - [aux_sym_cmd_identifier_token23] = ACTIONS(1062), - [aux_sym_cmd_identifier_token24] = ACTIONS(1062), - [aux_sym_cmd_identifier_token25] = ACTIONS(1062), - [aux_sym_cmd_identifier_token26] = ACTIONS(1062), - [aux_sym_cmd_identifier_token27] = ACTIONS(1062), - [aux_sym_cmd_identifier_token28] = ACTIONS(1062), - [aux_sym_cmd_identifier_token29] = ACTIONS(1062), - [aux_sym_cmd_identifier_token30] = ACTIONS(1062), - [aux_sym_cmd_identifier_token31] = ACTIONS(1062), - [aux_sym_cmd_identifier_token32] = ACTIONS(1062), - [aux_sym_cmd_identifier_token33] = ACTIONS(1062), - [aux_sym_cmd_identifier_token34] = ACTIONS(1062), - [aux_sym_cmd_identifier_token35] = ACTIONS(1062), - [aux_sym_cmd_identifier_token36] = ACTIONS(1062), - [anon_sym_true] = ACTIONS(1068), - [anon_sym_false] = ACTIONS(1068), - [anon_sym_null] = ACTIONS(1068), - [aux_sym_cmd_identifier_token38] = ACTIONS(1062), - [aux_sym_cmd_identifier_token39] = ACTIONS(1068), - [aux_sym_cmd_identifier_token40] = ACTIONS(1068), - [anon_sym_def] = ACTIONS(1062), - [anon_sym_export_DASHenv] = ACTIONS(1062), - [anon_sym_extern] = ACTIONS(1062), - [anon_sym_module] = ACTIONS(1062), - [anon_sym_use] = ACTIONS(1062), - [anon_sym_LPAREN] = ACTIONS(1068), - [anon_sym_COMMA] = ACTIONS(1074), - [anon_sym_DOLLAR] = ACTIONS(1068), - [anon_sym_error] = ACTIONS(1062), - [anon_sym_list] = ACTIONS(1062), - [anon_sym_DASH] = ACTIONS(1062), - [anon_sym_break] = ACTIONS(1062), - [anon_sym_continue] = ACTIONS(1062), - [anon_sym_for] = ACTIONS(1062), - [anon_sym_in] = ACTIONS(1062), - [anon_sym_loop] = ACTIONS(1062), - [anon_sym_make] = ACTIONS(1062), - [anon_sym_while] = ACTIONS(1062), - [anon_sym_do] = ACTIONS(1062), - [anon_sym_if] = ACTIONS(1062), - [anon_sym_else] = ACTIONS(1062), - [anon_sym_match] = ACTIONS(1062), - [anon_sym_RBRACE] = ACTIONS(1068), - [anon_sym_try] = ACTIONS(1062), - [anon_sym_catch] = ACTIONS(1062), - [anon_sym_return] = ACTIONS(1062), - [anon_sym_source] = ACTIONS(1062), - [anon_sym_source_DASHenv] = ACTIONS(1062), - [anon_sym_register] = ACTIONS(1062), - [anon_sym_hide] = ACTIONS(1062), - [anon_sym_hide_DASHenv] = ACTIONS(1062), - [anon_sym_overlay] = ACTIONS(1062), - [anon_sym_new] = ACTIONS(1062), - [anon_sym_as] = ACTIONS(1062), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1068), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1068), - [aux_sym__val_number_decimal_token1] = ACTIONS(1062), - [aux_sym__val_number_decimal_token2] = ACTIONS(1068), - [aux_sym__val_number_decimal_token3] = ACTIONS(1068), - [aux_sym__val_number_decimal_token4] = ACTIONS(1068), - [aux_sym__val_number_token1] = ACTIONS(1068), - [aux_sym__val_number_token2] = ACTIONS(1068), - [aux_sym__val_number_token3] = ACTIONS(1068), - [anon_sym_DQUOTE] = ACTIONS(1068), - [sym__str_single_quotes] = ACTIONS(1068), - [sym__str_back_ticks] = ACTIONS(1068), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1068), - [aux_sym_record_entry_token1] = ACTIONS(2346), - [anon_sym_PLUS] = ACTIONS(1062), - [anon_sym_POUND] = ACTIONS(247), - }, - [514] = { - [sym_comment] = STATE(514), - [anon_sym_export] = ACTIONS(2348), - [anon_sym_alias] = ACTIONS(2348), - [anon_sym_let] = ACTIONS(2348), - [anon_sym_let_DASHenv] = ACTIONS(2348), - [anon_sym_mut] = ACTIONS(2348), - [anon_sym_const] = ACTIONS(2348), - [aux_sym_cmd_identifier_token1] = ACTIONS(2348), - [aux_sym_cmd_identifier_token2] = ACTIONS(2348), - [aux_sym_cmd_identifier_token3] = ACTIONS(2348), - [aux_sym_cmd_identifier_token4] = ACTIONS(2348), - [aux_sym_cmd_identifier_token5] = ACTIONS(2348), - [aux_sym_cmd_identifier_token6] = ACTIONS(2348), - [aux_sym_cmd_identifier_token7] = ACTIONS(2348), - [aux_sym_cmd_identifier_token8] = ACTIONS(2348), - [aux_sym_cmd_identifier_token9] = ACTIONS(2348), - [aux_sym_cmd_identifier_token10] = ACTIONS(2348), - [aux_sym_cmd_identifier_token11] = ACTIONS(2348), - [aux_sym_cmd_identifier_token12] = ACTIONS(2348), - [aux_sym_cmd_identifier_token13] = ACTIONS(2348), - [aux_sym_cmd_identifier_token14] = ACTIONS(2348), - [aux_sym_cmd_identifier_token15] = ACTIONS(2348), - [aux_sym_cmd_identifier_token16] = ACTIONS(2348), - [aux_sym_cmd_identifier_token17] = ACTIONS(2348), - [aux_sym_cmd_identifier_token18] = ACTIONS(2348), - [aux_sym_cmd_identifier_token19] = ACTIONS(2348), - [aux_sym_cmd_identifier_token20] = ACTIONS(2348), - [aux_sym_cmd_identifier_token21] = ACTIONS(2348), - [aux_sym_cmd_identifier_token22] = ACTIONS(2348), - [aux_sym_cmd_identifier_token23] = ACTIONS(2348), - [aux_sym_cmd_identifier_token24] = ACTIONS(2348), - [aux_sym_cmd_identifier_token25] = ACTIONS(2348), - [aux_sym_cmd_identifier_token26] = ACTIONS(2348), - [aux_sym_cmd_identifier_token27] = ACTIONS(2348), - [aux_sym_cmd_identifier_token28] = ACTIONS(2348), - [aux_sym_cmd_identifier_token29] = ACTIONS(2348), - [aux_sym_cmd_identifier_token30] = ACTIONS(2348), - [aux_sym_cmd_identifier_token31] = ACTIONS(2348), - [aux_sym_cmd_identifier_token32] = ACTIONS(2348), - [aux_sym_cmd_identifier_token33] = ACTIONS(2348), - [aux_sym_cmd_identifier_token34] = ACTIONS(2348), - [aux_sym_cmd_identifier_token35] = ACTIONS(2348), - [aux_sym_cmd_identifier_token36] = ACTIONS(2348), - [anon_sym_true] = ACTIONS(2348), - [anon_sym_false] = ACTIONS(2348), - [anon_sym_null] = ACTIONS(2348), - [aux_sym_cmd_identifier_token38] = ACTIONS(2348), - [aux_sym_cmd_identifier_token39] = ACTIONS(2348), - [aux_sym_cmd_identifier_token40] = ACTIONS(2348), - [anon_sym_def] = ACTIONS(2348), - [anon_sym_export_DASHenv] = ACTIONS(2348), - [anon_sym_extern] = ACTIONS(2348), - [anon_sym_module] = ACTIONS(2348), - [anon_sym_use] = ACTIONS(2348), - [anon_sym_RBRACK] = ACTIONS(2348), - [anon_sym_LPAREN] = ACTIONS(2348), - [anon_sym_DOLLAR] = ACTIONS(2348), - [anon_sym_error] = ACTIONS(2348), - [anon_sym_list] = ACTIONS(2348), - [anon_sym_DASH] = ACTIONS(2348), - [anon_sym_break] = ACTIONS(2348), - [anon_sym_continue] = ACTIONS(2348), - [anon_sym_for] = ACTIONS(2348), - [anon_sym_in] = ACTIONS(2348), - [anon_sym_loop] = ACTIONS(2348), - [anon_sym_make] = ACTIONS(2348), - [anon_sym_while] = ACTIONS(2348), - [anon_sym_do] = ACTIONS(2348), - [anon_sym_if] = ACTIONS(2348), - [anon_sym_else] = ACTIONS(2348), - [anon_sym_match] = ACTIONS(2348), - [anon_sym_RBRACE] = ACTIONS(2348), - [anon_sym_try] = ACTIONS(2348), - [anon_sym_catch] = ACTIONS(2348), - [anon_sym_return] = ACTIONS(2348), - [anon_sym_source] = ACTIONS(2348), - [anon_sym_source_DASHenv] = ACTIONS(2348), - [anon_sym_register] = ACTIONS(2348), - [anon_sym_hide] = ACTIONS(2348), - [anon_sym_hide_DASHenv] = ACTIONS(2348), - [anon_sym_overlay] = ACTIONS(2348), - [anon_sym_new] = ACTIONS(2348), - [anon_sym_as] = ACTIONS(2348), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2348), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2348), - [aux_sym__val_number_decimal_token1] = ACTIONS(2348), - [aux_sym__val_number_decimal_token2] = ACTIONS(2348), - [aux_sym__val_number_decimal_token3] = ACTIONS(2348), - [aux_sym__val_number_decimal_token4] = ACTIONS(2348), - [aux_sym__val_number_token1] = ACTIONS(2348), - [aux_sym__val_number_token2] = ACTIONS(2348), - [aux_sym__val_number_token3] = ACTIONS(2348), - [anon_sym_DQUOTE] = ACTIONS(2348), - [sym__str_single_quotes] = ACTIONS(2348), - [sym__str_back_ticks] = ACTIONS(2348), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2348), - [sym__entry_separator] = ACTIONS(2350), - [anon_sym_PLUS] = ACTIONS(2348), + [442] = { + [sym_comment] = STATE(442), + [anon_sym_export] = ACTIONS(1769), + [anon_sym_alias] = ACTIONS(1769), + [anon_sym_let] = ACTIONS(1769), + [anon_sym_let_DASHenv] = ACTIONS(1769), + [anon_sym_mut] = ACTIONS(1769), + [anon_sym_const] = ACTIONS(1769), + [aux_sym_cmd_identifier_token1] = ACTIONS(1769), + [aux_sym_cmd_identifier_token2] = ACTIONS(1769), + [aux_sym_cmd_identifier_token3] = ACTIONS(1769), + [aux_sym_cmd_identifier_token4] = ACTIONS(1769), + [aux_sym_cmd_identifier_token5] = ACTIONS(1769), + [aux_sym_cmd_identifier_token6] = ACTIONS(1769), + [aux_sym_cmd_identifier_token7] = ACTIONS(1769), + [aux_sym_cmd_identifier_token8] = ACTIONS(1769), + [aux_sym_cmd_identifier_token9] = ACTIONS(1769), + [aux_sym_cmd_identifier_token10] = ACTIONS(1769), + [aux_sym_cmd_identifier_token11] = ACTIONS(1769), + [aux_sym_cmd_identifier_token12] = ACTIONS(1769), + [aux_sym_cmd_identifier_token13] = ACTIONS(1769), + [aux_sym_cmd_identifier_token14] = ACTIONS(1769), + [aux_sym_cmd_identifier_token15] = ACTIONS(1769), + [aux_sym_cmd_identifier_token16] = ACTIONS(1769), + [aux_sym_cmd_identifier_token17] = ACTIONS(1769), + [aux_sym_cmd_identifier_token18] = ACTIONS(1769), + [aux_sym_cmd_identifier_token19] = ACTIONS(1769), + [aux_sym_cmd_identifier_token20] = ACTIONS(1769), + [aux_sym_cmd_identifier_token21] = ACTIONS(1769), + [aux_sym_cmd_identifier_token22] = ACTIONS(1769), + [aux_sym_cmd_identifier_token23] = ACTIONS(1769), + [aux_sym_cmd_identifier_token24] = ACTIONS(1769), + [aux_sym_cmd_identifier_token25] = ACTIONS(1769), + [aux_sym_cmd_identifier_token26] = ACTIONS(1769), + [aux_sym_cmd_identifier_token27] = ACTIONS(1769), + [aux_sym_cmd_identifier_token28] = ACTIONS(1769), + [aux_sym_cmd_identifier_token29] = ACTIONS(1769), + [aux_sym_cmd_identifier_token30] = ACTIONS(1769), + [aux_sym_cmd_identifier_token31] = ACTIONS(1769), + [aux_sym_cmd_identifier_token32] = ACTIONS(1769), + [aux_sym_cmd_identifier_token33] = ACTIONS(1769), + [aux_sym_cmd_identifier_token34] = ACTIONS(1769), + [aux_sym_cmd_identifier_token35] = ACTIONS(1769), + [aux_sym_cmd_identifier_token36] = ACTIONS(1769), + [anon_sym_true] = ACTIONS(1769), + [anon_sym_false] = ACTIONS(1769), + [anon_sym_null] = ACTIONS(1769), + [aux_sym_cmd_identifier_token38] = ACTIONS(1769), + [aux_sym_cmd_identifier_token39] = ACTIONS(1769), + [aux_sym_cmd_identifier_token40] = ACTIONS(1769), + [anon_sym_def] = ACTIONS(1769), + [anon_sym_export_DASHenv] = ACTIONS(1769), + [anon_sym_extern] = ACTIONS(1769), + [anon_sym_module] = ACTIONS(1769), + [anon_sym_use] = ACTIONS(1769), + [anon_sym_LPAREN] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1769), + [anon_sym_error] = ACTIONS(1769), + [anon_sym_list] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_break] = ACTIONS(1769), + [anon_sym_continue] = ACTIONS(1769), + [anon_sym_for] = ACTIONS(1769), + [anon_sym_in] = ACTIONS(1769), + [anon_sym_loop] = ACTIONS(1769), + [anon_sym_make] = ACTIONS(1769), + [anon_sym_while] = ACTIONS(1769), + [anon_sym_do] = ACTIONS(1769), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_else] = ACTIONS(1769), + [anon_sym_match] = ACTIONS(1769), + [anon_sym_RBRACE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1769), + [anon_sym_catch] = ACTIONS(1769), + [anon_sym_return] = ACTIONS(1769), + [anon_sym_source] = ACTIONS(1769), + [anon_sym_source_DASHenv] = ACTIONS(1769), + [anon_sym_register] = ACTIONS(1769), + [anon_sym_hide] = ACTIONS(1769), + [anon_sym_hide_DASHenv] = ACTIONS(1769), + [anon_sym_overlay] = ACTIONS(1769), + [anon_sym_new] = ACTIONS(1769), + [anon_sym_as] = ACTIONS(1769), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1769), + [anon_sym_DOT_DOT2] = ACTIONS(1769), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1771), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1771), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1769), + [aux_sym__val_number_decimal_token1] = ACTIONS(1769), + [aux_sym__val_number_decimal_token2] = ACTIONS(1769), + [aux_sym__val_number_decimal_token3] = ACTIONS(1769), + [aux_sym__val_number_decimal_token4] = ACTIONS(1769), + [aux_sym__val_number_token1] = ACTIONS(1769), + [aux_sym__val_number_token2] = ACTIONS(1769), + [aux_sym__val_number_token3] = ACTIONS(1769), + [anon_sym_DQUOTE] = ACTIONS(1769), + [sym__str_single_quotes] = ACTIONS(1769), + [sym__str_back_ticks] = ACTIONS(1769), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1769), + [sym__entry_separator] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1769), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1771), }, - [515] = { - [sym__expr_parenthesized_immediate] = STATE(7671), - [sym_comment] = STATE(515), - [anon_sym_export] = ACTIONS(2152), - [anon_sym_alias] = ACTIONS(2152), - [anon_sym_let] = ACTIONS(2152), - [anon_sym_let_DASHenv] = ACTIONS(2152), - [anon_sym_mut] = ACTIONS(2152), - [anon_sym_const] = ACTIONS(2152), - [aux_sym_cmd_identifier_token1] = ACTIONS(2152), - [aux_sym_cmd_identifier_token2] = ACTIONS(2152), - [aux_sym_cmd_identifier_token3] = ACTIONS(2152), - [aux_sym_cmd_identifier_token4] = ACTIONS(2152), - [aux_sym_cmd_identifier_token5] = ACTIONS(2152), - [aux_sym_cmd_identifier_token6] = ACTIONS(2152), - [aux_sym_cmd_identifier_token7] = ACTIONS(2152), - [aux_sym_cmd_identifier_token8] = ACTIONS(2152), - [aux_sym_cmd_identifier_token9] = ACTIONS(2152), - [aux_sym_cmd_identifier_token10] = ACTIONS(2152), - [aux_sym_cmd_identifier_token11] = ACTIONS(2152), - [aux_sym_cmd_identifier_token12] = ACTIONS(2152), - [aux_sym_cmd_identifier_token13] = ACTIONS(2152), - [aux_sym_cmd_identifier_token14] = ACTIONS(2152), - [aux_sym_cmd_identifier_token15] = ACTIONS(2152), - [aux_sym_cmd_identifier_token16] = ACTIONS(2152), - [aux_sym_cmd_identifier_token17] = ACTIONS(2152), - [aux_sym_cmd_identifier_token18] = ACTIONS(2152), - [aux_sym_cmd_identifier_token19] = ACTIONS(2152), - [aux_sym_cmd_identifier_token20] = ACTIONS(2152), - [aux_sym_cmd_identifier_token21] = ACTIONS(2152), - [aux_sym_cmd_identifier_token22] = ACTIONS(2152), - [aux_sym_cmd_identifier_token23] = ACTIONS(2152), - [aux_sym_cmd_identifier_token24] = ACTIONS(2152), - [aux_sym_cmd_identifier_token25] = ACTIONS(2152), - [aux_sym_cmd_identifier_token26] = ACTIONS(2152), - [aux_sym_cmd_identifier_token27] = ACTIONS(2152), - [aux_sym_cmd_identifier_token28] = ACTIONS(2152), - [aux_sym_cmd_identifier_token29] = ACTIONS(2152), - [aux_sym_cmd_identifier_token30] = ACTIONS(2152), - [aux_sym_cmd_identifier_token31] = ACTIONS(2152), - [aux_sym_cmd_identifier_token32] = ACTIONS(2152), - [aux_sym_cmd_identifier_token33] = ACTIONS(2152), - [aux_sym_cmd_identifier_token34] = ACTIONS(2152), - [aux_sym_cmd_identifier_token35] = ACTIONS(2152), - [aux_sym_cmd_identifier_token36] = ACTIONS(2152), - [anon_sym_true] = ACTIONS(2154), - [anon_sym_false] = ACTIONS(2154), - [anon_sym_null] = ACTIONS(2154), - [aux_sym_cmd_identifier_token38] = ACTIONS(2152), - [aux_sym_cmd_identifier_token39] = ACTIONS(2154), - [aux_sym_cmd_identifier_token40] = ACTIONS(2154), - [anon_sym_def] = ACTIONS(2152), - [anon_sym_export_DASHenv] = ACTIONS(2152), - [anon_sym_extern] = ACTIONS(2152), - [anon_sym_module] = ACTIONS(2152), - [anon_sym_use] = ACTIONS(2152), - [anon_sym_LPAREN] = ACTIONS(2152), - [anon_sym_DOLLAR] = ACTIONS(2154), - [anon_sym_error] = ACTIONS(2152), - [anon_sym_list] = ACTIONS(2152), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_break] = ACTIONS(2152), - [anon_sym_continue] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(2152), - [anon_sym_in] = ACTIONS(2152), - [anon_sym_loop] = ACTIONS(2152), - [anon_sym_make] = ACTIONS(2152), - [anon_sym_while] = ACTIONS(2152), - [anon_sym_do] = ACTIONS(2152), - [anon_sym_if] = ACTIONS(2152), - [anon_sym_else] = ACTIONS(2152), - [anon_sym_match] = ACTIONS(2152), - [anon_sym_RBRACE] = ACTIONS(2154), - [anon_sym_try] = ACTIONS(2152), - [anon_sym_catch] = ACTIONS(2152), - [anon_sym_return] = ACTIONS(2152), - [anon_sym_source] = ACTIONS(2152), - [anon_sym_source_DASHenv] = ACTIONS(2152), - [anon_sym_register] = ACTIONS(2152), - [anon_sym_hide] = ACTIONS(2152), - [anon_sym_hide_DASHenv] = ACTIONS(2152), - [anon_sym_overlay] = ACTIONS(2152), - [anon_sym_new] = ACTIONS(2152), - [anon_sym_as] = ACTIONS(2152), - [anon_sym_LPAREN2] = ACTIONS(1562), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2154), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2154), - [aux_sym__val_number_decimal_token1] = ACTIONS(2152), - [aux_sym__val_number_decimal_token2] = ACTIONS(2154), - [aux_sym__val_number_decimal_token3] = ACTIONS(2154), - [aux_sym__val_number_decimal_token4] = ACTIONS(2154), - [aux_sym__val_number_token1] = ACTIONS(2154), - [aux_sym__val_number_token2] = ACTIONS(2154), - [aux_sym__val_number_token3] = ACTIONS(2154), - [anon_sym_DQUOTE] = ACTIONS(2154), - [sym__str_single_quotes] = ACTIONS(2154), - [sym__str_back_ticks] = ACTIONS(2154), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2154), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_POUND] = ACTIONS(247), - }, - [516] = { - [sym_comment] = STATE(516), - [aux_sym__multiple_types_repeat1] = STATE(509), - [anon_sym_export] = ACTIONS(2352), - [anon_sym_alias] = ACTIONS(2352), - [anon_sym_let] = ACTIONS(2352), - [anon_sym_let_DASHenv] = ACTIONS(2352), - [anon_sym_mut] = ACTIONS(2352), - [anon_sym_const] = ACTIONS(2352), - [aux_sym_cmd_identifier_token1] = ACTIONS(2352), - [aux_sym_cmd_identifier_token2] = ACTIONS(2352), - [aux_sym_cmd_identifier_token3] = ACTIONS(2352), - [aux_sym_cmd_identifier_token4] = ACTIONS(2352), - [aux_sym_cmd_identifier_token5] = ACTIONS(2352), - [aux_sym_cmd_identifier_token6] = ACTIONS(2352), - [aux_sym_cmd_identifier_token7] = ACTIONS(2352), - [aux_sym_cmd_identifier_token8] = ACTIONS(2352), - [aux_sym_cmd_identifier_token9] = ACTIONS(2352), - [aux_sym_cmd_identifier_token10] = ACTIONS(2352), - [aux_sym_cmd_identifier_token11] = ACTIONS(2352), - [aux_sym_cmd_identifier_token12] = ACTIONS(2352), - [aux_sym_cmd_identifier_token13] = ACTIONS(2352), - [aux_sym_cmd_identifier_token14] = ACTIONS(2352), - [aux_sym_cmd_identifier_token15] = ACTIONS(2352), - [aux_sym_cmd_identifier_token16] = ACTIONS(2352), - [aux_sym_cmd_identifier_token17] = ACTIONS(2352), - [aux_sym_cmd_identifier_token18] = ACTIONS(2352), - [aux_sym_cmd_identifier_token19] = ACTIONS(2352), - [aux_sym_cmd_identifier_token20] = ACTIONS(2352), - [aux_sym_cmd_identifier_token21] = ACTIONS(2352), - [aux_sym_cmd_identifier_token22] = ACTIONS(2352), - [aux_sym_cmd_identifier_token23] = ACTIONS(2352), - [aux_sym_cmd_identifier_token24] = ACTIONS(2352), - [aux_sym_cmd_identifier_token25] = ACTIONS(2352), - [aux_sym_cmd_identifier_token26] = ACTIONS(2352), - [aux_sym_cmd_identifier_token27] = ACTIONS(2352), - [aux_sym_cmd_identifier_token28] = ACTIONS(2352), - [aux_sym_cmd_identifier_token29] = ACTIONS(2352), - [aux_sym_cmd_identifier_token30] = ACTIONS(2352), - [aux_sym_cmd_identifier_token31] = ACTIONS(2352), - [aux_sym_cmd_identifier_token32] = ACTIONS(2352), - [aux_sym_cmd_identifier_token33] = ACTIONS(2352), - [aux_sym_cmd_identifier_token34] = ACTIONS(2352), - [aux_sym_cmd_identifier_token35] = ACTIONS(2352), - [aux_sym_cmd_identifier_token36] = ACTIONS(2352), - [anon_sym_true] = ACTIONS(2352), - [anon_sym_false] = ACTIONS(2352), - [anon_sym_null] = ACTIONS(2352), - [aux_sym_cmd_identifier_token38] = ACTIONS(2352), - [aux_sym_cmd_identifier_token39] = ACTIONS(2352), - [aux_sym_cmd_identifier_token40] = ACTIONS(2352), - [anon_sym_def] = ACTIONS(2352), - [anon_sym_export_DASHenv] = ACTIONS(2352), - [anon_sym_extern] = ACTIONS(2352), - [anon_sym_module] = ACTIONS(2352), - [anon_sym_use] = ACTIONS(2352), - [anon_sym_LPAREN] = ACTIONS(2352), - [anon_sym_DOLLAR] = ACTIONS(2352), - [anon_sym_error] = ACTIONS(2352), - [anon_sym_list] = ACTIONS(2352), - [anon_sym_DASH] = ACTIONS(2352), - [anon_sym_break] = ACTIONS(2352), - [anon_sym_continue] = ACTIONS(2352), - [anon_sym_for] = ACTIONS(2352), - [anon_sym_in] = ACTIONS(2352), - [anon_sym_loop] = ACTIONS(2352), - [anon_sym_make] = ACTIONS(2352), - [anon_sym_while] = ACTIONS(2352), - [anon_sym_do] = ACTIONS(2352), - [anon_sym_if] = ACTIONS(2352), - [anon_sym_else] = ACTIONS(2352), - [anon_sym_match] = ACTIONS(2352), - [anon_sym_RBRACE] = ACTIONS(2354), - [anon_sym_try] = ACTIONS(2352), - [anon_sym_catch] = ACTIONS(2352), - [anon_sym_return] = ACTIONS(2352), - [anon_sym_source] = ACTIONS(2352), - [anon_sym_source_DASHenv] = ACTIONS(2352), - [anon_sym_register] = ACTIONS(2352), - [anon_sym_hide] = ACTIONS(2352), - [anon_sym_hide_DASHenv] = ACTIONS(2352), - [anon_sym_overlay] = ACTIONS(2352), - [anon_sym_new] = ACTIONS(2352), - [anon_sym_as] = ACTIONS(2352), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2352), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2352), - [aux_sym__val_number_decimal_token1] = ACTIONS(2352), - [aux_sym__val_number_decimal_token2] = ACTIONS(2352), - [aux_sym__val_number_decimal_token3] = ACTIONS(2352), - [aux_sym__val_number_decimal_token4] = ACTIONS(2352), - [aux_sym__val_number_token1] = ACTIONS(2352), - [aux_sym__val_number_token2] = ACTIONS(2352), - [aux_sym__val_number_token3] = ACTIONS(2352), - [anon_sym_DQUOTE] = ACTIONS(2352), - [sym__str_single_quotes] = ACTIONS(2352), - [sym__str_back_ticks] = ACTIONS(2352), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2352), - [sym__entry_separator] = ACTIONS(2336), - [anon_sym_PLUS] = ACTIONS(2352), + [443] = { + [sym_comment] = STATE(443), + [anon_sym_export] = ACTIONS(1826), + [anon_sym_alias] = ACTIONS(1826), + [anon_sym_let] = ACTIONS(1826), + [anon_sym_let_DASHenv] = ACTIONS(1826), + [anon_sym_mut] = ACTIONS(1826), + [anon_sym_const] = ACTIONS(1826), + [aux_sym_cmd_identifier_token1] = ACTIONS(1826), + [aux_sym_cmd_identifier_token2] = ACTIONS(1826), + [aux_sym_cmd_identifier_token3] = ACTIONS(1826), + [aux_sym_cmd_identifier_token4] = ACTIONS(1826), + [aux_sym_cmd_identifier_token5] = ACTIONS(1826), + [aux_sym_cmd_identifier_token6] = ACTIONS(1826), + [aux_sym_cmd_identifier_token7] = ACTIONS(1826), + [aux_sym_cmd_identifier_token8] = ACTIONS(1826), + [aux_sym_cmd_identifier_token9] = ACTIONS(1826), + [aux_sym_cmd_identifier_token10] = ACTIONS(1826), + [aux_sym_cmd_identifier_token11] = ACTIONS(1826), + [aux_sym_cmd_identifier_token12] = ACTIONS(1826), + [aux_sym_cmd_identifier_token13] = ACTIONS(1826), + [aux_sym_cmd_identifier_token14] = ACTIONS(1826), + [aux_sym_cmd_identifier_token15] = ACTIONS(1826), + [aux_sym_cmd_identifier_token16] = ACTIONS(1826), + [aux_sym_cmd_identifier_token17] = ACTIONS(1826), + [aux_sym_cmd_identifier_token18] = ACTIONS(1826), + [aux_sym_cmd_identifier_token19] = ACTIONS(1826), + [aux_sym_cmd_identifier_token20] = ACTIONS(1826), + [aux_sym_cmd_identifier_token21] = ACTIONS(1826), + [aux_sym_cmd_identifier_token22] = ACTIONS(1826), + [aux_sym_cmd_identifier_token23] = ACTIONS(1826), + [aux_sym_cmd_identifier_token24] = ACTIONS(1826), + [aux_sym_cmd_identifier_token25] = ACTIONS(1826), + [aux_sym_cmd_identifier_token26] = ACTIONS(1826), + [aux_sym_cmd_identifier_token27] = ACTIONS(1826), + [aux_sym_cmd_identifier_token28] = ACTIONS(1826), + [aux_sym_cmd_identifier_token29] = ACTIONS(1826), + [aux_sym_cmd_identifier_token30] = ACTIONS(1826), + [aux_sym_cmd_identifier_token31] = ACTIONS(1826), + [aux_sym_cmd_identifier_token32] = ACTIONS(1826), + [aux_sym_cmd_identifier_token33] = ACTIONS(1826), + [aux_sym_cmd_identifier_token34] = ACTIONS(1826), + [aux_sym_cmd_identifier_token35] = ACTIONS(1826), + [aux_sym_cmd_identifier_token36] = ACTIONS(1826), + [anon_sym_true] = ACTIONS(1826), + [anon_sym_false] = ACTIONS(1826), + [anon_sym_null] = ACTIONS(1826), + [aux_sym_cmd_identifier_token38] = ACTIONS(1826), + [aux_sym_cmd_identifier_token39] = ACTIONS(1826), + [aux_sym_cmd_identifier_token40] = ACTIONS(1826), + [anon_sym_def] = ACTIONS(1826), + [anon_sym_export_DASHenv] = ACTIONS(1826), + [anon_sym_extern] = ACTIONS(1826), + [anon_sym_module] = ACTIONS(1826), + [anon_sym_use] = ACTIONS(1826), + [anon_sym_LPAREN] = ACTIONS(1826), + [anon_sym_DOLLAR] = ACTIONS(1826), + [anon_sym_error] = ACTIONS(1826), + [anon_sym_list] = ACTIONS(1826), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_break] = ACTIONS(1826), + [anon_sym_continue] = ACTIONS(1826), + [anon_sym_for] = ACTIONS(1826), + [anon_sym_in] = ACTIONS(1826), + [anon_sym_loop] = ACTIONS(1826), + [anon_sym_make] = ACTIONS(1826), + [anon_sym_while] = ACTIONS(1826), + [anon_sym_do] = ACTIONS(1826), + [anon_sym_if] = ACTIONS(1826), + [anon_sym_else] = ACTIONS(1826), + [anon_sym_match] = ACTIONS(1826), + [anon_sym_RBRACE] = ACTIONS(1826), + [anon_sym_try] = ACTIONS(1826), + [anon_sym_catch] = ACTIONS(1826), + [anon_sym_return] = ACTIONS(1826), + [anon_sym_source] = ACTIONS(1826), + [anon_sym_source_DASHenv] = ACTIONS(1826), + [anon_sym_register] = ACTIONS(1826), + [anon_sym_hide] = ACTIONS(1826), + [anon_sym_hide_DASHenv] = ACTIONS(1826), + [anon_sym_overlay] = ACTIONS(1826), + [anon_sym_new] = ACTIONS(1826), + [anon_sym_as] = ACTIONS(1826), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1826), + [anon_sym_DOT_DOT2] = ACTIONS(1826), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1828), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1828), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1826), + [aux_sym__val_number_decimal_token1] = ACTIONS(1826), + [aux_sym__val_number_decimal_token2] = ACTIONS(1826), + [aux_sym__val_number_decimal_token3] = ACTIONS(1826), + [aux_sym__val_number_decimal_token4] = ACTIONS(1826), + [aux_sym__val_number_token1] = ACTIONS(1826), + [aux_sym__val_number_token2] = ACTIONS(1826), + [aux_sym__val_number_token3] = ACTIONS(1826), + [anon_sym_DQUOTE] = ACTIONS(1826), + [sym__str_single_quotes] = ACTIONS(1826), + [sym__str_back_ticks] = ACTIONS(1826), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1826), + [sym__entry_separator] = ACTIONS(1828), + [anon_sym_PLUS] = ACTIONS(1826), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1828), }, - [517] = { - [sym__expr_parenthesized_immediate] = STATE(7671), - [sym_comment] = STATE(517), - [anon_sym_export] = ACTIONS(2156), - [anon_sym_alias] = ACTIONS(2156), - [anon_sym_let] = ACTIONS(2156), - [anon_sym_let_DASHenv] = ACTIONS(2156), - [anon_sym_mut] = ACTIONS(2156), - [anon_sym_const] = ACTIONS(2156), - [aux_sym_cmd_identifier_token1] = ACTIONS(2156), - [aux_sym_cmd_identifier_token2] = ACTIONS(2156), - [aux_sym_cmd_identifier_token3] = ACTIONS(2156), - [aux_sym_cmd_identifier_token4] = ACTIONS(2156), - [aux_sym_cmd_identifier_token5] = ACTIONS(2156), - [aux_sym_cmd_identifier_token6] = ACTIONS(2156), - [aux_sym_cmd_identifier_token7] = ACTIONS(2156), - [aux_sym_cmd_identifier_token8] = ACTIONS(2156), - [aux_sym_cmd_identifier_token9] = ACTIONS(2156), - [aux_sym_cmd_identifier_token10] = ACTIONS(2156), - [aux_sym_cmd_identifier_token11] = ACTIONS(2156), - [aux_sym_cmd_identifier_token12] = ACTIONS(2156), - [aux_sym_cmd_identifier_token13] = ACTIONS(2156), - [aux_sym_cmd_identifier_token14] = ACTIONS(2156), - [aux_sym_cmd_identifier_token15] = ACTIONS(2156), - [aux_sym_cmd_identifier_token16] = ACTIONS(2156), - [aux_sym_cmd_identifier_token17] = ACTIONS(2156), - [aux_sym_cmd_identifier_token18] = ACTIONS(2156), - [aux_sym_cmd_identifier_token19] = ACTIONS(2156), - [aux_sym_cmd_identifier_token20] = ACTIONS(2156), - [aux_sym_cmd_identifier_token21] = ACTIONS(2156), - [aux_sym_cmd_identifier_token22] = ACTIONS(2156), - [aux_sym_cmd_identifier_token23] = ACTIONS(2156), - [aux_sym_cmd_identifier_token24] = ACTIONS(2156), - [aux_sym_cmd_identifier_token25] = ACTIONS(2156), - [aux_sym_cmd_identifier_token26] = ACTIONS(2156), - [aux_sym_cmd_identifier_token27] = ACTIONS(2156), - [aux_sym_cmd_identifier_token28] = ACTIONS(2156), - [aux_sym_cmd_identifier_token29] = ACTIONS(2156), - [aux_sym_cmd_identifier_token30] = ACTIONS(2156), - [aux_sym_cmd_identifier_token31] = ACTIONS(2156), - [aux_sym_cmd_identifier_token32] = ACTIONS(2156), - [aux_sym_cmd_identifier_token33] = ACTIONS(2156), - [aux_sym_cmd_identifier_token34] = ACTIONS(2156), - [aux_sym_cmd_identifier_token35] = ACTIONS(2156), - [aux_sym_cmd_identifier_token36] = ACTIONS(2156), - [anon_sym_true] = ACTIONS(2158), - [anon_sym_false] = ACTIONS(2158), - [anon_sym_null] = ACTIONS(2158), - [aux_sym_cmd_identifier_token38] = ACTIONS(2156), - [aux_sym_cmd_identifier_token39] = ACTIONS(2158), - [aux_sym_cmd_identifier_token40] = ACTIONS(2158), - [anon_sym_def] = ACTIONS(2156), - [anon_sym_export_DASHenv] = ACTIONS(2156), - [anon_sym_extern] = ACTIONS(2156), - [anon_sym_module] = ACTIONS(2156), - [anon_sym_use] = ACTIONS(2156), - [anon_sym_LPAREN] = ACTIONS(2156), - [anon_sym_DOLLAR] = ACTIONS(2158), - [anon_sym_error] = ACTIONS(2156), - [anon_sym_list] = ACTIONS(2156), - [anon_sym_DASH] = ACTIONS(2156), - [anon_sym_break] = ACTIONS(2156), - [anon_sym_continue] = ACTIONS(2156), - [anon_sym_for] = ACTIONS(2156), - [anon_sym_in] = ACTIONS(2156), - [anon_sym_loop] = ACTIONS(2156), - [anon_sym_make] = ACTIONS(2156), - [anon_sym_while] = ACTIONS(2156), - [anon_sym_do] = ACTIONS(2156), - [anon_sym_if] = ACTIONS(2156), - [anon_sym_else] = ACTIONS(2156), - [anon_sym_match] = ACTIONS(2156), - [anon_sym_RBRACE] = ACTIONS(2158), - [anon_sym_try] = ACTIONS(2156), - [anon_sym_catch] = ACTIONS(2156), - [anon_sym_return] = ACTIONS(2156), - [anon_sym_source] = ACTIONS(2156), - [anon_sym_source_DASHenv] = ACTIONS(2156), - [anon_sym_register] = ACTIONS(2156), - [anon_sym_hide] = ACTIONS(2156), - [anon_sym_hide_DASHenv] = ACTIONS(2156), - [anon_sym_overlay] = ACTIONS(2156), - [anon_sym_new] = ACTIONS(2156), - [anon_sym_as] = ACTIONS(2156), - [anon_sym_LPAREN2] = ACTIONS(1562), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2158), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2158), - [aux_sym__val_number_decimal_token1] = ACTIONS(2156), - [aux_sym__val_number_decimal_token2] = ACTIONS(2158), - [aux_sym__val_number_decimal_token3] = ACTIONS(2158), - [aux_sym__val_number_decimal_token4] = ACTIONS(2158), - [aux_sym__val_number_token1] = ACTIONS(2158), - [aux_sym__val_number_token2] = ACTIONS(2158), - [aux_sym__val_number_token3] = ACTIONS(2158), - [anon_sym_DQUOTE] = ACTIONS(2158), - [sym__str_single_quotes] = ACTIONS(2158), - [sym__str_back_ticks] = ACTIONS(2158), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2158), - [anon_sym_PLUS] = ACTIONS(2156), - [anon_sym_POUND] = ACTIONS(247), - }, - [518] = { - [sym__expr_parenthesized_immediate] = STATE(7671), - [sym_comment] = STATE(518), - [anon_sym_export] = ACTIONS(2214), - [anon_sym_alias] = ACTIONS(2214), - [anon_sym_let] = ACTIONS(2214), - [anon_sym_let_DASHenv] = ACTIONS(2214), - [anon_sym_mut] = ACTIONS(2214), - [anon_sym_const] = ACTIONS(2214), - [aux_sym_cmd_identifier_token1] = ACTIONS(2214), - [aux_sym_cmd_identifier_token2] = ACTIONS(2214), - [aux_sym_cmd_identifier_token3] = ACTIONS(2214), - [aux_sym_cmd_identifier_token4] = ACTIONS(2214), - [aux_sym_cmd_identifier_token5] = ACTIONS(2214), - [aux_sym_cmd_identifier_token6] = ACTIONS(2214), - [aux_sym_cmd_identifier_token7] = ACTIONS(2214), - [aux_sym_cmd_identifier_token8] = ACTIONS(2214), - [aux_sym_cmd_identifier_token9] = ACTIONS(2214), - [aux_sym_cmd_identifier_token10] = ACTIONS(2214), - [aux_sym_cmd_identifier_token11] = ACTIONS(2214), - [aux_sym_cmd_identifier_token12] = ACTIONS(2214), - [aux_sym_cmd_identifier_token13] = ACTIONS(2214), - [aux_sym_cmd_identifier_token14] = ACTIONS(2214), - [aux_sym_cmd_identifier_token15] = ACTIONS(2214), - [aux_sym_cmd_identifier_token16] = ACTIONS(2214), - [aux_sym_cmd_identifier_token17] = ACTIONS(2214), - [aux_sym_cmd_identifier_token18] = ACTIONS(2214), - [aux_sym_cmd_identifier_token19] = ACTIONS(2214), - [aux_sym_cmd_identifier_token20] = ACTIONS(2214), - [aux_sym_cmd_identifier_token21] = ACTIONS(2214), - [aux_sym_cmd_identifier_token22] = ACTIONS(2214), - [aux_sym_cmd_identifier_token23] = ACTIONS(2214), - [aux_sym_cmd_identifier_token24] = ACTIONS(2214), - [aux_sym_cmd_identifier_token25] = ACTIONS(2214), - [aux_sym_cmd_identifier_token26] = ACTIONS(2214), - [aux_sym_cmd_identifier_token27] = ACTIONS(2214), - [aux_sym_cmd_identifier_token28] = ACTIONS(2214), - [aux_sym_cmd_identifier_token29] = ACTIONS(2214), - [aux_sym_cmd_identifier_token30] = ACTIONS(2214), - [aux_sym_cmd_identifier_token31] = ACTIONS(2214), - [aux_sym_cmd_identifier_token32] = ACTIONS(2214), - [aux_sym_cmd_identifier_token33] = ACTIONS(2214), - [aux_sym_cmd_identifier_token34] = ACTIONS(2214), - [aux_sym_cmd_identifier_token35] = ACTIONS(2214), - [aux_sym_cmd_identifier_token36] = ACTIONS(2214), - [anon_sym_true] = ACTIONS(2216), - [anon_sym_false] = ACTIONS(2216), - [anon_sym_null] = ACTIONS(2216), - [aux_sym_cmd_identifier_token38] = ACTIONS(2214), - [aux_sym_cmd_identifier_token39] = ACTIONS(2216), - [aux_sym_cmd_identifier_token40] = ACTIONS(2216), - [anon_sym_def] = ACTIONS(2214), - [anon_sym_export_DASHenv] = ACTIONS(2214), - [anon_sym_extern] = ACTIONS(2214), - [anon_sym_module] = ACTIONS(2214), - [anon_sym_use] = ACTIONS(2214), - [anon_sym_LPAREN] = ACTIONS(2214), - [anon_sym_DOLLAR] = ACTIONS(2216), - [anon_sym_error] = ACTIONS(2214), - [anon_sym_list] = ACTIONS(2214), - [anon_sym_DASH] = ACTIONS(2214), - [anon_sym_break] = ACTIONS(2214), - [anon_sym_continue] = ACTIONS(2214), - [anon_sym_for] = ACTIONS(2214), - [anon_sym_in] = ACTIONS(2214), - [anon_sym_loop] = ACTIONS(2214), - [anon_sym_make] = ACTIONS(2214), - [anon_sym_while] = ACTIONS(2214), - [anon_sym_do] = ACTIONS(2214), - [anon_sym_if] = ACTIONS(2214), - [anon_sym_else] = ACTIONS(2214), - [anon_sym_match] = ACTIONS(2214), - [anon_sym_RBRACE] = ACTIONS(2216), - [anon_sym_try] = ACTIONS(2214), - [anon_sym_catch] = ACTIONS(2214), - [anon_sym_return] = ACTIONS(2214), - [anon_sym_source] = ACTIONS(2214), - [anon_sym_source_DASHenv] = ACTIONS(2214), - [anon_sym_register] = ACTIONS(2214), - [anon_sym_hide] = ACTIONS(2214), - [anon_sym_hide_DASHenv] = ACTIONS(2214), - [anon_sym_overlay] = ACTIONS(2214), - [anon_sym_new] = ACTIONS(2214), - [anon_sym_as] = ACTIONS(2214), - [anon_sym_LPAREN2] = ACTIONS(1562), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2216), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2216), - [aux_sym__val_number_decimal_token1] = ACTIONS(2214), - [aux_sym__val_number_decimal_token2] = ACTIONS(2216), - [aux_sym__val_number_decimal_token3] = ACTIONS(2216), - [aux_sym__val_number_decimal_token4] = ACTIONS(2216), - [aux_sym__val_number_token1] = ACTIONS(2216), - [aux_sym__val_number_token2] = ACTIONS(2216), - [aux_sym__val_number_token3] = ACTIONS(2216), - [anon_sym_DQUOTE] = ACTIONS(2216), - [sym__str_single_quotes] = ACTIONS(2216), - [sym__str_back_ticks] = ACTIONS(2216), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2216), - [anon_sym_PLUS] = ACTIONS(2214), - [anon_sym_POUND] = ACTIONS(247), + [444] = { + [sym_comment] = STATE(444), + [anon_sym_export] = ACTIONS(1715), + [anon_sym_alias] = ACTIONS(1715), + [anon_sym_let] = ACTIONS(1715), + [anon_sym_let_DASHenv] = ACTIONS(1715), + [anon_sym_mut] = ACTIONS(1715), + [anon_sym_const] = ACTIONS(1715), + [aux_sym_cmd_identifier_token1] = ACTIONS(1715), + [aux_sym_cmd_identifier_token2] = ACTIONS(1715), + [aux_sym_cmd_identifier_token3] = ACTIONS(1715), + [aux_sym_cmd_identifier_token4] = ACTIONS(1715), + [aux_sym_cmd_identifier_token5] = ACTIONS(1715), + [aux_sym_cmd_identifier_token6] = ACTIONS(1715), + [aux_sym_cmd_identifier_token7] = ACTIONS(1715), + [aux_sym_cmd_identifier_token8] = ACTIONS(1715), + [aux_sym_cmd_identifier_token9] = ACTIONS(1715), + [aux_sym_cmd_identifier_token10] = ACTIONS(1715), + [aux_sym_cmd_identifier_token11] = ACTIONS(1715), + [aux_sym_cmd_identifier_token12] = ACTIONS(1715), + [aux_sym_cmd_identifier_token13] = ACTIONS(1715), + [aux_sym_cmd_identifier_token14] = ACTIONS(1715), + [aux_sym_cmd_identifier_token15] = ACTIONS(1715), + [aux_sym_cmd_identifier_token16] = ACTIONS(1715), + [aux_sym_cmd_identifier_token17] = ACTIONS(1715), + [aux_sym_cmd_identifier_token18] = ACTIONS(1715), + [aux_sym_cmd_identifier_token19] = ACTIONS(1715), + [aux_sym_cmd_identifier_token20] = ACTIONS(1715), + [aux_sym_cmd_identifier_token21] = ACTIONS(1715), + [aux_sym_cmd_identifier_token22] = ACTIONS(1715), + [aux_sym_cmd_identifier_token23] = ACTIONS(1715), + [aux_sym_cmd_identifier_token24] = ACTIONS(1715), + [aux_sym_cmd_identifier_token25] = ACTIONS(1715), + [aux_sym_cmd_identifier_token26] = ACTIONS(1715), + [aux_sym_cmd_identifier_token27] = ACTIONS(1715), + [aux_sym_cmd_identifier_token28] = ACTIONS(1715), + [aux_sym_cmd_identifier_token29] = ACTIONS(1715), + [aux_sym_cmd_identifier_token30] = ACTIONS(1715), + [aux_sym_cmd_identifier_token31] = ACTIONS(1715), + [aux_sym_cmd_identifier_token32] = ACTIONS(1715), + [aux_sym_cmd_identifier_token33] = ACTIONS(1715), + [aux_sym_cmd_identifier_token34] = ACTIONS(1715), + [aux_sym_cmd_identifier_token35] = ACTIONS(1715), + [aux_sym_cmd_identifier_token36] = ACTIONS(1715), + [anon_sym_true] = ACTIONS(1717), + [anon_sym_false] = ACTIONS(1717), + [anon_sym_null] = ACTIONS(1717), + [aux_sym_cmd_identifier_token38] = ACTIONS(1715), + [aux_sym_cmd_identifier_token39] = ACTIONS(1717), + [aux_sym_cmd_identifier_token40] = ACTIONS(1717), + [anon_sym_def] = ACTIONS(1715), + [anon_sym_export_DASHenv] = ACTIONS(1715), + [anon_sym_extern] = ACTIONS(1715), + [anon_sym_module] = ACTIONS(1715), + [anon_sym_use] = ACTIONS(1715), + [anon_sym_LPAREN] = ACTIONS(1715), + [anon_sym_DOLLAR] = ACTIONS(1717), + [anon_sym_error] = ACTIONS(1715), + [anon_sym_list] = ACTIONS(1715), + [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_break] = ACTIONS(1715), + [anon_sym_continue] = ACTIONS(1715), + [anon_sym_for] = ACTIONS(1715), + [anon_sym_in] = ACTIONS(1715), + [anon_sym_loop] = ACTIONS(1715), + [anon_sym_make] = ACTIONS(1715), + [anon_sym_while] = ACTIONS(1715), + [anon_sym_do] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1715), + [anon_sym_else] = ACTIONS(1715), + [anon_sym_match] = ACTIONS(1715), + [anon_sym_RBRACE] = ACTIONS(1717), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_catch] = ACTIONS(1715), + [anon_sym_return] = ACTIONS(1715), + [anon_sym_source] = ACTIONS(1715), + [anon_sym_source_DASHenv] = ACTIONS(1715), + [anon_sym_register] = ACTIONS(1715), + [anon_sym_hide] = ACTIONS(1715), + [anon_sym_hide_DASHenv] = ACTIONS(1715), + [anon_sym_overlay] = ACTIONS(1715), + [anon_sym_new] = ACTIONS(1715), + [anon_sym_as] = ACTIONS(1715), + [anon_sym_LPAREN2] = ACTIONS(1717), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1717), + [anon_sym_DOT] = ACTIONS(2214), + [aux_sym__immediate_decimal_token2] = ACTIONS(2216), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1717), + [aux_sym__val_number_decimal_token1] = ACTIONS(1715), + [aux_sym__val_number_decimal_token2] = ACTIONS(1717), + [aux_sym__val_number_decimal_token3] = ACTIONS(1717), + [aux_sym__val_number_decimal_token4] = ACTIONS(1717), + [aux_sym__val_number_token1] = ACTIONS(1717), + [aux_sym__val_number_token2] = ACTIONS(1717), + [aux_sym__val_number_token3] = ACTIONS(1717), + [anon_sym_DQUOTE] = ACTIONS(1717), + [sym__str_single_quotes] = ACTIONS(1717), + [sym__str_back_ticks] = ACTIONS(1717), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1717), + [anon_sym_PLUS] = ACTIONS(1715), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1715), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1717), }, - [519] = { - [sym__expr_parenthesized_immediate] = STATE(7671), - [sym_comment] = STATE(519), + [445] = { + [sym_comment] = STATE(445), [anon_sym_export] = ACTIONS(2218), [anon_sym_alias] = ACTIONS(2218), [anon_sym_let] = ACTIONS(2218), @@ -133545,19 +127472,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(2218), [aux_sym_cmd_identifier_token35] = ACTIONS(2218), [aux_sym_cmd_identifier_token36] = ACTIONS(2218), - [anon_sym_true] = ACTIONS(2220), - [anon_sym_false] = ACTIONS(2220), - [anon_sym_null] = ACTIONS(2220), + [anon_sym_true] = ACTIONS(2218), + [anon_sym_false] = ACTIONS(2218), + [anon_sym_null] = ACTIONS(2218), [aux_sym_cmd_identifier_token38] = ACTIONS(2218), - [aux_sym_cmd_identifier_token39] = ACTIONS(2220), - [aux_sym_cmd_identifier_token40] = ACTIONS(2220), + [aux_sym_cmd_identifier_token39] = ACTIONS(2218), + [aux_sym_cmd_identifier_token40] = ACTIONS(2218), [anon_sym_def] = ACTIONS(2218), [anon_sym_export_DASHenv] = ACTIONS(2218), [anon_sym_extern] = ACTIONS(2218), [anon_sym_module] = ACTIONS(2218), [anon_sym_use] = ACTIONS(2218), [anon_sym_LPAREN] = ACTIONS(2218), - [anon_sym_DOLLAR] = ACTIONS(2220), + [anon_sym_DOLLAR] = ACTIONS(2218), [anon_sym_error] = ACTIONS(2218), [anon_sym_list] = ACTIONS(2218), [anon_sym_DASH] = ACTIONS(2218), @@ -133572,7 +127499,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(2218), [anon_sym_else] = ACTIONS(2218), [anon_sym_match] = ACTIONS(2218), - [anon_sym_RBRACE] = ACTIONS(2220), + [anon_sym_RBRACE] = ACTIONS(2218), [anon_sym_try] = ACTIONS(2218), [anon_sym_catch] = ACTIONS(2218), [anon_sym_return] = ACTIONS(2218), @@ -133584,1944 +127511,1785 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(2218), [anon_sym_new] = ACTIONS(2218), [anon_sym_as] = ACTIONS(2218), - [anon_sym_LPAREN2] = ACTIONS(1562), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2220), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2220), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2218), + [anon_sym_DOT_DOT2] = ACTIONS(2218), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2220), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2220), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2218), [aux_sym__val_number_decimal_token1] = ACTIONS(2218), - [aux_sym__val_number_decimal_token2] = ACTIONS(2220), - [aux_sym__val_number_decimal_token3] = ACTIONS(2220), - [aux_sym__val_number_decimal_token4] = ACTIONS(2220), - [aux_sym__val_number_token1] = ACTIONS(2220), - [aux_sym__val_number_token2] = ACTIONS(2220), - [aux_sym__val_number_token3] = ACTIONS(2220), - [anon_sym_DQUOTE] = ACTIONS(2220), - [sym__str_single_quotes] = ACTIONS(2220), - [sym__str_back_ticks] = ACTIONS(2220), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2220), + [aux_sym__val_number_decimal_token2] = ACTIONS(2218), + [aux_sym__val_number_decimal_token3] = ACTIONS(2218), + [aux_sym__val_number_decimal_token4] = ACTIONS(2218), + [aux_sym__val_number_token1] = ACTIONS(2218), + [aux_sym__val_number_token2] = ACTIONS(2218), + [aux_sym__val_number_token3] = ACTIONS(2218), + [anon_sym_DQUOTE] = ACTIONS(2218), + [sym__str_single_quotes] = ACTIONS(2218), + [sym__str_back_ticks] = ACTIONS(2218), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2218), + [sym__entry_separator] = ACTIONS(2220), [anon_sym_PLUS] = ACTIONS(2218), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2220), }, - [520] = { - [sym_comment] = STATE(520), - [aux_sym__multiple_types_repeat1] = STATE(504), - [anon_sym_export] = ACTIONS(2332), - [anon_sym_alias] = ACTIONS(2332), - [anon_sym_let] = ACTIONS(2332), - [anon_sym_let_DASHenv] = ACTIONS(2332), - [anon_sym_mut] = ACTIONS(2332), - [anon_sym_const] = ACTIONS(2332), - [aux_sym_cmd_identifier_token1] = ACTIONS(2332), - [aux_sym_cmd_identifier_token2] = ACTIONS(2332), - [aux_sym_cmd_identifier_token3] = ACTIONS(2332), - [aux_sym_cmd_identifier_token4] = ACTIONS(2332), - [aux_sym_cmd_identifier_token5] = ACTIONS(2332), - [aux_sym_cmd_identifier_token6] = ACTIONS(2332), - [aux_sym_cmd_identifier_token7] = ACTIONS(2332), - [aux_sym_cmd_identifier_token8] = ACTIONS(2332), - [aux_sym_cmd_identifier_token9] = ACTIONS(2332), - [aux_sym_cmd_identifier_token10] = ACTIONS(2332), - [aux_sym_cmd_identifier_token11] = ACTIONS(2332), - [aux_sym_cmd_identifier_token12] = ACTIONS(2332), - [aux_sym_cmd_identifier_token13] = ACTIONS(2332), - [aux_sym_cmd_identifier_token14] = ACTIONS(2332), - [aux_sym_cmd_identifier_token15] = ACTIONS(2332), - [aux_sym_cmd_identifier_token16] = ACTIONS(2332), - [aux_sym_cmd_identifier_token17] = ACTIONS(2332), - [aux_sym_cmd_identifier_token18] = ACTIONS(2332), - [aux_sym_cmd_identifier_token19] = ACTIONS(2332), - [aux_sym_cmd_identifier_token20] = ACTIONS(2332), - [aux_sym_cmd_identifier_token21] = ACTIONS(2332), - [aux_sym_cmd_identifier_token22] = ACTIONS(2332), - [aux_sym_cmd_identifier_token23] = ACTIONS(2332), - [aux_sym_cmd_identifier_token24] = ACTIONS(2332), - [aux_sym_cmd_identifier_token25] = ACTIONS(2332), - [aux_sym_cmd_identifier_token26] = ACTIONS(2332), - [aux_sym_cmd_identifier_token27] = ACTIONS(2332), - [aux_sym_cmd_identifier_token28] = ACTIONS(2332), - [aux_sym_cmd_identifier_token29] = ACTIONS(2332), - [aux_sym_cmd_identifier_token30] = ACTIONS(2332), - [aux_sym_cmd_identifier_token31] = ACTIONS(2332), - [aux_sym_cmd_identifier_token32] = ACTIONS(2332), - [aux_sym_cmd_identifier_token33] = ACTIONS(2332), - [aux_sym_cmd_identifier_token34] = ACTIONS(2332), - [aux_sym_cmd_identifier_token35] = ACTIONS(2332), - [aux_sym_cmd_identifier_token36] = ACTIONS(2332), - [anon_sym_true] = ACTIONS(2332), - [anon_sym_false] = ACTIONS(2332), - [anon_sym_null] = ACTIONS(2332), - [aux_sym_cmd_identifier_token38] = ACTIONS(2332), - [aux_sym_cmd_identifier_token39] = ACTIONS(2332), - [aux_sym_cmd_identifier_token40] = ACTIONS(2332), - [anon_sym_def] = ACTIONS(2332), - [anon_sym_export_DASHenv] = ACTIONS(2332), - [anon_sym_extern] = ACTIONS(2332), - [anon_sym_module] = ACTIONS(2332), - [anon_sym_use] = ACTIONS(2332), - [anon_sym_LPAREN] = ACTIONS(2332), - [anon_sym_DOLLAR] = ACTIONS(2332), - [anon_sym_error] = ACTIONS(2332), - [anon_sym_list] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2332), - [anon_sym_break] = ACTIONS(2332), - [anon_sym_continue] = ACTIONS(2332), - [anon_sym_for] = ACTIONS(2332), - [anon_sym_in] = ACTIONS(2332), - [anon_sym_loop] = ACTIONS(2332), - [anon_sym_make] = ACTIONS(2332), - [anon_sym_while] = ACTIONS(2332), - [anon_sym_do] = ACTIONS(2332), - [anon_sym_if] = ACTIONS(2332), - [anon_sym_else] = ACTIONS(2332), - [anon_sym_match] = ACTIONS(2332), - [anon_sym_RBRACE] = ACTIONS(2356), - [anon_sym_try] = ACTIONS(2332), - [anon_sym_catch] = ACTIONS(2332), - [anon_sym_return] = ACTIONS(2332), - [anon_sym_source] = ACTIONS(2332), - [anon_sym_source_DASHenv] = ACTIONS(2332), - [anon_sym_register] = ACTIONS(2332), - [anon_sym_hide] = ACTIONS(2332), - [anon_sym_hide_DASHenv] = ACTIONS(2332), - [anon_sym_overlay] = ACTIONS(2332), - [anon_sym_new] = ACTIONS(2332), - [anon_sym_as] = ACTIONS(2332), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2332), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2332), - [aux_sym__val_number_decimal_token1] = ACTIONS(2332), - [aux_sym__val_number_decimal_token2] = ACTIONS(2332), - [aux_sym__val_number_decimal_token3] = ACTIONS(2332), - [aux_sym__val_number_decimal_token4] = ACTIONS(2332), - [aux_sym__val_number_token1] = ACTIONS(2332), - [aux_sym__val_number_token2] = ACTIONS(2332), - [aux_sym__val_number_token3] = ACTIONS(2332), - [anon_sym_DQUOTE] = ACTIONS(2332), - [sym__str_single_quotes] = ACTIONS(2332), - [sym__str_back_ticks] = ACTIONS(2332), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2332), - [sym__entry_separator] = ACTIONS(2336), - [anon_sym_PLUS] = ACTIONS(2332), + [446] = { + [sym_comment] = STATE(446), + [anon_sym_export] = ACTIONS(2222), + [anon_sym_alias] = ACTIONS(2222), + [anon_sym_let] = ACTIONS(2222), + [anon_sym_let_DASHenv] = ACTIONS(2222), + [anon_sym_mut] = ACTIONS(2222), + [anon_sym_const] = ACTIONS(2222), + [aux_sym_cmd_identifier_token1] = ACTIONS(2222), + [aux_sym_cmd_identifier_token2] = ACTIONS(2222), + [aux_sym_cmd_identifier_token3] = ACTIONS(2222), + [aux_sym_cmd_identifier_token4] = ACTIONS(2222), + [aux_sym_cmd_identifier_token5] = ACTIONS(2222), + [aux_sym_cmd_identifier_token6] = ACTIONS(2222), + [aux_sym_cmd_identifier_token7] = ACTIONS(2222), + [aux_sym_cmd_identifier_token8] = ACTIONS(2222), + [aux_sym_cmd_identifier_token9] = ACTIONS(2222), + [aux_sym_cmd_identifier_token10] = ACTIONS(2222), + [aux_sym_cmd_identifier_token11] = ACTIONS(2222), + [aux_sym_cmd_identifier_token12] = ACTIONS(2222), + [aux_sym_cmd_identifier_token13] = ACTIONS(2222), + [aux_sym_cmd_identifier_token14] = ACTIONS(2222), + [aux_sym_cmd_identifier_token15] = ACTIONS(2222), + [aux_sym_cmd_identifier_token16] = ACTIONS(2222), + [aux_sym_cmd_identifier_token17] = ACTIONS(2222), + [aux_sym_cmd_identifier_token18] = ACTIONS(2222), + [aux_sym_cmd_identifier_token19] = ACTIONS(2222), + [aux_sym_cmd_identifier_token20] = ACTIONS(2222), + [aux_sym_cmd_identifier_token21] = ACTIONS(2222), + [aux_sym_cmd_identifier_token22] = ACTIONS(2222), + [aux_sym_cmd_identifier_token23] = ACTIONS(2222), + [aux_sym_cmd_identifier_token24] = ACTIONS(2222), + [aux_sym_cmd_identifier_token25] = ACTIONS(2222), + [aux_sym_cmd_identifier_token26] = ACTIONS(2222), + [aux_sym_cmd_identifier_token27] = ACTIONS(2222), + [aux_sym_cmd_identifier_token28] = ACTIONS(2222), + [aux_sym_cmd_identifier_token29] = ACTIONS(2222), + [aux_sym_cmd_identifier_token30] = ACTIONS(2222), + [aux_sym_cmd_identifier_token31] = ACTIONS(2222), + [aux_sym_cmd_identifier_token32] = ACTIONS(2222), + [aux_sym_cmd_identifier_token33] = ACTIONS(2222), + [aux_sym_cmd_identifier_token34] = ACTIONS(2222), + [aux_sym_cmd_identifier_token35] = ACTIONS(2222), + [aux_sym_cmd_identifier_token36] = ACTIONS(2222), + [anon_sym_true] = ACTIONS(2222), + [anon_sym_false] = ACTIONS(2222), + [anon_sym_null] = ACTIONS(2222), + [aux_sym_cmd_identifier_token38] = ACTIONS(2222), + [aux_sym_cmd_identifier_token39] = ACTIONS(2222), + [aux_sym_cmd_identifier_token40] = ACTIONS(2222), + [anon_sym_def] = ACTIONS(2222), + [anon_sym_export_DASHenv] = ACTIONS(2222), + [anon_sym_extern] = ACTIONS(2222), + [anon_sym_module] = ACTIONS(2222), + [anon_sym_use] = ACTIONS(2222), + [anon_sym_LPAREN] = ACTIONS(2222), + [anon_sym_DOLLAR] = ACTIONS(2222), + [anon_sym_error] = ACTIONS(2222), + [anon_sym_list] = ACTIONS(2222), + [anon_sym_DASH] = ACTIONS(2222), + [anon_sym_break] = ACTIONS(2222), + [anon_sym_continue] = ACTIONS(2222), + [anon_sym_for] = ACTIONS(2222), + [anon_sym_in] = ACTIONS(2222), + [anon_sym_loop] = ACTIONS(2222), + [anon_sym_make] = ACTIONS(2222), + [anon_sym_while] = ACTIONS(2222), + [anon_sym_do] = ACTIONS(2222), + [anon_sym_if] = ACTIONS(2222), + [anon_sym_else] = ACTIONS(2222), + [anon_sym_match] = ACTIONS(2222), + [anon_sym_RBRACE] = ACTIONS(2222), + [anon_sym_try] = ACTIONS(2222), + [anon_sym_catch] = ACTIONS(2222), + [anon_sym_return] = ACTIONS(2222), + [anon_sym_source] = ACTIONS(2222), + [anon_sym_source_DASHenv] = ACTIONS(2222), + [anon_sym_register] = ACTIONS(2222), + [anon_sym_hide] = ACTIONS(2222), + [anon_sym_hide_DASHenv] = ACTIONS(2222), + [anon_sym_overlay] = ACTIONS(2222), + [anon_sym_new] = ACTIONS(2222), + [anon_sym_as] = ACTIONS(2222), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2222), + [anon_sym_DOT_DOT2] = ACTIONS(2224), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2226), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2226), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2222), + [aux_sym__val_number_decimal_token1] = ACTIONS(2222), + [aux_sym__val_number_decimal_token2] = ACTIONS(2222), + [aux_sym__val_number_decimal_token3] = ACTIONS(2222), + [aux_sym__val_number_decimal_token4] = ACTIONS(2222), + [aux_sym__val_number_token1] = ACTIONS(2222), + [aux_sym__val_number_token2] = ACTIONS(2222), + [aux_sym__val_number_token3] = ACTIONS(2222), + [anon_sym_DQUOTE] = ACTIONS(2222), + [sym__str_single_quotes] = ACTIONS(2222), + [sym__str_back_ticks] = ACTIONS(2222), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2222), + [sym__entry_separator] = ACTIONS(2228), + [anon_sym_PLUS] = ACTIONS(2222), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2228), }, - [521] = { - [sym_comment] = STATE(521), - [anon_sym_export] = ACTIONS(1070), - [anon_sym_alias] = ACTIONS(1070), - [anon_sym_let] = ACTIONS(1070), - [anon_sym_let_DASHenv] = ACTIONS(1070), - [anon_sym_mut] = ACTIONS(1070), - [anon_sym_const] = ACTIONS(1070), - [aux_sym_cmd_identifier_token1] = ACTIONS(1070), - [aux_sym_cmd_identifier_token2] = ACTIONS(1070), - [aux_sym_cmd_identifier_token3] = ACTIONS(1070), - [aux_sym_cmd_identifier_token4] = ACTIONS(1070), - [aux_sym_cmd_identifier_token5] = ACTIONS(1070), - [aux_sym_cmd_identifier_token6] = ACTIONS(1070), - [aux_sym_cmd_identifier_token7] = ACTIONS(1070), - [aux_sym_cmd_identifier_token8] = ACTIONS(1070), - [aux_sym_cmd_identifier_token9] = ACTIONS(1070), - [aux_sym_cmd_identifier_token10] = ACTIONS(1070), - [aux_sym_cmd_identifier_token11] = ACTIONS(1070), - [aux_sym_cmd_identifier_token12] = ACTIONS(1070), - [aux_sym_cmd_identifier_token13] = ACTIONS(1070), - [aux_sym_cmd_identifier_token14] = ACTIONS(1070), - [aux_sym_cmd_identifier_token15] = ACTIONS(1070), - [aux_sym_cmd_identifier_token16] = ACTIONS(1070), - [aux_sym_cmd_identifier_token17] = ACTIONS(1070), - [aux_sym_cmd_identifier_token18] = ACTIONS(1070), - [aux_sym_cmd_identifier_token19] = ACTIONS(1070), - [aux_sym_cmd_identifier_token20] = ACTIONS(1070), - [aux_sym_cmd_identifier_token21] = ACTIONS(1070), - [aux_sym_cmd_identifier_token22] = ACTIONS(1070), - [aux_sym_cmd_identifier_token23] = ACTIONS(1070), - [aux_sym_cmd_identifier_token24] = ACTIONS(1070), - [aux_sym_cmd_identifier_token25] = ACTIONS(1070), - [aux_sym_cmd_identifier_token26] = ACTIONS(1070), - [aux_sym_cmd_identifier_token27] = ACTIONS(1070), - [aux_sym_cmd_identifier_token28] = ACTIONS(1070), - [aux_sym_cmd_identifier_token29] = ACTIONS(1070), - [aux_sym_cmd_identifier_token30] = ACTIONS(1070), - [aux_sym_cmd_identifier_token31] = ACTIONS(1070), - [aux_sym_cmd_identifier_token32] = ACTIONS(1070), - [aux_sym_cmd_identifier_token33] = ACTIONS(1070), - [aux_sym_cmd_identifier_token34] = ACTIONS(1070), - [aux_sym_cmd_identifier_token35] = ACTIONS(1070), - [aux_sym_cmd_identifier_token36] = ACTIONS(1070), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [anon_sym_null] = ACTIONS(1070), - [aux_sym_cmd_identifier_token38] = ACTIONS(1070), - [aux_sym_cmd_identifier_token39] = ACTIONS(1070), - [aux_sym_cmd_identifier_token40] = ACTIONS(1070), - [anon_sym_def] = ACTIONS(1070), - [anon_sym_export_DASHenv] = ACTIONS(1070), - [anon_sym_extern] = ACTIONS(1070), - [anon_sym_module] = ACTIONS(1070), - [anon_sym_use] = ACTIONS(1070), - [anon_sym_RBRACK] = ACTIONS(1070), - [anon_sym_LPAREN] = ACTIONS(1070), - [anon_sym_DOLLAR] = ACTIONS(1070), - [anon_sym_error] = ACTIONS(1070), - [anon_sym_list] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_break] = ACTIONS(1070), - [anon_sym_continue] = ACTIONS(1070), - [anon_sym_for] = ACTIONS(1070), - [anon_sym_in] = ACTIONS(1070), - [anon_sym_loop] = ACTIONS(1070), - [anon_sym_make] = ACTIONS(1070), - [anon_sym_while] = ACTIONS(1070), - [anon_sym_do] = ACTIONS(1070), - [anon_sym_if] = ACTIONS(1070), - [anon_sym_else] = ACTIONS(1070), - [anon_sym_match] = ACTIONS(1070), - [anon_sym_RBRACE] = ACTIONS(1070), - [anon_sym_try] = ACTIONS(1070), - [anon_sym_catch] = ACTIONS(1070), - [anon_sym_return] = ACTIONS(1070), - [anon_sym_source] = ACTIONS(1070), - [anon_sym_source_DASHenv] = ACTIONS(1070), - [anon_sym_register] = ACTIONS(1070), - [anon_sym_hide] = ACTIONS(1070), - [anon_sym_hide_DASHenv] = ACTIONS(1070), - [anon_sym_overlay] = ACTIONS(1070), - [anon_sym_new] = ACTIONS(1070), - [anon_sym_as] = ACTIONS(1070), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1070), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1070), - [aux_sym__val_number_decimal_token1] = ACTIONS(1070), - [aux_sym__val_number_decimal_token2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1070), - [aux_sym__val_number_decimal_token4] = ACTIONS(1070), - [aux_sym__val_number_token1] = ACTIONS(1070), - [aux_sym__val_number_token2] = ACTIONS(1070), - [aux_sym__val_number_token3] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1070), - [sym__str_single_quotes] = ACTIONS(1070), - [sym__str_back_ticks] = ACTIONS(1070), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1070), - [sym__entry_separator] = ACTIONS(1072), - [anon_sym_PLUS] = ACTIONS(1070), - [anon_sym_POUND] = ACTIONS(3), - }, - [522] = { - [sym_comment] = STATE(522), - [anon_sym_export] = ACTIONS(2358), - [anon_sym_alias] = ACTIONS(2358), - [anon_sym_let] = ACTIONS(2358), - [anon_sym_let_DASHenv] = ACTIONS(2358), - [anon_sym_mut] = ACTIONS(2358), - [anon_sym_const] = ACTIONS(2358), - [aux_sym_cmd_identifier_token1] = ACTIONS(2358), - [aux_sym_cmd_identifier_token2] = ACTIONS(2358), - [aux_sym_cmd_identifier_token3] = ACTIONS(2358), - [aux_sym_cmd_identifier_token4] = ACTIONS(2358), - [aux_sym_cmd_identifier_token5] = ACTIONS(2358), - [aux_sym_cmd_identifier_token6] = ACTIONS(2358), - [aux_sym_cmd_identifier_token7] = ACTIONS(2358), - [aux_sym_cmd_identifier_token8] = ACTIONS(2358), - [aux_sym_cmd_identifier_token9] = ACTIONS(2358), - [aux_sym_cmd_identifier_token10] = ACTIONS(2358), - [aux_sym_cmd_identifier_token11] = ACTIONS(2358), - [aux_sym_cmd_identifier_token12] = ACTIONS(2358), - [aux_sym_cmd_identifier_token13] = ACTIONS(2358), - [aux_sym_cmd_identifier_token14] = ACTIONS(2358), - [aux_sym_cmd_identifier_token15] = ACTIONS(2358), - [aux_sym_cmd_identifier_token16] = ACTIONS(2358), - [aux_sym_cmd_identifier_token17] = ACTIONS(2358), - [aux_sym_cmd_identifier_token18] = ACTIONS(2358), - [aux_sym_cmd_identifier_token19] = ACTIONS(2358), - [aux_sym_cmd_identifier_token20] = ACTIONS(2358), - [aux_sym_cmd_identifier_token21] = ACTIONS(2358), - [aux_sym_cmd_identifier_token22] = ACTIONS(2358), - [aux_sym_cmd_identifier_token23] = ACTIONS(2358), - [aux_sym_cmd_identifier_token24] = ACTIONS(2358), - [aux_sym_cmd_identifier_token25] = ACTIONS(2358), - [aux_sym_cmd_identifier_token26] = ACTIONS(2358), - [aux_sym_cmd_identifier_token27] = ACTIONS(2358), - [aux_sym_cmd_identifier_token28] = ACTIONS(2358), - [aux_sym_cmd_identifier_token29] = ACTIONS(2358), - [aux_sym_cmd_identifier_token30] = ACTIONS(2358), - [aux_sym_cmd_identifier_token31] = ACTIONS(2358), - [aux_sym_cmd_identifier_token32] = ACTIONS(2358), - [aux_sym_cmd_identifier_token33] = ACTIONS(2358), - [aux_sym_cmd_identifier_token34] = ACTIONS(2358), - [aux_sym_cmd_identifier_token35] = ACTIONS(2358), - [aux_sym_cmd_identifier_token36] = ACTIONS(2358), - [anon_sym_true] = ACTIONS(2358), - [anon_sym_false] = ACTIONS(2358), - [anon_sym_null] = ACTIONS(2358), - [aux_sym_cmd_identifier_token38] = ACTIONS(2358), - [aux_sym_cmd_identifier_token39] = ACTIONS(2358), - [aux_sym_cmd_identifier_token40] = ACTIONS(2358), - [anon_sym_def] = ACTIONS(2358), - [anon_sym_export_DASHenv] = ACTIONS(2358), - [anon_sym_extern] = ACTIONS(2358), - [anon_sym_module] = ACTIONS(2358), - [anon_sym_use] = ACTIONS(2358), - [anon_sym_RBRACK] = ACTIONS(2358), - [anon_sym_LPAREN] = ACTIONS(2358), - [anon_sym_DOLLAR] = ACTIONS(2358), - [anon_sym_error] = ACTIONS(2358), - [anon_sym_list] = ACTIONS(2358), - [anon_sym_DASH] = ACTIONS(2358), - [anon_sym_break] = ACTIONS(2358), - [anon_sym_continue] = ACTIONS(2358), - [anon_sym_for] = ACTIONS(2358), - [anon_sym_in] = ACTIONS(2358), - [anon_sym_loop] = ACTIONS(2358), - [anon_sym_make] = ACTIONS(2358), - [anon_sym_while] = ACTIONS(2358), - [anon_sym_do] = ACTIONS(2358), - [anon_sym_if] = ACTIONS(2358), - [anon_sym_else] = ACTIONS(2358), - [anon_sym_match] = ACTIONS(2358), - [anon_sym_RBRACE] = ACTIONS(2358), - [anon_sym_try] = ACTIONS(2358), - [anon_sym_catch] = ACTIONS(2358), - [anon_sym_return] = ACTIONS(2358), - [anon_sym_source] = ACTIONS(2358), - [anon_sym_source_DASHenv] = ACTIONS(2358), - [anon_sym_register] = ACTIONS(2358), - [anon_sym_hide] = ACTIONS(2358), - [anon_sym_hide_DASHenv] = ACTIONS(2358), - [anon_sym_overlay] = ACTIONS(2358), - [anon_sym_new] = ACTIONS(2358), - [anon_sym_as] = ACTIONS(2358), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2358), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2358), - [aux_sym__val_number_decimal_token1] = ACTIONS(2358), - [aux_sym__val_number_decimal_token2] = ACTIONS(2358), - [aux_sym__val_number_decimal_token3] = ACTIONS(2358), - [aux_sym__val_number_decimal_token4] = ACTIONS(2358), - [aux_sym__val_number_token1] = ACTIONS(2358), - [aux_sym__val_number_token2] = ACTIONS(2358), - [aux_sym__val_number_token3] = ACTIONS(2358), - [anon_sym_DQUOTE] = ACTIONS(2358), - [sym__str_single_quotes] = ACTIONS(2358), - [sym__str_back_ticks] = ACTIONS(2358), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2358), - [sym__entry_separator] = ACTIONS(2360), - [anon_sym_PLUS] = ACTIONS(2358), + [447] = { + [sym_comment] = STATE(447), + [anon_sym_export] = ACTIONS(2230), + [anon_sym_alias] = ACTIONS(2230), + [anon_sym_let] = ACTIONS(2230), + [anon_sym_let_DASHenv] = ACTIONS(2230), + [anon_sym_mut] = ACTIONS(2230), + [anon_sym_const] = ACTIONS(2230), + [aux_sym_cmd_identifier_token1] = ACTIONS(2230), + [aux_sym_cmd_identifier_token2] = ACTIONS(2230), + [aux_sym_cmd_identifier_token3] = ACTIONS(2230), + [aux_sym_cmd_identifier_token4] = ACTIONS(2230), + [aux_sym_cmd_identifier_token5] = ACTIONS(2230), + [aux_sym_cmd_identifier_token6] = ACTIONS(2230), + [aux_sym_cmd_identifier_token7] = ACTIONS(2230), + [aux_sym_cmd_identifier_token8] = ACTIONS(2230), + [aux_sym_cmd_identifier_token9] = ACTIONS(2230), + [aux_sym_cmd_identifier_token10] = ACTIONS(2230), + [aux_sym_cmd_identifier_token11] = ACTIONS(2230), + [aux_sym_cmd_identifier_token12] = ACTIONS(2230), + [aux_sym_cmd_identifier_token13] = ACTIONS(2230), + [aux_sym_cmd_identifier_token14] = ACTIONS(2230), + [aux_sym_cmd_identifier_token15] = ACTIONS(2230), + [aux_sym_cmd_identifier_token16] = ACTIONS(2230), + [aux_sym_cmd_identifier_token17] = ACTIONS(2230), + [aux_sym_cmd_identifier_token18] = ACTIONS(2230), + [aux_sym_cmd_identifier_token19] = ACTIONS(2230), + [aux_sym_cmd_identifier_token20] = ACTIONS(2230), + [aux_sym_cmd_identifier_token21] = ACTIONS(2230), + [aux_sym_cmd_identifier_token22] = ACTIONS(2230), + [aux_sym_cmd_identifier_token23] = ACTIONS(2230), + [aux_sym_cmd_identifier_token24] = ACTIONS(2230), + [aux_sym_cmd_identifier_token25] = ACTIONS(2230), + [aux_sym_cmd_identifier_token26] = ACTIONS(2230), + [aux_sym_cmd_identifier_token27] = ACTIONS(2230), + [aux_sym_cmd_identifier_token28] = ACTIONS(2230), + [aux_sym_cmd_identifier_token29] = ACTIONS(2230), + [aux_sym_cmd_identifier_token30] = ACTIONS(2230), + [aux_sym_cmd_identifier_token31] = ACTIONS(2230), + [aux_sym_cmd_identifier_token32] = ACTIONS(2230), + [aux_sym_cmd_identifier_token33] = ACTIONS(2230), + [aux_sym_cmd_identifier_token34] = ACTIONS(2230), + [aux_sym_cmd_identifier_token35] = ACTIONS(2230), + [aux_sym_cmd_identifier_token36] = ACTIONS(2230), + [anon_sym_true] = ACTIONS(2230), + [anon_sym_false] = ACTIONS(2230), + [anon_sym_null] = ACTIONS(2230), + [aux_sym_cmd_identifier_token38] = ACTIONS(2230), + [aux_sym_cmd_identifier_token39] = ACTIONS(2230), + [aux_sym_cmd_identifier_token40] = ACTIONS(2230), + [anon_sym_def] = ACTIONS(2230), + [anon_sym_export_DASHenv] = ACTIONS(2230), + [anon_sym_extern] = ACTIONS(2230), + [anon_sym_module] = ACTIONS(2230), + [anon_sym_use] = ACTIONS(2230), + [anon_sym_LPAREN] = ACTIONS(2230), + [anon_sym_DOLLAR] = ACTIONS(2230), + [anon_sym_error] = ACTIONS(2230), + [anon_sym_list] = ACTIONS(2230), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_break] = ACTIONS(2230), + [anon_sym_continue] = ACTIONS(2230), + [anon_sym_for] = ACTIONS(2230), + [anon_sym_in] = ACTIONS(2230), + [anon_sym_loop] = ACTIONS(2230), + [anon_sym_make] = ACTIONS(2230), + [anon_sym_while] = ACTIONS(2230), + [anon_sym_do] = ACTIONS(2230), + [anon_sym_if] = ACTIONS(2230), + [anon_sym_else] = ACTIONS(2230), + [anon_sym_match] = ACTIONS(2230), + [anon_sym_RBRACE] = ACTIONS(2230), + [anon_sym_try] = ACTIONS(2230), + [anon_sym_catch] = ACTIONS(2230), + [anon_sym_return] = ACTIONS(2230), + [anon_sym_source] = ACTIONS(2230), + [anon_sym_source_DASHenv] = ACTIONS(2230), + [anon_sym_register] = ACTIONS(2230), + [anon_sym_hide] = ACTIONS(2230), + [anon_sym_hide_DASHenv] = ACTIONS(2230), + [anon_sym_overlay] = ACTIONS(2230), + [anon_sym_new] = ACTIONS(2230), + [anon_sym_as] = ACTIONS(2230), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2230), + [anon_sym_DOT_DOT2] = ACTIONS(2230), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2232), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2232), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2230), + [aux_sym__val_number_decimal_token1] = ACTIONS(2230), + [aux_sym__val_number_decimal_token2] = ACTIONS(2230), + [aux_sym__val_number_decimal_token3] = ACTIONS(2230), + [aux_sym__val_number_decimal_token4] = ACTIONS(2230), + [aux_sym__val_number_token1] = ACTIONS(2230), + [aux_sym__val_number_token2] = ACTIONS(2230), + [aux_sym__val_number_token3] = ACTIONS(2230), + [anon_sym_DQUOTE] = ACTIONS(2230), + [sym__str_single_quotes] = ACTIONS(2230), + [sym__str_back_ticks] = ACTIONS(2230), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2230), + [sym__entry_separator] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2230), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2232), }, - [523] = { - [sym_comment] = STATE(523), - [anon_sym_export] = ACTIONS(1822), - [anon_sym_alias] = ACTIONS(1822), - [anon_sym_let] = ACTIONS(1822), - [anon_sym_let_DASHenv] = ACTIONS(1822), - [anon_sym_mut] = ACTIONS(1822), - [anon_sym_const] = ACTIONS(1822), - [aux_sym_cmd_identifier_token1] = ACTIONS(1822), - [aux_sym_cmd_identifier_token2] = ACTIONS(1822), - [aux_sym_cmd_identifier_token3] = ACTIONS(1822), - [aux_sym_cmd_identifier_token4] = ACTIONS(1822), - [aux_sym_cmd_identifier_token5] = ACTIONS(1822), - [aux_sym_cmd_identifier_token6] = ACTIONS(1822), - [aux_sym_cmd_identifier_token7] = ACTIONS(1822), - [aux_sym_cmd_identifier_token8] = ACTIONS(1822), - [aux_sym_cmd_identifier_token9] = ACTIONS(1822), - [aux_sym_cmd_identifier_token10] = ACTIONS(1822), - [aux_sym_cmd_identifier_token11] = ACTIONS(1822), - [aux_sym_cmd_identifier_token12] = ACTIONS(1822), - [aux_sym_cmd_identifier_token13] = ACTIONS(1822), - [aux_sym_cmd_identifier_token14] = ACTIONS(1822), - [aux_sym_cmd_identifier_token15] = ACTIONS(1822), - [aux_sym_cmd_identifier_token16] = ACTIONS(1822), - [aux_sym_cmd_identifier_token17] = ACTIONS(1822), - [aux_sym_cmd_identifier_token18] = ACTIONS(1822), - [aux_sym_cmd_identifier_token19] = ACTIONS(1822), - [aux_sym_cmd_identifier_token20] = ACTIONS(1822), - [aux_sym_cmd_identifier_token21] = ACTIONS(1822), - [aux_sym_cmd_identifier_token22] = ACTIONS(1822), - [aux_sym_cmd_identifier_token23] = ACTIONS(1822), - [aux_sym_cmd_identifier_token24] = ACTIONS(1822), - [aux_sym_cmd_identifier_token25] = ACTIONS(1822), - [aux_sym_cmd_identifier_token26] = ACTIONS(1822), - [aux_sym_cmd_identifier_token27] = ACTIONS(1822), - [aux_sym_cmd_identifier_token28] = ACTIONS(1822), - [aux_sym_cmd_identifier_token29] = ACTIONS(1822), - [aux_sym_cmd_identifier_token30] = ACTIONS(1822), - [aux_sym_cmd_identifier_token31] = ACTIONS(1822), - [aux_sym_cmd_identifier_token32] = ACTIONS(1822), - [aux_sym_cmd_identifier_token33] = ACTIONS(1822), - [aux_sym_cmd_identifier_token34] = ACTIONS(1822), - [aux_sym_cmd_identifier_token35] = ACTIONS(1822), - [aux_sym_cmd_identifier_token36] = ACTIONS(1822), - [anon_sym_true] = ACTIONS(1822), - [anon_sym_false] = ACTIONS(1822), - [anon_sym_null] = ACTIONS(1822), - [aux_sym_cmd_identifier_token38] = ACTIONS(1822), - [aux_sym_cmd_identifier_token39] = ACTIONS(1822), - [aux_sym_cmd_identifier_token40] = ACTIONS(1822), - [anon_sym_def] = ACTIONS(1822), - [anon_sym_export_DASHenv] = ACTIONS(1822), - [anon_sym_extern] = ACTIONS(1822), - [anon_sym_module] = ACTIONS(1822), - [anon_sym_use] = ACTIONS(1822), - [anon_sym_RBRACK] = ACTIONS(1822), - [anon_sym_LPAREN] = ACTIONS(1822), - [anon_sym_DOLLAR] = ACTIONS(1822), - [anon_sym_error] = ACTIONS(1822), - [anon_sym_list] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_break] = ACTIONS(1822), - [anon_sym_continue] = ACTIONS(1822), - [anon_sym_for] = ACTIONS(1822), - [anon_sym_in] = ACTIONS(1822), - [anon_sym_loop] = ACTIONS(1822), - [anon_sym_make] = ACTIONS(1822), - [anon_sym_while] = ACTIONS(1822), - [anon_sym_do] = ACTIONS(1822), - [anon_sym_if] = ACTIONS(1822), - [anon_sym_else] = ACTIONS(1822), - [anon_sym_match] = ACTIONS(1822), - [anon_sym_RBRACE] = ACTIONS(1822), - [anon_sym_try] = ACTIONS(1822), - [anon_sym_catch] = ACTIONS(1822), - [anon_sym_return] = ACTIONS(1822), - [anon_sym_source] = ACTIONS(1822), - [anon_sym_source_DASHenv] = ACTIONS(1822), - [anon_sym_register] = ACTIONS(1822), - [anon_sym_hide] = ACTIONS(1822), - [anon_sym_hide_DASHenv] = ACTIONS(1822), - [anon_sym_overlay] = ACTIONS(1822), - [anon_sym_new] = ACTIONS(1822), - [anon_sym_as] = ACTIONS(1822), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1822), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1822), - [aux_sym__val_number_decimal_token1] = ACTIONS(1822), - [aux_sym__val_number_decimal_token2] = ACTIONS(1822), - [aux_sym__val_number_decimal_token3] = ACTIONS(1822), - [aux_sym__val_number_decimal_token4] = ACTIONS(1822), - [aux_sym__val_number_token1] = ACTIONS(1822), - [aux_sym__val_number_token2] = ACTIONS(1822), - [aux_sym__val_number_token3] = ACTIONS(1822), - [anon_sym_DQUOTE] = ACTIONS(1822), - [sym__str_single_quotes] = ACTIONS(1822), - [sym__str_back_ticks] = ACTIONS(1822), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1822), - [sym__entry_separator] = ACTIONS(1826), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_POUND] = ACTIONS(3), + [448] = { + [sym_cell_path] = STATE(670), + [sym_path] = STATE(631), + [sym_comment] = STATE(448), + [aux_sym_cell_path_repeat1] = STATE(456), + [anon_sym_export] = ACTIONS(1929), + [anon_sym_alias] = ACTIONS(1929), + [anon_sym_let] = ACTIONS(1929), + [anon_sym_let_DASHenv] = ACTIONS(1929), + [anon_sym_mut] = ACTIONS(1929), + [anon_sym_const] = ACTIONS(1929), + [aux_sym_cmd_identifier_token1] = ACTIONS(1929), + [aux_sym_cmd_identifier_token2] = ACTIONS(1929), + [aux_sym_cmd_identifier_token3] = ACTIONS(1929), + [aux_sym_cmd_identifier_token4] = ACTIONS(1929), + [aux_sym_cmd_identifier_token5] = ACTIONS(1929), + [aux_sym_cmd_identifier_token6] = ACTIONS(1929), + [aux_sym_cmd_identifier_token7] = ACTIONS(1929), + [aux_sym_cmd_identifier_token8] = ACTIONS(1929), + [aux_sym_cmd_identifier_token9] = ACTIONS(1929), + [aux_sym_cmd_identifier_token10] = ACTIONS(1929), + [aux_sym_cmd_identifier_token11] = ACTIONS(1929), + [aux_sym_cmd_identifier_token12] = ACTIONS(1929), + [aux_sym_cmd_identifier_token13] = ACTIONS(1929), + [aux_sym_cmd_identifier_token14] = ACTIONS(1929), + [aux_sym_cmd_identifier_token15] = ACTIONS(1929), + [aux_sym_cmd_identifier_token16] = ACTIONS(1929), + [aux_sym_cmd_identifier_token17] = ACTIONS(1929), + [aux_sym_cmd_identifier_token18] = ACTIONS(1929), + [aux_sym_cmd_identifier_token19] = ACTIONS(1929), + [aux_sym_cmd_identifier_token20] = ACTIONS(1929), + [aux_sym_cmd_identifier_token21] = ACTIONS(1929), + [aux_sym_cmd_identifier_token22] = ACTIONS(1929), + [aux_sym_cmd_identifier_token23] = ACTIONS(1929), + [aux_sym_cmd_identifier_token24] = ACTIONS(1929), + [aux_sym_cmd_identifier_token25] = ACTIONS(1929), + [aux_sym_cmd_identifier_token26] = ACTIONS(1929), + [aux_sym_cmd_identifier_token27] = ACTIONS(1929), + [aux_sym_cmd_identifier_token28] = ACTIONS(1929), + [aux_sym_cmd_identifier_token29] = ACTIONS(1929), + [aux_sym_cmd_identifier_token30] = ACTIONS(1929), + [aux_sym_cmd_identifier_token31] = ACTIONS(1929), + [aux_sym_cmd_identifier_token32] = ACTIONS(1929), + [aux_sym_cmd_identifier_token33] = ACTIONS(1929), + [aux_sym_cmd_identifier_token34] = ACTIONS(1929), + [aux_sym_cmd_identifier_token35] = ACTIONS(1929), + [aux_sym_cmd_identifier_token36] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1931), + [aux_sym_cmd_identifier_token38] = ACTIONS(1929), + [aux_sym_cmd_identifier_token39] = ACTIONS(1931), + [aux_sym_cmd_identifier_token40] = ACTIONS(1931), + [anon_sym_def] = ACTIONS(1929), + [anon_sym_export_DASHenv] = ACTIONS(1929), + [anon_sym_extern] = ACTIONS(1929), + [anon_sym_module] = ACTIONS(1929), + [anon_sym_use] = ACTIONS(1929), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_DOLLAR] = ACTIONS(1931), + [anon_sym_error] = ACTIONS(1929), + [anon_sym_list] = ACTIONS(1929), + [anon_sym_DASH] = ACTIONS(1929), + [anon_sym_break] = ACTIONS(1929), + [anon_sym_continue] = ACTIONS(1929), + [anon_sym_for] = ACTIONS(1929), + [anon_sym_in] = ACTIONS(1929), + [anon_sym_loop] = ACTIONS(1929), + [anon_sym_make] = ACTIONS(1929), + [anon_sym_while] = ACTIONS(1929), + [anon_sym_do] = ACTIONS(1929), + [anon_sym_if] = ACTIONS(1929), + [anon_sym_else] = ACTIONS(1929), + [anon_sym_match] = ACTIONS(1929), + [anon_sym_RBRACE] = ACTIONS(1931), + [anon_sym_try] = ACTIONS(1929), + [anon_sym_catch] = ACTIONS(1929), + [anon_sym_return] = ACTIONS(1929), + [anon_sym_source] = ACTIONS(1929), + [anon_sym_source_DASHenv] = ACTIONS(1929), + [anon_sym_register] = ACTIONS(1929), + [anon_sym_hide] = ACTIONS(1929), + [anon_sym_hide_DASHenv] = ACTIONS(1929), + [anon_sym_overlay] = ACTIONS(1929), + [anon_sym_new] = ACTIONS(1929), + [anon_sym_as] = ACTIONS(1929), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1931), + [anon_sym_DOT] = ACTIONS(2177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1931), + [aux_sym__val_number_decimal_token1] = ACTIONS(1929), + [aux_sym__val_number_decimal_token2] = ACTIONS(1931), + [aux_sym__val_number_decimal_token3] = ACTIONS(1931), + [aux_sym__val_number_decimal_token4] = ACTIONS(1931), + [aux_sym__val_number_token1] = ACTIONS(1931), + [aux_sym__val_number_token2] = ACTIONS(1931), + [aux_sym__val_number_token3] = ACTIONS(1931), + [anon_sym_DQUOTE] = ACTIONS(1931), + [sym__str_single_quotes] = ACTIONS(1931), + [sym__str_back_ticks] = ACTIONS(1931), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(1929), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1931), }, - [524] = { - [sym_comment] = STATE(524), - [anon_sym_export] = ACTIONS(2362), - [anon_sym_alias] = ACTIONS(2362), - [anon_sym_let] = ACTIONS(2362), - [anon_sym_let_DASHenv] = ACTIONS(2362), - [anon_sym_mut] = ACTIONS(2362), - [anon_sym_const] = ACTIONS(2362), - [aux_sym_cmd_identifier_token1] = ACTIONS(2362), - [aux_sym_cmd_identifier_token2] = ACTIONS(2362), - [aux_sym_cmd_identifier_token3] = ACTIONS(2362), - [aux_sym_cmd_identifier_token4] = ACTIONS(2362), - [aux_sym_cmd_identifier_token5] = ACTIONS(2362), - [aux_sym_cmd_identifier_token6] = ACTIONS(2362), - [aux_sym_cmd_identifier_token7] = ACTIONS(2362), - [aux_sym_cmd_identifier_token8] = ACTIONS(2362), - [aux_sym_cmd_identifier_token9] = ACTIONS(2362), - [aux_sym_cmd_identifier_token10] = ACTIONS(2362), - [aux_sym_cmd_identifier_token11] = ACTIONS(2362), - [aux_sym_cmd_identifier_token12] = ACTIONS(2362), - [aux_sym_cmd_identifier_token13] = ACTIONS(2362), - [aux_sym_cmd_identifier_token14] = ACTIONS(2362), - [aux_sym_cmd_identifier_token15] = ACTIONS(2362), - [aux_sym_cmd_identifier_token16] = ACTIONS(2362), - [aux_sym_cmd_identifier_token17] = ACTIONS(2362), - [aux_sym_cmd_identifier_token18] = ACTIONS(2362), - [aux_sym_cmd_identifier_token19] = ACTIONS(2362), - [aux_sym_cmd_identifier_token20] = ACTIONS(2362), - [aux_sym_cmd_identifier_token21] = ACTIONS(2362), - [aux_sym_cmd_identifier_token22] = ACTIONS(2362), - [aux_sym_cmd_identifier_token23] = ACTIONS(2362), - [aux_sym_cmd_identifier_token24] = ACTIONS(2362), - [aux_sym_cmd_identifier_token25] = ACTIONS(2362), - [aux_sym_cmd_identifier_token26] = ACTIONS(2362), - [aux_sym_cmd_identifier_token27] = ACTIONS(2362), - [aux_sym_cmd_identifier_token28] = ACTIONS(2362), - [aux_sym_cmd_identifier_token29] = ACTIONS(2362), - [aux_sym_cmd_identifier_token30] = ACTIONS(2362), - [aux_sym_cmd_identifier_token31] = ACTIONS(2362), - [aux_sym_cmd_identifier_token32] = ACTIONS(2362), - [aux_sym_cmd_identifier_token33] = ACTIONS(2362), - [aux_sym_cmd_identifier_token34] = ACTIONS(2362), - [aux_sym_cmd_identifier_token35] = ACTIONS(2362), - [aux_sym_cmd_identifier_token36] = ACTIONS(2362), - [anon_sym_true] = ACTIONS(2362), - [anon_sym_false] = ACTIONS(2362), - [anon_sym_null] = ACTIONS(2362), - [aux_sym_cmd_identifier_token38] = ACTIONS(2362), - [aux_sym_cmd_identifier_token39] = ACTIONS(2362), - [aux_sym_cmd_identifier_token40] = ACTIONS(2362), - [anon_sym_def] = ACTIONS(2362), - [anon_sym_export_DASHenv] = ACTIONS(2362), - [anon_sym_extern] = ACTIONS(2362), - [anon_sym_module] = ACTIONS(2362), - [anon_sym_use] = ACTIONS(2362), - [anon_sym_RBRACK] = ACTIONS(2362), - [anon_sym_LPAREN] = ACTIONS(2362), - [anon_sym_DOLLAR] = ACTIONS(2362), - [anon_sym_error] = ACTIONS(2362), - [anon_sym_list] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_break] = ACTIONS(2362), - [anon_sym_continue] = ACTIONS(2362), - [anon_sym_for] = ACTIONS(2362), - [anon_sym_in] = ACTIONS(2362), - [anon_sym_loop] = ACTIONS(2362), - [anon_sym_make] = ACTIONS(2362), - [anon_sym_while] = ACTIONS(2362), - [anon_sym_do] = ACTIONS(2362), - [anon_sym_if] = ACTIONS(2362), - [anon_sym_else] = ACTIONS(2362), - [anon_sym_match] = ACTIONS(2362), - [anon_sym_RBRACE] = ACTIONS(2362), - [anon_sym_try] = ACTIONS(2362), - [anon_sym_catch] = ACTIONS(2362), - [anon_sym_return] = ACTIONS(2362), - [anon_sym_source] = ACTIONS(2362), - [anon_sym_source_DASHenv] = ACTIONS(2362), - [anon_sym_register] = ACTIONS(2362), - [anon_sym_hide] = ACTIONS(2362), - [anon_sym_hide_DASHenv] = ACTIONS(2362), - [anon_sym_overlay] = ACTIONS(2362), - [anon_sym_new] = ACTIONS(2362), - [anon_sym_as] = ACTIONS(2362), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2362), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2362), - [aux_sym__val_number_decimal_token1] = ACTIONS(2362), - [aux_sym__val_number_decimal_token2] = ACTIONS(2362), - [aux_sym__val_number_decimal_token3] = ACTIONS(2362), - [aux_sym__val_number_decimal_token4] = ACTIONS(2362), - [aux_sym__val_number_token1] = ACTIONS(2362), - [aux_sym__val_number_token2] = ACTIONS(2362), - [aux_sym__val_number_token3] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym__str_single_quotes] = ACTIONS(2362), - [sym__str_back_ticks] = ACTIONS(2362), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2362), - [sym__entry_separator] = ACTIONS(2364), - [anon_sym_PLUS] = ACTIONS(2362), + [449] = { + [sym_comment] = STATE(449), + [anon_sym_export] = ACTIONS(2234), + [anon_sym_alias] = ACTIONS(2234), + [anon_sym_let] = ACTIONS(2234), + [anon_sym_let_DASHenv] = ACTIONS(2234), + [anon_sym_mut] = ACTIONS(2234), + [anon_sym_const] = ACTIONS(2234), + [aux_sym_cmd_identifier_token1] = ACTIONS(2234), + [aux_sym_cmd_identifier_token2] = ACTIONS(2234), + [aux_sym_cmd_identifier_token3] = ACTIONS(2234), + [aux_sym_cmd_identifier_token4] = ACTIONS(2234), + [aux_sym_cmd_identifier_token5] = ACTIONS(2234), + [aux_sym_cmd_identifier_token6] = ACTIONS(2234), + [aux_sym_cmd_identifier_token7] = ACTIONS(2234), + [aux_sym_cmd_identifier_token8] = ACTIONS(2234), + [aux_sym_cmd_identifier_token9] = ACTIONS(2234), + [aux_sym_cmd_identifier_token10] = ACTIONS(2234), + [aux_sym_cmd_identifier_token11] = ACTIONS(2234), + [aux_sym_cmd_identifier_token12] = ACTIONS(2234), + [aux_sym_cmd_identifier_token13] = ACTIONS(2234), + [aux_sym_cmd_identifier_token14] = ACTIONS(2234), + [aux_sym_cmd_identifier_token15] = ACTIONS(2234), + [aux_sym_cmd_identifier_token16] = ACTIONS(2234), + [aux_sym_cmd_identifier_token17] = ACTIONS(2234), + [aux_sym_cmd_identifier_token18] = ACTIONS(2234), + [aux_sym_cmd_identifier_token19] = ACTIONS(2234), + [aux_sym_cmd_identifier_token20] = ACTIONS(2234), + [aux_sym_cmd_identifier_token21] = ACTIONS(2234), + [aux_sym_cmd_identifier_token22] = ACTIONS(2234), + [aux_sym_cmd_identifier_token23] = ACTIONS(2234), + [aux_sym_cmd_identifier_token24] = ACTIONS(2234), + [aux_sym_cmd_identifier_token25] = ACTIONS(2234), + [aux_sym_cmd_identifier_token26] = ACTIONS(2234), + [aux_sym_cmd_identifier_token27] = ACTIONS(2234), + [aux_sym_cmd_identifier_token28] = ACTIONS(2234), + [aux_sym_cmd_identifier_token29] = ACTIONS(2234), + [aux_sym_cmd_identifier_token30] = ACTIONS(2234), + [aux_sym_cmd_identifier_token31] = ACTIONS(2234), + [aux_sym_cmd_identifier_token32] = ACTIONS(2234), + [aux_sym_cmd_identifier_token33] = ACTIONS(2234), + [aux_sym_cmd_identifier_token34] = ACTIONS(2234), + [aux_sym_cmd_identifier_token35] = ACTIONS(2234), + [aux_sym_cmd_identifier_token36] = ACTIONS(2234), + [anon_sym_true] = ACTIONS(2234), + [anon_sym_false] = ACTIONS(2234), + [anon_sym_null] = ACTIONS(2234), + [aux_sym_cmd_identifier_token38] = ACTIONS(2234), + [aux_sym_cmd_identifier_token39] = ACTIONS(2234), + [aux_sym_cmd_identifier_token40] = ACTIONS(2234), + [anon_sym_def] = ACTIONS(2234), + [anon_sym_export_DASHenv] = ACTIONS(2234), + [anon_sym_extern] = ACTIONS(2234), + [anon_sym_module] = ACTIONS(2234), + [anon_sym_use] = ACTIONS(2234), + [anon_sym_LPAREN] = ACTIONS(2234), + [anon_sym_DOLLAR] = ACTIONS(2234), + [anon_sym_error] = ACTIONS(2234), + [anon_sym_list] = ACTIONS(2234), + [anon_sym_DASH] = ACTIONS(2234), + [anon_sym_break] = ACTIONS(2234), + [anon_sym_continue] = ACTIONS(2234), + [anon_sym_for] = ACTIONS(2234), + [anon_sym_in] = ACTIONS(2234), + [anon_sym_loop] = ACTIONS(2234), + [anon_sym_make] = ACTIONS(2234), + [anon_sym_while] = ACTIONS(2234), + [anon_sym_do] = ACTIONS(2234), + [anon_sym_if] = ACTIONS(2234), + [anon_sym_else] = ACTIONS(2234), + [anon_sym_match] = ACTIONS(2234), + [anon_sym_RBRACE] = ACTIONS(2234), + [anon_sym_try] = ACTIONS(2234), + [anon_sym_catch] = ACTIONS(2234), + [anon_sym_return] = ACTIONS(2234), + [anon_sym_source] = ACTIONS(2234), + [anon_sym_source_DASHenv] = ACTIONS(2234), + [anon_sym_register] = ACTIONS(2234), + [anon_sym_hide] = ACTIONS(2234), + [anon_sym_hide_DASHenv] = ACTIONS(2234), + [anon_sym_overlay] = ACTIONS(2234), + [anon_sym_new] = ACTIONS(2234), + [anon_sym_as] = ACTIONS(2234), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2234), + [anon_sym_DOT_DOT2] = ACTIONS(2236), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2238), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2238), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2234), + [aux_sym__val_number_decimal_token1] = ACTIONS(2234), + [aux_sym__val_number_decimal_token2] = ACTIONS(2234), + [aux_sym__val_number_decimal_token3] = ACTIONS(2234), + [aux_sym__val_number_decimal_token4] = ACTIONS(2234), + [aux_sym__val_number_token1] = ACTIONS(2234), + [aux_sym__val_number_token2] = ACTIONS(2234), + [aux_sym__val_number_token3] = ACTIONS(2234), + [anon_sym_DQUOTE] = ACTIONS(2234), + [sym__str_single_quotes] = ACTIONS(2234), + [sym__str_back_ticks] = ACTIONS(2234), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2234), + [sym__entry_separator] = ACTIONS(2240), + [anon_sym_PLUS] = ACTIONS(2234), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2240), }, - [525] = { - [sym_comment] = STATE(525), - [anon_sym_export] = ACTIONS(2366), - [anon_sym_alias] = ACTIONS(2366), - [anon_sym_let] = ACTIONS(2366), - [anon_sym_let_DASHenv] = ACTIONS(2366), - [anon_sym_mut] = ACTIONS(2366), - [anon_sym_const] = ACTIONS(2366), - [aux_sym_cmd_identifier_token1] = ACTIONS(2366), - [aux_sym_cmd_identifier_token2] = ACTIONS(2366), - [aux_sym_cmd_identifier_token3] = ACTIONS(2366), - [aux_sym_cmd_identifier_token4] = ACTIONS(2366), - [aux_sym_cmd_identifier_token5] = ACTIONS(2366), - [aux_sym_cmd_identifier_token6] = ACTIONS(2366), - [aux_sym_cmd_identifier_token7] = ACTIONS(2366), - [aux_sym_cmd_identifier_token8] = ACTIONS(2366), - [aux_sym_cmd_identifier_token9] = ACTIONS(2366), - [aux_sym_cmd_identifier_token10] = ACTIONS(2366), - [aux_sym_cmd_identifier_token11] = ACTIONS(2366), - [aux_sym_cmd_identifier_token12] = ACTIONS(2366), - [aux_sym_cmd_identifier_token13] = ACTIONS(2366), - [aux_sym_cmd_identifier_token14] = ACTIONS(2366), - [aux_sym_cmd_identifier_token15] = ACTIONS(2366), - [aux_sym_cmd_identifier_token16] = ACTIONS(2366), - [aux_sym_cmd_identifier_token17] = ACTIONS(2366), - [aux_sym_cmd_identifier_token18] = ACTIONS(2366), - [aux_sym_cmd_identifier_token19] = ACTIONS(2366), - [aux_sym_cmd_identifier_token20] = ACTIONS(2366), - [aux_sym_cmd_identifier_token21] = ACTIONS(2366), - [aux_sym_cmd_identifier_token22] = ACTIONS(2366), - [aux_sym_cmd_identifier_token23] = ACTIONS(2366), - [aux_sym_cmd_identifier_token24] = ACTIONS(2366), - [aux_sym_cmd_identifier_token25] = ACTIONS(2366), - [aux_sym_cmd_identifier_token26] = ACTIONS(2366), - [aux_sym_cmd_identifier_token27] = ACTIONS(2366), - [aux_sym_cmd_identifier_token28] = ACTIONS(2366), - [aux_sym_cmd_identifier_token29] = ACTIONS(2366), - [aux_sym_cmd_identifier_token30] = ACTIONS(2366), - [aux_sym_cmd_identifier_token31] = ACTIONS(2366), - [aux_sym_cmd_identifier_token32] = ACTIONS(2366), - [aux_sym_cmd_identifier_token33] = ACTIONS(2366), - [aux_sym_cmd_identifier_token34] = ACTIONS(2366), - [aux_sym_cmd_identifier_token35] = ACTIONS(2366), - [aux_sym_cmd_identifier_token36] = ACTIONS(2366), - [anon_sym_true] = ACTIONS(2366), - [anon_sym_false] = ACTIONS(2366), - [anon_sym_null] = ACTIONS(2366), - [aux_sym_cmd_identifier_token38] = ACTIONS(2366), - [aux_sym_cmd_identifier_token39] = ACTIONS(2366), - [aux_sym_cmd_identifier_token40] = ACTIONS(2366), - [anon_sym_def] = ACTIONS(2366), - [anon_sym_export_DASHenv] = ACTIONS(2366), - [anon_sym_extern] = ACTIONS(2366), - [anon_sym_module] = ACTIONS(2366), - [anon_sym_use] = ACTIONS(2366), - [anon_sym_RBRACK] = ACTIONS(2366), - [anon_sym_LPAREN] = ACTIONS(2366), - [anon_sym_DOLLAR] = ACTIONS(2366), - [anon_sym_error] = ACTIONS(2366), - [anon_sym_list] = ACTIONS(2366), - [anon_sym_DASH] = ACTIONS(2366), - [anon_sym_break] = ACTIONS(2366), - [anon_sym_continue] = ACTIONS(2366), - [anon_sym_for] = ACTIONS(2366), - [anon_sym_in] = ACTIONS(2366), - [anon_sym_loop] = ACTIONS(2366), - [anon_sym_make] = ACTIONS(2366), - [anon_sym_while] = ACTIONS(2366), - [anon_sym_do] = ACTIONS(2366), - [anon_sym_if] = ACTIONS(2366), - [anon_sym_else] = ACTIONS(2366), - [anon_sym_match] = ACTIONS(2366), - [anon_sym_RBRACE] = ACTIONS(2366), - [anon_sym_try] = ACTIONS(2366), - [anon_sym_catch] = ACTIONS(2366), - [anon_sym_return] = ACTIONS(2366), - [anon_sym_source] = ACTIONS(2366), - [anon_sym_source_DASHenv] = ACTIONS(2366), - [anon_sym_register] = ACTIONS(2366), - [anon_sym_hide] = ACTIONS(2366), - [anon_sym_hide_DASHenv] = ACTIONS(2366), - [anon_sym_overlay] = ACTIONS(2366), - [anon_sym_new] = ACTIONS(2366), - [anon_sym_as] = ACTIONS(2366), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2366), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2366), - [aux_sym__val_number_decimal_token1] = ACTIONS(2366), - [aux_sym__val_number_decimal_token2] = ACTIONS(2366), - [aux_sym__val_number_decimal_token3] = ACTIONS(2366), - [aux_sym__val_number_decimal_token4] = ACTIONS(2366), - [aux_sym__val_number_token1] = ACTIONS(2366), - [aux_sym__val_number_token2] = ACTIONS(2366), - [aux_sym__val_number_token3] = ACTIONS(2366), - [anon_sym_DQUOTE] = ACTIONS(2366), - [sym__str_single_quotes] = ACTIONS(2366), - [sym__str_back_ticks] = ACTIONS(2366), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2366), - [sym__entry_separator] = ACTIONS(2368), - [anon_sym_PLUS] = ACTIONS(2366), - [anon_sym_POUND] = ACTIONS(3), + [450] = { + [sym_cell_path] = STATE(691), + [sym_path] = STATE(631), + [sym_comment] = STATE(450), + [aux_sym_cell_path_repeat1] = STATE(456), + [anon_sym_export] = ACTIONS(1021), + [anon_sym_alias] = ACTIONS(1021), + [anon_sym_let] = ACTIONS(1021), + [anon_sym_let_DASHenv] = ACTIONS(1021), + [anon_sym_mut] = ACTIONS(1021), + [anon_sym_const] = ACTIONS(1021), + [aux_sym_cmd_identifier_token1] = ACTIONS(1021), + [aux_sym_cmd_identifier_token2] = ACTIONS(1021), + [aux_sym_cmd_identifier_token3] = ACTIONS(1021), + [aux_sym_cmd_identifier_token4] = ACTIONS(1021), + [aux_sym_cmd_identifier_token5] = ACTIONS(1021), + [aux_sym_cmd_identifier_token6] = ACTIONS(1021), + [aux_sym_cmd_identifier_token7] = ACTIONS(1021), + [aux_sym_cmd_identifier_token8] = ACTIONS(1021), + [aux_sym_cmd_identifier_token9] = ACTIONS(1021), + [aux_sym_cmd_identifier_token10] = ACTIONS(1021), + [aux_sym_cmd_identifier_token11] = ACTIONS(1021), + [aux_sym_cmd_identifier_token12] = ACTIONS(1021), + [aux_sym_cmd_identifier_token13] = ACTIONS(1021), + [aux_sym_cmd_identifier_token14] = ACTIONS(1021), + [aux_sym_cmd_identifier_token15] = ACTIONS(1021), + [aux_sym_cmd_identifier_token16] = ACTIONS(1021), + [aux_sym_cmd_identifier_token17] = ACTIONS(1021), + [aux_sym_cmd_identifier_token18] = ACTIONS(1021), + [aux_sym_cmd_identifier_token19] = ACTIONS(1021), + [aux_sym_cmd_identifier_token20] = ACTIONS(1021), + [aux_sym_cmd_identifier_token21] = ACTIONS(1021), + [aux_sym_cmd_identifier_token22] = ACTIONS(1021), + [aux_sym_cmd_identifier_token23] = ACTIONS(1021), + [aux_sym_cmd_identifier_token24] = ACTIONS(1021), + [aux_sym_cmd_identifier_token25] = ACTIONS(1021), + [aux_sym_cmd_identifier_token26] = ACTIONS(1021), + [aux_sym_cmd_identifier_token27] = ACTIONS(1021), + [aux_sym_cmd_identifier_token28] = ACTIONS(1021), + [aux_sym_cmd_identifier_token29] = ACTIONS(1021), + [aux_sym_cmd_identifier_token30] = ACTIONS(1021), + [aux_sym_cmd_identifier_token31] = ACTIONS(1021), + [aux_sym_cmd_identifier_token32] = ACTIONS(1021), + [aux_sym_cmd_identifier_token33] = ACTIONS(1021), + [aux_sym_cmd_identifier_token34] = ACTIONS(1021), + [aux_sym_cmd_identifier_token35] = ACTIONS(1021), + [aux_sym_cmd_identifier_token36] = ACTIONS(1021), + [anon_sym_true] = ACTIONS(1023), + [anon_sym_false] = ACTIONS(1023), + [anon_sym_null] = ACTIONS(1023), + [aux_sym_cmd_identifier_token38] = ACTIONS(1021), + [aux_sym_cmd_identifier_token39] = ACTIONS(1023), + [aux_sym_cmd_identifier_token40] = ACTIONS(1023), + [anon_sym_def] = ACTIONS(1021), + [anon_sym_export_DASHenv] = ACTIONS(1021), + [anon_sym_extern] = ACTIONS(1021), + [anon_sym_module] = ACTIONS(1021), + [anon_sym_use] = ACTIONS(1021), + [anon_sym_LPAREN] = ACTIONS(1023), + [anon_sym_DOLLAR] = ACTIONS(1023), + [anon_sym_error] = ACTIONS(1021), + [anon_sym_list] = ACTIONS(1021), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_break] = ACTIONS(1021), + [anon_sym_continue] = ACTIONS(1021), + [anon_sym_for] = ACTIONS(1021), + [anon_sym_in] = ACTIONS(1021), + [anon_sym_loop] = ACTIONS(1021), + [anon_sym_make] = ACTIONS(1021), + [anon_sym_while] = ACTIONS(1021), + [anon_sym_do] = ACTIONS(1021), + [anon_sym_if] = ACTIONS(1021), + [anon_sym_else] = ACTIONS(1021), + [anon_sym_match] = ACTIONS(1021), + [anon_sym_RBRACE] = ACTIONS(1023), + [anon_sym_try] = ACTIONS(1021), + [anon_sym_catch] = ACTIONS(1021), + [anon_sym_return] = ACTIONS(1021), + [anon_sym_source] = ACTIONS(1021), + [anon_sym_source_DASHenv] = ACTIONS(1021), + [anon_sym_register] = ACTIONS(1021), + [anon_sym_hide] = ACTIONS(1021), + [anon_sym_hide_DASHenv] = ACTIONS(1021), + [anon_sym_overlay] = ACTIONS(1021), + [anon_sym_new] = ACTIONS(1021), + [anon_sym_as] = ACTIONS(1021), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1023), + [anon_sym_DOT] = ACTIONS(2177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1023), + [aux_sym__val_number_decimal_token1] = ACTIONS(1021), + [aux_sym__val_number_decimal_token2] = ACTIONS(1023), + [aux_sym__val_number_decimal_token3] = ACTIONS(1023), + [aux_sym__val_number_decimal_token4] = ACTIONS(1023), + [aux_sym__val_number_token1] = ACTIONS(1023), + [aux_sym__val_number_token2] = ACTIONS(1023), + [aux_sym__val_number_token3] = ACTIONS(1023), + [anon_sym_DQUOTE] = ACTIONS(1023), + [sym__str_single_quotes] = ACTIONS(1023), + [sym__str_back_ticks] = ACTIONS(1023), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1023), + [anon_sym_PLUS] = ACTIONS(1021), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1023), }, - [526] = { - [sym_comment] = STATE(526), - [anon_sym_export] = ACTIONS(1667), - [anon_sym_alias] = ACTIONS(1667), - [anon_sym_let] = ACTIONS(1667), - [anon_sym_let_DASHenv] = ACTIONS(1667), - [anon_sym_mut] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1667), - [aux_sym_cmd_identifier_token1] = ACTIONS(1667), - [aux_sym_cmd_identifier_token2] = ACTIONS(1667), - [aux_sym_cmd_identifier_token3] = ACTIONS(1667), - [aux_sym_cmd_identifier_token4] = ACTIONS(1667), - [aux_sym_cmd_identifier_token5] = ACTIONS(1667), - [aux_sym_cmd_identifier_token6] = ACTIONS(1667), - [aux_sym_cmd_identifier_token7] = ACTIONS(1667), - [aux_sym_cmd_identifier_token8] = ACTIONS(1667), - [aux_sym_cmd_identifier_token9] = ACTIONS(1667), - [aux_sym_cmd_identifier_token10] = ACTIONS(1667), - [aux_sym_cmd_identifier_token11] = ACTIONS(1667), - [aux_sym_cmd_identifier_token12] = ACTIONS(1667), - [aux_sym_cmd_identifier_token13] = ACTIONS(1667), - [aux_sym_cmd_identifier_token14] = ACTIONS(1667), - [aux_sym_cmd_identifier_token15] = ACTIONS(1667), - [aux_sym_cmd_identifier_token16] = ACTIONS(1667), - [aux_sym_cmd_identifier_token17] = ACTIONS(1667), - [aux_sym_cmd_identifier_token18] = ACTIONS(1667), - [aux_sym_cmd_identifier_token19] = ACTIONS(1667), - [aux_sym_cmd_identifier_token20] = ACTIONS(1667), - [aux_sym_cmd_identifier_token21] = ACTIONS(1667), - [aux_sym_cmd_identifier_token22] = ACTIONS(1667), - [aux_sym_cmd_identifier_token23] = ACTIONS(1667), - [aux_sym_cmd_identifier_token24] = ACTIONS(1667), - [aux_sym_cmd_identifier_token25] = ACTIONS(1667), - [aux_sym_cmd_identifier_token26] = ACTIONS(1667), - [aux_sym_cmd_identifier_token27] = ACTIONS(1667), - [aux_sym_cmd_identifier_token28] = ACTIONS(1667), - [aux_sym_cmd_identifier_token29] = ACTIONS(1667), - [aux_sym_cmd_identifier_token30] = ACTIONS(1667), - [aux_sym_cmd_identifier_token31] = ACTIONS(1667), - [aux_sym_cmd_identifier_token32] = ACTIONS(1667), - [aux_sym_cmd_identifier_token33] = ACTIONS(1667), - [aux_sym_cmd_identifier_token34] = ACTIONS(1667), - [aux_sym_cmd_identifier_token35] = ACTIONS(1667), - [aux_sym_cmd_identifier_token36] = ACTIONS(1667), - [anon_sym_true] = ACTIONS(1667), - [anon_sym_false] = ACTIONS(1667), - [anon_sym_null] = ACTIONS(1667), - [aux_sym_cmd_identifier_token38] = ACTIONS(1667), - [aux_sym_cmd_identifier_token39] = ACTIONS(1667), - [aux_sym_cmd_identifier_token40] = ACTIONS(1667), - [anon_sym_def] = ACTIONS(1667), - [anon_sym_export_DASHenv] = ACTIONS(1667), - [anon_sym_extern] = ACTIONS(1667), - [anon_sym_module] = ACTIONS(1667), - [anon_sym_use] = ACTIONS(1667), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_DOLLAR] = ACTIONS(1667), - [anon_sym_error] = ACTIONS(1667), - [anon_sym_list] = ACTIONS(1667), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_break] = ACTIONS(1667), - [anon_sym_continue] = ACTIONS(1667), - [anon_sym_for] = ACTIONS(1667), - [anon_sym_in] = ACTIONS(1667), - [anon_sym_loop] = ACTIONS(1667), - [anon_sym_make] = ACTIONS(1667), - [anon_sym_while] = ACTIONS(1667), - [anon_sym_do] = ACTIONS(1667), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_else] = ACTIONS(1667), - [anon_sym_match] = ACTIONS(1667), - [anon_sym_RBRACE] = ACTIONS(1667), - [anon_sym_try] = ACTIONS(1667), - [anon_sym_catch] = ACTIONS(1667), - [anon_sym_return] = ACTIONS(1667), - [anon_sym_source] = ACTIONS(1667), - [anon_sym_source_DASHenv] = ACTIONS(1667), - [anon_sym_register] = ACTIONS(1667), - [anon_sym_hide] = ACTIONS(1667), - [anon_sym_hide_DASHenv] = ACTIONS(1667), - [anon_sym_overlay] = ACTIONS(1667), - [anon_sym_new] = ACTIONS(1667), - [anon_sym_as] = ACTIONS(1667), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1667), - [aux_sym__immediate_decimal_token2] = ACTIONS(2269), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1667), - [aux_sym__val_number_decimal_token1] = ACTIONS(1667), - [aux_sym__val_number_decimal_token2] = ACTIONS(1667), - [aux_sym__val_number_decimal_token3] = ACTIONS(1667), - [aux_sym__val_number_decimal_token4] = ACTIONS(1667), - [aux_sym__val_number_token1] = ACTIONS(1667), - [aux_sym__val_number_token2] = ACTIONS(1667), - [aux_sym__val_number_token3] = ACTIONS(1667), - [anon_sym_DQUOTE] = ACTIONS(1667), - [sym__str_single_quotes] = ACTIONS(1667), - [sym__str_back_ticks] = ACTIONS(1667), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1667), - [sym__entry_separator] = ACTIONS(1669), - [anon_sym_PLUS] = ACTIONS(1667), + [451] = { + [sym__expr_parenthesized_immediate] = STATE(7774), + [sym_comment] = STATE(451), + [anon_sym_export] = ACTIONS(2242), + [anon_sym_alias] = ACTIONS(2242), + [anon_sym_let] = ACTIONS(2242), + [anon_sym_let_DASHenv] = ACTIONS(2242), + [anon_sym_mut] = ACTIONS(2242), + [anon_sym_const] = ACTIONS(2242), + [aux_sym_cmd_identifier_token1] = ACTIONS(2242), + [aux_sym_cmd_identifier_token2] = ACTIONS(2242), + [aux_sym_cmd_identifier_token3] = ACTIONS(2242), + [aux_sym_cmd_identifier_token4] = ACTIONS(2242), + [aux_sym_cmd_identifier_token5] = ACTIONS(2242), + [aux_sym_cmd_identifier_token6] = ACTIONS(2242), + [aux_sym_cmd_identifier_token7] = ACTIONS(2242), + [aux_sym_cmd_identifier_token8] = ACTIONS(2242), + [aux_sym_cmd_identifier_token9] = ACTIONS(2242), + [aux_sym_cmd_identifier_token10] = ACTIONS(2242), + [aux_sym_cmd_identifier_token11] = ACTIONS(2242), + [aux_sym_cmd_identifier_token12] = ACTIONS(2242), + [aux_sym_cmd_identifier_token13] = ACTIONS(2242), + [aux_sym_cmd_identifier_token14] = ACTIONS(2242), + [aux_sym_cmd_identifier_token15] = ACTIONS(2242), + [aux_sym_cmd_identifier_token16] = ACTIONS(2242), + [aux_sym_cmd_identifier_token17] = ACTIONS(2242), + [aux_sym_cmd_identifier_token18] = ACTIONS(2242), + [aux_sym_cmd_identifier_token19] = ACTIONS(2242), + [aux_sym_cmd_identifier_token20] = ACTIONS(2242), + [aux_sym_cmd_identifier_token21] = ACTIONS(2242), + [aux_sym_cmd_identifier_token22] = ACTIONS(2242), + [aux_sym_cmd_identifier_token23] = ACTIONS(2242), + [aux_sym_cmd_identifier_token24] = ACTIONS(2242), + [aux_sym_cmd_identifier_token25] = ACTIONS(2242), + [aux_sym_cmd_identifier_token26] = ACTIONS(2242), + [aux_sym_cmd_identifier_token27] = ACTIONS(2242), + [aux_sym_cmd_identifier_token28] = ACTIONS(2242), + [aux_sym_cmd_identifier_token29] = ACTIONS(2242), + [aux_sym_cmd_identifier_token30] = ACTIONS(2242), + [aux_sym_cmd_identifier_token31] = ACTIONS(2242), + [aux_sym_cmd_identifier_token32] = ACTIONS(2242), + [aux_sym_cmd_identifier_token33] = ACTIONS(2242), + [aux_sym_cmd_identifier_token34] = ACTIONS(2242), + [aux_sym_cmd_identifier_token35] = ACTIONS(2242), + [aux_sym_cmd_identifier_token36] = ACTIONS(2242), + [anon_sym_true] = ACTIONS(2242), + [anon_sym_false] = ACTIONS(2242), + [anon_sym_null] = ACTIONS(2242), + [aux_sym_cmd_identifier_token38] = ACTIONS(2242), + [aux_sym_cmd_identifier_token39] = ACTIONS(2242), + [aux_sym_cmd_identifier_token40] = ACTIONS(2242), + [anon_sym_def] = ACTIONS(2242), + [anon_sym_export_DASHenv] = ACTIONS(2242), + [anon_sym_extern] = ACTIONS(2242), + [anon_sym_module] = ACTIONS(2242), + [anon_sym_use] = ACTIONS(2242), + [anon_sym_LPAREN] = ACTIONS(2242), + [anon_sym_DOLLAR] = ACTIONS(2242), + [anon_sym_error] = ACTIONS(2242), + [anon_sym_list] = ACTIONS(2242), + [anon_sym_DASH] = ACTIONS(2242), + [anon_sym_break] = ACTIONS(2242), + [anon_sym_continue] = ACTIONS(2242), + [anon_sym_for] = ACTIONS(2242), + [anon_sym_in] = ACTIONS(2242), + [anon_sym_loop] = ACTIONS(2242), + [anon_sym_make] = ACTIONS(2242), + [anon_sym_while] = ACTIONS(2242), + [anon_sym_do] = ACTIONS(2242), + [anon_sym_if] = ACTIONS(2242), + [anon_sym_else] = ACTIONS(2242), + [anon_sym_match] = ACTIONS(2242), + [anon_sym_RBRACE] = ACTIONS(2242), + [anon_sym_try] = ACTIONS(2242), + [anon_sym_catch] = ACTIONS(2242), + [anon_sym_return] = ACTIONS(2242), + [anon_sym_source] = ACTIONS(2242), + [anon_sym_source_DASHenv] = ACTIONS(2242), + [anon_sym_register] = ACTIONS(2242), + [anon_sym_hide] = ACTIONS(2242), + [anon_sym_hide_DASHenv] = ACTIONS(2242), + [anon_sym_overlay] = ACTIONS(2242), + [anon_sym_new] = ACTIONS(2242), + [anon_sym_as] = ACTIONS(2242), + [anon_sym_LPAREN2] = ACTIONS(1630), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2242), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2242), + [aux_sym__val_number_decimal_token1] = ACTIONS(2242), + [aux_sym__val_number_decimal_token2] = ACTIONS(2242), + [aux_sym__val_number_decimal_token3] = ACTIONS(2242), + [aux_sym__val_number_decimal_token4] = ACTIONS(2242), + [aux_sym__val_number_token1] = ACTIONS(2242), + [aux_sym__val_number_token2] = ACTIONS(2242), + [aux_sym__val_number_token3] = ACTIONS(2242), + [anon_sym_DQUOTE] = ACTIONS(2242), + [sym__str_single_quotes] = ACTIONS(2242), + [sym__str_back_ticks] = ACTIONS(2242), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2242), + [sym__entry_separator] = ACTIONS(2244), + [anon_sym_PLUS] = ACTIONS(2242), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2244), }, - [527] = { - [sym_comment] = STATE(527), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_alias] = ACTIONS(1046), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_let_DASHenv] = ACTIONS(1046), - [anon_sym_mut] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [aux_sym_cmd_identifier_token1] = ACTIONS(1046), - [aux_sym_cmd_identifier_token2] = ACTIONS(1046), - [aux_sym_cmd_identifier_token3] = ACTIONS(1046), - [aux_sym_cmd_identifier_token4] = ACTIONS(1046), - [aux_sym_cmd_identifier_token5] = ACTIONS(1046), - [aux_sym_cmd_identifier_token6] = ACTIONS(1046), - [aux_sym_cmd_identifier_token7] = ACTIONS(1046), - [aux_sym_cmd_identifier_token8] = ACTIONS(1046), - [aux_sym_cmd_identifier_token9] = ACTIONS(1046), - [aux_sym_cmd_identifier_token10] = ACTIONS(1046), - [aux_sym_cmd_identifier_token11] = ACTIONS(1046), - [aux_sym_cmd_identifier_token12] = ACTIONS(1046), - [aux_sym_cmd_identifier_token13] = ACTIONS(1046), - [aux_sym_cmd_identifier_token14] = ACTIONS(1046), - [aux_sym_cmd_identifier_token15] = ACTIONS(1046), - [aux_sym_cmd_identifier_token16] = ACTIONS(1046), - [aux_sym_cmd_identifier_token17] = ACTIONS(1046), - [aux_sym_cmd_identifier_token18] = ACTIONS(1046), - [aux_sym_cmd_identifier_token19] = ACTIONS(1046), - [aux_sym_cmd_identifier_token20] = ACTIONS(1046), - [aux_sym_cmd_identifier_token21] = ACTIONS(1046), - [aux_sym_cmd_identifier_token22] = ACTIONS(1046), - [aux_sym_cmd_identifier_token23] = ACTIONS(1046), - [aux_sym_cmd_identifier_token24] = ACTIONS(1046), - [aux_sym_cmd_identifier_token25] = ACTIONS(1046), - [aux_sym_cmd_identifier_token26] = ACTIONS(1046), - [aux_sym_cmd_identifier_token27] = ACTIONS(1046), - [aux_sym_cmd_identifier_token28] = ACTIONS(1046), - [aux_sym_cmd_identifier_token29] = ACTIONS(1046), - [aux_sym_cmd_identifier_token30] = ACTIONS(1046), - [aux_sym_cmd_identifier_token31] = ACTIONS(1046), - [aux_sym_cmd_identifier_token32] = ACTIONS(1046), - [aux_sym_cmd_identifier_token33] = ACTIONS(1046), - [aux_sym_cmd_identifier_token34] = ACTIONS(1046), - [aux_sym_cmd_identifier_token35] = ACTIONS(1046), - [aux_sym_cmd_identifier_token36] = ACTIONS(1046), - [anon_sym_true] = ACTIONS(1046), - [anon_sym_false] = ACTIONS(1046), - [anon_sym_null] = ACTIONS(1046), - [aux_sym_cmd_identifier_token38] = ACTIONS(1046), - [aux_sym_cmd_identifier_token39] = ACTIONS(1046), - [aux_sym_cmd_identifier_token40] = ACTIONS(1046), - [anon_sym_def] = ACTIONS(1046), - [anon_sym_export_DASHenv] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_use] = ACTIONS(1046), - [anon_sym_LPAREN] = ACTIONS(1046), - [anon_sym_DOLLAR] = ACTIONS(1046), - [anon_sym_error] = ACTIONS(1046), - [anon_sym_list] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_break] = ACTIONS(1046), - [anon_sym_continue] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1046), - [anon_sym_in] = ACTIONS(1046), - [anon_sym_loop] = ACTIONS(1046), - [anon_sym_make] = ACTIONS(1046), - [anon_sym_while] = ACTIONS(1046), - [anon_sym_do] = ACTIONS(1046), - [anon_sym_if] = ACTIONS(1046), - [anon_sym_else] = ACTIONS(1046), - [anon_sym_match] = ACTIONS(1046), - [anon_sym_RBRACE] = ACTIONS(1046), - [anon_sym_try] = ACTIONS(1046), - [anon_sym_catch] = ACTIONS(1046), - [anon_sym_return] = ACTIONS(1046), - [anon_sym_source] = ACTIONS(1046), - [anon_sym_source_DASHenv] = ACTIONS(1046), - [anon_sym_register] = ACTIONS(1046), - [anon_sym_hide] = ACTIONS(1046), - [anon_sym_hide_DASHenv] = ACTIONS(1046), - [anon_sym_overlay] = ACTIONS(1046), - [anon_sym_new] = ACTIONS(1046), - [anon_sym_as] = ACTIONS(1046), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1046), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1046), - [aux_sym__val_number_decimal_token1] = ACTIONS(1046), - [aux_sym__val_number_decimal_token2] = ACTIONS(1046), - [aux_sym__val_number_decimal_token3] = ACTIONS(1046), - [aux_sym__val_number_decimal_token4] = ACTIONS(1046), - [aux_sym__val_number_token1] = ACTIONS(1046), - [aux_sym__val_number_token2] = ACTIONS(1046), - [aux_sym__val_number_token3] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1046), - [sym__str_single_quotes] = ACTIONS(1046), - [sym__str_back_ticks] = ACTIONS(1046), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1046), - [sym__entry_separator] = ACTIONS(1048), - [anon_sym_PLUS] = ACTIONS(1046), + [452] = { + [sym_comment] = STATE(452), + [anon_sym_export] = ACTIONS(2246), + [anon_sym_alias] = ACTIONS(2246), + [anon_sym_let] = ACTIONS(2246), + [anon_sym_let_DASHenv] = ACTIONS(2246), + [anon_sym_mut] = ACTIONS(2246), + [anon_sym_const] = ACTIONS(2246), + [aux_sym_cmd_identifier_token1] = ACTIONS(2246), + [aux_sym_cmd_identifier_token2] = ACTIONS(2246), + [aux_sym_cmd_identifier_token3] = ACTIONS(2246), + [aux_sym_cmd_identifier_token4] = ACTIONS(2246), + [aux_sym_cmd_identifier_token5] = ACTIONS(2246), + [aux_sym_cmd_identifier_token6] = ACTIONS(2246), + [aux_sym_cmd_identifier_token7] = ACTIONS(2246), + [aux_sym_cmd_identifier_token8] = ACTIONS(2246), + [aux_sym_cmd_identifier_token9] = ACTIONS(2246), + [aux_sym_cmd_identifier_token10] = ACTIONS(2246), + [aux_sym_cmd_identifier_token11] = ACTIONS(2246), + [aux_sym_cmd_identifier_token12] = ACTIONS(2246), + [aux_sym_cmd_identifier_token13] = ACTIONS(2246), + [aux_sym_cmd_identifier_token14] = ACTIONS(2246), + [aux_sym_cmd_identifier_token15] = ACTIONS(2246), + [aux_sym_cmd_identifier_token16] = ACTIONS(2246), + [aux_sym_cmd_identifier_token17] = ACTIONS(2246), + [aux_sym_cmd_identifier_token18] = ACTIONS(2246), + [aux_sym_cmd_identifier_token19] = ACTIONS(2246), + [aux_sym_cmd_identifier_token20] = ACTIONS(2246), + [aux_sym_cmd_identifier_token21] = ACTIONS(2246), + [aux_sym_cmd_identifier_token22] = ACTIONS(2246), + [aux_sym_cmd_identifier_token23] = ACTIONS(2246), + [aux_sym_cmd_identifier_token24] = ACTIONS(2246), + [aux_sym_cmd_identifier_token25] = ACTIONS(2246), + [aux_sym_cmd_identifier_token26] = ACTIONS(2246), + [aux_sym_cmd_identifier_token27] = ACTIONS(2246), + [aux_sym_cmd_identifier_token28] = ACTIONS(2246), + [aux_sym_cmd_identifier_token29] = ACTIONS(2246), + [aux_sym_cmd_identifier_token30] = ACTIONS(2246), + [aux_sym_cmd_identifier_token31] = ACTIONS(2246), + [aux_sym_cmd_identifier_token32] = ACTIONS(2246), + [aux_sym_cmd_identifier_token33] = ACTIONS(2246), + [aux_sym_cmd_identifier_token34] = ACTIONS(2246), + [aux_sym_cmd_identifier_token35] = ACTIONS(2246), + [aux_sym_cmd_identifier_token36] = ACTIONS(2246), + [anon_sym_true] = ACTIONS(2246), + [anon_sym_false] = ACTIONS(2246), + [anon_sym_null] = ACTIONS(2246), + [aux_sym_cmd_identifier_token38] = ACTIONS(2246), + [aux_sym_cmd_identifier_token39] = ACTIONS(2246), + [aux_sym_cmd_identifier_token40] = ACTIONS(2246), + [anon_sym_def] = ACTIONS(2246), + [anon_sym_export_DASHenv] = ACTIONS(2246), + [anon_sym_extern] = ACTIONS(2246), + [anon_sym_module] = ACTIONS(2246), + [anon_sym_use] = ACTIONS(2246), + [anon_sym_LPAREN] = ACTIONS(2246), + [anon_sym_DOLLAR] = ACTIONS(2246), + [anon_sym_error] = ACTIONS(2246), + [anon_sym_list] = ACTIONS(2246), + [anon_sym_DASH] = ACTIONS(2246), + [anon_sym_break] = ACTIONS(2246), + [anon_sym_continue] = ACTIONS(2246), + [anon_sym_for] = ACTIONS(2246), + [anon_sym_in] = ACTIONS(2246), + [anon_sym_loop] = ACTIONS(2246), + [anon_sym_make] = ACTIONS(2246), + [anon_sym_while] = ACTIONS(2246), + [anon_sym_do] = ACTIONS(2246), + [anon_sym_if] = ACTIONS(2246), + [anon_sym_else] = ACTIONS(2246), + [anon_sym_match] = ACTIONS(2246), + [anon_sym_RBRACE] = ACTIONS(2246), + [anon_sym_try] = ACTIONS(2246), + [anon_sym_catch] = ACTIONS(2246), + [anon_sym_return] = ACTIONS(2246), + [anon_sym_source] = ACTIONS(2246), + [anon_sym_source_DASHenv] = ACTIONS(2246), + [anon_sym_register] = ACTIONS(2246), + [anon_sym_hide] = ACTIONS(2246), + [anon_sym_hide_DASHenv] = ACTIONS(2246), + [anon_sym_overlay] = ACTIONS(2246), + [anon_sym_new] = ACTIONS(2246), + [anon_sym_as] = ACTIONS(2246), + [anon_sym_LPAREN2] = ACTIONS(2248), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2246), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2246), + [aux_sym__val_number_decimal_token1] = ACTIONS(2246), + [aux_sym__val_number_decimal_token2] = ACTIONS(2246), + [aux_sym__val_number_decimal_token3] = ACTIONS(2246), + [aux_sym__val_number_decimal_token4] = ACTIONS(2246), + [aux_sym__val_number_token1] = ACTIONS(2246), + [aux_sym__val_number_token2] = ACTIONS(2246), + [aux_sym__val_number_token3] = ACTIONS(2246), + [anon_sym_DQUOTE] = ACTIONS(2246), + [sym__str_single_quotes] = ACTIONS(2246), + [sym__str_back_ticks] = ACTIONS(2246), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2246), + [sym__entry_separator] = ACTIONS(2250), + [anon_sym_PLUS] = ACTIONS(2246), + [aux_sym__unquoted_in_record_token2] = ACTIONS(2252), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2250), }, - [528] = { - [sym_comment] = STATE(528), - [anon_sym_export] = ACTIONS(1721), - [anon_sym_alias] = ACTIONS(1721), - [anon_sym_let] = ACTIONS(1721), - [anon_sym_let_DASHenv] = ACTIONS(1721), - [anon_sym_mut] = ACTIONS(1721), - [anon_sym_const] = ACTIONS(1721), - [aux_sym_cmd_identifier_token1] = ACTIONS(1721), - [aux_sym_cmd_identifier_token2] = ACTIONS(1721), - [aux_sym_cmd_identifier_token3] = ACTIONS(1721), - [aux_sym_cmd_identifier_token4] = ACTIONS(1721), - [aux_sym_cmd_identifier_token5] = ACTIONS(1721), - [aux_sym_cmd_identifier_token6] = ACTIONS(1721), - [aux_sym_cmd_identifier_token7] = ACTIONS(1721), - [aux_sym_cmd_identifier_token8] = ACTIONS(1721), - [aux_sym_cmd_identifier_token9] = ACTIONS(1721), - [aux_sym_cmd_identifier_token10] = ACTIONS(1721), - [aux_sym_cmd_identifier_token11] = ACTIONS(1721), - [aux_sym_cmd_identifier_token12] = ACTIONS(1721), - [aux_sym_cmd_identifier_token13] = ACTIONS(1721), - [aux_sym_cmd_identifier_token14] = ACTIONS(1721), - [aux_sym_cmd_identifier_token15] = ACTIONS(1721), - [aux_sym_cmd_identifier_token16] = ACTIONS(1721), - [aux_sym_cmd_identifier_token17] = ACTIONS(1721), - [aux_sym_cmd_identifier_token18] = ACTIONS(1721), - [aux_sym_cmd_identifier_token19] = ACTIONS(1721), - [aux_sym_cmd_identifier_token20] = ACTIONS(1721), - [aux_sym_cmd_identifier_token21] = ACTIONS(1721), - [aux_sym_cmd_identifier_token22] = ACTIONS(1721), - [aux_sym_cmd_identifier_token23] = ACTIONS(1721), - [aux_sym_cmd_identifier_token24] = ACTIONS(1721), - [aux_sym_cmd_identifier_token25] = ACTIONS(1721), - [aux_sym_cmd_identifier_token26] = ACTIONS(1721), - [aux_sym_cmd_identifier_token27] = ACTIONS(1721), - [aux_sym_cmd_identifier_token28] = ACTIONS(1721), - [aux_sym_cmd_identifier_token29] = ACTIONS(1721), - [aux_sym_cmd_identifier_token30] = ACTIONS(1721), - [aux_sym_cmd_identifier_token31] = ACTIONS(1721), - [aux_sym_cmd_identifier_token32] = ACTIONS(1721), - [aux_sym_cmd_identifier_token33] = ACTIONS(1721), - [aux_sym_cmd_identifier_token34] = ACTIONS(1721), - [aux_sym_cmd_identifier_token35] = ACTIONS(1721), - [aux_sym_cmd_identifier_token36] = ACTIONS(1721), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [anon_sym_null] = ACTIONS(1721), - [aux_sym_cmd_identifier_token38] = ACTIONS(1721), - [aux_sym_cmd_identifier_token39] = ACTIONS(1721), - [aux_sym_cmd_identifier_token40] = ACTIONS(1721), - [anon_sym_def] = ACTIONS(1721), - [anon_sym_export_DASHenv] = ACTIONS(1721), - [anon_sym_extern] = ACTIONS(1721), - [anon_sym_module] = ACTIONS(1721), - [anon_sym_use] = ACTIONS(1721), - [anon_sym_LPAREN] = ACTIONS(1721), - [anon_sym_DOLLAR] = ACTIONS(1721), - [anon_sym_error] = ACTIONS(1721), - [anon_sym_list] = ACTIONS(1721), - [anon_sym_DASH] = ACTIONS(1721), - [anon_sym_break] = ACTIONS(1721), - [anon_sym_continue] = ACTIONS(1721), - [anon_sym_for] = ACTIONS(1721), - [anon_sym_in] = ACTIONS(1721), - [anon_sym_loop] = ACTIONS(1721), - [anon_sym_make] = ACTIONS(1721), - [anon_sym_while] = ACTIONS(1721), - [anon_sym_do] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1721), - [anon_sym_else] = ACTIONS(1721), - [anon_sym_match] = ACTIONS(1721), - [anon_sym_RBRACE] = ACTIONS(1721), - [anon_sym_try] = ACTIONS(1721), - [anon_sym_catch] = ACTIONS(1721), - [anon_sym_return] = ACTIONS(1721), - [anon_sym_source] = ACTIONS(1721), - [anon_sym_source_DASHenv] = ACTIONS(1721), - [anon_sym_register] = ACTIONS(1721), - [anon_sym_hide] = ACTIONS(1721), - [anon_sym_hide_DASHenv] = ACTIONS(1721), - [anon_sym_overlay] = ACTIONS(1721), - [anon_sym_new] = ACTIONS(1721), - [anon_sym_as] = ACTIONS(1721), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1721), - [aux_sym__immediate_decimal_token2] = ACTIONS(2370), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1721), - [aux_sym__val_number_decimal_token1] = ACTIONS(1721), - [aux_sym__val_number_decimal_token2] = ACTIONS(1721), - [aux_sym__val_number_decimal_token3] = ACTIONS(1721), - [aux_sym__val_number_decimal_token4] = ACTIONS(1721), - [aux_sym__val_number_token1] = ACTIONS(1721), - [aux_sym__val_number_token2] = ACTIONS(1721), - [aux_sym__val_number_token3] = ACTIONS(1721), - [anon_sym_DQUOTE] = ACTIONS(1721), - [sym__str_single_quotes] = ACTIONS(1721), - [sym__str_back_ticks] = ACTIONS(1721), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1721), - [sym__entry_separator] = ACTIONS(1723), - [anon_sym_PLUS] = ACTIONS(1721), + [453] = { + [sym_comment] = STATE(453), + [anon_sym_export] = ACTIONS(1715), + [anon_sym_alias] = ACTIONS(1715), + [anon_sym_let] = ACTIONS(1715), + [anon_sym_let_DASHenv] = ACTIONS(1715), + [anon_sym_mut] = ACTIONS(1715), + [anon_sym_const] = ACTIONS(1715), + [aux_sym_cmd_identifier_token1] = ACTIONS(1715), + [aux_sym_cmd_identifier_token2] = ACTIONS(1715), + [aux_sym_cmd_identifier_token3] = ACTIONS(1715), + [aux_sym_cmd_identifier_token4] = ACTIONS(1715), + [aux_sym_cmd_identifier_token5] = ACTIONS(1715), + [aux_sym_cmd_identifier_token6] = ACTIONS(1715), + [aux_sym_cmd_identifier_token7] = ACTIONS(1715), + [aux_sym_cmd_identifier_token8] = ACTIONS(1715), + [aux_sym_cmd_identifier_token9] = ACTIONS(1715), + [aux_sym_cmd_identifier_token10] = ACTIONS(1715), + [aux_sym_cmd_identifier_token11] = ACTIONS(1715), + [aux_sym_cmd_identifier_token12] = ACTIONS(1715), + [aux_sym_cmd_identifier_token13] = ACTIONS(1715), + [aux_sym_cmd_identifier_token14] = ACTIONS(1715), + [aux_sym_cmd_identifier_token15] = ACTIONS(1715), + [aux_sym_cmd_identifier_token16] = ACTIONS(1715), + [aux_sym_cmd_identifier_token17] = ACTIONS(1715), + [aux_sym_cmd_identifier_token18] = ACTIONS(1715), + [aux_sym_cmd_identifier_token19] = ACTIONS(1715), + [aux_sym_cmd_identifier_token20] = ACTIONS(1715), + [aux_sym_cmd_identifier_token21] = ACTIONS(1715), + [aux_sym_cmd_identifier_token22] = ACTIONS(1715), + [aux_sym_cmd_identifier_token23] = ACTIONS(1715), + [aux_sym_cmd_identifier_token24] = ACTIONS(1715), + [aux_sym_cmd_identifier_token25] = ACTIONS(1715), + [aux_sym_cmd_identifier_token26] = ACTIONS(1715), + [aux_sym_cmd_identifier_token27] = ACTIONS(1715), + [aux_sym_cmd_identifier_token28] = ACTIONS(1715), + [aux_sym_cmd_identifier_token29] = ACTIONS(1715), + [aux_sym_cmd_identifier_token30] = ACTIONS(1715), + [aux_sym_cmd_identifier_token31] = ACTIONS(1715), + [aux_sym_cmd_identifier_token32] = ACTIONS(1715), + [aux_sym_cmd_identifier_token33] = ACTIONS(1715), + [aux_sym_cmd_identifier_token34] = ACTIONS(1715), + [aux_sym_cmd_identifier_token35] = ACTIONS(1715), + [aux_sym_cmd_identifier_token36] = ACTIONS(1715), + [anon_sym_true] = ACTIONS(1715), + [anon_sym_false] = ACTIONS(1715), + [anon_sym_null] = ACTIONS(1715), + [aux_sym_cmd_identifier_token38] = ACTIONS(1715), + [aux_sym_cmd_identifier_token39] = ACTIONS(1715), + [aux_sym_cmd_identifier_token40] = ACTIONS(1715), + [anon_sym_def] = ACTIONS(1715), + [anon_sym_export_DASHenv] = ACTIONS(1715), + [anon_sym_extern] = ACTIONS(1715), + [anon_sym_module] = ACTIONS(1715), + [anon_sym_use] = ACTIONS(1715), + [anon_sym_LPAREN] = ACTIONS(1715), + [anon_sym_DOLLAR] = ACTIONS(1715), + [anon_sym_error] = ACTIONS(1715), + [anon_sym_list] = ACTIONS(1715), + [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_break] = ACTIONS(1715), + [anon_sym_continue] = ACTIONS(1715), + [anon_sym_for] = ACTIONS(1715), + [anon_sym_in] = ACTIONS(1715), + [anon_sym_loop] = ACTIONS(1715), + [anon_sym_make] = ACTIONS(1715), + [anon_sym_while] = ACTIONS(1715), + [anon_sym_do] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1715), + [anon_sym_else] = ACTIONS(1715), + [anon_sym_match] = ACTIONS(1715), + [anon_sym_RBRACE] = ACTIONS(1715), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_catch] = ACTIONS(1715), + [anon_sym_return] = ACTIONS(1715), + [anon_sym_source] = ACTIONS(1715), + [anon_sym_source_DASHenv] = ACTIONS(1715), + [anon_sym_register] = ACTIONS(1715), + [anon_sym_hide] = ACTIONS(1715), + [anon_sym_hide_DASHenv] = ACTIONS(1715), + [anon_sym_overlay] = ACTIONS(1715), + [anon_sym_new] = ACTIONS(1715), + [anon_sym_as] = ACTIONS(1715), + [anon_sym_LPAREN2] = ACTIONS(1717), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1715), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1715), + [aux_sym__val_number_decimal_token1] = ACTIONS(1715), + [aux_sym__val_number_decimal_token2] = ACTIONS(1715), + [aux_sym__val_number_decimal_token3] = ACTIONS(1715), + [aux_sym__val_number_decimal_token4] = ACTIONS(1715), + [aux_sym__val_number_token1] = ACTIONS(1715), + [aux_sym__val_number_token2] = ACTIONS(1715), + [aux_sym__val_number_token3] = ACTIONS(1715), + [anon_sym_DQUOTE] = ACTIONS(1715), + [sym__str_single_quotes] = ACTIONS(1715), + [sym__str_back_ticks] = ACTIONS(1715), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1715), + [sym__entry_separator] = ACTIONS(1717), + [anon_sym_PLUS] = ACTIONS(1715), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1715), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1717), }, - [529] = { - [sym_comment] = STATE(529), - [anon_sym_export] = ACTIONS(1667), - [anon_sym_alias] = ACTIONS(1667), - [anon_sym_let] = ACTIONS(1667), - [anon_sym_let_DASHenv] = ACTIONS(1667), - [anon_sym_mut] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1667), - [aux_sym_cmd_identifier_token1] = ACTIONS(1667), - [aux_sym_cmd_identifier_token2] = ACTIONS(1667), - [aux_sym_cmd_identifier_token3] = ACTIONS(1667), - [aux_sym_cmd_identifier_token4] = ACTIONS(1667), - [aux_sym_cmd_identifier_token5] = ACTIONS(1667), - [aux_sym_cmd_identifier_token6] = ACTIONS(1667), - [aux_sym_cmd_identifier_token7] = ACTIONS(1667), - [aux_sym_cmd_identifier_token8] = ACTIONS(1667), - [aux_sym_cmd_identifier_token9] = ACTIONS(1667), - [aux_sym_cmd_identifier_token10] = ACTIONS(1667), - [aux_sym_cmd_identifier_token11] = ACTIONS(1667), - [aux_sym_cmd_identifier_token12] = ACTIONS(1667), - [aux_sym_cmd_identifier_token13] = ACTIONS(1667), - [aux_sym_cmd_identifier_token14] = ACTIONS(1667), - [aux_sym_cmd_identifier_token15] = ACTIONS(1667), - [aux_sym_cmd_identifier_token16] = ACTIONS(1667), - [aux_sym_cmd_identifier_token17] = ACTIONS(1667), - [aux_sym_cmd_identifier_token18] = ACTIONS(1667), - [aux_sym_cmd_identifier_token19] = ACTIONS(1667), - [aux_sym_cmd_identifier_token20] = ACTIONS(1667), - [aux_sym_cmd_identifier_token21] = ACTIONS(1667), - [aux_sym_cmd_identifier_token22] = ACTIONS(1667), - [aux_sym_cmd_identifier_token23] = ACTIONS(1667), - [aux_sym_cmd_identifier_token24] = ACTIONS(1667), - [aux_sym_cmd_identifier_token25] = ACTIONS(1667), - [aux_sym_cmd_identifier_token26] = ACTIONS(1667), - [aux_sym_cmd_identifier_token27] = ACTIONS(1667), - [aux_sym_cmd_identifier_token28] = ACTIONS(1667), - [aux_sym_cmd_identifier_token29] = ACTIONS(1667), - [aux_sym_cmd_identifier_token30] = ACTIONS(1667), - [aux_sym_cmd_identifier_token31] = ACTIONS(1667), - [aux_sym_cmd_identifier_token32] = ACTIONS(1667), - [aux_sym_cmd_identifier_token33] = ACTIONS(1667), - [aux_sym_cmd_identifier_token34] = ACTIONS(1667), - [aux_sym_cmd_identifier_token35] = ACTIONS(1667), - [aux_sym_cmd_identifier_token36] = ACTIONS(1667), - [anon_sym_true] = ACTIONS(1669), - [anon_sym_false] = ACTIONS(1669), - [anon_sym_null] = ACTIONS(1669), - [aux_sym_cmd_identifier_token38] = ACTIONS(1667), - [aux_sym_cmd_identifier_token39] = ACTIONS(1669), - [aux_sym_cmd_identifier_token40] = ACTIONS(1669), - [anon_sym_def] = ACTIONS(1667), - [anon_sym_export_DASHenv] = ACTIONS(1667), - [anon_sym_extern] = ACTIONS(1667), - [anon_sym_module] = ACTIONS(1667), - [anon_sym_use] = ACTIONS(1667), - [anon_sym_LPAREN] = ACTIONS(1669), - [anon_sym_DOLLAR] = ACTIONS(1669), - [anon_sym_error] = ACTIONS(1667), - [anon_sym_list] = ACTIONS(1667), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_break] = ACTIONS(1667), - [anon_sym_continue] = ACTIONS(1667), - [anon_sym_for] = ACTIONS(1667), - [anon_sym_in] = ACTIONS(1667), - [anon_sym_loop] = ACTIONS(1667), - [anon_sym_make] = ACTIONS(1667), - [anon_sym_while] = ACTIONS(1667), - [anon_sym_do] = ACTIONS(1667), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_else] = ACTIONS(1667), - [anon_sym_match] = ACTIONS(1667), - [anon_sym_RBRACE] = ACTIONS(1669), - [anon_sym_try] = ACTIONS(1667), - [anon_sym_catch] = ACTIONS(1667), - [anon_sym_return] = ACTIONS(1667), - [anon_sym_source] = ACTIONS(1667), - [anon_sym_source_DASHenv] = ACTIONS(1667), - [anon_sym_register] = ACTIONS(1667), - [anon_sym_hide] = ACTIONS(1667), - [anon_sym_hide_DASHenv] = ACTIONS(1667), - [anon_sym_overlay] = ACTIONS(1667), - [anon_sym_new] = ACTIONS(1667), - [anon_sym_as] = ACTIONS(1667), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1669), - [anon_sym_DOT] = ACTIONS(2372), - [aux_sym__immediate_decimal_token2] = ACTIONS(2374), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1669), - [aux_sym__val_number_decimal_token1] = ACTIONS(1667), - [aux_sym__val_number_decimal_token2] = ACTIONS(1669), - [aux_sym__val_number_decimal_token3] = ACTIONS(1669), - [aux_sym__val_number_decimal_token4] = ACTIONS(1669), - [aux_sym__val_number_token1] = ACTIONS(1669), - [aux_sym__val_number_token2] = ACTIONS(1669), - [aux_sym__val_number_token3] = ACTIONS(1669), - [anon_sym_DQUOTE] = ACTIONS(1669), - [sym__str_single_quotes] = ACTIONS(1669), - [sym__str_back_ticks] = ACTIONS(1669), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1669), - [anon_sym_PLUS] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(247), + [454] = { + [sym_comment] = STATE(454), + [anon_sym_export] = ACTIONS(1090), + [anon_sym_alias] = ACTIONS(1090), + [anon_sym_let] = ACTIONS(1090), + [anon_sym_let_DASHenv] = ACTIONS(1090), + [anon_sym_mut] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [aux_sym_cmd_identifier_token1] = ACTIONS(1090), + [aux_sym_cmd_identifier_token2] = ACTIONS(1090), + [aux_sym_cmd_identifier_token3] = ACTIONS(1090), + [aux_sym_cmd_identifier_token4] = ACTIONS(1090), + [aux_sym_cmd_identifier_token5] = ACTIONS(1090), + [aux_sym_cmd_identifier_token6] = ACTIONS(1090), + [aux_sym_cmd_identifier_token7] = ACTIONS(1090), + [aux_sym_cmd_identifier_token8] = ACTIONS(1090), + [aux_sym_cmd_identifier_token9] = ACTIONS(1090), + [aux_sym_cmd_identifier_token10] = ACTIONS(1090), + [aux_sym_cmd_identifier_token11] = ACTIONS(1090), + [aux_sym_cmd_identifier_token12] = ACTIONS(1090), + [aux_sym_cmd_identifier_token13] = ACTIONS(1090), + [aux_sym_cmd_identifier_token14] = ACTIONS(1090), + [aux_sym_cmd_identifier_token15] = ACTIONS(1090), + [aux_sym_cmd_identifier_token16] = ACTIONS(1090), + [aux_sym_cmd_identifier_token17] = ACTIONS(1090), + [aux_sym_cmd_identifier_token18] = ACTIONS(1090), + [aux_sym_cmd_identifier_token19] = ACTIONS(1090), + [aux_sym_cmd_identifier_token20] = ACTIONS(1090), + [aux_sym_cmd_identifier_token21] = ACTIONS(1090), + [aux_sym_cmd_identifier_token22] = ACTIONS(1090), + [aux_sym_cmd_identifier_token23] = ACTIONS(1090), + [aux_sym_cmd_identifier_token24] = ACTIONS(1090), + [aux_sym_cmd_identifier_token25] = ACTIONS(1090), + [aux_sym_cmd_identifier_token26] = ACTIONS(1090), + [aux_sym_cmd_identifier_token27] = ACTIONS(1090), + [aux_sym_cmd_identifier_token28] = ACTIONS(1090), + [aux_sym_cmd_identifier_token29] = ACTIONS(1090), + [aux_sym_cmd_identifier_token30] = ACTIONS(1090), + [aux_sym_cmd_identifier_token31] = ACTIONS(1090), + [aux_sym_cmd_identifier_token32] = ACTIONS(1090), + [aux_sym_cmd_identifier_token33] = ACTIONS(1090), + [aux_sym_cmd_identifier_token34] = ACTIONS(1090), + [aux_sym_cmd_identifier_token35] = ACTIONS(1090), + [aux_sym_cmd_identifier_token36] = ACTIONS(1090), + [anon_sym_true] = ACTIONS(1092), + [anon_sym_false] = ACTIONS(1092), + [anon_sym_null] = ACTIONS(1092), + [aux_sym_cmd_identifier_token38] = ACTIONS(1090), + [aux_sym_cmd_identifier_token39] = ACTIONS(1092), + [aux_sym_cmd_identifier_token40] = ACTIONS(1092), + [anon_sym_def] = ACTIONS(1090), + [anon_sym_export_DASHenv] = ACTIONS(1090), + [anon_sym_extern] = ACTIONS(1090), + [anon_sym_module] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1090), + [anon_sym_LPAREN] = ACTIONS(1092), + [anon_sym_DOLLAR] = ACTIONS(1092), + [anon_sym_error] = ACTIONS(1090), + [anon_sym_list] = ACTIONS(1090), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_break] = ACTIONS(1090), + [anon_sym_continue] = ACTIONS(1090), + [anon_sym_for] = ACTIONS(1090), + [anon_sym_in] = ACTIONS(1090), + [anon_sym_loop] = ACTIONS(1090), + [anon_sym_make] = ACTIONS(1090), + [anon_sym_while] = ACTIONS(1090), + [anon_sym_do] = ACTIONS(1090), + [anon_sym_if] = ACTIONS(1090), + [anon_sym_else] = ACTIONS(1090), + [anon_sym_match] = ACTIONS(1090), + [anon_sym_RBRACE] = ACTIONS(1092), + [anon_sym_try] = ACTIONS(1090), + [anon_sym_catch] = ACTIONS(1090), + [anon_sym_return] = ACTIONS(1090), + [anon_sym_source] = ACTIONS(1090), + [anon_sym_source_DASHenv] = ACTIONS(1090), + [anon_sym_register] = ACTIONS(1090), + [anon_sym_hide] = ACTIONS(1090), + [anon_sym_hide_DASHenv] = ACTIONS(1090), + [anon_sym_overlay] = ACTIONS(1090), + [anon_sym_new] = ACTIONS(1090), + [anon_sym_as] = ACTIONS(1090), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1092), + [anon_sym_DOT_DOT2] = ACTIONS(2254), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2256), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2256), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1092), + [aux_sym__val_number_decimal_token1] = ACTIONS(1090), + [aux_sym__val_number_decimal_token2] = ACTIONS(1092), + [aux_sym__val_number_decimal_token3] = ACTIONS(1092), + [aux_sym__val_number_decimal_token4] = ACTIONS(1092), + [aux_sym__val_number_token1] = ACTIONS(1092), + [aux_sym__val_number_token2] = ACTIONS(1092), + [aux_sym__val_number_token3] = ACTIONS(1092), + [anon_sym_DQUOTE] = ACTIONS(1092), + [sym__str_single_quotes] = ACTIONS(1092), + [sym__str_back_ticks] = ACTIONS(1092), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1092), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1092), }, - [530] = { - [sym_comment] = STATE(530), - [anon_sym_export] = ACTIONS(2376), - [anon_sym_alias] = ACTIONS(2376), - [anon_sym_let] = ACTIONS(2376), - [anon_sym_let_DASHenv] = ACTIONS(2376), - [anon_sym_mut] = ACTIONS(2376), - [anon_sym_const] = ACTIONS(2376), - [aux_sym_cmd_identifier_token1] = ACTIONS(2376), - [aux_sym_cmd_identifier_token2] = ACTIONS(2376), - [aux_sym_cmd_identifier_token3] = ACTIONS(2376), - [aux_sym_cmd_identifier_token4] = ACTIONS(2376), - [aux_sym_cmd_identifier_token5] = ACTIONS(2376), - [aux_sym_cmd_identifier_token6] = ACTIONS(2376), - [aux_sym_cmd_identifier_token7] = ACTIONS(2376), - [aux_sym_cmd_identifier_token8] = ACTIONS(2376), - [aux_sym_cmd_identifier_token9] = ACTIONS(2376), - [aux_sym_cmd_identifier_token10] = ACTIONS(2376), - [aux_sym_cmd_identifier_token11] = ACTIONS(2376), - [aux_sym_cmd_identifier_token12] = ACTIONS(2376), - [aux_sym_cmd_identifier_token13] = ACTIONS(2376), - [aux_sym_cmd_identifier_token14] = ACTIONS(2376), - [aux_sym_cmd_identifier_token15] = ACTIONS(2376), - [aux_sym_cmd_identifier_token16] = ACTIONS(2376), - [aux_sym_cmd_identifier_token17] = ACTIONS(2376), - [aux_sym_cmd_identifier_token18] = ACTIONS(2376), - [aux_sym_cmd_identifier_token19] = ACTIONS(2376), - [aux_sym_cmd_identifier_token20] = ACTIONS(2376), - [aux_sym_cmd_identifier_token21] = ACTIONS(2376), - [aux_sym_cmd_identifier_token22] = ACTIONS(2376), - [aux_sym_cmd_identifier_token23] = ACTIONS(2376), - [aux_sym_cmd_identifier_token24] = ACTIONS(2376), - [aux_sym_cmd_identifier_token25] = ACTIONS(2376), - [aux_sym_cmd_identifier_token26] = ACTIONS(2376), - [aux_sym_cmd_identifier_token27] = ACTIONS(2376), - [aux_sym_cmd_identifier_token28] = ACTIONS(2376), - [aux_sym_cmd_identifier_token29] = ACTIONS(2376), - [aux_sym_cmd_identifier_token30] = ACTIONS(2376), - [aux_sym_cmd_identifier_token31] = ACTIONS(2376), - [aux_sym_cmd_identifier_token32] = ACTIONS(2376), - [aux_sym_cmd_identifier_token33] = ACTIONS(2376), - [aux_sym_cmd_identifier_token34] = ACTIONS(2376), - [aux_sym_cmd_identifier_token35] = ACTIONS(2376), - [aux_sym_cmd_identifier_token36] = ACTIONS(2376), - [anon_sym_true] = ACTIONS(2376), - [anon_sym_false] = ACTIONS(2376), - [anon_sym_null] = ACTIONS(2376), - [aux_sym_cmd_identifier_token38] = ACTIONS(2376), - [aux_sym_cmd_identifier_token39] = ACTIONS(2376), - [aux_sym_cmd_identifier_token40] = ACTIONS(2376), - [anon_sym_def] = ACTIONS(2376), - [anon_sym_export_DASHenv] = ACTIONS(2376), - [anon_sym_extern] = ACTIONS(2376), - [anon_sym_module] = ACTIONS(2376), - [anon_sym_use] = ACTIONS(2376), - [anon_sym_LPAREN] = ACTIONS(2376), - [anon_sym_DOLLAR] = ACTIONS(2376), - [anon_sym_error] = ACTIONS(2376), - [anon_sym_list] = ACTIONS(2376), - [anon_sym_DASH] = ACTIONS(2376), - [anon_sym_break] = ACTIONS(2376), - [anon_sym_continue] = ACTIONS(2376), - [anon_sym_for] = ACTIONS(2376), - [anon_sym_in] = ACTIONS(2376), - [anon_sym_loop] = ACTIONS(2376), - [anon_sym_make] = ACTIONS(2376), - [anon_sym_while] = ACTIONS(2376), - [anon_sym_do] = ACTIONS(2376), - [anon_sym_if] = ACTIONS(2376), - [anon_sym_else] = ACTIONS(2376), - [anon_sym_match] = ACTIONS(2376), - [anon_sym_RBRACE] = ACTIONS(2376), - [anon_sym_try] = ACTIONS(2376), - [anon_sym_catch] = ACTIONS(2376), - [anon_sym_return] = ACTIONS(2376), - [anon_sym_source] = ACTIONS(2376), - [anon_sym_source_DASHenv] = ACTIONS(2376), - [anon_sym_register] = ACTIONS(2376), - [anon_sym_hide] = ACTIONS(2376), - [anon_sym_hide_DASHenv] = ACTIONS(2376), - [anon_sym_overlay] = ACTIONS(2376), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_as] = ACTIONS(2376), - [anon_sym_LPAREN2] = ACTIONS(2378), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2376), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2376), - [aux_sym__val_number_decimal_token1] = ACTIONS(2376), - [aux_sym__val_number_decimal_token2] = ACTIONS(2376), - [aux_sym__val_number_decimal_token3] = ACTIONS(2376), - [aux_sym__val_number_decimal_token4] = ACTIONS(2376), - [aux_sym__val_number_token1] = ACTIONS(2376), - [aux_sym__val_number_token2] = ACTIONS(2376), - [aux_sym__val_number_token3] = ACTIONS(2376), - [anon_sym_DQUOTE] = ACTIONS(2376), - [sym__str_single_quotes] = ACTIONS(2376), - [sym__str_back_ticks] = ACTIONS(2376), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2376), - [sym__entry_separator] = ACTIONS(2378), - [anon_sym_PLUS] = ACTIONS(2376), + [455] = { + [sym_comment] = STATE(455), + [anon_sym_export] = ACTIONS(1703), + [anon_sym_alias] = ACTIONS(1703), + [anon_sym_let] = ACTIONS(1703), + [anon_sym_let_DASHenv] = ACTIONS(1703), + [anon_sym_mut] = ACTIONS(1703), + [anon_sym_const] = ACTIONS(1703), + [aux_sym_cmd_identifier_token1] = ACTIONS(1703), + [aux_sym_cmd_identifier_token2] = ACTIONS(1703), + [aux_sym_cmd_identifier_token3] = ACTIONS(1703), + [aux_sym_cmd_identifier_token4] = ACTIONS(1703), + [aux_sym_cmd_identifier_token5] = ACTIONS(1703), + [aux_sym_cmd_identifier_token6] = ACTIONS(1703), + [aux_sym_cmd_identifier_token7] = ACTIONS(1703), + [aux_sym_cmd_identifier_token8] = ACTIONS(1703), + [aux_sym_cmd_identifier_token9] = ACTIONS(1703), + [aux_sym_cmd_identifier_token10] = ACTIONS(1703), + [aux_sym_cmd_identifier_token11] = ACTIONS(1703), + [aux_sym_cmd_identifier_token12] = ACTIONS(1703), + [aux_sym_cmd_identifier_token13] = ACTIONS(1703), + [aux_sym_cmd_identifier_token14] = ACTIONS(1703), + [aux_sym_cmd_identifier_token15] = ACTIONS(1703), + [aux_sym_cmd_identifier_token16] = ACTIONS(1703), + [aux_sym_cmd_identifier_token17] = ACTIONS(1703), + [aux_sym_cmd_identifier_token18] = ACTIONS(1703), + [aux_sym_cmd_identifier_token19] = ACTIONS(1703), + [aux_sym_cmd_identifier_token20] = ACTIONS(1703), + [aux_sym_cmd_identifier_token21] = ACTIONS(1703), + [aux_sym_cmd_identifier_token22] = ACTIONS(1703), + [aux_sym_cmd_identifier_token23] = ACTIONS(1703), + [aux_sym_cmd_identifier_token24] = ACTIONS(1703), + [aux_sym_cmd_identifier_token25] = ACTIONS(1703), + [aux_sym_cmd_identifier_token26] = ACTIONS(1703), + [aux_sym_cmd_identifier_token27] = ACTIONS(1703), + [aux_sym_cmd_identifier_token28] = ACTIONS(1703), + [aux_sym_cmd_identifier_token29] = ACTIONS(1703), + [aux_sym_cmd_identifier_token30] = ACTIONS(1703), + [aux_sym_cmd_identifier_token31] = ACTIONS(1703), + [aux_sym_cmd_identifier_token32] = ACTIONS(1703), + [aux_sym_cmd_identifier_token33] = ACTIONS(1703), + [aux_sym_cmd_identifier_token34] = ACTIONS(1703), + [aux_sym_cmd_identifier_token35] = ACTIONS(1703), + [aux_sym_cmd_identifier_token36] = ACTIONS(1703), + [anon_sym_true] = ACTIONS(1703), + [anon_sym_false] = ACTIONS(1703), + [anon_sym_null] = ACTIONS(1703), + [aux_sym_cmd_identifier_token38] = ACTIONS(1703), + [aux_sym_cmd_identifier_token39] = ACTIONS(1703), + [aux_sym_cmd_identifier_token40] = ACTIONS(1703), + [anon_sym_def] = ACTIONS(1703), + [anon_sym_export_DASHenv] = ACTIONS(1703), + [anon_sym_extern] = ACTIONS(1703), + [anon_sym_module] = ACTIONS(1703), + [anon_sym_use] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1703), + [anon_sym_error] = ACTIONS(1703), + [anon_sym_list] = ACTIONS(1703), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_break] = ACTIONS(1703), + [anon_sym_continue] = ACTIONS(1703), + [anon_sym_for] = ACTIONS(1703), + [anon_sym_in] = ACTIONS(1703), + [anon_sym_loop] = ACTIONS(1703), + [anon_sym_make] = ACTIONS(1703), + [anon_sym_while] = ACTIONS(1703), + [anon_sym_do] = ACTIONS(1703), + [anon_sym_if] = ACTIONS(1703), + [anon_sym_else] = ACTIONS(1703), + [anon_sym_match] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1703), + [anon_sym_try] = ACTIONS(1703), + [anon_sym_catch] = ACTIONS(1703), + [anon_sym_return] = ACTIONS(1703), + [anon_sym_source] = ACTIONS(1703), + [anon_sym_source_DASHenv] = ACTIONS(1703), + [anon_sym_register] = ACTIONS(1703), + [anon_sym_hide] = ACTIONS(1703), + [anon_sym_hide_DASHenv] = ACTIONS(1703), + [anon_sym_overlay] = ACTIONS(1703), + [anon_sym_new] = ACTIONS(1703), + [anon_sym_as] = ACTIONS(1703), + [anon_sym_LPAREN2] = ACTIONS(1705), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1703), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1703), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1703), + [sym__entry_separator] = ACTIONS(1705), + [anon_sym_PLUS] = ACTIONS(1703), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1703), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1705), }, - [531] = { - [sym_comment] = STATE(531), - [anon_sym_export] = ACTIONS(2380), - [anon_sym_alias] = ACTIONS(2380), - [anon_sym_let] = ACTIONS(2380), - [anon_sym_let_DASHenv] = ACTIONS(2380), - [anon_sym_mut] = ACTIONS(2380), - [anon_sym_const] = ACTIONS(2380), - [aux_sym_cmd_identifier_token1] = ACTIONS(2380), - [aux_sym_cmd_identifier_token2] = ACTIONS(2380), - [aux_sym_cmd_identifier_token3] = ACTIONS(2380), - [aux_sym_cmd_identifier_token4] = ACTIONS(2380), - [aux_sym_cmd_identifier_token5] = ACTIONS(2380), - [aux_sym_cmd_identifier_token6] = ACTIONS(2380), - [aux_sym_cmd_identifier_token7] = ACTIONS(2380), - [aux_sym_cmd_identifier_token8] = ACTIONS(2380), - [aux_sym_cmd_identifier_token9] = ACTIONS(2380), - [aux_sym_cmd_identifier_token10] = ACTIONS(2380), - [aux_sym_cmd_identifier_token11] = ACTIONS(2380), - [aux_sym_cmd_identifier_token12] = ACTIONS(2380), - [aux_sym_cmd_identifier_token13] = ACTIONS(2380), - [aux_sym_cmd_identifier_token14] = ACTIONS(2380), - [aux_sym_cmd_identifier_token15] = ACTIONS(2380), - [aux_sym_cmd_identifier_token16] = ACTIONS(2380), - [aux_sym_cmd_identifier_token17] = ACTIONS(2380), - [aux_sym_cmd_identifier_token18] = ACTIONS(2380), - [aux_sym_cmd_identifier_token19] = ACTIONS(2380), - [aux_sym_cmd_identifier_token20] = ACTIONS(2380), - [aux_sym_cmd_identifier_token21] = ACTIONS(2380), - [aux_sym_cmd_identifier_token22] = ACTIONS(2380), - [aux_sym_cmd_identifier_token23] = ACTIONS(2380), - [aux_sym_cmd_identifier_token24] = ACTIONS(2380), - [aux_sym_cmd_identifier_token25] = ACTIONS(2380), - [aux_sym_cmd_identifier_token26] = ACTIONS(2380), - [aux_sym_cmd_identifier_token27] = ACTIONS(2380), - [aux_sym_cmd_identifier_token28] = ACTIONS(2380), - [aux_sym_cmd_identifier_token29] = ACTIONS(2380), - [aux_sym_cmd_identifier_token30] = ACTIONS(2380), - [aux_sym_cmd_identifier_token31] = ACTIONS(2380), - [aux_sym_cmd_identifier_token32] = ACTIONS(2380), - [aux_sym_cmd_identifier_token33] = ACTIONS(2380), - [aux_sym_cmd_identifier_token34] = ACTIONS(2380), - [aux_sym_cmd_identifier_token35] = ACTIONS(2380), - [aux_sym_cmd_identifier_token36] = ACTIONS(2380), - [anon_sym_true] = ACTIONS(2380), - [anon_sym_false] = ACTIONS(2380), - [anon_sym_null] = ACTIONS(2380), - [aux_sym_cmd_identifier_token38] = ACTIONS(2380), - [aux_sym_cmd_identifier_token39] = ACTIONS(2380), - [aux_sym_cmd_identifier_token40] = ACTIONS(2380), - [anon_sym_def] = ACTIONS(2380), - [anon_sym_export_DASHenv] = ACTIONS(2380), - [anon_sym_extern] = ACTIONS(2380), - [anon_sym_module] = ACTIONS(2380), - [anon_sym_use] = ACTIONS(2380), - [anon_sym_RBRACK] = ACTIONS(2380), - [anon_sym_LPAREN] = ACTIONS(2380), - [anon_sym_DOLLAR] = ACTIONS(2380), - [anon_sym_error] = ACTIONS(2380), - [anon_sym_list] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_break] = ACTIONS(2380), - [anon_sym_continue] = ACTIONS(2380), - [anon_sym_for] = ACTIONS(2380), - [anon_sym_in] = ACTIONS(2380), - [anon_sym_loop] = ACTIONS(2380), - [anon_sym_make] = ACTIONS(2380), - [anon_sym_while] = ACTIONS(2380), - [anon_sym_do] = ACTIONS(2380), - [anon_sym_if] = ACTIONS(2380), - [anon_sym_else] = ACTIONS(2380), - [anon_sym_match] = ACTIONS(2380), - [anon_sym_RBRACE] = ACTIONS(2380), - [anon_sym_try] = ACTIONS(2380), - [anon_sym_catch] = ACTIONS(2380), - [anon_sym_return] = ACTIONS(2380), - [anon_sym_source] = ACTIONS(2380), - [anon_sym_source_DASHenv] = ACTIONS(2380), - [anon_sym_register] = ACTIONS(2380), - [anon_sym_hide] = ACTIONS(2380), - [anon_sym_hide_DASHenv] = ACTIONS(2380), - [anon_sym_overlay] = ACTIONS(2380), - [anon_sym_new] = ACTIONS(2380), - [anon_sym_as] = ACTIONS(2380), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2380), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2380), - [aux_sym__val_number_decimal_token1] = ACTIONS(2380), - [aux_sym__val_number_decimal_token2] = ACTIONS(2380), - [aux_sym__val_number_decimal_token3] = ACTIONS(2380), - [aux_sym__val_number_decimal_token4] = ACTIONS(2380), - [aux_sym__val_number_token1] = ACTIONS(2380), - [aux_sym__val_number_token2] = ACTIONS(2380), - [aux_sym__val_number_token3] = ACTIONS(2380), - [anon_sym_DQUOTE] = ACTIONS(2380), - [sym__str_single_quotes] = ACTIONS(2380), - [sym__str_back_ticks] = ACTIONS(2380), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2380), - [sym__entry_separator] = ACTIONS(2382), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_POUND] = ACTIONS(3), + [456] = { + [sym_path] = STATE(631), + [sym_comment] = STATE(456), + [aux_sym_cell_path_repeat1] = STATE(466), + [anon_sym_export] = ACTIONS(1027), + [anon_sym_alias] = ACTIONS(1027), + [anon_sym_let] = ACTIONS(1027), + [anon_sym_let_DASHenv] = ACTIONS(1027), + [anon_sym_mut] = ACTIONS(1027), + [anon_sym_const] = ACTIONS(1027), + [aux_sym_cmd_identifier_token1] = ACTIONS(1027), + [aux_sym_cmd_identifier_token2] = ACTIONS(1027), + [aux_sym_cmd_identifier_token3] = ACTIONS(1027), + [aux_sym_cmd_identifier_token4] = ACTIONS(1027), + [aux_sym_cmd_identifier_token5] = ACTIONS(1027), + [aux_sym_cmd_identifier_token6] = ACTIONS(1027), + [aux_sym_cmd_identifier_token7] = ACTIONS(1027), + [aux_sym_cmd_identifier_token8] = ACTIONS(1027), + [aux_sym_cmd_identifier_token9] = ACTIONS(1027), + [aux_sym_cmd_identifier_token10] = ACTIONS(1027), + [aux_sym_cmd_identifier_token11] = ACTIONS(1027), + [aux_sym_cmd_identifier_token12] = ACTIONS(1027), + [aux_sym_cmd_identifier_token13] = ACTIONS(1027), + [aux_sym_cmd_identifier_token14] = ACTIONS(1027), + [aux_sym_cmd_identifier_token15] = ACTIONS(1027), + [aux_sym_cmd_identifier_token16] = ACTIONS(1027), + [aux_sym_cmd_identifier_token17] = ACTIONS(1027), + [aux_sym_cmd_identifier_token18] = ACTIONS(1027), + [aux_sym_cmd_identifier_token19] = ACTIONS(1027), + [aux_sym_cmd_identifier_token20] = ACTIONS(1027), + [aux_sym_cmd_identifier_token21] = ACTIONS(1027), + [aux_sym_cmd_identifier_token22] = ACTIONS(1027), + [aux_sym_cmd_identifier_token23] = ACTIONS(1027), + [aux_sym_cmd_identifier_token24] = ACTIONS(1027), + [aux_sym_cmd_identifier_token25] = ACTIONS(1027), + [aux_sym_cmd_identifier_token26] = ACTIONS(1027), + [aux_sym_cmd_identifier_token27] = ACTIONS(1027), + [aux_sym_cmd_identifier_token28] = ACTIONS(1027), + [aux_sym_cmd_identifier_token29] = ACTIONS(1027), + [aux_sym_cmd_identifier_token30] = ACTIONS(1027), + [aux_sym_cmd_identifier_token31] = ACTIONS(1027), + [aux_sym_cmd_identifier_token32] = ACTIONS(1027), + [aux_sym_cmd_identifier_token33] = ACTIONS(1027), + [aux_sym_cmd_identifier_token34] = ACTIONS(1027), + [aux_sym_cmd_identifier_token35] = ACTIONS(1027), + [aux_sym_cmd_identifier_token36] = ACTIONS(1027), + [anon_sym_true] = ACTIONS(1029), + [anon_sym_false] = ACTIONS(1029), + [anon_sym_null] = ACTIONS(1029), + [aux_sym_cmd_identifier_token38] = ACTIONS(1027), + [aux_sym_cmd_identifier_token39] = ACTIONS(1029), + [aux_sym_cmd_identifier_token40] = ACTIONS(1029), + [anon_sym_def] = ACTIONS(1027), + [anon_sym_export_DASHenv] = ACTIONS(1027), + [anon_sym_extern] = ACTIONS(1027), + [anon_sym_module] = ACTIONS(1027), + [anon_sym_use] = ACTIONS(1027), + [anon_sym_LPAREN] = ACTIONS(1029), + [anon_sym_DOLLAR] = ACTIONS(1029), + [anon_sym_error] = ACTIONS(1027), + [anon_sym_list] = ACTIONS(1027), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_break] = ACTIONS(1027), + [anon_sym_continue] = ACTIONS(1027), + [anon_sym_for] = ACTIONS(1027), + [anon_sym_in] = ACTIONS(1027), + [anon_sym_loop] = ACTIONS(1027), + [anon_sym_make] = ACTIONS(1027), + [anon_sym_while] = ACTIONS(1027), + [anon_sym_do] = ACTIONS(1027), + [anon_sym_if] = ACTIONS(1027), + [anon_sym_else] = ACTIONS(1027), + [anon_sym_match] = ACTIONS(1027), + [anon_sym_RBRACE] = ACTIONS(1029), + [anon_sym_try] = ACTIONS(1027), + [anon_sym_catch] = ACTIONS(1027), + [anon_sym_return] = ACTIONS(1027), + [anon_sym_source] = ACTIONS(1027), + [anon_sym_source_DASHenv] = ACTIONS(1027), + [anon_sym_register] = ACTIONS(1027), + [anon_sym_hide] = ACTIONS(1027), + [anon_sym_hide_DASHenv] = ACTIONS(1027), + [anon_sym_overlay] = ACTIONS(1027), + [anon_sym_new] = ACTIONS(1027), + [anon_sym_as] = ACTIONS(1027), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1029), + [anon_sym_DOT] = ACTIONS(2177), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1029), + [aux_sym__val_number_decimal_token1] = ACTIONS(1027), + [aux_sym__val_number_decimal_token2] = ACTIONS(1029), + [aux_sym__val_number_decimal_token3] = ACTIONS(1029), + [aux_sym__val_number_decimal_token4] = ACTIONS(1029), + [aux_sym__val_number_token1] = ACTIONS(1029), + [aux_sym__val_number_token2] = ACTIONS(1029), + [aux_sym__val_number_token3] = ACTIONS(1029), + [anon_sym_DQUOTE] = ACTIONS(1029), + [sym__str_single_quotes] = ACTIONS(1029), + [sym__str_back_ticks] = ACTIONS(1029), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1029), + [anon_sym_PLUS] = ACTIONS(1027), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1029), }, - [532] = { - [sym_comment] = STATE(532), - [anon_sym_export] = ACTIONS(2384), - [anon_sym_alias] = ACTIONS(2384), - [anon_sym_let] = ACTIONS(2384), - [anon_sym_let_DASHenv] = ACTIONS(2384), - [anon_sym_mut] = ACTIONS(2384), - [anon_sym_const] = ACTIONS(2384), - [aux_sym_cmd_identifier_token1] = ACTIONS(2384), - [aux_sym_cmd_identifier_token2] = ACTIONS(2384), - [aux_sym_cmd_identifier_token3] = ACTIONS(2384), - [aux_sym_cmd_identifier_token4] = ACTIONS(2384), - [aux_sym_cmd_identifier_token5] = ACTIONS(2384), - [aux_sym_cmd_identifier_token6] = ACTIONS(2384), - [aux_sym_cmd_identifier_token7] = ACTIONS(2384), - [aux_sym_cmd_identifier_token8] = ACTIONS(2384), - [aux_sym_cmd_identifier_token9] = ACTIONS(2384), - [aux_sym_cmd_identifier_token10] = ACTIONS(2384), - [aux_sym_cmd_identifier_token11] = ACTIONS(2384), - [aux_sym_cmd_identifier_token12] = ACTIONS(2384), - [aux_sym_cmd_identifier_token13] = ACTIONS(2384), - [aux_sym_cmd_identifier_token14] = ACTIONS(2384), - [aux_sym_cmd_identifier_token15] = ACTIONS(2384), - [aux_sym_cmd_identifier_token16] = ACTIONS(2384), - [aux_sym_cmd_identifier_token17] = ACTIONS(2384), - [aux_sym_cmd_identifier_token18] = ACTIONS(2384), - [aux_sym_cmd_identifier_token19] = ACTIONS(2384), - [aux_sym_cmd_identifier_token20] = ACTIONS(2384), - [aux_sym_cmd_identifier_token21] = ACTIONS(2384), - [aux_sym_cmd_identifier_token22] = ACTIONS(2384), - [aux_sym_cmd_identifier_token23] = ACTIONS(2384), - [aux_sym_cmd_identifier_token24] = ACTIONS(2384), - [aux_sym_cmd_identifier_token25] = ACTIONS(2384), - [aux_sym_cmd_identifier_token26] = ACTIONS(2384), - [aux_sym_cmd_identifier_token27] = ACTIONS(2384), - [aux_sym_cmd_identifier_token28] = ACTIONS(2384), - [aux_sym_cmd_identifier_token29] = ACTIONS(2384), - [aux_sym_cmd_identifier_token30] = ACTIONS(2384), - [aux_sym_cmd_identifier_token31] = ACTIONS(2384), - [aux_sym_cmd_identifier_token32] = ACTIONS(2384), - [aux_sym_cmd_identifier_token33] = ACTIONS(2384), - [aux_sym_cmd_identifier_token34] = ACTIONS(2384), - [aux_sym_cmd_identifier_token35] = ACTIONS(2384), - [aux_sym_cmd_identifier_token36] = ACTIONS(2384), - [anon_sym_true] = ACTIONS(2384), - [anon_sym_false] = ACTIONS(2384), - [anon_sym_null] = ACTIONS(2384), - [aux_sym_cmd_identifier_token38] = ACTIONS(2384), - [aux_sym_cmd_identifier_token39] = ACTIONS(2384), - [aux_sym_cmd_identifier_token40] = ACTIONS(2384), - [anon_sym_def] = ACTIONS(2384), - [anon_sym_export_DASHenv] = ACTIONS(2384), - [anon_sym_extern] = ACTIONS(2384), - [anon_sym_module] = ACTIONS(2384), - [anon_sym_use] = ACTIONS(2384), - [anon_sym_RBRACK] = ACTIONS(2384), - [anon_sym_LPAREN] = ACTIONS(2384), - [anon_sym_DOLLAR] = ACTIONS(2384), - [anon_sym_error] = ACTIONS(2384), - [anon_sym_list] = ACTIONS(2384), - [anon_sym_DASH] = ACTIONS(2384), - [anon_sym_break] = ACTIONS(2384), - [anon_sym_continue] = ACTIONS(2384), - [anon_sym_for] = ACTIONS(2384), - [anon_sym_in] = ACTIONS(2384), - [anon_sym_loop] = ACTIONS(2384), - [anon_sym_make] = ACTIONS(2384), - [anon_sym_while] = ACTIONS(2384), - [anon_sym_do] = ACTIONS(2384), - [anon_sym_if] = ACTIONS(2384), - [anon_sym_else] = ACTIONS(2384), - [anon_sym_match] = ACTIONS(2384), - [anon_sym_RBRACE] = ACTIONS(2384), - [anon_sym_try] = ACTIONS(2384), - [anon_sym_catch] = ACTIONS(2384), - [anon_sym_return] = ACTIONS(2384), - [anon_sym_source] = ACTIONS(2384), - [anon_sym_source_DASHenv] = ACTIONS(2384), - [anon_sym_register] = ACTIONS(2384), - [anon_sym_hide] = ACTIONS(2384), - [anon_sym_hide_DASHenv] = ACTIONS(2384), - [anon_sym_overlay] = ACTIONS(2384), - [anon_sym_new] = ACTIONS(2384), - [anon_sym_as] = ACTIONS(2384), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2384), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2384), - [aux_sym__val_number_decimal_token1] = ACTIONS(2384), - [aux_sym__val_number_decimal_token2] = ACTIONS(2384), - [aux_sym__val_number_decimal_token3] = ACTIONS(2384), - [aux_sym__val_number_decimal_token4] = ACTIONS(2384), - [aux_sym__val_number_token1] = ACTIONS(2384), - [aux_sym__val_number_token2] = ACTIONS(2384), - [aux_sym__val_number_token3] = ACTIONS(2384), - [anon_sym_DQUOTE] = ACTIONS(2384), - [sym__str_single_quotes] = ACTIONS(2384), - [sym__str_back_ticks] = ACTIONS(2384), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2384), - [sym__entry_separator] = ACTIONS(2386), - [anon_sym_PLUS] = ACTIONS(2384), + [457] = { + [sym_comment] = STATE(457), + [anon_sym_export] = ACTIONS(1769), + [anon_sym_alias] = ACTIONS(1769), + [anon_sym_let] = ACTIONS(1769), + [anon_sym_let_DASHenv] = ACTIONS(1769), + [anon_sym_mut] = ACTIONS(1769), + [anon_sym_const] = ACTIONS(1769), + [aux_sym_cmd_identifier_token1] = ACTIONS(1769), + [aux_sym_cmd_identifier_token2] = ACTIONS(1769), + [aux_sym_cmd_identifier_token3] = ACTIONS(1769), + [aux_sym_cmd_identifier_token4] = ACTIONS(1769), + [aux_sym_cmd_identifier_token5] = ACTIONS(1769), + [aux_sym_cmd_identifier_token6] = ACTIONS(1769), + [aux_sym_cmd_identifier_token7] = ACTIONS(1769), + [aux_sym_cmd_identifier_token8] = ACTIONS(1769), + [aux_sym_cmd_identifier_token9] = ACTIONS(1769), + [aux_sym_cmd_identifier_token10] = ACTIONS(1769), + [aux_sym_cmd_identifier_token11] = ACTIONS(1769), + [aux_sym_cmd_identifier_token12] = ACTIONS(1769), + [aux_sym_cmd_identifier_token13] = ACTIONS(1769), + [aux_sym_cmd_identifier_token14] = ACTIONS(1769), + [aux_sym_cmd_identifier_token15] = ACTIONS(1769), + [aux_sym_cmd_identifier_token16] = ACTIONS(1769), + [aux_sym_cmd_identifier_token17] = ACTIONS(1769), + [aux_sym_cmd_identifier_token18] = ACTIONS(1769), + [aux_sym_cmd_identifier_token19] = ACTIONS(1769), + [aux_sym_cmd_identifier_token20] = ACTIONS(1769), + [aux_sym_cmd_identifier_token21] = ACTIONS(1769), + [aux_sym_cmd_identifier_token22] = ACTIONS(1769), + [aux_sym_cmd_identifier_token23] = ACTIONS(1769), + [aux_sym_cmd_identifier_token24] = ACTIONS(1769), + [aux_sym_cmd_identifier_token25] = ACTIONS(1769), + [aux_sym_cmd_identifier_token26] = ACTIONS(1769), + [aux_sym_cmd_identifier_token27] = ACTIONS(1769), + [aux_sym_cmd_identifier_token28] = ACTIONS(1769), + [aux_sym_cmd_identifier_token29] = ACTIONS(1769), + [aux_sym_cmd_identifier_token30] = ACTIONS(1769), + [aux_sym_cmd_identifier_token31] = ACTIONS(1769), + [aux_sym_cmd_identifier_token32] = ACTIONS(1769), + [aux_sym_cmd_identifier_token33] = ACTIONS(1769), + [aux_sym_cmd_identifier_token34] = ACTIONS(1769), + [aux_sym_cmd_identifier_token35] = ACTIONS(1769), + [aux_sym_cmd_identifier_token36] = ACTIONS(1769), + [anon_sym_true] = ACTIONS(1769), + [anon_sym_false] = ACTIONS(1769), + [anon_sym_null] = ACTIONS(1769), + [aux_sym_cmd_identifier_token38] = ACTIONS(1769), + [aux_sym_cmd_identifier_token39] = ACTIONS(1769), + [aux_sym_cmd_identifier_token40] = ACTIONS(1769), + [anon_sym_def] = ACTIONS(1769), + [anon_sym_export_DASHenv] = ACTIONS(1769), + [anon_sym_extern] = ACTIONS(1769), + [anon_sym_module] = ACTIONS(1769), + [anon_sym_use] = ACTIONS(1769), + [anon_sym_LPAREN] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1769), + [anon_sym_error] = ACTIONS(1769), + [anon_sym_list] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_break] = ACTIONS(1769), + [anon_sym_continue] = ACTIONS(1769), + [anon_sym_for] = ACTIONS(1769), + [anon_sym_in] = ACTIONS(1769), + [anon_sym_loop] = ACTIONS(1769), + [anon_sym_make] = ACTIONS(1769), + [anon_sym_while] = ACTIONS(1769), + [anon_sym_do] = ACTIONS(1769), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_else] = ACTIONS(1769), + [anon_sym_match] = ACTIONS(1769), + [anon_sym_RBRACE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1769), + [anon_sym_catch] = ACTIONS(1769), + [anon_sym_return] = ACTIONS(1769), + [anon_sym_source] = ACTIONS(1769), + [anon_sym_source_DASHenv] = ACTIONS(1769), + [anon_sym_register] = ACTIONS(1769), + [anon_sym_hide] = ACTIONS(1769), + [anon_sym_hide_DASHenv] = ACTIONS(1769), + [anon_sym_overlay] = ACTIONS(1769), + [anon_sym_new] = ACTIONS(1769), + [anon_sym_as] = ACTIONS(1769), + [anon_sym_LPAREN2] = ACTIONS(1771), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1769), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1769), + [aux_sym__val_number_decimal_token1] = ACTIONS(1769), + [aux_sym__val_number_decimal_token2] = ACTIONS(1769), + [aux_sym__val_number_decimal_token3] = ACTIONS(1769), + [aux_sym__val_number_decimal_token4] = ACTIONS(1769), + [aux_sym__val_number_token1] = ACTIONS(1769), + [aux_sym__val_number_token2] = ACTIONS(1769), + [aux_sym__val_number_token3] = ACTIONS(1769), + [anon_sym_DQUOTE] = ACTIONS(1769), + [sym__str_single_quotes] = ACTIONS(1769), + [sym__str_back_ticks] = ACTIONS(1769), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1769), + [sym__entry_separator] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1769), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1769), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1771), }, - [533] = { - [sym_comment] = STATE(533), - [anon_sym_export] = ACTIONS(1560), - [anon_sym_alias] = ACTIONS(1560), - [anon_sym_let] = ACTIONS(1560), - [anon_sym_let_DASHenv] = ACTIONS(1560), - [anon_sym_mut] = ACTIONS(1560), - [anon_sym_const] = ACTIONS(1560), - [aux_sym_cmd_identifier_token1] = ACTIONS(1560), - [aux_sym_cmd_identifier_token2] = ACTIONS(1560), - [aux_sym_cmd_identifier_token3] = ACTIONS(1560), - [aux_sym_cmd_identifier_token4] = ACTIONS(1560), - [aux_sym_cmd_identifier_token5] = ACTIONS(1560), - [aux_sym_cmd_identifier_token6] = ACTIONS(1560), - [aux_sym_cmd_identifier_token7] = ACTIONS(1560), - [aux_sym_cmd_identifier_token8] = ACTIONS(1560), - [aux_sym_cmd_identifier_token9] = ACTIONS(1560), - [aux_sym_cmd_identifier_token10] = ACTIONS(1560), - [aux_sym_cmd_identifier_token11] = ACTIONS(1560), - [aux_sym_cmd_identifier_token12] = ACTIONS(1560), - [aux_sym_cmd_identifier_token13] = ACTIONS(1560), - [aux_sym_cmd_identifier_token14] = ACTIONS(1560), - [aux_sym_cmd_identifier_token15] = ACTIONS(1560), - [aux_sym_cmd_identifier_token16] = ACTIONS(1560), - [aux_sym_cmd_identifier_token17] = ACTIONS(1560), - [aux_sym_cmd_identifier_token18] = ACTIONS(1560), - [aux_sym_cmd_identifier_token19] = ACTIONS(1560), - [aux_sym_cmd_identifier_token20] = ACTIONS(1560), - [aux_sym_cmd_identifier_token21] = ACTIONS(1560), - [aux_sym_cmd_identifier_token22] = ACTIONS(1560), - [aux_sym_cmd_identifier_token23] = ACTIONS(1560), - [aux_sym_cmd_identifier_token24] = ACTIONS(1560), - [aux_sym_cmd_identifier_token25] = ACTIONS(1560), - [aux_sym_cmd_identifier_token26] = ACTIONS(1560), - [aux_sym_cmd_identifier_token27] = ACTIONS(1560), - [aux_sym_cmd_identifier_token28] = ACTIONS(1560), - [aux_sym_cmd_identifier_token29] = ACTIONS(1560), - [aux_sym_cmd_identifier_token30] = ACTIONS(1560), - [aux_sym_cmd_identifier_token31] = ACTIONS(1560), - [aux_sym_cmd_identifier_token32] = ACTIONS(1560), - [aux_sym_cmd_identifier_token33] = ACTIONS(1560), - [aux_sym_cmd_identifier_token34] = ACTIONS(1560), - [aux_sym_cmd_identifier_token35] = ACTIONS(1560), - [aux_sym_cmd_identifier_token36] = ACTIONS(1560), - [anon_sym_true] = ACTIONS(1560), - [anon_sym_false] = ACTIONS(1560), - [anon_sym_null] = ACTIONS(1560), - [aux_sym_cmd_identifier_token38] = ACTIONS(1560), - [aux_sym_cmd_identifier_token39] = ACTIONS(1560), - [aux_sym_cmd_identifier_token40] = ACTIONS(1560), - [anon_sym_def] = ACTIONS(1560), - [anon_sym_export_DASHenv] = ACTIONS(1560), - [anon_sym_extern] = ACTIONS(1560), - [anon_sym_module] = ACTIONS(1560), - [anon_sym_use] = ACTIONS(1560), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_DOLLAR] = ACTIONS(1560), - [anon_sym_error] = ACTIONS(1560), - [anon_sym_list] = ACTIONS(1560), - [anon_sym_DASH] = ACTIONS(1560), - [anon_sym_break] = ACTIONS(1560), - [anon_sym_continue] = ACTIONS(1560), - [anon_sym_for] = ACTIONS(1560), - [anon_sym_in] = ACTIONS(1560), - [anon_sym_loop] = ACTIONS(1560), - [anon_sym_make] = ACTIONS(1560), - [anon_sym_while] = ACTIONS(1560), - [anon_sym_do] = ACTIONS(1560), - [anon_sym_if] = ACTIONS(1560), - [anon_sym_else] = ACTIONS(1560), - [anon_sym_match] = ACTIONS(1560), - [anon_sym_RBRACE] = ACTIONS(1560), - [anon_sym_try] = ACTIONS(1560), - [anon_sym_catch] = ACTIONS(1560), - [anon_sym_return] = ACTIONS(1560), - [anon_sym_source] = ACTIONS(1560), - [anon_sym_source_DASHenv] = ACTIONS(1560), - [anon_sym_register] = ACTIONS(1560), - [anon_sym_hide] = ACTIONS(1560), - [anon_sym_hide_DASHenv] = ACTIONS(1560), - [anon_sym_overlay] = ACTIONS(1560), - [anon_sym_new] = ACTIONS(1560), - [anon_sym_as] = ACTIONS(1560), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1560), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1560), - [aux_sym__val_number_decimal_token1] = ACTIONS(1560), - [aux_sym__val_number_decimal_token2] = ACTIONS(1560), - [aux_sym__val_number_decimal_token3] = ACTIONS(1560), - [aux_sym__val_number_decimal_token4] = ACTIONS(1560), - [aux_sym__val_number_token1] = ACTIONS(1560), - [aux_sym__val_number_token2] = ACTIONS(1560), - [aux_sym__val_number_token3] = ACTIONS(1560), - [anon_sym_DQUOTE] = ACTIONS(1560), - [sym__str_single_quotes] = ACTIONS(1560), - [sym__str_back_ticks] = ACTIONS(1560), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1560), - [sym__entry_separator] = ACTIONS(1572), - [anon_sym_PLUS] = ACTIONS(1560), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1574), + [458] = { + [sym_comment] = STATE(458), + [anon_sym_export] = ACTIONS(1826), + [anon_sym_alias] = ACTIONS(1826), + [anon_sym_let] = ACTIONS(1826), + [anon_sym_let_DASHenv] = ACTIONS(1826), + [anon_sym_mut] = ACTIONS(1826), + [anon_sym_const] = ACTIONS(1826), + [aux_sym_cmd_identifier_token1] = ACTIONS(1826), + [aux_sym_cmd_identifier_token2] = ACTIONS(1826), + [aux_sym_cmd_identifier_token3] = ACTIONS(1826), + [aux_sym_cmd_identifier_token4] = ACTIONS(1826), + [aux_sym_cmd_identifier_token5] = ACTIONS(1826), + [aux_sym_cmd_identifier_token6] = ACTIONS(1826), + [aux_sym_cmd_identifier_token7] = ACTIONS(1826), + [aux_sym_cmd_identifier_token8] = ACTIONS(1826), + [aux_sym_cmd_identifier_token9] = ACTIONS(1826), + [aux_sym_cmd_identifier_token10] = ACTIONS(1826), + [aux_sym_cmd_identifier_token11] = ACTIONS(1826), + [aux_sym_cmd_identifier_token12] = ACTIONS(1826), + [aux_sym_cmd_identifier_token13] = ACTIONS(1826), + [aux_sym_cmd_identifier_token14] = ACTIONS(1826), + [aux_sym_cmd_identifier_token15] = ACTIONS(1826), + [aux_sym_cmd_identifier_token16] = ACTIONS(1826), + [aux_sym_cmd_identifier_token17] = ACTIONS(1826), + [aux_sym_cmd_identifier_token18] = ACTIONS(1826), + [aux_sym_cmd_identifier_token19] = ACTIONS(1826), + [aux_sym_cmd_identifier_token20] = ACTIONS(1826), + [aux_sym_cmd_identifier_token21] = ACTIONS(1826), + [aux_sym_cmd_identifier_token22] = ACTIONS(1826), + [aux_sym_cmd_identifier_token23] = ACTIONS(1826), + [aux_sym_cmd_identifier_token24] = ACTIONS(1826), + [aux_sym_cmd_identifier_token25] = ACTIONS(1826), + [aux_sym_cmd_identifier_token26] = ACTIONS(1826), + [aux_sym_cmd_identifier_token27] = ACTIONS(1826), + [aux_sym_cmd_identifier_token28] = ACTIONS(1826), + [aux_sym_cmd_identifier_token29] = ACTIONS(1826), + [aux_sym_cmd_identifier_token30] = ACTIONS(1826), + [aux_sym_cmd_identifier_token31] = ACTIONS(1826), + [aux_sym_cmd_identifier_token32] = ACTIONS(1826), + [aux_sym_cmd_identifier_token33] = ACTIONS(1826), + [aux_sym_cmd_identifier_token34] = ACTIONS(1826), + [aux_sym_cmd_identifier_token35] = ACTIONS(1826), + [aux_sym_cmd_identifier_token36] = ACTIONS(1826), + [anon_sym_true] = ACTIONS(1826), + [anon_sym_false] = ACTIONS(1826), + [anon_sym_null] = ACTIONS(1826), + [aux_sym_cmd_identifier_token38] = ACTIONS(1826), + [aux_sym_cmd_identifier_token39] = ACTIONS(1826), + [aux_sym_cmd_identifier_token40] = ACTIONS(1826), + [anon_sym_def] = ACTIONS(1826), + [anon_sym_export_DASHenv] = ACTIONS(1826), + [anon_sym_extern] = ACTIONS(1826), + [anon_sym_module] = ACTIONS(1826), + [anon_sym_use] = ACTIONS(1826), + [anon_sym_LPAREN] = ACTIONS(1826), + [anon_sym_DOLLAR] = ACTIONS(1826), + [anon_sym_error] = ACTIONS(1826), + [anon_sym_list] = ACTIONS(1826), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_break] = ACTIONS(1826), + [anon_sym_continue] = ACTIONS(1826), + [anon_sym_for] = ACTIONS(1826), + [anon_sym_in] = ACTIONS(1826), + [anon_sym_loop] = ACTIONS(1826), + [anon_sym_make] = ACTIONS(1826), + [anon_sym_while] = ACTIONS(1826), + [anon_sym_do] = ACTIONS(1826), + [anon_sym_if] = ACTIONS(1826), + [anon_sym_else] = ACTIONS(1826), + [anon_sym_match] = ACTIONS(1826), + [anon_sym_RBRACE] = ACTIONS(1826), + [anon_sym_try] = ACTIONS(1826), + [anon_sym_catch] = ACTIONS(1826), + [anon_sym_return] = ACTIONS(1826), + [anon_sym_source] = ACTIONS(1826), + [anon_sym_source_DASHenv] = ACTIONS(1826), + [anon_sym_register] = ACTIONS(1826), + [anon_sym_hide] = ACTIONS(1826), + [anon_sym_hide_DASHenv] = ACTIONS(1826), + [anon_sym_overlay] = ACTIONS(1826), + [anon_sym_new] = ACTIONS(1826), + [anon_sym_as] = ACTIONS(1826), + [anon_sym_LPAREN2] = ACTIONS(1828), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1826), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1826), + [aux_sym__val_number_decimal_token1] = ACTIONS(1826), + [aux_sym__val_number_decimal_token2] = ACTIONS(1826), + [aux_sym__val_number_decimal_token3] = ACTIONS(1826), + [aux_sym__val_number_decimal_token4] = ACTIONS(1826), + [aux_sym__val_number_token1] = ACTIONS(1826), + [aux_sym__val_number_token2] = ACTIONS(1826), + [aux_sym__val_number_token3] = ACTIONS(1826), + [anon_sym_DQUOTE] = ACTIONS(1826), + [sym__str_single_quotes] = ACTIONS(1826), + [sym__str_back_ticks] = ACTIONS(1826), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1826), + [sym__entry_separator] = ACTIONS(1828), + [anon_sym_PLUS] = ACTIONS(1826), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1826), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1828), }, - [534] = { - [sym_comment] = STATE(534), - [anon_sym_export] = ACTIONS(1832), - [anon_sym_alias] = ACTIONS(1832), - [anon_sym_let] = ACTIONS(1832), - [anon_sym_let_DASHenv] = ACTIONS(1832), - [anon_sym_mut] = ACTIONS(1832), - [anon_sym_const] = ACTIONS(1832), - [aux_sym_cmd_identifier_token1] = ACTIONS(1832), - [aux_sym_cmd_identifier_token2] = ACTIONS(1832), - [aux_sym_cmd_identifier_token3] = ACTIONS(1832), - [aux_sym_cmd_identifier_token4] = ACTIONS(1832), - [aux_sym_cmd_identifier_token5] = ACTIONS(1832), - [aux_sym_cmd_identifier_token6] = ACTIONS(1832), - [aux_sym_cmd_identifier_token7] = ACTIONS(1832), - [aux_sym_cmd_identifier_token8] = ACTIONS(1832), - [aux_sym_cmd_identifier_token9] = ACTIONS(1832), - [aux_sym_cmd_identifier_token10] = ACTIONS(1832), - [aux_sym_cmd_identifier_token11] = ACTIONS(1832), - [aux_sym_cmd_identifier_token12] = ACTIONS(1832), - [aux_sym_cmd_identifier_token13] = ACTIONS(1832), - [aux_sym_cmd_identifier_token14] = ACTIONS(1832), - [aux_sym_cmd_identifier_token15] = ACTIONS(1832), - [aux_sym_cmd_identifier_token16] = ACTIONS(1832), - [aux_sym_cmd_identifier_token17] = ACTIONS(1832), - [aux_sym_cmd_identifier_token18] = ACTIONS(1832), - [aux_sym_cmd_identifier_token19] = ACTIONS(1832), - [aux_sym_cmd_identifier_token20] = ACTIONS(1832), - [aux_sym_cmd_identifier_token21] = ACTIONS(1832), - [aux_sym_cmd_identifier_token22] = ACTIONS(1832), - [aux_sym_cmd_identifier_token23] = ACTIONS(1832), - [aux_sym_cmd_identifier_token24] = ACTIONS(1832), - [aux_sym_cmd_identifier_token25] = ACTIONS(1832), - [aux_sym_cmd_identifier_token26] = ACTIONS(1832), - [aux_sym_cmd_identifier_token27] = ACTIONS(1832), - [aux_sym_cmd_identifier_token28] = ACTIONS(1832), - [aux_sym_cmd_identifier_token29] = ACTIONS(1832), - [aux_sym_cmd_identifier_token30] = ACTIONS(1832), - [aux_sym_cmd_identifier_token31] = ACTIONS(1832), - [aux_sym_cmd_identifier_token32] = ACTIONS(1832), - [aux_sym_cmd_identifier_token33] = ACTIONS(1832), - [aux_sym_cmd_identifier_token34] = ACTIONS(1832), - [aux_sym_cmd_identifier_token35] = ACTIONS(1832), - [aux_sym_cmd_identifier_token36] = ACTIONS(1832), - [anon_sym_true] = ACTIONS(1832), - [anon_sym_false] = ACTIONS(1832), - [anon_sym_null] = ACTIONS(1832), - [aux_sym_cmd_identifier_token38] = ACTIONS(1832), - [aux_sym_cmd_identifier_token39] = ACTIONS(1832), - [aux_sym_cmd_identifier_token40] = ACTIONS(1832), - [anon_sym_def] = ACTIONS(1832), - [anon_sym_export_DASHenv] = ACTIONS(1832), - [anon_sym_extern] = ACTIONS(1832), - [anon_sym_module] = ACTIONS(1832), - [anon_sym_use] = ACTIONS(1832), - [anon_sym_RBRACK] = ACTIONS(1832), - [anon_sym_LPAREN] = ACTIONS(1832), - [anon_sym_DOLLAR] = ACTIONS(1832), - [anon_sym_error] = ACTIONS(1832), - [anon_sym_list] = ACTIONS(1832), - [anon_sym_DASH] = ACTIONS(1832), - [anon_sym_break] = ACTIONS(1832), - [anon_sym_continue] = ACTIONS(1832), - [anon_sym_for] = ACTIONS(1832), - [anon_sym_in] = ACTIONS(1832), - [anon_sym_loop] = ACTIONS(1832), - [anon_sym_make] = ACTIONS(1832), - [anon_sym_while] = ACTIONS(1832), - [anon_sym_do] = ACTIONS(1832), - [anon_sym_if] = ACTIONS(1832), - [anon_sym_else] = ACTIONS(1832), - [anon_sym_match] = ACTIONS(1832), - [anon_sym_RBRACE] = ACTIONS(1832), - [anon_sym_try] = ACTIONS(1832), - [anon_sym_catch] = ACTIONS(1832), - [anon_sym_return] = ACTIONS(1832), - [anon_sym_source] = ACTIONS(1832), - [anon_sym_source_DASHenv] = ACTIONS(1832), - [anon_sym_register] = ACTIONS(1832), - [anon_sym_hide] = ACTIONS(1832), - [anon_sym_hide_DASHenv] = ACTIONS(1832), - [anon_sym_overlay] = ACTIONS(1832), - [anon_sym_new] = ACTIONS(1832), - [anon_sym_as] = ACTIONS(1832), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1832), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1832), - [aux_sym__val_number_decimal_token1] = ACTIONS(1832), - [aux_sym__val_number_decimal_token2] = ACTIONS(1832), - [aux_sym__val_number_decimal_token3] = ACTIONS(1832), - [aux_sym__val_number_decimal_token4] = ACTIONS(1832), - [aux_sym__val_number_token1] = ACTIONS(1832), - [aux_sym__val_number_token2] = ACTIONS(1832), - [aux_sym__val_number_token3] = ACTIONS(1832), - [anon_sym_DQUOTE] = ACTIONS(1832), - [sym__str_single_quotes] = ACTIONS(1832), - [sym__str_back_ticks] = ACTIONS(1832), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1832), - [sym__entry_separator] = ACTIONS(1834), - [anon_sym_PLUS] = ACTIONS(1832), + [459] = { + [sym_comment] = STATE(459), + [anon_sym_export] = ACTIONS(1058), + [anon_sym_alias] = ACTIONS(1058), + [anon_sym_let] = ACTIONS(1058), + [anon_sym_let_DASHenv] = ACTIONS(1058), + [anon_sym_mut] = ACTIONS(1058), + [anon_sym_const] = ACTIONS(1058), + [aux_sym_cmd_identifier_token1] = ACTIONS(1058), + [aux_sym_cmd_identifier_token2] = ACTIONS(1058), + [aux_sym_cmd_identifier_token3] = ACTIONS(1058), + [aux_sym_cmd_identifier_token4] = ACTIONS(1058), + [aux_sym_cmd_identifier_token5] = ACTIONS(1058), + [aux_sym_cmd_identifier_token6] = ACTIONS(1058), + [aux_sym_cmd_identifier_token7] = ACTIONS(1058), + [aux_sym_cmd_identifier_token8] = ACTIONS(1058), + [aux_sym_cmd_identifier_token9] = ACTIONS(1058), + [aux_sym_cmd_identifier_token10] = ACTIONS(1058), + [aux_sym_cmd_identifier_token11] = ACTIONS(1058), + [aux_sym_cmd_identifier_token12] = ACTIONS(1058), + [aux_sym_cmd_identifier_token13] = ACTIONS(1058), + [aux_sym_cmd_identifier_token14] = ACTIONS(1058), + [aux_sym_cmd_identifier_token15] = ACTIONS(1058), + [aux_sym_cmd_identifier_token16] = ACTIONS(1058), + [aux_sym_cmd_identifier_token17] = ACTIONS(1058), + [aux_sym_cmd_identifier_token18] = ACTIONS(1058), + [aux_sym_cmd_identifier_token19] = ACTIONS(1058), + [aux_sym_cmd_identifier_token20] = ACTIONS(1058), + [aux_sym_cmd_identifier_token21] = ACTIONS(1058), + [aux_sym_cmd_identifier_token22] = ACTIONS(1058), + [aux_sym_cmd_identifier_token23] = ACTIONS(1058), + [aux_sym_cmd_identifier_token24] = ACTIONS(1058), + [aux_sym_cmd_identifier_token25] = ACTIONS(1058), + [aux_sym_cmd_identifier_token26] = ACTIONS(1058), + [aux_sym_cmd_identifier_token27] = ACTIONS(1058), + [aux_sym_cmd_identifier_token28] = ACTIONS(1058), + [aux_sym_cmd_identifier_token29] = ACTIONS(1058), + [aux_sym_cmd_identifier_token30] = ACTIONS(1058), + [aux_sym_cmd_identifier_token31] = ACTIONS(1058), + [aux_sym_cmd_identifier_token32] = ACTIONS(1058), + [aux_sym_cmd_identifier_token33] = ACTIONS(1058), + [aux_sym_cmd_identifier_token34] = ACTIONS(1058), + [aux_sym_cmd_identifier_token35] = ACTIONS(1058), + [aux_sym_cmd_identifier_token36] = ACTIONS(1058), + [anon_sym_true] = ACTIONS(1058), + [anon_sym_false] = ACTIONS(1058), + [anon_sym_null] = ACTIONS(1058), + [aux_sym_cmd_identifier_token38] = ACTIONS(1058), + [aux_sym_cmd_identifier_token39] = ACTIONS(1058), + [aux_sym_cmd_identifier_token40] = ACTIONS(1058), + [anon_sym_def] = ACTIONS(1058), + [anon_sym_export_DASHenv] = ACTIONS(1058), + [anon_sym_extern] = ACTIONS(1058), + [anon_sym_module] = ACTIONS(1058), + [anon_sym_use] = ACTIONS(1058), + [anon_sym_LPAREN] = ACTIONS(1058), + [anon_sym_DOLLAR] = ACTIONS(1058), + [anon_sym_error] = ACTIONS(1058), + [anon_sym_list] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1058), + [anon_sym_break] = ACTIONS(1058), + [anon_sym_continue] = ACTIONS(1058), + [anon_sym_for] = ACTIONS(1058), + [anon_sym_in] = ACTIONS(1058), + [anon_sym_loop] = ACTIONS(1058), + [anon_sym_make] = ACTIONS(1058), + [anon_sym_while] = ACTIONS(1058), + [anon_sym_do] = ACTIONS(1058), + [anon_sym_if] = ACTIONS(1058), + [anon_sym_else] = ACTIONS(1058), + [anon_sym_match] = ACTIONS(1058), + [anon_sym_RBRACE] = ACTIONS(1058), + [anon_sym_try] = ACTIONS(1058), + [anon_sym_catch] = ACTIONS(1058), + [anon_sym_return] = ACTIONS(1058), + [anon_sym_source] = ACTIONS(1058), + [anon_sym_source_DASHenv] = ACTIONS(1058), + [anon_sym_register] = ACTIONS(1058), + [anon_sym_hide] = ACTIONS(1058), + [anon_sym_hide_DASHenv] = ACTIONS(1058), + [anon_sym_overlay] = ACTIONS(1058), + [anon_sym_new] = ACTIONS(1058), + [anon_sym_as] = ACTIONS(1058), + [anon_sym_QMARK2] = ACTIONS(1058), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1058), + [anon_sym_DOT] = ACTIONS(1058), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1058), + [aux_sym__val_number_decimal_token1] = ACTIONS(1058), + [aux_sym__val_number_decimal_token2] = ACTIONS(1058), + [aux_sym__val_number_decimal_token3] = ACTIONS(1058), + [aux_sym__val_number_decimal_token4] = ACTIONS(1058), + [aux_sym__val_number_token1] = ACTIONS(1058), + [aux_sym__val_number_token2] = ACTIONS(1058), + [aux_sym__val_number_token3] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(1058), + [sym__str_single_quotes] = ACTIONS(1058), + [sym__str_back_ticks] = ACTIONS(1058), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1058), + [sym__entry_separator] = ACTIONS(1060), + [anon_sym_PLUS] = ACTIONS(1058), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1060), }, - [535] = { - [sym_comment] = STATE(535), - [anon_sym_export] = ACTIONS(2388), - [anon_sym_alias] = ACTIONS(2388), - [anon_sym_let] = ACTIONS(2388), - [anon_sym_let_DASHenv] = ACTIONS(2388), - [anon_sym_mut] = ACTIONS(2388), - [anon_sym_const] = ACTIONS(2388), - [aux_sym_cmd_identifier_token1] = ACTIONS(2388), - [aux_sym_cmd_identifier_token2] = ACTIONS(2388), - [aux_sym_cmd_identifier_token3] = ACTIONS(2388), - [aux_sym_cmd_identifier_token4] = ACTIONS(2388), - [aux_sym_cmd_identifier_token5] = ACTIONS(2388), - [aux_sym_cmd_identifier_token6] = ACTIONS(2388), - [aux_sym_cmd_identifier_token7] = ACTIONS(2388), - [aux_sym_cmd_identifier_token8] = ACTIONS(2388), - [aux_sym_cmd_identifier_token9] = ACTIONS(2388), - [aux_sym_cmd_identifier_token10] = ACTIONS(2388), - [aux_sym_cmd_identifier_token11] = ACTIONS(2388), - [aux_sym_cmd_identifier_token12] = ACTIONS(2388), - [aux_sym_cmd_identifier_token13] = ACTIONS(2388), - [aux_sym_cmd_identifier_token14] = ACTIONS(2388), - [aux_sym_cmd_identifier_token15] = ACTIONS(2388), - [aux_sym_cmd_identifier_token16] = ACTIONS(2388), - [aux_sym_cmd_identifier_token17] = ACTIONS(2388), - [aux_sym_cmd_identifier_token18] = ACTIONS(2388), - [aux_sym_cmd_identifier_token19] = ACTIONS(2388), - [aux_sym_cmd_identifier_token20] = ACTIONS(2388), - [aux_sym_cmd_identifier_token21] = ACTIONS(2388), - [aux_sym_cmd_identifier_token22] = ACTIONS(2388), - [aux_sym_cmd_identifier_token23] = ACTIONS(2388), - [aux_sym_cmd_identifier_token24] = ACTIONS(2388), - [aux_sym_cmd_identifier_token25] = ACTIONS(2388), - [aux_sym_cmd_identifier_token26] = ACTIONS(2388), - [aux_sym_cmd_identifier_token27] = ACTIONS(2388), - [aux_sym_cmd_identifier_token28] = ACTIONS(2388), - [aux_sym_cmd_identifier_token29] = ACTIONS(2388), - [aux_sym_cmd_identifier_token30] = ACTIONS(2388), - [aux_sym_cmd_identifier_token31] = ACTIONS(2388), - [aux_sym_cmd_identifier_token32] = ACTIONS(2388), - [aux_sym_cmd_identifier_token33] = ACTIONS(2388), - [aux_sym_cmd_identifier_token34] = ACTIONS(2388), - [aux_sym_cmd_identifier_token35] = ACTIONS(2388), - [aux_sym_cmd_identifier_token36] = ACTIONS(2388), - [anon_sym_true] = ACTIONS(2388), - [anon_sym_false] = ACTIONS(2388), - [anon_sym_null] = ACTIONS(2388), - [aux_sym_cmd_identifier_token38] = ACTIONS(2388), - [aux_sym_cmd_identifier_token39] = ACTIONS(2388), - [aux_sym_cmd_identifier_token40] = ACTIONS(2388), - [anon_sym_def] = ACTIONS(2388), - [anon_sym_export_DASHenv] = ACTIONS(2388), - [anon_sym_extern] = ACTIONS(2388), - [anon_sym_module] = ACTIONS(2388), - [anon_sym_use] = ACTIONS(2388), - [anon_sym_RBRACK] = ACTIONS(2388), - [anon_sym_LPAREN] = ACTIONS(2388), - [anon_sym_DOLLAR] = ACTIONS(2388), - [anon_sym_error] = ACTIONS(2388), - [anon_sym_list] = ACTIONS(2388), - [anon_sym_DASH] = ACTIONS(2388), - [anon_sym_break] = ACTIONS(2388), - [anon_sym_continue] = ACTIONS(2388), - [anon_sym_for] = ACTIONS(2388), - [anon_sym_in] = ACTIONS(2388), - [anon_sym_loop] = ACTIONS(2388), - [anon_sym_make] = ACTIONS(2388), - [anon_sym_while] = ACTIONS(2388), - [anon_sym_do] = ACTIONS(2388), - [anon_sym_if] = ACTIONS(2388), - [anon_sym_else] = ACTIONS(2388), - [anon_sym_match] = ACTIONS(2388), - [anon_sym_RBRACE] = ACTIONS(2388), - [anon_sym_try] = ACTIONS(2388), - [anon_sym_catch] = ACTIONS(2388), - [anon_sym_return] = ACTIONS(2388), - [anon_sym_source] = ACTIONS(2388), - [anon_sym_source_DASHenv] = ACTIONS(2388), - [anon_sym_register] = ACTIONS(2388), - [anon_sym_hide] = ACTIONS(2388), - [anon_sym_hide_DASHenv] = ACTIONS(2388), - [anon_sym_overlay] = ACTIONS(2388), - [anon_sym_new] = ACTIONS(2388), - [anon_sym_as] = ACTIONS(2388), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2388), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2388), - [aux_sym__val_number_decimal_token1] = ACTIONS(2388), - [aux_sym__val_number_decimal_token2] = ACTIONS(2388), - [aux_sym__val_number_decimal_token3] = ACTIONS(2388), - [aux_sym__val_number_decimal_token4] = ACTIONS(2388), - [aux_sym__val_number_token1] = ACTIONS(2388), - [aux_sym__val_number_token2] = ACTIONS(2388), - [aux_sym__val_number_token3] = ACTIONS(2388), - [anon_sym_DQUOTE] = ACTIONS(2388), - [sym__str_single_quotes] = ACTIONS(2388), - [sym__str_back_ticks] = ACTIONS(2388), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2388), - [sym__entry_separator] = ACTIONS(2390), - [anon_sym_PLUS] = ACTIONS(2388), + [460] = { + [sym_comment] = STATE(460), + [anon_sym_export] = ACTIONS(1062), + [anon_sym_alias] = ACTIONS(1062), + [anon_sym_let] = ACTIONS(1062), + [anon_sym_let_DASHenv] = ACTIONS(1062), + [anon_sym_mut] = ACTIONS(1062), + [anon_sym_const] = ACTIONS(1062), + [aux_sym_cmd_identifier_token1] = ACTIONS(1062), + [aux_sym_cmd_identifier_token2] = ACTIONS(1062), + [aux_sym_cmd_identifier_token3] = ACTIONS(1062), + [aux_sym_cmd_identifier_token4] = ACTIONS(1062), + [aux_sym_cmd_identifier_token5] = ACTIONS(1062), + [aux_sym_cmd_identifier_token6] = ACTIONS(1062), + [aux_sym_cmd_identifier_token7] = ACTIONS(1062), + [aux_sym_cmd_identifier_token8] = ACTIONS(1062), + [aux_sym_cmd_identifier_token9] = ACTIONS(1062), + [aux_sym_cmd_identifier_token10] = ACTIONS(1062), + [aux_sym_cmd_identifier_token11] = ACTIONS(1062), + [aux_sym_cmd_identifier_token12] = ACTIONS(1062), + [aux_sym_cmd_identifier_token13] = ACTIONS(1062), + [aux_sym_cmd_identifier_token14] = ACTIONS(1062), + [aux_sym_cmd_identifier_token15] = ACTIONS(1062), + [aux_sym_cmd_identifier_token16] = ACTIONS(1062), + [aux_sym_cmd_identifier_token17] = ACTIONS(1062), + [aux_sym_cmd_identifier_token18] = ACTIONS(1062), + [aux_sym_cmd_identifier_token19] = ACTIONS(1062), + [aux_sym_cmd_identifier_token20] = ACTIONS(1062), + [aux_sym_cmd_identifier_token21] = ACTIONS(1062), + [aux_sym_cmd_identifier_token22] = ACTIONS(1062), + [aux_sym_cmd_identifier_token23] = ACTIONS(1062), + [aux_sym_cmd_identifier_token24] = ACTIONS(1062), + [aux_sym_cmd_identifier_token25] = ACTIONS(1062), + [aux_sym_cmd_identifier_token26] = ACTIONS(1062), + [aux_sym_cmd_identifier_token27] = ACTIONS(1062), + [aux_sym_cmd_identifier_token28] = ACTIONS(1062), + [aux_sym_cmd_identifier_token29] = ACTIONS(1062), + [aux_sym_cmd_identifier_token30] = ACTIONS(1062), + [aux_sym_cmd_identifier_token31] = ACTIONS(1062), + [aux_sym_cmd_identifier_token32] = ACTIONS(1062), + [aux_sym_cmd_identifier_token33] = ACTIONS(1062), + [aux_sym_cmd_identifier_token34] = ACTIONS(1062), + [aux_sym_cmd_identifier_token35] = ACTIONS(1062), + [aux_sym_cmd_identifier_token36] = ACTIONS(1062), + [anon_sym_true] = ACTIONS(1062), + [anon_sym_false] = ACTIONS(1062), + [anon_sym_null] = ACTIONS(1062), + [aux_sym_cmd_identifier_token38] = ACTIONS(1062), + [aux_sym_cmd_identifier_token39] = ACTIONS(1062), + [aux_sym_cmd_identifier_token40] = ACTIONS(1062), + [anon_sym_def] = ACTIONS(1062), + [anon_sym_export_DASHenv] = ACTIONS(1062), + [anon_sym_extern] = ACTIONS(1062), + [anon_sym_module] = ACTIONS(1062), + [anon_sym_use] = ACTIONS(1062), + [anon_sym_LPAREN] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_error] = ACTIONS(1062), + [anon_sym_list] = ACTIONS(1062), + [anon_sym_DASH] = ACTIONS(1062), + [anon_sym_break] = ACTIONS(1062), + [anon_sym_continue] = ACTIONS(1062), + [anon_sym_for] = ACTIONS(1062), + [anon_sym_in] = ACTIONS(1062), + [anon_sym_loop] = ACTIONS(1062), + [anon_sym_make] = ACTIONS(1062), + [anon_sym_while] = ACTIONS(1062), + [anon_sym_do] = ACTIONS(1062), + [anon_sym_if] = ACTIONS(1062), + [anon_sym_else] = ACTIONS(1062), + [anon_sym_match] = ACTIONS(1062), + [anon_sym_RBRACE] = ACTIONS(1062), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_catch] = ACTIONS(1062), + [anon_sym_return] = ACTIONS(1062), + [anon_sym_source] = ACTIONS(1062), + [anon_sym_source_DASHenv] = ACTIONS(1062), + [anon_sym_register] = ACTIONS(1062), + [anon_sym_hide] = ACTIONS(1062), + [anon_sym_hide_DASHenv] = ACTIONS(1062), + [anon_sym_overlay] = ACTIONS(1062), + [anon_sym_new] = ACTIONS(1062), + [anon_sym_as] = ACTIONS(1062), + [anon_sym_QMARK2] = ACTIONS(1062), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1062), + [anon_sym_DOT] = ACTIONS(1062), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1062), + [aux_sym__val_number_decimal_token1] = ACTIONS(1062), + [aux_sym__val_number_decimal_token2] = ACTIONS(1062), + [aux_sym__val_number_decimal_token3] = ACTIONS(1062), + [aux_sym__val_number_decimal_token4] = ACTIONS(1062), + [aux_sym__val_number_token1] = ACTIONS(1062), + [aux_sym__val_number_token2] = ACTIONS(1062), + [aux_sym__val_number_token3] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1062), + [sym__str_single_quotes] = ACTIONS(1062), + [sym__str_back_ticks] = ACTIONS(1062), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1062), + [sym__entry_separator] = ACTIONS(1064), + [anon_sym_PLUS] = ACTIONS(1062), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1064), }, - [536] = { - [sym_comment] = STATE(536), - [anon_sym_export] = ACTIONS(1778), - [anon_sym_alias] = ACTIONS(1778), - [anon_sym_let] = ACTIONS(1778), - [anon_sym_let_DASHenv] = ACTIONS(1778), - [anon_sym_mut] = ACTIONS(1778), - [anon_sym_const] = ACTIONS(1778), - [aux_sym_cmd_identifier_token1] = ACTIONS(1778), - [aux_sym_cmd_identifier_token2] = ACTIONS(1778), - [aux_sym_cmd_identifier_token3] = ACTIONS(1778), - [aux_sym_cmd_identifier_token4] = ACTIONS(1778), - [aux_sym_cmd_identifier_token5] = ACTIONS(1778), - [aux_sym_cmd_identifier_token6] = ACTIONS(1778), - [aux_sym_cmd_identifier_token7] = ACTIONS(1778), - [aux_sym_cmd_identifier_token8] = ACTIONS(1778), - [aux_sym_cmd_identifier_token9] = ACTIONS(1778), - [aux_sym_cmd_identifier_token10] = ACTIONS(1778), - [aux_sym_cmd_identifier_token11] = ACTIONS(1778), - [aux_sym_cmd_identifier_token12] = ACTIONS(1778), - [aux_sym_cmd_identifier_token13] = ACTIONS(1778), - [aux_sym_cmd_identifier_token14] = ACTIONS(1778), - [aux_sym_cmd_identifier_token15] = ACTIONS(1778), - [aux_sym_cmd_identifier_token16] = ACTIONS(1778), - [aux_sym_cmd_identifier_token17] = ACTIONS(1778), - [aux_sym_cmd_identifier_token18] = ACTIONS(1778), - [aux_sym_cmd_identifier_token19] = ACTIONS(1778), - [aux_sym_cmd_identifier_token20] = ACTIONS(1778), - [aux_sym_cmd_identifier_token21] = ACTIONS(1778), - [aux_sym_cmd_identifier_token22] = ACTIONS(1778), - [aux_sym_cmd_identifier_token23] = ACTIONS(1778), - [aux_sym_cmd_identifier_token24] = ACTIONS(1778), - [aux_sym_cmd_identifier_token25] = ACTIONS(1778), - [aux_sym_cmd_identifier_token26] = ACTIONS(1778), - [aux_sym_cmd_identifier_token27] = ACTIONS(1778), - [aux_sym_cmd_identifier_token28] = ACTIONS(1778), - [aux_sym_cmd_identifier_token29] = ACTIONS(1778), - [aux_sym_cmd_identifier_token30] = ACTIONS(1778), - [aux_sym_cmd_identifier_token31] = ACTIONS(1778), - [aux_sym_cmd_identifier_token32] = ACTIONS(1778), - [aux_sym_cmd_identifier_token33] = ACTIONS(1778), - [aux_sym_cmd_identifier_token34] = ACTIONS(1778), - [aux_sym_cmd_identifier_token35] = ACTIONS(1778), - [aux_sym_cmd_identifier_token36] = ACTIONS(1778), - [anon_sym_true] = ACTIONS(1786), - [anon_sym_false] = ACTIONS(1786), - [anon_sym_null] = ACTIONS(1786), - [aux_sym_cmd_identifier_token38] = ACTIONS(1778), - [aux_sym_cmd_identifier_token39] = ACTIONS(1786), - [aux_sym_cmd_identifier_token40] = ACTIONS(1786), - [anon_sym_def] = ACTIONS(1778), - [anon_sym_export_DASHenv] = ACTIONS(1778), - [anon_sym_extern] = ACTIONS(1778), - [anon_sym_module] = ACTIONS(1778), - [anon_sym_use] = ACTIONS(1778), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_DOLLAR] = ACTIONS(1786), - [anon_sym_error] = ACTIONS(1778), - [anon_sym_list] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_break] = ACTIONS(1778), - [anon_sym_continue] = ACTIONS(1778), - [anon_sym_for] = ACTIONS(1778), - [anon_sym_in] = ACTIONS(1778), - [anon_sym_loop] = ACTIONS(1778), - [anon_sym_make] = ACTIONS(1778), - [anon_sym_while] = ACTIONS(1778), - [anon_sym_do] = ACTIONS(1778), - [anon_sym_if] = ACTIONS(1778), - [anon_sym_else] = ACTIONS(1778), - [anon_sym_match] = ACTIONS(1778), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_try] = ACTIONS(1778), - [anon_sym_catch] = ACTIONS(1778), - [anon_sym_return] = ACTIONS(1778), - [anon_sym_source] = ACTIONS(1778), - [anon_sym_source_DASHenv] = ACTIONS(1778), - [anon_sym_register] = ACTIONS(1778), - [anon_sym_hide] = ACTIONS(1778), - [anon_sym_hide_DASHenv] = ACTIONS(1778), - [anon_sym_overlay] = ACTIONS(1778), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_as] = ACTIONS(1778), - [anon_sym_LPAREN2] = ACTIONS(1780), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1786), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1786), - [aux_sym__val_number_decimal_token1] = ACTIONS(1778), - [aux_sym__val_number_decimal_token2] = ACTIONS(1786), - [aux_sym__val_number_decimal_token3] = ACTIONS(1786), - [aux_sym__val_number_decimal_token4] = ACTIONS(1786), - [aux_sym__val_number_token1] = ACTIONS(1786), - [aux_sym__val_number_token2] = ACTIONS(1786), - [aux_sym__val_number_token3] = ACTIONS(1786), - [anon_sym_DQUOTE] = ACTIONS(1786), - [sym__str_single_quotes] = ACTIONS(1786), - [sym__str_back_ticks] = ACTIONS(1786), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1786), - [anon_sym_PLUS] = ACTIONS(1778), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1494), - [anon_sym_POUND] = ACTIONS(247), - }, - [537] = { - [sym_comment] = STATE(537), - [anon_sym_export] = ACTIONS(1022), - [anon_sym_alias] = ACTIONS(1022), - [anon_sym_let] = ACTIONS(1022), - [anon_sym_let_DASHenv] = ACTIONS(1022), - [anon_sym_mut] = ACTIONS(1022), - [anon_sym_const] = ACTIONS(1022), - [aux_sym_cmd_identifier_token1] = ACTIONS(1022), - [aux_sym_cmd_identifier_token2] = ACTIONS(1022), - [aux_sym_cmd_identifier_token3] = ACTIONS(1022), - [aux_sym_cmd_identifier_token4] = ACTIONS(1022), - [aux_sym_cmd_identifier_token5] = ACTIONS(1022), - [aux_sym_cmd_identifier_token6] = ACTIONS(1022), - [aux_sym_cmd_identifier_token7] = ACTIONS(1022), - [aux_sym_cmd_identifier_token8] = ACTIONS(1022), - [aux_sym_cmd_identifier_token9] = ACTIONS(1022), - [aux_sym_cmd_identifier_token10] = ACTIONS(1022), - [aux_sym_cmd_identifier_token11] = ACTIONS(1022), - [aux_sym_cmd_identifier_token12] = ACTIONS(1022), - [aux_sym_cmd_identifier_token13] = ACTIONS(1022), - [aux_sym_cmd_identifier_token14] = ACTIONS(1022), - [aux_sym_cmd_identifier_token15] = ACTIONS(1022), - [aux_sym_cmd_identifier_token16] = ACTIONS(1022), - [aux_sym_cmd_identifier_token17] = ACTIONS(1022), - [aux_sym_cmd_identifier_token18] = ACTIONS(1022), - [aux_sym_cmd_identifier_token19] = ACTIONS(1022), - [aux_sym_cmd_identifier_token20] = ACTIONS(1022), - [aux_sym_cmd_identifier_token21] = ACTIONS(1022), - [aux_sym_cmd_identifier_token22] = ACTIONS(1022), - [aux_sym_cmd_identifier_token23] = ACTIONS(1022), - [aux_sym_cmd_identifier_token24] = ACTIONS(1022), - [aux_sym_cmd_identifier_token25] = ACTIONS(1022), - [aux_sym_cmd_identifier_token26] = ACTIONS(1022), - [aux_sym_cmd_identifier_token27] = ACTIONS(1022), - [aux_sym_cmd_identifier_token28] = ACTIONS(1022), - [aux_sym_cmd_identifier_token29] = ACTIONS(1022), - [aux_sym_cmd_identifier_token30] = ACTIONS(1022), - [aux_sym_cmd_identifier_token31] = ACTIONS(1022), - [aux_sym_cmd_identifier_token32] = ACTIONS(1022), - [aux_sym_cmd_identifier_token33] = ACTIONS(1022), - [aux_sym_cmd_identifier_token34] = ACTIONS(1022), - [aux_sym_cmd_identifier_token35] = ACTIONS(1022), - [aux_sym_cmd_identifier_token36] = ACTIONS(1022), - [anon_sym_true] = ACTIONS(1024), - [anon_sym_false] = ACTIONS(1024), - [anon_sym_null] = ACTIONS(1024), - [aux_sym_cmd_identifier_token38] = ACTIONS(1022), - [aux_sym_cmd_identifier_token39] = ACTIONS(1024), - [aux_sym_cmd_identifier_token40] = ACTIONS(1024), - [anon_sym_def] = ACTIONS(1022), - [anon_sym_export_DASHenv] = ACTIONS(1022), - [anon_sym_extern] = ACTIONS(1022), - [anon_sym_module] = ACTIONS(1022), - [anon_sym_use] = ACTIONS(1022), - [anon_sym_LPAREN] = ACTIONS(1024), - [anon_sym_DOLLAR] = ACTIONS(1024), - [anon_sym_error] = ACTIONS(1022), - [anon_sym_list] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1022), - [anon_sym_break] = ACTIONS(1022), - [anon_sym_continue] = ACTIONS(1022), - [anon_sym_for] = ACTIONS(1022), - [anon_sym_in] = ACTIONS(1022), - [anon_sym_loop] = ACTIONS(1022), - [anon_sym_make] = ACTIONS(1022), - [anon_sym_while] = ACTIONS(1022), - [anon_sym_do] = ACTIONS(1022), - [anon_sym_if] = ACTIONS(1022), - [anon_sym_else] = ACTIONS(1022), - [anon_sym_match] = ACTIONS(1022), - [anon_sym_RBRACE] = ACTIONS(1024), - [anon_sym_try] = ACTIONS(1022), - [anon_sym_catch] = ACTIONS(1022), - [anon_sym_return] = ACTIONS(1022), - [anon_sym_source] = ACTIONS(1022), - [anon_sym_source_DASHenv] = ACTIONS(1022), - [anon_sym_register] = ACTIONS(1022), - [anon_sym_hide] = ACTIONS(1022), - [anon_sym_hide_DASHenv] = ACTIONS(1022), - [anon_sym_overlay] = ACTIONS(1022), - [anon_sym_new] = ACTIONS(1022), - [anon_sym_as] = ACTIONS(1022), - [anon_sym_QMARK2] = ACTIONS(2392), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1024), - [anon_sym_DOT] = ACTIONS(1022), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1024), - [aux_sym__val_number_decimal_token1] = ACTIONS(1022), - [aux_sym__val_number_decimal_token2] = ACTIONS(1024), - [aux_sym__val_number_decimal_token3] = ACTIONS(1024), - [aux_sym__val_number_decimal_token4] = ACTIONS(1024), - [aux_sym__val_number_token1] = ACTIONS(1024), - [aux_sym__val_number_token2] = ACTIONS(1024), - [aux_sym__val_number_token3] = ACTIONS(1024), - [anon_sym_DQUOTE] = ACTIONS(1024), - [sym__str_single_quotes] = ACTIONS(1024), - [sym__str_back_ticks] = ACTIONS(1024), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1024), - [anon_sym_PLUS] = ACTIONS(1022), - [anon_sym_POUND] = ACTIONS(247), + [461] = { + [sym_comment] = STATE(461), + [anon_sym_export] = ACTIONS(1038), + [anon_sym_alias] = ACTIONS(1038), + [anon_sym_let] = ACTIONS(1038), + [anon_sym_let_DASHenv] = ACTIONS(1038), + [anon_sym_mut] = ACTIONS(1038), + [anon_sym_const] = ACTIONS(1038), + [aux_sym_cmd_identifier_token1] = ACTIONS(1038), + [aux_sym_cmd_identifier_token2] = ACTIONS(1038), + [aux_sym_cmd_identifier_token3] = ACTIONS(1038), + [aux_sym_cmd_identifier_token4] = ACTIONS(1038), + [aux_sym_cmd_identifier_token5] = ACTIONS(1038), + [aux_sym_cmd_identifier_token6] = ACTIONS(1038), + [aux_sym_cmd_identifier_token7] = ACTIONS(1038), + [aux_sym_cmd_identifier_token8] = ACTIONS(1038), + [aux_sym_cmd_identifier_token9] = ACTIONS(1038), + [aux_sym_cmd_identifier_token10] = ACTIONS(1038), + [aux_sym_cmd_identifier_token11] = ACTIONS(1038), + [aux_sym_cmd_identifier_token12] = ACTIONS(1038), + [aux_sym_cmd_identifier_token13] = ACTIONS(1038), + [aux_sym_cmd_identifier_token14] = ACTIONS(1038), + [aux_sym_cmd_identifier_token15] = ACTIONS(1038), + [aux_sym_cmd_identifier_token16] = ACTIONS(1038), + [aux_sym_cmd_identifier_token17] = ACTIONS(1038), + [aux_sym_cmd_identifier_token18] = ACTIONS(1038), + [aux_sym_cmd_identifier_token19] = ACTIONS(1038), + [aux_sym_cmd_identifier_token20] = ACTIONS(1038), + [aux_sym_cmd_identifier_token21] = ACTIONS(1038), + [aux_sym_cmd_identifier_token22] = ACTIONS(1038), + [aux_sym_cmd_identifier_token23] = ACTIONS(1038), + [aux_sym_cmd_identifier_token24] = ACTIONS(1038), + [aux_sym_cmd_identifier_token25] = ACTIONS(1038), + [aux_sym_cmd_identifier_token26] = ACTIONS(1038), + [aux_sym_cmd_identifier_token27] = ACTIONS(1038), + [aux_sym_cmd_identifier_token28] = ACTIONS(1038), + [aux_sym_cmd_identifier_token29] = ACTIONS(1038), + [aux_sym_cmd_identifier_token30] = ACTIONS(1038), + [aux_sym_cmd_identifier_token31] = ACTIONS(1038), + [aux_sym_cmd_identifier_token32] = ACTIONS(1038), + [aux_sym_cmd_identifier_token33] = ACTIONS(1038), + [aux_sym_cmd_identifier_token34] = ACTIONS(1038), + [aux_sym_cmd_identifier_token35] = ACTIONS(1038), + [aux_sym_cmd_identifier_token36] = ACTIONS(1038), + [anon_sym_true] = ACTIONS(1038), + [anon_sym_false] = ACTIONS(1038), + [anon_sym_null] = ACTIONS(1038), + [aux_sym_cmd_identifier_token38] = ACTIONS(1038), + [aux_sym_cmd_identifier_token39] = ACTIONS(1038), + [aux_sym_cmd_identifier_token40] = ACTIONS(1038), + [anon_sym_def] = ACTIONS(1038), + [anon_sym_export_DASHenv] = ACTIONS(1038), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_module] = ACTIONS(1038), + [anon_sym_use] = ACTIONS(1038), + [anon_sym_LPAREN] = ACTIONS(1038), + [anon_sym_DOLLAR] = ACTIONS(1038), + [anon_sym_error] = ACTIONS(1038), + [anon_sym_list] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_break] = ACTIONS(1038), + [anon_sym_continue] = ACTIONS(1038), + [anon_sym_for] = ACTIONS(1038), + [anon_sym_in] = ACTIONS(1038), + [anon_sym_loop] = ACTIONS(1038), + [anon_sym_make] = ACTIONS(1038), + [anon_sym_while] = ACTIONS(1038), + [anon_sym_do] = ACTIONS(1038), + [anon_sym_if] = ACTIONS(1038), + [anon_sym_else] = ACTIONS(1038), + [anon_sym_match] = ACTIONS(1038), + [anon_sym_RBRACE] = ACTIONS(1038), + [anon_sym_try] = ACTIONS(1038), + [anon_sym_catch] = ACTIONS(1038), + [anon_sym_return] = ACTIONS(1038), + [anon_sym_source] = ACTIONS(1038), + [anon_sym_source_DASHenv] = ACTIONS(1038), + [anon_sym_register] = ACTIONS(1038), + [anon_sym_hide] = ACTIONS(1038), + [anon_sym_hide_DASHenv] = ACTIONS(1038), + [anon_sym_overlay] = ACTIONS(1038), + [anon_sym_new] = ACTIONS(1038), + [anon_sym_as] = ACTIONS(1038), + [anon_sym_QMARK2] = ACTIONS(1038), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(1038), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1038), + [aux_sym__val_number_decimal_token1] = ACTIONS(1038), + [aux_sym__val_number_decimal_token2] = ACTIONS(1038), + [aux_sym__val_number_decimal_token3] = ACTIONS(1038), + [aux_sym__val_number_decimal_token4] = ACTIONS(1038), + [aux_sym__val_number_token1] = ACTIONS(1038), + [aux_sym__val_number_token2] = ACTIONS(1038), + [aux_sym__val_number_token3] = ACTIONS(1038), + [anon_sym_DQUOTE] = ACTIONS(1038), + [sym__str_single_quotes] = ACTIONS(1038), + [sym__str_back_ticks] = ACTIONS(1038), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1038), + [sym__entry_separator] = ACTIONS(1040), + [anon_sym_PLUS] = ACTIONS(1038), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1040), }, - [538] = { - [sym_comment] = STATE(538), - [anon_sym_export] = ACTIONS(1050), - [anon_sym_alias] = ACTIONS(1050), - [anon_sym_let] = ACTIONS(1050), - [anon_sym_let_DASHenv] = ACTIONS(1050), - [anon_sym_mut] = ACTIONS(1050), - [anon_sym_const] = ACTIONS(1050), - [aux_sym_cmd_identifier_token1] = ACTIONS(1050), - [aux_sym_cmd_identifier_token2] = ACTIONS(1050), - [aux_sym_cmd_identifier_token3] = ACTIONS(1050), - [aux_sym_cmd_identifier_token4] = ACTIONS(1050), - [aux_sym_cmd_identifier_token5] = ACTIONS(1050), - [aux_sym_cmd_identifier_token6] = ACTIONS(1050), - [aux_sym_cmd_identifier_token7] = ACTIONS(1050), - [aux_sym_cmd_identifier_token8] = ACTIONS(1050), - [aux_sym_cmd_identifier_token9] = ACTIONS(1050), - [aux_sym_cmd_identifier_token10] = ACTIONS(1050), - [aux_sym_cmd_identifier_token11] = ACTIONS(1050), - [aux_sym_cmd_identifier_token12] = ACTIONS(1050), - [aux_sym_cmd_identifier_token13] = ACTIONS(1050), - [aux_sym_cmd_identifier_token14] = ACTIONS(1050), - [aux_sym_cmd_identifier_token15] = ACTIONS(1050), - [aux_sym_cmd_identifier_token16] = ACTIONS(1050), - [aux_sym_cmd_identifier_token17] = ACTIONS(1050), - [aux_sym_cmd_identifier_token18] = ACTIONS(1050), - [aux_sym_cmd_identifier_token19] = ACTIONS(1050), - [aux_sym_cmd_identifier_token20] = ACTIONS(1050), - [aux_sym_cmd_identifier_token21] = ACTIONS(1050), - [aux_sym_cmd_identifier_token22] = ACTIONS(1050), - [aux_sym_cmd_identifier_token23] = ACTIONS(1050), - [aux_sym_cmd_identifier_token24] = ACTIONS(1050), - [aux_sym_cmd_identifier_token25] = ACTIONS(1050), - [aux_sym_cmd_identifier_token26] = ACTIONS(1050), - [aux_sym_cmd_identifier_token27] = ACTIONS(1050), - [aux_sym_cmd_identifier_token28] = ACTIONS(1050), - [aux_sym_cmd_identifier_token29] = ACTIONS(1050), - [aux_sym_cmd_identifier_token30] = ACTIONS(1050), - [aux_sym_cmd_identifier_token31] = ACTIONS(1050), - [aux_sym_cmd_identifier_token32] = ACTIONS(1050), - [aux_sym_cmd_identifier_token33] = ACTIONS(1050), - [aux_sym_cmd_identifier_token34] = ACTIONS(1050), - [aux_sym_cmd_identifier_token35] = ACTIONS(1050), - [aux_sym_cmd_identifier_token36] = ACTIONS(1050), - [anon_sym_true] = ACTIONS(1050), - [anon_sym_false] = ACTIONS(1050), - [anon_sym_null] = ACTIONS(1050), - [aux_sym_cmd_identifier_token38] = ACTIONS(1050), - [aux_sym_cmd_identifier_token39] = ACTIONS(1050), - [aux_sym_cmd_identifier_token40] = ACTIONS(1050), - [anon_sym_def] = ACTIONS(1050), - [anon_sym_export_DASHenv] = ACTIONS(1050), - [anon_sym_extern] = ACTIONS(1050), - [anon_sym_module] = ACTIONS(1050), - [anon_sym_use] = ACTIONS(1050), - [anon_sym_LPAREN] = ACTIONS(1050), - [anon_sym_DOLLAR] = ACTIONS(1050), - [anon_sym_error] = ACTIONS(1050), - [anon_sym_list] = ACTIONS(1050), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_break] = ACTIONS(1050), - [anon_sym_continue] = ACTIONS(1050), - [anon_sym_for] = ACTIONS(1050), - [anon_sym_in] = ACTIONS(1050), - [anon_sym_loop] = ACTIONS(1050), - [anon_sym_make] = ACTIONS(1050), - [anon_sym_while] = ACTIONS(1050), - [anon_sym_do] = ACTIONS(1050), - [anon_sym_if] = ACTIONS(1050), - [anon_sym_else] = ACTIONS(1050), - [anon_sym_match] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(1050), - [anon_sym_try] = ACTIONS(1050), - [anon_sym_catch] = ACTIONS(1050), - [anon_sym_return] = ACTIONS(1050), - [anon_sym_source] = ACTIONS(1050), - [anon_sym_source_DASHenv] = ACTIONS(1050), - [anon_sym_register] = ACTIONS(1050), - [anon_sym_hide] = ACTIONS(1050), - [anon_sym_hide_DASHenv] = ACTIONS(1050), - [anon_sym_overlay] = ACTIONS(1050), - [anon_sym_new] = ACTIONS(1050), - [anon_sym_as] = ACTIONS(1050), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1050), - [anon_sym_DOT] = ACTIONS(1050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1050), - [aux_sym__val_number_decimal_token1] = ACTIONS(1050), - [aux_sym__val_number_decimal_token2] = ACTIONS(1050), - [aux_sym__val_number_decimal_token3] = ACTIONS(1050), - [aux_sym__val_number_decimal_token4] = ACTIONS(1050), - [aux_sym__val_number_token1] = ACTIONS(1050), - [aux_sym__val_number_token2] = ACTIONS(1050), - [aux_sym__val_number_token3] = ACTIONS(1050), - [anon_sym_DQUOTE] = ACTIONS(1050), - [sym__str_single_quotes] = ACTIONS(1050), - [sym__str_back_ticks] = ACTIONS(1050), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1050), - [sym__entry_separator] = ACTIONS(1052), - [anon_sym_PLUS] = ACTIONS(1050), + [462] = { + [sym_comment] = STATE(462), + [anon_sym_export] = ACTIONS(1703), + [anon_sym_alias] = ACTIONS(1703), + [anon_sym_let] = ACTIONS(1703), + [anon_sym_let_DASHenv] = ACTIONS(1703), + [anon_sym_mut] = ACTIONS(1703), + [anon_sym_const] = ACTIONS(1703), + [aux_sym_cmd_identifier_token1] = ACTIONS(1703), + [aux_sym_cmd_identifier_token2] = ACTIONS(1703), + [aux_sym_cmd_identifier_token3] = ACTIONS(1703), + [aux_sym_cmd_identifier_token4] = ACTIONS(1703), + [aux_sym_cmd_identifier_token5] = ACTIONS(1703), + [aux_sym_cmd_identifier_token6] = ACTIONS(1703), + [aux_sym_cmd_identifier_token7] = ACTIONS(1703), + [aux_sym_cmd_identifier_token8] = ACTIONS(1703), + [aux_sym_cmd_identifier_token9] = ACTIONS(1703), + [aux_sym_cmd_identifier_token10] = ACTIONS(1703), + [aux_sym_cmd_identifier_token11] = ACTIONS(1703), + [aux_sym_cmd_identifier_token12] = ACTIONS(1703), + [aux_sym_cmd_identifier_token13] = ACTIONS(1703), + [aux_sym_cmd_identifier_token14] = ACTIONS(1703), + [aux_sym_cmd_identifier_token15] = ACTIONS(1703), + [aux_sym_cmd_identifier_token16] = ACTIONS(1703), + [aux_sym_cmd_identifier_token17] = ACTIONS(1703), + [aux_sym_cmd_identifier_token18] = ACTIONS(1703), + [aux_sym_cmd_identifier_token19] = ACTIONS(1703), + [aux_sym_cmd_identifier_token20] = ACTIONS(1703), + [aux_sym_cmd_identifier_token21] = ACTIONS(1703), + [aux_sym_cmd_identifier_token22] = ACTIONS(1703), + [aux_sym_cmd_identifier_token23] = ACTIONS(1703), + [aux_sym_cmd_identifier_token24] = ACTIONS(1703), + [aux_sym_cmd_identifier_token25] = ACTIONS(1703), + [aux_sym_cmd_identifier_token26] = ACTIONS(1703), + [aux_sym_cmd_identifier_token27] = ACTIONS(1703), + [aux_sym_cmd_identifier_token28] = ACTIONS(1703), + [aux_sym_cmd_identifier_token29] = ACTIONS(1703), + [aux_sym_cmd_identifier_token30] = ACTIONS(1703), + [aux_sym_cmd_identifier_token31] = ACTIONS(1703), + [aux_sym_cmd_identifier_token32] = ACTIONS(1703), + [aux_sym_cmd_identifier_token33] = ACTIONS(1703), + [aux_sym_cmd_identifier_token34] = ACTIONS(1703), + [aux_sym_cmd_identifier_token35] = ACTIONS(1703), + [aux_sym_cmd_identifier_token36] = ACTIONS(1703), + [anon_sym_true] = ACTIONS(1703), + [anon_sym_false] = ACTIONS(1703), + [anon_sym_null] = ACTIONS(1703), + [aux_sym_cmd_identifier_token38] = ACTIONS(1703), + [aux_sym_cmd_identifier_token39] = ACTIONS(1703), + [aux_sym_cmd_identifier_token40] = ACTIONS(1703), + [anon_sym_def] = ACTIONS(1703), + [anon_sym_export_DASHenv] = ACTIONS(1703), + [anon_sym_extern] = ACTIONS(1703), + [anon_sym_module] = ACTIONS(1703), + [anon_sym_use] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1703), + [anon_sym_error] = ACTIONS(1703), + [anon_sym_list] = ACTIONS(1703), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_break] = ACTIONS(1703), + [anon_sym_continue] = ACTIONS(1703), + [anon_sym_for] = ACTIONS(1703), + [anon_sym_in] = ACTIONS(1703), + [anon_sym_loop] = ACTIONS(1703), + [anon_sym_make] = ACTIONS(1703), + [anon_sym_while] = ACTIONS(1703), + [anon_sym_do] = ACTIONS(1703), + [anon_sym_if] = ACTIONS(1703), + [anon_sym_else] = ACTIONS(1703), + [anon_sym_match] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1703), + [anon_sym_try] = ACTIONS(1703), + [anon_sym_catch] = ACTIONS(1703), + [anon_sym_return] = ACTIONS(1703), + [anon_sym_source] = ACTIONS(1703), + [anon_sym_source_DASHenv] = ACTIONS(1703), + [anon_sym_register] = ACTIONS(1703), + [anon_sym_hide] = ACTIONS(1703), + [anon_sym_hide_DASHenv] = ACTIONS(1703), + [anon_sym_overlay] = ACTIONS(1703), + [anon_sym_new] = ACTIONS(1703), + [anon_sym_as] = ACTIONS(1703), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1703), + [aux_sym__immediate_decimal_token1] = ACTIONS(2258), + [aux_sym__immediate_decimal_token2] = ACTIONS(2260), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1703), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1703), + [sym__entry_separator] = ACTIONS(1705), + [anon_sym_PLUS] = ACTIONS(1703), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1705), }, - [539] = { - [sym_comment] = STATE(539), + [463] = { + [sym_comment] = STATE(463), [anon_sym_export] = ACTIONS(1054), [anon_sym_alias] = ACTIONS(1054), [anon_sym_let] = ACTIONS(1054), @@ -135603,6 +129371,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(1054), [anon_sym_new] = ACTIONS(1054), [anon_sym_as] = ACTIONS(1054), + [anon_sym_QMARK2] = ACTIONS(1054), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1054), [anon_sym_DOT] = ACTIONS(1054), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1054), @@ -135620,817 +129389,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__entry_separator] = ACTIONS(1056), [anon_sym_PLUS] = ACTIONS(1054), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1056), }, - [540] = { - [sym_comment] = STATE(540), - [anon_sym_export] = ACTIONS(2287), - [anon_sym_alias] = ACTIONS(2287), - [anon_sym_let] = ACTIONS(2287), - [anon_sym_let_DASHenv] = ACTIONS(2287), - [anon_sym_mut] = ACTIONS(2287), - [anon_sym_const] = ACTIONS(2287), - [aux_sym_cmd_identifier_token1] = ACTIONS(2287), - [aux_sym_cmd_identifier_token2] = ACTIONS(2287), - [aux_sym_cmd_identifier_token3] = ACTIONS(2287), - [aux_sym_cmd_identifier_token4] = ACTIONS(2287), - [aux_sym_cmd_identifier_token5] = ACTIONS(2287), - [aux_sym_cmd_identifier_token6] = ACTIONS(2287), - [aux_sym_cmd_identifier_token7] = ACTIONS(2287), - [aux_sym_cmd_identifier_token8] = ACTIONS(2287), - [aux_sym_cmd_identifier_token9] = ACTIONS(2287), - [aux_sym_cmd_identifier_token10] = ACTIONS(2287), - [aux_sym_cmd_identifier_token11] = ACTIONS(2287), - [aux_sym_cmd_identifier_token12] = ACTIONS(2287), - [aux_sym_cmd_identifier_token13] = ACTIONS(2287), - [aux_sym_cmd_identifier_token14] = ACTIONS(2287), - [aux_sym_cmd_identifier_token15] = ACTIONS(2287), - [aux_sym_cmd_identifier_token16] = ACTIONS(2287), - [aux_sym_cmd_identifier_token17] = ACTIONS(2287), - [aux_sym_cmd_identifier_token18] = ACTIONS(2287), - [aux_sym_cmd_identifier_token19] = ACTIONS(2287), - [aux_sym_cmd_identifier_token20] = ACTIONS(2287), - [aux_sym_cmd_identifier_token21] = ACTIONS(2287), - [aux_sym_cmd_identifier_token22] = ACTIONS(2287), - [aux_sym_cmd_identifier_token23] = ACTIONS(2287), - [aux_sym_cmd_identifier_token24] = ACTIONS(2287), - [aux_sym_cmd_identifier_token25] = ACTIONS(2287), - [aux_sym_cmd_identifier_token26] = ACTIONS(2287), - [aux_sym_cmd_identifier_token27] = ACTIONS(2287), - [aux_sym_cmd_identifier_token28] = ACTIONS(2287), - [aux_sym_cmd_identifier_token29] = ACTIONS(2287), - [aux_sym_cmd_identifier_token30] = ACTIONS(2287), - [aux_sym_cmd_identifier_token31] = ACTIONS(2287), - [aux_sym_cmd_identifier_token32] = ACTIONS(2287), - [aux_sym_cmd_identifier_token33] = ACTIONS(2287), - [aux_sym_cmd_identifier_token34] = ACTIONS(2287), - [aux_sym_cmd_identifier_token35] = ACTIONS(2287), - [aux_sym_cmd_identifier_token36] = ACTIONS(2287), - [anon_sym_true] = ACTIONS(2289), - [anon_sym_false] = ACTIONS(2289), - [anon_sym_null] = ACTIONS(2289), - [aux_sym_cmd_identifier_token38] = ACTIONS(2287), - [aux_sym_cmd_identifier_token39] = ACTIONS(2289), - [aux_sym_cmd_identifier_token40] = ACTIONS(2289), - [anon_sym_def] = ACTIONS(2287), - [anon_sym_export_DASHenv] = ACTIONS(2287), - [anon_sym_extern] = ACTIONS(2287), - [anon_sym_module] = ACTIONS(2287), - [anon_sym_use] = ACTIONS(2287), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_DOLLAR] = ACTIONS(2289), - [anon_sym_error] = ACTIONS(2287), - [anon_sym_list] = ACTIONS(2287), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_break] = ACTIONS(2287), - [anon_sym_continue] = ACTIONS(2287), - [anon_sym_for] = ACTIONS(2287), - [anon_sym_in] = ACTIONS(2287), - [anon_sym_loop] = ACTIONS(2287), - [anon_sym_make] = ACTIONS(2287), - [anon_sym_while] = ACTIONS(2287), - [anon_sym_do] = ACTIONS(2287), - [anon_sym_if] = ACTIONS(2287), - [anon_sym_else] = ACTIONS(2287), - [anon_sym_match] = ACTIONS(2287), - [anon_sym_RBRACE] = ACTIONS(2289), - [anon_sym_try] = ACTIONS(2287), - [anon_sym_catch] = ACTIONS(2287), - [anon_sym_return] = ACTIONS(2287), - [anon_sym_source] = ACTIONS(2287), - [anon_sym_source_DASHenv] = ACTIONS(2287), - [anon_sym_register] = ACTIONS(2287), - [anon_sym_hide] = ACTIONS(2287), - [anon_sym_hide_DASHenv] = ACTIONS(2287), - [anon_sym_overlay] = ACTIONS(2287), - [anon_sym_new] = ACTIONS(2287), - [anon_sym_as] = ACTIONS(2287), - [anon_sym_LPAREN2] = ACTIONS(1790), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2289), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2289), - [aux_sym__val_number_decimal_token1] = ACTIONS(2287), - [aux_sym__val_number_decimal_token2] = ACTIONS(2289), - [aux_sym__val_number_decimal_token3] = ACTIONS(2289), - [aux_sym__val_number_decimal_token4] = ACTIONS(2289), - [aux_sym__val_number_token1] = ACTIONS(2289), - [aux_sym__val_number_token2] = ACTIONS(2289), - [aux_sym__val_number_token3] = ACTIONS(2289), - [anon_sym_DQUOTE] = ACTIONS(2289), - [sym__str_single_quotes] = ACTIONS(2289), - [sym__str_back_ticks] = ACTIONS(2289), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2289), - [anon_sym_PLUS] = ACTIONS(2287), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1798), - [anon_sym_POUND] = ACTIONS(247), - }, - [541] = { - [sym_comment] = STATE(541), - [anon_sym_export] = ACTIONS(1788), - [anon_sym_alias] = ACTIONS(1788), - [anon_sym_let] = ACTIONS(1788), - [anon_sym_let_DASHenv] = ACTIONS(1788), - [anon_sym_mut] = ACTIONS(1788), - [anon_sym_const] = ACTIONS(1788), - [aux_sym_cmd_identifier_token1] = ACTIONS(1788), - [aux_sym_cmd_identifier_token2] = ACTIONS(1788), - [aux_sym_cmd_identifier_token3] = ACTIONS(1788), - [aux_sym_cmd_identifier_token4] = ACTIONS(1788), - [aux_sym_cmd_identifier_token5] = ACTIONS(1788), - [aux_sym_cmd_identifier_token6] = ACTIONS(1788), - [aux_sym_cmd_identifier_token7] = ACTIONS(1788), - [aux_sym_cmd_identifier_token8] = ACTIONS(1788), - [aux_sym_cmd_identifier_token9] = ACTIONS(1788), - [aux_sym_cmd_identifier_token10] = ACTIONS(1788), - [aux_sym_cmd_identifier_token11] = ACTIONS(1788), - [aux_sym_cmd_identifier_token12] = ACTIONS(1788), - [aux_sym_cmd_identifier_token13] = ACTIONS(1788), - [aux_sym_cmd_identifier_token14] = ACTIONS(1788), - [aux_sym_cmd_identifier_token15] = ACTIONS(1788), - [aux_sym_cmd_identifier_token16] = ACTIONS(1788), - [aux_sym_cmd_identifier_token17] = ACTIONS(1788), - [aux_sym_cmd_identifier_token18] = ACTIONS(1788), - [aux_sym_cmd_identifier_token19] = ACTIONS(1788), - [aux_sym_cmd_identifier_token20] = ACTIONS(1788), - [aux_sym_cmd_identifier_token21] = ACTIONS(1788), - [aux_sym_cmd_identifier_token22] = ACTIONS(1788), - [aux_sym_cmd_identifier_token23] = ACTIONS(1788), - [aux_sym_cmd_identifier_token24] = ACTIONS(1788), - [aux_sym_cmd_identifier_token25] = ACTIONS(1788), - [aux_sym_cmd_identifier_token26] = ACTIONS(1788), - [aux_sym_cmd_identifier_token27] = ACTIONS(1788), - [aux_sym_cmd_identifier_token28] = ACTIONS(1788), - [aux_sym_cmd_identifier_token29] = ACTIONS(1788), - [aux_sym_cmd_identifier_token30] = ACTIONS(1788), - [aux_sym_cmd_identifier_token31] = ACTIONS(1788), - [aux_sym_cmd_identifier_token32] = ACTIONS(1788), - [aux_sym_cmd_identifier_token33] = ACTIONS(1788), - [aux_sym_cmd_identifier_token34] = ACTIONS(1788), - [aux_sym_cmd_identifier_token35] = ACTIONS(1788), - [aux_sym_cmd_identifier_token36] = ACTIONS(1788), - [anon_sym_true] = ACTIONS(1796), - [anon_sym_false] = ACTIONS(1796), - [anon_sym_null] = ACTIONS(1796), - [aux_sym_cmd_identifier_token38] = ACTIONS(1788), - [aux_sym_cmd_identifier_token39] = ACTIONS(1796), - [aux_sym_cmd_identifier_token40] = ACTIONS(1796), - [anon_sym_def] = ACTIONS(1788), - [anon_sym_export_DASHenv] = ACTIONS(1788), - [anon_sym_extern] = ACTIONS(1788), - [anon_sym_module] = ACTIONS(1788), - [anon_sym_use] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1788), - [anon_sym_DOLLAR] = ACTIONS(1796), - [anon_sym_error] = ACTIONS(1788), - [anon_sym_list] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_break] = ACTIONS(1788), - [anon_sym_continue] = ACTIONS(1788), - [anon_sym_for] = ACTIONS(1788), - [anon_sym_in] = ACTIONS(1788), - [anon_sym_loop] = ACTIONS(1788), - [anon_sym_make] = ACTIONS(1788), - [anon_sym_while] = ACTIONS(1788), - [anon_sym_do] = ACTIONS(1788), - [anon_sym_if] = ACTIONS(1788), - [anon_sym_else] = ACTIONS(1788), - [anon_sym_match] = ACTIONS(1788), - [anon_sym_RBRACE] = ACTIONS(1796), - [anon_sym_try] = ACTIONS(1788), - [anon_sym_catch] = ACTIONS(1788), - [anon_sym_return] = ACTIONS(1788), - [anon_sym_source] = ACTIONS(1788), - [anon_sym_source_DASHenv] = ACTIONS(1788), - [anon_sym_register] = ACTIONS(1788), - [anon_sym_hide] = ACTIONS(1788), - [anon_sym_hide_DASHenv] = ACTIONS(1788), - [anon_sym_overlay] = ACTIONS(1788), - [anon_sym_new] = ACTIONS(1788), - [anon_sym_as] = ACTIONS(1788), - [anon_sym_LPAREN2] = ACTIONS(1790), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1796), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1796), - [aux_sym__val_number_decimal_token1] = ACTIONS(1788), - [aux_sym__val_number_decimal_token2] = ACTIONS(1796), - [aux_sym__val_number_decimal_token3] = ACTIONS(1796), - [aux_sym__val_number_decimal_token4] = ACTIONS(1796), - [aux_sym__val_number_token1] = ACTIONS(1796), - [aux_sym__val_number_token2] = ACTIONS(1796), - [aux_sym__val_number_token3] = ACTIONS(1796), - [anon_sym_DQUOTE] = ACTIONS(1796), - [sym__str_single_quotes] = ACTIONS(1796), - [sym__str_back_ticks] = ACTIONS(1796), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1796), - [anon_sym_PLUS] = ACTIONS(1788), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1798), - [anon_sym_POUND] = ACTIONS(247), - }, - [542] = { - [sym_comment] = STATE(542), - [anon_sym_export] = ACTIONS(2291), - [anon_sym_alias] = ACTIONS(2291), - [anon_sym_let] = ACTIONS(2291), - [anon_sym_let_DASHenv] = ACTIONS(2291), - [anon_sym_mut] = ACTIONS(2291), - [anon_sym_const] = ACTIONS(2291), - [aux_sym_cmd_identifier_token1] = ACTIONS(2291), - [aux_sym_cmd_identifier_token2] = ACTIONS(2291), - [aux_sym_cmd_identifier_token3] = ACTIONS(2291), - [aux_sym_cmd_identifier_token4] = ACTIONS(2291), - [aux_sym_cmd_identifier_token5] = ACTIONS(2291), - [aux_sym_cmd_identifier_token6] = ACTIONS(2291), - [aux_sym_cmd_identifier_token7] = ACTIONS(2291), - [aux_sym_cmd_identifier_token8] = ACTIONS(2291), - [aux_sym_cmd_identifier_token9] = ACTIONS(2291), - [aux_sym_cmd_identifier_token10] = ACTIONS(2291), - [aux_sym_cmd_identifier_token11] = ACTIONS(2291), - [aux_sym_cmd_identifier_token12] = ACTIONS(2291), - [aux_sym_cmd_identifier_token13] = ACTIONS(2291), - [aux_sym_cmd_identifier_token14] = ACTIONS(2291), - [aux_sym_cmd_identifier_token15] = ACTIONS(2291), - [aux_sym_cmd_identifier_token16] = ACTIONS(2291), - [aux_sym_cmd_identifier_token17] = ACTIONS(2291), - [aux_sym_cmd_identifier_token18] = ACTIONS(2291), - [aux_sym_cmd_identifier_token19] = ACTIONS(2291), - [aux_sym_cmd_identifier_token20] = ACTIONS(2291), - [aux_sym_cmd_identifier_token21] = ACTIONS(2291), - [aux_sym_cmd_identifier_token22] = ACTIONS(2291), - [aux_sym_cmd_identifier_token23] = ACTIONS(2291), - [aux_sym_cmd_identifier_token24] = ACTIONS(2291), - [aux_sym_cmd_identifier_token25] = ACTIONS(2291), - [aux_sym_cmd_identifier_token26] = ACTIONS(2291), - [aux_sym_cmd_identifier_token27] = ACTIONS(2291), - [aux_sym_cmd_identifier_token28] = ACTIONS(2291), - [aux_sym_cmd_identifier_token29] = ACTIONS(2291), - [aux_sym_cmd_identifier_token30] = ACTIONS(2291), - [aux_sym_cmd_identifier_token31] = ACTIONS(2291), - [aux_sym_cmd_identifier_token32] = ACTIONS(2291), - [aux_sym_cmd_identifier_token33] = ACTIONS(2291), - [aux_sym_cmd_identifier_token34] = ACTIONS(2291), - [aux_sym_cmd_identifier_token35] = ACTIONS(2291), - [aux_sym_cmd_identifier_token36] = ACTIONS(2291), - [anon_sym_true] = ACTIONS(2295), - [anon_sym_false] = ACTIONS(2295), - [anon_sym_null] = ACTIONS(2295), - [aux_sym_cmd_identifier_token38] = ACTIONS(2291), - [aux_sym_cmd_identifier_token39] = ACTIONS(2295), - [aux_sym_cmd_identifier_token40] = ACTIONS(2295), - [anon_sym_def] = ACTIONS(2291), - [anon_sym_export_DASHenv] = ACTIONS(2291), - [anon_sym_extern] = ACTIONS(2291), - [anon_sym_module] = ACTIONS(2291), - [anon_sym_use] = ACTIONS(2291), - [anon_sym_LPAREN] = ACTIONS(2291), - [anon_sym_DOLLAR] = ACTIONS(2295), - [anon_sym_error] = ACTIONS(2291), - [anon_sym_list] = ACTIONS(2291), - [anon_sym_DASH] = ACTIONS(2291), - [anon_sym_break] = ACTIONS(2291), - [anon_sym_continue] = ACTIONS(2291), - [anon_sym_for] = ACTIONS(2291), - [anon_sym_in] = ACTIONS(2291), - [anon_sym_loop] = ACTIONS(2291), - [anon_sym_make] = ACTIONS(2291), - [anon_sym_while] = ACTIONS(2291), - [anon_sym_do] = ACTIONS(2291), - [anon_sym_if] = ACTIONS(2291), - [anon_sym_else] = ACTIONS(2291), - [anon_sym_match] = ACTIONS(2291), - [anon_sym_RBRACE] = ACTIONS(2295), - [anon_sym_try] = ACTIONS(2291), - [anon_sym_catch] = ACTIONS(2291), - [anon_sym_return] = ACTIONS(2291), - [anon_sym_source] = ACTIONS(2291), - [anon_sym_source_DASHenv] = ACTIONS(2291), - [anon_sym_register] = ACTIONS(2291), - [anon_sym_hide] = ACTIONS(2291), - [anon_sym_hide_DASHenv] = ACTIONS(2291), - [anon_sym_overlay] = ACTIONS(2291), - [anon_sym_new] = ACTIONS(2291), - [anon_sym_as] = ACTIONS(2291), - [anon_sym_LPAREN2] = ACTIONS(2293), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2295), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2295), - [aux_sym__val_number_decimal_token1] = ACTIONS(2291), - [aux_sym__val_number_decimal_token2] = ACTIONS(2295), - [aux_sym__val_number_decimal_token3] = ACTIONS(2295), - [aux_sym__val_number_decimal_token4] = ACTIONS(2295), - [aux_sym__val_number_token1] = ACTIONS(2295), - [aux_sym__val_number_token2] = ACTIONS(2295), - [aux_sym__val_number_token3] = ACTIONS(2295), - [anon_sym_DQUOTE] = ACTIONS(2295), - [sym__str_single_quotes] = ACTIONS(2295), - [sym__str_back_ticks] = ACTIONS(2295), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2295), - [anon_sym_PLUS] = ACTIONS(2291), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1552), - [anon_sym_POUND] = ACTIONS(247), - }, - [543] = { - [sym_comment] = STATE(543), - [anon_sym_export] = ACTIONS(2297), - [anon_sym_alias] = ACTIONS(2297), - [anon_sym_let] = ACTIONS(2297), - [anon_sym_let_DASHenv] = ACTIONS(2297), - [anon_sym_mut] = ACTIONS(2297), - [anon_sym_const] = ACTIONS(2297), - [aux_sym_cmd_identifier_token1] = ACTIONS(2297), - [aux_sym_cmd_identifier_token2] = ACTIONS(2297), - [aux_sym_cmd_identifier_token3] = ACTIONS(2297), - [aux_sym_cmd_identifier_token4] = ACTIONS(2297), - [aux_sym_cmd_identifier_token5] = ACTIONS(2297), - [aux_sym_cmd_identifier_token6] = ACTIONS(2297), - [aux_sym_cmd_identifier_token7] = ACTIONS(2297), - [aux_sym_cmd_identifier_token8] = ACTIONS(2297), - [aux_sym_cmd_identifier_token9] = ACTIONS(2297), - [aux_sym_cmd_identifier_token10] = ACTIONS(2297), - [aux_sym_cmd_identifier_token11] = ACTIONS(2297), - [aux_sym_cmd_identifier_token12] = ACTIONS(2297), - [aux_sym_cmd_identifier_token13] = ACTIONS(2297), - [aux_sym_cmd_identifier_token14] = ACTIONS(2297), - [aux_sym_cmd_identifier_token15] = ACTIONS(2297), - [aux_sym_cmd_identifier_token16] = ACTIONS(2297), - [aux_sym_cmd_identifier_token17] = ACTIONS(2297), - [aux_sym_cmd_identifier_token18] = ACTIONS(2297), - [aux_sym_cmd_identifier_token19] = ACTIONS(2297), - [aux_sym_cmd_identifier_token20] = ACTIONS(2297), - [aux_sym_cmd_identifier_token21] = ACTIONS(2297), - [aux_sym_cmd_identifier_token22] = ACTIONS(2297), - [aux_sym_cmd_identifier_token23] = ACTIONS(2297), - [aux_sym_cmd_identifier_token24] = ACTIONS(2297), - [aux_sym_cmd_identifier_token25] = ACTIONS(2297), - [aux_sym_cmd_identifier_token26] = ACTIONS(2297), - [aux_sym_cmd_identifier_token27] = ACTIONS(2297), - [aux_sym_cmd_identifier_token28] = ACTIONS(2297), - [aux_sym_cmd_identifier_token29] = ACTIONS(2297), - [aux_sym_cmd_identifier_token30] = ACTIONS(2297), - [aux_sym_cmd_identifier_token31] = ACTIONS(2297), - [aux_sym_cmd_identifier_token32] = ACTIONS(2297), - [aux_sym_cmd_identifier_token33] = ACTIONS(2297), - [aux_sym_cmd_identifier_token34] = ACTIONS(2297), - [aux_sym_cmd_identifier_token35] = ACTIONS(2297), - [aux_sym_cmd_identifier_token36] = ACTIONS(2297), - [anon_sym_true] = ACTIONS(2301), - [anon_sym_false] = ACTIONS(2301), - [anon_sym_null] = ACTIONS(2301), - [aux_sym_cmd_identifier_token38] = ACTIONS(2297), - [aux_sym_cmd_identifier_token39] = ACTIONS(2301), - [aux_sym_cmd_identifier_token40] = ACTIONS(2301), - [anon_sym_def] = ACTIONS(2297), - [anon_sym_export_DASHenv] = ACTIONS(2297), - [anon_sym_extern] = ACTIONS(2297), - [anon_sym_module] = ACTIONS(2297), - [anon_sym_use] = ACTIONS(2297), - [anon_sym_LPAREN] = ACTIONS(2297), - [anon_sym_DOLLAR] = ACTIONS(2301), - [anon_sym_error] = ACTIONS(2297), - [anon_sym_list] = ACTIONS(2297), - [anon_sym_DASH] = ACTIONS(2297), - [anon_sym_break] = ACTIONS(2297), - [anon_sym_continue] = ACTIONS(2297), - [anon_sym_for] = ACTIONS(2297), - [anon_sym_in] = ACTIONS(2297), - [anon_sym_loop] = ACTIONS(2297), - [anon_sym_make] = ACTIONS(2297), - [anon_sym_while] = ACTIONS(2297), - [anon_sym_do] = ACTIONS(2297), - [anon_sym_if] = ACTIONS(2297), - [anon_sym_else] = ACTIONS(2297), - [anon_sym_match] = ACTIONS(2297), - [anon_sym_RBRACE] = ACTIONS(2301), - [anon_sym_try] = ACTIONS(2297), - [anon_sym_catch] = ACTIONS(2297), - [anon_sym_return] = ACTIONS(2297), - [anon_sym_source] = ACTIONS(2297), - [anon_sym_source_DASHenv] = ACTIONS(2297), - [anon_sym_register] = ACTIONS(2297), - [anon_sym_hide] = ACTIONS(2297), - [anon_sym_hide_DASHenv] = ACTIONS(2297), - [anon_sym_overlay] = ACTIONS(2297), - [anon_sym_new] = ACTIONS(2297), - [anon_sym_as] = ACTIONS(2297), - [anon_sym_LPAREN2] = ACTIONS(2299), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2301), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2301), - [aux_sym__val_number_decimal_token1] = ACTIONS(2297), - [aux_sym__val_number_decimal_token2] = ACTIONS(2301), - [aux_sym__val_number_decimal_token3] = ACTIONS(2301), - [aux_sym__val_number_decimal_token4] = ACTIONS(2301), - [aux_sym__val_number_token1] = ACTIONS(2301), - [aux_sym__val_number_token2] = ACTIONS(2301), - [aux_sym__val_number_token3] = ACTIONS(2301), - [anon_sym_DQUOTE] = ACTIONS(2301), - [sym__str_single_quotes] = ACTIONS(2301), - [sym__str_back_ticks] = ACTIONS(2301), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2301), - [anon_sym_PLUS] = ACTIONS(2297), - [aux_sym__unquoted_in_record_token2] = ACTIONS(2303), - [anon_sym_POUND] = ACTIONS(247), - }, - [544] = { - [sym_comment] = STATE(544), - [anon_sym_export] = ACTIONS(1028), - [anon_sym_alias] = ACTIONS(1028), - [anon_sym_let] = ACTIONS(1028), - [anon_sym_let_DASHenv] = ACTIONS(1028), - [anon_sym_mut] = ACTIONS(1028), - [anon_sym_const] = ACTIONS(1028), - [aux_sym_cmd_identifier_token1] = ACTIONS(1028), - [aux_sym_cmd_identifier_token2] = ACTIONS(1028), - [aux_sym_cmd_identifier_token3] = ACTIONS(1028), - [aux_sym_cmd_identifier_token4] = ACTIONS(1028), - [aux_sym_cmd_identifier_token5] = ACTIONS(1028), - [aux_sym_cmd_identifier_token6] = ACTIONS(1028), - [aux_sym_cmd_identifier_token7] = ACTIONS(1028), - [aux_sym_cmd_identifier_token8] = ACTIONS(1028), - [aux_sym_cmd_identifier_token9] = ACTIONS(1028), - [aux_sym_cmd_identifier_token10] = ACTIONS(1028), - [aux_sym_cmd_identifier_token11] = ACTIONS(1028), - [aux_sym_cmd_identifier_token12] = ACTIONS(1028), - [aux_sym_cmd_identifier_token13] = ACTIONS(1028), - [aux_sym_cmd_identifier_token14] = ACTIONS(1028), - [aux_sym_cmd_identifier_token15] = ACTIONS(1028), - [aux_sym_cmd_identifier_token16] = ACTIONS(1028), - [aux_sym_cmd_identifier_token17] = ACTIONS(1028), - [aux_sym_cmd_identifier_token18] = ACTIONS(1028), - [aux_sym_cmd_identifier_token19] = ACTIONS(1028), - [aux_sym_cmd_identifier_token20] = ACTIONS(1028), - [aux_sym_cmd_identifier_token21] = ACTIONS(1028), - [aux_sym_cmd_identifier_token22] = ACTIONS(1028), - [aux_sym_cmd_identifier_token23] = ACTIONS(1028), - [aux_sym_cmd_identifier_token24] = ACTIONS(1028), - [aux_sym_cmd_identifier_token25] = ACTIONS(1028), - [aux_sym_cmd_identifier_token26] = ACTIONS(1028), - [aux_sym_cmd_identifier_token27] = ACTIONS(1028), - [aux_sym_cmd_identifier_token28] = ACTIONS(1028), - [aux_sym_cmd_identifier_token29] = ACTIONS(1028), - [aux_sym_cmd_identifier_token30] = ACTIONS(1028), - [aux_sym_cmd_identifier_token31] = ACTIONS(1028), - [aux_sym_cmd_identifier_token32] = ACTIONS(1028), - [aux_sym_cmd_identifier_token33] = ACTIONS(1028), - [aux_sym_cmd_identifier_token34] = ACTIONS(1028), - [aux_sym_cmd_identifier_token35] = ACTIONS(1028), - [aux_sym_cmd_identifier_token36] = ACTIONS(1028), - [anon_sym_true] = ACTIONS(1030), - [anon_sym_false] = ACTIONS(1030), - [anon_sym_null] = ACTIONS(1030), - [aux_sym_cmd_identifier_token38] = ACTIONS(1028), - [aux_sym_cmd_identifier_token39] = ACTIONS(1030), - [aux_sym_cmd_identifier_token40] = ACTIONS(1030), - [anon_sym_def] = ACTIONS(1028), - [anon_sym_export_DASHenv] = ACTIONS(1028), - [anon_sym_extern] = ACTIONS(1028), - [anon_sym_module] = ACTIONS(1028), - [anon_sym_use] = ACTIONS(1028), - [anon_sym_LPAREN] = ACTIONS(1030), - [anon_sym_DOLLAR] = ACTIONS(1030), - [anon_sym_error] = ACTIONS(1028), - [anon_sym_list] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1028), - [anon_sym_break] = ACTIONS(1028), - [anon_sym_continue] = ACTIONS(1028), - [anon_sym_for] = ACTIONS(1028), - [anon_sym_in] = ACTIONS(1028), - [anon_sym_loop] = ACTIONS(1028), - [anon_sym_make] = ACTIONS(1028), - [anon_sym_while] = ACTIONS(1028), - [anon_sym_do] = ACTIONS(1028), - [anon_sym_if] = ACTIONS(1028), - [anon_sym_else] = ACTIONS(1028), - [anon_sym_match] = ACTIONS(1028), - [anon_sym_RBRACE] = ACTIONS(1030), - [anon_sym_try] = ACTIONS(1028), - [anon_sym_catch] = ACTIONS(1028), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_source] = ACTIONS(1028), - [anon_sym_source_DASHenv] = ACTIONS(1028), - [anon_sym_register] = ACTIONS(1028), - [anon_sym_hide] = ACTIONS(1028), - [anon_sym_hide_DASHenv] = ACTIONS(1028), - [anon_sym_overlay] = ACTIONS(1028), - [anon_sym_new] = ACTIONS(1028), - [anon_sym_as] = ACTIONS(1028), - [anon_sym_QMARK2] = ACTIONS(2394), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1030), - [anon_sym_DOT] = ACTIONS(1028), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1030), - [aux_sym__val_number_decimal_token1] = ACTIONS(1028), - [aux_sym__val_number_decimal_token2] = ACTIONS(1030), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), - [aux_sym__val_number_token1] = ACTIONS(1030), - [aux_sym__val_number_token2] = ACTIONS(1030), - [aux_sym__val_number_token3] = ACTIONS(1030), - [anon_sym_DQUOTE] = ACTIONS(1030), - [sym__str_single_quotes] = ACTIONS(1030), - [sym__str_back_ticks] = ACTIONS(1030), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1030), - [anon_sym_PLUS] = ACTIONS(1028), - [anon_sym_POUND] = ACTIONS(247), - }, - [545] = { - [sym_comment] = STATE(545), - [anon_sym_export] = ACTIONS(2253), - [anon_sym_alias] = ACTIONS(2253), - [anon_sym_let] = ACTIONS(2253), - [anon_sym_let_DASHenv] = ACTIONS(2253), - [anon_sym_mut] = ACTIONS(2253), - [anon_sym_const] = ACTIONS(2253), - [aux_sym_cmd_identifier_token1] = ACTIONS(2253), - [aux_sym_cmd_identifier_token2] = ACTIONS(2253), - [aux_sym_cmd_identifier_token3] = ACTIONS(2253), - [aux_sym_cmd_identifier_token4] = ACTIONS(2253), - [aux_sym_cmd_identifier_token5] = ACTIONS(2253), - [aux_sym_cmd_identifier_token6] = ACTIONS(2253), - [aux_sym_cmd_identifier_token7] = ACTIONS(2253), - [aux_sym_cmd_identifier_token8] = ACTIONS(2253), - [aux_sym_cmd_identifier_token9] = ACTIONS(2253), - [aux_sym_cmd_identifier_token10] = ACTIONS(2253), - [aux_sym_cmd_identifier_token11] = ACTIONS(2253), - [aux_sym_cmd_identifier_token12] = ACTIONS(2253), - [aux_sym_cmd_identifier_token13] = ACTIONS(2253), - [aux_sym_cmd_identifier_token14] = ACTIONS(2253), - [aux_sym_cmd_identifier_token15] = ACTIONS(2253), - [aux_sym_cmd_identifier_token16] = ACTIONS(2253), - [aux_sym_cmd_identifier_token17] = ACTIONS(2253), - [aux_sym_cmd_identifier_token18] = ACTIONS(2253), - [aux_sym_cmd_identifier_token19] = ACTIONS(2253), - [aux_sym_cmd_identifier_token20] = ACTIONS(2253), - [aux_sym_cmd_identifier_token21] = ACTIONS(2253), - [aux_sym_cmd_identifier_token22] = ACTIONS(2253), - [aux_sym_cmd_identifier_token23] = ACTIONS(2253), - [aux_sym_cmd_identifier_token24] = ACTIONS(2253), - [aux_sym_cmd_identifier_token25] = ACTIONS(2253), - [aux_sym_cmd_identifier_token26] = ACTIONS(2253), - [aux_sym_cmd_identifier_token27] = ACTIONS(2253), - [aux_sym_cmd_identifier_token28] = ACTIONS(2253), - [aux_sym_cmd_identifier_token29] = ACTIONS(2253), - [aux_sym_cmd_identifier_token30] = ACTIONS(2253), - [aux_sym_cmd_identifier_token31] = ACTIONS(2253), - [aux_sym_cmd_identifier_token32] = ACTIONS(2253), - [aux_sym_cmd_identifier_token33] = ACTIONS(2253), - [aux_sym_cmd_identifier_token34] = ACTIONS(2253), - [aux_sym_cmd_identifier_token35] = ACTIONS(2253), - [aux_sym_cmd_identifier_token36] = ACTIONS(2253), - [anon_sym_true] = ACTIONS(2253), - [anon_sym_false] = ACTIONS(2253), - [anon_sym_null] = ACTIONS(2253), - [aux_sym_cmd_identifier_token38] = ACTIONS(2253), - [aux_sym_cmd_identifier_token39] = ACTIONS(2253), - [aux_sym_cmd_identifier_token40] = ACTIONS(2253), - [anon_sym_def] = ACTIONS(2253), - [anon_sym_export_DASHenv] = ACTIONS(2253), - [anon_sym_extern] = ACTIONS(2253), - [anon_sym_module] = ACTIONS(2253), - [anon_sym_use] = ACTIONS(2253), - [anon_sym_LPAREN] = ACTIONS(2253), - [anon_sym_DOLLAR] = ACTIONS(2253), - [anon_sym_error] = ACTIONS(2253), - [anon_sym_list] = ACTIONS(2253), - [anon_sym_DASH] = ACTIONS(2253), - [anon_sym_break] = ACTIONS(2253), - [anon_sym_continue] = ACTIONS(2253), - [anon_sym_for] = ACTIONS(2253), - [anon_sym_in] = ACTIONS(2253), - [anon_sym_loop] = ACTIONS(2253), - [anon_sym_make] = ACTIONS(2253), - [anon_sym_while] = ACTIONS(2253), - [anon_sym_do] = ACTIONS(2253), - [anon_sym_if] = ACTIONS(2253), - [anon_sym_else] = ACTIONS(2253), - [anon_sym_match] = ACTIONS(2253), - [anon_sym_RBRACE] = ACTIONS(2255), - [anon_sym_try] = ACTIONS(2253), - [anon_sym_catch] = ACTIONS(2253), - [anon_sym_return] = ACTIONS(2253), - [anon_sym_source] = ACTIONS(2253), - [anon_sym_source_DASHenv] = ACTIONS(2253), - [anon_sym_register] = ACTIONS(2253), - [anon_sym_hide] = ACTIONS(2253), - [anon_sym_hide_DASHenv] = ACTIONS(2253), - [anon_sym_overlay] = ACTIONS(2253), - [anon_sym_new] = ACTIONS(2253), - [anon_sym_as] = ACTIONS(2253), - [anon_sym_LPAREN2] = ACTIONS(2255), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2255), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2253), - [aux_sym__val_number_decimal_token1] = ACTIONS(2253), - [aux_sym__val_number_decimal_token2] = ACTIONS(2253), - [aux_sym__val_number_decimal_token3] = ACTIONS(2253), - [aux_sym__val_number_decimal_token4] = ACTIONS(2253), - [aux_sym__val_number_token1] = ACTIONS(2253), - [aux_sym__val_number_token2] = ACTIONS(2253), - [aux_sym__val_number_token3] = ACTIONS(2253), - [anon_sym_DQUOTE] = ACTIONS(2255), - [sym__str_single_quotes] = ACTIONS(2255), - [sym__str_back_ticks] = ACTIONS(2255), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2255), - [anon_sym_PLUS] = ACTIONS(2253), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2253), - [anon_sym_POUND] = ACTIONS(3), - }, - [546] = { - [sym_comment] = STATE(546), - [anon_sym_export] = ACTIONS(1058), - [anon_sym_alias] = ACTIONS(1058), - [anon_sym_let] = ACTIONS(1058), - [anon_sym_let_DASHenv] = ACTIONS(1058), - [anon_sym_mut] = ACTIONS(1058), - [anon_sym_const] = ACTIONS(1058), - [aux_sym_cmd_identifier_token1] = ACTIONS(1058), - [aux_sym_cmd_identifier_token2] = ACTIONS(1058), - [aux_sym_cmd_identifier_token3] = ACTIONS(1058), - [aux_sym_cmd_identifier_token4] = ACTIONS(1058), - [aux_sym_cmd_identifier_token5] = ACTIONS(1058), - [aux_sym_cmd_identifier_token6] = ACTIONS(1058), - [aux_sym_cmd_identifier_token7] = ACTIONS(1058), - [aux_sym_cmd_identifier_token8] = ACTIONS(1058), - [aux_sym_cmd_identifier_token9] = ACTIONS(1058), - [aux_sym_cmd_identifier_token10] = ACTIONS(1058), - [aux_sym_cmd_identifier_token11] = ACTIONS(1058), - [aux_sym_cmd_identifier_token12] = ACTIONS(1058), - [aux_sym_cmd_identifier_token13] = ACTIONS(1058), - [aux_sym_cmd_identifier_token14] = ACTIONS(1058), - [aux_sym_cmd_identifier_token15] = ACTIONS(1058), - [aux_sym_cmd_identifier_token16] = ACTIONS(1058), - [aux_sym_cmd_identifier_token17] = ACTIONS(1058), - [aux_sym_cmd_identifier_token18] = ACTIONS(1058), - [aux_sym_cmd_identifier_token19] = ACTIONS(1058), - [aux_sym_cmd_identifier_token20] = ACTIONS(1058), - [aux_sym_cmd_identifier_token21] = ACTIONS(1058), - [aux_sym_cmd_identifier_token22] = ACTIONS(1058), - [aux_sym_cmd_identifier_token23] = ACTIONS(1058), - [aux_sym_cmd_identifier_token24] = ACTIONS(1058), - [aux_sym_cmd_identifier_token25] = ACTIONS(1058), - [aux_sym_cmd_identifier_token26] = ACTIONS(1058), - [aux_sym_cmd_identifier_token27] = ACTIONS(1058), - [aux_sym_cmd_identifier_token28] = ACTIONS(1058), - [aux_sym_cmd_identifier_token29] = ACTIONS(1058), - [aux_sym_cmd_identifier_token30] = ACTIONS(1058), - [aux_sym_cmd_identifier_token31] = ACTIONS(1058), - [aux_sym_cmd_identifier_token32] = ACTIONS(1058), - [aux_sym_cmd_identifier_token33] = ACTIONS(1058), - [aux_sym_cmd_identifier_token34] = ACTIONS(1058), - [aux_sym_cmd_identifier_token35] = ACTIONS(1058), - [aux_sym_cmd_identifier_token36] = ACTIONS(1058), - [anon_sym_true] = ACTIONS(1060), - [anon_sym_false] = ACTIONS(1060), - [anon_sym_null] = ACTIONS(1060), - [aux_sym_cmd_identifier_token38] = ACTIONS(1058), - [aux_sym_cmd_identifier_token39] = ACTIONS(1060), - [aux_sym_cmd_identifier_token40] = ACTIONS(1060), - [anon_sym_def] = ACTIONS(1058), - [anon_sym_export_DASHenv] = ACTIONS(1058), - [anon_sym_extern] = ACTIONS(1058), - [anon_sym_module] = ACTIONS(1058), - [anon_sym_use] = ACTIONS(1058), - [anon_sym_LPAREN] = ACTIONS(1060), - [anon_sym_COMMA] = ACTIONS(1060), - [anon_sym_DOLLAR] = ACTIONS(1060), - [anon_sym_error] = ACTIONS(1058), - [anon_sym_list] = ACTIONS(1058), - [anon_sym_DASH] = ACTIONS(1058), - [anon_sym_break] = ACTIONS(1058), - [anon_sym_continue] = ACTIONS(1058), - [anon_sym_for] = ACTIONS(1058), - [anon_sym_in] = ACTIONS(1058), - [anon_sym_loop] = ACTIONS(1058), - [anon_sym_make] = ACTIONS(1058), - [anon_sym_while] = ACTIONS(1058), - [anon_sym_do] = ACTIONS(1058), - [anon_sym_if] = ACTIONS(1058), - [anon_sym_else] = ACTIONS(1058), - [anon_sym_match] = ACTIONS(1058), - [anon_sym_RBRACE] = ACTIONS(1060), - [anon_sym_try] = ACTIONS(1058), - [anon_sym_catch] = ACTIONS(1058), - [anon_sym_return] = ACTIONS(1058), - [anon_sym_source] = ACTIONS(1058), - [anon_sym_source_DASHenv] = ACTIONS(1058), - [anon_sym_register] = ACTIONS(1058), - [anon_sym_hide] = ACTIONS(1058), - [anon_sym_hide_DASHenv] = ACTIONS(1058), - [anon_sym_overlay] = ACTIONS(1058), - [anon_sym_new] = ACTIONS(1058), - [anon_sym_as] = ACTIONS(1058), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1060), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1060), - [aux_sym__val_number_decimal_token1] = ACTIONS(1058), - [aux_sym__val_number_decimal_token2] = ACTIONS(1060), - [aux_sym__val_number_decimal_token3] = ACTIONS(1060), - [aux_sym__val_number_decimal_token4] = ACTIONS(1060), - [aux_sym__val_number_token1] = ACTIONS(1060), - [aux_sym__val_number_token2] = ACTIONS(1060), - [aux_sym__val_number_token3] = ACTIONS(1060), - [anon_sym_DQUOTE] = ACTIONS(1060), - [sym__str_single_quotes] = ACTIONS(1060), - [sym__str_back_ticks] = ACTIONS(1060), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1060), - [aux_sym_record_entry_token1] = ACTIONS(1060), - [anon_sym_PLUS] = ACTIONS(1058), - [anon_sym_POUND] = ACTIONS(247), - }, - [547] = { - [sym_comment] = STATE(547), - [anon_sym_export] = ACTIONS(2396), - [anon_sym_alias] = ACTIONS(2396), - [anon_sym_let] = ACTIONS(2396), - [anon_sym_let_DASHenv] = ACTIONS(2396), - [anon_sym_mut] = ACTIONS(2396), - [anon_sym_const] = ACTIONS(2396), - [aux_sym_cmd_identifier_token1] = ACTIONS(2396), - [aux_sym_cmd_identifier_token2] = ACTIONS(2396), - [aux_sym_cmd_identifier_token3] = ACTIONS(2396), - [aux_sym_cmd_identifier_token4] = ACTIONS(2396), - [aux_sym_cmd_identifier_token5] = ACTIONS(2396), - [aux_sym_cmd_identifier_token6] = ACTIONS(2396), - [aux_sym_cmd_identifier_token7] = ACTIONS(2396), - [aux_sym_cmd_identifier_token8] = ACTIONS(2396), - [aux_sym_cmd_identifier_token9] = ACTIONS(2396), - [aux_sym_cmd_identifier_token10] = ACTIONS(2396), - [aux_sym_cmd_identifier_token11] = ACTIONS(2396), - [aux_sym_cmd_identifier_token12] = ACTIONS(2396), - [aux_sym_cmd_identifier_token13] = ACTIONS(2396), - [aux_sym_cmd_identifier_token14] = ACTIONS(2396), - [aux_sym_cmd_identifier_token15] = ACTIONS(2396), - [aux_sym_cmd_identifier_token16] = ACTIONS(2396), - [aux_sym_cmd_identifier_token17] = ACTIONS(2396), - [aux_sym_cmd_identifier_token18] = ACTIONS(2396), - [aux_sym_cmd_identifier_token19] = ACTIONS(2396), - [aux_sym_cmd_identifier_token20] = ACTIONS(2396), - [aux_sym_cmd_identifier_token21] = ACTIONS(2396), - [aux_sym_cmd_identifier_token22] = ACTIONS(2396), - [aux_sym_cmd_identifier_token23] = ACTIONS(2396), - [aux_sym_cmd_identifier_token24] = ACTIONS(2396), - [aux_sym_cmd_identifier_token25] = ACTIONS(2396), - [aux_sym_cmd_identifier_token26] = ACTIONS(2396), - [aux_sym_cmd_identifier_token27] = ACTIONS(2396), - [aux_sym_cmd_identifier_token28] = ACTIONS(2396), - [aux_sym_cmd_identifier_token29] = ACTIONS(2396), - [aux_sym_cmd_identifier_token30] = ACTIONS(2396), - [aux_sym_cmd_identifier_token31] = ACTIONS(2396), - [aux_sym_cmd_identifier_token32] = ACTIONS(2396), - [aux_sym_cmd_identifier_token33] = ACTIONS(2396), - [aux_sym_cmd_identifier_token34] = ACTIONS(2396), - [aux_sym_cmd_identifier_token35] = ACTIONS(2396), - [aux_sym_cmd_identifier_token36] = ACTIONS(2396), - [anon_sym_true] = ACTIONS(2396), - [anon_sym_false] = ACTIONS(2396), - [anon_sym_null] = ACTIONS(2396), - [aux_sym_cmd_identifier_token38] = ACTIONS(2396), - [aux_sym_cmd_identifier_token39] = ACTIONS(2396), - [aux_sym_cmd_identifier_token40] = ACTIONS(2396), - [anon_sym_def] = ACTIONS(2396), - [anon_sym_export_DASHenv] = ACTIONS(2396), - [anon_sym_extern] = ACTIONS(2396), - [anon_sym_module] = ACTIONS(2396), - [anon_sym_use] = ACTIONS(2396), - [anon_sym_LPAREN] = ACTIONS(2396), - [anon_sym_DOLLAR] = ACTIONS(2396), - [anon_sym_error] = ACTIONS(2396), - [anon_sym_list] = ACTIONS(2396), - [anon_sym_DASH] = ACTIONS(2396), - [anon_sym_break] = ACTIONS(2396), - [anon_sym_continue] = ACTIONS(2396), - [anon_sym_for] = ACTIONS(2396), - [anon_sym_in] = ACTIONS(2396), - [anon_sym_loop] = ACTIONS(2396), - [anon_sym_make] = ACTIONS(2396), - [anon_sym_while] = ACTIONS(2396), - [anon_sym_do] = ACTIONS(2396), - [anon_sym_if] = ACTIONS(2396), - [anon_sym_else] = ACTIONS(2396), - [anon_sym_match] = ACTIONS(2396), - [anon_sym_RBRACE] = ACTIONS(2396), - [anon_sym_try] = ACTIONS(2396), - [anon_sym_catch] = ACTIONS(2396), - [anon_sym_return] = ACTIONS(2396), - [anon_sym_source] = ACTIONS(2396), - [anon_sym_source_DASHenv] = ACTIONS(2396), - [anon_sym_register] = ACTIONS(2396), - [anon_sym_hide] = ACTIONS(2396), - [anon_sym_hide_DASHenv] = ACTIONS(2396), - [anon_sym_overlay] = ACTIONS(2396), - [anon_sym_new] = ACTIONS(2396), - [anon_sym_as] = ACTIONS(2396), - [anon_sym_LPAREN2] = ACTIONS(2398), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2396), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2396), - [aux_sym__val_number_decimal_token1] = ACTIONS(2396), - [aux_sym__val_number_decimal_token2] = ACTIONS(2396), - [aux_sym__val_number_decimal_token3] = ACTIONS(2396), - [aux_sym__val_number_decimal_token4] = ACTIONS(2396), - [aux_sym__val_number_token1] = ACTIONS(2396), - [aux_sym__val_number_token2] = ACTIONS(2396), - [aux_sym__val_number_token3] = ACTIONS(2396), - [anon_sym_DQUOTE] = ACTIONS(2396), - [sym__str_single_quotes] = ACTIONS(2396), - [sym__str_back_ticks] = ACTIONS(2396), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2396), - [sym__entry_separator] = ACTIONS(2398), - [anon_sym_PLUS] = ACTIONS(2396), - [anon_sym_POUND] = ACTIONS(3), - }, - [548] = { - [sym_comment] = STATE(548), + [464] = { + [sym_comment] = STATE(464), [anon_sym_export] = ACTIONS(1042), [anon_sym_alias] = ACTIONS(1042), [anon_sym_let] = ACTIONS(1042), @@ -136473,19 +129435,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(1042), [aux_sym_cmd_identifier_token35] = ACTIONS(1042), [aux_sym_cmd_identifier_token36] = ACTIONS(1042), - [anon_sym_true] = ACTIONS(1044), - [anon_sym_false] = ACTIONS(1044), - [anon_sym_null] = ACTIONS(1044), + [anon_sym_true] = ACTIONS(1042), + [anon_sym_false] = ACTIONS(1042), + [anon_sym_null] = ACTIONS(1042), [aux_sym_cmd_identifier_token38] = ACTIONS(1042), - [aux_sym_cmd_identifier_token39] = ACTIONS(1044), - [aux_sym_cmd_identifier_token40] = ACTIONS(1044), + [aux_sym_cmd_identifier_token39] = ACTIONS(1042), + [aux_sym_cmd_identifier_token40] = ACTIONS(1042), [anon_sym_def] = ACTIONS(1042), [anon_sym_export_DASHenv] = ACTIONS(1042), [anon_sym_extern] = ACTIONS(1042), [anon_sym_module] = ACTIONS(1042), [anon_sym_use] = ACTIONS(1042), - [anon_sym_LPAREN] = ACTIONS(1044), - [anon_sym_DOLLAR] = ACTIONS(1044), + [anon_sym_LPAREN] = ACTIONS(1042), + [anon_sym_DOLLAR] = ACTIONS(1042), [anon_sym_error] = ACTIONS(1042), [anon_sym_list] = ACTIONS(1042), [anon_sym_DASH] = ACTIONS(1042), @@ -136500,7 +129462,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1042), [anon_sym_else] = ACTIONS(1042), [anon_sym_match] = ACTIONS(1042), - [anon_sym_RBRACE] = ACTIONS(1044), + [anon_sym_RBRACE] = ACTIONS(1042), [anon_sym_try] = ACTIONS(1042), [anon_sym_catch] = ACTIONS(1042), [anon_sym_return] = ACTIONS(1042), @@ -136512,242 +129474,3647 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(1042), [anon_sym_new] = ACTIONS(1042), [anon_sym_as] = ACTIONS(1042), - [anon_sym_QMARK2] = ACTIONS(1044), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1044), + [anon_sym_QMARK2] = ACTIONS(2262), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1042), [anon_sym_DOT] = ACTIONS(1042), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1044), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1042), [aux_sym__val_number_decimal_token1] = ACTIONS(1042), - [aux_sym__val_number_decimal_token2] = ACTIONS(1044), - [aux_sym__val_number_decimal_token3] = ACTIONS(1044), - [aux_sym__val_number_decimal_token4] = ACTIONS(1044), - [aux_sym__val_number_token1] = ACTIONS(1044), - [aux_sym__val_number_token2] = ACTIONS(1044), - [aux_sym__val_number_token3] = ACTIONS(1044), - [anon_sym_DQUOTE] = ACTIONS(1044), - [sym__str_single_quotes] = ACTIONS(1044), - [sym__str_back_ticks] = ACTIONS(1044), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1044), + [aux_sym__val_number_decimal_token2] = ACTIONS(1042), + [aux_sym__val_number_decimal_token3] = ACTIONS(1042), + [aux_sym__val_number_decimal_token4] = ACTIONS(1042), + [aux_sym__val_number_token1] = ACTIONS(1042), + [aux_sym__val_number_token2] = ACTIONS(1042), + [aux_sym__val_number_token3] = ACTIONS(1042), + [anon_sym_DQUOTE] = ACTIONS(1042), + [sym__str_single_quotes] = ACTIONS(1042), + [sym__str_back_ticks] = ACTIONS(1042), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1042), + [sym__entry_separator] = ACTIONS(1044), [anon_sym_PLUS] = ACTIONS(1042), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1044), }, - [549] = { - [sym_comment] = STATE(549), - [anon_sym_export] = ACTIONS(1947), - [anon_sym_alias] = ACTIONS(1947), - [anon_sym_let] = ACTIONS(1947), - [anon_sym_let_DASHenv] = ACTIONS(1947), - [anon_sym_mut] = ACTIONS(1947), - [anon_sym_const] = ACTIONS(1947), - [aux_sym_cmd_identifier_token1] = ACTIONS(1947), - [aux_sym_cmd_identifier_token2] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1947), - [aux_sym_cmd_identifier_token4] = ACTIONS(1947), - [aux_sym_cmd_identifier_token5] = ACTIONS(1947), - [aux_sym_cmd_identifier_token6] = ACTIONS(1947), - [aux_sym_cmd_identifier_token7] = ACTIONS(1947), - [aux_sym_cmd_identifier_token8] = ACTIONS(1947), - [aux_sym_cmd_identifier_token9] = ACTIONS(1947), - [aux_sym_cmd_identifier_token10] = ACTIONS(1947), - [aux_sym_cmd_identifier_token11] = ACTIONS(1947), - [aux_sym_cmd_identifier_token12] = ACTIONS(1947), - [aux_sym_cmd_identifier_token13] = ACTIONS(1947), - [aux_sym_cmd_identifier_token14] = ACTIONS(1947), - [aux_sym_cmd_identifier_token15] = ACTIONS(1947), - [aux_sym_cmd_identifier_token16] = ACTIONS(1947), - [aux_sym_cmd_identifier_token17] = ACTIONS(1947), - [aux_sym_cmd_identifier_token18] = ACTIONS(1947), - [aux_sym_cmd_identifier_token19] = ACTIONS(1947), - [aux_sym_cmd_identifier_token20] = ACTIONS(1947), - [aux_sym_cmd_identifier_token21] = ACTIONS(1947), - [aux_sym_cmd_identifier_token22] = ACTIONS(1947), - [aux_sym_cmd_identifier_token23] = ACTIONS(1947), - [aux_sym_cmd_identifier_token24] = ACTIONS(1947), - [aux_sym_cmd_identifier_token25] = ACTIONS(1947), - [aux_sym_cmd_identifier_token26] = ACTIONS(1947), - [aux_sym_cmd_identifier_token27] = ACTIONS(1947), - [aux_sym_cmd_identifier_token28] = ACTIONS(1947), - [aux_sym_cmd_identifier_token29] = ACTIONS(1947), - [aux_sym_cmd_identifier_token30] = ACTIONS(1947), - [aux_sym_cmd_identifier_token31] = ACTIONS(1947), - [aux_sym_cmd_identifier_token32] = ACTIONS(1947), - [aux_sym_cmd_identifier_token33] = ACTIONS(1947), - [aux_sym_cmd_identifier_token34] = ACTIONS(1947), - [aux_sym_cmd_identifier_token35] = ACTIONS(1947), - [aux_sym_cmd_identifier_token36] = ACTIONS(1947), - [anon_sym_true] = ACTIONS(1947), - [anon_sym_false] = ACTIONS(1947), - [anon_sym_null] = ACTIONS(1947), - [aux_sym_cmd_identifier_token38] = ACTIONS(1947), - [aux_sym_cmd_identifier_token39] = ACTIONS(1947), - [aux_sym_cmd_identifier_token40] = ACTIONS(1947), - [anon_sym_def] = ACTIONS(1947), - [anon_sym_export_DASHenv] = ACTIONS(1947), - [anon_sym_extern] = ACTIONS(1947), - [anon_sym_module] = ACTIONS(1947), - [anon_sym_use] = ACTIONS(1947), - [anon_sym_RBRACK] = ACTIONS(1947), - [anon_sym_LPAREN] = ACTIONS(1947), - [anon_sym_DOLLAR] = ACTIONS(1947), - [anon_sym_error] = ACTIONS(1947), - [anon_sym_list] = ACTIONS(1947), - [anon_sym_DASH] = ACTIONS(1947), - [anon_sym_break] = ACTIONS(1947), - [anon_sym_continue] = ACTIONS(1947), - [anon_sym_for] = ACTIONS(1947), - [anon_sym_in] = ACTIONS(1947), - [anon_sym_loop] = ACTIONS(1947), - [anon_sym_make] = ACTIONS(1947), - [anon_sym_while] = ACTIONS(1947), - [anon_sym_do] = ACTIONS(1947), - [anon_sym_if] = ACTIONS(1947), - [anon_sym_else] = ACTIONS(1947), - [anon_sym_match] = ACTIONS(1947), - [anon_sym_RBRACE] = ACTIONS(1947), - [anon_sym_try] = ACTIONS(1947), - [anon_sym_catch] = ACTIONS(1947), - [anon_sym_return] = ACTIONS(1947), - [anon_sym_source] = ACTIONS(1947), - [anon_sym_source_DASHenv] = ACTIONS(1947), - [anon_sym_register] = ACTIONS(1947), - [anon_sym_hide] = ACTIONS(1947), - [anon_sym_hide_DASHenv] = ACTIONS(1947), - [anon_sym_overlay] = ACTIONS(1947), - [anon_sym_new] = ACTIONS(1947), - [anon_sym_as] = ACTIONS(1947), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1947), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1947), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1947), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(1947), - [aux_sym__val_number_token2] = ACTIONS(1947), - [aux_sym__val_number_token3] = ACTIONS(1947), - [anon_sym_DQUOTE] = ACTIONS(1947), - [sym__str_single_quotes] = ACTIONS(1947), - [sym__str_back_ticks] = ACTIONS(1947), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1947), - [sym__entry_separator] = ACTIONS(1949), - [anon_sym_PLUS] = ACTIONS(1947), + [465] = { + [sym_comment] = STATE(465), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_alias] = ACTIONS(1048), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_let_DASHenv] = ACTIONS(1048), + [anon_sym_mut] = ACTIONS(1048), + [anon_sym_const] = ACTIONS(1048), + [aux_sym_cmd_identifier_token1] = ACTIONS(1048), + [aux_sym_cmd_identifier_token2] = ACTIONS(1048), + [aux_sym_cmd_identifier_token3] = ACTIONS(1048), + [aux_sym_cmd_identifier_token4] = ACTIONS(1048), + [aux_sym_cmd_identifier_token5] = ACTIONS(1048), + [aux_sym_cmd_identifier_token6] = ACTIONS(1048), + [aux_sym_cmd_identifier_token7] = ACTIONS(1048), + [aux_sym_cmd_identifier_token8] = ACTIONS(1048), + [aux_sym_cmd_identifier_token9] = ACTIONS(1048), + [aux_sym_cmd_identifier_token10] = ACTIONS(1048), + [aux_sym_cmd_identifier_token11] = ACTIONS(1048), + [aux_sym_cmd_identifier_token12] = ACTIONS(1048), + [aux_sym_cmd_identifier_token13] = ACTIONS(1048), + [aux_sym_cmd_identifier_token14] = ACTIONS(1048), + [aux_sym_cmd_identifier_token15] = ACTIONS(1048), + [aux_sym_cmd_identifier_token16] = ACTIONS(1048), + [aux_sym_cmd_identifier_token17] = ACTIONS(1048), + [aux_sym_cmd_identifier_token18] = ACTIONS(1048), + [aux_sym_cmd_identifier_token19] = ACTIONS(1048), + [aux_sym_cmd_identifier_token20] = ACTIONS(1048), + [aux_sym_cmd_identifier_token21] = ACTIONS(1048), + [aux_sym_cmd_identifier_token22] = ACTIONS(1048), + [aux_sym_cmd_identifier_token23] = ACTIONS(1048), + [aux_sym_cmd_identifier_token24] = ACTIONS(1048), + [aux_sym_cmd_identifier_token25] = ACTIONS(1048), + [aux_sym_cmd_identifier_token26] = ACTIONS(1048), + [aux_sym_cmd_identifier_token27] = ACTIONS(1048), + [aux_sym_cmd_identifier_token28] = ACTIONS(1048), + [aux_sym_cmd_identifier_token29] = ACTIONS(1048), + [aux_sym_cmd_identifier_token30] = ACTIONS(1048), + [aux_sym_cmd_identifier_token31] = ACTIONS(1048), + [aux_sym_cmd_identifier_token32] = ACTIONS(1048), + [aux_sym_cmd_identifier_token33] = ACTIONS(1048), + [aux_sym_cmd_identifier_token34] = ACTIONS(1048), + [aux_sym_cmd_identifier_token35] = ACTIONS(1048), + [aux_sym_cmd_identifier_token36] = ACTIONS(1048), + [anon_sym_true] = ACTIONS(1048), + [anon_sym_false] = ACTIONS(1048), + [anon_sym_null] = ACTIONS(1048), + [aux_sym_cmd_identifier_token38] = ACTIONS(1048), + [aux_sym_cmd_identifier_token39] = ACTIONS(1048), + [aux_sym_cmd_identifier_token40] = ACTIONS(1048), + [anon_sym_def] = ACTIONS(1048), + [anon_sym_export_DASHenv] = ACTIONS(1048), + [anon_sym_extern] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_use] = ACTIONS(1048), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_error] = ACTIONS(1048), + [anon_sym_list] = ACTIONS(1048), + [anon_sym_DASH] = ACTIONS(1048), + [anon_sym_break] = ACTIONS(1048), + [anon_sym_continue] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1048), + [anon_sym_in] = ACTIONS(1048), + [anon_sym_loop] = ACTIONS(1048), + [anon_sym_make] = ACTIONS(1048), + [anon_sym_while] = ACTIONS(1048), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_if] = ACTIONS(1048), + [anon_sym_else] = ACTIONS(1048), + [anon_sym_match] = ACTIONS(1048), + [anon_sym_RBRACE] = ACTIONS(1048), + [anon_sym_try] = ACTIONS(1048), + [anon_sym_catch] = ACTIONS(1048), + [anon_sym_return] = ACTIONS(1048), + [anon_sym_source] = ACTIONS(1048), + [anon_sym_source_DASHenv] = ACTIONS(1048), + [anon_sym_register] = ACTIONS(1048), + [anon_sym_hide] = ACTIONS(1048), + [anon_sym_hide_DASHenv] = ACTIONS(1048), + [anon_sym_overlay] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1048), + [anon_sym_as] = ACTIONS(1048), + [anon_sym_QMARK2] = ACTIONS(2264), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1048), + [anon_sym_DOT] = ACTIONS(1048), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1048), + [aux_sym__val_number_decimal_token1] = ACTIONS(1048), + [aux_sym__val_number_decimal_token2] = ACTIONS(1048), + [aux_sym__val_number_decimal_token3] = ACTIONS(1048), + [aux_sym__val_number_decimal_token4] = ACTIONS(1048), + [aux_sym__val_number_token1] = ACTIONS(1048), + [aux_sym__val_number_token2] = ACTIONS(1048), + [aux_sym__val_number_token3] = ACTIONS(1048), + [anon_sym_DQUOTE] = ACTIONS(1048), + [sym__str_single_quotes] = ACTIONS(1048), + [sym__str_back_ticks] = ACTIONS(1048), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1048), + [sym__entry_separator] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1048), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1050), }, - [550] = { - [sym_comment] = STATE(550), - [anon_sym_export] = ACTIONS(2400), - [anon_sym_alias] = ACTIONS(2400), - [anon_sym_let] = ACTIONS(2400), - [anon_sym_let_DASHenv] = ACTIONS(2400), - [anon_sym_mut] = ACTIONS(2400), - [anon_sym_const] = ACTIONS(2400), - [aux_sym_cmd_identifier_token1] = ACTIONS(2400), - [aux_sym_cmd_identifier_token2] = ACTIONS(2400), - [aux_sym_cmd_identifier_token3] = ACTIONS(2400), - [aux_sym_cmd_identifier_token4] = ACTIONS(2400), - [aux_sym_cmd_identifier_token5] = ACTIONS(2400), - [aux_sym_cmd_identifier_token6] = ACTIONS(2400), - [aux_sym_cmd_identifier_token7] = ACTIONS(2400), - [aux_sym_cmd_identifier_token8] = ACTIONS(2400), - [aux_sym_cmd_identifier_token9] = ACTIONS(2400), - [aux_sym_cmd_identifier_token10] = ACTIONS(2400), - [aux_sym_cmd_identifier_token11] = ACTIONS(2400), - [aux_sym_cmd_identifier_token12] = ACTIONS(2400), - [aux_sym_cmd_identifier_token13] = ACTIONS(2400), - [aux_sym_cmd_identifier_token14] = ACTIONS(2400), - [aux_sym_cmd_identifier_token15] = ACTIONS(2400), - [aux_sym_cmd_identifier_token16] = ACTIONS(2400), - [aux_sym_cmd_identifier_token17] = ACTIONS(2400), - [aux_sym_cmd_identifier_token18] = ACTIONS(2400), - [aux_sym_cmd_identifier_token19] = ACTIONS(2400), - [aux_sym_cmd_identifier_token20] = ACTIONS(2400), - [aux_sym_cmd_identifier_token21] = ACTIONS(2400), - [aux_sym_cmd_identifier_token22] = ACTIONS(2400), - [aux_sym_cmd_identifier_token23] = ACTIONS(2400), - [aux_sym_cmd_identifier_token24] = ACTIONS(2400), - [aux_sym_cmd_identifier_token25] = ACTIONS(2400), - [aux_sym_cmd_identifier_token26] = ACTIONS(2400), - [aux_sym_cmd_identifier_token27] = ACTIONS(2400), - [aux_sym_cmd_identifier_token28] = ACTIONS(2400), - [aux_sym_cmd_identifier_token29] = ACTIONS(2400), - [aux_sym_cmd_identifier_token30] = ACTIONS(2400), - [aux_sym_cmd_identifier_token31] = ACTIONS(2400), - [aux_sym_cmd_identifier_token32] = ACTIONS(2400), - [aux_sym_cmd_identifier_token33] = ACTIONS(2400), - [aux_sym_cmd_identifier_token34] = ACTIONS(2400), - [aux_sym_cmd_identifier_token35] = ACTIONS(2400), - [aux_sym_cmd_identifier_token36] = ACTIONS(2400), - [anon_sym_true] = ACTIONS(2400), - [anon_sym_false] = ACTIONS(2400), - [anon_sym_null] = ACTIONS(2400), - [aux_sym_cmd_identifier_token38] = ACTIONS(2400), - [aux_sym_cmd_identifier_token39] = ACTIONS(2400), - [aux_sym_cmd_identifier_token40] = ACTIONS(2400), - [anon_sym_def] = ACTIONS(2400), - [anon_sym_export_DASHenv] = ACTIONS(2400), - [anon_sym_extern] = ACTIONS(2400), - [anon_sym_module] = ACTIONS(2400), - [anon_sym_use] = ACTIONS(2400), - [anon_sym_RBRACK] = ACTIONS(2400), - [anon_sym_LPAREN] = ACTIONS(2400), - [anon_sym_DOLLAR] = ACTIONS(2400), - [anon_sym_error] = ACTIONS(2400), - [anon_sym_list] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_break] = ACTIONS(2400), - [anon_sym_continue] = ACTIONS(2400), - [anon_sym_for] = ACTIONS(2400), - [anon_sym_in] = ACTIONS(2400), - [anon_sym_loop] = ACTIONS(2400), - [anon_sym_make] = ACTIONS(2400), - [anon_sym_while] = ACTIONS(2400), - [anon_sym_do] = ACTIONS(2400), - [anon_sym_if] = ACTIONS(2400), - [anon_sym_else] = ACTIONS(2400), - [anon_sym_match] = ACTIONS(2400), - [anon_sym_RBRACE] = ACTIONS(2400), - [anon_sym_try] = ACTIONS(2400), - [anon_sym_catch] = ACTIONS(2400), - [anon_sym_return] = ACTIONS(2400), - [anon_sym_source] = ACTIONS(2400), - [anon_sym_source_DASHenv] = ACTIONS(2400), - [anon_sym_register] = ACTIONS(2400), - [anon_sym_hide] = ACTIONS(2400), - [anon_sym_hide_DASHenv] = ACTIONS(2400), - [anon_sym_overlay] = ACTIONS(2400), - [anon_sym_new] = ACTIONS(2400), - [anon_sym_as] = ACTIONS(2400), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2400), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2400), - [aux_sym__val_number_decimal_token1] = ACTIONS(2400), - [aux_sym__val_number_decimal_token2] = ACTIONS(2400), - [aux_sym__val_number_decimal_token3] = ACTIONS(2400), - [aux_sym__val_number_decimal_token4] = ACTIONS(2400), - [aux_sym__val_number_token1] = ACTIONS(2400), - [aux_sym__val_number_token2] = ACTIONS(2400), - [aux_sym__val_number_token3] = ACTIONS(2400), - [anon_sym_DQUOTE] = ACTIONS(2400), - [sym__str_single_quotes] = ACTIONS(2400), - [sym__str_back_ticks] = ACTIONS(2400), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2400), - [sym__entry_separator] = ACTIONS(2402), - [anon_sym_PLUS] = ACTIONS(2400), + [466] = { + [sym_path] = STATE(631), + [sym_comment] = STATE(466), + [aux_sym_cell_path_repeat1] = STATE(466), + [anon_sym_export] = ACTIONS(1031), + [anon_sym_alias] = ACTIONS(1031), + [anon_sym_let] = ACTIONS(1031), + [anon_sym_let_DASHenv] = ACTIONS(1031), + [anon_sym_mut] = ACTIONS(1031), + [anon_sym_const] = ACTIONS(1031), + [aux_sym_cmd_identifier_token1] = ACTIONS(1031), + [aux_sym_cmd_identifier_token2] = ACTIONS(1031), + [aux_sym_cmd_identifier_token3] = ACTIONS(1031), + [aux_sym_cmd_identifier_token4] = ACTIONS(1031), + [aux_sym_cmd_identifier_token5] = ACTIONS(1031), + [aux_sym_cmd_identifier_token6] = ACTIONS(1031), + [aux_sym_cmd_identifier_token7] = ACTIONS(1031), + [aux_sym_cmd_identifier_token8] = ACTIONS(1031), + [aux_sym_cmd_identifier_token9] = ACTIONS(1031), + [aux_sym_cmd_identifier_token10] = ACTIONS(1031), + [aux_sym_cmd_identifier_token11] = ACTIONS(1031), + [aux_sym_cmd_identifier_token12] = ACTIONS(1031), + [aux_sym_cmd_identifier_token13] = ACTIONS(1031), + [aux_sym_cmd_identifier_token14] = ACTIONS(1031), + [aux_sym_cmd_identifier_token15] = ACTIONS(1031), + [aux_sym_cmd_identifier_token16] = ACTIONS(1031), + [aux_sym_cmd_identifier_token17] = ACTIONS(1031), + [aux_sym_cmd_identifier_token18] = ACTIONS(1031), + [aux_sym_cmd_identifier_token19] = ACTIONS(1031), + [aux_sym_cmd_identifier_token20] = ACTIONS(1031), + [aux_sym_cmd_identifier_token21] = ACTIONS(1031), + [aux_sym_cmd_identifier_token22] = ACTIONS(1031), + [aux_sym_cmd_identifier_token23] = ACTIONS(1031), + [aux_sym_cmd_identifier_token24] = ACTIONS(1031), + [aux_sym_cmd_identifier_token25] = ACTIONS(1031), + [aux_sym_cmd_identifier_token26] = ACTIONS(1031), + [aux_sym_cmd_identifier_token27] = ACTIONS(1031), + [aux_sym_cmd_identifier_token28] = ACTIONS(1031), + [aux_sym_cmd_identifier_token29] = ACTIONS(1031), + [aux_sym_cmd_identifier_token30] = ACTIONS(1031), + [aux_sym_cmd_identifier_token31] = ACTIONS(1031), + [aux_sym_cmd_identifier_token32] = ACTIONS(1031), + [aux_sym_cmd_identifier_token33] = ACTIONS(1031), + [aux_sym_cmd_identifier_token34] = ACTIONS(1031), + [aux_sym_cmd_identifier_token35] = ACTIONS(1031), + [aux_sym_cmd_identifier_token36] = ACTIONS(1031), + [anon_sym_true] = ACTIONS(1033), + [anon_sym_false] = ACTIONS(1033), + [anon_sym_null] = ACTIONS(1033), + [aux_sym_cmd_identifier_token38] = ACTIONS(1031), + [aux_sym_cmd_identifier_token39] = ACTIONS(1033), + [aux_sym_cmd_identifier_token40] = ACTIONS(1033), + [anon_sym_def] = ACTIONS(1031), + [anon_sym_export_DASHenv] = ACTIONS(1031), + [anon_sym_extern] = ACTIONS(1031), + [anon_sym_module] = ACTIONS(1031), + [anon_sym_use] = ACTIONS(1031), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_DOLLAR] = ACTIONS(1033), + [anon_sym_error] = ACTIONS(1031), + [anon_sym_list] = ACTIONS(1031), + [anon_sym_DASH] = ACTIONS(1031), + [anon_sym_break] = ACTIONS(1031), + [anon_sym_continue] = ACTIONS(1031), + [anon_sym_for] = ACTIONS(1031), + [anon_sym_in] = ACTIONS(1031), + [anon_sym_loop] = ACTIONS(1031), + [anon_sym_make] = ACTIONS(1031), + [anon_sym_while] = ACTIONS(1031), + [anon_sym_do] = ACTIONS(1031), + [anon_sym_if] = ACTIONS(1031), + [anon_sym_else] = ACTIONS(1031), + [anon_sym_match] = ACTIONS(1031), + [anon_sym_RBRACE] = ACTIONS(1033), + [anon_sym_try] = ACTIONS(1031), + [anon_sym_catch] = ACTIONS(1031), + [anon_sym_return] = ACTIONS(1031), + [anon_sym_source] = ACTIONS(1031), + [anon_sym_source_DASHenv] = ACTIONS(1031), + [anon_sym_register] = ACTIONS(1031), + [anon_sym_hide] = ACTIONS(1031), + [anon_sym_hide_DASHenv] = ACTIONS(1031), + [anon_sym_overlay] = ACTIONS(1031), + [anon_sym_new] = ACTIONS(1031), + [anon_sym_as] = ACTIONS(1031), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1033), + [anon_sym_DOT] = ACTIONS(2266), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1033), + [aux_sym__val_number_decimal_token1] = ACTIONS(1031), + [aux_sym__val_number_decimal_token2] = ACTIONS(1033), + [aux_sym__val_number_decimal_token3] = ACTIONS(1033), + [aux_sym__val_number_decimal_token4] = ACTIONS(1033), + [aux_sym__val_number_token1] = ACTIONS(1033), + [aux_sym__val_number_token2] = ACTIONS(1033), + [aux_sym__val_number_token3] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(1033), + [sym__str_single_quotes] = ACTIONS(1033), + [sym__str_back_ticks] = ACTIONS(1033), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1033), + [anon_sym_PLUS] = ACTIONS(1031), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1033), + }, + [467] = { + [sym_comment] = STATE(467), + [anon_sym_export] = ACTIONS(1715), + [anon_sym_alias] = ACTIONS(1715), + [anon_sym_let] = ACTIONS(1715), + [anon_sym_let_DASHenv] = ACTIONS(1715), + [anon_sym_mut] = ACTIONS(1715), + [anon_sym_const] = ACTIONS(1715), + [aux_sym_cmd_identifier_token1] = ACTIONS(1715), + [aux_sym_cmd_identifier_token2] = ACTIONS(1715), + [aux_sym_cmd_identifier_token3] = ACTIONS(1715), + [aux_sym_cmd_identifier_token4] = ACTIONS(1715), + [aux_sym_cmd_identifier_token5] = ACTIONS(1715), + [aux_sym_cmd_identifier_token6] = ACTIONS(1715), + [aux_sym_cmd_identifier_token7] = ACTIONS(1715), + [aux_sym_cmd_identifier_token8] = ACTIONS(1715), + [aux_sym_cmd_identifier_token9] = ACTIONS(1715), + [aux_sym_cmd_identifier_token10] = ACTIONS(1715), + [aux_sym_cmd_identifier_token11] = ACTIONS(1715), + [aux_sym_cmd_identifier_token12] = ACTIONS(1715), + [aux_sym_cmd_identifier_token13] = ACTIONS(1715), + [aux_sym_cmd_identifier_token14] = ACTIONS(1715), + [aux_sym_cmd_identifier_token15] = ACTIONS(1715), + [aux_sym_cmd_identifier_token16] = ACTIONS(1715), + [aux_sym_cmd_identifier_token17] = ACTIONS(1715), + [aux_sym_cmd_identifier_token18] = ACTIONS(1715), + [aux_sym_cmd_identifier_token19] = ACTIONS(1715), + [aux_sym_cmd_identifier_token20] = ACTIONS(1715), + [aux_sym_cmd_identifier_token21] = ACTIONS(1715), + [aux_sym_cmd_identifier_token22] = ACTIONS(1715), + [aux_sym_cmd_identifier_token23] = ACTIONS(1715), + [aux_sym_cmd_identifier_token24] = ACTIONS(1715), + [aux_sym_cmd_identifier_token25] = ACTIONS(1715), + [aux_sym_cmd_identifier_token26] = ACTIONS(1715), + [aux_sym_cmd_identifier_token27] = ACTIONS(1715), + [aux_sym_cmd_identifier_token28] = ACTIONS(1715), + [aux_sym_cmd_identifier_token29] = ACTIONS(1715), + [aux_sym_cmd_identifier_token30] = ACTIONS(1715), + [aux_sym_cmd_identifier_token31] = ACTIONS(1715), + [aux_sym_cmd_identifier_token32] = ACTIONS(1715), + [aux_sym_cmd_identifier_token33] = ACTIONS(1715), + [aux_sym_cmd_identifier_token34] = ACTIONS(1715), + [aux_sym_cmd_identifier_token35] = ACTIONS(1715), + [aux_sym_cmd_identifier_token36] = ACTIONS(1715), + [anon_sym_true] = ACTIONS(1715), + [anon_sym_false] = ACTIONS(1715), + [anon_sym_null] = ACTIONS(1715), + [aux_sym_cmd_identifier_token38] = ACTIONS(1715), + [aux_sym_cmd_identifier_token39] = ACTIONS(1715), + [aux_sym_cmd_identifier_token40] = ACTIONS(1715), + [anon_sym_def] = ACTIONS(1715), + [anon_sym_export_DASHenv] = ACTIONS(1715), + [anon_sym_extern] = ACTIONS(1715), + [anon_sym_module] = ACTIONS(1715), + [anon_sym_use] = ACTIONS(1715), + [anon_sym_LPAREN] = ACTIONS(1715), + [anon_sym_DOLLAR] = ACTIONS(1715), + [anon_sym_error] = ACTIONS(1715), + [anon_sym_list] = ACTIONS(1715), + [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_break] = ACTIONS(1715), + [anon_sym_continue] = ACTIONS(1715), + [anon_sym_for] = ACTIONS(1715), + [anon_sym_in] = ACTIONS(1715), + [anon_sym_loop] = ACTIONS(1715), + [anon_sym_make] = ACTIONS(1715), + [anon_sym_while] = ACTIONS(1715), + [anon_sym_do] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1715), + [anon_sym_else] = ACTIONS(1715), + [anon_sym_match] = ACTIONS(1715), + [anon_sym_RBRACE] = ACTIONS(1715), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_catch] = ACTIONS(1715), + [anon_sym_return] = ACTIONS(1715), + [anon_sym_source] = ACTIONS(1715), + [anon_sym_source_DASHenv] = ACTIONS(1715), + [anon_sym_register] = ACTIONS(1715), + [anon_sym_hide] = ACTIONS(1715), + [anon_sym_hide_DASHenv] = ACTIONS(1715), + [anon_sym_overlay] = ACTIONS(1715), + [anon_sym_new] = ACTIONS(1715), + [anon_sym_as] = ACTIONS(1715), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(2269), + [aux_sym__immediate_decimal_token2] = ACTIONS(2271), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1715), + [aux_sym__val_number_decimal_token1] = ACTIONS(1715), + [aux_sym__val_number_decimal_token2] = ACTIONS(1715), + [aux_sym__val_number_decimal_token3] = ACTIONS(1715), + [aux_sym__val_number_decimal_token4] = ACTIONS(1715), + [aux_sym__val_number_token1] = ACTIONS(1715), + [aux_sym__val_number_token2] = ACTIONS(1715), + [aux_sym__val_number_token3] = ACTIONS(1715), + [anon_sym_DQUOTE] = ACTIONS(1715), + [sym__str_single_quotes] = ACTIONS(1715), + [sym__str_back_ticks] = ACTIONS(1715), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1715), + [sym__entry_separator] = ACTIONS(1717), + [anon_sym_PLUS] = ACTIONS(1715), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1717), }, - [551] = { - [sym_comment] = STATE(551), - [anon_sym_export] = ACTIONS(1070), - [anon_sym_alias] = ACTIONS(1070), - [anon_sym_let] = ACTIONS(1070), - [anon_sym_let_DASHenv] = ACTIONS(1070), - [anon_sym_mut] = ACTIONS(1070), - [anon_sym_const] = ACTIONS(1070), - [aux_sym_cmd_identifier_token1] = ACTIONS(1070), - [aux_sym_cmd_identifier_token2] = ACTIONS(1070), - [aux_sym_cmd_identifier_token3] = ACTIONS(1070), - [aux_sym_cmd_identifier_token4] = ACTIONS(1070), - [aux_sym_cmd_identifier_token5] = ACTIONS(1070), - [aux_sym_cmd_identifier_token6] = ACTIONS(1070), - [aux_sym_cmd_identifier_token7] = ACTIONS(1070), - [aux_sym_cmd_identifier_token8] = ACTIONS(1070), + [468] = { + [sym_comment] = STATE(468), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_alias] = ACTIONS(1074), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_let_DASHenv] = ACTIONS(1074), + [anon_sym_mut] = ACTIONS(1074), + [anon_sym_const] = ACTIONS(1074), + [aux_sym_cmd_identifier_token1] = ACTIONS(1074), + [aux_sym_cmd_identifier_token2] = ACTIONS(1074), + [aux_sym_cmd_identifier_token3] = ACTIONS(1074), + [aux_sym_cmd_identifier_token4] = ACTIONS(1074), + [aux_sym_cmd_identifier_token5] = ACTIONS(1074), + [aux_sym_cmd_identifier_token6] = ACTIONS(1074), + [aux_sym_cmd_identifier_token7] = ACTIONS(1074), + [aux_sym_cmd_identifier_token8] = ACTIONS(1074), + [aux_sym_cmd_identifier_token9] = ACTIONS(1074), + [aux_sym_cmd_identifier_token10] = ACTIONS(1074), + [aux_sym_cmd_identifier_token11] = ACTIONS(1074), + [aux_sym_cmd_identifier_token12] = ACTIONS(1074), + [aux_sym_cmd_identifier_token13] = ACTIONS(1074), + [aux_sym_cmd_identifier_token14] = ACTIONS(1074), + [aux_sym_cmd_identifier_token15] = ACTIONS(1074), + [aux_sym_cmd_identifier_token16] = ACTIONS(1074), + [aux_sym_cmd_identifier_token17] = ACTIONS(1074), + [aux_sym_cmd_identifier_token18] = ACTIONS(1074), + [aux_sym_cmd_identifier_token19] = ACTIONS(1074), + [aux_sym_cmd_identifier_token20] = ACTIONS(1074), + [aux_sym_cmd_identifier_token21] = ACTIONS(1074), + [aux_sym_cmd_identifier_token22] = ACTIONS(1074), + [aux_sym_cmd_identifier_token23] = ACTIONS(1074), + [aux_sym_cmd_identifier_token24] = ACTIONS(1074), + [aux_sym_cmd_identifier_token25] = ACTIONS(1074), + [aux_sym_cmd_identifier_token26] = ACTIONS(1074), + [aux_sym_cmd_identifier_token27] = ACTIONS(1074), + [aux_sym_cmd_identifier_token28] = ACTIONS(1074), + [aux_sym_cmd_identifier_token29] = ACTIONS(1074), + [aux_sym_cmd_identifier_token30] = ACTIONS(1074), + [aux_sym_cmd_identifier_token31] = ACTIONS(1074), + [aux_sym_cmd_identifier_token32] = ACTIONS(1074), + [aux_sym_cmd_identifier_token33] = ACTIONS(1074), + [aux_sym_cmd_identifier_token34] = ACTIONS(1074), + [aux_sym_cmd_identifier_token35] = ACTIONS(1074), + [aux_sym_cmd_identifier_token36] = ACTIONS(1074), + [anon_sym_true] = ACTIONS(1076), + [anon_sym_false] = ACTIONS(1076), + [anon_sym_null] = ACTIONS(1076), + [aux_sym_cmd_identifier_token38] = ACTIONS(1074), + [aux_sym_cmd_identifier_token39] = ACTIONS(1076), + [aux_sym_cmd_identifier_token40] = ACTIONS(1076), + [anon_sym_def] = ACTIONS(1074), + [anon_sym_export_DASHenv] = ACTIONS(1074), + [anon_sym_extern] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_use] = ACTIONS(1074), + [anon_sym_LPAREN] = ACTIONS(1076), + [anon_sym_COMMA] = ACTIONS(1076), + [anon_sym_DOLLAR] = ACTIONS(1076), + [anon_sym_error] = ACTIONS(1074), + [anon_sym_list] = ACTIONS(1074), + [anon_sym_DASH] = ACTIONS(1074), + [anon_sym_break] = ACTIONS(1074), + [anon_sym_continue] = ACTIONS(1074), + [anon_sym_for] = ACTIONS(1074), + [anon_sym_in] = ACTIONS(1074), + [anon_sym_loop] = ACTIONS(1074), + [anon_sym_make] = ACTIONS(1074), + [anon_sym_while] = ACTIONS(1074), + [anon_sym_do] = ACTIONS(1074), + [anon_sym_if] = ACTIONS(1074), + [anon_sym_else] = ACTIONS(1074), + [anon_sym_match] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(1076), + [anon_sym_try] = ACTIONS(1074), + [anon_sym_catch] = ACTIONS(1074), + [anon_sym_return] = ACTIONS(1074), + [anon_sym_source] = ACTIONS(1074), + [anon_sym_source_DASHenv] = ACTIONS(1074), + [anon_sym_register] = ACTIONS(1074), + [anon_sym_hide] = ACTIONS(1074), + [anon_sym_hide_DASHenv] = ACTIONS(1074), + [anon_sym_overlay] = ACTIONS(1074), + [anon_sym_new] = ACTIONS(1074), + [anon_sym_as] = ACTIONS(1074), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1076), + [anon_sym_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1076), + [aux_sym__val_number_decimal_token1] = ACTIONS(1074), + [aux_sym__val_number_decimal_token2] = ACTIONS(1076), + [aux_sym__val_number_decimal_token3] = ACTIONS(1076), + [aux_sym__val_number_decimal_token4] = ACTIONS(1076), + [aux_sym__val_number_token1] = ACTIONS(1076), + [aux_sym__val_number_token2] = ACTIONS(1076), + [aux_sym__val_number_token3] = ACTIONS(1076), + [anon_sym_DQUOTE] = ACTIONS(1076), + [sym__str_single_quotes] = ACTIONS(1076), + [sym__str_back_ticks] = ACTIONS(1076), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1076), + [aux_sym_record_entry_token1] = ACTIONS(1076), + [anon_sym_PLUS] = ACTIONS(1074), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1076), + }, + [469] = { + [sym_comment] = STATE(469), + [anon_sym_export] = ACTIONS(1090), + [anon_sym_alias] = ACTIONS(1090), + [anon_sym_let] = ACTIONS(1090), + [anon_sym_let_DASHenv] = ACTIONS(1090), + [anon_sym_mut] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [aux_sym_cmd_identifier_token1] = ACTIONS(1090), + [aux_sym_cmd_identifier_token2] = ACTIONS(1090), + [aux_sym_cmd_identifier_token3] = ACTIONS(1090), + [aux_sym_cmd_identifier_token4] = ACTIONS(1090), + [aux_sym_cmd_identifier_token5] = ACTIONS(1090), + [aux_sym_cmd_identifier_token6] = ACTIONS(1090), + [aux_sym_cmd_identifier_token7] = ACTIONS(1090), + [aux_sym_cmd_identifier_token8] = ACTIONS(1090), + [aux_sym_cmd_identifier_token9] = ACTIONS(1090), + [aux_sym_cmd_identifier_token10] = ACTIONS(1090), + [aux_sym_cmd_identifier_token11] = ACTIONS(1090), + [aux_sym_cmd_identifier_token12] = ACTIONS(1090), + [aux_sym_cmd_identifier_token13] = ACTIONS(1090), + [aux_sym_cmd_identifier_token14] = ACTIONS(1090), + [aux_sym_cmd_identifier_token15] = ACTIONS(1090), + [aux_sym_cmd_identifier_token16] = ACTIONS(1090), + [aux_sym_cmd_identifier_token17] = ACTIONS(1090), + [aux_sym_cmd_identifier_token18] = ACTIONS(1090), + [aux_sym_cmd_identifier_token19] = ACTIONS(1090), + [aux_sym_cmd_identifier_token20] = ACTIONS(1090), + [aux_sym_cmd_identifier_token21] = ACTIONS(1090), + [aux_sym_cmd_identifier_token22] = ACTIONS(1090), + [aux_sym_cmd_identifier_token23] = ACTIONS(1090), + [aux_sym_cmd_identifier_token24] = ACTIONS(1090), + [aux_sym_cmd_identifier_token25] = ACTIONS(1090), + [aux_sym_cmd_identifier_token26] = ACTIONS(1090), + [aux_sym_cmd_identifier_token27] = ACTIONS(1090), + [aux_sym_cmd_identifier_token28] = ACTIONS(1090), + [aux_sym_cmd_identifier_token29] = ACTIONS(1090), + [aux_sym_cmd_identifier_token30] = ACTIONS(1090), + [aux_sym_cmd_identifier_token31] = ACTIONS(1090), + [aux_sym_cmd_identifier_token32] = ACTIONS(1090), + [aux_sym_cmd_identifier_token33] = ACTIONS(1090), + [aux_sym_cmd_identifier_token34] = ACTIONS(1090), + [aux_sym_cmd_identifier_token35] = ACTIONS(1090), + [aux_sym_cmd_identifier_token36] = ACTIONS(1090), + [anon_sym_true] = ACTIONS(1090), + [anon_sym_false] = ACTIONS(1090), + [anon_sym_null] = ACTIONS(1090), + [aux_sym_cmd_identifier_token38] = ACTIONS(1090), + [aux_sym_cmd_identifier_token39] = ACTIONS(1090), + [aux_sym_cmd_identifier_token40] = ACTIONS(1090), + [anon_sym_def] = ACTIONS(1090), + [anon_sym_export_DASHenv] = ACTIONS(1090), + [anon_sym_extern] = ACTIONS(1090), + [anon_sym_module] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1090), + [anon_sym_LPAREN] = ACTIONS(1090), + [anon_sym_DOLLAR] = ACTIONS(1090), + [anon_sym_error] = ACTIONS(1090), + [anon_sym_list] = ACTIONS(1090), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_break] = ACTIONS(1090), + [anon_sym_continue] = ACTIONS(1090), + [anon_sym_for] = ACTIONS(1090), + [anon_sym_in] = ACTIONS(1090), + [anon_sym_loop] = ACTIONS(1090), + [anon_sym_make] = ACTIONS(1090), + [anon_sym_while] = ACTIONS(1090), + [anon_sym_do] = ACTIONS(1090), + [anon_sym_if] = ACTIONS(1090), + [anon_sym_else] = ACTIONS(1090), + [anon_sym_match] = ACTIONS(1090), + [anon_sym_RBRACE] = ACTIONS(1090), + [anon_sym_try] = ACTIONS(1090), + [anon_sym_catch] = ACTIONS(1090), + [anon_sym_return] = ACTIONS(1090), + [anon_sym_source] = ACTIONS(1090), + [anon_sym_source_DASHenv] = ACTIONS(1090), + [anon_sym_register] = ACTIONS(1090), + [anon_sym_hide] = ACTIONS(1090), + [anon_sym_hide_DASHenv] = ACTIONS(1090), + [anon_sym_overlay] = ACTIONS(1090), + [anon_sym_new] = ACTIONS(1090), + [anon_sym_as] = ACTIONS(1090), + [anon_sym_LPAREN2] = ACTIONS(2273), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1090), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1090), + [aux_sym__val_number_decimal_token1] = ACTIONS(1090), + [aux_sym__val_number_decimal_token2] = ACTIONS(1090), + [aux_sym__val_number_decimal_token3] = ACTIONS(1090), + [aux_sym__val_number_decimal_token4] = ACTIONS(1090), + [aux_sym__val_number_token1] = ACTIONS(1090), + [aux_sym__val_number_token2] = ACTIONS(1090), + [aux_sym__val_number_token3] = ACTIONS(1090), + [anon_sym_DQUOTE] = ACTIONS(1090), + [sym__str_single_quotes] = ACTIONS(1090), + [sym__str_back_ticks] = ACTIONS(1090), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1090), + [sym__entry_separator] = ACTIONS(1092), + [anon_sym_PLUS] = ACTIONS(1090), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2275), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1092), + }, + [470] = { + [sym_comment] = STATE(470), + [anon_sym_export] = ACTIONS(2277), + [anon_sym_alias] = ACTIONS(2277), + [anon_sym_let] = ACTIONS(2277), + [anon_sym_let_DASHenv] = ACTIONS(2277), + [anon_sym_mut] = ACTIONS(2277), + [anon_sym_const] = ACTIONS(2277), + [aux_sym_cmd_identifier_token1] = ACTIONS(2277), + [aux_sym_cmd_identifier_token2] = ACTIONS(2277), + [aux_sym_cmd_identifier_token3] = ACTIONS(2277), + [aux_sym_cmd_identifier_token4] = ACTIONS(2277), + [aux_sym_cmd_identifier_token5] = ACTIONS(2277), + [aux_sym_cmd_identifier_token6] = ACTIONS(2277), + [aux_sym_cmd_identifier_token7] = ACTIONS(2277), + [aux_sym_cmd_identifier_token8] = ACTIONS(2277), + [aux_sym_cmd_identifier_token9] = ACTIONS(2277), + [aux_sym_cmd_identifier_token10] = ACTIONS(2277), + [aux_sym_cmd_identifier_token11] = ACTIONS(2277), + [aux_sym_cmd_identifier_token12] = ACTIONS(2277), + [aux_sym_cmd_identifier_token13] = ACTIONS(2277), + [aux_sym_cmd_identifier_token14] = ACTIONS(2277), + [aux_sym_cmd_identifier_token15] = ACTIONS(2277), + [aux_sym_cmd_identifier_token16] = ACTIONS(2277), + [aux_sym_cmd_identifier_token17] = ACTIONS(2277), + [aux_sym_cmd_identifier_token18] = ACTIONS(2277), + [aux_sym_cmd_identifier_token19] = ACTIONS(2277), + [aux_sym_cmd_identifier_token20] = ACTIONS(2277), + [aux_sym_cmd_identifier_token21] = ACTIONS(2277), + [aux_sym_cmd_identifier_token22] = ACTIONS(2277), + [aux_sym_cmd_identifier_token23] = ACTIONS(2277), + [aux_sym_cmd_identifier_token24] = ACTIONS(2277), + [aux_sym_cmd_identifier_token25] = ACTIONS(2277), + [aux_sym_cmd_identifier_token26] = ACTIONS(2277), + [aux_sym_cmd_identifier_token27] = ACTIONS(2277), + [aux_sym_cmd_identifier_token28] = ACTIONS(2277), + [aux_sym_cmd_identifier_token29] = ACTIONS(2277), + [aux_sym_cmd_identifier_token30] = ACTIONS(2277), + [aux_sym_cmd_identifier_token31] = ACTIONS(2277), + [aux_sym_cmd_identifier_token32] = ACTIONS(2277), + [aux_sym_cmd_identifier_token33] = ACTIONS(2277), + [aux_sym_cmd_identifier_token34] = ACTIONS(2277), + [aux_sym_cmd_identifier_token35] = ACTIONS(2277), + [aux_sym_cmd_identifier_token36] = ACTIONS(2277), + [anon_sym_true] = ACTIONS(2277), + [anon_sym_false] = ACTIONS(2277), + [anon_sym_null] = ACTIONS(2277), + [aux_sym_cmd_identifier_token38] = ACTIONS(2277), + [aux_sym_cmd_identifier_token39] = ACTIONS(2277), + [aux_sym_cmd_identifier_token40] = ACTIONS(2277), + [anon_sym_def] = ACTIONS(2277), + [anon_sym_export_DASHenv] = ACTIONS(2277), + [anon_sym_extern] = ACTIONS(2277), + [anon_sym_module] = ACTIONS(2277), + [anon_sym_use] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(2277), + [anon_sym_DOLLAR] = ACTIONS(2277), + [anon_sym_error] = ACTIONS(2277), + [anon_sym_list] = ACTIONS(2277), + [anon_sym_DASH] = ACTIONS(2277), + [anon_sym_break] = ACTIONS(2277), + [anon_sym_continue] = ACTIONS(2277), + [anon_sym_for] = ACTIONS(2277), + [anon_sym_in] = ACTIONS(2277), + [anon_sym_loop] = ACTIONS(2277), + [anon_sym_make] = ACTIONS(2277), + [anon_sym_while] = ACTIONS(2277), + [anon_sym_do] = ACTIONS(2277), + [anon_sym_if] = ACTIONS(2277), + [anon_sym_else] = ACTIONS(2277), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_RBRACE] = ACTIONS(2277), + [anon_sym_try] = ACTIONS(2277), + [anon_sym_catch] = ACTIONS(2277), + [anon_sym_return] = ACTIONS(2277), + [anon_sym_source] = ACTIONS(2277), + [anon_sym_source_DASHenv] = ACTIONS(2277), + [anon_sym_register] = ACTIONS(2277), + [anon_sym_hide] = ACTIONS(2277), + [anon_sym_hide_DASHenv] = ACTIONS(2277), + [anon_sym_overlay] = ACTIONS(2277), + [anon_sym_new] = ACTIONS(2277), + [anon_sym_as] = ACTIONS(2277), + [anon_sym_LPAREN2] = ACTIONS(1844), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2277), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2277), + [aux_sym__val_number_decimal_token1] = ACTIONS(2277), + [aux_sym__val_number_decimal_token2] = ACTIONS(2277), + [aux_sym__val_number_decimal_token3] = ACTIONS(2277), + [aux_sym__val_number_decimal_token4] = ACTIONS(2277), + [aux_sym__val_number_token1] = ACTIONS(2277), + [aux_sym__val_number_token2] = ACTIONS(2277), + [aux_sym__val_number_token3] = ACTIONS(2277), + [anon_sym_DQUOTE] = ACTIONS(2277), + [sym__str_single_quotes] = ACTIONS(2277), + [sym__str_back_ticks] = ACTIONS(2277), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2277), + [sym__entry_separator] = ACTIONS(2279), + [anon_sym_PLUS] = ACTIONS(2277), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1852), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2279), + }, + [471] = { + [sym_comment] = STATE(471), + [anon_sym_export] = ACTIONS(2218), + [anon_sym_alias] = ACTIONS(2218), + [anon_sym_let] = ACTIONS(2218), + [anon_sym_let_DASHenv] = ACTIONS(2218), + [anon_sym_mut] = ACTIONS(2218), + [anon_sym_const] = ACTIONS(2218), + [aux_sym_cmd_identifier_token1] = ACTIONS(2218), + [aux_sym_cmd_identifier_token2] = ACTIONS(2218), + [aux_sym_cmd_identifier_token3] = ACTIONS(2218), + [aux_sym_cmd_identifier_token4] = ACTIONS(2218), + [aux_sym_cmd_identifier_token5] = ACTIONS(2218), + [aux_sym_cmd_identifier_token6] = ACTIONS(2218), + [aux_sym_cmd_identifier_token7] = ACTIONS(2218), + [aux_sym_cmd_identifier_token8] = ACTIONS(2218), + [aux_sym_cmd_identifier_token9] = ACTIONS(2218), + [aux_sym_cmd_identifier_token10] = ACTIONS(2218), + [aux_sym_cmd_identifier_token11] = ACTIONS(2218), + [aux_sym_cmd_identifier_token12] = ACTIONS(2218), + [aux_sym_cmd_identifier_token13] = ACTIONS(2218), + [aux_sym_cmd_identifier_token14] = ACTIONS(2218), + [aux_sym_cmd_identifier_token15] = ACTIONS(2218), + [aux_sym_cmd_identifier_token16] = ACTIONS(2218), + [aux_sym_cmd_identifier_token17] = ACTIONS(2218), + [aux_sym_cmd_identifier_token18] = ACTIONS(2218), + [aux_sym_cmd_identifier_token19] = ACTIONS(2218), + [aux_sym_cmd_identifier_token20] = ACTIONS(2218), + [aux_sym_cmd_identifier_token21] = ACTIONS(2218), + [aux_sym_cmd_identifier_token22] = ACTIONS(2218), + [aux_sym_cmd_identifier_token23] = ACTIONS(2218), + [aux_sym_cmd_identifier_token24] = ACTIONS(2218), + [aux_sym_cmd_identifier_token25] = ACTIONS(2218), + [aux_sym_cmd_identifier_token26] = ACTIONS(2218), + [aux_sym_cmd_identifier_token27] = ACTIONS(2218), + [aux_sym_cmd_identifier_token28] = ACTIONS(2218), + [aux_sym_cmd_identifier_token29] = ACTIONS(2218), + [aux_sym_cmd_identifier_token30] = ACTIONS(2218), + [aux_sym_cmd_identifier_token31] = ACTIONS(2218), + [aux_sym_cmd_identifier_token32] = ACTIONS(2218), + [aux_sym_cmd_identifier_token33] = ACTIONS(2218), + [aux_sym_cmd_identifier_token34] = ACTIONS(2218), + [aux_sym_cmd_identifier_token35] = ACTIONS(2218), + [aux_sym_cmd_identifier_token36] = ACTIONS(2218), + [anon_sym_true] = ACTIONS(2220), + [anon_sym_false] = ACTIONS(2220), + [anon_sym_null] = ACTIONS(2220), + [aux_sym_cmd_identifier_token38] = ACTIONS(2218), + [aux_sym_cmd_identifier_token39] = ACTIONS(2220), + [aux_sym_cmd_identifier_token40] = ACTIONS(2220), + [anon_sym_def] = ACTIONS(2218), + [anon_sym_export_DASHenv] = ACTIONS(2218), + [anon_sym_extern] = ACTIONS(2218), + [anon_sym_module] = ACTIONS(2218), + [anon_sym_use] = ACTIONS(2218), + [anon_sym_LPAREN] = ACTIONS(2220), + [anon_sym_DOLLAR] = ACTIONS(2220), + [anon_sym_error] = ACTIONS(2218), + [anon_sym_list] = ACTIONS(2218), + [anon_sym_DASH] = ACTIONS(2218), + [anon_sym_break] = ACTIONS(2218), + [anon_sym_continue] = ACTIONS(2218), + [anon_sym_for] = ACTIONS(2218), + [anon_sym_in] = ACTIONS(2218), + [anon_sym_loop] = ACTIONS(2218), + [anon_sym_make] = ACTIONS(2218), + [anon_sym_while] = ACTIONS(2218), + [anon_sym_do] = ACTIONS(2218), + [anon_sym_if] = ACTIONS(2218), + [anon_sym_else] = ACTIONS(2218), + [anon_sym_match] = ACTIONS(2218), + [anon_sym_RBRACE] = ACTIONS(2220), + [anon_sym_try] = ACTIONS(2218), + [anon_sym_catch] = ACTIONS(2218), + [anon_sym_return] = ACTIONS(2218), + [anon_sym_source] = ACTIONS(2218), + [anon_sym_source_DASHenv] = ACTIONS(2218), + [anon_sym_register] = ACTIONS(2218), + [anon_sym_hide] = ACTIONS(2218), + [anon_sym_hide_DASHenv] = ACTIONS(2218), + [anon_sym_overlay] = ACTIONS(2218), + [anon_sym_new] = ACTIONS(2218), + [anon_sym_as] = ACTIONS(2218), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2220), + [anon_sym_DOT_DOT2] = ACTIONS(2218), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2220), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2220), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2220), + [aux_sym__val_number_decimal_token1] = ACTIONS(2218), + [aux_sym__val_number_decimal_token2] = ACTIONS(2220), + [aux_sym__val_number_decimal_token3] = ACTIONS(2220), + [aux_sym__val_number_decimal_token4] = ACTIONS(2220), + [aux_sym__val_number_token1] = ACTIONS(2220), + [aux_sym__val_number_token2] = ACTIONS(2220), + [aux_sym__val_number_token3] = ACTIONS(2220), + [anon_sym_DQUOTE] = ACTIONS(2220), + [sym__str_single_quotes] = ACTIONS(2220), + [sym__str_back_ticks] = ACTIONS(2220), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2220), + [anon_sym_PLUS] = ACTIONS(2218), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2220), + }, + [472] = { + [sym_comment] = STATE(472), + [anon_sym_export] = ACTIONS(2230), + [anon_sym_alias] = ACTIONS(2230), + [anon_sym_let] = ACTIONS(2230), + [anon_sym_let_DASHenv] = ACTIONS(2230), + [anon_sym_mut] = ACTIONS(2230), + [anon_sym_const] = ACTIONS(2230), + [aux_sym_cmd_identifier_token1] = ACTIONS(2230), + [aux_sym_cmd_identifier_token2] = ACTIONS(2230), + [aux_sym_cmd_identifier_token3] = ACTIONS(2230), + [aux_sym_cmd_identifier_token4] = ACTIONS(2230), + [aux_sym_cmd_identifier_token5] = ACTIONS(2230), + [aux_sym_cmd_identifier_token6] = ACTIONS(2230), + [aux_sym_cmd_identifier_token7] = ACTIONS(2230), + [aux_sym_cmd_identifier_token8] = ACTIONS(2230), + [aux_sym_cmd_identifier_token9] = ACTIONS(2230), + [aux_sym_cmd_identifier_token10] = ACTIONS(2230), + [aux_sym_cmd_identifier_token11] = ACTIONS(2230), + [aux_sym_cmd_identifier_token12] = ACTIONS(2230), + [aux_sym_cmd_identifier_token13] = ACTIONS(2230), + [aux_sym_cmd_identifier_token14] = ACTIONS(2230), + [aux_sym_cmd_identifier_token15] = ACTIONS(2230), + [aux_sym_cmd_identifier_token16] = ACTIONS(2230), + [aux_sym_cmd_identifier_token17] = ACTIONS(2230), + [aux_sym_cmd_identifier_token18] = ACTIONS(2230), + [aux_sym_cmd_identifier_token19] = ACTIONS(2230), + [aux_sym_cmd_identifier_token20] = ACTIONS(2230), + [aux_sym_cmd_identifier_token21] = ACTIONS(2230), + [aux_sym_cmd_identifier_token22] = ACTIONS(2230), + [aux_sym_cmd_identifier_token23] = ACTIONS(2230), + [aux_sym_cmd_identifier_token24] = ACTIONS(2230), + [aux_sym_cmd_identifier_token25] = ACTIONS(2230), + [aux_sym_cmd_identifier_token26] = ACTIONS(2230), + [aux_sym_cmd_identifier_token27] = ACTIONS(2230), + [aux_sym_cmd_identifier_token28] = ACTIONS(2230), + [aux_sym_cmd_identifier_token29] = ACTIONS(2230), + [aux_sym_cmd_identifier_token30] = ACTIONS(2230), + [aux_sym_cmd_identifier_token31] = ACTIONS(2230), + [aux_sym_cmd_identifier_token32] = ACTIONS(2230), + [aux_sym_cmd_identifier_token33] = ACTIONS(2230), + [aux_sym_cmd_identifier_token34] = ACTIONS(2230), + [aux_sym_cmd_identifier_token35] = ACTIONS(2230), + [aux_sym_cmd_identifier_token36] = ACTIONS(2230), + [anon_sym_true] = ACTIONS(2232), + [anon_sym_false] = ACTIONS(2232), + [anon_sym_null] = ACTIONS(2232), + [aux_sym_cmd_identifier_token38] = ACTIONS(2230), + [aux_sym_cmd_identifier_token39] = ACTIONS(2232), + [aux_sym_cmd_identifier_token40] = ACTIONS(2232), + [anon_sym_def] = ACTIONS(2230), + [anon_sym_export_DASHenv] = ACTIONS(2230), + [anon_sym_extern] = ACTIONS(2230), + [anon_sym_module] = ACTIONS(2230), + [anon_sym_use] = ACTIONS(2230), + [anon_sym_LPAREN] = ACTIONS(2232), + [anon_sym_DOLLAR] = ACTIONS(2232), + [anon_sym_error] = ACTIONS(2230), + [anon_sym_list] = ACTIONS(2230), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_break] = ACTIONS(2230), + [anon_sym_continue] = ACTIONS(2230), + [anon_sym_for] = ACTIONS(2230), + [anon_sym_in] = ACTIONS(2230), + [anon_sym_loop] = ACTIONS(2230), + [anon_sym_make] = ACTIONS(2230), + [anon_sym_while] = ACTIONS(2230), + [anon_sym_do] = ACTIONS(2230), + [anon_sym_if] = ACTIONS(2230), + [anon_sym_else] = ACTIONS(2230), + [anon_sym_match] = ACTIONS(2230), + [anon_sym_RBRACE] = ACTIONS(2232), + [anon_sym_try] = ACTIONS(2230), + [anon_sym_catch] = ACTIONS(2230), + [anon_sym_return] = ACTIONS(2230), + [anon_sym_source] = ACTIONS(2230), + [anon_sym_source_DASHenv] = ACTIONS(2230), + [anon_sym_register] = ACTIONS(2230), + [anon_sym_hide] = ACTIONS(2230), + [anon_sym_hide_DASHenv] = ACTIONS(2230), + [anon_sym_overlay] = ACTIONS(2230), + [anon_sym_new] = ACTIONS(2230), + [anon_sym_as] = ACTIONS(2230), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2232), + [anon_sym_DOT_DOT2] = ACTIONS(2230), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2232), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2232), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2232), + [aux_sym__val_number_decimal_token1] = ACTIONS(2230), + [aux_sym__val_number_decimal_token2] = ACTIONS(2232), + [aux_sym__val_number_decimal_token3] = ACTIONS(2232), + [aux_sym__val_number_decimal_token4] = ACTIONS(2232), + [aux_sym__val_number_token1] = ACTIONS(2232), + [aux_sym__val_number_token2] = ACTIONS(2232), + [aux_sym__val_number_token3] = ACTIONS(2232), + [anon_sym_DQUOTE] = ACTIONS(2232), + [sym__str_single_quotes] = ACTIONS(2232), + [sym__str_back_ticks] = ACTIONS(2232), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2232), + }, + [473] = { + [sym_comment] = STATE(473), + [anon_sym_export] = ACTIONS(2281), + [anon_sym_alias] = ACTIONS(2281), + [anon_sym_let] = ACTIONS(2281), + [anon_sym_let_DASHenv] = ACTIONS(2281), + [anon_sym_mut] = ACTIONS(2281), + [anon_sym_const] = ACTIONS(2281), + [aux_sym_cmd_identifier_token1] = ACTIONS(2281), + [aux_sym_cmd_identifier_token2] = ACTIONS(2281), + [aux_sym_cmd_identifier_token3] = ACTIONS(2281), + [aux_sym_cmd_identifier_token4] = ACTIONS(2281), + [aux_sym_cmd_identifier_token5] = ACTIONS(2281), + [aux_sym_cmd_identifier_token6] = ACTIONS(2281), + [aux_sym_cmd_identifier_token7] = ACTIONS(2281), + [aux_sym_cmd_identifier_token8] = ACTIONS(2281), + [aux_sym_cmd_identifier_token9] = ACTIONS(2281), + [aux_sym_cmd_identifier_token10] = ACTIONS(2281), + [aux_sym_cmd_identifier_token11] = ACTIONS(2281), + [aux_sym_cmd_identifier_token12] = ACTIONS(2281), + [aux_sym_cmd_identifier_token13] = ACTIONS(2281), + [aux_sym_cmd_identifier_token14] = ACTIONS(2281), + [aux_sym_cmd_identifier_token15] = ACTIONS(2281), + [aux_sym_cmd_identifier_token16] = ACTIONS(2281), + [aux_sym_cmd_identifier_token17] = ACTIONS(2281), + [aux_sym_cmd_identifier_token18] = ACTIONS(2281), + [aux_sym_cmd_identifier_token19] = ACTIONS(2281), + [aux_sym_cmd_identifier_token20] = ACTIONS(2281), + [aux_sym_cmd_identifier_token21] = ACTIONS(2281), + [aux_sym_cmd_identifier_token22] = ACTIONS(2281), + [aux_sym_cmd_identifier_token23] = ACTIONS(2281), + [aux_sym_cmd_identifier_token24] = ACTIONS(2281), + [aux_sym_cmd_identifier_token25] = ACTIONS(2281), + [aux_sym_cmd_identifier_token26] = ACTIONS(2281), + [aux_sym_cmd_identifier_token27] = ACTIONS(2281), + [aux_sym_cmd_identifier_token28] = ACTIONS(2281), + [aux_sym_cmd_identifier_token29] = ACTIONS(2281), + [aux_sym_cmd_identifier_token30] = ACTIONS(2281), + [aux_sym_cmd_identifier_token31] = ACTIONS(2281), + [aux_sym_cmd_identifier_token32] = ACTIONS(2281), + [aux_sym_cmd_identifier_token33] = ACTIONS(2281), + [aux_sym_cmd_identifier_token34] = ACTIONS(2281), + [aux_sym_cmd_identifier_token35] = ACTIONS(2281), + [aux_sym_cmd_identifier_token36] = ACTIONS(2281), + [anon_sym_true] = ACTIONS(2281), + [anon_sym_false] = ACTIONS(2281), + [anon_sym_null] = ACTIONS(2281), + [aux_sym_cmd_identifier_token38] = ACTIONS(2281), + [aux_sym_cmd_identifier_token39] = ACTIONS(2281), + [aux_sym_cmd_identifier_token40] = ACTIONS(2281), + [anon_sym_def] = ACTIONS(2281), + [anon_sym_export_DASHenv] = ACTIONS(2281), + [anon_sym_extern] = ACTIONS(2281), + [anon_sym_module] = ACTIONS(2281), + [anon_sym_use] = ACTIONS(2281), + [anon_sym_LPAREN] = ACTIONS(2281), + [anon_sym_DOLLAR] = ACTIONS(2281), + [anon_sym_error] = ACTIONS(2281), + [anon_sym_list] = ACTIONS(2281), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_break] = ACTIONS(2281), + [anon_sym_continue] = ACTIONS(2281), + [anon_sym_for] = ACTIONS(2281), + [anon_sym_in] = ACTIONS(2281), + [anon_sym_loop] = ACTIONS(2281), + [anon_sym_make] = ACTIONS(2281), + [anon_sym_while] = ACTIONS(2281), + [anon_sym_do] = ACTIONS(2281), + [anon_sym_if] = ACTIONS(2281), + [anon_sym_else] = ACTIONS(2281), + [anon_sym_match] = ACTIONS(2281), + [anon_sym_RBRACE] = ACTIONS(2281), + [anon_sym_try] = ACTIONS(2281), + [anon_sym_catch] = ACTIONS(2281), + [anon_sym_return] = ACTIONS(2281), + [anon_sym_source] = ACTIONS(2281), + [anon_sym_source_DASHenv] = ACTIONS(2281), + [anon_sym_register] = ACTIONS(2281), + [anon_sym_hide] = ACTIONS(2281), + [anon_sym_hide_DASHenv] = ACTIONS(2281), + [anon_sym_overlay] = ACTIONS(2281), + [anon_sym_new] = ACTIONS(2281), + [anon_sym_as] = ACTIONS(2281), + [anon_sym_LPAREN2] = ACTIONS(2283), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2281), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2281), + [aux_sym__val_number_decimal_token1] = ACTIONS(2281), + [aux_sym__val_number_decimal_token2] = ACTIONS(2281), + [aux_sym__val_number_decimal_token3] = ACTIONS(2281), + [aux_sym__val_number_decimal_token4] = ACTIONS(2281), + [aux_sym__val_number_token1] = ACTIONS(2281), + [aux_sym__val_number_token2] = ACTIONS(2281), + [aux_sym__val_number_token3] = ACTIONS(2281), + [anon_sym_DQUOTE] = ACTIONS(2281), + [sym__str_single_quotes] = ACTIONS(2281), + [sym__str_back_ticks] = ACTIONS(2281), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2281), + [sym__entry_separator] = ACTIONS(2285), + [anon_sym_PLUS] = ACTIONS(2281), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2287), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2285), + }, + [474] = { + [sym_comment] = STATE(474), + [anon_sym_export] = ACTIONS(2289), + [anon_sym_alias] = ACTIONS(2289), + [anon_sym_let] = ACTIONS(2289), + [anon_sym_let_DASHenv] = ACTIONS(2289), + [anon_sym_mut] = ACTIONS(2289), + [anon_sym_const] = ACTIONS(2289), + [aux_sym_cmd_identifier_token1] = ACTIONS(2289), + [aux_sym_cmd_identifier_token2] = ACTIONS(2289), + [aux_sym_cmd_identifier_token3] = ACTIONS(2289), + [aux_sym_cmd_identifier_token4] = ACTIONS(2289), + [aux_sym_cmd_identifier_token5] = ACTIONS(2289), + [aux_sym_cmd_identifier_token6] = ACTIONS(2289), + [aux_sym_cmd_identifier_token7] = ACTIONS(2289), + [aux_sym_cmd_identifier_token8] = ACTIONS(2289), + [aux_sym_cmd_identifier_token9] = ACTIONS(2289), + [aux_sym_cmd_identifier_token10] = ACTIONS(2289), + [aux_sym_cmd_identifier_token11] = ACTIONS(2289), + [aux_sym_cmd_identifier_token12] = ACTIONS(2289), + [aux_sym_cmd_identifier_token13] = ACTIONS(2289), + [aux_sym_cmd_identifier_token14] = ACTIONS(2289), + [aux_sym_cmd_identifier_token15] = ACTIONS(2289), + [aux_sym_cmd_identifier_token16] = ACTIONS(2289), + [aux_sym_cmd_identifier_token17] = ACTIONS(2289), + [aux_sym_cmd_identifier_token18] = ACTIONS(2289), + [aux_sym_cmd_identifier_token19] = ACTIONS(2289), + [aux_sym_cmd_identifier_token20] = ACTIONS(2289), + [aux_sym_cmd_identifier_token21] = ACTIONS(2289), + [aux_sym_cmd_identifier_token22] = ACTIONS(2289), + [aux_sym_cmd_identifier_token23] = ACTIONS(2289), + [aux_sym_cmd_identifier_token24] = ACTIONS(2289), + [aux_sym_cmd_identifier_token25] = ACTIONS(2289), + [aux_sym_cmd_identifier_token26] = ACTIONS(2289), + [aux_sym_cmd_identifier_token27] = ACTIONS(2289), + [aux_sym_cmd_identifier_token28] = ACTIONS(2289), + [aux_sym_cmd_identifier_token29] = ACTIONS(2289), + [aux_sym_cmd_identifier_token30] = ACTIONS(2289), + [aux_sym_cmd_identifier_token31] = ACTIONS(2289), + [aux_sym_cmd_identifier_token32] = ACTIONS(2289), + [aux_sym_cmd_identifier_token33] = ACTIONS(2289), + [aux_sym_cmd_identifier_token34] = ACTIONS(2289), + [aux_sym_cmd_identifier_token35] = ACTIONS(2289), + [aux_sym_cmd_identifier_token36] = ACTIONS(2289), + [anon_sym_true] = ACTIONS(2289), + [anon_sym_false] = ACTIONS(2289), + [anon_sym_null] = ACTIONS(2289), + [aux_sym_cmd_identifier_token38] = ACTIONS(2289), + [aux_sym_cmd_identifier_token39] = ACTIONS(2289), + [aux_sym_cmd_identifier_token40] = ACTIONS(2289), + [anon_sym_def] = ACTIONS(2289), + [anon_sym_export_DASHenv] = ACTIONS(2289), + [anon_sym_extern] = ACTIONS(2289), + [anon_sym_module] = ACTIONS(2289), + [anon_sym_use] = ACTIONS(2289), + [anon_sym_LPAREN] = ACTIONS(2289), + [anon_sym_DOLLAR] = ACTIONS(2289), + [anon_sym_error] = ACTIONS(2289), + [anon_sym_list] = ACTIONS(2289), + [anon_sym_DASH] = ACTIONS(2289), + [anon_sym_break] = ACTIONS(2289), + [anon_sym_continue] = ACTIONS(2289), + [anon_sym_for] = ACTIONS(2289), + [anon_sym_in] = ACTIONS(2289), + [anon_sym_loop] = ACTIONS(2289), + [anon_sym_make] = ACTIONS(2289), + [anon_sym_while] = ACTIONS(2289), + [anon_sym_do] = ACTIONS(2289), + [anon_sym_if] = ACTIONS(2289), + [anon_sym_else] = ACTIONS(2289), + [anon_sym_match] = ACTIONS(2289), + [anon_sym_RBRACE] = ACTIONS(2289), + [anon_sym_try] = ACTIONS(2289), + [anon_sym_catch] = ACTIONS(2289), + [anon_sym_return] = ACTIONS(2289), + [anon_sym_source] = ACTIONS(2289), + [anon_sym_source_DASHenv] = ACTIONS(2289), + [anon_sym_register] = ACTIONS(2289), + [anon_sym_hide] = ACTIONS(2289), + [anon_sym_hide_DASHenv] = ACTIONS(2289), + [anon_sym_overlay] = ACTIONS(2289), + [anon_sym_new] = ACTIONS(2289), + [anon_sym_as] = ACTIONS(2289), + [anon_sym_LPAREN2] = ACTIONS(2291), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2289), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2289), + [aux_sym__val_number_decimal_token1] = ACTIONS(2289), + [aux_sym__val_number_decimal_token2] = ACTIONS(2289), + [aux_sym__val_number_decimal_token3] = ACTIONS(2289), + [aux_sym__val_number_decimal_token4] = ACTIONS(2289), + [aux_sym__val_number_token1] = ACTIONS(2289), + [aux_sym__val_number_token2] = ACTIONS(2289), + [aux_sym__val_number_token3] = ACTIONS(2289), + [anon_sym_DQUOTE] = ACTIONS(2289), + [sym__str_single_quotes] = ACTIONS(2289), + [sym__str_back_ticks] = ACTIONS(2289), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2289), + [sym__entry_separator] = ACTIONS(2291), + [anon_sym_PLUS] = ACTIONS(2289), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2289), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2291), + }, + [475] = { + [sym_comment] = STATE(475), + [anon_sym_export] = ACTIONS(2105), + [anon_sym_alias] = ACTIONS(2105), + [anon_sym_let] = ACTIONS(2105), + [anon_sym_let_DASHenv] = ACTIONS(2105), + [anon_sym_mut] = ACTIONS(2105), + [anon_sym_const] = ACTIONS(2105), + [aux_sym_cmd_identifier_token1] = ACTIONS(2105), + [aux_sym_cmd_identifier_token2] = ACTIONS(2105), + [aux_sym_cmd_identifier_token3] = ACTIONS(2105), + [aux_sym_cmd_identifier_token4] = ACTIONS(2105), + [aux_sym_cmd_identifier_token5] = ACTIONS(2105), + [aux_sym_cmd_identifier_token6] = ACTIONS(2105), + [aux_sym_cmd_identifier_token7] = ACTIONS(2105), + [aux_sym_cmd_identifier_token8] = ACTIONS(2105), + [aux_sym_cmd_identifier_token9] = ACTIONS(2105), + [aux_sym_cmd_identifier_token10] = ACTIONS(2105), + [aux_sym_cmd_identifier_token11] = ACTIONS(2105), + [aux_sym_cmd_identifier_token12] = ACTIONS(2105), + [aux_sym_cmd_identifier_token13] = ACTIONS(2105), + [aux_sym_cmd_identifier_token14] = ACTIONS(2105), + [aux_sym_cmd_identifier_token15] = ACTIONS(2105), + [aux_sym_cmd_identifier_token16] = ACTIONS(2105), + [aux_sym_cmd_identifier_token17] = ACTIONS(2105), + [aux_sym_cmd_identifier_token18] = ACTIONS(2105), + [aux_sym_cmd_identifier_token19] = ACTIONS(2105), + [aux_sym_cmd_identifier_token20] = ACTIONS(2105), + [aux_sym_cmd_identifier_token21] = ACTIONS(2105), + [aux_sym_cmd_identifier_token22] = ACTIONS(2105), + [aux_sym_cmd_identifier_token23] = ACTIONS(2105), + [aux_sym_cmd_identifier_token24] = ACTIONS(2105), + [aux_sym_cmd_identifier_token25] = ACTIONS(2105), + [aux_sym_cmd_identifier_token26] = ACTIONS(2105), + [aux_sym_cmd_identifier_token27] = ACTIONS(2105), + [aux_sym_cmd_identifier_token28] = ACTIONS(2105), + [aux_sym_cmd_identifier_token29] = ACTIONS(2105), + [aux_sym_cmd_identifier_token30] = ACTIONS(2105), + [aux_sym_cmd_identifier_token31] = ACTIONS(2105), + [aux_sym_cmd_identifier_token32] = ACTIONS(2105), + [aux_sym_cmd_identifier_token33] = ACTIONS(2105), + [aux_sym_cmd_identifier_token34] = ACTIONS(2105), + [aux_sym_cmd_identifier_token35] = ACTIONS(2105), + [aux_sym_cmd_identifier_token36] = ACTIONS(2105), + [anon_sym_true] = ACTIONS(2107), + [anon_sym_false] = ACTIONS(2107), + [anon_sym_null] = ACTIONS(2107), + [aux_sym_cmd_identifier_token38] = ACTIONS(2105), + [aux_sym_cmd_identifier_token39] = ACTIONS(2107), + [aux_sym_cmd_identifier_token40] = ACTIONS(2107), + [anon_sym_def] = ACTIONS(2105), + [anon_sym_export_DASHenv] = ACTIONS(2105), + [anon_sym_extern] = ACTIONS(2105), + [anon_sym_module] = ACTIONS(2105), + [anon_sym_use] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_DOLLAR] = ACTIONS(2107), + [anon_sym_error] = ACTIONS(2105), + [anon_sym_list] = ACTIONS(2105), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_break] = ACTIONS(2105), + [anon_sym_continue] = ACTIONS(2105), + [anon_sym_for] = ACTIONS(2105), + [anon_sym_in] = ACTIONS(2105), + [anon_sym_loop] = ACTIONS(2105), + [anon_sym_make] = ACTIONS(2105), + [anon_sym_while] = ACTIONS(2105), + [anon_sym_do] = ACTIONS(2105), + [anon_sym_if] = ACTIONS(2105), + [anon_sym_else] = ACTIONS(2105), + [anon_sym_match] = ACTIONS(2105), + [anon_sym_RBRACE] = ACTIONS(2107), + [anon_sym_try] = ACTIONS(2105), + [anon_sym_catch] = ACTIONS(2105), + [anon_sym_return] = ACTIONS(2105), + [anon_sym_source] = ACTIONS(2105), + [anon_sym_source_DASHenv] = ACTIONS(2105), + [anon_sym_register] = ACTIONS(2105), + [anon_sym_hide] = ACTIONS(2105), + [anon_sym_hide_DASHenv] = ACTIONS(2105), + [anon_sym_overlay] = ACTIONS(2105), + [anon_sym_new] = ACTIONS(2105), + [anon_sym_as] = ACTIONS(2105), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2107), + [anon_sym_DOT_DOT2] = ACTIONS(2105), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2107), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2107), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2107), + [aux_sym__val_number_decimal_token1] = ACTIONS(2105), + [aux_sym__val_number_decimal_token2] = ACTIONS(2107), + [aux_sym__val_number_decimal_token3] = ACTIONS(2107), + [aux_sym__val_number_decimal_token4] = ACTIONS(2107), + [aux_sym__val_number_token1] = ACTIONS(2107), + [aux_sym__val_number_token2] = ACTIONS(2107), + [aux_sym__val_number_token3] = ACTIONS(2107), + [anon_sym_DQUOTE] = ACTIONS(2107), + [sym__str_single_quotes] = ACTIONS(2107), + [sym__str_back_ticks] = ACTIONS(2107), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2107), + [anon_sym_PLUS] = ACTIONS(2105), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2107), + }, + [476] = { + [sym_comment] = STATE(476), + [anon_sym_export] = ACTIONS(1715), + [anon_sym_alias] = ACTIONS(1715), + [anon_sym_let] = ACTIONS(1715), + [anon_sym_let_DASHenv] = ACTIONS(1715), + [anon_sym_mut] = ACTIONS(1715), + [anon_sym_const] = ACTIONS(1715), + [aux_sym_cmd_identifier_token1] = ACTIONS(1715), + [aux_sym_cmd_identifier_token2] = ACTIONS(1715), + [aux_sym_cmd_identifier_token3] = ACTIONS(1715), + [aux_sym_cmd_identifier_token4] = ACTIONS(1715), + [aux_sym_cmd_identifier_token5] = ACTIONS(1715), + [aux_sym_cmd_identifier_token6] = ACTIONS(1715), + [aux_sym_cmd_identifier_token7] = ACTIONS(1715), + [aux_sym_cmd_identifier_token8] = ACTIONS(1715), + [aux_sym_cmd_identifier_token9] = ACTIONS(1715), + [aux_sym_cmd_identifier_token10] = ACTIONS(1715), + [aux_sym_cmd_identifier_token11] = ACTIONS(1715), + [aux_sym_cmd_identifier_token12] = ACTIONS(1715), + [aux_sym_cmd_identifier_token13] = ACTIONS(1715), + [aux_sym_cmd_identifier_token14] = ACTIONS(1715), + [aux_sym_cmd_identifier_token15] = ACTIONS(1715), + [aux_sym_cmd_identifier_token16] = ACTIONS(1715), + [aux_sym_cmd_identifier_token17] = ACTIONS(1715), + [aux_sym_cmd_identifier_token18] = ACTIONS(1715), + [aux_sym_cmd_identifier_token19] = ACTIONS(1715), + [aux_sym_cmd_identifier_token20] = ACTIONS(1715), + [aux_sym_cmd_identifier_token21] = ACTIONS(1715), + [aux_sym_cmd_identifier_token22] = ACTIONS(1715), + [aux_sym_cmd_identifier_token23] = ACTIONS(1715), + [aux_sym_cmd_identifier_token24] = ACTIONS(1715), + [aux_sym_cmd_identifier_token25] = ACTIONS(1715), + [aux_sym_cmd_identifier_token26] = ACTIONS(1715), + [aux_sym_cmd_identifier_token27] = ACTIONS(1715), + [aux_sym_cmd_identifier_token28] = ACTIONS(1715), + [aux_sym_cmd_identifier_token29] = ACTIONS(1715), + [aux_sym_cmd_identifier_token30] = ACTIONS(1715), + [aux_sym_cmd_identifier_token31] = ACTIONS(1715), + [aux_sym_cmd_identifier_token32] = ACTIONS(1715), + [aux_sym_cmd_identifier_token33] = ACTIONS(1715), + [aux_sym_cmd_identifier_token34] = ACTIONS(1715), + [aux_sym_cmd_identifier_token35] = ACTIONS(1715), + [aux_sym_cmd_identifier_token36] = ACTIONS(1715), + [anon_sym_true] = ACTIONS(1717), + [anon_sym_false] = ACTIONS(1717), + [anon_sym_null] = ACTIONS(1717), + [aux_sym_cmd_identifier_token38] = ACTIONS(1715), + [aux_sym_cmd_identifier_token39] = ACTIONS(1717), + [aux_sym_cmd_identifier_token40] = ACTIONS(1717), + [anon_sym_def] = ACTIONS(1715), + [anon_sym_export_DASHenv] = ACTIONS(1715), + [anon_sym_extern] = ACTIONS(1715), + [anon_sym_module] = ACTIONS(1715), + [anon_sym_use] = ACTIONS(1715), + [anon_sym_LPAREN] = ACTIONS(1715), + [anon_sym_DOLLAR] = ACTIONS(1717), + [anon_sym_error] = ACTIONS(1715), + [anon_sym_list] = ACTIONS(1715), + [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_break] = ACTIONS(1715), + [anon_sym_continue] = ACTIONS(1715), + [anon_sym_for] = ACTIONS(1715), + [anon_sym_in] = ACTIONS(1715), + [anon_sym_loop] = ACTIONS(1715), + [anon_sym_make] = ACTIONS(1715), + [anon_sym_while] = ACTIONS(1715), + [anon_sym_do] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1715), + [anon_sym_else] = ACTIONS(1715), + [anon_sym_match] = ACTIONS(1715), + [anon_sym_RBRACE] = ACTIONS(1717), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_catch] = ACTIONS(1715), + [anon_sym_return] = ACTIONS(1715), + [anon_sym_source] = ACTIONS(1715), + [anon_sym_source_DASHenv] = ACTIONS(1715), + [anon_sym_register] = ACTIONS(1715), + [anon_sym_hide] = ACTIONS(1715), + [anon_sym_hide_DASHenv] = ACTIONS(1715), + [anon_sym_overlay] = ACTIONS(1715), + [anon_sym_new] = ACTIONS(1715), + [anon_sym_as] = ACTIONS(1715), + [anon_sym_LPAREN2] = ACTIONS(1717), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1717), + [aux_sym__immediate_decimal_token2] = ACTIONS(2216), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1717), + [aux_sym__val_number_decimal_token1] = ACTIONS(1715), + [aux_sym__val_number_decimal_token2] = ACTIONS(1717), + [aux_sym__val_number_decimal_token3] = ACTIONS(1717), + [aux_sym__val_number_decimal_token4] = ACTIONS(1717), + [aux_sym__val_number_token1] = ACTIONS(1717), + [aux_sym__val_number_token2] = ACTIONS(1717), + [aux_sym__val_number_token3] = ACTIONS(1717), + [anon_sym_DQUOTE] = ACTIONS(1717), + [sym__str_single_quotes] = ACTIONS(1717), + [sym__str_back_ticks] = ACTIONS(1717), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1717), + [anon_sym_PLUS] = ACTIONS(1715), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1715), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1717), + }, + [477] = { + [sym_comment] = STATE(477), + [anon_sym_export] = ACTIONS(2293), + [anon_sym_alias] = ACTIONS(2293), + [anon_sym_let] = ACTIONS(2293), + [anon_sym_let_DASHenv] = ACTIONS(2293), + [anon_sym_mut] = ACTIONS(2293), + [anon_sym_const] = ACTIONS(2293), + [aux_sym_cmd_identifier_token1] = ACTIONS(2293), + [aux_sym_cmd_identifier_token2] = ACTIONS(2293), + [aux_sym_cmd_identifier_token3] = ACTIONS(2293), + [aux_sym_cmd_identifier_token4] = ACTIONS(2293), + [aux_sym_cmd_identifier_token5] = ACTIONS(2293), + [aux_sym_cmd_identifier_token6] = ACTIONS(2293), + [aux_sym_cmd_identifier_token7] = ACTIONS(2293), + [aux_sym_cmd_identifier_token8] = ACTIONS(2293), + [aux_sym_cmd_identifier_token9] = ACTIONS(2293), + [aux_sym_cmd_identifier_token10] = ACTIONS(2293), + [aux_sym_cmd_identifier_token11] = ACTIONS(2293), + [aux_sym_cmd_identifier_token12] = ACTIONS(2293), + [aux_sym_cmd_identifier_token13] = ACTIONS(2293), + [aux_sym_cmd_identifier_token14] = ACTIONS(2293), + [aux_sym_cmd_identifier_token15] = ACTIONS(2293), + [aux_sym_cmd_identifier_token16] = ACTIONS(2293), + [aux_sym_cmd_identifier_token17] = ACTIONS(2293), + [aux_sym_cmd_identifier_token18] = ACTIONS(2293), + [aux_sym_cmd_identifier_token19] = ACTIONS(2293), + [aux_sym_cmd_identifier_token20] = ACTIONS(2293), + [aux_sym_cmd_identifier_token21] = ACTIONS(2293), + [aux_sym_cmd_identifier_token22] = ACTIONS(2293), + [aux_sym_cmd_identifier_token23] = ACTIONS(2293), + [aux_sym_cmd_identifier_token24] = ACTIONS(2293), + [aux_sym_cmd_identifier_token25] = ACTIONS(2293), + [aux_sym_cmd_identifier_token26] = ACTIONS(2293), + [aux_sym_cmd_identifier_token27] = ACTIONS(2293), + [aux_sym_cmd_identifier_token28] = ACTIONS(2293), + [aux_sym_cmd_identifier_token29] = ACTIONS(2293), + [aux_sym_cmd_identifier_token30] = ACTIONS(2293), + [aux_sym_cmd_identifier_token31] = ACTIONS(2293), + [aux_sym_cmd_identifier_token32] = ACTIONS(2293), + [aux_sym_cmd_identifier_token33] = ACTIONS(2293), + [aux_sym_cmd_identifier_token34] = ACTIONS(2293), + [aux_sym_cmd_identifier_token35] = ACTIONS(2293), + [aux_sym_cmd_identifier_token36] = ACTIONS(2293), + [anon_sym_true] = ACTIONS(2293), + [anon_sym_false] = ACTIONS(2293), + [anon_sym_null] = ACTIONS(2293), + [aux_sym_cmd_identifier_token38] = ACTIONS(2293), + [aux_sym_cmd_identifier_token39] = ACTIONS(2293), + [aux_sym_cmd_identifier_token40] = ACTIONS(2293), + [anon_sym_def] = ACTIONS(2293), + [anon_sym_export_DASHenv] = ACTIONS(2293), + [anon_sym_extern] = ACTIONS(2293), + [anon_sym_module] = ACTIONS(2293), + [anon_sym_use] = ACTIONS(2293), + [anon_sym_LPAREN] = ACTIONS(2293), + [anon_sym_DOLLAR] = ACTIONS(2293), + [anon_sym_error] = ACTIONS(2293), + [anon_sym_list] = ACTIONS(2293), + [anon_sym_DASH] = ACTIONS(2293), + [anon_sym_break] = ACTIONS(2293), + [anon_sym_continue] = ACTIONS(2293), + [anon_sym_for] = ACTIONS(2293), + [anon_sym_in] = ACTIONS(2293), + [anon_sym_loop] = ACTIONS(2293), + [anon_sym_make] = ACTIONS(2293), + [anon_sym_while] = ACTIONS(2293), + [anon_sym_do] = ACTIONS(2293), + [anon_sym_if] = ACTIONS(2293), + [anon_sym_else] = ACTIONS(2293), + [anon_sym_match] = ACTIONS(2293), + [anon_sym_RBRACE] = ACTIONS(2293), + [anon_sym_try] = ACTIONS(2293), + [anon_sym_catch] = ACTIONS(2293), + [anon_sym_return] = ACTIONS(2293), + [anon_sym_source] = ACTIONS(2293), + [anon_sym_source_DASHenv] = ACTIONS(2293), + [anon_sym_register] = ACTIONS(2293), + [anon_sym_hide] = ACTIONS(2293), + [anon_sym_hide_DASHenv] = ACTIONS(2293), + [anon_sym_overlay] = ACTIONS(2293), + [anon_sym_new] = ACTIONS(2293), + [anon_sym_as] = ACTIONS(2293), + [anon_sym_LPAREN2] = ACTIONS(2295), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2293), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2293), + [aux_sym__val_number_decimal_token1] = ACTIONS(2293), + [aux_sym__val_number_decimal_token2] = ACTIONS(2293), + [aux_sym__val_number_decimal_token3] = ACTIONS(2293), + [aux_sym__val_number_decimal_token4] = ACTIONS(2293), + [aux_sym__val_number_token1] = ACTIONS(2293), + [aux_sym__val_number_token2] = ACTIONS(2293), + [aux_sym__val_number_token3] = ACTIONS(2293), + [anon_sym_DQUOTE] = ACTIONS(2293), + [sym__str_single_quotes] = ACTIONS(2293), + [sym__str_back_ticks] = ACTIONS(2293), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2293), + [sym__entry_separator] = ACTIONS(2297), + [anon_sym_PLUS] = ACTIONS(2293), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2299), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2297), + }, + [478] = { + [sym_comment] = STATE(478), + [anon_sym_export] = ACTIONS(2200), + [anon_sym_alias] = ACTIONS(2200), + [anon_sym_let] = ACTIONS(2200), + [anon_sym_let_DASHenv] = ACTIONS(2200), + [anon_sym_mut] = ACTIONS(2200), + [anon_sym_const] = ACTIONS(2200), + [aux_sym_cmd_identifier_token1] = ACTIONS(2200), + [aux_sym_cmd_identifier_token2] = ACTIONS(2200), + [aux_sym_cmd_identifier_token3] = ACTIONS(2200), + [aux_sym_cmd_identifier_token4] = ACTIONS(2200), + [aux_sym_cmd_identifier_token5] = ACTIONS(2200), + [aux_sym_cmd_identifier_token6] = ACTIONS(2200), + [aux_sym_cmd_identifier_token7] = ACTIONS(2200), + [aux_sym_cmd_identifier_token8] = ACTIONS(2200), + [aux_sym_cmd_identifier_token9] = ACTIONS(2200), + [aux_sym_cmd_identifier_token10] = ACTIONS(2200), + [aux_sym_cmd_identifier_token11] = ACTIONS(2200), + [aux_sym_cmd_identifier_token12] = ACTIONS(2200), + [aux_sym_cmd_identifier_token13] = ACTIONS(2200), + [aux_sym_cmd_identifier_token14] = ACTIONS(2200), + [aux_sym_cmd_identifier_token15] = ACTIONS(2200), + [aux_sym_cmd_identifier_token16] = ACTIONS(2200), + [aux_sym_cmd_identifier_token17] = ACTIONS(2200), + [aux_sym_cmd_identifier_token18] = ACTIONS(2200), + [aux_sym_cmd_identifier_token19] = ACTIONS(2200), + [aux_sym_cmd_identifier_token20] = ACTIONS(2200), + [aux_sym_cmd_identifier_token21] = ACTIONS(2200), + [aux_sym_cmd_identifier_token22] = ACTIONS(2200), + [aux_sym_cmd_identifier_token23] = ACTIONS(2200), + [aux_sym_cmd_identifier_token24] = ACTIONS(2200), + [aux_sym_cmd_identifier_token25] = ACTIONS(2200), + [aux_sym_cmd_identifier_token26] = ACTIONS(2200), + [aux_sym_cmd_identifier_token27] = ACTIONS(2200), + [aux_sym_cmd_identifier_token28] = ACTIONS(2200), + [aux_sym_cmd_identifier_token29] = ACTIONS(2200), + [aux_sym_cmd_identifier_token30] = ACTIONS(2200), + [aux_sym_cmd_identifier_token31] = ACTIONS(2200), + [aux_sym_cmd_identifier_token32] = ACTIONS(2200), + [aux_sym_cmd_identifier_token33] = ACTIONS(2200), + [aux_sym_cmd_identifier_token34] = ACTIONS(2200), + [aux_sym_cmd_identifier_token35] = ACTIONS(2200), + [aux_sym_cmd_identifier_token36] = ACTIONS(2200), + [anon_sym_true] = ACTIONS(2202), + [anon_sym_false] = ACTIONS(2202), + [anon_sym_null] = ACTIONS(2202), + [aux_sym_cmd_identifier_token38] = ACTIONS(2200), + [aux_sym_cmd_identifier_token39] = ACTIONS(2202), + [aux_sym_cmd_identifier_token40] = ACTIONS(2202), + [anon_sym_def] = ACTIONS(2200), + [anon_sym_export_DASHenv] = ACTIONS(2200), + [anon_sym_extern] = ACTIONS(2200), + [anon_sym_module] = ACTIONS(2200), + [anon_sym_use] = ACTIONS(2200), + [anon_sym_LPAREN] = ACTIONS(2202), + [anon_sym_DOLLAR] = ACTIONS(2202), + [anon_sym_error] = ACTIONS(2200), + [anon_sym_list] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(2200), + [anon_sym_break] = ACTIONS(2200), + [anon_sym_continue] = ACTIONS(2200), + [anon_sym_for] = ACTIONS(2200), + [anon_sym_in] = ACTIONS(2200), + [anon_sym_loop] = ACTIONS(2200), + [anon_sym_make] = ACTIONS(2200), + [anon_sym_while] = ACTIONS(2200), + [anon_sym_do] = ACTIONS(2200), + [anon_sym_if] = ACTIONS(2200), + [anon_sym_else] = ACTIONS(2200), + [anon_sym_match] = ACTIONS(2200), + [anon_sym_RBRACE] = ACTIONS(2202), + [anon_sym_try] = ACTIONS(2200), + [anon_sym_catch] = ACTIONS(2200), + [anon_sym_return] = ACTIONS(2200), + [anon_sym_source] = ACTIONS(2200), + [anon_sym_source_DASHenv] = ACTIONS(2200), + [anon_sym_register] = ACTIONS(2200), + [anon_sym_hide] = ACTIONS(2200), + [anon_sym_hide_DASHenv] = ACTIONS(2200), + [anon_sym_overlay] = ACTIONS(2200), + [anon_sym_new] = ACTIONS(2200), + [anon_sym_as] = ACTIONS(2200), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2202), + [anon_sym_DOT_DOT2] = ACTIONS(2254), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2256), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2256), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2202), + [aux_sym__val_number_decimal_token1] = ACTIONS(2200), + [aux_sym__val_number_decimal_token2] = ACTIONS(2202), + [aux_sym__val_number_decimal_token3] = ACTIONS(2202), + [aux_sym__val_number_decimal_token4] = ACTIONS(2202), + [aux_sym__val_number_token1] = ACTIONS(2202), + [aux_sym__val_number_token2] = ACTIONS(2202), + [aux_sym__val_number_token3] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym__str_single_quotes] = ACTIONS(2202), + [sym__str_back_ticks] = ACTIONS(2202), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2202), + [anon_sym_PLUS] = ACTIONS(2200), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2202), + }, + [479] = { + [sym_comment] = STATE(479), + [anon_sym_export] = ACTIONS(1769), + [anon_sym_alias] = ACTIONS(1769), + [anon_sym_let] = ACTIONS(1769), + [anon_sym_let_DASHenv] = ACTIONS(1769), + [anon_sym_mut] = ACTIONS(1769), + [anon_sym_const] = ACTIONS(1769), + [aux_sym_cmd_identifier_token1] = ACTIONS(1769), + [aux_sym_cmd_identifier_token2] = ACTIONS(1769), + [aux_sym_cmd_identifier_token3] = ACTIONS(1769), + [aux_sym_cmd_identifier_token4] = ACTIONS(1769), + [aux_sym_cmd_identifier_token5] = ACTIONS(1769), + [aux_sym_cmd_identifier_token6] = ACTIONS(1769), + [aux_sym_cmd_identifier_token7] = ACTIONS(1769), + [aux_sym_cmd_identifier_token8] = ACTIONS(1769), + [aux_sym_cmd_identifier_token9] = ACTIONS(1769), + [aux_sym_cmd_identifier_token10] = ACTIONS(1769), + [aux_sym_cmd_identifier_token11] = ACTIONS(1769), + [aux_sym_cmd_identifier_token12] = ACTIONS(1769), + [aux_sym_cmd_identifier_token13] = ACTIONS(1769), + [aux_sym_cmd_identifier_token14] = ACTIONS(1769), + [aux_sym_cmd_identifier_token15] = ACTIONS(1769), + [aux_sym_cmd_identifier_token16] = ACTIONS(1769), + [aux_sym_cmd_identifier_token17] = ACTIONS(1769), + [aux_sym_cmd_identifier_token18] = ACTIONS(1769), + [aux_sym_cmd_identifier_token19] = ACTIONS(1769), + [aux_sym_cmd_identifier_token20] = ACTIONS(1769), + [aux_sym_cmd_identifier_token21] = ACTIONS(1769), + [aux_sym_cmd_identifier_token22] = ACTIONS(1769), + [aux_sym_cmd_identifier_token23] = ACTIONS(1769), + [aux_sym_cmd_identifier_token24] = ACTIONS(1769), + [aux_sym_cmd_identifier_token25] = ACTIONS(1769), + [aux_sym_cmd_identifier_token26] = ACTIONS(1769), + [aux_sym_cmd_identifier_token27] = ACTIONS(1769), + [aux_sym_cmd_identifier_token28] = ACTIONS(1769), + [aux_sym_cmd_identifier_token29] = ACTIONS(1769), + [aux_sym_cmd_identifier_token30] = ACTIONS(1769), + [aux_sym_cmd_identifier_token31] = ACTIONS(1769), + [aux_sym_cmd_identifier_token32] = ACTIONS(1769), + [aux_sym_cmd_identifier_token33] = ACTIONS(1769), + [aux_sym_cmd_identifier_token34] = ACTIONS(1769), + [aux_sym_cmd_identifier_token35] = ACTIONS(1769), + [aux_sym_cmd_identifier_token36] = ACTIONS(1769), + [anon_sym_true] = ACTIONS(1771), + [anon_sym_false] = ACTIONS(1771), + [anon_sym_null] = ACTIONS(1771), + [aux_sym_cmd_identifier_token38] = ACTIONS(1769), + [aux_sym_cmd_identifier_token39] = ACTIONS(1771), + [aux_sym_cmd_identifier_token40] = ACTIONS(1771), + [anon_sym_def] = ACTIONS(1769), + [anon_sym_export_DASHenv] = ACTIONS(1769), + [anon_sym_extern] = ACTIONS(1769), + [anon_sym_module] = ACTIONS(1769), + [anon_sym_use] = ACTIONS(1769), + [anon_sym_LPAREN] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_error] = ACTIONS(1769), + [anon_sym_list] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_break] = ACTIONS(1769), + [anon_sym_continue] = ACTIONS(1769), + [anon_sym_for] = ACTIONS(1769), + [anon_sym_in] = ACTIONS(1769), + [anon_sym_loop] = ACTIONS(1769), + [anon_sym_make] = ACTIONS(1769), + [anon_sym_while] = ACTIONS(1769), + [anon_sym_do] = ACTIONS(1769), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_else] = ACTIONS(1769), + [anon_sym_match] = ACTIONS(1769), + [anon_sym_RBRACE] = ACTIONS(1771), + [anon_sym_try] = ACTIONS(1769), + [anon_sym_catch] = ACTIONS(1769), + [anon_sym_return] = ACTIONS(1769), + [anon_sym_source] = ACTIONS(1769), + [anon_sym_source_DASHenv] = ACTIONS(1769), + [anon_sym_register] = ACTIONS(1769), + [anon_sym_hide] = ACTIONS(1769), + [anon_sym_hide_DASHenv] = ACTIONS(1769), + [anon_sym_overlay] = ACTIONS(1769), + [anon_sym_new] = ACTIONS(1769), + [anon_sym_as] = ACTIONS(1769), + [anon_sym_LPAREN2] = ACTIONS(1771), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1771), + [aux_sym__immediate_decimal_token2] = ACTIONS(2301), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1771), + [aux_sym__val_number_decimal_token1] = ACTIONS(1769), + [aux_sym__val_number_decimal_token2] = ACTIONS(1771), + [aux_sym__val_number_decimal_token3] = ACTIONS(1771), + [aux_sym__val_number_decimal_token4] = ACTIONS(1771), + [aux_sym__val_number_token1] = ACTIONS(1771), + [aux_sym__val_number_token2] = ACTIONS(1771), + [aux_sym__val_number_token3] = ACTIONS(1771), + [anon_sym_DQUOTE] = ACTIONS(1771), + [sym__str_single_quotes] = ACTIONS(1771), + [sym__str_back_ticks] = ACTIONS(1771), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1769), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1769), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1771), + }, + [480] = { + [sym_comment] = STATE(480), + [anon_sym_export] = ACTIONS(1715), + [anon_sym_alias] = ACTIONS(1715), + [anon_sym_let] = ACTIONS(1715), + [anon_sym_let_DASHenv] = ACTIONS(1715), + [anon_sym_mut] = ACTIONS(1715), + [anon_sym_const] = ACTIONS(1715), + [aux_sym_cmd_identifier_token1] = ACTIONS(1715), + [aux_sym_cmd_identifier_token2] = ACTIONS(1715), + [aux_sym_cmd_identifier_token3] = ACTIONS(1715), + [aux_sym_cmd_identifier_token4] = ACTIONS(1715), + [aux_sym_cmd_identifier_token5] = ACTIONS(1715), + [aux_sym_cmd_identifier_token6] = ACTIONS(1715), + [aux_sym_cmd_identifier_token7] = ACTIONS(1715), + [aux_sym_cmd_identifier_token8] = ACTIONS(1715), + [aux_sym_cmd_identifier_token9] = ACTIONS(1715), + [aux_sym_cmd_identifier_token10] = ACTIONS(1715), + [aux_sym_cmd_identifier_token11] = ACTIONS(1715), + [aux_sym_cmd_identifier_token12] = ACTIONS(1715), + [aux_sym_cmd_identifier_token13] = ACTIONS(1715), + [aux_sym_cmd_identifier_token14] = ACTIONS(1715), + [aux_sym_cmd_identifier_token15] = ACTIONS(1715), + [aux_sym_cmd_identifier_token16] = ACTIONS(1715), + [aux_sym_cmd_identifier_token17] = ACTIONS(1715), + [aux_sym_cmd_identifier_token18] = ACTIONS(1715), + [aux_sym_cmd_identifier_token19] = ACTIONS(1715), + [aux_sym_cmd_identifier_token20] = ACTIONS(1715), + [aux_sym_cmd_identifier_token21] = ACTIONS(1715), + [aux_sym_cmd_identifier_token22] = ACTIONS(1715), + [aux_sym_cmd_identifier_token23] = ACTIONS(1715), + [aux_sym_cmd_identifier_token24] = ACTIONS(1715), + [aux_sym_cmd_identifier_token25] = ACTIONS(1715), + [aux_sym_cmd_identifier_token26] = ACTIONS(1715), + [aux_sym_cmd_identifier_token27] = ACTIONS(1715), + [aux_sym_cmd_identifier_token28] = ACTIONS(1715), + [aux_sym_cmd_identifier_token29] = ACTIONS(1715), + [aux_sym_cmd_identifier_token30] = ACTIONS(1715), + [aux_sym_cmd_identifier_token31] = ACTIONS(1715), + [aux_sym_cmd_identifier_token32] = ACTIONS(1715), + [aux_sym_cmd_identifier_token33] = ACTIONS(1715), + [aux_sym_cmd_identifier_token34] = ACTIONS(1715), + [aux_sym_cmd_identifier_token35] = ACTIONS(1715), + [aux_sym_cmd_identifier_token36] = ACTIONS(1715), + [anon_sym_true] = ACTIONS(1717), + [anon_sym_false] = ACTIONS(1717), + [anon_sym_null] = ACTIONS(1717), + [aux_sym_cmd_identifier_token38] = ACTIONS(1715), + [aux_sym_cmd_identifier_token39] = ACTIONS(1717), + [aux_sym_cmd_identifier_token40] = ACTIONS(1717), + [anon_sym_def] = ACTIONS(1715), + [anon_sym_export_DASHenv] = ACTIONS(1715), + [anon_sym_extern] = ACTIONS(1715), + [anon_sym_module] = ACTIONS(1715), + [anon_sym_use] = ACTIONS(1715), + [anon_sym_LPAREN] = ACTIONS(1717), + [anon_sym_DOLLAR] = ACTIONS(1717), + [anon_sym_error] = ACTIONS(1715), + [anon_sym_list] = ACTIONS(1715), + [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_break] = ACTIONS(1715), + [anon_sym_continue] = ACTIONS(1715), + [anon_sym_for] = ACTIONS(1715), + [anon_sym_in] = ACTIONS(1715), + [anon_sym_loop] = ACTIONS(1715), + [anon_sym_make] = ACTIONS(1715), + [anon_sym_while] = ACTIONS(1715), + [anon_sym_do] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1715), + [anon_sym_else] = ACTIONS(1715), + [anon_sym_match] = ACTIONS(1715), + [anon_sym_RBRACE] = ACTIONS(1717), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_catch] = ACTIONS(1715), + [anon_sym_return] = ACTIONS(1715), + [anon_sym_source] = ACTIONS(1715), + [anon_sym_source_DASHenv] = ACTIONS(1715), + [anon_sym_register] = ACTIONS(1715), + [anon_sym_hide] = ACTIONS(1715), + [anon_sym_hide_DASHenv] = ACTIONS(1715), + [anon_sym_overlay] = ACTIONS(1715), + [anon_sym_new] = ACTIONS(1715), + [anon_sym_as] = ACTIONS(1715), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1717), + [anon_sym_DOT_DOT2] = ACTIONS(1715), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1717), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1717), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1717), + [aux_sym__val_number_decimal_token1] = ACTIONS(1715), + [aux_sym__val_number_decimal_token2] = ACTIONS(1717), + [aux_sym__val_number_decimal_token3] = ACTIONS(1717), + [aux_sym__val_number_decimal_token4] = ACTIONS(1717), + [aux_sym__val_number_token1] = ACTIONS(1717), + [aux_sym__val_number_token2] = ACTIONS(1717), + [aux_sym__val_number_token3] = ACTIONS(1717), + [anon_sym_DQUOTE] = ACTIONS(1717), + [sym__str_single_quotes] = ACTIONS(1717), + [sym__str_back_ticks] = ACTIONS(1717), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1717), + [anon_sym_PLUS] = ACTIONS(1715), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1717), + }, + [481] = { + [sym__expr_parenthesized_immediate] = STATE(7570), + [sym_comment] = STATE(481), + [anon_sym_export] = ACTIONS(2196), + [anon_sym_alias] = ACTIONS(2196), + [anon_sym_let] = ACTIONS(2196), + [anon_sym_let_DASHenv] = ACTIONS(2196), + [anon_sym_mut] = ACTIONS(2196), + [anon_sym_const] = ACTIONS(2196), + [aux_sym_cmd_identifier_token1] = ACTIONS(2196), + [aux_sym_cmd_identifier_token2] = ACTIONS(2196), + [aux_sym_cmd_identifier_token3] = ACTIONS(2196), + [aux_sym_cmd_identifier_token4] = ACTIONS(2196), + [aux_sym_cmd_identifier_token5] = ACTIONS(2196), + [aux_sym_cmd_identifier_token6] = ACTIONS(2196), + [aux_sym_cmd_identifier_token7] = ACTIONS(2196), + [aux_sym_cmd_identifier_token8] = ACTIONS(2196), + [aux_sym_cmd_identifier_token9] = ACTIONS(2196), + [aux_sym_cmd_identifier_token10] = ACTIONS(2196), + [aux_sym_cmd_identifier_token11] = ACTIONS(2196), + [aux_sym_cmd_identifier_token12] = ACTIONS(2196), + [aux_sym_cmd_identifier_token13] = ACTIONS(2196), + [aux_sym_cmd_identifier_token14] = ACTIONS(2196), + [aux_sym_cmd_identifier_token15] = ACTIONS(2196), + [aux_sym_cmd_identifier_token16] = ACTIONS(2196), + [aux_sym_cmd_identifier_token17] = ACTIONS(2196), + [aux_sym_cmd_identifier_token18] = ACTIONS(2196), + [aux_sym_cmd_identifier_token19] = ACTIONS(2196), + [aux_sym_cmd_identifier_token20] = ACTIONS(2196), + [aux_sym_cmd_identifier_token21] = ACTIONS(2196), + [aux_sym_cmd_identifier_token22] = ACTIONS(2196), + [aux_sym_cmd_identifier_token23] = ACTIONS(2196), + [aux_sym_cmd_identifier_token24] = ACTIONS(2196), + [aux_sym_cmd_identifier_token25] = ACTIONS(2196), + [aux_sym_cmd_identifier_token26] = ACTIONS(2196), + [aux_sym_cmd_identifier_token27] = ACTIONS(2196), + [aux_sym_cmd_identifier_token28] = ACTIONS(2196), + [aux_sym_cmd_identifier_token29] = ACTIONS(2196), + [aux_sym_cmd_identifier_token30] = ACTIONS(2196), + [aux_sym_cmd_identifier_token31] = ACTIONS(2196), + [aux_sym_cmd_identifier_token32] = ACTIONS(2196), + [aux_sym_cmd_identifier_token33] = ACTIONS(2196), + [aux_sym_cmd_identifier_token34] = ACTIONS(2196), + [aux_sym_cmd_identifier_token35] = ACTIONS(2196), + [aux_sym_cmd_identifier_token36] = ACTIONS(2196), + [anon_sym_true] = ACTIONS(2196), + [anon_sym_false] = ACTIONS(2196), + [anon_sym_null] = ACTIONS(2196), + [aux_sym_cmd_identifier_token38] = ACTIONS(2196), + [aux_sym_cmd_identifier_token39] = ACTIONS(2196), + [aux_sym_cmd_identifier_token40] = ACTIONS(2196), + [anon_sym_def] = ACTIONS(2196), + [anon_sym_export_DASHenv] = ACTIONS(2196), + [anon_sym_extern] = ACTIONS(2196), + [anon_sym_module] = ACTIONS(2196), + [anon_sym_use] = ACTIONS(2196), + [anon_sym_LPAREN] = ACTIONS(2196), + [anon_sym_DOLLAR] = ACTIONS(2196), + [anon_sym_error] = ACTIONS(2196), + [anon_sym_list] = ACTIONS(2196), + [anon_sym_DASH] = ACTIONS(2196), + [anon_sym_break] = ACTIONS(2196), + [anon_sym_continue] = ACTIONS(2196), + [anon_sym_for] = ACTIONS(2196), + [anon_sym_in] = ACTIONS(2196), + [anon_sym_loop] = ACTIONS(2196), + [anon_sym_make] = ACTIONS(2196), + [anon_sym_while] = ACTIONS(2196), + [anon_sym_do] = ACTIONS(2196), + [anon_sym_if] = ACTIONS(2196), + [anon_sym_else] = ACTIONS(2196), + [anon_sym_match] = ACTIONS(2196), + [anon_sym_RBRACE] = ACTIONS(2196), + [anon_sym_try] = ACTIONS(2196), + [anon_sym_catch] = ACTIONS(2196), + [anon_sym_return] = ACTIONS(2196), + [anon_sym_source] = ACTIONS(2196), + [anon_sym_source_DASHenv] = ACTIONS(2196), + [anon_sym_register] = ACTIONS(2196), + [anon_sym_hide] = ACTIONS(2196), + [anon_sym_hide_DASHenv] = ACTIONS(2196), + [anon_sym_overlay] = ACTIONS(2196), + [anon_sym_new] = ACTIONS(2196), + [anon_sym_as] = ACTIONS(2196), + [anon_sym_LPAREN2] = ACTIONS(1630), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2196), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2196), + [aux_sym__val_number_decimal_token1] = ACTIONS(2196), + [aux_sym__val_number_decimal_token2] = ACTIONS(2196), + [aux_sym__val_number_decimal_token3] = ACTIONS(2196), + [aux_sym__val_number_decimal_token4] = ACTIONS(2196), + [aux_sym__val_number_token1] = ACTIONS(2196), + [aux_sym__val_number_token2] = ACTIONS(2196), + [aux_sym__val_number_token3] = ACTIONS(2196), + [anon_sym_DQUOTE] = ACTIONS(2196), + [sym__str_single_quotes] = ACTIONS(2196), + [sym__str_back_ticks] = ACTIONS(2196), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2196), + [sym__entry_separator] = ACTIONS(2198), + [anon_sym_PLUS] = ACTIONS(2196), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2198), + }, + [482] = { + [sym_comment] = STATE(482), + [anon_sym_export] = ACTIONS(2303), + [anon_sym_alias] = ACTIONS(2303), + [anon_sym_let] = ACTIONS(2303), + [anon_sym_let_DASHenv] = ACTIONS(2303), + [anon_sym_mut] = ACTIONS(2303), + [anon_sym_const] = ACTIONS(2303), + [aux_sym_cmd_identifier_token1] = ACTIONS(2303), + [aux_sym_cmd_identifier_token2] = ACTIONS(2303), + [aux_sym_cmd_identifier_token3] = ACTIONS(2303), + [aux_sym_cmd_identifier_token4] = ACTIONS(2303), + [aux_sym_cmd_identifier_token5] = ACTIONS(2303), + [aux_sym_cmd_identifier_token6] = ACTIONS(2303), + [aux_sym_cmd_identifier_token7] = ACTIONS(2303), + [aux_sym_cmd_identifier_token8] = ACTIONS(2303), + [aux_sym_cmd_identifier_token9] = ACTIONS(2303), + [aux_sym_cmd_identifier_token10] = ACTIONS(2303), + [aux_sym_cmd_identifier_token11] = ACTIONS(2303), + [aux_sym_cmd_identifier_token12] = ACTIONS(2303), + [aux_sym_cmd_identifier_token13] = ACTIONS(2303), + [aux_sym_cmd_identifier_token14] = ACTIONS(2303), + [aux_sym_cmd_identifier_token15] = ACTIONS(2303), + [aux_sym_cmd_identifier_token16] = ACTIONS(2303), + [aux_sym_cmd_identifier_token17] = ACTIONS(2303), + [aux_sym_cmd_identifier_token18] = ACTIONS(2303), + [aux_sym_cmd_identifier_token19] = ACTIONS(2303), + [aux_sym_cmd_identifier_token20] = ACTIONS(2303), + [aux_sym_cmd_identifier_token21] = ACTIONS(2303), + [aux_sym_cmd_identifier_token22] = ACTIONS(2303), + [aux_sym_cmd_identifier_token23] = ACTIONS(2303), + [aux_sym_cmd_identifier_token24] = ACTIONS(2303), + [aux_sym_cmd_identifier_token25] = ACTIONS(2303), + [aux_sym_cmd_identifier_token26] = ACTIONS(2303), + [aux_sym_cmd_identifier_token27] = ACTIONS(2303), + [aux_sym_cmd_identifier_token28] = ACTIONS(2303), + [aux_sym_cmd_identifier_token29] = ACTIONS(2303), + [aux_sym_cmd_identifier_token30] = ACTIONS(2303), + [aux_sym_cmd_identifier_token31] = ACTIONS(2303), + [aux_sym_cmd_identifier_token32] = ACTIONS(2303), + [aux_sym_cmd_identifier_token33] = ACTIONS(2303), + [aux_sym_cmd_identifier_token34] = ACTIONS(2303), + [aux_sym_cmd_identifier_token35] = ACTIONS(2303), + [aux_sym_cmd_identifier_token36] = ACTIONS(2303), + [anon_sym_true] = ACTIONS(2303), + [anon_sym_false] = ACTIONS(2303), + [anon_sym_null] = ACTIONS(2303), + [aux_sym_cmd_identifier_token38] = ACTIONS(2303), + [aux_sym_cmd_identifier_token39] = ACTIONS(2303), + [aux_sym_cmd_identifier_token40] = ACTIONS(2303), + [anon_sym_def] = ACTIONS(2303), + [anon_sym_export_DASHenv] = ACTIONS(2303), + [anon_sym_extern] = ACTIONS(2303), + [anon_sym_module] = ACTIONS(2303), + [anon_sym_use] = ACTIONS(2303), + [anon_sym_LPAREN] = ACTIONS(2303), + [anon_sym_DOLLAR] = ACTIONS(2303), + [anon_sym_error] = ACTIONS(2303), + [anon_sym_list] = ACTIONS(2303), + [anon_sym_DASH] = ACTIONS(2303), + [anon_sym_break] = ACTIONS(2303), + [anon_sym_continue] = ACTIONS(2303), + [anon_sym_for] = ACTIONS(2303), + [anon_sym_in] = ACTIONS(2303), + [anon_sym_loop] = ACTIONS(2303), + [anon_sym_make] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(2303), + [anon_sym_do] = ACTIONS(2303), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_else] = ACTIONS(2303), + [anon_sym_match] = ACTIONS(2303), + [anon_sym_RBRACE] = ACTIONS(2303), + [anon_sym_try] = ACTIONS(2303), + [anon_sym_catch] = ACTIONS(2303), + [anon_sym_return] = ACTIONS(2303), + [anon_sym_source] = ACTIONS(2303), + [anon_sym_source_DASHenv] = ACTIONS(2303), + [anon_sym_register] = ACTIONS(2303), + [anon_sym_hide] = ACTIONS(2303), + [anon_sym_hide_DASHenv] = ACTIONS(2303), + [anon_sym_overlay] = ACTIONS(2303), + [anon_sym_new] = ACTIONS(2303), + [anon_sym_as] = ACTIONS(2303), + [anon_sym_LPAREN2] = ACTIONS(2295), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2303), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2303), + [aux_sym__val_number_decimal_token1] = ACTIONS(2303), + [aux_sym__val_number_decimal_token2] = ACTIONS(2303), + [aux_sym__val_number_decimal_token3] = ACTIONS(2303), + [aux_sym__val_number_decimal_token4] = ACTIONS(2303), + [aux_sym__val_number_token1] = ACTIONS(2303), + [aux_sym__val_number_token2] = ACTIONS(2303), + [aux_sym__val_number_token3] = ACTIONS(2303), + [anon_sym_DQUOTE] = ACTIONS(2303), + [sym__str_single_quotes] = ACTIONS(2303), + [sym__str_back_ticks] = ACTIONS(2303), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2303), + [sym__entry_separator] = ACTIONS(2305), + [anon_sym_PLUS] = ACTIONS(2303), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2299), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2305), + }, + [483] = { + [sym__expr_parenthesized_immediate] = STATE(7570), + [sym_comment] = STATE(483), + [anon_sym_export] = ACTIONS(2200), + [anon_sym_alias] = ACTIONS(2200), + [anon_sym_let] = ACTIONS(2200), + [anon_sym_let_DASHenv] = ACTIONS(2200), + [anon_sym_mut] = ACTIONS(2200), + [anon_sym_const] = ACTIONS(2200), + [aux_sym_cmd_identifier_token1] = ACTIONS(2200), + [aux_sym_cmd_identifier_token2] = ACTIONS(2200), + [aux_sym_cmd_identifier_token3] = ACTIONS(2200), + [aux_sym_cmd_identifier_token4] = ACTIONS(2200), + [aux_sym_cmd_identifier_token5] = ACTIONS(2200), + [aux_sym_cmd_identifier_token6] = ACTIONS(2200), + [aux_sym_cmd_identifier_token7] = ACTIONS(2200), + [aux_sym_cmd_identifier_token8] = ACTIONS(2200), + [aux_sym_cmd_identifier_token9] = ACTIONS(2200), + [aux_sym_cmd_identifier_token10] = ACTIONS(2200), + [aux_sym_cmd_identifier_token11] = ACTIONS(2200), + [aux_sym_cmd_identifier_token12] = ACTIONS(2200), + [aux_sym_cmd_identifier_token13] = ACTIONS(2200), + [aux_sym_cmd_identifier_token14] = ACTIONS(2200), + [aux_sym_cmd_identifier_token15] = ACTIONS(2200), + [aux_sym_cmd_identifier_token16] = ACTIONS(2200), + [aux_sym_cmd_identifier_token17] = ACTIONS(2200), + [aux_sym_cmd_identifier_token18] = ACTIONS(2200), + [aux_sym_cmd_identifier_token19] = ACTIONS(2200), + [aux_sym_cmd_identifier_token20] = ACTIONS(2200), + [aux_sym_cmd_identifier_token21] = ACTIONS(2200), + [aux_sym_cmd_identifier_token22] = ACTIONS(2200), + [aux_sym_cmd_identifier_token23] = ACTIONS(2200), + [aux_sym_cmd_identifier_token24] = ACTIONS(2200), + [aux_sym_cmd_identifier_token25] = ACTIONS(2200), + [aux_sym_cmd_identifier_token26] = ACTIONS(2200), + [aux_sym_cmd_identifier_token27] = ACTIONS(2200), + [aux_sym_cmd_identifier_token28] = ACTIONS(2200), + [aux_sym_cmd_identifier_token29] = ACTIONS(2200), + [aux_sym_cmd_identifier_token30] = ACTIONS(2200), + [aux_sym_cmd_identifier_token31] = ACTIONS(2200), + [aux_sym_cmd_identifier_token32] = ACTIONS(2200), + [aux_sym_cmd_identifier_token33] = ACTIONS(2200), + [aux_sym_cmd_identifier_token34] = ACTIONS(2200), + [aux_sym_cmd_identifier_token35] = ACTIONS(2200), + [aux_sym_cmd_identifier_token36] = ACTIONS(2200), + [anon_sym_true] = ACTIONS(2200), + [anon_sym_false] = ACTIONS(2200), + [anon_sym_null] = ACTIONS(2200), + [aux_sym_cmd_identifier_token38] = ACTIONS(2200), + [aux_sym_cmd_identifier_token39] = ACTIONS(2200), + [aux_sym_cmd_identifier_token40] = ACTIONS(2200), + [anon_sym_def] = ACTIONS(2200), + [anon_sym_export_DASHenv] = ACTIONS(2200), + [anon_sym_extern] = ACTIONS(2200), + [anon_sym_module] = ACTIONS(2200), + [anon_sym_use] = ACTIONS(2200), + [anon_sym_LPAREN] = ACTIONS(2200), + [anon_sym_DOLLAR] = ACTIONS(2200), + [anon_sym_error] = ACTIONS(2200), + [anon_sym_list] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(2200), + [anon_sym_break] = ACTIONS(2200), + [anon_sym_continue] = ACTIONS(2200), + [anon_sym_for] = ACTIONS(2200), + [anon_sym_in] = ACTIONS(2200), + [anon_sym_loop] = ACTIONS(2200), + [anon_sym_make] = ACTIONS(2200), + [anon_sym_while] = ACTIONS(2200), + [anon_sym_do] = ACTIONS(2200), + [anon_sym_if] = ACTIONS(2200), + [anon_sym_else] = ACTIONS(2200), + [anon_sym_match] = ACTIONS(2200), + [anon_sym_RBRACE] = ACTIONS(2200), + [anon_sym_try] = ACTIONS(2200), + [anon_sym_catch] = ACTIONS(2200), + [anon_sym_return] = ACTIONS(2200), + [anon_sym_source] = ACTIONS(2200), + [anon_sym_source_DASHenv] = ACTIONS(2200), + [anon_sym_register] = ACTIONS(2200), + [anon_sym_hide] = ACTIONS(2200), + [anon_sym_hide_DASHenv] = ACTIONS(2200), + [anon_sym_overlay] = ACTIONS(2200), + [anon_sym_new] = ACTIONS(2200), + [anon_sym_as] = ACTIONS(2200), + [anon_sym_LPAREN2] = ACTIONS(1630), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2200), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2200), + [aux_sym__val_number_decimal_token1] = ACTIONS(2200), + [aux_sym__val_number_decimal_token2] = ACTIONS(2200), + [aux_sym__val_number_decimal_token3] = ACTIONS(2200), + [aux_sym__val_number_decimal_token4] = ACTIONS(2200), + [aux_sym__val_number_token1] = ACTIONS(2200), + [aux_sym__val_number_token2] = ACTIONS(2200), + [aux_sym__val_number_token3] = ACTIONS(2200), + [anon_sym_DQUOTE] = ACTIONS(2200), + [sym__str_single_quotes] = ACTIONS(2200), + [sym__str_back_ticks] = ACTIONS(2200), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2200), + [sym__entry_separator] = ACTIONS(2202), + [anon_sym_PLUS] = ACTIONS(2200), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2202), + }, + [484] = { + [sym__expr_parenthesized_immediate] = STATE(7774), + [sym_comment] = STATE(484), + [anon_sym_export] = ACTIONS(2307), + [anon_sym_alias] = ACTIONS(2307), + [anon_sym_let] = ACTIONS(2307), + [anon_sym_let_DASHenv] = ACTIONS(2307), + [anon_sym_mut] = ACTIONS(2307), + [anon_sym_const] = ACTIONS(2307), + [aux_sym_cmd_identifier_token1] = ACTIONS(2307), + [aux_sym_cmd_identifier_token2] = ACTIONS(2307), + [aux_sym_cmd_identifier_token3] = ACTIONS(2307), + [aux_sym_cmd_identifier_token4] = ACTIONS(2307), + [aux_sym_cmd_identifier_token5] = ACTIONS(2307), + [aux_sym_cmd_identifier_token6] = ACTIONS(2307), + [aux_sym_cmd_identifier_token7] = ACTIONS(2307), + [aux_sym_cmd_identifier_token8] = ACTIONS(2307), + [aux_sym_cmd_identifier_token9] = ACTIONS(2307), + [aux_sym_cmd_identifier_token10] = ACTIONS(2307), + [aux_sym_cmd_identifier_token11] = ACTIONS(2307), + [aux_sym_cmd_identifier_token12] = ACTIONS(2307), + [aux_sym_cmd_identifier_token13] = ACTIONS(2307), + [aux_sym_cmd_identifier_token14] = ACTIONS(2307), + [aux_sym_cmd_identifier_token15] = ACTIONS(2307), + [aux_sym_cmd_identifier_token16] = ACTIONS(2307), + [aux_sym_cmd_identifier_token17] = ACTIONS(2307), + [aux_sym_cmd_identifier_token18] = ACTIONS(2307), + [aux_sym_cmd_identifier_token19] = ACTIONS(2307), + [aux_sym_cmd_identifier_token20] = ACTIONS(2307), + [aux_sym_cmd_identifier_token21] = ACTIONS(2307), + [aux_sym_cmd_identifier_token22] = ACTIONS(2307), + [aux_sym_cmd_identifier_token23] = ACTIONS(2307), + [aux_sym_cmd_identifier_token24] = ACTIONS(2307), + [aux_sym_cmd_identifier_token25] = ACTIONS(2307), + [aux_sym_cmd_identifier_token26] = ACTIONS(2307), + [aux_sym_cmd_identifier_token27] = ACTIONS(2307), + [aux_sym_cmd_identifier_token28] = ACTIONS(2307), + [aux_sym_cmd_identifier_token29] = ACTIONS(2307), + [aux_sym_cmd_identifier_token30] = ACTIONS(2307), + [aux_sym_cmd_identifier_token31] = ACTIONS(2307), + [aux_sym_cmd_identifier_token32] = ACTIONS(2307), + [aux_sym_cmd_identifier_token33] = ACTIONS(2307), + [aux_sym_cmd_identifier_token34] = ACTIONS(2307), + [aux_sym_cmd_identifier_token35] = ACTIONS(2307), + [aux_sym_cmd_identifier_token36] = ACTIONS(2307), + [anon_sym_true] = ACTIONS(2307), + [anon_sym_false] = ACTIONS(2307), + [anon_sym_null] = ACTIONS(2307), + [aux_sym_cmd_identifier_token38] = ACTIONS(2307), + [aux_sym_cmd_identifier_token39] = ACTIONS(2307), + [aux_sym_cmd_identifier_token40] = ACTIONS(2307), + [anon_sym_def] = ACTIONS(2307), + [anon_sym_export_DASHenv] = ACTIONS(2307), + [anon_sym_extern] = ACTIONS(2307), + [anon_sym_module] = ACTIONS(2307), + [anon_sym_use] = ACTIONS(2307), + [anon_sym_LPAREN] = ACTIONS(2307), + [anon_sym_DOLLAR] = ACTIONS(2307), + [anon_sym_error] = ACTIONS(2307), + [anon_sym_list] = ACTIONS(2307), + [anon_sym_DASH] = ACTIONS(2307), + [anon_sym_break] = ACTIONS(2307), + [anon_sym_continue] = ACTIONS(2307), + [anon_sym_for] = ACTIONS(2307), + [anon_sym_in] = ACTIONS(2307), + [anon_sym_loop] = ACTIONS(2307), + [anon_sym_make] = ACTIONS(2307), + [anon_sym_while] = ACTIONS(2307), + [anon_sym_do] = ACTIONS(2307), + [anon_sym_if] = ACTIONS(2307), + [anon_sym_else] = ACTIONS(2307), + [anon_sym_match] = ACTIONS(2307), + [anon_sym_RBRACE] = ACTIONS(2307), + [anon_sym_try] = ACTIONS(2307), + [anon_sym_catch] = ACTIONS(2307), + [anon_sym_return] = ACTIONS(2307), + [anon_sym_source] = ACTIONS(2307), + [anon_sym_source_DASHenv] = ACTIONS(2307), + [anon_sym_register] = ACTIONS(2307), + [anon_sym_hide] = ACTIONS(2307), + [anon_sym_hide_DASHenv] = ACTIONS(2307), + [anon_sym_overlay] = ACTIONS(2307), + [anon_sym_new] = ACTIONS(2307), + [anon_sym_as] = ACTIONS(2307), + [anon_sym_LPAREN2] = ACTIONS(1630), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2307), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2307), + [aux_sym__val_number_decimal_token1] = ACTIONS(2307), + [aux_sym__val_number_decimal_token2] = ACTIONS(2307), + [aux_sym__val_number_decimal_token3] = ACTIONS(2307), + [aux_sym__val_number_decimal_token4] = ACTIONS(2307), + [aux_sym__val_number_token1] = ACTIONS(2307), + [aux_sym__val_number_token2] = ACTIONS(2307), + [aux_sym__val_number_token3] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2307), + [sym__str_single_quotes] = ACTIONS(2307), + [sym__str_back_ticks] = ACTIONS(2307), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2307), + [sym__entry_separator] = ACTIONS(2309), + [anon_sym_PLUS] = ACTIONS(2307), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2309), + }, + [485] = { + [sym__expr_parenthesized_immediate] = STATE(7774), + [sym_comment] = STATE(485), + [anon_sym_export] = ACTIONS(2311), + [anon_sym_alias] = ACTIONS(2311), + [anon_sym_let] = ACTIONS(2311), + [anon_sym_let_DASHenv] = ACTIONS(2311), + [anon_sym_mut] = ACTIONS(2311), + [anon_sym_const] = ACTIONS(2311), + [aux_sym_cmd_identifier_token1] = ACTIONS(2311), + [aux_sym_cmd_identifier_token2] = ACTIONS(2311), + [aux_sym_cmd_identifier_token3] = ACTIONS(2311), + [aux_sym_cmd_identifier_token4] = ACTIONS(2311), + [aux_sym_cmd_identifier_token5] = ACTIONS(2311), + [aux_sym_cmd_identifier_token6] = ACTIONS(2311), + [aux_sym_cmd_identifier_token7] = ACTIONS(2311), + [aux_sym_cmd_identifier_token8] = ACTIONS(2311), + [aux_sym_cmd_identifier_token9] = ACTIONS(2311), + [aux_sym_cmd_identifier_token10] = ACTIONS(2311), + [aux_sym_cmd_identifier_token11] = ACTIONS(2311), + [aux_sym_cmd_identifier_token12] = ACTIONS(2311), + [aux_sym_cmd_identifier_token13] = ACTIONS(2311), + [aux_sym_cmd_identifier_token14] = ACTIONS(2311), + [aux_sym_cmd_identifier_token15] = ACTIONS(2311), + [aux_sym_cmd_identifier_token16] = ACTIONS(2311), + [aux_sym_cmd_identifier_token17] = ACTIONS(2311), + [aux_sym_cmd_identifier_token18] = ACTIONS(2311), + [aux_sym_cmd_identifier_token19] = ACTIONS(2311), + [aux_sym_cmd_identifier_token20] = ACTIONS(2311), + [aux_sym_cmd_identifier_token21] = ACTIONS(2311), + [aux_sym_cmd_identifier_token22] = ACTIONS(2311), + [aux_sym_cmd_identifier_token23] = ACTIONS(2311), + [aux_sym_cmd_identifier_token24] = ACTIONS(2311), + [aux_sym_cmd_identifier_token25] = ACTIONS(2311), + [aux_sym_cmd_identifier_token26] = ACTIONS(2311), + [aux_sym_cmd_identifier_token27] = ACTIONS(2311), + [aux_sym_cmd_identifier_token28] = ACTIONS(2311), + [aux_sym_cmd_identifier_token29] = ACTIONS(2311), + [aux_sym_cmd_identifier_token30] = ACTIONS(2311), + [aux_sym_cmd_identifier_token31] = ACTIONS(2311), + [aux_sym_cmd_identifier_token32] = ACTIONS(2311), + [aux_sym_cmd_identifier_token33] = ACTIONS(2311), + [aux_sym_cmd_identifier_token34] = ACTIONS(2311), + [aux_sym_cmd_identifier_token35] = ACTIONS(2311), + [aux_sym_cmd_identifier_token36] = ACTIONS(2311), + [anon_sym_true] = ACTIONS(2311), + [anon_sym_false] = ACTIONS(2311), + [anon_sym_null] = ACTIONS(2311), + [aux_sym_cmd_identifier_token38] = ACTIONS(2311), + [aux_sym_cmd_identifier_token39] = ACTIONS(2311), + [aux_sym_cmd_identifier_token40] = ACTIONS(2311), + [anon_sym_def] = ACTIONS(2311), + [anon_sym_export_DASHenv] = ACTIONS(2311), + [anon_sym_extern] = ACTIONS(2311), + [anon_sym_module] = ACTIONS(2311), + [anon_sym_use] = ACTIONS(2311), + [anon_sym_LPAREN] = ACTIONS(2311), + [anon_sym_DOLLAR] = ACTIONS(2311), + [anon_sym_error] = ACTIONS(2311), + [anon_sym_list] = ACTIONS(2311), + [anon_sym_DASH] = ACTIONS(2311), + [anon_sym_break] = ACTIONS(2311), + [anon_sym_continue] = ACTIONS(2311), + [anon_sym_for] = ACTIONS(2311), + [anon_sym_in] = ACTIONS(2311), + [anon_sym_loop] = ACTIONS(2311), + [anon_sym_make] = ACTIONS(2311), + [anon_sym_while] = ACTIONS(2311), + [anon_sym_do] = ACTIONS(2311), + [anon_sym_if] = ACTIONS(2311), + [anon_sym_else] = ACTIONS(2311), + [anon_sym_match] = ACTIONS(2311), + [anon_sym_RBRACE] = ACTIONS(2311), + [anon_sym_try] = ACTIONS(2311), + [anon_sym_catch] = ACTIONS(2311), + [anon_sym_return] = ACTIONS(2311), + [anon_sym_source] = ACTIONS(2311), + [anon_sym_source_DASHenv] = ACTIONS(2311), + [anon_sym_register] = ACTIONS(2311), + [anon_sym_hide] = ACTIONS(2311), + [anon_sym_hide_DASHenv] = ACTIONS(2311), + [anon_sym_overlay] = ACTIONS(2311), + [anon_sym_new] = ACTIONS(2311), + [anon_sym_as] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(1630), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2311), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2311), + [aux_sym__val_number_decimal_token1] = ACTIONS(2311), + [aux_sym__val_number_decimal_token2] = ACTIONS(2311), + [aux_sym__val_number_decimal_token3] = ACTIONS(2311), + [aux_sym__val_number_decimal_token4] = ACTIONS(2311), + [aux_sym__val_number_token1] = ACTIONS(2311), + [aux_sym__val_number_token2] = ACTIONS(2311), + [aux_sym__val_number_token3] = ACTIONS(2311), + [anon_sym_DQUOTE] = ACTIONS(2311), + [sym__str_single_quotes] = ACTIONS(2311), + [sym__str_back_ticks] = ACTIONS(2311), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2311), + [sym__entry_separator] = ACTIONS(2313), + [anon_sym_PLUS] = ACTIONS(2311), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2313), + }, + [486] = { + [sym__expr_parenthesized_immediate] = STATE(7774), + [sym_comment] = STATE(486), + [anon_sym_export] = ACTIONS(2315), + [anon_sym_alias] = ACTIONS(2315), + [anon_sym_let] = ACTIONS(2315), + [anon_sym_let_DASHenv] = ACTIONS(2315), + [anon_sym_mut] = ACTIONS(2315), + [anon_sym_const] = ACTIONS(2315), + [aux_sym_cmd_identifier_token1] = ACTIONS(2315), + [aux_sym_cmd_identifier_token2] = ACTIONS(2315), + [aux_sym_cmd_identifier_token3] = ACTIONS(2315), + [aux_sym_cmd_identifier_token4] = ACTIONS(2315), + [aux_sym_cmd_identifier_token5] = ACTIONS(2315), + [aux_sym_cmd_identifier_token6] = ACTIONS(2315), + [aux_sym_cmd_identifier_token7] = ACTIONS(2315), + [aux_sym_cmd_identifier_token8] = ACTIONS(2315), + [aux_sym_cmd_identifier_token9] = ACTIONS(2315), + [aux_sym_cmd_identifier_token10] = ACTIONS(2315), + [aux_sym_cmd_identifier_token11] = ACTIONS(2315), + [aux_sym_cmd_identifier_token12] = ACTIONS(2315), + [aux_sym_cmd_identifier_token13] = ACTIONS(2315), + [aux_sym_cmd_identifier_token14] = ACTIONS(2315), + [aux_sym_cmd_identifier_token15] = ACTIONS(2315), + [aux_sym_cmd_identifier_token16] = ACTIONS(2315), + [aux_sym_cmd_identifier_token17] = ACTIONS(2315), + [aux_sym_cmd_identifier_token18] = ACTIONS(2315), + [aux_sym_cmd_identifier_token19] = ACTIONS(2315), + [aux_sym_cmd_identifier_token20] = ACTIONS(2315), + [aux_sym_cmd_identifier_token21] = ACTIONS(2315), + [aux_sym_cmd_identifier_token22] = ACTIONS(2315), + [aux_sym_cmd_identifier_token23] = ACTIONS(2315), + [aux_sym_cmd_identifier_token24] = ACTIONS(2315), + [aux_sym_cmd_identifier_token25] = ACTIONS(2315), + [aux_sym_cmd_identifier_token26] = ACTIONS(2315), + [aux_sym_cmd_identifier_token27] = ACTIONS(2315), + [aux_sym_cmd_identifier_token28] = ACTIONS(2315), + [aux_sym_cmd_identifier_token29] = ACTIONS(2315), + [aux_sym_cmd_identifier_token30] = ACTIONS(2315), + [aux_sym_cmd_identifier_token31] = ACTIONS(2315), + [aux_sym_cmd_identifier_token32] = ACTIONS(2315), + [aux_sym_cmd_identifier_token33] = ACTIONS(2315), + [aux_sym_cmd_identifier_token34] = ACTIONS(2315), + [aux_sym_cmd_identifier_token35] = ACTIONS(2315), + [aux_sym_cmd_identifier_token36] = ACTIONS(2315), + [anon_sym_true] = ACTIONS(2315), + [anon_sym_false] = ACTIONS(2315), + [anon_sym_null] = ACTIONS(2315), + [aux_sym_cmd_identifier_token38] = ACTIONS(2315), + [aux_sym_cmd_identifier_token39] = ACTIONS(2315), + [aux_sym_cmd_identifier_token40] = ACTIONS(2315), + [anon_sym_def] = ACTIONS(2315), + [anon_sym_export_DASHenv] = ACTIONS(2315), + [anon_sym_extern] = ACTIONS(2315), + [anon_sym_module] = ACTIONS(2315), + [anon_sym_use] = ACTIONS(2315), + [anon_sym_LPAREN] = ACTIONS(2315), + [anon_sym_DOLLAR] = ACTIONS(2315), + [anon_sym_error] = ACTIONS(2315), + [anon_sym_list] = ACTIONS(2315), + [anon_sym_DASH] = ACTIONS(2315), + [anon_sym_break] = ACTIONS(2315), + [anon_sym_continue] = ACTIONS(2315), + [anon_sym_for] = ACTIONS(2315), + [anon_sym_in] = ACTIONS(2315), + [anon_sym_loop] = ACTIONS(2315), + [anon_sym_make] = ACTIONS(2315), + [anon_sym_while] = ACTIONS(2315), + [anon_sym_do] = ACTIONS(2315), + [anon_sym_if] = ACTIONS(2315), + [anon_sym_else] = ACTIONS(2315), + [anon_sym_match] = ACTIONS(2315), + [anon_sym_RBRACE] = ACTIONS(2315), + [anon_sym_try] = ACTIONS(2315), + [anon_sym_catch] = ACTIONS(2315), + [anon_sym_return] = ACTIONS(2315), + [anon_sym_source] = ACTIONS(2315), + [anon_sym_source_DASHenv] = ACTIONS(2315), + [anon_sym_register] = ACTIONS(2315), + [anon_sym_hide] = ACTIONS(2315), + [anon_sym_hide_DASHenv] = ACTIONS(2315), + [anon_sym_overlay] = ACTIONS(2315), + [anon_sym_new] = ACTIONS(2315), + [anon_sym_as] = ACTIONS(2315), + [anon_sym_LPAREN2] = ACTIONS(1630), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2315), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2315), + [aux_sym__val_number_decimal_token1] = ACTIONS(2315), + [aux_sym__val_number_decimal_token2] = ACTIONS(2315), + [aux_sym__val_number_decimal_token3] = ACTIONS(2315), + [aux_sym__val_number_decimal_token4] = ACTIONS(2315), + [aux_sym__val_number_token1] = ACTIONS(2315), + [aux_sym__val_number_token2] = ACTIONS(2315), + [aux_sym__val_number_token3] = ACTIONS(2315), + [anon_sym_DQUOTE] = ACTIONS(2315), + [sym__str_single_quotes] = ACTIONS(2315), + [sym__str_back_ticks] = ACTIONS(2315), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2315), + [sym__entry_separator] = ACTIONS(2317), + [anon_sym_PLUS] = ACTIONS(2315), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2317), + }, + [487] = { + [sym_comment] = STATE(487), + [anon_sym_export] = ACTIONS(1703), + [anon_sym_alias] = ACTIONS(1703), + [anon_sym_let] = ACTIONS(1703), + [anon_sym_let_DASHenv] = ACTIONS(1703), + [anon_sym_mut] = ACTIONS(1703), + [anon_sym_const] = ACTIONS(1703), + [aux_sym_cmd_identifier_token1] = ACTIONS(1703), + [aux_sym_cmd_identifier_token2] = ACTIONS(1703), + [aux_sym_cmd_identifier_token3] = ACTIONS(1703), + [aux_sym_cmd_identifier_token4] = ACTIONS(1703), + [aux_sym_cmd_identifier_token5] = ACTIONS(1703), + [aux_sym_cmd_identifier_token6] = ACTIONS(1703), + [aux_sym_cmd_identifier_token7] = ACTIONS(1703), + [aux_sym_cmd_identifier_token8] = ACTIONS(1703), + [aux_sym_cmd_identifier_token9] = ACTIONS(1703), + [aux_sym_cmd_identifier_token10] = ACTIONS(1703), + [aux_sym_cmd_identifier_token11] = ACTIONS(1703), + [aux_sym_cmd_identifier_token12] = ACTIONS(1703), + [aux_sym_cmd_identifier_token13] = ACTIONS(1703), + [aux_sym_cmd_identifier_token14] = ACTIONS(1703), + [aux_sym_cmd_identifier_token15] = ACTIONS(1703), + [aux_sym_cmd_identifier_token16] = ACTIONS(1703), + [aux_sym_cmd_identifier_token17] = ACTIONS(1703), + [aux_sym_cmd_identifier_token18] = ACTIONS(1703), + [aux_sym_cmd_identifier_token19] = ACTIONS(1703), + [aux_sym_cmd_identifier_token20] = ACTIONS(1703), + [aux_sym_cmd_identifier_token21] = ACTIONS(1703), + [aux_sym_cmd_identifier_token22] = ACTIONS(1703), + [aux_sym_cmd_identifier_token23] = ACTIONS(1703), + [aux_sym_cmd_identifier_token24] = ACTIONS(1703), + [aux_sym_cmd_identifier_token25] = ACTIONS(1703), + [aux_sym_cmd_identifier_token26] = ACTIONS(1703), + [aux_sym_cmd_identifier_token27] = ACTIONS(1703), + [aux_sym_cmd_identifier_token28] = ACTIONS(1703), + [aux_sym_cmd_identifier_token29] = ACTIONS(1703), + [aux_sym_cmd_identifier_token30] = ACTIONS(1703), + [aux_sym_cmd_identifier_token31] = ACTIONS(1703), + [aux_sym_cmd_identifier_token32] = ACTIONS(1703), + [aux_sym_cmd_identifier_token33] = ACTIONS(1703), + [aux_sym_cmd_identifier_token34] = ACTIONS(1703), + [aux_sym_cmd_identifier_token35] = ACTIONS(1703), + [aux_sym_cmd_identifier_token36] = ACTIONS(1703), + [anon_sym_true] = ACTIONS(1705), + [anon_sym_false] = ACTIONS(1705), + [anon_sym_null] = ACTIONS(1705), + [aux_sym_cmd_identifier_token38] = ACTIONS(1703), + [aux_sym_cmd_identifier_token39] = ACTIONS(1705), + [aux_sym_cmd_identifier_token40] = ACTIONS(1705), + [anon_sym_def] = ACTIONS(1703), + [anon_sym_export_DASHenv] = ACTIONS(1703), + [anon_sym_extern] = ACTIONS(1703), + [anon_sym_module] = ACTIONS(1703), + [anon_sym_use] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1705), + [anon_sym_error] = ACTIONS(1703), + [anon_sym_list] = ACTIONS(1703), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_break] = ACTIONS(1703), + [anon_sym_continue] = ACTIONS(1703), + [anon_sym_for] = ACTIONS(1703), + [anon_sym_in] = ACTIONS(1703), + [anon_sym_loop] = ACTIONS(1703), + [anon_sym_make] = ACTIONS(1703), + [anon_sym_while] = ACTIONS(1703), + [anon_sym_do] = ACTIONS(1703), + [anon_sym_if] = ACTIONS(1703), + [anon_sym_else] = ACTIONS(1703), + [anon_sym_match] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1703), + [anon_sym_catch] = ACTIONS(1703), + [anon_sym_return] = ACTIONS(1703), + [anon_sym_source] = ACTIONS(1703), + [anon_sym_source_DASHenv] = ACTIONS(1703), + [anon_sym_register] = ACTIONS(1703), + [anon_sym_hide] = ACTIONS(1703), + [anon_sym_hide_DASHenv] = ACTIONS(1703), + [anon_sym_overlay] = ACTIONS(1703), + [anon_sym_new] = ACTIONS(1703), + [anon_sym_as] = ACTIONS(1703), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1705), + [anon_sym_DOT_DOT2] = ACTIONS(1703), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1705), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1705), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1705), + [aux_sym__val_number_decimal_token1] = ACTIONS(1703), + [aux_sym__val_number_decimal_token2] = ACTIONS(1705), + [aux_sym__val_number_decimal_token3] = ACTIONS(1705), + [aux_sym__val_number_decimal_token4] = ACTIONS(1705), + [aux_sym__val_number_token1] = ACTIONS(1705), + [aux_sym__val_number_token2] = ACTIONS(1705), + [aux_sym__val_number_token3] = ACTIONS(1705), + [anon_sym_DQUOTE] = ACTIONS(1705), + [sym__str_single_quotes] = ACTIONS(1705), + [sym__str_back_ticks] = ACTIONS(1705), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1705), + [anon_sym_PLUS] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1705), + }, + [488] = { + [sym_comment] = STATE(488), + [anon_sym_export] = ACTIONS(1769), + [anon_sym_alias] = ACTIONS(1769), + [anon_sym_let] = ACTIONS(1769), + [anon_sym_let_DASHenv] = ACTIONS(1769), + [anon_sym_mut] = ACTIONS(1769), + [anon_sym_const] = ACTIONS(1769), + [aux_sym_cmd_identifier_token1] = ACTIONS(1769), + [aux_sym_cmd_identifier_token2] = ACTIONS(1769), + [aux_sym_cmd_identifier_token3] = ACTIONS(1769), + [aux_sym_cmd_identifier_token4] = ACTIONS(1769), + [aux_sym_cmd_identifier_token5] = ACTIONS(1769), + [aux_sym_cmd_identifier_token6] = ACTIONS(1769), + [aux_sym_cmd_identifier_token7] = ACTIONS(1769), + [aux_sym_cmd_identifier_token8] = ACTIONS(1769), + [aux_sym_cmd_identifier_token9] = ACTIONS(1769), + [aux_sym_cmd_identifier_token10] = ACTIONS(1769), + [aux_sym_cmd_identifier_token11] = ACTIONS(1769), + [aux_sym_cmd_identifier_token12] = ACTIONS(1769), + [aux_sym_cmd_identifier_token13] = ACTIONS(1769), + [aux_sym_cmd_identifier_token14] = ACTIONS(1769), + [aux_sym_cmd_identifier_token15] = ACTIONS(1769), + [aux_sym_cmd_identifier_token16] = ACTIONS(1769), + [aux_sym_cmd_identifier_token17] = ACTIONS(1769), + [aux_sym_cmd_identifier_token18] = ACTIONS(1769), + [aux_sym_cmd_identifier_token19] = ACTIONS(1769), + [aux_sym_cmd_identifier_token20] = ACTIONS(1769), + [aux_sym_cmd_identifier_token21] = ACTIONS(1769), + [aux_sym_cmd_identifier_token22] = ACTIONS(1769), + [aux_sym_cmd_identifier_token23] = ACTIONS(1769), + [aux_sym_cmd_identifier_token24] = ACTIONS(1769), + [aux_sym_cmd_identifier_token25] = ACTIONS(1769), + [aux_sym_cmd_identifier_token26] = ACTIONS(1769), + [aux_sym_cmd_identifier_token27] = ACTIONS(1769), + [aux_sym_cmd_identifier_token28] = ACTIONS(1769), + [aux_sym_cmd_identifier_token29] = ACTIONS(1769), + [aux_sym_cmd_identifier_token30] = ACTIONS(1769), + [aux_sym_cmd_identifier_token31] = ACTIONS(1769), + [aux_sym_cmd_identifier_token32] = ACTIONS(1769), + [aux_sym_cmd_identifier_token33] = ACTIONS(1769), + [aux_sym_cmd_identifier_token34] = ACTIONS(1769), + [aux_sym_cmd_identifier_token35] = ACTIONS(1769), + [aux_sym_cmd_identifier_token36] = ACTIONS(1769), + [anon_sym_true] = ACTIONS(1771), + [anon_sym_false] = ACTIONS(1771), + [anon_sym_null] = ACTIONS(1771), + [aux_sym_cmd_identifier_token38] = ACTIONS(1769), + [aux_sym_cmd_identifier_token39] = ACTIONS(1771), + [aux_sym_cmd_identifier_token40] = ACTIONS(1771), + [anon_sym_def] = ACTIONS(1769), + [anon_sym_export_DASHenv] = ACTIONS(1769), + [anon_sym_extern] = ACTIONS(1769), + [anon_sym_module] = ACTIONS(1769), + [anon_sym_use] = ACTIONS(1769), + [anon_sym_LPAREN] = ACTIONS(1771), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_error] = ACTIONS(1769), + [anon_sym_list] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_break] = ACTIONS(1769), + [anon_sym_continue] = ACTIONS(1769), + [anon_sym_for] = ACTIONS(1769), + [anon_sym_in] = ACTIONS(1769), + [anon_sym_loop] = ACTIONS(1769), + [anon_sym_make] = ACTIONS(1769), + [anon_sym_while] = ACTIONS(1769), + [anon_sym_do] = ACTIONS(1769), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_else] = ACTIONS(1769), + [anon_sym_match] = ACTIONS(1769), + [anon_sym_RBRACE] = ACTIONS(1771), + [anon_sym_try] = ACTIONS(1769), + [anon_sym_catch] = ACTIONS(1769), + [anon_sym_return] = ACTIONS(1769), + [anon_sym_source] = ACTIONS(1769), + [anon_sym_source_DASHenv] = ACTIONS(1769), + [anon_sym_register] = ACTIONS(1769), + [anon_sym_hide] = ACTIONS(1769), + [anon_sym_hide_DASHenv] = ACTIONS(1769), + [anon_sym_overlay] = ACTIONS(1769), + [anon_sym_new] = ACTIONS(1769), + [anon_sym_as] = ACTIONS(1769), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1771), + [anon_sym_DOT_DOT2] = ACTIONS(1769), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1771), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1771), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1771), + [aux_sym__val_number_decimal_token1] = ACTIONS(1769), + [aux_sym__val_number_decimal_token2] = ACTIONS(1771), + [aux_sym__val_number_decimal_token3] = ACTIONS(1771), + [aux_sym__val_number_decimal_token4] = ACTIONS(1771), + [aux_sym__val_number_token1] = ACTIONS(1771), + [aux_sym__val_number_token2] = ACTIONS(1771), + [aux_sym__val_number_token3] = ACTIONS(1771), + [anon_sym_DQUOTE] = ACTIONS(1771), + [sym__str_single_quotes] = ACTIONS(1771), + [sym__str_back_ticks] = ACTIONS(1771), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1769), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1771), + }, + [489] = { + [sym_comment] = STATE(489), + [anon_sym_export] = ACTIONS(1826), + [anon_sym_alias] = ACTIONS(1826), + [anon_sym_let] = ACTIONS(1826), + [anon_sym_let_DASHenv] = ACTIONS(1826), + [anon_sym_mut] = ACTIONS(1826), + [anon_sym_const] = ACTIONS(1826), + [aux_sym_cmd_identifier_token1] = ACTIONS(1826), + [aux_sym_cmd_identifier_token2] = ACTIONS(1826), + [aux_sym_cmd_identifier_token3] = ACTIONS(1826), + [aux_sym_cmd_identifier_token4] = ACTIONS(1826), + [aux_sym_cmd_identifier_token5] = ACTIONS(1826), + [aux_sym_cmd_identifier_token6] = ACTIONS(1826), + [aux_sym_cmd_identifier_token7] = ACTIONS(1826), + [aux_sym_cmd_identifier_token8] = ACTIONS(1826), + [aux_sym_cmd_identifier_token9] = ACTIONS(1826), + [aux_sym_cmd_identifier_token10] = ACTIONS(1826), + [aux_sym_cmd_identifier_token11] = ACTIONS(1826), + [aux_sym_cmd_identifier_token12] = ACTIONS(1826), + [aux_sym_cmd_identifier_token13] = ACTIONS(1826), + [aux_sym_cmd_identifier_token14] = ACTIONS(1826), + [aux_sym_cmd_identifier_token15] = ACTIONS(1826), + [aux_sym_cmd_identifier_token16] = ACTIONS(1826), + [aux_sym_cmd_identifier_token17] = ACTIONS(1826), + [aux_sym_cmd_identifier_token18] = ACTIONS(1826), + [aux_sym_cmd_identifier_token19] = ACTIONS(1826), + [aux_sym_cmd_identifier_token20] = ACTIONS(1826), + [aux_sym_cmd_identifier_token21] = ACTIONS(1826), + [aux_sym_cmd_identifier_token22] = ACTIONS(1826), + [aux_sym_cmd_identifier_token23] = ACTIONS(1826), + [aux_sym_cmd_identifier_token24] = ACTIONS(1826), + [aux_sym_cmd_identifier_token25] = ACTIONS(1826), + [aux_sym_cmd_identifier_token26] = ACTIONS(1826), + [aux_sym_cmd_identifier_token27] = ACTIONS(1826), + [aux_sym_cmd_identifier_token28] = ACTIONS(1826), + [aux_sym_cmd_identifier_token29] = ACTIONS(1826), + [aux_sym_cmd_identifier_token30] = ACTIONS(1826), + [aux_sym_cmd_identifier_token31] = ACTIONS(1826), + [aux_sym_cmd_identifier_token32] = ACTIONS(1826), + [aux_sym_cmd_identifier_token33] = ACTIONS(1826), + [aux_sym_cmd_identifier_token34] = ACTIONS(1826), + [aux_sym_cmd_identifier_token35] = ACTIONS(1826), + [aux_sym_cmd_identifier_token36] = ACTIONS(1826), + [anon_sym_true] = ACTIONS(1828), + [anon_sym_false] = ACTIONS(1828), + [anon_sym_null] = ACTIONS(1828), + [aux_sym_cmd_identifier_token38] = ACTIONS(1826), + [aux_sym_cmd_identifier_token39] = ACTIONS(1828), + [aux_sym_cmd_identifier_token40] = ACTIONS(1828), + [anon_sym_def] = ACTIONS(1826), + [anon_sym_export_DASHenv] = ACTIONS(1826), + [anon_sym_extern] = ACTIONS(1826), + [anon_sym_module] = ACTIONS(1826), + [anon_sym_use] = ACTIONS(1826), + [anon_sym_LPAREN] = ACTIONS(1828), + [anon_sym_DOLLAR] = ACTIONS(1828), + [anon_sym_error] = ACTIONS(1826), + [anon_sym_list] = ACTIONS(1826), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_break] = ACTIONS(1826), + [anon_sym_continue] = ACTIONS(1826), + [anon_sym_for] = ACTIONS(1826), + [anon_sym_in] = ACTIONS(1826), + [anon_sym_loop] = ACTIONS(1826), + [anon_sym_make] = ACTIONS(1826), + [anon_sym_while] = ACTIONS(1826), + [anon_sym_do] = ACTIONS(1826), + [anon_sym_if] = ACTIONS(1826), + [anon_sym_else] = ACTIONS(1826), + [anon_sym_match] = ACTIONS(1826), + [anon_sym_RBRACE] = ACTIONS(1828), + [anon_sym_try] = ACTIONS(1826), + [anon_sym_catch] = ACTIONS(1826), + [anon_sym_return] = ACTIONS(1826), + [anon_sym_source] = ACTIONS(1826), + [anon_sym_source_DASHenv] = ACTIONS(1826), + [anon_sym_register] = ACTIONS(1826), + [anon_sym_hide] = ACTIONS(1826), + [anon_sym_hide_DASHenv] = ACTIONS(1826), + [anon_sym_overlay] = ACTIONS(1826), + [anon_sym_new] = ACTIONS(1826), + [anon_sym_as] = ACTIONS(1826), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1828), + [anon_sym_DOT_DOT2] = ACTIONS(1826), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1828), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1828), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1828), + [aux_sym__val_number_decimal_token1] = ACTIONS(1826), + [aux_sym__val_number_decimal_token2] = ACTIONS(1828), + [aux_sym__val_number_decimal_token3] = ACTIONS(1828), + [aux_sym__val_number_decimal_token4] = ACTIONS(1828), + [aux_sym__val_number_token1] = ACTIONS(1828), + [aux_sym__val_number_token2] = ACTIONS(1828), + [aux_sym__val_number_token3] = ACTIONS(1828), + [anon_sym_DQUOTE] = ACTIONS(1828), + [sym__str_single_quotes] = ACTIONS(1828), + [sym__str_back_ticks] = ACTIONS(1828), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1828), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1828), + }, + [490] = { + [sym_comment] = STATE(490), + [anon_sym_export] = ACTIONS(2234), + [anon_sym_alias] = ACTIONS(2234), + [anon_sym_let] = ACTIONS(2234), + [anon_sym_let_DASHenv] = ACTIONS(2234), + [anon_sym_mut] = ACTIONS(2234), + [anon_sym_const] = ACTIONS(2234), + [aux_sym_cmd_identifier_token1] = ACTIONS(2234), + [aux_sym_cmd_identifier_token2] = ACTIONS(2234), + [aux_sym_cmd_identifier_token3] = ACTIONS(2234), + [aux_sym_cmd_identifier_token4] = ACTIONS(2234), + [aux_sym_cmd_identifier_token5] = ACTIONS(2234), + [aux_sym_cmd_identifier_token6] = ACTIONS(2234), + [aux_sym_cmd_identifier_token7] = ACTIONS(2234), + [aux_sym_cmd_identifier_token8] = ACTIONS(2234), + [aux_sym_cmd_identifier_token9] = ACTIONS(2234), + [aux_sym_cmd_identifier_token10] = ACTIONS(2234), + [aux_sym_cmd_identifier_token11] = ACTIONS(2234), + [aux_sym_cmd_identifier_token12] = ACTIONS(2234), + [aux_sym_cmd_identifier_token13] = ACTIONS(2234), + [aux_sym_cmd_identifier_token14] = ACTIONS(2234), + [aux_sym_cmd_identifier_token15] = ACTIONS(2234), + [aux_sym_cmd_identifier_token16] = ACTIONS(2234), + [aux_sym_cmd_identifier_token17] = ACTIONS(2234), + [aux_sym_cmd_identifier_token18] = ACTIONS(2234), + [aux_sym_cmd_identifier_token19] = ACTIONS(2234), + [aux_sym_cmd_identifier_token20] = ACTIONS(2234), + [aux_sym_cmd_identifier_token21] = ACTIONS(2234), + [aux_sym_cmd_identifier_token22] = ACTIONS(2234), + [aux_sym_cmd_identifier_token23] = ACTIONS(2234), + [aux_sym_cmd_identifier_token24] = ACTIONS(2234), + [aux_sym_cmd_identifier_token25] = ACTIONS(2234), + [aux_sym_cmd_identifier_token26] = ACTIONS(2234), + [aux_sym_cmd_identifier_token27] = ACTIONS(2234), + [aux_sym_cmd_identifier_token28] = ACTIONS(2234), + [aux_sym_cmd_identifier_token29] = ACTIONS(2234), + [aux_sym_cmd_identifier_token30] = ACTIONS(2234), + [aux_sym_cmd_identifier_token31] = ACTIONS(2234), + [aux_sym_cmd_identifier_token32] = ACTIONS(2234), + [aux_sym_cmd_identifier_token33] = ACTIONS(2234), + [aux_sym_cmd_identifier_token34] = ACTIONS(2234), + [aux_sym_cmd_identifier_token35] = ACTIONS(2234), + [aux_sym_cmd_identifier_token36] = ACTIONS(2234), + [anon_sym_true] = ACTIONS(2240), + [anon_sym_false] = ACTIONS(2240), + [anon_sym_null] = ACTIONS(2240), + [aux_sym_cmd_identifier_token38] = ACTIONS(2234), + [aux_sym_cmd_identifier_token39] = ACTIONS(2240), + [aux_sym_cmd_identifier_token40] = ACTIONS(2240), + [anon_sym_def] = ACTIONS(2234), + [anon_sym_export_DASHenv] = ACTIONS(2234), + [anon_sym_extern] = ACTIONS(2234), + [anon_sym_module] = ACTIONS(2234), + [anon_sym_use] = ACTIONS(2234), + [anon_sym_LPAREN] = ACTIONS(2240), + [anon_sym_DOLLAR] = ACTIONS(2240), + [anon_sym_error] = ACTIONS(2234), + [anon_sym_list] = ACTIONS(2234), + [anon_sym_DASH] = ACTIONS(2234), + [anon_sym_break] = ACTIONS(2234), + [anon_sym_continue] = ACTIONS(2234), + [anon_sym_for] = ACTIONS(2234), + [anon_sym_in] = ACTIONS(2234), + [anon_sym_loop] = ACTIONS(2234), + [anon_sym_make] = ACTIONS(2234), + [anon_sym_while] = ACTIONS(2234), + [anon_sym_do] = ACTIONS(2234), + [anon_sym_if] = ACTIONS(2234), + [anon_sym_else] = ACTIONS(2234), + [anon_sym_match] = ACTIONS(2234), + [anon_sym_RBRACE] = ACTIONS(2240), + [anon_sym_try] = ACTIONS(2234), + [anon_sym_catch] = ACTIONS(2234), + [anon_sym_return] = ACTIONS(2234), + [anon_sym_source] = ACTIONS(2234), + [anon_sym_source_DASHenv] = ACTIONS(2234), + [anon_sym_register] = ACTIONS(2234), + [anon_sym_hide] = ACTIONS(2234), + [anon_sym_hide_DASHenv] = ACTIONS(2234), + [anon_sym_overlay] = ACTIONS(2234), + [anon_sym_new] = ACTIONS(2234), + [anon_sym_as] = ACTIONS(2234), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2240), + [anon_sym_DOT_DOT2] = ACTIONS(2319), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2321), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2321), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2240), + [aux_sym__val_number_decimal_token1] = ACTIONS(2234), + [aux_sym__val_number_decimal_token2] = ACTIONS(2240), + [aux_sym__val_number_decimal_token3] = ACTIONS(2240), + [aux_sym__val_number_decimal_token4] = ACTIONS(2240), + [aux_sym__val_number_token1] = ACTIONS(2240), + [aux_sym__val_number_token2] = ACTIONS(2240), + [aux_sym__val_number_token3] = ACTIONS(2240), + [anon_sym_DQUOTE] = ACTIONS(2240), + [sym__str_single_quotes] = ACTIONS(2240), + [sym__str_back_ticks] = ACTIONS(2240), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2240), + [anon_sym_PLUS] = ACTIONS(2234), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2240), + }, + [491] = { + [sym_comment] = STATE(491), + [anon_sym_export] = ACTIONS(2113), + [anon_sym_alias] = ACTIONS(2113), + [anon_sym_let] = ACTIONS(2113), + [anon_sym_let_DASHenv] = ACTIONS(2113), + [anon_sym_mut] = ACTIONS(2113), + [anon_sym_const] = ACTIONS(2113), + [aux_sym_cmd_identifier_token1] = ACTIONS(2113), + [aux_sym_cmd_identifier_token2] = ACTIONS(2113), + [aux_sym_cmd_identifier_token3] = ACTIONS(2113), + [aux_sym_cmd_identifier_token4] = ACTIONS(2113), + [aux_sym_cmd_identifier_token5] = ACTIONS(2113), + [aux_sym_cmd_identifier_token6] = ACTIONS(2113), + [aux_sym_cmd_identifier_token7] = ACTIONS(2113), + [aux_sym_cmd_identifier_token8] = ACTIONS(2113), + [aux_sym_cmd_identifier_token9] = ACTIONS(2113), + [aux_sym_cmd_identifier_token10] = ACTIONS(2113), + [aux_sym_cmd_identifier_token11] = ACTIONS(2113), + [aux_sym_cmd_identifier_token12] = ACTIONS(2113), + [aux_sym_cmd_identifier_token13] = ACTIONS(2113), + [aux_sym_cmd_identifier_token14] = ACTIONS(2113), + [aux_sym_cmd_identifier_token15] = ACTIONS(2113), + [aux_sym_cmd_identifier_token16] = ACTIONS(2113), + [aux_sym_cmd_identifier_token17] = ACTIONS(2113), + [aux_sym_cmd_identifier_token18] = ACTIONS(2113), + [aux_sym_cmd_identifier_token19] = ACTIONS(2113), + [aux_sym_cmd_identifier_token20] = ACTIONS(2113), + [aux_sym_cmd_identifier_token21] = ACTIONS(2113), + [aux_sym_cmd_identifier_token22] = ACTIONS(2113), + [aux_sym_cmd_identifier_token23] = ACTIONS(2113), + [aux_sym_cmd_identifier_token24] = ACTIONS(2113), + [aux_sym_cmd_identifier_token25] = ACTIONS(2113), + [aux_sym_cmd_identifier_token26] = ACTIONS(2113), + [aux_sym_cmd_identifier_token27] = ACTIONS(2113), + [aux_sym_cmd_identifier_token28] = ACTIONS(2113), + [aux_sym_cmd_identifier_token29] = ACTIONS(2113), + [aux_sym_cmd_identifier_token30] = ACTIONS(2113), + [aux_sym_cmd_identifier_token31] = ACTIONS(2113), + [aux_sym_cmd_identifier_token32] = ACTIONS(2113), + [aux_sym_cmd_identifier_token33] = ACTIONS(2113), + [aux_sym_cmd_identifier_token34] = ACTIONS(2113), + [aux_sym_cmd_identifier_token35] = ACTIONS(2113), + [aux_sym_cmd_identifier_token36] = ACTIONS(2113), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_null] = ACTIONS(2119), + [aux_sym_cmd_identifier_token38] = ACTIONS(2113), + [aux_sym_cmd_identifier_token39] = ACTIONS(2119), + [aux_sym_cmd_identifier_token40] = ACTIONS(2119), + [anon_sym_def] = ACTIONS(2113), + [anon_sym_export_DASHenv] = ACTIONS(2113), + [anon_sym_extern] = ACTIONS(2113), + [anon_sym_module] = ACTIONS(2113), + [anon_sym_use] = ACTIONS(2113), + [anon_sym_LPAREN] = ACTIONS(2119), + [anon_sym_DOLLAR] = ACTIONS(2119), + [anon_sym_error] = ACTIONS(2113), + [anon_sym_list] = ACTIONS(2113), + [anon_sym_DASH] = ACTIONS(2113), + [anon_sym_break] = ACTIONS(2113), + [anon_sym_continue] = ACTIONS(2113), + [anon_sym_for] = ACTIONS(2113), + [anon_sym_in] = ACTIONS(2113), + [anon_sym_loop] = ACTIONS(2113), + [anon_sym_make] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(2113), + [anon_sym_do] = ACTIONS(2113), + [anon_sym_if] = ACTIONS(2113), + [anon_sym_else] = ACTIONS(2113), + [anon_sym_match] = ACTIONS(2113), + [anon_sym_RBRACE] = ACTIONS(2119), + [anon_sym_try] = ACTIONS(2113), + [anon_sym_catch] = ACTIONS(2113), + [anon_sym_return] = ACTIONS(2113), + [anon_sym_source] = ACTIONS(2113), + [anon_sym_source_DASHenv] = ACTIONS(2113), + [anon_sym_register] = ACTIONS(2113), + [anon_sym_hide] = ACTIONS(2113), + [anon_sym_hide_DASHenv] = ACTIONS(2113), + [anon_sym_overlay] = ACTIONS(2113), + [anon_sym_new] = ACTIONS(2113), + [anon_sym_as] = ACTIONS(2113), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2119), + [anon_sym_DOT_DOT2] = ACTIONS(2323), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2325), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2325), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2119), + [aux_sym__val_number_decimal_token1] = ACTIONS(2113), + [aux_sym__val_number_decimal_token2] = ACTIONS(2119), + [aux_sym__val_number_decimal_token3] = ACTIONS(2119), + [aux_sym__val_number_decimal_token4] = ACTIONS(2119), + [aux_sym__val_number_token1] = ACTIONS(2119), + [aux_sym__val_number_token2] = ACTIONS(2119), + [aux_sym__val_number_token3] = ACTIONS(2119), + [anon_sym_DQUOTE] = ACTIONS(2119), + [sym__str_single_quotes] = ACTIONS(2119), + [sym__str_back_ticks] = ACTIONS(2119), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2119), + [anon_sym_PLUS] = ACTIONS(2113), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2119), + }, + [492] = { + [sym_comment] = STATE(492), + [anon_sym_export] = ACTIONS(2206), + [anon_sym_alias] = ACTIONS(2206), + [anon_sym_let] = ACTIONS(2206), + [anon_sym_let_DASHenv] = ACTIONS(2206), + [anon_sym_mut] = ACTIONS(2206), + [anon_sym_const] = ACTIONS(2206), + [aux_sym_cmd_identifier_token1] = ACTIONS(2206), + [aux_sym_cmd_identifier_token2] = ACTIONS(2206), + [aux_sym_cmd_identifier_token3] = ACTIONS(2206), + [aux_sym_cmd_identifier_token4] = ACTIONS(2206), + [aux_sym_cmd_identifier_token5] = ACTIONS(2206), + [aux_sym_cmd_identifier_token6] = ACTIONS(2206), + [aux_sym_cmd_identifier_token7] = ACTIONS(2206), + [aux_sym_cmd_identifier_token8] = ACTIONS(2206), + [aux_sym_cmd_identifier_token9] = ACTIONS(2206), + [aux_sym_cmd_identifier_token10] = ACTIONS(2206), + [aux_sym_cmd_identifier_token11] = ACTIONS(2206), + [aux_sym_cmd_identifier_token12] = ACTIONS(2206), + [aux_sym_cmd_identifier_token13] = ACTIONS(2206), + [aux_sym_cmd_identifier_token14] = ACTIONS(2206), + [aux_sym_cmd_identifier_token15] = ACTIONS(2206), + [aux_sym_cmd_identifier_token16] = ACTIONS(2206), + [aux_sym_cmd_identifier_token17] = ACTIONS(2206), + [aux_sym_cmd_identifier_token18] = ACTIONS(2206), + [aux_sym_cmd_identifier_token19] = ACTIONS(2206), + [aux_sym_cmd_identifier_token20] = ACTIONS(2206), + [aux_sym_cmd_identifier_token21] = ACTIONS(2206), + [aux_sym_cmd_identifier_token22] = ACTIONS(2206), + [aux_sym_cmd_identifier_token23] = ACTIONS(2206), + [aux_sym_cmd_identifier_token24] = ACTIONS(2206), + [aux_sym_cmd_identifier_token25] = ACTIONS(2206), + [aux_sym_cmd_identifier_token26] = ACTIONS(2206), + [aux_sym_cmd_identifier_token27] = ACTIONS(2206), + [aux_sym_cmd_identifier_token28] = ACTIONS(2206), + [aux_sym_cmd_identifier_token29] = ACTIONS(2206), + [aux_sym_cmd_identifier_token30] = ACTIONS(2206), + [aux_sym_cmd_identifier_token31] = ACTIONS(2206), + [aux_sym_cmd_identifier_token32] = ACTIONS(2206), + [aux_sym_cmd_identifier_token33] = ACTIONS(2206), + [aux_sym_cmd_identifier_token34] = ACTIONS(2206), + [aux_sym_cmd_identifier_token35] = ACTIONS(2206), + [aux_sym_cmd_identifier_token36] = ACTIONS(2206), + [anon_sym_true] = ACTIONS(2212), + [anon_sym_false] = ACTIONS(2212), + [anon_sym_null] = ACTIONS(2212), + [aux_sym_cmd_identifier_token38] = ACTIONS(2206), + [aux_sym_cmd_identifier_token39] = ACTIONS(2212), + [aux_sym_cmd_identifier_token40] = ACTIONS(2212), + [anon_sym_def] = ACTIONS(2206), + [anon_sym_export_DASHenv] = ACTIONS(2206), + [anon_sym_extern] = ACTIONS(2206), + [anon_sym_module] = ACTIONS(2206), + [anon_sym_use] = ACTIONS(2206), + [anon_sym_LPAREN] = ACTIONS(2212), + [anon_sym_DOLLAR] = ACTIONS(2212), + [anon_sym_error] = ACTIONS(2206), + [anon_sym_list] = ACTIONS(2206), + [anon_sym_DASH] = ACTIONS(2206), + [anon_sym_break] = ACTIONS(2206), + [anon_sym_continue] = ACTIONS(2206), + [anon_sym_for] = ACTIONS(2206), + [anon_sym_in] = ACTIONS(2206), + [anon_sym_loop] = ACTIONS(2206), + [anon_sym_make] = ACTIONS(2206), + [anon_sym_while] = ACTIONS(2206), + [anon_sym_do] = ACTIONS(2206), + [anon_sym_if] = ACTIONS(2206), + [anon_sym_else] = ACTIONS(2206), + [anon_sym_match] = ACTIONS(2206), + [anon_sym_RBRACE] = ACTIONS(2212), + [anon_sym_try] = ACTIONS(2206), + [anon_sym_catch] = ACTIONS(2206), + [anon_sym_return] = ACTIONS(2206), + [anon_sym_source] = ACTIONS(2206), + [anon_sym_source_DASHenv] = ACTIONS(2206), + [anon_sym_register] = ACTIONS(2206), + [anon_sym_hide] = ACTIONS(2206), + [anon_sym_hide_DASHenv] = ACTIONS(2206), + [anon_sym_overlay] = ACTIONS(2206), + [anon_sym_new] = ACTIONS(2206), + [anon_sym_as] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2212), + [anon_sym_DOT_DOT2] = ACTIONS(2327), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2329), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2329), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2212), + [aux_sym__val_number_decimal_token1] = ACTIONS(2206), + [aux_sym__val_number_decimal_token2] = ACTIONS(2212), + [aux_sym__val_number_decimal_token3] = ACTIONS(2212), + [aux_sym__val_number_decimal_token4] = ACTIONS(2212), + [aux_sym__val_number_token1] = ACTIONS(2212), + [aux_sym__val_number_token2] = ACTIONS(2212), + [aux_sym__val_number_token3] = ACTIONS(2212), + [anon_sym_DQUOTE] = ACTIONS(2212), + [sym__str_single_quotes] = ACTIONS(2212), + [sym__str_back_ticks] = ACTIONS(2212), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2212), + [anon_sym_PLUS] = ACTIONS(2206), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2212), + }, + [493] = { + [sym_comment] = STATE(493), + [anon_sym_export] = ACTIONS(1078), + [anon_sym_alias] = ACTIONS(1078), + [anon_sym_let] = ACTIONS(1078), + [anon_sym_let_DASHenv] = ACTIONS(1078), + [anon_sym_mut] = ACTIONS(1078), + [anon_sym_const] = ACTIONS(1078), + [aux_sym_cmd_identifier_token1] = ACTIONS(1078), + [aux_sym_cmd_identifier_token2] = ACTIONS(1078), + [aux_sym_cmd_identifier_token3] = ACTIONS(1078), + [aux_sym_cmd_identifier_token4] = ACTIONS(1078), + [aux_sym_cmd_identifier_token5] = ACTIONS(1078), + [aux_sym_cmd_identifier_token6] = ACTIONS(1078), + [aux_sym_cmd_identifier_token7] = ACTIONS(1078), + [aux_sym_cmd_identifier_token8] = ACTIONS(1078), + [aux_sym_cmd_identifier_token9] = ACTIONS(1078), + [aux_sym_cmd_identifier_token10] = ACTIONS(1078), + [aux_sym_cmd_identifier_token11] = ACTIONS(1078), + [aux_sym_cmd_identifier_token12] = ACTIONS(1078), + [aux_sym_cmd_identifier_token13] = ACTIONS(1078), + [aux_sym_cmd_identifier_token14] = ACTIONS(1078), + [aux_sym_cmd_identifier_token15] = ACTIONS(1078), + [aux_sym_cmd_identifier_token16] = ACTIONS(1078), + [aux_sym_cmd_identifier_token17] = ACTIONS(1078), + [aux_sym_cmd_identifier_token18] = ACTIONS(1078), + [aux_sym_cmd_identifier_token19] = ACTIONS(1078), + [aux_sym_cmd_identifier_token20] = ACTIONS(1078), + [aux_sym_cmd_identifier_token21] = ACTIONS(1078), + [aux_sym_cmd_identifier_token22] = ACTIONS(1078), + [aux_sym_cmd_identifier_token23] = ACTIONS(1078), + [aux_sym_cmd_identifier_token24] = ACTIONS(1078), + [aux_sym_cmd_identifier_token25] = ACTIONS(1078), + [aux_sym_cmd_identifier_token26] = ACTIONS(1078), + [aux_sym_cmd_identifier_token27] = ACTIONS(1078), + [aux_sym_cmd_identifier_token28] = ACTIONS(1078), + [aux_sym_cmd_identifier_token29] = ACTIONS(1078), + [aux_sym_cmd_identifier_token30] = ACTIONS(1078), + [aux_sym_cmd_identifier_token31] = ACTIONS(1078), + [aux_sym_cmd_identifier_token32] = ACTIONS(1078), + [aux_sym_cmd_identifier_token33] = ACTIONS(1078), + [aux_sym_cmd_identifier_token34] = ACTIONS(1078), + [aux_sym_cmd_identifier_token35] = ACTIONS(1078), + [aux_sym_cmd_identifier_token36] = ACTIONS(1078), + [anon_sym_true] = ACTIONS(1080), + [anon_sym_false] = ACTIONS(1080), + [anon_sym_null] = ACTIONS(1080), + [aux_sym_cmd_identifier_token38] = ACTIONS(1078), + [aux_sym_cmd_identifier_token39] = ACTIONS(1080), + [aux_sym_cmd_identifier_token40] = ACTIONS(1080), + [anon_sym_def] = ACTIONS(1078), + [anon_sym_export_DASHenv] = ACTIONS(1078), + [anon_sym_extern] = ACTIONS(1078), + [anon_sym_module] = ACTIONS(1078), + [anon_sym_use] = ACTIONS(1078), + [anon_sym_LPAREN] = ACTIONS(1080), + [anon_sym_DOLLAR] = ACTIONS(1080), + [anon_sym_error] = ACTIONS(1078), + [anon_sym_list] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_break] = ACTIONS(1078), + [anon_sym_continue] = ACTIONS(1078), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_in] = ACTIONS(1078), + [anon_sym_loop] = ACTIONS(1078), + [anon_sym_make] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1078), + [anon_sym_do] = ACTIONS(1078), + [anon_sym_if] = ACTIONS(1078), + [anon_sym_else] = ACTIONS(1078), + [anon_sym_match] = ACTIONS(1078), + [anon_sym_RBRACE] = ACTIONS(1080), + [anon_sym_try] = ACTIONS(1078), + [anon_sym_catch] = ACTIONS(1078), + [anon_sym_return] = ACTIONS(1078), + [anon_sym_source] = ACTIONS(1078), + [anon_sym_source_DASHenv] = ACTIONS(1078), + [anon_sym_register] = ACTIONS(1078), + [anon_sym_hide] = ACTIONS(1078), + [anon_sym_hide_DASHenv] = ACTIONS(1078), + [anon_sym_overlay] = ACTIONS(1078), + [anon_sym_new] = ACTIONS(1078), + [anon_sym_as] = ACTIONS(1078), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1080), + [anon_sym_DOT_DOT2] = ACTIONS(1078), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1080), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1080), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1080), + [aux_sym__val_number_decimal_token1] = ACTIONS(1078), + [aux_sym__val_number_decimal_token2] = ACTIONS(1080), + [aux_sym__val_number_decimal_token3] = ACTIONS(1080), + [aux_sym__val_number_decimal_token4] = ACTIONS(1080), + [aux_sym__val_number_token1] = ACTIONS(1080), + [aux_sym__val_number_token2] = ACTIONS(1080), + [aux_sym__val_number_token3] = ACTIONS(1080), + [anon_sym_DQUOTE] = ACTIONS(1080), + [sym__str_single_quotes] = ACTIONS(1080), + [sym__str_back_ticks] = ACTIONS(1080), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1080), + }, + [494] = { + [sym_comment] = STATE(494), + [anon_sym_export] = ACTIONS(1066), + [anon_sym_alias] = ACTIONS(1066), + [anon_sym_let] = ACTIONS(1066), + [anon_sym_let_DASHenv] = ACTIONS(1066), + [anon_sym_mut] = ACTIONS(1066), + [anon_sym_const] = ACTIONS(1066), + [aux_sym_cmd_identifier_token1] = ACTIONS(1066), + [aux_sym_cmd_identifier_token2] = ACTIONS(1066), + [aux_sym_cmd_identifier_token3] = ACTIONS(1066), + [aux_sym_cmd_identifier_token4] = ACTIONS(1066), + [aux_sym_cmd_identifier_token5] = ACTIONS(1066), + [aux_sym_cmd_identifier_token6] = ACTIONS(1066), + [aux_sym_cmd_identifier_token7] = ACTIONS(1066), + [aux_sym_cmd_identifier_token8] = ACTIONS(1066), + [aux_sym_cmd_identifier_token9] = ACTIONS(1066), + [aux_sym_cmd_identifier_token10] = ACTIONS(1066), + [aux_sym_cmd_identifier_token11] = ACTIONS(1066), + [aux_sym_cmd_identifier_token12] = ACTIONS(1066), + [aux_sym_cmd_identifier_token13] = ACTIONS(1066), + [aux_sym_cmd_identifier_token14] = ACTIONS(1066), + [aux_sym_cmd_identifier_token15] = ACTIONS(1066), + [aux_sym_cmd_identifier_token16] = ACTIONS(1066), + [aux_sym_cmd_identifier_token17] = ACTIONS(1066), + [aux_sym_cmd_identifier_token18] = ACTIONS(1066), + [aux_sym_cmd_identifier_token19] = ACTIONS(1066), + [aux_sym_cmd_identifier_token20] = ACTIONS(1066), + [aux_sym_cmd_identifier_token21] = ACTIONS(1066), + [aux_sym_cmd_identifier_token22] = ACTIONS(1066), + [aux_sym_cmd_identifier_token23] = ACTIONS(1066), + [aux_sym_cmd_identifier_token24] = ACTIONS(1066), + [aux_sym_cmd_identifier_token25] = ACTIONS(1066), + [aux_sym_cmd_identifier_token26] = ACTIONS(1066), + [aux_sym_cmd_identifier_token27] = ACTIONS(1066), + [aux_sym_cmd_identifier_token28] = ACTIONS(1066), + [aux_sym_cmd_identifier_token29] = ACTIONS(1066), + [aux_sym_cmd_identifier_token30] = ACTIONS(1066), + [aux_sym_cmd_identifier_token31] = ACTIONS(1066), + [aux_sym_cmd_identifier_token32] = ACTIONS(1066), + [aux_sym_cmd_identifier_token33] = ACTIONS(1066), + [aux_sym_cmd_identifier_token34] = ACTIONS(1066), + [aux_sym_cmd_identifier_token35] = ACTIONS(1066), + [aux_sym_cmd_identifier_token36] = ACTIONS(1066), + [anon_sym_true] = ACTIONS(1068), + [anon_sym_false] = ACTIONS(1068), + [anon_sym_null] = ACTIONS(1068), + [aux_sym_cmd_identifier_token38] = ACTIONS(1066), + [aux_sym_cmd_identifier_token39] = ACTIONS(1068), + [aux_sym_cmd_identifier_token40] = ACTIONS(1068), + [anon_sym_def] = ACTIONS(1066), + [anon_sym_export_DASHenv] = ACTIONS(1066), + [anon_sym_extern] = ACTIONS(1066), + [anon_sym_module] = ACTIONS(1066), + [anon_sym_use] = ACTIONS(1066), + [anon_sym_LPAREN] = ACTIONS(1068), + [anon_sym_COMMA] = ACTIONS(1068), + [anon_sym_DOLLAR] = ACTIONS(1068), + [anon_sym_error] = ACTIONS(1066), + [anon_sym_list] = ACTIONS(1066), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_break] = ACTIONS(1066), + [anon_sym_continue] = ACTIONS(1066), + [anon_sym_for] = ACTIONS(1066), + [anon_sym_in] = ACTIONS(1066), + [anon_sym_loop] = ACTIONS(1066), + [anon_sym_make] = ACTIONS(1066), + [anon_sym_while] = ACTIONS(1066), + [anon_sym_do] = ACTIONS(1066), + [anon_sym_if] = ACTIONS(1066), + [anon_sym_else] = ACTIONS(1066), + [anon_sym_match] = ACTIONS(1066), + [anon_sym_RBRACE] = ACTIONS(1068), + [anon_sym_try] = ACTIONS(1066), + [anon_sym_catch] = ACTIONS(1066), + [anon_sym_return] = ACTIONS(1066), + [anon_sym_source] = ACTIONS(1066), + [anon_sym_source_DASHenv] = ACTIONS(1066), + [anon_sym_register] = ACTIONS(1066), + [anon_sym_hide] = ACTIONS(1066), + [anon_sym_hide_DASHenv] = ACTIONS(1066), + [anon_sym_overlay] = ACTIONS(1066), + [anon_sym_new] = ACTIONS(1066), + [anon_sym_as] = ACTIONS(1066), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1068), + [anon_sym_DOT] = ACTIONS(1066), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1068), + [aux_sym__val_number_decimal_token1] = ACTIONS(1066), + [aux_sym__val_number_decimal_token2] = ACTIONS(1068), + [aux_sym__val_number_decimal_token3] = ACTIONS(1068), + [aux_sym__val_number_decimal_token4] = ACTIONS(1068), + [aux_sym__val_number_token1] = ACTIONS(1068), + [aux_sym__val_number_token2] = ACTIONS(1068), + [aux_sym__val_number_token3] = ACTIONS(1068), + [anon_sym_DQUOTE] = ACTIONS(1068), + [sym__str_single_quotes] = ACTIONS(1068), + [sym__str_back_ticks] = ACTIONS(1068), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1068), + [aux_sym_record_entry_token1] = ACTIONS(1068), + [anon_sym_PLUS] = ACTIONS(1066), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1068), + }, + [495] = { + [sym_comment] = STATE(495), + [anon_sym_export] = ACTIONS(2222), + [anon_sym_alias] = ACTIONS(2222), + [anon_sym_let] = ACTIONS(2222), + [anon_sym_let_DASHenv] = ACTIONS(2222), + [anon_sym_mut] = ACTIONS(2222), + [anon_sym_const] = ACTIONS(2222), + [aux_sym_cmd_identifier_token1] = ACTIONS(2222), + [aux_sym_cmd_identifier_token2] = ACTIONS(2222), + [aux_sym_cmd_identifier_token3] = ACTIONS(2222), + [aux_sym_cmd_identifier_token4] = ACTIONS(2222), + [aux_sym_cmd_identifier_token5] = ACTIONS(2222), + [aux_sym_cmd_identifier_token6] = ACTIONS(2222), + [aux_sym_cmd_identifier_token7] = ACTIONS(2222), + [aux_sym_cmd_identifier_token8] = ACTIONS(2222), + [aux_sym_cmd_identifier_token9] = ACTIONS(2222), + [aux_sym_cmd_identifier_token10] = ACTIONS(2222), + [aux_sym_cmd_identifier_token11] = ACTIONS(2222), + [aux_sym_cmd_identifier_token12] = ACTIONS(2222), + [aux_sym_cmd_identifier_token13] = ACTIONS(2222), + [aux_sym_cmd_identifier_token14] = ACTIONS(2222), + [aux_sym_cmd_identifier_token15] = ACTIONS(2222), + [aux_sym_cmd_identifier_token16] = ACTIONS(2222), + [aux_sym_cmd_identifier_token17] = ACTIONS(2222), + [aux_sym_cmd_identifier_token18] = ACTIONS(2222), + [aux_sym_cmd_identifier_token19] = ACTIONS(2222), + [aux_sym_cmd_identifier_token20] = ACTIONS(2222), + [aux_sym_cmd_identifier_token21] = ACTIONS(2222), + [aux_sym_cmd_identifier_token22] = ACTIONS(2222), + [aux_sym_cmd_identifier_token23] = ACTIONS(2222), + [aux_sym_cmd_identifier_token24] = ACTIONS(2222), + [aux_sym_cmd_identifier_token25] = ACTIONS(2222), + [aux_sym_cmd_identifier_token26] = ACTIONS(2222), + [aux_sym_cmd_identifier_token27] = ACTIONS(2222), + [aux_sym_cmd_identifier_token28] = ACTIONS(2222), + [aux_sym_cmd_identifier_token29] = ACTIONS(2222), + [aux_sym_cmd_identifier_token30] = ACTIONS(2222), + [aux_sym_cmd_identifier_token31] = ACTIONS(2222), + [aux_sym_cmd_identifier_token32] = ACTIONS(2222), + [aux_sym_cmd_identifier_token33] = ACTIONS(2222), + [aux_sym_cmd_identifier_token34] = ACTIONS(2222), + [aux_sym_cmd_identifier_token35] = ACTIONS(2222), + [aux_sym_cmd_identifier_token36] = ACTIONS(2222), + [anon_sym_true] = ACTIONS(2228), + [anon_sym_false] = ACTIONS(2228), + [anon_sym_null] = ACTIONS(2228), + [aux_sym_cmd_identifier_token38] = ACTIONS(2222), + [aux_sym_cmd_identifier_token39] = ACTIONS(2228), + [aux_sym_cmd_identifier_token40] = ACTIONS(2228), + [anon_sym_def] = ACTIONS(2222), + [anon_sym_export_DASHenv] = ACTIONS(2222), + [anon_sym_extern] = ACTIONS(2222), + [anon_sym_module] = ACTIONS(2222), + [anon_sym_use] = ACTIONS(2222), + [anon_sym_LPAREN] = ACTIONS(2228), + [anon_sym_DOLLAR] = ACTIONS(2228), + [anon_sym_error] = ACTIONS(2222), + [anon_sym_list] = ACTIONS(2222), + [anon_sym_DASH] = ACTIONS(2222), + [anon_sym_break] = ACTIONS(2222), + [anon_sym_continue] = ACTIONS(2222), + [anon_sym_for] = ACTIONS(2222), + [anon_sym_in] = ACTIONS(2222), + [anon_sym_loop] = ACTIONS(2222), + [anon_sym_make] = ACTIONS(2222), + [anon_sym_while] = ACTIONS(2222), + [anon_sym_do] = ACTIONS(2222), + [anon_sym_if] = ACTIONS(2222), + [anon_sym_else] = ACTIONS(2222), + [anon_sym_match] = ACTIONS(2222), + [anon_sym_RBRACE] = ACTIONS(2228), + [anon_sym_try] = ACTIONS(2222), + [anon_sym_catch] = ACTIONS(2222), + [anon_sym_return] = ACTIONS(2222), + [anon_sym_source] = ACTIONS(2222), + [anon_sym_source_DASHenv] = ACTIONS(2222), + [anon_sym_register] = ACTIONS(2222), + [anon_sym_hide] = ACTIONS(2222), + [anon_sym_hide_DASHenv] = ACTIONS(2222), + [anon_sym_overlay] = ACTIONS(2222), + [anon_sym_new] = ACTIONS(2222), + [anon_sym_as] = ACTIONS(2222), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2228), + [anon_sym_DOT_DOT2] = ACTIONS(2331), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2333), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2333), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2228), + [aux_sym__val_number_decimal_token1] = ACTIONS(2222), + [aux_sym__val_number_decimal_token2] = ACTIONS(2228), + [aux_sym__val_number_decimal_token3] = ACTIONS(2228), + [aux_sym__val_number_decimal_token4] = ACTIONS(2228), + [aux_sym__val_number_token1] = ACTIONS(2228), + [aux_sym__val_number_token2] = ACTIONS(2228), + [aux_sym__val_number_token3] = ACTIONS(2228), + [anon_sym_DQUOTE] = ACTIONS(2228), + [sym__str_single_quotes] = ACTIONS(2228), + [sym__str_back_ticks] = ACTIONS(2228), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2228), + [anon_sym_PLUS] = ACTIONS(2222), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2228), + }, + [496] = { + [sym_comment] = STATE(496), + [anon_sym_export] = ACTIONS(1670), + [anon_sym_alias] = ACTIONS(1670), + [anon_sym_let] = ACTIONS(1670), + [anon_sym_let_DASHenv] = ACTIONS(1670), + [anon_sym_mut] = ACTIONS(1670), + [anon_sym_const] = ACTIONS(1670), + [aux_sym_cmd_identifier_token1] = ACTIONS(1670), + [aux_sym_cmd_identifier_token2] = ACTIONS(1670), + [aux_sym_cmd_identifier_token3] = ACTIONS(1670), + [aux_sym_cmd_identifier_token4] = ACTIONS(1670), + [aux_sym_cmd_identifier_token5] = ACTIONS(1670), + [aux_sym_cmd_identifier_token6] = ACTIONS(1670), + [aux_sym_cmd_identifier_token7] = ACTIONS(1670), + [aux_sym_cmd_identifier_token8] = ACTIONS(1670), + [aux_sym_cmd_identifier_token9] = ACTIONS(1670), + [aux_sym_cmd_identifier_token10] = ACTIONS(1670), + [aux_sym_cmd_identifier_token11] = ACTIONS(1670), + [aux_sym_cmd_identifier_token12] = ACTIONS(1670), + [aux_sym_cmd_identifier_token13] = ACTIONS(1670), + [aux_sym_cmd_identifier_token14] = ACTIONS(1670), + [aux_sym_cmd_identifier_token15] = ACTIONS(1670), + [aux_sym_cmd_identifier_token16] = ACTIONS(1670), + [aux_sym_cmd_identifier_token17] = ACTIONS(1670), + [aux_sym_cmd_identifier_token18] = ACTIONS(1670), + [aux_sym_cmd_identifier_token19] = ACTIONS(1670), + [aux_sym_cmd_identifier_token20] = ACTIONS(1670), + [aux_sym_cmd_identifier_token21] = ACTIONS(1670), + [aux_sym_cmd_identifier_token22] = ACTIONS(1670), + [aux_sym_cmd_identifier_token23] = ACTIONS(1670), + [aux_sym_cmd_identifier_token24] = ACTIONS(1670), + [aux_sym_cmd_identifier_token25] = ACTIONS(1670), + [aux_sym_cmd_identifier_token26] = ACTIONS(1670), + [aux_sym_cmd_identifier_token27] = ACTIONS(1670), + [aux_sym_cmd_identifier_token28] = ACTIONS(1670), + [aux_sym_cmd_identifier_token29] = ACTIONS(1670), + [aux_sym_cmd_identifier_token30] = ACTIONS(1670), + [aux_sym_cmd_identifier_token31] = ACTIONS(1670), + [aux_sym_cmd_identifier_token32] = ACTIONS(1670), + [aux_sym_cmd_identifier_token33] = ACTIONS(1670), + [aux_sym_cmd_identifier_token34] = ACTIONS(1670), + [aux_sym_cmd_identifier_token35] = ACTIONS(1670), + [aux_sym_cmd_identifier_token36] = ACTIONS(1670), + [anon_sym_true] = ACTIONS(1672), + [anon_sym_false] = ACTIONS(1672), + [anon_sym_null] = ACTIONS(1672), + [aux_sym_cmd_identifier_token38] = ACTIONS(1670), + [aux_sym_cmd_identifier_token39] = ACTIONS(1672), + [aux_sym_cmd_identifier_token40] = ACTIONS(1672), + [anon_sym_def] = ACTIONS(1670), + [anon_sym_export_DASHenv] = ACTIONS(1670), + [anon_sym_extern] = ACTIONS(1670), + [anon_sym_module] = ACTIONS(1670), + [anon_sym_use] = ACTIONS(1670), + [anon_sym_LPAREN] = ACTIONS(1672), + [anon_sym_DOLLAR] = ACTIONS(1672), + [anon_sym_error] = ACTIONS(1670), + [anon_sym_list] = ACTIONS(1670), + [anon_sym_DASH] = ACTIONS(1670), + [anon_sym_break] = ACTIONS(1670), + [anon_sym_continue] = ACTIONS(1670), + [anon_sym_for] = ACTIONS(1670), + [anon_sym_in] = ACTIONS(1670), + [anon_sym_loop] = ACTIONS(1670), + [anon_sym_make] = ACTIONS(1670), + [anon_sym_while] = ACTIONS(1670), + [anon_sym_do] = ACTIONS(1670), + [anon_sym_if] = ACTIONS(1670), + [anon_sym_else] = ACTIONS(1670), + [anon_sym_match] = ACTIONS(1670), + [anon_sym_RBRACE] = ACTIONS(1672), + [anon_sym_try] = ACTIONS(1670), + [anon_sym_catch] = ACTIONS(1670), + [anon_sym_return] = ACTIONS(1670), + [anon_sym_source] = ACTIONS(1670), + [anon_sym_source_DASHenv] = ACTIONS(1670), + [anon_sym_register] = ACTIONS(1670), + [anon_sym_hide] = ACTIONS(1670), + [anon_sym_hide_DASHenv] = ACTIONS(1670), + [anon_sym_overlay] = ACTIONS(1670), + [anon_sym_new] = ACTIONS(1670), + [anon_sym_as] = ACTIONS(1670), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1672), + [anon_sym_DOT_DOT2] = ACTIONS(1670), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1672), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1672), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1672), + [aux_sym__val_number_decimal_token1] = ACTIONS(1670), + [aux_sym__val_number_decimal_token2] = ACTIONS(1672), + [aux_sym__val_number_decimal_token3] = ACTIONS(1672), + [aux_sym__val_number_decimal_token4] = ACTIONS(1672), + [aux_sym__val_number_token1] = ACTIONS(1672), + [aux_sym__val_number_token2] = ACTIONS(1672), + [aux_sym__val_number_token3] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1672), + [sym__str_single_quotes] = ACTIONS(1672), + [sym__str_back_ticks] = ACTIONS(1672), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1672), + [anon_sym_PLUS] = ACTIONS(1670), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1672), + }, + [497] = { + [sym_comment] = STATE(497), + [anon_sym_export] = ACTIONS(1788), + [anon_sym_alias] = ACTIONS(1788), + [anon_sym_let] = ACTIONS(1788), + [anon_sym_let_DASHenv] = ACTIONS(1788), + [anon_sym_mut] = ACTIONS(1788), + [anon_sym_const] = ACTIONS(1788), + [aux_sym_cmd_identifier_token1] = ACTIONS(1788), + [aux_sym_cmd_identifier_token2] = ACTIONS(1788), + [aux_sym_cmd_identifier_token3] = ACTIONS(1788), + [aux_sym_cmd_identifier_token4] = ACTIONS(1788), + [aux_sym_cmd_identifier_token5] = ACTIONS(1788), + [aux_sym_cmd_identifier_token6] = ACTIONS(1788), + [aux_sym_cmd_identifier_token7] = ACTIONS(1788), + [aux_sym_cmd_identifier_token8] = ACTIONS(1788), + [aux_sym_cmd_identifier_token9] = ACTIONS(1788), + [aux_sym_cmd_identifier_token10] = ACTIONS(1788), + [aux_sym_cmd_identifier_token11] = ACTIONS(1788), + [aux_sym_cmd_identifier_token12] = ACTIONS(1788), + [aux_sym_cmd_identifier_token13] = ACTIONS(1788), + [aux_sym_cmd_identifier_token14] = ACTIONS(1788), + [aux_sym_cmd_identifier_token15] = ACTIONS(1788), + [aux_sym_cmd_identifier_token16] = ACTIONS(1788), + [aux_sym_cmd_identifier_token17] = ACTIONS(1788), + [aux_sym_cmd_identifier_token18] = ACTIONS(1788), + [aux_sym_cmd_identifier_token19] = ACTIONS(1788), + [aux_sym_cmd_identifier_token20] = ACTIONS(1788), + [aux_sym_cmd_identifier_token21] = ACTIONS(1788), + [aux_sym_cmd_identifier_token22] = ACTIONS(1788), + [aux_sym_cmd_identifier_token23] = ACTIONS(1788), + [aux_sym_cmd_identifier_token24] = ACTIONS(1788), + [aux_sym_cmd_identifier_token25] = ACTIONS(1788), + [aux_sym_cmd_identifier_token26] = ACTIONS(1788), + [aux_sym_cmd_identifier_token27] = ACTIONS(1788), + [aux_sym_cmd_identifier_token28] = ACTIONS(1788), + [aux_sym_cmd_identifier_token29] = ACTIONS(1788), + [aux_sym_cmd_identifier_token30] = ACTIONS(1788), + [aux_sym_cmd_identifier_token31] = ACTIONS(1788), + [aux_sym_cmd_identifier_token32] = ACTIONS(1788), + [aux_sym_cmd_identifier_token33] = ACTIONS(1788), + [aux_sym_cmd_identifier_token34] = ACTIONS(1788), + [aux_sym_cmd_identifier_token35] = ACTIONS(1788), + [aux_sym_cmd_identifier_token36] = ACTIONS(1788), + [anon_sym_true] = ACTIONS(1788), + [anon_sym_false] = ACTIONS(1788), + [anon_sym_null] = ACTIONS(1788), + [aux_sym_cmd_identifier_token38] = ACTIONS(1788), + [aux_sym_cmd_identifier_token39] = ACTIONS(1788), + [aux_sym_cmd_identifier_token40] = ACTIONS(1788), + [anon_sym_def] = ACTIONS(1788), + [anon_sym_export_DASHenv] = ACTIONS(1788), + [anon_sym_extern] = ACTIONS(1788), + [anon_sym_module] = ACTIONS(1788), + [anon_sym_use] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1788), + [anon_sym_DOLLAR] = ACTIONS(1788), + [anon_sym_error] = ACTIONS(1788), + [anon_sym_list] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_break] = ACTIONS(1788), + [anon_sym_continue] = ACTIONS(1788), + [anon_sym_for] = ACTIONS(1788), + [anon_sym_in] = ACTIONS(1788), + [anon_sym_loop] = ACTIONS(1788), + [anon_sym_make] = ACTIONS(1788), + [anon_sym_while] = ACTIONS(1788), + [anon_sym_do] = ACTIONS(1788), + [anon_sym_if] = ACTIONS(1788), + [anon_sym_else] = ACTIONS(1788), + [anon_sym_match] = ACTIONS(1788), + [anon_sym_RBRACE] = ACTIONS(1788), + [anon_sym_try] = ACTIONS(1788), + [anon_sym_catch] = ACTIONS(1788), + [anon_sym_return] = ACTIONS(1788), + [anon_sym_source] = ACTIONS(1788), + [anon_sym_source_DASHenv] = ACTIONS(1788), + [anon_sym_register] = ACTIONS(1788), + [anon_sym_hide] = ACTIONS(1788), + [anon_sym_hide_DASHenv] = ACTIONS(1788), + [anon_sym_overlay] = ACTIONS(1788), + [anon_sym_new] = ACTIONS(1788), + [anon_sym_as] = ACTIONS(1788), + [anon_sym_LPAREN2] = ACTIONS(1790), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1788), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1788), + [aux_sym__val_number_decimal_token1] = ACTIONS(1788), + [aux_sym__val_number_decimal_token2] = ACTIONS(1788), + [aux_sym__val_number_decimal_token3] = ACTIONS(1788), + [aux_sym__val_number_decimal_token4] = ACTIONS(1788), + [aux_sym__val_number_token1] = ACTIONS(1788), + [aux_sym__val_number_token2] = ACTIONS(1788), + [aux_sym__val_number_token3] = ACTIONS(1788), + [anon_sym_DQUOTE] = ACTIONS(1788), + [sym__str_single_quotes] = ACTIONS(1788), + [sym__str_back_ticks] = ACTIONS(1788), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1788), + [sym__entry_separator] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1788), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1526), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1796), + }, + [498] = { + [sym_comment] = STATE(498), + [anon_sym_export] = ACTIONS(2335), + [anon_sym_alias] = ACTIONS(2335), + [anon_sym_let] = ACTIONS(2335), + [anon_sym_let_DASHenv] = ACTIONS(2335), + [anon_sym_mut] = ACTIONS(2335), + [anon_sym_const] = ACTIONS(2335), + [aux_sym_cmd_identifier_token1] = ACTIONS(2335), + [aux_sym_cmd_identifier_token2] = ACTIONS(2335), + [aux_sym_cmd_identifier_token3] = ACTIONS(2335), + [aux_sym_cmd_identifier_token4] = ACTIONS(2335), + [aux_sym_cmd_identifier_token5] = ACTIONS(2335), + [aux_sym_cmd_identifier_token6] = ACTIONS(2335), + [aux_sym_cmd_identifier_token7] = ACTIONS(2335), + [aux_sym_cmd_identifier_token8] = ACTIONS(2335), + [aux_sym_cmd_identifier_token9] = ACTIONS(2335), + [aux_sym_cmd_identifier_token10] = ACTIONS(2335), + [aux_sym_cmd_identifier_token11] = ACTIONS(2335), + [aux_sym_cmd_identifier_token12] = ACTIONS(2335), + [aux_sym_cmd_identifier_token13] = ACTIONS(2335), + [aux_sym_cmd_identifier_token14] = ACTIONS(2335), + [aux_sym_cmd_identifier_token15] = ACTIONS(2335), + [aux_sym_cmd_identifier_token16] = ACTIONS(2335), + [aux_sym_cmd_identifier_token17] = ACTIONS(2335), + [aux_sym_cmd_identifier_token18] = ACTIONS(2335), + [aux_sym_cmd_identifier_token19] = ACTIONS(2335), + [aux_sym_cmd_identifier_token20] = ACTIONS(2335), + [aux_sym_cmd_identifier_token21] = ACTIONS(2335), + [aux_sym_cmd_identifier_token22] = ACTIONS(2335), + [aux_sym_cmd_identifier_token23] = ACTIONS(2335), + [aux_sym_cmd_identifier_token24] = ACTIONS(2335), + [aux_sym_cmd_identifier_token25] = ACTIONS(2335), + [aux_sym_cmd_identifier_token26] = ACTIONS(2335), + [aux_sym_cmd_identifier_token27] = ACTIONS(2335), + [aux_sym_cmd_identifier_token28] = ACTIONS(2335), + [aux_sym_cmd_identifier_token29] = ACTIONS(2335), + [aux_sym_cmd_identifier_token30] = ACTIONS(2335), + [aux_sym_cmd_identifier_token31] = ACTIONS(2335), + [aux_sym_cmd_identifier_token32] = ACTIONS(2335), + [aux_sym_cmd_identifier_token33] = ACTIONS(2335), + [aux_sym_cmd_identifier_token34] = ACTIONS(2335), + [aux_sym_cmd_identifier_token35] = ACTIONS(2335), + [aux_sym_cmd_identifier_token36] = ACTIONS(2335), + [anon_sym_true] = ACTIONS(2335), + [anon_sym_false] = ACTIONS(2335), + [anon_sym_null] = ACTIONS(2335), + [aux_sym_cmd_identifier_token38] = ACTIONS(2335), + [aux_sym_cmd_identifier_token39] = ACTIONS(2335), + [aux_sym_cmd_identifier_token40] = ACTIONS(2335), + [anon_sym_def] = ACTIONS(2335), + [anon_sym_export_DASHenv] = ACTIONS(2335), + [anon_sym_extern] = ACTIONS(2335), + [anon_sym_module] = ACTIONS(2335), + [anon_sym_use] = ACTIONS(2335), + [anon_sym_LPAREN] = ACTIONS(2335), + [anon_sym_DOLLAR] = ACTIONS(2335), + [anon_sym_error] = ACTIONS(2335), + [anon_sym_list] = ACTIONS(2335), + [anon_sym_DASH] = ACTIONS(2335), + [anon_sym_break] = ACTIONS(2335), + [anon_sym_continue] = ACTIONS(2335), + [anon_sym_for] = ACTIONS(2335), + [anon_sym_in] = ACTIONS(2335), + [anon_sym_loop] = ACTIONS(2335), + [anon_sym_make] = ACTIONS(2335), + [anon_sym_while] = ACTIONS(2335), + [anon_sym_do] = ACTIONS(2335), + [anon_sym_if] = ACTIONS(2335), + [anon_sym_else] = ACTIONS(2335), + [anon_sym_match] = ACTIONS(2335), + [anon_sym_RBRACE] = ACTIONS(2335), + [anon_sym_try] = ACTIONS(2335), + [anon_sym_catch] = ACTIONS(2335), + [anon_sym_return] = ACTIONS(2335), + [anon_sym_source] = ACTIONS(2335), + [anon_sym_source_DASHenv] = ACTIONS(2335), + [anon_sym_register] = ACTIONS(2335), + [anon_sym_hide] = ACTIONS(2335), + [anon_sym_hide_DASHenv] = ACTIONS(2335), + [anon_sym_overlay] = ACTIONS(2335), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_as] = ACTIONS(2335), + [anon_sym_LPAREN2] = ACTIONS(2337), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2335), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2335), + [aux_sym__val_number_decimal_token1] = ACTIONS(2335), + [aux_sym__val_number_decimal_token2] = ACTIONS(2335), + [aux_sym__val_number_decimal_token3] = ACTIONS(2335), + [aux_sym__val_number_decimal_token4] = ACTIONS(2335), + [aux_sym__val_number_token1] = ACTIONS(2335), + [aux_sym__val_number_token2] = ACTIONS(2335), + [aux_sym__val_number_token3] = ACTIONS(2335), + [anon_sym_DQUOTE] = ACTIONS(2335), + [sym__str_single_quotes] = ACTIONS(2335), + [sym__str_back_ticks] = ACTIONS(2335), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2335), + [sym__entry_separator] = ACTIONS(2339), + [anon_sym_PLUS] = ACTIONS(2335), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1558), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2339), + }, + [499] = { + [sym_comment] = STATE(499), + [anon_sym_export] = ACTIONS(1842), + [anon_sym_alias] = ACTIONS(1842), + [anon_sym_let] = ACTIONS(1842), + [anon_sym_let_DASHenv] = ACTIONS(1842), + [anon_sym_mut] = ACTIONS(1842), + [anon_sym_const] = ACTIONS(1842), + [aux_sym_cmd_identifier_token1] = ACTIONS(1842), + [aux_sym_cmd_identifier_token2] = ACTIONS(1842), + [aux_sym_cmd_identifier_token3] = ACTIONS(1842), + [aux_sym_cmd_identifier_token4] = ACTIONS(1842), + [aux_sym_cmd_identifier_token5] = ACTIONS(1842), + [aux_sym_cmd_identifier_token6] = ACTIONS(1842), + [aux_sym_cmd_identifier_token7] = ACTIONS(1842), + [aux_sym_cmd_identifier_token8] = ACTIONS(1842), + [aux_sym_cmd_identifier_token9] = ACTIONS(1842), + [aux_sym_cmd_identifier_token10] = ACTIONS(1842), + [aux_sym_cmd_identifier_token11] = ACTIONS(1842), + [aux_sym_cmd_identifier_token12] = ACTIONS(1842), + [aux_sym_cmd_identifier_token13] = ACTIONS(1842), + [aux_sym_cmd_identifier_token14] = ACTIONS(1842), + [aux_sym_cmd_identifier_token15] = ACTIONS(1842), + [aux_sym_cmd_identifier_token16] = ACTIONS(1842), + [aux_sym_cmd_identifier_token17] = ACTIONS(1842), + [aux_sym_cmd_identifier_token18] = ACTIONS(1842), + [aux_sym_cmd_identifier_token19] = ACTIONS(1842), + [aux_sym_cmd_identifier_token20] = ACTIONS(1842), + [aux_sym_cmd_identifier_token21] = ACTIONS(1842), + [aux_sym_cmd_identifier_token22] = ACTIONS(1842), + [aux_sym_cmd_identifier_token23] = ACTIONS(1842), + [aux_sym_cmd_identifier_token24] = ACTIONS(1842), + [aux_sym_cmd_identifier_token25] = ACTIONS(1842), + [aux_sym_cmd_identifier_token26] = ACTIONS(1842), + [aux_sym_cmd_identifier_token27] = ACTIONS(1842), + [aux_sym_cmd_identifier_token28] = ACTIONS(1842), + [aux_sym_cmd_identifier_token29] = ACTIONS(1842), + [aux_sym_cmd_identifier_token30] = ACTIONS(1842), + [aux_sym_cmd_identifier_token31] = ACTIONS(1842), + [aux_sym_cmd_identifier_token32] = ACTIONS(1842), + [aux_sym_cmd_identifier_token33] = ACTIONS(1842), + [aux_sym_cmd_identifier_token34] = ACTIONS(1842), + [aux_sym_cmd_identifier_token35] = ACTIONS(1842), + [aux_sym_cmd_identifier_token36] = ACTIONS(1842), + [anon_sym_true] = ACTIONS(1842), + [anon_sym_false] = ACTIONS(1842), + [anon_sym_null] = ACTIONS(1842), + [aux_sym_cmd_identifier_token38] = ACTIONS(1842), + [aux_sym_cmd_identifier_token39] = ACTIONS(1842), + [aux_sym_cmd_identifier_token40] = ACTIONS(1842), + [anon_sym_def] = ACTIONS(1842), + [anon_sym_export_DASHenv] = ACTIONS(1842), + [anon_sym_extern] = ACTIONS(1842), + [anon_sym_module] = ACTIONS(1842), + [anon_sym_use] = ACTIONS(1842), + [anon_sym_LPAREN] = ACTIONS(1842), + [anon_sym_DOLLAR] = ACTIONS(1842), + [anon_sym_error] = ACTIONS(1842), + [anon_sym_list] = ACTIONS(1842), + [anon_sym_DASH] = ACTIONS(1842), + [anon_sym_break] = ACTIONS(1842), + [anon_sym_continue] = ACTIONS(1842), + [anon_sym_for] = ACTIONS(1842), + [anon_sym_in] = ACTIONS(1842), + [anon_sym_loop] = ACTIONS(1842), + [anon_sym_make] = ACTIONS(1842), + [anon_sym_while] = ACTIONS(1842), + [anon_sym_do] = ACTIONS(1842), + [anon_sym_if] = ACTIONS(1842), + [anon_sym_else] = ACTIONS(1842), + [anon_sym_match] = ACTIONS(1842), + [anon_sym_RBRACE] = ACTIONS(1842), + [anon_sym_try] = ACTIONS(1842), + [anon_sym_catch] = ACTIONS(1842), + [anon_sym_return] = ACTIONS(1842), + [anon_sym_source] = ACTIONS(1842), + [anon_sym_source_DASHenv] = ACTIONS(1842), + [anon_sym_register] = ACTIONS(1842), + [anon_sym_hide] = ACTIONS(1842), + [anon_sym_hide_DASHenv] = ACTIONS(1842), + [anon_sym_overlay] = ACTIONS(1842), + [anon_sym_new] = ACTIONS(1842), + [anon_sym_as] = ACTIONS(1842), + [anon_sym_LPAREN2] = ACTIONS(1844), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1842), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1842), + [aux_sym__val_number_decimal_token1] = ACTIONS(1842), + [aux_sym__val_number_decimal_token2] = ACTIONS(1842), + [aux_sym__val_number_decimal_token3] = ACTIONS(1842), + [aux_sym__val_number_decimal_token4] = ACTIONS(1842), + [aux_sym__val_number_token1] = ACTIONS(1842), + [aux_sym__val_number_token2] = ACTIONS(1842), + [aux_sym__val_number_token3] = ACTIONS(1842), + [anon_sym_DQUOTE] = ACTIONS(1842), + [sym__str_single_quotes] = ACTIONS(1842), + [sym__str_back_ticks] = ACTIONS(1842), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1842), + [sym__entry_separator] = ACTIONS(1850), + [anon_sym_PLUS] = ACTIONS(1842), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1852), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1850), + }, + [500] = { + [sym_comment] = STATE(500), + [anon_sym_export] = ACTIONS(1070), + [anon_sym_alias] = ACTIONS(1070), + [anon_sym_let] = ACTIONS(1070), + [anon_sym_let_DASHenv] = ACTIONS(1070), + [anon_sym_mut] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(1070), + [aux_sym_cmd_identifier_token1] = ACTIONS(1070), + [aux_sym_cmd_identifier_token2] = ACTIONS(1070), + [aux_sym_cmd_identifier_token3] = ACTIONS(1070), + [aux_sym_cmd_identifier_token4] = ACTIONS(1070), + [aux_sym_cmd_identifier_token5] = ACTIONS(1070), + [aux_sym_cmd_identifier_token6] = ACTIONS(1070), + [aux_sym_cmd_identifier_token7] = ACTIONS(1070), + [aux_sym_cmd_identifier_token8] = ACTIONS(1070), [aux_sym_cmd_identifier_token9] = ACTIONS(1070), [aux_sym_cmd_identifier_token10] = ACTIONS(1070), [aux_sym_cmd_identifier_token11] = ACTIONS(1070), @@ -136776,19 +133143,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token34] = ACTIONS(1070), [aux_sym_cmd_identifier_token35] = ACTIONS(1070), [aux_sym_cmd_identifier_token36] = ACTIONS(1070), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [anon_sym_null] = ACTIONS(1070), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_null] = ACTIONS(1072), [aux_sym_cmd_identifier_token38] = ACTIONS(1070), - [aux_sym_cmd_identifier_token39] = ACTIONS(1070), - [aux_sym_cmd_identifier_token40] = ACTIONS(1070), + [aux_sym_cmd_identifier_token39] = ACTIONS(1072), + [aux_sym_cmd_identifier_token40] = ACTIONS(1072), [anon_sym_def] = ACTIONS(1070), [anon_sym_export_DASHenv] = ACTIONS(1070), [anon_sym_extern] = ACTIONS(1070), [anon_sym_module] = ACTIONS(1070), [anon_sym_use] = ACTIONS(1070), - [anon_sym_LPAREN] = ACTIONS(1070), - [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_LPAREN] = ACTIONS(1072), + [anon_sym_COMMA] = ACTIONS(1072), + [anon_sym_DOLLAR] = ACTIONS(1072), [anon_sym_error] = ACTIONS(1070), [anon_sym_list] = ACTIONS(1070), [anon_sym_DASH] = ACTIONS(1070), @@ -136815,127 +133183,538 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(1070), [anon_sym_new] = ACTIONS(1070), [anon_sym_as] = ACTIONS(1070), - [anon_sym_LPAREN2] = ACTIONS(2225), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1072), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1070), + [anon_sym_DOT] = ACTIONS(1070), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1072), [aux_sym__val_number_decimal_token1] = ACTIONS(1070), - [aux_sym__val_number_decimal_token2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1070), - [aux_sym__val_number_decimal_token4] = ACTIONS(1070), - [aux_sym__val_number_token1] = ACTIONS(1070), - [aux_sym__val_number_token2] = ACTIONS(1070), - [aux_sym__val_number_token3] = ACTIONS(1070), + [aux_sym__val_number_decimal_token2] = ACTIONS(1072), + [aux_sym__val_number_decimal_token3] = ACTIONS(1072), + [aux_sym__val_number_decimal_token4] = ACTIONS(1072), + [aux_sym__val_number_token1] = ACTIONS(1072), + [aux_sym__val_number_token2] = ACTIONS(1072), + [aux_sym__val_number_token3] = ACTIONS(1072), [anon_sym_DQUOTE] = ACTIONS(1072), [sym__str_single_quotes] = ACTIONS(1072), [sym__str_back_ticks] = ACTIONS(1072), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1072), + [aux_sym_record_entry_token1] = ACTIONS(1072), [anon_sym_PLUS] = ACTIONS(1070), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2227), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1072), + }, + [501] = { + [sym_comment] = STATE(501), + [anon_sym_export] = ACTIONS(2196), + [anon_sym_alias] = ACTIONS(2196), + [anon_sym_let] = ACTIONS(2196), + [anon_sym_let_DASHenv] = ACTIONS(2196), + [anon_sym_mut] = ACTIONS(2196), + [anon_sym_const] = ACTIONS(2196), + [aux_sym_cmd_identifier_token1] = ACTIONS(2196), + [aux_sym_cmd_identifier_token2] = ACTIONS(2196), + [aux_sym_cmd_identifier_token3] = ACTIONS(2196), + [aux_sym_cmd_identifier_token4] = ACTIONS(2196), + [aux_sym_cmd_identifier_token5] = ACTIONS(2196), + [aux_sym_cmd_identifier_token6] = ACTIONS(2196), + [aux_sym_cmd_identifier_token7] = ACTIONS(2196), + [aux_sym_cmd_identifier_token8] = ACTIONS(2196), + [aux_sym_cmd_identifier_token9] = ACTIONS(2196), + [aux_sym_cmd_identifier_token10] = ACTIONS(2196), + [aux_sym_cmd_identifier_token11] = ACTIONS(2196), + [aux_sym_cmd_identifier_token12] = ACTIONS(2196), + [aux_sym_cmd_identifier_token13] = ACTIONS(2196), + [aux_sym_cmd_identifier_token14] = ACTIONS(2196), + [aux_sym_cmd_identifier_token15] = ACTIONS(2196), + [aux_sym_cmd_identifier_token16] = ACTIONS(2196), + [aux_sym_cmd_identifier_token17] = ACTIONS(2196), + [aux_sym_cmd_identifier_token18] = ACTIONS(2196), + [aux_sym_cmd_identifier_token19] = ACTIONS(2196), + [aux_sym_cmd_identifier_token20] = ACTIONS(2196), + [aux_sym_cmd_identifier_token21] = ACTIONS(2196), + [aux_sym_cmd_identifier_token22] = ACTIONS(2196), + [aux_sym_cmd_identifier_token23] = ACTIONS(2196), + [aux_sym_cmd_identifier_token24] = ACTIONS(2196), + [aux_sym_cmd_identifier_token25] = ACTIONS(2196), + [aux_sym_cmd_identifier_token26] = ACTIONS(2196), + [aux_sym_cmd_identifier_token27] = ACTIONS(2196), + [aux_sym_cmd_identifier_token28] = ACTIONS(2196), + [aux_sym_cmd_identifier_token29] = ACTIONS(2196), + [aux_sym_cmd_identifier_token30] = ACTIONS(2196), + [aux_sym_cmd_identifier_token31] = ACTIONS(2196), + [aux_sym_cmd_identifier_token32] = ACTIONS(2196), + [aux_sym_cmd_identifier_token33] = ACTIONS(2196), + [aux_sym_cmd_identifier_token34] = ACTIONS(2196), + [aux_sym_cmd_identifier_token35] = ACTIONS(2196), + [aux_sym_cmd_identifier_token36] = ACTIONS(2196), + [anon_sym_true] = ACTIONS(2198), + [anon_sym_false] = ACTIONS(2198), + [anon_sym_null] = ACTIONS(2198), + [aux_sym_cmd_identifier_token38] = ACTIONS(2196), + [aux_sym_cmd_identifier_token39] = ACTIONS(2198), + [aux_sym_cmd_identifier_token40] = ACTIONS(2198), + [anon_sym_def] = ACTIONS(2196), + [anon_sym_export_DASHenv] = ACTIONS(2196), + [anon_sym_extern] = ACTIONS(2196), + [anon_sym_module] = ACTIONS(2196), + [anon_sym_use] = ACTIONS(2196), + [anon_sym_LPAREN] = ACTIONS(2198), + [anon_sym_DOLLAR] = ACTIONS(2198), + [anon_sym_error] = ACTIONS(2196), + [anon_sym_list] = ACTIONS(2196), + [anon_sym_DASH] = ACTIONS(2196), + [anon_sym_break] = ACTIONS(2196), + [anon_sym_continue] = ACTIONS(2196), + [anon_sym_for] = ACTIONS(2196), + [anon_sym_in] = ACTIONS(2196), + [anon_sym_loop] = ACTIONS(2196), + [anon_sym_make] = ACTIONS(2196), + [anon_sym_while] = ACTIONS(2196), + [anon_sym_do] = ACTIONS(2196), + [anon_sym_if] = ACTIONS(2196), + [anon_sym_else] = ACTIONS(2196), + [anon_sym_match] = ACTIONS(2196), + [anon_sym_RBRACE] = ACTIONS(2198), + [anon_sym_try] = ACTIONS(2196), + [anon_sym_catch] = ACTIONS(2196), + [anon_sym_return] = ACTIONS(2196), + [anon_sym_source] = ACTIONS(2196), + [anon_sym_source_DASHenv] = ACTIONS(2196), + [anon_sym_register] = ACTIONS(2196), + [anon_sym_hide] = ACTIONS(2196), + [anon_sym_hide_DASHenv] = ACTIONS(2196), + [anon_sym_overlay] = ACTIONS(2196), + [anon_sym_new] = ACTIONS(2196), + [anon_sym_as] = ACTIONS(2196), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2198), + [anon_sym_DOT_DOT2] = ACTIONS(2254), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2256), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2256), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2198), + [aux_sym__val_number_decimal_token1] = ACTIONS(2196), + [aux_sym__val_number_decimal_token2] = ACTIONS(2198), + [aux_sym__val_number_decimal_token3] = ACTIONS(2198), + [aux_sym__val_number_decimal_token4] = ACTIONS(2198), + [aux_sym__val_number_token1] = ACTIONS(2198), + [aux_sym__val_number_token2] = ACTIONS(2198), + [aux_sym__val_number_token3] = ACTIONS(2198), + [anon_sym_DQUOTE] = ACTIONS(2198), + [sym__str_single_quotes] = ACTIONS(2198), + [sym__str_back_ticks] = ACTIONS(2198), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2198), + [anon_sym_PLUS] = ACTIONS(2196), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2198), + }, + [502] = { + [sym_comment] = STATE(502), + [anon_sym_export] = ACTIONS(2277), + [anon_sym_alias] = ACTIONS(2277), + [anon_sym_let] = ACTIONS(2277), + [anon_sym_let_DASHenv] = ACTIONS(2277), + [anon_sym_mut] = ACTIONS(2277), + [anon_sym_const] = ACTIONS(2277), + [aux_sym_cmd_identifier_token1] = ACTIONS(2277), + [aux_sym_cmd_identifier_token2] = ACTIONS(2277), + [aux_sym_cmd_identifier_token3] = ACTIONS(2277), + [aux_sym_cmd_identifier_token4] = ACTIONS(2277), + [aux_sym_cmd_identifier_token5] = ACTIONS(2277), + [aux_sym_cmd_identifier_token6] = ACTIONS(2277), + [aux_sym_cmd_identifier_token7] = ACTIONS(2277), + [aux_sym_cmd_identifier_token8] = ACTIONS(2277), + [aux_sym_cmd_identifier_token9] = ACTIONS(2277), + [aux_sym_cmd_identifier_token10] = ACTIONS(2277), + [aux_sym_cmd_identifier_token11] = ACTIONS(2277), + [aux_sym_cmd_identifier_token12] = ACTIONS(2277), + [aux_sym_cmd_identifier_token13] = ACTIONS(2277), + [aux_sym_cmd_identifier_token14] = ACTIONS(2277), + [aux_sym_cmd_identifier_token15] = ACTIONS(2277), + [aux_sym_cmd_identifier_token16] = ACTIONS(2277), + [aux_sym_cmd_identifier_token17] = ACTIONS(2277), + [aux_sym_cmd_identifier_token18] = ACTIONS(2277), + [aux_sym_cmd_identifier_token19] = ACTIONS(2277), + [aux_sym_cmd_identifier_token20] = ACTIONS(2277), + [aux_sym_cmd_identifier_token21] = ACTIONS(2277), + [aux_sym_cmd_identifier_token22] = ACTIONS(2277), + [aux_sym_cmd_identifier_token23] = ACTIONS(2277), + [aux_sym_cmd_identifier_token24] = ACTIONS(2277), + [aux_sym_cmd_identifier_token25] = ACTIONS(2277), + [aux_sym_cmd_identifier_token26] = ACTIONS(2277), + [aux_sym_cmd_identifier_token27] = ACTIONS(2277), + [aux_sym_cmd_identifier_token28] = ACTIONS(2277), + [aux_sym_cmd_identifier_token29] = ACTIONS(2277), + [aux_sym_cmd_identifier_token30] = ACTIONS(2277), + [aux_sym_cmd_identifier_token31] = ACTIONS(2277), + [aux_sym_cmd_identifier_token32] = ACTIONS(2277), + [aux_sym_cmd_identifier_token33] = ACTIONS(2277), + [aux_sym_cmd_identifier_token34] = ACTIONS(2277), + [aux_sym_cmd_identifier_token35] = ACTIONS(2277), + [aux_sym_cmd_identifier_token36] = ACTIONS(2277), + [anon_sym_true] = ACTIONS(2279), + [anon_sym_false] = ACTIONS(2279), + [anon_sym_null] = ACTIONS(2279), + [aux_sym_cmd_identifier_token38] = ACTIONS(2277), + [aux_sym_cmd_identifier_token39] = ACTIONS(2279), + [aux_sym_cmd_identifier_token40] = ACTIONS(2279), + [anon_sym_def] = ACTIONS(2277), + [anon_sym_export_DASHenv] = ACTIONS(2277), + [anon_sym_extern] = ACTIONS(2277), + [anon_sym_module] = ACTIONS(2277), + [anon_sym_use] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(2277), + [anon_sym_DOLLAR] = ACTIONS(2279), + [anon_sym_error] = ACTIONS(2277), + [anon_sym_list] = ACTIONS(2277), + [anon_sym_DASH] = ACTIONS(2277), + [anon_sym_break] = ACTIONS(2277), + [anon_sym_continue] = ACTIONS(2277), + [anon_sym_for] = ACTIONS(2277), + [anon_sym_in] = ACTIONS(2277), + [anon_sym_loop] = ACTIONS(2277), + [anon_sym_make] = ACTIONS(2277), + [anon_sym_while] = ACTIONS(2277), + [anon_sym_do] = ACTIONS(2277), + [anon_sym_if] = ACTIONS(2277), + [anon_sym_else] = ACTIONS(2277), + [anon_sym_match] = ACTIONS(2277), + [anon_sym_RBRACE] = ACTIONS(2279), + [anon_sym_try] = ACTIONS(2277), + [anon_sym_catch] = ACTIONS(2277), + [anon_sym_return] = ACTIONS(2277), + [anon_sym_source] = ACTIONS(2277), + [anon_sym_source_DASHenv] = ACTIONS(2277), + [anon_sym_register] = ACTIONS(2277), + [anon_sym_hide] = ACTIONS(2277), + [anon_sym_hide_DASHenv] = ACTIONS(2277), + [anon_sym_overlay] = ACTIONS(2277), + [anon_sym_new] = ACTIONS(2277), + [anon_sym_as] = ACTIONS(2277), + [anon_sym_LPAREN2] = ACTIONS(1844), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2279), + [aux_sym__val_number_decimal_token1] = ACTIONS(2277), + [aux_sym__val_number_decimal_token2] = ACTIONS(2279), + [aux_sym__val_number_decimal_token3] = ACTIONS(2279), + [aux_sym__val_number_decimal_token4] = ACTIONS(2279), + [aux_sym__val_number_token1] = ACTIONS(2279), + [aux_sym__val_number_token2] = ACTIONS(2279), + [aux_sym__val_number_token3] = ACTIONS(2279), + [anon_sym_DQUOTE] = ACTIONS(2279), + [sym__str_single_quotes] = ACTIONS(2279), + [sym__str_back_ticks] = ACTIONS(2279), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2279), + [anon_sym_PLUS] = ACTIONS(2277), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1852), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2279), + }, + [503] = { + [sym_comment] = STATE(503), + [aux_sym__multiple_types_repeat1] = STATE(516), + [anon_sym_export] = ACTIONS(2341), + [anon_sym_alias] = ACTIONS(2341), + [anon_sym_let] = ACTIONS(2341), + [anon_sym_let_DASHenv] = ACTIONS(2341), + [anon_sym_mut] = ACTIONS(2341), + [anon_sym_const] = ACTIONS(2341), + [aux_sym_cmd_identifier_token1] = ACTIONS(2341), + [aux_sym_cmd_identifier_token2] = ACTIONS(2341), + [aux_sym_cmd_identifier_token3] = ACTIONS(2341), + [aux_sym_cmd_identifier_token4] = ACTIONS(2341), + [aux_sym_cmd_identifier_token5] = ACTIONS(2341), + [aux_sym_cmd_identifier_token6] = ACTIONS(2341), + [aux_sym_cmd_identifier_token7] = ACTIONS(2341), + [aux_sym_cmd_identifier_token8] = ACTIONS(2341), + [aux_sym_cmd_identifier_token9] = ACTIONS(2341), + [aux_sym_cmd_identifier_token10] = ACTIONS(2341), + [aux_sym_cmd_identifier_token11] = ACTIONS(2341), + [aux_sym_cmd_identifier_token12] = ACTIONS(2341), + [aux_sym_cmd_identifier_token13] = ACTIONS(2341), + [aux_sym_cmd_identifier_token14] = ACTIONS(2341), + [aux_sym_cmd_identifier_token15] = ACTIONS(2341), + [aux_sym_cmd_identifier_token16] = ACTIONS(2341), + [aux_sym_cmd_identifier_token17] = ACTIONS(2341), + [aux_sym_cmd_identifier_token18] = ACTIONS(2341), + [aux_sym_cmd_identifier_token19] = ACTIONS(2341), + [aux_sym_cmd_identifier_token20] = ACTIONS(2341), + [aux_sym_cmd_identifier_token21] = ACTIONS(2341), + [aux_sym_cmd_identifier_token22] = ACTIONS(2341), + [aux_sym_cmd_identifier_token23] = ACTIONS(2341), + [aux_sym_cmd_identifier_token24] = ACTIONS(2341), + [aux_sym_cmd_identifier_token25] = ACTIONS(2341), + [aux_sym_cmd_identifier_token26] = ACTIONS(2341), + [aux_sym_cmd_identifier_token27] = ACTIONS(2341), + [aux_sym_cmd_identifier_token28] = ACTIONS(2341), + [aux_sym_cmd_identifier_token29] = ACTIONS(2341), + [aux_sym_cmd_identifier_token30] = ACTIONS(2341), + [aux_sym_cmd_identifier_token31] = ACTIONS(2341), + [aux_sym_cmd_identifier_token32] = ACTIONS(2341), + [aux_sym_cmd_identifier_token33] = ACTIONS(2341), + [aux_sym_cmd_identifier_token34] = ACTIONS(2341), + [aux_sym_cmd_identifier_token35] = ACTIONS(2341), + [aux_sym_cmd_identifier_token36] = ACTIONS(2341), + [anon_sym_true] = ACTIONS(2341), + [anon_sym_false] = ACTIONS(2341), + [anon_sym_null] = ACTIONS(2341), + [aux_sym_cmd_identifier_token38] = ACTIONS(2341), + [aux_sym_cmd_identifier_token39] = ACTIONS(2341), + [aux_sym_cmd_identifier_token40] = ACTIONS(2341), + [anon_sym_def] = ACTIONS(2341), + [anon_sym_export_DASHenv] = ACTIONS(2341), + [anon_sym_extern] = ACTIONS(2341), + [anon_sym_module] = ACTIONS(2341), + [anon_sym_use] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(2341), + [anon_sym_DOLLAR] = ACTIONS(2341), + [anon_sym_error] = ACTIONS(2341), + [anon_sym_list] = ACTIONS(2341), + [anon_sym_DASH] = ACTIONS(2341), + [anon_sym_break] = ACTIONS(2341), + [anon_sym_continue] = ACTIONS(2341), + [anon_sym_for] = ACTIONS(2341), + [anon_sym_in] = ACTIONS(2341), + [anon_sym_loop] = ACTIONS(2341), + [anon_sym_make] = ACTIONS(2341), + [anon_sym_while] = ACTIONS(2341), + [anon_sym_do] = ACTIONS(2341), + [anon_sym_if] = ACTIONS(2341), + [anon_sym_else] = ACTIONS(2341), + [anon_sym_match] = ACTIONS(2341), + [anon_sym_RBRACE] = ACTIONS(2343), + [anon_sym_try] = ACTIONS(2341), + [anon_sym_catch] = ACTIONS(2341), + [anon_sym_return] = ACTIONS(2341), + [anon_sym_source] = ACTIONS(2341), + [anon_sym_source_DASHenv] = ACTIONS(2341), + [anon_sym_register] = ACTIONS(2341), + [anon_sym_hide] = ACTIONS(2341), + [anon_sym_hide_DASHenv] = ACTIONS(2341), + [anon_sym_overlay] = ACTIONS(2341), + [anon_sym_new] = ACTIONS(2341), + [anon_sym_as] = ACTIONS(2341), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2341), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2341), + [aux_sym__val_number_decimal_token1] = ACTIONS(2341), + [aux_sym__val_number_decimal_token2] = ACTIONS(2341), + [aux_sym__val_number_decimal_token3] = ACTIONS(2341), + [aux_sym__val_number_decimal_token4] = ACTIONS(2341), + [aux_sym__val_number_token1] = ACTIONS(2341), + [aux_sym__val_number_token2] = ACTIONS(2341), + [aux_sym__val_number_token3] = ACTIONS(2341), + [anon_sym_DQUOTE] = ACTIONS(2341), + [sym__str_single_quotes] = ACTIONS(2341), + [sym__str_back_ticks] = ACTIONS(2341), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2341), + [sym__entry_separator] = ACTIONS(2345), + [anon_sym_PLUS] = ACTIONS(2341), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2347), }, - [552] = { - [sym_comment] = STATE(552), - [anon_sym_export] = ACTIONS(1667), - [anon_sym_alias] = ACTIONS(1667), - [anon_sym_let] = ACTIONS(1667), - [anon_sym_let_DASHenv] = ACTIONS(1667), - [anon_sym_mut] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1667), - [aux_sym_cmd_identifier_token1] = ACTIONS(1667), - [aux_sym_cmd_identifier_token2] = ACTIONS(1667), - [aux_sym_cmd_identifier_token3] = ACTIONS(1667), - [aux_sym_cmd_identifier_token4] = ACTIONS(1667), - [aux_sym_cmd_identifier_token5] = ACTIONS(1667), - [aux_sym_cmd_identifier_token6] = ACTIONS(1667), - [aux_sym_cmd_identifier_token7] = ACTIONS(1667), - [aux_sym_cmd_identifier_token8] = ACTIONS(1667), - [aux_sym_cmd_identifier_token9] = ACTIONS(1667), - [aux_sym_cmd_identifier_token10] = ACTIONS(1667), - [aux_sym_cmd_identifier_token11] = ACTIONS(1667), - [aux_sym_cmd_identifier_token12] = ACTIONS(1667), - [aux_sym_cmd_identifier_token13] = ACTIONS(1667), - [aux_sym_cmd_identifier_token14] = ACTIONS(1667), - [aux_sym_cmd_identifier_token15] = ACTIONS(1667), - [aux_sym_cmd_identifier_token16] = ACTIONS(1667), - [aux_sym_cmd_identifier_token17] = ACTIONS(1667), - [aux_sym_cmd_identifier_token18] = ACTIONS(1667), - [aux_sym_cmd_identifier_token19] = ACTIONS(1667), - [aux_sym_cmd_identifier_token20] = ACTIONS(1667), - [aux_sym_cmd_identifier_token21] = ACTIONS(1667), - [aux_sym_cmd_identifier_token22] = ACTIONS(1667), - [aux_sym_cmd_identifier_token23] = ACTIONS(1667), - [aux_sym_cmd_identifier_token24] = ACTIONS(1667), - [aux_sym_cmd_identifier_token25] = ACTIONS(1667), - [aux_sym_cmd_identifier_token26] = ACTIONS(1667), - [aux_sym_cmd_identifier_token27] = ACTIONS(1667), - [aux_sym_cmd_identifier_token28] = ACTIONS(1667), - [aux_sym_cmd_identifier_token29] = ACTIONS(1667), - [aux_sym_cmd_identifier_token30] = ACTIONS(1667), - [aux_sym_cmd_identifier_token31] = ACTIONS(1667), - [aux_sym_cmd_identifier_token32] = ACTIONS(1667), - [aux_sym_cmd_identifier_token33] = ACTIONS(1667), - [aux_sym_cmd_identifier_token34] = ACTIONS(1667), - [aux_sym_cmd_identifier_token35] = ACTIONS(1667), - [aux_sym_cmd_identifier_token36] = ACTIONS(1667), - [anon_sym_true] = ACTIONS(1669), - [anon_sym_false] = ACTIONS(1669), - [anon_sym_null] = ACTIONS(1669), - [aux_sym_cmd_identifier_token38] = ACTIONS(1667), - [aux_sym_cmd_identifier_token39] = ACTIONS(1669), - [aux_sym_cmd_identifier_token40] = ACTIONS(1669), - [anon_sym_def] = ACTIONS(1667), - [anon_sym_export_DASHenv] = ACTIONS(1667), - [anon_sym_extern] = ACTIONS(1667), - [anon_sym_module] = ACTIONS(1667), - [anon_sym_use] = ACTIONS(1667), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_DOLLAR] = ACTIONS(1669), - [anon_sym_error] = ACTIONS(1667), - [anon_sym_list] = ACTIONS(1667), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_break] = ACTIONS(1667), - [anon_sym_continue] = ACTIONS(1667), - [anon_sym_for] = ACTIONS(1667), - [anon_sym_in] = ACTIONS(1667), - [anon_sym_loop] = ACTIONS(1667), - [anon_sym_make] = ACTIONS(1667), - [anon_sym_while] = ACTIONS(1667), - [anon_sym_do] = ACTIONS(1667), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_else] = ACTIONS(1667), - [anon_sym_match] = ACTIONS(1667), - [anon_sym_RBRACE] = ACTIONS(1669), - [anon_sym_try] = ACTIONS(1667), - [anon_sym_catch] = ACTIONS(1667), - [anon_sym_return] = ACTIONS(1667), - [anon_sym_source] = ACTIONS(1667), - [anon_sym_source_DASHenv] = ACTIONS(1667), - [anon_sym_register] = ACTIONS(1667), - [anon_sym_hide] = ACTIONS(1667), - [anon_sym_hide_DASHenv] = ACTIONS(1667), - [anon_sym_overlay] = ACTIONS(1667), - [anon_sym_new] = ACTIONS(1667), - [anon_sym_as] = ACTIONS(1667), - [anon_sym_LPAREN2] = ACTIONS(1669), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1669), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1669), - [aux_sym__val_number_decimal_token1] = ACTIONS(1667), - [aux_sym__val_number_decimal_token2] = ACTIONS(1669), - [aux_sym__val_number_decimal_token3] = ACTIONS(1669), - [aux_sym__val_number_decimal_token4] = ACTIONS(1669), - [aux_sym__val_number_token1] = ACTIONS(1669), - [aux_sym__val_number_token2] = ACTIONS(1669), - [aux_sym__val_number_token3] = ACTIONS(1669), - [anon_sym_DQUOTE] = ACTIONS(1669), - [sym__str_single_quotes] = ACTIONS(1669), - [sym__str_back_ticks] = ACTIONS(1669), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1669), - [anon_sym_PLUS] = ACTIONS(1667), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(247), + [504] = { + [sym_comment] = STATE(504), + [anon_sym_export] = ACTIONS(1058), + [anon_sym_alias] = ACTIONS(1058), + [anon_sym_let] = ACTIONS(1058), + [anon_sym_let_DASHenv] = ACTIONS(1058), + [anon_sym_mut] = ACTIONS(1058), + [anon_sym_const] = ACTIONS(1058), + [aux_sym_cmd_identifier_token1] = ACTIONS(1058), + [aux_sym_cmd_identifier_token2] = ACTIONS(1058), + [aux_sym_cmd_identifier_token3] = ACTIONS(1058), + [aux_sym_cmd_identifier_token4] = ACTIONS(1058), + [aux_sym_cmd_identifier_token5] = ACTIONS(1058), + [aux_sym_cmd_identifier_token6] = ACTIONS(1058), + [aux_sym_cmd_identifier_token7] = ACTIONS(1058), + [aux_sym_cmd_identifier_token8] = ACTIONS(1058), + [aux_sym_cmd_identifier_token9] = ACTIONS(1058), + [aux_sym_cmd_identifier_token10] = ACTIONS(1058), + [aux_sym_cmd_identifier_token11] = ACTIONS(1058), + [aux_sym_cmd_identifier_token12] = ACTIONS(1058), + [aux_sym_cmd_identifier_token13] = ACTIONS(1058), + [aux_sym_cmd_identifier_token14] = ACTIONS(1058), + [aux_sym_cmd_identifier_token15] = ACTIONS(1058), + [aux_sym_cmd_identifier_token16] = ACTIONS(1058), + [aux_sym_cmd_identifier_token17] = ACTIONS(1058), + [aux_sym_cmd_identifier_token18] = ACTIONS(1058), + [aux_sym_cmd_identifier_token19] = ACTIONS(1058), + [aux_sym_cmd_identifier_token20] = ACTIONS(1058), + [aux_sym_cmd_identifier_token21] = ACTIONS(1058), + [aux_sym_cmd_identifier_token22] = ACTIONS(1058), + [aux_sym_cmd_identifier_token23] = ACTIONS(1058), + [aux_sym_cmd_identifier_token24] = ACTIONS(1058), + [aux_sym_cmd_identifier_token25] = ACTIONS(1058), + [aux_sym_cmd_identifier_token26] = ACTIONS(1058), + [aux_sym_cmd_identifier_token27] = ACTIONS(1058), + [aux_sym_cmd_identifier_token28] = ACTIONS(1058), + [aux_sym_cmd_identifier_token29] = ACTIONS(1058), + [aux_sym_cmd_identifier_token30] = ACTIONS(1058), + [aux_sym_cmd_identifier_token31] = ACTIONS(1058), + [aux_sym_cmd_identifier_token32] = ACTIONS(1058), + [aux_sym_cmd_identifier_token33] = ACTIONS(1058), + [aux_sym_cmd_identifier_token34] = ACTIONS(1058), + [aux_sym_cmd_identifier_token35] = ACTIONS(1058), + [aux_sym_cmd_identifier_token36] = ACTIONS(1058), + [anon_sym_true] = ACTIONS(1060), + [anon_sym_false] = ACTIONS(1060), + [anon_sym_null] = ACTIONS(1060), + [aux_sym_cmd_identifier_token38] = ACTIONS(1058), + [aux_sym_cmd_identifier_token39] = ACTIONS(1060), + [aux_sym_cmd_identifier_token40] = ACTIONS(1060), + [anon_sym_def] = ACTIONS(1058), + [anon_sym_export_DASHenv] = ACTIONS(1058), + [anon_sym_extern] = ACTIONS(1058), + [anon_sym_module] = ACTIONS(1058), + [anon_sym_use] = ACTIONS(1058), + [anon_sym_LPAREN] = ACTIONS(1060), + [anon_sym_DOLLAR] = ACTIONS(1060), + [anon_sym_error] = ACTIONS(1058), + [anon_sym_list] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1058), + [anon_sym_break] = ACTIONS(1058), + [anon_sym_continue] = ACTIONS(1058), + [anon_sym_for] = ACTIONS(1058), + [anon_sym_in] = ACTIONS(1058), + [anon_sym_loop] = ACTIONS(1058), + [anon_sym_make] = ACTIONS(1058), + [anon_sym_while] = ACTIONS(1058), + [anon_sym_do] = ACTIONS(1058), + [anon_sym_if] = ACTIONS(1058), + [anon_sym_else] = ACTIONS(1058), + [anon_sym_match] = ACTIONS(1058), + [anon_sym_RBRACE] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1058), + [anon_sym_catch] = ACTIONS(1058), + [anon_sym_return] = ACTIONS(1058), + [anon_sym_source] = ACTIONS(1058), + [anon_sym_source_DASHenv] = ACTIONS(1058), + [anon_sym_register] = ACTIONS(1058), + [anon_sym_hide] = ACTIONS(1058), + [anon_sym_hide_DASHenv] = ACTIONS(1058), + [anon_sym_overlay] = ACTIONS(1058), + [anon_sym_new] = ACTIONS(1058), + [anon_sym_as] = ACTIONS(1058), + [anon_sym_QMARK2] = ACTIONS(1060), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1060), + [anon_sym_DOT] = ACTIONS(1058), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1060), + [aux_sym__val_number_decimal_token1] = ACTIONS(1058), + [aux_sym__val_number_decimal_token2] = ACTIONS(1060), + [aux_sym__val_number_decimal_token3] = ACTIONS(1060), + [aux_sym__val_number_decimal_token4] = ACTIONS(1060), + [aux_sym__val_number_token1] = ACTIONS(1060), + [aux_sym__val_number_token2] = ACTIONS(1060), + [aux_sym__val_number_token3] = ACTIONS(1060), + [anon_sym_DQUOTE] = ACTIONS(1060), + [sym__str_single_quotes] = ACTIONS(1060), + [sym__str_back_ticks] = ACTIONS(1060), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1060), + [anon_sym_PLUS] = ACTIONS(1058), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1060), }, - [553] = { - [sym_comment] = STATE(553), + [505] = { + [sym_comment] = STATE(505), + [anon_sym_export] = ACTIONS(1062), + [anon_sym_alias] = ACTIONS(1062), + [anon_sym_let] = ACTIONS(1062), + [anon_sym_let_DASHenv] = ACTIONS(1062), + [anon_sym_mut] = ACTIONS(1062), + [anon_sym_const] = ACTIONS(1062), + [aux_sym_cmd_identifier_token1] = ACTIONS(1062), + [aux_sym_cmd_identifier_token2] = ACTIONS(1062), + [aux_sym_cmd_identifier_token3] = ACTIONS(1062), + [aux_sym_cmd_identifier_token4] = ACTIONS(1062), + [aux_sym_cmd_identifier_token5] = ACTIONS(1062), + [aux_sym_cmd_identifier_token6] = ACTIONS(1062), + [aux_sym_cmd_identifier_token7] = ACTIONS(1062), + [aux_sym_cmd_identifier_token8] = ACTIONS(1062), + [aux_sym_cmd_identifier_token9] = ACTIONS(1062), + [aux_sym_cmd_identifier_token10] = ACTIONS(1062), + [aux_sym_cmd_identifier_token11] = ACTIONS(1062), + [aux_sym_cmd_identifier_token12] = ACTIONS(1062), + [aux_sym_cmd_identifier_token13] = ACTIONS(1062), + [aux_sym_cmd_identifier_token14] = ACTIONS(1062), + [aux_sym_cmd_identifier_token15] = ACTIONS(1062), + [aux_sym_cmd_identifier_token16] = ACTIONS(1062), + [aux_sym_cmd_identifier_token17] = ACTIONS(1062), + [aux_sym_cmd_identifier_token18] = ACTIONS(1062), + [aux_sym_cmd_identifier_token19] = ACTIONS(1062), + [aux_sym_cmd_identifier_token20] = ACTIONS(1062), + [aux_sym_cmd_identifier_token21] = ACTIONS(1062), + [aux_sym_cmd_identifier_token22] = ACTIONS(1062), + [aux_sym_cmd_identifier_token23] = ACTIONS(1062), + [aux_sym_cmd_identifier_token24] = ACTIONS(1062), + [aux_sym_cmd_identifier_token25] = ACTIONS(1062), + [aux_sym_cmd_identifier_token26] = ACTIONS(1062), + [aux_sym_cmd_identifier_token27] = ACTIONS(1062), + [aux_sym_cmd_identifier_token28] = ACTIONS(1062), + [aux_sym_cmd_identifier_token29] = ACTIONS(1062), + [aux_sym_cmd_identifier_token30] = ACTIONS(1062), + [aux_sym_cmd_identifier_token31] = ACTIONS(1062), + [aux_sym_cmd_identifier_token32] = ACTIONS(1062), + [aux_sym_cmd_identifier_token33] = ACTIONS(1062), + [aux_sym_cmd_identifier_token34] = ACTIONS(1062), + [aux_sym_cmd_identifier_token35] = ACTIONS(1062), + [aux_sym_cmd_identifier_token36] = ACTIONS(1062), + [anon_sym_true] = ACTIONS(1064), + [anon_sym_false] = ACTIONS(1064), + [anon_sym_null] = ACTIONS(1064), + [aux_sym_cmd_identifier_token38] = ACTIONS(1062), + [aux_sym_cmd_identifier_token39] = ACTIONS(1064), + [aux_sym_cmd_identifier_token40] = ACTIONS(1064), + [anon_sym_def] = ACTIONS(1062), + [anon_sym_export_DASHenv] = ACTIONS(1062), + [anon_sym_extern] = ACTIONS(1062), + [anon_sym_module] = ACTIONS(1062), + [anon_sym_use] = ACTIONS(1062), + [anon_sym_LPAREN] = ACTIONS(1064), + [anon_sym_DOLLAR] = ACTIONS(1064), + [anon_sym_error] = ACTIONS(1062), + [anon_sym_list] = ACTIONS(1062), + [anon_sym_DASH] = ACTIONS(1062), + [anon_sym_break] = ACTIONS(1062), + [anon_sym_continue] = ACTIONS(1062), + [anon_sym_for] = ACTIONS(1062), + [anon_sym_in] = ACTIONS(1062), + [anon_sym_loop] = ACTIONS(1062), + [anon_sym_make] = ACTIONS(1062), + [anon_sym_while] = ACTIONS(1062), + [anon_sym_do] = ACTIONS(1062), + [anon_sym_if] = ACTIONS(1062), + [anon_sym_else] = ACTIONS(1062), + [anon_sym_match] = ACTIONS(1062), + [anon_sym_RBRACE] = ACTIONS(1064), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_catch] = ACTIONS(1062), + [anon_sym_return] = ACTIONS(1062), + [anon_sym_source] = ACTIONS(1062), + [anon_sym_source_DASHenv] = ACTIONS(1062), + [anon_sym_register] = ACTIONS(1062), + [anon_sym_hide] = ACTIONS(1062), + [anon_sym_hide_DASHenv] = ACTIONS(1062), + [anon_sym_overlay] = ACTIONS(1062), + [anon_sym_new] = ACTIONS(1062), + [anon_sym_as] = ACTIONS(1062), + [anon_sym_QMARK2] = ACTIONS(1064), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1064), + [anon_sym_DOT] = ACTIONS(1062), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1064), + [aux_sym__val_number_decimal_token1] = ACTIONS(1062), + [aux_sym__val_number_decimal_token2] = ACTIONS(1064), + [aux_sym__val_number_decimal_token3] = ACTIONS(1064), + [aux_sym__val_number_decimal_token4] = ACTIONS(1064), + [aux_sym__val_number_token1] = ACTIONS(1064), + [aux_sym__val_number_token2] = ACTIONS(1064), + [aux_sym__val_number_token3] = ACTIONS(1064), + [anon_sym_DQUOTE] = ACTIONS(1064), + [sym__str_single_quotes] = ACTIONS(1064), + [sym__str_back_ticks] = ACTIONS(1064), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1064), + [anon_sym_PLUS] = ACTIONS(1062), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1064), + }, + [506] = { + [sym_comment] = STATE(506), [anon_sym_export] = ACTIONS(1038), [anon_sym_alias] = ACTIONS(1038), [anon_sym_let] = ACTIONS(1038), @@ -137033,1698 +133812,4377 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1040), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1040), [anon_sym_PLUS] = ACTIONS(1038), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1040), }, - [554] = { - [sym_comment] = STATE(554), - [aux_sym__multiple_types_repeat1] = STATE(504), - [anon_sym_export] = ACTIONS(2332), - [anon_sym_alias] = ACTIONS(2332), - [anon_sym_let] = ACTIONS(2332), - [anon_sym_let_DASHenv] = ACTIONS(2332), - [anon_sym_mut] = ACTIONS(2332), - [anon_sym_const] = ACTIONS(2332), - [aux_sym_cmd_identifier_token1] = ACTIONS(2332), - [aux_sym_cmd_identifier_token2] = ACTIONS(2332), - [aux_sym_cmd_identifier_token3] = ACTIONS(2332), - [aux_sym_cmd_identifier_token4] = ACTIONS(2332), - [aux_sym_cmd_identifier_token5] = ACTIONS(2332), - [aux_sym_cmd_identifier_token6] = ACTIONS(2332), - [aux_sym_cmd_identifier_token7] = ACTIONS(2332), - [aux_sym_cmd_identifier_token8] = ACTIONS(2332), - [aux_sym_cmd_identifier_token9] = ACTIONS(2332), - [aux_sym_cmd_identifier_token10] = ACTIONS(2332), - [aux_sym_cmd_identifier_token11] = ACTIONS(2332), - [aux_sym_cmd_identifier_token12] = ACTIONS(2332), - [aux_sym_cmd_identifier_token13] = ACTIONS(2332), - [aux_sym_cmd_identifier_token14] = ACTIONS(2332), - [aux_sym_cmd_identifier_token15] = ACTIONS(2332), - [aux_sym_cmd_identifier_token16] = ACTIONS(2332), - [aux_sym_cmd_identifier_token17] = ACTIONS(2332), - [aux_sym_cmd_identifier_token18] = ACTIONS(2332), - [aux_sym_cmd_identifier_token19] = ACTIONS(2332), - [aux_sym_cmd_identifier_token20] = ACTIONS(2332), - [aux_sym_cmd_identifier_token21] = ACTIONS(2332), - [aux_sym_cmd_identifier_token22] = ACTIONS(2332), - [aux_sym_cmd_identifier_token23] = ACTIONS(2332), - [aux_sym_cmd_identifier_token24] = ACTIONS(2332), - [aux_sym_cmd_identifier_token25] = ACTIONS(2332), - [aux_sym_cmd_identifier_token26] = ACTIONS(2332), - [aux_sym_cmd_identifier_token27] = ACTIONS(2332), - [aux_sym_cmd_identifier_token28] = ACTIONS(2332), - [aux_sym_cmd_identifier_token29] = ACTIONS(2332), - [aux_sym_cmd_identifier_token30] = ACTIONS(2332), - [aux_sym_cmd_identifier_token31] = ACTIONS(2332), - [aux_sym_cmd_identifier_token32] = ACTIONS(2332), - [aux_sym_cmd_identifier_token33] = ACTIONS(2332), - [aux_sym_cmd_identifier_token34] = ACTIONS(2332), - [aux_sym_cmd_identifier_token35] = ACTIONS(2332), - [aux_sym_cmd_identifier_token36] = ACTIONS(2332), - [anon_sym_true] = ACTIONS(2332), - [anon_sym_false] = ACTIONS(2332), - [anon_sym_null] = ACTIONS(2332), - [aux_sym_cmd_identifier_token38] = ACTIONS(2332), - [aux_sym_cmd_identifier_token39] = ACTIONS(2332), - [aux_sym_cmd_identifier_token40] = ACTIONS(2332), - [anon_sym_def] = ACTIONS(2332), - [anon_sym_export_DASHenv] = ACTIONS(2332), - [anon_sym_extern] = ACTIONS(2332), - [anon_sym_module] = ACTIONS(2332), - [anon_sym_use] = ACTIONS(2332), - [anon_sym_LPAREN] = ACTIONS(2332), - [anon_sym_DOLLAR] = ACTIONS(2332), - [anon_sym_error] = ACTIONS(2332), - [anon_sym_list] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2332), - [anon_sym_break] = ACTIONS(2332), - [anon_sym_continue] = ACTIONS(2332), - [anon_sym_for] = ACTIONS(2332), - [anon_sym_in] = ACTIONS(2332), - [anon_sym_loop] = ACTIONS(2332), - [anon_sym_make] = ACTIONS(2332), - [anon_sym_while] = ACTIONS(2332), - [anon_sym_do] = ACTIONS(2332), - [anon_sym_if] = ACTIONS(2332), - [anon_sym_else] = ACTIONS(2332), - [anon_sym_match] = ACTIONS(2332), - [anon_sym_RBRACE] = ACTIONS(2404), - [anon_sym_try] = ACTIONS(2332), - [anon_sym_catch] = ACTIONS(2332), - [anon_sym_return] = ACTIONS(2332), - [anon_sym_source] = ACTIONS(2332), - [anon_sym_source_DASHenv] = ACTIONS(2332), - [anon_sym_register] = ACTIONS(2332), - [anon_sym_hide] = ACTIONS(2332), - [anon_sym_hide_DASHenv] = ACTIONS(2332), - [anon_sym_overlay] = ACTIONS(2332), - [anon_sym_new] = ACTIONS(2332), - [anon_sym_as] = ACTIONS(2332), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2332), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2332), - [aux_sym__val_number_decimal_token1] = ACTIONS(2332), - [aux_sym__val_number_decimal_token2] = ACTIONS(2332), - [aux_sym__val_number_decimal_token3] = ACTIONS(2332), - [aux_sym__val_number_decimal_token4] = ACTIONS(2332), - [aux_sym__val_number_token1] = ACTIONS(2332), - [aux_sym__val_number_token2] = ACTIONS(2332), - [aux_sym__val_number_token3] = ACTIONS(2332), - [anon_sym_DQUOTE] = ACTIONS(2332), - [sym__str_single_quotes] = ACTIONS(2332), - [sym__str_back_ticks] = ACTIONS(2332), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2332), - [sym__entry_separator] = ACTIONS(2336), - [anon_sym_PLUS] = ACTIONS(2332), + [507] = { + [sym_comment] = STATE(507), + [anon_sym_export] = ACTIONS(2289), + [anon_sym_alias] = ACTIONS(2289), + [anon_sym_let] = ACTIONS(2289), + [anon_sym_let_DASHenv] = ACTIONS(2289), + [anon_sym_mut] = ACTIONS(2289), + [anon_sym_const] = ACTIONS(2289), + [aux_sym_cmd_identifier_token1] = ACTIONS(2289), + [aux_sym_cmd_identifier_token2] = ACTIONS(2289), + [aux_sym_cmd_identifier_token3] = ACTIONS(2289), + [aux_sym_cmd_identifier_token4] = ACTIONS(2289), + [aux_sym_cmd_identifier_token5] = ACTIONS(2289), + [aux_sym_cmd_identifier_token6] = ACTIONS(2289), + [aux_sym_cmd_identifier_token7] = ACTIONS(2289), + [aux_sym_cmd_identifier_token8] = ACTIONS(2289), + [aux_sym_cmd_identifier_token9] = ACTIONS(2289), + [aux_sym_cmd_identifier_token10] = ACTIONS(2289), + [aux_sym_cmd_identifier_token11] = ACTIONS(2289), + [aux_sym_cmd_identifier_token12] = ACTIONS(2289), + [aux_sym_cmd_identifier_token13] = ACTIONS(2289), + [aux_sym_cmd_identifier_token14] = ACTIONS(2289), + [aux_sym_cmd_identifier_token15] = ACTIONS(2289), + [aux_sym_cmd_identifier_token16] = ACTIONS(2289), + [aux_sym_cmd_identifier_token17] = ACTIONS(2289), + [aux_sym_cmd_identifier_token18] = ACTIONS(2289), + [aux_sym_cmd_identifier_token19] = ACTIONS(2289), + [aux_sym_cmd_identifier_token20] = ACTIONS(2289), + [aux_sym_cmd_identifier_token21] = ACTIONS(2289), + [aux_sym_cmd_identifier_token22] = ACTIONS(2289), + [aux_sym_cmd_identifier_token23] = ACTIONS(2289), + [aux_sym_cmd_identifier_token24] = ACTIONS(2289), + [aux_sym_cmd_identifier_token25] = ACTIONS(2289), + [aux_sym_cmd_identifier_token26] = ACTIONS(2289), + [aux_sym_cmd_identifier_token27] = ACTIONS(2289), + [aux_sym_cmd_identifier_token28] = ACTIONS(2289), + [aux_sym_cmd_identifier_token29] = ACTIONS(2289), + [aux_sym_cmd_identifier_token30] = ACTIONS(2289), + [aux_sym_cmd_identifier_token31] = ACTIONS(2289), + [aux_sym_cmd_identifier_token32] = ACTIONS(2289), + [aux_sym_cmd_identifier_token33] = ACTIONS(2289), + [aux_sym_cmd_identifier_token34] = ACTIONS(2289), + [aux_sym_cmd_identifier_token35] = ACTIONS(2289), + [aux_sym_cmd_identifier_token36] = ACTIONS(2289), + [anon_sym_true] = ACTIONS(2289), + [anon_sym_false] = ACTIONS(2289), + [anon_sym_null] = ACTIONS(2289), + [aux_sym_cmd_identifier_token38] = ACTIONS(2289), + [aux_sym_cmd_identifier_token39] = ACTIONS(2289), + [aux_sym_cmd_identifier_token40] = ACTIONS(2289), + [anon_sym_def] = ACTIONS(2289), + [anon_sym_export_DASHenv] = ACTIONS(2289), + [anon_sym_extern] = ACTIONS(2289), + [anon_sym_module] = ACTIONS(2289), + [anon_sym_use] = ACTIONS(2289), + [anon_sym_LPAREN] = ACTIONS(2289), + [anon_sym_DOLLAR] = ACTIONS(2289), + [anon_sym_error] = ACTIONS(2289), + [anon_sym_list] = ACTIONS(2289), + [anon_sym_DASH] = ACTIONS(2289), + [anon_sym_break] = ACTIONS(2289), + [anon_sym_continue] = ACTIONS(2289), + [anon_sym_for] = ACTIONS(2289), + [anon_sym_in] = ACTIONS(2289), + [anon_sym_loop] = ACTIONS(2289), + [anon_sym_make] = ACTIONS(2289), + [anon_sym_while] = ACTIONS(2289), + [anon_sym_do] = ACTIONS(2289), + [anon_sym_if] = ACTIONS(2289), + [anon_sym_else] = ACTIONS(2289), + [anon_sym_match] = ACTIONS(2289), + [anon_sym_RBRACE] = ACTIONS(2291), + [anon_sym_try] = ACTIONS(2289), + [anon_sym_catch] = ACTIONS(2289), + [anon_sym_return] = ACTIONS(2289), + [anon_sym_source] = ACTIONS(2289), + [anon_sym_source_DASHenv] = ACTIONS(2289), + [anon_sym_register] = ACTIONS(2289), + [anon_sym_hide] = ACTIONS(2289), + [anon_sym_hide_DASHenv] = ACTIONS(2289), + [anon_sym_overlay] = ACTIONS(2289), + [anon_sym_new] = ACTIONS(2289), + [anon_sym_as] = ACTIONS(2289), + [anon_sym_LPAREN2] = ACTIONS(2291), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2291), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2289), + [aux_sym__val_number_decimal_token1] = ACTIONS(2289), + [aux_sym__val_number_decimal_token2] = ACTIONS(2289), + [aux_sym__val_number_decimal_token3] = ACTIONS(2289), + [aux_sym__val_number_decimal_token4] = ACTIONS(2289), + [aux_sym__val_number_token1] = ACTIONS(2289), + [aux_sym__val_number_token2] = ACTIONS(2289), + [aux_sym__val_number_token3] = ACTIONS(2289), + [anon_sym_DQUOTE] = ACTIONS(2291), + [sym__str_single_quotes] = ACTIONS(2291), + [sym__str_back_ticks] = ACTIONS(2291), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2291), + [anon_sym_PLUS] = ACTIONS(2289), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2289), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2291), }, - [555] = { - [sym_comment] = STATE(555), - [aux_sym__multiple_types_repeat1] = STATE(504), - [anon_sym_export] = ACTIONS(2332), - [anon_sym_alias] = ACTIONS(2332), - [anon_sym_let] = ACTIONS(2332), - [anon_sym_let_DASHenv] = ACTIONS(2332), - [anon_sym_mut] = ACTIONS(2332), - [anon_sym_const] = ACTIONS(2332), - [aux_sym_cmd_identifier_token1] = ACTIONS(2332), - [aux_sym_cmd_identifier_token2] = ACTIONS(2332), - [aux_sym_cmd_identifier_token3] = ACTIONS(2332), - [aux_sym_cmd_identifier_token4] = ACTIONS(2332), - [aux_sym_cmd_identifier_token5] = ACTIONS(2332), - [aux_sym_cmd_identifier_token6] = ACTIONS(2332), - [aux_sym_cmd_identifier_token7] = ACTIONS(2332), - [aux_sym_cmd_identifier_token8] = ACTIONS(2332), - [aux_sym_cmd_identifier_token9] = ACTIONS(2332), - [aux_sym_cmd_identifier_token10] = ACTIONS(2332), - [aux_sym_cmd_identifier_token11] = ACTIONS(2332), - [aux_sym_cmd_identifier_token12] = ACTIONS(2332), - [aux_sym_cmd_identifier_token13] = ACTIONS(2332), - [aux_sym_cmd_identifier_token14] = ACTIONS(2332), - [aux_sym_cmd_identifier_token15] = ACTIONS(2332), - [aux_sym_cmd_identifier_token16] = ACTIONS(2332), - [aux_sym_cmd_identifier_token17] = ACTIONS(2332), - [aux_sym_cmd_identifier_token18] = ACTIONS(2332), - [aux_sym_cmd_identifier_token19] = ACTIONS(2332), - [aux_sym_cmd_identifier_token20] = ACTIONS(2332), - [aux_sym_cmd_identifier_token21] = ACTIONS(2332), - [aux_sym_cmd_identifier_token22] = ACTIONS(2332), - [aux_sym_cmd_identifier_token23] = ACTIONS(2332), - [aux_sym_cmd_identifier_token24] = ACTIONS(2332), - [aux_sym_cmd_identifier_token25] = ACTIONS(2332), - [aux_sym_cmd_identifier_token26] = ACTIONS(2332), - [aux_sym_cmd_identifier_token27] = ACTIONS(2332), - [aux_sym_cmd_identifier_token28] = ACTIONS(2332), - [aux_sym_cmd_identifier_token29] = ACTIONS(2332), - [aux_sym_cmd_identifier_token30] = ACTIONS(2332), - [aux_sym_cmd_identifier_token31] = ACTIONS(2332), - [aux_sym_cmd_identifier_token32] = ACTIONS(2332), - [aux_sym_cmd_identifier_token33] = ACTIONS(2332), - [aux_sym_cmd_identifier_token34] = ACTIONS(2332), - [aux_sym_cmd_identifier_token35] = ACTIONS(2332), - [aux_sym_cmd_identifier_token36] = ACTIONS(2332), - [anon_sym_true] = ACTIONS(2332), - [anon_sym_false] = ACTIONS(2332), - [anon_sym_null] = ACTIONS(2332), - [aux_sym_cmd_identifier_token38] = ACTIONS(2332), - [aux_sym_cmd_identifier_token39] = ACTIONS(2332), - [aux_sym_cmd_identifier_token40] = ACTIONS(2332), - [anon_sym_def] = ACTIONS(2332), - [anon_sym_export_DASHenv] = ACTIONS(2332), - [anon_sym_extern] = ACTIONS(2332), - [anon_sym_module] = ACTIONS(2332), - [anon_sym_use] = ACTIONS(2332), - [anon_sym_LPAREN] = ACTIONS(2332), - [anon_sym_DOLLAR] = ACTIONS(2332), - [anon_sym_error] = ACTIONS(2332), - [anon_sym_list] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2332), - [anon_sym_break] = ACTIONS(2332), - [anon_sym_continue] = ACTIONS(2332), - [anon_sym_for] = ACTIONS(2332), - [anon_sym_in] = ACTIONS(2332), - [anon_sym_loop] = ACTIONS(2332), - [anon_sym_make] = ACTIONS(2332), - [anon_sym_while] = ACTIONS(2332), - [anon_sym_do] = ACTIONS(2332), - [anon_sym_if] = ACTIONS(2332), - [anon_sym_else] = ACTIONS(2332), - [anon_sym_match] = ACTIONS(2332), - [anon_sym_RBRACE] = ACTIONS(2406), - [anon_sym_try] = ACTIONS(2332), - [anon_sym_catch] = ACTIONS(2332), - [anon_sym_return] = ACTIONS(2332), - [anon_sym_source] = ACTIONS(2332), - [anon_sym_source_DASHenv] = ACTIONS(2332), - [anon_sym_register] = ACTIONS(2332), - [anon_sym_hide] = ACTIONS(2332), - [anon_sym_hide_DASHenv] = ACTIONS(2332), - [anon_sym_overlay] = ACTIONS(2332), - [anon_sym_new] = ACTIONS(2332), - [anon_sym_as] = ACTIONS(2332), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2332), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2332), - [aux_sym__val_number_decimal_token1] = ACTIONS(2332), - [aux_sym__val_number_decimal_token2] = ACTIONS(2332), - [aux_sym__val_number_decimal_token3] = ACTIONS(2332), - [aux_sym__val_number_decimal_token4] = ACTIONS(2332), - [aux_sym__val_number_token1] = ACTIONS(2332), - [aux_sym__val_number_token2] = ACTIONS(2332), - [aux_sym__val_number_token3] = ACTIONS(2332), - [anon_sym_DQUOTE] = ACTIONS(2332), - [sym__str_single_quotes] = ACTIONS(2332), - [sym__str_back_ticks] = ACTIONS(2332), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2332), - [sym__entry_separator] = ACTIONS(2336), - [anon_sym_PLUS] = ACTIONS(2332), + [508] = { + [sym_comment] = STATE(508), + [aux_sym__multiple_types_repeat1] = STATE(515), + [anon_sym_export] = ACTIONS(2349), + [anon_sym_alias] = ACTIONS(2349), + [anon_sym_let] = ACTIONS(2349), + [anon_sym_let_DASHenv] = ACTIONS(2349), + [anon_sym_mut] = ACTIONS(2349), + [anon_sym_const] = ACTIONS(2349), + [aux_sym_cmd_identifier_token1] = ACTIONS(2349), + [aux_sym_cmd_identifier_token2] = ACTIONS(2349), + [aux_sym_cmd_identifier_token3] = ACTIONS(2349), + [aux_sym_cmd_identifier_token4] = ACTIONS(2349), + [aux_sym_cmd_identifier_token5] = ACTIONS(2349), + [aux_sym_cmd_identifier_token6] = ACTIONS(2349), + [aux_sym_cmd_identifier_token7] = ACTIONS(2349), + [aux_sym_cmd_identifier_token8] = ACTIONS(2349), + [aux_sym_cmd_identifier_token9] = ACTIONS(2349), + [aux_sym_cmd_identifier_token10] = ACTIONS(2349), + [aux_sym_cmd_identifier_token11] = ACTIONS(2349), + [aux_sym_cmd_identifier_token12] = ACTIONS(2349), + [aux_sym_cmd_identifier_token13] = ACTIONS(2349), + [aux_sym_cmd_identifier_token14] = ACTIONS(2349), + [aux_sym_cmd_identifier_token15] = ACTIONS(2349), + [aux_sym_cmd_identifier_token16] = ACTIONS(2349), + [aux_sym_cmd_identifier_token17] = ACTIONS(2349), + [aux_sym_cmd_identifier_token18] = ACTIONS(2349), + [aux_sym_cmd_identifier_token19] = ACTIONS(2349), + [aux_sym_cmd_identifier_token20] = ACTIONS(2349), + [aux_sym_cmd_identifier_token21] = ACTIONS(2349), + [aux_sym_cmd_identifier_token22] = ACTIONS(2349), + [aux_sym_cmd_identifier_token23] = ACTIONS(2349), + [aux_sym_cmd_identifier_token24] = ACTIONS(2349), + [aux_sym_cmd_identifier_token25] = ACTIONS(2349), + [aux_sym_cmd_identifier_token26] = ACTIONS(2349), + [aux_sym_cmd_identifier_token27] = ACTIONS(2349), + [aux_sym_cmd_identifier_token28] = ACTIONS(2349), + [aux_sym_cmd_identifier_token29] = ACTIONS(2349), + [aux_sym_cmd_identifier_token30] = ACTIONS(2349), + [aux_sym_cmd_identifier_token31] = ACTIONS(2349), + [aux_sym_cmd_identifier_token32] = ACTIONS(2349), + [aux_sym_cmd_identifier_token33] = ACTIONS(2349), + [aux_sym_cmd_identifier_token34] = ACTIONS(2349), + [aux_sym_cmd_identifier_token35] = ACTIONS(2349), + [aux_sym_cmd_identifier_token36] = ACTIONS(2349), + [anon_sym_true] = ACTIONS(2349), + [anon_sym_false] = ACTIONS(2349), + [anon_sym_null] = ACTIONS(2349), + [aux_sym_cmd_identifier_token38] = ACTIONS(2349), + [aux_sym_cmd_identifier_token39] = ACTIONS(2349), + [aux_sym_cmd_identifier_token40] = ACTIONS(2349), + [anon_sym_def] = ACTIONS(2349), + [anon_sym_export_DASHenv] = ACTIONS(2349), + [anon_sym_extern] = ACTIONS(2349), + [anon_sym_module] = ACTIONS(2349), + [anon_sym_use] = ACTIONS(2349), + [anon_sym_LPAREN] = ACTIONS(2349), + [anon_sym_DOLLAR] = ACTIONS(2349), + [anon_sym_error] = ACTIONS(2349), + [anon_sym_list] = ACTIONS(2349), + [anon_sym_DASH] = ACTIONS(2349), + [anon_sym_break] = ACTIONS(2349), + [anon_sym_continue] = ACTIONS(2349), + [anon_sym_for] = ACTIONS(2349), + [anon_sym_in] = ACTIONS(2349), + [anon_sym_loop] = ACTIONS(2349), + [anon_sym_make] = ACTIONS(2349), + [anon_sym_while] = ACTIONS(2349), + [anon_sym_do] = ACTIONS(2349), + [anon_sym_if] = ACTIONS(2349), + [anon_sym_else] = ACTIONS(2349), + [anon_sym_match] = ACTIONS(2349), + [anon_sym_RBRACE] = ACTIONS(2351), + [anon_sym_try] = ACTIONS(2349), + [anon_sym_catch] = ACTIONS(2349), + [anon_sym_return] = ACTIONS(2349), + [anon_sym_source] = ACTIONS(2349), + [anon_sym_source_DASHenv] = ACTIONS(2349), + [anon_sym_register] = ACTIONS(2349), + [anon_sym_hide] = ACTIONS(2349), + [anon_sym_hide_DASHenv] = ACTIONS(2349), + [anon_sym_overlay] = ACTIONS(2349), + [anon_sym_new] = ACTIONS(2349), + [anon_sym_as] = ACTIONS(2349), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2349), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2349), + [aux_sym__val_number_decimal_token1] = ACTIONS(2349), + [aux_sym__val_number_decimal_token2] = ACTIONS(2349), + [aux_sym__val_number_decimal_token3] = ACTIONS(2349), + [aux_sym__val_number_decimal_token4] = ACTIONS(2349), + [aux_sym__val_number_token1] = ACTIONS(2349), + [aux_sym__val_number_token2] = ACTIONS(2349), + [aux_sym__val_number_token3] = ACTIONS(2349), + [anon_sym_DQUOTE] = ACTIONS(2349), + [sym__str_single_quotes] = ACTIONS(2349), + [sym__str_back_ticks] = ACTIONS(2349), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2349), + [sym__entry_separator] = ACTIONS(2345), + [anon_sym_PLUS] = ACTIONS(2349), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2353), }, - [556] = { - [sym_comment] = STATE(556), - [anon_sym_export] = ACTIONS(2305), - [anon_sym_alias] = ACTIONS(2305), - [anon_sym_let] = ACTIONS(2305), - [anon_sym_let_DASHenv] = ACTIONS(2305), - [anon_sym_mut] = ACTIONS(2305), - [anon_sym_const] = ACTIONS(2305), - [aux_sym_cmd_identifier_token1] = ACTIONS(2305), - [aux_sym_cmd_identifier_token2] = ACTIONS(2305), - [aux_sym_cmd_identifier_token3] = ACTIONS(2305), - [aux_sym_cmd_identifier_token4] = ACTIONS(2305), - [aux_sym_cmd_identifier_token5] = ACTIONS(2305), - [aux_sym_cmd_identifier_token6] = ACTIONS(2305), - [aux_sym_cmd_identifier_token7] = ACTIONS(2305), - [aux_sym_cmd_identifier_token8] = ACTIONS(2305), - [aux_sym_cmd_identifier_token9] = ACTIONS(2305), - [aux_sym_cmd_identifier_token10] = ACTIONS(2305), - [aux_sym_cmd_identifier_token11] = ACTIONS(2305), - [aux_sym_cmd_identifier_token12] = ACTIONS(2305), - [aux_sym_cmd_identifier_token13] = ACTIONS(2305), - [aux_sym_cmd_identifier_token14] = ACTIONS(2305), - [aux_sym_cmd_identifier_token15] = ACTIONS(2305), - [aux_sym_cmd_identifier_token16] = ACTIONS(2305), - [aux_sym_cmd_identifier_token17] = ACTIONS(2305), - [aux_sym_cmd_identifier_token18] = ACTIONS(2305), - [aux_sym_cmd_identifier_token19] = ACTIONS(2305), - [aux_sym_cmd_identifier_token20] = ACTIONS(2305), - [aux_sym_cmd_identifier_token21] = ACTIONS(2305), - [aux_sym_cmd_identifier_token22] = ACTIONS(2305), - [aux_sym_cmd_identifier_token23] = ACTIONS(2305), - [aux_sym_cmd_identifier_token24] = ACTIONS(2305), - [aux_sym_cmd_identifier_token25] = ACTIONS(2305), - [aux_sym_cmd_identifier_token26] = ACTIONS(2305), - [aux_sym_cmd_identifier_token27] = ACTIONS(2305), - [aux_sym_cmd_identifier_token28] = ACTIONS(2305), - [aux_sym_cmd_identifier_token29] = ACTIONS(2305), - [aux_sym_cmd_identifier_token30] = ACTIONS(2305), - [aux_sym_cmd_identifier_token31] = ACTIONS(2305), - [aux_sym_cmd_identifier_token32] = ACTIONS(2305), - [aux_sym_cmd_identifier_token33] = ACTIONS(2305), - [aux_sym_cmd_identifier_token34] = ACTIONS(2305), - [aux_sym_cmd_identifier_token35] = ACTIONS(2305), - [aux_sym_cmd_identifier_token36] = ACTIONS(2305), - [anon_sym_true] = ACTIONS(2305), - [anon_sym_false] = ACTIONS(2305), - [anon_sym_null] = ACTIONS(2305), - [aux_sym_cmd_identifier_token38] = ACTIONS(2305), - [aux_sym_cmd_identifier_token39] = ACTIONS(2305), - [aux_sym_cmd_identifier_token40] = ACTIONS(2305), - [anon_sym_def] = ACTIONS(2305), - [anon_sym_export_DASHenv] = ACTIONS(2305), - [anon_sym_extern] = ACTIONS(2305), - [anon_sym_module] = ACTIONS(2305), - [anon_sym_use] = ACTIONS(2305), - [anon_sym_RBRACK] = ACTIONS(2305), - [anon_sym_LPAREN] = ACTIONS(2305), - [anon_sym_DOLLAR] = ACTIONS(2305), - [anon_sym_error] = ACTIONS(2305), - [anon_sym_list] = ACTIONS(2305), - [anon_sym_DASH] = ACTIONS(2305), - [anon_sym_break] = ACTIONS(2305), - [anon_sym_continue] = ACTIONS(2305), - [anon_sym_for] = ACTIONS(2305), - [anon_sym_in] = ACTIONS(2305), - [anon_sym_loop] = ACTIONS(2305), - [anon_sym_make] = ACTIONS(2305), - [anon_sym_while] = ACTIONS(2305), - [anon_sym_do] = ACTIONS(2305), - [anon_sym_if] = ACTIONS(2305), - [anon_sym_else] = ACTIONS(2305), - [anon_sym_match] = ACTIONS(2305), + [509] = { + [sym_comment] = STATE(509), + [anon_sym_export] = ACTIONS(1054), + [anon_sym_alias] = ACTIONS(1054), + [anon_sym_let] = ACTIONS(1054), + [anon_sym_let_DASHenv] = ACTIONS(1054), + [anon_sym_mut] = ACTIONS(1054), + [anon_sym_const] = ACTIONS(1054), + [aux_sym_cmd_identifier_token1] = ACTIONS(1054), + [aux_sym_cmd_identifier_token2] = ACTIONS(1054), + [aux_sym_cmd_identifier_token3] = ACTIONS(1054), + [aux_sym_cmd_identifier_token4] = ACTIONS(1054), + [aux_sym_cmd_identifier_token5] = ACTIONS(1054), + [aux_sym_cmd_identifier_token6] = ACTIONS(1054), + [aux_sym_cmd_identifier_token7] = ACTIONS(1054), + [aux_sym_cmd_identifier_token8] = ACTIONS(1054), + [aux_sym_cmd_identifier_token9] = ACTIONS(1054), + [aux_sym_cmd_identifier_token10] = ACTIONS(1054), + [aux_sym_cmd_identifier_token11] = ACTIONS(1054), + [aux_sym_cmd_identifier_token12] = ACTIONS(1054), + [aux_sym_cmd_identifier_token13] = ACTIONS(1054), + [aux_sym_cmd_identifier_token14] = ACTIONS(1054), + [aux_sym_cmd_identifier_token15] = ACTIONS(1054), + [aux_sym_cmd_identifier_token16] = ACTIONS(1054), + [aux_sym_cmd_identifier_token17] = ACTIONS(1054), + [aux_sym_cmd_identifier_token18] = ACTIONS(1054), + [aux_sym_cmd_identifier_token19] = ACTIONS(1054), + [aux_sym_cmd_identifier_token20] = ACTIONS(1054), + [aux_sym_cmd_identifier_token21] = ACTIONS(1054), + [aux_sym_cmd_identifier_token22] = ACTIONS(1054), + [aux_sym_cmd_identifier_token23] = ACTIONS(1054), + [aux_sym_cmd_identifier_token24] = ACTIONS(1054), + [aux_sym_cmd_identifier_token25] = ACTIONS(1054), + [aux_sym_cmd_identifier_token26] = ACTIONS(1054), + [aux_sym_cmd_identifier_token27] = ACTIONS(1054), + [aux_sym_cmd_identifier_token28] = ACTIONS(1054), + [aux_sym_cmd_identifier_token29] = ACTIONS(1054), + [aux_sym_cmd_identifier_token30] = ACTIONS(1054), + [aux_sym_cmd_identifier_token31] = ACTIONS(1054), + [aux_sym_cmd_identifier_token32] = ACTIONS(1054), + [aux_sym_cmd_identifier_token33] = ACTIONS(1054), + [aux_sym_cmd_identifier_token34] = ACTIONS(1054), + [aux_sym_cmd_identifier_token35] = ACTIONS(1054), + [aux_sym_cmd_identifier_token36] = ACTIONS(1054), + [anon_sym_true] = ACTIONS(1056), + [anon_sym_false] = ACTIONS(1056), + [anon_sym_null] = ACTIONS(1056), + [aux_sym_cmd_identifier_token38] = ACTIONS(1054), + [aux_sym_cmd_identifier_token39] = ACTIONS(1056), + [aux_sym_cmd_identifier_token40] = ACTIONS(1056), + [anon_sym_def] = ACTIONS(1054), + [anon_sym_export_DASHenv] = ACTIONS(1054), + [anon_sym_extern] = ACTIONS(1054), + [anon_sym_module] = ACTIONS(1054), + [anon_sym_use] = ACTIONS(1054), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_DOLLAR] = ACTIONS(1056), + [anon_sym_error] = ACTIONS(1054), + [anon_sym_list] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_break] = ACTIONS(1054), + [anon_sym_continue] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1054), + [anon_sym_in] = ACTIONS(1054), + [anon_sym_loop] = ACTIONS(1054), + [anon_sym_make] = ACTIONS(1054), + [anon_sym_while] = ACTIONS(1054), + [anon_sym_do] = ACTIONS(1054), + [anon_sym_if] = ACTIONS(1054), + [anon_sym_else] = ACTIONS(1054), + [anon_sym_match] = ACTIONS(1054), + [anon_sym_RBRACE] = ACTIONS(1056), + [anon_sym_try] = ACTIONS(1054), + [anon_sym_catch] = ACTIONS(1054), + [anon_sym_return] = ACTIONS(1054), + [anon_sym_source] = ACTIONS(1054), + [anon_sym_source_DASHenv] = ACTIONS(1054), + [anon_sym_register] = ACTIONS(1054), + [anon_sym_hide] = ACTIONS(1054), + [anon_sym_hide_DASHenv] = ACTIONS(1054), + [anon_sym_overlay] = ACTIONS(1054), + [anon_sym_new] = ACTIONS(1054), + [anon_sym_as] = ACTIONS(1054), + [anon_sym_QMARK2] = ACTIONS(1056), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1056), + [anon_sym_DOT] = ACTIONS(1054), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1056), + [aux_sym__val_number_decimal_token1] = ACTIONS(1054), + [aux_sym__val_number_decimal_token2] = ACTIONS(1056), + [aux_sym__val_number_decimal_token3] = ACTIONS(1056), + [aux_sym__val_number_decimal_token4] = ACTIONS(1056), + [aux_sym__val_number_token1] = ACTIONS(1056), + [aux_sym__val_number_token2] = ACTIONS(1056), + [aux_sym__val_number_token3] = ACTIONS(1056), + [anon_sym_DQUOTE] = ACTIONS(1056), + [sym__str_single_quotes] = ACTIONS(1056), + [sym__str_back_ticks] = ACTIONS(1056), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1056), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1056), + }, + [510] = { + [sym_comment] = STATE(510), + [anon_sym_export] = ACTIONS(2281), + [anon_sym_alias] = ACTIONS(2281), + [anon_sym_let] = ACTIONS(2281), + [anon_sym_let_DASHenv] = ACTIONS(2281), + [anon_sym_mut] = ACTIONS(2281), + [anon_sym_const] = ACTIONS(2281), + [aux_sym_cmd_identifier_token1] = ACTIONS(2281), + [aux_sym_cmd_identifier_token2] = ACTIONS(2281), + [aux_sym_cmd_identifier_token3] = ACTIONS(2281), + [aux_sym_cmd_identifier_token4] = ACTIONS(2281), + [aux_sym_cmd_identifier_token5] = ACTIONS(2281), + [aux_sym_cmd_identifier_token6] = ACTIONS(2281), + [aux_sym_cmd_identifier_token7] = ACTIONS(2281), + [aux_sym_cmd_identifier_token8] = ACTIONS(2281), + [aux_sym_cmd_identifier_token9] = ACTIONS(2281), + [aux_sym_cmd_identifier_token10] = ACTIONS(2281), + [aux_sym_cmd_identifier_token11] = ACTIONS(2281), + [aux_sym_cmd_identifier_token12] = ACTIONS(2281), + [aux_sym_cmd_identifier_token13] = ACTIONS(2281), + [aux_sym_cmd_identifier_token14] = ACTIONS(2281), + [aux_sym_cmd_identifier_token15] = ACTIONS(2281), + [aux_sym_cmd_identifier_token16] = ACTIONS(2281), + [aux_sym_cmd_identifier_token17] = ACTIONS(2281), + [aux_sym_cmd_identifier_token18] = ACTIONS(2281), + [aux_sym_cmd_identifier_token19] = ACTIONS(2281), + [aux_sym_cmd_identifier_token20] = ACTIONS(2281), + [aux_sym_cmd_identifier_token21] = ACTIONS(2281), + [aux_sym_cmd_identifier_token22] = ACTIONS(2281), + [aux_sym_cmd_identifier_token23] = ACTIONS(2281), + [aux_sym_cmd_identifier_token24] = ACTIONS(2281), + [aux_sym_cmd_identifier_token25] = ACTIONS(2281), + [aux_sym_cmd_identifier_token26] = ACTIONS(2281), + [aux_sym_cmd_identifier_token27] = ACTIONS(2281), + [aux_sym_cmd_identifier_token28] = ACTIONS(2281), + [aux_sym_cmd_identifier_token29] = ACTIONS(2281), + [aux_sym_cmd_identifier_token30] = ACTIONS(2281), + [aux_sym_cmd_identifier_token31] = ACTIONS(2281), + [aux_sym_cmd_identifier_token32] = ACTIONS(2281), + [aux_sym_cmd_identifier_token33] = ACTIONS(2281), + [aux_sym_cmd_identifier_token34] = ACTIONS(2281), + [aux_sym_cmd_identifier_token35] = ACTIONS(2281), + [aux_sym_cmd_identifier_token36] = ACTIONS(2281), + [anon_sym_true] = ACTIONS(2281), + [anon_sym_false] = ACTIONS(2281), + [anon_sym_null] = ACTIONS(2281), + [aux_sym_cmd_identifier_token38] = ACTIONS(2281), + [aux_sym_cmd_identifier_token39] = ACTIONS(2281), + [aux_sym_cmd_identifier_token40] = ACTIONS(2281), + [anon_sym_def] = ACTIONS(2281), + [anon_sym_export_DASHenv] = ACTIONS(2281), + [anon_sym_extern] = ACTIONS(2281), + [anon_sym_module] = ACTIONS(2281), + [anon_sym_use] = ACTIONS(2281), + [anon_sym_LPAREN] = ACTIONS(2281), + [anon_sym_DOLLAR] = ACTIONS(2281), + [anon_sym_error] = ACTIONS(2281), + [anon_sym_list] = ACTIONS(2281), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_break] = ACTIONS(2281), + [anon_sym_continue] = ACTIONS(2281), + [anon_sym_for] = ACTIONS(2281), + [anon_sym_in] = ACTIONS(2281), + [anon_sym_loop] = ACTIONS(2281), + [anon_sym_make] = ACTIONS(2281), + [anon_sym_while] = ACTIONS(2281), + [anon_sym_do] = ACTIONS(2281), + [anon_sym_if] = ACTIONS(2281), + [anon_sym_else] = ACTIONS(2281), + [anon_sym_match] = ACTIONS(2281), + [anon_sym_RBRACE] = ACTIONS(2285), + [anon_sym_try] = ACTIONS(2281), + [anon_sym_catch] = ACTIONS(2281), + [anon_sym_return] = ACTIONS(2281), + [anon_sym_source] = ACTIONS(2281), + [anon_sym_source_DASHenv] = ACTIONS(2281), + [anon_sym_register] = ACTIONS(2281), + [anon_sym_hide] = ACTIONS(2281), + [anon_sym_hide_DASHenv] = ACTIONS(2281), + [anon_sym_overlay] = ACTIONS(2281), + [anon_sym_new] = ACTIONS(2281), + [anon_sym_as] = ACTIONS(2281), + [anon_sym_LPAREN2] = ACTIONS(2283), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2285), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2281), + [aux_sym__val_number_decimal_token1] = ACTIONS(2281), + [aux_sym__val_number_decimal_token2] = ACTIONS(2281), + [aux_sym__val_number_decimal_token3] = ACTIONS(2281), + [aux_sym__val_number_decimal_token4] = ACTIONS(2281), + [aux_sym__val_number_token1] = ACTIONS(2281), + [aux_sym__val_number_token2] = ACTIONS(2281), + [aux_sym__val_number_token3] = ACTIONS(2281), + [anon_sym_DQUOTE] = ACTIONS(2285), + [sym__str_single_quotes] = ACTIONS(2285), + [sym__str_back_ticks] = ACTIONS(2285), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2285), + [anon_sym_PLUS] = ACTIONS(2281), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2287), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2285), + }, + [511] = { + [sym_comment] = STATE(511), + [anon_sym_export] = ACTIONS(1078), + [anon_sym_alias] = ACTIONS(1078), + [anon_sym_let] = ACTIONS(1078), + [anon_sym_let_DASHenv] = ACTIONS(1078), + [anon_sym_mut] = ACTIONS(1078), + [anon_sym_const] = ACTIONS(1078), + [aux_sym_cmd_identifier_token1] = ACTIONS(1078), + [aux_sym_cmd_identifier_token2] = ACTIONS(1078), + [aux_sym_cmd_identifier_token3] = ACTIONS(1078), + [aux_sym_cmd_identifier_token4] = ACTIONS(1078), + [aux_sym_cmd_identifier_token5] = ACTIONS(1078), + [aux_sym_cmd_identifier_token6] = ACTIONS(1078), + [aux_sym_cmd_identifier_token7] = ACTIONS(1078), + [aux_sym_cmd_identifier_token8] = ACTIONS(1078), + [aux_sym_cmd_identifier_token9] = ACTIONS(1078), + [aux_sym_cmd_identifier_token10] = ACTIONS(1078), + [aux_sym_cmd_identifier_token11] = ACTIONS(1078), + [aux_sym_cmd_identifier_token12] = ACTIONS(1078), + [aux_sym_cmd_identifier_token13] = ACTIONS(1078), + [aux_sym_cmd_identifier_token14] = ACTIONS(1078), + [aux_sym_cmd_identifier_token15] = ACTIONS(1078), + [aux_sym_cmd_identifier_token16] = ACTIONS(1078), + [aux_sym_cmd_identifier_token17] = ACTIONS(1078), + [aux_sym_cmd_identifier_token18] = ACTIONS(1078), + [aux_sym_cmd_identifier_token19] = ACTIONS(1078), + [aux_sym_cmd_identifier_token20] = ACTIONS(1078), + [aux_sym_cmd_identifier_token21] = ACTIONS(1078), + [aux_sym_cmd_identifier_token22] = ACTIONS(1078), + [aux_sym_cmd_identifier_token23] = ACTIONS(1078), + [aux_sym_cmd_identifier_token24] = ACTIONS(1078), + [aux_sym_cmd_identifier_token25] = ACTIONS(1078), + [aux_sym_cmd_identifier_token26] = ACTIONS(1078), + [aux_sym_cmd_identifier_token27] = ACTIONS(1078), + [aux_sym_cmd_identifier_token28] = ACTIONS(1078), + [aux_sym_cmd_identifier_token29] = ACTIONS(1078), + [aux_sym_cmd_identifier_token30] = ACTIONS(1078), + [aux_sym_cmd_identifier_token31] = ACTIONS(1078), + [aux_sym_cmd_identifier_token32] = ACTIONS(1078), + [aux_sym_cmd_identifier_token33] = ACTIONS(1078), + [aux_sym_cmd_identifier_token34] = ACTIONS(1078), + [aux_sym_cmd_identifier_token35] = ACTIONS(1078), + [aux_sym_cmd_identifier_token36] = ACTIONS(1078), + [anon_sym_true] = ACTIONS(1080), + [anon_sym_false] = ACTIONS(1080), + [anon_sym_null] = ACTIONS(1080), + [aux_sym_cmd_identifier_token38] = ACTIONS(1078), + [aux_sym_cmd_identifier_token39] = ACTIONS(1080), + [aux_sym_cmd_identifier_token40] = ACTIONS(1080), + [anon_sym_def] = ACTIONS(1078), + [anon_sym_export_DASHenv] = ACTIONS(1078), + [anon_sym_extern] = ACTIONS(1078), + [anon_sym_module] = ACTIONS(1078), + [anon_sym_use] = ACTIONS(1078), + [anon_sym_LPAREN] = ACTIONS(1080), + [anon_sym_COMMA] = ACTIONS(1080), + [anon_sym_DOLLAR] = ACTIONS(1080), + [anon_sym_error] = ACTIONS(1078), + [anon_sym_list] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_break] = ACTIONS(1078), + [anon_sym_continue] = ACTIONS(1078), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_in] = ACTIONS(1078), + [anon_sym_loop] = ACTIONS(1078), + [anon_sym_make] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1078), + [anon_sym_do] = ACTIONS(1078), + [anon_sym_if] = ACTIONS(1078), + [anon_sym_else] = ACTIONS(1078), + [anon_sym_match] = ACTIONS(1078), + [anon_sym_RBRACE] = ACTIONS(1080), + [anon_sym_try] = ACTIONS(1078), + [anon_sym_catch] = ACTIONS(1078), + [anon_sym_return] = ACTIONS(1078), + [anon_sym_source] = ACTIONS(1078), + [anon_sym_source_DASHenv] = ACTIONS(1078), + [anon_sym_register] = ACTIONS(1078), + [anon_sym_hide] = ACTIONS(1078), + [anon_sym_hide_DASHenv] = ACTIONS(1078), + [anon_sym_overlay] = ACTIONS(1078), + [anon_sym_new] = ACTIONS(1078), + [anon_sym_as] = ACTIONS(1078), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1080), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1080), + [aux_sym__val_number_decimal_token1] = ACTIONS(1078), + [aux_sym__val_number_decimal_token2] = ACTIONS(1080), + [aux_sym__val_number_decimal_token3] = ACTIONS(1080), + [aux_sym__val_number_decimal_token4] = ACTIONS(1080), + [aux_sym__val_number_token1] = ACTIONS(1080), + [aux_sym__val_number_token2] = ACTIONS(1080), + [aux_sym__val_number_token3] = ACTIONS(1080), + [anon_sym_DQUOTE] = ACTIONS(1080), + [sym__str_single_quotes] = ACTIONS(1080), + [sym__str_back_ticks] = ACTIONS(1080), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1080), + [aux_sym_record_entry_token1] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1080), + }, + [512] = { + [sym_comment] = STATE(512), + [anon_sym_export] = ACTIONS(2355), + [anon_sym_alias] = ACTIONS(2355), + [anon_sym_let] = ACTIONS(2355), + [anon_sym_let_DASHenv] = ACTIONS(2355), + [anon_sym_mut] = ACTIONS(2355), + [anon_sym_const] = ACTIONS(2355), + [aux_sym_cmd_identifier_token1] = ACTIONS(2355), + [aux_sym_cmd_identifier_token2] = ACTIONS(2355), + [aux_sym_cmd_identifier_token3] = ACTIONS(2355), + [aux_sym_cmd_identifier_token4] = ACTIONS(2355), + [aux_sym_cmd_identifier_token5] = ACTIONS(2355), + [aux_sym_cmd_identifier_token6] = ACTIONS(2355), + [aux_sym_cmd_identifier_token7] = ACTIONS(2355), + [aux_sym_cmd_identifier_token8] = ACTIONS(2355), + [aux_sym_cmd_identifier_token9] = ACTIONS(2355), + [aux_sym_cmd_identifier_token10] = ACTIONS(2355), + [aux_sym_cmd_identifier_token11] = ACTIONS(2355), + [aux_sym_cmd_identifier_token12] = ACTIONS(2355), + [aux_sym_cmd_identifier_token13] = ACTIONS(2355), + [aux_sym_cmd_identifier_token14] = ACTIONS(2355), + [aux_sym_cmd_identifier_token15] = ACTIONS(2355), + [aux_sym_cmd_identifier_token16] = ACTIONS(2355), + [aux_sym_cmd_identifier_token17] = ACTIONS(2355), + [aux_sym_cmd_identifier_token18] = ACTIONS(2355), + [aux_sym_cmd_identifier_token19] = ACTIONS(2355), + [aux_sym_cmd_identifier_token20] = ACTIONS(2355), + [aux_sym_cmd_identifier_token21] = ACTIONS(2355), + [aux_sym_cmd_identifier_token22] = ACTIONS(2355), + [aux_sym_cmd_identifier_token23] = ACTIONS(2355), + [aux_sym_cmd_identifier_token24] = ACTIONS(2355), + [aux_sym_cmd_identifier_token25] = ACTIONS(2355), + [aux_sym_cmd_identifier_token26] = ACTIONS(2355), + [aux_sym_cmd_identifier_token27] = ACTIONS(2355), + [aux_sym_cmd_identifier_token28] = ACTIONS(2355), + [aux_sym_cmd_identifier_token29] = ACTIONS(2355), + [aux_sym_cmd_identifier_token30] = ACTIONS(2355), + [aux_sym_cmd_identifier_token31] = ACTIONS(2355), + [aux_sym_cmd_identifier_token32] = ACTIONS(2355), + [aux_sym_cmd_identifier_token33] = ACTIONS(2355), + [aux_sym_cmd_identifier_token34] = ACTIONS(2355), + [aux_sym_cmd_identifier_token35] = ACTIONS(2355), + [aux_sym_cmd_identifier_token36] = ACTIONS(2355), + [anon_sym_true] = ACTIONS(2355), + [anon_sym_false] = ACTIONS(2355), + [anon_sym_null] = ACTIONS(2355), + [aux_sym_cmd_identifier_token38] = ACTIONS(2355), + [aux_sym_cmd_identifier_token39] = ACTIONS(2355), + [aux_sym_cmd_identifier_token40] = ACTIONS(2355), + [anon_sym_def] = ACTIONS(2355), + [anon_sym_export_DASHenv] = ACTIONS(2355), + [anon_sym_extern] = ACTIONS(2355), + [anon_sym_module] = ACTIONS(2355), + [anon_sym_use] = ACTIONS(2355), + [anon_sym_LPAREN] = ACTIONS(2355), + [anon_sym_DOLLAR] = ACTIONS(2355), + [anon_sym_error] = ACTIONS(2355), + [anon_sym_list] = ACTIONS(2355), + [anon_sym_DASH] = ACTIONS(2355), + [anon_sym_break] = ACTIONS(2355), + [anon_sym_continue] = ACTIONS(2355), + [anon_sym_for] = ACTIONS(2355), + [anon_sym_in] = ACTIONS(2355), + [anon_sym_loop] = ACTIONS(2355), + [anon_sym_make] = ACTIONS(2355), + [anon_sym_while] = ACTIONS(2355), + [anon_sym_do] = ACTIONS(2355), + [anon_sym_if] = ACTIONS(2355), + [anon_sym_else] = ACTIONS(2355), + [anon_sym_match] = ACTIONS(2355), + [anon_sym_RBRACE] = ACTIONS(2355), + [anon_sym_try] = ACTIONS(2355), + [anon_sym_catch] = ACTIONS(2355), + [anon_sym_return] = ACTIONS(2355), + [anon_sym_source] = ACTIONS(2355), + [anon_sym_source_DASHenv] = ACTIONS(2355), + [anon_sym_register] = ACTIONS(2355), + [anon_sym_hide] = ACTIONS(2355), + [anon_sym_hide_DASHenv] = ACTIONS(2355), + [anon_sym_overlay] = ACTIONS(2355), + [anon_sym_new] = ACTIONS(2355), + [anon_sym_as] = ACTIONS(2355), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2355), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2355), + [aux_sym__val_number_decimal_token1] = ACTIONS(2355), + [aux_sym__val_number_decimal_token2] = ACTIONS(2355), + [aux_sym__val_number_decimal_token3] = ACTIONS(2355), + [aux_sym__val_number_decimal_token4] = ACTIONS(2355), + [aux_sym__val_number_token1] = ACTIONS(2355), + [aux_sym__val_number_token2] = ACTIONS(2355), + [aux_sym__val_number_token3] = ACTIONS(2355), + [anon_sym_LBRACK2] = ACTIONS(2357), + [anon_sym_DQUOTE] = ACTIONS(2355), + [sym__str_single_quotes] = ACTIONS(2355), + [sym__str_back_ticks] = ACTIONS(2355), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2355), + [sym__entry_separator] = ACTIONS(2359), + [anon_sym_PLUS] = ACTIONS(2355), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2359), + }, + [513] = { + [sym_comment] = STATE(513), + [anon_sym_export] = ACTIONS(2293), + [anon_sym_alias] = ACTIONS(2293), + [anon_sym_let] = ACTIONS(2293), + [anon_sym_let_DASHenv] = ACTIONS(2293), + [anon_sym_mut] = ACTIONS(2293), + [anon_sym_const] = ACTIONS(2293), + [aux_sym_cmd_identifier_token1] = ACTIONS(2293), + [aux_sym_cmd_identifier_token2] = ACTIONS(2293), + [aux_sym_cmd_identifier_token3] = ACTIONS(2293), + [aux_sym_cmd_identifier_token4] = ACTIONS(2293), + [aux_sym_cmd_identifier_token5] = ACTIONS(2293), + [aux_sym_cmd_identifier_token6] = ACTIONS(2293), + [aux_sym_cmd_identifier_token7] = ACTIONS(2293), + [aux_sym_cmd_identifier_token8] = ACTIONS(2293), + [aux_sym_cmd_identifier_token9] = ACTIONS(2293), + [aux_sym_cmd_identifier_token10] = ACTIONS(2293), + [aux_sym_cmd_identifier_token11] = ACTIONS(2293), + [aux_sym_cmd_identifier_token12] = ACTIONS(2293), + [aux_sym_cmd_identifier_token13] = ACTIONS(2293), + [aux_sym_cmd_identifier_token14] = ACTIONS(2293), + [aux_sym_cmd_identifier_token15] = ACTIONS(2293), + [aux_sym_cmd_identifier_token16] = ACTIONS(2293), + [aux_sym_cmd_identifier_token17] = ACTIONS(2293), + [aux_sym_cmd_identifier_token18] = ACTIONS(2293), + [aux_sym_cmd_identifier_token19] = ACTIONS(2293), + [aux_sym_cmd_identifier_token20] = ACTIONS(2293), + [aux_sym_cmd_identifier_token21] = ACTIONS(2293), + [aux_sym_cmd_identifier_token22] = ACTIONS(2293), + [aux_sym_cmd_identifier_token23] = ACTIONS(2293), + [aux_sym_cmd_identifier_token24] = ACTIONS(2293), + [aux_sym_cmd_identifier_token25] = ACTIONS(2293), + [aux_sym_cmd_identifier_token26] = ACTIONS(2293), + [aux_sym_cmd_identifier_token27] = ACTIONS(2293), + [aux_sym_cmd_identifier_token28] = ACTIONS(2293), + [aux_sym_cmd_identifier_token29] = ACTIONS(2293), + [aux_sym_cmd_identifier_token30] = ACTIONS(2293), + [aux_sym_cmd_identifier_token31] = ACTIONS(2293), + [aux_sym_cmd_identifier_token32] = ACTIONS(2293), + [aux_sym_cmd_identifier_token33] = ACTIONS(2293), + [aux_sym_cmd_identifier_token34] = ACTIONS(2293), + [aux_sym_cmd_identifier_token35] = ACTIONS(2293), + [aux_sym_cmd_identifier_token36] = ACTIONS(2293), + [anon_sym_true] = ACTIONS(2293), + [anon_sym_false] = ACTIONS(2293), + [anon_sym_null] = ACTIONS(2293), + [aux_sym_cmd_identifier_token38] = ACTIONS(2293), + [aux_sym_cmd_identifier_token39] = ACTIONS(2293), + [aux_sym_cmd_identifier_token40] = ACTIONS(2293), + [anon_sym_def] = ACTIONS(2293), + [anon_sym_export_DASHenv] = ACTIONS(2293), + [anon_sym_extern] = ACTIONS(2293), + [anon_sym_module] = ACTIONS(2293), + [anon_sym_use] = ACTIONS(2293), + [anon_sym_LPAREN] = ACTIONS(2293), + [anon_sym_DOLLAR] = ACTIONS(2293), + [anon_sym_error] = ACTIONS(2293), + [anon_sym_list] = ACTIONS(2293), + [anon_sym_DASH] = ACTIONS(2293), + [anon_sym_break] = ACTIONS(2293), + [anon_sym_continue] = ACTIONS(2293), + [anon_sym_for] = ACTIONS(2293), + [anon_sym_in] = ACTIONS(2293), + [anon_sym_loop] = ACTIONS(2293), + [anon_sym_make] = ACTIONS(2293), + [anon_sym_while] = ACTIONS(2293), + [anon_sym_do] = ACTIONS(2293), + [anon_sym_if] = ACTIONS(2293), + [anon_sym_else] = ACTIONS(2293), + [anon_sym_match] = ACTIONS(2293), + [anon_sym_RBRACE] = ACTIONS(2297), + [anon_sym_try] = ACTIONS(2293), + [anon_sym_catch] = ACTIONS(2293), + [anon_sym_return] = ACTIONS(2293), + [anon_sym_source] = ACTIONS(2293), + [anon_sym_source_DASHenv] = ACTIONS(2293), + [anon_sym_register] = ACTIONS(2293), + [anon_sym_hide] = ACTIONS(2293), + [anon_sym_hide_DASHenv] = ACTIONS(2293), + [anon_sym_overlay] = ACTIONS(2293), + [anon_sym_new] = ACTIONS(2293), + [anon_sym_as] = ACTIONS(2293), + [anon_sym_LPAREN2] = ACTIONS(2295), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2297), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2293), + [aux_sym__val_number_decimal_token1] = ACTIONS(2293), + [aux_sym__val_number_decimal_token2] = ACTIONS(2293), + [aux_sym__val_number_decimal_token3] = ACTIONS(2293), + [aux_sym__val_number_decimal_token4] = ACTIONS(2293), + [aux_sym__val_number_token1] = ACTIONS(2293), + [aux_sym__val_number_token2] = ACTIONS(2293), + [aux_sym__val_number_token3] = ACTIONS(2293), + [anon_sym_DQUOTE] = ACTIONS(2297), + [sym__str_single_quotes] = ACTIONS(2297), + [sym__str_back_ticks] = ACTIONS(2297), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2297), + [anon_sym_PLUS] = ACTIONS(2293), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2299), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2297), + }, + [514] = { + [sym_comment] = STATE(514), + [anon_sym_export] = ACTIONS(2303), + [anon_sym_alias] = ACTIONS(2303), + [anon_sym_let] = ACTIONS(2303), + [anon_sym_let_DASHenv] = ACTIONS(2303), + [anon_sym_mut] = ACTIONS(2303), + [anon_sym_const] = ACTIONS(2303), + [aux_sym_cmd_identifier_token1] = ACTIONS(2303), + [aux_sym_cmd_identifier_token2] = ACTIONS(2303), + [aux_sym_cmd_identifier_token3] = ACTIONS(2303), + [aux_sym_cmd_identifier_token4] = ACTIONS(2303), + [aux_sym_cmd_identifier_token5] = ACTIONS(2303), + [aux_sym_cmd_identifier_token6] = ACTIONS(2303), + [aux_sym_cmd_identifier_token7] = ACTIONS(2303), + [aux_sym_cmd_identifier_token8] = ACTIONS(2303), + [aux_sym_cmd_identifier_token9] = ACTIONS(2303), + [aux_sym_cmd_identifier_token10] = ACTIONS(2303), + [aux_sym_cmd_identifier_token11] = ACTIONS(2303), + [aux_sym_cmd_identifier_token12] = ACTIONS(2303), + [aux_sym_cmd_identifier_token13] = ACTIONS(2303), + [aux_sym_cmd_identifier_token14] = ACTIONS(2303), + [aux_sym_cmd_identifier_token15] = ACTIONS(2303), + [aux_sym_cmd_identifier_token16] = ACTIONS(2303), + [aux_sym_cmd_identifier_token17] = ACTIONS(2303), + [aux_sym_cmd_identifier_token18] = ACTIONS(2303), + [aux_sym_cmd_identifier_token19] = ACTIONS(2303), + [aux_sym_cmd_identifier_token20] = ACTIONS(2303), + [aux_sym_cmd_identifier_token21] = ACTIONS(2303), + [aux_sym_cmd_identifier_token22] = ACTIONS(2303), + [aux_sym_cmd_identifier_token23] = ACTIONS(2303), + [aux_sym_cmd_identifier_token24] = ACTIONS(2303), + [aux_sym_cmd_identifier_token25] = ACTIONS(2303), + [aux_sym_cmd_identifier_token26] = ACTIONS(2303), + [aux_sym_cmd_identifier_token27] = ACTIONS(2303), + [aux_sym_cmd_identifier_token28] = ACTIONS(2303), + [aux_sym_cmd_identifier_token29] = ACTIONS(2303), + [aux_sym_cmd_identifier_token30] = ACTIONS(2303), + [aux_sym_cmd_identifier_token31] = ACTIONS(2303), + [aux_sym_cmd_identifier_token32] = ACTIONS(2303), + [aux_sym_cmd_identifier_token33] = ACTIONS(2303), + [aux_sym_cmd_identifier_token34] = ACTIONS(2303), + [aux_sym_cmd_identifier_token35] = ACTIONS(2303), + [aux_sym_cmd_identifier_token36] = ACTIONS(2303), + [anon_sym_true] = ACTIONS(2303), + [anon_sym_false] = ACTIONS(2303), + [anon_sym_null] = ACTIONS(2303), + [aux_sym_cmd_identifier_token38] = ACTIONS(2303), + [aux_sym_cmd_identifier_token39] = ACTIONS(2303), + [aux_sym_cmd_identifier_token40] = ACTIONS(2303), + [anon_sym_def] = ACTIONS(2303), + [anon_sym_export_DASHenv] = ACTIONS(2303), + [anon_sym_extern] = ACTIONS(2303), + [anon_sym_module] = ACTIONS(2303), + [anon_sym_use] = ACTIONS(2303), + [anon_sym_LPAREN] = ACTIONS(2303), + [anon_sym_DOLLAR] = ACTIONS(2303), + [anon_sym_error] = ACTIONS(2303), + [anon_sym_list] = ACTIONS(2303), + [anon_sym_DASH] = ACTIONS(2303), + [anon_sym_break] = ACTIONS(2303), + [anon_sym_continue] = ACTIONS(2303), + [anon_sym_for] = ACTIONS(2303), + [anon_sym_in] = ACTIONS(2303), + [anon_sym_loop] = ACTIONS(2303), + [anon_sym_make] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(2303), + [anon_sym_do] = ACTIONS(2303), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_else] = ACTIONS(2303), + [anon_sym_match] = ACTIONS(2303), [anon_sym_RBRACE] = ACTIONS(2305), - [anon_sym_try] = ACTIONS(2305), - [anon_sym_catch] = ACTIONS(2305), - [anon_sym_return] = ACTIONS(2305), - [anon_sym_source] = ACTIONS(2305), - [anon_sym_source_DASHenv] = ACTIONS(2305), - [anon_sym_register] = ACTIONS(2305), - [anon_sym_hide] = ACTIONS(2305), - [anon_sym_hide_DASHenv] = ACTIONS(2305), - [anon_sym_overlay] = ACTIONS(2305), - [anon_sym_new] = ACTIONS(2305), - [anon_sym_as] = ACTIONS(2305), + [anon_sym_try] = ACTIONS(2303), + [anon_sym_catch] = ACTIONS(2303), + [anon_sym_return] = ACTIONS(2303), + [anon_sym_source] = ACTIONS(2303), + [anon_sym_source_DASHenv] = ACTIONS(2303), + [anon_sym_register] = ACTIONS(2303), + [anon_sym_hide] = ACTIONS(2303), + [anon_sym_hide_DASHenv] = ACTIONS(2303), + [anon_sym_overlay] = ACTIONS(2303), + [anon_sym_new] = ACTIONS(2303), + [anon_sym_as] = ACTIONS(2303), + [anon_sym_LPAREN2] = ACTIONS(2295), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2305), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2305), - [aux_sym__val_number_decimal_token1] = ACTIONS(2305), - [aux_sym__val_number_decimal_token2] = ACTIONS(2305), - [aux_sym__val_number_decimal_token3] = ACTIONS(2305), - [aux_sym__val_number_decimal_token4] = ACTIONS(2305), - [aux_sym__val_number_token1] = ACTIONS(2305), - [aux_sym__val_number_token2] = ACTIONS(2305), - [aux_sym__val_number_token3] = ACTIONS(2305), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2303), + [aux_sym__val_number_decimal_token1] = ACTIONS(2303), + [aux_sym__val_number_decimal_token2] = ACTIONS(2303), + [aux_sym__val_number_decimal_token3] = ACTIONS(2303), + [aux_sym__val_number_decimal_token4] = ACTIONS(2303), + [aux_sym__val_number_token1] = ACTIONS(2303), + [aux_sym__val_number_token2] = ACTIONS(2303), + [aux_sym__val_number_token3] = ACTIONS(2303), [anon_sym_DQUOTE] = ACTIONS(2305), [sym__str_single_quotes] = ACTIONS(2305), [sym__str_back_ticks] = ACTIONS(2305), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2305), - [sym__entry_separator] = ACTIONS(2307), - [anon_sym_PLUS] = ACTIONS(2305), + [anon_sym_PLUS] = ACTIONS(2303), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2299), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2305), }, - [557] = { - [sym_comment] = STATE(557), - [anon_sym_export] = ACTIONS(1876), - [anon_sym_alias] = ACTIONS(1876), - [anon_sym_let] = ACTIONS(1876), - [anon_sym_let_DASHenv] = ACTIONS(1876), - [anon_sym_mut] = ACTIONS(1876), - [anon_sym_const] = ACTIONS(1876), - [aux_sym_cmd_identifier_token1] = ACTIONS(1876), - [aux_sym_cmd_identifier_token2] = ACTIONS(1876), - [aux_sym_cmd_identifier_token3] = ACTIONS(1876), - [aux_sym_cmd_identifier_token4] = ACTIONS(1876), - [aux_sym_cmd_identifier_token5] = ACTIONS(1876), - [aux_sym_cmd_identifier_token6] = ACTIONS(1876), - [aux_sym_cmd_identifier_token7] = ACTIONS(1876), - [aux_sym_cmd_identifier_token8] = ACTIONS(1876), - [aux_sym_cmd_identifier_token9] = ACTIONS(1876), - [aux_sym_cmd_identifier_token10] = ACTIONS(1876), - [aux_sym_cmd_identifier_token11] = ACTIONS(1876), - [aux_sym_cmd_identifier_token12] = ACTIONS(1876), - [aux_sym_cmd_identifier_token13] = ACTIONS(1876), - [aux_sym_cmd_identifier_token14] = ACTIONS(1876), - [aux_sym_cmd_identifier_token15] = ACTIONS(1876), - [aux_sym_cmd_identifier_token16] = ACTIONS(1876), - [aux_sym_cmd_identifier_token17] = ACTIONS(1876), - [aux_sym_cmd_identifier_token18] = ACTIONS(1876), - [aux_sym_cmd_identifier_token19] = ACTIONS(1876), - [aux_sym_cmd_identifier_token20] = ACTIONS(1876), - [aux_sym_cmd_identifier_token21] = ACTIONS(1876), - [aux_sym_cmd_identifier_token22] = ACTIONS(1876), - [aux_sym_cmd_identifier_token23] = ACTIONS(1876), - [aux_sym_cmd_identifier_token24] = ACTIONS(1876), - [aux_sym_cmd_identifier_token25] = ACTIONS(1876), - [aux_sym_cmd_identifier_token26] = ACTIONS(1876), - [aux_sym_cmd_identifier_token27] = ACTIONS(1876), - [aux_sym_cmd_identifier_token28] = ACTIONS(1876), - [aux_sym_cmd_identifier_token29] = ACTIONS(1876), - [aux_sym_cmd_identifier_token30] = ACTIONS(1876), - [aux_sym_cmd_identifier_token31] = ACTIONS(1876), - [aux_sym_cmd_identifier_token32] = ACTIONS(1876), - [aux_sym_cmd_identifier_token33] = ACTIONS(1876), - [aux_sym_cmd_identifier_token34] = ACTIONS(1876), - [aux_sym_cmd_identifier_token35] = ACTIONS(1876), - [aux_sym_cmd_identifier_token36] = ACTIONS(1876), - [anon_sym_true] = ACTIONS(1876), - [anon_sym_false] = ACTIONS(1876), - [anon_sym_null] = ACTIONS(1876), - [aux_sym_cmd_identifier_token38] = ACTIONS(1876), - [aux_sym_cmd_identifier_token39] = ACTIONS(1876), - [aux_sym_cmd_identifier_token40] = ACTIONS(1876), - [anon_sym_def] = ACTIONS(1876), - [anon_sym_export_DASHenv] = ACTIONS(1876), - [anon_sym_extern] = ACTIONS(1876), - [anon_sym_module] = ACTIONS(1876), - [anon_sym_use] = ACTIONS(1876), - [anon_sym_LPAREN] = ACTIONS(1876), - [anon_sym_DOLLAR] = ACTIONS(1876), - [anon_sym_error] = ACTIONS(1876), - [anon_sym_list] = ACTIONS(1876), - [anon_sym_DASH] = ACTIONS(1876), - [anon_sym_break] = ACTIONS(1876), - [anon_sym_continue] = ACTIONS(1876), - [anon_sym_for] = ACTIONS(1876), - [anon_sym_in] = ACTIONS(1876), - [anon_sym_loop] = ACTIONS(1876), - [anon_sym_make] = ACTIONS(1876), - [anon_sym_while] = ACTIONS(1876), - [anon_sym_do] = ACTIONS(1876), - [anon_sym_if] = ACTIONS(1876), - [anon_sym_else] = ACTIONS(1876), - [anon_sym_match] = ACTIONS(1876), - [anon_sym_RBRACE] = ACTIONS(1876), - [anon_sym_try] = ACTIONS(1876), - [anon_sym_catch] = ACTIONS(1876), - [anon_sym_return] = ACTIONS(1876), - [anon_sym_source] = ACTIONS(1876), - [anon_sym_source_DASHenv] = ACTIONS(1876), - [anon_sym_register] = ACTIONS(1876), - [anon_sym_hide] = ACTIONS(1876), - [anon_sym_hide_DASHenv] = ACTIONS(1876), - [anon_sym_overlay] = ACTIONS(1876), - [anon_sym_new] = ACTIONS(1876), - [anon_sym_as] = ACTIONS(1876), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1876), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1876), - [aux_sym__val_number_decimal_token1] = ACTIONS(1876), - [aux_sym__val_number_decimal_token2] = ACTIONS(1876), - [aux_sym__val_number_decimal_token3] = ACTIONS(1876), - [aux_sym__val_number_decimal_token4] = ACTIONS(1876), - [aux_sym__val_number_token1] = ACTIONS(1876), - [aux_sym__val_number_token2] = ACTIONS(1876), - [aux_sym__val_number_token3] = ACTIONS(1876), - [anon_sym_DQUOTE] = ACTIONS(1876), - [sym__str_single_quotes] = ACTIONS(1876), - [sym__str_back_ticks] = ACTIONS(1876), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1876), - [sym__entry_separator] = ACTIONS(1878), - [anon_sym_PLUS] = ACTIONS(1876), + [515] = { + [sym_comment] = STATE(515), + [aux_sym__multiple_types_repeat1] = STATE(516), + [anon_sym_export] = ACTIONS(2341), + [anon_sym_alias] = ACTIONS(2341), + [anon_sym_let] = ACTIONS(2341), + [anon_sym_let_DASHenv] = ACTIONS(2341), + [anon_sym_mut] = ACTIONS(2341), + [anon_sym_const] = ACTIONS(2341), + [aux_sym_cmd_identifier_token1] = ACTIONS(2341), + [aux_sym_cmd_identifier_token2] = ACTIONS(2341), + [aux_sym_cmd_identifier_token3] = ACTIONS(2341), + [aux_sym_cmd_identifier_token4] = ACTIONS(2341), + [aux_sym_cmd_identifier_token5] = ACTIONS(2341), + [aux_sym_cmd_identifier_token6] = ACTIONS(2341), + [aux_sym_cmd_identifier_token7] = ACTIONS(2341), + [aux_sym_cmd_identifier_token8] = ACTIONS(2341), + [aux_sym_cmd_identifier_token9] = ACTIONS(2341), + [aux_sym_cmd_identifier_token10] = ACTIONS(2341), + [aux_sym_cmd_identifier_token11] = ACTIONS(2341), + [aux_sym_cmd_identifier_token12] = ACTIONS(2341), + [aux_sym_cmd_identifier_token13] = ACTIONS(2341), + [aux_sym_cmd_identifier_token14] = ACTIONS(2341), + [aux_sym_cmd_identifier_token15] = ACTIONS(2341), + [aux_sym_cmd_identifier_token16] = ACTIONS(2341), + [aux_sym_cmd_identifier_token17] = ACTIONS(2341), + [aux_sym_cmd_identifier_token18] = ACTIONS(2341), + [aux_sym_cmd_identifier_token19] = ACTIONS(2341), + [aux_sym_cmd_identifier_token20] = ACTIONS(2341), + [aux_sym_cmd_identifier_token21] = ACTIONS(2341), + [aux_sym_cmd_identifier_token22] = ACTIONS(2341), + [aux_sym_cmd_identifier_token23] = ACTIONS(2341), + [aux_sym_cmd_identifier_token24] = ACTIONS(2341), + [aux_sym_cmd_identifier_token25] = ACTIONS(2341), + [aux_sym_cmd_identifier_token26] = ACTIONS(2341), + [aux_sym_cmd_identifier_token27] = ACTIONS(2341), + [aux_sym_cmd_identifier_token28] = ACTIONS(2341), + [aux_sym_cmd_identifier_token29] = ACTIONS(2341), + [aux_sym_cmd_identifier_token30] = ACTIONS(2341), + [aux_sym_cmd_identifier_token31] = ACTIONS(2341), + [aux_sym_cmd_identifier_token32] = ACTIONS(2341), + [aux_sym_cmd_identifier_token33] = ACTIONS(2341), + [aux_sym_cmd_identifier_token34] = ACTIONS(2341), + [aux_sym_cmd_identifier_token35] = ACTIONS(2341), + [aux_sym_cmd_identifier_token36] = ACTIONS(2341), + [anon_sym_true] = ACTIONS(2341), + [anon_sym_false] = ACTIONS(2341), + [anon_sym_null] = ACTIONS(2341), + [aux_sym_cmd_identifier_token38] = ACTIONS(2341), + [aux_sym_cmd_identifier_token39] = ACTIONS(2341), + [aux_sym_cmd_identifier_token40] = ACTIONS(2341), + [anon_sym_def] = ACTIONS(2341), + [anon_sym_export_DASHenv] = ACTIONS(2341), + [anon_sym_extern] = ACTIONS(2341), + [anon_sym_module] = ACTIONS(2341), + [anon_sym_use] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(2341), + [anon_sym_DOLLAR] = ACTIONS(2341), + [anon_sym_error] = ACTIONS(2341), + [anon_sym_list] = ACTIONS(2341), + [anon_sym_DASH] = ACTIONS(2341), + [anon_sym_break] = ACTIONS(2341), + [anon_sym_continue] = ACTIONS(2341), + [anon_sym_for] = ACTIONS(2341), + [anon_sym_in] = ACTIONS(2341), + [anon_sym_loop] = ACTIONS(2341), + [anon_sym_make] = ACTIONS(2341), + [anon_sym_while] = ACTIONS(2341), + [anon_sym_do] = ACTIONS(2341), + [anon_sym_if] = ACTIONS(2341), + [anon_sym_else] = ACTIONS(2341), + [anon_sym_match] = ACTIONS(2341), + [anon_sym_RBRACE] = ACTIONS(2361), + [anon_sym_try] = ACTIONS(2341), + [anon_sym_catch] = ACTIONS(2341), + [anon_sym_return] = ACTIONS(2341), + [anon_sym_source] = ACTIONS(2341), + [anon_sym_source_DASHenv] = ACTIONS(2341), + [anon_sym_register] = ACTIONS(2341), + [anon_sym_hide] = ACTIONS(2341), + [anon_sym_hide_DASHenv] = ACTIONS(2341), + [anon_sym_overlay] = ACTIONS(2341), + [anon_sym_new] = ACTIONS(2341), + [anon_sym_as] = ACTIONS(2341), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2341), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2341), + [aux_sym__val_number_decimal_token1] = ACTIONS(2341), + [aux_sym__val_number_decimal_token2] = ACTIONS(2341), + [aux_sym__val_number_decimal_token3] = ACTIONS(2341), + [aux_sym__val_number_decimal_token4] = ACTIONS(2341), + [aux_sym__val_number_token1] = ACTIONS(2341), + [aux_sym__val_number_token2] = ACTIONS(2341), + [aux_sym__val_number_token3] = ACTIONS(2341), + [anon_sym_DQUOTE] = ACTIONS(2341), + [sym__str_single_quotes] = ACTIONS(2341), + [sym__str_back_ticks] = ACTIONS(2341), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2341), + [sym__entry_separator] = ACTIONS(2345), + [anon_sym_PLUS] = ACTIONS(2341), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2347), }, - [558] = { - [sym_comment] = STATE(558), - [anon_sym_export] = ACTIONS(2408), - [anon_sym_alias] = ACTIONS(2408), - [anon_sym_let] = ACTIONS(2408), - [anon_sym_let_DASHenv] = ACTIONS(2408), - [anon_sym_mut] = ACTIONS(2408), - [anon_sym_const] = ACTIONS(2408), - [aux_sym_cmd_identifier_token1] = ACTIONS(2408), - [aux_sym_cmd_identifier_token2] = ACTIONS(2408), - [aux_sym_cmd_identifier_token3] = ACTIONS(2408), - [aux_sym_cmd_identifier_token4] = ACTIONS(2408), - [aux_sym_cmd_identifier_token5] = ACTIONS(2408), - [aux_sym_cmd_identifier_token6] = ACTIONS(2408), - [aux_sym_cmd_identifier_token7] = ACTIONS(2408), - [aux_sym_cmd_identifier_token8] = ACTIONS(2408), - [aux_sym_cmd_identifier_token9] = ACTIONS(2408), - [aux_sym_cmd_identifier_token10] = ACTIONS(2408), - [aux_sym_cmd_identifier_token11] = ACTIONS(2408), - [aux_sym_cmd_identifier_token12] = ACTIONS(2408), - [aux_sym_cmd_identifier_token13] = ACTIONS(2408), - [aux_sym_cmd_identifier_token14] = ACTIONS(2408), - [aux_sym_cmd_identifier_token15] = ACTIONS(2408), - [aux_sym_cmd_identifier_token16] = ACTIONS(2408), - [aux_sym_cmd_identifier_token17] = ACTIONS(2408), - [aux_sym_cmd_identifier_token18] = ACTIONS(2408), - [aux_sym_cmd_identifier_token19] = ACTIONS(2408), - [aux_sym_cmd_identifier_token20] = ACTIONS(2408), - [aux_sym_cmd_identifier_token21] = ACTIONS(2408), - [aux_sym_cmd_identifier_token22] = ACTIONS(2408), - [aux_sym_cmd_identifier_token23] = ACTIONS(2408), - [aux_sym_cmd_identifier_token24] = ACTIONS(2408), - [aux_sym_cmd_identifier_token25] = ACTIONS(2408), - [aux_sym_cmd_identifier_token26] = ACTIONS(2408), - [aux_sym_cmd_identifier_token27] = ACTIONS(2408), - [aux_sym_cmd_identifier_token28] = ACTIONS(2408), - [aux_sym_cmd_identifier_token29] = ACTIONS(2408), - [aux_sym_cmd_identifier_token30] = ACTIONS(2408), - [aux_sym_cmd_identifier_token31] = ACTIONS(2408), - [aux_sym_cmd_identifier_token32] = ACTIONS(2408), - [aux_sym_cmd_identifier_token33] = ACTIONS(2408), - [aux_sym_cmd_identifier_token34] = ACTIONS(2408), - [aux_sym_cmd_identifier_token35] = ACTIONS(2408), - [aux_sym_cmd_identifier_token36] = ACTIONS(2408), - [anon_sym_true] = ACTIONS(2408), - [anon_sym_false] = ACTIONS(2408), - [anon_sym_null] = ACTIONS(2408), - [aux_sym_cmd_identifier_token38] = ACTIONS(2408), - [aux_sym_cmd_identifier_token39] = ACTIONS(2408), - [aux_sym_cmd_identifier_token40] = ACTIONS(2408), - [anon_sym_def] = ACTIONS(2408), - [anon_sym_export_DASHenv] = ACTIONS(2408), - [anon_sym_extern] = ACTIONS(2408), - [anon_sym_module] = ACTIONS(2408), - [anon_sym_use] = ACTIONS(2408), - [anon_sym_LPAREN] = ACTIONS(2408), - [anon_sym_DOLLAR] = ACTIONS(2408), - [anon_sym_error] = ACTIONS(2408), - [anon_sym_list] = ACTIONS(2408), - [anon_sym_DASH] = ACTIONS(2408), - [anon_sym_break] = ACTIONS(2408), - [anon_sym_continue] = ACTIONS(2408), - [anon_sym_for] = ACTIONS(2408), - [anon_sym_in] = ACTIONS(2408), - [anon_sym_loop] = ACTIONS(2408), - [anon_sym_make] = ACTIONS(2408), - [anon_sym_while] = ACTIONS(2408), - [anon_sym_do] = ACTIONS(2408), - [anon_sym_if] = ACTIONS(2408), - [anon_sym_else] = ACTIONS(2408), - [anon_sym_match] = ACTIONS(2408), - [anon_sym_RBRACE] = ACTIONS(2408), - [anon_sym_try] = ACTIONS(2408), - [anon_sym_catch] = ACTIONS(2408), - [anon_sym_return] = ACTIONS(2408), - [anon_sym_source] = ACTIONS(2408), - [anon_sym_source_DASHenv] = ACTIONS(2408), - [anon_sym_register] = ACTIONS(2408), - [anon_sym_hide] = ACTIONS(2408), - [anon_sym_hide_DASHenv] = ACTIONS(2408), - [anon_sym_overlay] = ACTIONS(2408), - [anon_sym_new] = ACTIONS(2408), - [anon_sym_as] = ACTIONS(2408), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2408), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2408), - [aux_sym__val_number_decimal_token1] = ACTIONS(2408), - [aux_sym__val_number_decimal_token2] = ACTIONS(2408), - [aux_sym__val_number_decimal_token3] = ACTIONS(2408), - [aux_sym__val_number_decimal_token4] = ACTIONS(2408), - [aux_sym__val_number_token1] = ACTIONS(2408), - [aux_sym__val_number_token2] = ACTIONS(2408), - [aux_sym__val_number_token3] = ACTIONS(2408), - [anon_sym_DQUOTE] = ACTIONS(2408), - [sym__str_single_quotes] = ACTIONS(2408), - [sym__str_back_ticks] = ACTIONS(2408), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2408), - [sym__entry_separator] = ACTIONS(2410), - [anon_sym_PLUS] = ACTIONS(2408), + [516] = { + [sym_comment] = STATE(516), + [aux_sym__multiple_types_repeat1] = STATE(516), + [anon_sym_export] = ACTIONS(2363), + [anon_sym_alias] = ACTIONS(2363), + [anon_sym_let] = ACTIONS(2363), + [anon_sym_let_DASHenv] = ACTIONS(2363), + [anon_sym_mut] = ACTIONS(2363), + [anon_sym_const] = ACTIONS(2363), + [aux_sym_cmd_identifier_token1] = ACTIONS(2363), + [aux_sym_cmd_identifier_token2] = ACTIONS(2363), + [aux_sym_cmd_identifier_token3] = ACTIONS(2363), + [aux_sym_cmd_identifier_token4] = ACTIONS(2363), + [aux_sym_cmd_identifier_token5] = ACTIONS(2363), + [aux_sym_cmd_identifier_token6] = ACTIONS(2363), + [aux_sym_cmd_identifier_token7] = ACTIONS(2363), + [aux_sym_cmd_identifier_token8] = ACTIONS(2363), + [aux_sym_cmd_identifier_token9] = ACTIONS(2363), + [aux_sym_cmd_identifier_token10] = ACTIONS(2363), + [aux_sym_cmd_identifier_token11] = ACTIONS(2363), + [aux_sym_cmd_identifier_token12] = ACTIONS(2363), + [aux_sym_cmd_identifier_token13] = ACTIONS(2363), + [aux_sym_cmd_identifier_token14] = ACTIONS(2363), + [aux_sym_cmd_identifier_token15] = ACTIONS(2363), + [aux_sym_cmd_identifier_token16] = ACTIONS(2363), + [aux_sym_cmd_identifier_token17] = ACTIONS(2363), + [aux_sym_cmd_identifier_token18] = ACTIONS(2363), + [aux_sym_cmd_identifier_token19] = ACTIONS(2363), + [aux_sym_cmd_identifier_token20] = ACTIONS(2363), + [aux_sym_cmd_identifier_token21] = ACTIONS(2363), + [aux_sym_cmd_identifier_token22] = ACTIONS(2363), + [aux_sym_cmd_identifier_token23] = ACTIONS(2363), + [aux_sym_cmd_identifier_token24] = ACTIONS(2363), + [aux_sym_cmd_identifier_token25] = ACTIONS(2363), + [aux_sym_cmd_identifier_token26] = ACTIONS(2363), + [aux_sym_cmd_identifier_token27] = ACTIONS(2363), + [aux_sym_cmd_identifier_token28] = ACTIONS(2363), + [aux_sym_cmd_identifier_token29] = ACTIONS(2363), + [aux_sym_cmd_identifier_token30] = ACTIONS(2363), + [aux_sym_cmd_identifier_token31] = ACTIONS(2363), + [aux_sym_cmd_identifier_token32] = ACTIONS(2363), + [aux_sym_cmd_identifier_token33] = ACTIONS(2363), + [aux_sym_cmd_identifier_token34] = ACTIONS(2363), + [aux_sym_cmd_identifier_token35] = ACTIONS(2363), + [aux_sym_cmd_identifier_token36] = ACTIONS(2363), + [anon_sym_true] = ACTIONS(2363), + [anon_sym_false] = ACTIONS(2363), + [anon_sym_null] = ACTIONS(2363), + [aux_sym_cmd_identifier_token38] = ACTIONS(2363), + [aux_sym_cmd_identifier_token39] = ACTIONS(2363), + [aux_sym_cmd_identifier_token40] = ACTIONS(2363), + [anon_sym_def] = ACTIONS(2363), + [anon_sym_export_DASHenv] = ACTIONS(2363), + [anon_sym_extern] = ACTIONS(2363), + [anon_sym_module] = ACTIONS(2363), + [anon_sym_use] = ACTIONS(2363), + [anon_sym_LPAREN] = ACTIONS(2363), + [anon_sym_DOLLAR] = ACTIONS(2363), + [anon_sym_error] = ACTIONS(2363), + [anon_sym_list] = ACTIONS(2363), + [anon_sym_DASH] = ACTIONS(2363), + [anon_sym_break] = ACTIONS(2363), + [anon_sym_continue] = ACTIONS(2363), + [anon_sym_for] = ACTIONS(2363), + [anon_sym_in] = ACTIONS(2363), + [anon_sym_loop] = ACTIONS(2363), + [anon_sym_make] = ACTIONS(2363), + [anon_sym_while] = ACTIONS(2363), + [anon_sym_do] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(2363), + [anon_sym_else] = ACTIONS(2363), + [anon_sym_match] = ACTIONS(2363), + [anon_sym_RBRACE] = ACTIONS(2363), + [anon_sym_try] = ACTIONS(2363), + [anon_sym_catch] = ACTIONS(2363), + [anon_sym_return] = ACTIONS(2363), + [anon_sym_source] = ACTIONS(2363), + [anon_sym_source_DASHenv] = ACTIONS(2363), + [anon_sym_register] = ACTIONS(2363), + [anon_sym_hide] = ACTIONS(2363), + [anon_sym_hide_DASHenv] = ACTIONS(2363), + [anon_sym_overlay] = ACTIONS(2363), + [anon_sym_new] = ACTIONS(2363), + [anon_sym_as] = ACTIONS(2363), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2363), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2363), + [aux_sym__val_number_decimal_token1] = ACTIONS(2363), + [aux_sym__val_number_decimal_token2] = ACTIONS(2363), + [aux_sym__val_number_decimal_token3] = ACTIONS(2363), + [aux_sym__val_number_decimal_token4] = ACTIONS(2363), + [aux_sym__val_number_token1] = ACTIONS(2363), + [aux_sym__val_number_token2] = ACTIONS(2363), + [aux_sym__val_number_token3] = ACTIONS(2363), + [anon_sym_DQUOTE] = ACTIONS(2363), + [sym__str_single_quotes] = ACTIONS(2363), + [sym__str_back_ticks] = ACTIONS(2363), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2363), + [sym__entry_separator] = ACTIONS(2365), + [anon_sym_PLUS] = ACTIONS(2363), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2368), }, - [559] = { - [sym_comment] = STATE(559), - [anon_sym_export] = ACTIONS(2412), - [anon_sym_alias] = ACTIONS(2412), - [anon_sym_let] = ACTIONS(2412), - [anon_sym_let_DASHenv] = ACTIONS(2412), - [anon_sym_mut] = ACTIONS(2412), - [anon_sym_const] = ACTIONS(2412), - [aux_sym_cmd_identifier_token1] = ACTIONS(2412), - [aux_sym_cmd_identifier_token2] = ACTIONS(2412), - [aux_sym_cmd_identifier_token3] = ACTIONS(2412), - [aux_sym_cmd_identifier_token4] = ACTIONS(2412), - [aux_sym_cmd_identifier_token5] = ACTIONS(2412), - [aux_sym_cmd_identifier_token6] = ACTIONS(2412), - [aux_sym_cmd_identifier_token7] = ACTIONS(2412), - [aux_sym_cmd_identifier_token8] = ACTIONS(2412), - [aux_sym_cmd_identifier_token9] = ACTIONS(2412), - [aux_sym_cmd_identifier_token10] = ACTIONS(2412), - [aux_sym_cmd_identifier_token11] = ACTIONS(2412), - [aux_sym_cmd_identifier_token12] = ACTIONS(2412), - [aux_sym_cmd_identifier_token13] = ACTIONS(2412), - [aux_sym_cmd_identifier_token14] = ACTIONS(2412), - [aux_sym_cmd_identifier_token15] = ACTIONS(2412), - [aux_sym_cmd_identifier_token16] = ACTIONS(2412), - [aux_sym_cmd_identifier_token17] = ACTIONS(2412), - [aux_sym_cmd_identifier_token18] = ACTIONS(2412), - [aux_sym_cmd_identifier_token19] = ACTIONS(2412), - [aux_sym_cmd_identifier_token20] = ACTIONS(2412), - [aux_sym_cmd_identifier_token21] = ACTIONS(2412), - [aux_sym_cmd_identifier_token22] = ACTIONS(2412), - [aux_sym_cmd_identifier_token23] = ACTIONS(2412), - [aux_sym_cmd_identifier_token24] = ACTIONS(2412), - [aux_sym_cmd_identifier_token25] = ACTIONS(2412), - [aux_sym_cmd_identifier_token26] = ACTIONS(2412), - [aux_sym_cmd_identifier_token27] = ACTIONS(2412), - [aux_sym_cmd_identifier_token28] = ACTIONS(2412), - [aux_sym_cmd_identifier_token29] = ACTIONS(2412), - [aux_sym_cmd_identifier_token30] = ACTIONS(2412), - [aux_sym_cmd_identifier_token31] = ACTIONS(2412), - [aux_sym_cmd_identifier_token32] = ACTIONS(2412), - [aux_sym_cmd_identifier_token33] = ACTIONS(2412), - [aux_sym_cmd_identifier_token34] = ACTIONS(2412), - [aux_sym_cmd_identifier_token35] = ACTIONS(2412), - [aux_sym_cmd_identifier_token36] = ACTIONS(2412), - [anon_sym_true] = ACTIONS(2412), - [anon_sym_false] = ACTIONS(2412), - [anon_sym_null] = ACTIONS(2412), - [aux_sym_cmd_identifier_token38] = ACTIONS(2412), - [aux_sym_cmd_identifier_token39] = ACTIONS(2412), - [aux_sym_cmd_identifier_token40] = ACTIONS(2412), - [anon_sym_def] = ACTIONS(2412), - [anon_sym_export_DASHenv] = ACTIONS(2412), - [anon_sym_extern] = ACTIONS(2412), - [anon_sym_module] = ACTIONS(2412), - [anon_sym_use] = ACTIONS(2412), - [anon_sym_LPAREN] = ACTIONS(2412), - [anon_sym_DOLLAR] = ACTIONS(2412), - [anon_sym_error] = ACTIONS(2412), - [anon_sym_list] = ACTIONS(2412), - [anon_sym_DASH] = ACTIONS(2412), - [anon_sym_break] = ACTIONS(2412), - [anon_sym_continue] = ACTIONS(2412), - [anon_sym_for] = ACTIONS(2412), - [anon_sym_in] = ACTIONS(2412), - [anon_sym_loop] = ACTIONS(2412), - [anon_sym_make] = ACTIONS(2412), - [anon_sym_while] = ACTIONS(2412), - [anon_sym_do] = ACTIONS(2412), - [anon_sym_if] = ACTIONS(2412), - [anon_sym_else] = ACTIONS(2412), - [anon_sym_match] = ACTIONS(2412), - [anon_sym_RBRACE] = ACTIONS(2412), - [anon_sym_try] = ACTIONS(2412), - [anon_sym_catch] = ACTIONS(2412), - [anon_sym_return] = ACTIONS(2412), - [anon_sym_source] = ACTIONS(2412), - [anon_sym_source_DASHenv] = ACTIONS(2412), - [anon_sym_register] = ACTIONS(2412), - [anon_sym_hide] = ACTIONS(2412), - [anon_sym_hide_DASHenv] = ACTIONS(2412), - [anon_sym_overlay] = ACTIONS(2412), - [anon_sym_new] = ACTIONS(2412), - [anon_sym_as] = ACTIONS(2412), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2412), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2412), - [aux_sym__val_number_decimal_token1] = ACTIONS(2412), - [aux_sym__val_number_decimal_token2] = ACTIONS(2412), - [aux_sym__val_number_decimal_token3] = ACTIONS(2412), - [aux_sym__val_number_decimal_token4] = ACTIONS(2412), - [aux_sym__val_number_token1] = ACTIONS(2412), - [aux_sym__val_number_token2] = ACTIONS(2412), - [aux_sym__val_number_token3] = ACTIONS(2412), - [anon_sym_DQUOTE] = ACTIONS(2412), - [sym__str_single_quotes] = ACTIONS(2412), - [sym__str_back_ticks] = ACTIONS(2412), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2412), - [sym__entry_separator] = ACTIONS(2414), - [anon_sym_PLUS] = ACTIONS(2412), - [anon_sym_POUND] = ACTIONS(3), + [517] = { + [sym_comment] = STATE(517), + [anon_sym_export] = ACTIONS(1715), + [anon_sym_alias] = ACTIONS(1715), + [anon_sym_let] = ACTIONS(1715), + [anon_sym_let_DASHenv] = ACTIONS(1715), + [anon_sym_mut] = ACTIONS(1715), + [anon_sym_const] = ACTIONS(1715), + [aux_sym_cmd_identifier_token1] = ACTIONS(1715), + [aux_sym_cmd_identifier_token2] = ACTIONS(1715), + [aux_sym_cmd_identifier_token3] = ACTIONS(1715), + [aux_sym_cmd_identifier_token4] = ACTIONS(1715), + [aux_sym_cmd_identifier_token5] = ACTIONS(1715), + [aux_sym_cmd_identifier_token6] = ACTIONS(1715), + [aux_sym_cmd_identifier_token7] = ACTIONS(1715), + [aux_sym_cmd_identifier_token8] = ACTIONS(1715), + [aux_sym_cmd_identifier_token9] = ACTIONS(1715), + [aux_sym_cmd_identifier_token10] = ACTIONS(1715), + [aux_sym_cmd_identifier_token11] = ACTIONS(1715), + [aux_sym_cmd_identifier_token12] = ACTIONS(1715), + [aux_sym_cmd_identifier_token13] = ACTIONS(1715), + [aux_sym_cmd_identifier_token14] = ACTIONS(1715), + [aux_sym_cmd_identifier_token15] = ACTIONS(1715), + [aux_sym_cmd_identifier_token16] = ACTIONS(1715), + [aux_sym_cmd_identifier_token17] = ACTIONS(1715), + [aux_sym_cmd_identifier_token18] = ACTIONS(1715), + [aux_sym_cmd_identifier_token19] = ACTIONS(1715), + [aux_sym_cmd_identifier_token20] = ACTIONS(1715), + [aux_sym_cmd_identifier_token21] = ACTIONS(1715), + [aux_sym_cmd_identifier_token22] = ACTIONS(1715), + [aux_sym_cmd_identifier_token23] = ACTIONS(1715), + [aux_sym_cmd_identifier_token24] = ACTIONS(1715), + [aux_sym_cmd_identifier_token25] = ACTIONS(1715), + [aux_sym_cmd_identifier_token26] = ACTIONS(1715), + [aux_sym_cmd_identifier_token27] = ACTIONS(1715), + [aux_sym_cmd_identifier_token28] = ACTIONS(1715), + [aux_sym_cmd_identifier_token29] = ACTIONS(1715), + [aux_sym_cmd_identifier_token30] = ACTIONS(1715), + [aux_sym_cmd_identifier_token31] = ACTIONS(1715), + [aux_sym_cmd_identifier_token32] = ACTIONS(1715), + [aux_sym_cmd_identifier_token33] = ACTIONS(1715), + [aux_sym_cmd_identifier_token34] = ACTIONS(1715), + [aux_sym_cmd_identifier_token35] = ACTIONS(1715), + [aux_sym_cmd_identifier_token36] = ACTIONS(1715), + [anon_sym_true] = ACTIONS(1717), + [anon_sym_false] = ACTIONS(1717), + [anon_sym_null] = ACTIONS(1717), + [aux_sym_cmd_identifier_token38] = ACTIONS(1715), + [aux_sym_cmd_identifier_token39] = ACTIONS(1717), + [aux_sym_cmd_identifier_token40] = ACTIONS(1717), + [anon_sym_def] = ACTIONS(1715), + [anon_sym_export_DASHenv] = ACTIONS(1715), + [anon_sym_extern] = ACTIONS(1715), + [anon_sym_module] = ACTIONS(1715), + [anon_sym_use] = ACTIONS(1715), + [anon_sym_LPAREN] = ACTIONS(1715), + [anon_sym_DOLLAR] = ACTIONS(1717), + [anon_sym_error] = ACTIONS(1715), + [anon_sym_list] = ACTIONS(1715), + [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_break] = ACTIONS(1715), + [anon_sym_continue] = ACTIONS(1715), + [anon_sym_for] = ACTIONS(1715), + [anon_sym_in] = ACTIONS(1715), + [anon_sym_loop] = ACTIONS(1715), + [anon_sym_make] = ACTIONS(1715), + [anon_sym_while] = ACTIONS(1715), + [anon_sym_do] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1715), + [anon_sym_else] = ACTIONS(1715), + [anon_sym_match] = ACTIONS(1715), + [anon_sym_RBRACE] = ACTIONS(1717), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_catch] = ACTIONS(1715), + [anon_sym_return] = ACTIONS(1715), + [anon_sym_source] = ACTIONS(1715), + [anon_sym_source_DASHenv] = ACTIONS(1715), + [anon_sym_register] = ACTIONS(1715), + [anon_sym_hide] = ACTIONS(1715), + [anon_sym_hide_DASHenv] = ACTIONS(1715), + [anon_sym_overlay] = ACTIONS(1715), + [anon_sym_new] = ACTIONS(1715), + [anon_sym_as] = ACTIONS(1715), + [anon_sym_LPAREN2] = ACTIONS(1717), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1717), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1717), + [aux_sym__val_number_decimal_token1] = ACTIONS(1715), + [aux_sym__val_number_decimal_token2] = ACTIONS(1717), + [aux_sym__val_number_decimal_token3] = ACTIONS(1717), + [aux_sym__val_number_decimal_token4] = ACTIONS(1717), + [aux_sym__val_number_token1] = ACTIONS(1717), + [aux_sym__val_number_token2] = ACTIONS(1717), + [aux_sym__val_number_token3] = ACTIONS(1717), + [anon_sym_DQUOTE] = ACTIONS(1717), + [sym__str_single_quotes] = ACTIONS(1717), + [sym__str_back_ticks] = ACTIONS(1717), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1717), + [anon_sym_PLUS] = ACTIONS(1715), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1715), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1717), }, - [560] = { - [sym_comment] = STATE(560), - [anon_sym_export] = ACTIONS(2416), - [anon_sym_alias] = ACTIONS(2416), - [anon_sym_let] = ACTIONS(2416), - [anon_sym_let_DASHenv] = ACTIONS(2416), - [anon_sym_mut] = ACTIONS(2416), - [anon_sym_const] = ACTIONS(2416), - [aux_sym_cmd_identifier_token1] = ACTIONS(2416), - [aux_sym_cmd_identifier_token2] = ACTIONS(2416), - [aux_sym_cmd_identifier_token3] = ACTIONS(2416), - [aux_sym_cmd_identifier_token4] = ACTIONS(2416), - [aux_sym_cmd_identifier_token5] = ACTIONS(2416), - [aux_sym_cmd_identifier_token6] = ACTIONS(2416), - [aux_sym_cmd_identifier_token7] = ACTIONS(2416), - [aux_sym_cmd_identifier_token8] = ACTIONS(2416), - [aux_sym_cmd_identifier_token9] = ACTIONS(2416), - [aux_sym_cmd_identifier_token10] = ACTIONS(2416), - [aux_sym_cmd_identifier_token11] = ACTIONS(2416), - [aux_sym_cmd_identifier_token12] = ACTIONS(2416), - [aux_sym_cmd_identifier_token13] = ACTIONS(2416), - [aux_sym_cmd_identifier_token14] = ACTIONS(2416), - [aux_sym_cmd_identifier_token15] = ACTIONS(2416), - [aux_sym_cmd_identifier_token16] = ACTIONS(2416), - [aux_sym_cmd_identifier_token17] = ACTIONS(2416), - [aux_sym_cmd_identifier_token18] = ACTIONS(2416), - [aux_sym_cmd_identifier_token19] = ACTIONS(2416), - [aux_sym_cmd_identifier_token20] = ACTIONS(2416), - [aux_sym_cmd_identifier_token21] = ACTIONS(2416), - [aux_sym_cmd_identifier_token22] = ACTIONS(2416), - [aux_sym_cmd_identifier_token23] = ACTIONS(2416), - [aux_sym_cmd_identifier_token24] = ACTIONS(2416), - [aux_sym_cmd_identifier_token25] = ACTIONS(2416), - [aux_sym_cmd_identifier_token26] = ACTIONS(2416), - [aux_sym_cmd_identifier_token27] = ACTIONS(2416), - [aux_sym_cmd_identifier_token28] = ACTIONS(2416), - [aux_sym_cmd_identifier_token29] = ACTIONS(2416), - [aux_sym_cmd_identifier_token30] = ACTIONS(2416), - [aux_sym_cmd_identifier_token31] = ACTIONS(2416), - [aux_sym_cmd_identifier_token32] = ACTIONS(2416), - [aux_sym_cmd_identifier_token33] = ACTIONS(2416), - [aux_sym_cmd_identifier_token34] = ACTIONS(2416), - [aux_sym_cmd_identifier_token35] = ACTIONS(2416), - [aux_sym_cmd_identifier_token36] = ACTIONS(2416), - [anon_sym_true] = ACTIONS(2416), - [anon_sym_false] = ACTIONS(2416), - [anon_sym_null] = ACTIONS(2416), - [aux_sym_cmd_identifier_token38] = ACTIONS(2416), - [aux_sym_cmd_identifier_token39] = ACTIONS(2416), - [aux_sym_cmd_identifier_token40] = ACTIONS(2416), - [anon_sym_def] = ACTIONS(2416), - [anon_sym_export_DASHenv] = ACTIONS(2416), - [anon_sym_extern] = ACTIONS(2416), - [anon_sym_module] = ACTIONS(2416), - [anon_sym_use] = ACTIONS(2416), - [anon_sym_LPAREN] = ACTIONS(2416), - [anon_sym_DOLLAR] = ACTIONS(2416), - [anon_sym_error] = ACTIONS(2416), - [anon_sym_list] = ACTIONS(2416), - [anon_sym_DASH] = ACTIONS(2416), - [anon_sym_break] = ACTIONS(2416), - [anon_sym_continue] = ACTIONS(2416), - [anon_sym_for] = ACTIONS(2416), - [anon_sym_in] = ACTIONS(2416), - [anon_sym_loop] = ACTIONS(2416), - [anon_sym_make] = ACTIONS(2416), - [anon_sym_while] = ACTIONS(2416), - [anon_sym_do] = ACTIONS(2416), - [anon_sym_if] = ACTIONS(2416), - [anon_sym_else] = ACTIONS(2416), - [anon_sym_match] = ACTIONS(2416), - [anon_sym_RBRACE] = ACTIONS(2416), - [anon_sym_try] = ACTIONS(2416), - [anon_sym_catch] = ACTIONS(2416), - [anon_sym_return] = ACTIONS(2416), - [anon_sym_source] = ACTIONS(2416), - [anon_sym_source_DASHenv] = ACTIONS(2416), - [anon_sym_register] = ACTIONS(2416), - [anon_sym_hide] = ACTIONS(2416), - [anon_sym_hide_DASHenv] = ACTIONS(2416), - [anon_sym_overlay] = ACTIONS(2416), - [anon_sym_new] = ACTIONS(2416), - [anon_sym_as] = ACTIONS(2416), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2416), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2416), - [aux_sym__val_number_decimal_token1] = ACTIONS(2416), - [aux_sym__val_number_decimal_token2] = ACTIONS(2416), - [aux_sym__val_number_decimal_token3] = ACTIONS(2416), - [aux_sym__val_number_decimal_token4] = ACTIONS(2416), - [aux_sym__val_number_token1] = ACTIONS(2416), - [aux_sym__val_number_token2] = ACTIONS(2416), - [aux_sym__val_number_token3] = ACTIONS(2416), - [anon_sym_DQUOTE] = ACTIONS(2416), - [sym__str_single_quotes] = ACTIONS(2416), - [sym__str_back_ticks] = ACTIONS(2416), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2416), - [sym__entry_separator] = ACTIONS(2418), - [anon_sym_PLUS] = ACTIONS(2416), + [518] = { + [sym_comment] = STATE(518), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_alias] = ACTIONS(1074), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_let_DASHenv] = ACTIONS(1074), + [anon_sym_mut] = ACTIONS(1074), + [anon_sym_const] = ACTIONS(1074), + [aux_sym_cmd_identifier_token1] = ACTIONS(1074), + [aux_sym_cmd_identifier_token2] = ACTIONS(1074), + [aux_sym_cmd_identifier_token3] = ACTIONS(1074), + [aux_sym_cmd_identifier_token4] = ACTIONS(1074), + [aux_sym_cmd_identifier_token5] = ACTIONS(1074), + [aux_sym_cmd_identifier_token6] = ACTIONS(1074), + [aux_sym_cmd_identifier_token7] = ACTIONS(1074), + [aux_sym_cmd_identifier_token8] = ACTIONS(1074), + [aux_sym_cmd_identifier_token9] = ACTIONS(1074), + [aux_sym_cmd_identifier_token10] = ACTIONS(1074), + [aux_sym_cmd_identifier_token11] = ACTIONS(1074), + [aux_sym_cmd_identifier_token12] = ACTIONS(1074), + [aux_sym_cmd_identifier_token13] = ACTIONS(1074), + [aux_sym_cmd_identifier_token14] = ACTIONS(1074), + [aux_sym_cmd_identifier_token15] = ACTIONS(1074), + [aux_sym_cmd_identifier_token16] = ACTIONS(1074), + [aux_sym_cmd_identifier_token17] = ACTIONS(1074), + [aux_sym_cmd_identifier_token18] = ACTIONS(1074), + [aux_sym_cmd_identifier_token19] = ACTIONS(1074), + [aux_sym_cmd_identifier_token20] = ACTIONS(1074), + [aux_sym_cmd_identifier_token21] = ACTIONS(1074), + [aux_sym_cmd_identifier_token22] = ACTIONS(1074), + [aux_sym_cmd_identifier_token23] = ACTIONS(1074), + [aux_sym_cmd_identifier_token24] = ACTIONS(1074), + [aux_sym_cmd_identifier_token25] = ACTIONS(1074), + [aux_sym_cmd_identifier_token26] = ACTIONS(1074), + [aux_sym_cmd_identifier_token27] = ACTIONS(1074), + [aux_sym_cmd_identifier_token28] = ACTIONS(1074), + [aux_sym_cmd_identifier_token29] = ACTIONS(1074), + [aux_sym_cmd_identifier_token30] = ACTIONS(1074), + [aux_sym_cmd_identifier_token31] = ACTIONS(1074), + [aux_sym_cmd_identifier_token32] = ACTIONS(1074), + [aux_sym_cmd_identifier_token33] = ACTIONS(1074), + [aux_sym_cmd_identifier_token34] = ACTIONS(1074), + [aux_sym_cmd_identifier_token35] = ACTIONS(1074), + [aux_sym_cmd_identifier_token36] = ACTIONS(1074), + [anon_sym_true] = ACTIONS(1074), + [anon_sym_false] = ACTIONS(1074), + [anon_sym_null] = ACTIONS(1074), + [aux_sym_cmd_identifier_token38] = ACTIONS(1074), + [aux_sym_cmd_identifier_token39] = ACTIONS(1074), + [aux_sym_cmd_identifier_token40] = ACTIONS(1074), + [anon_sym_def] = ACTIONS(1074), + [anon_sym_export_DASHenv] = ACTIONS(1074), + [anon_sym_extern] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_use] = ACTIONS(1074), + [anon_sym_LPAREN] = ACTIONS(1074), + [anon_sym_DOLLAR] = ACTIONS(1074), + [anon_sym_error] = ACTIONS(1074), + [anon_sym_list] = ACTIONS(1074), + [anon_sym_DASH] = ACTIONS(1074), + [anon_sym_break] = ACTIONS(1074), + [anon_sym_continue] = ACTIONS(1074), + [anon_sym_for] = ACTIONS(1074), + [anon_sym_in] = ACTIONS(1074), + [anon_sym_loop] = ACTIONS(1074), + [anon_sym_make] = ACTIONS(1074), + [anon_sym_while] = ACTIONS(1074), + [anon_sym_do] = ACTIONS(1074), + [anon_sym_if] = ACTIONS(1074), + [anon_sym_else] = ACTIONS(1074), + [anon_sym_match] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(1074), + [anon_sym_try] = ACTIONS(1074), + [anon_sym_catch] = ACTIONS(1074), + [anon_sym_return] = ACTIONS(1074), + [anon_sym_source] = ACTIONS(1074), + [anon_sym_source_DASHenv] = ACTIONS(1074), + [anon_sym_register] = ACTIONS(1074), + [anon_sym_hide] = ACTIONS(1074), + [anon_sym_hide_DASHenv] = ACTIONS(1074), + [anon_sym_overlay] = ACTIONS(1074), + [anon_sym_new] = ACTIONS(1074), + [anon_sym_as] = ACTIONS(1074), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1074), + [anon_sym_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1074), + [aux_sym__val_number_decimal_token1] = ACTIONS(1074), + [aux_sym__val_number_decimal_token2] = ACTIONS(1074), + [aux_sym__val_number_decimal_token3] = ACTIONS(1074), + [aux_sym__val_number_decimal_token4] = ACTIONS(1074), + [aux_sym__val_number_token1] = ACTIONS(1074), + [aux_sym__val_number_token2] = ACTIONS(1074), + [aux_sym__val_number_token3] = ACTIONS(1074), + [anon_sym_DQUOTE] = ACTIONS(1074), + [sym__str_single_quotes] = ACTIONS(1074), + [sym__str_back_ticks] = ACTIONS(1074), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1074), + [sym__entry_separator] = ACTIONS(1076), + [anon_sym_PLUS] = ACTIONS(1074), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1076), }, - [561] = { - [sym_comment] = STATE(561), - [anon_sym_export] = ACTIONS(2029), - [anon_sym_alias] = ACTIONS(2029), - [anon_sym_let] = ACTIONS(2029), - [anon_sym_let_DASHenv] = ACTIONS(2029), - [anon_sym_mut] = ACTIONS(2029), - [anon_sym_const] = ACTIONS(2029), - [aux_sym_cmd_identifier_token1] = ACTIONS(2029), - [aux_sym_cmd_identifier_token2] = ACTIONS(2029), - [aux_sym_cmd_identifier_token3] = ACTIONS(2029), - [aux_sym_cmd_identifier_token4] = ACTIONS(2029), - [aux_sym_cmd_identifier_token5] = ACTIONS(2029), - [aux_sym_cmd_identifier_token6] = ACTIONS(2029), - [aux_sym_cmd_identifier_token7] = ACTIONS(2029), - [aux_sym_cmd_identifier_token8] = ACTIONS(2029), - [aux_sym_cmd_identifier_token9] = ACTIONS(2029), - [aux_sym_cmd_identifier_token10] = ACTIONS(2029), - [aux_sym_cmd_identifier_token11] = ACTIONS(2029), - [aux_sym_cmd_identifier_token12] = ACTIONS(2029), - [aux_sym_cmd_identifier_token13] = ACTIONS(2029), - [aux_sym_cmd_identifier_token14] = ACTIONS(2029), - [aux_sym_cmd_identifier_token15] = ACTIONS(2029), - [aux_sym_cmd_identifier_token16] = ACTIONS(2029), - [aux_sym_cmd_identifier_token17] = ACTIONS(2029), - [aux_sym_cmd_identifier_token18] = ACTIONS(2029), - [aux_sym_cmd_identifier_token19] = ACTIONS(2029), - [aux_sym_cmd_identifier_token20] = ACTIONS(2029), - [aux_sym_cmd_identifier_token21] = ACTIONS(2029), - [aux_sym_cmd_identifier_token22] = ACTIONS(2029), - [aux_sym_cmd_identifier_token23] = ACTIONS(2029), - [aux_sym_cmd_identifier_token24] = ACTIONS(2029), - [aux_sym_cmd_identifier_token25] = ACTIONS(2029), - [aux_sym_cmd_identifier_token26] = ACTIONS(2029), - [aux_sym_cmd_identifier_token27] = ACTIONS(2029), - [aux_sym_cmd_identifier_token28] = ACTIONS(2029), - [aux_sym_cmd_identifier_token29] = ACTIONS(2029), - [aux_sym_cmd_identifier_token30] = ACTIONS(2029), - [aux_sym_cmd_identifier_token31] = ACTIONS(2029), - [aux_sym_cmd_identifier_token32] = ACTIONS(2029), - [aux_sym_cmd_identifier_token33] = ACTIONS(2029), - [aux_sym_cmd_identifier_token34] = ACTIONS(2029), - [aux_sym_cmd_identifier_token35] = ACTIONS(2029), - [aux_sym_cmd_identifier_token36] = ACTIONS(2029), - [anon_sym_true] = ACTIONS(2029), - [anon_sym_false] = ACTIONS(2029), - [anon_sym_null] = ACTIONS(2029), - [aux_sym_cmd_identifier_token38] = ACTIONS(2029), - [aux_sym_cmd_identifier_token39] = ACTIONS(2029), - [aux_sym_cmd_identifier_token40] = ACTIONS(2029), - [anon_sym_def] = ACTIONS(2029), - [anon_sym_export_DASHenv] = ACTIONS(2029), - [anon_sym_extern] = ACTIONS(2029), - [anon_sym_module] = ACTIONS(2029), - [anon_sym_use] = ACTIONS(2029), - [anon_sym_LPAREN] = ACTIONS(2029), - [anon_sym_DOLLAR] = ACTIONS(2029), - [anon_sym_error] = ACTIONS(2029), - [anon_sym_list] = ACTIONS(2029), - [anon_sym_DASH] = ACTIONS(2029), - [anon_sym_break] = ACTIONS(2029), - [anon_sym_continue] = ACTIONS(2029), - [anon_sym_for] = ACTIONS(2029), - [anon_sym_in] = ACTIONS(2029), - [anon_sym_loop] = ACTIONS(2029), - [anon_sym_make] = ACTIONS(2029), - [anon_sym_while] = ACTIONS(2029), - [anon_sym_do] = ACTIONS(2029), - [anon_sym_if] = ACTIONS(2029), - [anon_sym_else] = ACTIONS(2029), - [anon_sym_match] = ACTIONS(2029), - [anon_sym_RBRACE] = ACTIONS(2029), - [anon_sym_try] = ACTIONS(2029), - [anon_sym_catch] = ACTIONS(2029), - [anon_sym_return] = ACTIONS(2029), - [anon_sym_source] = ACTIONS(2029), - [anon_sym_source_DASHenv] = ACTIONS(2029), - [anon_sym_register] = ACTIONS(2029), - [anon_sym_hide] = ACTIONS(2029), - [anon_sym_hide_DASHenv] = ACTIONS(2029), - [anon_sym_overlay] = ACTIONS(2029), - [anon_sym_new] = ACTIONS(2029), - [anon_sym_as] = ACTIONS(2029), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2029), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2029), - [aux_sym__val_number_decimal_token1] = ACTIONS(2029), - [aux_sym__val_number_decimal_token2] = ACTIONS(2029), - [aux_sym__val_number_decimal_token3] = ACTIONS(2029), - [aux_sym__val_number_decimal_token4] = ACTIONS(2029), - [aux_sym__val_number_token1] = ACTIONS(2029), - [aux_sym__val_number_token2] = ACTIONS(2029), - [aux_sym__val_number_token3] = ACTIONS(2029), - [anon_sym_DQUOTE] = ACTIONS(2029), - [sym__str_single_quotes] = ACTIONS(2029), - [sym__str_back_ticks] = ACTIONS(2029), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2029), - [sym__entry_separator] = ACTIONS(2031), - [anon_sym_PLUS] = ACTIONS(2029), - [anon_sym_POUND] = ACTIONS(3), + [519] = { + [sym__expr_parenthesized_immediate] = STATE(7450), + [sym_comment] = STATE(519), + [anon_sym_export] = ACTIONS(2196), + [anon_sym_alias] = ACTIONS(2196), + [anon_sym_let] = ACTIONS(2196), + [anon_sym_let_DASHenv] = ACTIONS(2196), + [anon_sym_mut] = ACTIONS(2196), + [anon_sym_const] = ACTIONS(2196), + [aux_sym_cmd_identifier_token1] = ACTIONS(2196), + [aux_sym_cmd_identifier_token2] = ACTIONS(2196), + [aux_sym_cmd_identifier_token3] = ACTIONS(2196), + [aux_sym_cmd_identifier_token4] = ACTIONS(2196), + [aux_sym_cmd_identifier_token5] = ACTIONS(2196), + [aux_sym_cmd_identifier_token6] = ACTIONS(2196), + [aux_sym_cmd_identifier_token7] = ACTIONS(2196), + [aux_sym_cmd_identifier_token8] = ACTIONS(2196), + [aux_sym_cmd_identifier_token9] = ACTIONS(2196), + [aux_sym_cmd_identifier_token10] = ACTIONS(2196), + [aux_sym_cmd_identifier_token11] = ACTIONS(2196), + [aux_sym_cmd_identifier_token12] = ACTIONS(2196), + [aux_sym_cmd_identifier_token13] = ACTIONS(2196), + [aux_sym_cmd_identifier_token14] = ACTIONS(2196), + [aux_sym_cmd_identifier_token15] = ACTIONS(2196), + [aux_sym_cmd_identifier_token16] = ACTIONS(2196), + [aux_sym_cmd_identifier_token17] = ACTIONS(2196), + [aux_sym_cmd_identifier_token18] = ACTIONS(2196), + [aux_sym_cmd_identifier_token19] = ACTIONS(2196), + [aux_sym_cmd_identifier_token20] = ACTIONS(2196), + [aux_sym_cmd_identifier_token21] = ACTIONS(2196), + [aux_sym_cmd_identifier_token22] = ACTIONS(2196), + [aux_sym_cmd_identifier_token23] = ACTIONS(2196), + [aux_sym_cmd_identifier_token24] = ACTIONS(2196), + [aux_sym_cmd_identifier_token25] = ACTIONS(2196), + [aux_sym_cmd_identifier_token26] = ACTIONS(2196), + [aux_sym_cmd_identifier_token27] = ACTIONS(2196), + [aux_sym_cmd_identifier_token28] = ACTIONS(2196), + [aux_sym_cmd_identifier_token29] = ACTIONS(2196), + [aux_sym_cmd_identifier_token30] = ACTIONS(2196), + [aux_sym_cmd_identifier_token31] = ACTIONS(2196), + [aux_sym_cmd_identifier_token32] = ACTIONS(2196), + [aux_sym_cmd_identifier_token33] = ACTIONS(2196), + [aux_sym_cmd_identifier_token34] = ACTIONS(2196), + [aux_sym_cmd_identifier_token35] = ACTIONS(2196), + [aux_sym_cmd_identifier_token36] = ACTIONS(2196), + [anon_sym_true] = ACTIONS(2198), + [anon_sym_false] = ACTIONS(2198), + [anon_sym_null] = ACTIONS(2198), + [aux_sym_cmd_identifier_token38] = ACTIONS(2196), + [aux_sym_cmd_identifier_token39] = ACTIONS(2198), + [aux_sym_cmd_identifier_token40] = ACTIONS(2198), + [anon_sym_def] = ACTIONS(2196), + [anon_sym_export_DASHenv] = ACTIONS(2196), + [anon_sym_extern] = ACTIONS(2196), + [anon_sym_module] = ACTIONS(2196), + [anon_sym_use] = ACTIONS(2196), + [anon_sym_LPAREN] = ACTIONS(2196), + [anon_sym_DOLLAR] = ACTIONS(2198), + [anon_sym_error] = ACTIONS(2196), + [anon_sym_list] = ACTIONS(2196), + [anon_sym_DASH] = ACTIONS(2196), + [anon_sym_break] = ACTIONS(2196), + [anon_sym_continue] = ACTIONS(2196), + [anon_sym_for] = ACTIONS(2196), + [anon_sym_in] = ACTIONS(2196), + [anon_sym_loop] = ACTIONS(2196), + [anon_sym_make] = ACTIONS(2196), + [anon_sym_while] = ACTIONS(2196), + [anon_sym_do] = ACTIONS(2196), + [anon_sym_if] = ACTIONS(2196), + [anon_sym_else] = ACTIONS(2196), + [anon_sym_match] = ACTIONS(2196), + [anon_sym_RBRACE] = ACTIONS(2198), + [anon_sym_try] = ACTIONS(2196), + [anon_sym_catch] = ACTIONS(2196), + [anon_sym_return] = ACTIONS(2196), + [anon_sym_source] = ACTIONS(2196), + [anon_sym_source_DASHenv] = ACTIONS(2196), + [anon_sym_register] = ACTIONS(2196), + [anon_sym_hide] = ACTIONS(2196), + [anon_sym_hide_DASHenv] = ACTIONS(2196), + [anon_sym_overlay] = ACTIONS(2196), + [anon_sym_new] = ACTIONS(2196), + [anon_sym_as] = ACTIONS(2196), + [anon_sym_LPAREN2] = ACTIONS(1630), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2198), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2198), + [aux_sym__val_number_decimal_token1] = ACTIONS(2196), + [aux_sym__val_number_decimal_token2] = ACTIONS(2198), + [aux_sym__val_number_decimal_token3] = ACTIONS(2198), + [aux_sym__val_number_decimal_token4] = ACTIONS(2198), + [aux_sym__val_number_token1] = ACTIONS(2198), + [aux_sym__val_number_token2] = ACTIONS(2198), + [aux_sym__val_number_token3] = ACTIONS(2198), + [anon_sym_DQUOTE] = ACTIONS(2198), + [sym__str_single_quotes] = ACTIONS(2198), + [sym__str_back_ticks] = ACTIONS(2198), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2198), + [anon_sym_PLUS] = ACTIONS(2196), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2198), }, - [562] = { - [sym_comment] = STATE(562), - [anon_sym_export] = ACTIONS(2033), - [anon_sym_alias] = ACTIONS(2033), - [anon_sym_let] = ACTIONS(2033), - [anon_sym_let_DASHenv] = ACTIONS(2033), - [anon_sym_mut] = ACTIONS(2033), - [anon_sym_const] = ACTIONS(2033), - [aux_sym_cmd_identifier_token1] = ACTIONS(2033), - [aux_sym_cmd_identifier_token2] = ACTIONS(2033), - [aux_sym_cmd_identifier_token3] = ACTIONS(2033), - [aux_sym_cmd_identifier_token4] = ACTIONS(2033), - [aux_sym_cmd_identifier_token5] = ACTIONS(2033), - [aux_sym_cmd_identifier_token6] = ACTIONS(2033), - [aux_sym_cmd_identifier_token7] = ACTIONS(2033), - [aux_sym_cmd_identifier_token8] = ACTIONS(2033), - [aux_sym_cmd_identifier_token9] = ACTIONS(2033), - [aux_sym_cmd_identifier_token10] = ACTIONS(2033), - [aux_sym_cmd_identifier_token11] = ACTIONS(2033), - [aux_sym_cmd_identifier_token12] = ACTIONS(2033), - [aux_sym_cmd_identifier_token13] = ACTIONS(2033), - [aux_sym_cmd_identifier_token14] = ACTIONS(2033), - [aux_sym_cmd_identifier_token15] = ACTIONS(2033), - [aux_sym_cmd_identifier_token16] = ACTIONS(2033), - [aux_sym_cmd_identifier_token17] = ACTIONS(2033), - [aux_sym_cmd_identifier_token18] = ACTIONS(2033), - [aux_sym_cmd_identifier_token19] = ACTIONS(2033), - [aux_sym_cmd_identifier_token20] = ACTIONS(2033), - [aux_sym_cmd_identifier_token21] = ACTIONS(2033), - [aux_sym_cmd_identifier_token22] = ACTIONS(2033), - [aux_sym_cmd_identifier_token23] = ACTIONS(2033), - [aux_sym_cmd_identifier_token24] = ACTIONS(2033), - [aux_sym_cmd_identifier_token25] = ACTIONS(2033), - [aux_sym_cmd_identifier_token26] = ACTIONS(2033), - [aux_sym_cmd_identifier_token27] = ACTIONS(2033), - [aux_sym_cmd_identifier_token28] = ACTIONS(2033), - [aux_sym_cmd_identifier_token29] = ACTIONS(2033), - [aux_sym_cmd_identifier_token30] = ACTIONS(2033), - [aux_sym_cmd_identifier_token31] = ACTIONS(2033), - [aux_sym_cmd_identifier_token32] = ACTIONS(2033), - [aux_sym_cmd_identifier_token33] = ACTIONS(2033), - [aux_sym_cmd_identifier_token34] = ACTIONS(2033), - [aux_sym_cmd_identifier_token35] = ACTIONS(2033), - [aux_sym_cmd_identifier_token36] = ACTIONS(2033), - [anon_sym_true] = ACTIONS(2033), - [anon_sym_false] = ACTIONS(2033), - [anon_sym_null] = ACTIONS(2033), - [aux_sym_cmd_identifier_token38] = ACTIONS(2033), - [aux_sym_cmd_identifier_token39] = ACTIONS(2033), - [aux_sym_cmd_identifier_token40] = ACTIONS(2033), - [anon_sym_def] = ACTIONS(2033), - [anon_sym_export_DASHenv] = ACTIONS(2033), - [anon_sym_extern] = ACTIONS(2033), - [anon_sym_module] = ACTIONS(2033), - [anon_sym_use] = ACTIONS(2033), - [anon_sym_LPAREN] = ACTIONS(2033), - [anon_sym_DOLLAR] = ACTIONS(2033), - [anon_sym_error] = ACTIONS(2033), - [anon_sym_list] = ACTIONS(2033), - [anon_sym_DASH] = ACTIONS(2033), - [anon_sym_break] = ACTIONS(2033), - [anon_sym_continue] = ACTIONS(2033), - [anon_sym_for] = ACTIONS(2033), - [anon_sym_in] = ACTIONS(2033), - [anon_sym_loop] = ACTIONS(2033), - [anon_sym_make] = ACTIONS(2033), - [anon_sym_while] = ACTIONS(2033), - [anon_sym_do] = ACTIONS(2033), - [anon_sym_if] = ACTIONS(2033), - [anon_sym_else] = ACTIONS(2033), - [anon_sym_match] = ACTIONS(2033), - [anon_sym_RBRACE] = ACTIONS(2033), - [anon_sym_try] = ACTIONS(2033), - [anon_sym_catch] = ACTIONS(2033), - [anon_sym_return] = ACTIONS(2033), - [anon_sym_source] = ACTIONS(2033), - [anon_sym_source_DASHenv] = ACTIONS(2033), - [anon_sym_register] = ACTIONS(2033), - [anon_sym_hide] = ACTIONS(2033), - [anon_sym_hide_DASHenv] = ACTIONS(2033), - [anon_sym_overlay] = ACTIONS(2033), - [anon_sym_new] = ACTIONS(2033), - [anon_sym_as] = ACTIONS(2033), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2033), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2033), - [aux_sym__val_number_decimal_token1] = ACTIONS(2033), - [aux_sym__val_number_decimal_token2] = ACTIONS(2033), - [aux_sym__val_number_decimal_token3] = ACTIONS(2033), - [aux_sym__val_number_decimal_token4] = ACTIONS(2033), - [aux_sym__val_number_token1] = ACTIONS(2033), - [aux_sym__val_number_token2] = ACTIONS(2033), - [aux_sym__val_number_token3] = ACTIONS(2033), - [anon_sym_DQUOTE] = ACTIONS(2033), - [sym__str_single_quotes] = ACTIONS(2033), - [sym__str_back_ticks] = ACTIONS(2033), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2033), - [sym__entry_separator] = ACTIONS(2035), - [anon_sym_PLUS] = ACTIONS(2033), - [anon_sym_POUND] = ACTIONS(3), + [520] = { + [sym_comment] = STATE(520), + [anon_sym_export] = ACTIONS(1048), + [anon_sym_alias] = ACTIONS(1048), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_let_DASHenv] = ACTIONS(1048), + [anon_sym_mut] = ACTIONS(1048), + [anon_sym_const] = ACTIONS(1048), + [aux_sym_cmd_identifier_token1] = ACTIONS(1048), + [aux_sym_cmd_identifier_token2] = ACTIONS(1048), + [aux_sym_cmd_identifier_token3] = ACTIONS(1048), + [aux_sym_cmd_identifier_token4] = ACTIONS(1048), + [aux_sym_cmd_identifier_token5] = ACTIONS(1048), + [aux_sym_cmd_identifier_token6] = ACTIONS(1048), + [aux_sym_cmd_identifier_token7] = ACTIONS(1048), + [aux_sym_cmd_identifier_token8] = ACTIONS(1048), + [aux_sym_cmd_identifier_token9] = ACTIONS(1048), + [aux_sym_cmd_identifier_token10] = ACTIONS(1048), + [aux_sym_cmd_identifier_token11] = ACTIONS(1048), + [aux_sym_cmd_identifier_token12] = ACTIONS(1048), + [aux_sym_cmd_identifier_token13] = ACTIONS(1048), + [aux_sym_cmd_identifier_token14] = ACTIONS(1048), + [aux_sym_cmd_identifier_token15] = ACTIONS(1048), + [aux_sym_cmd_identifier_token16] = ACTIONS(1048), + [aux_sym_cmd_identifier_token17] = ACTIONS(1048), + [aux_sym_cmd_identifier_token18] = ACTIONS(1048), + [aux_sym_cmd_identifier_token19] = ACTIONS(1048), + [aux_sym_cmd_identifier_token20] = ACTIONS(1048), + [aux_sym_cmd_identifier_token21] = ACTIONS(1048), + [aux_sym_cmd_identifier_token22] = ACTIONS(1048), + [aux_sym_cmd_identifier_token23] = ACTIONS(1048), + [aux_sym_cmd_identifier_token24] = ACTIONS(1048), + [aux_sym_cmd_identifier_token25] = ACTIONS(1048), + [aux_sym_cmd_identifier_token26] = ACTIONS(1048), + [aux_sym_cmd_identifier_token27] = ACTIONS(1048), + [aux_sym_cmd_identifier_token28] = ACTIONS(1048), + [aux_sym_cmd_identifier_token29] = ACTIONS(1048), + [aux_sym_cmd_identifier_token30] = ACTIONS(1048), + [aux_sym_cmd_identifier_token31] = ACTIONS(1048), + [aux_sym_cmd_identifier_token32] = ACTIONS(1048), + [aux_sym_cmd_identifier_token33] = ACTIONS(1048), + [aux_sym_cmd_identifier_token34] = ACTIONS(1048), + [aux_sym_cmd_identifier_token35] = ACTIONS(1048), + [aux_sym_cmd_identifier_token36] = ACTIONS(1048), + [anon_sym_true] = ACTIONS(1050), + [anon_sym_false] = ACTIONS(1050), + [anon_sym_null] = ACTIONS(1050), + [aux_sym_cmd_identifier_token38] = ACTIONS(1048), + [aux_sym_cmd_identifier_token39] = ACTIONS(1050), + [aux_sym_cmd_identifier_token40] = ACTIONS(1050), + [anon_sym_def] = ACTIONS(1048), + [anon_sym_export_DASHenv] = ACTIONS(1048), + [anon_sym_extern] = ACTIONS(1048), + [anon_sym_module] = ACTIONS(1048), + [anon_sym_use] = ACTIONS(1048), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_DOLLAR] = ACTIONS(1050), + [anon_sym_error] = ACTIONS(1048), + [anon_sym_list] = ACTIONS(1048), + [anon_sym_DASH] = ACTIONS(1048), + [anon_sym_break] = ACTIONS(1048), + [anon_sym_continue] = ACTIONS(1048), + [anon_sym_for] = ACTIONS(1048), + [anon_sym_in] = ACTIONS(1048), + [anon_sym_loop] = ACTIONS(1048), + [anon_sym_make] = ACTIONS(1048), + [anon_sym_while] = ACTIONS(1048), + [anon_sym_do] = ACTIONS(1048), + [anon_sym_if] = ACTIONS(1048), + [anon_sym_else] = ACTIONS(1048), + [anon_sym_match] = ACTIONS(1048), + [anon_sym_RBRACE] = ACTIONS(1050), + [anon_sym_try] = ACTIONS(1048), + [anon_sym_catch] = ACTIONS(1048), + [anon_sym_return] = ACTIONS(1048), + [anon_sym_source] = ACTIONS(1048), + [anon_sym_source_DASHenv] = ACTIONS(1048), + [anon_sym_register] = ACTIONS(1048), + [anon_sym_hide] = ACTIONS(1048), + [anon_sym_hide_DASHenv] = ACTIONS(1048), + [anon_sym_overlay] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1048), + [anon_sym_as] = ACTIONS(1048), + [anon_sym_QMARK2] = ACTIONS(2370), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1050), + [anon_sym_DOT] = ACTIONS(1048), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1050), + [aux_sym__val_number_decimal_token1] = ACTIONS(1048), + [aux_sym__val_number_decimal_token2] = ACTIONS(1050), + [aux_sym__val_number_decimal_token3] = ACTIONS(1050), + [aux_sym__val_number_decimal_token4] = ACTIONS(1050), + [aux_sym__val_number_token1] = ACTIONS(1050), + [aux_sym__val_number_token2] = ACTIONS(1050), + [aux_sym__val_number_token3] = ACTIONS(1050), + [anon_sym_DQUOTE] = ACTIONS(1050), + [sym__str_single_quotes] = ACTIONS(1050), + [sym__str_back_ticks] = ACTIONS(1050), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1050), + [anon_sym_PLUS] = ACTIONS(1048), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1050), }, - [563] = { - [sym_comment] = STATE(563), - [anon_sym_export] = ACTIONS(1864), - [anon_sym_alias] = ACTIONS(1864), - [anon_sym_let] = ACTIONS(1864), - [anon_sym_let_DASHenv] = ACTIONS(1864), - [anon_sym_mut] = ACTIONS(1864), - [anon_sym_const] = ACTIONS(1864), - [aux_sym_cmd_identifier_token1] = ACTIONS(1864), - [aux_sym_cmd_identifier_token2] = ACTIONS(1864), - [aux_sym_cmd_identifier_token3] = ACTIONS(1864), - [aux_sym_cmd_identifier_token4] = ACTIONS(1864), - [aux_sym_cmd_identifier_token5] = ACTIONS(1864), - [aux_sym_cmd_identifier_token6] = ACTIONS(1864), - [aux_sym_cmd_identifier_token7] = ACTIONS(1864), - [aux_sym_cmd_identifier_token8] = ACTIONS(1864), - [aux_sym_cmd_identifier_token9] = ACTIONS(1864), - [aux_sym_cmd_identifier_token10] = ACTIONS(1864), - [aux_sym_cmd_identifier_token11] = ACTIONS(1864), - [aux_sym_cmd_identifier_token12] = ACTIONS(1864), - [aux_sym_cmd_identifier_token13] = ACTIONS(1864), - [aux_sym_cmd_identifier_token14] = ACTIONS(1864), - [aux_sym_cmd_identifier_token15] = ACTIONS(1864), - [aux_sym_cmd_identifier_token16] = ACTIONS(1864), - [aux_sym_cmd_identifier_token17] = ACTIONS(1864), - [aux_sym_cmd_identifier_token18] = ACTIONS(1864), - [aux_sym_cmd_identifier_token19] = ACTIONS(1864), - [aux_sym_cmd_identifier_token20] = ACTIONS(1864), - [aux_sym_cmd_identifier_token21] = ACTIONS(1864), - [aux_sym_cmd_identifier_token22] = ACTIONS(1864), - [aux_sym_cmd_identifier_token23] = ACTIONS(1864), - [aux_sym_cmd_identifier_token24] = ACTIONS(1864), - [aux_sym_cmd_identifier_token25] = ACTIONS(1864), - [aux_sym_cmd_identifier_token26] = ACTIONS(1864), - [aux_sym_cmd_identifier_token27] = ACTIONS(1864), - [aux_sym_cmd_identifier_token28] = ACTIONS(1864), - [aux_sym_cmd_identifier_token29] = ACTIONS(1864), - [aux_sym_cmd_identifier_token30] = ACTIONS(1864), - [aux_sym_cmd_identifier_token31] = ACTIONS(1864), - [aux_sym_cmd_identifier_token32] = ACTIONS(1864), - [aux_sym_cmd_identifier_token33] = ACTIONS(1864), - [aux_sym_cmd_identifier_token34] = ACTIONS(1864), - [aux_sym_cmd_identifier_token35] = ACTIONS(1864), - [aux_sym_cmd_identifier_token36] = ACTIONS(1864), - [anon_sym_true] = ACTIONS(1864), - [anon_sym_false] = ACTIONS(1864), - [anon_sym_null] = ACTIONS(1864), - [aux_sym_cmd_identifier_token38] = ACTIONS(1864), - [aux_sym_cmd_identifier_token39] = ACTIONS(1864), - [aux_sym_cmd_identifier_token40] = ACTIONS(1864), - [anon_sym_def] = ACTIONS(1864), - [anon_sym_export_DASHenv] = ACTIONS(1864), - [anon_sym_extern] = ACTIONS(1864), - [anon_sym_module] = ACTIONS(1864), - [anon_sym_use] = ACTIONS(1864), - [anon_sym_LPAREN] = ACTIONS(1864), - [anon_sym_DOLLAR] = ACTIONS(1864), - [anon_sym_error] = ACTIONS(1864), - [anon_sym_list] = ACTIONS(1864), - [anon_sym_DASH] = ACTIONS(1864), - [anon_sym_break] = ACTIONS(1864), - [anon_sym_continue] = ACTIONS(1864), - [anon_sym_for] = ACTIONS(1864), - [anon_sym_in] = ACTIONS(1864), - [anon_sym_loop] = ACTIONS(1864), - [anon_sym_make] = ACTIONS(1864), - [anon_sym_while] = ACTIONS(1864), - [anon_sym_do] = ACTIONS(1864), - [anon_sym_if] = ACTIONS(1864), - [anon_sym_else] = ACTIONS(1864), - [anon_sym_match] = ACTIONS(1864), - [anon_sym_RBRACE] = ACTIONS(1864), - [anon_sym_try] = ACTIONS(1864), - [anon_sym_catch] = ACTIONS(1864), - [anon_sym_return] = ACTIONS(1864), - [anon_sym_source] = ACTIONS(1864), - [anon_sym_source_DASHenv] = ACTIONS(1864), - [anon_sym_register] = ACTIONS(1864), - [anon_sym_hide] = ACTIONS(1864), - [anon_sym_hide_DASHenv] = ACTIONS(1864), - [anon_sym_overlay] = ACTIONS(1864), - [anon_sym_new] = ACTIONS(1864), - [anon_sym_as] = ACTIONS(1864), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1864), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1864), - [aux_sym__val_number_decimal_token1] = ACTIONS(1864), - [aux_sym__val_number_decimal_token2] = ACTIONS(1864), - [aux_sym__val_number_decimal_token3] = ACTIONS(1864), - [aux_sym__val_number_decimal_token4] = ACTIONS(1864), - [aux_sym__val_number_token1] = ACTIONS(1864), - [aux_sym__val_number_token2] = ACTIONS(1864), - [aux_sym__val_number_token3] = ACTIONS(1864), - [anon_sym_DQUOTE] = ACTIONS(1864), - [sym__str_single_quotes] = ACTIONS(1864), - [sym__str_back_ticks] = ACTIONS(1864), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1864), - [sym__entry_separator] = ACTIONS(1866), - [anon_sym_PLUS] = ACTIONS(1864), - [anon_sym_POUND] = ACTIONS(3), + [521] = { + [sym__expr_parenthesized_immediate] = STATE(7450), + [sym_comment] = STATE(521), + [anon_sym_export] = ACTIONS(2200), + [anon_sym_alias] = ACTIONS(2200), + [anon_sym_let] = ACTIONS(2200), + [anon_sym_let_DASHenv] = ACTIONS(2200), + [anon_sym_mut] = ACTIONS(2200), + [anon_sym_const] = ACTIONS(2200), + [aux_sym_cmd_identifier_token1] = ACTIONS(2200), + [aux_sym_cmd_identifier_token2] = ACTIONS(2200), + [aux_sym_cmd_identifier_token3] = ACTIONS(2200), + [aux_sym_cmd_identifier_token4] = ACTIONS(2200), + [aux_sym_cmd_identifier_token5] = ACTIONS(2200), + [aux_sym_cmd_identifier_token6] = ACTIONS(2200), + [aux_sym_cmd_identifier_token7] = ACTIONS(2200), + [aux_sym_cmd_identifier_token8] = ACTIONS(2200), + [aux_sym_cmd_identifier_token9] = ACTIONS(2200), + [aux_sym_cmd_identifier_token10] = ACTIONS(2200), + [aux_sym_cmd_identifier_token11] = ACTIONS(2200), + [aux_sym_cmd_identifier_token12] = ACTIONS(2200), + [aux_sym_cmd_identifier_token13] = ACTIONS(2200), + [aux_sym_cmd_identifier_token14] = ACTIONS(2200), + [aux_sym_cmd_identifier_token15] = ACTIONS(2200), + [aux_sym_cmd_identifier_token16] = ACTIONS(2200), + [aux_sym_cmd_identifier_token17] = ACTIONS(2200), + [aux_sym_cmd_identifier_token18] = ACTIONS(2200), + [aux_sym_cmd_identifier_token19] = ACTIONS(2200), + [aux_sym_cmd_identifier_token20] = ACTIONS(2200), + [aux_sym_cmd_identifier_token21] = ACTIONS(2200), + [aux_sym_cmd_identifier_token22] = ACTIONS(2200), + [aux_sym_cmd_identifier_token23] = ACTIONS(2200), + [aux_sym_cmd_identifier_token24] = ACTIONS(2200), + [aux_sym_cmd_identifier_token25] = ACTIONS(2200), + [aux_sym_cmd_identifier_token26] = ACTIONS(2200), + [aux_sym_cmd_identifier_token27] = ACTIONS(2200), + [aux_sym_cmd_identifier_token28] = ACTIONS(2200), + [aux_sym_cmd_identifier_token29] = ACTIONS(2200), + [aux_sym_cmd_identifier_token30] = ACTIONS(2200), + [aux_sym_cmd_identifier_token31] = ACTIONS(2200), + [aux_sym_cmd_identifier_token32] = ACTIONS(2200), + [aux_sym_cmd_identifier_token33] = ACTIONS(2200), + [aux_sym_cmd_identifier_token34] = ACTIONS(2200), + [aux_sym_cmd_identifier_token35] = ACTIONS(2200), + [aux_sym_cmd_identifier_token36] = ACTIONS(2200), + [anon_sym_true] = ACTIONS(2202), + [anon_sym_false] = ACTIONS(2202), + [anon_sym_null] = ACTIONS(2202), + [aux_sym_cmd_identifier_token38] = ACTIONS(2200), + [aux_sym_cmd_identifier_token39] = ACTIONS(2202), + [aux_sym_cmd_identifier_token40] = ACTIONS(2202), + [anon_sym_def] = ACTIONS(2200), + [anon_sym_export_DASHenv] = ACTIONS(2200), + [anon_sym_extern] = ACTIONS(2200), + [anon_sym_module] = ACTIONS(2200), + [anon_sym_use] = ACTIONS(2200), + [anon_sym_LPAREN] = ACTIONS(2200), + [anon_sym_DOLLAR] = ACTIONS(2202), + [anon_sym_error] = ACTIONS(2200), + [anon_sym_list] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(2200), + [anon_sym_break] = ACTIONS(2200), + [anon_sym_continue] = ACTIONS(2200), + [anon_sym_for] = ACTIONS(2200), + [anon_sym_in] = ACTIONS(2200), + [anon_sym_loop] = ACTIONS(2200), + [anon_sym_make] = ACTIONS(2200), + [anon_sym_while] = ACTIONS(2200), + [anon_sym_do] = ACTIONS(2200), + [anon_sym_if] = ACTIONS(2200), + [anon_sym_else] = ACTIONS(2200), + [anon_sym_match] = ACTIONS(2200), + [anon_sym_RBRACE] = ACTIONS(2202), + [anon_sym_try] = ACTIONS(2200), + [anon_sym_catch] = ACTIONS(2200), + [anon_sym_return] = ACTIONS(2200), + [anon_sym_source] = ACTIONS(2200), + [anon_sym_source_DASHenv] = ACTIONS(2200), + [anon_sym_register] = ACTIONS(2200), + [anon_sym_hide] = ACTIONS(2200), + [anon_sym_hide_DASHenv] = ACTIONS(2200), + [anon_sym_overlay] = ACTIONS(2200), + [anon_sym_new] = ACTIONS(2200), + [anon_sym_as] = ACTIONS(2200), + [anon_sym_LPAREN2] = ACTIONS(1630), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2202), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2202), + [aux_sym__val_number_decimal_token1] = ACTIONS(2200), + [aux_sym__val_number_decimal_token2] = ACTIONS(2202), + [aux_sym__val_number_decimal_token3] = ACTIONS(2202), + [aux_sym__val_number_decimal_token4] = ACTIONS(2202), + [aux_sym__val_number_token1] = ACTIONS(2202), + [aux_sym__val_number_token2] = ACTIONS(2202), + [aux_sym__val_number_token3] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym__str_single_quotes] = ACTIONS(2202), + [sym__str_back_ticks] = ACTIONS(2202), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2202), + [anon_sym_PLUS] = ACTIONS(2200), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2202), }, - [564] = { - [sym_comment] = STATE(564), - [anon_sym_export] = ACTIONS(1872), - [anon_sym_alias] = ACTIONS(1872), - [anon_sym_let] = ACTIONS(1872), - [anon_sym_let_DASHenv] = ACTIONS(1872), - [anon_sym_mut] = ACTIONS(1872), - [anon_sym_const] = ACTIONS(1872), - [aux_sym_cmd_identifier_token1] = ACTIONS(1872), - [aux_sym_cmd_identifier_token2] = ACTIONS(1872), - [aux_sym_cmd_identifier_token3] = ACTIONS(1872), - [aux_sym_cmd_identifier_token4] = ACTIONS(1872), - [aux_sym_cmd_identifier_token5] = ACTIONS(1872), - [aux_sym_cmd_identifier_token6] = ACTIONS(1872), - [aux_sym_cmd_identifier_token7] = ACTIONS(1872), - [aux_sym_cmd_identifier_token8] = ACTIONS(1872), - [aux_sym_cmd_identifier_token9] = ACTIONS(1872), - [aux_sym_cmd_identifier_token10] = ACTIONS(1872), - [aux_sym_cmd_identifier_token11] = ACTIONS(1872), - [aux_sym_cmd_identifier_token12] = ACTIONS(1872), - [aux_sym_cmd_identifier_token13] = ACTIONS(1872), - [aux_sym_cmd_identifier_token14] = ACTIONS(1872), - [aux_sym_cmd_identifier_token15] = ACTIONS(1872), - [aux_sym_cmd_identifier_token16] = ACTIONS(1872), - [aux_sym_cmd_identifier_token17] = ACTIONS(1872), - [aux_sym_cmd_identifier_token18] = ACTIONS(1872), - [aux_sym_cmd_identifier_token19] = ACTIONS(1872), - [aux_sym_cmd_identifier_token20] = ACTIONS(1872), - [aux_sym_cmd_identifier_token21] = ACTIONS(1872), - [aux_sym_cmd_identifier_token22] = ACTIONS(1872), - [aux_sym_cmd_identifier_token23] = ACTIONS(1872), - [aux_sym_cmd_identifier_token24] = ACTIONS(1872), - [aux_sym_cmd_identifier_token25] = ACTIONS(1872), - [aux_sym_cmd_identifier_token26] = ACTIONS(1872), - [aux_sym_cmd_identifier_token27] = ACTIONS(1872), - [aux_sym_cmd_identifier_token28] = ACTIONS(1872), - [aux_sym_cmd_identifier_token29] = ACTIONS(1872), - [aux_sym_cmd_identifier_token30] = ACTIONS(1872), - [aux_sym_cmd_identifier_token31] = ACTIONS(1872), - [aux_sym_cmd_identifier_token32] = ACTIONS(1872), - [aux_sym_cmd_identifier_token33] = ACTIONS(1872), - [aux_sym_cmd_identifier_token34] = ACTIONS(1872), - [aux_sym_cmd_identifier_token35] = ACTIONS(1872), - [aux_sym_cmd_identifier_token36] = ACTIONS(1872), - [anon_sym_true] = ACTIONS(1872), - [anon_sym_false] = ACTIONS(1872), - [anon_sym_null] = ACTIONS(1872), - [aux_sym_cmd_identifier_token38] = ACTIONS(1872), - [aux_sym_cmd_identifier_token39] = ACTIONS(1872), - [aux_sym_cmd_identifier_token40] = ACTIONS(1872), - [anon_sym_def] = ACTIONS(1872), - [anon_sym_export_DASHenv] = ACTIONS(1872), - [anon_sym_extern] = ACTIONS(1872), - [anon_sym_module] = ACTIONS(1872), - [anon_sym_use] = ACTIONS(1872), - [anon_sym_LPAREN] = ACTIONS(1872), - [anon_sym_DOLLAR] = ACTIONS(1872), - [anon_sym_error] = ACTIONS(1872), - [anon_sym_list] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_break] = ACTIONS(1872), - [anon_sym_continue] = ACTIONS(1872), - [anon_sym_for] = ACTIONS(1872), - [anon_sym_in] = ACTIONS(1872), - [anon_sym_loop] = ACTIONS(1872), - [anon_sym_make] = ACTIONS(1872), - [anon_sym_while] = ACTIONS(1872), - [anon_sym_do] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(1872), - [anon_sym_else] = ACTIONS(1872), - [anon_sym_match] = ACTIONS(1872), - [anon_sym_RBRACE] = ACTIONS(1872), - [anon_sym_try] = ACTIONS(1872), - [anon_sym_catch] = ACTIONS(1872), - [anon_sym_return] = ACTIONS(1872), - [anon_sym_source] = ACTIONS(1872), - [anon_sym_source_DASHenv] = ACTIONS(1872), - [anon_sym_register] = ACTIONS(1872), - [anon_sym_hide] = ACTIONS(1872), - [anon_sym_hide_DASHenv] = ACTIONS(1872), - [anon_sym_overlay] = ACTIONS(1872), - [anon_sym_new] = ACTIONS(1872), - [anon_sym_as] = ACTIONS(1872), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1872), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1872), - [aux_sym__val_number_decimal_token1] = ACTIONS(1872), - [aux_sym__val_number_decimal_token2] = ACTIONS(1872), - [aux_sym__val_number_decimal_token3] = ACTIONS(1872), - [aux_sym__val_number_decimal_token4] = ACTIONS(1872), - [aux_sym__val_number_token1] = ACTIONS(1872), - [aux_sym__val_number_token2] = ACTIONS(1872), - [aux_sym__val_number_token3] = ACTIONS(1872), - [anon_sym_DQUOTE] = ACTIONS(1872), - [sym__str_single_quotes] = ACTIONS(1872), - [sym__str_back_ticks] = ACTIONS(1872), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1872), - [sym__entry_separator] = ACTIONS(1874), - [anon_sym_PLUS] = ACTIONS(1872), + [522] = { + [sym_comment] = STATE(522), + [anon_sym_export] = ACTIONS(1090), + [anon_sym_alias] = ACTIONS(1090), + [anon_sym_let] = ACTIONS(1090), + [anon_sym_let_DASHenv] = ACTIONS(1090), + [anon_sym_mut] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [aux_sym_cmd_identifier_token1] = ACTIONS(1090), + [aux_sym_cmd_identifier_token2] = ACTIONS(1090), + [aux_sym_cmd_identifier_token3] = ACTIONS(1090), + [aux_sym_cmd_identifier_token4] = ACTIONS(1090), + [aux_sym_cmd_identifier_token5] = ACTIONS(1090), + [aux_sym_cmd_identifier_token6] = ACTIONS(1090), + [aux_sym_cmd_identifier_token7] = ACTIONS(1090), + [aux_sym_cmd_identifier_token8] = ACTIONS(1090), + [aux_sym_cmd_identifier_token9] = ACTIONS(1090), + [aux_sym_cmd_identifier_token10] = ACTIONS(1090), + [aux_sym_cmd_identifier_token11] = ACTIONS(1090), + [aux_sym_cmd_identifier_token12] = ACTIONS(1090), + [aux_sym_cmd_identifier_token13] = ACTIONS(1090), + [aux_sym_cmd_identifier_token14] = ACTIONS(1090), + [aux_sym_cmd_identifier_token15] = ACTIONS(1090), + [aux_sym_cmd_identifier_token16] = ACTIONS(1090), + [aux_sym_cmd_identifier_token17] = ACTIONS(1090), + [aux_sym_cmd_identifier_token18] = ACTIONS(1090), + [aux_sym_cmd_identifier_token19] = ACTIONS(1090), + [aux_sym_cmd_identifier_token20] = ACTIONS(1090), + [aux_sym_cmd_identifier_token21] = ACTIONS(1090), + [aux_sym_cmd_identifier_token22] = ACTIONS(1090), + [aux_sym_cmd_identifier_token23] = ACTIONS(1090), + [aux_sym_cmd_identifier_token24] = ACTIONS(1090), + [aux_sym_cmd_identifier_token25] = ACTIONS(1090), + [aux_sym_cmd_identifier_token26] = ACTIONS(1090), + [aux_sym_cmd_identifier_token27] = ACTIONS(1090), + [aux_sym_cmd_identifier_token28] = ACTIONS(1090), + [aux_sym_cmd_identifier_token29] = ACTIONS(1090), + [aux_sym_cmd_identifier_token30] = ACTIONS(1090), + [aux_sym_cmd_identifier_token31] = ACTIONS(1090), + [aux_sym_cmd_identifier_token32] = ACTIONS(1090), + [aux_sym_cmd_identifier_token33] = ACTIONS(1090), + [aux_sym_cmd_identifier_token34] = ACTIONS(1090), + [aux_sym_cmd_identifier_token35] = ACTIONS(1090), + [aux_sym_cmd_identifier_token36] = ACTIONS(1090), + [anon_sym_true] = ACTIONS(1090), + [anon_sym_false] = ACTIONS(1090), + [anon_sym_null] = ACTIONS(1090), + [aux_sym_cmd_identifier_token38] = ACTIONS(1090), + [aux_sym_cmd_identifier_token39] = ACTIONS(1090), + [aux_sym_cmd_identifier_token40] = ACTIONS(1090), + [anon_sym_def] = ACTIONS(1090), + [anon_sym_export_DASHenv] = ACTIONS(1090), + [anon_sym_extern] = ACTIONS(1090), + [anon_sym_module] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1090), + [anon_sym_LPAREN] = ACTIONS(1090), + [anon_sym_DOLLAR] = ACTIONS(1090), + [anon_sym_error] = ACTIONS(1090), + [anon_sym_list] = ACTIONS(1090), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_break] = ACTIONS(1090), + [anon_sym_continue] = ACTIONS(1090), + [anon_sym_for] = ACTIONS(1090), + [anon_sym_in] = ACTIONS(1090), + [anon_sym_loop] = ACTIONS(1090), + [anon_sym_make] = ACTIONS(1090), + [anon_sym_while] = ACTIONS(1090), + [anon_sym_do] = ACTIONS(1090), + [anon_sym_if] = ACTIONS(1090), + [anon_sym_else] = ACTIONS(1090), + [anon_sym_match] = ACTIONS(1090), + [anon_sym_RBRACE] = ACTIONS(1092), + [anon_sym_try] = ACTIONS(1090), + [anon_sym_catch] = ACTIONS(1090), + [anon_sym_return] = ACTIONS(1090), + [anon_sym_source] = ACTIONS(1090), + [anon_sym_source_DASHenv] = ACTIONS(1090), + [anon_sym_register] = ACTIONS(1090), + [anon_sym_hide] = ACTIONS(1090), + [anon_sym_hide_DASHenv] = ACTIONS(1090), + [anon_sym_overlay] = ACTIONS(1090), + [anon_sym_new] = ACTIONS(1090), + [anon_sym_as] = ACTIONS(1090), + [anon_sym_LPAREN2] = ACTIONS(2273), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1092), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1090), + [aux_sym__val_number_decimal_token1] = ACTIONS(1090), + [aux_sym__val_number_decimal_token2] = ACTIONS(1090), + [aux_sym__val_number_decimal_token3] = ACTIONS(1090), + [aux_sym__val_number_decimal_token4] = ACTIONS(1090), + [aux_sym__val_number_token1] = ACTIONS(1090), + [aux_sym__val_number_token2] = ACTIONS(1090), + [aux_sym__val_number_token3] = ACTIONS(1090), + [anon_sym_DQUOTE] = ACTIONS(1092), + [sym__str_single_quotes] = ACTIONS(1092), + [sym__str_back_ticks] = ACTIONS(1092), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1092), + [anon_sym_PLUS] = ACTIONS(1090), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2275), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1092), }, - [565] = { - [sym_comment] = STATE(565), - [anon_sym_export] = ACTIONS(1667), - [anon_sym_alias] = ACTIONS(1667), - [anon_sym_let] = ACTIONS(1667), - [anon_sym_let_DASHenv] = ACTIONS(1667), - [anon_sym_mut] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1667), - [aux_sym_cmd_identifier_token1] = ACTIONS(1667), - [aux_sym_cmd_identifier_token2] = ACTIONS(1667), - [aux_sym_cmd_identifier_token3] = ACTIONS(1667), - [aux_sym_cmd_identifier_token4] = ACTIONS(1667), - [aux_sym_cmd_identifier_token5] = ACTIONS(1667), - [aux_sym_cmd_identifier_token6] = ACTIONS(1667), - [aux_sym_cmd_identifier_token7] = ACTIONS(1667), - [aux_sym_cmd_identifier_token8] = ACTIONS(1667), - [aux_sym_cmd_identifier_token9] = ACTIONS(1667), - [aux_sym_cmd_identifier_token10] = ACTIONS(1667), - [aux_sym_cmd_identifier_token11] = ACTIONS(1667), - [aux_sym_cmd_identifier_token12] = ACTIONS(1667), - [aux_sym_cmd_identifier_token13] = ACTIONS(1667), - [aux_sym_cmd_identifier_token14] = ACTIONS(1667), - [aux_sym_cmd_identifier_token15] = ACTIONS(1667), - [aux_sym_cmd_identifier_token16] = ACTIONS(1667), - [aux_sym_cmd_identifier_token17] = ACTIONS(1667), - [aux_sym_cmd_identifier_token18] = ACTIONS(1667), - [aux_sym_cmd_identifier_token19] = ACTIONS(1667), - [aux_sym_cmd_identifier_token20] = ACTIONS(1667), - [aux_sym_cmd_identifier_token21] = ACTIONS(1667), - [aux_sym_cmd_identifier_token22] = ACTIONS(1667), - [aux_sym_cmd_identifier_token23] = ACTIONS(1667), - [aux_sym_cmd_identifier_token24] = ACTIONS(1667), - [aux_sym_cmd_identifier_token25] = ACTIONS(1667), - [aux_sym_cmd_identifier_token26] = ACTIONS(1667), - [aux_sym_cmd_identifier_token27] = ACTIONS(1667), - [aux_sym_cmd_identifier_token28] = ACTIONS(1667), - [aux_sym_cmd_identifier_token29] = ACTIONS(1667), - [aux_sym_cmd_identifier_token30] = ACTIONS(1667), - [aux_sym_cmd_identifier_token31] = ACTIONS(1667), - [aux_sym_cmd_identifier_token32] = ACTIONS(1667), - [aux_sym_cmd_identifier_token33] = ACTIONS(1667), - [aux_sym_cmd_identifier_token34] = ACTIONS(1667), - [aux_sym_cmd_identifier_token35] = ACTIONS(1667), - [aux_sym_cmd_identifier_token36] = ACTIONS(1667), - [anon_sym_true] = ACTIONS(1669), - [anon_sym_false] = ACTIONS(1669), - [anon_sym_null] = ACTIONS(1669), - [aux_sym_cmd_identifier_token38] = ACTIONS(1667), - [aux_sym_cmd_identifier_token39] = ACTIONS(1669), - [aux_sym_cmd_identifier_token40] = ACTIONS(1669), - [anon_sym_def] = ACTIONS(1667), - [anon_sym_export_DASHenv] = ACTIONS(1667), - [anon_sym_extern] = ACTIONS(1667), - [anon_sym_module] = ACTIONS(1667), - [anon_sym_use] = ACTIONS(1667), - [anon_sym_LPAREN] = ACTIONS(1669), - [anon_sym_DOLLAR] = ACTIONS(1669), - [anon_sym_error] = ACTIONS(1667), - [anon_sym_list] = ACTIONS(1667), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_break] = ACTIONS(1667), - [anon_sym_continue] = ACTIONS(1667), - [anon_sym_for] = ACTIONS(1667), - [anon_sym_in] = ACTIONS(1667), - [anon_sym_loop] = ACTIONS(1667), - [anon_sym_make] = ACTIONS(1667), - [anon_sym_while] = ACTIONS(1667), - [anon_sym_do] = ACTIONS(1667), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_else] = ACTIONS(1667), - [anon_sym_match] = ACTIONS(1667), - [anon_sym_RBRACE] = ACTIONS(1669), - [anon_sym_try] = ACTIONS(1667), - [anon_sym_catch] = ACTIONS(1667), - [anon_sym_return] = ACTIONS(1667), - [anon_sym_source] = ACTIONS(1667), - [anon_sym_source_DASHenv] = ACTIONS(1667), - [anon_sym_register] = ACTIONS(1667), - [anon_sym_hide] = ACTIONS(1667), - [anon_sym_hide_DASHenv] = ACTIONS(1667), - [anon_sym_overlay] = ACTIONS(1667), - [anon_sym_new] = ACTIONS(1667), - [anon_sym_as] = ACTIONS(1667), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1669), - [aux_sym__immediate_decimal_token2] = ACTIONS(2374), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1669), - [aux_sym__val_number_decimal_token1] = ACTIONS(1667), - [aux_sym__val_number_decimal_token2] = ACTIONS(1669), - [aux_sym__val_number_decimal_token3] = ACTIONS(1669), - [aux_sym__val_number_decimal_token4] = ACTIONS(1669), - [aux_sym__val_number_token1] = ACTIONS(1669), - [aux_sym__val_number_token2] = ACTIONS(1669), - [aux_sym__val_number_token3] = ACTIONS(1669), - [anon_sym_DQUOTE] = ACTIONS(1669), - [sym__str_single_quotes] = ACTIONS(1669), - [sym__str_back_ticks] = ACTIONS(1669), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1669), - [anon_sym_PLUS] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(247), + [523] = { + [sym__expr_parenthesized_immediate] = STATE(7774), + [sym_comment] = STATE(523), + [anon_sym_export] = ACTIONS(2307), + [anon_sym_alias] = ACTIONS(2307), + [anon_sym_let] = ACTIONS(2307), + [anon_sym_let_DASHenv] = ACTIONS(2307), + [anon_sym_mut] = ACTIONS(2307), + [anon_sym_const] = ACTIONS(2307), + [aux_sym_cmd_identifier_token1] = ACTIONS(2307), + [aux_sym_cmd_identifier_token2] = ACTIONS(2307), + [aux_sym_cmd_identifier_token3] = ACTIONS(2307), + [aux_sym_cmd_identifier_token4] = ACTIONS(2307), + [aux_sym_cmd_identifier_token5] = ACTIONS(2307), + [aux_sym_cmd_identifier_token6] = ACTIONS(2307), + [aux_sym_cmd_identifier_token7] = ACTIONS(2307), + [aux_sym_cmd_identifier_token8] = ACTIONS(2307), + [aux_sym_cmd_identifier_token9] = ACTIONS(2307), + [aux_sym_cmd_identifier_token10] = ACTIONS(2307), + [aux_sym_cmd_identifier_token11] = ACTIONS(2307), + [aux_sym_cmd_identifier_token12] = ACTIONS(2307), + [aux_sym_cmd_identifier_token13] = ACTIONS(2307), + [aux_sym_cmd_identifier_token14] = ACTIONS(2307), + [aux_sym_cmd_identifier_token15] = ACTIONS(2307), + [aux_sym_cmd_identifier_token16] = ACTIONS(2307), + [aux_sym_cmd_identifier_token17] = ACTIONS(2307), + [aux_sym_cmd_identifier_token18] = ACTIONS(2307), + [aux_sym_cmd_identifier_token19] = ACTIONS(2307), + [aux_sym_cmd_identifier_token20] = ACTIONS(2307), + [aux_sym_cmd_identifier_token21] = ACTIONS(2307), + [aux_sym_cmd_identifier_token22] = ACTIONS(2307), + [aux_sym_cmd_identifier_token23] = ACTIONS(2307), + [aux_sym_cmd_identifier_token24] = ACTIONS(2307), + [aux_sym_cmd_identifier_token25] = ACTIONS(2307), + [aux_sym_cmd_identifier_token26] = ACTIONS(2307), + [aux_sym_cmd_identifier_token27] = ACTIONS(2307), + [aux_sym_cmd_identifier_token28] = ACTIONS(2307), + [aux_sym_cmd_identifier_token29] = ACTIONS(2307), + [aux_sym_cmd_identifier_token30] = ACTIONS(2307), + [aux_sym_cmd_identifier_token31] = ACTIONS(2307), + [aux_sym_cmd_identifier_token32] = ACTIONS(2307), + [aux_sym_cmd_identifier_token33] = ACTIONS(2307), + [aux_sym_cmd_identifier_token34] = ACTIONS(2307), + [aux_sym_cmd_identifier_token35] = ACTIONS(2307), + [aux_sym_cmd_identifier_token36] = ACTIONS(2307), + [anon_sym_true] = ACTIONS(2309), + [anon_sym_false] = ACTIONS(2309), + [anon_sym_null] = ACTIONS(2309), + [aux_sym_cmd_identifier_token38] = ACTIONS(2307), + [aux_sym_cmd_identifier_token39] = ACTIONS(2309), + [aux_sym_cmd_identifier_token40] = ACTIONS(2309), + [anon_sym_def] = ACTIONS(2307), + [anon_sym_export_DASHenv] = ACTIONS(2307), + [anon_sym_extern] = ACTIONS(2307), + [anon_sym_module] = ACTIONS(2307), + [anon_sym_use] = ACTIONS(2307), + [anon_sym_LPAREN] = ACTIONS(2307), + [anon_sym_DOLLAR] = ACTIONS(2309), + [anon_sym_error] = ACTIONS(2307), + [anon_sym_list] = ACTIONS(2307), + [anon_sym_DASH] = ACTIONS(2307), + [anon_sym_break] = ACTIONS(2307), + [anon_sym_continue] = ACTIONS(2307), + [anon_sym_for] = ACTIONS(2307), + [anon_sym_in] = ACTIONS(2307), + [anon_sym_loop] = ACTIONS(2307), + [anon_sym_make] = ACTIONS(2307), + [anon_sym_while] = ACTIONS(2307), + [anon_sym_do] = ACTIONS(2307), + [anon_sym_if] = ACTIONS(2307), + [anon_sym_else] = ACTIONS(2307), + [anon_sym_match] = ACTIONS(2307), + [anon_sym_RBRACE] = ACTIONS(2309), + [anon_sym_try] = ACTIONS(2307), + [anon_sym_catch] = ACTIONS(2307), + [anon_sym_return] = ACTIONS(2307), + [anon_sym_source] = ACTIONS(2307), + [anon_sym_source_DASHenv] = ACTIONS(2307), + [anon_sym_register] = ACTIONS(2307), + [anon_sym_hide] = ACTIONS(2307), + [anon_sym_hide_DASHenv] = ACTIONS(2307), + [anon_sym_overlay] = ACTIONS(2307), + [anon_sym_new] = ACTIONS(2307), + [anon_sym_as] = ACTIONS(2307), + [anon_sym_LPAREN2] = ACTIONS(1630), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2309), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2309), + [aux_sym__val_number_decimal_token1] = ACTIONS(2307), + [aux_sym__val_number_decimal_token2] = ACTIONS(2309), + [aux_sym__val_number_decimal_token3] = ACTIONS(2309), + [aux_sym__val_number_decimal_token4] = ACTIONS(2309), + [aux_sym__val_number_token1] = ACTIONS(2309), + [aux_sym__val_number_token2] = ACTIONS(2309), + [aux_sym__val_number_token3] = ACTIONS(2309), + [anon_sym_DQUOTE] = ACTIONS(2309), + [sym__str_single_quotes] = ACTIONS(2309), + [sym__str_back_ticks] = ACTIONS(2309), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2309), + [anon_sym_PLUS] = ACTIONS(2307), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2309), }, - [566] = { - [sym_comment] = STATE(566), - [anon_sym_export] = ACTIONS(2420), - [anon_sym_alias] = ACTIONS(2420), - [anon_sym_let] = ACTIONS(2420), - [anon_sym_let_DASHenv] = ACTIONS(2420), - [anon_sym_mut] = ACTIONS(2420), - [anon_sym_const] = ACTIONS(2420), - [aux_sym_cmd_identifier_token1] = ACTIONS(2420), - [aux_sym_cmd_identifier_token2] = ACTIONS(2420), - [aux_sym_cmd_identifier_token3] = ACTIONS(2420), - [aux_sym_cmd_identifier_token4] = ACTIONS(2420), - [aux_sym_cmd_identifier_token5] = ACTIONS(2420), - [aux_sym_cmd_identifier_token6] = ACTIONS(2420), - [aux_sym_cmd_identifier_token7] = ACTIONS(2420), - [aux_sym_cmd_identifier_token8] = ACTIONS(2420), - [aux_sym_cmd_identifier_token9] = ACTIONS(2420), - [aux_sym_cmd_identifier_token10] = ACTIONS(2420), - [aux_sym_cmd_identifier_token11] = ACTIONS(2420), - [aux_sym_cmd_identifier_token12] = ACTIONS(2420), - [aux_sym_cmd_identifier_token13] = ACTIONS(2420), - [aux_sym_cmd_identifier_token14] = ACTIONS(2420), - [aux_sym_cmd_identifier_token15] = ACTIONS(2420), - [aux_sym_cmd_identifier_token16] = ACTIONS(2420), - [aux_sym_cmd_identifier_token17] = ACTIONS(2420), - [aux_sym_cmd_identifier_token18] = ACTIONS(2420), - [aux_sym_cmd_identifier_token19] = ACTIONS(2420), - [aux_sym_cmd_identifier_token20] = ACTIONS(2420), - [aux_sym_cmd_identifier_token21] = ACTIONS(2420), - [aux_sym_cmd_identifier_token22] = ACTIONS(2420), - [aux_sym_cmd_identifier_token23] = ACTIONS(2420), - [aux_sym_cmd_identifier_token24] = ACTIONS(2420), - [aux_sym_cmd_identifier_token25] = ACTIONS(2420), - [aux_sym_cmd_identifier_token26] = ACTIONS(2420), - [aux_sym_cmd_identifier_token27] = ACTIONS(2420), - [aux_sym_cmd_identifier_token28] = ACTIONS(2420), - [aux_sym_cmd_identifier_token29] = ACTIONS(2420), - [aux_sym_cmd_identifier_token30] = ACTIONS(2420), - [aux_sym_cmd_identifier_token31] = ACTIONS(2420), - [aux_sym_cmd_identifier_token32] = ACTIONS(2420), - [aux_sym_cmd_identifier_token33] = ACTIONS(2420), - [aux_sym_cmd_identifier_token34] = ACTIONS(2420), - [aux_sym_cmd_identifier_token35] = ACTIONS(2420), - [aux_sym_cmd_identifier_token36] = ACTIONS(2420), - [anon_sym_true] = ACTIONS(2420), - [anon_sym_false] = ACTIONS(2420), - [anon_sym_null] = ACTIONS(2420), - [aux_sym_cmd_identifier_token38] = ACTIONS(2420), - [aux_sym_cmd_identifier_token39] = ACTIONS(2420), - [aux_sym_cmd_identifier_token40] = ACTIONS(2420), - [anon_sym_def] = ACTIONS(2420), - [anon_sym_export_DASHenv] = ACTIONS(2420), - [anon_sym_extern] = ACTIONS(2420), - [anon_sym_module] = ACTIONS(2420), - [anon_sym_use] = ACTIONS(2420), - [anon_sym_LPAREN] = ACTIONS(2420), - [anon_sym_DOLLAR] = ACTIONS(2420), - [anon_sym_error] = ACTIONS(2420), - [anon_sym_list] = ACTIONS(2420), - [anon_sym_DASH] = ACTIONS(2420), - [anon_sym_break] = ACTIONS(2420), - [anon_sym_continue] = ACTIONS(2420), - [anon_sym_for] = ACTIONS(2420), - [anon_sym_in] = ACTIONS(2420), - [anon_sym_loop] = ACTIONS(2420), - [anon_sym_make] = ACTIONS(2420), - [anon_sym_while] = ACTIONS(2420), - [anon_sym_do] = ACTIONS(2420), - [anon_sym_if] = ACTIONS(2420), - [anon_sym_else] = ACTIONS(2420), - [anon_sym_match] = ACTIONS(2420), - [anon_sym_RBRACE] = ACTIONS(2420), - [anon_sym_try] = ACTIONS(2420), - [anon_sym_catch] = ACTIONS(2420), - [anon_sym_return] = ACTIONS(2420), - [anon_sym_source] = ACTIONS(2420), - [anon_sym_source_DASHenv] = ACTIONS(2420), - [anon_sym_register] = ACTIONS(2420), - [anon_sym_hide] = ACTIONS(2420), - [anon_sym_hide_DASHenv] = ACTIONS(2420), - [anon_sym_overlay] = ACTIONS(2420), - [anon_sym_new] = ACTIONS(2420), - [anon_sym_as] = ACTIONS(2420), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2420), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2420), - [aux_sym__val_number_decimal_token1] = ACTIONS(2420), - [aux_sym__val_number_decimal_token2] = ACTIONS(2420), - [aux_sym__val_number_decimal_token3] = ACTIONS(2420), - [aux_sym__val_number_decimal_token4] = ACTIONS(2420), - [aux_sym__val_number_token1] = ACTIONS(2420), - [aux_sym__val_number_token2] = ACTIONS(2420), - [aux_sym__val_number_token3] = ACTIONS(2420), - [anon_sym_DQUOTE] = ACTIONS(2420), - [sym__str_single_quotes] = ACTIONS(2420), - [sym__str_back_ticks] = ACTIONS(2420), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2420), - [sym__entry_separator] = ACTIONS(2422), - [anon_sym_PLUS] = ACTIONS(2420), - [anon_sym_POUND] = ACTIONS(3), + [524] = { + [sym__expr_parenthesized_immediate] = STATE(7774), + [sym_comment] = STATE(524), + [anon_sym_export] = ACTIONS(2311), + [anon_sym_alias] = ACTIONS(2311), + [anon_sym_let] = ACTIONS(2311), + [anon_sym_let_DASHenv] = ACTIONS(2311), + [anon_sym_mut] = ACTIONS(2311), + [anon_sym_const] = ACTIONS(2311), + [aux_sym_cmd_identifier_token1] = ACTIONS(2311), + [aux_sym_cmd_identifier_token2] = ACTIONS(2311), + [aux_sym_cmd_identifier_token3] = ACTIONS(2311), + [aux_sym_cmd_identifier_token4] = ACTIONS(2311), + [aux_sym_cmd_identifier_token5] = ACTIONS(2311), + [aux_sym_cmd_identifier_token6] = ACTIONS(2311), + [aux_sym_cmd_identifier_token7] = ACTIONS(2311), + [aux_sym_cmd_identifier_token8] = ACTIONS(2311), + [aux_sym_cmd_identifier_token9] = ACTIONS(2311), + [aux_sym_cmd_identifier_token10] = ACTIONS(2311), + [aux_sym_cmd_identifier_token11] = ACTIONS(2311), + [aux_sym_cmd_identifier_token12] = ACTIONS(2311), + [aux_sym_cmd_identifier_token13] = ACTIONS(2311), + [aux_sym_cmd_identifier_token14] = ACTIONS(2311), + [aux_sym_cmd_identifier_token15] = ACTIONS(2311), + [aux_sym_cmd_identifier_token16] = ACTIONS(2311), + [aux_sym_cmd_identifier_token17] = ACTIONS(2311), + [aux_sym_cmd_identifier_token18] = ACTIONS(2311), + [aux_sym_cmd_identifier_token19] = ACTIONS(2311), + [aux_sym_cmd_identifier_token20] = ACTIONS(2311), + [aux_sym_cmd_identifier_token21] = ACTIONS(2311), + [aux_sym_cmd_identifier_token22] = ACTIONS(2311), + [aux_sym_cmd_identifier_token23] = ACTIONS(2311), + [aux_sym_cmd_identifier_token24] = ACTIONS(2311), + [aux_sym_cmd_identifier_token25] = ACTIONS(2311), + [aux_sym_cmd_identifier_token26] = ACTIONS(2311), + [aux_sym_cmd_identifier_token27] = ACTIONS(2311), + [aux_sym_cmd_identifier_token28] = ACTIONS(2311), + [aux_sym_cmd_identifier_token29] = ACTIONS(2311), + [aux_sym_cmd_identifier_token30] = ACTIONS(2311), + [aux_sym_cmd_identifier_token31] = ACTIONS(2311), + [aux_sym_cmd_identifier_token32] = ACTIONS(2311), + [aux_sym_cmd_identifier_token33] = ACTIONS(2311), + [aux_sym_cmd_identifier_token34] = ACTIONS(2311), + [aux_sym_cmd_identifier_token35] = ACTIONS(2311), + [aux_sym_cmd_identifier_token36] = ACTIONS(2311), + [anon_sym_true] = ACTIONS(2313), + [anon_sym_false] = ACTIONS(2313), + [anon_sym_null] = ACTIONS(2313), + [aux_sym_cmd_identifier_token38] = ACTIONS(2311), + [aux_sym_cmd_identifier_token39] = ACTIONS(2313), + [aux_sym_cmd_identifier_token40] = ACTIONS(2313), + [anon_sym_def] = ACTIONS(2311), + [anon_sym_export_DASHenv] = ACTIONS(2311), + [anon_sym_extern] = ACTIONS(2311), + [anon_sym_module] = ACTIONS(2311), + [anon_sym_use] = ACTIONS(2311), + [anon_sym_LPAREN] = ACTIONS(2311), + [anon_sym_DOLLAR] = ACTIONS(2313), + [anon_sym_error] = ACTIONS(2311), + [anon_sym_list] = ACTIONS(2311), + [anon_sym_DASH] = ACTIONS(2311), + [anon_sym_break] = ACTIONS(2311), + [anon_sym_continue] = ACTIONS(2311), + [anon_sym_for] = ACTIONS(2311), + [anon_sym_in] = ACTIONS(2311), + [anon_sym_loop] = ACTIONS(2311), + [anon_sym_make] = ACTIONS(2311), + [anon_sym_while] = ACTIONS(2311), + [anon_sym_do] = ACTIONS(2311), + [anon_sym_if] = ACTIONS(2311), + [anon_sym_else] = ACTIONS(2311), + [anon_sym_match] = ACTIONS(2311), + [anon_sym_RBRACE] = ACTIONS(2313), + [anon_sym_try] = ACTIONS(2311), + [anon_sym_catch] = ACTIONS(2311), + [anon_sym_return] = ACTIONS(2311), + [anon_sym_source] = ACTIONS(2311), + [anon_sym_source_DASHenv] = ACTIONS(2311), + [anon_sym_register] = ACTIONS(2311), + [anon_sym_hide] = ACTIONS(2311), + [anon_sym_hide_DASHenv] = ACTIONS(2311), + [anon_sym_overlay] = ACTIONS(2311), + [anon_sym_new] = ACTIONS(2311), + [anon_sym_as] = ACTIONS(2311), + [anon_sym_LPAREN2] = ACTIONS(1630), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2313), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2313), + [aux_sym__val_number_decimal_token1] = ACTIONS(2311), + [aux_sym__val_number_decimal_token2] = ACTIONS(2313), + [aux_sym__val_number_decimal_token3] = ACTIONS(2313), + [aux_sym__val_number_decimal_token4] = ACTIONS(2313), + [aux_sym__val_number_token1] = ACTIONS(2313), + [aux_sym__val_number_token2] = ACTIONS(2313), + [aux_sym__val_number_token3] = ACTIONS(2313), + [anon_sym_DQUOTE] = ACTIONS(2313), + [sym__str_single_quotes] = ACTIONS(2313), + [sym__str_back_ticks] = ACTIONS(2313), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2313), + [anon_sym_PLUS] = ACTIONS(2311), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2313), }, - [567] = { - [sym_comment] = STATE(567), - [anon_sym_export] = ACTIONS(2424), - [anon_sym_alias] = ACTIONS(2424), - [anon_sym_let] = ACTIONS(2424), - [anon_sym_let_DASHenv] = ACTIONS(2424), - [anon_sym_mut] = ACTIONS(2424), - [anon_sym_const] = ACTIONS(2424), - [aux_sym_cmd_identifier_token1] = ACTIONS(2424), - [aux_sym_cmd_identifier_token2] = ACTIONS(2424), - [aux_sym_cmd_identifier_token3] = ACTIONS(2424), - [aux_sym_cmd_identifier_token4] = ACTIONS(2424), - [aux_sym_cmd_identifier_token5] = ACTIONS(2424), - [aux_sym_cmd_identifier_token6] = ACTIONS(2424), - [aux_sym_cmd_identifier_token7] = ACTIONS(2424), - [aux_sym_cmd_identifier_token8] = ACTIONS(2424), - [aux_sym_cmd_identifier_token9] = ACTIONS(2424), - [aux_sym_cmd_identifier_token10] = ACTIONS(2424), - [aux_sym_cmd_identifier_token11] = ACTIONS(2424), - [aux_sym_cmd_identifier_token12] = ACTIONS(2424), - [aux_sym_cmd_identifier_token13] = ACTIONS(2424), - [aux_sym_cmd_identifier_token14] = ACTIONS(2424), - [aux_sym_cmd_identifier_token15] = ACTIONS(2424), - [aux_sym_cmd_identifier_token16] = ACTIONS(2424), - [aux_sym_cmd_identifier_token17] = ACTIONS(2424), - [aux_sym_cmd_identifier_token18] = ACTIONS(2424), - [aux_sym_cmd_identifier_token19] = ACTIONS(2424), - [aux_sym_cmd_identifier_token20] = ACTIONS(2424), - [aux_sym_cmd_identifier_token21] = ACTIONS(2424), - [aux_sym_cmd_identifier_token22] = ACTIONS(2424), - [aux_sym_cmd_identifier_token23] = ACTIONS(2424), - [aux_sym_cmd_identifier_token24] = ACTIONS(2424), - [aux_sym_cmd_identifier_token25] = ACTIONS(2424), - [aux_sym_cmd_identifier_token26] = ACTIONS(2424), - [aux_sym_cmd_identifier_token27] = ACTIONS(2424), - [aux_sym_cmd_identifier_token28] = ACTIONS(2424), - [aux_sym_cmd_identifier_token29] = ACTIONS(2424), - [aux_sym_cmd_identifier_token30] = ACTIONS(2424), - [aux_sym_cmd_identifier_token31] = ACTIONS(2424), - [aux_sym_cmd_identifier_token32] = ACTIONS(2424), - [aux_sym_cmd_identifier_token33] = ACTIONS(2424), - [aux_sym_cmd_identifier_token34] = ACTIONS(2424), - [aux_sym_cmd_identifier_token35] = ACTIONS(2424), - [aux_sym_cmd_identifier_token36] = ACTIONS(2424), - [anon_sym_true] = ACTIONS(2424), - [anon_sym_false] = ACTIONS(2424), - [anon_sym_null] = ACTIONS(2424), - [aux_sym_cmd_identifier_token38] = ACTIONS(2424), - [aux_sym_cmd_identifier_token39] = ACTIONS(2424), - [aux_sym_cmd_identifier_token40] = ACTIONS(2424), - [anon_sym_def] = ACTIONS(2424), - [anon_sym_export_DASHenv] = ACTIONS(2424), - [anon_sym_extern] = ACTIONS(2424), - [anon_sym_module] = ACTIONS(2424), - [anon_sym_use] = ACTIONS(2424), - [anon_sym_LPAREN] = ACTIONS(2424), - [anon_sym_DOLLAR] = ACTIONS(2424), - [anon_sym_error] = ACTIONS(2424), - [anon_sym_list] = ACTIONS(2424), - [anon_sym_DASH] = ACTIONS(2424), - [anon_sym_break] = ACTIONS(2424), - [anon_sym_continue] = ACTIONS(2424), - [anon_sym_for] = ACTIONS(2424), - [anon_sym_in] = ACTIONS(2424), - [anon_sym_loop] = ACTIONS(2424), - [anon_sym_make] = ACTIONS(2424), - [anon_sym_while] = ACTIONS(2424), - [anon_sym_do] = ACTIONS(2424), - [anon_sym_if] = ACTIONS(2424), - [anon_sym_else] = ACTIONS(2424), - [anon_sym_match] = ACTIONS(2424), - [anon_sym_RBRACE] = ACTIONS(2424), - [anon_sym_try] = ACTIONS(2424), - [anon_sym_catch] = ACTIONS(2424), - [anon_sym_return] = ACTIONS(2424), - [anon_sym_source] = ACTIONS(2424), - [anon_sym_source_DASHenv] = ACTIONS(2424), - [anon_sym_register] = ACTIONS(2424), - [anon_sym_hide] = ACTIONS(2424), - [anon_sym_hide_DASHenv] = ACTIONS(2424), - [anon_sym_overlay] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(2424), - [anon_sym_as] = ACTIONS(2424), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2424), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2424), - [aux_sym__val_number_decimal_token1] = ACTIONS(2424), - [aux_sym__val_number_decimal_token2] = ACTIONS(2424), - [aux_sym__val_number_decimal_token3] = ACTIONS(2424), - [aux_sym__val_number_decimal_token4] = ACTIONS(2424), - [aux_sym__val_number_token1] = ACTIONS(2424), - [aux_sym__val_number_token2] = ACTIONS(2424), - [aux_sym__val_number_token3] = ACTIONS(2424), - [anon_sym_DQUOTE] = ACTIONS(2424), - [sym__str_single_quotes] = ACTIONS(2424), - [sym__str_back_ticks] = ACTIONS(2424), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2424), - [sym__entry_separator] = ACTIONS(2426), - [anon_sym_PLUS] = ACTIONS(2424), + [525] = { + [sym__expr_parenthesized_immediate] = STATE(7774), + [sym_comment] = STATE(525), + [anon_sym_export] = ACTIONS(2315), + [anon_sym_alias] = ACTIONS(2315), + [anon_sym_let] = ACTIONS(2315), + [anon_sym_let_DASHenv] = ACTIONS(2315), + [anon_sym_mut] = ACTIONS(2315), + [anon_sym_const] = ACTIONS(2315), + [aux_sym_cmd_identifier_token1] = ACTIONS(2315), + [aux_sym_cmd_identifier_token2] = ACTIONS(2315), + [aux_sym_cmd_identifier_token3] = ACTIONS(2315), + [aux_sym_cmd_identifier_token4] = ACTIONS(2315), + [aux_sym_cmd_identifier_token5] = ACTIONS(2315), + [aux_sym_cmd_identifier_token6] = ACTIONS(2315), + [aux_sym_cmd_identifier_token7] = ACTIONS(2315), + [aux_sym_cmd_identifier_token8] = ACTIONS(2315), + [aux_sym_cmd_identifier_token9] = ACTIONS(2315), + [aux_sym_cmd_identifier_token10] = ACTIONS(2315), + [aux_sym_cmd_identifier_token11] = ACTIONS(2315), + [aux_sym_cmd_identifier_token12] = ACTIONS(2315), + [aux_sym_cmd_identifier_token13] = ACTIONS(2315), + [aux_sym_cmd_identifier_token14] = ACTIONS(2315), + [aux_sym_cmd_identifier_token15] = ACTIONS(2315), + [aux_sym_cmd_identifier_token16] = ACTIONS(2315), + [aux_sym_cmd_identifier_token17] = ACTIONS(2315), + [aux_sym_cmd_identifier_token18] = ACTIONS(2315), + [aux_sym_cmd_identifier_token19] = ACTIONS(2315), + [aux_sym_cmd_identifier_token20] = ACTIONS(2315), + [aux_sym_cmd_identifier_token21] = ACTIONS(2315), + [aux_sym_cmd_identifier_token22] = ACTIONS(2315), + [aux_sym_cmd_identifier_token23] = ACTIONS(2315), + [aux_sym_cmd_identifier_token24] = ACTIONS(2315), + [aux_sym_cmd_identifier_token25] = ACTIONS(2315), + [aux_sym_cmd_identifier_token26] = ACTIONS(2315), + [aux_sym_cmd_identifier_token27] = ACTIONS(2315), + [aux_sym_cmd_identifier_token28] = ACTIONS(2315), + [aux_sym_cmd_identifier_token29] = ACTIONS(2315), + [aux_sym_cmd_identifier_token30] = ACTIONS(2315), + [aux_sym_cmd_identifier_token31] = ACTIONS(2315), + [aux_sym_cmd_identifier_token32] = ACTIONS(2315), + [aux_sym_cmd_identifier_token33] = ACTIONS(2315), + [aux_sym_cmd_identifier_token34] = ACTIONS(2315), + [aux_sym_cmd_identifier_token35] = ACTIONS(2315), + [aux_sym_cmd_identifier_token36] = ACTIONS(2315), + [anon_sym_true] = ACTIONS(2317), + [anon_sym_false] = ACTIONS(2317), + [anon_sym_null] = ACTIONS(2317), + [aux_sym_cmd_identifier_token38] = ACTIONS(2315), + [aux_sym_cmd_identifier_token39] = ACTIONS(2317), + [aux_sym_cmd_identifier_token40] = ACTIONS(2317), + [anon_sym_def] = ACTIONS(2315), + [anon_sym_export_DASHenv] = ACTIONS(2315), + [anon_sym_extern] = ACTIONS(2315), + [anon_sym_module] = ACTIONS(2315), + [anon_sym_use] = ACTIONS(2315), + [anon_sym_LPAREN] = ACTIONS(2315), + [anon_sym_DOLLAR] = ACTIONS(2317), + [anon_sym_error] = ACTIONS(2315), + [anon_sym_list] = ACTIONS(2315), + [anon_sym_DASH] = ACTIONS(2315), + [anon_sym_break] = ACTIONS(2315), + [anon_sym_continue] = ACTIONS(2315), + [anon_sym_for] = ACTIONS(2315), + [anon_sym_in] = ACTIONS(2315), + [anon_sym_loop] = ACTIONS(2315), + [anon_sym_make] = ACTIONS(2315), + [anon_sym_while] = ACTIONS(2315), + [anon_sym_do] = ACTIONS(2315), + [anon_sym_if] = ACTIONS(2315), + [anon_sym_else] = ACTIONS(2315), + [anon_sym_match] = ACTIONS(2315), + [anon_sym_RBRACE] = ACTIONS(2317), + [anon_sym_try] = ACTIONS(2315), + [anon_sym_catch] = ACTIONS(2315), + [anon_sym_return] = ACTIONS(2315), + [anon_sym_source] = ACTIONS(2315), + [anon_sym_source_DASHenv] = ACTIONS(2315), + [anon_sym_register] = ACTIONS(2315), + [anon_sym_hide] = ACTIONS(2315), + [anon_sym_hide_DASHenv] = ACTIONS(2315), + [anon_sym_overlay] = ACTIONS(2315), + [anon_sym_new] = ACTIONS(2315), + [anon_sym_as] = ACTIONS(2315), + [anon_sym_LPAREN2] = ACTIONS(1630), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2317), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2317), + [aux_sym__val_number_decimal_token1] = ACTIONS(2315), + [aux_sym__val_number_decimal_token2] = ACTIONS(2317), + [aux_sym__val_number_decimal_token3] = ACTIONS(2317), + [aux_sym__val_number_decimal_token4] = ACTIONS(2317), + [aux_sym__val_number_token1] = ACTIONS(2317), + [aux_sym__val_number_token2] = ACTIONS(2317), + [aux_sym__val_number_token3] = ACTIONS(2317), + [anon_sym_DQUOTE] = ACTIONS(2317), + [sym__str_single_quotes] = ACTIONS(2317), + [sym__str_back_ticks] = ACTIONS(2317), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2317), + [anon_sym_PLUS] = ACTIONS(2315), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2317), + }, + [526] = { + [sym__expr_parenthesized_immediate] = STATE(7774), + [sym_comment] = STATE(526), + [anon_sym_export] = ACTIONS(2242), + [anon_sym_alias] = ACTIONS(2242), + [anon_sym_let] = ACTIONS(2242), + [anon_sym_let_DASHenv] = ACTIONS(2242), + [anon_sym_mut] = ACTIONS(2242), + [anon_sym_const] = ACTIONS(2242), + [aux_sym_cmd_identifier_token1] = ACTIONS(2242), + [aux_sym_cmd_identifier_token2] = ACTIONS(2242), + [aux_sym_cmd_identifier_token3] = ACTIONS(2242), + [aux_sym_cmd_identifier_token4] = ACTIONS(2242), + [aux_sym_cmd_identifier_token5] = ACTIONS(2242), + [aux_sym_cmd_identifier_token6] = ACTIONS(2242), + [aux_sym_cmd_identifier_token7] = ACTIONS(2242), + [aux_sym_cmd_identifier_token8] = ACTIONS(2242), + [aux_sym_cmd_identifier_token9] = ACTIONS(2242), + [aux_sym_cmd_identifier_token10] = ACTIONS(2242), + [aux_sym_cmd_identifier_token11] = ACTIONS(2242), + [aux_sym_cmd_identifier_token12] = ACTIONS(2242), + [aux_sym_cmd_identifier_token13] = ACTIONS(2242), + [aux_sym_cmd_identifier_token14] = ACTIONS(2242), + [aux_sym_cmd_identifier_token15] = ACTIONS(2242), + [aux_sym_cmd_identifier_token16] = ACTIONS(2242), + [aux_sym_cmd_identifier_token17] = ACTIONS(2242), + [aux_sym_cmd_identifier_token18] = ACTIONS(2242), + [aux_sym_cmd_identifier_token19] = ACTIONS(2242), + [aux_sym_cmd_identifier_token20] = ACTIONS(2242), + [aux_sym_cmd_identifier_token21] = ACTIONS(2242), + [aux_sym_cmd_identifier_token22] = ACTIONS(2242), + [aux_sym_cmd_identifier_token23] = ACTIONS(2242), + [aux_sym_cmd_identifier_token24] = ACTIONS(2242), + [aux_sym_cmd_identifier_token25] = ACTIONS(2242), + [aux_sym_cmd_identifier_token26] = ACTIONS(2242), + [aux_sym_cmd_identifier_token27] = ACTIONS(2242), + [aux_sym_cmd_identifier_token28] = ACTIONS(2242), + [aux_sym_cmd_identifier_token29] = ACTIONS(2242), + [aux_sym_cmd_identifier_token30] = ACTIONS(2242), + [aux_sym_cmd_identifier_token31] = ACTIONS(2242), + [aux_sym_cmd_identifier_token32] = ACTIONS(2242), + [aux_sym_cmd_identifier_token33] = ACTIONS(2242), + [aux_sym_cmd_identifier_token34] = ACTIONS(2242), + [aux_sym_cmd_identifier_token35] = ACTIONS(2242), + [aux_sym_cmd_identifier_token36] = ACTIONS(2242), + [anon_sym_true] = ACTIONS(2244), + [anon_sym_false] = ACTIONS(2244), + [anon_sym_null] = ACTIONS(2244), + [aux_sym_cmd_identifier_token38] = ACTIONS(2242), + [aux_sym_cmd_identifier_token39] = ACTIONS(2244), + [aux_sym_cmd_identifier_token40] = ACTIONS(2244), + [anon_sym_def] = ACTIONS(2242), + [anon_sym_export_DASHenv] = ACTIONS(2242), + [anon_sym_extern] = ACTIONS(2242), + [anon_sym_module] = ACTIONS(2242), + [anon_sym_use] = ACTIONS(2242), + [anon_sym_LPAREN] = ACTIONS(2242), + [anon_sym_DOLLAR] = ACTIONS(2244), + [anon_sym_error] = ACTIONS(2242), + [anon_sym_list] = ACTIONS(2242), + [anon_sym_DASH] = ACTIONS(2242), + [anon_sym_break] = ACTIONS(2242), + [anon_sym_continue] = ACTIONS(2242), + [anon_sym_for] = ACTIONS(2242), + [anon_sym_in] = ACTIONS(2242), + [anon_sym_loop] = ACTIONS(2242), + [anon_sym_make] = ACTIONS(2242), + [anon_sym_while] = ACTIONS(2242), + [anon_sym_do] = ACTIONS(2242), + [anon_sym_if] = ACTIONS(2242), + [anon_sym_else] = ACTIONS(2242), + [anon_sym_match] = ACTIONS(2242), + [anon_sym_RBRACE] = ACTIONS(2244), + [anon_sym_try] = ACTIONS(2242), + [anon_sym_catch] = ACTIONS(2242), + [anon_sym_return] = ACTIONS(2242), + [anon_sym_source] = ACTIONS(2242), + [anon_sym_source_DASHenv] = ACTIONS(2242), + [anon_sym_register] = ACTIONS(2242), + [anon_sym_hide] = ACTIONS(2242), + [anon_sym_hide_DASHenv] = ACTIONS(2242), + [anon_sym_overlay] = ACTIONS(2242), + [anon_sym_new] = ACTIONS(2242), + [anon_sym_as] = ACTIONS(2242), + [anon_sym_LPAREN2] = ACTIONS(1630), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2244), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2244), + [aux_sym__val_number_decimal_token1] = ACTIONS(2242), + [aux_sym__val_number_decimal_token2] = ACTIONS(2244), + [aux_sym__val_number_decimal_token3] = ACTIONS(2244), + [aux_sym__val_number_decimal_token4] = ACTIONS(2244), + [aux_sym__val_number_token1] = ACTIONS(2244), + [aux_sym__val_number_token2] = ACTIONS(2244), + [aux_sym__val_number_token3] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2244), + [sym__str_single_quotes] = ACTIONS(2244), + [sym__str_back_ticks] = ACTIONS(2244), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2244), + [anon_sym_PLUS] = ACTIONS(2242), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2244), + }, + [527] = { + [sym_comment] = STATE(527), + [anon_sym_export] = ACTIONS(1769), + [anon_sym_alias] = ACTIONS(1769), + [anon_sym_let] = ACTIONS(1769), + [anon_sym_let_DASHenv] = ACTIONS(1769), + [anon_sym_mut] = ACTIONS(1769), + [anon_sym_const] = ACTIONS(1769), + [aux_sym_cmd_identifier_token1] = ACTIONS(1769), + [aux_sym_cmd_identifier_token2] = ACTIONS(1769), + [aux_sym_cmd_identifier_token3] = ACTIONS(1769), + [aux_sym_cmd_identifier_token4] = ACTIONS(1769), + [aux_sym_cmd_identifier_token5] = ACTIONS(1769), + [aux_sym_cmd_identifier_token6] = ACTIONS(1769), + [aux_sym_cmd_identifier_token7] = ACTIONS(1769), + [aux_sym_cmd_identifier_token8] = ACTIONS(1769), + [aux_sym_cmd_identifier_token9] = ACTIONS(1769), + [aux_sym_cmd_identifier_token10] = ACTIONS(1769), + [aux_sym_cmd_identifier_token11] = ACTIONS(1769), + [aux_sym_cmd_identifier_token12] = ACTIONS(1769), + [aux_sym_cmd_identifier_token13] = ACTIONS(1769), + [aux_sym_cmd_identifier_token14] = ACTIONS(1769), + [aux_sym_cmd_identifier_token15] = ACTIONS(1769), + [aux_sym_cmd_identifier_token16] = ACTIONS(1769), + [aux_sym_cmd_identifier_token17] = ACTIONS(1769), + [aux_sym_cmd_identifier_token18] = ACTIONS(1769), + [aux_sym_cmd_identifier_token19] = ACTIONS(1769), + [aux_sym_cmd_identifier_token20] = ACTIONS(1769), + [aux_sym_cmd_identifier_token21] = ACTIONS(1769), + [aux_sym_cmd_identifier_token22] = ACTIONS(1769), + [aux_sym_cmd_identifier_token23] = ACTIONS(1769), + [aux_sym_cmd_identifier_token24] = ACTIONS(1769), + [aux_sym_cmd_identifier_token25] = ACTIONS(1769), + [aux_sym_cmd_identifier_token26] = ACTIONS(1769), + [aux_sym_cmd_identifier_token27] = ACTIONS(1769), + [aux_sym_cmd_identifier_token28] = ACTIONS(1769), + [aux_sym_cmd_identifier_token29] = ACTIONS(1769), + [aux_sym_cmd_identifier_token30] = ACTIONS(1769), + [aux_sym_cmd_identifier_token31] = ACTIONS(1769), + [aux_sym_cmd_identifier_token32] = ACTIONS(1769), + [aux_sym_cmd_identifier_token33] = ACTIONS(1769), + [aux_sym_cmd_identifier_token34] = ACTIONS(1769), + [aux_sym_cmd_identifier_token35] = ACTIONS(1769), + [aux_sym_cmd_identifier_token36] = ACTIONS(1769), + [anon_sym_true] = ACTIONS(1771), + [anon_sym_false] = ACTIONS(1771), + [anon_sym_null] = ACTIONS(1771), + [aux_sym_cmd_identifier_token38] = ACTIONS(1769), + [aux_sym_cmd_identifier_token39] = ACTIONS(1771), + [aux_sym_cmd_identifier_token40] = ACTIONS(1771), + [anon_sym_def] = ACTIONS(1769), + [anon_sym_export_DASHenv] = ACTIONS(1769), + [anon_sym_extern] = ACTIONS(1769), + [anon_sym_module] = ACTIONS(1769), + [anon_sym_use] = ACTIONS(1769), + [anon_sym_LPAREN] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_error] = ACTIONS(1769), + [anon_sym_list] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_break] = ACTIONS(1769), + [anon_sym_continue] = ACTIONS(1769), + [anon_sym_for] = ACTIONS(1769), + [anon_sym_in] = ACTIONS(1769), + [anon_sym_loop] = ACTIONS(1769), + [anon_sym_make] = ACTIONS(1769), + [anon_sym_while] = ACTIONS(1769), + [anon_sym_do] = ACTIONS(1769), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_else] = ACTIONS(1769), + [anon_sym_match] = ACTIONS(1769), + [anon_sym_RBRACE] = ACTIONS(1771), + [anon_sym_try] = ACTIONS(1769), + [anon_sym_catch] = ACTIONS(1769), + [anon_sym_return] = ACTIONS(1769), + [anon_sym_source] = ACTIONS(1769), + [anon_sym_source_DASHenv] = ACTIONS(1769), + [anon_sym_register] = ACTIONS(1769), + [anon_sym_hide] = ACTIONS(1769), + [anon_sym_hide_DASHenv] = ACTIONS(1769), + [anon_sym_overlay] = ACTIONS(1769), + [anon_sym_new] = ACTIONS(1769), + [anon_sym_as] = ACTIONS(1769), + [anon_sym_LPAREN2] = ACTIONS(1771), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1771), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1771), + [aux_sym__val_number_decimal_token1] = ACTIONS(1769), + [aux_sym__val_number_decimal_token2] = ACTIONS(1771), + [aux_sym__val_number_decimal_token3] = ACTIONS(1771), + [aux_sym__val_number_decimal_token4] = ACTIONS(1771), + [aux_sym__val_number_token1] = ACTIONS(1771), + [aux_sym__val_number_token2] = ACTIONS(1771), + [aux_sym__val_number_token3] = ACTIONS(1771), + [anon_sym_DQUOTE] = ACTIONS(1771), + [sym__str_single_quotes] = ACTIONS(1771), + [sym__str_back_ticks] = ACTIONS(1771), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1769), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1769), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1771), + }, + [528] = { + [sym_comment] = STATE(528), + [anon_sym_export] = ACTIONS(1628), + [anon_sym_alias] = ACTIONS(1628), + [anon_sym_let] = ACTIONS(1628), + [anon_sym_let_DASHenv] = ACTIONS(1628), + [anon_sym_mut] = ACTIONS(1628), + [anon_sym_const] = ACTIONS(1628), + [aux_sym_cmd_identifier_token1] = ACTIONS(1628), + [aux_sym_cmd_identifier_token2] = ACTIONS(1628), + [aux_sym_cmd_identifier_token3] = ACTIONS(1628), + [aux_sym_cmd_identifier_token4] = ACTIONS(1628), + [aux_sym_cmd_identifier_token5] = ACTIONS(1628), + [aux_sym_cmd_identifier_token6] = ACTIONS(1628), + [aux_sym_cmd_identifier_token7] = ACTIONS(1628), + [aux_sym_cmd_identifier_token8] = ACTIONS(1628), + [aux_sym_cmd_identifier_token9] = ACTIONS(1628), + [aux_sym_cmd_identifier_token10] = ACTIONS(1628), + [aux_sym_cmd_identifier_token11] = ACTIONS(1628), + [aux_sym_cmd_identifier_token12] = ACTIONS(1628), + [aux_sym_cmd_identifier_token13] = ACTIONS(1628), + [aux_sym_cmd_identifier_token14] = ACTIONS(1628), + [aux_sym_cmd_identifier_token15] = ACTIONS(1628), + [aux_sym_cmd_identifier_token16] = ACTIONS(1628), + [aux_sym_cmd_identifier_token17] = ACTIONS(1628), + [aux_sym_cmd_identifier_token18] = ACTIONS(1628), + [aux_sym_cmd_identifier_token19] = ACTIONS(1628), + [aux_sym_cmd_identifier_token20] = ACTIONS(1628), + [aux_sym_cmd_identifier_token21] = ACTIONS(1628), + [aux_sym_cmd_identifier_token22] = ACTIONS(1628), + [aux_sym_cmd_identifier_token23] = ACTIONS(1628), + [aux_sym_cmd_identifier_token24] = ACTIONS(1628), + [aux_sym_cmd_identifier_token25] = ACTIONS(1628), + [aux_sym_cmd_identifier_token26] = ACTIONS(1628), + [aux_sym_cmd_identifier_token27] = ACTIONS(1628), + [aux_sym_cmd_identifier_token28] = ACTIONS(1628), + [aux_sym_cmd_identifier_token29] = ACTIONS(1628), + [aux_sym_cmd_identifier_token30] = ACTIONS(1628), + [aux_sym_cmd_identifier_token31] = ACTIONS(1628), + [aux_sym_cmd_identifier_token32] = ACTIONS(1628), + [aux_sym_cmd_identifier_token33] = ACTIONS(1628), + [aux_sym_cmd_identifier_token34] = ACTIONS(1628), + [aux_sym_cmd_identifier_token35] = ACTIONS(1628), + [aux_sym_cmd_identifier_token36] = ACTIONS(1628), + [anon_sym_true] = ACTIONS(1628), + [anon_sym_false] = ACTIONS(1628), + [anon_sym_null] = ACTIONS(1628), + [aux_sym_cmd_identifier_token38] = ACTIONS(1628), + [aux_sym_cmd_identifier_token39] = ACTIONS(1628), + [aux_sym_cmd_identifier_token40] = ACTIONS(1628), + [anon_sym_def] = ACTIONS(1628), + [anon_sym_export_DASHenv] = ACTIONS(1628), + [anon_sym_extern] = ACTIONS(1628), + [anon_sym_module] = ACTIONS(1628), + [anon_sym_use] = ACTIONS(1628), + [anon_sym_LPAREN] = ACTIONS(1628), + [anon_sym_DOLLAR] = ACTIONS(1628), + [anon_sym_error] = ACTIONS(1628), + [anon_sym_list] = ACTIONS(1628), + [anon_sym_DASH] = ACTIONS(1628), + [anon_sym_break] = ACTIONS(1628), + [anon_sym_continue] = ACTIONS(1628), + [anon_sym_for] = ACTIONS(1628), + [anon_sym_in] = ACTIONS(1628), + [anon_sym_loop] = ACTIONS(1628), + [anon_sym_make] = ACTIONS(1628), + [anon_sym_while] = ACTIONS(1628), + [anon_sym_do] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(1628), + [anon_sym_else] = ACTIONS(1628), + [anon_sym_match] = ACTIONS(1628), + [anon_sym_RBRACE] = ACTIONS(1628), + [anon_sym_try] = ACTIONS(1628), + [anon_sym_catch] = ACTIONS(1628), + [anon_sym_return] = ACTIONS(1628), + [anon_sym_source] = ACTIONS(1628), + [anon_sym_source_DASHenv] = ACTIONS(1628), + [anon_sym_register] = ACTIONS(1628), + [anon_sym_hide] = ACTIONS(1628), + [anon_sym_hide_DASHenv] = ACTIONS(1628), + [anon_sym_overlay] = ACTIONS(1628), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_as] = ACTIONS(1628), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1628), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1628), + [aux_sym__val_number_decimal_token1] = ACTIONS(1628), + [aux_sym__val_number_decimal_token2] = ACTIONS(1628), + [aux_sym__val_number_decimal_token3] = ACTIONS(1628), + [aux_sym__val_number_decimal_token4] = ACTIONS(1628), + [aux_sym__val_number_token1] = ACTIONS(1628), + [aux_sym__val_number_token2] = ACTIONS(1628), + [aux_sym__val_number_token3] = ACTIONS(1628), + [anon_sym_DQUOTE] = ACTIONS(1628), + [sym__str_single_quotes] = ACTIONS(1628), + [sym__str_back_ticks] = ACTIONS(1628), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1628), + [sym__entry_separator] = ACTIONS(1640), + [anon_sym_PLUS] = ACTIONS(1628), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1642), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1640), }, - [568] = { - [sym_comment] = STATE(568), - [anon_sym_export] = ACTIONS(1560), - [anon_sym_alias] = ACTIONS(1560), - [anon_sym_let] = ACTIONS(1560), - [anon_sym_let_DASHenv] = ACTIONS(1560), - [anon_sym_mut] = ACTIONS(1560), - [anon_sym_const] = ACTIONS(1560), - [aux_sym_cmd_identifier_token1] = ACTIONS(1560), - [aux_sym_cmd_identifier_token2] = ACTIONS(1560), - [aux_sym_cmd_identifier_token3] = ACTIONS(1560), - [aux_sym_cmd_identifier_token4] = ACTIONS(1560), - [aux_sym_cmd_identifier_token5] = ACTIONS(1560), - [aux_sym_cmd_identifier_token6] = ACTIONS(1560), - [aux_sym_cmd_identifier_token7] = ACTIONS(1560), - [aux_sym_cmd_identifier_token8] = ACTIONS(1560), - [aux_sym_cmd_identifier_token9] = ACTIONS(1560), - [aux_sym_cmd_identifier_token10] = ACTIONS(1560), - [aux_sym_cmd_identifier_token11] = ACTIONS(1560), - [aux_sym_cmd_identifier_token12] = ACTIONS(1560), - [aux_sym_cmd_identifier_token13] = ACTIONS(1560), - [aux_sym_cmd_identifier_token14] = ACTIONS(1560), - [aux_sym_cmd_identifier_token15] = ACTIONS(1560), - [aux_sym_cmd_identifier_token16] = ACTIONS(1560), - [aux_sym_cmd_identifier_token17] = ACTIONS(1560), - [aux_sym_cmd_identifier_token18] = ACTIONS(1560), - [aux_sym_cmd_identifier_token19] = ACTIONS(1560), - [aux_sym_cmd_identifier_token20] = ACTIONS(1560), - [aux_sym_cmd_identifier_token21] = ACTIONS(1560), - [aux_sym_cmd_identifier_token22] = ACTIONS(1560), - [aux_sym_cmd_identifier_token23] = ACTIONS(1560), - [aux_sym_cmd_identifier_token24] = ACTIONS(1560), - [aux_sym_cmd_identifier_token25] = ACTIONS(1560), - [aux_sym_cmd_identifier_token26] = ACTIONS(1560), - [aux_sym_cmd_identifier_token27] = ACTIONS(1560), - [aux_sym_cmd_identifier_token28] = ACTIONS(1560), - [aux_sym_cmd_identifier_token29] = ACTIONS(1560), - [aux_sym_cmd_identifier_token30] = ACTIONS(1560), - [aux_sym_cmd_identifier_token31] = ACTIONS(1560), - [aux_sym_cmd_identifier_token32] = ACTIONS(1560), - [aux_sym_cmd_identifier_token33] = ACTIONS(1560), - [aux_sym_cmd_identifier_token34] = ACTIONS(1560), - [aux_sym_cmd_identifier_token35] = ACTIONS(1560), - [aux_sym_cmd_identifier_token36] = ACTIONS(1560), - [anon_sym_true] = ACTIONS(1572), - [anon_sym_false] = ACTIONS(1572), - [anon_sym_null] = ACTIONS(1572), - [aux_sym_cmd_identifier_token38] = ACTIONS(1560), - [aux_sym_cmd_identifier_token39] = ACTIONS(1572), - [aux_sym_cmd_identifier_token40] = ACTIONS(1572), - [anon_sym_def] = ACTIONS(1560), - [anon_sym_export_DASHenv] = ACTIONS(1560), - [anon_sym_extern] = ACTIONS(1560), - [anon_sym_module] = ACTIONS(1560), - [anon_sym_use] = ACTIONS(1560), - [anon_sym_LPAREN] = ACTIONS(1572), - [anon_sym_DOLLAR] = ACTIONS(1572), - [anon_sym_error] = ACTIONS(1560), - [anon_sym_list] = ACTIONS(1560), - [anon_sym_DASH] = ACTIONS(1560), - [anon_sym_break] = ACTIONS(1560), - [anon_sym_continue] = ACTIONS(1560), - [anon_sym_for] = ACTIONS(1560), - [anon_sym_in] = ACTIONS(1560), - [anon_sym_loop] = ACTIONS(1560), - [anon_sym_make] = ACTIONS(1560), - [anon_sym_while] = ACTIONS(1560), - [anon_sym_do] = ACTIONS(1560), - [anon_sym_if] = ACTIONS(1560), - [anon_sym_else] = ACTIONS(1560), - [anon_sym_match] = ACTIONS(1560), - [anon_sym_RBRACE] = ACTIONS(1572), - [anon_sym_try] = ACTIONS(1560), - [anon_sym_catch] = ACTIONS(1560), - [anon_sym_return] = ACTIONS(1560), - [anon_sym_source] = ACTIONS(1560), - [anon_sym_source_DASHenv] = ACTIONS(1560), - [anon_sym_register] = ACTIONS(1560), - [anon_sym_hide] = ACTIONS(1560), - [anon_sym_hide_DASHenv] = ACTIONS(1560), - [anon_sym_overlay] = ACTIONS(1560), - [anon_sym_new] = ACTIONS(1560), - [anon_sym_as] = ACTIONS(1560), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1572), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1572), - [aux_sym__val_number_decimal_token1] = ACTIONS(1560), - [aux_sym__val_number_decimal_token2] = ACTIONS(1572), - [aux_sym__val_number_decimal_token3] = ACTIONS(1572), - [aux_sym__val_number_decimal_token4] = ACTIONS(1572), - [aux_sym__val_number_token1] = ACTIONS(1572), - [aux_sym__val_number_token2] = ACTIONS(1572), - [aux_sym__val_number_token3] = ACTIONS(1572), - [anon_sym_DQUOTE] = ACTIONS(1572), - [sym__str_single_quotes] = ACTIONS(1572), - [sym__str_back_ticks] = ACTIONS(1572), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1572), - [anon_sym_PLUS] = ACTIONS(1560), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1687), - [anon_sym_POUND] = ACTIONS(247), + [529] = { + [sym_comment] = STATE(529), + [anon_sym_export] = ACTIONS(2372), + [anon_sym_alias] = ACTIONS(2372), + [anon_sym_let] = ACTIONS(2372), + [anon_sym_let_DASHenv] = ACTIONS(2372), + [anon_sym_mut] = ACTIONS(2372), + [anon_sym_const] = ACTIONS(2372), + [aux_sym_cmd_identifier_token1] = ACTIONS(2372), + [aux_sym_cmd_identifier_token2] = ACTIONS(2372), + [aux_sym_cmd_identifier_token3] = ACTIONS(2372), + [aux_sym_cmd_identifier_token4] = ACTIONS(2372), + [aux_sym_cmd_identifier_token5] = ACTIONS(2372), + [aux_sym_cmd_identifier_token6] = ACTIONS(2372), + [aux_sym_cmd_identifier_token7] = ACTIONS(2372), + [aux_sym_cmd_identifier_token8] = ACTIONS(2372), + [aux_sym_cmd_identifier_token9] = ACTIONS(2372), + [aux_sym_cmd_identifier_token10] = ACTIONS(2372), + [aux_sym_cmd_identifier_token11] = ACTIONS(2372), + [aux_sym_cmd_identifier_token12] = ACTIONS(2372), + [aux_sym_cmd_identifier_token13] = ACTIONS(2372), + [aux_sym_cmd_identifier_token14] = ACTIONS(2372), + [aux_sym_cmd_identifier_token15] = ACTIONS(2372), + [aux_sym_cmd_identifier_token16] = ACTIONS(2372), + [aux_sym_cmd_identifier_token17] = ACTIONS(2372), + [aux_sym_cmd_identifier_token18] = ACTIONS(2372), + [aux_sym_cmd_identifier_token19] = ACTIONS(2372), + [aux_sym_cmd_identifier_token20] = ACTIONS(2372), + [aux_sym_cmd_identifier_token21] = ACTIONS(2372), + [aux_sym_cmd_identifier_token22] = ACTIONS(2372), + [aux_sym_cmd_identifier_token23] = ACTIONS(2372), + [aux_sym_cmd_identifier_token24] = ACTIONS(2372), + [aux_sym_cmd_identifier_token25] = ACTIONS(2372), + [aux_sym_cmd_identifier_token26] = ACTIONS(2372), + [aux_sym_cmd_identifier_token27] = ACTIONS(2372), + [aux_sym_cmd_identifier_token28] = ACTIONS(2372), + [aux_sym_cmd_identifier_token29] = ACTIONS(2372), + [aux_sym_cmd_identifier_token30] = ACTIONS(2372), + [aux_sym_cmd_identifier_token31] = ACTIONS(2372), + [aux_sym_cmd_identifier_token32] = ACTIONS(2372), + [aux_sym_cmd_identifier_token33] = ACTIONS(2372), + [aux_sym_cmd_identifier_token34] = ACTIONS(2372), + [aux_sym_cmd_identifier_token35] = ACTIONS(2372), + [aux_sym_cmd_identifier_token36] = ACTIONS(2372), + [anon_sym_true] = ACTIONS(2372), + [anon_sym_false] = ACTIONS(2372), + [anon_sym_null] = ACTIONS(2372), + [aux_sym_cmd_identifier_token38] = ACTIONS(2372), + [aux_sym_cmd_identifier_token39] = ACTIONS(2372), + [aux_sym_cmd_identifier_token40] = ACTIONS(2372), + [anon_sym_def] = ACTIONS(2372), + [anon_sym_export_DASHenv] = ACTIONS(2372), + [anon_sym_extern] = ACTIONS(2372), + [anon_sym_module] = ACTIONS(2372), + [anon_sym_use] = ACTIONS(2372), + [anon_sym_LPAREN] = ACTIONS(2372), + [anon_sym_DOLLAR] = ACTIONS(2372), + [anon_sym_error] = ACTIONS(2372), + [anon_sym_list] = ACTIONS(2372), + [anon_sym_DASH] = ACTIONS(2372), + [anon_sym_break] = ACTIONS(2372), + [anon_sym_continue] = ACTIONS(2372), + [anon_sym_for] = ACTIONS(2372), + [anon_sym_in] = ACTIONS(2372), + [anon_sym_loop] = ACTIONS(2372), + [anon_sym_make] = ACTIONS(2372), + [anon_sym_while] = ACTIONS(2372), + [anon_sym_do] = ACTIONS(2372), + [anon_sym_if] = ACTIONS(2372), + [anon_sym_else] = ACTIONS(2372), + [anon_sym_match] = ACTIONS(2372), + [anon_sym_RBRACE] = ACTIONS(2372), + [anon_sym_try] = ACTIONS(2372), + [anon_sym_catch] = ACTIONS(2372), + [anon_sym_return] = ACTIONS(2372), + [anon_sym_source] = ACTIONS(2372), + [anon_sym_source_DASHenv] = ACTIONS(2372), + [anon_sym_register] = ACTIONS(2372), + [anon_sym_hide] = ACTIONS(2372), + [anon_sym_hide_DASHenv] = ACTIONS(2372), + [anon_sym_overlay] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2372), + [anon_sym_as] = ACTIONS(2372), + [anon_sym_LPAREN2] = ACTIONS(2374), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2372), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2372), + [aux_sym__val_number_decimal_token1] = ACTIONS(2372), + [aux_sym__val_number_decimal_token2] = ACTIONS(2372), + [aux_sym__val_number_decimal_token3] = ACTIONS(2372), + [aux_sym__val_number_decimal_token4] = ACTIONS(2372), + [aux_sym__val_number_token1] = ACTIONS(2372), + [aux_sym__val_number_token2] = ACTIONS(2372), + [aux_sym__val_number_token3] = ACTIONS(2372), + [anon_sym_DQUOTE] = ACTIONS(2372), + [sym__str_single_quotes] = ACTIONS(2372), + [sym__str_back_ticks] = ACTIONS(2372), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2372), + [sym__entry_separator] = ACTIONS(2374), + [anon_sym_PLUS] = ACTIONS(2372), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2374), }, - [569] = { - [sym_comment] = STATE(569), - [anon_sym_export] = ACTIONS(1721), - [anon_sym_alias] = ACTIONS(1721), - [anon_sym_let] = ACTIONS(1721), - [anon_sym_let_DASHenv] = ACTIONS(1721), - [anon_sym_mut] = ACTIONS(1721), - [anon_sym_const] = ACTIONS(1721), - [aux_sym_cmd_identifier_token1] = ACTIONS(1721), - [aux_sym_cmd_identifier_token2] = ACTIONS(1721), - [aux_sym_cmd_identifier_token3] = ACTIONS(1721), - [aux_sym_cmd_identifier_token4] = ACTIONS(1721), - [aux_sym_cmd_identifier_token5] = ACTIONS(1721), - [aux_sym_cmd_identifier_token6] = ACTIONS(1721), - [aux_sym_cmd_identifier_token7] = ACTIONS(1721), - [aux_sym_cmd_identifier_token8] = ACTIONS(1721), - [aux_sym_cmd_identifier_token9] = ACTIONS(1721), - [aux_sym_cmd_identifier_token10] = ACTIONS(1721), - [aux_sym_cmd_identifier_token11] = ACTIONS(1721), - [aux_sym_cmd_identifier_token12] = ACTIONS(1721), - [aux_sym_cmd_identifier_token13] = ACTIONS(1721), - [aux_sym_cmd_identifier_token14] = ACTIONS(1721), - [aux_sym_cmd_identifier_token15] = ACTIONS(1721), - [aux_sym_cmd_identifier_token16] = ACTIONS(1721), - [aux_sym_cmd_identifier_token17] = ACTIONS(1721), - [aux_sym_cmd_identifier_token18] = ACTIONS(1721), - [aux_sym_cmd_identifier_token19] = ACTIONS(1721), - [aux_sym_cmd_identifier_token20] = ACTIONS(1721), - [aux_sym_cmd_identifier_token21] = ACTIONS(1721), - [aux_sym_cmd_identifier_token22] = ACTIONS(1721), - [aux_sym_cmd_identifier_token23] = ACTIONS(1721), - [aux_sym_cmd_identifier_token24] = ACTIONS(1721), - [aux_sym_cmd_identifier_token25] = ACTIONS(1721), - [aux_sym_cmd_identifier_token26] = ACTIONS(1721), - [aux_sym_cmd_identifier_token27] = ACTIONS(1721), - [aux_sym_cmd_identifier_token28] = ACTIONS(1721), - [aux_sym_cmd_identifier_token29] = ACTIONS(1721), - [aux_sym_cmd_identifier_token30] = ACTIONS(1721), - [aux_sym_cmd_identifier_token31] = ACTIONS(1721), - [aux_sym_cmd_identifier_token32] = ACTIONS(1721), - [aux_sym_cmd_identifier_token33] = ACTIONS(1721), - [aux_sym_cmd_identifier_token34] = ACTIONS(1721), - [aux_sym_cmd_identifier_token35] = ACTIONS(1721), - [aux_sym_cmd_identifier_token36] = ACTIONS(1721), - [anon_sym_true] = ACTIONS(1723), - [anon_sym_false] = ACTIONS(1723), - [anon_sym_null] = ACTIONS(1723), - [aux_sym_cmd_identifier_token38] = ACTIONS(1721), - [aux_sym_cmd_identifier_token39] = ACTIONS(1723), - [aux_sym_cmd_identifier_token40] = ACTIONS(1723), - [anon_sym_def] = ACTIONS(1721), - [anon_sym_export_DASHenv] = ACTIONS(1721), - [anon_sym_extern] = ACTIONS(1721), - [anon_sym_module] = ACTIONS(1721), - [anon_sym_use] = ACTIONS(1721), - [anon_sym_LPAREN] = ACTIONS(1723), - [anon_sym_DOLLAR] = ACTIONS(1723), - [anon_sym_error] = ACTIONS(1721), - [anon_sym_list] = ACTIONS(1721), - [anon_sym_DASH] = ACTIONS(1721), - [anon_sym_break] = ACTIONS(1721), - [anon_sym_continue] = ACTIONS(1721), - [anon_sym_for] = ACTIONS(1721), - [anon_sym_in] = ACTIONS(1721), - [anon_sym_loop] = ACTIONS(1721), - [anon_sym_make] = ACTIONS(1721), - [anon_sym_while] = ACTIONS(1721), - [anon_sym_do] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1721), - [anon_sym_else] = ACTIONS(1721), - [anon_sym_match] = ACTIONS(1721), - [anon_sym_RBRACE] = ACTIONS(1723), - [anon_sym_try] = ACTIONS(1721), - [anon_sym_catch] = ACTIONS(1721), - [anon_sym_return] = ACTIONS(1721), - [anon_sym_source] = ACTIONS(1721), - [anon_sym_source_DASHenv] = ACTIONS(1721), - [anon_sym_register] = ACTIONS(1721), - [anon_sym_hide] = ACTIONS(1721), - [anon_sym_hide_DASHenv] = ACTIONS(1721), - [anon_sym_overlay] = ACTIONS(1721), - [anon_sym_new] = ACTIONS(1721), - [anon_sym_as] = ACTIONS(1721), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1723), - [aux_sym__immediate_decimal_token2] = ACTIONS(2428), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1723), - [aux_sym__val_number_decimal_token1] = ACTIONS(1721), - [aux_sym__val_number_decimal_token2] = ACTIONS(1723), - [aux_sym__val_number_decimal_token3] = ACTIONS(1723), - [aux_sym__val_number_decimal_token4] = ACTIONS(1723), - [aux_sym__val_number_token1] = ACTIONS(1723), - [aux_sym__val_number_token2] = ACTIONS(1723), - [aux_sym__val_number_token3] = ACTIONS(1723), - [anon_sym_DQUOTE] = ACTIONS(1723), - [sym__str_single_quotes] = ACTIONS(1723), - [sym__str_back_ticks] = ACTIONS(1723), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1723), - [anon_sym_PLUS] = ACTIONS(1721), - [anon_sym_POUND] = ACTIONS(247), + [530] = { + [sym_comment] = STATE(530), + [anon_sym_export] = ACTIONS(1826), + [anon_sym_alias] = ACTIONS(1826), + [anon_sym_let] = ACTIONS(1826), + [anon_sym_let_DASHenv] = ACTIONS(1826), + [anon_sym_mut] = ACTIONS(1826), + [anon_sym_const] = ACTIONS(1826), + [aux_sym_cmd_identifier_token1] = ACTIONS(1826), + [aux_sym_cmd_identifier_token2] = ACTIONS(1826), + [aux_sym_cmd_identifier_token3] = ACTIONS(1826), + [aux_sym_cmd_identifier_token4] = ACTIONS(1826), + [aux_sym_cmd_identifier_token5] = ACTIONS(1826), + [aux_sym_cmd_identifier_token6] = ACTIONS(1826), + [aux_sym_cmd_identifier_token7] = ACTIONS(1826), + [aux_sym_cmd_identifier_token8] = ACTIONS(1826), + [aux_sym_cmd_identifier_token9] = ACTIONS(1826), + [aux_sym_cmd_identifier_token10] = ACTIONS(1826), + [aux_sym_cmd_identifier_token11] = ACTIONS(1826), + [aux_sym_cmd_identifier_token12] = ACTIONS(1826), + [aux_sym_cmd_identifier_token13] = ACTIONS(1826), + [aux_sym_cmd_identifier_token14] = ACTIONS(1826), + [aux_sym_cmd_identifier_token15] = ACTIONS(1826), + [aux_sym_cmd_identifier_token16] = ACTIONS(1826), + [aux_sym_cmd_identifier_token17] = ACTIONS(1826), + [aux_sym_cmd_identifier_token18] = ACTIONS(1826), + [aux_sym_cmd_identifier_token19] = ACTIONS(1826), + [aux_sym_cmd_identifier_token20] = ACTIONS(1826), + [aux_sym_cmd_identifier_token21] = ACTIONS(1826), + [aux_sym_cmd_identifier_token22] = ACTIONS(1826), + [aux_sym_cmd_identifier_token23] = ACTIONS(1826), + [aux_sym_cmd_identifier_token24] = ACTIONS(1826), + [aux_sym_cmd_identifier_token25] = ACTIONS(1826), + [aux_sym_cmd_identifier_token26] = ACTIONS(1826), + [aux_sym_cmd_identifier_token27] = ACTIONS(1826), + [aux_sym_cmd_identifier_token28] = ACTIONS(1826), + [aux_sym_cmd_identifier_token29] = ACTIONS(1826), + [aux_sym_cmd_identifier_token30] = ACTIONS(1826), + [aux_sym_cmd_identifier_token31] = ACTIONS(1826), + [aux_sym_cmd_identifier_token32] = ACTIONS(1826), + [aux_sym_cmd_identifier_token33] = ACTIONS(1826), + [aux_sym_cmd_identifier_token34] = ACTIONS(1826), + [aux_sym_cmd_identifier_token35] = ACTIONS(1826), + [aux_sym_cmd_identifier_token36] = ACTIONS(1826), + [anon_sym_true] = ACTIONS(1828), + [anon_sym_false] = ACTIONS(1828), + [anon_sym_null] = ACTIONS(1828), + [aux_sym_cmd_identifier_token38] = ACTIONS(1826), + [aux_sym_cmd_identifier_token39] = ACTIONS(1828), + [aux_sym_cmd_identifier_token40] = ACTIONS(1828), + [anon_sym_def] = ACTIONS(1826), + [anon_sym_export_DASHenv] = ACTIONS(1826), + [anon_sym_extern] = ACTIONS(1826), + [anon_sym_module] = ACTIONS(1826), + [anon_sym_use] = ACTIONS(1826), + [anon_sym_LPAREN] = ACTIONS(1826), + [anon_sym_DOLLAR] = ACTIONS(1828), + [anon_sym_error] = ACTIONS(1826), + [anon_sym_list] = ACTIONS(1826), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_break] = ACTIONS(1826), + [anon_sym_continue] = ACTIONS(1826), + [anon_sym_for] = ACTIONS(1826), + [anon_sym_in] = ACTIONS(1826), + [anon_sym_loop] = ACTIONS(1826), + [anon_sym_make] = ACTIONS(1826), + [anon_sym_while] = ACTIONS(1826), + [anon_sym_do] = ACTIONS(1826), + [anon_sym_if] = ACTIONS(1826), + [anon_sym_else] = ACTIONS(1826), + [anon_sym_match] = ACTIONS(1826), + [anon_sym_RBRACE] = ACTIONS(1828), + [anon_sym_try] = ACTIONS(1826), + [anon_sym_catch] = ACTIONS(1826), + [anon_sym_return] = ACTIONS(1826), + [anon_sym_source] = ACTIONS(1826), + [anon_sym_source_DASHenv] = ACTIONS(1826), + [anon_sym_register] = ACTIONS(1826), + [anon_sym_hide] = ACTIONS(1826), + [anon_sym_hide_DASHenv] = ACTIONS(1826), + [anon_sym_overlay] = ACTIONS(1826), + [anon_sym_new] = ACTIONS(1826), + [anon_sym_as] = ACTIONS(1826), + [anon_sym_LPAREN2] = ACTIONS(1828), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1828), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1828), + [aux_sym__val_number_decimal_token1] = ACTIONS(1826), + [aux_sym__val_number_decimal_token2] = ACTIONS(1828), + [aux_sym__val_number_decimal_token3] = ACTIONS(1828), + [aux_sym__val_number_decimal_token4] = ACTIONS(1828), + [aux_sym__val_number_token1] = ACTIONS(1828), + [aux_sym__val_number_token2] = ACTIONS(1828), + [aux_sym__val_number_token3] = ACTIONS(1828), + [anon_sym_DQUOTE] = ACTIONS(1828), + [sym__str_single_quotes] = ACTIONS(1828), + [sym__str_back_ticks] = ACTIONS(1828), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1828), + [anon_sym_PLUS] = ACTIONS(1826), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1826), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1828), }, - [570] = { - [sym_comment] = STATE(570), - [anon_sym_export] = ACTIONS(2396), - [anon_sym_alias] = ACTIONS(2396), - [anon_sym_let] = ACTIONS(2396), - [anon_sym_let_DASHenv] = ACTIONS(2396), - [anon_sym_mut] = ACTIONS(2396), - [anon_sym_const] = ACTIONS(2396), - [aux_sym_cmd_identifier_token1] = ACTIONS(2396), - [aux_sym_cmd_identifier_token2] = ACTIONS(2396), - [aux_sym_cmd_identifier_token3] = ACTIONS(2396), - [aux_sym_cmd_identifier_token4] = ACTIONS(2396), - [aux_sym_cmd_identifier_token5] = ACTIONS(2396), - [aux_sym_cmd_identifier_token6] = ACTIONS(2396), - [aux_sym_cmd_identifier_token7] = ACTIONS(2396), - [aux_sym_cmd_identifier_token8] = ACTIONS(2396), - [aux_sym_cmd_identifier_token9] = ACTIONS(2396), - [aux_sym_cmd_identifier_token10] = ACTIONS(2396), - [aux_sym_cmd_identifier_token11] = ACTIONS(2396), - [aux_sym_cmd_identifier_token12] = ACTIONS(2396), - [aux_sym_cmd_identifier_token13] = ACTIONS(2396), - [aux_sym_cmd_identifier_token14] = ACTIONS(2396), - [aux_sym_cmd_identifier_token15] = ACTIONS(2396), - [aux_sym_cmd_identifier_token16] = ACTIONS(2396), - [aux_sym_cmd_identifier_token17] = ACTIONS(2396), - [aux_sym_cmd_identifier_token18] = ACTIONS(2396), - [aux_sym_cmd_identifier_token19] = ACTIONS(2396), - [aux_sym_cmd_identifier_token20] = ACTIONS(2396), - [aux_sym_cmd_identifier_token21] = ACTIONS(2396), - [aux_sym_cmd_identifier_token22] = ACTIONS(2396), - [aux_sym_cmd_identifier_token23] = ACTIONS(2396), - [aux_sym_cmd_identifier_token24] = ACTIONS(2396), - [aux_sym_cmd_identifier_token25] = ACTIONS(2396), - [aux_sym_cmd_identifier_token26] = ACTIONS(2396), - [aux_sym_cmd_identifier_token27] = ACTIONS(2396), - [aux_sym_cmd_identifier_token28] = ACTIONS(2396), - [aux_sym_cmd_identifier_token29] = ACTIONS(2396), - [aux_sym_cmd_identifier_token30] = ACTIONS(2396), - [aux_sym_cmd_identifier_token31] = ACTIONS(2396), - [aux_sym_cmd_identifier_token32] = ACTIONS(2396), - [aux_sym_cmd_identifier_token33] = ACTIONS(2396), - [aux_sym_cmd_identifier_token34] = ACTIONS(2396), - [aux_sym_cmd_identifier_token35] = ACTIONS(2396), - [aux_sym_cmd_identifier_token36] = ACTIONS(2396), + [531] = { + [sym_comment] = STATE(531), + [anon_sym_export] = ACTIONS(1715), + [anon_sym_alias] = ACTIONS(1715), + [anon_sym_let] = ACTIONS(1715), + [anon_sym_let_DASHenv] = ACTIONS(1715), + [anon_sym_mut] = ACTIONS(1715), + [anon_sym_const] = ACTIONS(1715), + [aux_sym_cmd_identifier_token1] = ACTIONS(1715), + [aux_sym_cmd_identifier_token2] = ACTIONS(1715), + [aux_sym_cmd_identifier_token3] = ACTIONS(1715), + [aux_sym_cmd_identifier_token4] = ACTIONS(1715), + [aux_sym_cmd_identifier_token5] = ACTIONS(1715), + [aux_sym_cmd_identifier_token6] = ACTIONS(1715), + [aux_sym_cmd_identifier_token7] = ACTIONS(1715), + [aux_sym_cmd_identifier_token8] = ACTIONS(1715), + [aux_sym_cmd_identifier_token9] = ACTIONS(1715), + [aux_sym_cmd_identifier_token10] = ACTIONS(1715), + [aux_sym_cmd_identifier_token11] = ACTIONS(1715), + [aux_sym_cmd_identifier_token12] = ACTIONS(1715), + [aux_sym_cmd_identifier_token13] = ACTIONS(1715), + [aux_sym_cmd_identifier_token14] = ACTIONS(1715), + [aux_sym_cmd_identifier_token15] = ACTIONS(1715), + [aux_sym_cmd_identifier_token16] = ACTIONS(1715), + [aux_sym_cmd_identifier_token17] = ACTIONS(1715), + [aux_sym_cmd_identifier_token18] = ACTIONS(1715), + [aux_sym_cmd_identifier_token19] = ACTIONS(1715), + [aux_sym_cmd_identifier_token20] = ACTIONS(1715), + [aux_sym_cmd_identifier_token21] = ACTIONS(1715), + [aux_sym_cmd_identifier_token22] = ACTIONS(1715), + [aux_sym_cmd_identifier_token23] = ACTIONS(1715), + [aux_sym_cmd_identifier_token24] = ACTIONS(1715), + [aux_sym_cmd_identifier_token25] = ACTIONS(1715), + [aux_sym_cmd_identifier_token26] = ACTIONS(1715), + [aux_sym_cmd_identifier_token27] = ACTIONS(1715), + [aux_sym_cmd_identifier_token28] = ACTIONS(1715), + [aux_sym_cmd_identifier_token29] = ACTIONS(1715), + [aux_sym_cmd_identifier_token30] = ACTIONS(1715), + [aux_sym_cmd_identifier_token31] = ACTIONS(1715), + [aux_sym_cmd_identifier_token32] = ACTIONS(1715), + [aux_sym_cmd_identifier_token33] = ACTIONS(1715), + [aux_sym_cmd_identifier_token34] = ACTIONS(1715), + [aux_sym_cmd_identifier_token35] = ACTIONS(1715), + [aux_sym_cmd_identifier_token36] = ACTIONS(1715), + [anon_sym_true] = ACTIONS(1715), + [anon_sym_false] = ACTIONS(1715), + [anon_sym_null] = ACTIONS(1715), + [aux_sym_cmd_identifier_token38] = ACTIONS(1715), + [aux_sym_cmd_identifier_token39] = ACTIONS(1715), + [aux_sym_cmd_identifier_token40] = ACTIONS(1715), + [anon_sym_def] = ACTIONS(1715), + [anon_sym_export_DASHenv] = ACTIONS(1715), + [anon_sym_extern] = ACTIONS(1715), + [anon_sym_module] = ACTIONS(1715), + [anon_sym_use] = ACTIONS(1715), + [anon_sym_LPAREN] = ACTIONS(1715), + [anon_sym_DOLLAR] = ACTIONS(1715), + [anon_sym_error] = ACTIONS(1715), + [anon_sym_list] = ACTIONS(1715), + [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_break] = ACTIONS(1715), + [anon_sym_continue] = ACTIONS(1715), + [anon_sym_for] = ACTIONS(1715), + [anon_sym_in] = ACTIONS(1715), + [anon_sym_loop] = ACTIONS(1715), + [anon_sym_make] = ACTIONS(1715), + [anon_sym_while] = ACTIONS(1715), + [anon_sym_do] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1715), + [anon_sym_else] = ACTIONS(1715), + [anon_sym_match] = ACTIONS(1715), + [anon_sym_RBRACE] = ACTIONS(1715), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_catch] = ACTIONS(1715), + [anon_sym_return] = ACTIONS(1715), + [anon_sym_source] = ACTIONS(1715), + [anon_sym_source_DASHenv] = ACTIONS(1715), + [anon_sym_register] = ACTIONS(1715), + [anon_sym_hide] = ACTIONS(1715), + [anon_sym_hide_DASHenv] = ACTIONS(1715), + [anon_sym_overlay] = ACTIONS(1715), + [anon_sym_new] = ACTIONS(1715), + [anon_sym_as] = ACTIONS(1715), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1715), + [aux_sym__immediate_decimal_token2] = ACTIONS(2271), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1715), + [aux_sym__val_number_decimal_token1] = ACTIONS(1715), + [aux_sym__val_number_decimal_token2] = ACTIONS(1715), + [aux_sym__val_number_decimal_token3] = ACTIONS(1715), + [aux_sym__val_number_decimal_token4] = ACTIONS(1715), + [aux_sym__val_number_token1] = ACTIONS(1715), + [aux_sym__val_number_token2] = ACTIONS(1715), + [aux_sym__val_number_token3] = ACTIONS(1715), + [anon_sym_DQUOTE] = ACTIONS(1715), + [sym__str_single_quotes] = ACTIONS(1715), + [sym__str_back_ticks] = ACTIONS(1715), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1715), + [sym__entry_separator] = ACTIONS(1717), + [anon_sym_PLUS] = ACTIONS(1715), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1717), + }, + [532] = { + [sym_comment] = STATE(532), + [anon_sym_export] = ACTIONS(1769), + [anon_sym_alias] = ACTIONS(1769), + [anon_sym_let] = ACTIONS(1769), + [anon_sym_let_DASHenv] = ACTIONS(1769), + [anon_sym_mut] = ACTIONS(1769), + [anon_sym_const] = ACTIONS(1769), + [aux_sym_cmd_identifier_token1] = ACTIONS(1769), + [aux_sym_cmd_identifier_token2] = ACTIONS(1769), + [aux_sym_cmd_identifier_token3] = ACTIONS(1769), + [aux_sym_cmd_identifier_token4] = ACTIONS(1769), + [aux_sym_cmd_identifier_token5] = ACTIONS(1769), + [aux_sym_cmd_identifier_token6] = ACTIONS(1769), + [aux_sym_cmd_identifier_token7] = ACTIONS(1769), + [aux_sym_cmd_identifier_token8] = ACTIONS(1769), + [aux_sym_cmd_identifier_token9] = ACTIONS(1769), + [aux_sym_cmd_identifier_token10] = ACTIONS(1769), + [aux_sym_cmd_identifier_token11] = ACTIONS(1769), + [aux_sym_cmd_identifier_token12] = ACTIONS(1769), + [aux_sym_cmd_identifier_token13] = ACTIONS(1769), + [aux_sym_cmd_identifier_token14] = ACTIONS(1769), + [aux_sym_cmd_identifier_token15] = ACTIONS(1769), + [aux_sym_cmd_identifier_token16] = ACTIONS(1769), + [aux_sym_cmd_identifier_token17] = ACTIONS(1769), + [aux_sym_cmd_identifier_token18] = ACTIONS(1769), + [aux_sym_cmd_identifier_token19] = ACTIONS(1769), + [aux_sym_cmd_identifier_token20] = ACTIONS(1769), + [aux_sym_cmd_identifier_token21] = ACTIONS(1769), + [aux_sym_cmd_identifier_token22] = ACTIONS(1769), + [aux_sym_cmd_identifier_token23] = ACTIONS(1769), + [aux_sym_cmd_identifier_token24] = ACTIONS(1769), + [aux_sym_cmd_identifier_token25] = ACTIONS(1769), + [aux_sym_cmd_identifier_token26] = ACTIONS(1769), + [aux_sym_cmd_identifier_token27] = ACTIONS(1769), + [aux_sym_cmd_identifier_token28] = ACTIONS(1769), + [aux_sym_cmd_identifier_token29] = ACTIONS(1769), + [aux_sym_cmd_identifier_token30] = ACTIONS(1769), + [aux_sym_cmd_identifier_token31] = ACTIONS(1769), + [aux_sym_cmd_identifier_token32] = ACTIONS(1769), + [aux_sym_cmd_identifier_token33] = ACTIONS(1769), + [aux_sym_cmd_identifier_token34] = ACTIONS(1769), + [aux_sym_cmd_identifier_token35] = ACTIONS(1769), + [aux_sym_cmd_identifier_token36] = ACTIONS(1769), + [anon_sym_true] = ACTIONS(1769), + [anon_sym_false] = ACTIONS(1769), + [anon_sym_null] = ACTIONS(1769), + [aux_sym_cmd_identifier_token38] = ACTIONS(1769), + [aux_sym_cmd_identifier_token39] = ACTIONS(1769), + [aux_sym_cmd_identifier_token40] = ACTIONS(1769), + [anon_sym_def] = ACTIONS(1769), + [anon_sym_export_DASHenv] = ACTIONS(1769), + [anon_sym_extern] = ACTIONS(1769), + [anon_sym_module] = ACTIONS(1769), + [anon_sym_use] = ACTIONS(1769), + [anon_sym_LPAREN] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1769), + [anon_sym_error] = ACTIONS(1769), + [anon_sym_list] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_break] = ACTIONS(1769), + [anon_sym_continue] = ACTIONS(1769), + [anon_sym_for] = ACTIONS(1769), + [anon_sym_in] = ACTIONS(1769), + [anon_sym_loop] = ACTIONS(1769), + [anon_sym_make] = ACTIONS(1769), + [anon_sym_while] = ACTIONS(1769), + [anon_sym_do] = ACTIONS(1769), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_else] = ACTIONS(1769), + [anon_sym_match] = ACTIONS(1769), + [anon_sym_RBRACE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1769), + [anon_sym_catch] = ACTIONS(1769), + [anon_sym_return] = ACTIONS(1769), + [anon_sym_source] = ACTIONS(1769), + [anon_sym_source_DASHenv] = ACTIONS(1769), + [anon_sym_register] = ACTIONS(1769), + [anon_sym_hide] = ACTIONS(1769), + [anon_sym_hide_DASHenv] = ACTIONS(1769), + [anon_sym_overlay] = ACTIONS(1769), + [anon_sym_new] = ACTIONS(1769), + [anon_sym_as] = ACTIONS(1769), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1769), + [aux_sym__immediate_decimal_token2] = ACTIONS(2376), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1769), + [aux_sym__val_number_decimal_token1] = ACTIONS(1769), + [aux_sym__val_number_decimal_token2] = ACTIONS(1769), + [aux_sym__val_number_decimal_token3] = ACTIONS(1769), + [aux_sym__val_number_decimal_token4] = ACTIONS(1769), + [aux_sym__val_number_token1] = ACTIONS(1769), + [aux_sym__val_number_token2] = ACTIONS(1769), + [aux_sym__val_number_token3] = ACTIONS(1769), + [anon_sym_DQUOTE] = ACTIONS(1769), + [sym__str_single_quotes] = ACTIONS(1769), + [sym__str_back_ticks] = ACTIONS(1769), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1769), + [sym__entry_separator] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1769), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1771), + }, + [533] = { + [sym_comment] = STATE(533), + [anon_sym_export] = ACTIONS(2378), + [anon_sym_alias] = ACTIONS(2378), + [anon_sym_let] = ACTIONS(2378), + [anon_sym_let_DASHenv] = ACTIONS(2378), + [anon_sym_mut] = ACTIONS(2378), + [anon_sym_const] = ACTIONS(2378), + [aux_sym_cmd_identifier_token1] = ACTIONS(2378), + [aux_sym_cmd_identifier_token2] = ACTIONS(2378), + [aux_sym_cmd_identifier_token3] = ACTIONS(2378), + [aux_sym_cmd_identifier_token4] = ACTIONS(2378), + [aux_sym_cmd_identifier_token5] = ACTIONS(2378), + [aux_sym_cmd_identifier_token6] = ACTIONS(2378), + [aux_sym_cmd_identifier_token7] = ACTIONS(2378), + [aux_sym_cmd_identifier_token8] = ACTIONS(2378), + [aux_sym_cmd_identifier_token9] = ACTIONS(2378), + [aux_sym_cmd_identifier_token10] = ACTIONS(2378), + [aux_sym_cmd_identifier_token11] = ACTIONS(2378), + [aux_sym_cmd_identifier_token12] = ACTIONS(2378), + [aux_sym_cmd_identifier_token13] = ACTIONS(2378), + [aux_sym_cmd_identifier_token14] = ACTIONS(2378), + [aux_sym_cmd_identifier_token15] = ACTIONS(2378), + [aux_sym_cmd_identifier_token16] = ACTIONS(2378), + [aux_sym_cmd_identifier_token17] = ACTIONS(2378), + [aux_sym_cmd_identifier_token18] = ACTIONS(2378), + [aux_sym_cmd_identifier_token19] = ACTIONS(2378), + [aux_sym_cmd_identifier_token20] = ACTIONS(2378), + [aux_sym_cmd_identifier_token21] = ACTIONS(2378), + [aux_sym_cmd_identifier_token22] = ACTIONS(2378), + [aux_sym_cmd_identifier_token23] = ACTIONS(2378), + [aux_sym_cmd_identifier_token24] = ACTIONS(2378), + [aux_sym_cmd_identifier_token25] = ACTIONS(2378), + [aux_sym_cmd_identifier_token26] = ACTIONS(2378), + [aux_sym_cmd_identifier_token27] = ACTIONS(2378), + [aux_sym_cmd_identifier_token28] = ACTIONS(2378), + [aux_sym_cmd_identifier_token29] = ACTIONS(2378), + [aux_sym_cmd_identifier_token30] = ACTIONS(2378), + [aux_sym_cmd_identifier_token31] = ACTIONS(2378), + [aux_sym_cmd_identifier_token32] = ACTIONS(2378), + [aux_sym_cmd_identifier_token33] = ACTIONS(2378), + [aux_sym_cmd_identifier_token34] = ACTIONS(2378), + [aux_sym_cmd_identifier_token35] = ACTIONS(2378), + [aux_sym_cmd_identifier_token36] = ACTIONS(2378), + [anon_sym_true] = ACTIONS(2378), + [anon_sym_false] = ACTIONS(2378), + [anon_sym_null] = ACTIONS(2378), + [aux_sym_cmd_identifier_token38] = ACTIONS(2378), + [aux_sym_cmd_identifier_token39] = ACTIONS(2378), + [aux_sym_cmd_identifier_token40] = ACTIONS(2378), + [anon_sym_def] = ACTIONS(2378), + [anon_sym_export_DASHenv] = ACTIONS(2378), + [anon_sym_extern] = ACTIONS(2378), + [anon_sym_module] = ACTIONS(2378), + [anon_sym_use] = ACTIONS(2378), + [anon_sym_LPAREN] = ACTIONS(2378), + [anon_sym_DOLLAR] = ACTIONS(2378), + [anon_sym_error] = ACTIONS(2378), + [anon_sym_list] = ACTIONS(2378), + [anon_sym_DASH] = ACTIONS(2378), + [anon_sym_break] = ACTIONS(2378), + [anon_sym_continue] = ACTIONS(2378), + [anon_sym_for] = ACTIONS(2378), + [anon_sym_in] = ACTIONS(2378), + [anon_sym_loop] = ACTIONS(2378), + [anon_sym_make] = ACTIONS(2378), + [anon_sym_while] = ACTIONS(2378), + [anon_sym_do] = ACTIONS(2378), + [anon_sym_if] = ACTIONS(2378), + [anon_sym_else] = ACTIONS(2378), + [anon_sym_match] = ACTIONS(2378), + [anon_sym_RBRACE] = ACTIONS(2378), + [anon_sym_try] = ACTIONS(2378), + [anon_sym_catch] = ACTIONS(2378), + [anon_sym_return] = ACTIONS(2378), + [anon_sym_source] = ACTIONS(2378), + [anon_sym_source_DASHenv] = ACTIONS(2378), + [anon_sym_register] = ACTIONS(2378), + [anon_sym_hide] = ACTIONS(2378), + [anon_sym_hide_DASHenv] = ACTIONS(2378), + [anon_sym_overlay] = ACTIONS(2378), + [anon_sym_new] = ACTIONS(2378), + [anon_sym_as] = ACTIONS(2378), + [anon_sym_LPAREN2] = ACTIONS(2380), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2378), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2378), + [aux_sym__val_number_decimal_token1] = ACTIONS(2378), + [aux_sym__val_number_decimal_token2] = ACTIONS(2378), + [aux_sym__val_number_decimal_token3] = ACTIONS(2378), + [aux_sym__val_number_decimal_token4] = ACTIONS(2378), + [aux_sym__val_number_token1] = ACTIONS(2378), + [aux_sym__val_number_token2] = ACTIONS(2378), + [aux_sym__val_number_token3] = ACTIONS(2378), + [anon_sym_DQUOTE] = ACTIONS(2378), + [sym__str_single_quotes] = ACTIONS(2378), + [sym__str_back_ticks] = ACTIONS(2378), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2378), + [sym__entry_separator] = ACTIONS(2380), + [anon_sym_PLUS] = ACTIONS(2378), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2380), + }, + [534] = { + [sym_comment] = STATE(534), + [anon_sym_export] = ACTIONS(1715), + [anon_sym_alias] = ACTIONS(1715), + [anon_sym_let] = ACTIONS(1715), + [anon_sym_let_DASHenv] = ACTIONS(1715), + [anon_sym_mut] = ACTIONS(1715), + [anon_sym_const] = ACTIONS(1715), + [aux_sym_cmd_identifier_token1] = ACTIONS(1715), + [aux_sym_cmd_identifier_token2] = ACTIONS(1715), + [aux_sym_cmd_identifier_token3] = ACTIONS(1715), + [aux_sym_cmd_identifier_token4] = ACTIONS(1715), + [aux_sym_cmd_identifier_token5] = ACTIONS(1715), + [aux_sym_cmd_identifier_token6] = ACTIONS(1715), + [aux_sym_cmd_identifier_token7] = ACTIONS(1715), + [aux_sym_cmd_identifier_token8] = ACTIONS(1715), + [aux_sym_cmd_identifier_token9] = ACTIONS(1715), + [aux_sym_cmd_identifier_token10] = ACTIONS(1715), + [aux_sym_cmd_identifier_token11] = ACTIONS(1715), + [aux_sym_cmd_identifier_token12] = ACTIONS(1715), + [aux_sym_cmd_identifier_token13] = ACTIONS(1715), + [aux_sym_cmd_identifier_token14] = ACTIONS(1715), + [aux_sym_cmd_identifier_token15] = ACTIONS(1715), + [aux_sym_cmd_identifier_token16] = ACTIONS(1715), + [aux_sym_cmd_identifier_token17] = ACTIONS(1715), + [aux_sym_cmd_identifier_token18] = ACTIONS(1715), + [aux_sym_cmd_identifier_token19] = ACTIONS(1715), + [aux_sym_cmd_identifier_token20] = ACTIONS(1715), + [aux_sym_cmd_identifier_token21] = ACTIONS(1715), + [aux_sym_cmd_identifier_token22] = ACTIONS(1715), + [aux_sym_cmd_identifier_token23] = ACTIONS(1715), + [aux_sym_cmd_identifier_token24] = ACTIONS(1715), + [aux_sym_cmd_identifier_token25] = ACTIONS(1715), + [aux_sym_cmd_identifier_token26] = ACTIONS(1715), + [aux_sym_cmd_identifier_token27] = ACTIONS(1715), + [aux_sym_cmd_identifier_token28] = ACTIONS(1715), + [aux_sym_cmd_identifier_token29] = ACTIONS(1715), + [aux_sym_cmd_identifier_token30] = ACTIONS(1715), + [aux_sym_cmd_identifier_token31] = ACTIONS(1715), + [aux_sym_cmd_identifier_token32] = ACTIONS(1715), + [aux_sym_cmd_identifier_token33] = ACTIONS(1715), + [aux_sym_cmd_identifier_token34] = ACTIONS(1715), + [aux_sym_cmd_identifier_token35] = ACTIONS(1715), + [aux_sym_cmd_identifier_token36] = ACTIONS(1715), + [anon_sym_true] = ACTIONS(1717), + [anon_sym_false] = ACTIONS(1717), + [anon_sym_null] = ACTIONS(1717), + [aux_sym_cmd_identifier_token38] = ACTIONS(1715), + [aux_sym_cmd_identifier_token39] = ACTIONS(1717), + [aux_sym_cmd_identifier_token40] = ACTIONS(1717), + [anon_sym_def] = ACTIONS(1715), + [anon_sym_export_DASHenv] = ACTIONS(1715), + [anon_sym_extern] = ACTIONS(1715), + [anon_sym_module] = ACTIONS(1715), + [anon_sym_use] = ACTIONS(1715), + [anon_sym_LPAREN] = ACTIONS(1717), + [anon_sym_DOLLAR] = ACTIONS(1717), + [anon_sym_error] = ACTIONS(1715), + [anon_sym_list] = ACTIONS(1715), + [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_break] = ACTIONS(1715), + [anon_sym_continue] = ACTIONS(1715), + [anon_sym_for] = ACTIONS(1715), + [anon_sym_in] = ACTIONS(1715), + [anon_sym_loop] = ACTIONS(1715), + [anon_sym_make] = ACTIONS(1715), + [anon_sym_while] = ACTIONS(1715), + [anon_sym_do] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1715), + [anon_sym_else] = ACTIONS(1715), + [anon_sym_match] = ACTIONS(1715), + [anon_sym_RBRACE] = ACTIONS(1717), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_catch] = ACTIONS(1715), + [anon_sym_return] = ACTIONS(1715), + [anon_sym_source] = ACTIONS(1715), + [anon_sym_source_DASHenv] = ACTIONS(1715), + [anon_sym_register] = ACTIONS(1715), + [anon_sym_hide] = ACTIONS(1715), + [anon_sym_hide_DASHenv] = ACTIONS(1715), + [anon_sym_overlay] = ACTIONS(1715), + [anon_sym_new] = ACTIONS(1715), + [anon_sym_as] = ACTIONS(1715), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1717), + [anon_sym_DOT] = ACTIONS(2382), + [aux_sym__immediate_decimal_token2] = ACTIONS(2384), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1717), + [aux_sym__val_number_decimal_token1] = ACTIONS(1715), + [aux_sym__val_number_decimal_token2] = ACTIONS(1717), + [aux_sym__val_number_decimal_token3] = ACTIONS(1717), + [aux_sym__val_number_decimal_token4] = ACTIONS(1717), + [aux_sym__val_number_token1] = ACTIONS(1717), + [aux_sym__val_number_token2] = ACTIONS(1717), + [aux_sym__val_number_token3] = ACTIONS(1717), + [anon_sym_DQUOTE] = ACTIONS(1717), + [sym__str_single_quotes] = ACTIONS(1717), + [sym__str_back_ticks] = ACTIONS(1717), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1717), + [anon_sym_PLUS] = ACTIONS(1715), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1717), + }, + [535] = { + [sym_comment] = STATE(535), + [anon_sym_export] = ACTIONS(1788), + [anon_sym_alias] = ACTIONS(1788), + [anon_sym_let] = ACTIONS(1788), + [anon_sym_let_DASHenv] = ACTIONS(1788), + [anon_sym_mut] = ACTIONS(1788), + [anon_sym_const] = ACTIONS(1788), + [aux_sym_cmd_identifier_token1] = ACTIONS(1788), + [aux_sym_cmd_identifier_token2] = ACTIONS(1788), + [aux_sym_cmd_identifier_token3] = ACTIONS(1788), + [aux_sym_cmd_identifier_token4] = ACTIONS(1788), + [aux_sym_cmd_identifier_token5] = ACTIONS(1788), + [aux_sym_cmd_identifier_token6] = ACTIONS(1788), + [aux_sym_cmd_identifier_token7] = ACTIONS(1788), + [aux_sym_cmd_identifier_token8] = ACTIONS(1788), + [aux_sym_cmd_identifier_token9] = ACTIONS(1788), + [aux_sym_cmd_identifier_token10] = ACTIONS(1788), + [aux_sym_cmd_identifier_token11] = ACTIONS(1788), + [aux_sym_cmd_identifier_token12] = ACTIONS(1788), + [aux_sym_cmd_identifier_token13] = ACTIONS(1788), + [aux_sym_cmd_identifier_token14] = ACTIONS(1788), + [aux_sym_cmd_identifier_token15] = ACTIONS(1788), + [aux_sym_cmd_identifier_token16] = ACTIONS(1788), + [aux_sym_cmd_identifier_token17] = ACTIONS(1788), + [aux_sym_cmd_identifier_token18] = ACTIONS(1788), + [aux_sym_cmd_identifier_token19] = ACTIONS(1788), + [aux_sym_cmd_identifier_token20] = ACTIONS(1788), + [aux_sym_cmd_identifier_token21] = ACTIONS(1788), + [aux_sym_cmd_identifier_token22] = ACTIONS(1788), + [aux_sym_cmd_identifier_token23] = ACTIONS(1788), + [aux_sym_cmd_identifier_token24] = ACTIONS(1788), + [aux_sym_cmd_identifier_token25] = ACTIONS(1788), + [aux_sym_cmd_identifier_token26] = ACTIONS(1788), + [aux_sym_cmd_identifier_token27] = ACTIONS(1788), + [aux_sym_cmd_identifier_token28] = ACTIONS(1788), + [aux_sym_cmd_identifier_token29] = ACTIONS(1788), + [aux_sym_cmd_identifier_token30] = ACTIONS(1788), + [aux_sym_cmd_identifier_token31] = ACTIONS(1788), + [aux_sym_cmd_identifier_token32] = ACTIONS(1788), + [aux_sym_cmd_identifier_token33] = ACTIONS(1788), + [aux_sym_cmd_identifier_token34] = ACTIONS(1788), + [aux_sym_cmd_identifier_token35] = ACTIONS(1788), + [aux_sym_cmd_identifier_token36] = ACTIONS(1788), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_null] = ACTIONS(1796), + [aux_sym_cmd_identifier_token38] = ACTIONS(1788), + [aux_sym_cmd_identifier_token39] = ACTIONS(1796), + [aux_sym_cmd_identifier_token40] = ACTIONS(1796), + [anon_sym_def] = ACTIONS(1788), + [anon_sym_export_DASHenv] = ACTIONS(1788), + [anon_sym_extern] = ACTIONS(1788), + [anon_sym_module] = ACTIONS(1788), + [anon_sym_use] = ACTIONS(1788), + [anon_sym_LPAREN] = ACTIONS(1788), + [anon_sym_DOLLAR] = ACTIONS(1796), + [anon_sym_error] = ACTIONS(1788), + [anon_sym_list] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_break] = ACTIONS(1788), + [anon_sym_continue] = ACTIONS(1788), + [anon_sym_for] = ACTIONS(1788), + [anon_sym_in] = ACTIONS(1788), + [anon_sym_loop] = ACTIONS(1788), + [anon_sym_make] = ACTIONS(1788), + [anon_sym_while] = ACTIONS(1788), + [anon_sym_do] = ACTIONS(1788), + [anon_sym_if] = ACTIONS(1788), + [anon_sym_else] = ACTIONS(1788), + [anon_sym_match] = ACTIONS(1788), + [anon_sym_RBRACE] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1788), + [anon_sym_catch] = ACTIONS(1788), + [anon_sym_return] = ACTIONS(1788), + [anon_sym_source] = ACTIONS(1788), + [anon_sym_source_DASHenv] = ACTIONS(1788), + [anon_sym_register] = ACTIONS(1788), + [anon_sym_hide] = ACTIONS(1788), + [anon_sym_hide_DASHenv] = ACTIONS(1788), + [anon_sym_overlay] = ACTIONS(1788), + [anon_sym_new] = ACTIONS(1788), + [anon_sym_as] = ACTIONS(1788), + [anon_sym_LPAREN2] = ACTIONS(1790), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1796), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1796), + [aux_sym__val_number_decimal_token1] = ACTIONS(1788), + [aux_sym__val_number_decimal_token2] = ACTIONS(1796), + [aux_sym__val_number_decimal_token3] = ACTIONS(1796), + [aux_sym__val_number_decimal_token4] = ACTIONS(1796), + [aux_sym__val_number_token1] = ACTIONS(1796), + [aux_sym__val_number_token2] = ACTIONS(1796), + [aux_sym__val_number_token3] = ACTIONS(1796), + [anon_sym_DQUOTE] = ACTIONS(1796), + [sym__str_single_quotes] = ACTIONS(1796), + [sym__str_back_ticks] = ACTIONS(1796), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1788), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1526), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1796), + }, + [536] = { + [sym_comment] = STATE(536), + [anon_sym_export] = ACTIONS(1703), + [anon_sym_alias] = ACTIONS(1703), + [anon_sym_let] = ACTIONS(1703), + [anon_sym_let_DASHenv] = ACTIONS(1703), + [anon_sym_mut] = ACTIONS(1703), + [anon_sym_const] = ACTIONS(1703), + [aux_sym_cmd_identifier_token1] = ACTIONS(1703), + [aux_sym_cmd_identifier_token2] = ACTIONS(1703), + [aux_sym_cmd_identifier_token3] = ACTIONS(1703), + [aux_sym_cmd_identifier_token4] = ACTIONS(1703), + [aux_sym_cmd_identifier_token5] = ACTIONS(1703), + [aux_sym_cmd_identifier_token6] = ACTIONS(1703), + [aux_sym_cmd_identifier_token7] = ACTIONS(1703), + [aux_sym_cmd_identifier_token8] = ACTIONS(1703), + [aux_sym_cmd_identifier_token9] = ACTIONS(1703), + [aux_sym_cmd_identifier_token10] = ACTIONS(1703), + [aux_sym_cmd_identifier_token11] = ACTIONS(1703), + [aux_sym_cmd_identifier_token12] = ACTIONS(1703), + [aux_sym_cmd_identifier_token13] = ACTIONS(1703), + [aux_sym_cmd_identifier_token14] = ACTIONS(1703), + [aux_sym_cmd_identifier_token15] = ACTIONS(1703), + [aux_sym_cmd_identifier_token16] = ACTIONS(1703), + [aux_sym_cmd_identifier_token17] = ACTIONS(1703), + [aux_sym_cmd_identifier_token18] = ACTIONS(1703), + [aux_sym_cmd_identifier_token19] = ACTIONS(1703), + [aux_sym_cmd_identifier_token20] = ACTIONS(1703), + [aux_sym_cmd_identifier_token21] = ACTIONS(1703), + [aux_sym_cmd_identifier_token22] = ACTIONS(1703), + [aux_sym_cmd_identifier_token23] = ACTIONS(1703), + [aux_sym_cmd_identifier_token24] = ACTIONS(1703), + [aux_sym_cmd_identifier_token25] = ACTIONS(1703), + [aux_sym_cmd_identifier_token26] = ACTIONS(1703), + [aux_sym_cmd_identifier_token27] = ACTIONS(1703), + [aux_sym_cmd_identifier_token28] = ACTIONS(1703), + [aux_sym_cmd_identifier_token29] = ACTIONS(1703), + [aux_sym_cmd_identifier_token30] = ACTIONS(1703), + [aux_sym_cmd_identifier_token31] = ACTIONS(1703), + [aux_sym_cmd_identifier_token32] = ACTIONS(1703), + [aux_sym_cmd_identifier_token33] = ACTIONS(1703), + [aux_sym_cmd_identifier_token34] = ACTIONS(1703), + [aux_sym_cmd_identifier_token35] = ACTIONS(1703), + [aux_sym_cmd_identifier_token36] = ACTIONS(1703), + [anon_sym_true] = ACTIONS(1705), + [anon_sym_false] = ACTIONS(1705), + [anon_sym_null] = ACTIONS(1705), + [aux_sym_cmd_identifier_token38] = ACTIONS(1703), + [aux_sym_cmd_identifier_token39] = ACTIONS(1705), + [aux_sym_cmd_identifier_token40] = ACTIONS(1705), + [anon_sym_def] = ACTIONS(1703), + [anon_sym_export_DASHenv] = ACTIONS(1703), + [anon_sym_extern] = ACTIONS(1703), + [anon_sym_module] = ACTIONS(1703), + [anon_sym_use] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1705), + [anon_sym_error] = ACTIONS(1703), + [anon_sym_list] = ACTIONS(1703), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_break] = ACTIONS(1703), + [anon_sym_continue] = ACTIONS(1703), + [anon_sym_for] = ACTIONS(1703), + [anon_sym_in] = ACTIONS(1703), + [anon_sym_loop] = ACTIONS(1703), + [anon_sym_make] = ACTIONS(1703), + [anon_sym_while] = ACTIONS(1703), + [anon_sym_do] = ACTIONS(1703), + [anon_sym_if] = ACTIONS(1703), + [anon_sym_else] = ACTIONS(1703), + [anon_sym_match] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1703), + [anon_sym_catch] = ACTIONS(1703), + [anon_sym_return] = ACTIONS(1703), + [anon_sym_source] = ACTIONS(1703), + [anon_sym_source_DASHenv] = ACTIONS(1703), + [anon_sym_register] = ACTIONS(1703), + [anon_sym_hide] = ACTIONS(1703), + [anon_sym_hide_DASHenv] = ACTIONS(1703), + [anon_sym_overlay] = ACTIONS(1703), + [anon_sym_new] = ACTIONS(1703), + [anon_sym_as] = ACTIONS(1703), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1705), + [aux_sym__immediate_decimal_token1] = ACTIONS(2386), + [aux_sym__immediate_decimal_token2] = ACTIONS(2388), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1705), + [aux_sym__val_number_decimal_token1] = ACTIONS(1703), + [aux_sym__val_number_decimal_token2] = ACTIONS(1705), + [aux_sym__val_number_decimal_token3] = ACTIONS(1705), + [aux_sym__val_number_decimal_token4] = ACTIONS(1705), + [aux_sym__val_number_token1] = ACTIONS(1705), + [aux_sym__val_number_token2] = ACTIONS(1705), + [aux_sym__val_number_token3] = ACTIONS(1705), + [anon_sym_DQUOTE] = ACTIONS(1705), + [sym__str_single_quotes] = ACTIONS(1705), + [sym__str_back_ticks] = ACTIONS(1705), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1705), + [anon_sym_PLUS] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1705), + }, + [537] = { + [sym_comment] = STATE(537), + [anon_sym_export] = ACTIONS(1042), + [anon_sym_alias] = ACTIONS(1042), + [anon_sym_let] = ACTIONS(1042), + [anon_sym_let_DASHenv] = ACTIONS(1042), + [anon_sym_mut] = ACTIONS(1042), + [anon_sym_const] = ACTIONS(1042), + [aux_sym_cmd_identifier_token1] = ACTIONS(1042), + [aux_sym_cmd_identifier_token2] = ACTIONS(1042), + [aux_sym_cmd_identifier_token3] = ACTIONS(1042), + [aux_sym_cmd_identifier_token4] = ACTIONS(1042), + [aux_sym_cmd_identifier_token5] = ACTIONS(1042), + [aux_sym_cmd_identifier_token6] = ACTIONS(1042), + [aux_sym_cmd_identifier_token7] = ACTIONS(1042), + [aux_sym_cmd_identifier_token8] = ACTIONS(1042), + [aux_sym_cmd_identifier_token9] = ACTIONS(1042), + [aux_sym_cmd_identifier_token10] = ACTIONS(1042), + [aux_sym_cmd_identifier_token11] = ACTIONS(1042), + [aux_sym_cmd_identifier_token12] = ACTIONS(1042), + [aux_sym_cmd_identifier_token13] = ACTIONS(1042), + [aux_sym_cmd_identifier_token14] = ACTIONS(1042), + [aux_sym_cmd_identifier_token15] = ACTIONS(1042), + [aux_sym_cmd_identifier_token16] = ACTIONS(1042), + [aux_sym_cmd_identifier_token17] = ACTIONS(1042), + [aux_sym_cmd_identifier_token18] = ACTIONS(1042), + [aux_sym_cmd_identifier_token19] = ACTIONS(1042), + [aux_sym_cmd_identifier_token20] = ACTIONS(1042), + [aux_sym_cmd_identifier_token21] = ACTIONS(1042), + [aux_sym_cmd_identifier_token22] = ACTIONS(1042), + [aux_sym_cmd_identifier_token23] = ACTIONS(1042), + [aux_sym_cmd_identifier_token24] = ACTIONS(1042), + [aux_sym_cmd_identifier_token25] = ACTIONS(1042), + [aux_sym_cmd_identifier_token26] = ACTIONS(1042), + [aux_sym_cmd_identifier_token27] = ACTIONS(1042), + [aux_sym_cmd_identifier_token28] = ACTIONS(1042), + [aux_sym_cmd_identifier_token29] = ACTIONS(1042), + [aux_sym_cmd_identifier_token30] = ACTIONS(1042), + [aux_sym_cmd_identifier_token31] = ACTIONS(1042), + [aux_sym_cmd_identifier_token32] = ACTIONS(1042), + [aux_sym_cmd_identifier_token33] = ACTIONS(1042), + [aux_sym_cmd_identifier_token34] = ACTIONS(1042), + [aux_sym_cmd_identifier_token35] = ACTIONS(1042), + [aux_sym_cmd_identifier_token36] = ACTIONS(1042), + [anon_sym_true] = ACTIONS(1044), + [anon_sym_false] = ACTIONS(1044), + [anon_sym_null] = ACTIONS(1044), + [aux_sym_cmd_identifier_token38] = ACTIONS(1042), + [aux_sym_cmd_identifier_token39] = ACTIONS(1044), + [aux_sym_cmd_identifier_token40] = ACTIONS(1044), + [anon_sym_def] = ACTIONS(1042), + [anon_sym_export_DASHenv] = ACTIONS(1042), + [anon_sym_extern] = ACTIONS(1042), + [anon_sym_module] = ACTIONS(1042), + [anon_sym_use] = ACTIONS(1042), + [anon_sym_LPAREN] = ACTIONS(1044), + [anon_sym_DOLLAR] = ACTIONS(1044), + [anon_sym_error] = ACTIONS(1042), + [anon_sym_list] = ACTIONS(1042), + [anon_sym_DASH] = ACTIONS(1042), + [anon_sym_break] = ACTIONS(1042), + [anon_sym_continue] = ACTIONS(1042), + [anon_sym_for] = ACTIONS(1042), + [anon_sym_in] = ACTIONS(1042), + [anon_sym_loop] = ACTIONS(1042), + [anon_sym_make] = ACTIONS(1042), + [anon_sym_while] = ACTIONS(1042), + [anon_sym_do] = ACTIONS(1042), + [anon_sym_if] = ACTIONS(1042), + [anon_sym_else] = ACTIONS(1042), + [anon_sym_match] = ACTIONS(1042), + [anon_sym_RBRACE] = ACTIONS(1044), + [anon_sym_try] = ACTIONS(1042), + [anon_sym_catch] = ACTIONS(1042), + [anon_sym_return] = ACTIONS(1042), + [anon_sym_source] = ACTIONS(1042), + [anon_sym_source_DASHenv] = ACTIONS(1042), + [anon_sym_register] = ACTIONS(1042), + [anon_sym_hide] = ACTIONS(1042), + [anon_sym_hide_DASHenv] = ACTIONS(1042), + [anon_sym_overlay] = ACTIONS(1042), + [anon_sym_new] = ACTIONS(1042), + [anon_sym_as] = ACTIONS(1042), + [anon_sym_QMARK2] = ACTIONS(2390), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1044), + [anon_sym_DOT] = ACTIONS(1042), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1044), + [aux_sym__val_number_decimal_token1] = ACTIONS(1042), + [aux_sym__val_number_decimal_token2] = ACTIONS(1044), + [aux_sym__val_number_decimal_token3] = ACTIONS(1044), + [aux_sym__val_number_decimal_token4] = ACTIONS(1044), + [aux_sym__val_number_token1] = ACTIONS(1044), + [aux_sym__val_number_token2] = ACTIONS(1044), + [aux_sym__val_number_token3] = ACTIONS(1044), + [anon_sym_DQUOTE] = ACTIONS(1044), + [sym__str_single_quotes] = ACTIONS(1044), + [sym__str_back_ticks] = ACTIONS(1044), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1044), + [anon_sym_PLUS] = ACTIONS(1042), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1044), + }, + [538] = { + [sym_comment] = STATE(538), + [anon_sym_export] = ACTIONS(1066), + [anon_sym_alias] = ACTIONS(1066), + [anon_sym_let] = ACTIONS(1066), + [anon_sym_let_DASHenv] = ACTIONS(1066), + [anon_sym_mut] = ACTIONS(1066), + [anon_sym_const] = ACTIONS(1066), + [aux_sym_cmd_identifier_token1] = ACTIONS(1066), + [aux_sym_cmd_identifier_token2] = ACTIONS(1066), + [aux_sym_cmd_identifier_token3] = ACTIONS(1066), + [aux_sym_cmd_identifier_token4] = ACTIONS(1066), + [aux_sym_cmd_identifier_token5] = ACTIONS(1066), + [aux_sym_cmd_identifier_token6] = ACTIONS(1066), + [aux_sym_cmd_identifier_token7] = ACTIONS(1066), + [aux_sym_cmd_identifier_token8] = ACTIONS(1066), + [aux_sym_cmd_identifier_token9] = ACTIONS(1066), + [aux_sym_cmd_identifier_token10] = ACTIONS(1066), + [aux_sym_cmd_identifier_token11] = ACTIONS(1066), + [aux_sym_cmd_identifier_token12] = ACTIONS(1066), + [aux_sym_cmd_identifier_token13] = ACTIONS(1066), + [aux_sym_cmd_identifier_token14] = ACTIONS(1066), + [aux_sym_cmd_identifier_token15] = ACTIONS(1066), + [aux_sym_cmd_identifier_token16] = ACTIONS(1066), + [aux_sym_cmd_identifier_token17] = ACTIONS(1066), + [aux_sym_cmd_identifier_token18] = ACTIONS(1066), + [aux_sym_cmd_identifier_token19] = ACTIONS(1066), + [aux_sym_cmd_identifier_token20] = ACTIONS(1066), + [aux_sym_cmd_identifier_token21] = ACTIONS(1066), + [aux_sym_cmd_identifier_token22] = ACTIONS(1066), + [aux_sym_cmd_identifier_token23] = ACTIONS(1066), + [aux_sym_cmd_identifier_token24] = ACTIONS(1066), + [aux_sym_cmd_identifier_token25] = ACTIONS(1066), + [aux_sym_cmd_identifier_token26] = ACTIONS(1066), + [aux_sym_cmd_identifier_token27] = ACTIONS(1066), + [aux_sym_cmd_identifier_token28] = ACTIONS(1066), + [aux_sym_cmd_identifier_token29] = ACTIONS(1066), + [aux_sym_cmd_identifier_token30] = ACTIONS(1066), + [aux_sym_cmd_identifier_token31] = ACTIONS(1066), + [aux_sym_cmd_identifier_token32] = ACTIONS(1066), + [aux_sym_cmd_identifier_token33] = ACTIONS(1066), + [aux_sym_cmd_identifier_token34] = ACTIONS(1066), + [aux_sym_cmd_identifier_token35] = ACTIONS(1066), + [aux_sym_cmd_identifier_token36] = ACTIONS(1066), + [anon_sym_true] = ACTIONS(1066), + [anon_sym_false] = ACTIONS(1066), + [anon_sym_null] = ACTIONS(1066), + [aux_sym_cmd_identifier_token38] = ACTIONS(1066), + [aux_sym_cmd_identifier_token39] = ACTIONS(1066), + [aux_sym_cmd_identifier_token40] = ACTIONS(1066), + [anon_sym_def] = ACTIONS(1066), + [anon_sym_export_DASHenv] = ACTIONS(1066), + [anon_sym_extern] = ACTIONS(1066), + [anon_sym_module] = ACTIONS(1066), + [anon_sym_use] = ACTIONS(1066), + [anon_sym_LPAREN] = ACTIONS(1066), + [anon_sym_DOLLAR] = ACTIONS(1066), + [anon_sym_error] = ACTIONS(1066), + [anon_sym_list] = ACTIONS(1066), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_break] = ACTIONS(1066), + [anon_sym_continue] = ACTIONS(1066), + [anon_sym_for] = ACTIONS(1066), + [anon_sym_in] = ACTIONS(1066), + [anon_sym_loop] = ACTIONS(1066), + [anon_sym_make] = ACTIONS(1066), + [anon_sym_while] = ACTIONS(1066), + [anon_sym_do] = ACTIONS(1066), + [anon_sym_if] = ACTIONS(1066), + [anon_sym_else] = ACTIONS(1066), + [anon_sym_match] = ACTIONS(1066), + [anon_sym_RBRACE] = ACTIONS(1066), + [anon_sym_try] = ACTIONS(1066), + [anon_sym_catch] = ACTIONS(1066), + [anon_sym_return] = ACTIONS(1066), + [anon_sym_source] = ACTIONS(1066), + [anon_sym_source_DASHenv] = ACTIONS(1066), + [anon_sym_register] = ACTIONS(1066), + [anon_sym_hide] = ACTIONS(1066), + [anon_sym_hide_DASHenv] = ACTIONS(1066), + [anon_sym_overlay] = ACTIONS(1066), + [anon_sym_new] = ACTIONS(1066), + [anon_sym_as] = ACTIONS(1066), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(1066), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1066), + [aux_sym__val_number_decimal_token1] = ACTIONS(1066), + [aux_sym__val_number_decimal_token2] = ACTIONS(1066), + [aux_sym__val_number_decimal_token3] = ACTIONS(1066), + [aux_sym__val_number_decimal_token4] = ACTIONS(1066), + [aux_sym__val_number_token1] = ACTIONS(1066), + [aux_sym__val_number_token2] = ACTIONS(1066), + [aux_sym__val_number_token3] = ACTIONS(1066), + [anon_sym_DQUOTE] = ACTIONS(1066), + [sym__str_single_quotes] = ACTIONS(1066), + [sym__str_back_ticks] = ACTIONS(1066), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1066), + [sym__entry_separator] = ACTIONS(1068), + [anon_sym_PLUS] = ACTIONS(1066), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1068), + }, + [539] = { + [sym_comment] = STATE(539), + [aux_sym__multiple_types_repeat1] = STATE(516), + [anon_sym_export] = ACTIONS(2341), + [anon_sym_alias] = ACTIONS(2341), + [anon_sym_let] = ACTIONS(2341), + [anon_sym_let_DASHenv] = ACTIONS(2341), + [anon_sym_mut] = ACTIONS(2341), + [anon_sym_const] = ACTIONS(2341), + [aux_sym_cmd_identifier_token1] = ACTIONS(2341), + [aux_sym_cmd_identifier_token2] = ACTIONS(2341), + [aux_sym_cmd_identifier_token3] = ACTIONS(2341), + [aux_sym_cmd_identifier_token4] = ACTIONS(2341), + [aux_sym_cmd_identifier_token5] = ACTIONS(2341), + [aux_sym_cmd_identifier_token6] = ACTIONS(2341), + [aux_sym_cmd_identifier_token7] = ACTIONS(2341), + [aux_sym_cmd_identifier_token8] = ACTIONS(2341), + [aux_sym_cmd_identifier_token9] = ACTIONS(2341), + [aux_sym_cmd_identifier_token10] = ACTIONS(2341), + [aux_sym_cmd_identifier_token11] = ACTIONS(2341), + [aux_sym_cmd_identifier_token12] = ACTIONS(2341), + [aux_sym_cmd_identifier_token13] = ACTIONS(2341), + [aux_sym_cmd_identifier_token14] = ACTIONS(2341), + [aux_sym_cmd_identifier_token15] = ACTIONS(2341), + [aux_sym_cmd_identifier_token16] = ACTIONS(2341), + [aux_sym_cmd_identifier_token17] = ACTIONS(2341), + [aux_sym_cmd_identifier_token18] = ACTIONS(2341), + [aux_sym_cmd_identifier_token19] = ACTIONS(2341), + [aux_sym_cmd_identifier_token20] = ACTIONS(2341), + [aux_sym_cmd_identifier_token21] = ACTIONS(2341), + [aux_sym_cmd_identifier_token22] = ACTIONS(2341), + [aux_sym_cmd_identifier_token23] = ACTIONS(2341), + [aux_sym_cmd_identifier_token24] = ACTIONS(2341), + [aux_sym_cmd_identifier_token25] = ACTIONS(2341), + [aux_sym_cmd_identifier_token26] = ACTIONS(2341), + [aux_sym_cmd_identifier_token27] = ACTIONS(2341), + [aux_sym_cmd_identifier_token28] = ACTIONS(2341), + [aux_sym_cmd_identifier_token29] = ACTIONS(2341), + [aux_sym_cmd_identifier_token30] = ACTIONS(2341), + [aux_sym_cmd_identifier_token31] = ACTIONS(2341), + [aux_sym_cmd_identifier_token32] = ACTIONS(2341), + [aux_sym_cmd_identifier_token33] = ACTIONS(2341), + [aux_sym_cmd_identifier_token34] = ACTIONS(2341), + [aux_sym_cmd_identifier_token35] = ACTIONS(2341), + [aux_sym_cmd_identifier_token36] = ACTIONS(2341), + [anon_sym_true] = ACTIONS(2341), + [anon_sym_false] = ACTIONS(2341), + [anon_sym_null] = ACTIONS(2341), + [aux_sym_cmd_identifier_token38] = ACTIONS(2341), + [aux_sym_cmd_identifier_token39] = ACTIONS(2341), + [aux_sym_cmd_identifier_token40] = ACTIONS(2341), + [anon_sym_def] = ACTIONS(2341), + [anon_sym_export_DASHenv] = ACTIONS(2341), + [anon_sym_extern] = ACTIONS(2341), + [anon_sym_module] = ACTIONS(2341), + [anon_sym_use] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(2341), + [anon_sym_DOLLAR] = ACTIONS(2341), + [anon_sym_error] = ACTIONS(2341), + [anon_sym_list] = ACTIONS(2341), + [anon_sym_DASH] = ACTIONS(2341), + [anon_sym_break] = ACTIONS(2341), + [anon_sym_continue] = ACTIONS(2341), + [anon_sym_for] = ACTIONS(2341), + [anon_sym_in] = ACTIONS(2341), + [anon_sym_loop] = ACTIONS(2341), + [anon_sym_make] = ACTIONS(2341), + [anon_sym_while] = ACTIONS(2341), + [anon_sym_do] = ACTIONS(2341), + [anon_sym_if] = ACTIONS(2341), + [anon_sym_else] = ACTIONS(2341), + [anon_sym_match] = ACTIONS(2341), + [anon_sym_RBRACE] = ACTIONS(2392), + [anon_sym_try] = ACTIONS(2341), + [anon_sym_catch] = ACTIONS(2341), + [anon_sym_return] = ACTIONS(2341), + [anon_sym_source] = ACTIONS(2341), + [anon_sym_source_DASHenv] = ACTIONS(2341), + [anon_sym_register] = ACTIONS(2341), + [anon_sym_hide] = ACTIONS(2341), + [anon_sym_hide_DASHenv] = ACTIONS(2341), + [anon_sym_overlay] = ACTIONS(2341), + [anon_sym_new] = ACTIONS(2341), + [anon_sym_as] = ACTIONS(2341), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2341), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2341), + [aux_sym__val_number_decimal_token1] = ACTIONS(2341), + [aux_sym__val_number_decimal_token2] = ACTIONS(2341), + [aux_sym__val_number_decimal_token3] = ACTIONS(2341), + [aux_sym__val_number_decimal_token4] = ACTIONS(2341), + [aux_sym__val_number_token1] = ACTIONS(2341), + [aux_sym__val_number_token2] = ACTIONS(2341), + [aux_sym__val_number_token3] = ACTIONS(2341), + [anon_sym_DQUOTE] = ACTIONS(2341), + [sym__str_single_quotes] = ACTIONS(2341), + [sym__str_back_ticks] = ACTIONS(2341), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2341), + [sym__entry_separator] = ACTIONS(2345), + [anon_sym_PLUS] = ACTIONS(2341), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2347), + }, + [540] = { + [sym_comment] = STATE(540), + [aux_sym__multiple_types_repeat1] = STATE(516), + [anon_sym_export] = ACTIONS(2341), + [anon_sym_alias] = ACTIONS(2341), + [anon_sym_let] = ACTIONS(2341), + [anon_sym_let_DASHenv] = ACTIONS(2341), + [anon_sym_mut] = ACTIONS(2341), + [anon_sym_const] = ACTIONS(2341), + [aux_sym_cmd_identifier_token1] = ACTIONS(2341), + [aux_sym_cmd_identifier_token2] = ACTIONS(2341), + [aux_sym_cmd_identifier_token3] = ACTIONS(2341), + [aux_sym_cmd_identifier_token4] = ACTIONS(2341), + [aux_sym_cmd_identifier_token5] = ACTIONS(2341), + [aux_sym_cmd_identifier_token6] = ACTIONS(2341), + [aux_sym_cmd_identifier_token7] = ACTIONS(2341), + [aux_sym_cmd_identifier_token8] = ACTIONS(2341), + [aux_sym_cmd_identifier_token9] = ACTIONS(2341), + [aux_sym_cmd_identifier_token10] = ACTIONS(2341), + [aux_sym_cmd_identifier_token11] = ACTIONS(2341), + [aux_sym_cmd_identifier_token12] = ACTIONS(2341), + [aux_sym_cmd_identifier_token13] = ACTIONS(2341), + [aux_sym_cmd_identifier_token14] = ACTIONS(2341), + [aux_sym_cmd_identifier_token15] = ACTIONS(2341), + [aux_sym_cmd_identifier_token16] = ACTIONS(2341), + [aux_sym_cmd_identifier_token17] = ACTIONS(2341), + [aux_sym_cmd_identifier_token18] = ACTIONS(2341), + [aux_sym_cmd_identifier_token19] = ACTIONS(2341), + [aux_sym_cmd_identifier_token20] = ACTIONS(2341), + [aux_sym_cmd_identifier_token21] = ACTIONS(2341), + [aux_sym_cmd_identifier_token22] = ACTIONS(2341), + [aux_sym_cmd_identifier_token23] = ACTIONS(2341), + [aux_sym_cmd_identifier_token24] = ACTIONS(2341), + [aux_sym_cmd_identifier_token25] = ACTIONS(2341), + [aux_sym_cmd_identifier_token26] = ACTIONS(2341), + [aux_sym_cmd_identifier_token27] = ACTIONS(2341), + [aux_sym_cmd_identifier_token28] = ACTIONS(2341), + [aux_sym_cmd_identifier_token29] = ACTIONS(2341), + [aux_sym_cmd_identifier_token30] = ACTIONS(2341), + [aux_sym_cmd_identifier_token31] = ACTIONS(2341), + [aux_sym_cmd_identifier_token32] = ACTIONS(2341), + [aux_sym_cmd_identifier_token33] = ACTIONS(2341), + [aux_sym_cmd_identifier_token34] = ACTIONS(2341), + [aux_sym_cmd_identifier_token35] = ACTIONS(2341), + [aux_sym_cmd_identifier_token36] = ACTIONS(2341), + [anon_sym_true] = ACTIONS(2341), + [anon_sym_false] = ACTIONS(2341), + [anon_sym_null] = ACTIONS(2341), + [aux_sym_cmd_identifier_token38] = ACTIONS(2341), + [aux_sym_cmd_identifier_token39] = ACTIONS(2341), + [aux_sym_cmd_identifier_token40] = ACTIONS(2341), + [anon_sym_def] = ACTIONS(2341), + [anon_sym_export_DASHenv] = ACTIONS(2341), + [anon_sym_extern] = ACTIONS(2341), + [anon_sym_module] = ACTIONS(2341), + [anon_sym_use] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(2341), + [anon_sym_DOLLAR] = ACTIONS(2341), + [anon_sym_error] = ACTIONS(2341), + [anon_sym_list] = ACTIONS(2341), + [anon_sym_DASH] = ACTIONS(2341), + [anon_sym_break] = ACTIONS(2341), + [anon_sym_continue] = ACTIONS(2341), + [anon_sym_for] = ACTIONS(2341), + [anon_sym_in] = ACTIONS(2341), + [anon_sym_loop] = ACTIONS(2341), + [anon_sym_make] = ACTIONS(2341), + [anon_sym_while] = ACTIONS(2341), + [anon_sym_do] = ACTIONS(2341), + [anon_sym_if] = ACTIONS(2341), + [anon_sym_else] = ACTIONS(2341), + [anon_sym_match] = ACTIONS(2341), + [anon_sym_RBRACE] = ACTIONS(2394), + [anon_sym_try] = ACTIONS(2341), + [anon_sym_catch] = ACTIONS(2341), + [anon_sym_return] = ACTIONS(2341), + [anon_sym_source] = ACTIONS(2341), + [anon_sym_source_DASHenv] = ACTIONS(2341), + [anon_sym_register] = ACTIONS(2341), + [anon_sym_hide] = ACTIONS(2341), + [anon_sym_hide_DASHenv] = ACTIONS(2341), + [anon_sym_overlay] = ACTIONS(2341), + [anon_sym_new] = ACTIONS(2341), + [anon_sym_as] = ACTIONS(2341), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2341), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2341), + [aux_sym__val_number_decimal_token1] = ACTIONS(2341), + [aux_sym__val_number_decimal_token2] = ACTIONS(2341), + [aux_sym__val_number_decimal_token3] = ACTIONS(2341), + [aux_sym__val_number_decimal_token4] = ACTIONS(2341), + [aux_sym__val_number_token1] = ACTIONS(2341), + [aux_sym__val_number_token2] = ACTIONS(2341), + [aux_sym__val_number_token3] = ACTIONS(2341), + [anon_sym_DQUOTE] = ACTIONS(2341), + [sym__str_single_quotes] = ACTIONS(2341), + [sym__str_back_ticks] = ACTIONS(2341), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2341), + [sym__entry_separator] = ACTIONS(2345), + [anon_sym_PLUS] = ACTIONS(2341), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2347), + }, + [541] = { + [sym_comment] = STATE(541), + [anon_sym_export] = ACTIONS(1842), + [anon_sym_alias] = ACTIONS(1842), + [anon_sym_let] = ACTIONS(1842), + [anon_sym_let_DASHenv] = ACTIONS(1842), + [anon_sym_mut] = ACTIONS(1842), + [anon_sym_const] = ACTIONS(1842), + [aux_sym_cmd_identifier_token1] = ACTIONS(1842), + [aux_sym_cmd_identifier_token2] = ACTIONS(1842), + [aux_sym_cmd_identifier_token3] = ACTIONS(1842), + [aux_sym_cmd_identifier_token4] = ACTIONS(1842), + [aux_sym_cmd_identifier_token5] = ACTIONS(1842), + [aux_sym_cmd_identifier_token6] = ACTIONS(1842), + [aux_sym_cmd_identifier_token7] = ACTIONS(1842), + [aux_sym_cmd_identifier_token8] = ACTIONS(1842), + [aux_sym_cmd_identifier_token9] = ACTIONS(1842), + [aux_sym_cmd_identifier_token10] = ACTIONS(1842), + [aux_sym_cmd_identifier_token11] = ACTIONS(1842), + [aux_sym_cmd_identifier_token12] = ACTIONS(1842), + [aux_sym_cmd_identifier_token13] = ACTIONS(1842), + [aux_sym_cmd_identifier_token14] = ACTIONS(1842), + [aux_sym_cmd_identifier_token15] = ACTIONS(1842), + [aux_sym_cmd_identifier_token16] = ACTIONS(1842), + [aux_sym_cmd_identifier_token17] = ACTIONS(1842), + [aux_sym_cmd_identifier_token18] = ACTIONS(1842), + [aux_sym_cmd_identifier_token19] = ACTIONS(1842), + [aux_sym_cmd_identifier_token20] = ACTIONS(1842), + [aux_sym_cmd_identifier_token21] = ACTIONS(1842), + [aux_sym_cmd_identifier_token22] = ACTIONS(1842), + [aux_sym_cmd_identifier_token23] = ACTIONS(1842), + [aux_sym_cmd_identifier_token24] = ACTIONS(1842), + [aux_sym_cmd_identifier_token25] = ACTIONS(1842), + [aux_sym_cmd_identifier_token26] = ACTIONS(1842), + [aux_sym_cmd_identifier_token27] = ACTIONS(1842), + [aux_sym_cmd_identifier_token28] = ACTIONS(1842), + [aux_sym_cmd_identifier_token29] = ACTIONS(1842), + [aux_sym_cmd_identifier_token30] = ACTIONS(1842), + [aux_sym_cmd_identifier_token31] = ACTIONS(1842), + [aux_sym_cmd_identifier_token32] = ACTIONS(1842), + [aux_sym_cmd_identifier_token33] = ACTIONS(1842), + [aux_sym_cmd_identifier_token34] = ACTIONS(1842), + [aux_sym_cmd_identifier_token35] = ACTIONS(1842), + [aux_sym_cmd_identifier_token36] = ACTIONS(1842), + [anon_sym_true] = ACTIONS(1850), + [anon_sym_false] = ACTIONS(1850), + [anon_sym_null] = ACTIONS(1850), + [aux_sym_cmd_identifier_token38] = ACTIONS(1842), + [aux_sym_cmd_identifier_token39] = ACTIONS(1850), + [aux_sym_cmd_identifier_token40] = ACTIONS(1850), + [anon_sym_def] = ACTIONS(1842), + [anon_sym_export_DASHenv] = ACTIONS(1842), + [anon_sym_extern] = ACTIONS(1842), + [anon_sym_module] = ACTIONS(1842), + [anon_sym_use] = ACTIONS(1842), + [anon_sym_LPAREN] = ACTIONS(1842), + [anon_sym_DOLLAR] = ACTIONS(1850), + [anon_sym_error] = ACTIONS(1842), + [anon_sym_list] = ACTIONS(1842), + [anon_sym_DASH] = ACTIONS(1842), + [anon_sym_break] = ACTIONS(1842), + [anon_sym_continue] = ACTIONS(1842), + [anon_sym_for] = ACTIONS(1842), + [anon_sym_in] = ACTIONS(1842), + [anon_sym_loop] = ACTIONS(1842), + [anon_sym_make] = ACTIONS(1842), + [anon_sym_while] = ACTIONS(1842), + [anon_sym_do] = ACTIONS(1842), + [anon_sym_if] = ACTIONS(1842), + [anon_sym_else] = ACTIONS(1842), + [anon_sym_match] = ACTIONS(1842), + [anon_sym_RBRACE] = ACTIONS(1850), + [anon_sym_try] = ACTIONS(1842), + [anon_sym_catch] = ACTIONS(1842), + [anon_sym_return] = ACTIONS(1842), + [anon_sym_source] = ACTIONS(1842), + [anon_sym_source_DASHenv] = ACTIONS(1842), + [anon_sym_register] = ACTIONS(1842), + [anon_sym_hide] = ACTIONS(1842), + [anon_sym_hide_DASHenv] = ACTIONS(1842), + [anon_sym_overlay] = ACTIONS(1842), + [anon_sym_new] = ACTIONS(1842), + [anon_sym_as] = ACTIONS(1842), + [anon_sym_LPAREN2] = ACTIONS(1844), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1850), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1850), + [aux_sym__val_number_decimal_token1] = ACTIONS(1842), + [aux_sym__val_number_decimal_token2] = ACTIONS(1850), + [aux_sym__val_number_decimal_token3] = ACTIONS(1850), + [aux_sym__val_number_decimal_token4] = ACTIONS(1850), + [aux_sym__val_number_token1] = ACTIONS(1850), + [aux_sym__val_number_token2] = ACTIONS(1850), + [aux_sym__val_number_token3] = ACTIONS(1850), + [anon_sym_DQUOTE] = ACTIONS(1850), + [sym__str_single_quotes] = ACTIONS(1850), + [sym__str_back_ticks] = ACTIONS(1850), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1850), + [anon_sym_PLUS] = ACTIONS(1842), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1852), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1850), + }, + [542] = { + [sym_comment] = STATE(542), + [anon_sym_export] = ACTIONS(2335), + [anon_sym_alias] = ACTIONS(2335), + [anon_sym_let] = ACTIONS(2335), + [anon_sym_let_DASHenv] = ACTIONS(2335), + [anon_sym_mut] = ACTIONS(2335), + [anon_sym_const] = ACTIONS(2335), + [aux_sym_cmd_identifier_token1] = ACTIONS(2335), + [aux_sym_cmd_identifier_token2] = ACTIONS(2335), + [aux_sym_cmd_identifier_token3] = ACTIONS(2335), + [aux_sym_cmd_identifier_token4] = ACTIONS(2335), + [aux_sym_cmd_identifier_token5] = ACTIONS(2335), + [aux_sym_cmd_identifier_token6] = ACTIONS(2335), + [aux_sym_cmd_identifier_token7] = ACTIONS(2335), + [aux_sym_cmd_identifier_token8] = ACTIONS(2335), + [aux_sym_cmd_identifier_token9] = ACTIONS(2335), + [aux_sym_cmd_identifier_token10] = ACTIONS(2335), + [aux_sym_cmd_identifier_token11] = ACTIONS(2335), + [aux_sym_cmd_identifier_token12] = ACTIONS(2335), + [aux_sym_cmd_identifier_token13] = ACTIONS(2335), + [aux_sym_cmd_identifier_token14] = ACTIONS(2335), + [aux_sym_cmd_identifier_token15] = ACTIONS(2335), + [aux_sym_cmd_identifier_token16] = ACTIONS(2335), + [aux_sym_cmd_identifier_token17] = ACTIONS(2335), + [aux_sym_cmd_identifier_token18] = ACTIONS(2335), + [aux_sym_cmd_identifier_token19] = ACTIONS(2335), + [aux_sym_cmd_identifier_token20] = ACTIONS(2335), + [aux_sym_cmd_identifier_token21] = ACTIONS(2335), + [aux_sym_cmd_identifier_token22] = ACTIONS(2335), + [aux_sym_cmd_identifier_token23] = ACTIONS(2335), + [aux_sym_cmd_identifier_token24] = ACTIONS(2335), + [aux_sym_cmd_identifier_token25] = ACTIONS(2335), + [aux_sym_cmd_identifier_token26] = ACTIONS(2335), + [aux_sym_cmd_identifier_token27] = ACTIONS(2335), + [aux_sym_cmd_identifier_token28] = ACTIONS(2335), + [aux_sym_cmd_identifier_token29] = ACTIONS(2335), + [aux_sym_cmd_identifier_token30] = ACTIONS(2335), + [aux_sym_cmd_identifier_token31] = ACTIONS(2335), + [aux_sym_cmd_identifier_token32] = ACTIONS(2335), + [aux_sym_cmd_identifier_token33] = ACTIONS(2335), + [aux_sym_cmd_identifier_token34] = ACTIONS(2335), + [aux_sym_cmd_identifier_token35] = ACTIONS(2335), + [aux_sym_cmd_identifier_token36] = ACTIONS(2335), + [anon_sym_true] = ACTIONS(2339), + [anon_sym_false] = ACTIONS(2339), + [anon_sym_null] = ACTIONS(2339), + [aux_sym_cmd_identifier_token38] = ACTIONS(2335), + [aux_sym_cmd_identifier_token39] = ACTIONS(2339), + [aux_sym_cmd_identifier_token40] = ACTIONS(2339), + [anon_sym_def] = ACTIONS(2335), + [anon_sym_export_DASHenv] = ACTIONS(2335), + [anon_sym_extern] = ACTIONS(2335), + [anon_sym_module] = ACTIONS(2335), + [anon_sym_use] = ACTIONS(2335), + [anon_sym_LPAREN] = ACTIONS(2335), + [anon_sym_DOLLAR] = ACTIONS(2339), + [anon_sym_error] = ACTIONS(2335), + [anon_sym_list] = ACTIONS(2335), + [anon_sym_DASH] = ACTIONS(2335), + [anon_sym_break] = ACTIONS(2335), + [anon_sym_continue] = ACTIONS(2335), + [anon_sym_for] = ACTIONS(2335), + [anon_sym_in] = ACTIONS(2335), + [anon_sym_loop] = ACTIONS(2335), + [anon_sym_make] = ACTIONS(2335), + [anon_sym_while] = ACTIONS(2335), + [anon_sym_do] = ACTIONS(2335), + [anon_sym_if] = ACTIONS(2335), + [anon_sym_else] = ACTIONS(2335), + [anon_sym_match] = ACTIONS(2335), + [anon_sym_RBRACE] = ACTIONS(2339), + [anon_sym_try] = ACTIONS(2335), + [anon_sym_catch] = ACTIONS(2335), + [anon_sym_return] = ACTIONS(2335), + [anon_sym_source] = ACTIONS(2335), + [anon_sym_source_DASHenv] = ACTIONS(2335), + [anon_sym_register] = ACTIONS(2335), + [anon_sym_hide] = ACTIONS(2335), + [anon_sym_hide_DASHenv] = ACTIONS(2335), + [anon_sym_overlay] = ACTIONS(2335), + [anon_sym_new] = ACTIONS(2335), + [anon_sym_as] = ACTIONS(2335), + [anon_sym_LPAREN2] = ACTIONS(2337), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2339), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2339), + [aux_sym__val_number_decimal_token1] = ACTIONS(2335), + [aux_sym__val_number_decimal_token2] = ACTIONS(2339), + [aux_sym__val_number_decimal_token3] = ACTIONS(2339), + [aux_sym__val_number_decimal_token4] = ACTIONS(2339), + [aux_sym__val_number_token1] = ACTIONS(2339), + [aux_sym__val_number_token2] = ACTIONS(2339), + [aux_sym__val_number_token3] = ACTIONS(2339), + [anon_sym_DQUOTE] = ACTIONS(2339), + [sym__str_single_quotes] = ACTIONS(2339), + [sym__str_back_ticks] = ACTIONS(2339), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2339), + [anon_sym_PLUS] = ACTIONS(2335), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1558), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2339), + }, + [543] = { + [sym_comment] = STATE(543), + [anon_sym_export] = ACTIONS(2246), + [anon_sym_alias] = ACTIONS(2246), + [anon_sym_let] = ACTIONS(2246), + [anon_sym_let_DASHenv] = ACTIONS(2246), + [anon_sym_mut] = ACTIONS(2246), + [anon_sym_const] = ACTIONS(2246), + [aux_sym_cmd_identifier_token1] = ACTIONS(2246), + [aux_sym_cmd_identifier_token2] = ACTIONS(2246), + [aux_sym_cmd_identifier_token3] = ACTIONS(2246), + [aux_sym_cmd_identifier_token4] = ACTIONS(2246), + [aux_sym_cmd_identifier_token5] = ACTIONS(2246), + [aux_sym_cmd_identifier_token6] = ACTIONS(2246), + [aux_sym_cmd_identifier_token7] = ACTIONS(2246), + [aux_sym_cmd_identifier_token8] = ACTIONS(2246), + [aux_sym_cmd_identifier_token9] = ACTIONS(2246), + [aux_sym_cmd_identifier_token10] = ACTIONS(2246), + [aux_sym_cmd_identifier_token11] = ACTIONS(2246), + [aux_sym_cmd_identifier_token12] = ACTIONS(2246), + [aux_sym_cmd_identifier_token13] = ACTIONS(2246), + [aux_sym_cmd_identifier_token14] = ACTIONS(2246), + [aux_sym_cmd_identifier_token15] = ACTIONS(2246), + [aux_sym_cmd_identifier_token16] = ACTIONS(2246), + [aux_sym_cmd_identifier_token17] = ACTIONS(2246), + [aux_sym_cmd_identifier_token18] = ACTIONS(2246), + [aux_sym_cmd_identifier_token19] = ACTIONS(2246), + [aux_sym_cmd_identifier_token20] = ACTIONS(2246), + [aux_sym_cmd_identifier_token21] = ACTIONS(2246), + [aux_sym_cmd_identifier_token22] = ACTIONS(2246), + [aux_sym_cmd_identifier_token23] = ACTIONS(2246), + [aux_sym_cmd_identifier_token24] = ACTIONS(2246), + [aux_sym_cmd_identifier_token25] = ACTIONS(2246), + [aux_sym_cmd_identifier_token26] = ACTIONS(2246), + [aux_sym_cmd_identifier_token27] = ACTIONS(2246), + [aux_sym_cmd_identifier_token28] = ACTIONS(2246), + [aux_sym_cmd_identifier_token29] = ACTIONS(2246), + [aux_sym_cmd_identifier_token30] = ACTIONS(2246), + [aux_sym_cmd_identifier_token31] = ACTIONS(2246), + [aux_sym_cmd_identifier_token32] = ACTIONS(2246), + [aux_sym_cmd_identifier_token33] = ACTIONS(2246), + [aux_sym_cmd_identifier_token34] = ACTIONS(2246), + [aux_sym_cmd_identifier_token35] = ACTIONS(2246), + [aux_sym_cmd_identifier_token36] = ACTIONS(2246), + [anon_sym_true] = ACTIONS(2250), + [anon_sym_false] = ACTIONS(2250), + [anon_sym_null] = ACTIONS(2250), + [aux_sym_cmd_identifier_token38] = ACTIONS(2246), + [aux_sym_cmd_identifier_token39] = ACTIONS(2250), + [aux_sym_cmd_identifier_token40] = ACTIONS(2250), + [anon_sym_def] = ACTIONS(2246), + [anon_sym_export_DASHenv] = ACTIONS(2246), + [anon_sym_extern] = ACTIONS(2246), + [anon_sym_module] = ACTIONS(2246), + [anon_sym_use] = ACTIONS(2246), + [anon_sym_LPAREN] = ACTIONS(2246), + [anon_sym_DOLLAR] = ACTIONS(2250), + [anon_sym_error] = ACTIONS(2246), + [anon_sym_list] = ACTIONS(2246), + [anon_sym_DASH] = ACTIONS(2246), + [anon_sym_break] = ACTIONS(2246), + [anon_sym_continue] = ACTIONS(2246), + [anon_sym_for] = ACTIONS(2246), + [anon_sym_in] = ACTIONS(2246), + [anon_sym_loop] = ACTIONS(2246), + [anon_sym_make] = ACTIONS(2246), + [anon_sym_while] = ACTIONS(2246), + [anon_sym_do] = ACTIONS(2246), + [anon_sym_if] = ACTIONS(2246), + [anon_sym_else] = ACTIONS(2246), + [anon_sym_match] = ACTIONS(2246), + [anon_sym_RBRACE] = ACTIONS(2250), + [anon_sym_try] = ACTIONS(2246), + [anon_sym_catch] = ACTIONS(2246), + [anon_sym_return] = ACTIONS(2246), + [anon_sym_source] = ACTIONS(2246), + [anon_sym_source_DASHenv] = ACTIONS(2246), + [anon_sym_register] = ACTIONS(2246), + [anon_sym_hide] = ACTIONS(2246), + [anon_sym_hide_DASHenv] = ACTIONS(2246), + [anon_sym_overlay] = ACTIONS(2246), + [anon_sym_new] = ACTIONS(2246), + [anon_sym_as] = ACTIONS(2246), + [anon_sym_LPAREN2] = ACTIONS(2248), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2250), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2250), + [aux_sym__val_number_decimal_token1] = ACTIONS(2246), + [aux_sym__val_number_decimal_token2] = ACTIONS(2250), + [aux_sym__val_number_decimal_token3] = ACTIONS(2250), + [aux_sym__val_number_decimal_token4] = ACTIONS(2250), + [aux_sym__val_number_token1] = ACTIONS(2250), + [aux_sym__val_number_token2] = ACTIONS(2250), + [aux_sym__val_number_token3] = ACTIONS(2250), + [anon_sym_DQUOTE] = ACTIONS(2250), + [sym__str_single_quotes] = ACTIONS(2250), + [sym__str_back_ticks] = ACTIONS(2250), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2250), + [anon_sym_PLUS] = ACTIONS(2246), + [aux_sym__unquoted_in_record_token2] = ACTIONS(2252), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2250), + }, + [544] = { + [sym_comment] = STATE(544), + [anon_sym_export] = ACTIONS(1082), + [anon_sym_alias] = ACTIONS(1082), + [anon_sym_let] = ACTIONS(1082), + [anon_sym_let_DASHenv] = ACTIONS(1082), + [anon_sym_mut] = ACTIONS(1082), + [anon_sym_const] = ACTIONS(1082), + [aux_sym_cmd_identifier_token1] = ACTIONS(1082), + [aux_sym_cmd_identifier_token2] = ACTIONS(1082), + [aux_sym_cmd_identifier_token3] = ACTIONS(1082), + [aux_sym_cmd_identifier_token4] = ACTIONS(1082), + [aux_sym_cmd_identifier_token5] = ACTIONS(1082), + [aux_sym_cmd_identifier_token6] = ACTIONS(1082), + [aux_sym_cmd_identifier_token7] = ACTIONS(1082), + [aux_sym_cmd_identifier_token8] = ACTIONS(1082), + [aux_sym_cmd_identifier_token9] = ACTIONS(1082), + [aux_sym_cmd_identifier_token10] = ACTIONS(1082), + [aux_sym_cmd_identifier_token11] = ACTIONS(1082), + [aux_sym_cmd_identifier_token12] = ACTIONS(1082), + [aux_sym_cmd_identifier_token13] = ACTIONS(1082), + [aux_sym_cmd_identifier_token14] = ACTIONS(1082), + [aux_sym_cmd_identifier_token15] = ACTIONS(1082), + [aux_sym_cmd_identifier_token16] = ACTIONS(1082), + [aux_sym_cmd_identifier_token17] = ACTIONS(1082), + [aux_sym_cmd_identifier_token18] = ACTIONS(1082), + [aux_sym_cmd_identifier_token19] = ACTIONS(1082), + [aux_sym_cmd_identifier_token20] = ACTIONS(1082), + [aux_sym_cmd_identifier_token21] = ACTIONS(1082), + [aux_sym_cmd_identifier_token22] = ACTIONS(1082), + [aux_sym_cmd_identifier_token23] = ACTIONS(1082), + [aux_sym_cmd_identifier_token24] = ACTIONS(1082), + [aux_sym_cmd_identifier_token25] = ACTIONS(1082), + [aux_sym_cmd_identifier_token26] = ACTIONS(1082), + [aux_sym_cmd_identifier_token27] = ACTIONS(1082), + [aux_sym_cmd_identifier_token28] = ACTIONS(1082), + [aux_sym_cmd_identifier_token29] = ACTIONS(1082), + [aux_sym_cmd_identifier_token30] = ACTIONS(1082), + [aux_sym_cmd_identifier_token31] = ACTIONS(1082), + [aux_sym_cmd_identifier_token32] = ACTIONS(1082), + [aux_sym_cmd_identifier_token33] = ACTIONS(1082), + [aux_sym_cmd_identifier_token34] = ACTIONS(1082), + [aux_sym_cmd_identifier_token35] = ACTIONS(1082), + [aux_sym_cmd_identifier_token36] = ACTIONS(1082), + [anon_sym_true] = ACTIONS(1088), + [anon_sym_false] = ACTIONS(1088), + [anon_sym_null] = ACTIONS(1088), + [aux_sym_cmd_identifier_token38] = ACTIONS(1082), + [aux_sym_cmd_identifier_token39] = ACTIONS(1088), + [aux_sym_cmd_identifier_token40] = ACTIONS(1088), + [anon_sym_def] = ACTIONS(1082), + [anon_sym_export_DASHenv] = ACTIONS(1082), + [anon_sym_extern] = ACTIONS(1082), + [anon_sym_module] = ACTIONS(1082), + [anon_sym_use] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(1088), + [anon_sym_COMMA] = ACTIONS(1094), + [anon_sym_DOLLAR] = ACTIONS(1088), + [anon_sym_error] = ACTIONS(1082), + [anon_sym_list] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1082), + [anon_sym_break] = ACTIONS(1082), + [anon_sym_continue] = ACTIONS(1082), + [anon_sym_for] = ACTIONS(1082), + [anon_sym_in] = ACTIONS(1082), + [anon_sym_loop] = ACTIONS(1082), + [anon_sym_make] = ACTIONS(1082), + [anon_sym_while] = ACTIONS(1082), + [anon_sym_do] = ACTIONS(1082), + [anon_sym_if] = ACTIONS(1082), + [anon_sym_else] = ACTIONS(1082), + [anon_sym_match] = ACTIONS(1082), + [anon_sym_RBRACE] = ACTIONS(1088), + [anon_sym_try] = ACTIONS(1082), + [anon_sym_catch] = ACTIONS(1082), + [anon_sym_return] = ACTIONS(1082), + [anon_sym_source] = ACTIONS(1082), + [anon_sym_source_DASHenv] = ACTIONS(1082), + [anon_sym_register] = ACTIONS(1082), + [anon_sym_hide] = ACTIONS(1082), + [anon_sym_hide_DASHenv] = ACTIONS(1082), + [anon_sym_overlay] = ACTIONS(1082), + [anon_sym_new] = ACTIONS(1082), + [anon_sym_as] = ACTIONS(1082), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1088), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1088), + [aux_sym__val_number_decimal_token1] = ACTIONS(1082), + [aux_sym__val_number_decimal_token2] = ACTIONS(1088), + [aux_sym__val_number_decimal_token3] = ACTIONS(1088), + [aux_sym__val_number_decimal_token4] = ACTIONS(1088), + [aux_sym__val_number_token1] = ACTIONS(1088), + [aux_sym__val_number_token2] = ACTIONS(1088), + [aux_sym__val_number_token3] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(1088), + [sym__str_single_quotes] = ACTIONS(1088), + [sym__str_back_ticks] = ACTIONS(1088), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1088), + [aux_sym_record_entry_token1] = ACTIONS(2396), + [anon_sym_PLUS] = ACTIONS(1082), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1088), + }, + [545] = { + [sym_comment] = STATE(545), + [anon_sym_export] = ACTIONS(1070), + [anon_sym_alias] = ACTIONS(1070), + [anon_sym_let] = ACTIONS(1070), + [anon_sym_let_DASHenv] = ACTIONS(1070), + [anon_sym_mut] = ACTIONS(1070), + [anon_sym_const] = ACTIONS(1070), + [aux_sym_cmd_identifier_token1] = ACTIONS(1070), + [aux_sym_cmd_identifier_token2] = ACTIONS(1070), + [aux_sym_cmd_identifier_token3] = ACTIONS(1070), + [aux_sym_cmd_identifier_token4] = ACTIONS(1070), + [aux_sym_cmd_identifier_token5] = ACTIONS(1070), + [aux_sym_cmd_identifier_token6] = ACTIONS(1070), + [aux_sym_cmd_identifier_token7] = ACTIONS(1070), + [aux_sym_cmd_identifier_token8] = ACTIONS(1070), + [aux_sym_cmd_identifier_token9] = ACTIONS(1070), + [aux_sym_cmd_identifier_token10] = ACTIONS(1070), + [aux_sym_cmd_identifier_token11] = ACTIONS(1070), + [aux_sym_cmd_identifier_token12] = ACTIONS(1070), + [aux_sym_cmd_identifier_token13] = ACTIONS(1070), + [aux_sym_cmd_identifier_token14] = ACTIONS(1070), + [aux_sym_cmd_identifier_token15] = ACTIONS(1070), + [aux_sym_cmd_identifier_token16] = ACTIONS(1070), + [aux_sym_cmd_identifier_token17] = ACTIONS(1070), + [aux_sym_cmd_identifier_token18] = ACTIONS(1070), + [aux_sym_cmd_identifier_token19] = ACTIONS(1070), + [aux_sym_cmd_identifier_token20] = ACTIONS(1070), + [aux_sym_cmd_identifier_token21] = ACTIONS(1070), + [aux_sym_cmd_identifier_token22] = ACTIONS(1070), + [aux_sym_cmd_identifier_token23] = ACTIONS(1070), + [aux_sym_cmd_identifier_token24] = ACTIONS(1070), + [aux_sym_cmd_identifier_token25] = ACTIONS(1070), + [aux_sym_cmd_identifier_token26] = ACTIONS(1070), + [aux_sym_cmd_identifier_token27] = ACTIONS(1070), + [aux_sym_cmd_identifier_token28] = ACTIONS(1070), + [aux_sym_cmd_identifier_token29] = ACTIONS(1070), + [aux_sym_cmd_identifier_token30] = ACTIONS(1070), + [aux_sym_cmd_identifier_token31] = ACTIONS(1070), + [aux_sym_cmd_identifier_token32] = ACTIONS(1070), + [aux_sym_cmd_identifier_token33] = ACTIONS(1070), + [aux_sym_cmd_identifier_token34] = ACTIONS(1070), + [aux_sym_cmd_identifier_token35] = ACTIONS(1070), + [aux_sym_cmd_identifier_token36] = ACTIONS(1070), + [anon_sym_true] = ACTIONS(1070), + [anon_sym_false] = ACTIONS(1070), + [anon_sym_null] = ACTIONS(1070), + [aux_sym_cmd_identifier_token38] = ACTIONS(1070), + [aux_sym_cmd_identifier_token39] = ACTIONS(1070), + [aux_sym_cmd_identifier_token40] = ACTIONS(1070), + [anon_sym_def] = ACTIONS(1070), + [anon_sym_export_DASHenv] = ACTIONS(1070), + [anon_sym_extern] = ACTIONS(1070), + [anon_sym_module] = ACTIONS(1070), + [anon_sym_use] = ACTIONS(1070), + [anon_sym_LPAREN] = ACTIONS(1070), + [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_error] = ACTIONS(1070), + [anon_sym_list] = ACTIONS(1070), + [anon_sym_DASH] = ACTIONS(1070), + [anon_sym_break] = ACTIONS(1070), + [anon_sym_continue] = ACTIONS(1070), + [anon_sym_for] = ACTIONS(1070), + [anon_sym_in] = ACTIONS(1070), + [anon_sym_loop] = ACTIONS(1070), + [anon_sym_make] = ACTIONS(1070), + [anon_sym_while] = ACTIONS(1070), + [anon_sym_do] = ACTIONS(1070), + [anon_sym_if] = ACTIONS(1070), + [anon_sym_else] = ACTIONS(1070), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_RBRACE] = ACTIONS(1070), + [anon_sym_try] = ACTIONS(1070), + [anon_sym_catch] = ACTIONS(1070), + [anon_sym_return] = ACTIONS(1070), + [anon_sym_source] = ACTIONS(1070), + [anon_sym_source_DASHenv] = ACTIONS(1070), + [anon_sym_register] = ACTIONS(1070), + [anon_sym_hide] = ACTIONS(1070), + [anon_sym_hide_DASHenv] = ACTIONS(1070), + [anon_sym_overlay] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1070), + [anon_sym_as] = ACTIONS(1070), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1070), + [anon_sym_DOT] = ACTIONS(1070), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1070), + [aux_sym__val_number_decimal_token1] = ACTIONS(1070), + [aux_sym__val_number_decimal_token2] = ACTIONS(1070), + [aux_sym__val_number_decimal_token3] = ACTIONS(1070), + [aux_sym__val_number_decimal_token4] = ACTIONS(1070), + [aux_sym__val_number_token1] = ACTIONS(1070), + [aux_sym__val_number_token2] = ACTIONS(1070), + [aux_sym__val_number_token3] = ACTIONS(1070), + [anon_sym_DQUOTE] = ACTIONS(1070), + [sym__str_single_quotes] = ACTIONS(1070), + [sym__str_back_ticks] = ACTIONS(1070), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1070), + [sym__entry_separator] = ACTIONS(1072), + [anon_sym_PLUS] = ACTIONS(1070), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1072), + }, + [546] = { + [sym_comment] = STATE(546), + [anon_sym_export] = ACTIONS(1703), + [anon_sym_alias] = ACTIONS(1703), + [anon_sym_let] = ACTIONS(1703), + [anon_sym_let_DASHenv] = ACTIONS(1703), + [anon_sym_mut] = ACTIONS(1703), + [anon_sym_const] = ACTIONS(1703), + [aux_sym_cmd_identifier_token1] = ACTIONS(1703), + [aux_sym_cmd_identifier_token2] = ACTIONS(1703), + [aux_sym_cmd_identifier_token3] = ACTIONS(1703), + [aux_sym_cmd_identifier_token4] = ACTIONS(1703), + [aux_sym_cmd_identifier_token5] = ACTIONS(1703), + [aux_sym_cmd_identifier_token6] = ACTIONS(1703), + [aux_sym_cmd_identifier_token7] = ACTIONS(1703), + [aux_sym_cmd_identifier_token8] = ACTIONS(1703), + [aux_sym_cmd_identifier_token9] = ACTIONS(1703), + [aux_sym_cmd_identifier_token10] = ACTIONS(1703), + [aux_sym_cmd_identifier_token11] = ACTIONS(1703), + [aux_sym_cmd_identifier_token12] = ACTIONS(1703), + [aux_sym_cmd_identifier_token13] = ACTIONS(1703), + [aux_sym_cmd_identifier_token14] = ACTIONS(1703), + [aux_sym_cmd_identifier_token15] = ACTIONS(1703), + [aux_sym_cmd_identifier_token16] = ACTIONS(1703), + [aux_sym_cmd_identifier_token17] = ACTIONS(1703), + [aux_sym_cmd_identifier_token18] = ACTIONS(1703), + [aux_sym_cmd_identifier_token19] = ACTIONS(1703), + [aux_sym_cmd_identifier_token20] = ACTIONS(1703), + [aux_sym_cmd_identifier_token21] = ACTIONS(1703), + [aux_sym_cmd_identifier_token22] = ACTIONS(1703), + [aux_sym_cmd_identifier_token23] = ACTIONS(1703), + [aux_sym_cmd_identifier_token24] = ACTIONS(1703), + [aux_sym_cmd_identifier_token25] = ACTIONS(1703), + [aux_sym_cmd_identifier_token26] = ACTIONS(1703), + [aux_sym_cmd_identifier_token27] = ACTIONS(1703), + [aux_sym_cmd_identifier_token28] = ACTIONS(1703), + [aux_sym_cmd_identifier_token29] = ACTIONS(1703), + [aux_sym_cmd_identifier_token30] = ACTIONS(1703), + [aux_sym_cmd_identifier_token31] = ACTIONS(1703), + [aux_sym_cmd_identifier_token32] = ACTIONS(1703), + [aux_sym_cmd_identifier_token33] = ACTIONS(1703), + [aux_sym_cmd_identifier_token34] = ACTIONS(1703), + [aux_sym_cmd_identifier_token35] = ACTIONS(1703), + [aux_sym_cmd_identifier_token36] = ACTIONS(1703), + [anon_sym_true] = ACTIONS(1705), + [anon_sym_false] = ACTIONS(1705), + [anon_sym_null] = ACTIONS(1705), + [aux_sym_cmd_identifier_token38] = ACTIONS(1703), + [aux_sym_cmd_identifier_token39] = ACTIONS(1705), + [aux_sym_cmd_identifier_token40] = ACTIONS(1705), + [anon_sym_def] = ACTIONS(1703), + [anon_sym_export_DASHenv] = ACTIONS(1703), + [anon_sym_extern] = ACTIONS(1703), + [anon_sym_module] = ACTIONS(1703), + [anon_sym_use] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1705), + [anon_sym_error] = ACTIONS(1703), + [anon_sym_list] = ACTIONS(1703), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_break] = ACTIONS(1703), + [anon_sym_continue] = ACTIONS(1703), + [anon_sym_for] = ACTIONS(1703), + [anon_sym_in] = ACTIONS(1703), + [anon_sym_loop] = ACTIONS(1703), + [anon_sym_make] = ACTIONS(1703), + [anon_sym_while] = ACTIONS(1703), + [anon_sym_do] = ACTIONS(1703), + [anon_sym_if] = ACTIONS(1703), + [anon_sym_else] = ACTIONS(1703), + [anon_sym_match] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1703), + [anon_sym_catch] = ACTIONS(1703), + [anon_sym_return] = ACTIONS(1703), + [anon_sym_source] = ACTIONS(1703), + [anon_sym_source_DASHenv] = ACTIONS(1703), + [anon_sym_register] = ACTIONS(1703), + [anon_sym_hide] = ACTIONS(1703), + [anon_sym_hide_DASHenv] = ACTIONS(1703), + [anon_sym_overlay] = ACTIONS(1703), + [anon_sym_new] = ACTIONS(1703), + [anon_sym_as] = ACTIONS(1703), + [anon_sym_LPAREN2] = ACTIONS(1705), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1705), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1705), + [aux_sym__val_number_decimal_token1] = ACTIONS(1703), + [aux_sym__val_number_decimal_token2] = ACTIONS(1705), + [aux_sym__val_number_decimal_token3] = ACTIONS(1705), + [aux_sym__val_number_decimal_token4] = ACTIONS(1705), + [aux_sym__val_number_token1] = ACTIONS(1705), + [aux_sym__val_number_token2] = ACTIONS(1705), + [aux_sym__val_number_token3] = ACTIONS(1705), + [anon_sym_DQUOTE] = ACTIONS(1705), + [sym__str_single_quotes] = ACTIONS(1705), + [sym__str_back_ticks] = ACTIONS(1705), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1705), + [anon_sym_PLUS] = ACTIONS(1703), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1705), + }, + [547] = { + [sym_comment] = STATE(547), + [anon_sym_export] = ACTIONS(2230), + [anon_sym_alias] = ACTIONS(2230), + [anon_sym_let] = ACTIONS(2230), + [anon_sym_let_DASHenv] = ACTIONS(2230), + [anon_sym_mut] = ACTIONS(2230), + [anon_sym_const] = ACTIONS(2230), + [aux_sym_cmd_identifier_token1] = ACTIONS(2230), + [aux_sym_cmd_identifier_token2] = ACTIONS(2230), + [aux_sym_cmd_identifier_token3] = ACTIONS(2230), + [aux_sym_cmd_identifier_token4] = ACTIONS(2230), + [aux_sym_cmd_identifier_token5] = ACTIONS(2230), + [aux_sym_cmd_identifier_token6] = ACTIONS(2230), + [aux_sym_cmd_identifier_token7] = ACTIONS(2230), + [aux_sym_cmd_identifier_token8] = ACTIONS(2230), + [aux_sym_cmd_identifier_token9] = ACTIONS(2230), + [aux_sym_cmd_identifier_token10] = ACTIONS(2230), + [aux_sym_cmd_identifier_token11] = ACTIONS(2230), + [aux_sym_cmd_identifier_token12] = ACTIONS(2230), + [aux_sym_cmd_identifier_token13] = ACTIONS(2230), + [aux_sym_cmd_identifier_token14] = ACTIONS(2230), + [aux_sym_cmd_identifier_token15] = ACTIONS(2230), + [aux_sym_cmd_identifier_token16] = ACTIONS(2230), + [aux_sym_cmd_identifier_token17] = ACTIONS(2230), + [aux_sym_cmd_identifier_token18] = ACTIONS(2230), + [aux_sym_cmd_identifier_token19] = ACTIONS(2230), + [aux_sym_cmd_identifier_token20] = ACTIONS(2230), + [aux_sym_cmd_identifier_token21] = ACTIONS(2230), + [aux_sym_cmd_identifier_token22] = ACTIONS(2230), + [aux_sym_cmd_identifier_token23] = ACTIONS(2230), + [aux_sym_cmd_identifier_token24] = ACTIONS(2230), + [aux_sym_cmd_identifier_token25] = ACTIONS(2230), + [aux_sym_cmd_identifier_token26] = ACTIONS(2230), + [aux_sym_cmd_identifier_token27] = ACTIONS(2230), + [aux_sym_cmd_identifier_token28] = ACTIONS(2230), + [aux_sym_cmd_identifier_token29] = ACTIONS(2230), + [aux_sym_cmd_identifier_token30] = ACTIONS(2230), + [aux_sym_cmd_identifier_token31] = ACTIONS(2230), + [aux_sym_cmd_identifier_token32] = ACTIONS(2230), + [aux_sym_cmd_identifier_token33] = ACTIONS(2230), + [aux_sym_cmd_identifier_token34] = ACTIONS(2230), + [aux_sym_cmd_identifier_token35] = ACTIONS(2230), + [aux_sym_cmd_identifier_token36] = ACTIONS(2230), + [anon_sym_true] = ACTIONS(2230), + [anon_sym_false] = ACTIONS(2230), + [anon_sym_null] = ACTIONS(2230), + [aux_sym_cmd_identifier_token38] = ACTIONS(2230), + [aux_sym_cmd_identifier_token39] = ACTIONS(2230), + [aux_sym_cmd_identifier_token40] = ACTIONS(2230), + [anon_sym_def] = ACTIONS(2230), + [anon_sym_export_DASHenv] = ACTIONS(2230), + [anon_sym_extern] = ACTIONS(2230), + [anon_sym_module] = ACTIONS(2230), + [anon_sym_use] = ACTIONS(2230), + [anon_sym_LPAREN] = ACTIONS(2230), + [anon_sym_DOLLAR] = ACTIONS(2230), + [anon_sym_error] = ACTIONS(2230), + [anon_sym_list] = ACTIONS(2230), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_break] = ACTIONS(2230), + [anon_sym_continue] = ACTIONS(2230), + [anon_sym_for] = ACTIONS(2230), + [anon_sym_in] = ACTIONS(2230), + [anon_sym_loop] = ACTIONS(2230), + [anon_sym_make] = ACTIONS(2230), + [anon_sym_while] = ACTIONS(2230), + [anon_sym_do] = ACTIONS(2230), + [anon_sym_if] = ACTIONS(2230), + [anon_sym_else] = ACTIONS(2230), + [anon_sym_match] = ACTIONS(2230), + [anon_sym_RBRACE] = ACTIONS(2230), + [anon_sym_try] = ACTIONS(2230), + [anon_sym_catch] = ACTIONS(2230), + [anon_sym_return] = ACTIONS(2230), + [anon_sym_source] = ACTIONS(2230), + [anon_sym_source_DASHenv] = ACTIONS(2230), + [anon_sym_register] = ACTIONS(2230), + [anon_sym_hide] = ACTIONS(2230), + [anon_sym_hide_DASHenv] = ACTIONS(2230), + [anon_sym_overlay] = ACTIONS(2230), + [anon_sym_new] = ACTIONS(2230), + [anon_sym_as] = ACTIONS(2230), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2230), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2230), + [aux_sym__val_number_decimal_token1] = ACTIONS(2230), + [aux_sym__val_number_decimal_token2] = ACTIONS(2230), + [aux_sym__val_number_decimal_token3] = ACTIONS(2230), + [aux_sym__val_number_decimal_token4] = ACTIONS(2230), + [aux_sym__val_number_token1] = ACTIONS(2230), + [aux_sym__val_number_token2] = ACTIONS(2230), + [aux_sym__val_number_token3] = ACTIONS(2230), + [anon_sym_DQUOTE] = ACTIONS(2230), + [sym__str_single_quotes] = ACTIONS(2230), + [sym__str_back_ticks] = ACTIONS(2230), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2230), + [sym__entry_separator] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2232), + }, + [548] = { + [sym_comment] = STATE(548), + [anon_sym_export] = ACTIONS(1038), + [anon_sym_alias] = ACTIONS(1038), + [anon_sym_let] = ACTIONS(1038), + [anon_sym_let_DASHenv] = ACTIONS(1038), + [anon_sym_mut] = ACTIONS(1038), + [anon_sym_const] = ACTIONS(1038), + [aux_sym_cmd_identifier_token1] = ACTIONS(1038), + [aux_sym_cmd_identifier_token2] = ACTIONS(1038), + [aux_sym_cmd_identifier_token3] = ACTIONS(1038), + [aux_sym_cmd_identifier_token4] = ACTIONS(1038), + [aux_sym_cmd_identifier_token5] = ACTIONS(1038), + [aux_sym_cmd_identifier_token6] = ACTIONS(1038), + [aux_sym_cmd_identifier_token7] = ACTIONS(1038), + [aux_sym_cmd_identifier_token8] = ACTIONS(1038), + [aux_sym_cmd_identifier_token9] = ACTIONS(1038), + [aux_sym_cmd_identifier_token10] = ACTIONS(1038), + [aux_sym_cmd_identifier_token11] = ACTIONS(1038), + [aux_sym_cmd_identifier_token12] = ACTIONS(1038), + [aux_sym_cmd_identifier_token13] = ACTIONS(1038), + [aux_sym_cmd_identifier_token14] = ACTIONS(1038), + [aux_sym_cmd_identifier_token15] = ACTIONS(1038), + [aux_sym_cmd_identifier_token16] = ACTIONS(1038), + [aux_sym_cmd_identifier_token17] = ACTIONS(1038), + [aux_sym_cmd_identifier_token18] = ACTIONS(1038), + [aux_sym_cmd_identifier_token19] = ACTIONS(1038), + [aux_sym_cmd_identifier_token20] = ACTIONS(1038), + [aux_sym_cmd_identifier_token21] = ACTIONS(1038), + [aux_sym_cmd_identifier_token22] = ACTIONS(1038), + [aux_sym_cmd_identifier_token23] = ACTIONS(1038), + [aux_sym_cmd_identifier_token24] = ACTIONS(1038), + [aux_sym_cmd_identifier_token25] = ACTIONS(1038), + [aux_sym_cmd_identifier_token26] = ACTIONS(1038), + [aux_sym_cmd_identifier_token27] = ACTIONS(1038), + [aux_sym_cmd_identifier_token28] = ACTIONS(1038), + [aux_sym_cmd_identifier_token29] = ACTIONS(1038), + [aux_sym_cmd_identifier_token30] = ACTIONS(1038), + [aux_sym_cmd_identifier_token31] = ACTIONS(1038), + [aux_sym_cmd_identifier_token32] = ACTIONS(1038), + [aux_sym_cmd_identifier_token33] = ACTIONS(1038), + [aux_sym_cmd_identifier_token34] = ACTIONS(1038), + [aux_sym_cmd_identifier_token35] = ACTIONS(1038), + [aux_sym_cmd_identifier_token36] = ACTIONS(1038), + [anon_sym_true] = ACTIONS(1038), + [anon_sym_false] = ACTIONS(1038), + [anon_sym_null] = ACTIONS(1038), + [aux_sym_cmd_identifier_token38] = ACTIONS(1038), + [aux_sym_cmd_identifier_token39] = ACTIONS(1038), + [aux_sym_cmd_identifier_token40] = ACTIONS(1038), + [anon_sym_def] = ACTIONS(1038), + [anon_sym_export_DASHenv] = ACTIONS(1038), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_module] = ACTIONS(1038), + [anon_sym_use] = ACTIONS(1038), + [anon_sym_LPAREN] = ACTIONS(1038), + [anon_sym_DOLLAR] = ACTIONS(1038), + [anon_sym_error] = ACTIONS(1038), + [anon_sym_list] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_break] = ACTIONS(1038), + [anon_sym_continue] = ACTIONS(1038), + [anon_sym_for] = ACTIONS(1038), + [anon_sym_in] = ACTIONS(1038), + [anon_sym_loop] = ACTIONS(1038), + [anon_sym_make] = ACTIONS(1038), + [anon_sym_while] = ACTIONS(1038), + [anon_sym_do] = ACTIONS(1038), + [anon_sym_if] = ACTIONS(1038), + [anon_sym_else] = ACTIONS(1038), + [anon_sym_match] = ACTIONS(1038), + [anon_sym_RBRACE] = ACTIONS(1038), + [anon_sym_try] = ACTIONS(1038), + [anon_sym_catch] = ACTIONS(1038), + [anon_sym_return] = ACTIONS(1038), + [anon_sym_source] = ACTIONS(1038), + [anon_sym_source_DASHenv] = ACTIONS(1038), + [anon_sym_register] = ACTIONS(1038), + [anon_sym_hide] = ACTIONS(1038), + [anon_sym_hide_DASHenv] = ACTIONS(1038), + [anon_sym_overlay] = ACTIONS(1038), + [anon_sym_new] = ACTIONS(1038), + [anon_sym_as] = ACTIONS(1038), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1038), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1038), + [aux_sym__val_number_decimal_token1] = ACTIONS(1038), + [aux_sym__val_number_decimal_token2] = ACTIONS(1038), + [aux_sym__val_number_decimal_token3] = ACTIONS(1038), + [aux_sym__val_number_decimal_token4] = ACTIONS(1038), + [aux_sym__val_number_token1] = ACTIONS(1038), + [aux_sym__val_number_token2] = ACTIONS(1038), + [aux_sym__val_number_token3] = ACTIONS(1038), + [anon_sym_DQUOTE] = ACTIONS(1038), + [sym__str_single_quotes] = ACTIONS(1038), + [sym__str_back_ticks] = ACTIONS(1038), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1038), + [sym__entry_separator] = ACTIONS(1040), + [anon_sym_PLUS] = ACTIONS(1038), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1040), + }, + [549] = { + [sym_comment] = STATE(549), + [anon_sym_export] = ACTIONS(2398), + [anon_sym_alias] = ACTIONS(2398), + [anon_sym_let] = ACTIONS(2398), + [anon_sym_let_DASHenv] = ACTIONS(2398), + [anon_sym_mut] = ACTIONS(2398), + [anon_sym_const] = ACTIONS(2398), + [aux_sym_cmd_identifier_token1] = ACTIONS(2398), + [aux_sym_cmd_identifier_token2] = ACTIONS(2398), + [aux_sym_cmd_identifier_token3] = ACTIONS(2398), + [aux_sym_cmd_identifier_token4] = ACTIONS(2398), + [aux_sym_cmd_identifier_token5] = ACTIONS(2398), + [aux_sym_cmd_identifier_token6] = ACTIONS(2398), + [aux_sym_cmd_identifier_token7] = ACTIONS(2398), + [aux_sym_cmd_identifier_token8] = ACTIONS(2398), + [aux_sym_cmd_identifier_token9] = ACTIONS(2398), + [aux_sym_cmd_identifier_token10] = ACTIONS(2398), + [aux_sym_cmd_identifier_token11] = ACTIONS(2398), + [aux_sym_cmd_identifier_token12] = ACTIONS(2398), + [aux_sym_cmd_identifier_token13] = ACTIONS(2398), + [aux_sym_cmd_identifier_token14] = ACTIONS(2398), + [aux_sym_cmd_identifier_token15] = ACTIONS(2398), + [aux_sym_cmd_identifier_token16] = ACTIONS(2398), + [aux_sym_cmd_identifier_token17] = ACTIONS(2398), + [aux_sym_cmd_identifier_token18] = ACTIONS(2398), + [aux_sym_cmd_identifier_token19] = ACTIONS(2398), + [aux_sym_cmd_identifier_token20] = ACTIONS(2398), + [aux_sym_cmd_identifier_token21] = ACTIONS(2398), + [aux_sym_cmd_identifier_token22] = ACTIONS(2398), + [aux_sym_cmd_identifier_token23] = ACTIONS(2398), + [aux_sym_cmd_identifier_token24] = ACTIONS(2398), + [aux_sym_cmd_identifier_token25] = ACTIONS(2398), + [aux_sym_cmd_identifier_token26] = ACTIONS(2398), + [aux_sym_cmd_identifier_token27] = ACTIONS(2398), + [aux_sym_cmd_identifier_token28] = ACTIONS(2398), + [aux_sym_cmd_identifier_token29] = ACTIONS(2398), + [aux_sym_cmd_identifier_token30] = ACTIONS(2398), + [aux_sym_cmd_identifier_token31] = ACTIONS(2398), + [aux_sym_cmd_identifier_token32] = ACTIONS(2398), + [aux_sym_cmd_identifier_token33] = ACTIONS(2398), + [aux_sym_cmd_identifier_token34] = ACTIONS(2398), + [aux_sym_cmd_identifier_token35] = ACTIONS(2398), + [aux_sym_cmd_identifier_token36] = ACTIONS(2398), [anon_sym_true] = ACTIONS(2398), [anon_sym_false] = ACTIONS(2398), [anon_sym_null] = ACTIONS(2398), - [aux_sym_cmd_identifier_token38] = ACTIONS(2396), + [aux_sym_cmd_identifier_token38] = ACTIONS(2398), [aux_sym_cmd_identifier_token39] = ACTIONS(2398), [aux_sym_cmd_identifier_token40] = ACTIONS(2398), - [anon_sym_def] = ACTIONS(2396), - [anon_sym_export_DASHenv] = ACTIONS(2396), - [anon_sym_extern] = ACTIONS(2396), - [anon_sym_module] = ACTIONS(2396), - [anon_sym_use] = ACTIONS(2396), - [anon_sym_LPAREN] = ACTIONS(2396), + [anon_sym_def] = ACTIONS(2398), + [anon_sym_export_DASHenv] = ACTIONS(2398), + [anon_sym_extern] = ACTIONS(2398), + [anon_sym_module] = ACTIONS(2398), + [anon_sym_use] = ACTIONS(2398), + [anon_sym_LPAREN] = ACTIONS(2398), [anon_sym_DOLLAR] = ACTIONS(2398), - [anon_sym_error] = ACTIONS(2396), - [anon_sym_list] = ACTIONS(2396), - [anon_sym_DASH] = ACTIONS(2396), - [anon_sym_break] = ACTIONS(2396), - [anon_sym_continue] = ACTIONS(2396), - [anon_sym_for] = ACTIONS(2396), - [anon_sym_in] = ACTIONS(2396), - [anon_sym_loop] = ACTIONS(2396), - [anon_sym_make] = ACTIONS(2396), - [anon_sym_while] = ACTIONS(2396), - [anon_sym_do] = ACTIONS(2396), - [anon_sym_if] = ACTIONS(2396), - [anon_sym_else] = ACTIONS(2396), - [anon_sym_match] = ACTIONS(2396), + [anon_sym_error] = ACTIONS(2398), + [anon_sym_list] = ACTIONS(2398), + [anon_sym_DASH] = ACTIONS(2398), + [anon_sym_break] = ACTIONS(2398), + [anon_sym_continue] = ACTIONS(2398), + [anon_sym_for] = ACTIONS(2398), + [anon_sym_in] = ACTIONS(2398), + [anon_sym_loop] = ACTIONS(2398), + [anon_sym_make] = ACTIONS(2398), + [anon_sym_while] = ACTIONS(2398), + [anon_sym_do] = ACTIONS(2398), + [anon_sym_if] = ACTIONS(2398), + [anon_sym_else] = ACTIONS(2398), + [anon_sym_match] = ACTIONS(2398), [anon_sym_RBRACE] = ACTIONS(2398), - [anon_sym_try] = ACTIONS(2396), - [anon_sym_catch] = ACTIONS(2396), - [anon_sym_return] = ACTIONS(2396), - [anon_sym_source] = ACTIONS(2396), - [anon_sym_source_DASHenv] = ACTIONS(2396), - [anon_sym_register] = ACTIONS(2396), - [anon_sym_hide] = ACTIONS(2396), - [anon_sym_hide_DASHenv] = ACTIONS(2396), - [anon_sym_overlay] = ACTIONS(2396), - [anon_sym_new] = ACTIONS(2396), - [anon_sym_as] = ACTIONS(2396), - [anon_sym_LPAREN2] = ACTIONS(2398), + [anon_sym_try] = ACTIONS(2398), + [anon_sym_catch] = ACTIONS(2398), + [anon_sym_return] = ACTIONS(2398), + [anon_sym_source] = ACTIONS(2398), + [anon_sym_source_DASHenv] = ACTIONS(2398), + [anon_sym_register] = ACTIONS(2398), + [anon_sym_hide] = ACTIONS(2398), + [anon_sym_hide_DASHenv] = ACTIONS(2398), + [anon_sym_overlay] = ACTIONS(2398), + [anon_sym_new] = ACTIONS(2398), + [anon_sym_as] = ACTIONS(2398), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2398), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2398), - [aux_sym__val_number_decimal_token1] = ACTIONS(2396), + [aux_sym__val_number_decimal_token1] = ACTIONS(2398), [aux_sym__val_number_decimal_token2] = ACTIONS(2398), [aux_sym__val_number_decimal_token3] = ACTIONS(2398), [aux_sym__val_number_decimal_token4] = ACTIONS(2398), @@ -138735,11 +138193,1023 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_single_quotes] = ACTIONS(2398), [sym__str_back_ticks] = ACTIONS(2398), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2398), - [anon_sym_PLUS] = ACTIONS(2396), - [anon_sym_POUND] = ACTIONS(247), + [sym__entry_separator] = ACTIONS(2400), + [anon_sym_PLUS] = ACTIONS(2398), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2400), }, - [571] = { - [sym_comment] = STATE(571), + [550] = { + [sym_comment] = STATE(550), + [anon_sym_export] = ACTIONS(2402), + [anon_sym_alias] = ACTIONS(2402), + [anon_sym_let] = ACTIONS(2402), + [anon_sym_let_DASHenv] = ACTIONS(2402), + [anon_sym_mut] = ACTIONS(2402), + [anon_sym_const] = ACTIONS(2402), + [aux_sym_cmd_identifier_token1] = ACTIONS(2402), + [aux_sym_cmd_identifier_token2] = ACTIONS(2402), + [aux_sym_cmd_identifier_token3] = ACTIONS(2402), + [aux_sym_cmd_identifier_token4] = ACTIONS(2402), + [aux_sym_cmd_identifier_token5] = ACTIONS(2402), + [aux_sym_cmd_identifier_token6] = ACTIONS(2402), + [aux_sym_cmd_identifier_token7] = ACTIONS(2402), + [aux_sym_cmd_identifier_token8] = ACTIONS(2402), + [aux_sym_cmd_identifier_token9] = ACTIONS(2402), + [aux_sym_cmd_identifier_token10] = ACTIONS(2402), + [aux_sym_cmd_identifier_token11] = ACTIONS(2402), + [aux_sym_cmd_identifier_token12] = ACTIONS(2402), + [aux_sym_cmd_identifier_token13] = ACTIONS(2402), + [aux_sym_cmd_identifier_token14] = ACTIONS(2402), + [aux_sym_cmd_identifier_token15] = ACTIONS(2402), + [aux_sym_cmd_identifier_token16] = ACTIONS(2402), + [aux_sym_cmd_identifier_token17] = ACTIONS(2402), + [aux_sym_cmd_identifier_token18] = ACTIONS(2402), + [aux_sym_cmd_identifier_token19] = ACTIONS(2402), + [aux_sym_cmd_identifier_token20] = ACTIONS(2402), + [aux_sym_cmd_identifier_token21] = ACTIONS(2402), + [aux_sym_cmd_identifier_token22] = ACTIONS(2402), + [aux_sym_cmd_identifier_token23] = ACTIONS(2402), + [aux_sym_cmd_identifier_token24] = ACTIONS(2402), + [aux_sym_cmd_identifier_token25] = ACTIONS(2402), + [aux_sym_cmd_identifier_token26] = ACTIONS(2402), + [aux_sym_cmd_identifier_token27] = ACTIONS(2402), + [aux_sym_cmd_identifier_token28] = ACTIONS(2402), + [aux_sym_cmd_identifier_token29] = ACTIONS(2402), + [aux_sym_cmd_identifier_token30] = ACTIONS(2402), + [aux_sym_cmd_identifier_token31] = ACTIONS(2402), + [aux_sym_cmd_identifier_token32] = ACTIONS(2402), + [aux_sym_cmd_identifier_token33] = ACTIONS(2402), + [aux_sym_cmd_identifier_token34] = ACTIONS(2402), + [aux_sym_cmd_identifier_token35] = ACTIONS(2402), + [aux_sym_cmd_identifier_token36] = ACTIONS(2402), + [anon_sym_true] = ACTIONS(2402), + [anon_sym_false] = ACTIONS(2402), + [anon_sym_null] = ACTIONS(2402), + [aux_sym_cmd_identifier_token38] = ACTIONS(2402), + [aux_sym_cmd_identifier_token39] = ACTIONS(2402), + [aux_sym_cmd_identifier_token40] = ACTIONS(2402), + [anon_sym_def] = ACTIONS(2402), + [anon_sym_export_DASHenv] = ACTIONS(2402), + [anon_sym_extern] = ACTIONS(2402), + [anon_sym_module] = ACTIONS(2402), + [anon_sym_use] = ACTIONS(2402), + [anon_sym_LPAREN] = ACTIONS(2402), + [anon_sym_DOLLAR] = ACTIONS(2402), + [anon_sym_error] = ACTIONS(2402), + [anon_sym_list] = ACTIONS(2402), + [anon_sym_DASH] = ACTIONS(2402), + [anon_sym_break] = ACTIONS(2402), + [anon_sym_continue] = ACTIONS(2402), + [anon_sym_for] = ACTIONS(2402), + [anon_sym_in] = ACTIONS(2402), + [anon_sym_loop] = ACTIONS(2402), + [anon_sym_make] = ACTIONS(2402), + [anon_sym_while] = ACTIONS(2402), + [anon_sym_do] = ACTIONS(2402), + [anon_sym_if] = ACTIONS(2402), + [anon_sym_else] = ACTIONS(2402), + [anon_sym_match] = ACTIONS(2402), + [anon_sym_RBRACE] = ACTIONS(2402), + [anon_sym_try] = ACTIONS(2402), + [anon_sym_catch] = ACTIONS(2402), + [anon_sym_return] = ACTIONS(2402), + [anon_sym_source] = ACTIONS(2402), + [anon_sym_source_DASHenv] = ACTIONS(2402), + [anon_sym_register] = ACTIONS(2402), + [anon_sym_hide] = ACTIONS(2402), + [anon_sym_hide_DASHenv] = ACTIONS(2402), + [anon_sym_overlay] = ACTIONS(2402), + [anon_sym_new] = ACTIONS(2402), + [anon_sym_as] = ACTIONS(2402), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2402), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2402), + [aux_sym__val_number_decimal_token1] = ACTIONS(2402), + [aux_sym__val_number_decimal_token2] = ACTIONS(2402), + [aux_sym__val_number_decimal_token3] = ACTIONS(2402), + [aux_sym__val_number_decimal_token4] = ACTIONS(2402), + [aux_sym__val_number_token1] = ACTIONS(2402), + [aux_sym__val_number_token2] = ACTIONS(2402), + [aux_sym__val_number_token3] = ACTIONS(2402), + [anon_sym_DQUOTE] = ACTIONS(2402), + [sym__str_single_quotes] = ACTIONS(2402), + [sym__str_back_ticks] = ACTIONS(2402), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2402), + [sym__entry_separator] = ACTIONS(2404), + [anon_sym_PLUS] = ACTIONS(2402), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2404), + }, + [551] = { + [sym_comment] = STATE(551), + [anon_sym_export] = ACTIONS(1054), + [anon_sym_alias] = ACTIONS(1054), + [anon_sym_let] = ACTIONS(1054), + [anon_sym_let_DASHenv] = ACTIONS(1054), + [anon_sym_mut] = ACTIONS(1054), + [anon_sym_const] = ACTIONS(1054), + [aux_sym_cmd_identifier_token1] = ACTIONS(1054), + [aux_sym_cmd_identifier_token2] = ACTIONS(1054), + [aux_sym_cmd_identifier_token3] = ACTIONS(1054), + [aux_sym_cmd_identifier_token4] = ACTIONS(1054), + [aux_sym_cmd_identifier_token5] = ACTIONS(1054), + [aux_sym_cmd_identifier_token6] = ACTIONS(1054), + [aux_sym_cmd_identifier_token7] = ACTIONS(1054), + [aux_sym_cmd_identifier_token8] = ACTIONS(1054), + [aux_sym_cmd_identifier_token9] = ACTIONS(1054), + [aux_sym_cmd_identifier_token10] = ACTIONS(1054), + [aux_sym_cmd_identifier_token11] = ACTIONS(1054), + [aux_sym_cmd_identifier_token12] = ACTIONS(1054), + [aux_sym_cmd_identifier_token13] = ACTIONS(1054), + [aux_sym_cmd_identifier_token14] = ACTIONS(1054), + [aux_sym_cmd_identifier_token15] = ACTIONS(1054), + [aux_sym_cmd_identifier_token16] = ACTIONS(1054), + [aux_sym_cmd_identifier_token17] = ACTIONS(1054), + [aux_sym_cmd_identifier_token18] = ACTIONS(1054), + [aux_sym_cmd_identifier_token19] = ACTIONS(1054), + [aux_sym_cmd_identifier_token20] = ACTIONS(1054), + [aux_sym_cmd_identifier_token21] = ACTIONS(1054), + [aux_sym_cmd_identifier_token22] = ACTIONS(1054), + [aux_sym_cmd_identifier_token23] = ACTIONS(1054), + [aux_sym_cmd_identifier_token24] = ACTIONS(1054), + [aux_sym_cmd_identifier_token25] = ACTIONS(1054), + [aux_sym_cmd_identifier_token26] = ACTIONS(1054), + [aux_sym_cmd_identifier_token27] = ACTIONS(1054), + [aux_sym_cmd_identifier_token28] = ACTIONS(1054), + [aux_sym_cmd_identifier_token29] = ACTIONS(1054), + [aux_sym_cmd_identifier_token30] = ACTIONS(1054), + [aux_sym_cmd_identifier_token31] = ACTIONS(1054), + [aux_sym_cmd_identifier_token32] = ACTIONS(1054), + [aux_sym_cmd_identifier_token33] = ACTIONS(1054), + [aux_sym_cmd_identifier_token34] = ACTIONS(1054), + [aux_sym_cmd_identifier_token35] = ACTIONS(1054), + [aux_sym_cmd_identifier_token36] = ACTIONS(1054), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_null] = ACTIONS(1054), + [aux_sym_cmd_identifier_token38] = ACTIONS(1054), + [aux_sym_cmd_identifier_token39] = ACTIONS(1054), + [aux_sym_cmd_identifier_token40] = ACTIONS(1054), + [anon_sym_def] = ACTIONS(1054), + [anon_sym_export_DASHenv] = ACTIONS(1054), + [anon_sym_extern] = ACTIONS(1054), + [anon_sym_module] = ACTIONS(1054), + [anon_sym_use] = ACTIONS(1054), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_DOLLAR] = ACTIONS(1054), + [anon_sym_error] = ACTIONS(1054), + [anon_sym_list] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_break] = ACTIONS(1054), + [anon_sym_continue] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1054), + [anon_sym_in] = ACTIONS(1054), + [anon_sym_loop] = ACTIONS(1054), + [anon_sym_make] = ACTIONS(1054), + [anon_sym_while] = ACTIONS(1054), + [anon_sym_do] = ACTIONS(1054), + [anon_sym_if] = ACTIONS(1054), + [anon_sym_else] = ACTIONS(1054), + [anon_sym_match] = ACTIONS(1054), + [anon_sym_RBRACE] = ACTIONS(1054), + [anon_sym_try] = ACTIONS(1054), + [anon_sym_catch] = ACTIONS(1054), + [anon_sym_return] = ACTIONS(1054), + [anon_sym_source] = ACTIONS(1054), + [anon_sym_source_DASHenv] = ACTIONS(1054), + [anon_sym_register] = ACTIONS(1054), + [anon_sym_hide] = ACTIONS(1054), + [anon_sym_hide_DASHenv] = ACTIONS(1054), + [anon_sym_overlay] = ACTIONS(1054), + [anon_sym_new] = ACTIONS(1054), + [anon_sym_as] = ACTIONS(1054), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1054), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1054), + [aux_sym__val_number_decimal_token1] = ACTIONS(1054), + [aux_sym__val_number_decimal_token2] = ACTIONS(1054), + [aux_sym__val_number_decimal_token3] = ACTIONS(1054), + [aux_sym__val_number_decimal_token4] = ACTIONS(1054), + [aux_sym__val_number_token1] = ACTIONS(1054), + [aux_sym__val_number_token2] = ACTIONS(1054), + [aux_sym__val_number_token3] = ACTIONS(1054), + [anon_sym_DQUOTE] = ACTIONS(1054), + [sym__str_single_quotes] = ACTIONS(1054), + [sym__str_back_ticks] = ACTIONS(1054), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1054), + [sym__entry_separator] = ACTIONS(1056), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1056), + }, + [552] = { + [sym_comment] = STATE(552), + [anon_sym_export] = ACTIONS(2406), + [anon_sym_alias] = ACTIONS(2406), + [anon_sym_let] = ACTIONS(2406), + [anon_sym_let_DASHenv] = ACTIONS(2406), + [anon_sym_mut] = ACTIONS(2406), + [anon_sym_const] = ACTIONS(2406), + [aux_sym_cmd_identifier_token1] = ACTIONS(2406), + [aux_sym_cmd_identifier_token2] = ACTIONS(2406), + [aux_sym_cmd_identifier_token3] = ACTIONS(2406), + [aux_sym_cmd_identifier_token4] = ACTIONS(2406), + [aux_sym_cmd_identifier_token5] = ACTIONS(2406), + [aux_sym_cmd_identifier_token6] = ACTIONS(2406), + [aux_sym_cmd_identifier_token7] = ACTIONS(2406), + [aux_sym_cmd_identifier_token8] = ACTIONS(2406), + [aux_sym_cmd_identifier_token9] = ACTIONS(2406), + [aux_sym_cmd_identifier_token10] = ACTIONS(2406), + [aux_sym_cmd_identifier_token11] = ACTIONS(2406), + [aux_sym_cmd_identifier_token12] = ACTIONS(2406), + [aux_sym_cmd_identifier_token13] = ACTIONS(2406), + [aux_sym_cmd_identifier_token14] = ACTIONS(2406), + [aux_sym_cmd_identifier_token15] = ACTIONS(2406), + [aux_sym_cmd_identifier_token16] = ACTIONS(2406), + [aux_sym_cmd_identifier_token17] = ACTIONS(2406), + [aux_sym_cmd_identifier_token18] = ACTIONS(2406), + [aux_sym_cmd_identifier_token19] = ACTIONS(2406), + [aux_sym_cmd_identifier_token20] = ACTIONS(2406), + [aux_sym_cmd_identifier_token21] = ACTIONS(2406), + [aux_sym_cmd_identifier_token22] = ACTIONS(2406), + [aux_sym_cmd_identifier_token23] = ACTIONS(2406), + [aux_sym_cmd_identifier_token24] = ACTIONS(2406), + [aux_sym_cmd_identifier_token25] = ACTIONS(2406), + [aux_sym_cmd_identifier_token26] = ACTIONS(2406), + [aux_sym_cmd_identifier_token27] = ACTIONS(2406), + [aux_sym_cmd_identifier_token28] = ACTIONS(2406), + [aux_sym_cmd_identifier_token29] = ACTIONS(2406), + [aux_sym_cmd_identifier_token30] = ACTIONS(2406), + [aux_sym_cmd_identifier_token31] = ACTIONS(2406), + [aux_sym_cmd_identifier_token32] = ACTIONS(2406), + [aux_sym_cmd_identifier_token33] = ACTIONS(2406), + [aux_sym_cmd_identifier_token34] = ACTIONS(2406), + [aux_sym_cmd_identifier_token35] = ACTIONS(2406), + [aux_sym_cmd_identifier_token36] = ACTIONS(2406), + [anon_sym_true] = ACTIONS(2406), + [anon_sym_false] = ACTIONS(2406), + [anon_sym_null] = ACTIONS(2406), + [aux_sym_cmd_identifier_token38] = ACTIONS(2406), + [aux_sym_cmd_identifier_token39] = ACTIONS(2406), + [aux_sym_cmd_identifier_token40] = ACTIONS(2406), + [anon_sym_def] = ACTIONS(2406), + [anon_sym_export_DASHenv] = ACTIONS(2406), + [anon_sym_extern] = ACTIONS(2406), + [anon_sym_module] = ACTIONS(2406), + [anon_sym_use] = ACTIONS(2406), + [anon_sym_LPAREN] = ACTIONS(2406), + [anon_sym_DOLLAR] = ACTIONS(2406), + [anon_sym_error] = ACTIONS(2406), + [anon_sym_list] = ACTIONS(2406), + [anon_sym_DASH] = ACTIONS(2406), + [anon_sym_break] = ACTIONS(2406), + [anon_sym_continue] = ACTIONS(2406), + [anon_sym_for] = ACTIONS(2406), + [anon_sym_in] = ACTIONS(2406), + [anon_sym_loop] = ACTIONS(2406), + [anon_sym_make] = ACTIONS(2406), + [anon_sym_while] = ACTIONS(2406), + [anon_sym_do] = ACTIONS(2406), + [anon_sym_if] = ACTIONS(2406), + [anon_sym_else] = ACTIONS(2406), + [anon_sym_match] = ACTIONS(2406), + [anon_sym_RBRACE] = ACTIONS(2406), + [anon_sym_try] = ACTIONS(2406), + [anon_sym_catch] = ACTIONS(2406), + [anon_sym_return] = ACTIONS(2406), + [anon_sym_source] = ACTIONS(2406), + [anon_sym_source_DASHenv] = ACTIONS(2406), + [anon_sym_register] = ACTIONS(2406), + [anon_sym_hide] = ACTIONS(2406), + [anon_sym_hide_DASHenv] = ACTIONS(2406), + [anon_sym_overlay] = ACTIONS(2406), + [anon_sym_new] = ACTIONS(2406), + [anon_sym_as] = ACTIONS(2406), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2406), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2406), + [aux_sym__val_number_decimal_token1] = ACTIONS(2406), + [aux_sym__val_number_decimal_token2] = ACTIONS(2406), + [aux_sym__val_number_decimal_token3] = ACTIONS(2406), + [aux_sym__val_number_decimal_token4] = ACTIONS(2406), + [aux_sym__val_number_token1] = ACTIONS(2406), + [aux_sym__val_number_token2] = ACTIONS(2406), + [aux_sym__val_number_token3] = ACTIONS(2406), + [anon_sym_DQUOTE] = ACTIONS(2406), + [sym__str_single_quotes] = ACTIONS(2406), + [sym__str_back_ticks] = ACTIONS(2406), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2406), + [sym__entry_separator] = ACTIONS(2408), + [anon_sym_PLUS] = ACTIONS(2406), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2408), + }, + [553] = { + [sym_comment] = STATE(553), + [anon_sym_export] = ACTIONS(2410), + [anon_sym_alias] = ACTIONS(2410), + [anon_sym_let] = ACTIONS(2410), + [anon_sym_let_DASHenv] = ACTIONS(2410), + [anon_sym_mut] = ACTIONS(2410), + [anon_sym_const] = ACTIONS(2410), + [aux_sym_cmd_identifier_token1] = ACTIONS(2410), + [aux_sym_cmd_identifier_token2] = ACTIONS(2410), + [aux_sym_cmd_identifier_token3] = ACTIONS(2410), + [aux_sym_cmd_identifier_token4] = ACTIONS(2410), + [aux_sym_cmd_identifier_token5] = ACTIONS(2410), + [aux_sym_cmd_identifier_token6] = ACTIONS(2410), + [aux_sym_cmd_identifier_token7] = ACTIONS(2410), + [aux_sym_cmd_identifier_token8] = ACTIONS(2410), + [aux_sym_cmd_identifier_token9] = ACTIONS(2410), + [aux_sym_cmd_identifier_token10] = ACTIONS(2410), + [aux_sym_cmd_identifier_token11] = ACTIONS(2410), + [aux_sym_cmd_identifier_token12] = ACTIONS(2410), + [aux_sym_cmd_identifier_token13] = ACTIONS(2410), + [aux_sym_cmd_identifier_token14] = ACTIONS(2410), + [aux_sym_cmd_identifier_token15] = ACTIONS(2410), + [aux_sym_cmd_identifier_token16] = ACTIONS(2410), + [aux_sym_cmd_identifier_token17] = ACTIONS(2410), + [aux_sym_cmd_identifier_token18] = ACTIONS(2410), + [aux_sym_cmd_identifier_token19] = ACTIONS(2410), + [aux_sym_cmd_identifier_token20] = ACTIONS(2410), + [aux_sym_cmd_identifier_token21] = ACTIONS(2410), + [aux_sym_cmd_identifier_token22] = ACTIONS(2410), + [aux_sym_cmd_identifier_token23] = ACTIONS(2410), + [aux_sym_cmd_identifier_token24] = ACTIONS(2410), + [aux_sym_cmd_identifier_token25] = ACTIONS(2410), + [aux_sym_cmd_identifier_token26] = ACTIONS(2410), + [aux_sym_cmd_identifier_token27] = ACTIONS(2410), + [aux_sym_cmd_identifier_token28] = ACTIONS(2410), + [aux_sym_cmd_identifier_token29] = ACTIONS(2410), + [aux_sym_cmd_identifier_token30] = ACTIONS(2410), + [aux_sym_cmd_identifier_token31] = ACTIONS(2410), + [aux_sym_cmd_identifier_token32] = ACTIONS(2410), + [aux_sym_cmd_identifier_token33] = ACTIONS(2410), + [aux_sym_cmd_identifier_token34] = ACTIONS(2410), + [aux_sym_cmd_identifier_token35] = ACTIONS(2410), + [aux_sym_cmd_identifier_token36] = ACTIONS(2410), + [anon_sym_true] = ACTIONS(2410), + [anon_sym_false] = ACTIONS(2410), + [anon_sym_null] = ACTIONS(2410), + [aux_sym_cmd_identifier_token38] = ACTIONS(2410), + [aux_sym_cmd_identifier_token39] = ACTIONS(2410), + [aux_sym_cmd_identifier_token40] = ACTIONS(2410), + [anon_sym_def] = ACTIONS(2410), + [anon_sym_export_DASHenv] = ACTIONS(2410), + [anon_sym_extern] = ACTIONS(2410), + [anon_sym_module] = ACTIONS(2410), + [anon_sym_use] = ACTIONS(2410), + [anon_sym_LPAREN] = ACTIONS(2410), + [anon_sym_DOLLAR] = ACTIONS(2410), + [anon_sym_error] = ACTIONS(2410), + [anon_sym_list] = ACTIONS(2410), + [anon_sym_DASH] = ACTIONS(2410), + [anon_sym_break] = ACTIONS(2410), + [anon_sym_continue] = ACTIONS(2410), + [anon_sym_for] = ACTIONS(2410), + [anon_sym_in] = ACTIONS(2410), + [anon_sym_loop] = ACTIONS(2410), + [anon_sym_make] = ACTIONS(2410), + [anon_sym_while] = ACTIONS(2410), + [anon_sym_do] = ACTIONS(2410), + [anon_sym_if] = ACTIONS(2410), + [anon_sym_else] = ACTIONS(2410), + [anon_sym_match] = ACTIONS(2410), + [anon_sym_RBRACE] = ACTIONS(2410), + [anon_sym_try] = ACTIONS(2410), + [anon_sym_catch] = ACTIONS(2410), + [anon_sym_return] = ACTIONS(2410), + [anon_sym_source] = ACTIONS(2410), + [anon_sym_source_DASHenv] = ACTIONS(2410), + [anon_sym_register] = ACTIONS(2410), + [anon_sym_hide] = ACTIONS(2410), + [anon_sym_hide_DASHenv] = ACTIONS(2410), + [anon_sym_overlay] = ACTIONS(2410), + [anon_sym_new] = ACTIONS(2410), + [anon_sym_as] = ACTIONS(2410), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2410), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2410), + [aux_sym__val_number_decimal_token1] = ACTIONS(2410), + [aux_sym__val_number_decimal_token2] = ACTIONS(2410), + [aux_sym__val_number_decimal_token3] = ACTIONS(2410), + [aux_sym__val_number_decimal_token4] = ACTIONS(2410), + [aux_sym__val_number_token1] = ACTIONS(2410), + [aux_sym__val_number_token2] = ACTIONS(2410), + [aux_sym__val_number_token3] = ACTIONS(2410), + [anon_sym_DQUOTE] = ACTIONS(2410), + [sym__str_single_quotes] = ACTIONS(2410), + [sym__str_back_ticks] = ACTIONS(2410), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2410), + [sym__entry_separator] = ACTIONS(2412), + [anon_sym_PLUS] = ACTIONS(2410), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2412), + }, + [554] = { + [sym_comment] = STATE(554), + [anon_sym_export] = ACTIONS(2414), + [anon_sym_alias] = ACTIONS(2414), + [anon_sym_let] = ACTIONS(2414), + [anon_sym_let_DASHenv] = ACTIONS(2414), + [anon_sym_mut] = ACTIONS(2414), + [anon_sym_const] = ACTIONS(2414), + [aux_sym_cmd_identifier_token1] = ACTIONS(2414), + [aux_sym_cmd_identifier_token2] = ACTIONS(2414), + [aux_sym_cmd_identifier_token3] = ACTIONS(2414), + [aux_sym_cmd_identifier_token4] = ACTIONS(2414), + [aux_sym_cmd_identifier_token5] = ACTIONS(2414), + [aux_sym_cmd_identifier_token6] = ACTIONS(2414), + [aux_sym_cmd_identifier_token7] = ACTIONS(2414), + [aux_sym_cmd_identifier_token8] = ACTIONS(2414), + [aux_sym_cmd_identifier_token9] = ACTIONS(2414), + [aux_sym_cmd_identifier_token10] = ACTIONS(2414), + [aux_sym_cmd_identifier_token11] = ACTIONS(2414), + [aux_sym_cmd_identifier_token12] = ACTIONS(2414), + [aux_sym_cmd_identifier_token13] = ACTIONS(2414), + [aux_sym_cmd_identifier_token14] = ACTIONS(2414), + [aux_sym_cmd_identifier_token15] = ACTIONS(2414), + [aux_sym_cmd_identifier_token16] = ACTIONS(2414), + [aux_sym_cmd_identifier_token17] = ACTIONS(2414), + [aux_sym_cmd_identifier_token18] = ACTIONS(2414), + [aux_sym_cmd_identifier_token19] = ACTIONS(2414), + [aux_sym_cmd_identifier_token20] = ACTIONS(2414), + [aux_sym_cmd_identifier_token21] = ACTIONS(2414), + [aux_sym_cmd_identifier_token22] = ACTIONS(2414), + [aux_sym_cmd_identifier_token23] = ACTIONS(2414), + [aux_sym_cmd_identifier_token24] = ACTIONS(2414), + [aux_sym_cmd_identifier_token25] = ACTIONS(2414), + [aux_sym_cmd_identifier_token26] = ACTIONS(2414), + [aux_sym_cmd_identifier_token27] = ACTIONS(2414), + [aux_sym_cmd_identifier_token28] = ACTIONS(2414), + [aux_sym_cmd_identifier_token29] = ACTIONS(2414), + [aux_sym_cmd_identifier_token30] = ACTIONS(2414), + [aux_sym_cmd_identifier_token31] = ACTIONS(2414), + [aux_sym_cmd_identifier_token32] = ACTIONS(2414), + [aux_sym_cmd_identifier_token33] = ACTIONS(2414), + [aux_sym_cmd_identifier_token34] = ACTIONS(2414), + [aux_sym_cmd_identifier_token35] = ACTIONS(2414), + [aux_sym_cmd_identifier_token36] = ACTIONS(2414), + [anon_sym_true] = ACTIONS(2414), + [anon_sym_false] = ACTIONS(2414), + [anon_sym_null] = ACTIONS(2414), + [aux_sym_cmd_identifier_token38] = ACTIONS(2414), + [aux_sym_cmd_identifier_token39] = ACTIONS(2414), + [aux_sym_cmd_identifier_token40] = ACTIONS(2414), + [anon_sym_def] = ACTIONS(2414), + [anon_sym_export_DASHenv] = ACTIONS(2414), + [anon_sym_extern] = ACTIONS(2414), + [anon_sym_module] = ACTIONS(2414), + [anon_sym_use] = ACTIONS(2414), + [anon_sym_LPAREN] = ACTIONS(2414), + [anon_sym_DOLLAR] = ACTIONS(2414), + [anon_sym_error] = ACTIONS(2414), + [anon_sym_list] = ACTIONS(2414), + [anon_sym_DASH] = ACTIONS(2414), + [anon_sym_break] = ACTIONS(2414), + [anon_sym_continue] = ACTIONS(2414), + [anon_sym_for] = ACTIONS(2414), + [anon_sym_in] = ACTIONS(2414), + [anon_sym_loop] = ACTIONS(2414), + [anon_sym_make] = ACTIONS(2414), + [anon_sym_while] = ACTIONS(2414), + [anon_sym_do] = ACTIONS(2414), + [anon_sym_if] = ACTIONS(2414), + [anon_sym_else] = ACTIONS(2414), + [anon_sym_match] = ACTIONS(2414), + [anon_sym_RBRACE] = ACTIONS(2414), + [anon_sym_try] = ACTIONS(2414), + [anon_sym_catch] = ACTIONS(2414), + [anon_sym_return] = ACTIONS(2414), + [anon_sym_source] = ACTIONS(2414), + [anon_sym_source_DASHenv] = ACTIONS(2414), + [anon_sym_register] = ACTIONS(2414), + [anon_sym_hide] = ACTIONS(2414), + [anon_sym_hide_DASHenv] = ACTIONS(2414), + [anon_sym_overlay] = ACTIONS(2414), + [anon_sym_new] = ACTIONS(2414), + [anon_sym_as] = ACTIONS(2414), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2414), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2414), + [aux_sym__val_number_decimal_token1] = ACTIONS(2414), + [aux_sym__val_number_decimal_token2] = ACTIONS(2414), + [aux_sym__val_number_decimal_token3] = ACTIONS(2414), + [aux_sym__val_number_decimal_token4] = ACTIONS(2414), + [aux_sym__val_number_token1] = ACTIONS(2414), + [aux_sym__val_number_token2] = ACTIONS(2414), + [aux_sym__val_number_token3] = ACTIONS(2414), + [anon_sym_DQUOTE] = ACTIONS(2414), + [sym__str_single_quotes] = ACTIONS(2414), + [sym__str_back_ticks] = ACTIONS(2414), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2414), + [sym__entry_separator] = ACTIONS(2416), + [anon_sym_PLUS] = ACTIONS(2414), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2416), + }, + [555] = { + [sym_comment] = STATE(555), + [anon_sym_export] = ACTIONS(2418), + [anon_sym_alias] = ACTIONS(2418), + [anon_sym_let] = ACTIONS(2418), + [anon_sym_let_DASHenv] = ACTIONS(2418), + [anon_sym_mut] = ACTIONS(2418), + [anon_sym_const] = ACTIONS(2418), + [aux_sym_cmd_identifier_token1] = ACTIONS(2418), + [aux_sym_cmd_identifier_token2] = ACTIONS(2418), + [aux_sym_cmd_identifier_token3] = ACTIONS(2418), + [aux_sym_cmd_identifier_token4] = ACTIONS(2418), + [aux_sym_cmd_identifier_token5] = ACTIONS(2418), + [aux_sym_cmd_identifier_token6] = ACTIONS(2418), + [aux_sym_cmd_identifier_token7] = ACTIONS(2418), + [aux_sym_cmd_identifier_token8] = ACTIONS(2418), + [aux_sym_cmd_identifier_token9] = ACTIONS(2418), + [aux_sym_cmd_identifier_token10] = ACTIONS(2418), + [aux_sym_cmd_identifier_token11] = ACTIONS(2418), + [aux_sym_cmd_identifier_token12] = ACTIONS(2418), + [aux_sym_cmd_identifier_token13] = ACTIONS(2418), + [aux_sym_cmd_identifier_token14] = ACTIONS(2418), + [aux_sym_cmd_identifier_token15] = ACTIONS(2418), + [aux_sym_cmd_identifier_token16] = ACTIONS(2418), + [aux_sym_cmd_identifier_token17] = ACTIONS(2418), + [aux_sym_cmd_identifier_token18] = ACTIONS(2418), + [aux_sym_cmd_identifier_token19] = ACTIONS(2418), + [aux_sym_cmd_identifier_token20] = ACTIONS(2418), + [aux_sym_cmd_identifier_token21] = ACTIONS(2418), + [aux_sym_cmd_identifier_token22] = ACTIONS(2418), + [aux_sym_cmd_identifier_token23] = ACTIONS(2418), + [aux_sym_cmd_identifier_token24] = ACTIONS(2418), + [aux_sym_cmd_identifier_token25] = ACTIONS(2418), + [aux_sym_cmd_identifier_token26] = ACTIONS(2418), + [aux_sym_cmd_identifier_token27] = ACTIONS(2418), + [aux_sym_cmd_identifier_token28] = ACTIONS(2418), + [aux_sym_cmd_identifier_token29] = ACTIONS(2418), + [aux_sym_cmd_identifier_token30] = ACTIONS(2418), + [aux_sym_cmd_identifier_token31] = ACTIONS(2418), + [aux_sym_cmd_identifier_token32] = ACTIONS(2418), + [aux_sym_cmd_identifier_token33] = ACTIONS(2418), + [aux_sym_cmd_identifier_token34] = ACTIONS(2418), + [aux_sym_cmd_identifier_token35] = ACTIONS(2418), + [aux_sym_cmd_identifier_token36] = ACTIONS(2418), + [anon_sym_true] = ACTIONS(2418), + [anon_sym_false] = ACTIONS(2418), + [anon_sym_null] = ACTIONS(2418), + [aux_sym_cmd_identifier_token38] = ACTIONS(2418), + [aux_sym_cmd_identifier_token39] = ACTIONS(2418), + [aux_sym_cmd_identifier_token40] = ACTIONS(2418), + [anon_sym_def] = ACTIONS(2418), + [anon_sym_export_DASHenv] = ACTIONS(2418), + [anon_sym_extern] = ACTIONS(2418), + [anon_sym_module] = ACTIONS(2418), + [anon_sym_use] = ACTIONS(2418), + [anon_sym_LPAREN] = ACTIONS(2418), + [anon_sym_DOLLAR] = ACTIONS(2418), + [anon_sym_error] = ACTIONS(2418), + [anon_sym_list] = ACTIONS(2418), + [anon_sym_DASH] = ACTIONS(2418), + [anon_sym_break] = ACTIONS(2418), + [anon_sym_continue] = ACTIONS(2418), + [anon_sym_for] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2418), + [anon_sym_loop] = ACTIONS(2418), + [anon_sym_make] = ACTIONS(2418), + [anon_sym_while] = ACTIONS(2418), + [anon_sym_do] = ACTIONS(2418), + [anon_sym_if] = ACTIONS(2418), + [anon_sym_else] = ACTIONS(2418), + [anon_sym_match] = ACTIONS(2418), + [anon_sym_RBRACE] = ACTIONS(2418), + [anon_sym_try] = ACTIONS(2418), + [anon_sym_catch] = ACTIONS(2418), + [anon_sym_return] = ACTIONS(2418), + [anon_sym_source] = ACTIONS(2418), + [anon_sym_source_DASHenv] = ACTIONS(2418), + [anon_sym_register] = ACTIONS(2418), + [anon_sym_hide] = ACTIONS(2418), + [anon_sym_hide_DASHenv] = ACTIONS(2418), + [anon_sym_overlay] = ACTIONS(2418), + [anon_sym_new] = ACTIONS(2418), + [anon_sym_as] = ACTIONS(2418), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2418), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2418), + [aux_sym__val_number_decimal_token1] = ACTIONS(2418), + [aux_sym__val_number_decimal_token2] = ACTIONS(2418), + [aux_sym__val_number_decimal_token3] = ACTIONS(2418), + [aux_sym__val_number_decimal_token4] = ACTIONS(2418), + [aux_sym__val_number_token1] = ACTIONS(2418), + [aux_sym__val_number_token2] = ACTIONS(2418), + [aux_sym__val_number_token3] = ACTIONS(2418), + [anon_sym_DQUOTE] = ACTIONS(2418), + [sym__str_single_quotes] = ACTIONS(2418), + [sym__str_back_ticks] = ACTIONS(2418), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2418), + [sym__entry_separator] = ACTIONS(2420), + [anon_sym_PLUS] = ACTIONS(2418), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2420), + }, + [556] = { + [sym_comment] = STATE(556), + [anon_sym_export] = ACTIONS(2422), + [anon_sym_alias] = ACTIONS(2422), + [anon_sym_let] = ACTIONS(2422), + [anon_sym_let_DASHenv] = ACTIONS(2422), + [anon_sym_mut] = ACTIONS(2422), + [anon_sym_const] = ACTIONS(2422), + [aux_sym_cmd_identifier_token1] = ACTIONS(2422), + [aux_sym_cmd_identifier_token2] = ACTIONS(2422), + [aux_sym_cmd_identifier_token3] = ACTIONS(2422), + [aux_sym_cmd_identifier_token4] = ACTIONS(2422), + [aux_sym_cmd_identifier_token5] = ACTIONS(2422), + [aux_sym_cmd_identifier_token6] = ACTIONS(2422), + [aux_sym_cmd_identifier_token7] = ACTIONS(2422), + [aux_sym_cmd_identifier_token8] = ACTIONS(2422), + [aux_sym_cmd_identifier_token9] = ACTIONS(2422), + [aux_sym_cmd_identifier_token10] = ACTIONS(2422), + [aux_sym_cmd_identifier_token11] = ACTIONS(2422), + [aux_sym_cmd_identifier_token12] = ACTIONS(2422), + [aux_sym_cmd_identifier_token13] = ACTIONS(2422), + [aux_sym_cmd_identifier_token14] = ACTIONS(2422), + [aux_sym_cmd_identifier_token15] = ACTIONS(2422), + [aux_sym_cmd_identifier_token16] = ACTIONS(2422), + [aux_sym_cmd_identifier_token17] = ACTIONS(2422), + [aux_sym_cmd_identifier_token18] = ACTIONS(2422), + [aux_sym_cmd_identifier_token19] = ACTIONS(2422), + [aux_sym_cmd_identifier_token20] = ACTIONS(2422), + [aux_sym_cmd_identifier_token21] = ACTIONS(2422), + [aux_sym_cmd_identifier_token22] = ACTIONS(2422), + [aux_sym_cmd_identifier_token23] = ACTIONS(2422), + [aux_sym_cmd_identifier_token24] = ACTIONS(2422), + [aux_sym_cmd_identifier_token25] = ACTIONS(2422), + [aux_sym_cmd_identifier_token26] = ACTIONS(2422), + [aux_sym_cmd_identifier_token27] = ACTIONS(2422), + [aux_sym_cmd_identifier_token28] = ACTIONS(2422), + [aux_sym_cmd_identifier_token29] = ACTIONS(2422), + [aux_sym_cmd_identifier_token30] = ACTIONS(2422), + [aux_sym_cmd_identifier_token31] = ACTIONS(2422), + [aux_sym_cmd_identifier_token32] = ACTIONS(2422), + [aux_sym_cmd_identifier_token33] = ACTIONS(2422), + [aux_sym_cmd_identifier_token34] = ACTIONS(2422), + [aux_sym_cmd_identifier_token35] = ACTIONS(2422), + [aux_sym_cmd_identifier_token36] = ACTIONS(2422), + [anon_sym_true] = ACTIONS(2422), + [anon_sym_false] = ACTIONS(2422), + [anon_sym_null] = ACTIONS(2422), + [aux_sym_cmd_identifier_token38] = ACTIONS(2422), + [aux_sym_cmd_identifier_token39] = ACTIONS(2422), + [aux_sym_cmd_identifier_token40] = ACTIONS(2422), + [anon_sym_def] = ACTIONS(2422), + [anon_sym_export_DASHenv] = ACTIONS(2422), + [anon_sym_extern] = ACTIONS(2422), + [anon_sym_module] = ACTIONS(2422), + [anon_sym_use] = ACTIONS(2422), + [anon_sym_LPAREN] = ACTIONS(2422), + [anon_sym_DOLLAR] = ACTIONS(2422), + [anon_sym_error] = ACTIONS(2422), + [anon_sym_list] = ACTIONS(2422), + [anon_sym_DASH] = ACTIONS(2422), + [anon_sym_break] = ACTIONS(2422), + [anon_sym_continue] = ACTIONS(2422), + [anon_sym_for] = ACTIONS(2422), + [anon_sym_in] = ACTIONS(2422), + [anon_sym_loop] = ACTIONS(2422), + [anon_sym_make] = ACTIONS(2422), + [anon_sym_while] = ACTIONS(2422), + [anon_sym_do] = ACTIONS(2422), + [anon_sym_if] = ACTIONS(2422), + [anon_sym_else] = ACTIONS(2422), + [anon_sym_match] = ACTIONS(2422), + [anon_sym_RBRACE] = ACTIONS(2422), + [anon_sym_try] = ACTIONS(2422), + [anon_sym_catch] = ACTIONS(2422), + [anon_sym_return] = ACTIONS(2422), + [anon_sym_source] = ACTIONS(2422), + [anon_sym_source_DASHenv] = ACTIONS(2422), + [anon_sym_register] = ACTIONS(2422), + [anon_sym_hide] = ACTIONS(2422), + [anon_sym_hide_DASHenv] = ACTIONS(2422), + [anon_sym_overlay] = ACTIONS(2422), + [anon_sym_new] = ACTIONS(2422), + [anon_sym_as] = ACTIONS(2422), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2422), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2422), + [aux_sym__val_number_decimal_token1] = ACTIONS(2422), + [aux_sym__val_number_decimal_token2] = ACTIONS(2422), + [aux_sym__val_number_decimal_token3] = ACTIONS(2422), + [aux_sym__val_number_decimal_token4] = ACTIONS(2422), + [aux_sym__val_number_token1] = ACTIONS(2422), + [aux_sym__val_number_token2] = ACTIONS(2422), + [aux_sym__val_number_token3] = ACTIONS(2422), + [anon_sym_DQUOTE] = ACTIONS(2422), + [sym__str_single_quotes] = ACTIONS(2422), + [sym__str_back_ticks] = ACTIONS(2422), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2422), + [sym__entry_separator] = ACTIONS(2424), + [anon_sym_PLUS] = ACTIONS(2422), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2424), + }, + [557] = { + [sym_comment] = STATE(557), + [anon_sym_export] = ACTIONS(2426), + [anon_sym_alias] = ACTIONS(2426), + [anon_sym_let] = ACTIONS(2426), + [anon_sym_let_DASHenv] = ACTIONS(2426), + [anon_sym_mut] = ACTIONS(2426), + [anon_sym_const] = ACTIONS(2426), + [aux_sym_cmd_identifier_token1] = ACTIONS(2426), + [aux_sym_cmd_identifier_token2] = ACTIONS(2426), + [aux_sym_cmd_identifier_token3] = ACTIONS(2426), + [aux_sym_cmd_identifier_token4] = ACTIONS(2426), + [aux_sym_cmd_identifier_token5] = ACTIONS(2426), + [aux_sym_cmd_identifier_token6] = ACTIONS(2426), + [aux_sym_cmd_identifier_token7] = ACTIONS(2426), + [aux_sym_cmd_identifier_token8] = ACTIONS(2426), + [aux_sym_cmd_identifier_token9] = ACTIONS(2426), + [aux_sym_cmd_identifier_token10] = ACTIONS(2426), + [aux_sym_cmd_identifier_token11] = ACTIONS(2426), + [aux_sym_cmd_identifier_token12] = ACTIONS(2426), + [aux_sym_cmd_identifier_token13] = ACTIONS(2426), + [aux_sym_cmd_identifier_token14] = ACTIONS(2426), + [aux_sym_cmd_identifier_token15] = ACTIONS(2426), + [aux_sym_cmd_identifier_token16] = ACTIONS(2426), + [aux_sym_cmd_identifier_token17] = ACTIONS(2426), + [aux_sym_cmd_identifier_token18] = ACTIONS(2426), + [aux_sym_cmd_identifier_token19] = ACTIONS(2426), + [aux_sym_cmd_identifier_token20] = ACTIONS(2426), + [aux_sym_cmd_identifier_token21] = ACTIONS(2426), + [aux_sym_cmd_identifier_token22] = ACTIONS(2426), + [aux_sym_cmd_identifier_token23] = ACTIONS(2426), + [aux_sym_cmd_identifier_token24] = ACTIONS(2426), + [aux_sym_cmd_identifier_token25] = ACTIONS(2426), + [aux_sym_cmd_identifier_token26] = ACTIONS(2426), + [aux_sym_cmd_identifier_token27] = ACTIONS(2426), + [aux_sym_cmd_identifier_token28] = ACTIONS(2426), + [aux_sym_cmd_identifier_token29] = ACTIONS(2426), + [aux_sym_cmd_identifier_token30] = ACTIONS(2426), + [aux_sym_cmd_identifier_token31] = ACTIONS(2426), + [aux_sym_cmd_identifier_token32] = ACTIONS(2426), + [aux_sym_cmd_identifier_token33] = ACTIONS(2426), + [aux_sym_cmd_identifier_token34] = ACTIONS(2426), + [aux_sym_cmd_identifier_token35] = ACTIONS(2426), + [aux_sym_cmd_identifier_token36] = ACTIONS(2426), + [anon_sym_true] = ACTIONS(2426), + [anon_sym_false] = ACTIONS(2426), + [anon_sym_null] = ACTIONS(2426), + [aux_sym_cmd_identifier_token38] = ACTIONS(2426), + [aux_sym_cmd_identifier_token39] = ACTIONS(2426), + [aux_sym_cmd_identifier_token40] = ACTIONS(2426), + [anon_sym_def] = ACTIONS(2426), + [anon_sym_export_DASHenv] = ACTIONS(2426), + [anon_sym_extern] = ACTIONS(2426), + [anon_sym_module] = ACTIONS(2426), + [anon_sym_use] = ACTIONS(2426), + [anon_sym_LPAREN] = ACTIONS(2426), + [anon_sym_DOLLAR] = ACTIONS(2426), + [anon_sym_error] = ACTIONS(2426), + [anon_sym_list] = ACTIONS(2426), + [anon_sym_DASH] = ACTIONS(2426), + [anon_sym_break] = ACTIONS(2426), + [anon_sym_continue] = ACTIONS(2426), + [anon_sym_for] = ACTIONS(2426), + [anon_sym_in] = ACTIONS(2426), + [anon_sym_loop] = ACTIONS(2426), + [anon_sym_make] = ACTIONS(2426), + [anon_sym_while] = ACTIONS(2426), + [anon_sym_do] = ACTIONS(2426), + [anon_sym_if] = ACTIONS(2426), + [anon_sym_else] = ACTIONS(2426), + [anon_sym_match] = ACTIONS(2426), + [anon_sym_RBRACE] = ACTIONS(2426), + [anon_sym_try] = ACTIONS(2426), + [anon_sym_catch] = ACTIONS(2426), + [anon_sym_return] = ACTIONS(2426), + [anon_sym_source] = ACTIONS(2426), + [anon_sym_source_DASHenv] = ACTIONS(2426), + [anon_sym_register] = ACTIONS(2426), + [anon_sym_hide] = ACTIONS(2426), + [anon_sym_hide_DASHenv] = ACTIONS(2426), + [anon_sym_overlay] = ACTIONS(2426), + [anon_sym_new] = ACTIONS(2426), + [anon_sym_as] = ACTIONS(2426), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2426), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2426), + [aux_sym__val_number_decimal_token1] = ACTIONS(2426), + [aux_sym__val_number_decimal_token2] = ACTIONS(2426), + [aux_sym__val_number_decimal_token3] = ACTIONS(2426), + [aux_sym__val_number_decimal_token4] = ACTIONS(2426), + [aux_sym__val_number_token1] = ACTIONS(2426), + [aux_sym__val_number_token2] = ACTIONS(2426), + [aux_sym__val_number_token3] = ACTIONS(2426), + [anon_sym_DQUOTE] = ACTIONS(2426), + [sym__str_single_quotes] = ACTIONS(2426), + [sym__str_back_ticks] = ACTIONS(2426), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2426), + [sym__entry_separator] = ACTIONS(2428), + [anon_sym_PLUS] = ACTIONS(2426), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2428), + }, + [558] = { + [sym_comment] = STATE(558), + [anon_sym_export] = ACTIONS(1628), + [anon_sym_alias] = ACTIONS(1628), + [anon_sym_let] = ACTIONS(1628), + [anon_sym_let_DASHenv] = ACTIONS(1628), + [anon_sym_mut] = ACTIONS(1628), + [anon_sym_const] = ACTIONS(1628), + [aux_sym_cmd_identifier_token1] = ACTIONS(1628), + [aux_sym_cmd_identifier_token2] = ACTIONS(1628), + [aux_sym_cmd_identifier_token3] = ACTIONS(1628), + [aux_sym_cmd_identifier_token4] = ACTIONS(1628), + [aux_sym_cmd_identifier_token5] = ACTIONS(1628), + [aux_sym_cmd_identifier_token6] = ACTIONS(1628), + [aux_sym_cmd_identifier_token7] = ACTIONS(1628), + [aux_sym_cmd_identifier_token8] = ACTIONS(1628), + [aux_sym_cmd_identifier_token9] = ACTIONS(1628), + [aux_sym_cmd_identifier_token10] = ACTIONS(1628), + [aux_sym_cmd_identifier_token11] = ACTIONS(1628), + [aux_sym_cmd_identifier_token12] = ACTIONS(1628), + [aux_sym_cmd_identifier_token13] = ACTIONS(1628), + [aux_sym_cmd_identifier_token14] = ACTIONS(1628), + [aux_sym_cmd_identifier_token15] = ACTIONS(1628), + [aux_sym_cmd_identifier_token16] = ACTIONS(1628), + [aux_sym_cmd_identifier_token17] = ACTIONS(1628), + [aux_sym_cmd_identifier_token18] = ACTIONS(1628), + [aux_sym_cmd_identifier_token19] = ACTIONS(1628), + [aux_sym_cmd_identifier_token20] = ACTIONS(1628), + [aux_sym_cmd_identifier_token21] = ACTIONS(1628), + [aux_sym_cmd_identifier_token22] = ACTIONS(1628), + [aux_sym_cmd_identifier_token23] = ACTIONS(1628), + [aux_sym_cmd_identifier_token24] = ACTIONS(1628), + [aux_sym_cmd_identifier_token25] = ACTIONS(1628), + [aux_sym_cmd_identifier_token26] = ACTIONS(1628), + [aux_sym_cmd_identifier_token27] = ACTIONS(1628), + [aux_sym_cmd_identifier_token28] = ACTIONS(1628), + [aux_sym_cmd_identifier_token29] = ACTIONS(1628), + [aux_sym_cmd_identifier_token30] = ACTIONS(1628), + [aux_sym_cmd_identifier_token31] = ACTIONS(1628), + [aux_sym_cmd_identifier_token32] = ACTIONS(1628), + [aux_sym_cmd_identifier_token33] = ACTIONS(1628), + [aux_sym_cmd_identifier_token34] = ACTIONS(1628), + [aux_sym_cmd_identifier_token35] = ACTIONS(1628), + [aux_sym_cmd_identifier_token36] = ACTIONS(1628), + [anon_sym_true] = ACTIONS(1640), + [anon_sym_false] = ACTIONS(1640), + [anon_sym_null] = ACTIONS(1640), + [aux_sym_cmd_identifier_token38] = ACTIONS(1628), + [aux_sym_cmd_identifier_token39] = ACTIONS(1640), + [aux_sym_cmd_identifier_token40] = ACTIONS(1640), + [anon_sym_def] = ACTIONS(1628), + [anon_sym_export_DASHenv] = ACTIONS(1628), + [anon_sym_extern] = ACTIONS(1628), + [anon_sym_module] = ACTIONS(1628), + [anon_sym_use] = ACTIONS(1628), + [anon_sym_LPAREN] = ACTIONS(1640), + [anon_sym_DOLLAR] = ACTIONS(1640), + [anon_sym_error] = ACTIONS(1628), + [anon_sym_list] = ACTIONS(1628), + [anon_sym_DASH] = ACTIONS(1628), + [anon_sym_break] = ACTIONS(1628), + [anon_sym_continue] = ACTIONS(1628), + [anon_sym_for] = ACTIONS(1628), + [anon_sym_in] = ACTIONS(1628), + [anon_sym_loop] = ACTIONS(1628), + [anon_sym_make] = ACTIONS(1628), + [anon_sym_while] = ACTIONS(1628), + [anon_sym_do] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(1628), + [anon_sym_else] = ACTIONS(1628), + [anon_sym_match] = ACTIONS(1628), + [anon_sym_RBRACE] = ACTIONS(1640), + [anon_sym_try] = ACTIONS(1628), + [anon_sym_catch] = ACTIONS(1628), + [anon_sym_return] = ACTIONS(1628), + [anon_sym_source] = ACTIONS(1628), + [anon_sym_source_DASHenv] = ACTIONS(1628), + [anon_sym_register] = ACTIONS(1628), + [anon_sym_hide] = ACTIONS(1628), + [anon_sym_hide_DASHenv] = ACTIONS(1628), + [anon_sym_overlay] = ACTIONS(1628), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_as] = ACTIONS(1628), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1640), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1640), + [aux_sym__val_number_decimal_token1] = ACTIONS(1628), + [aux_sym__val_number_decimal_token2] = ACTIONS(1640), + [aux_sym__val_number_decimal_token3] = ACTIONS(1640), + [aux_sym__val_number_decimal_token4] = ACTIONS(1640), + [aux_sym__val_number_token1] = ACTIONS(1640), + [aux_sym__val_number_token2] = ACTIONS(1640), + [aux_sym__val_number_token3] = ACTIONS(1640), + [anon_sym_DQUOTE] = ACTIONS(1640), + [sym__str_single_quotes] = ACTIONS(1640), + [sym__str_back_ticks] = ACTIONS(1640), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1640), + [anon_sym_PLUS] = ACTIONS(1628), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1699), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1640), + }, + [559] = { + [sym_comment] = STATE(559), + [anon_sym_export] = ACTIONS(2372), + [anon_sym_alias] = ACTIONS(2372), + [anon_sym_let] = ACTIONS(2372), + [anon_sym_let_DASHenv] = ACTIONS(2372), + [anon_sym_mut] = ACTIONS(2372), + [anon_sym_const] = ACTIONS(2372), + [aux_sym_cmd_identifier_token1] = ACTIONS(2372), + [aux_sym_cmd_identifier_token2] = ACTIONS(2372), + [aux_sym_cmd_identifier_token3] = ACTIONS(2372), + [aux_sym_cmd_identifier_token4] = ACTIONS(2372), + [aux_sym_cmd_identifier_token5] = ACTIONS(2372), + [aux_sym_cmd_identifier_token6] = ACTIONS(2372), + [aux_sym_cmd_identifier_token7] = ACTIONS(2372), + [aux_sym_cmd_identifier_token8] = ACTIONS(2372), + [aux_sym_cmd_identifier_token9] = ACTIONS(2372), + [aux_sym_cmd_identifier_token10] = ACTIONS(2372), + [aux_sym_cmd_identifier_token11] = ACTIONS(2372), + [aux_sym_cmd_identifier_token12] = ACTIONS(2372), + [aux_sym_cmd_identifier_token13] = ACTIONS(2372), + [aux_sym_cmd_identifier_token14] = ACTIONS(2372), + [aux_sym_cmd_identifier_token15] = ACTIONS(2372), + [aux_sym_cmd_identifier_token16] = ACTIONS(2372), + [aux_sym_cmd_identifier_token17] = ACTIONS(2372), + [aux_sym_cmd_identifier_token18] = ACTIONS(2372), + [aux_sym_cmd_identifier_token19] = ACTIONS(2372), + [aux_sym_cmd_identifier_token20] = ACTIONS(2372), + [aux_sym_cmd_identifier_token21] = ACTIONS(2372), + [aux_sym_cmd_identifier_token22] = ACTIONS(2372), + [aux_sym_cmd_identifier_token23] = ACTIONS(2372), + [aux_sym_cmd_identifier_token24] = ACTIONS(2372), + [aux_sym_cmd_identifier_token25] = ACTIONS(2372), + [aux_sym_cmd_identifier_token26] = ACTIONS(2372), + [aux_sym_cmd_identifier_token27] = ACTIONS(2372), + [aux_sym_cmd_identifier_token28] = ACTIONS(2372), + [aux_sym_cmd_identifier_token29] = ACTIONS(2372), + [aux_sym_cmd_identifier_token30] = ACTIONS(2372), + [aux_sym_cmd_identifier_token31] = ACTIONS(2372), + [aux_sym_cmd_identifier_token32] = ACTIONS(2372), + [aux_sym_cmd_identifier_token33] = ACTIONS(2372), + [aux_sym_cmd_identifier_token34] = ACTIONS(2372), + [aux_sym_cmd_identifier_token35] = ACTIONS(2372), + [aux_sym_cmd_identifier_token36] = ACTIONS(2372), + [anon_sym_true] = ACTIONS(2374), + [anon_sym_false] = ACTIONS(2374), + [anon_sym_null] = ACTIONS(2374), + [aux_sym_cmd_identifier_token38] = ACTIONS(2372), + [aux_sym_cmd_identifier_token39] = ACTIONS(2374), + [aux_sym_cmd_identifier_token40] = ACTIONS(2374), + [anon_sym_def] = ACTIONS(2372), + [anon_sym_export_DASHenv] = ACTIONS(2372), + [anon_sym_extern] = ACTIONS(2372), + [anon_sym_module] = ACTIONS(2372), + [anon_sym_use] = ACTIONS(2372), + [anon_sym_LPAREN] = ACTIONS(2372), + [anon_sym_DOLLAR] = ACTIONS(2374), + [anon_sym_error] = ACTIONS(2372), + [anon_sym_list] = ACTIONS(2372), + [anon_sym_DASH] = ACTIONS(2372), + [anon_sym_break] = ACTIONS(2372), + [anon_sym_continue] = ACTIONS(2372), + [anon_sym_for] = ACTIONS(2372), + [anon_sym_in] = ACTIONS(2372), + [anon_sym_loop] = ACTIONS(2372), + [anon_sym_make] = ACTIONS(2372), + [anon_sym_while] = ACTIONS(2372), + [anon_sym_do] = ACTIONS(2372), + [anon_sym_if] = ACTIONS(2372), + [anon_sym_else] = ACTIONS(2372), + [anon_sym_match] = ACTIONS(2372), + [anon_sym_RBRACE] = ACTIONS(2374), + [anon_sym_try] = ACTIONS(2372), + [anon_sym_catch] = ACTIONS(2372), + [anon_sym_return] = ACTIONS(2372), + [anon_sym_source] = ACTIONS(2372), + [anon_sym_source_DASHenv] = ACTIONS(2372), + [anon_sym_register] = ACTIONS(2372), + [anon_sym_hide] = ACTIONS(2372), + [anon_sym_hide_DASHenv] = ACTIONS(2372), + [anon_sym_overlay] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2372), + [anon_sym_as] = ACTIONS(2372), + [anon_sym_LPAREN2] = ACTIONS(2374), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2374), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2374), + [aux_sym__val_number_decimal_token1] = ACTIONS(2372), + [aux_sym__val_number_decimal_token2] = ACTIONS(2374), + [aux_sym__val_number_decimal_token3] = ACTIONS(2374), + [aux_sym__val_number_decimal_token4] = ACTIONS(2374), + [aux_sym__val_number_token1] = ACTIONS(2374), + [aux_sym__val_number_token2] = ACTIONS(2374), + [aux_sym__val_number_token3] = ACTIONS(2374), + [anon_sym_DQUOTE] = ACTIONS(2374), + [sym__str_single_quotes] = ACTIONS(2374), + [sym__str_back_ticks] = ACTIONS(2374), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2374), + [anon_sym_PLUS] = ACTIONS(2372), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2374), + }, + [560] = { + [sym_comment] = STATE(560), [anon_sym_export] = ACTIONS(2430), [anon_sym_alias] = ACTIONS(2430), [anon_sym_let] = ACTIONS(2430), @@ -138837,109 +139307,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__entry_separator] = ACTIONS(2432), [anon_sym_PLUS] = ACTIONS(2430), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2432), }, - [572] = { - [sym_comment] = STATE(572), - [anon_sym_export] = ACTIONS(1888), - [anon_sym_alias] = ACTIONS(1888), - [anon_sym_let] = ACTIONS(1888), - [anon_sym_let_DASHenv] = ACTIONS(1888), - [anon_sym_mut] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(1888), - [aux_sym_cmd_identifier_token1] = ACTIONS(1888), - [aux_sym_cmd_identifier_token2] = ACTIONS(1888), - [aux_sym_cmd_identifier_token3] = ACTIONS(1888), - [aux_sym_cmd_identifier_token4] = ACTIONS(1888), - [aux_sym_cmd_identifier_token5] = ACTIONS(1888), - [aux_sym_cmd_identifier_token6] = ACTIONS(1888), - [aux_sym_cmd_identifier_token7] = ACTIONS(1888), - [aux_sym_cmd_identifier_token8] = ACTIONS(1888), - [aux_sym_cmd_identifier_token9] = ACTIONS(1888), - [aux_sym_cmd_identifier_token10] = ACTIONS(1888), - [aux_sym_cmd_identifier_token11] = ACTIONS(1888), - [aux_sym_cmd_identifier_token12] = ACTIONS(1888), - [aux_sym_cmd_identifier_token13] = ACTIONS(1888), - [aux_sym_cmd_identifier_token14] = ACTIONS(1888), - [aux_sym_cmd_identifier_token15] = ACTIONS(1888), - [aux_sym_cmd_identifier_token16] = ACTIONS(1888), - [aux_sym_cmd_identifier_token17] = ACTIONS(1888), - [aux_sym_cmd_identifier_token18] = ACTIONS(1888), - [aux_sym_cmd_identifier_token19] = ACTIONS(1888), - [aux_sym_cmd_identifier_token20] = ACTIONS(1888), - [aux_sym_cmd_identifier_token21] = ACTIONS(1888), - [aux_sym_cmd_identifier_token22] = ACTIONS(1888), - [aux_sym_cmd_identifier_token23] = ACTIONS(1888), - [aux_sym_cmd_identifier_token24] = ACTIONS(1888), - [aux_sym_cmd_identifier_token25] = ACTIONS(1888), - [aux_sym_cmd_identifier_token26] = ACTIONS(1888), - [aux_sym_cmd_identifier_token27] = ACTIONS(1888), - [aux_sym_cmd_identifier_token28] = ACTIONS(1888), - [aux_sym_cmd_identifier_token29] = ACTIONS(1888), - [aux_sym_cmd_identifier_token30] = ACTIONS(1888), - [aux_sym_cmd_identifier_token31] = ACTIONS(1888), - [aux_sym_cmd_identifier_token32] = ACTIONS(1888), - [aux_sym_cmd_identifier_token33] = ACTIONS(1888), - [aux_sym_cmd_identifier_token34] = ACTIONS(1888), - [aux_sym_cmd_identifier_token35] = ACTIONS(1888), - [aux_sym_cmd_identifier_token36] = ACTIONS(1888), - [anon_sym_true] = ACTIONS(1888), - [anon_sym_false] = ACTIONS(1888), - [anon_sym_null] = ACTIONS(1888), - [aux_sym_cmd_identifier_token38] = ACTIONS(1888), - [aux_sym_cmd_identifier_token39] = ACTIONS(1888), - [aux_sym_cmd_identifier_token40] = ACTIONS(1888), - [anon_sym_def] = ACTIONS(1888), - [anon_sym_export_DASHenv] = ACTIONS(1888), - [anon_sym_extern] = ACTIONS(1888), - [anon_sym_module] = ACTIONS(1888), - [anon_sym_use] = ACTIONS(1888), - [anon_sym_LPAREN] = ACTIONS(1888), - [anon_sym_DOLLAR] = ACTIONS(1888), - [anon_sym_error] = ACTIONS(1888), - [anon_sym_list] = ACTIONS(1888), - [anon_sym_DASH] = ACTIONS(1888), - [anon_sym_break] = ACTIONS(1888), - [anon_sym_continue] = ACTIONS(1888), - [anon_sym_for] = ACTIONS(1888), - [anon_sym_in] = ACTIONS(1888), - [anon_sym_loop] = ACTIONS(1888), - [anon_sym_make] = ACTIONS(1888), - [anon_sym_while] = ACTIONS(1888), - [anon_sym_do] = ACTIONS(1888), - [anon_sym_if] = ACTIONS(1888), - [anon_sym_else] = ACTIONS(1888), - [anon_sym_match] = ACTIONS(1888), - [anon_sym_RBRACE] = ACTIONS(1888), - [anon_sym_try] = ACTIONS(1888), - [anon_sym_catch] = ACTIONS(1888), - [anon_sym_return] = ACTIONS(1888), - [anon_sym_source] = ACTIONS(1888), - [anon_sym_source_DASHenv] = ACTIONS(1888), - [anon_sym_register] = ACTIONS(1888), - [anon_sym_hide] = ACTIONS(1888), - [anon_sym_hide_DASHenv] = ACTIONS(1888), - [anon_sym_overlay] = ACTIONS(1888), - [anon_sym_new] = ACTIONS(1888), - [anon_sym_as] = ACTIONS(1888), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1888), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1888), - [aux_sym__val_number_decimal_token1] = ACTIONS(1888), - [aux_sym__val_number_decimal_token2] = ACTIONS(1888), - [aux_sym__val_number_decimal_token3] = ACTIONS(1888), - [aux_sym__val_number_decimal_token4] = ACTIONS(1888), - [aux_sym__val_number_token1] = ACTIONS(1888), - [aux_sym__val_number_token2] = ACTIONS(1888), - [aux_sym__val_number_token3] = ACTIONS(1888), - [anon_sym_DQUOTE] = ACTIONS(1888), - [sym__str_single_quotes] = ACTIONS(1888), - [sym__str_back_ticks] = ACTIONS(1888), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1888), - [sym__entry_separator] = ACTIONS(1890), - [anon_sym_PLUS] = ACTIONS(1888), + [561] = { + [sym_comment] = STATE(561), + [anon_sym_export] = ACTIONS(2206), + [anon_sym_alias] = ACTIONS(2206), + [anon_sym_let] = ACTIONS(2206), + [anon_sym_let_DASHenv] = ACTIONS(2206), + [anon_sym_mut] = ACTIONS(2206), + [anon_sym_const] = ACTIONS(2206), + [aux_sym_cmd_identifier_token1] = ACTIONS(2206), + [aux_sym_cmd_identifier_token2] = ACTIONS(2206), + [aux_sym_cmd_identifier_token3] = ACTIONS(2206), + [aux_sym_cmd_identifier_token4] = ACTIONS(2206), + [aux_sym_cmd_identifier_token5] = ACTIONS(2206), + [aux_sym_cmd_identifier_token6] = ACTIONS(2206), + [aux_sym_cmd_identifier_token7] = ACTIONS(2206), + [aux_sym_cmd_identifier_token8] = ACTIONS(2206), + [aux_sym_cmd_identifier_token9] = ACTIONS(2206), + [aux_sym_cmd_identifier_token10] = ACTIONS(2206), + [aux_sym_cmd_identifier_token11] = ACTIONS(2206), + [aux_sym_cmd_identifier_token12] = ACTIONS(2206), + [aux_sym_cmd_identifier_token13] = ACTIONS(2206), + [aux_sym_cmd_identifier_token14] = ACTIONS(2206), + [aux_sym_cmd_identifier_token15] = ACTIONS(2206), + [aux_sym_cmd_identifier_token16] = ACTIONS(2206), + [aux_sym_cmd_identifier_token17] = ACTIONS(2206), + [aux_sym_cmd_identifier_token18] = ACTIONS(2206), + [aux_sym_cmd_identifier_token19] = ACTIONS(2206), + [aux_sym_cmd_identifier_token20] = ACTIONS(2206), + [aux_sym_cmd_identifier_token21] = ACTIONS(2206), + [aux_sym_cmd_identifier_token22] = ACTIONS(2206), + [aux_sym_cmd_identifier_token23] = ACTIONS(2206), + [aux_sym_cmd_identifier_token24] = ACTIONS(2206), + [aux_sym_cmd_identifier_token25] = ACTIONS(2206), + [aux_sym_cmd_identifier_token26] = ACTIONS(2206), + [aux_sym_cmd_identifier_token27] = ACTIONS(2206), + [aux_sym_cmd_identifier_token28] = ACTIONS(2206), + [aux_sym_cmd_identifier_token29] = ACTIONS(2206), + [aux_sym_cmd_identifier_token30] = ACTIONS(2206), + [aux_sym_cmd_identifier_token31] = ACTIONS(2206), + [aux_sym_cmd_identifier_token32] = ACTIONS(2206), + [aux_sym_cmd_identifier_token33] = ACTIONS(2206), + [aux_sym_cmd_identifier_token34] = ACTIONS(2206), + [aux_sym_cmd_identifier_token35] = ACTIONS(2206), + [aux_sym_cmd_identifier_token36] = ACTIONS(2206), + [anon_sym_true] = ACTIONS(2206), + [anon_sym_false] = ACTIONS(2206), + [anon_sym_null] = ACTIONS(2206), + [aux_sym_cmd_identifier_token38] = ACTIONS(2206), + [aux_sym_cmd_identifier_token39] = ACTIONS(2206), + [aux_sym_cmd_identifier_token40] = ACTIONS(2206), + [anon_sym_def] = ACTIONS(2206), + [anon_sym_export_DASHenv] = ACTIONS(2206), + [anon_sym_extern] = ACTIONS(2206), + [anon_sym_module] = ACTIONS(2206), + [anon_sym_use] = ACTIONS(2206), + [anon_sym_LPAREN] = ACTIONS(2206), + [anon_sym_DOLLAR] = ACTIONS(2206), + [anon_sym_error] = ACTIONS(2206), + [anon_sym_list] = ACTIONS(2206), + [anon_sym_DASH] = ACTIONS(2206), + [anon_sym_break] = ACTIONS(2206), + [anon_sym_continue] = ACTIONS(2206), + [anon_sym_for] = ACTIONS(2206), + [anon_sym_in] = ACTIONS(2206), + [anon_sym_loop] = ACTIONS(2206), + [anon_sym_make] = ACTIONS(2206), + [anon_sym_while] = ACTIONS(2206), + [anon_sym_do] = ACTIONS(2206), + [anon_sym_if] = ACTIONS(2206), + [anon_sym_else] = ACTIONS(2206), + [anon_sym_match] = ACTIONS(2206), + [anon_sym_RBRACE] = ACTIONS(2206), + [anon_sym_try] = ACTIONS(2206), + [anon_sym_catch] = ACTIONS(2206), + [anon_sym_return] = ACTIONS(2206), + [anon_sym_source] = ACTIONS(2206), + [anon_sym_source_DASHenv] = ACTIONS(2206), + [anon_sym_register] = ACTIONS(2206), + [anon_sym_hide] = ACTIONS(2206), + [anon_sym_hide_DASHenv] = ACTIONS(2206), + [anon_sym_overlay] = ACTIONS(2206), + [anon_sym_new] = ACTIONS(2206), + [anon_sym_as] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2206), + [aux_sym__val_number_decimal_token1] = ACTIONS(2206), + [aux_sym__val_number_decimal_token2] = ACTIONS(2206), + [aux_sym__val_number_decimal_token3] = ACTIONS(2206), + [aux_sym__val_number_decimal_token4] = ACTIONS(2206), + [aux_sym__val_number_token1] = ACTIONS(2206), + [aux_sym__val_number_token2] = ACTIONS(2206), + [aux_sym__val_number_token3] = ACTIONS(2206), + [anon_sym_DQUOTE] = ACTIONS(2206), + [sym__str_single_quotes] = ACTIONS(2206), + [sym__str_back_ticks] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2206), + [sym__entry_separator] = ACTIONS(2212), + [anon_sym_PLUS] = ACTIONS(2206), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2212), }, - [573] = { - [sym_comment] = STATE(573), + [562] = { + [sym_comment] = STATE(562), [anon_sym_export] = ACTIONS(2434), [anon_sym_alias] = ACTIONS(2434), [anon_sym_let] = ACTIONS(2434), @@ -139037,9 +139509,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__entry_separator] = ACTIONS(2436), [anon_sym_PLUS] = ACTIONS(2434), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2436), }, - [574] = { - [sym_comment] = STATE(574), + [563] = { + [sym_comment] = STATE(563), + [anon_sym_export] = ACTIONS(2059), + [anon_sym_alias] = ACTIONS(2059), + [anon_sym_let] = ACTIONS(2059), + [anon_sym_let_DASHenv] = ACTIONS(2059), + [anon_sym_mut] = ACTIONS(2059), + [anon_sym_const] = ACTIONS(2059), + [aux_sym_cmd_identifier_token1] = ACTIONS(2059), + [aux_sym_cmd_identifier_token2] = ACTIONS(2059), + [aux_sym_cmd_identifier_token3] = ACTIONS(2059), + [aux_sym_cmd_identifier_token4] = ACTIONS(2059), + [aux_sym_cmd_identifier_token5] = ACTIONS(2059), + [aux_sym_cmd_identifier_token6] = ACTIONS(2059), + [aux_sym_cmd_identifier_token7] = ACTIONS(2059), + [aux_sym_cmd_identifier_token8] = ACTIONS(2059), + [aux_sym_cmd_identifier_token9] = ACTIONS(2059), + [aux_sym_cmd_identifier_token10] = ACTIONS(2059), + [aux_sym_cmd_identifier_token11] = ACTIONS(2059), + [aux_sym_cmd_identifier_token12] = ACTIONS(2059), + [aux_sym_cmd_identifier_token13] = ACTIONS(2059), + [aux_sym_cmd_identifier_token14] = ACTIONS(2059), + [aux_sym_cmd_identifier_token15] = ACTIONS(2059), + [aux_sym_cmd_identifier_token16] = ACTIONS(2059), + [aux_sym_cmd_identifier_token17] = ACTIONS(2059), + [aux_sym_cmd_identifier_token18] = ACTIONS(2059), + [aux_sym_cmd_identifier_token19] = ACTIONS(2059), + [aux_sym_cmd_identifier_token20] = ACTIONS(2059), + [aux_sym_cmd_identifier_token21] = ACTIONS(2059), + [aux_sym_cmd_identifier_token22] = ACTIONS(2059), + [aux_sym_cmd_identifier_token23] = ACTIONS(2059), + [aux_sym_cmd_identifier_token24] = ACTIONS(2059), + [aux_sym_cmd_identifier_token25] = ACTIONS(2059), + [aux_sym_cmd_identifier_token26] = ACTIONS(2059), + [aux_sym_cmd_identifier_token27] = ACTIONS(2059), + [aux_sym_cmd_identifier_token28] = ACTIONS(2059), + [aux_sym_cmd_identifier_token29] = ACTIONS(2059), + [aux_sym_cmd_identifier_token30] = ACTIONS(2059), + [aux_sym_cmd_identifier_token31] = ACTIONS(2059), + [aux_sym_cmd_identifier_token32] = ACTIONS(2059), + [aux_sym_cmd_identifier_token33] = ACTIONS(2059), + [aux_sym_cmd_identifier_token34] = ACTIONS(2059), + [aux_sym_cmd_identifier_token35] = ACTIONS(2059), + [aux_sym_cmd_identifier_token36] = ACTIONS(2059), + [anon_sym_true] = ACTIONS(2059), + [anon_sym_false] = ACTIONS(2059), + [anon_sym_null] = ACTIONS(2059), + [aux_sym_cmd_identifier_token38] = ACTIONS(2059), + [aux_sym_cmd_identifier_token39] = ACTIONS(2059), + [aux_sym_cmd_identifier_token40] = ACTIONS(2059), + [anon_sym_def] = ACTIONS(2059), + [anon_sym_export_DASHenv] = ACTIONS(2059), + [anon_sym_extern] = ACTIONS(2059), + [anon_sym_module] = ACTIONS(2059), + [anon_sym_use] = ACTIONS(2059), + [anon_sym_LPAREN] = ACTIONS(2059), + [anon_sym_DOLLAR] = ACTIONS(2059), + [anon_sym_error] = ACTIONS(2059), + [anon_sym_list] = ACTIONS(2059), + [anon_sym_DASH] = ACTIONS(2059), + [anon_sym_break] = ACTIONS(2059), + [anon_sym_continue] = ACTIONS(2059), + [anon_sym_for] = ACTIONS(2059), + [anon_sym_in] = ACTIONS(2059), + [anon_sym_loop] = ACTIONS(2059), + [anon_sym_make] = ACTIONS(2059), + [anon_sym_while] = ACTIONS(2059), + [anon_sym_do] = ACTIONS(2059), + [anon_sym_if] = ACTIONS(2059), + [anon_sym_else] = ACTIONS(2059), + [anon_sym_match] = ACTIONS(2059), + [anon_sym_RBRACE] = ACTIONS(2059), + [anon_sym_try] = ACTIONS(2059), + [anon_sym_catch] = ACTIONS(2059), + [anon_sym_return] = ACTIONS(2059), + [anon_sym_source] = ACTIONS(2059), + [anon_sym_source_DASHenv] = ACTIONS(2059), + [anon_sym_register] = ACTIONS(2059), + [anon_sym_hide] = ACTIONS(2059), + [anon_sym_hide_DASHenv] = ACTIONS(2059), + [anon_sym_overlay] = ACTIONS(2059), + [anon_sym_new] = ACTIONS(2059), + [anon_sym_as] = ACTIONS(2059), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2059), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2059), + [aux_sym__val_number_decimal_token1] = ACTIONS(2059), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2059), + [aux_sym__val_number_decimal_token4] = ACTIONS(2059), + [aux_sym__val_number_token1] = ACTIONS(2059), + [aux_sym__val_number_token2] = ACTIONS(2059), + [aux_sym__val_number_token3] = ACTIONS(2059), + [anon_sym_DQUOTE] = ACTIONS(2059), + [sym__str_single_quotes] = ACTIONS(2059), + [sym__str_back_ticks] = ACTIONS(2059), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2059), + [sym__entry_separator] = ACTIONS(2061), + [anon_sym_PLUS] = ACTIONS(2059), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2061), + }, + [564] = { + [sym_comment] = STATE(564), [anon_sym_export] = ACTIONS(2438), [anon_sym_alias] = ACTIONS(2438), [anon_sym_let] = ACTIONS(2438), @@ -139137,409 +139711,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__entry_separator] = ACTIONS(2440), [anon_sym_PLUS] = ACTIONS(2438), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2440), }, - [575] = { - [sym_comment] = STATE(575), - [anon_sym_export] = ACTIONS(1892), - [anon_sym_alias] = ACTIONS(1892), - [anon_sym_let] = ACTIONS(1892), - [anon_sym_let_DASHenv] = ACTIONS(1892), - [anon_sym_mut] = ACTIONS(1892), - [anon_sym_const] = ACTIONS(1892), - [aux_sym_cmd_identifier_token1] = ACTIONS(1892), - [aux_sym_cmd_identifier_token2] = ACTIONS(1892), - [aux_sym_cmd_identifier_token3] = ACTIONS(1892), - [aux_sym_cmd_identifier_token4] = ACTIONS(1892), - [aux_sym_cmd_identifier_token5] = ACTIONS(1892), - [aux_sym_cmd_identifier_token6] = ACTIONS(1892), - [aux_sym_cmd_identifier_token7] = ACTIONS(1892), - [aux_sym_cmd_identifier_token8] = ACTIONS(1892), - [aux_sym_cmd_identifier_token9] = ACTIONS(1892), - [aux_sym_cmd_identifier_token10] = ACTIONS(1892), - [aux_sym_cmd_identifier_token11] = ACTIONS(1892), - [aux_sym_cmd_identifier_token12] = ACTIONS(1892), - [aux_sym_cmd_identifier_token13] = ACTIONS(1892), - [aux_sym_cmd_identifier_token14] = ACTIONS(1892), - [aux_sym_cmd_identifier_token15] = ACTIONS(1892), - [aux_sym_cmd_identifier_token16] = ACTIONS(1892), - [aux_sym_cmd_identifier_token17] = ACTIONS(1892), - [aux_sym_cmd_identifier_token18] = ACTIONS(1892), - [aux_sym_cmd_identifier_token19] = ACTIONS(1892), - [aux_sym_cmd_identifier_token20] = ACTIONS(1892), - [aux_sym_cmd_identifier_token21] = ACTIONS(1892), - [aux_sym_cmd_identifier_token22] = ACTIONS(1892), - [aux_sym_cmd_identifier_token23] = ACTIONS(1892), - [aux_sym_cmd_identifier_token24] = ACTIONS(1892), - [aux_sym_cmd_identifier_token25] = ACTIONS(1892), - [aux_sym_cmd_identifier_token26] = ACTIONS(1892), - [aux_sym_cmd_identifier_token27] = ACTIONS(1892), - [aux_sym_cmd_identifier_token28] = ACTIONS(1892), - [aux_sym_cmd_identifier_token29] = ACTIONS(1892), - [aux_sym_cmd_identifier_token30] = ACTIONS(1892), - [aux_sym_cmd_identifier_token31] = ACTIONS(1892), - [aux_sym_cmd_identifier_token32] = ACTIONS(1892), - [aux_sym_cmd_identifier_token33] = ACTIONS(1892), - [aux_sym_cmd_identifier_token34] = ACTIONS(1892), - [aux_sym_cmd_identifier_token35] = ACTIONS(1892), - [aux_sym_cmd_identifier_token36] = ACTIONS(1892), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [anon_sym_null] = ACTIONS(1892), - [aux_sym_cmd_identifier_token38] = ACTIONS(1892), - [aux_sym_cmd_identifier_token39] = ACTIONS(1892), - [aux_sym_cmd_identifier_token40] = ACTIONS(1892), - [anon_sym_def] = ACTIONS(1892), - [anon_sym_export_DASHenv] = ACTIONS(1892), - [anon_sym_extern] = ACTIONS(1892), - [anon_sym_module] = ACTIONS(1892), - [anon_sym_use] = ACTIONS(1892), - [anon_sym_LPAREN] = ACTIONS(1892), - [anon_sym_DOLLAR] = ACTIONS(1892), - [anon_sym_error] = ACTIONS(1892), - [anon_sym_list] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1892), - [anon_sym_break] = ACTIONS(1892), - [anon_sym_continue] = ACTIONS(1892), - [anon_sym_for] = ACTIONS(1892), - [anon_sym_in] = ACTIONS(1892), - [anon_sym_loop] = ACTIONS(1892), - [anon_sym_make] = ACTIONS(1892), - [anon_sym_while] = ACTIONS(1892), - [anon_sym_do] = ACTIONS(1892), - [anon_sym_if] = ACTIONS(1892), - [anon_sym_else] = ACTIONS(1892), - [anon_sym_match] = ACTIONS(1892), - [anon_sym_RBRACE] = ACTIONS(1892), - [anon_sym_try] = ACTIONS(1892), - [anon_sym_catch] = ACTIONS(1892), - [anon_sym_return] = ACTIONS(1892), - [anon_sym_source] = ACTIONS(1892), - [anon_sym_source_DASHenv] = ACTIONS(1892), - [anon_sym_register] = ACTIONS(1892), - [anon_sym_hide] = ACTIONS(1892), - [anon_sym_hide_DASHenv] = ACTIONS(1892), - [anon_sym_overlay] = ACTIONS(1892), - [anon_sym_new] = ACTIONS(1892), - [anon_sym_as] = ACTIONS(1892), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1892), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1892), - [aux_sym__val_number_decimal_token1] = ACTIONS(1892), - [aux_sym__val_number_decimal_token2] = ACTIONS(1892), - [aux_sym__val_number_decimal_token3] = ACTIONS(1892), - [aux_sym__val_number_decimal_token4] = ACTIONS(1892), - [aux_sym__val_number_token1] = ACTIONS(1892), - [aux_sym__val_number_token2] = ACTIONS(1892), - [aux_sym__val_number_token3] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1892), - [sym__str_single_quotes] = ACTIONS(1892), - [sym__str_back_ticks] = ACTIONS(1892), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1892), - [sym__entry_separator] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1892), - [anon_sym_POUND] = ACTIONS(3), - }, - [576] = { - [sym_comment] = STATE(576), - [anon_sym_export] = ACTIONS(2376), - [anon_sym_alias] = ACTIONS(2376), - [anon_sym_let] = ACTIONS(2376), - [anon_sym_let_DASHenv] = ACTIONS(2376), - [anon_sym_mut] = ACTIONS(2376), - [anon_sym_const] = ACTIONS(2376), - [aux_sym_cmd_identifier_token1] = ACTIONS(2376), - [aux_sym_cmd_identifier_token2] = ACTIONS(2376), - [aux_sym_cmd_identifier_token3] = ACTIONS(2376), - [aux_sym_cmd_identifier_token4] = ACTIONS(2376), - [aux_sym_cmd_identifier_token5] = ACTIONS(2376), - [aux_sym_cmd_identifier_token6] = ACTIONS(2376), - [aux_sym_cmd_identifier_token7] = ACTIONS(2376), - [aux_sym_cmd_identifier_token8] = ACTIONS(2376), - [aux_sym_cmd_identifier_token9] = ACTIONS(2376), - [aux_sym_cmd_identifier_token10] = ACTIONS(2376), - [aux_sym_cmd_identifier_token11] = ACTIONS(2376), - [aux_sym_cmd_identifier_token12] = ACTIONS(2376), - [aux_sym_cmd_identifier_token13] = ACTIONS(2376), - [aux_sym_cmd_identifier_token14] = ACTIONS(2376), - [aux_sym_cmd_identifier_token15] = ACTIONS(2376), - [aux_sym_cmd_identifier_token16] = ACTIONS(2376), - [aux_sym_cmd_identifier_token17] = ACTIONS(2376), - [aux_sym_cmd_identifier_token18] = ACTIONS(2376), - [aux_sym_cmd_identifier_token19] = ACTIONS(2376), - [aux_sym_cmd_identifier_token20] = ACTIONS(2376), - [aux_sym_cmd_identifier_token21] = ACTIONS(2376), - [aux_sym_cmd_identifier_token22] = ACTIONS(2376), - [aux_sym_cmd_identifier_token23] = ACTIONS(2376), - [aux_sym_cmd_identifier_token24] = ACTIONS(2376), - [aux_sym_cmd_identifier_token25] = ACTIONS(2376), - [aux_sym_cmd_identifier_token26] = ACTIONS(2376), - [aux_sym_cmd_identifier_token27] = ACTIONS(2376), - [aux_sym_cmd_identifier_token28] = ACTIONS(2376), - [aux_sym_cmd_identifier_token29] = ACTIONS(2376), - [aux_sym_cmd_identifier_token30] = ACTIONS(2376), - [aux_sym_cmd_identifier_token31] = ACTIONS(2376), - [aux_sym_cmd_identifier_token32] = ACTIONS(2376), - [aux_sym_cmd_identifier_token33] = ACTIONS(2376), - [aux_sym_cmd_identifier_token34] = ACTIONS(2376), - [aux_sym_cmd_identifier_token35] = ACTIONS(2376), - [aux_sym_cmd_identifier_token36] = ACTIONS(2376), - [anon_sym_true] = ACTIONS(2378), - [anon_sym_false] = ACTIONS(2378), - [anon_sym_null] = ACTIONS(2378), - [aux_sym_cmd_identifier_token38] = ACTIONS(2376), - [aux_sym_cmd_identifier_token39] = ACTIONS(2378), - [aux_sym_cmd_identifier_token40] = ACTIONS(2378), - [anon_sym_def] = ACTIONS(2376), - [anon_sym_export_DASHenv] = ACTIONS(2376), - [anon_sym_extern] = ACTIONS(2376), - [anon_sym_module] = ACTIONS(2376), - [anon_sym_use] = ACTIONS(2376), - [anon_sym_LPAREN] = ACTIONS(2376), - [anon_sym_DOLLAR] = ACTIONS(2378), - [anon_sym_error] = ACTIONS(2376), - [anon_sym_list] = ACTIONS(2376), - [anon_sym_DASH] = ACTIONS(2376), - [anon_sym_break] = ACTIONS(2376), - [anon_sym_continue] = ACTIONS(2376), - [anon_sym_for] = ACTIONS(2376), - [anon_sym_in] = ACTIONS(2376), - [anon_sym_loop] = ACTIONS(2376), - [anon_sym_make] = ACTIONS(2376), - [anon_sym_while] = ACTIONS(2376), - [anon_sym_do] = ACTIONS(2376), - [anon_sym_if] = ACTIONS(2376), - [anon_sym_else] = ACTIONS(2376), - [anon_sym_match] = ACTIONS(2376), - [anon_sym_RBRACE] = ACTIONS(2378), - [anon_sym_try] = ACTIONS(2376), - [anon_sym_catch] = ACTIONS(2376), - [anon_sym_return] = ACTIONS(2376), - [anon_sym_source] = ACTIONS(2376), - [anon_sym_source_DASHenv] = ACTIONS(2376), - [anon_sym_register] = ACTIONS(2376), - [anon_sym_hide] = ACTIONS(2376), - [anon_sym_hide_DASHenv] = ACTIONS(2376), - [anon_sym_overlay] = ACTIONS(2376), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_as] = ACTIONS(2376), - [anon_sym_LPAREN2] = ACTIONS(2378), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2378), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2378), - [aux_sym__val_number_decimal_token1] = ACTIONS(2376), - [aux_sym__val_number_decimal_token2] = ACTIONS(2378), - [aux_sym__val_number_decimal_token3] = ACTIONS(2378), - [aux_sym__val_number_decimal_token4] = ACTIONS(2378), - [aux_sym__val_number_token1] = ACTIONS(2378), - [aux_sym__val_number_token2] = ACTIONS(2378), - [aux_sym__val_number_token3] = ACTIONS(2378), - [anon_sym_DQUOTE] = ACTIONS(2378), - [sym__str_single_quotes] = ACTIONS(2378), - [sym__str_back_ticks] = ACTIONS(2378), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2378), - [anon_sym_PLUS] = ACTIONS(2376), - [anon_sym_POUND] = ACTIONS(247), - }, - [577] = { - [sym_comment] = STATE(577), - [anon_sym_export] = ACTIONS(1900), - [anon_sym_alias] = ACTIONS(1900), - [anon_sym_let] = ACTIONS(1900), - [anon_sym_let_DASHenv] = ACTIONS(1900), - [anon_sym_mut] = ACTIONS(1900), - [anon_sym_const] = ACTIONS(1900), - [aux_sym_cmd_identifier_token1] = ACTIONS(1900), - [aux_sym_cmd_identifier_token2] = ACTIONS(1900), - [aux_sym_cmd_identifier_token3] = ACTIONS(1900), - [aux_sym_cmd_identifier_token4] = ACTIONS(1900), - [aux_sym_cmd_identifier_token5] = ACTIONS(1900), - [aux_sym_cmd_identifier_token6] = ACTIONS(1900), - [aux_sym_cmd_identifier_token7] = ACTIONS(1900), - [aux_sym_cmd_identifier_token8] = ACTIONS(1900), - [aux_sym_cmd_identifier_token9] = ACTIONS(1900), - [aux_sym_cmd_identifier_token10] = ACTIONS(1900), - [aux_sym_cmd_identifier_token11] = ACTIONS(1900), - [aux_sym_cmd_identifier_token12] = ACTIONS(1900), - [aux_sym_cmd_identifier_token13] = ACTIONS(1900), - [aux_sym_cmd_identifier_token14] = ACTIONS(1900), - [aux_sym_cmd_identifier_token15] = ACTIONS(1900), - [aux_sym_cmd_identifier_token16] = ACTIONS(1900), - [aux_sym_cmd_identifier_token17] = ACTIONS(1900), - [aux_sym_cmd_identifier_token18] = ACTIONS(1900), - [aux_sym_cmd_identifier_token19] = ACTIONS(1900), - [aux_sym_cmd_identifier_token20] = ACTIONS(1900), - [aux_sym_cmd_identifier_token21] = ACTIONS(1900), - [aux_sym_cmd_identifier_token22] = ACTIONS(1900), - [aux_sym_cmd_identifier_token23] = ACTIONS(1900), - [aux_sym_cmd_identifier_token24] = ACTIONS(1900), - [aux_sym_cmd_identifier_token25] = ACTIONS(1900), - [aux_sym_cmd_identifier_token26] = ACTIONS(1900), - [aux_sym_cmd_identifier_token27] = ACTIONS(1900), - [aux_sym_cmd_identifier_token28] = ACTIONS(1900), - [aux_sym_cmd_identifier_token29] = ACTIONS(1900), - [aux_sym_cmd_identifier_token30] = ACTIONS(1900), - [aux_sym_cmd_identifier_token31] = ACTIONS(1900), - [aux_sym_cmd_identifier_token32] = ACTIONS(1900), - [aux_sym_cmd_identifier_token33] = ACTIONS(1900), - [aux_sym_cmd_identifier_token34] = ACTIONS(1900), - [aux_sym_cmd_identifier_token35] = ACTIONS(1900), - [aux_sym_cmd_identifier_token36] = ACTIONS(1900), - [anon_sym_true] = ACTIONS(1900), - [anon_sym_false] = ACTIONS(1900), - [anon_sym_null] = ACTIONS(1900), - [aux_sym_cmd_identifier_token38] = ACTIONS(1900), - [aux_sym_cmd_identifier_token39] = ACTIONS(1900), - [aux_sym_cmd_identifier_token40] = ACTIONS(1900), - [anon_sym_def] = ACTIONS(1900), - [anon_sym_export_DASHenv] = ACTIONS(1900), - [anon_sym_extern] = ACTIONS(1900), - [anon_sym_module] = ACTIONS(1900), - [anon_sym_use] = ACTIONS(1900), - [anon_sym_LPAREN] = ACTIONS(1900), - [anon_sym_DOLLAR] = ACTIONS(1900), - [anon_sym_error] = ACTIONS(1900), - [anon_sym_list] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_break] = ACTIONS(1900), - [anon_sym_continue] = ACTIONS(1900), - [anon_sym_for] = ACTIONS(1900), - [anon_sym_in] = ACTIONS(1900), - [anon_sym_loop] = ACTIONS(1900), - [anon_sym_make] = ACTIONS(1900), - [anon_sym_while] = ACTIONS(1900), - [anon_sym_do] = ACTIONS(1900), - [anon_sym_if] = ACTIONS(1900), - [anon_sym_else] = ACTIONS(1900), - [anon_sym_match] = ACTIONS(1900), - [anon_sym_RBRACE] = ACTIONS(1900), - [anon_sym_try] = ACTIONS(1900), - [anon_sym_catch] = ACTIONS(1900), - [anon_sym_return] = ACTIONS(1900), - [anon_sym_source] = ACTIONS(1900), - [anon_sym_source_DASHenv] = ACTIONS(1900), - [anon_sym_register] = ACTIONS(1900), - [anon_sym_hide] = ACTIONS(1900), - [anon_sym_hide_DASHenv] = ACTIONS(1900), - [anon_sym_overlay] = ACTIONS(1900), - [anon_sym_new] = ACTIONS(1900), - [anon_sym_as] = ACTIONS(1900), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1900), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1900), - [aux_sym__val_number_decimal_token1] = ACTIONS(1900), - [aux_sym__val_number_decimal_token2] = ACTIONS(1900), - [aux_sym__val_number_decimal_token3] = ACTIONS(1900), - [aux_sym__val_number_decimal_token4] = ACTIONS(1900), - [aux_sym__val_number_token1] = ACTIONS(1900), - [aux_sym__val_number_token2] = ACTIONS(1900), - [aux_sym__val_number_token3] = ACTIONS(1900), - [anon_sym_DQUOTE] = ACTIONS(1900), - [sym__str_single_quotes] = ACTIONS(1900), - [sym__str_back_ticks] = ACTIONS(1900), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1900), - [sym__entry_separator] = ACTIONS(1902), - [anon_sym_PLUS] = ACTIONS(1900), + [565] = { + [sym_comment] = STATE(565), + [aux_sym__multiple_types_repeat1] = STATE(516), + [anon_sym_export] = ACTIONS(2341), + [anon_sym_alias] = ACTIONS(2341), + [anon_sym_let] = ACTIONS(2341), + [anon_sym_let_DASHenv] = ACTIONS(2341), + [anon_sym_mut] = ACTIONS(2341), + [anon_sym_const] = ACTIONS(2341), + [aux_sym_cmd_identifier_token1] = ACTIONS(2341), + [aux_sym_cmd_identifier_token2] = ACTIONS(2341), + [aux_sym_cmd_identifier_token3] = ACTIONS(2341), + [aux_sym_cmd_identifier_token4] = ACTIONS(2341), + [aux_sym_cmd_identifier_token5] = ACTIONS(2341), + [aux_sym_cmd_identifier_token6] = ACTIONS(2341), + [aux_sym_cmd_identifier_token7] = ACTIONS(2341), + [aux_sym_cmd_identifier_token8] = ACTIONS(2341), + [aux_sym_cmd_identifier_token9] = ACTIONS(2341), + [aux_sym_cmd_identifier_token10] = ACTIONS(2341), + [aux_sym_cmd_identifier_token11] = ACTIONS(2341), + [aux_sym_cmd_identifier_token12] = ACTIONS(2341), + [aux_sym_cmd_identifier_token13] = ACTIONS(2341), + [aux_sym_cmd_identifier_token14] = ACTIONS(2341), + [aux_sym_cmd_identifier_token15] = ACTIONS(2341), + [aux_sym_cmd_identifier_token16] = ACTIONS(2341), + [aux_sym_cmd_identifier_token17] = ACTIONS(2341), + [aux_sym_cmd_identifier_token18] = ACTIONS(2341), + [aux_sym_cmd_identifier_token19] = ACTIONS(2341), + [aux_sym_cmd_identifier_token20] = ACTIONS(2341), + [aux_sym_cmd_identifier_token21] = ACTIONS(2341), + [aux_sym_cmd_identifier_token22] = ACTIONS(2341), + [aux_sym_cmd_identifier_token23] = ACTIONS(2341), + [aux_sym_cmd_identifier_token24] = ACTIONS(2341), + [aux_sym_cmd_identifier_token25] = ACTIONS(2341), + [aux_sym_cmd_identifier_token26] = ACTIONS(2341), + [aux_sym_cmd_identifier_token27] = ACTIONS(2341), + [aux_sym_cmd_identifier_token28] = ACTIONS(2341), + [aux_sym_cmd_identifier_token29] = ACTIONS(2341), + [aux_sym_cmd_identifier_token30] = ACTIONS(2341), + [aux_sym_cmd_identifier_token31] = ACTIONS(2341), + [aux_sym_cmd_identifier_token32] = ACTIONS(2341), + [aux_sym_cmd_identifier_token33] = ACTIONS(2341), + [aux_sym_cmd_identifier_token34] = ACTIONS(2341), + [aux_sym_cmd_identifier_token35] = ACTIONS(2341), + [aux_sym_cmd_identifier_token36] = ACTIONS(2341), + [anon_sym_true] = ACTIONS(2341), + [anon_sym_false] = ACTIONS(2341), + [anon_sym_null] = ACTIONS(2341), + [aux_sym_cmd_identifier_token38] = ACTIONS(2341), + [aux_sym_cmd_identifier_token39] = ACTIONS(2341), + [aux_sym_cmd_identifier_token40] = ACTIONS(2341), + [anon_sym_def] = ACTIONS(2341), + [anon_sym_export_DASHenv] = ACTIONS(2341), + [anon_sym_extern] = ACTIONS(2341), + [anon_sym_module] = ACTIONS(2341), + [anon_sym_use] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(2341), + [anon_sym_DOLLAR] = ACTIONS(2341), + [anon_sym_error] = ACTIONS(2341), + [anon_sym_list] = ACTIONS(2341), + [anon_sym_DASH] = ACTIONS(2341), + [anon_sym_break] = ACTIONS(2341), + [anon_sym_continue] = ACTIONS(2341), + [anon_sym_for] = ACTIONS(2341), + [anon_sym_in] = ACTIONS(2341), + [anon_sym_loop] = ACTIONS(2341), + [anon_sym_make] = ACTIONS(2341), + [anon_sym_while] = ACTIONS(2341), + [anon_sym_do] = ACTIONS(2341), + [anon_sym_if] = ACTIONS(2341), + [anon_sym_else] = ACTIONS(2341), + [anon_sym_match] = ACTIONS(2341), + [anon_sym_try] = ACTIONS(2341), + [anon_sym_catch] = ACTIONS(2341), + [anon_sym_return] = ACTIONS(2341), + [anon_sym_source] = ACTIONS(2341), + [anon_sym_source_DASHenv] = ACTIONS(2341), + [anon_sym_register] = ACTIONS(2341), + [anon_sym_hide] = ACTIONS(2341), + [anon_sym_hide_DASHenv] = ACTIONS(2341), + [anon_sym_overlay] = ACTIONS(2341), + [anon_sym_new] = ACTIONS(2341), + [anon_sym_as] = ACTIONS(2341), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2341), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2341), + [aux_sym__val_number_decimal_token1] = ACTIONS(2341), + [aux_sym__val_number_decimal_token2] = ACTIONS(2341), + [aux_sym__val_number_decimal_token3] = ACTIONS(2341), + [aux_sym__val_number_decimal_token4] = ACTIONS(2341), + [aux_sym__val_number_token1] = ACTIONS(2341), + [aux_sym__val_number_token2] = ACTIONS(2341), + [aux_sym__val_number_token3] = ACTIONS(2341), + [anon_sym_DQUOTE] = ACTIONS(2341), + [sym__str_single_quotes] = ACTIONS(2341), + [sym__str_back_ticks] = ACTIONS(2341), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2341), + [sym__entry_separator] = ACTIONS(2345), + [anon_sym_PLUS] = ACTIONS(2341), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2347), }, - [578] = { - [sym_comment] = STATE(578), - [anon_sym_export] = ACTIONS(1046), - [anon_sym_alias] = ACTIONS(1046), - [anon_sym_let] = ACTIONS(1046), - [anon_sym_let_DASHenv] = ACTIONS(1046), - [anon_sym_mut] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [aux_sym_cmd_identifier_token1] = ACTIONS(1046), - [aux_sym_cmd_identifier_token2] = ACTIONS(1046), - [aux_sym_cmd_identifier_token3] = ACTIONS(1046), - [aux_sym_cmd_identifier_token4] = ACTIONS(1046), - [aux_sym_cmd_identifier_token5] = ACTIONS(1046), - [aux_sym_cmd_identifier_token6] = ACTIONS(1046), - [aux_sym_cmd_identifier_token7] = ACTIONS(1046), - [aux_sym_cmd_identifier_token8] = ACTIONS(1046), - [aux_sym_cmd_identifier_token9] = ACTIONS(1046), - [aux_sym_cmd_identifier_token10] = ACTIONS(1046), - [aux_sym_cmd_identifier_token11] = ACTIONS(1046), - [aux_sym_cmd_identifier_token12] = ACTIONS(1046), - [aux_sym_cmd_identifier_token13] = ACTIONS(1046), - [aux_sym_cmd_identifier_token14] = ACTIONS(1046), - [aux_sym_cmd_identifier_token15] = ACTIONS(1046), - [aux_sym_cmd_identifier_token16] = ACTIONS(1046), - [aux_sym_cmd_identifier_token17] = ACTIONS(1046), - [aux_sym_cmd_identifier_token18] = ACTIONS(1046), - [aux_sym_cmd_identifier_token19] = ACTIONS(1046), - [aux_sym_cmd_identifier_token20] = ACTIONS(1046), - [aux_sym_cmd_identifier_token21] = ACTIONS(1046), - [aux_sym_cmd_identifier_token22] = ACTIONS(1046), - [aux_sym_cmd_identifier_token23] = ACTIONS(1046), - [aux_sym_cmd_identifier_token24] = ACTIONS(1046), - [aux_sym_cmd_identifier_token25] = ACTIONS(1046), - [aux_sym_cmd_identifier_token26] = ACTIONS(1046), - [aux_sym_cmd_identifier_token27] = ACTIONS(1046), - [aux_sym_cmd_identifier_token28] = ACTIONS(1046), - [aux_sym_cmd_identifier_token29] = ACTIONS(1046), - [aux_sym_cmd_identifier_token30] = ACTIONS(1046), - [aux_sym_cmd_identifier_token31] = ACTIONS(1046), - [aux_sym_cmd_identifier_token32] = ACTIONS(1046), - [aux_sym_cmd_identifier_token33] = ACTIONS(1046), - [aux_sym_cmd_identifier_token34] = ACTIONS(1046), - [aux_sym_cmd_identifier_token35] = ACTIONS(1046), - [aux_sym_cmd_identifier_token36] = ACTIONS(1046), - [anon_sym_true] = ACTIONS(1048), - [anon_sym_false] = ACTIONS(1048), - [anon_sym_null] = ACTIONS(1048), - [aux_sym_cmd_identifier_token38] = ACTIONS(1046), - [aux_sym_cmd_identifier_token39] = ACTIONS(1048), - [aux_sym_cmd_identifier_token40] = ACTIONS(1048), - [anon_sym_def] = ACTIONS(1046), - [anon_sym_export_DASHenv] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1046), - [anon_sym_module] = ACTIONS(1046), - [anon_sym_use] = ACTIONS(1046), - [anon_sym_LPAREN] = ACTIONS(1048), - [anon_sym_DOLLAR] = ACTIONS(1048), - [anon_sym_error] = ACTIONS(1046), - [anon_sym_list] = ACTIONS(1046), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_break] = ACTIONS(1046), - [anon_sym_continue] = ACTIONS(1046), - [anon_sym_for] = ACTIONS(1046), - [anon_sym_in] = ACTIONS(1046), - [anon_sym_loop] = ACTIONS(1046), - [anon_sym_make] = ACTIONS(1046), - [anon_sym_while] = ACTIONS(1046), - [anon_sym_do] = ACTIONS(1046), - [anon_sym_if] = ACTIONS(1046), - [anon_sym_else] = ACTIONS(1046), - [anon_sym_match] = ACTIONS(1046), - [anon_sym_RBRACE] = ACTIONS(1048), - [anon_sym_try] = ACTIONS(1046), - [anon_sym_catch] = ACTIONS(1046), - [anon_sym_return] = ACTIONS(1046), - [anon_sym_source] = ACTIONS(1046), - [anon_sym_source_DASHenv] = ACTIONS(1046), - [anon_sym_register] = ACTIONS(1046), - [anon_sym_hide] = ACTIONS(1046), - [anon_sym_hide_DASHenv] = ACTIONS(1046), - [anon_sym_overlay] = ACTIONS(1046), - [anon_sym_new] = ACTIONS(1046), - [anon_sym_as] = ACTIONS(1046), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1048), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1048), - [aux_sym__val_number_decimal_token1] = ACTIONS(1046), - [aux_sym__val_number_decimal_token2] = ACTIONS(1048), - [aux_sym__val_number_decimal_token3] = ACTIONS(1048), - [aux_sym__val_number_decimal_token4] = ACTIONS(1048), - [aux_sym__val_number_token1] = ACTIONS(1048), - [aux_sym__val_number_token2] = ACTIONS(1048), - [aux_sym__val_number_token3] = ACTIONS(1048), - [anon_sym_DQUOTE] = ACTIONS(1048), - [sym__str_single_quotes] = ACTIONS(1048), - [sym__str_back_ticks] = ACTIONS(1048), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1048), - [anon_sym_PLUS] = ACTIONS(1046), - [anon_sym_POUND] = ACTIONS(247), - }, - [579] = { - [sym_comment] = STATE(579), + [566] = { + [sym_comment] = STATE(566), [anon_sym_export] = ACTIONS(2442), [anon_sym_alias] = ACTIONS(2442), [anon_sym_let] = ACTIONS(2442), @@ -139637,9 +139913,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__entry_separator] = ACTIONS(2444), [anon_sym_PLUS] = ACTIONS(2442), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2444), }, - [580] = { - [sym_comment] = STATE(580), + [567] = { + [sym_comment] = STATE(567), + [anon_sym_export] = ACTIONS(2378), + [anon_sym_alias] = ACTIONS(2378), + [anon_sym_let] = ACTIONS(2378), + [anon_sym_let_DASHenv] = ACTIONS(2378), + [anon_sym_mut] = ACTIONS(2378), + [anon_sym_const] = ACTIONS(2378), + [aux_sym_cmd_identifier_token1] = ACTIONS(2378), + [aux_sym_cmd_identifier_token2] = ACTIONS(2378), + [aux_sym_cmd_identifier_token3] = ACTIONS(2378), + [aux_sym_cmd_identifier_token4] = ACTIONS(2378), + [aux_sym_cmd_identifier_token5] = ACTIONS(2378), + [aux_sym_cmd_identifier_token6] = ACTIONS(2378), + [aux_sym_cmd_identifier_token7] = ACTIONS(2378), + [aux_sym_cmd_identifier_token8] = ACTIONS(2378), + [aux_sym_cmd_identifier_token9] = ACTIONS(2378), + [aux_sym_cmd_identifier_token10] = ACTIONS(2378), + [aux_sym_cmd_identifier_token11] = ACTIONS(2378), + [aux_sym_cmd_identifier_token12] = ACTIONS(2378), + [aux_sym_cmd_identifier_token13] = ACTIONS(2378), + [aux_sym_cmd_identifier_token14] = ACTIONS(2378), + [aux_sym_cmd_identifier_token15] = ACTIONS(2378), + [aux_sym_cmd_identifier_token16] = ACTIONS(2378), + [aux_sym_cmd_identifier_token17] = ACTIONS(2378), + [aux_sym_cmd_identifier_token18] = ACTIONS(2378), + [aux_sym_cmd_identifier_token19] = ACTIONS(2378), + [aux_sym_cmd_identifier_token20] = ACTIONS(2378), + [aux_sym_cmd_identifier_token21] = ACTIONS(2378), + [aux_sym_cmd_identifier_token22] = ACTIONS(2378), + [aux_sym_cmd_identifier_token23] = ACTIONS(2378), + [aux_sym_cmd_identifier_token24] = ACTIONS(2378), + [aux_sym_cmd_identifier_token25] = ACTIONS(2378), + [aux_sym_cmd_identifier_token26] = ACTIONS(2378), + [aux_sym_cmd_identifier_token27] = ACTIONS(2378), + [aux_sym_cmd_identifier_token28] = ACTIONS(2378), + [aux_sym_cmd_identifier_token29] = ACTIONS(2378), + [aux_sym_cmd_identifier_token30] = ACTIONS(2378), + [aux_sym_cmd_identifier_token31] = ACTIONS(2378), + [aux_sym_cmd_identifier_token32] = ACTIONS(2378), + [aux_sym_cmd_identifier_token33] = ACTIONS(2378), + [aux_sym_cmd_identifier_token34] = ACTIONS(2378), + [aux_sym_cmd_identifier_token35] = ACTIONS(2378), + [aux_sym_cmd_identifier_token36] = ACTIONS(2378), + [anon_sym_true] = ACTIONS(2380), + [anon_sym_false] = ACTIONS(2380), + [anon_sym_null] = ACTIONS(2380), + [aux_sym_cmd_identifier_token38] = ACTIONS(2378), + [aux_sym_cmd_identifier_token39] = ACTIONS(2380), + [aux_sym_cmd_identifier_token40] = ACTIONS(2380), + [anon_sym_def] = ACTIONS(2378), + [anon_sym_export_DASHenv] = ACTIONS(2378), + [anon_sym_extern] = ACTIONS(2378), + [anon_sym_module] = ACTIONS(2378), + [anon_sym_use] = ACTIONS(2378), + [anon_sym_LPAREN] = ACTIONS(2378), + [anon_sym_DOLLAR] = ACTIONS(2380), + [anon_sym_error] = ACTIONS(2378), + [anon_sym_list] = ACTIONS(2378), + [anon_sym_DASH] = ACTIONS(2378), + [anon_sym_break] = ACTIONS(2378), + [anon_sym_continue] = ACTIONS(2378), + [anon_sym_for] = ACTIONS(2378), + [anon_sym_in] = ACTIONS(2378), + [anon_sym_loop] = ACTIONS(2378), + [anon_sym_make] = ACTIONS(2378), + [anon_sym_while] = ACTIONS(2378), + [anon_sym_do] = ACTIONS(2378), + [anon_sym_if] = ACTIONS(2378), + [anon_sym_else] = ACTIONS(2378), + [anon_sym_match] = ACTIONS(2378), + [anon_sym_RBRACE] = ACTIONS(2380), + [anon_sym_try] = ACTIONS(2378), + [anon_sym_catch] = ACTIONS(2378), + [anon_sym_return] = ACTIONS(2378), + [anon_sym_source] = ACTIONS(2378), + [anon_sym_source_DASHenv] = ACTIONS(2378), + [anon_sym_register] = ACTIONS(2378), + [anon_sym_hide] = ACTIONS(2378), + [anon_sym_hide_DASHenv] = ACTIONS(2378), + [anon_sym_overlay] = ACTIONS(2378), + [anon_sym_new] = ACTIONS(2378), + [anon_sym_as] = ACTIONS(2378), + [anon_sym_LPAREN2] = ACTIONS(2380), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2380), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2380), + [aux_sym__val_number_decimal_token1] = ACTIONS(2378), + [aux_sym__val_number_decimal_token2] = ACTIONS(2380), + [aux_sym__val_number_decimal_token3] = ACTIONS(2380), + [aux_sym__val_number_decimal_token4] = ACTIONS(2380), + [aux_sym__val_number_token1] = ACTIONS(2380), + [aux_sym__val_number_token2] = ACTIONS(2380), + [aux_sym__val_number_token3] = ACTIONS(2380), + [anon_sym_DQUOTE] = ACTIONS(2380), + [sym__str_single_quotes] = ACTIONS(2380), + [sym__str_back_ticks] = ACTIONS(2380), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2380), + [anon_sym_PLUS] = ACTIONS(2378), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2380), + }, + [568] = { + [sym_comment] = STATE(568), [anon_sym_export] = ACTIONS(2446), [anon_sym_alias] = ACTIONS(2446), [anon_sym_let] = ACTIONS(2446), @@ -139737,109 +140115,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__entry_separator] = ACTIONS(2448), [anon_sym_PLUS] = ACTIONS(2446), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2448), }, - [581] = { - [sym_comment] = STATE(581), - [anon_sym_export] = ACTIONS(1904), - [anon_sym_alias] = ACTIONS(1904), - [anon_sym_let] = ACTIONS(1904), - [anon_sym_let_DASHenv] = ACTIONS(1904), - [anon_sym_mut] = ACTIONS(1904), - [anon_sym_const] = ACTIONS(1904), - [aux_sym_cmd_identifier_token1] = ACTIONS(1904), - [aux_sym_cmd_identifier_token2] = ACTIONS(1904), - [aux_sym_cmd_identifier_token3] = ACTIONS(1904), - [aux_sym_cmd_identifier_token4] = ACTIONS(1904), - [aux_sym_cmd_identifier_token5] = ACTIONS(1904), - [aux_sym_cmd_identifier_token6] = ACTIONS(1904), - [aux_sym_cmd_identifier_token7] = ACTIONS(1904), - [aux_sym_cmd_identifier_token8] = ACTIONS(1904), - [aux_sym_cmd_identifier_token9] = ACTIONS(1904), - [aux_sym_cmd_identifier_token10] = ACTIONS(1904), - [aux_sym_cmd_identifier_token11] = ACTIONS(1904), - [aux_sym_cmd_identifier_token12] = ACTIONS(1904), - [aux_sym_cmd_identifier_token13] = ACTIONS(1904), - [aux_sym_cmd_identifier_token14] = ACTIONS(1904), - [aux_sym_cmd_identifier_token15] = ACTIONS(1904), - [aux_sym_cmd_identifier_token16] = ACTIONS(1904), - [aux_sym_cmd_identifier_token17] = ACTIONS(1904), - [aux_sym_cmd_identifier_token18] = ACTIONS(1904), - [aux_sym_cmd_identifier_token19] = ACTIONS(1904), - [aux_sym_cmd_identifier_token20] = ACTIONS(1904), - [aux_sym_cmd_identifier_token21] = ACTIONS(1904), - [aux_sym_cmd_identifier_token22] = ACTIONS(1904), - [aux_sym_cmd_identifier_token23] = ACTIONS(1904), - [aux_sym_cmd_identifier_token24] = ACTIONS(1904), - [aux_sym_cmd_identifier_token25] = ACTIONS(1904), - [aux_sym_cmd_identifier_token26] = ACTIONS(1904), - [aux_sym_cmd_identifier_token27] = ACTIONS(1904), - [aux_sym_cmd_identifier_token28] = ACTIONS(1904), - [aux_sym_cmd_identifier_token29] = ACTIONS(1904), - [aux_sym_cmd_identifier_token30] = ACTIONS(1904), - [aux_sym_cmd_identifier_token31] = ACTIONS(1904), - [aux_sym_cmd_identifier_token32] = ACTIONS(1904), - [aux_sym_cmd_identifier_token33] = ACTIONS(1904), - [aux_sym_cmd_identifier_token34] = ACTIONS(1904), - [aux_sym_cmd_identifier_token35] = ACTIONS(1904), - [aux_sym_cmd_identifier_token36] = ACTIONS(1904), - [anon_sym_true] = ACTIONS(1904), - [anon_sym_false] = ACTIONS(1904), - [anon_sym_null] = ACTIONS(1904), - [aux_sym_cmd_identifier_token38] = ACTIONS(1904), - [aux_sym_cmd_identifier_token39] = ACTIONS(1904), - [aux_sym_cmd_identifier_token40] = ACTIONS(1904), - [anon_sym_def] = ACTIONS(1904), - [anon_sym_export_DASHenv] = ACTIONS(1904), - [anon_sym_extern] = ACTIONS(1904), - [anon_sym_module] = ACTIONS(1904), - [anon_sym_use] = ACTIONS(1904), - [anon_sym_LPAREN] = ACTIONS(1904), - [anon_sym_DOLLAR] = ACTIONS(1904), - [anon_sym_error] = ACTIONS(1904), - [anon_sym_list] = ACTIONS(1904), - [anon_sym_DASH] = ACTIONS(1904), - [anon_sym_break] = ACTIONS(1904), - [anon_sym_continue] = ACTIONS(1904), - [anon_sym_for] = ACTIONS(1904), - [anon_sym_in] = ACTIONS(1904), - [anon_sym_loop] = ACTIONS(1904), - [anon_sym_make] = ACTIONS(1904), - [anon_sym_while] = ACTIONS(1904), - [anon_sym_do] = ACTIONS(1904), - [anon_sym_if] = ACTIONS(1904), - [anon_sym_else] = ACTIONS(1904), - [anon_sym_match] = ACTIONS(1904), - [anon_sym_RBRACE] = ACTIONS(1904), - [anon_sym_try] = ACTIONS(1904), - [anon_sym_catch] = ACTIONS(1904), - [anon_sym_return] = ACTIONS(1904), - [anon_sym_source] = ACTIONS(1904), - [anon_sym_source_DASHenv] = ACTIONS(1904), - [anon_sym_register] = ACTIONS(1904), - [anon_sym_hide] = ACTIONS(1904), - [anon_sym_hide_DASHenv] = ACTIONS(1904), - [anon_sym_overlay] = ACTIONS(1904), - [anon_sym_new] = ACTIONS(1904), - [anon_sym_as] = ACTIONS(1904), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1904), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1904), - [aux_sym__val_number_decimal_token1] = ACTIONS(1904), - [aux_sym__val_number_decimal_token2] = ACTIONS(1904), - [aux_sym__val_number_decimal_token3] = ACTIONS(1904), - [aux_sym__val_number_decimal_token4] = ACTIONS(1904), - [aux_sym__val_number_token1] = ACTIONS(1904), - [aux_sym__val_number_token2] = ACTIONS(1904), - [aux_sym__val_number_token3] = ACTIONS(1904), - [anon_sym_DQUOTE] = ACTIONS(1904), - [sym__str_single_quotes] = ACTIONS(1904), - [sym__str_back_ticks] = ACTIONS(1904), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1904), - [sym__entry_separator] = ACTIONS(1906), - [anon_sym_PLUS] = ACTIONS(1904), - [anon_sym_POUND] = ACTIONS(3), - }, - [582] = { - [sym_comment] = STATE(582), + [569] = { + [sym_comment] = STATE(569), [anon_sym_export] = ACTIONS(2450), [anon_sym_alias] = ACTIONS(2450), [anon_sym_let] = ACTIONS(2450), @@ -139937,209 +140216,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__entry_separator] = ACTIONS(2452), [anon_sym_PLUS] = ACTIONS(2450), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2452), }, - [583] = { - [sym_comment] = STATE(583), - [anon_sym_export] = ACTIONS(1050), - [anon_sym_alias] = ACTIONS(1050), - [anon_sym_let] = ACTIONS(1050), - [anon_sym_let_DASHenv] = ACTIONS(1050), - [anon_sym_mut] = ACTIONS(1050), - [anon_sym_const] = ACTIONS(1050), - [aux_sym_cmd_identifier_token1] = ACTIONS(1050), - [aux_sym_cmd_identifier_token2] = ACTIONS(1050), - [aux_sym_cmd_identifier_token3] = ACTIONS(1050), - [aux_sym_cmd_identifier_token4] = ACTIONS(1050), - [aux_sym_cmd_identifier_token5] = ACTIONS(1050), - [aux_sym_cmd_identifier_token6] = ACTIONS(1050), - [aux_sym_cmd_identifier_token7] = ACTIONS(1050), - [aux_sym_cmd_identifier_token8] = ACTIONS(1050), - [aux_sym_cmd_identifier_token9] = ACTIONS(1050), - [aux_sym_cmd_identifier_token10] = ACTIONS(1050), - [aux_sym_cmd_identifier_token11] = ACTIONS(1050), - [aux_sym_cmd_identifier_token12] = ACTIONS(1050), - [aux_sym_cmd_identifier_token13] = ACTIONS(1050), - [aux_sym_cmd_identifier_token14] = ACTIONS(1050), - [aux_sym_cmd_identifier_token15] = ACTIONS(1050), - [aux_sym_cmd_identifier_token16] = ACTIONS(1050), - [aux_sym_cmd_identifier_token17] = ACTIONS(1050), - [aux_sym_cmd_identifier_token18] = ACTIONS(1050), - [aux_sym_cmd_identifier_token19] = ACTIONS(1050), - [aux_sym_cmd_identifier_token20] = ACTIONS(1050), - [aux_sym_cmd_identifier_token21] = ACTIONS(1050), - [aux_sym_cmd_identifier_token22] = ACTIONS(1050), - [aux_sym_cmd_identifier_token23] = ACTIONS(1050), - [aux_sym_cmd_identifier_token24] = ACTIONS(1050), - [aux_sym_cmd_identifier_token25] = ACTIONS(1050), - [aux_sym_cmd_identifier_token26] = ACTIONS(1050), - [aux_sym_cmd_identifier_token27] = ACTIONS(1050), - [aux_sym_cmd_identifier_token28] = ACTIONS(1050), - [aux_sym_cmd_identifier_token29] = ACTIONS(1050), - [aux_sym_cmd_identifier_token30] = ACTIONS(1050), - [aux_sym_cmd_identifier_token31] = ACTIONS(1050), - [aux_sym_cmd_identifier_token32] = ACTIONS(1050), - [aux_sym_cmd_identifier_token33] = ACTIONS(1050), - [aux_sym_cmd_identifier_token34] = ACTIONS(1050), - [aux_sym_cmd_identifier_token35] = ACTIONS(1050), - [aux_sym_cmd_identifier_token36] = ACTIONS(1050), - [anon_sym_true] = ACTIONS(1052), - [anon_sym_false] = ACTIONS(1052), - [anon_sym_null] = ACTIONS(1052), - [aux_sym_cmd_identifier_token38] = ACTIONS(1050), - [aux_sym_cmd_identifier_token39] = ACTIONS(1052), - [aux_sym_cmd_identifier_token40] = ACTIONS(1052), - [anon_sym_def] = ACTIONS(1050), - [anon_sym_export_DASHenv] = ACTIONS(1050), - [anon_sym_extern] = ACTIONS(1050), - [anon_sym_module] = ACTIONS(1050), - [anon_sym_use] = ACTIONS(1050), - [anon_sym_LPAREN] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(1052), - [anon_sym_error] = ACTIONS(1050), - [anon_sym_list] = ACTIONS(1050), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_break] = ACTIONS(1050), - [anon_sym_continue] = ACTIONS(1050), - [anon_sym_for] = ACTIONS(1050), - [anon_sym_in] = ACTIONS(1050), - [anon_sym_loop] = ACTIONS(1050), - [anon_sym_make] = ACTIONS(1050), - [anon_sym_while] = ACTIONS(1050), - [anon_sym_do] = ACTIONS(1050), - [anon_sym_if] = ACTIONS(1050), - [anon_sym_else] = ACTIONS(1050), - [anon_sym_match] = ACTIONS(1050), - [anon_sym_RBRACE] = ACTIONS(1052), - [anon_sym_try] = ACTIONS(1050), - [anon_sym_catch] = ACTIONS(1050), - [anon_sym_return] = ACTIONS(1050), - [anon_sym_source] = ACTIONS(1050), - [anon_sym_source_DASHenv] = ACTIONS(1050), - [anon_sym_register] = ACTIONS(1050), - [anon_sym_hide] = ACTIONS(1050), - [anon_sym_hide_DASHenv] = ACTIONS(1050), - [anon_sym_overlay] = ACTIONS(1050), - [anon_sym_new] = ACTIONS(1050), - [anon_sym_as] = ACTIONS(1050), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1052), - [anon_sym_DOT] = ACTIONS(1050), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1052), - [aux_sym__val_number_decimal_token1] = ACTIONS(1050), - [aux_sym__val_number_decimal_token2] = ACTIONS(1052), - [aux_sym__val_number_decimal_token3] = ACTIONS(1052), - [aux_sym__val_number_decimal_token4] = ACTIONS(1052), - [aux_sym__val_number_token1] = ACTIONS(1052), - [aux_sym__val_number_token2] = ACTIONS(1052), - [aux_sym__val_number_token3] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(1052), - [sym__str_single_quotes] = ACTIONS(1052), - [sym__str_back_ticks] = ACTIONS(1052), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1052), - [anon_sym_PLUS] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(247), + [570] = { + [sym_comment] = STATE(570), + [anon_sym_export] = ACTIONS(2067), + [anon_sym_alias] = ACTIONS(2067), + [anon_sym_let] = ACTIONS(2067), + [anon_sym_let_DASHenv] = ACTIONS(2067), + [anon_sym_mut] = ACTIONS(2067), + [anon_sym_const] = ACTIONS(2067), + [aux_sym_cmd_identifier_token1] = ACTIONS(2067), + [aux_sym_cmd_identifier_token2] = ACTIONS(2067), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [aux_sym_cmd_identifier_token6] = ACTIONS(2067), + [aux_sym_cmd_identifier_token7] = ACTIONS(2067), + [aux_sym_cmd_identifier_token8] = ACTIONS(2067), + [aux_sym_cmd_identifier_token9] = ACTIONS(2067), + [aux_sym_cmd_identifier_token10] = ACTIONS(2067), + [aux_sym_cmd_identifier_token11] = ACTIONS(2067), + [aux_sym_cmd_identifier_token12] = ACTIONS(2067), + [aux_sym_cmd_identifier_token13] = ACTIONS(2067), + [aux_sym_cmd_identifier_token14] = ACTIONS(2067), + [aux_sym_cmd_identifier_token15] = ACTIONS(2067), + [aux_sym_cmd_identifier_token16] = ACTIONS(2067), + [aux_sym_cmd_identifier_token17] = ACTIONS(2067), + [aux_sym_cmd_identifier_token18] = ACTIONS(2067), + [aux_sym_cmd_identifier_token19] = ACTIONS(2067), + [aux_sym_cmd_identifier_token20] = ACTIONS(2067), + [aux_sym_cmd_identifier_token21] = ACTIONS(2067), + [aux_sym_cmd_identifier_token22] = ACTIONS(2067), + [aux_sym_cmd_identifier_token23] = ACTIONS(2067), + [aux_sym_cmd_identifier_token24] = ACTIONS(2067), + [aux_sym_cmd_identifier_token25] = ACTIONS(2067), + [aux_sym_cmd_identifier_token26] = ACTIONS(2067), + [aux_sym_cmd_identifier_token27] = ACTIONS(2067), + [aux_sym_cmd_identifier_token28] = ACTIONS(2067), + [aux_sym_cmd_identifier_token29] = ACTIONS(2067), + [aux_sym_cmd_identifier_token30] = ACTIONS(2067), + [aux_sym_cmd_identifier_token31] = ACTIONS(2067), + [aux_sym_cmd_identifier_token32] = ACTIONS(2067), + [aux_sym_cmd_identifier_token33] = ACTIONS(2067), + [aux_sym_cmd_identifier_token34] = ACTIONS(2067), + [aux_sym_cmd_identifier_token35] = ACTIONS(2067), + [aux_sym_cmd_identifier_token36] = ACTIONS(2067), + [anon_sym_true] = ACTIONS(2067), + [anon_sym_false] = ACTIONS(2067), + [anon_sym_null] = ACTIONS(2067), + [aux_sym_cmd_identifier_token38] = ACTIONS(2067), + [aux_sym_cmd_identifier_token39] = ACTIONS(2067), + [aux_sym_cmd_identifier_token40] = ACTIONS(2067), + [anon_sym_def] = ACTIONS(2067), + [anon_sym_export_DASHenv] = ACTIONS(2067), + [anon_sym_extern] = ACTIONS(2067), + [anon_sym_module] = ACTIONS(2067), + [anon_sym_use] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_DOLLAR] = ACTIONS(2067), + [anon_sym_error] = ACTIONS(2067), + [anon_sym_list] = ACTIONS(2067), + [anon_sym_DASH] = ACTIONS(2067), + [anon_sym_break] = ACTIONS(2067), + [anon_sym_continue] = ACTIONS(2067), + [anon_sym_for] = ACTIONS(2067), + [anon_sym_in] = ACTIONS(2067), + [anon_sym_loop] = ACTIONS(2067), + [anon_sym_make] = ACTIONS(2067), + [anon_sym_while] = ACTIONS(2067), + [anon_sym_do] = ACTIONS(2067), + [anon_sym_if] = ACTIONS(2067), + [anon_sym_else] = ACTIONS(2067), + [anon_sym_match] = ACTIONS(2067), + [anon_sym_RBRACE] = ACTIONS(2067), + [anon_sym_try] = ACTIONS(2067), + [anon_sym_catch] = ACTIONS(2067), + [anon_sym_return] = ACTIONS(2067), + [anon_sym_source] = ACTIONS(2067), + [anon_sym_source_DASHenv] = ACTIONS(2067), + [anon_sym_register] = ACTIONS(2067), + [anon_sym_hide] = ACTIONS(2067), + [anon_sym_hide_DASHenv] = ACTIONS(2067), + [anon_sym_overlay] = ACTIONS(2067), + [anon_sym_new] = ACTIONS(2067), + [anon_sym_as] = ACTIONS(2067), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2067), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2067), + [aux_sym__val_number_decimal_token1] = ACTIONS(2067), + [aux_sym__val_number_decimal_token2] = ACTIONS(2067), + [aux_sym__val_number_decimal_token3] = ACTIONS(2067), + [aux_sym__val_number_decimal_token4] = ACTIONS(2067), + [aux_sym__val_number_token1] = ACTIONS(2067), + [aux_sym__val_number_token2] = ACTIONS(2067), + [aux_sym__val_number_token3] = ACTIONS(2067), + [anon_sym_DQUOTE] = ACTIONS(2067), + [sym__str_single_quotes] = ACTIONS(2067), + [sym__str_back_ticks] = ACTIONS(2067), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2067), + [sym__entry_separator] = ACTIONS(2069), + [anon_sym_PLUS] = ACTIONS(2067), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2069), }, - [584] = { - [sym_comment] = STATE(584), - [anon_sym_export] = ACTIONS(1054), - [anon_sym_alias] = ACTIONS(1054), - [anon_sym_let] = ACTIONS(1054), - [anon_sym_let_DASHenv] = ACTIONS(1054), - [anon_sym_mut] = ACTIONS(1054), - [anon_sym_const] = ACTIONS(1054), - [aux_sym_cmd_identifier_token1] = ACTIONS(1054), - [aux_sym_cmd_identifier_token2] = ACTIONS(1054), - [aux_sym_cmd_identifier_token3] = ACTIONS(1054), - [aux_sym_cmd_identifier_token4] = ACTIONS(1054), - [aux_sym_cmd_identifier_token5] = ACTIONS(1054), - [aux_sym_cmd_identifier_token6] = ACTIONS(1054), - [aux_sym_cmd_identifier_token7] = ACTIONS(1054), - [aux_sym_cmd_identifier_token8] = ACTIONS(1054), - [aux_sym_cmd_identifier_token9] = ACTIONS(1054), - [aux_sym_cmd_identifier_token10] = ACTIONS(1054), - [aux_sym_cmd_identifier_token11] = ACTIONS(1054), - [aux_sym_cmd_identifier_token12] = ACTIONS(1054), - [aux_sym_cmd_identifier_token13] = ACTIONS(1054), - [aux_sym_cmd_identifier_token14] = ACTIONS(1054), - [aux_sym_cmd_identifier_token15] = ACTIONS(1054), - [aux_sym_cmd_identifier_token16] = ACTIONS(1054), - [aux_sym_cmd_identifier_token17] = ACTIONS(1054), - [aux_sym_cmd_identifier_token18] = ACTIONS(1054), - [aux_sym_cmd_identifier_token19] = ACTIONS(1054), - [aux_sym_cmd_identifier_token20] = ACTIONS(1054), - [aux_sym_cmd_identifier_token21] = ACTIONS(1054), - [aux_sym_cmd_identifier_token22] = ACTIONS(1054), - [aux_sym_cmd_identifier_token23] = ACTIONS(1054), - [aux_sym_cmd_identifier_token24] = ACTIONS(1054), - [aux_sym_cmd_identifier_token25] = ACTIONS(1054), - [aux_sym_cmd_identifier_token26] = ACTIONS(1054), - [aux_sym_cmd_identifier_token27] = ACTIONS(1054), - [aux_sym_cmd_identifier_token28] = ACTIONS(1054), - [aux_sym_cmd_identifier_token29] = ACTIONS(1054), - [aux_sym_cmd_identifier_token30] = ACTIONS(1054), - [aux_sym_cmd_identifier_token31] = ACTIONS(1054), - [aux_sym_cmd_identifier_token32] = ACTIONS(1054), - [aux_sym_cmd_identifier_token33] = ACTIONS(1054), - [aux_sym_cmd_identifier_token34] = ACTIONS(1054), - [aux_sym_cmd_identifier_token35] = ACTIONS(1054), - [aux_sym_cmd_identifier_token36] = ACTIONS(1054), - [anon_sym_true] = ACTIONS(1056), - [anon_sym_false] = ACTIONS(1056), - [anon_sym_null] = ACTIONS(1056), - [aux_sym_cmd_identifier_token38] = ACTIONS(1054), - [aux_sym_cmd_identifier_token39] = ACTIONS(1056), - [aux_sym_cmd_identifier_token40] = ACTIONS(1056), - [anon_sym_def] = ACTIONS(1054), - [anon_sym_export_DASHenv] = ACTIONS(1054), - [anon_sym_extern] = ACTIONS(1054), - [anon_sym_module] = ACTIONS(1054), - [anon_sym_use] = ACTIONS(1054), - [anon_sym_LPAREN] = ACTIONS(1056), - [anon_sym_DOLLAR] = ACTIONS(1056), - [anon_sym_error] = ACTIONS(1054), - [anon_sym_list] = ACTIONS(1054), - [anon_sym_DASH] = ACTIONS(1054), - [anon_sym_break] = ACTIONS(1054), - [anon_sym_continue] = ACTIONS(1054), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_in] = ACTIONS(1054), - [anon_sym_loop] = ACTIONS(1054), - [anon_sym_make] = ACTIONS(1054), - [anon_sym_while] = ACTIONS(1054), - [anon_sym_do] = ACTIONS(1054), - [anon_sym_if] = ACTIONS(1054), - [anon_sym_else] = ACTIONS(1054), - [anon_sym_match] = ACTIONS(1054), - [anon_sym_RBRACE] = ACTIONS(1056), - [anon_sym_try] = ACTIONS(1054), - [anon_sym_catch] = ACTIONS(1054), - [anon_sym_return] = ACTIONS(1054), - [anon_sym_source] = ACTIONS(1054), - [anon_sym_source_DASHenv] = ACTIONS(1054), - [anon_sym_register] = ACTIONS(1054), - [anon_sym_hide] = ACTIONS(1054), - [anon_sym_hide_DASHenv] = ACTIONS(1054), - [anon_sym_overlay] = ACTIONS(1054), - [anon_sym_new] = ACTIONS(1054), - [anon_sym_as] = ACTIONS(1054), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1056), - [anon_sym_DOT] = ACTIONS(1054), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1056), - [aux_sym__val_number_decimal_token1] = ACTIONS(1054), - [aux_sym__val_number_decimal_token2] = ACTIONS(1056), - [aux_sym__val_number_decimal_token3] = ACTIONS(1056), - [aux_sym__val_number_decimal_token4] = ACTIONS(1056), - [aux_sym__val_number_token1] = ACTIONS(1056), - [aux_sym__val_number_token2] = ACTIONS(1056), - [aux_sym__val_number_token3] = ACTIONS(1056), - [anon_sym_DQUOTE] = ACTIONS(1056), - [sym__str_single_quotes] = ACTIONS(1056), - [sym__str_back_ticks] = ACTIONS(1056), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1056), - [anon_sym_PLUS] = ACTIONS(1054), - [anon_sym_POUND] = ACTIONS(247), - }, - [585] = { - [sym_comment] = STATE(585), + [571] = { + [sym_comment] = STATE(571), [anon_sym_export] = ACTIONS(2454), [anon_sym_alias] = ACTIONS(2454), [anon_sym_let] = ACTIONS(2454), @@ -140237,209 +140418,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__entry_separator] = ACTIONS(2456), [anon_sym_PLUS] = ACTIONS(2454), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2456), }, - [586] = { - [sym_comment] = STATE(586), - [anon_sym_export] = ACTIONS(1667), - [anon_sym_alias] = ACTIONS(1667), - [anon_sym_let] = ACTIONS(1667), - [anon_sym_let_DASHenv] = ACTIONS(1667), - [anon_sym_mut] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1667), - [aux_sym_cmd_identifier_token1] = ACTIONS(1667), - [aux_sym_cmd_identifier_token2] = ACTIONS(1667), - [aux_sym_cmd_identifier_token3] = ACTIONS(1667), - [aux_sym_cmd_identifier_token4] = ACTIONS(1667), - [aux_sym_cmd_identifier_token5] = ACTIONS(1667), - [aux_sym_cmd_identifier_token6] = ACTIONS(1667), - [aux_sym_cmd_identifier_token7] = ACTIONS(1667), - [aux_sym_cmd_identifier_token8] = ACTIONS(1667), - [aux_sym_cmd_identifier_token9] = ACTIONS(1667), - [aux_sym_cmd_identifier_token10] = ACTIONS(1667), - [aux_sym_cmd_identifier_token11] = ACTIONS(1667), - [aux_sym_cmd_identifier_token12] = ACTIONS(1667), - [aux_sym_cmd_identifier_token13] = ACTIONS(1667), - [aux_sym_cmd_identifier_token14] = ACTIONS(1667), - [aux_sym_cmd_identifier_token15] = ACTIONS(1667), - [aux_sym_cmd_identifier_token16] = ACTIONS(1667), - [aux_sym_cmd_identifier_token17] = ACTIONS(1667), - [aux_sym_cmd_identifier_token18] = ACTIONS(1667), - [aux_sym_cmd_identifier_token19] = ACTIONS(1667), - [aux_sym_cmd_identifier_token20] = ACTIONS(1667), - [aux_sym_cmd_identifier_token21] = ACTIONS(1667), - [aux_sym_cmd_identifier_token22] = ACTIONS(1667), - [aux_sym_cmd_identifier_token23] = ACTIONS(1667), - [aux_sym_cmd_identifier_token24] = ACTIONS(1667), - [aux_sym_cmd_identifier_token25] = ACTIONS(1667), - [aux_sym_cmd_identifier_token26] = ACTIONS(1667), - [aux_sym_cmd_identifier_token27] = ACTIONS(1667), - [aux_sym_cmd_identifier_token28] = ACTIONS(1667), - [aux_sym_cmd_identifier_token29] = ACTIONS(1667), - [aux_sym_cmd_identifier_token30] = ACTIONS(1667), - [aux_sym_cmd_identifier_token31] = ACTIONS(1667), - [aux_sym_cmd_identifier_token32] = ACTIONS(1667), - [aux_sym_cmd_identifier_token33] = ACTIONS(1667), - [aux_sym_cmd_identifier_token34] = ACTIONS(1667), - [aux_sym_cmd_identifier_token35] = ACTIONS(1667), - [aux_sym_cmd_identifier_token36] = ACTIONS(1667), - [anon_sym_true] = ACTIONS(1667), - [anon_sym_false] = ACTIONS(1667), - [anon_sym_null] = ACTIONS(1667), - [aux_sym_cmd_identifier_token38] = ACTIONS(1667), - [aux_sym_cmd_identifier_token39] = ACTIONS(1667), - [aux_sym_cmd_identifier_token40] = ACTIONS(1667), - [anon_sym_def] = ACTIONS(1667), - [anon_sym_export_DASHenv] = ACTIONS(1667), - [anon_sym_extern] = ACTIONS(1667), - [anon_sym_module] = ACTIONS(1667), - [anon_sym_use] = ACTIONS(1667), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_DOLLAR] = ACTIONS(1667), - [anon_sym_error] = ACTIONS(1667), - [anon_sym_list] = ACTIONS(1667), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_break] = ACTIONS(1667), - [anon_sym_continue] = ACTIONS(1667), - [anon_sym_for] = ACTIONS(1667), - [anon_sym_in] = ACTIONS(1667), - [anon_sym_loop] = ACTIONS(1667), - [anon_sym_make] = ACTIONS(1667), - [anon_sym_while] = ACTIONS(1667), - [anon_sym_do] = ACTIONS(1667), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_else] = ACTIONS(1667), - [anon_sym_match] = ACTIONS(1667), - [anon_sym_RBRACE] = ACTIONS(1667), - [anon_sym_try] = ACTIONS(1667), - [anon_sym_catch] = ACTIONS(1667), - [anon_sym_return] = ACTIONS(1667), - [anon_sym_source] = ACTIONS(1667), - [anon_sym_source_DASHenv] = ACTIONS(1667), - [anon_sym_register] = ACTIONS(1667), - [anon_sym_hide] = ACTIONS(1667), - [anon_sym_hide_DASHenv] = ACTIONS(1667), - [anon_sym_overlay] = ACTIONS(1667), - [anon_sym_new] = ACTIONS(1667), - [anon_sym_as] = ACTIONS(1667), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1667), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1667), - [aux_sym__val_number_decimal_token1] = ACTIONS(1667), - [aux_sym__val_number_decimal_token2] = ACTIONS(1667), - [aux_sym__val_number_decimal_token3] = ACTIONS(1667), - [aux_sym__val_number_decimal_token4] = ACTIONS(1667), - [aux_sym__val_number_token1] = ACTIONS(1667), - [aux_sym__val_number_token2] = ACTIONS(1667), - [aux_sym__val_number_token3] = ACTIONS(1667), - [anon_sym_DQUOTE] = ACTIONS(1667), - [sym__str_single_quotes] = ACTIONS(1667), - [sym__str_back_ticks] = ACTIONS(1667), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1667), - [sym__entry_separator] = ACTIONS(1669), - [anon_sym_PLUS] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(3), - }, - [587] = { - [sym_comment] = STATE(587), - [anon_sym_export] = ACTIONS(1560), - [anon_sym_alias] = ACTIONS(1560), - [anon_sym_let] = ACTIONS(1560), - [anon_sym_let_DASHenv] = ACTIONS(1560), - [anon_sym_mut] = ACTIONS(1560), - [anon_sym_const] = ACTIONS(1560), - [aux_sym_cmd_identifier_token1] = ACTIONS(1560), - [aux_sym_cmd_identifier_token2] = ACTIONS(1560), - [aux_sym_cmd_identifier_token3] = ACTIONS(1560), - [aux_sym_cmd_identifier_token4] = ACTIONS(1560), - [aux_sym_cmd_identifier_token5] = ACTIONS(1560), - [aux_sym_cmd_identifier_token6] = ACTIONS(1560), - [aux_sym_cmd_identifier_token7] = ACTIONS(1560), - [aux_sym_cmd_identifier_token8] = ACTIONS(1560), - [aux_sym_cmd_identifier_token9] = ACTIONS(1560), - [aux_sym_cmd_identifier_token10] = ACTIONS(1560), - [aux_sym_cmd_identifier_token11] = ACTIONS(1560), - [aux_sym_cmd_identifier_token12] = ACTIONS(1560), - [aux_sym_cmd_identifier_token13] = ACTIONS(1560), - [aux_sym_cmd_identifier_token14] = ACTIONS(1560), - [aux_sym_cmd_identifier_token15] = ACTIONS(1560), - [aux_sym_cmd_identifier_token16] = ACTIONS(1560), - [aux_sym_cmd_identifier_token17] = ACTIONS(1560), - [aux_sym_cmd_identifier_token18] = ACTIONS(1560), - [aux_sym_cmd_identifier_token19] = ACTIONS(1560), - [aux_sym_cmd_identifier_token20] = ACTIONS(1560), - [aux_sym_cmd_identifier_token21] = ACTIONS(1560), - [aux_sym_cmd_identifier_token22] = ACTIONS(1560), - [aux_sym_cmd_identifier_token23] = ACTIONS(1560), - [aux_sym_cmd_identifier_token24] = ACTIONS(1560), - [aux_sym_cmd_identifier_token25] = ACTIONS(1560), - [aux_sym_cmd_identifier_token26] = ACTIONS(1560), - [aux_sym_cmd_identifier_token27] = ACTIONS(1560), - [aux_sym_cmd_identifier_token28] = ACTIONS(1560), - [aux_sym_cmd_identifier_token29] = ACTIONS(1560), - [aux_sym_cmd_identifier_token30] = ACTIONS(1560), - [aux_sym_cmd_identifier_token31] = ACTIONS(1560), - [aux_sym_cmd_identifier_token32] = ACTIONS(1560), - [aux_sym_cmd_identifier_token33] = ACTIONS(1560), - [aux_sym_cmd_identifier_token34] = ACTIONS(1560), - [aux_sym_cmd_identifier_token35] = ACTIONS(1560), - [aux_sym_cmd_identifier_token36] = ACTIONS(1560), - [anon_sym_true] = ACTIONS(1560), - [anon_sym_false] = ACTIONS(1560), - [anon_sym_null] = ACTIONS(1560), - [aux_sym_cmd_identifier_token38] = ACTIONS(1560), - [aux_sym_cmd_identifier_token39] = ACTIONS(1560), - [aux_sym_cmd_identifier_token40] = ACTIONS(1560), - [anon_sym_def] = ACTIONS(1560), - [anon_sym_export_DASHenv] = ACTIONS(1560), - [anon_sym_extern] = ACTIONS(1560), - [anon_sym_module] = ACTIONS(1560), - [anon_sym_use] = ACTIONS(1560), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_DOLLAR] = ACTIONS(1560), - [anon_sym_error] = ACTIONS(1560), - [anon_sym_list] = ACTIONS(1560), - [anon_sym_DASH] = ACTIONS(1560), - [anon_sym_break] = ACTIONS(1560), - [anon_sym_continue] = ACTIONS(1560), - [anon_sym_for] = ACTIONS(1560), - [anon_sym_in] = ACTIONS(1560), - [anon_sym_loop] = ACTIONS(1560), - [anon_sym_make] = ACTIONS(1560), - [anon_sym_while] = ACTIONS(1560), - [anon_sym_do] = ACTIONS(1560), - [anon_sym_if] = ACTIONS(1560), - [anon_sym_else] = ACTIONS(1560), - [anon_sym_match] = ACTIONS(1560), - [anon_sym_RBRACE] = ACTIONS(1560), - [anon_sym_try] = ACTIONS(1560), - [anon_sym_catch] = ACTIONS(1560), - [anon_sym_return] = ACTIONS(1560), - [anon_sym_source] = ACTIONS(1560), - [anon_sym_source_DASHenv] = ACTIONS(1560), - [anon_sym_register] = ACTIONS(1560), - [anon_sym_hide] = ACTIONS(1560), - [anon_sym_hide_DASHenv] = ACTIONS(1560), - [anon_sym_overlay] = ACTIONS(1560), - [anon_sym_new] = ACTIONS(1560), - [anon_sym_as] = ACTIONS(1560), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1560), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1560), - [aux_sym__val_number_decimal_token1] = ACTIONS(1560), - [aux_sym__val_number_decimal_token2] = ACTIONS(1560), - [aux_sym__val_number_decimal_token3] = ACTIONS(1560), - [aux_sym__val_number_decimal_token4] = ACTIONS(1560), - [aux_sym__val_number_token1] = ACTIONS(1560), - [aux_sym__val_number_token2] = ACTIONS(1560), - [aux_sym__val_number_token3] = ACTIONS(1560), - [anon_sym_DQUOTE] = ACTIONS(1560), - [sym__str_single_quotes] = ACTIONS(1560), - [sym__str_back_ticks] = ACTIONS(1560), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1560), - [sym__entry_separator] = ACTIONS(1572), - [anon_sym_PLUS] = ACTIONS(1560), - [anon_sym_POUND] = ACTIONS(3), - }, - [588] = { - [sym_comment] = STATE(588), + [572] = { + [sym_comment] = STATE(572), [anon_sym_export] = ACTIONS(2458), [anon_sym_alias] = ACTIONS(2458), [anon_sym_let] = ACTIONS(2458), @@ -140537,309 +140519,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__entry_separator] = ACTIONS(2460), [anon_sym_PLUS] = ACTIONS(2458), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2460), }, - [589] = { - [sym_comment] = STATE(589), - [anon_sym_export] = ACTIONS(1659), - [anon_sym_alias] = ACTIONS(1659), - [anon_sym_let] = ACTIONS(1659), - [anon_sym_let_DASHenv] = ACTIONS(1659), - [anon_sym_mut] = ACTIONS(1659), - [anon_sym_const] = ACTIONS(1659), - [aux_sym_cmd_identifier_token1] = ACTIONS(1659), - [aux_sym_cmd_identifier_token2] = ACTIONS(1659), - [aux_sym_cmd_identifier_token3] = ACTIONS(1659), - [aux_sym_cmd_identifier_token4] = ACTIONS(1659), - [aux_sym_cmd_identifier_token5] = ACTIONS(1659), - [aux_sym_cmd_identifier_token6] = ACTIONS(1659), - [aux_sym_cmd_identifier_token7] = ACTIONS(1659), - [aux_sym_cmd_identifier_token8] = ACTIONS(1659), - [aux_sym_cmd_identifier_token9] = ACTIONS(1659), - [aux_sym_cmd_identifier_token10] = ACTIONS(1659), - [aux_sym_cmd_identifier_token11] = ACTIONS(1659), - [aux_sym_cmd_identifier_token12] = ACTIONS(1659), - [aux_sym_cmd_identifier_token13] = ACTIONS(1659), - [aux_sym_cmd_identifier_token14] = ACTIONS(1659), - [aux_sym_cmd_identifier_token15] = ACTIONS(1659), - [aux_sym_cmd_identifier_token16] = ACTIONS(1659), - [aux_sym_cmd_identifier_token17] = ACTIONS(1659), - [aux_sym_cmd_identifier_token18] = ACTIONS(1659), - [aux_sym_cmd_identifier_token19] = ACTIONS(1659), - [aux_sym_cmd_identifier_token20] = ACTIONS(1659), - [aux_sym_cmd_identifier_token21] = ACTIONS(1659), - [aux_sym_cmd_identifier_token22] = ACTIONS(1659), - [aux_sym_cmd_identifier_token23] = ACTIONS(1659), - [aux_sym_cmd_identifier_token24] = ACTIONS(1659), - [aux_sym_cmd_identifier_token25] = ACTIONS(1659), - [aux_sym_cmd_identifier_token26] = ACTIONS(1659), - [aux_sym_cmd_identifier_token27] = ACTIONS(1659), - [aux_sym_cmd_identifier_token28] = ACTIONS(1659), - [aux_sym_cmd_identifier_token29] = ACTIONS(1659), - [aux_sym_cmd_identifier_token30] = ACTIONS(1659), - [aux_sym_cmd_identifier_token31] = ACTIONS(1659), - [aux_sym_cmd_identifier_token32] = ACTIONS(1659), - [aux_sym_cmd_identifier_token33] = ACTIONS(1659), - [aux_sym_cmd_identifier_token34] = ACTIONS(1659), - [aux_sym_cmd_identifier_token35] = ACTIONS(1659), - [aux_sym_cmd_identifier_token36] = ACTIONS(1659), - [anon_sym_true] = ACTIONS(1659), - [anon_sym_false] = ACTIONS(1659), - [anon_sym_null] = ACTIONS(1659), - [aux_sym_cmd_identifier_token38] = ACTIONS(1659), - [aux_sym_cmd_identifier_token39] = ACTIONS(1659), - [aux_sym_cmd_identifier_token40] = ACTIONS(1659), - [anon_sym_def] = ACTIONS(1659), - [anon_sym_export_DASHenv] = ACTIONS(1659), - [anon_sym_extern] = ACTIONS(1659), - [anon_sym_module] = ACTIONS(1659), - [anon_sym_use] = ACTIONS(1659), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_DOLLAR] = ACTIONS(1659), - [anon_sym_error] = ACTIONS(1659), - [anon_sym_list] = ACTIONS(1659), - [anon_sym_DASH] = ACTIONS(1659), - [anon_sym_break] = ACTIONS(1659), - [anon_sym_continue] = ACTIONS(1659), - [anon_sym_for] = ACTIONS(1659), - [anon_sym_in] = ACTIONS(1659), - [anon_sym_loop] = ACTIONS(1659), - [anon_sym_make] = ACTIONS(1659), - [anon_sym_while] = ACTIONS(1659), - [anon_sym_do] = ACTIONS(1659), - [anon_sym_if] = ACTIONS(1659), - [anon_sym_else] = ACTIONS(1659), - [anon_sym_match] = ACTIONS(1659), - [anon_sym_RBRACE] = ACTIONS(1659), - [anon_sym_try] = ACTIONS(1659), - [anon_sym_catch] = ACTIONS(1659), - [anon_sym_return] = ACTIONS(1659), - [anon_sym_source] = ACTIONS(1659), - [anon_sym_source_DASHenv] = ACTIONS(1659), - [anon_sym_register] = ACTIONS(1659), - [anon_sym_hide] = ACTIONS(1659), - [anon_sym_hide_DASHenv] = ACTIONS(1659), - [anon_sym_overlay] = ACTIONS(1659), - [anon_sym_new] = ACTIONS(1659), - [anon_sym_as] = ACTIONS(1659), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1659), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1659), - [aux_sym__val_number_decimal_token1] = ACTIONS(1659), - [aux_sym__val_number_decimal_token2] = ACTIONS(1659), - [aux_sym__val_number_decimal_token3] = ACTIONS(1659), - [aux_sym__val_number_decimal_token4] = ACTIONS(1659), - [aux_sym__val_number_token1] = ACTIONS(1659), - [aux_sym__val_number_token2] = ACTIONS(1659), - [aux_sym__val_number_token3] = ACTIONS(1659), - [anon_sym_DQUOTE] = ACTIONS(1659), - [sym__str_single_quotes] = ACTIONS(1659), - [sym__str_back_ticks] = ACTIONS(1659), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1659), - [sym__entry_separator] = ACTIONS(1661), - [anon_sym_PLUS] = ACTIONS(1659), - [anon_sym_POUND] = ACTIONS(3), - }, - [590] = { - [sym_comment] = STATE(590), - [anon_sym_export] = ACTIONS(1721), - [anon_sym_alias] = ACTIONS(1721), - [anon_sym_let] = ACTIONS(1721), - [anon_sym_let_DASHenv] = ACTIONS(1721), - [anon_sym_mut] = ACTIONS(1721), - [anon_sym_const] = ACTIONS(1721), - [aux_sym_cmd_identifier_token1] = ACTIONS(1721), - [aux_sym_cmd_identifier_token2] = ACTIONS(1721), - [aux_sym_cmd_identifier_token3] = ACTIONS(1721), - [aux_sym_cmd_identifier_token4] = ACTIONS(1721), - [aux_sym_cmd_identifier_token5] = ACTIONS(1721), - [aux_sym_cmd_identifier_token6] = ACTIONS(1721), - [aux_sym_cmd_identifier_token7] = ACTIONS(1721), - [aux_sym_cmd_identifier_token8] = ACTIONS(1721), - [aux_sym_cmd_identifier_token9] = ACTIONS(1721), - [aux_sym_cmd_identifier_token10] = ACTIONS(1721), - [aux_sym_cmd_identifier_token11] = ACTIONS(1721), - [aux_sym_cmd_identifier_token12] = ACTIONS(1721), - [aux_sym_cmd_identifier_token13] = ACTIONS(1721), - [aux_sym_cmd_identifier_token14] = ACTIONS(1721), - [aux_sym_cmd_identifier_token15] = ACTIONS(1721), - [aux_sym_cmd_identifier_token16] = ACTIONS(1721), - [aux_sym_cmd_identifier_token17] = ACTIONS(1721), - [aux_sym_cmd_identifier_token18] = ACTIONS(1721), - [aux_sym_cmd_identifier_token19] = ACTIONS(1721), - [aux_sym_cmd_identifier_token20] = ACTIONS(1721), - [aux_sym_cmd_identifier_token21] = ACTIONS(1721), - [aux_sym_cmd_identifier_token22] = ACTIONS(1721), - [aux_sym_cmd_identifier_token23] = ACTIONS(1721), - [aux_sym_cmd_identifier_token24] = ACTIONS(1721), - [aux_sym_cmd_identifier_token25] = ACTIONS(1721), - [aux_sym_cmd_identifier_token26] = ACTIONS(1721), - [aux_sym_cmd_identifier_token27] = ACTIONS(1721), - [aux_sym_cmd_identifier_token28] = ACTIONS(1721), - [aux_sym_cmd_identifier_token29] = ACTIONS(1721), - [aux_sym_cmd_identifier_token30] = ACTIONS(1721), - [aux_sym_cmd_identifier_token31] = ACTIONS(1721), - [aux_sym_cmd_identifier_token32] = ACTIONS(1721), - [aux_sym_cmd_identifier_token33] = ACTIONS(1721), - [aux_sym_cmd_identifier_token34] = ACTIONS(1721), - [aux_sym_cmd_identifier_token35] = ACTIONS(1721), - [aux_sym_cmd_identifier_token36] = ACTIONS(1721), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [anon_sym_null] = ACTIONS(1721), - [aux_sym_cmd_identifier_token38] = ACTIONS(1721), - [aux_sym_cmd_identifier_token39] = ACTIONS(1721), - [aux_sym_cmd_identifier_token40] = ACTIONS(1721), - [anon_sym_def] = ACTIONS(1721), - [anon_sym_export_DASHenv] = ACTIONS(1721), - [anon_sym_extern] = ACTIONS(1721), - [anon_sym_module] = ACTIONS(1721), - [anon_sym_use] = ACTIONS(1721), - [anon_sym_LPAREN] = ACTIONS(1721), - [anon_sym_DOLLAR] = ACTIONS(1721), - [anon_sym_error] = ACTIONS(1721), - [anon_sym_list] = ACTIONS(1721), - [anon_sym_DASH] = ACTIONS(1721), - [anon_sym_break] = ACTIONS(1721), - [anon_sym_continue] = ACTIONS(1721), - [anon_sym_for] = ACTIONS(1721), - [anon_sym_in] = ACTIONS(1721), - [anon_sym_loop] = ACTIONS(1721), - [anon_sym_make] = ACTIONS(1721), - [anon_sym_while] = ACTIONS(1721), - [anon_sym_do] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1721), - [anon_sym_else] = ACTIONS(1721), - [anon_sym_match] = ACTIONS(1721), - [anon_sym_RBRACE] = ACTIONS(1721), - [anon_sym_try] = ACTIONS(1721), - [anon_sym_catch] = ACTIONS(1721), - [anon_sym_return] = ACTIONS(1721), - [anon_sym_source] = ACTIONS(1721), - [anon_sym_source_DASHenv] = ACTIONS(1721), - [anon_sym_register] = ACTIONS(1721), - [anon_sym_hide] = ACTIONS(1721), - [anon_sym_hide_DASHenv] = ACTIONS(1721), - [anon_sym_overlay] = ACTIONS(1721), - [anon_sym_new] = ACTIONS(1721), - [anon_sym_as] = ACTIONS(1721), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1721), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1721), - [aux_sym__val_number_decimal_token1] = ACTIONS(1721), - [aux_sym__val_number_decimal_token2] = ACTIONS(1721), - [aux_sym__val_number_decimal_token3] = ACTIONS(1721), - [aux_sym__val_number_decimal_token4] = ACTIONS(1721), - [aux_sym__val_number_token1] = ACTIONS(1721), - [aux_sym__val_number_token2] = ACTIONS(1721), - [aux_sym__val_number_token3] = ACTIONS(1721), - [anon_sym_DQUOTE] = ACTIONS(1721), - [sym__str_single_quotes] = ACTIONS(1721), - [sym__str_back_ticks] = ACTIONS(1721), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1721), - [sym__entry_separator] = ACTIONS(1723), - [anon_sym_PLUS] = ACTIONS(1721), - [anon_sym_POUND] = ACTIONS(3), - }, - [591] = { - [sym_comment] = STATE(591), - [anon_sym_export] = ACTIONS(1738), - [anon_sym_alias] = ACTIONS(1738), - [anon_sym_let] = ACTIONS(1738), - [anon_sym_let_DASHenv] = ACTIONS(1738), - [anon_sym_mut] = ACTIONS(1738), - [anon_sym_const] = ACTIONS(1738), - [aux_sym_cmd_identifier_token1] = ACTIONS(1738), - [aux_sym_cmd_identifier_token2] = ACTIONS(1738), - [aux_sym_cmd_identifier_token3] = ACTIONS(1738), - [aux_sym_cmd_identifier_token4] = ACTIONS(1738), - [aux_sym_cmd_identifier_token5] = ACTIONS(1738), - [aux_sym_cmd_identifier_token6] = ACTIONS(1738), - [aux_sym_cmd_identifier_token7] = ACTIONS(1738), - [aux_sym_cmd_identifier_token8] = ACTIONS(1738), - [aux_sym_cmd_identifier_token9] = ACTIONS(1738), - [aux_sym_cmd_identifier_token10] = ACTIONS(1738), - [aux_sym_cmd_identifier_token11] = ACTIONS(1738), - [aux_sym_cmd_identifier_token12] = ACTIONS(1738), - [aux_sym_cmd_identifier_token13] = ACTIONS(1738), - [aux_sym_cmd_identifier_token14] = ACTIONS(1738), - [aux_sym_cmd_identifier_token15] = ACTIONS(1738), - [aux_sym_cmd_identifier_token16] = ACTIONS(1738), - [aux_sym_cmd_identifier_token17] = ACTIONS(1738), - [aux_sym_cmd_identifier_token18] = ACTIONS(1738), - [aux_sym_cmd_identifier_token19] = ACTIONS(1738), - [aux_sym_cmd_identifier_token20] = ACTIONS(1738), - [aux_sym_cmd_identifier_token21] = ACTIONS(1738), - [aux_sym_cmd_identifier_token22] = ACTIONS(1738), - [aux_sym_cmd_identifier_token23] = ACTIONS(1738), - [aux_sym_cmd_identifier_token24] = ACTIONS(1738), - [aux_sym_cmd_identifier_token25] = ACTIONS(1738), - [aux_sym_cmd_identifier_token26] = ACTIONS(1738), - [aux_sym_cmd_identifier_token27] = ACTIONS(1738), - [aux_sym_cmd_identifier_token28] = ACTIONS(1738), - [aux_sym_cmd_identifier_token29] = ACTIONS(1738), - [aux_sym_cmd_identifier_token30] = ACTIONS(1738), - [aux_sym_cmd_identifier_token31] = ACTIONS(1738), - [aux_sym_cmd_identifier_token32] = ACTIONS(1738), - [aux_sym_cmd_identifier_token33] = ACTIONS(1738), - [aux_sym_cmd_identifier_token34] = ACTIONS(1738), - [aux_sym_cmd_identifier_token35] = ACTIONS(1738), - [aux_sym_cmd_identifier_token36] = ACTIONS(1738), - [anon_sym_true] = ACTIONS(1738), - [anon_sym_false] = ACTIONS(1738), - [anon_sym_null] = ACTIONS(1738), - [aux_sym_cmd_identifier_token38] = ACTIONS(1738), - [aux_sym_cmd_identifier_token39] = ACTIONS(1738), - [aux_sym_cmd_identifier_token40] = ACTIONS(1738), - [anon_sym_def] = ACTIONS(1738), - [anon_sym_export_DASHenv] = ACTIONS(1738), - [anon_sym_extern] = ACTIONS(1738), - [anon_sym_module] = ACTIONS(1738), - [anon_sym_use] = ACTIONS(1738), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_DOLLAR] = ACTIONS(1738), - [anon_sym_error] = ACTIONS(1738), - [anon_sym_list] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_break] = ACTIONS(1738), - [anon_sym_continue] = ACTIONS(1738), - [anon_sym_for] = ACTIONS(1738), - [anon_sym_in] = ACTIONS(1738), - [anon_sym_loop] = ACTIONS(1738), - [anon_sym_make] = ACTIONS(1738), - [anon_sym_while] = ACTIONS(1738), - [anon_sym_do] = ACTIONS(1738), - [anon_sym_if] = ACTIONS(1738), - [anon_sym_else] = ACTIONS(1738), - [anon_sym_match] = ACTIONS(1738), - [anon_sym_RBRACE] = ACTIONS(1738), - [anon_sym_try] = ACTIONS(1738), - [anon_sym_catch] = ACTIONS(1738), - [anon_sym_return] = ACTIONS(1738), - [anon_sym_source] = ACTIONS(1738), - [anon_sym_source_DASHenv] = ACTIONS(1738), - [anon_sym_register] = ACTIONS(1738), - [anon_sym_hide] = ACTIONS(1738), - [anon_sym_hide_DASHenv] = ACTIONS(1738), - [anon_sym_overlay] = ACTIONS(1738), - [anon_sym_new] = ACTIONS(1738), - [anon_sym_as] = ACTIONS(1738), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1738), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1738), - [aux_sym__val_number_decimal_token1] = ACTIONS(1738), - [aux_sym__val_number_decimal_token2] = ACTIONS(1738), - [aux_sym__val_number_decimal_token3] = ACTIONS(1738), - [aux_sym__val_number_decimal_token4] = ACTIONS(1738), - [aux_sym__val_number_token1] = ACTIONS(1738), - [aux_sym__val_number_token2] = ACTIONS(1738), - [aux_sym__val_number_token3] = ACTIONS(1738), - [anon_sym_DQUOTE] = ACTIONS(1738), - [sym__str_single_quotes] = ACTIONS(1738), - [sym__str_back_ticks] = ACTIONS(1738), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1738), - [sym__entry_separator] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1738), - [anon_sym_POUND] = ACTIONS(3), - }, - [592] = { - [sym_comment] = STATE(592), + [573] = { + [sym_comment] = STATE(573), [anon_sym_export] = ACTIONS(2462), [anon_sym_alias] = ACTIONS(2462), [anon_sym_let] = ACTIONS(2462), @@ -140937,9 +140620,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__entry_separator] = ACTIONS(2464), [anon_sym_PLUS] = ACTIONS(2462), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2464), }, - [593] = { - [sym_comment] = STATE(593), + [574] = { + [sym_comment] = STATE(574), + [anon_sym_export] = ACTIONS(1715), + [anon_sym_alias] = ACTIONS(1715), + [anon_sym_let] = ACTIONS(1715), + [anon_sym_let_DASHenv] = ACTIONS(1715), + [anon_sym_mut] = ACTIONS(1715), + [anon_sym_const] = ACTIONS(1715), + [aux_sym_cmd_identifier_token1] = ACTIONS(1715), + [aux_sym_cmd_identifier_token2] = ACTIONS(1715), + [aux_sym_cmd_identifier_token3] = ACTIONS(1715), + [aux_sym_cmd_identifier_token4] = ACTIONS(1715), + [aux_sym_cmd_identifier_token5] = ACTIONS(1715), + [aux_sym_cmd_identifier_token6] = ACTIONS(1715), + [aux_sym_cmd_identifier_token7] = ACTIONS(1715), + [aux_sym_cmd_identifier_token8] = ACTIONS(1715), + [aux_sym_cmd_identifier_token9] = ACTIONS(1715), + [aux_sym_cmd_identifier_token10] = ACTIONS(1715), + [aux_sym_cmd_identifier_token11] = ACTIONS(1715), + [aux_sym_cmd_identifier_token12] = ACTIONS(1715), + [aux_sym_cmd_identifier_token13] = ACTIONS(1715), + [aux_sym_cmd_identifier_token14] = ACTIONS(1715), + [aux_sym_cmd_identifier_token15] = ACTIONS(1715), + [aux_sym_cmd_identifier_token16] = ACTIONS(1715), + [aux_sym_cmd_identifier_token17] = ACTIONS(1715), + [aux_sym_cmd_identifier_token18] = ACTIONS(1715), + [aux_sym_cmd_identifier_token19] = ACTIONS(1715), + [aux_sym_cmd_identifier_token20] = ACTIONS(1715), + [aux_sym_cmd_identifier_token21] = ACTIONS(1715), + [aux_sym_cmd_identifier_token22] = ACTIONS(1715), + [aux_sym_cmd_identifier_token23] = ACTIONS(1715), + [aux_sym_cmd_identifier_token24] = ACTIONS(1715), + [aux_sym_cmd_identifier_token25] = ACTIONS(1715), + [aux_sym_cmd_identifier_token26] = ACTIONS(1715), + [aux_sym_cmd_identifier_token27] = ACTIONS(1715), + [aux_sym_cmd_identifier_token28] = ACTIONS(1715), + [aux_sym_cmd_identifier_token29] = ACTIONS(1715), + [aux_sym_cmd_identifier_token30] = ACTIONS(1715), + [aux_sym_cmd_identifier_token31] = ACTIONS(1715), + [aux_sym_cmd_identifier_token32] = ACTIONS(1715), + [aux_sym_cmd_identifier_token33] = ACTIONS(1715), + [aux_sym_cmd_identifier_token34] = ACTIONS(1715), + [aux_sym_cmd_identifier_token35] = ACTIONS(1715), + [aux_sym_cmd_identifier_token36] = ACTIONS(1715), + [anon_sym_true] = ACTIONS(1715), + [anon_sym_false] = ACTIONS(1715), + [anon_sym_null] = ACTIONS(1715), + [aux_sym_cmd_identifier_token38] = ACTIONS(1715), + [aux_sym_cmd_identifier_token39] = ACTIONS(1715), + [aux_sym_cmd_identifier_token40] = ACTIONS(1715), + [anon_sym_def] = ACTIONS(1715), + [anon_sym_export_DASHenv] = ACTIONS(1715), + [anon_sym_extern] = ACTIONS(1715), + [anon_sym_module] = ACTIONS(1715), + [anon_sym_use] = ACTIONS(1715), + [anon_sym_LPAREN] = ACTIONS(1715), + [anon_sym_DOLLAR] = ACTIONS(1715), + [anon_sym_error] = ACTIONS(1715), + [anon_sym_list] = ACTIONS(1715), + [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_break] = ACTIONS(1715), + [anon_sym_continue] = ACTIONS(1715), + [anon_sym_for] = ACTIONS(1715), + [anon_sym_in] = ACTIONS(1715), + [anon_sym_loop] = ACTIONS(1715), + [anon_sym_make] = ACTIONS(1715), + [anon_sym_while] = ACTIONS(1715), + [anon_sym_do] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1715), + [anon_sym_else] = ACTIONS(1715), + [anon_sym_match] = ACTIONS(1715), + [anon_sym_RBRACE] = ACTIONS(1715), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_catch] = ACTIONS(1715), + [anon_sym_return] = ACTIONS(1715), + [anon_sym_source] = ACTIONS(1715), + [anon_sym_source_DASHenv] = ACTIONS(1715), + [anon_sym_register] = ACTIONS(1715), + [anon_sym_hide] = ACTIONS(1715), + [anon_sym_hide_DASHenv] = ACTIONS(1715), + [anon_sym_overlay] = ACTIONS(1715), + [anon_sym_new] = ACTIONS(1715), + [anon_sym_as] = ACTIONS(1715), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1715), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1715), + [aux_sym__val_number_decimal_token1] = ACTIONS(1715), + [aux_sym__val_number_decimal_token2] = ACTIONS(1715), + [aux_sym__val_number_decimal_token3] = ACTIONS(1715), + [aux_sym__val_number_decimal_token4] = ACTIONS(1715), + [aux_sym__val_number_token1] = ACTIONS(1715), + [aux_sym__val_number_token2] = ACTIONS(1715), + [aux_sym__val_number_token3] = ACTIONS(1715), + [anon_sym_DQUOTE] = ACTIONS(1715), + [sym__str_single_quotes] = ACTIONS(1715), + [sym__str_back_ticks] = ACTIONS(1715), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1715), + [sym__entry_separator] = ACTIONS(1717), + [anon_sym_PLUS] = ACTIONS(1715), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1717), + }, + [575] = { + [sym_comment] = STATE(575), [anon_sym_export] = ACTIONS(2466), [anon_sym_alias] = ACTIONS(2466), [anon_sym_let] = ACTIONS(2466), @@ -141037,2809 +140822,4757 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__entry_separator] = ACTIONS(2468), [anon_sym_PLUS] = ACTIONS(2466), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2468), + }, + [576] = { + [sym_comment] = STATE(576), + [anon_sym_export] = ACTIONS(2087), + [anon_sym_alias] = ACTIONS(2087), + [anon_sym_let] = ACTIONS(2087), + [anon_sym_let_DASHenv] = ACTIONS(2087), + [anon_sym_mut] = ACTIONS(2087), + [anon_sym_const] = ACTIONS(2087), + [aux_sym_cmd_identifier_token1] = ACTIONS(2087), + [aux_sym_cmd_identifier_token2] = ACTIONS(2087), + [aux_sym_cmd_identifier_token3] = ACTIONS(2087), + [aux_sym_cmd_identifier_token4] = ACTIONS(2087), + [aux_sym_cmd_identifier_token5] = ACTIONS(2087), + [aux_sym_cmd_identifier_token6] = ACTIONS(2087), + [aux_sym_cmd_identifier_token7] = ACTIONS(2087), + [aux_sym_cmd_identifier_token8] = ACTIONS(2087), + [aux_sym_cmd_identifier_token9] = ACTIONS(2087), + [aux_sym_cmd_identifier_token10] = ACTIONS(2087), + [aux_sym_cmd_identifier_token11] = ACTIONS(2087), + [aux_sym_cmd_identifier_token12] = ACTIONS(2087), + [aux_sym_cmd_identifier_token13] = ACTIONS(2087), + [aux_sym_cmd_identifier_token14] = ACTIONS(2087), + [aux_sym_cmd_identifier_token15] = ACTIONS(2087), + [aux_sym_cmd_identifier_token16] = ACTIONS(2087), + [aux_sym_cmd_identifier_token17] = ACTIONS(2087), + [aux_sym_cmd_identifier_token18] = ACTIONS(2087), + [aux_sym_cmd_identifier_token19] = ACTIONS(2087), + [aux_sym_cmd_identifier_token20] = ACTIONS(2087), + [aux_sym_cmd_identifier_token21] = ACTIONS(2087), + [aux_sym_cmd_identifier_token22] = ACTIONS(2087), + [aux_sym_cmd_identifier_token23] = ACTIONS(2087), + [aux_sym_cmd_identifier_token24] = ACTIONS(2087), + [aux_sym_cmd_identifier_token25] = ACTIONS(2087), + [aux_sym_cmd_identifier_token26] = ACTIONS(2087), + [aux_sym_cmd_identifier_token27] = ACTIONS(2087), + [aux_sym_cmd_identifier_token28] = ACTIONS(2087), + [aux_sym_cmd_identifier_token29] = ACTIONS(2087), + [aux_sym_cmd_identifier_token30] = ACTIONS(2087), + [aux_sym_cmd_identifier_token31] = ACTIONS(2087), + [aux_sym_cmd_identifier_token32] = ACTIONS(2087), + [aux_sym_cmd_identifier_token33] = ACTIONS(2087), + [aux_sym_cmd_identifier_token34] = ACTIONS(2087), + [aux_sym_cmd_identifier_token35] = ACTIONS(2087), + [aux_sym_cmd_identifier_token36] = ACTIONS(2087), + [anon_sym_true] = ACTIONS(2087), + [anon_sym_false] = ACTIONS(2087), + [anon_sym_null] = ACTIONS(2087), + [aux_sym_cmd_identifier_token38] = ACTIONS(2087), + [aux_sym_cmd_identifier_token39] = ACTIONS(2087), + [aux_sym_cmd_identifier_token40] = ACTIONS(2087), + [anon_sym_def] = ACTIONS(2087), + [anon_sym_export_DASHenv] = ACTIONS(2087), + [anon_sym_extern] = ACTIONS(2087), + [anon_sym_module] = ACTIONS(2087), + [anon_sym_use] = ACTIONS(2087), + [anon_sym_LPAREN] = ACTIONS(2087), + [anon_sym_DOLLAR] = ACTIONS(2087), + [anon_sym_error] = ACTIONS(2087), + [anon_sym_list] = ACTIONS(2087), + [anon_sym_DASH] = ACTIONS(2087), + [anon_sym_break] = ACTIONS(2087), + [anon_sym_continue] = ACTIONS(2087), + [anon_sym_for] = ACTIONS(2087), + [anon_sym_in] = ACTIONS(2087), + [anon_sym_loop] = ACTIONS(2087), + [anon_sym_make] = ACTIONS(2087), + [anon_sym_while] = ACTIONS(2087), + [anon_sym_do] = ACTIONS(2087), + [anon_sym_if] = ACTIONS(2087), + [anon_sym_else] = ACTIONS(2087), + [anon_sym_match] = ACTIONS(2087), + [anon_sym_RBRACE] = ACTIONS(2087), + [anon_sym_try] = ACTIONS(2087), + [anon_sym_catch] = ACTIONS(2087), + [anon_sym_return] = ACTIONS(2087), + [anon_sym_source] = ACTIONS(2087), + [anon_sym_source_DASHenv] = ACTIONS(2087), + [anon_sym_register] = ACTIONS(2087), + [anon_sym_hide] = ACTIONS(2087), + [anon_sym_hide_DASHenv] = ACTIONS(2087), + [anon_sym_overlay] = ACTIONS(2087), + [anon_sym_new] = ACTIONS(2087), + [anon_sym_as] = ACTIONS(2087), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2087), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2087), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2087), + [aux_sym__val_number_decimal_token3] = ACTIONS(2087), + [aux_sym__val_number_decimal_token4] = ACTIONS(2087), + [aux_sym__val_number_token1] = ACTIONS(2087), + [aux_sym__val_number_token2] = ACTIONS(2087), + [aux_sym__val_number_token3] = ACTIONS(2087), + [anon_sym_DQUOTE] = ACTIONS(2087), + [sym__str_single_quotes] = ACTIONS(2087), + [sym__str_back_ticks] = ACTIONS(2087), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2087), + [sym__entry_separator] = ACTIONS(2089), + [anon_sym_PLUS] = ACTIONS(2087), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2089), + }, + [577] = { + [sym_comment] = STATE(577), + [anon_sym_export] = ACTIONS(2017), + [anon_sym_alias] = ACTIONS(2017), + [anon_sym_let] = ACTIONS(2017), + [anon_sym_let_DASHenv] = ACTIONS(2017), + [anon_sym_mut] = ACTIONS(2017), + [anon_sym_const] = ACTIONS(2017), + [aux_sym_cmd_identifier_token1] = ACTIONS(2017), + [aux_sym_cmd_identifier_token2] = ACTIONS(2017), + [aux_sym_cmd_identifier_token3] = ACTIONS(2017), + [aux_sym_cmd_identifier_token4] = ACTIONS(2017), + [aux_sym_cmd_identifier_token5] = ACTIONS(2017), + [aux_sym_cmd_identifier_token6] = ACTIONS(2017), + [aux_sym_cmd_identifier_token7] = ACTIONS(2017), + [aux_sym_cmd_identifier_token8] = ACTIONS(2017), + [aux_sym_cmd_identifier_token9] = ACTIONS(2017), + [aux_sym_cmd_identifier_token10] = ACTIONS(2017), + [aux_sym_cmd_identifier_token11] = ACTIONS(2017), + [aux_sym_cmd_identifier_token12] = ACTIONS(2017), + [aux_sym_cmd_identifier_token13] = ACTIONS(2017), + [aux_sym_cmd_identifier_token14] = ACTIONS(2017), + [aux_sym_cmd_identifier_token15] = ACTIONS(2017), + [aux_sym_cmd_identifier_token16] = ACTIONS(2017), + [aux_sym_cmd_identifier_token17] = ACTIONS(2017), + [aux_sym_cmd_identifier_token18] = ACTIONS(2017), + [aux_sym_cmd_identifier_token19] = ACTIONS(2017), + [aux_sym_cmd_identifier_token20] = ACTIONS(2017), + [aux_sym_cmd_identifier_token21] = ACTIONS(2017), + [aux_sym_cmd_identifier_token22] = ACTIONS(2017), + [aux_sym_cmd_identifier_token23] = ACTIONS(2017), + [aux_sym_cmd_identifier_token24] = ACTIONS(2017), + [aux_sym_cmd_identifier_token25] = ACTIONS(2017), + [aux_sym_cmd_identifier_token26] = ACTIONS(2017), + [aux_sym_cmd_identifier_token27] = ACTIONS(2017), + [aux_sym_cmd_identifier_token28] = ACTIONS(2017), + [aux_sym_cmd_identifier_token29] = ACTIONS(2017), + [aux_sym_cmd_identifier_token30] = ACTIONS(2017), + [aux_sym_cmd_identifier_token31] = ACTIONS(2017), + [aux_sym_cmd_identifier_token32] = ACTIONS(2017), + [aux_sym_cmd_identifier_token33] = ACTIONS(2017), + [aux_sym_cmd_identifier_token34] = ACTIONS(2017), + [aux_sym_cmd_identifier_token35] = ACTIONS(2017), + [aux_sym_cmd_identifier_token36] = ACTIONS(2017), + [anon_sym_true] = ACTIONS(2017), + [anon_sym_false] = ACTIONS(2017), + [anon_sym_null] = ACTIONS(2017), + [aux_sym_cmd_identifier_token38] = ACTIONS(2017), + [aux_sym_cmd_identifier_token39] = ACTIONS(2017), + [aux_sym_cmd_identifier_token40] = ACTIONS(2017), + [anon_sym_def] = ACTIONS(2017), + [anon_sym_export_DASHenv] = ACTIONS(2017), + [anon_sym_extern] = ACTIONS(2017), + [anon_sym_module] = ACTIONS(2017), + [anon_sym_use] = ACTIONS(2017), + [anon_sym_LPAREN] = ACTIONS(2017), + [anon_sym_DOLLAR] = ACTIONS(2017), + [anon_sym_error] = ACTIONS(2017), + [anon_sym_list] = ACTIONS(2017), + [anon_sym_DASH] = ACTIONS(2017), + [anon_sym_break] = ACTIONS(2017), + [anon_sym_continue] = ACTIONS(2017), + [anon_sym_for] = ACTIONS(2017), + [anon_sym_in] = ACTIONS(2017), + [anon_sym_loop] = ACTIONS(2017), + [anon_sym_make] = ACTIONS(2017), + [anon_sym_while] = ACTIONS(2017), + [anon_sym_do] = ACTIONS(2017), + [anon_sym_if] = ACTIONS(2017), + [anon_sym_else] = ACTIONS(2017), + [anon_sym_match] = ACTIONS(2017), + [anon_sym_RBRACE] = ACTIONS(2017), + [anon_sym_try] = ACTIONS(2017), + [anon_sym_catch] = ACTIONS(2017), + [anon_sym_return] = ACTIONS(2017), + [anon_sym_source] = ACTIONS(2017), + [anon_sym_source_DASHenv] = ACTIONS(2017), + [anon_sym_register] = ACTIONS(2017), + [anon_sym_hide] = ACTIONS(2017), + [anon_sym_hide_DASHenv] = ACTIONS(2017), + [anon_sym_overlay] = ACTIONS(2017), + [anon_sym_new] = ACTIONS(2017), + [anon_sym_as] = ACTIONS(2017), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2017), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2017), + [aux_sym__val_number_decimal_token1] = ACTIONS(2017), + [aux_sym__val_number_decimal_token2] = ACTIONS(2017), + [aux_sym__val_number_decimal_token3] = ACTIONS(2017), + [aux_sym__val_number_decimal_token4] = ACTIONS(2017), + [aux_sym__val_number_token1] = ACTIONS(2017), + [aux_sym__val_number_token2] = ACTIONS(2017), + [aux_sym__val_number_token3] = ACTIONS(2017), + [anon_sym_DQUOTE] = ACTIONS(2017), + [sym__str_single_quotes] = ACTIONS(2017), + [sym__str_back_ticks] = ACTIONS(2017), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2017), + [sym__entry_separator] = ACTIONS(2019), + [anon_sym_PLUS] = ACTIONS(2017), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2019), + }, + [578] = { + [sym_comment] = STATE(578), + [anon_sym_export] = ACTIONS(2470), + [anon_sym_alias] = ACTIONS(2470), + [anon_sym_let] = ACTIONS(2470), + [anon_sym_let_DASHenv] = ACTIONS(2470), + [anon_sym_mut] = ACTIONS(2470), + [anon_sym_const] = ACTIONS(2470), + [aux_sym_cmd_identifier_token1] = ACTIONS(2470), + [aux_sym_cmd_identifier_token2] = ACTIONS(2470), + [aux_sym_cmd_identifier_token3] = ACTIONS(2470), + [aux_sym_cmd_identifier_token4] = ACTIONS(2470), + [aux_sym_cmd_identifier_token5] = ACTIONS(2470), + [aux_sym_cmd_identifier_token6] = ACTIONS(2470), + [aux_sym_cmd_identifier_token7] = ACTIONS(2470), + [aux_sym_cmd_identifier_token8] = ACTIONS(2470), + [aux_sym_cmd_identifier_token9] = ACTIONS(2470), + [aux_sym_cmd_identifier_token10] = ACTIONS(2470), + [aux_sym_cmd_identifier_token11] = ACTIONS(2470), + [aux_sym_cmd_identifier_token12] = ACTIONS(2470), + [aux_sym_cmd_identifier_token13] = ACTIONS(2470), + [aux_sym_cmd_identifier_token14] = ACTIONS(2470), + [aux_sym_cmd_identifier_token15] = ACTIONS(2470), + [aux_sym_cmd_identifier_token16] = ACTIONS(2470), + [aux_sym_cmd_identifier_token17] = ACTIONS(2470), + [aux_sym_cmd_identifier_token18] = ACTIONS(2470), + [aux_sym_cmd_identifier_token19] = ACTIONS(2470), + [aux_sym_cmd_identifier_token20] = ACTIONS(2470), + [aux_sym_cmd_identifier_token21] = ACTIONS(2470), + [aux_sym_cmd_identifier_token22] = ACTIONS(2470), + [aux_sym_cmd_identifier_token23] = ACTIONS(2470), + [aux_sym_cmd_identifier_token24] = ACTIONS(2470), + [aux_sym_cmd_identifier_token25] = ACTIONS(2470), + [aux_sym_cmd_identifier_token26] = ACTIONS(2470), + [aux_sym_cmd_identifier_token27] = ACTIONS(2470), + [aux_sym_cmd_identifier_token28] = ACTIONS(2470), + [aux_sym_cmd_identifier_token29] = ACTIONS(2470), + [aux_sym_cmd_identifier_token30] = ACTIONS(2470), + [aux_sym_cmd_identifier_token31] = ACTIONS(2470), + [aux_sym_cmd_identifier_token32] = ACTIONS(2470), + [aux_sym_cmd_identifier_token33] = ACTIONS(2470), + [aux_sym_cmd_identifier_token34] = ACTIONS(2470), + [aux_sym_cmd_identifier_token35] = ACTIONS(2470), + [aux_sym_cmd_identifier_token36] = ACTIONS(2470), + [anon_sym_true] = ACTIONS(2470), + [anon_sym_false] = ACTIONS(2470), + [anon_sym_null] = ACTIONS(2470), + [aux_sym_cmd_identifier_token38] = ACTIONS(2470), + [aux_sym_cmd_identifier_token39] = ACTIONS(2470), + [aux_sym_cmd_identifier_token40] = ACTIONS(2470), + [anon_sym_def] = ACTIONS(2470), + [anon_sym_export_DASHenv] = ACTIONS(2470), + [anon_sym_extern] = ACTIONS(2470), + [anon_sym_module] = ACTIONS(2470), + [anon_sym_use] = ACTIONS(2470), + [anon_sym_LPAREN] = ACTIONS(2470), + [anon_sym_DOLLAR] = ACTIONS(2470), + [anon_sym_error] = ACTIONS(2470), + [anon_sym_list] = ACTIONS(2470), + [anon_sym_DASH] = ACTIONS(2470), + [anon_sym_break] = ACTIONS(2470), + [anon_sym_continue] = ACTIONS(2470), + [anon_sym_for] = ACTIONS(2470), + [anon_sym_in] = ACTIONS(2470), + [anon_sym_loop] = ACTIONS(2470), + [anon_sym_make] = ACTIONS(2470), + [anon_sym_while] = ACTIONS(2470), + [anon_sym_do] = ACTIONS(2470), + [anon_sym_if] = ACTIONS(2470), + [anon_sym_else] = ACTIONS(2470), + [anon_sym_match] = ACTIONS(2470), + [anon_sym_RBRACE] = ACTIONS(2470), + [anon_sym_try] = ACTIONS(2470), + [anon_sym_catch] = ACTIONS(2470), + [anon_sym_return] = ACTIONS(2470), + [anon_sym_source] = ACTIONS(2470), + [anon_sym_source_DASHenv] = ACTIONS(2470), + [anon_sym_register] = ACTIONS(2470), + [anon_sym_hide] = ACTIONS(2470), + [anon_sym_hide_DASHenv] = ACTIONS(2470), + [anon_sym_overlay] = ACTIONS(2470), + [anon_sym_new] = ACTIONS(2470), + [anon_sym_as] = ACTIONS(2470), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2470), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2470), + [aux_sym__val_number_decimal_token1] = ACTIONS(2470), + [aux_sym__val_number_decimal_token2] = ACTIONS(2470), + [aux_sym__val_number_decimal_token3] = ACTIONS(2470), + [aux_sym__val_number_decimal_token4] = ACTIONS(2470), + [aux_sym__val_number_token1] = ACTIONS(2470), + [aux_sym__val_number_token2] = ACTIONS(2470), + [aux_sym__val_number_token3] = ACTIONS(2470), + [anon_sym_DQUOTE] = ACTIONS(2470), + [sym__str_single_quotes] = ACTIONS(2470), + [sym__str_back_ticks] = ACTIONS(2470), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2470), + [sym__entry_separator] = ACTIONS(2472), + [anon_sym_PLUS] = ACTIONS(2470), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2472), + }, + [579] = { + [sym_comment] = STATE(579), + [anon_sym_export] = ACTIONS(2196), + [anon_sym_alias] = ACTIONS(2196), + [anon_sym_let] = ACTIONS(2196), + [anon_sym_let_DASHenv] = ACTIONS(2196), + [anon_sym_mut] = ACTIONS(2196), + [anon_sym_const] = ACTIONS(2196), + [aux_sym_cmd_identifier_token1] = ACTIONS(2196), + [aux_sym_cmd_identifier_token2] = ACTIONS(2196), + [aux_sym_cmd_identifier_token3] = ACTIONS(2196), + [aux_sym_cmd_identifier_token4] = ACTIONS(2196), + [aux_sym_cmd_identifier_token5] = ACTIONS(2196), + [aux_sym_cmd_identifier_token6] = ACTIONS(2196), + [aux_sym_cmd_identifier_token7] = ACTIONS(2196), + [aux_sym_cmd_identifier_token8] = ACTIONS(2196), + [aux_sym_cmd_identifier_token9] = ACTIONS(2196), + [aux_sym_cmd_identifier_token10] = ACTIONS(2196), + [aux_sym_cmd_identifier_token11] = ACTIONS(2196), + [aux_sym_cmd_identifier_token12] = ACTIONS(2196), + [aux_sym_cmd_identifier_token13] = ACTIONS(2196), + [aux_sym_cmd_identifier_token14] = ACTIONS(2196), + [aux_sym_cmd_identifier_token15] = ACTIONS(2196), + [aux_sym_cmd_identifier_token16] = ACTIONS(2196), + [aux_sym_cmd_identifier_token17] = ACTIONS(2196), + [aux_sym_cmd_identifier_token18] = ACTIONS(2196), + [aux_sym_cmd_identifier_token19] = ACTIONS(2196), + [aux_sym_cmd_identifier_token20] = ACTIONS(2196), + [aux_sym_cmd_identifier_token21] = ACTIONS(2196), + [aux_sym_cmd_identifier_token22] = ACTIONS(2196), + [aux_sym_cmd_identifier_token23] = ACTIONS(2196), + [aux_sym_cmd_identifier_token24] = ACTIONS(2196), + [aux_sym_cmd_identifier_token25] = ACTIONS(2196), + [aux_sym_cmd_identifier_token26] = ACTIONS(2196), + [aux_sym_cmd_identifier_token27] = ACTIONS(2196), + [aux_sym_cmd_identifier_token28] = ACTIONS(2196), + [aux_sym_cmd_identifier_token29] = ACTIONS(2196), + [aux_sym_cmd_identifier_token30] = ACTIONS(2196), + [aux_sym_cmd_identifier_token31] = ACTIONS(2196), + [aux_sym_cmd_identifier_token32] = ACTIONS(2196), + [aux_sym_cmd_identifier_token33] = ACTIONS(2196), + [aux_sym_cmd_identifier_token34] = ACTIONS(2196), + [aux_sym_cmd_identifier_token35] = ACTIONS(2196), + [aux_sym_cmd_identifier_token36] = ACTIONS(2196), + [anon_sym_true] = ACTIONS(2196), + [anon_sym_false] = ACTIONS(2196), + [anon_sym_null] = ACTIONS(2196), + [aux_sym_cmd_identifier_token38] = ACTIONS(2196), + [aux_sym_cmd_identifier_token39] = ACTIONS(2196), + [aux_sym_cmd_identifier_token40] = ACTIONS(2196), + [anon_sym_def] = ACTIONS(2196), + [anon_sym_export_DASHenv] = ACTIONS(2196), + [anon_sym_extern] = ACTIONS(2196), + [anon_sym_module] = ACTIONS(2196), + [anon_sym_use] = ACTIONS(2196), + [anon_sym_LPAREN] = ACTIONS(2196), + [anon_sym_DOLLAR] = ACTIONS(2196), + [anon_sym_error] = ACTIONS(2196), + [anon_sym_list] = ACTIONS(2196), + [anon_sym_DASH] = ACTIONS(2196), + [anon_sym_break] = ACTIONS(2196), + [anon_sym_continue] = ACTIONS(2196), + [anon_sym_for] = ACTIONS(2196), + [anon_sym_in] = ACTIONS(2196), + [anon_sym_loop] = ACTIONS(2196), + [anon_sym_make] = ACTIONS(2196), + [anon_sym_while] = ACTIONS(2196), + [anon_sym_do] = ACTIONS(2196), + [anon_sym_if] = ACTIONS(2196), + [anon_sym_else] = ACTIONS(2196), + [anon_sym_match] = ACTIONS(2196), + [anon_sym_RBRACE] = ACTIONS(2196), + [anon_sym_try] = ACTIONS(2196), + [anon_sym_catch] = ACTIONS(2196), + [anon_sym_return] = ACTIONS(2196), + [anon_sym_source] = ACTIONS(2196), + [anon_sym_source_DASHenv] = ACTIONS(2196), + [anon_sym_register] = ACTIONS(2196), + [anon_sym_hide] = ACTIONS(2196), + [anon_sym_hide_DASHenv] = ACTIONS(2196), + [anon_sym_overlay] = ACTIONS(2196), + [anon_sym_new] = ACTIONS(2196), + [anon_sym_as] = ACTIONS(2196), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2196), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2196), + [aux_sym__val_number_decimal_token1] = ACTIONS(2196), + [aux_sym__val_number_decimal_token2] = ACTIONS(2196), + [aux_sym__val_number_decimal_token3] = ACTIONS(2196), + [aux_sym__val_number_decimal_token4] = ACTIONS(2196), + [aux_sym__val_number_token1] = ACTIONS(2196), + [aux_sym__val_number_token2] = ACTIONS(2196), + [aux_sym__val_number_token3] = ACTIONS(2196), + [anon_sym_DQUOTE] = ACTIONS(2196), + [sym__str_single_quotes] = ACTIONS(2196), + [sym__str_back_ticks] = ACTIONS(2196), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2196), + [sym__entry_separator] = ACTIONS(2198), + [anon_sym_PLUS] = ACTIONS(2196), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2198), + }, + [580] = { + [sym_comment] = STATE(580), + [anon_sym_export] = ACTIONS(2474), + [anon_sym_alias] = ACTIONS(2474), + [anon_sym_let] = ACTIONS(2474), + [anon_sym_let_DASHenv] = ACTIONS(2474), + [anon_sym_mut] = ACTIONS(2474), + [anon_sym_const] = ACTIONS(2474), + [aux_sym_cmd_identifier_token1] = ACTIONS(2474), + [aux_sym_cmd_identifier_token2] = ACTIONS(2474), + [aux_sym_cmd_identifier_token3] = ACTIONS(2474), + [aux_sym_cmd_identifier_token4] = ACTIONS(2474), + [aux_sym_cmd_identifier_token5] = ACTIONS(2474), + [aux_sym_cmd_identifier_token6] = ACTIONS(2474), + [aux_sym_cmd_identifier_token7] = ACTIONS(2474), + [aux_sym_cmd_identifier_token8] = ACTIONS(2474), + [aux_sym_cmd_identifier_token9] = ACTIONS(2474), + [aux_sym_cmd_identifier_token10] = ACTIONS(2474), + [aux_sym_cmd_identifier_token11] = ACTIONS(2474), + [aux_sym_cmd_identifier_token12] = ACTIONS(2474), + [aux_sym_cmd_identifier_token13] = ACTIONS(2474), + [aux_sym_cmd_identifier_token14] = ACTIONS(2474), + [aux_sym_cmd_identifier_token15] = ACTIONS(2474), + [aux_sym_cmd_identifier_token16] = ACTIONS(2474), + [aux_sym_cmd_identifier_token17] = ACTIONS(2474), + [aux_sym_cmd_identifier_token18] = ACTIONS(2474), + [aux_sym_cmd_identifier_token19] = ACTIONS(2474), + [aux_sym_cmd_identifier_token20] = ACTIONS(2474), + [aux_sym_cmd_identifier_token21] = ACTIONS(2474), + [aux_sym_cmd_identifier_token22] = ACTIONS(2474), + [aux_sym_cmd_identifier_token23] = ACTIONS(2474), + [aux_sym_cmd_identifier_token24] = ACTIONS(2474), + [aux_sym_cmd_identifier_token25] = ACTIONS(2474), + [aux_sym_cmd_identifier_token26] = ACTIONS(2474), + [aux_sym_cmd_identifier_token27] = ACTIONS(2474), + [aux_sym_cmd_identifier_token28] = ACTIONS(2474), + [aux_sym_cmd_identifier_token29] = ACTIONS(2474), + [aux_sym_cmd_identifier_token30] = ACTIONS(2474), + [aux_sym_cmd_identifier_token31] = ACTIONS(2474), + [aux_sym_cmd_identifier_token32] = ACTIONS(2474), + [aux_sym_cmd_identifier_token33] = ACTIONS(2474), + [aux_sym_cmd_identifier_token34] = ACTIONS(2474), + [aux_sym_cmd_identifier_token35] = ACTIONS(2474), + [aux_sym_cmd_identifier_token36] = ACTIONS(2474), + [anon_sym_true] = ACTIONS(2474), + [anon_sym_false] = ACTIONS(2474), + [anon_sym_null] = ACTIONS(2474), + [aux_sym_cmd_identifier_token38] = ACTIONS(2474), + [aux_sym_cmd_identifier_token39] = ACTIONS(2474), + [aux_sym_cmd_identifier_token40] = ACTIONS(2474), + [anon_sym_def] = ACTIONS(2474), + [anon_sym_export_DASHenv] = ACTIONS(2474), + [anon_sym_extern] = ACTIONS(2474), + [anon_sym_module] = ACTIONS(2474), + [anon_sym_use] = ACTIONS(2474), + [anon_sym_LPAREN] = ACTIONS(2474), + [anon_sym_DOLLAR] = ACTIONS(2474), + [anon_sym_error] = ACTIONS(2474), + [anon_sym_list] = ACTIONS(2474), + [anon_sym_DASH] = ACTIONS(2474), + [anon_sym_break] = ACTIONS(2474), + [anon_sym_continue] = ACTIONS(2474), + [anon_sym_for] = ACTIONS(2474), + [anon_sym_in] = ACTIONS(2474), + [anon_sym_loop] = ACTIONS(2474), + [anon_sym_make] = ACTIONS(2474), + [anon_sym_while] = ACTIONS(2474), + [anon_sym_do] = ACTIONS(2474), + [anon_sym_if] = ACTIONS(2474), + [anon_sym_else] = ACTIONS(2474), + [anon_sym_match] = ACTIONS(2474), + [anon_sym_RBRACE] = ACTIONS(2474), + [anon_sym_try] = ACTIONS(2474), + [anon_sym_catch] = ACTIONS(2474), + [anon_sym_return] = ACTIONS(2474), + [anon_sym_source] = ACTIONS(2474), + [anon_sym_source_DASHenv] = ACTIONS(2474), + [anon_sym_register] = ACTIONS(2474), + [anon_sym_hide] = ACTIONS(2474), + [anon_sym_hide_DASHenv] = ACTIONS(2474), + [anon_sym_overlay] = ACTIONS(2474), + [anon_sym_new] = ACTIONS(2474), + [anon_sym_as] = ACTIONS(2474), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2474), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2474), + [aux_sym__val_number_decimal_token1] = ACTIONS(2474), + [aux_sym__val_number_decimal_token2] = ACTIONS(2474), + [aux_sym__val_number_decimal_token3] = ACTIONS(2474), + [aux_sym__val_number_decimal_token4] = ACTIONS(2474), + [aux_sym__val_number_token1] = ACTIONS(2474), + [aux_sym__val_number_token2] = ACTIONS(2474), + [aux_sym__val_number_token3] = ACTIONS(2474), + [anon_sym_DQUOTE] = ACTIONS(2474), + [sym__str_single_quotes] = ACTIONS(2474), + [sym__str_back_ticks] = ACTIONS(2474), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2474), + [sym__entry_separator] = ACTIONS(2476), + [anon_sym_PLUS] = ACTIONS(2474), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2476), + }, + [581] = { + [sym_comment] = STATE(581), + [anon_sym_export] = ACTIONS(2478), + [anon_sym_alias] = ACTIONS(2478), + [anon_sym_let] = ACTIONS(2478), + [anon_sym_let_DASHenv] = ACTIONS(2478), + [anon_sym_mut] = ACTIONS(2478), + [anon_sym_const] = ACTIONS(2478), + [aux_sym_cmd_identifier_token1] = ACTIONS(2478), + [aux_sym_cmd_identifier_token2] = ACTIONS(2478), + [aux_sym_cmd_identifier_token3] = ACTIONS(2478), + [aux_sym_cmd_identifier_token4] = ACTIONS(2478), + [aux_sym_cmd_identifier_token5] = ACTIONS(2478), + [aux_sym_cmd_identifier_token6] = ACTIONS(2478), + [aux_sym_cmd_identifier_token7] = ACTIONS(2478), + [aux_sym_cmd_identifier_token8] = ACTIONS(2478), + [aux_sym_cmd_identifier_token9] = ACTIONS(2478), + [aux_sym_cmd_identifier_token10] = ACTIONS(2478), + [aux_sym_cmd_identifier_token11] = ACTIONS(2478), + [aux_sym_cmd_identifier_token12] = ACTIONS(2478), + [aux_sym_cmd_identifier_token13] = ACTIONS(2478), + [aux_sym_cmd_identifier_token14] = ACTIONS(2478), + [aux_sym_cmd_identifier_token15] = ACTIONS(2478), + [aux_sym_cmd_identifier_token16] = ACTIONS(2478), + [aux_sym_cmd_identifier_token17] = ACTIONS(2478), + [aux_sym_cmd_identifier_token18] = ACTIONS(2478), + [aux_sym_cmd_identifier_token19] = ACTIONS(2478), + [aux_sym_cmd_identifier_token20] = ACTIONS(2478), + [aux_sym_cmd_identifier_token21] = ACTIONS(2478), + [aux_sym_cmd_identifier_token22] = ACTIONS(2478), + [aux_sym_cmd_identifier_token23] = ACTIONS(2478), + [aux_sym_cmd_identifier_token24] = ACTIONS(2478), + [aux_sym_cmd_identifier_token25] = ACTIONS(2478), + [aux_sym_cmd_identifier_token26] = ACTIONS(2478), + [aux_sym_cmd_identifier_token27] = ACTIONS(2478), + [aux_sym_cmd_identifier_token28] = ACTIONS(2478), + [aux_sym_cmd_identifier_token29] = ACTIONS(2478), + [aux_sym_cmd_identifier_token30] = ACTIONS(2478), + [aux_sym_cmd_identifier_token31] = ACTIONS(2478), + [aux_sym_cmd_identifier_token32] = ACTIONS(2478), + [aux_sym_cmd_identifier_token33] = ACTIONS(2478), + [aux_sym_cmd_identifier_token34] = ACTIONS(2478), + [aux_sym_cmd_identifier_token35] = ACTIONS(2478), + [aux_sym_cmd_identifier_token36] = ACTIONS(2478), + [anon_sym_true] = ACTIONS(2478), + [anon_sym_false] = ACTIONS(2478), + [anon_sym_null] = ACTIONS(2478), + [aux_sym_cmd_identifier_token38] = ACTIONS(2478), + [aux_sym_cmd_identifier_token39] = ACTIONS(2478), + [aux_sym_cmd_identifier_token40] = ACTIONS(2478), + [anon_sym_def] = ACTIONS(2478), + [anon_sym_export_DASHenv] = ACTIONS(2478), + [anon_sym_extern] = ACTIONS(2478), + [anon_sym_module] = ACTIONS(2478), + [anon_sym_use] = ACTIONS(2478), + [anon_sym_LPAREN] = ACTIONS(2478), + [anon_sym_DOLLAR] = ACTIONS(2478), + [anon_sym_error] = ACTIONS(2478), + [anon_sym_list] = ACTIONS(2478), + [anon_sym_DASH] = ACTIONS(2478), + [anon_sym_break] = ACTIONS(2478), + [anon_sym_continue] = ACTIONS(2478), + [anon_sym_for] = ACTIONS(2478), + [anon_sym_in] = ACTIONS(2478), + [anon_sym_loop] = ACTIONS(2478), + [anon_sym_make] = ACTIONS(2478), + [anon_sym_while] = ACTIONS(2478), + [anon_sym_do] = ACTIONS(2478), + [anon_sym_if] = ACTIONS(2478), + [anon_sym_else] = ACTIONS(2478), + [anon_sym_match] = ACTIONS(2478), + [anon_sym_RBRACE] = ACTIONS(2478), + [anon_sym_try] = ACTIONS(2478), + [anon_sym_catch] = ACTIONS(2478), + [anon_sym_return] = ACTIONS(2478), + [anon_sym_source] = ACTIONS(2478), + [anon_sym_source_DASHenv] = ACTIONS(2478), + [anon_sym_register] = ACTIONS(2478), + [anon_sym_hide] = ACTIONS(2478), + [anon_sym_hide_DASHenv] = ACTIONS(2478), + [anon_sym_overlay] = ACTIONS(2478), + [anon_sym_new] = ACTIONS(2478), + [anon_sym_as] = ACTIONS(2478), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2478), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2478), + [aux_sym__val_number_decimal_token1] = ACTIONS(2478), + [aux_sym__val_number_decimal_token2] = ACTIONS(2478), + [aux_sym__val_number_decimal_token3] = ACTIONS(2478), + [aux_sym__val_number_decimal_token4] = ACTIONS(2478), + [aux_sym__val_number_token1] = ACTIONS(2478), + [aux_sym__val_number_token2] = ACTIONS(2478), + [aux_sym__val_number_token3] = ACTIONS(2478), + [anon_sym_DQUOTE] = ACTIONS(2478), + [sym__str_single_quotes] = ACTIONS(2478), + [sym__str_back_ticks] = ACTIONS(2478), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2478), + [sym__entry_separator] = ACTIONS(2480), + [anon_sym_PLUS] = ACTIONS(2478), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2480), + }, + [582] = { + [sym_comment] = STATE(582), + [anon_sym_export] = ACTIONS(2063), + [anon_sym_alias] = ACTIONS(2063), + [anon_sym_let] = ACTIONS(2063), + [anon_sym_let_DASHenv] = ACTIONS(2063), + [anon_sym_mut] = ACTIONS(2063), + [anon_sym_const] = ACTIONS(2063), + [aux_sym_cmd_identifier_token1] = ACTIONS(2063), + [aux_sym_cmd_identifier_token2] = ACTIONS(2063), + [aux_sym_cmd_identifier_token3] = ACTIONS(2063), + [aux_sym_cmd_identifier_token4] = ACTIONS(2063), + [aux_sym_cmd_identifier_token5] = ACTIONS(2063), + [aux_sym_cmd_identifier_token6] = ACTIONS(2063), + [aux_sym_cmd_identifier_token7] = ACTIONS(2063), + [aux_sym_cmd_identifier_token8] = ACTIONS(2063), + [aux_sym_cmd_identifier_token9] = ACTIONS(2063), + [aux_sym_cmd_identifier_token10] = ACTIONS(2063), + [aux_sym_cmd_identifier_token11] = ACTIONS(2063), + [aux_sym_cmd_identifier_token12] = ACTIONS(2063), + [aux_sym_cmd_identifier_token13] = ACTIONS(2063), + [aux_sym_cmd_identifier_token14] = ACTIONS(2063), + [aux_sym_cmd_identifier_token15] = ACTIONS(2063), + [aux_sym_cmd_identifier_token16] = ACTIONS(2063), + [aux_sym_cmd_identifier_token17] = ACTIONS(2063), + [aux_sym_cmd_identifier_token18] = ACTIONS(2063), + [aux_sym_cmd_identifier_token19] = ACTIONS(2063), + [aux_sym_cmd_identifier_token20] = ACTIONS(2063), + [aux_sym_cmd_identifier_token21] = ACTIONS(2063), + [aux_sym_cmd_identifier_token22] = ACTIONS(2063), + [aux_sym_cmd_identifier_token23] = ACTIONS(2063), + [aux_sym_cmd_identifier_token24] = ACTIONS(2063), + [aux_sym_cmd_identifier_token25] = ACTIONS(2063), + [aux_sym_cmd_identifier_token26] = ACTIONS(2063), + [aux_sym_cmd_identifier_token27] = ACTIONS(2063), + [aux_sym_cmd_identifier_token28] = ACTIONS(2063), + [aux_sym_cmd_identifier_token29] = ACTIONS(2063), + [aux_sym_cmd_identifier_token30] = ACTIONS(2063), + [aux_sym_cmd_identifier_token31] = ACTIONS(2063), + [aux_sym_cmd_identifier_token32] = ACTIONS(2063), + [aux_sym_cmd_identifier_token33] = ACTIONS(2063), + [aux_sym_cmd_identifier_token34] = ACTIONS(2063), + [aux_sym_cmd_identifier_token35] = ACTIONS(2063), + [aux_sym_cmd_identifier_token36] = ACTIONS(2063), + [anon_sym_true] = ACTIONS(2063), + [anon_sym_false] = ACTIONS(2063), + [anon_sym_null] = ACTIONS(2063), + [aux_sym_cmd_identifier_token38] = ACTIONS(2063), + [aux_sym_cmd_identifier_token39] = ACTIONS(2063), + [aux_sym_cmd_identifier_token40] = ACTIONS(2063), + [anon_sym_def] = ACTIONS(2063), + [anon_sym_export_DASHenv] = ACTIONS(2063), + [anon_sym_extern] = ACTIONS(2063), + [anon_sym_module] = ACTIONS(2063), + [anon_sym_use] = ACTIONS(2063), + [anon_sym_LPAREN] = ACTIONS(2063), + [anon_sym_DOLLAR] = ACTIONS(2063), + [anon_sym_error] = ACTIONS(2063), + [anon_sym_list] = ACTIONS(2063), + [anon_sym_DASH] = ACTIONS(2063), + [anon_sym_break] = ACTIONS(2063), + [anon_sym_continue] = ACTIONS(2063), + [anon_sym_for] = ACTIONS(2063), + [anon_sym_in] = ACTIONS(2063), + [anon_sym_loop] = ACTIONS(2063), + [anon_sym_make] = ACTIONS(2063), + [anon_sym_while] = ACTIONS(2063), + [anon_sym_do] = ACTIONS(2063), + [anon_sym_if] = ACTIONS(2063), + [anon_sym_else] = ACTIONS(2063), + [anon_sym_match] = ACTIONS(2063), + [anon_sym_RBRACE] = ACTIONS(2063), + [anon_sym_try] = ACTIONS(2063), + [anon_sym_catch] = ACTIONS(2063), + [anon_sym_return] = ACTIONS(2063), + [anon_sym_source] = ACTIONS(2063), + [anon_sym_source_DASHenv] = ACTIONS(2063), + [anon_sym_register] = ACTIONS(2063), + [anon_sym_hide] = ACTIONS(2063), + [anon_sym_hide_DASHenv] = ACTIONS(2063), + [anon_sym_overlay] = ACTIONS(2063), + [anon_sym_new] = ACTIONS(2063), + [anon_sym_as] = ACTIONS(2063), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2063), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2063), + [aux_sym__val_number_decimal_token1] = ACTIONS(2063), + [aux_sym__val_number_decimal_token2] = ACTIONS(2063), + [aux_sym__val_number_decimal_token3] = ACTIONS(2063), + [aux_sym__val_number_decimal_token4] = ACTIONS(2063), + [aux_sym__val_number_token1] = ACTIONS(2063), + [aux_sym__val_number_token2] = ACTIONS(2063), + [aux_sym__val_number_token3] = ACTIONS(2063), + [anon_sym_DQUOTE] = ACTIONS(2063), + [sym__str_single_quotes] = ACTIONS(2063), + [sym__str_back_ticks] = ACTIONS(2063), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2063), + [sym__entry_separator] = ACTIONS(2065), + [anon_sym_PLUS] = ACTIONS(2063), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2065), + }, + [583] = { + [sym_comment] = STATE(583), + [anon_sym_export] = ACTIONS(1703), + [anon_sym_alias] = ACTIONS(1703), + [anon_sym_let] = ACTIONS(1703), + [anon_sym_let_DASHenv] = ACTIONS(1703), + [anon_sym_mut] = ACTIONS(1703), + [anon_sym_const] = ACTIONS(1703), + [aux_sym_cmd_identifier_token1] = ACTIONS(1703), + [aux_sym_cmd_identifier_token2] = ACTIONS(1703), + [aux_sym_cmd_identifier_token3] = ACTIONS(1703), + [aux_sym_cmd_identifier_token4] = ACTIONS(1703), + [aux_sym_cmd_identifier_token5] = ACTIONS(1703), + [aux_sym_cmd_identifier_token6] = ACTIONS(1703), + [aux_sym_cmd_identifier_token7] = ACTIONS(1703), + [aux_sym_cmd_identifier_token8] = ACTIONS(1703), + [aux_sym_cmd_identifier_token9] = ACTIONS(1703), + [aux_sym_cmd_identifier_token10] = ACTIONS(1703), + [aux_sym_cmd_identifier_token11] = ACTIONS(1703), + [aux_sym_cmd_identifier_token12] = ACTIONS(1703), + [aux_sym_cmd_identifier_token13] = ACTIONS(1703), + [aux_sym_cmd_identifier_token14] = ACTIONS(1703), + [aux_sym_cmd_identifier_token15] = ACTIONS(1703), + [aux_sym_cmd_identifier_token16] = ACTIONS(1703), + [aux_sym_cmd_identifier_token17] = ACTIONS(1703), + [aux_sym_cmd_identifier_token18] = ACTIONS(1703), + [aux_sym_cmd_identifier_token19] = ACTIONS(1703), + [aux_sym_cmd_identifier_token20] = ACTIONS(1703), + [aux_sym_cmd_identifier_token21] = ACTIONS(1703), + [aux_sym_cmd_identifier_token22] = ACTIONS(1703), + [aux_sym_cmd_identifier_token23] = ACTIONS(1703), + [aux_sym_cmd_identifier_token24] = ACTIONS(1703), + [aux_sym_cmd_identifier_token25] = ACTIONS(1703), + [aux_sym_cmd_identifier_token26] = ACTIONS(1703), + [aux_sym_cmd_identifier_token27] = ACTIONS(1703), + [aux_sym_cmd_identifier_token28] = ACTIONS(1703), + [aux_sym_cmd_identifier_token29] = ACTIONS(1703), + [aux_sym_cmd_identifier_token30] = ACTIONS(1703), + [aux_sym_cmd_identifier_token31] = ACTIONS(1703), + [aux_sym_cmd_identifier_token32] = ACTIONS(1703), + [aux_sym_cmd_identifier_token33] = ACTIONS(1703), + [aux_sym_cmd_identifier_token34] = ACTIONS(1703), + [aux_sym_cmd_identifier_token35] = ACTIONS(1703), + [aux_sym_cmd_identifier_token36] = ACTIONS(1703), + [anon_sym_true] = ACTIONS(1703), + [anon_sym_false] = ACTIONS(1703), + [anon_sym_null] = ACTIONS(1703), + [aux_sym_cmd_identifier_token38] = ACTIONS(1703), + [aux_sym_cmd_identifier_token39] = ACTIONS(1703), + [aux_sym_cmd_identifier_token40] = ACTIONS(1703), + [anon_sym_def] = ACTIONS(1703), + [anon_sym_export_DASHenv] = ACTIONS(1703), + [anon_sym_extern] = ACTIONS(1703), + [anon_sym_module] = ACTIONS(1703), + [anon_sym_use] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1703), + [anon_sym_error] = ACTIONS(1703), + [anon_sym_list] = ACTIONS(1703), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_break] = ACTIONS(1703), + [anon_sym_continue] = ACTIONS(1703), + [anon_sym_for] = ACTIONS(1703), + [anon_sym_in] = ACTIONS(1703), + [anon_sym_loop] = ACTIONS(1703), + [anon_sym_make] = ACTIONS(1703), + [anon_sym_while] = ACTIONS(1703), + [anon_sym_do] = ACTIONS(1703), + [anon_sym_if] = ACTIONS(1703), + [anon_sym_else] = ACTIONS(1703), + [anon_sym_match] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1703), + [anon_sym_try] = ACTIONS(1703), + [anon_sym_catch] = ACTIONS(1703), + [anon_sym_return] = ACTIONS(1703), + [anon_sym_source] = ACTIONS(1703), + [anon_sym_source_DASHenv] = ACTIONS(1703), + [anon_sym_register] = ACTIONS(1703), + [anon_sym_hide] = ACTIONS(1703), + [anon_sym_hide_DASHenv] = ACTIONS(1703), + [anon_sym_overlay] = ACTIONS(1703), + [anon_sym_new] = ACTIONS(1703), + [anon_sym_as] = ACTIONS(1703), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1703), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1703), + [aux_sym__val_number_decimal_token2] = ACTIONS(1703), + [aux_sym__val_number_decimal_token3] = ACTIONS(1703), + [aux_sym__val_number_decimal_token4] = ACTIONS(1703), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1703), + [sym__entry_separator] = ACTIONS(1705), + [anon_sym_PLUS] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1705), + }, + [584] = { + [sym_comment] = STATE(584), + [anon_sym_export] = ACTIONS(2482), + [anon_sym_alias] = ACTIONS(2482), + [anon_sym_let] = ACTIONS(2482), + [anon_sym_let_DASHenv] = ACTIONS(2482), + [anon_sym_mut] = ACTIONS(2482), + [anon_sym_const] = ACTIONS(2482), + [aux_sym_cmd_identifier_token1] = ACTIONS(2482), + [aux_sym_cmd_identifier_token2] = ACTIONS(2482), + [aux_sym_cmd_identifier_token3] = ACTIONS(2482), + [aux_sym_cmd_identifier_token4] = ACTIONS(2482), + [aux_sym_cmd_identifier_token5] = ACTIONS(2482), + [aux_sym_cmd_identifier_token6] = ACTIONS(2482), + [aux_sym_cmd_identifier_token7] = ACTIONS(2482), + [aux_sym_cmd_identifier_token8] = ACTIONS(2482), + [aux_sym_cmd_identifier_token9] = ACTIONS(2482), + [aux_sym_cmd_identifier_token10] = ACTIONS(2482), + [aux_sym_cmd_identifier_token11] = ACTIONS(2482), + [aux_sym_cmd_identifier_token12] = ACTIONS(2482), + [aux_sym_cmd_identifier_token13] = ACTIONS(2482), + [aux_sym_cmd_identifier_token14] = ACTIONS(2482), + [aux_sym_cmd_identifier_token15] = ACTIONS(2482), + [aux_sym_cmd_identifier_token16] = ACTIONS(2482), + [aux_sym_cmd_identifier_token17] = ACTIONS(2482), + [aux_sym_cmd_identifier_token18] = ACTIONS(2482), + [aux_sym_cmd_identifier_token19] = ACTIONS(2482), + [aux_sym_cmd_identifier_token20] = ACTIONS(2482), + [aux_sym_cmd_identifier_token21] = ACTIONS(2482), + [aux_sym_cmd_identifier_token22] = ACTIONS(2482), + [aux_sym_cmd_identifier_token23] = ACTIONS(2482), + [aux_sym_cmd_identifier_token24] = ACTIONS(2482), + [aux_sym_cmd_identifier_token25] = ACTIONS(2482), + [aux_sym_cmd_identifier_token26] = ACTIONS(2482), + [aux_sym_cmd_identifier_token27] = ACTIONS(2482), + [aux_sym_cmd_identifier_token28] = ACTIONS(2482), + [aux_sym_cmd_identifier_token29] = ACTIONS(2482), + [aux_sym_cmd_identifier_token30] = ACTIONS(2482), + [aux_sym_cmd_identifier_token31] = ACTIONS(2482), + [aux_sym_cmd_identifier_token32] = ACTIONS(2482), + [aux_sym_cmd_identifier_token33] = ACTIONS(2482), + [aux_sym_cmd_identifier_token34] = ACTIONS(2482), + [aux_sym_cmd_identifier_token35] = ACTIONS(2482), + [aux_sym_cmd_identifier_token36] = ACTIONS(2482), + [anon_sym_true] = ACTIONS(2482), + [anon_sym_false] = ACTIONS(2482), + [anon_sym_null] = ACTIONS(2482), + [aux_sym_cmd_identifier_token38] = ACTIONS(2482), + [aux_sym_cmd_identifier_token39] = ACTIONS(2482), + [aux_sym_cmd_identifier_token40] = ACTIONS(2482), + [anon_sym_def] = ACTIONS(2482), + [anon_sym_export_DASHenv] = ACTIONS(2482), + [anon_sym_extern] = ACTIONS(2482), + [anon_sym_module] = ACTIONS(2482), + [anon_sym_use] = ACTIONS(2482), + [anon_sym_LPAREN] = ACTIONS(2482), + [anon_sym_DOLLAR] = ACTIONS(2482), + [anon_sym_error] = ACTIONS(2482), + [anon_sym_list] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_break] = ACTIONS(2482), + [anon_sym_continue] = ACTIONS(2482), + [anon_sym_for] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_loop] = ACTIONS(2482), + [anon_sym_make] = ACTIONS(2482), + [anon_sym_while] = ACTIONS(2482), + [anon_sym_do] = ACTIONS(2482), + [anon_sym_if] = ACTIONS(2482), + [anon_sym_else] = ACTIONS(2482), + [anon_sym_match] = ACTIONS(2482), + [anon_sym_RBRACE] = ACTIONS(2482), + [anon_sym_try] = ACTIONS(2482), + [anon_sym_catch] = ACTIONS(2482), + [anon_sym_return] = ACTIONS(2482), + [anon_sym_source] = ACTIONS(2482), + [anon_sym_source_DASHenv] = ACTIONS(2482), + [anon_sym_register] = ACTIONS(2482), + [anon_sym_hide] = ACTIONS(2482), + [anon_sym_hide_DASHenv] = ACTIONS(2482), + [anon_sym_overlay] = ACTIONS(2482), + [anon_sym_new] = ACTIONS(2482), + [anon_sym_as] = ACTIONS(2482), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2482), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2482), + [aux_sym__val_number_decimal_token1] = ACTIONS(2482), + [aux_sym__val_number_decimal_token2] = ACTIONS(2482), + [aux_sym__val_number_decimal_token3] = ACTIONS(2482), + [aux_sym__val_number_decimal_token4] = ACTIONS(2482), + [aux_sym__val_number_token1] = ACTIONS(2482), + [aux_sym__val_number_token2] = ACTIONS(2482), + [aux_sym__val_number_token3] = ACTIONS(2482), + [anon_sym_DQUOTE] = ACTIONS(2482), + [sym__str_single_quotes] = ACTIONS(2482), + [sym__str_back_ticks] = ACTIONS(2482), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2482), + [sym__entry_separator] = ACTIONS(2484), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2484), + }, + [585] = { + [sym_comment] = STATE(585), + [anon_sym_export] = ACTIONS(2200), + [anon_sym_alias] = ACTIONS(2200), + [anon_sym_let] = ACTIONS(2200), + [anon_sym_let_DASHenv] = ACTIONS(2200), + [anon_sym_mut] = ACTIONS(2200), + [anon_sym_const] = ACTIONS(2200), + [aux_sym_cmd_identifier_token1] = ACTIONS(2200), + [aux_sym_cmd_identifier_token2] = ACTIONS(2200), + [aux_sym_cmd_identifier_token3] = ACTIONS(2200), + [aux_sym_cmd_identifier_token4] = ACTIONS(2200), + [aux_sym_cmd_identifier_token5] = ACTIONS(2200), + [aux_sym_cmd_identifier_token6] = ACTIONS(2200), + [aux_sym_cmd_identifier_token7] = ACTIONS(2200), + [aux_sym_cmd_identifier_token8] = ACTIONS(2200), + [aux_sym_cmd_identifier_token9] = ACTIONS(2200), + [aux_sym_cmd_identifier_token10] = ACTIONS(2200), + [aux_sym_cmd_identifier_token11] = ACTIONS(2200), + [aux_sym_cmd_identifier_token12] = ACTIONS(2200), + [aux_sym_cmd_identifier_token13] = ACTIONS(2200), + [aux_sym_cmd_identifier_token14] = ACTIONS(2200), + [aux_sym_cmd_identifier_token15] = ACTIONS(2200), + [aux_sym_cmd_identifier_token16] = ACTIONS(2200), + [aux_sym_cmd_identifier_token17] = ACTIONS(2200), + [aux_sym_cmd_identifier_token18] = ACTIONS(2200), + [aux_sym_cmd_identifier_token19] = ACTIONS(2200), + [aux_sym_cmd_identifier_token20] = ACTIONS(2200), + [aux_sym_cmd_identifier_token21] = ACTIONS(2200), + [aux_sym_cmd_identifier_token22] = ACTIONS(2200), + [aux_sym_cmd_identifier_token23] = ACTIONS(2200), + [aux_sym_cmd_identifier_token24] = ACTIONS(2200), + [aux_sym_cmd_identifier_token25] = ACTIONS(2200), + [aux_sym_cmd_identifier_token26] = ACTIONS(2200), + [aux_sym_cmd_identifier_token27] = ACTIONS(2200), + [aux_sym_cmd_identifier_token28] = ACTIONS(2200), + [aux_sym_cmd_identifier_token29] = ACTIONS(2200), + [aux_sym_cmd_identifier_token30] = ACTIONS(2200), + [aux_sym_cmd_identifier_token31] = ACTIONS(2200), + [aux_sym_cmd_identifier_token32] = ACTIONS(2200), + [aux_sym_cmd_identifier_token33] = ACTIONS(2200), + [aux_sym_cmd_identifier_token34] = ACTIONS(2200), + [aux_sym_cmd_identifier_token35] = ACTIONS(2200), + [aux_sym_cmd_identifier_token36] = ACTIONS(2200), + [anon_sym_true] = ACTIONS(2200), + [anon_sym_false] = ACTIONS(2200), + [anon_sym_null] = ACTIONS(2200), + [aux_sym_cmd_identifier_token38] = ACTIONS(2200), + [aux_sym_cmd_identifier_token39] = ACTIONS(2200), + [aux_sym_cmd_identifier_token40] = ACTIONS(2200), + [anon_sym_def] = ACTIONS(2200), + [anon_sym_export_DASHenv] = ACTIONS(2200), + [anon_sym_extern] = ACTIONS(2200), + [anon_sym_module] = ACTIONS(2200), + [anon_sym_use] = ACTIONS(2200), + [anon_sym_LPAREN] = ACTIONS(2200), + [anon_sym_DOLLAR] = ACTIONS(2200), + [anon_sym_error] = ACTIONS(2200), + [anon_sym_list] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(2200), + [anon_sym_break] = ACTIONS(2200), + [anon_sym_continue] = ACTIONS(2200), + [anon_sym_for] = ACTIONS(2200), + [anon_sym_in] = ACTIONS(2200), + [anon_sym_loop] = ACTIONS(2200), + [anon_sym_make] = ACTIONS(2200), + [anon_sym_while] = ACTIONS(2200), + [anon_sym_do] = ACTIONS(2200), + [anon_sym_if] = ACTIONS(2200), + [anon_sym_else] = ACTIONS(2200), + [anon_sym_match] = ACTIONS(2200), + [anon_sym_RBRACE] = ACTIONS(2200), + [anon_sym_try] = ACTIONS(2200), + [anon_sym_catch] = ACTIONS(2200), + [anon_sym_return] = ACTIONS(2200), + [anon_sym_source] = ACTIONS(2200), + [anon_sym_source_DASHenv] = ACTIONS(2200), + [anon_sym_register] = ACTIONS(2200), + [anon_sym_hide] = ACTIONS(2200), + [anon_sym_hide_DASHenv] = ACTIONS(2200), + [anon_sym_overlay] = ACTIONS(2200), + [anon_sym_new] = ACTIONS(2200), + [anon_sym_as] = ACTIONS(2200), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2200), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2200), + [aux_sym__val_number_decimal_token1] = ACTIONS(2200), + [aux_sym__val_number_decimal_token2] = ACTIONS(2200), + [aux_sym__val_number_decimal_token3] = ACTIONS(2200), + [aux_sym__val_number_decimal_token4] = ACTIONS(2200), + [aux_sym__val_number_token1] = ACTIONS(2200), + [aux_sym__val_number_token2] = ACTIONS(2200), + [aux_sym__val_number_token3] = ACTIONS(2200), + [anon_sym_DQUOTE] = ACTIONS(2200), + [sym__str_single_quotes] = ACTIONS(2200), + [sym__str_back_ticks] = ACTIONS(2200), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2200), + [sym__entry_separator] = ACTIONS(2202), + [anon_sym_PLUS] = ACTIONS(2200), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2202), + }, + [586] = { + [sym_comment] = STATE(586), + [anon_sym_export] = ACTIONS(2095), + [anon_sym_alias] = ACTIONS(2095), + [anon_sym_let] = ACTIONS(2095), + [anon_sym_let_DASHenv] = ACTIONS(2095), + [anon_sym_mut] = ACTIONS(2095), + [anon_sym_const] = ACTIONS(2095), + [aux_sym_cmd_identifier_token1] = ACTIONS(2095), + [aux_sym_cmd_identifier_token2] = ACTIONS(2095), + [aux_sym_cmd_identifier_token3] = ACTIONS(2095), + [aux_sym_cmd_identifier_token4] = ACTIONS(2095), + [aux_sym_cmd_identifier_token5] = ACTIONS(2095), + [aux_sym_cmd_identifier_token6] = ACTIONS(2095), + [aux_sym_cmd_identifier_token7] = ACTIONS(2095), + [aux_sym_cmd_identifier_token8] = ACTIONS(2095), + [aux_sym_cmd_identifier_token9] = ACTIONS(2095), + [aux_sym_cmd_identifier_token10] = ACTIONS(2095), + [aux_sym_cmd_identifier_token11] = ACTIONS(2095), + [aux_sym_cmd_identifier_token12] = ACTIONS(2095), + [aux_sym_cmd_identifier_token13] = ACTIONS(2095), + [aux_sym_cmd_identifier_token14] = ACTIONS(2095), + [aux_sym_cmd_identifier_token15] = ACTIONS(2095), + [aux_sym_cmd_identifier_token16] = ACTIONS(2095), + [aux_sym_cmd_identifier_token17] = ACTIONS(2095), + [aux_sym_cmd_identifier_token18] = ACTIONS(2095), + [aux_sym_cmd_identifier_token19] = ACTIONS(2095), + [aux_sym_cmd_identifier_token20] = ACTIONS(2095), + [aux_sym_cmd_identifier_token21] = ACTIONS(2095), + [aux_sym_cmd_identifier_token22] = ACTIONS(2095), + [aux_sym_cmd_identifier_token23] = ACTIONS(2095), + [aux_sym_cmd_identifier_token24] = ACTIONS(2095), + [aux_sym_cmd_identifier_token25] = ACTIONS(2095), + [aux_sym_cmd_identifier_token26] = ACTIONS(2095), + [aux_sym_cmd_identifier_token27] = ACTIONS(2095), + [aux_sym_cmd_identifier_token28] = ACTIONS(2095), + [aux_sym_cmd_identifier_token29] = ACTIONS(2095), + [aux_sym_cmd_identifier_token30] = ACTIONS(2095), + [aux_sym_cmd_identifier_token31] = ACTIONS(2095), + [aux_sym_cmd_identifier_token32] = ACTIONS(2095), + [aux_sym_cmd_identifier_token33] = ACTIONS(2095), + [aux_sym_cmd_identifier_token34] = ACTIONS(2095), + [aux_sym_cmd_identifier_token35] = ACTIONS(2095), + [aux_sym_cmd_identifier_token36] = ACTIONS(2095), + [anon_sym_true] = ACTIONS(2095), + [anon_sym_false] = ACTIONS(2095), + [anon_sym_null] = ACTIONS(2095), + [aux_sym_cmd_identifier_token38] = ACTIONS(2095), + [aux_sym_cmd_identifier_token39] = ACTIONS(2095), + [aux_sym_cmd_identifier_token40] = ACTIONS(2095), + [anon_sym_def] = ACTIONS(2095), + [anon_sym_export_DASHenv] = ACTIONS(2095), + [anon_sym_extern] = ACTIONS(2095), + [anon_sym_module] = ACTIONS(2095), + [anon_sym_use] = ACTIONS(2095), + [anon_sym_LPAREN] = ACTIONS(2095), + [anon_sym_DOLLAR] = ACTIONS(2095), + [anon_sym_error] = ACTIONS(2095), + [anon_sym_list] = ACTIONS(2095), + [anon_sym_DASH] = ACTIONS(2095), + [anon_sym_break] = ACTIONS(2095), + [anon_sym_continue] = ACTIONS(2095), + [anon_sym_for] = ACTIONS(2095), + [anon_sym_in] = ACTIONS(2095), + [anon_sym_loop] = ACTIONS(2095), + [anon_sym_make] = ACTIONS(2095), + [anon_sym_while] = ACTIONS(2095), + [anon_sym_do] = ACTIONS(2095), + [anon_sym_if] = ACTIONS(2095), + [anon_sym_else] = ACTIONS(2095), + [anon_sym_match] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2095), + [anon_sym_try] = ACTIONS(2095), + [anon_sym_catch] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2095), + [anon_sym_source] = ACTIONS(2095), + [anon_sym_source_DASHenv] = ACTIONS(2095), + [anon_sym_register] = ACTIONS(2095), + [anon_sym_hide] = ACTIONS(2095), + [anon_sym_hide_DASHenv] = ACTIONS(2095), + [anon_sym_overlay] = ACTIONS(2095), + [anon_sym_new] = ACTIONS(2095), + [anon_sym_as] = ACTIONS(2095), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2095), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2095), + [aux_sym__val_number_decimal_token1] = ACTIONS(2095), + [aux_sym__val_number_decimal_token2] = ACTIONS(2095), + [aux_sym__val_number_decimal_token3] = ACTIONS(2095), + [aux_sym__val_number_decimal_token4] = ACTIONS(2095), + [aux_sym__val_number_token1] = ACTIONS(2095), + [aux_sym__val_number_token2] = ACTIONS(2095), + [aux_sym__val_number_token3] = ACTIONS(2095), + [anon_sym_DQUOTE] = ACTIONS(2095), + [sym__str_single_quotes] = ACTIONS(2095), + [sym__str_back_ticks] = ACTIONS(2095), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2095), + [sym__entry_separator] = ACTIONS(2097), + [anon_sym_PLUS] = ACTIONS(2095), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2097), + }, + [587] = { + [sym_comment] = STATE(587), + [anon_sym_export] = ACTIONS(2486), + [anon_sym_alias] = ACTIONS(2486), + [anon_sym_let] = ACTIONS(2486), + [anon_sym_let_DASHenv] = ACTIONS(2486), + [anon_sym_mut] = ACTIONS(2486), + [anon_sym_const] = ACTIONS(2486), + [aux_sym_cmd_identifier_token1] = ACTIONS(2486), + [aux_sym_cmd_identifier_token2] = ACTIONS(2486), + [aux_sym_cmd_identifier_token3] = ACTIONS(2486), + [aux_sym_cmd_identifier_token4] = ACTIONS(2486), + [aux_sym_cmd_identifier_token5] = ACTIONS(2486), + [aux_sym_cmd_identifier_token6] = ACTIONS(2486), + [aux_sym_cmd_identifier_token7] = ACTIONS(2486), + [aux_sym_cmd_identifier_token8] = ACTIONS(2486), + [aux_sym_cmd_identifier_token9] = ACTIONS(2486), + [aux_sym_cmd_identifier_token10] = ACTIONS(2486), + [aux_sym_cmd_identifier_token11] = ACTIONS(2486), + [aux_sym_cmd_identifier_token12] = ACTIONS(2486), + [aux_sym_cmd_identifier_token13] = ACTIONS(2486), + [aux_sym_cmd_identifier_token14] = ACTIONS(2486), + [aux_sym_cmd_identifier_token15] = ACTIONS(2486), + [aux_sym_cmd_identifier_token16] = ACTIONS(2486), + [aux_sym_cmd_identifier_token17] = ACTIONS(2486), + [aux_sym_cmd_identifier_token18] = ACTIONS(2486), + [aux_sym_cmd_identifier_token19] = ACTIONS(2486), + [aux_sym_cmd_identifier_token20] = ACTIONS(2486), + [aux_sym_cmd_identifier_token21] = ACTIONS(2486), + [aux_sym_cmd_identifier_token22] = ACTIONS(2486), + [aux_sym_cmd_identifier_token23] = ACTIONS(2486), + [aux_sym_cmd_identifier_token24] = ACTIONS(2486), + [aux_sym_cmd_identifier_token25] = ACTIONS(2486), + [aux_sym_cmd_identifier_token26] = ACTIONS(2486), + [aux_sym_cmd_identifier_token27] = ACTIONS(2486), + [aux_sym_cmd_identifier_token28] = ACTIONS(2486), + [aux_sym_cmd_identifier_token29] = ACTIONS(2486), + [aux_sym_cmd_identifier_token30] = ACTIONS(2486), + [aux_sym_cmd_identifier_token31] = ACTIONS(2486), + [aux_sym_cmd_identifier_token32] = ACTIONS(2486), + [aux_sym_cmd_identifier_token33] = ACTIONS(2486), + [aux_sym_cmd_identifier_token34] = ACTIONS(2486), + [aux_sym_cmd_identifier_token35] = ACTIONS(2486), + [aux_sym_cmd_identifier_token36] = ACTIONS(2486), + [anon_sym_true] = ACTIONS(2486), + [anon_sym_false] = ACTIONS(2486), + [anon_sym_null] = ACTIONS(2486), + [aux_sym_cmd_identifier_token38] = ACTIONS(2486), + [aux_sym_cmd_identifier_token39] = ACTIONS(2486), + [aux_sym_cmd_identifier_token40] = ACTIONS(2486), + [anon_sym_def] = ACTIONS(2486), + [anon_sym_export_DASHenv] = ACTIONS(2486), + [anon_sym_extern] = ACTIONS(2486), + [anon_sym_module] = ACTIONS(2486), + [anon_sym_use] = ACTIONS(2486), + [anon_sym_LPAREN] = ACTIONS(2486), + [anon_sym_DOLLAR] = ACTIONS(2486), + [anon_sym_error] = ACTIONS(2486), + [anon_sym_list] = ACTIONS(2486), + [anon_sym_DASH] = ACTIONS(2486), + [anon_sym_break] = ACTIONS(2486), + [anon_sym_continue] = ACTIONS(2486), + [anon_sym_for] = ACTIONS(2486), + [anon_sym_in] = ACTIONS(2486), + [anon_sym_loop] = ACTIONS(2486), + [anon_sym_make] = ACTIONS(2486), + [anon_sym_while] = ACTIONS(2486), + [anon_sym_do] = ACTIONS(2486), + [anon_sym_if] = ACTIONS(2486), + [anon_sym_else] = ACTIONS(2486), + [anon_sym_match] = ACTIONS(2486), + [anon_sym_RBRACE] = ACTIONS(2486), + [anon_sym_try] = ACTIONS(2486), + [anon_sym_catch] = ACTIONS(2486), + [anon_sym_return] = ACTIONS(2486), + [anon_sym_source] = ACTIONS(2486), + [anon_sym_source_DASHenv] = ACTIONS(2486), + [anon_sym_register] = ACTIONS(2486), + [anon_sym_hide] = ACTIONS(2486), + [anon_sym_hide_DASHenv] = ACTIONS(2486), + [anon_sym_overlay] = ACTIONS(2486), + [anon_sym_new] = ACTIONS(2486), + [anon_sym_as] = ACTIONS(2486), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2486), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2486), + [aux_sym__val_number_decimal_token1] = ACTIONS(2486), + [aux_sym__val_number_decimal_token2] = ACTIONS(2486), + [aux_sym__val_number_decimal_token3] = ACTIONS(2486), + [aux_sym__val_number_decimal_token4] = ACTIONS(2486), + [aux_sym__val_number_token1] = ACTIONS(2486), + [aux_sym__val_number_token2] = ACTIONS(2486), + [aux_sym__val_number_token3] = ACTIONS(2486), + [anon_sym_DQUOTE] = ACTIONS(2486), + [sym__str_single_quotes] = ACTIONS(2486), + [sym__str_back_ticks] = ACTIONS(2486), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2486), + [sym__entry_separator] = ACTIONS(2488), + [anon_sym_PLUS] = ACTIONS(2486), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2488), + }, + [588] = { + [sym_comment] = STATE(588), + [anon_sym_export] = ACTIONS(2490), + [anon_sym_alias] = ACTIONS(2490), + [anon_sym_let] = ACTIONS(2490), + [anon_sym_let_DASHenv] = ACTIONS(2490), + [anon_sym_mut] = ACTIONS(2490), + [anon_sym_const] = ACTIONS(2490), + [aux_sym_cmd_identifier_token1] = ACTIONS(2490), + [aux_sym_cmd_identifier_token2] = ACTIONS(2490), + [aux_sym_cmd_identifier_token3] = ACTIONS(2490), + [aux_sym_cmd_identifier_token4] = ACTIONS(2490), + [aux_sym_cmd_identifier_token5] = ACTIONS(2490), + [aux_sym_cmd_identifier_token6] = ACTIONS(2490), + [aux_sym_cmd_identifier_token7] = ACTIONS(2490), + [aux_sym_cmd_identifier_token8] = ACTIONS(2490), + [aux_sym_cmd_identifier_token9] = ACTIONS(2490), + [aux_sym_cmd_identifier_token10] = ACTIONS(2490), + [aux_sym_cmd_identifier_token11] = ACTIONS(2490), + [aux_sym_cmd_identifier_token12] = ACTIONS(2490), + [aux_sym_cmd_identifier_token13] = ACTIONS(2490), + [aux_sym_cmd_identifier_token14] = ACTIONS(2490), + [aux_sym_cmd_identifier_token15] = ACTIONS(2490), + [aux_sym_cmd_identifier_token16] = ACTIONS(2490), + [aux_sym_cmd_identifier_token17] = ACTIONS(2490), + [aux_sym_cmd_identifier_token18] = ACTIONS(2490), + [aux_sym_cmd_identifier_token19] = ACTIONS(2490), + [aux_sym_cmd_identifier_token20] = ACTIONS(2490), + [aux_sym_cmd_identifier_token21] = ACTIONS(2490), + [aux_sym_cmd_identifier_token22] = ACTIONS(2490), + [aux_sym_cmd_identifier_token23] = ACTIONS(2490), + [aux_sym_cmd_identifier_token24] = ACTIONS(2490), + [aux_sym_cmd_identifier_token25] = ACTIONS(2490), + [aux_sym_cmd_identifier_token26] = ACTIONS(2490), + [aux_sym_cmd_identifier_token27] = ACTIONS(2490), + [aux_sym_cmd_identifier_token28] = ACTIONS(2490), + [aux_sym_cmd_identifier_token29] = ACTIONS(2490), + [aux_sym_cmd_identifier_token30] = ACTIONS(2490), + [aux_sym_cmd_identifier_token31] = ACTIONS(2490), + [aux_sym_cmd_identifier_token32] = ACTIONS(2490), + [aux_sym_cmd_identifier_token33] = ACTIONS(2490), + [aux_sym_cmd_identifier_token34] = ACTIONS(2490), + [aux_sym_cmd_identifier_token35] = ACTIONS(2490), + [aux_sym_cmd_identifier_token36] = ACTIONS(2490), + [anon_sym_true] = ACTIONS(2490), + [anon_sym_false] = ACTIONS(2490), + [anon_sym_null] = ACTIONS(2490), + [aux_sym_cmd_identifier_token38] = ACTIONS(2490), + [aux_sym_cmd_identifier_token39] = ACTIONS(2490), + [aux_sym_cmd_identifier_token40] = ACTIONS(2490), + [anon_sym_def] = ACTIONS(2490), + [anon_sym_export_DASHenv] = ACTIONS(2490), + [anon_sym_extern] = ACTIONS(2490), + [anon_sym_module] = ACTIONS(2490), + [anon_sym_use] = ACTIONS(2490), + [anon_sym_LPAREN] = ACTIONS(2490), + [anon_sym_DOLLAR] = ACTIONS(2490), + [anon_sym_error] = ACTIONS(2490), + [anon_sym_list] = ACTIONS(2490), + [anon_sym_DASH] = ACTIONS(2490), + [anon_sym_break] = ACTIONS(2490), + [anon_sym_continue] = ACTIONS(2490), + [anon_sym_for] = ACTIONS(2490), + [anon_sym_in] = ACTIONS(2490), + [anon_sym_loop] = ACTIONS(2490), + [anon_sym_make] = ACTIONS(2490), + [anon_sym_while] = ACTIONS(2490), + [anon_sym_do] = ACTIONS(2490), + [anon_sym_if] = ACTIONS(2490), + [anon_sym_else] = ACTIONS(2490), + [anon_sym_match] = ACTIONS(2490), + [anon_sym_RBRACE] = ACTIONS(2490), + [anon_sym_try] = ACTIONS(2490), + [anon_sym_catch] = ACTIONS(2490), + [anon_sym_return] = ACTIONS(2490), + [anon_sym_source] = ACTIONS(2490), + [anon_sym_source_DASHenv] = ACTIONS(2490), + [anon_sym_register] = ACTIONS(2490), + [anon_sym_hide] = ACTIONS(2490), + [anon_sym_hide_DASHenv] = ACTIONS(2490), + [anon_sym_overlay] = ACTIONS(2490), + [anon_sym_new] = ACTIONS(2490), + [anon_sym_as] = ACTIONS(2490), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2490), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2490), + [aux_sym__val_number_decimal_token1] = ACTIONS(2490), + [aux_sym__val_number_decimal_token2] = ACTIONS(2490), + [aux_sym__val_number_decimal_token3] = ACTIONS(2490), + [aux_sym__val_number_decimal_token4] = ACTIONS(2490), + [aux_sym__val_number_token1] = ACTIONS(2490), + [aux_sym__val_number_token2] = ACTIONS(2490), + [aux_sym__val_number_token3] = ACTIONS(2490), + [anon_sym_DQUOTE] = ACTIONS(2490), + [sym__str_single_quotes] = ACTIONS(2490), + [sym__str_back_ticks] = ACTIONS(2490), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2490), + [sym__entry_separator] = ACTIONS(2492), + [anon_sym_PLUS] = ACTIONS(2490), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2492), + }, + [589] = { + [sym_comment] = STATE(589), + [anon_sym_export] = ACTIONS(1769), + [anon_sym_alias] = ACTIONS(1769), + [anon_sym_let] = ACTIONS(1769), + [anon_sym_let_DASHenv] = ACTIONS(1769), + [anon_sym_mut] = ACTIONS(1769), + [anon_sym_const] = ACTIONS(1769), + [aux_sym_cmd_identifier_token1] = ACTIONS(1769), + [aux_sym_cmd_identifier_token2] = ACTIONS(1769), + [aux_sym_cmd_identifier_token3] = ACTIONS(1769), + [aux_sym_cmd_identifier_token4] = ACTIONS(1769), + [aux_sym_cmd_identifier_token5] = ACTIONS(1769), + [aux_sym_cmd_identifier_token6] = ACTIONS(1769), + [aux_sym_cmd_identifier_token7] = ACTIONS(1769), + [aux_sym_cmd_identifier_token8] = ACTIONS(1769), + [aux_sym_cmd_identifier_token9] = ACTIONS(1769), + [aux_sym_cmd_identifier_token10] = ACTIONS(1769), + [aux_sym_cmd_identifier_token11] = ACTIONS(1769), + [aux_sym_cmd_identifier_token12] = ACTIONS(1769), + [aux_sym_cmd_identifier_token13] = ACTIONS(1769), + [aux_sym_cmd_identifier_token14] = ACTIONS(1769), + [aux_sym_cmd_identifier_token15] = ACTIONS(1769), + [aux_sym_cmd_identifier_token16] = ACTIONS(1769), + [aux_sym_cmd_identifier_token17] = ACTIONS(1769), + [aux_sym_cmd_identifier_token18] = ACTIONS(1769), + [aux_sym_cmd_identifier_token19] = ACTIONS(1769), + [aux_sym_cmd_identifier_token20] = ACTIONS(1769), + [aux_sym_cmd_identifier_token21] = ACTIONS(1769), + [aux_sym_cmd_identifier_token22] = ACTIONS(1769), + [aux_sym_cmd_identifier_token23] = ACTIONS(1769), + [aux_sym_cmd_identifier_token24] = ACTIONS(1769), + [aux_sym_cmd_identifier_token25] = ACTIONS(1769), + [aux_sym_cmd_identifier_token26] = ACTIONS(1769), + [aux_sym_cmd_identifier_token27] = ACTIONS(1769), + [aux_sym_cmd_identifier_token28] = ACTIONS(1769), + [aux_sym_cmd_identifier_token29] = ACTIONS(1769), + [aux_sym_cmd_identifier_token30] = ACTIONS(1769), + [aux_sym_cmd_identifier_token31] = ACTIONS(1769), + [aux_sym_cmd_identifier_token32] = ACTIONS(1769), + [aux_sym_cmd_identifier_token33] = ACTIONS(1769), + [aux_sym_cmd_identifier_token34] = ACTIONS(1769), + [aux_sym_cmd_identifier_token35] = ACTIONS(1769), + [aux_sym_cmd_identifier_token36] = ACTIONS(1769), + [anon_sym_true] = ACTIONS(1769), + [anon_sym_false] = ACTIONS(1769), + [anon_sym_null] = ACTIONS(1769), + [aux_sym_cmd_identifier_token38] = ACTIONS(1769), + [aux_sym_cmd_identifier_token39] = ACTIONS(1769), + [aux_sym_cmd_identifier_token40] = ACTIONS(1769), + [anon_sym_def] = ACTIONS(1769), + [anon_sym_export_DASHenv] = ACTIONS(1769), + [anon_sym_extern] = ACTIONS(1769), + [anon_sym_module] = ACTIONS(1769), + [anon_sym_use] = ACTIONS(1769), + [anon_sym_LPAREN] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1769), + [anon_sym_error] = ACTIONS(1769), + [anon_sym_list] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_break] = ACTIONS(1769), + [anon_sym_continue] = ACTIONS(1769), + [anon_sym_for] = ACTIONS(1769), + [anon_sym_in] = ACTIONS(1769), + [anon_sym_loop] = ACTIONS(1769), + [anon_sym_make] = ACTIONS(1769), + [anon_sym_while] = ACTIONS(1769), + [anon_sym_do] = ACTIONS(1769), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_else] = ACTIONS(1769), + [anon_sym_match] = ACTIONS(1769), + [anon_sym_RBRACE] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1769), + [anon_sym_catch] = ACTIONS(1769), + [anon_sym_return] = ACTIONS(1769), + [anon_sym_source] = ACTIONS(1769), + [anon_sym_source_DASHenv] = ACTIONS(1769), + [anon_sym_register] = ACTIONS(1769), + [anon_sym_hide] = ACTIONS(1769), + [anon_sym_hide_DASHenv] = ACTIONS(1769), + [anon_sym_overlay] = ACTIONS(1769), + [anon_sym_new] = ACTIONS(1769), + [anon_sym_as] = ACTIONS(1769), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1769), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1769), + [aux_sym__val_number_decimal_token1] = ACTIONS(1769), + [aux_sym__val_number_decimal_token2] = ACTIONS(1769), + [aux_sym__val_number_decimal_token3] = ACTIONS(1769), + [aux_sym__val_number_decimal_token4] = ACTIONS(1769), + [aux_sym__val_number_token1] = ACTIONS(1769), + [aux_sym__val_number_token2] = ACTIONS(1769), + [aux_sym__val_number_token3] = ACTIONS(1769), + [anon_sym_DQUOTE] = ACTIONS(1769), + [sym__str_single_quotes] = ACTIONS(1769), + [sym__str_back_ticks] = ACTIONS(1769), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1769), + [sym__entry_separator] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1769), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1771), + }, + [590] = { + [sym_comment] = STATE(590), + [anon_sym_export] = ACTIONS(1826), + [anon_sym_alias] = ACTIONS(1826), + [anon_sym_let] = ACTIONS(1826), + [anon_sym_let_DASHenv] = ACTIONS(1826), + [anon_sym_mut] = ACTIONS(1826), + [anon_sym_const] = ACTIONS(1826), + [aux_sym_cmd_identifier_token1] = ACTIONS(1826), + [aux_sym_cmd_identifier_token2] = ACTIONS(1826), + [aux_sym_cmd_identifier_token3] = ACTIONS(1826), + [aux_sym_cmd_identifier_token4] = ACTIONS(1826), + [aux_sym_cmd_identifier_token5] = ACTIONS(1826), + [aux_sym_cmd_identifier_token6] = ACTIONS(1826), + [aux_sym_cmd_identifier_token7] = ACTIONS(1826), + [aux_sym_cmd_identifier_token8] = ACTIONS(1826), + [aux_sym_cmd_identifier_token9] = ACTIONS(1826), + [aux_sym_cmd_identifier_token10] = ACTIONS(1826), + [aux_sym_cmd_identifier_token11] = ACTIONS(1826), + [aux_sym_cmd_identifier_token12] = ACTIONS(1826), + [aux_sym_cmd_identifier_token13] = ACTIONS(1826), + [aux_sym_cmd_identifier_token14] = ACTIONS(1826), + [aux_sym_cmd_identifier_token15] = ACTIONS(1826), + [aux_sym_cmd_identifier_token16] = ACTIONS(1826), + [aux_sym_cmd_identifier_token17] = ACTIONS(1826), + [aux_sym_cmd_identifier_token18] = ACTIONS(1826), + [aux_sym_cmd_identifier_token19] = ACTIONS(1826), + [aux_sym_cmd_identifier_token20] = ACTIONS(1826), + [aux_sym_cmd_identifier_token21] = ACTIONS(1826), + [aux_sym_cmd_identifier_token22] = ACTIONS(1826), + [aux_sym_cmd_identifier_token23] = ACTIONS(1826), + [aux_sym_cmd_identifier_token24] = ACTIONS(1826), + [aux_sym_cmd_identifier_token25] = ACTIONS(1826), + [aux_sym_cmd_identifier_token26] = ACTIONS(1826), + [aux_sym_cmd_identifier_token27] = ACTIONS(1826), + [aux_sym_cmd_identifier_token28] = ACTIONS(1826), + [aux_sym_cmd_identifier_token29] = ACTIONS(1826), + [aux_sym_cmd_identifier_token30] = ACTIONS(1826), + [aux_sym_cmd_identifier_token31] = ACTIONS(1826), + [aux_sym_cmd_identifier_token32] = ACTIONS(1826), + [aux_sym_cmd_identifier_token33] = ACTIONS(1826), + [aux_sym_cmd_identifier_token34] = ACTIONS(1826), + [aux_sym_cmd_identifier_token35] = ACTIONS(1826), + [aux_sym_cmd_identifier_token36] = ACTIONS(1826), + [anon_sym_true] = ACTIONS(1826), + [anon_sym_false] = ACTIONS(1826), + [anon_sym_null] = ACTIONS(1826), + [aux_sym_cmd_identifier_token38] = ACTIONS(1826), + [aux_sym_cmd_identifier_token39] = ACTIONS(1826), + [aux_sym_cmd_identifier_token40] = ACTIONS(1826), + [anon_sym_def] = ACTIONS(1826), + [anon_sym_export_DASHenv] = ACTIONS(1826), + [anon_sym_extern] = ACTIONS(1826), + [anon_sym_module] = ACTIONS(1826), + [anon_sym_use] = ACTIONS(1826), + [anon_sym_LPAREN] = ACTIONS(1826), + [anon_sym_DOLLAR] = ACTIONS(1826), + [anon_sym_error] = ACTIONS(1826), + [anon_sym_list] = ACTIONS(1826), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_break] = ACTIONS(1826), + [anon_sym_continue] = ACTIONS(1826), + [anon_sym_for] = ACTIONS(1826), + [anon_sym_in] = ACTIONS(1826), + [anon_sym_loop] = ACTIONS(1826), + [anon_sym_make] = ACTIONS(1826), + [anon_sym_while] = ACTIONS(1826), + [anon_sym_do] = ACTIONS(1826), + [anon_sym_if] = ACTIONS(1826), + [anon_sym_else] = ACTIONS(1826), + [anon_sym_match] = ACTIONS(1826), + [anon_sym_RBRACE] = ACTIONS(1826), + [anon_sym_try] = ACTIONS(1826), + [anon_sym_catch] = ACTIONS(1826), + [anon_sym_return] = ACTIONS(1826), + [anon_sym_source] = ACTIONS(1826), + [anon_sym_source_DASHenv] = ACTIONS(1826), + [anon_sym_register] = ACTIONS(1826), + [anon_sym_hide] = ACTIONS(1826), + [anon_sym_hide_DASHenv] = ACTIONS(1826), + [anon_sym_overlay] = ACTIONS(1826), + [anon_sym_new] = ACTIONS(1826), + [anon_sym_as] = ACTIONS(1826), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1826), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1826), + [aux_sym__val_number_decimal_token1] = ACTIONS(1826), + [aux_sym__val_number_decimal_token2] = ACTIONS(1826), + [aux_sym__val_number_decimal_token3] = ACTIONS(1826), + [aux_sym__val_number_decimal_token4] = ACTIONS(1826), + [aux_sym__val_number_token1] = ACTIONS(1826), + [aux_sym__val_number_token2] = ACTIONS(1826), + [aux_sym__val_number_token3] = ACTIONS(1826), + [anon_sym_DQUOTE] = ACTIONS(1826), + [sym__str_single_quotes] = ACTIONS(1826), + [sym__str_back_ticks] = ACTIONS(1826), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1826), + [sym__entry_separator] = ACTIONS(1828), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1828), + }, + [591] = { + [sym_comment] = STATE(591), + [anon_sym_export] = ACTIONS(1628), + [anon_sym_alias] = ACTIONS(1628), + [anon_sym_let] = ACTIONS(1628), + [anon_sym_let_DASHenv] = ACTIONS(1628), + [anon_sym_mut] = ACTIONS(1628), + [anon_sym_const] = ACTIONS(1628), + [aux_sym_cmd_identifier_token1] = ACTIONS(1628), + [aux_sym_cmd_identifier_token2] = ACTIONS(1628), + [aux_sym_cmd_identifier_token3] = ACTIONS(1628), + [aux_sym_cmd_identifier_token4] = ACTIONS(1628), + [aux_sym_cmd_identifier_token5] = ACTIONS(1628), + [aux_sym_cmd_identifier_token6] = ACTIONS(1628), + [aux_sym_cmd_identifier_token7] = ACTIONS(1628), + [aux_sym_cmd_identifier_token8] = ACTIONS(1628), + [aux_sym_cmd_identifier_token9] = ACTIONS(1628), + [aux_sym_cmd_identifier_token10] = ACTIONS(1628), + [aux_sym_cmd_identifier_token11] = ACTIONS(1628), + [aux_sym_cmd_identifier_token12] = ACTIONS(1628), + [aux_sym_cmd_identifier_token13] = ACTIONS(1628), + [aux_sym_cmd_identifier_token14] = ACTIONS(1628), + [aux_sym_cmd_identifier_token15] = ACTIONS(1628), + [aux_sym_cmd_identifier_token16] = ACTIONS(1628), + [aux_sym_cmd_identifier_token17] = ACTIONS(1628), + [aux_sym_cmd_identifier_token18] = ACTIONS(1628), + [aux_sym_cmd_identifier_token19] = ACTIONS(1628), + [aux_sym_cmd_identifier_token20] = ACTIONS(1628), + [aux_sym_cmd_identifier_token21] = ACTIONS(1628), + [aux_sym_cmd_identifier_token22] = ACTIONS(1628), + [aux_sym_cmd_identifier_token23] = ACTIONS(1628), + [aux_sym_cmd_identifier_token24] = ACTIONS(1628), + [aux_sym_cmd_identifier_token25] = ACTIONS(1628), + [aux_sym_cmd_identifier_token26] = ACTIONS(1628), + [aux_sym_cmd_identifier_token27] = ACTIONS(1628), + [aux_sym_cmd_identifier_token28] = ACTIONS(1628), + [aux_sym_cmd_identifier_token29] = ACTIONS(1628), + [aux_sym_cmd_identifier_token30] = ACTIONS(1628), + [aux_sym_cmd_identifier_token31] = ACTIONS(1628), + [aux_sym_cmd_identifier_token32] = ACTIONS(1628), + [aux_sym_cmd_identifier_token33] = ACTIONS(1628), + [aux_sym_cmd_identifier_token34] = ACTIONS(1628), + [aux_sym_cmd_identifier_token35] = ACTIONS(1628), + [aux_sym_cmd_identifier_token36] = ACTIONS(1628), + [anon_sym_true] = ACTIONS(1628), + [anon_sym_false] = ACTIONS(1628), + [anon_sym_null] = ACTIONS(1628), + [aux_sym_cmd_identifier_token38] = ACTIONS(1628), + [aux_sym_cmd_identifier_token39] = ACTIONS(1628), + [aux_sym_cmd_identifier_token40] = ACTIONS(1628), + [anon_sym_def] = ACTIONS(1628), + [anon_sym_export_DASHenv] = ACTIONS(1628), + [anon_sym_extern] = ACTIONS(1628), + [anon_sym_module] = ACTIONS(1628), + [anon_sym_use] = ACTIONS(1628), + [anon_sym_LPAREN] = ACTIONS(1628), + [anon_sym_DOLLAR] = ACTIONS(1628), + [anon_sym_error] = ACTIONS(1628), + [anon_sym_list] = ACTIONS(1628), + [anon_sym_DASH] = ACTIONS(1628), + [anon_sym_break] = ACTIONS(1628), + [anon_sym_continue] = ACTIONS(1628), + [anon_sym_for] = ACTIONS(1628), + [anon_sym_in] = ACTIONS(1628), + [anon_sym_loop] = ACTIONS(1628), + [anon_sym_make] = ACTIONS(1628), + [anon_sym_while] = ACTIONS(1628), + [anon_sym_do] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(1628), + [anon_sym_else] = ACTIONS(1628), + [anon_sym_match] = ACTIONS(1628), + [anon_sym_RBRACE] = ACTIONS(1628), + [anon_sym_try] = ACTIONS(1628), + [anon_sym_catch] = ACTIONS(1628), + [anon_sym_return] = ACTIONS(1628), + [anon_sym_source] = ACTIONS(1628), + [anon_sym_source_DASHenv] = ACTIONS(1628), + [anon_sym_register] = ACTIONS(1628), + [anon_sym_hide] = ACTIONS(1628), + [anon_sym_hide_DASHenv] = ACTIONS(1628), + [anon_sym_overlay] = ACTIONS(1628), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_as] = ACTIONS(1628), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1628), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1628), + [aux_sym__val_number_decimal_token1] = ACTIONS(1628), + [aux_sym__val_number_decimal_token2] = ACTIONS(1628), + [aux_sym__val_number_decimal_token3] = ACTIONS(1628), + [aux_sym__val_number_decimal_token4] = ACTIONS(1628), + [aux_sym__val_number_token1] = ACTIONS(1628), + [aux_sym__val_number_token2] = ACTIONS(1628), + [aux_sym__val_number_token3] = ACTIONS(1628), + [anon_sym_DQUOTE] = ACTIONS(1628), + [sym__str_single_quotes] = ACTIONS(1628), + [sym__str_back_ticks] = ACTIONS(1628), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1628), + [sym__entry_separator] = ACTIONS(1640), + [anon_sym_PLUS] = ACTIONS(1628), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1640), + }, + [592] = { + [sym_comment] = STATE(592), + [anon_sym_export] = ACTIONS(2113), + [anon_sym_alias] = ACTIONS(2113), + [anon_sym_let] = ACTIONS(2113), + [anon_sym_let_DASHenv] = ACTIONS(2113), + [anon_sym_mut] = ACTIONS(2113), + [anon_sym_const] = ACTIONS(2113), + [aux_sym_cmd_identifier_token1] = ACTIONS(2113), + [aux_sym_cmd_identifier_token2] = ACTIONS(2113), + [aux_sym_cmd_identifier_token3] = ACTIONS(2113), + [aux_sym_cmd_identifier_token4] = ACTIONS(2113), + [aux_sym_cmd_identifier_token5] = ACTIONS(2113), + [aux_sym_cmd_identifier_token6] = ACTIONS(2113), + [aux_sym_cmd_identifier_token7] = ACTIONS(2113), + [aux_sym_cmd_identifier_token8] = ACTIONS(2113), + [aux_sym_cmd_identifier_token9] = ACTIONS(2113), + [aux_sym_cmd_identifier_token10] = ACTIONS(2113), + [aux_sym_cmd_identifier_token11] = ACTIONS(2113), + [aux_sym_cmd_identifier_token12] = ACTIONS(2113), + [aux_sym_cmd_identifier_token13] = ACTIONS(2113), + [aux_sym_cmd_identifier_token14] = ACTIONS(2113), + [aux_sym_cmd_identifier_token15] = ACTIONS(2113), + [aux_sym_cmd_identifier_token16] = ACTIONS(2113), + [aux_sym_cmd_identifier_token17] = ACTIONS(2113), + [aux_sym_cmd_identifier_token18] = ACTIONS(2113), + [aux_sym_cmd_identifier_token19] = ACTIONS(2113), + [aux_sym_cmd_identifier_token20] = ACTIONS(2113), + [aux_sym_cmd_identifier_token21] = ACTIONS(2113), + [aux_sym_cmd_identifier_token22] = ACTIONS(2113), + [aux_sym_cmd_identifier_token23] = ACTIONS(2113), + [aux_sym_cmd_identifier_token24] = ACTIONS(2113), + [aux_sym_cmd_identifier_token25] = ACTIONS(2113), + [aux_sym_cmd_identifier_token26] = ACTIONS(2113), + [aux_sym_cmd_identifier_token27] = ACTIONS(2113), + [aux_sym_cmd_identifier_token28] = ACTIONS(2113), + [aux_sym_cmd_identifier_token29] = ACTIONS(2113), + [aux_sym_cmd_identifier_token30] = ACTIONS(2113), + [aux_sym_cmd_identifier_token31] = ACTIONS(2113), + [aux_sym_cmd_identifier_token32] = ACTIONS(2113), + [aux_sym_cmd_identifier_token33] = ACTIONS(2113), + [aux_sym_cmd_identifier_token34] = ACTIONS(2113), + [aux_sym_cmd_identifier_token35] = ACTIONS(2113), + [aux_sym_cmd_identifier_token36] = ACTIONS(2113), + [anon_sym_true] = ACTIONS(2113), + [anon_sym_false] = ACTIONS(2113), + [anon_sym_null] = ACTIONS(2113), + [aux_sym_cmd_identifier_token38] = ACTIONS(2113), + [aux_sym_cmd_identifier_token39] = ACTIONS(2113), + [aux_sym_cmd_identifier_token40] = ACTIONS(2113), + [anon_sym_def] = ACTIONS(2113), + [anon_sym_export_DASHenv] = ACTIONS(2113), + [anon_sym_extern] = ACTIONS(2113), + [anon_sym_module] = ACTIONS(2113), + [anon_sym_use] = ACTIONS(2113), + [anon_sym_LPAREN] = ACTIONS(2113), + [anon_sym_DOLLAR] = ACTIONS(2113), + [anon_sym_error] = ACTIONS(2113), + [anon_sym_list] = ACTIONS(2113), + [anon_sym_DASH] = ACTIONS(2113), + [anon_sym_break] = ACTIONS(2113), + [anon_sym_continue] = ACTIONS(2113), + [anon_sym_for] = ACTIONS(2113), + [anon_sym_in] = ACTIONS(2113), + [anon_sym_loop] = ACTIONS(2113), + [anon_sym_make] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(2113), + [anon_sym_do] = ACTIONS(2113), + [anon_sym_if] = ACTIONS(2113), + [anon_sym_else] = ACTIONS(2113), + [anon_sym_match] = ACTIONS(2113), + [anon_sym_RBRACE] = ACTIONS(2113), + [anon_sym_try] = ACTIONS(2113), + [anon_sym_catch] = ACTIONS(2113), + [anon_sym_return] = ACTIONS(2113), + [anon_sym_source] = ACTIONS(2113), + [anon_sym_source_DASHenv] = ACTIONS(2113), + [anon_sym_register] = ACTIONS(2113), + [anon_sym_hide] = ACTIONS(2113), + [anon_sym_hide_DASHenv] = ACTIONS(2113), + [anon_sym_overlay] = ACTIONS(2113), + [anon_sym_new] = ACTIONS(2113), + [anon_sym_as] = ACTIONS(2113), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2113), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2113), + [aux_sym__val_number_decimal_token1] = ACTIONS(2113), + [aux_sym__val_number_decimal_token2] = ACTIONS(2113), + [aux_sym__val_number_decimal_token3] = ACTIONS(2113), + [aux_sym__val_number_decimal_token4] = ACTIONS(2113), + [aux_sym__val_number_token1] = ACTIONS(2113), + [aux_sym__val_number_token2] = ACTIONS(2113), + [aux_sym__val_number_token3] = ACTIONS(2113), + [anon_sym_DQUOTE] = ACTIONS(2113), + [sym__str_single_quotes] = ACTIONS(2113), + [sym__str_back_ticks] = ACTIONS(2113), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2113), + [sym__entry_separator] = ACTIONS(2119), + [anon_sym_PLUS] = ACTIONS(2113), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2119), + }, + [593] = { + [sym_comment] = STATE(593), + [anon_sym_export] = ACTIONS(2494), + [anon_sym_alias] = ACTIONS(2494), + [anon_sym_let] = ACTIONS(2494), + [anon_sym_let_DASHenv] = ACTIONS(2494), + [anon_sym_mut] = ACTIONS(2494), + [anon_sym_const] = ACTIONS(2494), + [aux_sym_cmd_identifier_token1] = ACTIONS(2494), + [aux_sym_cmd_identifier_token2] = ACTIONS(2494), + [aux_sym_cmd_identifier_token3] = ACTIONS(2494), + [aux_sym_cmd_identifier_token4] = ACTIONS(2494), + [aux_sym_cmd_identifier_token5] = ACTIONS(2494), + [aux_sym_cmd_identifier_token6] = ACTIONS(2494), + [aux_sym_cmd_identifier_token7] = ACTIONS(2494), + [aux_sym_cmd_identifier_token8] = ACTIONS(2494), + [aux_sym_cmd_identifier_token9] = ACTIONS(2494), + [aux_sym_cmd_identifier_token10] = ACTIONS(2494), + [aux_sym_cmd_identifier_token11] = ACTIONS(2494), + [aux_sym_cmd_identifier_token12] = ACTIONS(2494), + [aux_sym_cmd_identifier_token13] = ACTIONS(2494), + [aux_sym_cmd_identifier_token14] = ACTIONS(2494), + [aux_sym_cmd_identifier_token15] = ACTIONS(2494), + [aux_sym_cmd_identifier_token16] = ACTIONS(2494), + [aux_sym_cmd_identifier_token17] = ACTIONS(2494), + [aux_sym_cmd_identifier_token18] = ACTIONS(2494), + [aux_sym_cmd_identifier_token19] = ACTIONS(2494), + [aux_sym_cmd_identifier_token20] = ACTIONS(2494), + [aux_sym_cmd_identifier_token21] = ACTIONS(2494), + [aux_sym_cmd_identifier_token22] = ACTIONS(2494), + [aux_sym_cmd_identifier_token23] = ACTIONS(2494), + [aux_sym_cmd_identifier_token24] = ACTIONS(2494), + [aux_sym_cmd_identifier_token25] = ACTIONS(2494), + [aux_sym_cmd_identifier_token26] = ACTIONS(2494), + [aux_sym_cmd_identifier_token27] = ACTIONS(2494), + [aux_sym_cmd_identifier_token28] = ACTIONS(2494), + [aux_sym_cmd_identifier_token29] = ACTIONS(2494), + [aux_sym_cmd_identifier_token30] = ACTIONS(2494), + [aux_sym_cmd_identifier_token31] = ACTIONS(2494), + [aux_sym_cmd_identifier_token32] = ACTIONS(2494), + [aux_sym_cmd_identifier_token33] = ACTIONS(2494), + [aux_sym_cmd_identifier_token34] = ACTIONS(2494), + [aux_sym_cmd_identifier_token35] = ACTIONS(2494), + [aux_sym_cmd_identifier_token36] = ACTIONS(2494), + [anon_sym_true] = ACTIONS(2494), + [anon_sym_false] = ACTIONS(2494), + [anon_sym_null] = ACTIONS(2494), + [aux_sym_cmd_identifier_token38] = ACTIONS(2494), + [aux_sym_cmd_identifier_token39] = ACTIONS(2494), + [aux_sym_cmd_identifier_token40] = ACTIONS(2494), + [anon_sym_def] = ACTIONS(2494), + [anon_sym_export_DASHenv] = ACTIONS(2494), + [anon_sym_extern] = ACTIONS(2494), + [anon_sym_module] = ACTIONS(2494), + [anon_sym_use] = ACTIONS(2494), + [anon_sym_LPAREN] = ACTIONS(2494), + [anon_sym_DOLLAR] = ACTIONS(2494), + [anon_sym_error] = ACTIONS(2494), + [anon_sym_list] = ACTIONS(2494), + [anon_sym_DASH] = ACTIONS(2494), + [anon_sym_break] = ACTIONS(2494), + [anon_sym_continue] = ACTIONS(2494), + [anon_sym_for] = ACTIONS(2494), + [anon_sym_in] = ACTIONS(2494), + [anon_sym_loop] = ACTIONS(2494), + [anon_sym_make] = ACTIONS(2494), + [anon_sym_while] = ACTIONS(2494), + [anon_sym_do] = ACTIONS(2494), + [anon_sym_if] = ACTIONS(2494), + [anon_sym_else] = ACTIONS(2494), + [anon_sym_match] = ACTIONS(2494), + [anon_sym_RBRACE] = ACTIONS(2494), + [anon_sym_try] = ACTIONS(2494), + [anon_sym_catch] = ACTIONS(2494), + [anon_sym_return] = ACTIONS(2494), + [anon_sym_source] = ACTIONS(2494), + [anon_sym_source_DASHenv] = ACTIONS(2494), + [anon_sym_register] = ACTIONS(2494), + [anon_sym_hide] = ACTIONS(2494), + [anon_sym_hide_DASHenv] = ACTIONS(2494), + [anon_sym_overlay] = ACTIONS(2494), + [anon_sym_new] = ACTIONS(2494), + [anon_sym_as] = ACTIONS(2494), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2494), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2494), + [aux_sym__val_number_decimal_token1] = ACTIONS(2494), + [aux_sym__val_number_decimal_token2] = ACTIONS(2494), + [aux_sym__val_number_decimal_token3] = ACTIONS(2494), + [aux_sym__val_number_decimal_token4] = ACTIONS(2494), + [aux_sym__val_number_token1] = ACTIONS(2494), + [aux_sym__val_number_token2] = ACTIONS(2494), + [aux_sym__val_number_token3] = ACTIONS(2494), + [anon_sym_DQUOTE] = ACTIONS(2494), + [sym__str_single_quotes] = ACTIONS(2494), + [sym__str_back_ticks] = ACTIONS(2494), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2494), + [sym__entry_separator] = ACTIONS(2496), + [anon_sym_PLUS] = ACTIONS(2494), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2496), }, [594] = { [sym_comment] = STATE(594), - [aux_sym_shebang_repeat1] = STATE(594), - [anon_sym_export] = ACTIONS(1313), - [anon_sym_alias] = ACTIONS(1313), - [anon_sym_let] = ACTIONS(1313), - [anon_sym_let_DASHenv] = ACTIONS(1313), - [anon_sym_mut] = ACTIONS(1313), - [anon_sym_const] = ACTIONS(1313), - [aux_sym_cmd_identifier_token1] = ACTIONS(1313), - [aux_sym_cmd_identifier_token2] = ACTIONS(1313), - [aux_sym_cmd_identifier_token3] = ACTIONS(1313), - [aux_sym_cmd_identifier_token4] = ACTIONS(1313), - [aux_sym_cmd_identifier_token5] = ACTIONS(1313), - [aux_sym_cmd_identifier_token6] = ACTIONS(1313), - [aux_sym_cmd_identifier_token7] = ACTIONS(1313), - [aux_sym_cmd_identifier_token8] = ACTIONS(1313), - [aux_sym_cmd_identifier_token9] = ACTIONS(1313), - [aux_sym_cmd_identifier_token10] = ACTIONS(1313), - [aux_sym_cmd_identifier_token11] = ACTIONS(1313), - [aux_sym_cmd_identifier_token12] = ACTIONS(1313), - [aux_sym_cmd_identifier_token13] = ACTIONS(1313), - [aux_sym_cmd_identifier_token14] = ACTIONS(1313), - [aux_sym_cmd_identifier_token15] = ACTIONS(1313), - [aux_sym_cmd_identifier_token16] = ACTIONS(1313), - [aux_sym_cmd_identifier_token17] = ACTIONS(1313), - [aux_sym_cmd_identifier_token18] = ACTIONS(1313), - [aux_sym_cmd_identifier_token19] = ACTIONS(1313), - [aux_sym_cmd_identifier_token20] = ACTIONS(1313), - [aux_sym_cmd_identifier_token21] = ACTIONS(1313), - [aux_sym_cmd_identifier_token22] = ACTIONS(1313), - [aux_sym_cmd_identifier_token23] = ACTIONS(1313), - [aux_sym_cmd_identifier_token24] = ACTIONS(1313), - [aux_sym_cmd_identifier_token25] = ACTIONS(1313), - [aux_sym_cmd_identifier_token26] = ACTIONS(1313), - [aux_sym_cmd_identifier_token27] = ACTIONS(1313), - [aux_sym_cmd_identifier_token28] = ACTIONS(1313), - [aux_sym_cmd_identifier_token29] = ACTIONS(1313), - [aux_sym_cmd_identifier_token30] = ACTIONS(1313), - [aux_sym_cmd_identifier_token31] = ACTIONS(1313), - [aux_sym_cmd_identifier_token32] = ACTIONS(1313), - [aux_sym_cmd_identifier_token33] = ACTIONS(1313), - [aux_sym_cmd_identifier_token34] = ACTIONS(1313), - [aux_sym_cmd_identifier_token35] = ACTIONS(1313), - [aux_sym_cmd_identifier_token36] = ACTIONS(1313), - [anon_sym_true] = ACTIONS(1315), - [anon_sym_false] = ACTIONS(1315), - [anon_sym_null] = ACTIONS(1315), - [aux_sym_cmd_identifier_token38] = ACTIONS(1313), - [aux_sym_cmd_identifier_token39] = ACTIONS(1315), - [aux_sym_cmd_identifier_token40] = ACTIONS(1315), - [sym__newline] = ACTIONS(2470), - [anon_sym_def] = ACTIONS(1313), - [anon_sym_export_DASHenv] = ACTIONS(1313), - [anon_sym_extern] = ACTIONS(1313), - [anon_sym_module] = ACTIONS(1313), - [anon_sym_use] = ACTIONS(1313), - [anon_sym_LPAREN] = ACTIONS(1315), - [anon_sym_DOLLAR] = ACTIONS(1315), - [anon_sym_error] = ACTIONS(1313), - [anon_sym_list] = ACTIONS(1313), - [anon_sym_DASH] = ACTIONS(1313), - [anon_sym_break] = ACTIONS(1313), - [anon_sym_continue] = ACTIONS(1313), - [anon_sym_for] = ACTIONS(1313), - [anon_sym_in] = ACTIONS(1313), - [anon_sym_loop] = ACTIONS(1313), - [anon_sym_make] = ACTIONS(1313), - [anon_sym_while] = ACTIONS(1313), - [anon_sym_do] = ACTIONS(1313), - [anon_sym_if] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1313), - [anon_sym_match] = ACTIONS(1313), - [anon_sym_try] = ACTIONS(1313), - [anon_sym_catch] = ACTIONS(1313), - [anon_sym_return] = ACTIONS(1313), - [anon_sym_source] = ACTIONS(1313), - [anon_sym_source_DASHenv] = ACTIONS(1313), - [anon_sym_register] = ACTIONS(1313), - [anon_sym_hide] = ACTIONS(1313), - [anon_sym_hide_DASHenv] = ACTIONS(1313), - [anon_sym_overlay] = ACTIONS(1313), - [anon_sym_new] = ACTIONS(1313), - [anon_sym_as] = ACTIONS(1313), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1315), - [aux_sym__val_number_decimal_token1] = ACTIONS(1313), - [aux_sym__val_number_decimal_token2] = ACTIONS(1315), - [aux_sym__val_number_decimal_token3] = ACTIONS(1315), - [aux_sym__val_number_decimal_token4] = ACTIONS(1315), - [aux_sym__val_number_token1] = ACTIONS(1315), - [aux_sym__val_number_token2] = ACTIONS(1315), - [aux_sym__val_number_token3] = ACTIONS(1315), - [anon_sym_DQUOTE] = ACTIONS(1315), - [sym__str_single_quotes] = ACTIONS(1315), - [sym__str_back_ticks] = ACTIONS(1315), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1315), - [anon_sym_PLUS] = ACTIONS(1313), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(2498), + [anon_sym_alias] = ACTIONS(2498), + [anon_sym_let] = ACTIONS(2498), + [anon_sym_let_DASHenv] = ACTIONS(2498), + [anon_sym_mut] = ACTIONS(2498), + [anon_sym_const] = ACTIONS(2498), + [aux_sym_cmd_identifier_token1] = ACTIONS(2498), + [aux_sym_cmd_identifier_token2] = ACTIONS(2498), + [aux_sym_cmd_identifier_token3] = ACTIONS(2498), + [aux_sym_cmd_identifier_token4] = ACTIONS(2498), + [aux_sym_cmd_identifier_token5] = ACTIONS(2498), + [aux_sym_cmd_identifier_token6] = ACTIONS(2498), + [aux_sym_cmd_identifier_token7] = ACTIONS(2498), + [aux_sym_cmd_identifier_token8] = ACTIONS(2498), + [aux_sym_cmd_identifier_token9] = ACTIONS(2498), + [aux_sym_cmd_identifier_token10] = ACTIONS(2498), + [aux_sym_cmd_identifier_token11] = ACTIONS(2498), + [aux_sym_cmd_identifier_token12] = ACTIONS(2498), + [aux_sym_cmd_identifier_token13] = ACTIONS(2498), + [aux_sym_cmd_identifier_token14] = ACTIONS(2498), + [aux_sym_cmd_identifier_token15] = ACTIONS(2498), + [aux_sym_cmd_identifier_token16] = ACTIONS(2498), + [aux_sym_cmd_identifier_token17] = ACTIONS(2498), + [aux_sym_cmd_identifier_token18] = ACTIONS(2498), + [aux_sym_cmd_identifier_token19] = ACTIONS(2498), + [aux_sym_cmd_identifier_token20] = ACTIONS(2498), + [aux_sym_cmd_identifier_token21] = ACTIONS(2498), + [aux_sym_cmd_identifier_token22] = ACTIONS(2498), + [aux_sym_cmd_identifier_token23] = ACTIONS(2498), + [aux_sym_cmd_identifier_token24] = ACTIONS(2498), + [aux_sym_cmd_identifier_token25] = ACTIONS(2498), + [aux_sym_cmd_identifier_token26] = ACTIONS(2498), + [aux_sym_cmd_identifier_token27] = ACTIONS(2498), + [aux_sym_cmd_identifier_token28] = ACTIONS(2498), + [aux_sym_cmd_identifier_token29] = ACTIONS(2498), + [aux_sym_cmd_identifier_token30] = ACTIONS(2498), + [aux_sym_cmd_identifier_token31] = ACTIONS(2498), + [aux_sym_cmd_identifier_token32] = ACTIONS(2498), + [aux_sym_cmd_identifier_token33] = ACTIONS(2498), + [aux_sym_cmd_identifier_token34] = ACTIONS(2498), + [aux_sym_cmd_identifier_token35] = ACTIONS(2498), + [aux_sym_cmd_identifier_token36] = ACTIONS(2498), + [anon_sym_true] = ACTIONS(2498), + [anon_sym_false] = ACTIONS(2498), + [anon_sym_null] = ACTIONS(2498), + [aux_sym_cmd_identifier_token38] = ACTIONS(2498), + [aux_sym_cmd_identifier_token39] = ACTIONS(2498), + [aux_sym_cmd_identifier_token40] = ACTIONS(2498), + [anon_sym_def] = ACTIONS(2498), + [anon_sym_export_DASHenv] = ACTIONS(2498), + [anon_sym_extern] = ACTIONS(2498), + [anon_sym_module] = ACTIONS(2498), + [anon_sym_use] = ACTIONS(2498), + [anon_sym_LPAREN] = ACTIONS(2498), + [anon_sym_DOLLAR] = ACTIONS(2498), + [anon_sym_error] = ACTIONS(2498), + [anon_sym_list] = ACTIONS(2498), + [anon_sym_DASH] = ACTIONS(2498), + [anon_sym_break] = ACTIONS(2498), + [anon_sym_continue] = ACTIONS(2498), + [anon_sym_for] = ACTIONS(2498), + [anon_sym_in] = ACTIONS(2498), + [anon_sym_loop] = ACTIONS(2498), + [anon_sym_make] = ACTIONS(2498), + [anon_sym_while] = ACTIONS(2498), + [anon_sym_do] = ACTIONS(2498), + [anon_sym_if] = ACTIONS(2498), + [anon_sym_else] = ACTIONS(2498), + [anon_sym_match] = ACTIONS(2498), + [anon_sym_RBRACE] = ACTIONS(2498), + [anon_sym_try] = ACTIONS(2498), + [anon_sym_catch] = ACTIONS(2498), + [anon_sym_return] = ACTIONS(2498), + [anon_sym_source] = ACTIONS(2498), + [anon_sym_source_DASHenv] = ACTIONS(2498), + [anon_sym_register] = ACTIONS(2498), + [anon_sym_hide] = ACTIONS(2498), + [anon_sym_hide_DASHenv] = ACTIONS(2498), + [anon_sym_overlay] = ACTIONS(2498), + [anon_sym_new] = ACTIONS(2498), + [anon_sym_as] = ACTIONS(2498), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2498), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2498), + [aux_sym__val_number_decimal_token1] = ACTIONS(2498), + [aux_sym__val_number_decimal_token2] = ACTIONS(2498), + [aux_sym__val_number_decimal_token3] = ACTIONS(2498), + [aux_sym__val_number_decimal_token4] = ACTIONS(2498), + [aux_sym__val_number_token1] = ACTIONS(2498), + [aux_sym__val_number_token2] = ACTIONS(2498), + [aux_sym__val_number_token3] = ACTIONS(2498), + [anon_sym_DQUOTE] = ACTIONS(2498), + [sym__str_single_quotes] = ACTIONS(2498), + [sym__str_back_ticks] = ACTIONS(2498), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2498), + [sym__entry_separator] = ACTIONS(2500), + [anon_sym_PLUS] = ACTIONS(2498), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2500), }, [595] = { [sym_comment] = STATE(595), - [anon_sym_export] = ACTIONS(2019), - [anon_sym_alias] = ACTIONS(2019), - [anon_sym_let] = ACTIONS(2019), - [anon_sym_let_DASHenv] = ACTIONS(2019), - [anon_sym_mut] = ACTIONS(2019), - [anon_sym_const] = ACTIONS(2019), - [aux_sym_cmd_identifier_token1] = ACTIONS(2019), - [aux_sym_cmd_identifier_token2] = ACTIONS(2019), - [aux_sym_cmd_identifier_token3] = ACTIONS(2019), - [aux_sym_cmd_identifier_token4] = ACTIONS(2019), - [aux_sym_cmd_identifier_token5] = ACTIONS(2019), - [aux_sym_cmd_identifier_token6] = ACTIONS(2019), - [aux_sym_cmd_identifier_token7] = ACTIONS(2019), - [aux_sym_cmd_identifier_token8] = ACTIONS(2019), - [aux_sym_cmd_identifier_token9] = ACTIONS(2019), - [aux_sym_cmd_identifier_token10] = ACTIONS(2019), - [aux_sym_cmd_identifier_token11] = ACTIONS(2019), - [aux_sym_cmd_identifier_token12] = ACTIONS(2019), - [aux_sym_cmd_identifier_token13] = ACTIONS(2019), - [aux_sym_cmd_identifier_token14] = ACTIONS(2019), - [aux_sym_cmd_identifier_token15] = ACTIONS(2019), - [aux_sym_cmd_identifier_token16] = ACTIONS(2019), - [aux_sym_cmd_identifier_token17] = ACTIONS(2019), - [aux_sym_cmd_identifier_token18] = ACTIONS(2019), - [aux_sym_cmd_identifier_token19] = ACTIONS(2019), - [aux_sym_cmd_identifier_token20] = ACTIONS(2019), - [aux_sym_cmd_identifier_token21] = ACTIONS(2019), - [aux_sym_cmd_identifier_token22] = ACTIONS(2019), - [aux_sym_cmd_identifier_token23] = ACTIONS(2019), - [aux_sym_cmd_identifier_token24] = ACTIONS(2019), - [aux_sym_cmd_identifier_token25] = ACTIONS(2019), - [aux_sym_cmd_identifier_token26] = ACTIONS(2019), - [aux_sym_cmd_identifier_token27] = ACTIONS(2019), - [aux_sym_cmd_identifier_token28] = ACTIONS(2019), - [aux_sym_cmd_identifier_token29] = ACTIONS(2019), - [aux_sym_cmd_identifier_token30] = ACTIONS(2019), - [aux_sym_cmd_identifier_token31] = ACTIONS(2019), - [aux_sym_cmd_identifier_token32] = ACTIONS(2019), - [aux_sym_cmd_identifier_token33] = ACTIONS(2019), - [aux_sym_cmd_identifier_token34] = ACTIONS(2019), - [aux_sym_cmd_identifier_token35] = ACTIONS(2019), - [aux_sym_cmd_identifier_token36] = ACTIONS(2019), - [anon_sym_true] = ACTIONS(2019), - [anon_sym_false] = ACTIONS(2019), - [anon_sym_null] = ACTIONS(2019), - [aux_sym_cmd_identifier_token38] = ACTIONS(2019), - [aux_sym_cmd_identifier_token39] = ACTIONS(2019), - [aux_sym_cmd_identifier_token40] = ACTIONS(2019), - [anon_sym_def] = ACTIONS(2019), - [anon_sym_export_DASHenv] = ACTIONS(2019), - [anon_sym_extern] = ACTIONS(2019), - [anon_sym_module] = ACTIONS(2019), - [anon_sym_use] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(2019), - [anon_sym_DOLLAR] = ACTIONS(2019), - [anon_sym_error] = ACTIONS(2019), - [anon_sym_list] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_break] = ACTIONS(2019), - [anon_sym_continue] = ACTIONS(2019), - [anon_sym_for] = ACTIONS(2019), - [anon_sym_in] = ACTIONS(2019), - [anon_sym_loop] = ACTIONS(2019), - [anon_sym_make] = ACTIONS(2019), - [anon_sym_while] = ACTIONS(2019), - [anon_sym_do] = ACTIONS(2019), - [anon_sym_if] = ACTIONS(2019), - [anon_sym_else] = ACTIONS(2019), - [anon_sym_match] = ACTIONS(2019), - [anon_sym_RBRACE] = ACTIONS(2019), - [anon_sym_try] = ACTIONS(2019), - [anon_sym_catch] = ACTIONS(2019), - [anon_sym_return] = ACTIONS(2019), - [anon_sym_source] = ACTIONS(2019), - [anon_sym_source_DASHenv] = ACTIONS(2019), - [anon_sym_register] = ACTIONS(2019), - [anon_sym_hide] = ACTIONS(2019), - [anon_sym_hide_DASHenv] = ACTIONS(2019), - [anon_sym_overlay] = ACTIONS(2019), - [anon_sym_new] = ACTIONS(2019), - [anon_sym_as] = ACTIONS(2019), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2019), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2019), - [aux_sym__val_number_decimal_token1] = ACTIONS(2019), - [aux_sym__val_number_decimal_token2] = ACTIONS(2019), - [aux_sym__val_number_decimal_token3] = ACTIONS(2019), - [aux_sym__val_number_decimal_token4] = ACTIONS(2019), - [aux_sym__val_number_token1] = ACTIONS(2019), - [aux_sym__val_number_token2] = ACTIONS(2019), - [aux_sym__val_number_token3] = ACTIONS(2019), - [anon_sym_DQUOTE] = ACTIONS(2019), - [sym__str_single_quotes] = ACTIONS(2019), - [sym__str_back_ticks] = ACTIONS(2019), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2019), - [sym__entry_separator] = ACTIONS(2025), - [anon_sym_PLUS] = ACTIONS(2019), + [anon_sym_export] = ACTIONS(2502), + [anon_sym_alias] = ACTIONS(2502), + [anon_sym_let] = ACTIONS(2502), + [anon_sym_let_DASHenv] = ACTIONS(2502), + [anon_sym_mut] = ACTIONS(2502), + [anon_sym_const] = ACTIONS(2502), + [aux_sym_cmd_identifier_token1] = ACTIONS(2502), + [aux_sym_cmd_identifier_token2] = ACTIONS(2502), + [aux_sym_cmd_identifier_token3] = ACTIONS(2502), + [aux_sym_cmd_identifier_token4] = ACTIONS(2502), + [aux_sym_cmd_identifier_token5] = ACTIONS(2502), + [aux_sym_cmd_identifier_token6] = ACTIONS(2502), + [aux_sym_cmd_identifier_token7] = ACTIONS(2502), + [aux_sym_cmd_identifier_token8] = ACTIONS(2502), + [aux_sym_cmd_identifier_token9] = ACTIONS(2502), + [aux_sym_cmd_identifier_token10] = ACTIONS(2502), + [aux_sym_cmd_identifier_token11] = ACTIONS(2502), + [aux_sym_cmd_identifier_token12] = ACTIONS(2502), + [aux_sym_cmd_identifier_token13] = ACTIONS(2502), + [aux_sym_cmd_identifier_token14] = ACTIONS(2502), + [aux_sym_cmd_identifier_token15] = ACTIONS(2502), + [aux_sym_cmd_identifier_token16] = ACTIONS(2502), + [aux_sym_cmd_identifier_token17] = ACTIONS(2502), + [aux_sym_cmd_identifier_token18] = ACTIONS(2502), + [aux_sym_cmd_identifier_token19] = ACTIONS(2502), + [aux_sym_cmd_identifier_token20] = ACTIONS(2502), + [aux_sym_cmd_identifier_token21] = ACTIONS(2502), + [aux_sym_cmd_identifier_token22] = ACTIONS(2502), + [aux_sym_cmd_identifier_token23] = ACTIONS(2502), + [aux_sym_cmd_identifier_token24] = ACTIONS(2502), + [aux_sym_cmd_identifier_token25] = ACTIONS(2502), + [aux_sym_cmd_identifier_token26] = ACTIONS(2502), + [aux_sym_cmd_identifier_token27] = ACTIONS(2502), + [aux_sym_cmd_identifier_token28] = ACTIONS(2502), + [aux_sym_cmd_identifier_token29] = ACTIONS(2502), + [aux_sym_cmd_identifier_token30] = ACTIONS(2502), + [aux_sym_cmd_identifier_token31] = ACTIONS(2502), + [aux_sym_cmd_identifier_token32] = ACTIONS(2502), + [aux_sym_cmd_identifier_token33] = ACTIONS(2502), + [aux_sym_cmd_identifier_token34] = ACTIONS(2502), + [aux_sym_cmd_identifier_token35] = ACTIONS(2502), + [aux_sym_cmd_identifier_token36] = ACTIONS(2502), + [anon_sym_true] = ACTIONS(2502), + [anon_sym_false] = ACTIONS(2502), + [anon_sym_null] = ACTIONS(2502), + [aux_sym_cmd_identifier_token38] = ACTIONS(2502), + [aux_sym_cmd_identifier_token39] = ACTIONS(2502), + [aux_sym_cmd_identifier_token40] = ACTIONS(2502), + [anon_sym_def] = ACTIONS(2502), + [anon_sym_export_DASHenv] = ACTIONS(2502), + [anon_sym_extern] = ACTIONS(2502), + [anon_sym_module] = ACTIONS(2502), + [anon_sym_use] = ACTIONS(2502), + [anon_sym_LPAREN] = ACTIONS(2502), + [anon_sym_DOLLAR] = ACTIONS(2502), + [anon_sym_error] = ACTIONS(2502), + [anon_sym_list] = ACTIONS(2502), + [anon_sym_DASH] = ACTIONS(2502), + [anon_sym_break] = ACTIONS(2502), + [anon_sym_continue] = ACTIONS(2502), + [anon_sym_for] = ACTIONS(2502), + [anon_sym_in] = ACTIONS(2502), + [anon_sym_loop] = ACTIONS(2502), + [anon_sym_make] = ACTIONS(2502), + [anon_sym_while] = ACTIONS(2502), + [anon_sym_do] = ACTIONS(2502), + [anon_sym_if] = ACTIONS(2502), + [anon_sym_else] = ACTIONS(2502), + [anon_sym_match] = ACTIONS(2502), + [anon_sym_RBRACE] = ACTIONS(2502), + [anon_sym_try] = ACTIONS(2502), + [anon_sym_catch] = ACTIONS(2502), + [anon_sym_return] = ACTIONS(2502), + [anon_sym_source] = ACTIONS(2502), + [anon_sym_source_DASHenv] = ACTIONS(2502), + [anon_sym_register] = ACTIONS(2502), + [anon_sym_hide] = ACTIONS(2502), + [anon_sym_hide_DASHenv] = ACTIONS(2502), + [anon_sym_overlay] = ACTIONS(2502), + [anon_sym_new] = ACTIONS(2502), + [anon_sym_as] = ACTIONS(2502), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2502), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2502), + [aux_sym__val_number_decimal_token1] = ACTIONS(2502), + [aux_sym__val_number_decimal_token2] = ACTIONS(2502), + [aux_sym__val_number_decimal_token3] = ACTIONS(2502), + [aux_sym__val_number_decimal_token4] = ACTIONS(2502), + [aux_sym__val_number_token1] = ACTIONS(2502), + [aux_sym__val_number_token2] = ACTIONS(2502), + [aux_sym__val_number_token3] = ACTIONS(2502), + [anon_sym_DQUOTE] = ACTIONS(2502), + [sym__str_single_quotes] = ACTIONS(2502), + [sym__str_back_ticks] = ACTIONS(2502), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2502), + [sym__entry_separator] = ACTIONS(2504), + [anon_sym_PLUS] = ACTIONS(2502), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2504), }, [596] = { [sym_comment] = STATE(596), - [anon_sym_export] = ACTIONS(2473), - [anon_sym_alias] = ACTIONS(2473), - [anon_sym_let] = ACTIONS(2473), - [anon_sym_let_DASHenv] = ACTIONS(2473), - [anon_sym_mut] = ACTIONS(2473), - [anon_sym_const] = ACTIONS(2473), - [aux_sym_cmd_identifier_token1] = ACTIONS(2473), - [aux_sym_cmd_identifier_token2] = ACTIONS(2473), - [aux_sym_cmd_identifier_token3] = ACTIONS(2473), - [aux_sym_cmd_identifier_token4] = ACTIONS(2473), - [aux_sym_cmd_identifier_token5] = ACTIONS(2473), - [aux_sym_cmd_identifier_token6] = ACTIONS(2473), - [aux_sym_cmd_identifier_token7] = ACTIONS(2473), - [aux_sym_cmd_identifier_token8] = ACTIONS(2473), - [aux_sym_cmd_identifier_token9] = ACTIONS(2473), - [aux_sym_cmd_identifier_token10] = ACTIONS(2473), - [aux_sym_cmd_identifier_token11] = ACTIONS(2473), - [aux_sym_cmd_identifier_token12] = ACTIONS(2473), - [aux_sym_cmd_identifier_token13] = ACTIONS(2473), - [aux_sym_cmd_identifier_token14] = ACTIONS(2473), - [aux_sym_cmd_identifier_token15] = ACTIONS(2473), - [aux_sym_cmd_identifier_token16] = ACTIONS(2473), - [aux_sym_cmd_identifier_token17] = ACTIONS(2473), - [aux_sym_cmd_identifier_token18] = ACTIONS(2473), - [aux_sym_cmd_identifier_token19] = ACTIONS(2473), - [aux_sym_cmd_identifier_token20] = ACTIONS(2473), - [aux_sym_cmd_identifier_token21] = ACTIONS(2473), - [aux_sym_cmd_identifier_token22] = ACTIONS(2473), - [aux_sym_cmd_identifier_token23] = ACTIONS(2473), - [aux_sym_cmd_identifier_token24] = ACTIONS(2473), - [aux_sym_cmd_identifier_token25] = ACTIONS(2473), - [aux_sym_cmd_identifier_token26] = ACTIONS(2473), - [aux_sym_cmd_identifier_token27] = ACTIONS(2473), - [aux_sym_cmd_identifier_token28] = ACTIONS(2473), - [aux_sym_cmd_identifier_token29] = ACTIONS(2473), - [aux_sym_cmd_identifier_token30] = ACTIONS(2473), - [aux_sym_cmd_identifier_token31] = ACTIONS(2473), - [aux_sym_cmd_identifier_token32] = ACTIONS(2473), - [aux_sym_cmd_identifier_token33] = ACTIONS(2473), - [aux_sym_cmd_identifier_token34] = ACTIONS(2473), - [aux_sym_cmd_identifier_token35] = ACTIONS(2473), - [aux_sym_cmd_identifier_token36] = ACTIONS(2473), - [anon_sym_true] = ACTIONS(2473), - [anon_sym_false] = ACTIONS(2473), - [anon_sym_null] = ACTIONS(2473), - [aux_sym_cmd_identifier_token38] = ACTIONS(2473), - [aux_sym_cmd_identifier_token39] = ACTIONS(2473), - [aux_sym_cmd_identifier_token40] = ACTIONS(2473), - [anon_sym_def] = ACTIONS(2473), - [anon_sym_export_DASHenv] = ACTIONS(2473), - [anon_sym_extern] = ACTIONS(2473), - [anon_sym_module] = ACTIONS(2473), - [anon_sym_use] = ACTIONS(2473), - [anon_sym_LPAREN] = ACTIONS(2473), - [anon_sym_DOLLAR] = ACTIONS(2473), - [anon_sym_error] = ACTIONS(2473), - [anon_sym_list] = ACTIONS(2473), - [anon_sym_DASH] = ACTIONS(2473), - [anon_sym_break] = ACTIONS(2473), - [anon_sym_continue] = ACTIONS(2473), - [anon_sym_for] = ACTIONS(2473), - [anon_sym_in] = ACTIONS(2473), - [anon_sym_loop] = ACTIONS(2473), - [anon_sym_make] = ACTIONS(2473), - [anon_sym_while] = ACTIONS(2473), - [anon_sym_do] = ACTIONS(2473), - [anon_sym_if] = ACTIONS(2473), - [anon_sym_else] = ACTIONS(2473), - [anon_sym_match] = ACTIONS(2473), - [anon_sym_RBRACE] = ACTIONS(2473), - [anon_sym_try] = ACTIONS(2473), - [anon_sym_catch] = ACTIONS(2473), - [anon_sym_return] = ACTIONS(2473), - [anon_sym_source] = ACTIONS(2473), - [anon_sym_source_DASHenv] = ACTIONS(2473), - [anon_sym_register] = ACTIONS(2473), - [anon_sym_hide] = ACTIONS(2473), - [anon_sym_hide_DASHenv] = ACTIONS(2473), - [anon_sym_overlay] = ACTIONS(2473), - [anon_sym_new] = ACTIONS(2473), - [anon_sym_as] = ACTIONS(2473), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2473), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2473), - [aux_sym__val_number_decimal_token1] = ACTIONS(2473), - [aux_sym__val_number_decimal_token2] = ACTIONS(2473), - [aux_sym__val_number_decimal_token3] = ACTIONS(2473), - [aux_sym__val_number_decimal_token4] = ACTIONS(2473), - [aux_sym__val_number_token1] = ACTIONS(2473), - [aux_sym__val_number_token2] = ACTIONS(2473), - [aux_sym__val_number_token3] = ACTIONS(2473), - [anon_sym_DQUOTE] = ACTIONS(2473), - [sym__str_single_quotes] = ACTIONS(2473), - [sym__str_back_ticks] = ACTIONS(2473), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2473), - [sym__entry_separator] = ACTIONS(2475), - [anon_sym_PLUS] = ACTIONS(2473), + [anon_sym_export] = ACTIONS(2494), + [anon_sym_alias] = ACTIONS(2494), + [anon_sym_let] = ACTIONS(2494), + [anon_sym_let_DASHenv] = ACTIONS(2494), + [anon_sym_mut] = ACTIONS(2494), + [anon_sym_const] = ACTIONS(2494), + [aux_sym_cmd_identifier_token1] = ACTIONS(2494), + [aux_sym_cmd_identifier_token2] = ACTIONS(2494), + [aux_sym_cmd_identifier_token3] = ACTIONS(2494), + [aux_sym_cmd_identifier_token4] = ACTIONS(2494), + [aux_sym_cmd_identifier_token5] = ACTIONS(2494), + [aux_sym_cmd_identifier_token6] = ACTIONS(2494), + [aux_sym_cmd_identifier_token7] = ACTIONS(2494), + [aux_sym_cmd_identifier_token8] = ACTIONS(2494), + [aux_sym_cmd_identifier_token9] = ACTIONS(2494), + [aux_sym_cmd_identifier_token10] = ACTIONS(2494), + [aux_sym_cmd_identifier_token11] = ACTIONS(2494), + [aux_sym_cmd_identifier_token12] = ACTIONS(2494), + [aux_sym_cmd_identifier_token13] = ACTIONS(2494), + [aux_sym_cmd_identifier_token14] = ACTIONS(2494), + [aux_sym_cmd_identifier_token15] = ACTIONS(2494), + [aux_sym_cmd_identifier_token16] = ACTIONS(2494), + [aux_sym_cmd_identifier_token17] = ACTIONS(2494), + [aux_sym_cmd_identifier_token18] = ACTIONS(2494), + [aux_sym_cmd_identifier_token19] = ACTIONS(2494), + [aux_sym_cmd_identifier_token20] = ACTIONS(2494), + [aux_sym_cmd_identifier_token21] = ACTIONS(2494), + [aux_sym_cmd_identifier_token22] = ACTIONS(2494), + [aux_sym_cmd_identifier_token23] = ACTIONS(2494), + [aux_sym_cmd_identifier_token24] = ACTIONS(2494), + [aux_sym_cmd_identifier_token25] = ACTIONS(2494), + [aux_sym_cmd_identifier_token26] = ACTIONS(2494), + [aux_sym_cmd_identifier_token27] = ACTIONS(2494), + [aux_sym_cmd_identifier_token28] = ACTIONS(2494), + [aux_sym_cmd_identifier_token29] = ACTIONS(2494), + [aux_sym_cmd_identifier_token30] = ACTIONS(2494), + [aux_sym_cmd_identifier_token31] = ACTIONS(2494), + [aux_sym_cmd_identifier_token32] = ACTIONS(2494), + [aux_sym_cmd_identifier_token33] = ACTIONS(2494), + [aux_sym_cmd_identifier_token34] = ACTIONS(2494), + [aux_sym_cmd_identifier_token35] = ACTIONS(2494), + [aux_sym_cmd_identifier_token36] = ACTIONS(2494), + [anon_sym_true] = ACTIONS(2494), + [anon_sym_false] = ACTIONS(2494), + [anon_sym_null] = ACTIONS(2494), + [aux_sym_cmd_identifier_token38] = ACTIONS(2494), + [aux_sym_cmd_identifier_token39] = ACTIONS(2494), + [aux_sym_cmd_identifier_token40] = ACTIONS(2494), + [anon_sym_def] = ACTIONS(2494), + [anon_sym_export_DASHenv] = ACTIONS(2494), + [anon_sym_extern] = ACTIONS(2494), + [anon_sym_module] = ACTIONS(2494), + [anon_sym_use] = ACTIONS(2494), + [anon_sym_LPAREN] = ACTIONS(2494), + [anon_sym_DOLLAR] = ACTIONS(2494), + [anon_sym_error] = ACTIONS(2494), + [anon_sym_list] = ACTIONS(2494), + [anon_sym_DASH] = ACTIONS(2494), + [anon_sym_break] = ACTIONS(2494), + [anon_sym_continue] = ACTIONS(2494), + [anon_sym_for] = ACTIONS(2494), + [anon_sym_in] = ACTIONS(2494), + [anon_sym_loop] = ACTIONS(2494), + [anon_sym_make] = ACTIONS(2494), + [anon_sym_while] = ACTIONS(2494), + [anon_sym_do] = ACTIONS(2494), + [anon_sym_if] = ACTIONS(2494), + [anon_sym_else] = ACTIONS(2494), + [anon_sym_match] = ACTIONS(2494), + [anon_sym_RBRACE] = ACTIONS(2494), + [anon_sym_try] = ACTIONS(2494), + [anon_sym_catch] = ACTIONS(2494), + [anon_sym_return] = ACTIONS(2494), + [anon_sym_source] = ACTIONS(2494), + [anon_sym_source_DASHenv] = ACTIONS(2494), + [anon_sym_register] = ACTIONS(2494), + [anon_sym_hide] = ACTIONS(2494), + [anon_sym_hide_DASHenv] = ACTIONS(2494), + [anon_sym_overlay] = ACTIONS(2494), + [anon_sym_new] = ACTIONS(2494), + [anon_sym_as] = ACTIONS(2494), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2494), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2494), + [aux_sym__val_number_decimal_token1] = ACTIONS(2494), + [aux_sym__val_number_decimal_token2] = ACTIONS(2494), + [aux_sym__val_number_decimal_token3] = ACTIONS(2494), + [aux_sym__val_number_decimal_token4] = ACTIONS(2494), + [aux_sym__val_number_token1] = ACTIONS(2494), + [aux_sym__val_number_token2] = ACTIONS(2494), + [aux_sym__val_number_token3] = ACTIONS(2494), + [anon_sym_DQUOTE] = ACTIONS(2494), + [sym__str_single_quotes] = ACTIONS(2494), + [sym__str_back_ticks] = ACTIONS(2494), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2494), + [sym__entry_separator] = ACTIONS(2496), + [anon_sym_PLUS] = ACTIONS(2494), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2496), }, [597] = { [sym_comment] = STATE(597), - [anon_sym_export] = ACTIONS(1991), - [anon_sym_alias] = ACTIONS(1991), - [anon_sym_let] = ACTIONS(1991), - [anon_sym_let_DASHenv] = ACTIONS(1991), - [anon_sym_mut] = ACTIONS(1991), - [anon_sym_const] = ACTIONS(1991), - [aux_sym_cmd_identifier_token1] = ACTIONS(1991), - [aux_sym_cmd_identifier_token2] = ACTIONS(1991), - [aux_sym_cmd_identifier_token3] = ACTIONS(1991), - [aux_sym_cmd_identifier_token4] = ACTIONS(1991), - [aux_sym_cmd_identifier_token5] = ACTIONS(1991), - [aux_sym_cmd_identifier_token6] = ACTIONS(1991), - [aux_sym_cmd_identifier_token7] = ACTIONS(1991), - [aux_sym_cmd_identifier_token8] = ACTIONS(1991), - [aux_sym_cmd_identifier_token9] = ACTIONS(1991), - [aux_sym_cmd_identifier_token10] = ACTIONS(1991), - [aux_sym_cmd_identifier_token11] = ACTIONS(1991), - [aux_sym_cmd_identifier_token12] = ACTIONS(1991), - [aux_sym_cmd_identifier_token13] = ACTIONS(1991), - [aux_sym_cmd_identifier_token14] = ACTIONS(1991), - [aux_sym_cmd_identifier_token15] = ACTIONS(1991), - [aux_sym_cmd_identifier_token16] = ACTIONS(1991), - [aux_sym_cmd_identifier_token17] = ACTIONS(1991), - [aux_sym_cmd_identifier_token18] = ACTIONS(1991), - [aux_sym_cmd_identifier_token19] = ACTIONS(1991), - [aux_sym_cmd_identifier_token20] = ACTIONS(1991), - [aux_sym_cmd_identifier_token21] = ACTIONS(1991), - [aux_sym_cmd_identifier_token22] = ACTIONS(1991), - [aux_sym_cmd_identifier_token23] = ACTIONS(1991), - [aux_sym_cmd_identifier_token24] = ACTIONS(1991), - [aux_sym_cmd_identifier_token25] = ACTIONS(1991), - [aux_sym_cmd_identifier_token26] = ACTIONS(1991), - [aux_sym_cmd_identifier_token27] = ACTIONS(1991), - [aux_sym_cmd_identifier_token28] = ACTIONS(1991), - [aux_sym_cmd_identifier_token29] = ACTIONS(1991), - [aux_sym_cmd_identifier_token30] = ACTIONS(1991), - [aux_sym_cmd_identifier_token31] = ACTIONS(1991), - [aux_sym_cmd_identifier_token32] = ACTIONS(1991), - [aux_sym_cmd_identifier_token33] = ACTIONS(1991), - [aux_sym_cmd_identifier_token34] = ACTIONS(1991), - [aux_sym_cmd_identifier_token35] = ACTIONS(1991), - [aux_sym_cmd_identifier_token36] = ACTIONS(1991), - [anon_sym_true] = ACTIONS(1991), - [anon_sym_false] = ACTIONS(1991), - [anon_sym_null] = ACTIONS(1991), - [aux_sym_cmd_identifier_token38] = ACTIONS(1991), - [aux_sym_cmd_identifier_token39] = ACTIONS(1991), - [aux_sym_cmd_identifier_token40] = ACTIONS(1991), - [anon_sym_def] = ACTIONS(1991), - [anon_sym_export_DASHenv] = ACTIONS(1991), - [anon_sym_extern] = ACTIONS(1991), - [anon_sym_module] = ACTIONS(1991), - [anon_sym_use] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1991), - [anon_sym_DOLLAR] = ACTIONS(1991), - [anon_sym_error] = ACTIONS(1991), - [anon_sym_list] = ACTIONS(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_break] = ACTIONS(1991), - [anon_sym_continue] = ACTIONS(1991), - [anon_sym_for] = ACTIONS(1991), - [anon_sym_in] = ACTIONS(1991), - [anon_sym_loop] = ACTIONS(1991), - [anon_sym_make] = ACTIONS(1991), - [anon_sym_while] = ACTIONS(1991), - [anon_sym_do] = ACTIONS(1991), - [anon_sym_if] = ACTIONS(1991), - [anon_sym_else] = ACTIONS(1991), - [anon_sym_match] = ACTIONS(1991), - [anon_sym_RBRACE] = ACTIONS(1991), - [anon_sym_try] = ACTIONS(1991), - [anon_sym_catch] = ACTIONS(1991), - [anon_sym_return] = ACTIONS(1991), - [anon_sym_source] = ACTIONS(1991), - [anon_sym_source_DASHenv] = ACTIONS(1991), - [anon_sym_register] = ACTIONS(1991), - [anon_sym_hide] = ACTIONS(1991), - [anon_sym_hide_DASHenv] = ACTIONS(1991), - [anon_sym_overlay] = ACTIONS(1991), - [anon_sym_new] = ACTIONS(1991), - [anon_sym_as] = ACTIONS(1991), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1991), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1991), - [aux_sym__val_number_decimal_token1] = ACTIONS(1991), - [aux_sym__val_number_decimal_token2] = ACTIONS(1991), - [aux_sym__val_number_decimal_token3] = ACTIONS(1991), - [aux_sym__val_number_decimal_token4] = ACTIONS(1991), - [aux_sym__val_number_token1] = ACTIONS(1991), - [aux_sym__val_number_token2] = ACTIONS(1991), - [aux_sym__val_number_token3] = ACTIONS(1991), - [anon_sym_DQUOTE] = ACTIONS(1991), - [sym__str_single_quotes] = ACTIONS(1991), - [sym__str_back_ticks] = ACTIONS(1991), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1991), - [sym__entry_separator] = ACTIONS(1997), - [anon_sym_PLUS] = ACTIONS(1991), + [anon_sym_export] = ACTIONS(2506), + [anon_sym_alias] = ACTIONS(2506), + [anon_sym_let] = ACTIONS(2506), + [anon_sym_let_DASHenv] = ACTIONS(2506), + [anon_sym_mut] = ACTIONS(2506), + [anon_sym_const] = ACTIONS(2506), + [aux_sym_cmd_identifier_token1] = ACTIONS(2506), + [aux_sym_cmd_identifier_token2] = ACTIONS(2506), + [aux_sym_cmd_identifier_token3] = ACTIONS(2506), + [aux_sym_cmd_identifier_token4] = ACTIONS(2506), + [aux_sym_cmd_identifier_token5] = ACTIONS(2506), + [aux_sym_cmd_identifier_token6] = ACTIONS(2506), + [aux_sym_cmd_identifier_token7] = ACTIONS(2506), + [aux_sym_cmd_identifier_token8] = ACTIONS(2506), + [aux_sym_cmd_identifier_token9] = ACTIONS(2506), + [aux_sym_cmd_identifier_token10] = ACTIONS(2506), + [aux_sym_cmd_identifier_token11] = ACTIONS(2506), + [aux_sym_cmd_identifier_token12] = ACTIONS(2506), + [aux_sym_cmd_identifier_token13] = ACTIONS(2506), + [aux_sym_cmd_identifier_token14] = ACTIONS(2506), + [aux_sym_cmd_identifier_token15] = ACTIONS(2506), + [aux_sym_cmd_identifier_token16] = ACTIONS(2506), + [aux_sym_cmd_identifier_token17] = ACTIONS(2506), + [aux_sym_cmd_identifier_token18] = ACTIONS(2506), + [aux_sym_cmd_identifier_token19] = ACTIONS(2506), + [aux_sym_cmd_identifier_token20] = ACTIONS(2506), + [aux_sym_cmd_identifier_token21] = ACTIONS(2506), + [aux_sym_cmd_identifier_token22] = ACTIONS(2506), + [aux_sym_cmd_identifier_token23] = ACTIONS(2506), + [aux_sym_cmd_identifier_token24] = ACTIONS(2506), + [aux_sym_cmd_identifier_token25] = ACTIONS(2506), + [aux_sym_cmd_identifier_token26] = ACTIONS(2506), + [aux_sym_cmd_identifier_token27] = ACTIONS(2506), + [aux_sym_cmd_identifier_token28] = ACTIONS(2506), + [aux_sym_cmd_identifier_token29] = ACTIONS(2506), + [aux_sym_cmd_identifier_token30] = ACTIONS(2506), + [aux_sym_cmd_identifier_token31] = ACTIONS(2506), + [aux_sym_cmd_identifier_token32] = ACTIONS(2506), + [aux_sym_cmd_identifier_token33] = ACTIONS(2506), + [aux_sym_cmd_identifier_token34] = ACTIONS(2506), + [aux_sym_cmd_identifier_token35] = ACTIONS(2506), + [aux_sym_cmd_identifier_token36] = ACTIONS(2506), + [anon_sym_true] = ACTIONS(2506), + [anon_sym_false] = ACTIONS(2506), + [anon_sym_null] = ACTIONS(2506), + [aux_sym_cmd_identifier_token38] = ACTIONS(2506), + [aux_sym_cmd_identifier_token39] = ACTIONS(2506), + [aux_sym_cmd_identifier_token40] = ACTIONS(2506), + [anon_sym_def] = ACTIONS(2506), + [anon_sym_export_DASHenv] = ACTIONS(2506), + [anon_sym_extern] = ACTIONS(2506), + [anon_sym_module] = ACTIONS(2506), + [anon_sym_use] = ACTIONS(2506), + [anon_sym_LPAREN] = ACTIONS(2506), + [anon_sym_DOLLAR] = ACTIONS(2506), + [anon_sym_error] = ACTIONS(2506), + [anon_sym_list] = ACTIONS(2506), + [anon_sym_DASH] = ACTIONS(2506), + [anon_sym_break] = ACTIONS(2506), + [anon_sym_continue] = ACTIONS(2506), + [anon_sym_for] = ACTIONS(2506), + [anon_sym_in] = ACTIONS(2506), + [anon_sym_loop] = ACTIONS(2506), + [anon_sym_make] = ACTIONS(2506), + [anon_sym_while] = ACTIONS(2506), + [anon_sym_do] = ACTIONS(2506), + [anon_sym_if] = ACTIONS(2506), + [anon_sym_else] = ACTIONS(2506), + [anon_sym_match] = ACTIONS(2506), + [anon_sym_RBRACE] = ACTIONS(2506), + [anon_sym_try] = ACTIONS(2506), + [anon_sym_catch] = ACTIONS(2506), + [anon_sym_return] = ACTIONS(2506), + [anon_sym_source] = ACTIONS(2506), + [anon_sym_source_DASHenv] = ACTIONS(2506), + [anon_sym_register] = ACTIONS(2506), + [anon_sym_hide] = ACTIONS(2506), + [anon_sym_hide_DASHenv] = ACTIONS(2506), + [anon_sym_overlay] = ACTIONS(2506), + [anon_sym_new] = ACTIONS(2506), + [anon_sym_as] = ACTIONS(2506), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2506), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2506), + [aux_sym__val_number_decimal_token1] = ACTIONS(2506), + [aux_sym__val_number_decimal_token2] = ACTIONS(2506), + [aux_sym__val_number_decimal_token3] = ACTIONS(2506), + [aux_sym__val_number_decimal_token4] = ACTIONS(2506), + [aux_sym__val_number_token1] = ACTIONS(2506), + [aux_sym__val_number_token2] = ACTIONS(2506), + [aux_sym__val_number_token3] = ACTIONS(2506), + [anon_sym_DQUOTE] = ACTIONS(2506), + [sym__str_single_quotes] = ACTIONS(2506), + [sym__str_back_ticks] = ACTIONS(2506), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2506), + [sym__entry_separator] = ACTIONS(2508), + [anon_sym_PLUS] = ACTIONS(2506), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2508), }, [598] = { [sym_comment] = STATE(598), - [anon_sym_export] = ACTIONS(1999), - [anon_sym_alias] = ACTIONS(1999), - [anon_sym_let] = ACTIONS(1999), - [anon_sym_let_DASHenv] = ACTIONS(1999), - [anon_sym_mut] = ACTIONS(1999), - [anon_sym_const] = ACTIONS(1999), - [aux_sym_cmd_identifier_token1] = ACTIONS(1999), - [aux_sym_cmd_identifier_token2] = ACTIONS(1999), - [aux_sym_cmd_identifier_token3] = ACTIONS(1999), - [aux_sym_cmd_identifier_token4] = ACTIONS(1999), - [aux_sym_cmd_identifier_token5] = ACTIONS(1999), - [aux_sym_cmd_identifier_token6] = ACTIONS(1999), - [aux_sym_cmd_identifier_token7] = ACTIONS(1999), - [aux_sym_cmd_identifier_token8] = ACTIONS(1999), - [aux_sym_cmd_identifier_token9] = ACTIONS(1999), - [aux_sym_cmd_identifier_token10] = ACTIONS(1999), - [aux_sym_cmd_identifier_token11] = ACTIONS(1999), - [aux_sym_cmd_identifier_token12] = ACTIONS(1999), - [aux_sym_cmd_identifier_token13] = ACTIONS(1999), - [aux_sym_cmd_identifier_token14] = ACTIONS(1999), - [aux_sym_cmd_identifier_token15] = ACTIONS(1999), - [aux_sym_cmd_identifier_token16] = ACTIONS(1999), - [aux_sym_cmd_identifier_token17] = ACTIONS(1999), - [aux_sym_cmd_identifier_token18] = ACTIONS(1999), - [aux_sym_cmd_identifier_token19] = ACTIONS(1999), - [aux_sym_cmd_identifier_token20] = ACTIONS(1999), - [aux_sym_cmd_identifier_token21] = ACTIONS(1999), - [aux_sym_cmd_identifier_token22] = ACTIONS(1999), - [aux_sym_cmd_identifier_token23] = ACTIONS(1999), - [aux_sym_cmd_identifier_token24] = ACTIONS(1999), - [aux_sym_cmd_identifier_token25] = ACTIONS(1999), - [aux_sym_cmd_identifier_token26] = ACTIONS(1999), - [aux_sym_cmd_identifier_token27] = ACTIONS(1999), - [aux_sym_cmd_identifier_token28] = ACTIONS(1999), - [aux_sym_cmd_identifier_token29] = ACTIONS(1999), - [aux_sym_cmd_identifier_token30] = ACTIONS(1999), - [aux_sym_cmd_identifier_token31] = ACTIONS(1999), - [aux_sym_cmd_identifier_token32] = ACTIONS(1999), - [aux_sym_cmd_identifier_token33] = ACTIONS(1999), - [aux_sym_cmd_identifier_token34] = ACTIONS(1999), - [aux_sym_cmd_identifier_token35] = ACTIONS(1999), - [aux_sym_cmd_identifier_token36] = ACTIONS(1999), - [anon_sym_true] = ACTIONS(1999), - [anon_sym_false] = ACTIONS(1999), - [anon_sym_null] = ACTIONS(1999), - [aux_sym_cmd_identifier_token38] = ACTIONS(1999), - [aux_sym_cmd_identifier_token39] = ACTIONS(1999), - [aux_sym_cmd_identifier_token40] = ACTIONS(1999), - [anon_sym_def] = ACTIONS(1999), - [anon_sym_export_DASHenv] = ACTIONS(1999), - [anon_sym_extern] = ACTIONS(1999), - [anon_sym_module] = ACTIONS(1999), - [anon_sym_use] = ACTIONS(1999), - [anon_sym_LPAREN] = ACTIONS(1999), - [anon_sym_DOLLAR] = ACTIONS(1999), - [anon_sym_error] = ACTIONS(1999), - [anon_sym_list] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1999), - [anon_sym_break] = ACTIONS(1999), - [anon_sym_continue] = ACTIONS(1999), - [anon_sym_for] = ACTIONS(1999), - [anon_sym_in] = ACTIONS(1999), - [anon_sym_loop] = ACTIONS(1999), - [anon_sym_make] = ACTIONS(1999), - [anon_sym_while] = ACTIONS(1999), - [anon_sym_do] = ACTIONS(1999), - [anon_sym_if] = ACTIONS(1999), - [anon_sym_else] = ACTIONS(1999), - [anon_sym_match] = ACTIONS(1999), - [anon_sym_RBRACE] = ACTIONS(1999), - [anon_sym_try] = ACTIONS(1999), - [anon_sym_catch] = ACTIONS(1999), - [anon_sym_return] = ACTIONS(1999), - [anon_sym_source] = ACTIONS(1999), - [anon_sym_source_DASHenv] = ACTIONS(1999), - [anon_sym_register] = ACTIONS(1999), - [anon_sym_hide] = ACTIONS(1999), - [anon_sym_hide_DASHenv] = ACTIONS(1999), - [anon_sym_overlay] = ACTIONS(1999), - [anon_sym_new] = ACTIONS(1999), - [anon_sym_as] = ACTIONS(1999), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1999), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1999), - [aux_sym__val_number_decimal_token1] = ACTIONS(1999), - [aux_sym__val_number_decimal_token2] = ACTIONS(1999), - [aux_sym__val_number_decimal_token3] = ACTIONS(1999), - [aux_sym__val_number_decimal_token4] = ACTIONS(1999), - [aux_sym__val_number_token1] = ACTIONS(1999), - [aux_sym__val_number_token2] = ACTIONS(1999), - [aux_sym__val_number_token3] = ACTIONS(1999), - [anon_sym_DQUOTE] = ACTIONS(1999), - [sym__str_single_quotes] = ACTIONS(1999), - [sym__str_back_ticks] = ACTIONS(1999), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1999), - [sym__entry_separator] = ACTIONS(2005), - [anon_sym_PLUS] = ACTIONS(1999), + [anon_sym_export] = ACTIONS(2510), + [anon_sym_alias] = ACTIONS(2510), + [anon_sym_let] = ACTIONS(2510), + [anon_sym_let_DASHenv] = ACTIONS(2510), + [anon_sym_mut] = ACTIONS(2510), + [anon_sym_const] = ACTIONS(2510), + [aux_sym_cmd_identifier_token1] = ACTIONS(2510), + [aux_sym_cmd_identifier_token2] = ACTIONS(2510), + [aux_sym_cmd_identifier_token3] = ACTIONS(2510), + [aux_sym_cmd_identifier_token4] = ACTIONS(2510), + [aux_sym_cmd_identifier_token5] = ACTIONS(2510), + [aux_sym_cmd_identifier_token6] = ACTIONS(2510), + [aux_sym_cmd_identifier_token7] = ACTIONS(2510), + [aux_sym_cmd_identifier_token8] = ACTIONS(2510), + [aux_sym_cmd_identifier_token9] = ACTIONS(2510), + [aux_sym_cmd_identifier_token10] = ACTIONS(2510), + [aux_sym_cmd_identifier_token11] = ACTIONS(2510), + [aux_sym_cmd_identifier_token12] = ACTIONS(2510), + [aux_sym_cmd_identifier_token13] = ACTIONS(2510), + [aux_sym_cmd_identifier_token14] = ACTIONS(2510), + [aux_sym_cmd_identifier_token15] = ACTIONS(2510), + [aux_sym_cmd_identifier_token16] = ACTIONS(2510), + [aux_sym_cmd_identifier_token17] = ACTIONS(2510), + [aux_sym_cmd_identifier_token18] = ACTIONS(2510), + [aux_sym_cmd_identifier_token19] = ACTIONS(2510), + [aux_sym_cmd_identifier_token20] = ACTIONS(2510), + [aux_sym_cmd_identifier_token21] = ACTIONS(2510), + [aux_sym_cmd_identifier_token22] = ACTIONS(2510), + [aux_sym_cmd_identifier_token23] = ACTIONS(2510), + [aux_sym_cmd_identifier_token24] = ACTIONS(2510), + [aux_sym_cmd_identifier_token25] = ACTIONS(2510), + [aux_sym_cmd_identifier_token26] = ACTIONS(2510), + [aux_sym_cmd_identifier_token27] = ACTIONS(2510), + [aux_sym_cmd_identifier_token28] = ACTIONS(2510), + [aux_sym_cmd_identifier_token29] = ACTIONS(2510), + [aux_sym_cmd_identifier_token30] = ACTIONS(2510), + [aux_sym_cmd_identifier_token31] = ACTIONS(2510), + [aux_sym_cmd_identifier_token32] = ACTIONS(2510), + [aux_sym_cmd_identifier_token33] = ACTIONS(2510), + [aux_sym_cmd_identifier_token34] = ACTIONS(2510), + [aux_sym_cmd_identifier_token35] = ACTIONS(2510), + [aux_sym_cmd_identifier_token36] = ACTIONS(2510), + [anon_sym_true] = ACTIONS(2510), + [anon_sym_false] = ACTIONS(2510), + [anon_sym_null] = ACTIONS(2510), + [aux_sym_cmd_identifier_token38] = ACTIONS(2510), + [aux_sym_cmd_identifier_token39] = ACTIONS(2510), + [aux_sym_cmd_identifier_token40] = ACTIONS(2510), + [anon_sym_def] = ACTIONS(2510), + [anon_sym_export_DASHenv] = ACTIONS(2510), + [anon_sym_extern] = ACTIONS(2510), + [anon_sym_module] = ACTIONS(2510), + [anon_sym_use] = ACTIONS(2510), + [anon_sym_LPAREN] = ACTIONS(2510), + [anon_sym_DOLLAR] = ACTIONS(2510), + [anon_sym_error] = ACTIONS(2510), + [anon_sym_list] = ACTIONS(2510), + [anon_sym_DASH] = ACTIONS(2510), + [anon_sym_break] = ACTIONS(2510), + [anon_sym_continue] = ACTIONS(2510), + [anon_sym_for] = ACTIONS(2510), + [anon_sym_in] = ACTIONS(2510), + [anon_sym_loop] = ACTIONS(2510), + [anon_sym_make] = ACTIONS(2510), + [anon_sym_while] = ACTIONS(2510), + [anon_sym_do] = ACTIONS(2510), + [anon_sym_if] = ACTIONS(2510), + [anon_sym_else] = ACTIONS(2510), + [anon_sym_match] = ACTIONS(2510), + [anon_sym_RBRACE] = ACTIONS(2510), + [anon_sym_try] = ACTIONS(2510), + [anon_sym_catch] = ACTIONS(2510), + [anon_sym_return] = ACTIONS(2510), + [anon_sym_source] = ACTIONS(2510), + [anon_sym_source_DASHenv] = ACTIONS(2510), + [anon_sym_register] = ACTIONS(2510), + [anon_sym_hide] = ACTIONS(2510), + [anon_sym_hide_DASHenv] = ACTIONS(2510), + [anon_sym_overlay] = ACTIONS(2510), + [anon_sym_new] = ACTIONS(2510), + [anon_sym_as] = ACTIONS(2510), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2510), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2510), + [aux_sym__val_number_decimal_token1] = ACTIONS(2510), + [aux_sym__val_number_decimal_token2] = ACTIONS(2510), + [aux_sym__val_number_decimal_token3] = ACTIONS(2510), + [aux_sym__val_number_decimal_token4] = ACTIONS(2510), + [aux_sym__val_number_token1] = ACTIONS(2510), + [aux_sym__val_number_token2] = ACTIONS(2510), + [aux_sym__val_number_token3] = ACTIONS(2510), + [anon_sym_DQUOTE] = ACTIONS(2510), + [sym__str_single_quotes] = ACTIONS(2510), + [sym__str_back_ticks] = ACTIONS(2510), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2510), + [sym__entry_separator] = ACTIONS(2512), + [anon_sym_PLUS] = ACTIONS(2510), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2512), }, [599] = { [sym_comment] = STATE(599), - [anon_sym_export] = ACTIONS(2007), - [anon_sym_alias] = ACTIONS(2007), - [anon_sym_let] = ACTIONS(2007), - [anon_sym_let_DASHenv] = ACTIONS(2007), - [anon_sym_mut] = ACTIONS(2007), - [anon_sym_const] = ACTIONS(2007), - [aux_sym_cmd_identifier_token1] = ACTIONS(2007), - [aux_sym_cmd_identifier_token2] = ACTIONS(2007), - [aux_sym_cmd_identifier_token3] = ACTIONS(2007), - [aux_sym_cmd_identifier_token4] = ACTIONS(2007), - [aux_sym_cmd_identifier_token5] = ACTIONS(2007), - [aux_sym_cmd_identifier_token6] = ACTIONS(2007), - [aux_sym_cmd_identifier_token7] = ACTIONS(2007), - [aux_sym_cmd_identifier_token8] = ACTIONS(2007), - [aux_sym_cmd_identifier_token9] = ACTIONS(2007), - [aux_sym_cmd_identifier_token10] = ACTIONS(2007), - [aux_sym_cmd_identifier_token11] = ACTIONS(2007), - [aux_sym_cmd_identifier_token12] = ACTIONS(2007), - [aux_sym_cmd_identifier_token13] = ACTIONS(2007), - [aux_sym_cmd_identifier_token14] = ACTIONS(2007), - [aux_sym_cmd_identifier_token15] = ACTIONS(2007), - [aux_sym_cmd_identifier_token16] = ACTIONS(2007), - [aux_sym_cmd_identifier_token17] = ACTIONS(2007), - [aux_sym_cmd_identifier_token18] = ACTIONS(2007), - [aux_sym_cmd_identifier_token19] = ACTIONS(2007), - [aux_sym_cmd_identifier_token20] = ACTIONS(2007), - [aux_sym_cmd_identifier_token21] = ACTIONS(2007), - [aux_sym_cmd_identifier_token22] = ACTIONS(2007), - [aux_sym_cmd_identifier_token23] = ACTIONS(2007), - [aux_sym_cmd_identifier_token24] = ACTIONS(2007), - [aux_sym_cmd_identifier_token25] = ACTIONS(2007), - [aux_sym_cmd_identifier_token26] = ACTIONS(2007), - [aux_sym_cmd_identifier_token27] = ACTIONS(2007), - [aux_sym_cmd_identifier_token28] = ACTIONS(2007), - [aux_sym_cmd_identifier_token29] = ACTIONS(2007), - [aux_sym_cmd_identifier_token30] = ACTIONS(2007), - [aux_sym_cmd_identifier_token31] = ACTIONS(2007), - [aux_sym_cmd_identifier_token32] = ACTIONS(2007), - [aux_sym_cmd_identifier_token33] = ACTIONS(2007), - [aux_sym_cmd_identifier_token34] = ACTIONS(2007), - [aux_sym_cmd_identifier_token35] = ACTIONS(2007), - [aux_sym_cmd_identifier_token36] = ACTIONS(2007), - [anon_sym_true] = ACTIONS(2007), - [anon_sym_false] = ACTIONS(2007), - [anon_sym_null] = ACTIONS(2007), - [aux_sym_cmd_identifier_token38] = ACTIONS(2007), - [aux_sym_cmd_identifier_token39] = ACTIONS(2007), - [aux_sym_cmd_identifier_token40] = ACTIONS(2007), - [anon_sym_def] = ACTIONS(2007), - [anon_sym_export_DASHenv] = ACTIONS(2007), - [anon_sym_extern] = ACTIONS(2007), - [anon_sym_module] = ACTIONS(2007), - [anon_sym_use] = ACTIONS(2007), - [anon_sym_LPAREN] = ACTIONS(2007), - [anon_sym_DOLLAR] = ACTIONS(2007), - [anon_sym_error] = ACTIONS(2007), - [anon_sym_list] = ACTIONS(2007), - [anon_sym_DASH] = ACTIONS(2007), - [anon_sym_break] = ACTIONS(2007), - [anon_sym_continue] = ACTIONS(2007), - [anon_sym_for] = ACTIONS(2007), - [anon_sym_in] = ACTIONS(2007), - [anon_sym_loop] = ACTIONS(2007), - [anon_sym_make] = ACTIONS(2007), - [anon_sym_while] = ACTIONS(2007), - [anon_sym_do] = ACTIONS(2007), - [anon_sym_if] = ACTIONS(2007), - [anon_sym_else] = ACTIONS(2007), - [anon_sym_match] = ACTIONS(2007), - [anon_sym_RBRACE] = ACTIONS(2007), - [anon_sym_try] = ACTIONS(2007), - [anon_sym_catch] = ACTIONS(2007), - [anon_sym_return] = ACTIONS(2007), - [anon_sym_source] = ACTIONS(2007), - [anon_sym_source_DASHenv] = ACTIONS(2007), - [anon_sym_register] = ACTIONS(2007), - [anon_sym_hide] = ACTIONS(2007), - [anon_sym_hide_DASHenv] = ACTIONS(2007), - [anon_sym_overlay] = ACTIONS(2007), - [anon_sym_new] = ACTIONS(2007), - [anon_sym_as] = ACTIONS(2007), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2007), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2007), - [aux_sym__val_number_decimal_token1] = ACTIONS(2007), - [aux_sym__val_number_decimal_token2] = ACTIONS(2007), - [aux_sym__val_number_decimal_token3] = ACTIONS(2007), - [aux_sym__val_number_decimal_token4] = ACTIONS(2007), - [aux_sym__val_number_token1] = ACTIONS(2007), - [aux_sym__val_number_token2] = ACTIONS(2007), - [aux_sym__val_number_token3] = ACTIONS(2007), - [anon_sym_DQUOTE] = ACTIONS(2007), - [sym__str_single_quotes] = ACTIONS(2007), - [sym__str_back_ticks] = ACTIONS(2007), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2007), - [sym__entry_separator] = ACTIONS(2013), - [anon_sym_PLUS] = ACTIONS(2007), + [anon_sym_export] = ACTIONS(2079), + [anon_sym_alias] = ACTIONS(2079), + [anon_sym_let] = ACTIONS(2079), + [anon_sym_let_DASHenv] = ACTIONS(2079), + [anon_sym_mut] = ACTIONS(2079), + [anon_sym_const] = ACTIONS(2079), + [aux_sym_cmd_identifier_token1] = ACTIONS(2079), + [aux_sym_cmd_identifier_token2] = ACTIONS(2079), + [aux_sym_cmd_identifier_token3] = ACTIONS(2079), + [aux_sym_cmd_identifier_token4] = ACTIONS(2079), + [aux_sym_cmd_identifier_token5] = ACTIONS(2079), + [aux_sym_cmd_identifier_token6] = ACTIONS(2079), + [aux_sym_cmd_identifier_token7] = ACTIONS(2079), + [aux_sym_cmd_identifier_token8] = ACTIONS(2079), + [aux_sym_cmd_identifier_token9] = ACTIONS(2079), + [aux_sym_cmd_identifier_token10] = ACTIONS(2079), + [aux_sym_cmd_identifier_token11] = ACTIONS(2079), + [aux_sym_cmd_identifier_token12] = ACTIONS(2079), + [aux_sym_cmd_identifier_token13] = ACTIONS(2079), + [aux_sym_cmd_identifier_token14] = ACTIONS(2079), + [aux_sym_cmd_identifier_token15] = ACTIONS(2079), + [aux_sym_cmd_identifier_token16] = ACTIONS(2079), + [aux_sym_cmd_identifier_token17] = ACTIONS(2079), + [aux_sym_cmd_identifier_token18] = ACTIONS(2079), + [aux_sym_cmd_identifier_token19] = ACTIONS(2079), + [aux_sym_cmd_identifier_token20] = ACTIONS(2079), + [aux_sym_cmd_identifier_token21] = ACTIONS(2079), + [aux_sym_cmd_identifier_token22] = ACTIONS(2079), + [aux_sym_cmd_identifier_token23] = ACTIONS(2079), + [aux_sym_cmd_identifier_token24] = ACTIONS(2079), + [aux_sym_cmd_identifier_token25] = ACTIONS(2079), + [aux_sym_cmd_identifier_token26] = ACTIONS(2079), + [aux_sym_cmd_identifier_token27] = ACTIONS(2079), + [aux_sym_cmd_identifier_token28] = ACTIONS(2079), + [aux_sym_cmd_identifier_token29] = ACTIONS(2079), + [aux_sym_cmd_identifier_token30] = ACTIONS(2079), + [aux_sym_cmd_identifier_token31] = ACTIONS(2079), + [aux_sym_cmd_identifier_token32] = ACTIONS(2079), + [aux_sym_cmd_identifier_token33] = ACTIONS(2079), + [aux_sym_cmd_identifier_token34] = ACTIONS(2079), + [aux_sym_cmd_identifier_token35] = ACTIONS(2079), + [aux_sym_cmd_identifier_token36] = ACTIONS(2079), + [anon_sym_true] = ACTIONS(2079), + [anon_sym_false] = ACTIONS(2079), + [anon_sym_null] = ACTIONS(2079), + [aux_sym_cmd_identifier_token38] = ACTIONS(2079), + [aux_sym_cmd_identifier_token39] = ACTIONS(2079), + [aux_sym_cmd_identifier_token40] = ACTIONS(2079), + [anon_sym_def] = ACTIONS(2079), + [anon_sym_export_DASHenv] = ACTIONS(2079), + [anon_sym_extern] = ACTIONS(2079), + [anon_sym_module] = ACTIONS(2079), + [anon_sym_use] = ACTIONS(2079), + [anon_sym_LPAREN] = ACTIONS(2079), + [anon_sym_DOLLAR] = ACTIONS(2079), + [anon_sym_error] = ACTIONS(2079), + [anon_sym_list] = ACTIONS(2079), + [anon_sym_DASH] = ACTIONS(2079), + [anon_sym_break] = ACTIONS(2079), + [anon_sym_continue] = ACTIONS(2079), + [anon_sym_for] = ACTIONS(2079), + [anon_sym_in] = ACTIONS(2079), + [anon_sym_loop] = ACTIONS(2079), + [anon_sym_make] = ACTIONS(2079), + [anon_sym_while] = ACTIONS(2079), + [anon_sym_do] = ACTIONS(2079), + [anon_sym_if] = ACTIONS(2079), + [anon_sym_else] = ACTIONS(2079), + [anon_sym_match] = ACTIONS(2079), + [anon_sym_RBRACE] = ACTIONS(2079), + [anon_sym_try] = ACTIONS(2079), + [anon_sym_catch] = ACTIONS(2079), + [anon_sym_return] = ACTIONS(2079), + [anon_sym_source] = ACTIONS(2079), + [anon_sym_source_DASHenv] = ACTIONS(2079), + [anon_sym_register] = ACTIONS(2079), + [anon_sym_hide] = ACTIONS(2079), + [anon_sym_hide_DASHenv] = ACTIONS(2079), + [anon_sym_overlay] = ACTIONS(2079), + [anon_sym_new] = ACTIONS(2079), + [anon_sym_as] = ACTIONS(2079), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2079), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2079), + [aux_sym__val_number_decimal_token1] = ACTIONS(2079), + [aux_sym__val_number_decimal_token2] = ACTIONS(2079), + [aux_sym__val_number_decimal_token3] = ACTIONS(2079), + [aux_sym__val_number_decimal_token4] = ACTIONS(2079), + [aux_sym__val_number_token1] = ACTIONS(2079), + [aux_sym__val_number_token2] = ACTIONS(2079), + [aux_sym__val_number_token3] = ACTIONS(2079), + [anon_sym_DQUOTE] = ACTIONS(2079), + [sym__str_single_quotes] = ACTIONS(2079), + [sym__str_back_ticks] = ACTIONS(2079), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2079), + [sym__entry_separator] = ACTIONS(2081), + [anon_sym_PLUS] = ACTIONS(2079), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2081), }, [600] = { [sym_comment] = STATE(600), - [anon_sym_export] = ACTIONS(2477), - [anon_sym_alias] = ACTIONS(2477), - [anon_sym_let] = ACTIONS(2477), - [anon_sym_let_DASHenv] = ACTIONS(2477), - [anon_sym_mut] = ACTIONS(2477), - [anon_sym_const] = ACTIONS(2477), - [aux_sym_cmd_identifier_token1] = ACTIONS(2477), - [aux_sym_cmd_identifier_token2] = ACTIONS(2477), - [aux_sym_cmd_identifier_token3] = ACTIONS(2477), - [aux_sym_cmd_identifier_token4] = ACTIONS(2477), - [aux_sym_cmd_identifier_token5] = ACTIONS(2477), - [aux_sym_cmd_identifier_token6] = ACTIONS(2477), - [aux_sym_cmd_identifier_token7] = ACTIONS(2477), - [aux_sym_cmd_identifier_token8] = ACTIONS(2477), - [aux_sym_cmd_identifier_token9] = ACTIONS(2477), - [aux_sym_cmd_identifier_token10] = ACTIONS(2477), - [aux_sym_cmd_identifier_token11] = ACTIONS(2477), - [aux_sym_cmd_identifier_token12] = ACTIONS(2477), - [aux_sym_cmd_identifier_token13] = ACTIONS(2477), - [aux_sym_cmd_identifier_token14] = ACTIONS(2477), - [aux_sym_cmd_identifier_token15] = ACTIONS(2477), - [aux_sym_cmd_identifier_token16] = ACTIONS(2477), - [aux_sym_cmd_identifier_token17] = ACTIONS(2477), - [aux_sym_cmd_identifier_token18] = ACTIONS(2477), - [aux_sym_cmd_identifier_token19] = ACTIONS(2477), - [aux_sym_cmd_identifier_token20] = ACTIONS(2477), - [aux_sym_cmd_identifier_token21] = ACTIONS(2477), - [aux_sym_cmd_identifier_token22] = ACTIONS(2477), - [aux_sym_cmd_identifier_token23] = ACTIONS(2477), - [aux_sym_cmd_identifier_token24] = ACTIONS(2477), - [aux_sym_cmd_identifier_token25] = ACTIONS(2477), - [aux_sym_cmd_identifier_token26] = ACTIONS(2477), - [aux_sym_cmd_identifier_token27] = ACTIONS(2477), - [aux_sym_cmd_identifier_token28] = ACTIONS(2477), - [aux_sym_cmd_identifier_token29] = ACTIONS(2477), - [aux_sym_cmd_identifier_token30] = ACTIONS(2477), - [aux_sym_cmd_identifier_token31] = ACTIONS(2477), - [aux_sym_cmd_identifier_token32] = ACTIONS(2477), - [aux_sym_cmd_identifier_token33] = ACTIONS(2477), - [aux_sym_cmd_identifier_token34] = ACTIONS(2477), - [aux_sym_cmd_identifier_token35] = ACTIONS(2477), - [aux_sym_cmd_identifier_token36] = ACTIONS(2477), - [anon_sym_true] = ACTIONS(2477), - [anon_sym_false] = ACTIONS(2477), - [anon_sym_null] = ACTIONS(2477), - [aux_sym_cmd_identifier_token38] = ACTIONS(2477), - [aux_sym_cmd_identifier_token39] = ACTIONS(2477), - [aux_sym_cmd_identifier_token40] = ACTIONS(2477), - [anon_sym_def] = ACTIONS(2477), - [anon_sym_export_DASHenv] = ACTIONS(2477), - [anon_sym_extern] = ACTIONS(2477), - [anon_sym_module] = ACTIONS(2477), - [anon_sym_use] = ACTIONS(2477), - [anon_sym_LPAREN] = ACTIONS(2477), - [anon_sym_DOLLAR] = ACTIONS(2477), - [anon_sym_error] = ACTIONS(2477), - [anon_sym_list] = ACTIONS(2477), - [anon_sym_DASH] = ACTIONS(2477), - [anon_sym_break] = ACTIONS(2477), - [anon_sym_continue] = ACTIONS(2477), - [anon_sym_for] = ACTIONS(2477), - [anon_sym_in] = ACTIONS(2477), - [anon_sym_loop] = ACTIONS(2477), - [anon_sym_make] = ACTIONS(2477), - [anon_sym_while] = ACTIONS(2477), - [anon_sym_do] = ACTIONS(2477), - [anon_sym_if] = ACTIONS(2477), - [anon_sym_else] = ACTIONS(2477), - [anon_sym_match] = ACTIONS(2477), - [anon_sym_RBRACE] = ACTIONS(2477), - [anon_sym_try] = ACTIONS(2477), - [anon_sym_catch] = ACTIONS(2477), - [anon_sym_return] = ACTIONS(2477), - [anon_sym_source] = ACTIONS(2477), - [anon_sym_source_DASHenv] = ACTIONS(2477), - [anon_sym_register] = ACTIONS(2477), - [anon_sym_hide] = ACTIONS(2477), - [anon_sym_hide_DASHenv] = ACTIONS(2477), - [anon_sym_overlay] = ACTIONS(2477), - [anon_sym_new] = ACTIONS(2477), - [anon_sym_as] = ACTIONS(2477), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2477), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2477), - [aux_sym__val_number_decimal_token1] = ACTIONS(2477), - [aux_sym__val_number_decimal_token2] = ACTIONS(2477), - [aux_sym__val_number_decimal_token3] = ACTIONS(2477), - [aux_sym__val_number_decimal_token4] = ACTIONS(2477), - [aux_sym__val_number_token1] = ACTIONS(2477), - [aux_sym__val_number_token2] = ACTIONS(2477), - [aux_sym__val_number_token3] = ACTIONS(2477), - [anon_sym_DQUOTE] = ACTIONS(2477), - [sym__str_single_quotes] = ACTIONS(2477), - [sym__str_back_ticks] = ACTIONS(2477), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2477), - [sym__entry_separator] = ACTIONS(2479), - [anon_sym_PLUS] = ACTIONS(2477), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(2355), + [anon_sym_alias] = ACTIONS(2355), + [anon_sym_let] = ACTIONS(2355), + [anon_sym_let_DASHenv] = ACTIONS(2355), + [anon_sym_mut] = ACTIONS(2355), + [anon_sym_const] = ACTIONS(2355), + [aux_sym_cmd_identifier_token1] = ACTIONS(2355), + [aux_sym_cmd_identifier_token2] = ACTIONS(2355), + [aux_sym_cmd_identifier_token3] = ACTIONS(2355), + [aux_sym_cmd_identifier_token4] = ACTIONS(2355), + [aux_sym_cmd_identifier_token5] = ACTIONS(2355), + [aux_sym_cmd_identifier_token6] = ACTIONS(2355), + [aux_sym_cmd_identifier_token7] = ACTIONS(2355), + [aux_sym_cmd_identifier_token8] = ACTIONS(2355), + [aux_sym_cmd_identifier_token9] = ACTIONS(2355), + [aux_sym_cmd_identifier_token10] = ACTIONS(2355), + [aux_sym_cmd_identifier_token11] = ACTIONS(2355), + [aux_sym_cmd_identifier_token12] = ACTIONS(2355), + [aux_sym_cmd_identifier_token13] = ACTIONS(2355), + [aux_sym_cmd_identifier_token14] = ACTIONS(2355), + [aux_sym_cmd_identifier_token15] = ACTIONS(2355), + [aux_sym_cmd_identifier_token16] = ACTIONS(2355), + [aux_sym_cmd_identifier_token17] = ACTIONS(2355), + [aux_sym_cmd_identifier_token18] = ACTIONS(2355), + [aux_sym_cmd_identifier_token19] = ACTIONS(2355), + [aux_sym_cmd_identifier_token20] = ACTIONS(2355), + [aux_sym_cmd_identifier_token21] = ACTIONS(2355), + [aux_sym_cmd_identifier_token22] = ACTIONS(2355), + [aux_sym_cmd_identifier_token23] = ACTIONS(2355), + [aux_sym_cmd_identifier_token24] = ACTIONS(2355), + [aux_sym_cmd_identifier_token25] = ACTIONS(2355), + [aux_sym_cmd_identifier_token26] = ACTIONS(2355), + [aux_sym_cmd_identifier_token27] = ACTIONS(2355), + [aux_sym_cmd_identifier_token28] = ACTIONS(2355), + [aux_sym_cmd_identifier_token29] = ACTIONS(2355), + [aux_sym_cmd_identifier_token30] = ACTIONS(2355), + [aux_sym_cmd_identifier_token31] = ACTIONS(2355), + [aux_sym_cmd_identifier_token32] = ACTIONS(2355), + [aux_sym_cmd_identifier_token33] = ACTIONS(2355), + [aux_sym_cmd_identifier_token34] = ACTIONS(2355), + [aux_sym_cmd_identifier_token35] = ACTIONS(2355), + [aux_sym_cmd_identifier_token36] = ACTIONS(2355), + [anon_sym_true] = ACTIONS(2359), + [anon_sym_false] = ACTIONS(2359), + [anon_sym_null] = ACTIONS(2359), + [aux_sym_cmd_identifier_token38] = ACTIONS(2355), + [aux_sym_cmd_identifier_token39] = ACTIONS(2359), + [aux_sym_cmd_identifier_token40] = ACTIONS(2359), + [anon_sym_def] = ACTIONS(2355), + [anon_sym_export_DASHenv] = ACTIONS(2355), + [anon_sym_extern] = ACTIONS(2355), + [anon_sym_module] = ACTIONS(2355), + [anon_sym_use] = ACTIONS(2355), + [anon_sym_LPAREN] = ACTIONS(2359), + [anon_sym_DOLLAR] = ACTIONS(2359), + [anon_sym_error] = ACTIONS(2355), + [anon_sym_list] = ACTIONS(2355), + [anon_sym_DASH] = ACTIONS(2355), + [anon_sym_break] = ACTIONS(2355), + [anon_sym_continue] = ACTIONS(2355), + [anon_sym_for] = ACTIONS(2355), + [anon_sym_in] = ACTIONS(2355), + [anon_sym_loop] = ACTIONS(2355), + [anon_sym_make] = ACTIONS(2355), + [anon_sym_while] = ACTIONS(2355), + [anon_sym_do] = ACTIONS(2355), + [anon_sym_if] = ACTIONS(2355), + [anon_sym_else] = ACTIONS(2355), + [anon_sym_match] = ACTIONS(2355), + [anon_sym_RBRACE] = ACTIONS(2359), + [anon_sym_try] = ACTIONS(2355), + [anon_sym_catch] = ACTIONS(2355), + [anon_sym_return] = ACTIONS(2355), + [anon_sym_source] = ACTIONS(2355), + [anon_sym_source_DASHenv] = ACTIONS(2355), + [anon_sym_register] = ACTIONS(2355), + [anon_sym_hide] = ACTIONS(2355), + [anon_sym_hide_DASHenv] = ACTIONS(2355), + [anon_sym_overlay] = ACTIONS(2355), + [anon_sym_new] = ACTIONS(2355), + [anon_sym_as] = ACTIONS(2355), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2359), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2359), + [aux_sym__val_number_decimal_token1] = ACTIONS(2355), + [aux_sym__val_number_decimal_token2] = ACTIONS(2359), + [aux_sym__val_number_decimal_token3] = ACTIONS(2359), + [aux_sym__val_number_decimal_token4] = ACTIONS(2359), + [aux_sym__val_number_token1] = ACTIONS(2359), + [aux_sym__val_number_token2] = ACTIONS(2359), + [aux_sym__val_number_token3] = ACTIONS(2359), + [anon_sym_LBRACK2] = ACTIONS(2514), + [anon_sym_DQUOTE] = ACTIONS(2359), + [sym__str_single_quotes] = ACTIONS(2359), + [sym__str_back_ticks] = ACTIONS(2359), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2359), + [anon_sym_PLUS] = ACTIONS(2355), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2359), }, [601] = { [sym_comment] = STATE(601), - [anon_sym_export] = ACTIONS(2481), - [anon_sym_alias] = ACTIONS(2481), - [anon_sym_let] = ACTIONS(2481), - [anon_sym_let_DASHenv] = ACTIONS(2481), - [anon_sym_mut] = ACTIONS(2481), - [anon_sym_const] = ACTIONS(2481), - [aux_sym_cmd_identifier_token1] = ACTIONS(2481), - [aux_sym_cmd_identifier_token2] = ACTIONS(2481), - [aux_sym_cmd_identifier_token3] = ACTIONS(2481), - [aux_sym_cmd_identifier_token4] = ACTIONS(2481), - [aux_sym_cmd_identifier_token5] = ACTIONS(2481), - [aux_sym_cmd_identifier_token6] = ACTIONS(2481), - [aux_sym_cmd_identifier_token7] = ACTIONS(2481), - [aux_sym_cmd_identifier_token8] = ACTIONS(2481), - [aux_sym_cmd_identifier_token9] = ACTIONS(2481), - [aux_sym_cmd_identifier_token10] = ACTIONS(2481), - [aux_sym_cmd_identifier_token11] = ACTIONS(2481), - [aux_sym_cmd_identifier_token12] = ACTIONS(2481), - [aux_sym_cmd_identifier_token13] = ACTIONS(2481), - [aux_sym_cmd_identifier_token14] = ACTIONS(2481), - [aux_sym_cmd_identifier_token15] = ACTIONS(2481), - [aux_sym_cmd_identifier_token16] = ACTIONS(2481), - [aux_sym_cmd_identifier_token17] = ACTIONS(2481), - [aux_sym_cmd_identifier_token18] = ACTIONS(2481), - [aux_sym_cmd_identifier_token19] = ACTIONS(2481), - [aux_sym_cmd_identifier_token20] = ACTIONS(2481), - [aux_sym_cmd_identifier_token21] = ACTIONS(2481), - [aux_sym_cmd_identifier_token22] = ACTIONS(2481), - [aux_sym_cmd_identifier_token23] = ACTIONS(2481), - [aux_sym_cmd_identifier_token24] = ACTIONS(2481), - [aux_sym_cmd_identifier_token25] = ACTIONS(2481), - [aux_sym_cmd_identifier_token26] = ACTIONS(2481), - [aux_sym_cmd_identifier_token27] = ACTIONS(2481), - [aux_sym_cmd_identifier_token28] = ACTIONS(2481), - [aux_sym_cmd_identifier_token29] = ACTIONS(2481), - [aux_sym_cmd_identifier_token30] = ACTIONS(2481), - [aux_sym_cmd_identifier_token31] = ACTIONS(2481), - [aux_sym_cmd_identifier_token32] = ACTIONS(2481), - [aux_sym_cmd_identifier_token33] = ACTIONS(2481), - [aux_sym_cmd_identifier_token34] = ACTIONS(2481), - [aux_sym_cmd_identifier_token35] = ACTIONS(2481), - [aux_sym_cmd_identifier_token36] = ACTIONS(2481), - [anon_sym_true] = ACTIONS(2481), - [anon_sym_false] = ACTIONS(2481), - [anon_sym_null] = ACTIONS(2481), - [aux_sym_cmd_identifier_token38] = ACTIONS(2481), - [aux_sym_cmd_identifier_token39] = ACTIONS(2481), - [aux_sym_cmd_identifier_token40] = ACTIONS(2481), - [anon_sym_def] = ACTIONS(2481), - [anon_sym_export_DASHenv] = ACTIONS(2481), - [anon_sym_extern] = ACTIONS(2481), - [anon_sym_module] = ACTIONS(2481), - [anon_sym_use] = ACTIONS(2481), - [anon_sym_LPAREN] = ACTIONS(2481), - [anon_sym_DOLLAR] = ACTIONS(2481), - [anon_sym_error] = ACTIONS(2481), - [anon_sym_list] = ACTIONS(2481), - [anon_sym_DASH] = ACTIONS(2481), - [anon_sym_break] = ACTIONS(2481), - [anon_sym_continue] = ACTIONS(2481), - [anon_sym_for] = ACTIONS(2481), - [anon_sym_in] = ACTIONS(2481), - [anon_sym_loop] = ACTIONS(2481), - [anon_sym_make] = ACTIONS(2481), - [anon_sym_while] = ACTIONS(2481), - [anon_sym_do] = ACTIONS(2481), - [anon_sym_if] = ACTIONS(2481), - [anon_sym_else] = ACTIONS(2481), - [anon_sym_match] = ACTIONS(2481), - [anon_sym_RBRACE] = ACTIONS(2481), - [anon_sym_try] = ACTIONS(2481), - [anon_sym_catch] = ACTIONS(2481), - [anon_sym_return] = ACTIONS(2481), - [anon_sym_source] = ACTIONS(2481), - [anon_sym_source_DASHenv] = ACTIONS(2481), - [anon_sym_register] = ACTIONS(2481), - [anon_sym_hide] = ACTIONS(2481), - [anon_sym_hide_DASHenv] = ACTIONS(2481), - [anon_sym_overlay] = ACTIONS(2481), - [anon_sym_new] = ACTIONS(2481), - [anon_sym_as] = ACTIONS(2481), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2481), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2481), - [aux_sym__val_number_decimal_token1] = ACTIONS(2481), - [aux_sym__val_number_decimal_token2] = ACTIONS(2481), - [aux_sym__val_number_decimal_token3] = ACTIONS(2481), - [aux_sym__val_number_decimal_token4] = ACTIONS(2481), - [aux_sym__val_number_token1] = ACTIONS(2481), - [aux_sym__val_number_token2] = ACTIONS(2481), - [aux_sym__val_number_token3] = ACTIONS(2481), - [anon_sym_DQUOTE] = ACTIONS(2481), - [sym__str_single_quotes] = ACTIONS(2481), - [sym__str_back_ticks] = ACTIONS(2481), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2481), - [sym__entry_separator] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2481), + [anon_sym_export] = ACTIONS(2516), + [anon_sym_alias] = ACTIONS(2516), + [anon_sym_let] = ACTIONS(2516), + [anon_sym_let_DASHenv] = ACTIONS(2516), + [anon_sym_mut] = ACTIONS(2516), + [anon_sym_const] = ACTIONS(2516), + [aux_sym_cmd_identifier_token1] = ACTIONS(2516), + [aux_sym_cmd_identifier_token2] = ACTIONS(2516), + [aux_sym_cmd_identifier_token3] = ACTIONS(2516), + [aux_sym_cmd_identifier_token4] = ACTIONS(2516), + [aux_sym_cmd_identifier_token5] = ACTIONS(2516), + [aux_sym_cmd_identifier_token6] = ACTIONS(2516), + [aux_sym_cmd_identifier_token7] = ACTIONS(2516), + [aux_sym_cmd_identifier_token8] = ACTIONS(2516), + [aux_sym_cmd_identifier_token9] = ACTIONS(2516), + [aux_sym_cmd_identifier_token10] = ACTIONS(2516), + [aux_sym_cmd_identifier_token11] = ACTIONS(2516), + [aux_sym_cmd_identifier_token12] = ACTIONS(2516), + [aux_sym_cmd_identifier_token13] = ACTIONS(2516), + [aux_sym_cmd_identifier_token14] = ACTIONS(2516), + [aux_sym_cmd_identifier_token15] = ACTIONS(2516), + [aux_sym_cmd_identifier_token16] = ACTIONS(2516), + [aux_sym_cmd_identifier_token17] = ACTIONS(2516), + [aux_sym_cmd_identifier_token18] = ACTIONS(2516), + [aux_sym_cmd_identifier_token19] = ACTIONS(2516), + [aux_sym_cmd_identifier_token20] = ACTIONS(2516), + [aux_sym_cmd_identifier_token21] = ACTIONS(2516), + [aux_sym_cmd_identifier_token22] = ACTIONS(2516), + [aux_sym_cmd_identifier_token23] = ACTIONS(2516), + [aux_sym_cmd_identifier_token24] = ACTIONS(2516), + [aux_sym_cmd_identifier_token25] = ACTIONS(2516), + [aux_sym_cmd_identifier_token26] = ACTIONS(2516), + [aux_sym_cmd_identifier_token27] = ACTIONS(2516), + [aux_sym_cmd_identifier_token28] = ACTIONS(2516), + [aux_sym_cmd_identifier_token29] = ACTIONS(2516), + [aux_sym_cmd_identifier_token30] = ACTIONS(2516), + [aux_sym_cmd_identifier_token31] = ACTIONS(2516), + [aux_sym_cmd_identifier_token32] = ACTIONS(2516), + [aux_sym_cmd_identifier_token33] = ACTIONS(2516), + [aux_sym_cmd_identifier_token34] = ACTIONS(2516), + [aux_sym_cmd_identifier_token35] = ACTIONS(2516), + [aux_sym_cmd_identifier_token36] = ACTIONS(2516), + [anon_sym_true] = ACTIONS(2516), + [anon_sym_false] = ACTIONS(2516), + [anon_sym_null] = ACTIONS(2516), + [aux_sym_cmd_identifier_token38] = ACTIONS(2516), + [aux_sym_cmd_identifier_token39] = ACTIONS(2516), + [aux_sym_cmd_identifier_token40] = ACTIONS(2516), + [anon_sym_def] = ACTIONS(2516), + [anon_sym_export_DASHenv] = ACTIONS(2516), + [anon_sym_extern] = ACTIONS(2516), + [anon_sym_module] = ACTIONS(2516), + [anon_sym_use] = ACTIONS(2516), + [anon_sym_LPAREN] = ACTIONS(2516), + [anon_sym_DOLLAR] = ACTIONS(2516), + [anon_sym_error] = ACTIONS(2516), + [anon_sym_list] = ACTIONS(2516), + [anon_sym_DASH] = ACTIONS(2516), + [anon_sym_break] = ACTIONS(2516), + [anon_sym_continue] = ACTIONS(2516), + [anon_sym_for] = ACTIONS(2516), + [anon_sym_in] = ACTIONS(2516), + [anon_sym_loop] = ACTIONS(2516), + [anon_sym_make] = ACTIONS(2516), + [anon_sym_while] = ACTIONS(2516), + [anon_sym_do] = ACTIONS(2516), + [anon_sym_if] = ACTIONS(2516), + [anon_sym_else] = ACTIONS(2516), + [anon_sym_match] = ACTIONS(2516), + [anon_sym_RBRACE] = ACTIONS(2516), + [anon_sym_try] = ACTIONS(2516), + [anon_sym_catch] = ACTIONS(2516), + [anon_sym_return] = ACTIONS(2516), + [anon_sym_source] = ACTIONS(2516), + [anon_sym_source_DASHenv] = ACTIONS(2516), + [anon_sym_register] = ACTIONS(2516), + [anon_sym_hide] = ACTIONS(2516), + [anon_sym_hide_DASHenv] = ACTIONS(2516), + [anon_sym_overlay] = ACTIONS(2516), + [anon_sym_new] = ACTIONS(2516), + [anon_sym_as] = ACTIONS(2516), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2516), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2516), + [aux_sym__val_number_decimal_token1] = ACTIONS(2516), + [aux_sym__val_number_decimal_token2] = ACTIONS(2516), + [aux_sym__val_number_decimal_token3] = ACTIONS(2516), + [aux_sym__val_number_decimal_token4] = ACTIONS(2516), + [aux_sym__val_number_token1] = ACTIONS(2516), + [aux_sym__val_number_token2] = ACTIONS(2516), + [aux_sym__val_number_token3] = ACTIONS(2516), + [anon_sym_DQUOTE] = ACTIONS(2516), + [sym__str_single_quotes] = ACTIONS(2516), + [sym__str_back_ticks] = ACTIONS(2516), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2516), + [sym__entry_separator] = ACTIONS(2518), + [anon_sym_PLUS] = ACTIONS(2516), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2518), }, [602] = { [sym_comment] = STATE(602), - [anon_sym_export] = ACTIONS(2485), - [anon_sym_alias] = ACTIONS(2485), - [anon_sym_let] = ACTIONS(2485), - [anon_sym_let_DASHenv] = ACTIONS(2485), - [anon_sym_mut] = ACTIONS(2485), - [anon_sym_const] = ACTIONS(2485), - [aux_sym_cmd_identifier_token1] = ACTIONS(2485), - [aux_sym_cmd_identifier_token2] = ACTIONS(2485), - [aux_sym_cmd_identifier_token3] = ACTIONS(2485), - [aux_sym_cmd_identifier_token4] = ACTIONS(2485), - [aux_sym_cmd_identifier_token5] = ACTIONS(2485), - [aux_sym_cmd_identifier_token6] = ACTIONS(2485), - [aux_sym_cmd_identifier_token7] = ACTIONS(2485), - [aux_sym_cmd_identifier_token8] = ACTIONS(2485), - [aux_sym_cmd_identifier_token9] = ACTIONS(2485), - [aux_sym_cmd_identifier_token10] = ACTIONS(2485), - [aux_sym_cmd_identifier_token11] = ACTIONS(2485), - [aux_sym_cmd_identifier_token12] = ACTIONS(2485), - [aux_sym_cmd_identifier_token13] = ACTIONS(2485), - [aux_sym_cmd_identifier_token14] = ACTIONS(2485), - [aux_sym_cmd_identifier_token15] = ACTIONS(2485), - [aux_sym_cmd_identifier_token16] = ACTIONS(2485), - [aux_sym_cmd_identifier_token17] = ACTIONS(2485), - [aux_sym_cmd_identifier_token18] = ACTIONS(2485), - [aux_sym_cmd_identifier_token19] = ACTIONS(2485), - [aux_sym_cmd_identifier_token20] = ACTIONS(2485), - [aux_sym_cmd_identifier_token21] = ACTIONS(2485), - [aux_sym_cmd_identifier_token22] = ACTIONS(2485), - [aux_sym_cmd_identifier_token23] = ACTIONS(2485), - [aux_sym_cmd_identifier_token24] = ACTIONS(2485), - [aux_sym_cmd_identifier_token25] = ACTIONS(2485), - [aux_sym_cmd_identifier_token26] = ACTIONS(2485), - [aux_sym_cmd_identifier_token27] = ACTIONS(2485), - [aux_sym_cmd_identifier_token28] = ACTIONS(2485), - [aux_sym_cmd_identifier_token29] = ACTIONS(2485), - [aux_sym_cmd_identifier_token30] = ACTIONS(2485), - [aux_sym_cmd_identifier_token31] = ACTIONS(2485), - [aux_sym_cmd_identifier_token32] = ACTIONS(2485), - [aux_sym_cmd_identifier_token33] = ACTIONS(2485), - [aux_sym_cmd_identifier_token34] = ACTIONS(2485), - [aux_sym_cmd_identifier_token35] = ACTIONS(2485), - [aux_sym_cmd_identifier_token36] = ACTIONS(2485), - [anon_sym_true] = ACTIONS(2485), - [anon_sym_false] = ACTIONS(2485), - [anon_sym_null] = ACTIONS(2485), - [aux_sym_cmd_identifier_token38] = ACTIONS(2485), - [aux_sym_cmd_identifier_token39] = ACTIONS(2485), - [aux_sym_cmd_identifier_token40] = ACTIONS(2485), - [anon_sym_def] = ACTIONS(2485), - [anon_sym_export_DASHenv] = ACTIONS(2485), - [anon_sym_extern] = ACTIONS(2485), - [anon_sym_module] = ACTIONS(2485), - [anon_sym_use] = ACTIONS(2485), - [anon_sym_LPAREN] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2485), - [anon_sym_error] = ACTIONS(2485), - [anon_sym_list] = ACTIONS(2485), - [anon_sym_DASH] = ACTIONS(2485), - [anon_sym_break] = ACTIONS(2485), - [anon_sym_continue] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2485), - [anon_sym_in] = ACTIONS(2485), - [anon_sym_loop] = ACTIONS(2485), - [anon_sym_make] = ACTIONS(2485), - [anon_sym_while] = ACTIONS(2485), - [anon_sym_do] = ACTIONS(2485), - [anon_sym_if] = ACTIONS(2485), - [anon_sym_else] = ACTIONS(2485), - [anon_sym_match] = ACTIONS(2485), - [anon_sym_RBRACE] = ACTIONS(2485), - [anon_sym_try] = ACTIONS(2485), - [anon_sym_catch] = ACTIONS(2485), - [anon_sym_return] = ACTIONS(2485), - [anon_sym_source] = ACTIONS(2485), - [anon_sym_source_DASHenv] = ACTIONS(2485), - [anon_sym_register] = ACTIONS(2485), - [anon_sym_hide] = ACTIONS(2485), - [anon_sym_hide_DASHenv] = ACTIONS(2485), - [anon_sym_overlay] = ACTIONS(2485), - [anon_sym_new] = ACTIONS(2485), - [anon_sym_as] = ACTIONS(2485), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2485), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2485), - [aux_sym__val_number_decimal_token1] = ACTIONS(2485), - [aux_sym__val_number_decimal_token2] = ACTIONS(2485), - [aux_sym__val_number_decimal_token3] = ACTIONS(2485), - [aux_sym__val_number_decimal_token4] = ACTIONS(2485), - [aux_sym__val_number_token1] = ACTIONS(2485), - [aux_sym__val_number_token2] = ACTIONS(2485), - [aux_sym__val_number_token3] = ACTIONS(2485), - [anon_sym_DQUOTE] = ACTIONS(2485), - [sym__str_single_quotes] = ACTIONS(2485), - [sym__str_back_ticks] = ACTIONS(2485), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2485), - [sym__entry_separator] = ACTIONS(2487), - [anon_sym_PLUS] = ACTIONS(2485), + [anon_sym_export] = ACTIONS(2520), + [anon_sym_alias] = ACTIONS(2520), + [anon_sym_let] = ACTIONS(2520), + [anon_sym_let_DASHenv] = ACTIONS(2520), + [anon_sym_mut] = ACTIONS(2520), + [anon_sym_const] = ACTIONS(2520), + [aux_sym_cmd_identifier_token1] = ACTIONS(2520), + [aux_sym_cmd_identifier_token2] = ACTIONS(2520), + [aux_sym_cmd_identifier_token3] = ACTIONS(2520), + [aux_sym_cmd_identifier_token4] = ACTIONS(2520), + [aux_sym_cmd_identifier_token5] = ACTIONS(2520), + [aux_sym_cmd_identifier_token6] = ACTIONS(2520), + [aux_sym_cmd_identifier_token7] = ACTIONS(2520), + [aux_sym_cmd_identifier_token8] = ACTIONS(2520), + [aux_sym_cmd_identifier_token9] = ACTIONS(2520), + [aux_sym_cmd_identifier_token10] = ACTIONS(2520), + [aux_sym_cmd_identifier_token11] = ACTIONS(2520), + [aux_sym_cmd_identifier_token12] = ACTIONS(2520), + [aux_sym_cmd_identifier_token13] = ACTIONS(2520), + [aux_sym_cmd_identifier_token14] = ACTIONS(2520), + [aux_sym_cmd_identifier_token15] = ACTIONS(2520), + [aux_sym_cmd_identifier_token16] = ACTIONS(2520), + [aux_sym_cmd_identifier_token17] = ACTIONS(2520), + [aux_sym_cmd_identifier_token18] = ACTIONS(2520), + [aux_sym_cmd_identifier_token19] = ACTIONS(2520), + [aux_sym_cmd_identifier_token20] = ACTIONS(2520), + [aux_sym_cmd_identifier_token21] = ACTIONS(2520), + [aux_sym_cmd_identifier_token22] = ACTIONS(2520), + [aux_sym_cmd_identifier_token23] = ACTIONS(2520), + [aux_sym_cmd_identifier_token24] = ACTIONS(2520), + [aux_sym_cmd_identifier_token25] = ACTIONS(2520), + [aux_sym_cmd_identifier_token26] = ACTIONS(2520), + [aux_sym_cmd_identifier_token27] = ACTIONS(2520), + [aux_sym_cmd_identifier_token28] = ACTIONS(2520), + [aux_sym_cmd_identifier_token29] = ACTIONS(2520), + [aux_sym_cmd_identifier_token30] = ACTIONS(2520), + [aux_sym_cmd_identifier_token31] = ACTIONS(2520), + [aux_sym_cmd_identifier_token32] = ACTIONS(2520), + [aux_sym_cmd_identifier_token33] = ACTIONS(2520), + [aux_sym_cmd_identifier_token34] = ACTIONS(2520), + [aux_sym_cmd_identifier_token35] = ACTIONS(2520), + [aux_sym_cmd_identifier_token36] = ACTIONS(2520), + [anon_sym_true] = ACTIONS(2520), + [anon_sym_false] = ACTIONS(2520), + [anon_sym_null] = ACTIONS(2520), + [aux_sym_cmd_identifier_token38] = ACTIONS(2520), + [aux_sym_cmd_identifier_token39] = ACTIONS(2520), + [aux_sym_cmd_identifier_token40] = ACTIONS(2520), + [anon_sym_def] = ACTIONS(2520), + [anon_sym_export_DASHenv] = ACTIONS(2520), + [anon_sym_extern] = ACTIONS(2520), + [anon_sym_module] = ACTIONS(2520), + [anon_sym_use] = ACTIONS(2520), + [anon_sym_LPAREN] = ACTIONS(2520), + [anon_sym_DOLLAR] = ACTIONS(2520), + [anon_sym_error] = ACTIONS(2520), + [anon_sym_list] = ACTIONS(2520), + [anon_sym_DASH] = ACTIONS(2520), + [anon_sym_break] = ACTIONS(2520), + [anon_sym_continue] = ACTIONS(2520), + [anon_sym_for] = ACTIONS(2520), + [anon_sym_in] = ACTIONS(2520), + [anon_sym_loop] = ACTIONS(2520), + [anon_sym_make] = ACTIONS(2520), + [anon_sym_while] = ACTIONS(2520), + [anon_sym_do] = ACTIONS(2520), + [anon_sym_if] = ACTIONS(2520), + [anon_sym_else] = ACTIONS(2520), + [anon_sym_match] = ACTIONS(2520), + [anon_sym_RBRACE] = ACTIONS(2520), + [anon_sym_try] = ACTIONS(2520), + [anon_sym_catch] = ACTIONS(2520), + [anon_sym_return] = ACTIONS(2520), + [anon_sym_source] = ACTIONS(2520), + [anon_sym_source_DASHenv] = ACTIONS(2520), + [anon_sym_register] = ACTIONS(2520), + [anon_sym_hide] = ACTIONS(2520), + [anon_sym_hide_DASHenv] = ACTIONS(2520), + [anon_sym_overlay] = ACTIONS(2520), + [anon_sym_new] = ACTIONS(2520), + [anon_sym_as] = ACTIONS(2520), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2520), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2520), + [aux_sym__val_number_decimal_token1] = ACTIONS(2520), + [aux_sym__val_number_decimal_token2] = ACTIONS(2520), + [aux_sym__val_number_decimal_token3] = ACTIONS(2520), + [aux_sym__val_number_decimal_token4] = ACTIONS(2520), + [aux_sym__val_number_token1] = ACTIONS(2520), + [aux_sym__val_number_token2] = ACTIONS(2520), + [aux_sym__val_number_token3] = ACTIONS(2520), + [anon_sym_DQUOTE] = ACTIONS(2520), + [sym__str_single_quotes] = ACTIONS(2520), + [sym__str_back_ticks] = ACTIONS(2520), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2520), + [sym__entry_separator] = ACTIONS(2522), + [anon_sym_PLUS] = ACTIONS(2520), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2522), }, [603] = { [sym_comment] = STATE(603), - [anon_sym_export] = ACTIONS(2489), - [anon_sym_alias] = ACTIONS(2489), - [anon_sym_let] = ACTIONS(2489), - [anon_sym_let_DASHenv] = ACTIONS(2489), - [anon_sym_mut] = ACTIONS(2489), - [anon_sym_const] = ACTIONS(2489), - [aux_sym_cmd_identifier_token1] = ACTIONS(2489), - [aux_sym_cmd_identifier_token2] = ACTIONS(2489), - [aux_sym_cmd_identifier_token3] = ACTIONS(2489), - [aux_sym_cmd_identifier_token4] = ACTIONS(2489), - [aux_sym_cmd_identifier_token5] = ACTIONS(2489), - [aux_sym_cmd_identifier_token6] = ACTIONS(2489), - [aux_sym_cmd_identifier_token7] = ACTIONS(2489), - [aux_sym_cmd_identifier_token8] = ACTIONS(2489), - [aux_sym_cmd_identifier_token9] = ACTIONS(2489), - [aux_sym_cmd_identifier_token10] = ACTIONS(2489), - [aux_sym_cmd_identifier_token11] = ACTIONS(2489), - [aux_sym_cmd_identifier_token12] = ACTIONS(2489), - [aux_sym_cmd_identifier_token13] = ACTIONS(2489), - [aux_sym_cmd_identifier_token14] = ACTIONS(2489), - [aux_sym_cmd_identifier_token15] = ACTIONS(2489), - [aux_sym_cmd_identifier_token16] = ACTIONS(2489), - [aux_sym_cmd_identifier_token17] = ACTIONS(2489), - [aux_sym_cmd_identifier_token18] = ACTIONS(2489), - [aux_sym_cmd_identifier_token19] = ACTIONS(2489), - [aux_sym_cmd_identifier_token20] = ACTIONS(2489), - [aux_sym_cmd_identifier_token21] = ACTIONS(2489), - [aux_sym_cmd_identifier_token22] = ACTIONS(2489), - [aux_sym_cmd_identifier_token23] = ACTIONS(2489), - [aux_sym_cmd_identifier_token24] = ACTIONS(2489), - [aux_sym_cmd_identifier_token25] = ACTIONS(2489), - [aux_sym_cmd_identifier_token26] = ACTIONS(2489), - [aux_sym_cmd_identifier_token27] = ACTIONS(2489), - [aux_sym_cmd_identifier_token28] = ACTIONS(2489), - [aux_sym_cmd_identifier_token29] = ACTIONS(2489), - [aux_sym_cmd_identifier_token30] = ACTIONS(2489), - [aux_sym_cmd_identifier_token31] = ACTIONS(2489), - [aux_sym_cmd_identifier_token32] = ACTIONS(2489), - [aux_sym_cmd_identifier_token33] = ACTIONS(2489), - [aux_sym_cmd_identifier_token34] = ACTIONS(2489), - [aux_sym_cmd_identifier_token35] = ACTIONS(2489), - [aux_sym_cmd_identifier_token36] = ACTIONS(2489), - [anon_sym_true] = ACTIONS(2489), - [anon_sym_false] = ACTIONS(2489), - [anon_sym_null] = ACTIONS(2489), - [aux_sym_cmd_identifier_token38] = ACTIONS(2489), - [aux_sym_cmd_identifier_token39] = ACTIONS(2489), - [aux_sym_cmd_identifier_token40] = ACTIONS(2489), - [anon_sym_def] = ACTIONS(2489), - [anon_sym_export_DASHenv] = ACTIONS(2489), - [anon_sym_extern] = ACTIONS(2489), - [anon_sym_module] = ACTIONS(2489), - [anon_sym_use] = ACTIONS(2489), - [anon_sym_LPAREN] = ACTIONS(2489), - [anon_sym_DOLLAR] = ACTIONS(2489), - [anon_sym_error] = ACTIONS(2489), - [anon_sym_list] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(2489), - [anon_sym_break] = ACTIONS(2489), - [anon_sym_continue] = ACTIONS(2489), - [anon_sym_for] = ACTIONS(2489), - [anon_sym_in] = ACTIONS(2489), - [anon_sym_loop] = ACTIONS(2489), - [anon_sym_make] = ACTIONS(2489), - [anon_sym_while] = ACTIONS(2489), - [anon_sym_do] = ACTIONS(2489), - [anon_sym_if] = ACTIONS(2489), - [anon_sym_else] = ACTIONS(2489), - [anon_sym_match] = ACTIONS(2489), - [anon_sym_RBRACE] = ACTIONS(2489), - [anon_sym_try] = ACTIONS(2489), - [anon_sym_catch] = ACTIONS(2489), - [anon_sym_return] = ACTIONS(2489), - [anon_sym_source] = ACTIONS(2489), - [anon_sym_source_DASHenv] = ACTIONS(2489), - [anon_sym_register] = ACTIONS(2489), - [anon_sym_hide] = ACTIONS(2489), - [anon_sym_hide_DASHenv] = ACTIONS(2489), - [anon_sym_overlay] = ACTIONS(2489), - [anon_sym_new] = ACTIONS(2489), - [anon_sym_as] = ACTIONS(2489), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2489), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2489), - [aux_sym__val_number_decimal_token1] = ACTIONS(2489), - [aux_sym__val_number_decimal_token2] = ACTIONS(2489), - [aux_sym__val_number_decimal_token3] = ACTIONS(2489), - [aux_sym__val_number_decimal_token4] = ACTIONS(2489), - [aux_sym__val_number_token1] = ACTIONS(2489), - [aux_sym__val_number_token2] = ACTIONS(2489), - [aux_sym__val_number_token3] = ACTIONS(2489), - [anon_sym_DQUOTE] = ACTIONS(2489), - [sym__str_single_quotes] = ACTIONS(2489), - [sym__str_back_ticks] = ACTIONS(2489), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2489), - [sym__entry_separator] = ACTIONS(2491), - [anon_sym_PLUS] = ACTIONS(2489), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1715), + [anon_sym_alias] = ACTIONS(1715), + [anon_sym_let] = ACTIONS(1715), + [anon_sym_let_DASHenv] = ACTIONS(1715), + [anon_sym_mut] = ACTIONS(1715), + [anon_sym_const] = ACTIONS(1715), + [aux_sym_cmd_identifier_token1] = ACTIONS(1715), + [aux_sym_cmd_identifier_token2] = ACTIONS(1715), + [aux_sym_cmd_identifier_token3] = ACTIONS(1715), + [aux_sym_cmd_identifier_token4] = ACTIONS(1715), + [aux_sym_cmd_identifier_token5] = ACTIONS(1715), + [aux_sym_cmd_identifier_token6] = ACTIONS(1715), + [aux_sym_cmd_identifier_token7] = ACTIONS(1715), + [aux_sym_cmd_identifier_token8] = ACTIONS(1715), + [aux_sym_cmd_identifier_token9] = ACTIONS(1715), + [aux_sym_cmd_identifier_token10] = ACTIONS(1715), + [aux_sym_cmd_identifier_token11] = ACTIONS(1715), + [aux_sym_cmd_identifier_token12] = ACTIONS(1715), + [aux_sym_cmd_identifier_token13] = ACTIONS(1715), + [aux_sym_cmd_identifier_token14] = ACTIONS(1715), + [aux_sym_cmd_identifier_token15] = ACTIONS(1715), + [aux_sym_cmd_identifier_token16] = ACTIONS(1715), + [aux_sym_cmd_identifier_token17] = ACTIONS(1715), + [aux_sym_cmd_identifier_token18] = ACTIONS(1715), + [aux_sym_cmd_identifier_token19] = ACTIONS(1715), + [aux_sym_cmd_identifier_token20] = ACTIONS(1715), + [aux_sym_cmd_identifier_token21] = ACTIONS(1715), + [aux_sym_cmd_identifier_token22] = ACTIONS(1715), + [aux_sym_cmd_identifier_token23] = ACTIONS(1715), + [aux_sym_cmd_identifier_token24] = ACTIONS(1715), + [aux_sym_cmd_identifier_token25] = ACTIONS(1715), + [aux_sym_cmd_identifier_token26] = ACTIONS(1715), + [aux_sym_cmd_identifier_token27] = ACTIONS(1715), + [aux_sym_cmd_identifier_token28] = ACTIONS(1715), + [aux_sym_cmd_identifier_token29] = ACTIONS(1715), + [aux_sym_cmd_identifier_token30] = ACTIONS(1715), + [aux_sym_cmd_identifier_token31] = ACTIONS(1715), + [aux_sym_cmd_identifier_token32] = ACTIONS(1715), + [aux_sym_cmd_identifier_token33] = ACTIONS(1715), + [aux_sym_cmd_identifier_token34] = ACTIONS(1715), + [aux_sym_cmd_identifier_token35] = ACTIONS(1715), + [aux_sym_cmd_identifier_token36] = ACTIONS(1715), + [anon_sym_true] = ACTIONS(1717), + [anon_sym_false] = ACTIONS(1717), + [anon_sym_null] = ACTIONS(1717), + [aux_sym_cmd_identifier_token38] = ACTIONS(1715), + [aux_sym_cmd_identifier_token39] = ACTIONS(1717), + [aux_sym_cmd_identifier_token40] = ACTIONS(1717), + [anon_sym_def] = ACTIONS(1715), + [anon_sym_export_DASHenv] = ACTIONS(1715), + [anon_sym_extern] = ACTIONS(1715), + [anon_sym_module] = ACTIONS(1715), + [anon_sym_use] = ACTIONS(1715), + [anon_sym_LPAREN] = ACTIONS(1717), + [anon_sym_DOLLAR] = ACTIONS(1717), + [anon_sym_error] = ACTIONS(1715), + [anon_sym_list] = ACTIONS(1715), + [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_break] = ACTIONS(1715), + [anon_sym_continue] = ACTIONS(1715), + [anon_sym_for] = ACTIONS(1715), + [anon_sym_in] = ACTIONS(1715), + [anon_sym_loop] = ACTIONS(1715), + [anon_sym_make] = ACTIONS(1715), + [anon_sym_while] = ACTIONS(1715), + [anon_sym_do] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1715), + [anon_sym_else] = ACTIONS(1715), + [anon_sym_match] = ACTIONS(1715), + [anon_sym_RBRACE] = ACTIONS(1717), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_catch] = ACTIONS(1715), + [anon_sym_return] = ACTIONS(1715), + [anon_sym_source] = ACTIONS(1715), + [anon_sym_source_DASHenv] = ACTIONS(1715), + [anon_sym_register] = ACTIONS(1715), + [anon_sym_hide] = ACTIONS(1715), + [anon_sym_hide_DASHenv] = ACTIONS(1715), + [anon_sym_overlay] = ACTIONS(1715), + [anon_sym_new] = ACTIONS(1715), + [anon_sym_as] = ACTIONS(1715), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1717), + [aux_sym__immediate_decimal_token2] = ACTIONS(2384), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1717), + [aux_sym__val_number_decimal_token1] = ACTIONS(1715), + [aux_sym__val_number_decimal_token2] = ACTIONS(1717), + [aux_sym__val_number_decimal_token3] = ACTIONS(1717), + [aux_sym__val_number_decimal_token4] = ACTIONS(1717), + [aux_sym__val_number_token1] = ACTIONS(1717), + [aux_sym__val_number_token2] = ACTIONS(1717), + [aux_sym__val_number_token3] = ACTIONS(1717), + [anon_sym_DQUOTE] = ACTIONS(1717), + [sym__str_single_quotes] = ACTIONS(1717), + [sym__str_back_ticks] = ACTIONS(1717), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1717), + [anon_sym_PLUS] = ACTIONS(1715), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1717), }, [604] = { [sym_comment] = STATE(604), - [anon_sym_export] = ACTIONS(2493), - [anon_sym_alias] = ACTIONS(2493), - [anon_sym_let] = ACTIONS(2493), - [anon_sym_let_DASHenv] = ACTIONS(2493), - [anon_sym_mut] = ACTIONS(2493), - [anon_sym_const] = ACTIONS(2493), - [aux_sym_cmd_identifier_token1] = ACTIONS(2493), - [aux_sym_cmd_identifier_token2] = ACTIONS(2493), - [aux_sym_cmd_identifier_token3] = ACTIONS(2493), - [aux_sym_cmd_identifier_token4] = ACTIONS(2493), - [aux_sym_cmd_identifier_token5] = ACTIONS(2493), - [aux_sym_cmd_identifier_token6] = ACTIONS(2493), - [aux_sym_cmd_identifier_token7] = ACTIONS(2493), - [aux_sym_cmd_identifier_token8] = ACTIONS(2493), - [aux_sym_cmd_identifier_token9] = ACTIONS(2493), - [aux_sym_cmd_identifier_token10] = ACTIONS(2493), - [aux_sym_cmd_identifier_token11] = ACTIONS(2493), - [aux_sym_cmd_identifier_token12] = ACTIONS(2493), - [aux_sym_cmd_identifier_token13] = ACTIONS(2493), - [aux_sym_cmd_identifier_token14] = ACTIONS(2493), - [aux_sym_cmd_identifier_token15] = ACTIONS(2493), - [aux_sym_cmd_identifier_token16] = ACTIONS(2493), - [aux_sym_cmd_identifier_token17] = ACTIONS(2493), - [aux_sym_cmd_identifier_token18] = ACTIONS(2493), - [aux_sym_cmd_identifier_token19] = ACTIONS(2493), - [aux_sym_cmd_identifier_token20] = ACTIONS(2493), - [aux_sym_cmd_identifier_token21] = ACTIONS(2493), - [aux_sym_cmd_identifier_token22] = ACTIONS(2493), - [aux_sym_cmd_identifier_token23] = ACTIONS(2493), - [aux_sym_cmd_identifier_token24] = ACTIONS(2493), - [aux_sym_cmd_identifier_token25] = ACTIONS(2493), - [aux_sym_cmd_identifier_token26] = ACTIONS(2493), - [aux_sym_cmd_identifier_token27] = ACTIONS(2493), - [aux_sym_cmd_identifier_token28] = ACTIONS(2493), - [aux_sym_cmd_identifier_token29] = ACTIONS(2493), - [aux_sym_cmd_identifier_token30] = ACTIONS(2493), - [aux_sym_cmd_identifier_token31] = ACTIONS(2493), - [aux_sym_cmd_identifier_token32] = ACTIONS(2493), - [aux_sym_cmd_identifier_token33] = ACTIONS(2493), - [aux_sym_cmd_identifier_token34] = ACTIONS(2493), - [aux_sym_cmd_identifier_token35] = ACTIONS(2493), - [aux_sym_cmd_identifier_token36] = ACTIONS(2493), - [anon_sym_true] = ACTIONS(2493), - [anon_sym_false] = ACTIONS(2493), - [anon_sym_null] = ACTIONS(2493), - [aux_sym_cmd_identifier_token38] = ACTIONS(2493), - [aux_sym_cmd_identifier_token39] = ACTIONS(2493), - [aux_sym_cmd_identifier_token40] = ACTIONS(2493), - [anon_sym_def] = ACTIONS(2493), - [anon_sym_export_DASHenv] = ACTIONS(2493), - [anon_sym_extern] = ACTIONS(2493), - [anon_sym_module] = ACTIONS(2493), - [anon_sym_use] = ACTIONS(2493), - [anon_sym_LPAREN] = ACTIONS(2493), - [anon_sym_DOLLAR] = ACTIONS(2493), - [anon_sym_error] = ACTIONS(2493), - [anon_sym_list] = ACTIONS(2493), - [anon_sym_DASH] = ACTIONS(2493), - [anon_sym_break] = ACTIONS(2493), - [anon_sym_continue] = ACTIONS(2493), - [anon_sym_for] = ACTIONS(2493), - [anon_sym_in] = ACTIONS(2493), - [anon_sym_loop] = ACTIONS(2493), - [anon_sym_make] = ACTIONS(2493), - [anon_sym_while] = ACTIONS(2493), - [anon_sym_do] = ACTIONS(2493), - [anon_sym_if] = ACTIONS(2493), - [anon_sym_else] = ACTIONS(2493), - [anon_sym_match] = ACTIONS(2493), - [anon_sym_RBRACE] = ACTIONS(2493), - [anon_sym_try] = ACTIONS(2493), - [anon_sym_catch] = ACTIONS(2493), - [anon_sym_return] = ACTIONS(2493), - [anon_sym_source] = ACTIONS(2493), - [anon_sym_source_DASHenv] = ACTIONS(2493), - [anon_sym_register] = ACTIONS(2493), - [anon_sym_hide] = ACTIONS(2493), - [anon_sym_hide_DASHenv] = ACTIONS(2493), - [anon_sym_overlay] = ACTIONS(2493), - [anon_sym_new] = ACTIONS(2493), - [anon_sym_as] = ACTIONS(2493), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2493), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2493), - [aux_sym__val_number_decimal_token1] = ACTIONS(2493), - [aux_sym__val_number_decimal_token2] = ACTIONS(2493), - [aux_sym__val_number_decimal_token3] = ACTIONS(2493), - [aux_sym__val_number_decimal_token4] = ACTIONS(2493), - [aux_sym__val_number_token1] = ACTIONS(2493), - [aux_sym__val_number_token2] = ACTIONS(2493), - [aux_sym__val_number_token3] = ACTIONS(2493), - [anon_sym_DQUOTE] = ACTIONS(2493), - [sym__str_single_quotes] = ACTIONS(2493), - [sym__str_back_ticks] = ACTIONS(2493), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2493), - [sym__entry_separator] = ACTIONS(2495), - [anon_sym_PLUS] = ACTIONS(2493), + [anon_sym_export] = ACTIONS(2524), + [anon_sym_alias] = ACTIONS(2524), + [anon_sym_let] = ACTIONS(2524), + [anon_sym_let_DASHenv] = ACTIONS(2524), + [anon_sym_mut] = ACTIONS(2524), + [anon_sym_const] = ACTIONS(2524), + [aux_sym_cmd_identifier_token1] = ACTIONS(2524), + [aux_sym_cmd_identifier_token2] = ACTIONS(2524), + [aux_sym_cmd_identifier_token3] = ACTIONS(2524), + [aux_sym_cmd_identifier_token4] = ACTIONS(2524), + [aux_sym_cmd_identifier_token5] = ACTIONS(2524), + [aux_sym_cmd_identifier_token6] = ACTIONS(2524), + [aux_sym_cmd_identifier_token7] = ACTIONS(2524), + [aux_sym_cmd_identifier_token8] = ACTIONS(2524), + [aux_sym_cmd_identifier_token9] = ACTIONS(2524), + [aux_sym_cmd_identifier_token10] = ACTIONS(2524), + [aux_sym_cmd_identifier_token11] = ACTIONS(2524), + [aux_sym_cmd_identifier_token12] = ACTIONS(2524), + [aux_sym_cmd_identifier_token13] = ACTIONS(2524), + [aux_sym_cmd_identifier_token14] = ACTIONS(2524), + [aux_sym_cmd_identifier_token15] = ACTIONS(2524), + [aux_sym_cmd_identifier_token16] = ACTIONS(2524), + [aux_sym_cmd_identifier_token17] = ACTIONS(2524), + [aux_sym_cmd_identifier_token18] = ACTIONS(2524), + [aux_sym_cmd_identifier_token19] = ACTIONS(2524), + [aux_sym_cmd_identifier_token20] = ACTIONS(2524), + [aux_sym_cmd_identifier_token21] = ACTIONS(2524), + [aux_sym_cmd_identifier_token22] = ACTIONS(2524), + [aux_sym_cmd_identifier_token23] = ACTIONS(2524), + [aux_sym_cmd_identifier_token24] = ACTIONS(2524), + [aux_sym_cmd_identifier_token25] = ACTIONS(2524), + [aux_sym_cmd_identifier_token26] = ACTIONS(2524), + [aux_sym_cmd_identifier_token27] = ACTIONS(2524), + [aux_sym_cmd_identifier_token28] = ACTIONS(2524), + [aux_sym_cmd_identifier_token29] = ACTIONS(2524), + [aux_sym_cmd_identifier_token30] = ACTIONS(2524), + [aux_sym_cmd_identifier_token31] = ACTIONS(2524), + [aux_sym_cmd_identifier_token32] = ACTIONS(2524), + [aux_sym_cmd_identifier_token33] = ACTIONS(2524), + [aux_sym_cmd_identifier_token34] = ACTIONS(2524), + [aux_sym_cmd_identifier_token35] = ACTIONS(2524), + [aux_sym_cmd_identifier_token36] = ACTIONS(2524), + [anon_sym_true] = ACTIONS(2524), + [anon_sym_false] = ACTIONS(2524), + [anon_sym_null] = ACTIONS(2524), + [aux_sym_cmd_identifier_token38] = ACTIONS(2524), + [aux_sym_cmd_identifier_token39] = ACTIONS(2524), + [aux_sym_cmd_identifier_token40] = ACTIONS(2524), + [anon_sym_def] = ACTIONS(2524), + [anon_sym_export_DASHenv] = ACTIONS(2524), + [anon_sym_extern] = ACTIONS(2524), + [anon_sym_module] = ACTIONS(2524), + [anon_sym_use] = ACTIONS(2524), + [anon_sym_LPAREN] = ACTIONS(2524), + [anon_sym_DOLLAR] = ACTIONS(2524), + [anon_sym_error] = ACTIONS(2524), + [anon_sym_list] = ACTIONS(2524), + [anon_sym_DASH] = ACTIONS(2524), + [anon_sym_break] = ACTIONS(2524), + [anon_sym_continue] = ACTIONS(2524), + [anon_sym_for] = ACTIONS(2524), + [anon_sym_in] = ACTIONS(2524), + [anon_sym_loop] = ACTIONS(2524), + [anon_sym_make] = ACTIONS(2524), + [anon_sym_while] = ACTIONS(2524), + [anon_sym_do] = ACTIONS(2524), + [anon_sym_if] = ACTIONS(2524), + [anon_sym_else] = ACTIONS(2524), + [anon_sym_match] = ACTIONS(2524), + [anon_sym_RBRACE] = ACTIONS(2524), + [anon_sym_try] = ACTIONS(2524), + [anon_sym_catch] = ACTIONS(2524), + [anon_sym_return] = ACTIONS(2524), + [anon_sym_source] = ACTIONS(2524), + [anon_sym_source_DASHenv] = ACTIONS(2524), + [anon_sym_register] = ACTIONS(2524), + [anon_sym_hide] = ACTIONS(2524), + [anon_sym_hide_DASHenv] = ACTIONS(2524), + [anon_sym_overlay] = ACTIONS(2524), + [anon_sym_new] = ACTIONS(2524), + [anon_sym_as] = ACTIONS(2524), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2524), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2524), + [aux_sym__val_number_decimal_token1] = ACTIONS(2524), + [aux_sym__val_number_decimal_token2] = ACTIONS(2524), + [aux_sym__val_number_decimal_token3] = ACTIONS(2524), + [aux_sym__val_number_decimal_token4] = ACTIONS(2524), + [aux_sym__val_number_token1] = ACTIONS(2524), + [aux_sym__val_number_token2] = ACTIONS(2524), + [aux_sym__val_number_token3] = ACTIONS(2524), + [anon_sym_DQUOTE] = ACTIONS(2524), + [sym__str_single_quotes] = ACTIONS(2524), + [sym__str_back_ticks] = ACTIONS(2524), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2524), + [sym__entry_separator] = ACTIONS(2526), + [anon_sym_PLUS] = ACTIONS(2524), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2526), }, [605] = { [sym_comment] = STATE(605), - [anon_sym_export] = ACTIONS(2497), - [anon_sym_alias] = ACTIONS(2497), - [anon_sym_let] = ACTIONS(2497), - [anon_sym_let_DASHenv] = ACTIONS(2497), - [anon_sym_mut] = ACTIONS(2497), - [anon_sym_const] = ACTIONS(2497), - [aux_sym_cmd_identifier_token1] = ACTIONS(2497), - [aux_sym_cmd_identifier_token2] = ACTIONS(2497), - [aux_sym_cmd_identifier_token3] = ACTIONS(2497), - [aux_sym_cmd_identifier_token4] = ACTIONS(2497), - [aux_sym_cmd_identifier_token5] = ACTIONS(2497), - [aux_sym_cmd_identifier_token6] = ACTIONS(2497), - [aux_sym_cmd_identifier_token7] = ACTIONS(2497), - [aux_sym_cmd_identifier_token8] = ACTIONS(2497), - [aux_sym_cmd_identifier_token9] = ACTIONS(2497), - [aux_sym_cmd_identifier_token10] = ACTIONS(2497), - [aux_sym_cmd_identifier_token11] = ACTIONS(2497), - [aux_sym_cmd_identifier_token12] = ACTIONS(2497), - [aux_sym_cmd_identifier_token13] = ACTIONS(2497), - [aux_sym_cmd_identifier_token14] = ACTIONS(2497), - [aux_sym_cmd_identifier_token15] = ACTIONS(2497), - [aux_sym_cmd_identifier_token16] = ACTIONS(2497), - [aux_sym_cmd_identifier_token17] = ACTIONS(2497), - [aux_sym_cmd_identifier_token18] = ACTIONS(2497), - [aux_sym_cmd_identifier_token19] = ACTIONS(2497), - [aux_sym_cmd_identifier_token20] = ACTIONS(2497), - [aux_sym_cmd_identifier_token21] = ACTIONS(2497), - [aux_sym_cmd_identifier_token22] = ACTIONS(2497), - [aux_sym_cmd_identifier_token23] = ACTIONS(2497), - [aux_sym_cmd_identifier_token24] = ACTIONS(2497), - [aux_sym_cmd_identifier_token25] = ACTIONS(2497), - [aux_sym_cmd_identifier_token26] = ACTIONS(2497), - [aux_sym_cmd_identifier_token27] = ACTIONS(2497), - [aux_sym_cmd_identifier_token28] = ACTIONS(2497), - [aux_sym_cmd_identifier_token29] = ACTIONS(2497), - [aux_sym_cmd_identifier_token30] = ACTIONS(2497), - [aux_sym_cmd_identifier_token31] = ACTIONS(2497), - [aux_sym_cmd_identifier_token32] = ACTIONS(2497), - [aux_sym_cmd_identifier_token33] = ACTIONS(2497), - [aux_sym_cmd_identifier_token34] = ACTIONS(2497), - [aux_sym_cmd_identifier_token35] = ACTIONS(2497), - [aux_sym_cmd_identifier_token36] = ACTIONS(2497), - [anon_sym_true] = ACTIONS(2497), - [anon_sym_false] = ACTIONS(2497), - [anon_sym_null] = ACTIONS(2497), - [aux_sym_cmd_identifier_token38] = ACTIONS(2497), - [aux_sym_cmd_identifier_token39] = ACTIONS(2497), - [aux_sym_cmd_identifier_token40] = ACTIONS(2497), - [anon_sym_def] = ACTIONS(2497), - [anon_sym_export_DASHenv] = ACTIONS(2497), - [anon_sym_extern] = ACTIONS(2497), - [anon_sym_module] = ACTIONS(2497), - [anon_sym_use] = ACTIONS(2497), - [anon_sym_LPAREN] = ACTIONS(2497), - [anon_sym_DOLLAR] = ACTIONS(2497), - [anon_sym_error] = ACTIONS(2497), - [anon_sym_list] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_break] = ACTIONS(2497), - [anon_sym_continue] = ACTIONS(2497), - [anon_sym_for] = ACTIONS(2497), - [anon_sym_in] = ACTIONS(2497), - [anon_sym_loop] = ACTIONS(2497), - [anon_sym_make] = ACTIONS(2497), - [anon_sym_while] = ACTIONS(2497), - [anon_sym_do] = ACTIONS(2497), - [anon_sym_if] = ACTIONS(2497), - [anon_sym_else] = ACTIONS(2497), - [anon_sym_match] = ACTIONS(2497), - [anon_sym_RBRACE] = ACTIONS(2497), - [anon_sym_try] = ACTIONS(2497), - [anon_sym_catch] = ACTIONS(2497), - [anon_sym_return] = ACTIONS(2497), - [anon_sym_source] = ACTIONS(2497), - [anon_sym_source_DASHenv] = ACTIONS(2497), - [anon_sym_register] = ACTIONS(2497), - [anon_sym_hide] = ACTIONS(2497), - [anon_sym_hide_DASHenv] = ACTIONS(2497), - [anon_sym_overlay] = ACTIONS(2497), - [anon_sym_new] = ACTIONS(2497), - [anon_sym_as] = ACTIONS(2497), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2497), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2497), - [aux_sym__val_number_decimal_token1] = ACTIONS(2497), - [aux_sym__val_number_decimal_token2] = ACTIONS(2497), - [aux_sym__val_number_decimal_token3] = ACTIONS(2497), - [aux_sym__val_number_decimal_token4] = ACTIONS(2497), - [aux_sym__val_number_token1] = ACTIONS(2497), - [aux_sym__val_number_token2] = ACTIONS(2497), - [aux_sym__val_number_token3] = ACTIONS(2497), - [anon_sym_DQUOTE] = ACTIONS(2497), - [sym__str_single_quotes] = ACTIONS(2497), - [sym__str_back_ticks] = ACTIONS(2497), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2497), - [sym__entry_separator] = ACTIONS(2499), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(605), + [anon_sym_export] = ACTIONS(1349), + [anon_sym_alias] = ACTIONS(1349), + [anon_sym_let] = ACTIONS(1349), + [anon_sym_let_DASHenv] = ACTIONS(1349), + [anon_sym_mut] = ACTIONS(1349), + [anon_sym_const] = ACTIONS(1349), + [aux_sym_cmd_identifier_token1] = ACTIONS(1349), + [aux_sym_cmd_identifier_token2] = ACTIONS(1349), + [aux_sym_cmd_identifier_token3] = ACTIONS(1349), + [aux_sym_cmd_identifier_token4] = ACTIONS(1349), + [aux_sym_cmd_identifier_token5] = ACTIONS(1349), + [aux_sym_cmd_identifier_token6] = ACTIONS(1349), + [aux_sym_cmd_identifier_token7] = ACTIONS(1349), + [aux_sym_cmd_identifier_token8] = ACTIONS(1349), + [aux_sym_cmd_identifier_token9] = ACTIONS(1349), + [aux_sym_cmd_identifier_token10] = ACTIONS(1349), + [aux_sym_cmd_identifier_token11] = ACTIONS(1349), + [aux_sym_cmd_identifier_token12] = ACTIONS(1349), + [aux_sym_cmd_identifier_token13] = ACTIONS(1349), + [aux_sym_cmd_identifier_token14] = ACTIONS(1349), + [aux_sym_cmd_identifier_token15] = ACTIONS(1349), + [aux_sym_cmd_identifier_token16] = ACTIONS(1349), + [aux_sym_cmd_identifier_token17] = ACTIONS(1349), + [aux_sym_cmd_identifier_token18] = ACTIONS(1349), + [aux_sym_cmd_identifier_token19] = ACTIONS(1349), + [aux_sym_cmd_identifier_token20] = ACTIONS(1349), + [aux_sym_cmd_identifier_token21] = ACTIONS(1349), + [aux_sym_cmd_identifier_token22] = ACTIONS(1349), + [aux_sym_cmd_identifier_token23] = ACTIONS(1349), + [aux_sym_cmd_identifier_token24] = ACTIONS(1349), + [aux_sym_cmd_identifier_token25] = ACTIONS(1349), + [aux_sym_cmd_identifier_token26] = ACTIONS(1349), + [aux_sym_cmd_identifier_token27] = ACTIONS(1349), + [aux_sym_cmd_identifier_token28] = ACTIONS(1349), + [aux_sym_cmd_identifier_token29] = ACTIONS(1349), + [aux_sym_cmd_identifier_token30] = ACTIONS(1349), + [aux_sym_cmd_identifier_token31] = ACTIONS(1349), + [aux_sym_cmd_identifier_token32] = ACTIONS(1349), + [aux_sym_cmd_identifier_token33] = ACTIONS(1349), + [aux_sym_cmd_identifier_token34] = ACTIONS(1349), + [aux_sym_cmd_identifier_token35] = ACTIONS(1349), + [aux_sym_cmd_identifier_token36] = ACTIONS(1349), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_null] = ACTIONS(1351), + [aux_sym_cmd_identifier_token38] = ACTIONS(1349), + [aux_sym_cmd_identifier_token39] = ACTIONS(1351), + [aux_sym_cmd_identifier_token40] = ACTIONS(1351), + [sym__newline] = ACTIONS(2528), + [anon_sym_def] = ACTIONS(1349), + [anon_sym_export_DASHenv] = ACTIONS(1349), + [anon_sym_extern] = ACTIONS(1349), + [anon_sym_module] = ACTIONS(1349), + [anon_sym_use] = ACTIONS(1349), + [anon_sym_LPAREN] = ACTIONS(1351), + [anon_sym_DOLLAR] = ACTIONS(1351), + [anon_sym_error] = ACTIONS(1349), + [anon_sym_list] = ACTIONS(1349), + [anon_sym_DASH] = ACTIONS(1349), + [anon_sym_break] = ACTIONS(1349), + [anon_sym_continue] = ACTIONS(1349), + [anon_sym_for] = ACTIONS(1349), + [anon_sym_in] = ACTIONS(1349), + [anon_sym_loop] = ACTIONS(1349), + [anon_sym_make] = ACTIONS(1349), + [anon_sym_while] = ACTIONS(1349), + [anon_sym_do] = ACTIONS(1349), + [anon_sym_if] = ACTIONS(1349), + [anon_sym_else] = ACTIONS(1349), + [anon_sym_match] = ACTIONS(1349), + [anon_sym_try] = ACTIONS(1349), + [anon_sym_catch] = ACTIONS(1349), + [anon_sym_return] = ACTIONS(1349), + [anon_sym_source] = ACTIONS(1349), + [anon_sym_source_DASHenv] = ACTIONS(1349), + [anon_sym_register] = ACTIONS(1349), + [anon_sym_hide] = ACTIONS(1349), + [anon_sym_hide_DASHenv] = ACTIONS(1349), + [anon_sym_overlay] = ACTIONS(1349), + [anon_sym_new] = ACTIONS(1349), + [anon_sym_as] = ACTIONS(1349), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1351), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1351), + [aux_sym__val_number_decimal_token1] = ACTIONS(1349), + [aux_sym__val_number_decimal_token2] = ACTIONS(1351), + [aux_sym__val_number_decimal_token3] = ACTIONS(1351), + [aux_sym__val_number_decimal_token4] = ACTIONS(1351), + [aux_sym__val_number_token1] = ACTIONS(1351), + [aux_sym__val_number_token2] = ACTIONS(1351), + [aux_sym__val_number_token3] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1351), + [sym__str_single_quotes] = ACTIONS(1351), + [sym__str_back_ticks] = ACTIONS(1351), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1351), + [anon_sym_PLUS] = ACTIONS(1349), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1351), }, [606] = { [sym_comment] = STATE(606), - [anon_sym_export] = ACTIONS(2501), - [anon_sym_alias] = ACTIONS(2501), - [anon_sym_let] = ACTIONS(2501), - [anon_sym_let_DASHenv] = ACTIONS(2501), - [anon_sym_mut] = ACTIONS(2501), - [anon_sym_const] = ACTIONS(2501), - [aux_sym_cmd_identifier_token1] = ACTIONS(2501), - [aux_sym_cmd_identifier_token2] = ACTIONS(2501), - [aux_sym_cmd_identifier_token3] = ACTIONS(2501), - [aux_sym_cmd_identifier_token4] = ACTIONS(2501), - [aux_sym_cmd_identifier_token5] = ACTIONS(2501), - [aux_sym_cmd_identifier_token6] = ACTIONS(2501), - [aux_sym_cmd_identifier_token7] = ACTIONS(2501), - [aux_sym_cmd_identifier_token8] = ACTIONS(2501), - [aux_sym_cmd_identifier_token9] = ACTIONS(2501), - [aux_sym_cmd_identifier_token10] = ACTIONS(2501), - [aux_sym_cmd_identifier_token11] = ACTIONS(2501), - [aux_sym_cmd_identifier_token12] = ACTIONS(2501), - [aux_sym_cmd_identifier_token13] = ACTIONS(2501), - [aux_sym_cmd_identifier_token14] = ACTIONS(2501), - [aux_sym_cmd_identifier_token15] = ACTIONS(2501), - [aux_sym_cmd_identifier_token16] = ACTIONS(2501), - [aux_sym_cmd_identifier_token17] = ACTIONS(2501), - [aux_sym_cmd_identifier_token18] = ACTIONS(2501), - [aux_sym_cmd_identifier_token19] = ACTIONS(2501), - [aux_sym_cmd_identifier_token20] = ACTIONS(2501), - [aux_sym_cmd_identifier_token21] = ACTIONS(2501), - [aux_sym_cmd_identifier_token22] = ACTIONS(2501), - [aux_sym_cmd_identifier_token23] = ACTIONS(2501), - [aux_sym_cmd_identifier_token24] = ACTIONS(2501), - [aux_sym_cmd_identifier_token25] = ACTIONS(2501), - [aux_sym_cmd_identifier_token26] = ACTIONS(2501), - [aux_sym_cmd_identifier_token27] = ACTIONS(2501), - [aux_sym_cmd_identifier_token28] = ACTIONS(2501), - [aux_sym_cmd_identifier_token29] = ACTIONS(2501), - [aux_sym_cmd_identifier_token30] = ACTIONS(2501), - [aux_sym_cmd_identifier_token31] = ACTIONS(2501), - [aux_sym_cmd_identifier_token32] = ACTIONS(2501), - [aux_sym_cmd_identifier_token33] = ACTIONS(2501), - [aux_sym_cmd_identifier_token34] = ACTIONS(2501), - [aux_sym_cmd_identifier_token35] = ACTIONS(2501), - [aux_sym_cmd_identifier_token36] = ACTIONS(2501), - [anon_sym_true] = ACTIONS(2501), - [anon_sym_false] = ACTIONS(2501), - [anon_sym_null] = ACTIONS(2501), - [aux_sym_cmd_identifier_token38] = ACTIONS(2501), - [aux_sym_cmd_identifier_token39] = ACTIONS(2501), - [aux_sym_cmd_identifier_token40] = ACTIONS(2501), - [anon_sym_def] = ACTIONS(2501), - [anon_sym_export_DASHenv] = ACTIONS(2501), - [anon_sym_extern] = ACTIONS(2501), - [anon_sym_module] = ACTIONS(2501), - [anon_sym_use] = ACTIONS(2501), - [anon_sym_LPAREN] = ACTIONS(2501), - [anon_sym_DOLLAR] = ACTIONS(2501), - [anon_sym_error] = ACTIONS(2501), - [anon_sym_list] = ACTIONS(2501), - [anon_sym_DASH] = ACTIONS(2501), - [anon_sym_break] = ACTIONS(2501), - [anon_sym_continue] = ACTIONS(2501), - [anon_sym_for] = ACTIONS(2501), - [anon_sym_in] = ACTIONS(2501), - [anon_sym_loop] = ACTIONS(2501), - [anon_sym_make] = ACTIONS(2501), - [anon_sym_while] = ACTIONS(2501), - [anon_sym_do] = ACTIONS(2501), - [anon_sym_if] = ACTIONS(2501), - [anon_sym_else] = ACTIONS(2501), - [anon_sym_match] = ACTIONS(2501), - [anon_sym_RBRACE] = ACTIONS(2501), - [anon_sym_try] = ACTIONS(2501), - [anon_sym_catch] = ACTIONS(2501), - [anon_sym_return] = ACTIONS(2501), - [anon_sym_source] = ACTIONS(2501), - [anon_sym_source_DASHenv] = ACTIONS(2501), - [anon_sym_register] = ACTIONS(2501), - [anon_sym_hide] = ACTIONS(2501), - [anon_sym_hide_DASHenv] = ACTIONS(2501), - [anon_sym_overlay] = ACTIONS(2501), - [anon_sym_new] = ACTIONS(2501), - [anon_sym_as] = ACTIONS(2501), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2501), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2501), - [aux_sym__val_number_decimal_token1] = ACTIONS(2501), - [aux_sym__val_number_decimal_token2] = ACTIONS(2501), - [aux_sym__val_number_decimal_token3] = ACTIONS(2501), - [aux_sym__val_number_decimal_token4] = ACTIONS(2501), - [aux_sym__val_number_token1] = ACTIONS(2501), - [aux_sym__val_number_token2] = ACTIONS(2501), - [aux_sym__val_number_token3] = ACTIONS(2501), - [anon_sym_DQUOTE] = ACTIONS(2501), - [sym__str_single_quotes] = ACTIONS(2501), - [sym__str_back_ticks] = ACTIONS(2501), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2501), - [sym__entry_separator] = ACTIONS(2503), - [anon_sym_PLUS] = ACTIONS(2501), + [anon_sym_export] = ACTIONS(1078), + [anon_sym_alias] = ACTIONS(1078), + [anon_sym_let] = ACTIONS(1078), + [anon_sym_let_DASHenv] = ACTIONS(1078), + [anon_sym_mut] = ACTIONS(1078), + [anon_sym_const] = ACTIONS(1078), + [aux_sym_cmd_identifier_token1] = ACTIONS(1078), + [aux_sym_cmd_identifier_token2] = ACTIONS(1078), + [aux_sym_cmd_identifier_token3] = ACTIONS(1078), + [aux_sym_cmd_identifier_token4] = ACTIONS(1078), + [aux_sym_cmd_identifier_token5] = ACTIONS(1078), + [aux_sym_cmd_identifier_token6] = ACTIONS(1078), + [aux_sym_cmd_identifier_token7] = ACTIONS(1078), + [aux_sym_cmd_identifier_token8] = ACTIONS(1078), + [aux_sym_cmd_identifier_token9] = ACTIONS(1078), + [aux_sym_cmd_identifier_token10] = ACTIONS(1078), + [aux_sym_cmd_identifier_token11] = ACTIONS(1078), + [aux_sym_cmd_identifier_token12] = ACTIONS(1078), + [aux_sym_cmd_identifier_token13] = ACTIONS(1078), + [aux_sym_cmd_identifier_token14] = ACTIONS(1078), + [aux_sym_cmd_identifier_token15] = ACTIONS(1078), + [aux_sym_cmd_identifier_token16] = ACTIONS(1078), + [aux_sym_cmd_identifier_token17] = ACTIONS(1078), + [aux_sym_cmd_identifier_token18] = ACTIONS(1078), + [aux_sym_cmd_identifier_token19] = ACTIONS(1078), + [aux_sym_cmd_identifier_token20] = ACTIONS(1078), + [aux_sym_cmd_identifier_token21] = ACTIONS(1078), + [aux_sym_cmd_identifier_token22] = ACTIONS(1078), + [aux_sym_cmd_identifier_token23] = ACTIONS(1078), + [aux_sym_cmd_identifier_token24] = ACTIONS(1078), + [aux_sym_cmd_identifier_token25] = ACTIONS(1078), + [aux_sym_cmd_identifier_token26] = ACTIONS(1078), + [aux_sym_cmd_identifier_token27] = ACTIONS(1078), + [aux_sym_cmd_identifier_token28] = ACTIONS(1078), + [aux_sym_cmd_identifier_token29] = ACTIONS(1078), + [aux_sym_cmd_identifier_token30] = ACTIONS(1078), + [aux_sym_cmd_identifier_token31] = ACTIONS(1078), + [aux_sym_cmd_identifier_token32] = ACTIONS(1078), + [aux_sym_cmd_identifier_token33] = ACTIONS(1078), + [aux_sym_cmd_identifier_token34] = ACTIONS(1078), + [aux_sym_cmd_identifier_token35] = ACTIONS(1078), + [aux_sym_cmd_identifier_token36] = ACTIONS(1078), + [anon_sym_true] = ACTIONS(1078), + [anon_sym_false] = ACTIONS(1078), + [anon_sym_null] = ACTIONS(1078), + [aux_sym_cmd_identifier_token38] = ACTIONS(1078), + [aux_sym_cmd_identifier_token39] = ACTIONS(1078), + [aux_sym_cmd_identifier_token40] = ACTIONS(1078), + [anon_sym_def] = ACTIONS(1078), + [anon_sym_export_DASHenv] = ACTIONS(1078), + [anon_sym_extern] = ACTIONS(1078), + [anon_sym_module] = ACTIONS(1078), + [anon_sym_use] = ACTIONS(1078), + [anon_sym_LPAREN] = ACTIONS(1078), + [anon_sym_DOLLAR] = ACTIONS(1078), + [anon_sym_error] = ACTIONS(1078), + [anon_sym_list] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_break] = ACTIONS(1078), + [anon_sym_continue] = ACTIONS(1078), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_in] = ACTIONS(1078), + [anon_sym_loop] = ACTIONS(1078), + [anon_sym_make] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1078), + [anon_sym_do] = ACTIONS(1078), + [anon_sym_if] = ACTIONS(1078), + [anon_sym_else] = ACTIONS(1078), + [anon_sym_match] = ACTIONS(1078), + [anon_sym_RBRACE] = ACTIONS(1078), + [anon_sym_try] = ACTIONS(1078), + [anon_sym_catch] = ACTIONS(1078), + [anon_sym_return] = ACTIONS(1078), + [anon_sym_source] = ACTIONS(1078), + [anon_sym_source_DASHenv] = ACTIONS(1078), + [anon_sym_register] = ACTIONS(1078), + [anon_sym_hide] = ACTIONS(1078), + [anon_sym_hide_DASHenv] = ACTIONS(1078), + [anon_sym_overlay] = ACTIONS(1078), + [anon_sym_new] = ACTIONS(1078), + [anon_sym_as] = ACTIONS(1078), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1078), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1078), + [aux_sym__val_number_decimal_token1] = ACTIONS(1078), + [aux_sym__val_number_decimal_token2] = ACTIONS(1078), + [aux_sym__val_number_decimal_token3] = ACTIONS(1078), + [aux_sym__val_number_decimal_token4] = ACTIONS(1078), + [aux_sym__val_number_token1] = ACTIONS(1078), + [aux_sym__val_number_token2] = ACTIONS(1078), + [aux_sym__val_number_token3] = ACTIONS(1078), + [anon_sym_DQUOTE] = ACTIONS(1078), + [sym__str_single_quotes] = ACTIONS(1078), + [sym__str_back_ticks] = ACTIONS(1078), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1078), + [sym__entry_separator] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1078), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1080), }, [607] = { [sym_comment] = STATE(607), - [anon_sym_export] = ACTIONS(2505), - [anon_sym_alias] = ACTIONS(2505), - [anon_sym_let] = ACTIONS(2505), - [anon_sym_let_DASHenv] = ACTIONS(2505), - [anon_sym_mut] = ACTIONS(2505), - [anon_sym_const] = ACTIONS(2505), - [aux_sym_cmd_identifier_token1] = ACTIONS(2505), - [aux_sym_cmd_identifier_token2] = ACTIONS(2505), - [aux_sym_cmd_identifier_token3] = ACTIONS(2505), - [aux_sym_cmd_identifier_token4] = ACTIONS(2505), - [aux_sym_cmd_identifier_token5] = ACTIONS(2505), - [aux_sym_cmd_identifier_token6] = ACTIONS(2505), - [aux_sym_cmd_identifier_token7] = ACTIONS(2505), - [aux_sym_cmd_identifier_token8] = ACTIONS(2505), - [aux_sym_cmd_identifier_token9] = ACTIONS(2505), - [aux_sym_cmd_identifier_token10] = ACTIONS(2505), - [aux_sym_cmd_identifier_token11] = ACTIONS(2505), - [aux_sym_cmd_identifier_token12] = ACTIONS(2505), - [aux_sym_cmd_identifier_token13] = ACTIONS(2505), - [aux_sym_cmd_identifier_token14] = ACTIONS(2505), - [aux_sym_cmd_identifier_token15] = ACTIONS(2505), - [aux_sym_cmd_identifier_token16] = ACTIONS(2505), - [aux_sym_cmd_identifier_token17] = ACTIONS(2505), - [aux_sym_cmd_identifier_token18] = ACTIONS(2505), - [aux_sym_cmd_identifier_token19] = ACTIONS(2505), - [aux_sym_cmd_identifier_token20] = ACTIONS(2505), - [aux_sym_cmd_identifier_token21] = ACTIONS(2505), - [aux_sym_cmd_identifier_token22] = ACTIONS(2505), - [aux_sym_cmd_identifier_token23] = ACTIONS(2505), - [aux_sym_cmd_identifier_token24] = ACTIONS(2505), - [aux_sym_cmd_identifier_token25] = ACTIONS(2505), - [aux_sym_cmd_identifier_token26] = ACTIONS(2505), - [aux_sym_cmd_identifier_token27] = ACTIONS(2505), - [aux_sym_cmd_identifier_token28] = ACTIONS(2505), - [aux_sym_cmd_identifier_token29] = ACTIONS(2505), - [aux_sym_cmd_identifier_token30] = ACTIONS(2505), - [aux_sym_cmd_identifier_token31] = ACTIONS(2505), - [aux_sym_cmd_identifier_token32] = ACTIONS(2505), - [aux_sym_cmd_identifier_token33] = ACTIONS(2505), - [aux_sym_cmd_identifier_token34] = ACTIONS(2505), - [aux_sym_cmd_identifier_token35] = ACTIONS(2505), - [aux_sym_cmd_identifier_token36] = ACTIONS(2505), - [anon_sym_true] = ACTIONS(2505), - [anon_sym_false] = ACTIONS(2505), - [anon_sym_null] = ACTIONS(2505), - [aux_sym_cmd_identifier_token38] = ACTIONS(2505), - [aux_sym_cmd_identifier_token39] = ACTIONS(2505), - [aux_sym_cmd_identifier_token40] = ACTIONS(2505), - [anon_sym_def] = ACTIONS(2505), - [anon_sym_export_DASHenv] = ACTIONS(2505), - [anon_sym_extern] = ACTIONS(2505), - [anon_sym_module] = ACTIONS(2505), - [anon_sym_use] = ACTIONS(2505), - [anon_sym_LPAREN] = ACTIONS(2505), - [anon_sym_DOLLAR] = ACTIONS(2505), - [anon_sym_error] = ACTIONS(2505), - [anon_sym_list] = ACTIONS(2505), - [anon_sym_DASH] = ACTIONS(2505), - [anon_sym_break] = ACTIONS(2505), - [anon_sym_continue] = ACTIONS(2505), - [anon_sym_for] = ACTIONS(2505), - [anon_sym_in] = ACTIONS(2505), - [anon_sym_loop] = ACTIONS(2505), - [anon_sym_make] = ACTIONS(2505), - [anon_sym_while] = ACTIONS(2505), - [anon_sym_do] = ACTIONS(2505), - [anon_sym_if] = ACTIONS(2505), - [anon_sym_else] = ACTIONS(2505), - [anon_sym_match] = ACTIONS(2505), - [anon_sym_RBRACE] = ACTIONS(2505), - [anon_sym_try] = ACTIONS(2505), - [anon_sym_catch] = ACTIONS(2505), - [anon_sym_return] = ACTIONS(2505), - [anon_sym_source] = ACTIONS(2505), - [anon_sym_source_DASHenv] = ACTIONS(2505), - [anon_sym_register] = ACTIONS(2505), - [anon_sym_hide] = ACTIONS(2505), - [anon_sym_hide_DASHenv] = ACTIONS(2505), - [anon_sym_overlay] = ACTIONS(2505), - [anon_sym_new] = ACTIONS(2505), - [anon_sym_as] = ACTIONS(2505), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2505), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2505), - [aux_sym__val_number_decimal_token1] = ACTIONS(2505), - [aux_sym__val_number_decimal_token2] = ACTIONS(2505), - [aux_sym__val_number_decimal_token3] = ACTIONS(2505), - [aux_sym__val_number_decimal_token4] = ACTIONS(2505), - [aux_sym__val_number_token1] = ACTIONS(2505), - [aux_sym__val_number_token2] = ACTIONS(2505), - [aux_sym__val_number_token3] = ACTIONS(2505), - [anon_sym_DQUOTE] = ACTIONS(2505), - [sym__str_single_quotes] = ACTIONS(2505), - [sym__str_back_ticks] = ACTIONS(2505), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2505), - [sym__entry_separator] = ACTIONS(2507), - [anon_sym_PLUS] = ACTIONS(2505), + [anon_sym_export] = ACTIONS(2531), + [anon_sym_alias] = ACTIONS(2531), + [anon_sym_let] = ACTIONS(2531), + [anon_sym_let_DASHenv] = ACTIONS(2531), + [anon_sym_mut] = ACTIONS(2531), + [anon_sym_const] = ACTIONS(2531), + [aux_sym_cmd_identifier_token1] = ACTIONS(2531), + [aux_sym_cmd_identifier_token2] = ACTIONS(2531), + [aux_sym_cmd_identifier_token3] = ACTIONS(2531), + [aux_sym_cmd_identifier_token4] = ACTIONS(2531), + [aux_sym_cmd_identifier_token5] = ACTIONS(2531), + [aux_sym_cmd_identifier_token6] = ACTIONS(2531), + [aux_sym_cmd_identifier_token7] = ACTIONS(2531), + [aux_sym_cmd_identifier_token8] = ACTIONS(2531), + [aux_sym_cmd_identifier_token9] = ACTIONS(2531), + [aux_sym_cmd_identifier_token10] = ACTIONS(2531), + [aux_sym_cmd_identifier_token11] = ACTIONS(2531), + [aux_sym_cmd_identifier_token12] = ACTIONS(2531), + [aux_sym_cmd_identifier_token13] = ACTIONS(2531), + [aux_sym_cmd_identifier_token14] = ACTIONS(2531), + [aux_sym_cmd_identifier_token15] = ACTIONS(2531), + [aux_sym_cmd_identifier_token16] = ACTIONS(2531), + [aux_sym_cmd_identifier_token17] = ACTIONS(2531), + [aux_sym_cmd_identifier_token18] = ACTIONS(2531), + [aux_sym_cmd_identifier_token19] = ACTIONS(2531), + [aux_sym_cmd_identifier_token20] = ACTIONS(2531), + [aux_sym_cmd_identifier_token21] = ACTIONS(2531), + [aux_sym_cmd_identifier_token22] = ACTIONS(2531), + [aux_sym_cmd_identifier_token23] = ACTIONS(2531), + [aux_sym_cmd_identifier_token24] = ACTIONS(2531), + [aux_sym_cmd_identifier_token25] = ACTIONS(2531), + [aux_sym_cmd_identifier_token26] = ACTIONS(2531), + [aux_sym_cmd_identifier_token27] = ACTIONS(2531), + [aux_sym_cmd_identifier_token28] = ACTIONS(2531), + [aux_sym_cmd_identifier_token29] = ACTIONS(2531), + [aux_sym_cmd_identifier_token30] = ACTIONS(2531), + [aux_sym_cmd_identifier_token31] = ACTIONS(2531), + [aux_sym_cmd_identifier_token32] = ACTIONS(2531), + [aux_sym_cmd_identifier_token33] = ACTIONS(2531), + [aux_sym_cmd_identifier_token34] = ACTIONS(2531), + [aux_sym_cmd_identifier_token35] = ACTIONS(2531), + [aux_sym_cmd_identifier_token36] = ACTIONS(2531), + [anon_sym_true] = ACTIONS(2531), + [anon_sym_false] = ACTIONS(2531), + [anon_sym_null] = ACTIONS(2531), + [aux_sym_cmd_identifier_token38] = ACTIONS(2531), + [aux_sym_cmd_identifier_token39] = ACTIONS(2531), + [aux_sym_cmd_identifier_token40] = ACTIONS(2531), + [anon_sym_def] = ACTIONS(2531), + [anon_sym_export_DASHenv] = ACTIONS(2531), + [anon_sym_extern] = ACTIONS(2531), + [anon_sym_module] = ACTIONS(2531), + [anon_sym_use] = ACTIONS(2531), + [anon_sym_LPAREN] = ACTIONS(2531), + [anon_sym_DOLLAR] = ACTIONS(2531), + [anon_sym_error] = ACTIONS(2531), + [anon_sym_list] = ACTIONS(2531), + [anon_sym_DASH] = ACTIONS(2531), + [anon_sym_break] = ACTIONS(2531), + [anon_sym_continue] = ACTIONS(2531), + [anon_sym_for] = ACTIONS(2531), + [anon_sym_in] = ACTIONS(2531), + [anon_sym_loop] = ACTIONS(2531), + [anon_sym_make] = ACTIONS(2531), + [anon_sym_while] = ACTIONS(2531), + [anon_sym_do] = ACTIONS(2531), + [anon_sym_if] = ACTIONS(2531), + [anon_sym_else] = ACTIONS(2531), + [anon_sym_match] = ACTIONS(2531), + [anon_sym_RBRACE] = ACTIONS(2531), + [anon_sym_try] = ACTIONS(2531), + [anon_sym_catch] = ACTIONS(2531), + [anon_sym_return] = ACTIONS(2531), + [anon_sym_source] = ACTIONS(2531), + [anon_sym_source_DASHenv] = ACTIONS(2531), + [anon_sym_register] = ACTIONS(2531), + [anon_sym_hide] = ACTIONS(2531), + [anon_sym_hide_DASHenv] = ACTIONS(2531), + [anon_sym_overlay] = ACTIONS(2531), + [anon_sym_new] = ACTIONS(2531), + [anon_sym_as] = ACTIONS(2531), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2531), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2531), + [aux_sym__val_number_decimal_token1] = ACTIONS(2531), + [aux_sym__val_number_decimal_token2] = ACTIONS(2531), + [aux_sym__val_number_decimal_token3] = ACTIONS(2531), + [aux_sym__val_number_decimal_token4] = ACTIONS(2531), + [aux_sym__val_number_token1] = ACTIONS(2531), + [aux_sym__val_number_token2] = ACTIONS(2531), + [aux_sym__val_number_token3] = ACTIONS(2531), + [anon_sym_DQUOTE] = ACTIONS(2531), + [sym__str_single_quotes] = ACTIONS(2531), + [sym__str_back_ticks] = ACTIONS(2531), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2531), + [sym__entry_separator] = ACTIONS(2533), + [anon_sym_PLUS] = ACTIONS(2531), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2533), }, [608] = { [sym_comment] = STATE(608), - [anon_sym_export] = ACTIONS(2509), - [anon_sym_alias] = ACTIONS(2509), - [anon_sym_let] = ACTIONS(2509), - [anon_sym_let_DASHenv] = ACTIONS(2509), - [anon_sym_mut] = ACTIONS(2509), - [anon_sym_const] = ACTIONS(2509), - [aux_sym_cmd_identifier_token1] = ACTIONS(2509), - [aux_sym_cmd_identifier_token2] = ACTIONS(2509), - [aux_sym_cmd_identifier_token3] = ACTIONS(2509), - [aux_sym_cmd_identifier_token4] = ACTIONS(2509), - [aux_sym_cmd_identifier_token5] = ACTIONS(2509), - [aux_sym_cmd_identifier_token6] = ACTIONS(2509), - [aux_sym_cmd_identifier_token7] = ACTIONS(2509), - [aux_sym_cmd_identifier_token8] = ACTIONS(2509), - [aux_sym_cmd_identifier_token9] = ACTIONS(2509), - [aux_sym_cmd_identifier_token10] = ACTIONS(2509), - [aux_sym_cmd_identifier_token11] = ACTIONS(2509), - [aux_sym_cmd_identifier_token12] = ACTIONS(2509), - [aux_sym_cmd_identifier_token13] = ACTIONS(2509), - [aux_sym_cmd_identifier_token14] = ACTIONS(2509), - [aux_sym_cmd_identifier_token15] = ACTIONS(2509), - [aux_sym_cmd_identifier_token16] = ACTIONS(2509), - [aux_sym_cmd_identifier_token17] = ACTIONS(2509), - [aux_sym_cmd_identifier_token18] = ACTIONS(2509), - [aux_sym_cmd_identifier_token19] = ACTIONS(2509), - [aux_sym_cmd_identifier_token20] = ACTIONS(2509), - [aux_sym_cmd_identifier_token21] = ACTIONS(2509), - [aux_sym_cmd_identifier_token22] = ACTIONS(2509), - [aux_sym_cmd_identifier_token23] = ACTIONS(2509), - [aux_sym_cmd_identifier_token24] = ACTIONS(2509), - [aux_sym_cmd_identifier_token25] = ACTIONS(2509), - [aux_sym_cmd_identifier_token26] = ACTIONS(2509), - [aux_sym_cmd_identifier_token27] = ACTIONS(2509), - [aux_sym_cmd_identifier_token28] = ACTIONS(2509), - [aux_sym_cmd_identifier_token29] = ACTIONS(2509), - [aux_sym_cmd_identifier_token30] = ACTIONS(2509), - [aux_sym_cmd_identifier_token31] = ACTIONS(2509), - [aux_sym_cmd_identifier_token32] = ACTIONS(2509), - [aux_sym_cmd_identifier_token33] = ACTIONS(2509), - [aux_sym_cmd_identifier_token34] = ACTIONS(2509), - [aux_sym_cmd_identifier_token35] = ACTIONS(2509), - [aux_sym_cmd_identifier_token36] = ACTIONS(2509), - [anon_sym_true] = ACTIONS(2509), - [anon_sym_false] = ACTIONS(2509), - [anon_sym_null] = ACTIONS(2509), - [aux_sym_cmd_identifier_token38] = ACTIONS(2509), - [aux_sym_cmd_identifier_token39] = ACTIONS(2509), - [aux_sym_cmd_identifier_token40] = ACTIONS(2509), - [anon_sym_def] = ACTIONS(2509), - [anon_sym_export_DASHenv] = ACTIONS(2509), - [anon_sym_extern] = ACTIONS(2509), - [anon_sym_module] = ACTIONS(2509), - [anon_sym_use] = ACTIONS(2509), - [anon_sym_LPAREN] = ACTIONS(2509), - [anon_sym_DOLLAR] = ACTIONS(2509), - [anon_sym_error] = ACTIONS(2509), - [anon_sym_list] = ACTIONS(2509), - [anon_sym_DASH] = ACTIONS(2509), - [anon_sym_break] = ACTIONS(2509), - [anon_sym_continue] = ACTIONS(2509), - [anon_sym_for] = ACTIONS(2509), - [anon_sym_in] = ACTIONS(2509), - [anon_sym_loop] = ACTIONS(2509), - [anon_sym_make] = ACTIONS(2509), - [anon_sym_while] = ACTIONS(2509), - [anon_sym_do] = ACTIONS(2509), - [anon_sym_if] = ACTIONS(2509), - [anon_sym_else] = ACTIONS(2509), - [anon_sym_match] = ACTIONS(2509), - [anon_sym_RBRACE] = ACTIONS(2509), - [anon_sym_try] = ACTIONS(2509), - [anon_sym_catch] = ACTIONS(2509), - [anon_sym_return] = ACTIONS(2509), - [anon_sym_source] = ACTIONS(2509), - [anon_sym_source_DASHenv] = ACTIONS(2509), - [anon_sym_register] = ACTIONS(2509), - [anon_sym_hide] = ACTIONS(2509), - [anon_sym_hide_DASHenv] = ACTIONS(2509), - [anon_sym_overlay] = ACTIONS(2509), - [anon_sym_new] = ACTIONS(2509), - [anon_sym_as] = ACTIONS(2509), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2509), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2509), - [aux_sym__val_number_decimal_token1] = ACTIONS(2509), - [aux_sym__val_number_decimal_token2] = ACTIONS(2509), - [aux_sym__val_number_decimal_token3] = ACTIONS(2509), - [aux_sym__val_number_decimal_token4] = ACTIONS(2509), - [aux_sym__val_number_token1] = ACTIONS(2509), - [aux_sym__val_number_token2] = ACTIONS(2509), - [aux_sym__val_number_token3] = ACTIONS(2509), - [anon_sym_DQUOTE] = ACTIONS(2509), - [sym__str_single_quotes] = ACTIONS(2509), - [sym__str_back_ticks] = ACTIONS(2509), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2509), - [sym__entry_separator] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2509), + [anon_sym_export] = ACTIONS(2535), + [anon_sym_alias] = ACTIONS(2535), + [anon_sym_let] = ACTIONS(2535), + [anon_sym_let_DASHenv] = ACTIONS(2535), + [anon_sym_mut] = ACTIONS(2535), + [anon_sym_const] = ACTIONS(2535), + [aux_sym_cmd_identifier_token1] = ACTIONS(2535), + [aux_sym_cmd_identifier_token2] = ACTIONS(2535), + [aux_sym_cmd_identifier_token3] = ACTIONS(2535), + [aux_sym_cmd_identifier_token4] = ACTIONS(2535), + [aux_sym_cmd_identifier_token5] = ACTIONS(2535), + [aux_sym_cmd_identifier_token6] = ACTIONS(2535), + [aux_sym_cmd_identifier_token7] = ACTIONS(2535), + [aux_sym_cmd_identifier_token8] = ACTIONS(2535), + [aux_sym_cmd_identifier_token9] = ACTIONS(2535), + [aux_sym_cmd_identifier_token10] = ACTIONS(2535), + [aux_sym_cmd_identifier_token11] = ACTIONS(2535), + [aux_sym_cmd_identifier_token12] = ACTIONS(2535), + [aux_sym_cmd_identifier_token13] = ACTIONS(2535), + [aux_sym_cmd_identifier_token14] = ACTIONS(2535), + [aux_sym_cmd_identifier_token15] = ACTIONS(2535), + [aux_sym_cmd_identifier_token16] = ACTIONS(2535), + [aux_sym_cmd_identifier_token17] = ACTIONS(2535), + [aux_sym_cmd_identifier_token18] = ACTIONS(2535), + [aux_sym_cmd_identifier_token19] = ACTIONS(2535), + [aux_sym_cmd_identifier_token20] = ACTIONS(2535), + [aux_sym_cmd_identifier_token21] = ACTIONS(2535), + [aux_sym_cmd_identifier_token22] = ACTIONS(2535), + [aux_sym_cmd_identifier_token23] = ACTIONS(2535), + [aux_sym_cmd_identifier_token24] = ACTIONS(2535), + [aux_sym_cmd_identifier_token25] = ACTIONS(2535), + [aux_sym_cmd_identifier_token26] = ACTIONS(2535), + [aux_sym_cmd_identifier_token27] = ACTIONS(2535), + [aux_sym_cmd_identifier_token28] = ACTIONS(2535), + [aux_sym_cmd_identifier_token29] = ACTIONS(2535), + [aux_sym_cmd_identifier_token30] = ACTIONS(2535), + [aux_sym_cmd_identifier_token31] = ACTIONS(2535), + [aux_sym_cmd_identifier_token32] = ACTIONS(2535), + [aux_sym_cmd_identifier_token33] = ACTIONS(2535), + [aux_sym_cmd_identifier_token34] = ACTIONS(2535), + [aux_sym_cmd_identifier_token35] = ACTIONS(2535), + [aux_sym_cmd_identifier_token36] = ACTIONS(2535), + [anon_sym_true] = ACTIONS(2535), + [anon_sym_false] = ACTIONS(2535), + [anon_sym_null] = ACTIONS(2535), + [aux_sym_cmd_identifier_token38] = ACTIONS(2535), + [aux_sym_cmd_identifier_token39] = ACTIONS(2535), + [aux_sym_cmd_identifier_token40] = ACTIONS(2535), + [anon_sym_def] = ACTIONS(2535), + [anon_sym_export_DASHenv] = ACTIONS(2535), + [anon_sym_extern] = ACTIONS(2535), + [anon_sym_module] = ACTIONS(2535), + [anon_sym_use] = ACTIONS(2535), + [anon_sym_LPAREN] = ACTIONS(2535), + [anon_sym_DOLLAR] = ACTIONS(2535), + [anon_sym_error] = ACTIONS(2535), + [anon_sym_list] = ACTIONS(2535), + [anon_sym_DASH] = ACTIONS(2535), + [anon_sym_break] = ACTIONS(2535), + [anon_sym_continue] = ACTIONS(2535), + [anon_sym_for] = ACTIONS(2535), + [anon_sym_in] = ACTIONS(2535), + [anon_sym_loop] = ACTIONS(2535), + [anon_sym_make] = ACTIONS(2535), + [anon_sym_while] = ACTIONS(2535), + [anon_sym_do] = ACTIONS(2535), + [anon_sym_if] = ACTIONS(2535), + [anon_sym_else] = ACTIONS(2535), + [anon_sym_match] = ACTIONS(2535), + [anon_sym_RBRACE] = ACTIONS(2535), + [anon_sym_try] = ACTIONS(2535), + [anon_sym_catch] = ACTIONS(2535), + [anon_sym_return] = ACTIONS(2535), + [anon_sym_source] = ACTIONS(2535), + [anon_sym_source_DASHenv] = ACTIONS(2535), + [anon_sym_register] = ACTIONS(2535), + [anon_sym_hide] = ACTIONS(2535), + [anon_sym_hide_DASHenv] = ACTIONS(2535), + [anon_sym_overlay] = ACTIONS(2535), + [anon_sym_new] = ACTIONS(2535), + [anon_sym_as] = ACTIONS(2535), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2535), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2535), + [aux_sym__val_number_decimal_token1] = ACTIONS(2535), + [aux_sym__val_number_decimal_token2] = ACTIONS(2535), + [aux_sym__val_number_decimal_token3] = ACTIONS(2535), + [aux_sym__val_number_decimal_token4] = ACTIONS(2535), + [aux_sym__val_number_token1] = ACTIONS(2535), + [aux_sym__val_number_token2] = ACTIONS(2535), + [aux_sym__val_number_token3] = ACTIONS(2535), + [anon_sym_DQUOTE] = ACTIONS(2535), + [sym__str_single_quotes] = ACTIONS(2535), + [sym__str_back_ticks] = ACTIONS(2535), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2535), + [sym__entry_separator] = ACTIONS(2537), + [anon_sym_PLUS] = ACTIONS(2535), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2537), }, [609] = { [sym_comment] = STATE(609), - [anon_sym_export] = ACTIONS(2513), - [anon_sym_alias] = ACTIONS(2513), - [anon_sym_let] = ACTIONS(2513), - [anon_sym_let_DASHenv] = ACTIONS(2513), - [anon_sym_mut] = ACTIONS(2513), - [anon_sym_const] = ACTIONS(2513), - [aux_sym_cmd_identifier_token1] = ACTIONS(2513), - [aux_sym_cmd_identifier_token2] = ACTIONS(2513), - [aux_sym_cmd_identifier_token3] = ACTIONS(2513), - [aux_sym_cmd_identifier_token4] = ACTIONS(2513), - [aux_sym_cmd_identifier_token5] = ACTIONS(2513), - [aux_sym_cmd_identifier_token6] = ACTIONS(2513), - [aux_sym_cmd_identifier_token7] = ACTIONS(2513), - [aux_sym_cmd_identifier_token8] = ACTIONS(2513), - [aux_sym_cmd_identifier_token9] = ACTIONS(2513), - [aux_sym_cmd_identifier_token10] = ACTIONS(2513), - [aux_sym_cmd_identifier_token11] = ACTIONS(2513), - [aux_sym_cmd_identifier_token12] = ACTIONS(2513), - [aux_sym_cmd_identifier_token13] = ACTIONS(2513), - [aux_sym_cmd_identifier_token14] = ACTIONS(2513), - [aux_sym_cmd_identifier_token15] = ACTIONS(2513), - [aux_sym_cmd_identifier_token16] = ACTIONS(2513), - [aux_sym_cmd_identifier_token17] = ACTIONS(2513), - [aux_sym_cmd_identifier_token18] = ACTIONS(2513), - [aux_sym_cmd_identifier_token19] = ACTIONS(2513), - [aux_sym_cmd_identifier_token20] = ACTIONS(2513), - [aux_sym_cmd_identifier_token21] = ACTIONS(2513), - [aux_sym_cmd_identifier_token22] = ACTIONS(2513), - [aux_sym_cmd_identifier_token23] = ACTIONS(2513), - [aux_sym_cmd_identifier_token24] = ACTIONS(2513), - [aux_sym_cmd_identifier_token25] = ACTIONS(2513), - [aux_sym_cmd_identifier_token26] = ACTIONS(2513), - [aux_sym_cmd_identifier_token27] = ACTIONS(2513), - [aux_sym_cmd_identifier_token28] = ACTIONS(2513), - [aux_sym_cmd_identifier_token29] = ACTIONS(2513), - [aux_sym_cmd_identifier_token30] = ACTIONS(2513), - [aux_sym_cmd_identifier_token31] = ACTIONS(2513), - [aux_sym_cmd_identifier_token32] = ACTIONS(2513), - [aux_sym_cmd_identifier_token33] = ACTIONS(2513), - [aux_sym_cmd_identifier_token34] = ACTIONS(2513), - [aux_sym_cmd_identifier_token35] = ACTIONS(2513), - [aux_sym_cmd_identifier_token36] = ACTIONS(2513), - [anon_sym_true] = ACTIONS(2513), - [anon_sym_false] = ACTIONS(2513), - [anon_sym_null] = ACTIONS(2513), - [aux_sym_cmd_identifier_token38] = ACTIONS(2513), - [aux_sym_cmd_identifier_token39] = ACTIONS(2513), - [aux_sym_cmd_identifier_token40] = ACTIONS(2513), - [anon_sym_def] = ACTIONS(2513), - [anon_sym_export_DASHenv] = ACTIONS(2513), - [anon_sym_extern] = ACTIONS(2513), - [anon_sym_module] = ACTIONS(2513), - [anon_sym_use] = ACTIONS(2513), - [anon_sym_LPAREN] = ACTIONS(2513), - [anon_sym_DOLLAR] = ACTIONS(2513), - [anon_sym_error] = ACTIONS(2513), - [anon_sym_list] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2513), - [anon_sym_break] = ACTIONS(2513), - [anon_sym_continue] = ACTIONS(2513), - [anon_sym_for] = ACTIONS(2513), - [anon_sym_in] = ACTIONS(2513), - [anon_sym_loop] = ACTIONS(2513), - [anon_sym_make] = ACTIONS(2513), - [anon_sym_while] = ACTIONS(2513), - [anon_sym_do] = ACTIONS(2513), - [anon_sym_if] = ACTIONS(2513), - [anon_sym_else] = ACTIONS(2513), - [anon_sym_match] = ACTIONS(2513), - [anon_sym_RBRACE] = ACTIONS(2513), - [anon_sym_try] = ACTIONS(2513), - [anon_sym_catch] = ACTIONS(2513), - [anon_sym_return] = ACTIONS(2513), - [anon_sym_source] = ACTIONS(2513), - [anon_sym_source_DASHenv] = ACTIONS(2513), - [anon_sym_register] = ACTIONS(2513), - [anon_sym_hide] = ACTIONS(2513), - [anon_sym_hide_DASHenv] = ACTIONS(2513), - [anon_sym_overlay] = ACTIONS(2513), - [anon_sym_new] = ACTIONS(2513), - [anon_sym_as] = ACTIONS(2513), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2513), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2513), - [aux_sym__val_number_decimal_token1] = ACTIONS(2513), - [aux_sym__val_number_decimal_token2] = ACTIONS(2513), - [aux_sym__val_number_decimal_token3] = ACTIONS(2513), - [aux_sym__val_number_decimal_token4] = ACTIONS(2513), - [aux_sym__val_number_token1] = ACTIONS(2513), - [aux_sym__val_number_token2] = ACTIONS(2513), - [aux_sym__val_number_token3] = ACTIONS(2513), - [anon_sym_DQUOTE] = ACTIONS(2513), - [sym__str_single_quotes] = ACTIONS(2513), - [sym__str_back_ticks] = ACTIONS(2513), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2513), - [sym__entry_separator] = ACTIONS(2515), - [anon_sym_PLUS] = ACTIONS(2513), + [anon_sym_export] = ACTIONS(1909), + [anon_sym_alias] = ACTIONS(1909), + [anon_sym_let] = ACTIONS(1909), + [anon_sym_let_DASHenv] = ACTIONS(1909), + [anon_sym_mut] = ACTIONS(1909), + [anon_sym_const] = ACTIONS(1909), + [aux_sym_cmd_identifier_token1] = ACTIONS(1909), + [aux_sym_cmd_identifier_token2] = ACTIONS(1909), + [aux_sym_cmd_identifier_token3] = ACTIONS(1909), + [aux_sym_cmd_identifier_token4] = ACTIONS(1909), + [aux_sym_cmd_identifier_token5] = ACTIONS(1909), + [aux_sym_cmd_identifier_token6] = ACTIONS(1909), + [aux_sym_cmd_identifier_token7] = ACTIONS(1909), + [aux_sym_cmd_identifier_token8] = ACTIONS(1909), + [aux_sym_cmd_identifier_token9] = ACTIONS(1909), + [aux_sym_cmd_identifier_token10] = ACTIONS(1909), + [aux_sym_cmd_identifier_token11] = ACTIONS(1909), + [aux_sym_cmd_identifier_token12] = ACTIONS(1909), + [aux_sym_cmd_identifier_token13] = ACTIONS(1909), + [aux_sym_cmd_identifier_token14] = ACTIONS(1909), + [aux_sym_cmd_identifier_token15] = ACTIONS(1909), + [aux_sym_cmd_identifier_token16] = ACTIONS(1909), + [aux_sym_cmd_identifier_token17] = ACTIONS(1909), + [aux_sym_cmd_identifier_token18] = ACTIONS(1909), + [aux_sym_cmd_identifier_token19] = ACTIONS(1909), + [aux_sym_cmd_identifier_token20] = ACTIONS(1909), + [aux_sym_cmd_identifier_token21] = ACTIONS(1909), + [aux_sym_cmd_identifier_token22] = ACTIONS(1909), + [aux_sym_cmd_identifier_token23] = ACTIONS(1909), + [aux_sym_cmd_identifier_token24] = ACTIONS(1909), + [aux_sym_cmd_identifier_token25] = ACTIONS(1909), + [aux_sym_cmd_identifier_token26] = ACTIONS(1909), + [aux_sym_cmd_identifier_token27] = ACTIONS(1909), + [aux_sym_cmd_identifier_token28] = ACTIONS(1909), + [aux_sym_cmd_identifier_token29] = ACTIONS(1909), + [aux_sym_cmd_identifier_token30] = ACTIONS(1909), + [aux_sym_cmd_identifier_token31] = ACTIONS(1909), + [aux_sym_cmd_identifier_token32] = ACTIONS(1909), + [aux_sym_cmd_identifier_token33] = ACTIONS(1909), + [aux_sym_cmd_identifier_token34] = ACTIONS(1909), + [aux_sym_cmd_identifier_token35] = ACTIONS(1909), + [aux_sym_cmd_identifier_token36] = ACTIONS(1909), + [anon_sym_true] = ACTIONS(1909), + [anon_sym_false] = ACTIONS(1909), + [anon_sym_null] = ACTIONS(1909), + [aux_sym_cmd_identifier_token38] = ACTIONS(1909), + [aux_sym_cmd_identifier_token39] = ACTIONS(1909), + [aux_sym_cmd_identifier_token40] = ACTIONS(1909), + [anon_sym_def] = ACTIONS(1909), + [anon_sym_export_DASHenv] = ACTIONS(1909), + [anon_sym_extern] = ACTIONS(1909), + [anon_sym_module] = ACTIONS(1909), + [anon_sym_use] = ACTIONS(1909), + [anon_sym_LPAREN] = ACTIONS(1909), + [anon_sym_DOLLAR] = ACTIONS(1909), + [anon_sym_error] = ACTIONS(1909), + [anon_sym_list] = ACTIONS(1909), + [anon_sym_DASH] = ACTIONS(1909), + [anon_sym_break] = ACTIONS(1909), + [anon_sym_continue] = ACTIONS(1909), + [anon_sym_for] = ACTIONS(1909), + [anon_sym_in] = ACTIONS(1909), + [anon_sym_loop] = ACTIONS(1909), + [anon_sym_make] = ACTIONS(1909), + [anon_sym_while] = ACTIONS(1909), + [anon_sym_do] = ACTIONS(1909), + [anon_sym_if] = ACTIONS(1909), + [anon_sym_else] = ACTIONS(1909), + [anon_sym_match] = ACTIONS(1909), + [anon_sym_RBRACE] = ACTIONS(1909), + [anon_sym_try] = ACTIONS(1909), + [anon_sym_catch] = ACTIONS(1909), + [anon_sym_return] = ACTIONS(1909), + [anon_sym_source] = ACTIONS(1909), + [anon_sym_source_DASHenv] = ACTIONS(1909), + [anon_sym_register] = ACTIONS(1909), + [anon_sym_hide] = ACTIONS(1909), + [anon_sym_hide_DASHenv] = ACTIONS(1909), + [anon_sym_overlay] = ACTIONS(1909), + [anon_sym_new] = ACTIONS(1909), + [anon_sym_as] = ACTIONS(1909), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1909), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1909), + [aux_sym__val_number_decimal_token1] = ACTIONS(1909), + [aux_sym__val_number_decimal_token2] = ACTIONS(1909), + [aux_sym__val_number_decimal_token3] = ACTIONS(1909), + [aux_sym__val_number_decimal_token4] = ACTIONS(1909), + [aux_sym__val_number_token1] = ACTIONS(1909), + [aux_sym__val_number_token2] = ACTIONS(1909), + [aux_sym__val_number_token3] = ACTIONS(1909), + [anon_sym_DQUOTE] = ACTIONS(1909), + [sym__str_single_quotes] = ACTIONS(1909), + [sym__str_back_ticks] = ACTIONS(1909), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1909), + [sym__entry_separator] = ACTIONS(1911), + [anon_sym_PLUS] = ACTIONS(1909), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1911), }, [610] = { [sym_comment] = STATE(610), - [anon_sym_export] = ACTIONS(1042), - [anon_sym_alias] = ACTIONS(1042), - [anon_sym_let] = ACTIONS(1042), - [anon_sym_let_DASHenv] = ACTIONS(1042), - [anon_sym_mut] = ACTIONS(1042), - [anon_sym_const] = ACTIONS(1042), - [aux_sym_cmd_identifier_token1] = ACTIONS(1042), - [aux_sym_cmd_identifier_token2] = ACTIONS(1042), - [aux_sym_cmd_identifier_token3] = ACTIONS(1042), - [aux_sym_cmd_identifier_token4] = ACTIONS(1042), - [aux_sym_cmd_identifier_token5] = ACTIONS(1042), - [aux_sym_cmd_identifier_token6] = ACTIONS(1042), - [aux_sym_cmd_identifier_token7] = ACTIONS(1042), - [aux_sym_cmd_identifier_token8] = ACTIONS(1042), - [aux_sym_cmd_identifier_token9] = ACTIONS(1042), - [aux_sym_cmd_identifier_token10] = ACTIONS(1042), - [aux_sym_cmd_identifier_token11] = ACTIONS(1042), - [aux_sym_cmd_identifier_token12] = ACTIONS(1042), - [aux_sym_cmd_identifier_token13] = ACTIONS(1042), - [aux_sym_cmd_identifier_token14] = ACTIONS(1042), - [aux_sym_cmd_identifier_token15] = ACTIONS(1042), - [aux_sym_cmd_identifier_token16] = ACTIONS(1042), - [aux_sym_cmd_identifier_token17] = ACTIONS(1042), - [aux_sym_cmd_identifier_token18] = ACTIONS(1042), - [aux_sym_cmd_identifier_token19] = ACTIONS(1042), - [aux_sym_cmd_identifier_token20] = ACTIONS(1042), - [aux_sym_cmd_identifier_token21] = ACTIONS(1042), - [aux_sym_cmd_identifier_token22] = ACTIONS(1042), - [aux_sym_cmd_identifier_token23] = ACTIONS(1042), - [aux_sym_cmd_identifier_token24] = ACTIONS(1042), - [aux_sym_cmd_identifier_token25] = ACTIONS(1042), - [aux_sym_cmd_identifier_token26] = ACTIONS(1042), - [aux_sym_cmd_identifier_token27] = ACTIONS(1042), - [aux_sym_cmd_identifier_token28] = ACTIONS(1042), - [aux_sym_cmd_identifier_token29] = ACTIONS(1042), - [aux_sym_cmd_identifier_token30] = ACTIONS(1042), - [aux_sym_cmd_identifier_token31] = ACTIONS(1042), - [aux_sym_cmd_identifier_token32] = ACTIONS(1042), - [aux_sym_cmd_identifier_token33] = ACTIONS(1042), - [aux_sym_cmd_identifier_token34] = ACTIONS(1042), - [aux_sym_cmd_identifier_token35] = ACTIONS(1042), - [aux_sym_cmd_identifier_token36] = ACTIONS(1042), - [anon_sym_true] = ACTIONS(1042), - [anon_sym_false] = ACTIONS(1042), - [anon_sym_null] = ACTIONS(1042), - [aux_sym_cmd_identifier_token38] = ACTIONS(1042), - [aux_sym_cmd_identifier_token39] = ACTIONS(1042), - [aux_sym_cmd_identifier_token40] = ACTIONS(1042), - [anon_sym_def] = ACTIONS(1042), - [anon_sym_export_DASHenv] = ACTIONS(1042), - [anon_sym_extern] = ACTIONS(1042), - [anon_sym_module] = ACTIONS(1042), - [anon_sym_use] = ACTIONS(1042), - [anon_sym_LPAREN] = ACTIONS(1042), - [anon_sym_DOLLAR] = ACTIONS(1042), - [anon_sym_error] = ACTIONS(1042), - [anon_sym_list] = ACTIONS(1042), - [anon_sym_DASH] = ACTIONS(1042), - [anon_sym_break] = ACTIONS(1042), - [anon_sym_continue] = ACTIONS(1042), - [anon_sym_for] = ACTIONS(1042), - [anon_sym_in] = ACTIONS(1042), - [anon_sym_loop] = ACTIONS(1042), - [anon_sym_make] = ACTIONS(1042), - [anon_sym_while] = ACTIONS(1042), - [anon_sym_do] = ACTIONS(1042), - [anon_sym_if] = ACTIONS(1042), - [anon_sym_else] = ACTIONS(1042), - [anon_sym_match] = ACTIONS(1042), - [anon_sym_RBRACE] = ACTIONS(1042), - [anon_sym_try] = ACTIONS(1042), - [anon_sym_catch] = ACTIONS(1042), - [anon_sym_return] = ACTIONS(1042), - [anon_sym_source] = ACTIONS(1042), - [anon_sym_source_DASHenv] = ACTIONS(1042), - [anon_sym_register] = ACTIONS(1042), - [anon_sym_hide] = ACTIONS(1042), - [anon_sym_hide_DASHenv] = ACTIONS(1042), - [anon_sym_overlay] = ACTIONS(1042), - [anon_sym_new] = ACTIONS(1042), - [anon_sym_as] = ACTIONS(1042), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1042), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1042), - [aux_sym__val_number_decimal_token1] = ACTIONS(1042), - [aux_sym__val_number_decimal_token2] = ACTIONS(1042), - [aux_sym__val_number_decimal_token3] = ACTIONS(1042), - [aux_sym__val_number_decimal_token4] = ACTIONS(1042), - [aux_sym__val_number_token1] = ACTIONS(1042), - [aux_sym__val_number_token2] = ACTIONS(1042), - [aux_sym__val_number_token3] = ACTIONS(1042), - [anon_sym_DQUOTE] = ACTIONS(1042), - [sym__str_single_quotes] = ACTIONS(1042), - [sym__str_back_ticks] = ACTIONS(1042), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1042), - [sym__entry_separator] = ACTIONS(1044), - [anon_sym_PLUS] = ACTIONS(1042), + [anon_sym_export] = ACTIONS(2539), + [anon_sym_alias] = ACTIONS(2539), + [anon_sym_let] = ACTIONS(2539), + [anon_sym_let_DASHenv] = ACTIONS(2539), + [anon_sym_mut] = ACTIONS(2539), + [anon_sym_const] = ACTIONS(2539), + [aux_sym_cmd_identifier_token1] = ACTIONS(2539), + [aux_sym_cmd_identifier_token2] = ACTIONS(2539), + [aux_sym_cmd_identifier_token3] = ACTIONS(2539), + [aux_sym_cmd_identifier_token4] = ACTIONS(2539), + [aux_sym_cmd_identifier_token5] = ACTIONS(2539), + [aux_sym_cmd_identifier_token6] = ACTIONS(2539), + [aux_sym_cmd_identifier_token7] = ACTIONS(2539), + [aux_sym_cmd_identifier_token8] = ACTIONS(2539), + [aux_sym_cmd_identifier_token9] = ACTIONS(2539), + [aux_sym_cmd_identifier_token10] = ACTIONS(2539), + [aux_sym_cmd_identifier_token11] = ACTIONS(2539), + [aux_sym_cmd_identifier_token12] = ACTIONS(2539), + [aux_sym_cmd_identifier_token13] = ACTIONS(2539), + [aux_sym_cmd_identifier_token14] = ACTIONS(2539), + [aux_sym_cmd_identifier_token15] = ACTIONS(2539), + [aux_sym_cmd_identifier_token16] = ACTIONS(2539), + [aux_sym_cmd_identifier_token17] = ACTIONS(2539), + [aux_sym_cmd_identifier_token18] = ACTIONS(2539), + [aux_sym_cmd_identifier_token19] = ACTIONS(2539), + [aux_sym_cmd_identifier_token20] = ACTIONS(2539), + [aux_sym_cmd_identifier_token21] = ACTIONS(2539), + [aux_sym_cmd_identifier_token22] = ACTIONS(2539), + [aux_sym_cmd_identifier_token23] = ACTIONS(2539), + [aux_sym_cmd_identifier_token24] = ACTIONS(2539), + [aux_sym_cmd_identifier_token25] = ACTIONS(2539), + [aux_sym_cmd_identifier_token26] = ACTIONS(2539), + [aux_sym_cmd_identifier_token27] = ACTIONS(2539), + [aux_sym_cmd_identifier_token28] = ACTIONS(2539), + [aux_sym_cmd_identifier_token29] = ACTIONS(2539), + [aux_sym_cmd_identifier_token30] = ACTIONS(2539), + [aux_sym_cmd_identifier_token31] = ACTIONS(2539), + [aux_sym_cmd_identifier_token32] = ACTIONS(2539), + [aux_sym_cmd_identifier_token33] = ACTIONS(2539), + [aux_sym_cmd_identifier_token34] = ACTIONS(2539), + [aux_sym_cmd_identifier_token35] = ACTIONS(2539), + [aux_sym_cmd_identifier_token36] = ACTIONS(2539), + [anon_sym_true] = ACTIONS(2539), + [anon_sym_false] = ACTIONS(2539), + [anon_sym_null] = ACTIONS(2539), + [aux_sym_cmd_identifier_token38] = ACTIONS(2539), + [aux_sym_cmd_identifier_token39] = ACTIONS(2539), + [aux_sym_cmd_identifier_token40] = ACTIONS(2539), + [anon_sym_def] = ACTIONS(2539), + [anon_sym_export_DASHenv] = ACTIONS(2539), + [anon_sym_extern] = ACTIONS(2539), + [anon_sym_module] = ACTIONS(2539), + [anon_sym_use] = ACTIONS(2539), + [anon_sym_LPAREN] = ACTIONS(2539), + [anon_sym_DOLLAR] = ACTIONS(2539), + [anon_sym_error] = ACTIONS(2539), + [anon_sym_list] = ACTIONS(2539), + [anon_sym_DASH] = ACTIONS(2539), + [anon_sym_break] = ACTIONS(2539), + [anon_sym_continue] = ACTIONS(2539), + [anon_sym_for] = ACTIONS(2539), + [anon_sym_in] = ACTIONS(2539), + [anon_sym_loop] = ACTIONS(2539), + [anon_sym_make] = ACTIONS(2539), + [anon_sym_while] = ACTIONS(2539), + [anon_sym_do] = ACTIONS(2539), + [anon_sym_if] = ACTIONS(2539), + [anon_sym_else] = ACTIONS(2539), + [anon_sym_match] = ACTIONS(2539), + [anon_sym_RBRACE] = ACTIONS(2539), + [anon_sym_try] = ACTIONS(2539), + [anon_sym_catch] = ACTIONS(2539), + [anon_sym_return] = ACTIONS(2539), + [anon_sym_source] = ACTIONS(2539), + [anon_sym_source_DASHenv] = ACTIONS(2539), + [anon_sym_register] = ACTIONS(2539), + [anon_sym_hide] = ACTIONS(2539), + [anon_sym_hide_DASHenv] = ACTIONS(2539), + [anon_sym_overlay] = ACTIONS(2539), + [anon_sym_new] = ACTIONS(2539), + [anon_sym_as] = ACTIONS(2539), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2539), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2539), + [aux_sym__val_number_decimal_token1] = ACTIONS(2539), + [aux_sym__val_number_decimal_token2] = ACTIONS(2539), + [aux_sym__val_number_decimal_token3] = ACTIONS(2539), + [aux_sym__val_number_decimal_token4] = ACTIONS(2539), + [aux_sym__val_number_token1] = ACTIONS(2539), + [aux_sym__val_number_token2] = ACTIONS(2539), + [aux_sym__val_number_token3] = ACTIONS(2539), + [anon_sym_DQUOTE] = ACTIONS(2539), + [sym__str_single_quotes] = ACTIONS(2539), + [sym__str_back_ticks] = ACTIONS(2539), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2539), + [sym__entry_separator] = ACTIONS(2541), + [anon_sym_PLUS] = ACTIONS(2539), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2541), }, [611] = { [sym_comment] = STATE(611), - [anon_sym_export] = ACTIONS(1038), - [anon_sym_alias] = ACTIONS(1038), - [anon_sym_let] = ACTIONS(1038), - [anon_sym_let_DASHenv] = ACTIONS(1038), - [anon_sym_mut] = ACTIONS(1038), - [anon_sym_const] = ACTIONS(1038), - [aux_sym_cmd_identifier_token1] = ACTIONS(1038), - [aux_sym_cmd_identifier_token2] = ACTIONS(1038), - [aux_sym_cmd_identifier_token3] = ACTIONS(1038), - [aux_sym_cmd_identifier_token4] = ACTIONS(1038), - [aux_sym_cmd_identifier_token5] = ACTIONS(1038), - [aux_sym_cmd_identifier_token6] = ACTIONS(1038), - [aux_sym_cmd_identifier_token7] = ACTIONS(1038), - [aux_sym_cmd_identifier_token8] = ACTIONS(1038), - [aux_sym_cmd_identifier_token9] = ACTIONS(1038), - [aux_sym_cmd_identifier_token10] = ACTIONS(1038), - [aux_sym_cmd_identifier_token11] = ACTIONS(1038), - [aux_sym_cmd_identifier_token12] = ACTIONS(1038), - [aux_sym_cmd_identifier_token13] = ACTIONS(1038), - [aux_sym_cmd_identifier_token14] = ACTIONS(1038), - [aux_sym_cmd_identifier_token15] = ACTIONS(1038), - [aux_sym_cmd_identifier_token16] = ACTIONS(1038), - [aux_sym_cmd_identifier_token17] = ACTIONS(1038), - [aux_sym_cmd_identifier_token18] = ACTIONS(1038), - [aux_sym_cmd_identifier_token19] = ACTIONS(1038), - [aux_sym_cmd_identifier_token20] = ACTIONS(1038), - [aux_sym_cmd_identifier_token21] = ACTIONS(1038), - [aux_sym_cmd_identifier_token22] = ACTIONS(1038), - [aux_sym_cmd_identifier_token23] = ACTIONS(1038), - [aux_sym_cmd_identifier_token24] = ACTIONS(1038), - [aux_sym_cmd_identifier_token25] = ACTIONS(1038), - [aux_sym_cmd_identifier_token26] = ACTIONS(1038), - [aux_sym_cmd_identifier_token27] = ACTIONS(1038), - [aux_sym_cmd_identifier_token28] = ACTIONS(1038), - [aux_sym_cmd_identifier_token29] = ACTIONS(1038), - [aux_sym_cmd_identifier_token30] = ACTIONS(1038), - [aux_sym_cmd_identifier_token31] = ACTIONS(1038), - [aux_sym_cmd_identifier_token32] = ACTIONS(1038), - [aux_sym_cmd_identifier_token33] = ACTIONS(1038), - [aux_sym_cmd_identifier_token34] = ACTIONS(1038), - [aux_sym_cmd_identifier_token35] = ACTIONS(1038), - [aux_sym_cmd_identifier_token36] = ACTIONS(1038), - [anon_sym_true] = ACTIONS(1038), - [anon_sym_false] = ACTIONS(1038), - [anon_sym_null] = ACTIONS(1038), - [aux_sym_cmd_identifier_token38] = ACTIONS(1038), - [aux_sym_cmd_identifier_token39] = ACTIONS(1038), - [aux_sym_cmd_identifier_token40] = ACTIONS(1038), - [anon_sym_def] = ACTIONS(1038), - [anon_sym_export_DASHenv] = ACTIONS(1038), - [anon_sym_extern] = ACTIONS(1038), - [anon_sym_module] = ACTIONS(1038), - [anon_sym_use] = ACTIONS(1038), - [anon_sym_LPAREN] = ACTIONS(1038), - [anon_sym_DOLLAR] = ACTIONS(1038), - [anon_sym_error] = ACTIONS(1038), - [anon_sym_list] = ACTIONS(1038), - [anon_sym_DASH] = ACTIONS(1038), - [anon_sym_break] = ACTIONS(1038), - [anon_sym_continue] = ACTIONS(1038), - [anon_sym_for] = ACTIONS(1038), - [anon_sym_in] = ACTIONS(1038), - [anon_sym_loop] = ACTIONS(1038), - [anon_sym_make] = ACTIONS(1038), - [anon_sym_while] = ACTIONS(1038), - [anon_sym_do] = ACTIONS(1038), - [anon_sym_if] = ACTIONS(1038), - [anon_sym_else] = ACTIONS(1038), - [anon_sym_match] = ACTIONS(1038), - [anon_sym_RBRACE] = ACTIONS(1038), - [anon_sym_try] = ACTIONS(1038), - [anon_sym_catch] = ACTIONS(1038), - [anon_sym_return] = ACTIONS(1038), - [anon_sym_source] = ACTIONS(1038), - [anon_sym_source_DASHenv] = ACTIONS(1038), - [anon_sym_register] = ACTIONS(1038), - [anon_sym_hide] = ACTIONS(1038), - [anon_sym_hide_DASHenv] = ACTIONS(1038), - [anon_sym_overlay] = ACTIONS(1038), - [anon_sym_new] = ACTIONS(1038), - [anon_sym_as] = ACTIONS(1038), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1038), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1038), - [aux_sym__val_number_decimal_token1] = ACTIONS(1038), - [aux_sym__val_number_decimal_token2] = ACTIONS(1038), - [aux_sym__val_number_decimal_token3] = ACTIONS(1038), - [aux_sym__val_number_decimal_token4] = ACTIONS(1038), - [aux_sym__val_number_token1] = ACTIONS(1038), - [aux_sym__val_number_token2] = ACTIONS(1038), - [aux_sym__val_number_token3] = ACTIONS(1038), - [anon_sym_DQUOTE] = ACTIONS(1038), - [sym__str_single_quotes] = ACTIONS(1038), - [sym__str_back_ticks] = ACTIONS(1038), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1038), - [sym__entry_separator] = ACTIONS(1040), - [anon_sym_PLUS] = ACTIONS(1038), + [anon_sym_export] = ACTIONS(1090), + [anon_sym_alias] = ACTIONS(1090), + [anon_sym_let] = ACTIONS(1090), + [anon_sym_let_DASHenv] = ACTIONS(1090), + [anon_sym_mut] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [aux_sym_cmd_identifier_token1] = ACTIONS(1090), + [aux_sym_cmd_identifier_token2] = ACTIONS(1090), + [aux_sym_cmd_identifier_token3] = ACTIONS(1090), + [aux_sym_cmd_identifier_token4] = ACTIONS(1090), + [aux_sym_cmd_identifier_token5] = ACTIONS(1090), + [aux_sym_cmd_identifier_token6] = ACTIONS(1090), + [aux_sym_cmd_identifier_token7] = ACTIONS(1090), + [aux_sym_cmd_identifier_token8] = ACTIONS(1090), + [aux_sym_cmd_identifier_token9] = ACTIONS(1090), + [aux_sym_cmd_identifier_token10] = ACTIONS(1090), + [aux_sym_cmd_identifier_token11] = ACTIONS(1090), + [aux_sym_cmd_identifier_token12] = ACTIONS(1090), + [aux_sym_cmd_identifier_token13] = ACTIONS(1090), + [aux_sym_cmd_identifier_token14] = ACTIONS(1090), + [aux_sym_cmd_identifier_token15] = ACTIONS(1090), + [aux_sym_cmd_identifier_token16] = ACTIONS(1090), + [aux_sym_cmd_identifier_token17] = ACTIONS(1090), + [aux_sym_cmd_identifier_token18] = ACTIONS(1090), + [aux_sym_cmd_identifier_token19] = ACTIONS(1090), + [aux_sym_cmd_identifier_token20] = ACTIONS(1090), + [aux_sym_cmd_identifier_token21] = ACTIONS(1090), + [aux_sym_cmd_identifier_token22] = ACTIONS(1090), + [aux_sym_cmd_identifier_token23] = ACTIONS(1090), + [aux_sym_cmd_identifier_token24] = ACTIONS(1090), + [aux_sym_cmd_identifier_token25] = ACTIONS(1090), + [aux_sym_cmd_identifier_token26] = ACTIONS(1090), + [aux_sym_cmd_identifier_token27] = ACTIONS(1090), + [aux_sym_cmd_identifier_token28] = ACTIONS(1090), + [aux_sym_cmd_identifier_token29] = ACTIONS(1090), + [aux_sym_cmd_identifier_token30] = ACTIONS(1090), + [aux_sym_cmd_identifier_token31] = ACTIONS(1090), + [aux_sym_cmd_identifier_token32] = ACTIONS(1090), + [aux_sym_cmd_identifier_token33] = ACTIONS(1090), + [aux_sym_cmd_identifier_token34] = ACTIONS(1090), + [aux_sym_cmd_identifier_token35] = ACTIONS(1090), + [aux_sym_cmd_identifier_token36] = ACTIONS(1090), + [anon_sym_true] = ACTIONS(1090), + [anon_sym_false] = ACTIONS(1090), + [anon_sym_null] = ACTIONS(1090), + [aux_sym_cmd_identifier_token38] = ACTIONS(1090), + [aux_sym_cmd_identifier_token39] = ACTIONS(1090), + [aux_sym_cmd_identifier_token40] = ACTIONS(1090), + [anon_sym_def] = ACTIONS(1090), + [anon_sym_export_DASHenv] = ACTIONS(1090), + [anon_sym_extern] = ACTIONS(1090), + [anon_sym_module] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1090), + [anon_sym_LPAREN] = ACTIONS(1090), + [anon_sym_DOLLAR] = ACTIONS(1090), + [anon_sym_error] = ACTIONS(1090), + [anon_sym_list] = ACTIONS(1090), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_break] = ACTIONS(1090), + [anon_sym_continue] = ACTIONS(1090), + [anon_sym_for] = ACTIONS(1090), + [anon_sym_in] = ACTIONS(1090), + [anon_sym_loop] = ACTIONS(1090), + [anon_sym_make] = ACTIONS(1090), + [anon_sym_while] = ACTIONS(1090), + [anon_sym_do] = ACTIONS(1090), + [anon_sym_if] = ACTIONS(1090), + [anon_sym_else] = ACTIONS(1090), + [anon_sym_match] = ACTIONS(1090), + [anon_sym_RBRACE] = ACTIONS(1090), + [anon_sym_try] = ACTIONS(1090), + [anon_sym_catch] = ACTIONS(1090), + [anon_sym_return] = ACTIONS(1090), + [anon_sym_source] = ACTIONS(1090), + [anon_sym_source_DASHenv] = ACTIONS(1090), + [anon_sym_register] = ACTIONS(1090), + [anon_sym_hide] = ACTIONS(1090), + [anon_sym_hide_DASHenv] = ACTIONS(1090), + [anon_sym_overlay] = ACTIONS(1090), + [anon_sym_new] = ACTIONS(1090), + [anon_sym_as] = ACTIONS(1090), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1090), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1090), + [aux_sym__val_number_decimal_token1] = ACTIONS(1090), + [aux_sym__val_number_decimal_token2] = ACTIONS(1090), + [aux_sym__val_number_decimal_token3] = ACTIONS(1090), + [aux_sym__val_number_decimal_token4] = ACTIONS(1090), + [aux_sym__val_number_token1] = ACTIONS(1090), + [aux_sym__val_number_token2] = ACTIONS(1090), + [aux_sym__val_number_token3] = ACTIONS(1090), + [anon_sym_DQUOTE] = ACTIONS(1090), + [sym__str_single_quotes] = ACTIONS(1090), + [sym__str_back_ticks] = ACTIONS(1090), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1090), + [sym__entry_separator] = ACTIONS(1092), + [anon_sym_PLUS] = ACTIONS(1090), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1092), }, [612] = { [sym_comment] = STATE(612), - [anon_sym_export] = ACTIONS(1034), - [anon_sym_alias] = ACTIONS(1034), - [anon_sym_let] = ACTIONS(1034), - [anon_sym_let_DASHenv] = ACTIONS(1034), - [anon_sym_mut] = ACTIONS(1034), - [anon_sym_const] = ACTIONS(1034), - [aux_sym_cmd_identifier_token1] = ACTIONS(1034), - [aux_sym_cmd_identifier_token2] = ACTIONS(1034), - [aux_sym_cmd_identifier_token3] = ACTIONS(1034), - [aux_sym_cmd_identifier_token4] = ACTIONS(1034), - [aux_sym_cmd_identifier_token5] = ACTIONS(1034), - [aux_sym_cmd_identifier_token6] = ACTIONS(1034), - [aux_sym_cmd_identifier_token7] = ACTIONS(1034), - [aux_sym_cmd_identifier_token8] = ACTIONS(1034), - [aux_sym_cmd_identifier_token9] = ACTIONS(1034), - [aux_sym_cmd_identifier_token10] = ACTIONS(1034), - [aux_sym_cmd_identifier_token11] = ACTIONS(1034), - [aux_sym_cmd_identifier_token12] = ACTIONS(1034), - [aux_sym_cmd_identifier_token13] = ACTIONS(1034), - [aux_sym_cmd_identifier_token14] = ACTIONS(1034), - [aux_sym_cmd_identifier_token15] = ACTIONS(1034), - [aux_sym_cmd_identifier_token16] = ACTIONS(1034), - [aux_sym_cmd_identifier_token17] = ACTIONS(1034), - [aux_sym_cmd_identifier_token18] = ACTIONS(1034), - [aux_sym_cmd_identifier_token19] = ACTIONS(1034), - [aux_sym_cmd_identifier_token20] = ACTIONS(1034), - [aux_sym_cmd_identifier_token21] = ACTIONS(1034), - [aux_sym_cmd_identifier_token22] = ACTIONS(1034), - [aux_sym_cmd_identifier_token23] = ACTIONS(1034), - [aux_sym_cmd_identifier_token24] = ACTIONS(1034), - [aux_sym_cmd_identifier_token25] = ACTIONS(1034), - [aux_sym_cmd_identifier_token26] = ACTIONS(1034), - [aux_sym_cmd_identifier_token27] = ACTIONS(1034), - [aux_sym_cmd_identifier_token28] = ACTIONS(1034), - [aux_sym_cmd_identifier_token29] = ACTIONS(1034), - [aux_sym_cmd_identifier_token30] = ACTIONS(1034), - [aux_sym_cmd_identifier_token31] = ACTIONS(1034), - [aux_sym_cmd_identifier_token32] = ACTIONS(1034), - [aux_sym_cmd_identifier_token33] = ACTIONS(1034), - [aux_sym_cmd_identifier_token34] = ACTIONS(1034), - [aux_sym_cmd_identifier_token35] = ACTIONS(1034), - [aux_sym_cmd_identifier_token36] = ACTIONS(1034), - [anon_sym_true] = ACTIONS(1034), - [anon_sym_false] = ACTIONS(1034), - [anon_sym_null] = ACTIONS(1034), - [aux_sym_cmd_identifier_token38] = ACTIONS(1034), - [aux_sym_cmd_identifier_token39] = ACTIONS(1034), - [aux_sym_cmd_identifier_token40] = ACTIONS(1034), - [anon_sym_def] = ACTIONS(1034), - [anon_sym_export_DASHenv] = ACTIONS(1034), - [anon_sym_extern] = ACTIONS(1034), - [anon_sym_module] = ACTIONS(1034), - [anon_sym_use] = ACTIONS(1034), - [anon_sym_LPAREN] = ACTIONS(1034), - [anon_sym_DOLLAR] = ACTIONS(1034), - [anon_sym_error] = ACTIONS(1034), - [anon_sym_list] = ACTIONS(1034), - [anon_sym_DASH] = ACTIONS(1034), - [anon_sym_break] = ACTIONS(1034), - [anon_sym_continue] = ACTIONS(1034), - [anon_sym_for] = ACTIONS(1034), - [anon_sym_in] = ACTIONS(1034), - [anon_sym_loop] = ACTIONS(1034), - [anon_sym_make] = ACTIONS(1034), - [anon_sym_while] = ACTIONS(1034), - [anon_sym_do] = ACTIONS(1034), - [anon_sym_if] = ACTIONS(1034), - [anon_sym_else] = ACTIONS(1034), - [anon_sym_match] = ACTIONS(1034), - [anon_sym_RBRACE] = ACTIONS(1034), - [anon_sym_try] = ACTIONS(1034), - [anon_sym_catch] = ACTIONS(1034), - [anon_sym_return] = ACTIONS(1034), - [anon_sym_source] = ACTIONS(1034), - [anon_sym_source_DASHenv] = ACTIONS(1034), - [anon_sym_register] = ACTIONS(1034), - [anon_sym_hide] = ACTIONS(1034), - [anon_sym_hide_DASHenv] = ACTIONS(1034), - [anon_sym_overlay] = ACTIONS(1034), - [anon_sym_new] = ACTIONS(1034), - [anon_sym_as] = ACTIONS(1034), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1034), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1034), - [aux_sym__val_number_decimal_token1] = ACTIONS(1034), - [aux_sym__val_number_decimal_token2] = ACTIONS(1034), - [aux_sym__val_number_decimal_token3] = ACTIONS(1034), - [aux_sym__val_number_decimal_token4] = ACTIONS(1034), - [aux_sym__val_number_token1] = ACTIONS(1034), - [aux_sym__val_number_token2] = ACTIONS(1034), - [aux_sym__val_number_token3] = ACTIONS(1034), - [anon_sym_DQUOTE] = ACTIONS(1034), - [sym__str_single_quotes] = ACTIONS(1034), - [sym__str_back_ticks] = ACTIONS(1034), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1034), - [sym__entry_separator] = ACTIONS(1036), - [anon_sym_PLUS] = ACTIONS(1034), + [anon_sym_export] = ACTIONS(2043), + [anon_sym_alias] = ACTIONS(2043), + [anon_sym_let] = ACTIONS(2043), + [anon_sym_let_DASHenv] = ACTIONS(2043), + [anon_sym_mut] = ACTIONS(2043), + [anon_sym_const] = ACTIONS(2043), + [aux_sym_cmd_identifier_token1] = ACTIONS(2043), + [aux_sym_cmd_identifier_token2] = ACTIONS(2043), + [aux_sym_cmd_identifier_token3] = ACTIONS(2043), + [aux_sym_cmd_identifier_token4] = ACTIONS(2043), + [aux_sym_cmd_identifier_token5] = ACTIONS(2043), + [aux_sym_cmd_identifier_token6] = ACTIONS(2043), + [aux_sym_cmd_identifier_token7] = ACTIONS(2043), + [aux_sym_cmd_identifier_token8] = ACTIONS(2043), + [aux_sym_cmd_identifier_token9] = ACTIONS(2043), + [aux_sym_cmd_identifier_token10] = ACTIONS(2043), + [aux_sym_cmd_identifier_token11] = ACTIONS(2043), + [aux_sym_cmd_identifier_token12] = ACTIONS(2043), + [aux_sym_cmd_identifier_token13] = ACTIONS(2043), + [aux_sym_cmd_identifier_token14] = ACTIONS(2043), + [aux_sym_cmd_identifier_token15] = ACTIONS(2043), + [aux_sym_cmd_identifier_token16] = ACTIONS(2043), + [aux_sym_cmd_identifier_token17] = ACTIONS(2043), + [aux_sym_cmd_identifier_token18] = ACTIONS(2043), + [aux_sym_cmd_identifier_token19] = ACTIONS(2043), + [aux_sym_cmd_identifier_token20] = ACTIONS(2043), + [aux_sym_cmd_identifier_token21] = ACTIONS(2043), + [aux_sym_cmd_identifier_token22] = ACTIONS(2043), + [aux_sym_cmd_identifier_token23] = ACTIONS(2043), + [aux_sym_cmd_identifier_token24] = ACTIONS(2043), + [aux_sym_cmd_identifier_token25] = ACTIONS(2043), + [aux_sym_cmd_identifier_token26] = ACTIONS(2043), + [aux_sym_cmd_identifier_token27] = ACTIONS(2043), + [aux_sym_cmd_identifier_token28] = ACTIONS(2043), + [aux_sym_cmd_identifier_token29] = ACTIONS(2043), + [aux_sym_cmd_identifier_token30] = ACTIONS(2043), + [aux_sym_cmd_identifier_token31] = ACTIONS(2043), + [aux_sym_cmd_identifier_token32] = ACTIONS(2043), + [aux_sym_cmd_identifier_token33] = ACTIONS(2043), + [aux_sym_cmd_identifier_token34] = ACTIONS(2043), + [aux_sym_cmd_identifier_token35] = ACTIONS(2043), + [aux_sym_cmd_identifier_token36] = ACTIONS(2043), + [anon_sym_true] = ACTIONS(2043), + [anon_sym_false] = ACTIONS(2043), + [anon_sym_null] = ACTIONS(2043), + [aux_sym_cmd_identifier_token38] = ACTIONS(2043), + [aux_sym_cmd_identifier_token39] = ACTIONS(2043), + [aux_sym_cmd_identifier_token40] = ACTIONS(2043), + [anon_sym_def] = ACTIONS(2043), + [anon_sym_export_DASHenv] = ACTIONS(2043), + [anon_sym_extern] = ACTIONS(2043), + [anon_sym_module] = ACTIONS(2043), + [anon_sym_use] = ACTIONS(2043), + [anon_sym_LPAREN] = ACTIONS(2043), + [anon_sym_DOLLAR] = ACTIONS(2043), + [anon_sym_error] = ACTIONS(2043), + [anon_sym_list] = ACTIONS(2043), + [anon_sym_DASH] = ACTIONS(2043), + [anon_sym_break] = ACTIONS(2043), + [anon_sym_continue] = ACTIONS(2043), + [anon_sym_for] = ACTIONS(2043), + [anon_sym_in] = ACTIONS(2043), + [anon_sym_loop] = ACTIONS(2043), + [anon_sym_make] = ACTIONS(2043), + [anon_sym_while] = ACTIONS(2043), + [anon_sym_do] = ACTIONS(2043), + [anon_sym_if] = ACTIONS(2043), + [anon_sym_else] = ACTIONS(2043), + [anon_sym_match] = ACTIONS(2043), + [anon_sym_RBRACE] = ACTIONS(2043), + [anon_sym_try] = ACTIONS(2043), + [anon_sym_catch] = ACTIONS(2043), + [anon_sym_return] = ACTIONS(2043), + [anon_sym_source] = ACTIONS(2043), + [anon_sym_source_DASHenv] = ACTIONS(2043), + [anon_sym_register] = ACTIONS(2043), + [anon_sym_hide] = ACTIONS(2043), + [anon_sym_hide_DASHenv] = ACTIONS(2043), + [anon_sym_overlay] = ACTIONS(2043), + [anon_sym_new] = ACTIONS(2043), + [anon_sym_as] = ACTIONS(2043), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2043), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2043), + [aux_sym__val_number_decimal_token1] = ACTIONS(2043), + [aux_sym__val_number_decimal_token2] = ACTIONS(2043), + [aux_sym__val_number_decimal_token3] = ACTIONS(2043), + [aux_sym__val_number_decimal_token4] = ACTIONS(2043), + [aux_sym__val_number_token1] = ACTIONS(2043), + [aux_sym__val_number_token2] = ACTIONS(2043), + [aux_sym__val_number_token3] = ACTIONS(2043), + [anon_sym_DQUOTE] = ACTIONS(2043), + [sym__str_single_quotes] = ACTIONS(2043), + [sym__str_back_ticks] = ACTIONS(2043), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2043), + [sym__entry_separator] = ACTIONS(2045), + [anon_sym_PLUS] = ACTIONS(2043), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2045), }, [613] = { [sym_comment] = STATE(613), - [anon_sym_export] = ACTIONS(2517), - [anon_sym_alias] = ACTIONS(2517), - [anon_sym_let] = ACTIONS(2517), - [anon_sym_let_DASHenv] = ACTIONS(2517), - [anon_sym_mut] = ACTIONS(2517), - [anon_sym_const] = ACTIONS(2517), - [aux_sym_cmd_identifier_token1] = ACTIONS(2517), - [aux_sym_cmd_identifier_token2] = ACTIONS(2517), - [aux_sym_cmd_identifier_token3] = ACTIONS(2517), - [aux_sym_cmd_identifier_token4] = ACTIONS(2517), - [aux_sym_cmd_identifier_token5] = ACTIONS(2517), - [aux_sym_cmd_identifier_token6] = ACTIONS(2517), - [aux_sym_cmd_identifier_token7] = ACTIONS(2517), - [aux_sym_cmd_identifier_token8] = ACTIONS(2517), - [aux_sym_cmd_identifier_token9] = ACTIONS(2517), - [aux_sym_cmd_identifier_token10] = ACTIONS(2517), - [aux_sym_cmd_identifier_token11] = ACTIONS(2517), - [aux_sym_cmd_identifier_token12] = ACTIONS(2517), - [aux_sym_cmd_identifier_token13] = ACTIONS(2517), - [aux_sym_cmd_identifier_token14] = ACTIONS(2517), - [aux_sym_cmd_identifier_token15] = ACTIONS(2517), - [aux_sym_cmd_identifier_token16] = ACTIONS(2517), - [aux_sym_cmd_identifier_token17] = ACTIONS(2517), - [aux_sym_cmd_identifier_token18] = ACTIONS(2517), - [aux_sym_cmd_identifier_token19] = ACTIONS(2517), - [aux_sym_cmd_identifier_token20] = ACTIONS(2517), - [aux_sym_cmd_identifier_token21] = ACTIONS(2517), - [aux_sym_cmd_identifier_token22] = ACTIONS(2517), - [aux_sym_cmd_identifier_token23] = ACTIONS(2517), - [aux_sym_cmd_identifier_token24] = ACTIONS(2517), - [aux_sym_cmd_identifier_token25] = ACTIONS(2517), - [aux_sym_cmd_identifier_token26] = ACTIONS(2517), - [aux_sym_cmd_identifier_token27] = ACTIONS(2517), - [aux_sym_cmd_identifier_token28] = ACTIONS(2517), - [aux_sym_cmd_identifier_token29] = ACTIONS(2517), - [aux_sym_cmd_identifier_token30] = ACTIONS(2517), - [aux_sym_cmd_identifier_token31] = ACTIONS(2517), - [aux_sym_cmd_identifier_token32] = ACTIONS(2517), - [aux_sym_cmd_identifier_token33] = ACTIONS(2517), - [aux_sym_cmd_identifier_token34] = ACTIONS(2517), - [aux_sym_cmd_identifier_token35] = ACTIONS(2517), - [aux_sym_cmd_identifier_token36] = ACTIONS(2517), - [anon_sym_true] = ACTIONS(2517), - [anon_sym_false] = ACTIONS(2517), - [anon_sym_null] = ACTIONS(2517), - [aux_sym_cmd_identifier_token38] = ACTIONS(2517), - [aux_sym_cmd_identifier_token39] = ACTIONS(2517), - [aux_sym_cmd_identifier_token40] = ACTIONS(2517), - [anon_sym_def] = ACTIONS(2517), - [anon_sym_export_DASHenv] = ACTIONS(2517), - [anon_sym_extern] = ACTIONS(2517), - [anon_sym_module] = ACTIONS(2517), - [anon_sym_use] = ACTIONS(2517), - [anon_sym_LPAREN] = ACTIONS(2517), - [anon_sym_DOLLAR] = ACTIONS(2517), - [anon_sym_error] = ACTIONS(2517), - [anon_sym_list] = ACTIONS(2517), - [anon_sym_DASH] = ACTIONS(2517), - [anon_sym_break] = ACTIONS(2517), - [anon_sym_continue] = ACTIONS(2517), - [anon_sym_for] = ACTIONS(2517), - [anon_sym_in] = ACTIONS(2517), - [anon_sym_loop] = ACTIONS(2517), - [anon_sym_make] = ACTIONS(2517), - [anon_sym_while] = ACTIONS(2517), - [anon_sym_do] = ACTIONS(2517), - [anon_sym_if] = ACTIONS(2517), - [anon_sym_else] = ACTIONS(2517), - [anon_sym_match] = ACTIONS(2517), - [anon_sym_RBRACE] = ACTIONS(2517), - [anon_sym_try] = ACTIONS(2517), - [anon_sym_catch] = ACTIONS(2517), - [anon_sym_return] = ACTIONS(2517), - [anon_sym_source] = ACTIONS(2517), - [anon_sym_source_DASHenv] = ACTIONS(2517), - [anon_sym_register] = ACTIONS(2517), - [anon_sym_hide] = ACTIONS(2517), - [anon_sym_hide_DASHenv] = ACTIONS(2517), - [anon_sym_overlay] = ACTIONS(2517), - [anon_sym_new] = ACTIONS(2517), - [anon_sym_as] = ACTIONS(2517), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2517), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2517), - [aux_sym__val_number_decimal_token1] = ACTIONS(2517), - [aux_sym__val_number_decimal_token2] = ACTIONS(2517), - [aux_sym__val_number_decimal_token3] = ACTIONS(2517), - [aux_sym__val_number_decimal_token4] = ACTIONS(2517), - [aux_sym__val_number_token1] = ACTIONS(2517), - [aux_sym__val_number_token2] = ACTIONS(2517), - [aux_sym__val_number_token3] = ACTIONS(2517), - [anon_sym_DQUOTE] = ACTIONS(2517), - [sym__str_single_quotes] = ACTIONS(2517), - [sym__str_back_ticks] = ACTIONS(2517), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2517), - [sym__entry_separator] = ACTIONS(2519), - [anon_sym_PLUS] = ACTIONS(2517), + [anon_sym_export] = ACTIONS(1897), + [anon_sym_alias] = ACTIONS(1897), + [anon_sym_let] = ACTIONS(1897), + [anon_sym_let_DASHenv] = ACTIONS(1897), + [anon_sym_mut] = ACTIONS(1897), + [anon_sym_const] = ACTIONS(1897), + [aux_sym_cmd_identifier_token1] = ACTIONS(1897), + [aux_sym_cmd_identifier_token2] = ACTIONS(1897), + [aux_sym_cmd_identifier_token3] = ACTIONS(1897), + [aux_sym_cmd_identifier_token4] = ACTIONS(1897), + [aux_sym_cmd_identifier_token5] = ACTIONS(1897), + [aux_sym_cmd_identifier_token6] = ACTIONS(1897), + [aux_sym_cmd_identifier_token7] = ACTIONS(1897), + [aux_sym_cmd_identifier_token8] = ACTIONS(1897), + [aux_sym_cmd_identifier_token9] = ACTIONS(1897), + [aux_sym_cmd_identifier_token10] = ACTIONS(1897), + [aux_sym_cmd_identifier_token11] = ACTIONS(1897), + [aux_sym_cmd_identifier_token12] = ACTIONS(1897), + [aux_sym_cmd_identifier_token13] = ACTIONS(1897), + [aux_sym_cmd_identifier_token14] = ACTIONS(1897), + [aux_sym_cmd_identifier_token15] = ACTIONS(1897), + [aux_sym_cmd_identifier_token16] = ACTIONS(1897), + [aux_sym_cmd_identifier_token17] = ACTIONS(1897), + [aux_sym_cmd_identifier_token18] = ACTIONS(1897), + [aux_sym_cmd_identifier_token19] = ACTIONS(1897), + [aux_sym_cmd_identifier_token20] = ACTIONS(1897), + [aux_sym_cmd_identifier_token21] = ACTIONS(1897), + [aux_sym_cmd_identifier_token22] = ACTIONS(1897), + [aux_sym_cmd_identifier_token23] = ACTIONS(1897), + [aux_sym_cmd_identifier_token24] = ACTIONS(1897), + [aux_sym_cmd_identifier_token25] = ACTIONS(1897), + [aux_sym_cmd_identifier_token26] = ACTIONS(1897), + [aux_sym_cmd_identifier_token27] = ACTIONS(1897), + [aux_sym_cmd_identifier_token28] = ACTIONS(1897), + [aux_sym_cmd_identifier_token29] = ACTIONS(1897), + [aux_sym_cmd_identifier_token30] = ACTIONS(1897), + [aux_sym_cmd_identifier_token31] = ACTIONS(1897), + [aux_sym_cmd_identifier_token32] = ACTIONS(1897), + [aux_sym_cmd_identifier_token33] = ACTIONS(1897), + [aux_sym_cmd_identifier_token34] = ACTIONS(1897), + [aux_sym_cmd_identifier_token35] = ACTIONS(1897), + [aux_sym_cmd_identifier_token36] = ACTIONS(1897), + [anon_sym_true] = ACTIONS(1897), + [anon_sym_false] = ACTIONS(1897), + [anon_sym_null] = ACTIONS(1897), + [aux_sym_cmd_identifier_token38] = ACTIONS(1897), + [aux_sym_cmd_identifier_token39] = ACTIONS(1897), + [aux_sym_cmd_identifier_token40] = ACTIONS(1897), + [anon_sym_def] = ACTIONS(1897), + [anon_sym_export_DASHenv] = ACTIONS(1897), + [anon_sym_extern] = ACTIONS(1897), + [anon_sym_module] = ACTIONS(1897), + [anon_sym_use] = ACTIONS(1897), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_DOLLAR] = ACTIONS(1897), + [anon_sym_error] = ACTIONS(1897), + [anon_sym_list] = ACTIONS(1897), + [anon_sym_DASH] = ACTIONS(1897), + [anon_sym_break] = ACTIONS(1897), + [anon_sym_continue] = ACTIONS(1897), + [anon_sym_for] = ACTIONS(1897), + [anon_sym_in] = ACTIONS(1897), + [anon_sym_loop] = ACTIONS(1897), + [anon_sym_make] = ACTIONS(1897), + [anon_sym_while] = ACTIONS(1897), + [anon_sym_do] = ACTIONS(1897), + [anon_sym_if] = ACTIONS(1897), + [anon_sym_else] = ACTIONS(1897), + [anon_sym_match] = ACTIONS(1897), + [anon_sym_RBRACE] = ACTIONS(1897), + [anon_sym_try] = ACTIONS(1897), + [anon_sym_catch] = ACTIONS(1897), + [anon_sym_return] = ACTIONS(1897), + [anon_sym_source] = ACTIONS(1897), + [anon_sym_source_DASHenv] = ACTIONS(1897), + [anon_sym_register] = ACTIONS(1897), + [anon_sym_hide] = ACTIONS(1897), + [anon_sym_hide_DASHenv] = ACTIONS(1897), + [anon_sym_overlay] = ACTIONS(1897), + [anon_sym_new] = ACTIONS(1897), + [anon_sym_as] = ACTIONS(1897), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1897), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1897), + [aux_sym__val_number_decimal_token1] = ACTIONS(1897), + [aux_sym__val_number_decimal_token2] = ACTIONS(1897), + [aux_sym__val_number_decimal_token3] = ACTIONS(1897), + [aux_sym__val_number_decimal_token4] = ACTIONS(1897), + [aux_sym__val_number_token1] = ACTIONS(1897), + [aux_sym__val_number_token2] = ACTIONS(1897), + [aux_sym__val_number_token3] = ACTIONS(1897), + [anon_sym_DQUOTE] = ACTIONS(1897), + [sym__str_single_quotes] = ACTIONS(1897), + [sym__str_back_ticks] = ACTIONS(1897), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1897), + [sym__entry_separator] = ACTIONS(1899), + [anon_sym_PLUS] = ACTIONS(1897), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1899), }, [614] = { [sym_comment] = STATE(614), - [anon_sym_export] = ACTIONS(1981), - [anon_sym_alias] = ACTIONS(1981), - [anon_sym_let] = ACTIONS(1981), - [anon_sym_let_DASHenv] = ACTIONS(1981), - [anon_sym_mut] = ACTIONS(1981), - [anon_sym_const] = ACTIONS(1981), - [aux_sym_cmd_identifier_token1] = ACTIONS(1981), - [aux_sym_cmd_identifier_token2] = ACTIONS(1981), - [aux_sym_cmd_identifier_token3] = ACTIONS(1981), - [aux_sym_cmd_identifier_token4] = ACTIONS(1981), - [aux_sym_cmd_identifier_token5] = ACTIONS(1981), - [aux_sym_cmd_identifier_token6] = ACTIONS(1981), - [aux_sym_cmd_identifier_token7] = ACTIONS(1981), - [aux_sym_cmd_identifier_token8] = ACTIONS(1981), - [aux_sym_cmd_identifier_token9] = ACTIONS(1981), - [aux_sym_cmd_identifier_token10] = ACTIONS(1981), - [aux_sym_cmd_identifier_token11] = ACTIONS(1981), - [aux_sym_cmd_identifier_token12] = ACTIONS(1981), - [aux_sym_cmd_identifier_token13] = ACTIONS(1981), - [aux_sym_cmd_identifier_token14] = ACTIONS(1981), - [aux_sym_cmd_identifier_token15] = ACTIONS(1981), - [aux_sym_cmd_identifier_token16] = ACTIONS(1981), - [aux_sym_cmd_identifier_token17] = ACTIONS(1981), - [aux_sym_cmd_identifier_token18] = ACTIONS(1981), - [aux_sym_cmd_identifier_token19] = ACTIONS(1981), - [aux_sym_cmd_identifier_token20] = ACTIONS(1981), - [aux_sym_cmd_identifier_token21] = ACTIONS(1981), - [aux_sym_cmd_identifier_token22] = ACTIONS(1981), - [aux_sym_cmd_identifier_token23] = ACTIONS(1981), - [aux_sym_cmd_identifier_token24] = ACTIONS(1981), - [aux_sym_cmd_identifier_token25] = ACTIONS(1981), - [aux_sym_cmd_identifier_token26] = ACTIONS(1981), - [aux_sym_cmd_identifier_token27] = ACTIONS(1981), - [aux_sym_cmd_identifier_token28] = ACTIONS(1981), - [aux_sym_cmd_identifier_token29] = ACTIONS(1981), - [aux_sym_cmd_identifier_token30] = ACTIONS(1981), - [aux_sym_cmd_identifier_token31] = ACTIONS(1981), - [aux_sym_cmd_identifier_token32] = ACTIONS(1981), - [aux_sym_cmd_identifier_token33] = ACTIONS(1981), - [aux_sym_cmd_identifier_token34] = ACTIONS(1981), - [aux_sym_cmd_identifier_token35] = ACTIONS(1981), - [aux_sym_cmd_identifier_token36] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(1981), - [anon_sym_false] = ACTIONS(1981), - [anon_sym_null] = ACTIONS(1981), - [aux_sym_cmd_identifier_token38] = ACTIONS(1981), - [aux_sym_cmd_identifier_token39] = ACTIONS(1981), - [aux_sym_cmd_identifier_token40] = ACTIONS(1981), - [anon_sym_def] = ACTIONS(1981), - [anon_sym_export_DASHenv] = ACTIONS(1981), - [anon_sym_extern] = ACTIONS(1981), - [anon_sym_module] = ACTIONS(1981), - [anon_sym_use] = ACTIONS(1981), - [anon_sym_LPAREN] = ACTIONS(1981), - [anon_sym_DOLLAR] = ACTIONS(1981), - [anon_sym_error] = ACTIONS(1981), - [anon_sym_list] = ACTIONS(1981), - [anon_sym_DASH] = ACTIONS(1981), - [anon_sym_break] = ACTIONS(1981), - [anon_sym_continue] = ACTIONS(1981), - [anon_sym_for] = ACTIONS(1981), - [anon_sym_in] = ACTIONS(1981), - [anon_sym_loop] = ACTIONS(1981), - [anon_sym_make] = ACTIONS(1981), - [anon_sym_while] = ACTIONS(1981), - [anon_sym_do] = ACTIONS(1981), - [anon_sym_if] = ACTIONS(1981), - [anon_sym_else] = ACTIONS(1981), - [anon_sym_match] = ACTIONS(1981), - [anon_sym_RBRACE] = ACTIONS(1981), - [anon_sym_try] = ACTIONS(1981), - [anon_sym_catch] = ACTIONS(1981), - [anon_sym_return] = ACTIONS(1981), - [anon_sym_source] = ACTIONS(1981), - [anon_sym_source_DASHenv] = ACTIONS(1981), - [anon_sym_register] = ACTIONS(1981), - [anon_sym_hide] = ACTIONS(1981), - [anon_sym_hide_DASHenv] = ACTIONS(1981), - [anon_sym_overlay] = ACTIONS(1981), - [anon_sym_new] = ACTIONS(1981), - [anon_sym_as] = ACTIONS(1981), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1981), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1981), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1981), - [aux_sym__val_number_decimal_token3] = ACTIONS(1981), - [aux_sym__val_number_decimal_token4] = ACTIONS(1981), - [aux_sym__val_number_token1] = ACTIONS(1981), - [aux_sym__val_number_token2] = ACTIONS(1981), - [aux_sym__val_number_token3] = ACTIONS(1981), - [anon_sym_DQUOTE] = ACTIONS(1981), - [sym__str_single_quotes] = ACTIONS(1981), - [sym__str_back_ticks] = ACTIONS(1981), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1981), - [sym__entry_separator] = ACTIONS(1987), - [anon_sym_PLUS] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(2543), + [anon_sym_alias] = ACTIONS(2543), + [anon_sym_let] = ACTIONS(2543), + [anon_sym_let_DASHenv] = ACTIONS(2543), + [anon_sym_mut] = ACTIONS(2543), + [anon_sym_const] = ACTIONS(2543), + [aux_sym_cmd_identifier_token1] = ACTIONS(2543), + [aux_sym_cmd_identifier_token2] = ACTIONS(2543), + [aux_sym_cmd_identifier_token3] = ACTIONS(2543), + [aux_sym_cmd_identifier_token4] = ACTIONS(2543), + [aux_sym_cmd_identifier_token5] = ACTIONS(2543), + [aux_sym_cmd_identifier_token6] = ACTIONS(2543), + [aux_sym_cmd_identifier_token7] = ACTIONS(2543), + [aux_sym_cmd_identifier_token8] = ACTIONS(2543), + [aux_sym_cmd_identifier_token9] = ACTIONS(2543), + [aux_sym_cmd_identifier_token10] = ACTIONS(2543), + [aux_sym_cmd_identifier_token11] = ACTIONS(2543), + [aux_sym_cmd_identifier_token12] = ACTIONS(2543), + [aux_sym_cmd_identifier_token13] = ACTIONS(2543), + [aux_sym_cmd_identifier_token14] = ACTIONS(2543), + [aux_sym_cmd_identifier_token15] = ACTIONS(2543), + [aux_sym_cmd_identifier_token16] = ACTIONS(2543), + [aux_sym_cmd_identifier_token17] = ACTIONS(2543), + [aux_sym_cmd_identifier_token18] = ACTIONS(2543), + [aux_sym_cmd_identifier_token19] = ACTIONS(2543), + [aux_sym_cmd_identifier_token20] = ACTIONS(2543), + [aux_sym_cmd_identifier_token21] = ACTIONS(2543), + [aux_sym_cmd_identifier_token22] = ACTIONS(2543), + [aux_sym_cmd_identifier_token23] = ACTIONS(2543), + [aux_sym_cmd_identifier_token24] = ACTIONS(2543), + [aux_sym_cmd_identifier_token25] = ACTIONS(2543), + [aux_sym_cmd_identifier_token26] = ACTIONS(2543), + [aux_sym_cmd_identifier_token27] = ACTIONS(2543), + [aux_sym_cmd_identifier_token28] = ACTIONS(2543), + [aux_sym_cmd_identifier_token29] = ACTIONS(2543), + [aux_sym_cmd_identifier_token30] = ACTIONS(2543), + [aux_sym_cmd_identifier_token31] = ACTIONS(2543), + [aux_sym_cmd_identifier_token32] = ACTIONS(2543), + [aux_sym_cmd_identifier_token33] = ACTIONS(2543), + [aux_sym_cmd_identifier_token34] = ACTIONS(2543), + [aux_sym_cmd_identifier_token35] = ACTIONS(2543), + [aux_sym_cmd_identifier_token36] = ACTIONS(2543), + [anon_sym_true] = ACTIONS(2543), + [anon_sym_false] = ACTIONS(2543), + [anon_sym_null] = ACTIONS(2543), + [aux_sym_cmd_identifier_token38] = ACTIONS(2543), + [aux_sym_cmd_identifier_token39] = ACTIONS(2543), + [aux_sym_cmd_identifier_token40] = ACTIONS(2543), + [anon_sym_def] = ACTIONS(2543), + [anon_sym_export_DASHenv] = ACTIONS(2543), + [anon_sym_extern] = ACTIONS(2543), + [anon_sym_module] = ACTIONS(2543), + [anon_sym_use] = ACTIONS(2543), + [anon_sym_LPAREN] = ACTIONS(2543), + [anon_sym_DOLLAR] = ACTIONS(2543), + [anon_sym_error] = ACTIONS(2543), + [anon_sym_list] = ACTIONS(2543), + [anon_sym_DASH] = ACTIONS(2543), + [anon_sym_break] = ACTIONS(2543), + [anon_sym_continue] = ACTIONS(2543), + [anon_sym_for] = ACTIONS(2543), + [anon_sym_in] = ACTIONS(2543), + [anon_sym_loop] = ACTIONS(2543), + [anon_sym_make] = ACTIONS(2543), + [anon_sym_while] = ACTIONS(2543), + [anon_sym_do] = ACTIONS(2543), + [anon_sym_if] = ACTIONS(2543), + [anon_sym_else] = ACTIONS(2543), + [anon_sym_match] = ACTIONS(2543), + [anon_sym_RBRACE] = ACTIONS(2543), + [anon_sym_try] = ACTIONS(2543), + [anon_sym_catch] = ACTIONS(2543), + [anon_sym_return] = ACTIONS(2543), + [anon_sym_source] = ACTIONS(2543), + [anon_sym_source_DASHenv] = ACTIONS(2543), + [anon_sym_register] = ACTIONS(2543), + [anon_sym_hide] = ACTIONS(2543), + [anon_sym_hide_DASHenv] = ACTIONS(2543), + [anon_sym_overlay] = ACTIONS(2543), + [anon_sym_new] = ACTIONS(2543), + [anon_sym_as] = ACTIONS(2543), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2543), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2543), + [aux_sym__val_number_decimal_token1] = ACTIONS(2543), + [aux_sym__val_number_decimal_token2] = ACTIONS(2543), + [aux_sym__val_number_decimal_token3] = ACTIONS(2543), + [aux_sym__val_number_decimal_token4] = ACTIONS(2543), + [aux_sym__val_number_token1] = ACTIONS(2543), + [aux_sym__val_number_token2] = ACTIONS(2543), + [aux_sym__val_number_token3] = ACTIONS(2543), + [anon_sym_DQUOTE] = ACTIONS(2543), + [sym__str_single_quotes] = ACTIONS(2543), + [sym__str_back_ticks] = ACTIONS(2543), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2543), + [sym__entry_separator] = ACTIONS(2545), + [anon_sym_PLUS] = ACTIONS(2543), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2545), }, [615] = { [sym_comment] = STATE(615), - [anon_sym_export] = ACTIONS(2521), - [anon_sym_alias] = ACTIONS(2521), - [anon_sym_let] = ACTIONS(2521), - [anon_sym_let_DASHenv] = ACTIONS(2521), - [anon_sym_mut] = ACTIONS(2521), - [anon_sym_const] = ACTIONS(2521), - [aux_sym_cmd_identifier_token1] = ACTIONS(2521), - [aux_sym_cmd_identifier_token2] = ACTIONS(2521), - [aux_sym_cmd_identifier_token3] = ACTIONS(2521), - [aux_sym_cmd_identifier_token4] = ACTIONS(2521), - [aux_sym_cmd_identifier_token5] = ACTIONS(2521), - [aux_sym_cmd_identifier_token6] = ACTIONS(2521), - [aux_sym_cmd_identifier_token7] = ACTIONS(2521), - [aux_sym_cmd_identifier_token8] = ACTIONS(2521), - [aux_sym_cmd_identifier_token9] = ACTIONS(2521), - [aux_sym_cmd_identifier_token10] = ACTIONS(2521), - [aux_sym_cmd_identifier_token11] = ACTIONS(2521), - [aux_sym_cmd_identifier_token12] = ACTIONS(2521), - [aux_sym_cmd_identifier_token13] = ACTIONS(2521), - [aux_sym_cmd_identifier_token14] = ACTIONS(2521), - [aux_sym_cmd_identifier_token15] = ACTIONS(2521), - [aux_sym_cmd_identifier_token16] = ACTIONS(2521), - [aux_sym_cmd_identifier_token17] = ACTIONS(2521), - [aux_sym_cmd_identifier_token18] = ACTIONS(2521), - [aux_sym_cmd_identifier_token19] = ACTIONS(2521), - [aux_sym_cmd_identifier_token20] = ACTIONS(2521), - [aux_sym_cmd_identifier_token21] = ACTIONS(2521), - [aux_sym_cmd_identifier_token22] = ACTIONS(2521), - [aux_sym_cmd_identifier_token23] = ACTIONS(2521), - [aux_sym_cmd_identifier_token24] = ACTIONS(2521), - [aux_sym_cmd_identifier_token25] = ACTIONS(2521), - [aux_sym_cmd_identifier_token26] = ACTIONS(2521), - [aux_sym_cmd_identifier_token27] = ACTIONS(2521), - [aux_sym_cmd_identifier_token28] = ACTIONS(2521), - [aux_sym_cmd_identifier_token29] = ACTIONS(2521), - [aux_sym_cmd_identifier_token30] = ACTIONS(2521), - [aux_sym_cmd_identifier_token31] = ACTIONS(2521), - [aux_sym_cmd_identifier_token32] = ACTIONS(2521), - [aux_sym_cmd_identifier_token33] = ACTIONS(2521), - [aux_sym_cmd_identifier_token34] = ACTIONS(2521), - [aux_sym_cmd_identifier_token35] = ACTIONS(2521), - [aux_sym_cmd_identifier_token36] = ACTIONS(2521), - [anon_sym_true] = ACTIONS(2521), - [anon_sym_false] = ACTIONS(2521), - [anon_sym_null] = ACTIONS(2521), - [aux_sym_cmd_identifier_token38] = ACTIONS(2521), - [aux_sym_cmd_identifier_token39] = ACTIONS(2521), - [aux_sym_cmd_identifier_token40] = ACTIONS(2521), - [anon_sym_def] = ACTIONS(2521), - [anon_sym_export_DASHenv] = ACTIONS(2521), - [anon_sym_extern] = ACTIONS(2521), - [anon_sym_module] = ACTIONS(2521), - [anon_sym_use] = ACTIONS(2521), - [anon_sym_LPAREN] = ACTIONS(2521), - [anon_sym_DOLLAR] = ACTIONS(2521), - [anon_sym_error] = ACTIONS(2521), - [anon_sym_list] = ACTIONS(2521), - [anon_sym_DASH] = ACTIONS(2521), - [anon_sym_break] = ACTIONS(2521), - [anon_sym_continue] = ACTIONS(2521), - [anon_sym_for] = ACTIONS(2521), - [anon_sym_in] = ACTIONS(2521), - [anon_sym_loop] = ACTIONS(2521), - [anon_sym_make] = ACTIONS(2521), - [anon_sym_while] = ACTIONS(2521), - [anon_sym_do] = ACTIONS(2521), - [anon_sym_if] = ACTIONS(2521), - [anon_sym_else] = ACTIONS(2521), - [anon_sym_match] = ACTIONS(2521), - [anon_sym_RBRACE] = ACTIONS(2521), - [anon_sym_try] = ACTIONS(2521), - [anon_sym_catch] = ACTIONS(2521), - [anon_sym_return] = ACTIONS(2521), - [anon_sym_source] = ACTIONS(2521), - [anon_sym_source_DASHenv] = ACTIONS(2521), - [anon_sym_register] = ACTIONS(2521), - [anon_sym_hide] = ACTIONS(2521), - [anon_sym_hide_DASHenv] = ACTIONS(2521), - [anon_sym_overlay] = ACTIONS(2521), - [anon_sym_new] = ACTIONS(2521), - [anon_sym_as] = ACTIONS(2521), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2521), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2521), - [aux_sym__val_number_decimal_token1] = ACTIONS(2521), - [aux_sym__val_number_decimal_token2] = ACTIONS(2521), - [aux_sym__val_number_decimal_token3] = ACTIONS(2521), - [aux_sym__val_number_decimal_token4] = ACTIONS(2521), - [aux_sym__val_number_token1] = ACTIONS(2521), - [aux_sym__val_number_token2] = ACTIONS(2521), - [aux_sym__val_number_token3] = ACTIONS(2521), - [anon_sym_DQUOTE] = ACTIONS(2521), - [sym__str_single_quotes] = ACTIONS(2521), - [sym__str_back_ticks] = ACTIONS(2521), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2521), - [sym__entry_separator] = ACTIONS(2523), - [anon_sym_PLUS] = ACTIONS(2521), + [anon_sym_export] = ACTIONS(2547), + [anon_sym_alias] = ACTIONS(2547), + [anon_sym_let] = ACTIONS(2547), + [anon_sym_let_DASHenv] = ACTIONS(2547), + [anon_sym_mut] = ACTIONS(2547), + [anon_sym_const] = ACTIONS(2547), + [aux_sym_cmd_identifier_token1] = ACTIONS(2547), + [aux_sym_cmd_identifier_token2] = ACTIONS(2547), + [aux_sym_cmd_identifier_token3] = ACTIONS(2547), + [aux_sym_cmd_identifier_token4] = ACTIONS(2547), + [aux_sym_cmd_identifier_token5] = ACTIONS(2547), + [aux_sym_cmd_identifier_token6] = ACTIONS(2547), + [aux_sym_cmd_identifier_token7] = ACTIONS(2547), + [aux_sym_cmd_identifier_token8] = ACTIONS(2547), + [aux_sym_cmd_identifier_token9] = ACTIONS(2547), + [aux_sym_cmd_identifier_token10] = ACTIONS(2547), + [aux_sym_cmd_identifier_token11] = ACTIONS(2547), + [aux_sym_cmd_identifier_token12] = ACTIONS(2547), + [aux_sym_cmd_identifier_token13] = ACTIONS(2547), + [aux_sym_cmd_identifier_token14] = ACTIONS(2547), + [aux_sym_cmd_identifier_token15] = ACTIONS(2547), + [aux_sym_cmd_identifier_token16] = ACTIONS(2547), + [aux_sym_cmd_identifier_token17] = ACTIONS(2547), + [aux_sym_cmd_identifier_token18] = ACTIONS(2547), + [aux_sym_cmd_identifier_token19] = ACTIONS(2547), + [aux_sym_cmd_identifier_token20] = ACTIONS(2547), + [aux_sym_cmd_identifier_token21] = ACTIONS(2547), + [aux_sym_cmd_identifier_token22] = ACTIONS(2547), + [aux_sym_cmd_identifier_token23] = ACTIONS(2547), + [aux_sym_cmd_identifier_token24] = ACTIONS(2547), + [aux_sym_cmd_identifier_token25] = ACTIONS(2547), + [aux_sym_cmd_identifier_token26] = ACTIONS(2547), + [aux_sym_cmd_identifier_token27] = ACTIONS(2547), + [aux_sym_cmd_identifier_token28] = ACTIONS(2547), + [aux_sym_cmd_identifier_token29] = ACTIONS(2547), + [aux_sym_cmd_identifier_token30] = ACTIONS(2547), + [aux_sym_cmd_identifier_token31] = ACTIONS(2547), + [aux_sym_cmd_identifier_token32] = ACTIONS(2547), + [aux_sym_cmd_identifier_token33] = ACTIONS(2547), + [aux_sym_cmd_identifier_token34] = ACTIONS(2547), + [aux_sym_cmd_identifier_token35] = ACTIONS(2547), + [aux_sym_cmd_identifier_token36] = ACTIONS(2547), + [anon_sym_true] = ACTIONS(2547), + [anon_sym_false] = ACTIONS(2547), + [anon_sym_null] = ACTIONS(2547), + [aux_sym_cmd_identifier_token38] = ACTIONS(2547), + [aux_sym_cmd_identifier_token39] = ACTIONS(2547), + [aux_sym_cmd_identifier_token40] = ACTIONS(2547), + [anon_sym_def] = ACTIONS(2547), + [anon_sym_export_DASHenv] = ACTIONS(2547), + [anon_sym_extern] = ACTIONS(2547), + [anon_sym_module] = ACTIONS(2547), + [anon_sym_use] = ACTIONS(2547), + [anon_sym_LPAREN] = ACTIONS(2547), + [anon_sym_DOLLAR] = ACTIONS(2547), + [anon_sym_error] = ACTIONS(2547), + [anon_sym_list] = ACTIONS(2547), + [anon_sym_DASH] = ACTIONS(2547), + [anon_sym_break] = ACTIONS(2547), + [anon_sym_continue] = ACTIONS(2547), + [anon_sym_for] = ACTIONS(2547), + [anon_sym_in] = ACTIONS(2547), + [anon_sym_loop] = ACTIONS(2547), + [anon_sym_make] = ACTIONS(2547), + [anon_sym_while] = ACTIONS(2547), + [anon_sym_do] = ACTIONS(2547), + [anon_sym_if] = ACTIONS(2547), + [anon_sym_else] = ACTIONS(2547), + [anon_sym_match] = ACTIONS(2547), + [anon_sym_RBRACE] = ACTIONS(2547), + [anon_sym_try] = ACTIONS(2547), + [anon_sym_catch] = ACTIONS(2547), + [anon_sym_return] = ACTIONS(2547), + [anon_sym_source] = ACTIONS(2547), + [anon_sym_source_DASHenv] = ACTIONS(2547), + [anon_sym_register] = ACTIONS(2547), + [anon_sym_hide] = ACTIONS(2547), + [anon_sym_hide_DASHenv] = ACTIONS(2547), + [anon_sym_overlay] = ACTIONS(2547), + [anon_sym_new] = ACTIONS(2547), + [anon_sym_as] = ACTIONS(2547), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2547), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2547), + [aux_sym__val_number_decimal_token1] = ACTIONS(2547), + [aux_sym__val_number_decimal_token2] = ACTIONS(2547), + [aux_sym__val_number_decimal_token3] = ACTIONS(2547), + [aux_sym__val_number_decimal_token4] = ACTIONS(2547), + [aux_sym__val_number_token1] = ACTIONS(2547), + [aux_sym__val_number_token2] = ACTIONS(2547), + [aux_sym__val_number_token3] = ACTIONS(2547), + [anon_sym_DQUOTE] = ACTIONS(2547), + [sym__str_single_quotes] = ACTIONS(2547), + [sym__str_back_ticks] = ACTIONS(2547), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2547), + [sym__entry_separator] = ACTIONS(2549), + [anon_sym_PLUS] = ACTIONS(2547), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2549), }, [616] = { [sym_comment] = STATE(616), - [anon_sym_export] = ACTIONS(2525), - [anon_sym_alias] = ACTIONS(2525), - [anon_sym_let] = ACTIONS(2525), - [anon_sym_let_DASHenv] = ACTIONS(2525), - [anon_sym_mut] = ACTIONS(2525), - [anon_sym_const] = ACTIONS(2525), - [aux_sym_cmd_identifier_token1] = ACTIONS(2525), - [aux_sym_cmd_identifier_token2] = ACTIONS(2525), - [aux_sym_cmd_identifier_token3] = ACTIONS(2525), - [aux_sym_cmd_identifier_token4] = ACTIONS(2525), - [aux_sym_cmd_identifier_token5] = ACTIONS(2525), - [aux_sym_cmd_identifier_token6] = ACTIONS(2525), - [aux_sym_cmd_identifier_token7] = ACTIONS(2525), - [aux_sym_cmd_identifier_token8] = ACTIONS(2525), - [aux_sym_cmd_identifier_token9] = ACTIONS(2525), - [aux_sym_cmd_identifier_token10] = ACTIONS(2525), - [aux_sym_cmd_identifier_token11] = ACTIONS(2525), - [aux_sym_cmd_identifier_token12] = ACTIONS(2525), - [aux_sym_cmd_identifier_token13] = ACTIONS(2525), - [aux_sym_cmd_identifier_token14] = ACTIONS(2525), - [aux_sym_cmd_identifier_token15] = ACTIONS(2525), - [aux_sym_cmd_identifier_token16] = ACTIONS(2525), - [aux_sym_cmd_identifier_token17] = ACTIONS(2525), - [aux_sym_cmd_identifier_token18] = ACTIONS(2525), - [aux_sym_cmd_identifier_token19] = ACTIONS(2525), - [aux_sym_cmd_identifier_token20] = ACTIONS(2525), - [aux_sym_cmd_identifier_token21] = ACTIONS(2525), - [aux_sym_cmd_identifier_token22] = ACTIONS(2525), - [aux_sym_cmd_identifier_token23] = ACTIONS(2525), - [aux_sym_cmd_identifier_token24] = ACTIONS(2525), - [aux_sym_cmd_identifier_token25] = ACTIONS(2525), - [aux_sym_cmd_identifier_token26] = ACTIONS(2525), - [aux_sym_cmd_identifier_token27] = ACTIONS(2525), - [aux_sym_cmd_identifier_token28] = ACTIONS(2525), - [aux_sym_cmd_identifier_token29] = ACTIONS(2525), - [aux_sym_cmd_identifier_token30] = ACTIONS(2525), - [aux_sym_cmd_identifier_token31] = ACTIONS(2525), - [aux_sym_cmd_identifier_token32] = ACTIONS(2525), - [aux_sym_cmd_identifier_token33] = ACTIONS(2525), - [aux_sym_cmd_identifier_token34] = ACTIONS(2525), - [aux_sym_cmd_identifier_token35] = ACTIONS(2525), - [aux_sym_cmd_identifier_token36] = ACTIONS(2525), - [anon_sym_true] = ACTIONS(2525), - [anon_sym_false] = ACTIONS(2525), - [anon_sym_null] = ACTIONS(2525), - [aux_sym_cmd_identifier_token38] = ACTIONS(2525), - [aux_sym_cmd_identifier_token39] = ACTIONS(2525), - [aux_sym_cmd_identifier_token40] = ACTIONS(2525), - [anon_sym_def] = ACTIONS(2525), - [anon_sym_export_DASHenv] = ACTIONS(2525), - [anon_sym_extern] = ACTIONS(2525), - [anon_sym_module] = ACTIONS(2525), - [anon_sym_use] = ACTIONS(2525), - [anon_sym_LPAREN] = ACTIONS(2525), - [anon_sym_DOLLAR] = ACTIONS(2525), - [anon_sym_error] = ACTIONS(2525), - [anon_sym_list] = ACTIONS(2525), - [anon_sym_DASH] = ACTIONS(2525), - [anon_sym_break] = ACTIONS(2525), - [anon_sym_continue] = ACTIONS(2525), - [anon_sym_for] = ACTIONS(2525), - [anon_sym_in] = ACTIONS(2525), - [anon_sym_loop] = ACTIONS(2525), - [anon_sym_make] = ACTIONS(2525), - [anon_sym_while] = ACTIONS(2525), - [anon_sym_do] = ACTIONS(2525), - [anon_sym_if] = ACTIONS(2525), - [anon_sym_else] = ACTIONS(2525), - [anon_sym_match] = ACTIONS(2525), - [anon_sym_RBRACE] = ACTIONS(2525), - [anon_sym_try] = ACTIONS(2525), - [anon_sym_catch] = ACTIONS(2525), - [anon_sym_return] = ACTIONS(2525), - [anon_sym_source] = ACTIONS(2525), - [anon_sym_source_DASHenv] = ACTIONS(2525), - [anon_sym_register] = ACTIONS(2525), - [anon_sym_hide] = ACTIONS(2525), - [anon_sym_hide_DASHenv] = ACTIONS(2525), - [anon_sym_overlay] = ACTIONS(2525), - [anon_sym_new] = ACTIONS(2525), - [anon_sym_as] = ACTIONS(2525), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2525), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2525), - [aux_sym__val_number_decimal_token1] = ACTIONS(2525), - [aux_sym__val_number_decimal_token2] = ACTIONS(2525), - [aux_sym__val_number_decimal_token3] = ACTIONS(2525), - [aux_sym__val_number_decimal_token4] = ACTIONS(2525), - [aux_sym__val_number_token1] = ACTIONS(2525), - [aux_sym__val_number_token2] = ACTIONS(2525), - [aux_sym__val_number_token3] = ACTIONS(2525), - [anon_sym_DQUOTE] = ACTIONS(2525), - [sym__str_single_quotes] = ACTIONS(2525), - [sym__str_back_ticks] = ACTIONS(2525), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2525), - [sym__entry_separator] = ACTIONS(2527), - [anon_sym_PLUS] = ACTIONS(2525), + [anon_sym_export] = ACTIONS(2551), + [anon_sym_alias] = ACTIONS(2551), + [anon_sym_let] = ACTIONS(2551), + [anon_sym_let_DASHenv] = ACTIONS(2551), + [anon_sym_mut] = ACTIONS(2551), + [anon_sym_const] = ACTIONS(2551), + [aux_sym_cmd_identifier_token1] = ACTIONS(2551), + [aux_sym_cmd_identifier_token2] = ACTIONS(2551), + [aux_sym_cmd_identifier_token3] = ACTIONS(2551), + [aux_sym_cmd_identifier_token4] = ACTIONS(2551), + [aux_sym_cmd_identifier_token5] = ACTIONS(2551), + [aux_sym_cmd_identifier_token6] = ACTIONS(2551), + [aux_sym_cmd_identifier_token7] = ACTIONS(2551), + [aux_sym_cmd_identifier_token8] = ACTIONS(2551), + [aux_sym_cmd_identifier_token9] = ACTIONS(2551), + [aux_sym_cmd_identifier_token10] = ACTIONS(2551), + [aux_sym_cmd_identifier_token11] = ACTIONS(2551), + [aux_sym_cmd_identifier_token12] = ACTIONS(2551), + [aux_sym_cmd_identifier_token13] = ACTIONS(2551), + [aux_sym_cmd_identifier_token14] = ACTIONS(2551), + [aux_sym_cmd_identifier_token15] = ACTIONS(2551), + [aux_sym_cmd_identifier_token16] = ACTIONS(2551), + [aux_sym_cmd_identifier_token17] = ACTIONS(2551), + [aux_sym_cmd_identifier_token18] = ACTIONS(2551), + [aux_sym_cmd_identifier_token19] = ACTIONS(2551), + [aux_sym_cmd_identifier_token20] = ACTIONS(2551), + [aux_sym_cmd_identifier_token21] = ACTIONS(2551), + [aux_sym_cmd_identifier_token22] = ACTIONS(2551), + [aux_sym_cmd_identifier_token23] = ACTIONS(2551), + [aux_sym_cmd_identifier_token24] = ACTIONS(2551), + [aux_sym_cmd_identifier_token25] = ACTIONS(2551), + [aux_sym_cmd_identifier_token26] = ACTIONS(2551), + [aux_sym_cmd_identifier_token27] = ACTIONS(2551), + [aux_sym_cmd_identifier_token28] = ACTIONS(2551), + [aux_sym_cmd_identifier_token29] = ACTIONS(2551), + [aux_sym_cmd_identifier_token30] = ACTIONS(2551), + [aux_sym_cmd_identifier_token31] = ACTIONS(2551), + [aux_sym_cmd_identifier_token32] = ACTIONS(2551), + [aux_sym_cmd_identifier_token33] = ACTIONS(2551), + [aux_sym_cmd_identifier_token34] = ACTIONS(2551), + [aux_sym_cmd_identifier_token35] = ACTIONS(2551), + [aux_sym_cmd_identifier_token36] = ACTIONS(2551), + [anon_sym_true] = ACTIONS(2551), + [anon_sym_false] = ACTIONS(2551), + [anon_sym_null] = ACTIONS(2551), + [aux_sym_cmd_identifier_token38] = ACTIONS(2551), + [aux_sym_cmd_identifier_token39] = ACTIONS(2551), + [aux_sym_cmd_identifier_token40] = ACTIONS(2551), + [anon_sym_def] = ACTIONS(2551), + [anon_sym_export_DASHenv] = ACTIONS(2551), + [anon_sym_extern] = ACTIONS(2551), + [anon_sym_module] = ACTIONS(2551), + [anon_sym_use] = ACTIONS(2551), + [anon_sym_LPAREN] = ACTIONS(2551), + [anon_sym_DOLLAR] = ACTIONS(2551), + [anon_sym_error] = ACTIONS(2551), + [anon_sym_list] = ACTIONS(2551), + [anon_sym_DASH] = ACTIONS(2551), + [anon_sym_break] = ACTIONS(2551), + [anon_sym_continue] = ACTIONS(2551), + [anon_sym_for] = ACTIONS(2551), + [anon_sym_in] = ACTIONS(2551), + [anon_sym_loop] = ACTIONS(2551), + [anon_sym_make] = ACTIONS(2551), + [anon_sym_while] = ACTIONS(2551), + [anon_sym_do] = ACTIONS(2551), + [anon_sym_if] = ACTIONS(2551), + [anon_sym_else] = ACTIONS(2551), + [anon_sym_match] = ACTIONS(2551), + [anon_sym_RBRACE] = ACTIONS(2551), + [anon_sym_try] = ACTIONS(2551), + [anon_sym_catch] = ACTIONS(2551), + [anon_sym_return] = ACTIONS(2551), + [anon_sym_source] = ACTIONS(2551), + [anon_sym_source_DASHenv] = ACTIONS(2551), + [anon_sym_register] = ACTIONS(2551), + [anon_sym_hide] = ACTIONS(2551), + [anon_sym_hide_DASHenv] = ACTIONS(2551), + [anon_sym_overlay] = ACTIONS(2551), + [anon_sym_new] = ACTIONS(2551), + [anon_sym_as] = ACTIONS(2551), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2551), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2551), + [aux_sym__val_number_decimal_token1] = ACTIONS(2551), + [aux_sym__val_number_decimal_token2] = ACTIONS(2551), + [aux_sym__val_number_decimal_token3] = ACTIONS(2551), + [aux_sym__val_number_decimal_token4] = ACTIONS(2551), + [aux_sym__val_number_token1] = ACTIONS(2551), + [aux_sym__val_number_token2] = ACTIONS(2551), + [aux_sym__val_number_token3] = ACTIONS(2551), + [anon_sym_DQUOTE] = ACTIONS(2551), + [sym__str_single_quotes] = ACTIONS(2551), + [sym__str_back_ticks] = ACTIONS(2551), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2551), + [sym__entry_separator] = ACTIONS(2553), + [anon_sym_PLUS] = ACTIONS(2551), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2553), }, [617] = { [sym_comment] = STATE(617), - [anon_sym_export] = ACTIONS(1931), - [anon_sym_alias] = ACTIONS(1931), - [anon_sym_let] = ACTIONS(1931), - [anon_sym_let_DASHenv] = ACTIONS(1931), - [anon_sym_mut] = ACTIONS(1931), - [anon_sym_const] = ACTIONS(1931), - [aux_sym_cmd_identifier_token1] = ACTIONS(1931), - [aux_sym_cmd_identifier_token2] = ACTIONS(1931), - [aux_sym_cmd_identifier_token3] = ACTIONS(1931), - [aux_sym_cmd_identifier_token4] = ACTIONS(1931), - [aux_sym_cmd_identifier_token5] = ACTIONS(1931), - [aux_sym_cmd_identifier_token6] = ACTIONS(1931), - [aux_sym_cmd_identifier_token7] = ACTIONS(1931), - [aux_sym_cmd_identifier_token8] = ACTIONS(1931), - [aux_sym_cmd_identifier_token9] = ACTIONS(1931), - [aux_sym_cmd_identifier_token10] = ACTIONS(1931), - [aux_sym_cmd_identifier_token11] = ACTIONS(1931), - [aux_sym_cmd_identifier_token12] = ACTIONS(1931), - [aux_sym_cmd_identifier_token13] = ACTIONS(1931), - [aux_sym_cmd_identifier_token14] = ACTIONS(1931), - [aux_sym_cmd_identifier_token15] = ACTIONS(1931), - [aux_sym_cmd_identifier_token16] = ACTIONS(1931), - [aux_sym_cmd_identifier_token17] = ACTIONS(1931), - [aux_sym_cmd_identifier_token18] = ACTIONS(1931), - [aux_sym_cmd_identifier_token19] = ACTIONS(1931), - [aux_sym_cmd_identifier_token20] = ACTIONS(1931), - [aux_sym_cmd_identifier_token21] = ACTIONS(1931), - [aux_sym_cmd_identifier_token22] = ACTIONS(1931), - [aux_sym_cmd_identifier_token23] = ACTIONS(1931), - [aux_sym_cmd_identifier_token24] = ACTIONS(1931), - [aux_sym_cmd_identifier_token25] = ACTIONS(1931), - [aux_sym_cmd_identifier_token26] = ACTIONS(1931), - [aux_sym_cmd_identifier_token27] = ACTIONS(1931), - [aux_sym_cmd_identifier_token28] = ACTIONS(1931), - [aux_sym_cmd_identifier_token29] = ACTIONS(1931), - [aux_sym_cmd_identifier_token30] = ACTIONS(1931), - [aux_sym_cmd_identifier_token31] = ACTIONS(1931), - [aux_sym_cmd_identifier_token32] = ACTIONS(1931), - [aux_sym_cmd_identifier_token33] = ACTIONS(1931), - [aux_sym_cmd_identifier_token34] = ACTIONS(1931), - [aux_sym_cmd_identifier_token35] = ACTIONS(1931), - [aux_sym_cmd_identifier_token36] = ACTIONS(1931), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_null] = ACTIONS(1931), - [aux_sym_cmd_identifier_token38] = ACTIONS(1931), - [aux_sym_cmd_identifier_token39] = ACTIONS(1931), - [aux_sym_cmd_identifier_token40] = ACTIONS(1931), - [anon_sym_def] = ACTIONS(1931), - [anon_sym_export_DASHenv] = ACTIONS(1931), - [anon_sym_extern] = ACTIONS(1931), - [anon_sym_module] = ACTIONS(1931), - [anon_sym_use] = ACTIONS(1931), - [anon_sym_LPAREN] = ACTIONS(1931), - [anon_sym_DOLLAR] = ACTIONS(1931), - [anon_sym_error] = ACTIONS(1931), - [anon_sym_list] = ACTIONS(1931), - [anon_sym_DASH] = ACTIONS(1931), - [anon_sym_break] = ACTIONS(1931), - [anon_sym_continue] = ACTIONS(1931), - [anon_sym_for] = ACTIONS(1931), - [anon_sym_in] = ACTIONS(1931), - [anon_sym_loop] = ACTIONS(1931), - [anon_sym_make] = ACTIONS(1931), - [anon_sym_while] = ACTIONS(1931), - [anon_sym_do] = ACTIONS(1931), - [anon_sym_if] = ACTIONS(1931), - [anon_sym_else] = ACTIONS(1931), - [anon_sym_match] = ACTIONS(1931), - [anon_sym_RBRACE] = ACTIONS(1931), - [anon_sym_try] = ACTIONS(1931), - [anon_sym_catch] = ACTIONS(1931), - [anon_sym_return] = ACTIONS(1931), - [anon_sym_source] = ACTIONS(1931), - [anon_sym_source_DASHenv] = ACTIONS(1931), - [anon_sym_register] = ACTIONS(1931), - [anon_sym_hide] = ACTIONS(1931), - [anon_sym_hide_DASHenv] = ACTIONS(1931), - [anon_sym_overlay] = ACTIONS(1931), - [anon_sym_new] = ACTIONS(1931), - [anon_sym_as] = ACTIONS(1931), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1931), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1931), - [aux_sym__val_number_decimal_token1] = ACTIONS(1931), - [aux_sym__val_number_decimal_token2] = ACTIONS(1931), - [aux_sym__val_number_decimal_token3] = ACTIONS(1931), - [aux_sym__val_number_decimal_token4] = ACTIONS(1931), - [aux_sym__val_number_token1] = ACTIONS(1931), - [aux_sym__val_number_token2] = ACTIONS(1931), - [aux_sym__val_number_token3] = ACTIONS(1931), - [anon_sym_DQUOTE] = ACTIONS(1931), - [sym__str_single_quotes] = ACTIONS(1931), - [sym__str_back_ticks] = ACTIONS(1931), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1931), - [sym__entry_separator] = ACTIONS(1933), - [anon_sym_PLUS] = ACTIONS(1931), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_export] = ACTIONS(1769), + [anon_sym_alias] = ACTIONS(1769), + [anon_sym_let] = ACTIONS(1769), + [anon_sym_let_DASHenv] = ACTIONS(1769), + [anon_sym_mut] = ACTIONS(1769), + [anon_sym_const] = ACTIONS(1769), + [aux_sym_cmd_identifier_token1] = ACTIONS(1769), + [aux_sym_cmd_identifier_token2] = ACTIONS(1769), + [aux_sym_cmd_identifier_token3] = ACTIONS(1769), + [aux_sym_cmd_identifier_token4] = ACTIONS(1769), + [aux_sym_cmd_identifier_token5] = ACTIONS(1769), + [aux_sym_cmd_identifier_token6] = ACTIONS(1769), + [aux_sym_cmd_identifier_token7] = ACTIONS(1769), + [aux_sym_cmd_identifier_token8] = ACTIONS(1769), + [aux_sym_cmd_identifier_token9] = ACTIONS(1769), + [aux_sym_cmd_identifier_token10] = ACTIONS(1769), + [aux_sym_cmd_identifier_token11] = ACTIONS(1769), + [aux_sym_cmd_identifier_token12] = ACTIONS(1769), + [aux_sym_cmd_identifier_token13] = ACTIONS(1769), + [aux_sym_cmd_identifier_token14] = ACTIONS(1769), + [aux_sym_cmd_identifier_token15] = ACTIONS(1769), + [aux_sym_cmd_identifier_token16] = ACTIONS(1769), + [aux_sym_cmd_identifier_token17] = ACTIONS(1769), + [aux_sym_cmd_identifier_token18] = ACTIONS(1769), + [aux_sym_cmd_identifier_token19] = ACTIONS(1769), + [aux_sym_cmd_identifier_token20] = ACTIONS(1769), + [aux_sym_cmd_identifier_token21] = ACTIONS(1769), + [aux_sym_cmd_identifier_token22] = ACTIONS(1769), + [aux_sym_cmd_identifier_token23] = ACTIONS(1769), + [aux_sym_cmd_identifier_token24] = ACTIONS(1769), + [aux_sym_cmd_identifier_token25] = ACTIONS(1769), + [aux_sym_cmd_identifier_token26] = ACTIONS(1769), + [aux_sym_cmd_identifier_token27] = ACTIONS(1769), + [aux_sym_cmd_identifier_token28] = ACTIONS(1769), + [aux_sym_cmd_identifier_token29] = ACTIONS(1769), + [aux_sym_cmd_identifier_token30] = ACTIONS(1769), + [aux_sym_cmd_identifier_token31] = ACTIONS(1769), + [aux_sym_cmd_identifier_token32] = ACTIONS(1769), + [aux_sym_cmd_identifier_token33] = ACTIONS(1769), + [aux_sym_cmd_identifier_token34] = ACTIONS(1769), + [aux_sym_cmd_identifier_token35] = ACTIONS(1769), + [aux_sym_cmd_identifier_token36] = ACTIONS(1769), + [anon_sym_true] = ACTIONS(1771), + [anon_sym_false] = ACTIONS(1771), + [anon_sym_null] = ACTIONS(1771), + [aux_sym_cmd_identifier_token38] = ACTIONS(1769), + [aux_sym_cmd_identifier_token39] = ACTIONS(1771), + [aux_sym_cmd_identifier_token40] = ACTIONS(1771), + [anon_sym_def] = ACTIONS(1769), + [anon_sym_export_DASHenv] = ACTIONS(1769), + [anon_sym_extern] = ACTIONS(1769), + [anon_sym_module] = ACTIONS(1769), + [anon_sym_use] = ACTIONS(1769), + [anon_sym_LPAREN] = ACTIONS(1771), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_error] = ACTIONS(1769), + [anon_sym_list] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_break] = ACTIONS(1769), + [anon_sym_continue] = ACTIONS(1769), + [anon_sym_for] = ACTIONS(1769), + [anon_sym_in] = ACTIONS(1769), + [anon_sym_loop] = ACTIONS(1769), + [anon_sym_make] = ACTIONS(1769), + [anon_sym_while] = ACTIONS(1769), + [anon_sym_do] = ACTIONS(1769), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_else] = ACTIONS(1769), + [anon_sym_match] = ACTIONS(1769), + [anon_sym_RBRACE] = ACTIONS(1771), + [anon_sym_try] = ACTIONS(1769), + [anon_sym_catch] = ACTIONS(1769), + [anon_sym_return] = ACTIONS(1769), + [anon_sym_source] = ACTIONS(1769), + [anon_sym_source_DASHenv] = ACTIONS(1769), + [anon_sym_register] = ACTIONS(1769), + [anon_sym_hide] = ACTIONS(1769), + [anon_sym_hide_DASHenv] = ACTIONS(1769), + [anon_sym_overlay] = ACTIONS(1769), + [anon_sym_new] = ACTIONS(1769), + [anon_sym_as] = ACTIONS(1769), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1771), + [aux_sym__immediate_decimal_token2] = ACTIONS(2555), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1771), + [aux_sym__val_number_decimal_token1] = ACTIONS(1769), + [aux_sym__val_number_decimal_token2] = ACTIONS(1771), + [aux_sym__val_number_decimal_token3] = ACTIONS(1771), + [aux_sym__val_number_decimal_token4] = ACTIONS(1771), + [aux_sym__val_number_token1] = ACTIONS(1771), + [aux_sym__val_number_token2] = ACTIONS(1771), + [aux_sym__val_number_token3] = ACTIONS(1771), + [anon_sym_DQUOTE] = ACTIONS(1771), + [sym__str_single_quotes] = ACTIONS(1771), + [sym__str_back_ticks] = ACTIONS(1771), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1769), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1771), }, [618] = { [sym_comment] = STATE(618), - [anon_sym_export] = ACTIONS(2015), - [anon_sym_alias] = ACTIONS(2015), - [anon_sym_let] = ACTIONS(2015), - [anon_sym_let_DASHenv] = ACTIONS(2015), - [anon_sym_mut] = ACTIONS(2015), - [anon_sym_const] = ACTIONS(2015), - [aux_sym_cmd_identifier_token1] = ACTIONS(2015), - [aux_sym_cmd_identifier_token2] = ACTIONS(2015), - [aux_sym_cmd_identifier_token3] = ACTIONS(2015), - [aux_sym_cmd_identifier_token4] = ACTIONS(2015), - [aux_sym_cmd_identifier_token5] = ACTIONS(2015), - [aux_sym_cmd_identifier_token6] = ACTIONS(2015), - [aux_sym_cmd_identifier_token7] = ACTIONS(2015), - [aux_sym_cmd_identifier_token8] = ACTIONS(2015), - [aux_sym_cmd_identifier_token9] = ACTIONS(2015), - [aux_sym_cmd_identifier_token10] = ACTIONS(2015), - [aux_sym_cmd_identifier_token11] = ACTIONS(2015), - [aux_sym_cmd_identifier_token12] = ACTIONS(2015), - [aux_sym_cmd_identifier_token13] = ACTIONS(2015), - [aux_sym_cmd_identifier_token14] = ACTIONS(2015), - [aux_sym_cmd_identifier_token15] = ACTIONS(2015), - [aux_sym_cmd_identifier_token16] = ACTIONS(2015), - [aux_sym_cmd_identifier_token17] = ACTIONS(2015), - [aux_sym_cmd_identifier_token18] = ACTIONS(2015), - [aux_sym_cmd_identifier_token19] = ACTIONS(2015), - [aux_sym_cmd_identifier_token20] = ACTIONS(2015), - [aux_sym_cmd_identifier_token21] = ACTIONS(2015), - [aux_sym_cmd_identifier_token22] = ACTIONS(2015), - [aux_sym_cmd_identifier_token23] = ACTIONS(2015), - [aux_sym_cmd_identifier_token24] = ACTIONS(2015), - [aux_sym_cmd_identifier_token25] = ACTIONS(2015), - [aux_sym_cmd_identifier_token26] = ACTIONS(2015), - [aux_sym_cmd_identifier_token27] = ACTIONS(2015), - [aux_sym_cmd_identifier_token28] = ACTIONS(2015), - [aux_sym_cmd_identifier_token29] = ACTIONS(2015), - [aux_sym_cmd_identifier_token30] = ACTIONS(2015), - [aux_sym_cmd_identifier_token31] = ACTIONS(2015), - [aux_sym_cmd_identifier_token32] = ACTIONS(2015), - [aux_sym_cmd_identifier_token33] = ACTIONS(2015), - [aux_sym_cmd_identifier_token34] = ACTIONS(2015), - [aux_sym_cmd_identifier_token35] = ACTIONS(2015), - [aux_sym_cmd_identifier_token36] = ACTIONS(2015), - [anon_sym_true] = ACTIONS(2015), - [anon_sym_false] = ACTIONS(2015), - [anon_sym_null] = ACTIONS(2015), - [aux_sym_cmd_identifier_token38] = ACTIONS(2015), - [aux_sym_cmd_identifier_token39] = ACTIONS(2015), - [aux_sym_cmd_identifier_token40] = ACTIONS(2015), - [anon_sym_def] = ACTIONS(2015), - [anon_sym_export_DASHenv] = ACTIONS(2015), - [anon_sym_extern] = ACTIONS(2015), - [anon_sym_module] = ACTIONS(2015), - [anon_sym_use] = ACTIONS(2015), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_DOLLAR] = ACTIONS(2015), - [anon_sym_error] = ACTIONS(2015), - [anon_sym_list] = ACTIONS(2015), - [anon_sym_DASH] = ACTIONS(2015), - [anon_sym_break] = ACTIONS(2015), - [anon_sym_continue] = ACTIONS(2015), - [anon_sym_for] = ACTIONS(2015), - [anon_sym_in] = ACTIONS(2015), - [anon_sym_loop] = ACTIONS(2015), - [anon_sym_make] = ACTIONS(2015), - [anon_sym_while] = ACTIONS(2015), - [anon_sym_do] = ACTIONS(2015), - [anon_sym_if] = ACTIONS(2015), - [anon_sym_else] = ACTIONS(2015), - [anon_sym_match] = ACTIONS(2015), - [anon_sym_RBRACE] = ACTIONS(2015), - [anon_sym_try] = ACTIONS(2015), - [anon_sym_catch] = ACTIONS(2015), - [anon_sym_return] = ACTIONS(2015), - [anon_sym_source] = ACTIONS(2015), - [anon_sym_source_DASHenv] = ACTIONS(2015), - [anon_sym_register] = ACTIONS(2015), - [anon_sym_hide] = ACTIONS(2015), - [anon_sym_hide_DASHenv] = ACTIONS(2015), - [anon_sym_overlay] = ACTIONS(2015), - [anon_sym_new] = ACTIONS(2015), - [anon_sym_as] = ACTIONS(2015), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2015), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2015), - [aux_sym__val_number_decimal_token1] = ACTIONS(2015), - [aux_sym__val_number_decimal_token2] = ACTIONS(2015), - [aux_sym__val_number_decimal_token3] = ACTIONS(2015), - [aux_sym__val_number_decimal_token4] = ACTIONS(2015), - [aux_sym__val_number_token1] = ACTIONS(2015), - [aux_sym__val_number_token2] = ACTIONS(2015), - [aux_sym__val_number_token3] = ACTIONS(2015), - [anon_sym_DQUOTE] = ACTIONS(2015), - [sym__str_single_quotes] = ACTIONS(2015), - [sym__str_back_ticks] = ACTIONS(2015), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2015), - [sym__entry_separator] = ACTIONS(2017), - [anon_sym_PLUS] = ACTIONS(2015), + [anon_sym_export] = ACTIONS(2557), + [anon_sym_alias] = ACTIONS(2557), + [anon_sym_let] = ACTIONS(2557), + [anon_sym_let_DASHenv] = ACTIONS(2557), + [anon_sym_mut] = ACTIONS(2557), + [anon_sym_const] = ACTIONS(2557), + [aux_sym_cmd_identifier_token1] = ACTIONS(2557), + [aux_sym_cmd_identifier_token2] = ACTIONS(2557), + [aux_sym_cmd_identifier_token3] = ACTIONS(2557), + [aux_sym_cmd_identifier_token4] = ACTIONS(2557), + [aux_sym_cmd_identifier_token5] = ACTIONS(2557), + [aux_sym_cmd_identifier_token6] = ACTIONS(2557), + [aux_sym_cmd_identifier_token7] = ACTIONS(2557), + [aux_sym_cmd_identifier_token8] = ACTIONS(2557), + [aux_sym_cmd_identifier_token9] = ACTIONS(2557), + [aux_sym_cmd_identifier_token10] = ACTIONS(2557), + [aux_sym_cmd_identifier_token11] = ACTIONS(2557), + [aux_sym_cmd_identifier_token12] = ACTIONS(2557), + [aux_sym_cmd_identifier_token13] = ACTIONS(2557), + [aux_sym_cmd_identifier_token14] = ACTIONS(2557), + [aux_sym_cmd_identifier_token15] = ACTIONS(2557), + [aux_sym_cmd_identifier_token16] = ACTIONS(2557), + [aux_sym_cmd_identifier_token17] = ACTIONS(2557), + [aux_sym_cmd_identifier_token18] = ACTIONS(2557), + [aux_sym_cmd_identifier_token19] = ACTIONS(2557), + [aux_sym_cmd_identifier_token20] = ACTIONS(2557), + [aux_sym_cmd_identifier_token21] = ACTIONS(2557), + [aux_sym_cmd_identifier_token22] = ACTIONS(2557), + [aux_sym_cmd_identifier_token23] = ACTIONS(2557), + [aux_sym_cmd_identifier_token24] = ACTIONS(2557), + [aux_sym_cmd_identifier_token25] = ACTIONS(2557), + [aux_sym_cmd_identifier_token26] = ACTIONS(2557), + [aux_sym_cmd_identifier_token27] = ACTIONS(2557), + [aux_sym_cmd_identifier_token28] = ACTIONS(2557), + [aux_sym_cmd_identifier_token29] = ACTIONS(2557), + [aux_sym_cmd_identifier_token30] = ACTIONS(2557), + [aux_sym_cmd_identifier_token31] = ACTIONS(2557), + [aux_sym_cmd_identifier_token32] = ACTIONS(2557), + [aux_sym_cmd_identifier_token33] = ACTIONS(2557), + [aux_sym_cmd_identifier_token34] = ACTIONS(2557), + [aux_sym_cmd_identifier_token35] = ACTIONS(2557), + [aux_sym_cmd_identifier_token36] = ACTIONS(2557), + [anon_sym_true] = ACTIONS(2557), + [anon_sym_false] = ACTIONS(2557), + [anon_sym_null] = ACTIONS(2557), + [aux_sym_cmd_identifier_token38] = ACTIONS(2557), + [aux_sym_cmd_identifier_token39] = ACTIONS(2557), + [aux_sym_cmd_identifier_token40] = ACTIONS(2557), + [anon_sym_def] = ACTIONS(2557), + [anon_sym_export_DASHenv] = ACTIONS(2557), + [anon_sym_extern] = ACTIONS(2557), + [anon_sym_module] = ACTIONS(2557), + [anon_sym_use] = ACTIONS(2557), + [anon_sym_LPAREN] = ACTIONS(2557), + [anon_sym_DOLLAR] = ACTIONS(2557), + [anon_sym_error] = ACTIONS(2557), + [anon_sym_list] = ACTIONS(2557), + [anon_sym_DASH] = ACTIONS(2557), + [anon_sym_break] = ACTIONS(2557), + [anon_sym_continue] = ACTIONS(2557), + [anon_sym_for] = ACTIONS(2557), + [anon_sym_in] = ACTIONS(2557), + [anon_sym_loop] = ACTIONS(2557), + [anon_sym_make] = ACTIONS(2557), + [anon_sym_while] = ACTIONS(2557), + [anon_sym_do] = ACTIONS(2557), + [anon_sym_if] = ACTIONS(2557), + [anon_sym_else] = ACTIONS(2557), + [anon_sym_match] = ACTIONS(2557), + [anon_sym_RBRACE] = ACTIONS(2557), + [anon_sym_try] = ACTIONS(2557), + [anon_sym_catch] = ACTIONS(2557), + [anon_sym_return] = ACTIONS(2557), + [anon_sym_source] = ACTIONS(2557), + [anon_sym_source_DASHenv] = ACTIONS(2557), + [anon_sym_register] = ACTIONS(2557), + [anon_sym_hide] = ACTIONS(2557), + [anon_sym_hide_DASHenv] = ACTIONS(2557), + [anon_sym_overlay] = ACTIONS(2557), + [anon_sym_new] = ACTIONS(2557), + [anon_sym_as] = ACTIONS(2557), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2557), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2557), + [aux_sym__val_number_decimal_token1] = ACTIONS(2557), + [aux_sym__val_number_decimal_token2] = ACTIONS(2557), + [aux_sym__val_number_decimal_token3] = ACTIONS(2557), + [aux_sym__val_number_decimal_token4] = ACTIONS(2557), + [aux_sym__val_number_token1] = ACTIONS(2557), + [aux_sym__val_number_token2] = ACTIONS(2557), + [aux_sym__val_number_token3] = ACTIONS(2557), + [anon_sym_DQUOTE] = ACTIONS(2557), + [sym__str_single_quotes] = ACTIONS(2557), + [sym__str_back_ticks] = ACTIONS(2557), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2557), + [sym__entry_separator] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2557), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2559), }, [619] = { [sym_comment] = STATE(619), - [anon_sym_export] = ACTIONS(1848), - [anon_sym_alias] = ACTIONS(1848), - [anon_sym_let] = ACTIONS(1848), - [anon_sym_let_DASHenv] = ACTIONS(1848), - [anon_sym_mut] = ACTIONS(1848), - [anon_sym_const] = ACTIONS(1848), - [aux_sym_cmd_identifier_token1] = ACTIONS(1848), - [aux_sym_cmd_identifier_token2] = ACTIONS(1848), - [aux_sym_cmd_identifier_token3] = ACTIONS(1848), - [aux_sym_cmd_identifier_token4] = ACTIONS(1848), - [aux_sym_cmd_identifier_token5] = ACTIONS(1848), - [aux_sym_cmd_identifier_token6] = ACTIONS(1848), - [aux_sym_cmd_identifier_token7] = ACTIONS(1848), - [aux_sym_cmd_identifier_token8] = ACTIONS(1848), - [aux_sym_cmd_identifier_token9] = ACTIONS(1848), - [aux_sym_cmd_identifier_token10] = ACTIONS(1848), - [aux_sym_cmd_identifier_token11] = ACTIONS(1848), - [aux_sym_cmd_identifier_token12] = ACTIONS(1848), - [aux_sym_cmd_identifier_token13] = ACTIONS(1848), - [aux_sym_cmd_identifier_token14] = ACTIONS(1848), - [aux_sym_cmd_identifier_token15] = ACTIONS(1848), - [aux_sym_cmd_identifier_token16] = ACTIONS(1848), - [aux_sym_cmd_identifier_token17] = ACTIONS(1848), - [aux_sym_cmd_identifier_token18] = ACTIONS(1848), - [aux_sym_cmd_identifier_token19] = ACTIONS(1848), - [aux_sym_cmd_identifier_token20] = ACTIONS(1848), - [aux_sym_cmd_identifier_token21] = ACTIONS(1848), - [aux_sym_cmd_identifier_token22] = ACTIONS(1848), - [aux_sym_cmd_identifier_token23] = ACTIONS(1848), - [aux_sym_cmd_identifier_token24] = ACTIONS(1848), - [aux_sym_cmd_identifier_token25] = ACTIONS(1848), - [aux_sym_cmd_identifier_token26] = ACTIONS(1848), - [aux_sym_cmd_identifier_token27] = ACTIONS(1848), - [aux_sym_cmd_identifier_token28] = ACTIONS(1848), - [aux_sym_cmd_identifier_token29] = ACTIONS(1848), - [aux_sym_cmd_identifier_token30] = ACTIONS(1848), - [aux_sym_cmd_identifier_token31] = ACTIONS(1848), - [aux_sym_cmd_identifier_token32] = ACTIONS(1848), - [aux_sym_cmd_identifier_token33] = ACTIONS(1848), - [aux_sym_cmd_identifier_token34] = ACTIONS(1848), - [aux_sym_cmd_identifier_token35] = ACTIONS(1848), - [aux_sym_cmd_identifier_token36] = ACTIONS(1848), - [anon_sym_true] = ACTIONS(1848), - [anon_sym_false] = ACTIONS(1848), - [anon_sym_null] = ACTIONS(1848), - [aux_sym_cmd_identifier_token38] = ACTIONS(1848), - [aux_sym_cmd_identifier_token39] = ACTIONS(1848), - [aux_sym_cmd_identifier_token40] = ACTIONS(1848), - [anon_sym_def] = ACTIONS(1848), - [anon_sym_export_DASHenv] = ACTIONS(1848), - [anon_sym_extern] = ACTIONS(1848), - [anon_sym_module] = ACTIONS(1848), - [anon_sym_use] = ACTIONS(1848), - [anon_sym_LPAREN] = ACTIONS(1848), - [anon_sym_DOLLAR] = ACTIONS(1848), - [anon_sym_error] = ACTIONS(1848), - [anon_sym_list] = ACTIONS(1848), - [anon_sym_DASH] = ACTIONS(1848), - [anon_sym_break] = ACTIONS(1848), - [anon_sym_continue] = ACTIONS(1848), - [anon_sym_for] = ACTIONS(1848), - [anon_sym_in] = ACTIONS(1848), - [anon_sym_loop] = ACTIONS(1848), - [anon_sym_make] = ACTIONS(1848), - [anon_sym_while] = ACTIONS(1848), - [anon_sym_do] = ACTIONS(1848), - [anon_sym_if] = ACTIONS(1848), - [anon_sym_else] = ACTIONS(1848), - [anon_sym_match] = ACTIONS(1848), - [anon_sym_RBRACE] = ACTIONS(1848), - [anon_sym_try] = ACTIONS(1848), - [anon_sym_catch] = ACTIONS(1848), - [anon_sym_return] = ACTIONS(1848), - [anon_sym_source] = ACTIONS(1848), - [anon_sym_source_DASHenv] = ACTIONS(1848), - [anon_sym_register] = ACTIONS(1848), - [anon_sym_hide] = ACTIONS(1848), - [anon_sym_hide_DASHenv] = ACTIONS(1848), - [anon_sym_overlay] = ACTIONS(1848), - [anon_sym_new] = ACTIONS(1848), - [anon_sym_as] = ACTIONS(1848), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1848), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1848), - [aux_sym__val_number_decimal_token1] = ACTIONS(1848), - [aux_sym__val_number_decimal_token2] = ACTIONS(1848), - [aux_sym__val_number_decimal_token3] = ACTIONS(1848), - [aux_sym__val_number_decimal_token4] = ACTIONS(1848), - [aux_sym__val_number_token1] = ACTIONS(1848), - [aux_sym__val_number_token2] = ACTIONS(1848), - [aux_sym__val_number_token3] = ACTIONS(1848), - [anon_sym_DQUOTE] = ACTIONS(1848), - [sym__str_single_quotes] = ACTIONS(1848), - [sym__str_back_ticks] = ACTIONS(1848), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1848), - [sym__entry_separator] = ACTIONS(1850), - [anon_sym_PLUS] = ACTIONS(1848), + [anon_sym_export] = ACTIONS(2561), + [anon_sym_alias] = ACTIONS(2561), + [anon_sym_let] = ACTIONS(2561), + [anon_sym_let_DASHenv] = ACTIONS(2561), + [anon_sym_mut] = ACTIONS(2561), + [anon_sym_const] = ACTIONS(2561), + [aux_sym_cmd_identifier_token1] = ACTIONS(2561), + [aux_sym_cmd_identifier_token2] = ACTIONS(2561), + [aux_sym_cmd_identifier_token3] = ACTIONS(2561), + [aux_sym_cmd_identifier_token4] = ACTIONS(2561), + [aux_sym_cmd_identifier_token5] = ACTIONS(2561), + [aux_sym_cmd_identifier_token6] = ACTIONS(2561), + [aux_sym_cmd_identifier_token7] = ACTIONS(2561), + [aux_sym_cmd_identifier_token8] = ACTIONS(2561), + [aux_sym_cmd_identifier_token9] = ACTIONS(2561), + [aux_sym_cmd_identifier_token10] = ACTIONS(2561), + [aux_sym_cmd_identifier_token11] = ACTIONS(2561), + [aux_sym_cmd_identifier_token12] = ACTIONS(2561), + [aux_sym_cmd_identifier_token13] = ACTIONS(2561), + [aux_sym_cmd_identifier_token14] = ACTIONS(2561), + [aux_sym_cmd_identifier_token15] = ACTIONS(2561), + [aux_sym_cmd_identifier_token16] = ACTIONS(2561), + [aux_sym_cmd_identifier_token17] = ACTIONS(2561), + [aux_sym_cmd_identifier_token18] = ACTIONS(2561), + [aux_sym_cmd_identifier_token19] = ACTIONS(2561), + [aux_sym_cmd_identifier_token20] = ACTIONS(2561), + [aux_sym_cmd_identifier_token21] = ACTIONS(2561), + [aux_sym_cmd_identifier_token22] = ACTIONS(2561), + [aux_sym_cmd_identifier_token23] = ACTIONS(2561), + [aux_sym_cmd_identifier_token24] = ACTIONS(2561), + [aux_sym_cmd_identifier_token25] = ACTIONS(2561), + [aux_sym_cmd_identifier_token26] = ACTIONS(2561), + [aux_sym_cmd_identifier_token27] = ACTIONS(2561), + [aux_sym_cmd_identifier_token28] = ACTIONS(2561), + [aux_sym_cmd_identifier_token29] = ACTIONS(2561), + [aux_sym_cmd_identifier_token30] = ACTIONS(2561), + [aux_sym_cmd_identifier_token31] = ACTIONS(2561), + [aux_sym_cmd_identifier_token32] = ACTIONS(2561), + [aux_sym_cmd_identifier_token33] = ACTIONS(2561), + [aux_sym_cmd_identifier_token34] = ACTIONS(2561), + [aux_sym_cmd_identifier_token35] = ACTIONS(2561), + [aux_sym_cmd_identifier_token36] = ACTIONS(2561), + [anon_sym_true] = ACTIONS(2561), + [anon_sym_false] = ACTIONS(2561), + [anon_sym_null] = ACTIONS(2561), + [aux_sym_cmd_identifier_token38] = ACTIONS(2561), + [aux_sym_cmd_identifier_token39] = ACTIONS(2561), + [aux_sym_cmd_identifier_token40] = ACTIONS(2561), + [anon_sym_def] = ACTIONS(2561), + [anon_sym_export_DASHenv] = ACTIONS(2561), + [anon_sym_extern] = ACTIONS(2561), + [anon_sym_module] = ACTIONS(2561), + [anon_sym_use] = ACTIONS(2561), + [anon_sym_LPAREN] = ACTIONS(2561), + [anon_sym_DOLLAR] = ACTIONS(2561), + [anon_sym_error] = ACTIONS(2561), + [anon_sym_list] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2561), + [anon_sym_break] = ACTIONS(2561), + [anon_sym_continue] = ACTIONS(2561), + [anon_sym_for] = ACTIONS(2561), + [anon_sym_in] = ACTIONS(2561), + [anon_sym_loop] = ACTIONS(2561), + [anon_sym_make] = ACTIONS(2561), + [anon_sym_while] = ACTIONS(2561), + [anon_sym_do] = ACTIONS(2561), + [anon_sym_if] = ACTIONS(2561), + [anon_sym_else] = ACTIONS(2561), + [anon_sym_match] = ACTIONS(2561), + [anon_sym_RBRACE] = ACTIONS(2561), + [anon_sym_try] = ACTIONS(2561), + [anon_sym_catch] = ACTIONS(2561), + [anon_sym_return] = ACTIONS(2561), + [anon_sym_source] = ACTIONS(2561), + [anon_sym_source_DASHenv] = ACTIONS(2561), + [anon_sym_register] = ACTIONS(2561), + [anon_sym_hide] = ACTIONS(2561), + [anon_sym_hide_DASHenv] = ACTIONS(2561), + [anon_sym_overlay] = ACTIONS(2561), + [anon_sym_new] = ACTIONS(2561), + [anon_sym_as] = ACTIONS(2561), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2561), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2561), + [aux_sym__val_number_decimal_token1] = ACTIONS(2561), + [aux_sym__val_number_decimal_token2] = ACTIONS(2561), + [aux_sym__val_number_decimal_token3] = ACTIONS(2561), + [aux_sym__val_number_decimal_token4] = ACTIONS(2561), + [aux_sym__val_number_token1] = ACTIONS(2561), + [aux_sym__val_number_token2] = ACTIONS(2561), + [aux_sym__val_number_token3] = ACTIONS(2561), + [anon_sym_DQUOTE] = ACTIONS(2561), + [sym__str_single_quotes] = ACTIONS(2561), + [sym__str_back_ticks] = ACTIONS(2561), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2561), + [sym__entry_separator] = ACTIONS(2563), + [anon_sym_PLUS] = ACTIONS(2561), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2563), }, [620] = { [sym_comment] = STATE(620), - [aux_sym__multiple_types_repeat1] = STATE(504), - [anon_sym_export] = ACTIONS(2332), - [anon_sym_alias] = ACTIONS(2332), - [anon_sym_let] = ACTIONS(2332), - [anon_sym_let_DASHenv] = ACTIONS(2332), - [anon_sym_mut] = ACTIONS(2332), - [anon_sym_const] = ACTIONS(2332), - [aux_sym_cmd_identifier_token1] = ACTIONS(2332), - [aux_sym_cmd_identifier_token2] = ACTIONS(2332), - [aux_sym_cmd_identifier_token3] = ACTIONS(2332), - [aux_sym_cmd_identifier_token4] = ACTIONS(2332), - [aux_sym_cmd_identifier_token5] = ACTIONS(2332), - [aux_sym_cmd_identifier_token6] = ACTIONS(2332), - [aux_sym_cmd_identifier_token7] = ACTIONS(2332), - [aux_sym_cmd_identifier_token8] = ACTIONS(2332), - [aux_sym_cmd_identifier_token9] = ACTIONS(2332), - [aux_sym_cmd_identifier_token10] = ACTIONS(2332), - [aux_sym_cmd_identifier_token11] = ACTIONS(2332), - [aux_sym_cmd_identifier_token12] = ACTIONS(2332), - [aux_sym_cmd_identifier_token13] = ACTIONS(2332), - [aux_sym_cmd_identifier_token14] = ACTIONS(2332), - [aux_sym_cmd_identifier_token15] = ACTIONS(2332), - [aux_sym_cmd_identifier_token16] = ACTIONS(2332), - [aux_sym_cmd_identifier_token17] = ACTIONS(2332), - [aux_sym_cmd_identifier_token18] = ACTIONS(2332), - [aux_sym_cmd_identifier_token19] = ACTIONS(2332), - [aux_sym_cmd_identifier_token20] = ACTIONS(2332), - [aux_sym_cmd_identifier_token21] = ACTIONS(2332), - [aux_sym_cmd_identifier_token22] = ACTIONS(2332), - [aux_sym_cmd_identifier_token23] = ACTIONS(2332), - [aux_sym_cmd_identifier_token24] = ACTIONS(2332), - [aux_sym_cmd_identifier_token25] = ACTIONS(2332), - [aux_sym_cmd_identifier_token26] = ACTIONS(2332), - [aux_sym_cmd_identifier_token27] = ACTIONS(2332), - [aux_sym_cmd_identifier_token28] = ACTIONS(2332), - [aux_sym_cmd_identifier_token29] = ACTIONS(2332), - [aux_sym_cmd_identifier_token30] = ACTIONS(2332), - [aux_sym_cmd_identifier_token31] = ACTIONS(2332), - [aux_sym_cmd_identifier_token32] = ACTIONS(2332), - [aux_sym_cmd_identifier_token33] = ACTIONS(2332), - [aux_sym_cmd_identifier_token34] = ACTIONS(2332), - [aux_sym_cmd_identifier_token35] = ACTIONS(2332), - [aux_sym_cmd_identifier_token36] = ACTIONS(2332), - [anon_sym_true] = ACTIONS(2332), - [anon_sym_false] = ACTIONS(2332), - [anon_sym_null] = ACTIONS(2332), - [aux_sym_cmd_identifier_token38] = ACTIONS(2332), - [aux_sym_cmd_identifier_token39] = ACTIONS(2332), - [aux_sym_cmd_identifier_token40] = ACTIONS(2332), - [anon_sym_def] = ACTIONS(2332), - [anon_sym_export_DASHenv] = ACTIONS(2332), - [anon_sym_extern] = ACTIONS(2332), - [anon_sym_module] = ACTIONS(2332), - [anon_sym_use] = ACTIONS(2332), - [anon_sym_LPAREN] = ACTIONS(2332), - [anon_sym_DOLLAR] = ACTIONS(2332), - [anon_sym_error] = ACTIONS(2332), - [anon_sym_list] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2332), - [anon_sym_break] = ACTIONS(2332), - [anon_sym_continue] = ACTIONS(2332), - [anon_sym_for] = ACTIONS(2332), - [anon_sym_in] = ACTIONS(2332), - [anon_sym_loop] = ACTIONS(2332), - [anon_sym_make] = ACTIONS(2332), - [anon_sym_while] = ACTIONS(2332), - [anon_sym_do] = ACTIONS(2332), - [anon_sym_if] = ACTIONS(2332), - [anon_sym_else] = ACTIONS(2332), - [anon_sym_match] = ACTIONS(2332), - [anon_sym_try] = ACTIONS(2332), - [anon_sym_catch] = ACTIONS(2332), - [anon_sym_return] = ACTIONS(2332), - [anon_sym_source] = ACTIONS(2332), - [anon_sym_source_DASHenv] = ACTIONS(2332), - [anon_sym_register] = ACTIONS(2332), - [anon_sym_hide] = ACTIONS(2332), - [anon_sym_hide_DASHenv] = ACTIONS(2332), - [anon_sym_overlay] = ACTIONS(2332), - [anon_sym_new] = ACTIONS(2332), - [anon_sym_as] = ACTIONS(2332), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2332), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2332), - [aux_sym__val_number_decimal_token1] = ACTIONS(2332), - [aux_sym__val_number_decimal_token2] = ACTIONS(2332), - [aux_sym__val_number_decimal_token3] = ACTIONS(2332), - [aux_sym__val_number_decimal_token4] = ACTIONS(2332), - [aux_sym__val_number_token1] = ACTIONS(2332), - [aux_sym__val_number_token2] = ACTIONS(2332), - [aux_sym__val_number_token3] = ACTIONS(2332), - [anon_sym_DQUOTE] = ACTIONS(2332), - [sym__str_single_quotes] = ACTIONS(2332), - [sym__str_back_ticks] = ACTIONS(2332), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2332), - [sym__entry_separator] = ACTIONS(2336), - [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_export] = ACTIONS(2222), + [anon_sym_alias] = ACTIONS(2222), + [anon_sym_let] = ACTIONS(2222), + [anon_sym_let_DASHenv] = ACTIONS(2222), + [anon_sym_mut] = ACTIONS(2222), + [anon_sym_const] = ACTIONS(2222), + [aux_sym_cmd_identifier_token1] = ACTIONS(2222), + [aux_sym_cmd_identifier_token2] = ACTIONS(2222), + [aux_sym_cmd_identifier_token3] = ACTIONS(2222), + [aux_sym_cmd_identifier_token4] = ACTIONS(2222), + [aux_sym_cmd_identifier_token5] = ACTIONS(2222), + [aux_sym_cmd_identifier_token6] = ACTIONS(2222), + [aux_sym_cmd_identifier_token7] = ACTIONS(2222), + [aux_sym_cmd_identifier_token8] = ACTIONS(2222), + [aux_sym_cmd_identifier_token9] = ACTIONS(2222), + [aux_sym_cmd_identifier_token10] = ACTIONS(2222), + [aux_sym_cmd_identifier_token11] = ACTIONS(2222), + [aux_sym_cmd_identifier_token12] = ACTIONS(2222), + [aux_sym_cmd_identifier_token13] = ACTIONS(2222), + [aux_sym_cmd_identifier_token14] = ACTIONS(2222), + [aux_sym_cmd_identifier_token15] = ACTIONS(2222), + [aux_sym_cmd_identifier_token16] = ACTIONS(2222), + [aux_sym_cmd_identifier_token17] = ACTIONS(2222), + [aux_sym_cmd_identifier_token18] = ACTIONS(2222), + [aux_sym_cmd_identifier_token19] = ACTIONS(2222), + [aux_sym_cmd_identifier_token20] = ACTIONS(2222), + [aux_sym_cmd_identifier_token21] = ACTIONS(2222), + [aux_sym_cmd_identifier_token22] = ACTIONS(2222), + [aux_sym_cmd_identifier_token23] = ACTIONS(2222), + [aux_sym_cmd_identifier_token24] = ACTIONS(2222), + [aux_sym_cmd_identifier_token25] = ACTIONS(2222), + [aux_sym_cmd_identifier_token26] = ACTIONS(2222), + [aux_sym_cmd_identifier_token27] = ACTIONS(2222), + [aux_sym_cmd_identifier_token28] = ACTIONS(2222), + [aux_sym_cmd_identifier_token29] = ACTIONS(2222), + [aux_sym_cmd_identifier_token30] = ACTIONS(2222), + [aux_sym_cmd_identifier_token31] = ACTIONS(2222), + [aux_sym_cmd_identifier_token32] = ACTIONS(2222), + [aux_sym_cmd_identifier_token33] = ACTIONS(2222), + [aux_sym_cmd_identifier_token34] = ACTIONS(2222), + [aux_sym_cmd_identifier_token35] = ACTIONS(2222), + [aux_sym_cmd_identifier_token36] = ACTIONS(2222), + [anon_sym_true] = ACTIONS(2222), + [anon_sym_false] = ACTIONS(2222), + [anon_sym_null] = ACTIONS(2222), + [aux_sym_cmd_identifier_token38] = ACTIONS(2222), + [aux_sym_cmd_identifier_token39] = ACTIONS(2222), + [aux_sym_cmd_identifier_token40] = ACTIONS(2222), + [anon_sym_def] = ACTIONS(2222), + [anon_sym_export_DASHenv] = ACTIONS(2222), + [anon_sym_extern] = ACTIONS(2222), + [anon_sym_module] = ACTIONS(2222), + [anon_sym_use] = ACTIONS(2222), + [anon_sym_LPAREN] = ACTIONS(2222), + [anon_sym_DOLLAR] = ACTIONS(2222), + [anon_sym_error] = ACTIONS(2222), + [anon_sym_list] = ACTIONS(2222), + [anon_sym_DASH] = ACTIONS(2222), + [anon_sym_break] = ACTIONS(2222), + [anon_sym_continue] = ACTIONS(2222), + [anon_sym_for] = ACTIONS(2222), + [anon_sym_in] = ACTIONS(2222), + [anon_sym_loop] = ACTIONS(2222), + [anon_sym_make] = ACTIONS(2222), + [anon_sym_while] = ACTIONS(2222), + [anon_sym_do] = ACTIONS(2222), + [anon_sym_if] = ACTIONS(2222), + [anon_sym_else] = ACTIONS(2222), + [anon_sym_match] = ACTIONS(2222), + [anon_sym_RBRACE] = ACTIONS(2222), + [anon_sym_try] = ACTIONS(2222), + [anon_sym_catch] = ACTIONS(2222), + [anon_sym_return] = ACTIONS(2222), + [anon_sym_source] = ACTIONS(2222), + [anon_sym_source_DASHenv] = ACTIONS(2222), + [anon_sym_register] = ACTIONS(2222), + [anon_sym_hide] = ACTIONS(2222), + [anon_sym_hide_DASHenv] = ACTIONS(2222), + [anon_sym_overlay] = ACTIONS(2222), + [anon_sym_new] = ACTIONS(2222), + [anon_sym_as] = ACTIONS(2222), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2222), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2222), + [aux_sym__val_number_decimal_token1] = ACTIONS(2222), + [aux_sym__val_number_decimal_token2] = ACTIONS(2222), + [aux_sym__val_number_decimal_token3] = ACTIONS(2222), + [aux_sym__val_number_decimal_token4] = ACTIONS(2222), + [aux_sym__val_number_token1] = ACTIONS(2222), + [aux_sym__val_number_token2] = ACTIONS(2222), + [aux_sym__val_number_token3] = ACTIONS(2222), + [anon_sym_DQUOTE] = ACTIONS(2222), + [sym__str_single_quotes] = ACTIONS(2222), + [sym__str_back_ticks] = ACTIONS(2222), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2222), + [sym__entry_separator] = ACTIONS(2228), + [anon_sym_PLUS] = ACTIONS(2222), [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2228), }, [621] = { [sym_comment] = STATE(621), - [anon_sym_export] = ACTIONS(2313), - [anon_sym_alias] = ACTIONS(2313), - [anon_sym_let] = ACTIONS(2313), - [anon_sym_let_DASHenv] = ACTIONS(2313), - [anon_sym_mut] = ACTIONS(2313), - [anon_sym_const] = ACTIONS(2313), - [aux_sym_cmd_identifier_token1] = ACTIONS(2313), - [aux_sym_cmd_identifier_token2] = ACTIONS(2313), - [aux_sym_cmd_identifier_token3] = ACTIONS(2313), - [aux_sym_cmd_identifier_token4] = ACTIONS(2313), - [aux_sym_cmd_identifier_token5] = ACTIONS(2313), - [aux_sym_cmd_identifier_token6] = ACTIONS(2313), - [aux_sym_cmd_identifier_token7] = ACTIONS(2313), - [aux_sym_cmd_identifier_token8] = ACTIONS(2313), - [aux_sym_cmd_identifier_token9] = ACTIONS(2313), - [aux_sym_cmd_identifier_token10] = ACTIONS(2313), - [aux_sym_cmd_identifier_token11] = ACTIONS(2313), - [aux_sym_cmd_identifier_token12] = ACTIONS(2313), - [aux_sym_cmd_identifier_token13] = ACTIONS(2313), - [aux_sym_cmd_identifier_token14] = ACTIONS(2313), - [aux_sym_cmd_identifier_token15] = ACTIONS(2313), - [aux_sym_cmd_identifier_token16] = ACTIONS(2313), - [aux_sym_cmd_identifier_token17] = ACTIONS(2313), - [aux_sym_cmd_identifier_token18] = ACTIONS(2313), - [aux_sym_cmd_identifier_token19] = ACTIONS(2313), - [aux_sym_cmd_identifier_token20] = ACTIONS(2313), - [aux_sym_cmd_identifier_token21] = ACTIONS(2313), - [aux_sym_cmd_identifier_token22] = ACTIONS(2313), - [aux_sym_cmd_identifier_token23] = ACTIONS(2313), - [aux_sym_cmd_identifier_token24] = ACTIONS(2313), - [aux_sym_cmd_identifier_token25] = ACTIONS(2313), - [aux_sym_cmd_identifier_token26] = ACTIONS(2313), - [aux_sym_cmd_identifier_token27] = ACTIONS(2313), - [aux_sym_cmd_identifier_token28] = ACTIONS(2313), - [aux_sym_cmd_identifier_token29] = ACTIONS(2313), - [aux_sym_cmd_identifier_token30] = ACTIONS(2313), - [aux_sym_cmd_identifier_token31] = ACTIONS(2313), - [aux_sym_cmd_identifier_token32] = ACTIONS(2313), - [aux_sym_cmd_identifier_token33] = ACTIONS(2313), - [aux_sym_cmd_identifier_token34] = ACTIONS(2313), - [aux_sym_cmd_identifier_token35] = ACTIONS(2313), - [aux_sym_cmd_identifier_token36] = ACTIONS(2313), - [anon_sym_true] = ACTIONS(2317), - [anon_sym_false] = ACTIONS(2317), - [anon_sym_null] = ACTIONS(2317), - [aux_sym_cmd_identifier_token38] = ACTIONS(2313), - [aux_sym_cmd_identifier_token39] = ACTIONS(2317), - [aux_sym_cmd_identifier_token40] = ACTIONS(2317), - [anon_sym_def] = ACTIONS(2313), - [anon_sym_export_DASHenv] = ACTIONS(2313), - [anon_sym_extern] = ACTIONS(2313), - [anon_sym_module] = ACTIONS(2313), - [anon_sym_use] = ACTIONS(2313), - [anon_sym_LPAREN] = ACTIONS(2317), - [anon_sym_DOLLAR] = ACTIONS(2317), - [anon_sym_error] = ACTIONS(2313), - [anon_sym_list] = ACTIONS(2313), - [anon_sym_DASH] = ACTIONS(2313), - [anon_sym_break] = ACTIONS(2313), - [anon_sym_continue] = ACTIONS(2313), - [anon_sym_for] = ACTIONS(2313), - [anon_sym_in] = ACTIONS(2313), - [anon_sym_loop] = ACTIONS(2313), - [anon_sym_make] = ACTIONS(2313), - [anon_sym_while] = ACTIONS(2313), - [anon_sym_do] = ACTIONS(2313), - [anon_sym_if] = ACTIONS(2313), - [anon_sym_else] = ACTIONS(2313), - [anon_sym_match] = ACTIONS(2313), - [anon_sym_RBRACE] = ACTIONS(2317), - [anon_sym_try] = ACTIONS(2313), - [anon_sym_catch] = ACTIONS(2313), - [anon_sym_return] = ACTIONS(2313), - [anon_sym_source] = ACTIONS(2313), - [anon_sym_source_DASHenv] = ACTIONS(2313), - [anon_sym_register] = ACTIONS(2313), - [anon_sym_hide] = ACTIONS(2313), - [anon_sym_hide_DASHenv] = ACTIONS(2313), - [anon_sym_overlay] = ACTIONS(2313), - [anon_sym_new] = ACTIONS(2313), - [anon_sym_as] = ACTIONS(2313), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2317), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2317), - [aux_sym__val_number_decimal_token1] = ACTIONS(2313), - [aux_sym__val_number_decimal_token2] = ACTIONS(2317), - [aux_sym__val_number_decimal_token3] = ACTIONS(2317), - [aux_sym__val_number_decimal_token4] = ACTIONS(2317), - [aux_sym__val_number_token1] = ACTIONS(2317), - [aux_sym__val_number_token2] = ACTIONS(2317), - [aux_sym__val_number_token3] = ACTIONS(2317), - [anon_sym_LBRACK2] = ACTIONS(2529), - [anon_sym_DQUOTE] = ACTIONS(2317), - [sym__str_single_quotes] = ACTIONS(2317), - [sym__str_back_ticks] = ACTIONS(2317), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2317), - [anon_sym_PLUS] = ACTIONS(2313), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(2218), + [anon_sym_alias] = ACTIONS(2218), + [anon_sym_let] = ACTIONS(2218), + [anon_sym_let_DASHenv] = ACTIONS(2218), + [anon_sym_mut] = ACTIONS(2218), + [anon_sym_const] = ACTIONS(2218), + [aux_sym_cmd_identifier_token1] = ACTIONS(2218), + [aux_sym_cmd_identifier_token2] = ACTIONS(2218), + [aux_sym_cmd_identifier_token3] = ACTIONS(2218), + [aux_sym_cmd_identifier_token4] = ACTIONS(2218), + [aux_sym_cmd_identifier_token5] = ACTIONS(2218), + [aux_sym_cmd_identifier_token6] = ACTIONS(2218), + [aux_sym_cmd_identifier_token7] = ACTIONS(2218), + [aux_sym_cmd_identifier_token8] = ACTIONS(2218), + [aux_sym_cmd_identifier_token9] = ACTIONS(2218), + [aux_sym_cmd_identifier_token10] = ACTIONS(2218), + [aux_sym_cmd_identifier_token11] = ACTIONS(2218), + [aux_sym_cmd_identifier_token12] = ACTIONS(2218), + [aux_sym_cmd_identifier_token13] = ACTIONS(2218), + [aux_sym_cmd_identifier_token14] = ACTIONS(2218), + [aux_sym_cmd_identifier_token15] = ACTIONS(2218), + [aux_sym_cmd_identifier_token16] = ACTIONS(2218), + [aux_sym_cmd_identifier_token17] = ACTIONS(2218), + [aux_sym_cmd_identifier_token18] = ACTIONS(2218), + [aux_sym_cmd_identifier_token19] = ACTIONS(2218), + [aux_sym_cmd_identifier_token20] = ACTIONS(2218), + [aux_sym_cmd_identifier_token21] = ACTIONS(2218), + [aux_sym_cmd_identifier_token22] = ACTIONS(2218), + [aux_sym_cmd_identifier_token23] = ACTIONS(2218), + [aux_sym_cmd_identifier_token24] = ACTIONS(2218), + [aux_sym_cmd_identifier_token25] = ACTIONS(2218), + [aux_sym_cmd_identifier_token26] = ACTIONS(2218), + [aux_sym_cmd_identifier_token27] = ACTIONS(2218), + [aux_sym_cmd_identifier_token28] = ACTIONS(2218), + [aux_sym_cmd_identifier_token29] = ACTIONS(2218), + [aux_sym_cmd_identifier_token30] = ACTIONS(2218), + [aux_sym_cmd_identifier_token31] = ACTIONS(2218), + [aux_sym_cmd_identifier_token32] = ACTIONS(2218), + [aux_sym_cmd_identifier_token33] = ACTIONS(2218), + [aux_sym_cmd_identifier_token34] = ACTIONS(2218), + [aux_sym_cmd_identifier_token35] = ACTIONS(2218), + [aux_sym_cmd_identifier_token36] = ACTIONS(2218), + [anon_sym_true] = ACTIONS(2218), + [anon_sym_false] = ACTIONS(2218), + [anon_sym_null] = ACTIONS(2218), + [aux_sym_cmd_identifier_token38] = ACTIONS(2218), + [aux_sym_cmd_identifier_token39] = ACTIONS(2218), + [aux_sym_cmd_identifier_token40] = ACTIONS(2218), + [anon_sym_def] = ACTIONS(2218), + [anon_sym_export_DASHenv] = ACTIONS(2218), + [anon_sym_extern] = ACTIONS(2218), + [anon_sym_module] = ACTIONS(2218), + [anon_sym_use] = ACTIONS(2218), + [anon_sym_LPAREN] = ACTIONS(2218), + [anon_sym_DOLLAR] = ACTIONS(2218), + [anon_sym_error] = ACTIONS(2218), + [anon_sym_list] = ACTIONS(2218), + [anon_sym_DASH] = ACTIONS(2218), + [anon_sym_break] = ACTIONS(2218), + [anon_sym_continue] = ACTIONS(2218), + [anon_sym_for] = ACTIONS(2218), + [anon_sym_in] = ACTIONS(2218), + [anon_sym_loop] = ACTIONS(2218), + [anon_sym_make] = ACTIONS(2218), + [anon_sym_while] = ACTIONS(2218), + [anon_sym_do] = ACTIONS(2218), + [anon_sym_if] = ACTIONS(2218), + [anon_sym_else] = ACTIONS(2218), + [anon_sym_match] = ACTIONS(2218), + [anon_sym_RBRACE] = ACTIONS(2218), + [anon_sym_try] = ACTIONS(2218), + [anon_sym_catch] = ACTIONS(2218), + [anon_sym_return] = ACTIONS(2218), + [anon_sym_source] = ACTIONS(2218), + [anon_sym_source_DASHenv] = ACTIONS(2218), + [anon_sym_register] = ACTIONS(2218), + [anon_sym_hide] = ACTIONS(2218), + [anon_sym_hide_DASHenv] = ACTIONS(2218), + [anon_sym_overlay] = ACTIONS(2218), + [anon_sym_new] = ACTIONS(2218), + [anon_sym_as] = ACTIONS(2218), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2218), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2218), + [aux_sym__val_number_decimal_token1] = ACTIONS(2218), + [aux_sym__val_number_decimal_token2] = ACTIONS(2218), + [aux_sym__val_number_decimal_token3] = ACTIONS(2218), + [aux_sym__val_number_decimal_token4] = ACTIONS(2218), + [aux_sym__val_number_token1] = ACTIONS(2218), + [aux_sym__val_number_token2] = ACTIONS(2218), + [aux_sym__val_number_token3] = ACTIONS(2218), + [anon_sym_DQUOTE] = ACTIONS(2218), + [sym__str_single_quotes] = ACTIONS(2218), + [sym__str_back_ticks] = ACTIONS(2218), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2218), + [sym__entry_separator] = ACTIONS(2220), + [anon_sym_PLUS] = ACTIONS(2218), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2220), }, [622] = { [sym_comment] = STATE(622), + [anon_sym_export] = ACTIONS(2047), + [anon_sym_alias] = ACTIONS(2047), + [anon_sym_let] = ACTIONS(2047), + [anon_sym_let_DASHenv] = ACTIONS(2047), + [anon_sym_mut] = ACTIONS(2047), + [anon_sym_const] = ACTIONS(2047), + [aux_sym_cmd_identifier_token1] = ACTIONS(2047), + [aux_sym_cmd_identifier_token2] = ACTIONS(2047), + [aux_sym_cmd_identifier_token3] = ACTIONS(2047), + [aux_sym_cmd_identifier_token4] = ACTIONS(2047), + [aux_sym_cmd_identifier_token5] = ACTIONS(2047), + [aux_sym_cmd_identifier_token6] = ACTIONS(2047), + [aux_sym_cmd_identifier_token7] = ACTIONS(2047), + [aux_sym_cmd_identifier_token8] = ACTIONS(2047), + [aux_sym_cmd_identifier_token9] = ACTIONS(2047), + [aux_sym_cmd_identifier_token10] = ACTIONS(2047), + [aux_sym_cmd_identifier_token11] = ACTIONS(2047), + [aux_sym_cmd_identifier_token12] = ACTIONS(2047), + [aux_sym_cmd_identifier_token13] = ACTIONS(2047), + [aux_sym_cmd_identifier_token14] = ACTIONS(2047), + [aux_sym_cmd_identifier_token15] = ACTIONS(2047), + [aux_sym_cmd_identifier_token16] = ACTIONS(2047), + [aux_sym_cmd_identifier_token17] = ACTIONS(2047), + [aux_sym_cmd_identifier_token18] = ACTIONS(2047), + [aux_sym_cmd_identifier_token19] = ACTIONS(2047), + [aux_sym_cmd_identifier_token20] = ACTIONS(2047), + [aux_sym_cmd_identifier_token21] = ACTIONS(2047), + [aux_sym_cmd_identifier_token22] = ACTIONS(2047), + [aux_sym_cmd_identifier_token23] = ACTIONS(2047), + [aux_sym_cmd_identifier_token24] = ACTIONS(2047), + [aux_sym_cmd_identifier_token25] = ACTIONS(2047), + [aux_sym_cmd_identifier_token26] = ACTIONS(2047), + [aux_sym_cmd_identifier_token27] = ACTIONS(2047), + [aux_sym_cmd_identifier_token28] = ACTIONS(2047), + [aux_sym_cmd_identifier_token29] = ACTIONS(2047), + [aux_sym_cmd_identifier_token30] = ACTIONS(2047), + [aux_sym_cmd_identifier_token31] = ACTIONS(2047), + [aux_sym_cmd_identifier_token32] = ACTIONS(2047), + [aux_sym_cmd_identifier_token33] = ACTIONS(2047), + [aux_sym_cmd_identifier_token34] = ACTIONS(2047), + [aux_sym_cmd_identifier_token35] = ACTIONS(2047), + [aux_sym_cmd_identifier_token36] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(2047), + [anon_sym_false] = ACTIONS(2047), + [anon_sym_null] = ACTIONS(2047), + [aux_sym_cmd_identifier_token38] = ACTIONS(2047), + [aux_sym_cmd_identifier_token39] = ACTIONS(2047), + [aux_sym_cmd_identifier_token40] = ACTIONS(2047), + [anon_sym_def] = ACTIONS(2047), + [anon_sym_export_DASHenv] = ACTIONS(2047), + [anon_sym_extern] = ACTIONS(2047), + [anon_sym_module] = ACTIONS(2047), + [anon_sym_use] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(2047), + [anon_sym_DOLLAR] = ACTIONS(2047), + [anon_sym_error] = ACTIONS(2047), + [anon_sym_list] = ACTIONS(2047), + [anon_sym_DASH] = ACTIONS(2047), + [anon_sym_break] = ACTIONS(2047), + [anon_sym_continue] = ACTIONS(2047), + [anon_sym_for] = ACTIONS(2047), + [anon_sym_in] = ACTIONS(2047), + [anon_sym_loop] = ACTIONS(2047), + [anon_sym_make] = ACTIONS(2047), + [anon_sym_while] = ACTIONS(2047), + [anon_sym_do] = ACTIONS(2047), + [anon_sym_if] = ACTIONS(2047), + [anon_sym_else] = ACTIONS(2047), + [anon_sym_match] = ACTIONS(2047), + [anon_sym_RBRACE] = ACTIONS(2047), + [anon_sym_try] = ACTIONS(2047), + [anon_sym_catch] = ACTIONS(2047), + [anon_sym_return] = ACTIONS(2047), + [anon_sym_source] = ACTIONS(2047), + [anon_sym_source_DASHenv] = ACTIONS(2047), + [anon_sym_register] = ACTIONS(2047), + [anon_sym_hide] = ACTIONS(2047), + [anon_sym_hide_DASHenv] = ACTIONS(2047), + [anon_sym_overlay] = ACTIONS(2047), + [anon_sym_new] = ACTIONS(2047), + [anon_sym_as] = ACTIONS(2047), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2047), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2047), + [aux_sym__val_number_decimal_token1] = ACTIONS(2047), + [aux_sym__val_number_decimal_token2] = ACTIONS(2047), + [aux_sym__val_number_decimal_token3] = ACTIONS(2047), + [aux_sym__val_number_decimal_token4] = ACTIONS(2047), + [aux_sym__val_number_token1] = ACTIONS(2047), + [aux_sym__val_number_token2] = ACTIONS(2047), + [aux_sym__val_number_token3] = ACTIONS(2047), + [anon_sym_DQUOTE] = ACTIONS(2047), + [sym__str_single_quotes] = ACTIONS(2047), + [sym__str_back_ticks] = ACTIONS(2047), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2047), + [sym__entry_separator] = ACTIONS(2049), + [anon_sym_PLUS] = ACTIONS(2047), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2049), + }, + [623] = { + [sym_comment] = STATE(623), [anon_sym_export] = ACTIONS(1058), [anon_sym_alias] = ACTIONS(1058), [anon_sym_let] = ACTIONS(1058), @@ -143937,3969 +145670,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__entry_separator] = ACTIONS(1060), [anon_sym_PLUS] = ACTIONS(1058), [anon_sym_POUND] = ACTIONS(3), - }, - [623] = { - [sym_comment] = STATE(623), - [anon_sym_export] = ACTIONS(2531), - [anon_sym_alias] = ACTIONS(2531), - [anon_sym_let] = ACTIONS(2531), - [anon_sym_let_DASHenv] = ACTIONS(2531), - [anon_sym_mut] = ACTIONS(2531), - [anon_sym_const] = ACTIONS(2531), - [aux_sym_cmd_identifier_token1] = ACTIONS(2531), - [aux_sym_cmd_identifier_token2] = ACTIONS(2531), - [aux_sym_cmd_identifier_token3] = ACTIONS(2531), - [aux_sym_cmd_identifier_token4] = ACTIONS(2531), - [aux_sym_cmd_identifier_token5] = ACTIONS(2531), - [aux_sym_cmd_identifier_token6] = ACTIONS(2531), - [aux_sym_cmd_identifier_token7] = ACTIONS(2531), - [aux_sym_cmd_identifier_token8] = ACTIONS(2531), - [aux_sym_cmd_identifier_token9] = ACTIONS(2531), - [aux_sym_cmd_identifier_token10] = ACTIONS(2531), - [aux_sym_cmd_identifier_token11] = ACTIONS(2531), - [aux_sym_cmd_identifier_token12] = ACTIONS(2531), - [aux_sym_cmd_identifier_token13] = ACTIONS(2531), - [aux_sym_cmd_identifier_token14] = ACTIONS(2531), - [aux_sym_cmd_identifier_token15] = ACTIONS(2531), - [aux_sym_cmd_identifier_token16] = ACTIONS(2531), - [aux_sym_cmd_identifier_token17] = ACTIONS(2531), - [aux_sym_cmd_identifier_token18] = ACTIONS(2531), - [aux_sym_cmd_identifier_token19] = ACTIONS(2531), - [aux_sym_cmd_identifier_token20] = ACTIONS(2531), - [aux_sym_cmd_identifier_token21] = ACTIONS(2531), - [aux_sym_cmd_identifier_token22] = ACTIONS(2531), - [aux_sym_cmd_identifier_token23] = ACTIONS(2531), - [aux_sym_cmd_identifier_token24] = ACTIONS(2531), - [aux_sym_cmd_identifier_token25] = ACTIONS(2531), - [aux_sym_cmd_identifier_token26] = ACTIONS(2531), - [aux_sym_cmd_identifier_token27] = ACTIONS(2531), - [aux_sym_cmd_identifier_token28] = ACTIONS(2531), - [aux_sym_cmd_identifier_token29] = ACTIONS(2531), - [aux_sym_cmd_identifier_token30] = ACTIONS(2531), - [aux_sym_cmd_identifier_token31] = ACTIONS(2531), - [aux_sym_cmd_identifier_token32] = ACTIONS(2531), - [aux_sym_cmd_identifier_token33] = ACTIONS(2531), - [aux_sym_cmd_identifier_token34] = ACTIONS(2531), - [aux_sym_cmd_identifier_token35] = ACTIONS(2531), - [aux_sym_cmd_identifier_token36] = ACTIONS(2531), - [anon_sym_true] = ACTIONS(2533), - [anon_sym_false] = ACTIONS(2533), - [anon_sym_null] = ACTIONS(2533), - [aux_sym_cmd_identifier_token38] = ACTIONS(2531), - [aux_sym_cmd_identifier_token39] = ACTIONS(2533), - [aux_sym_cmd_identifier_token40] = ACTIONS(2533), - [anon_sym_def] = ACTIONS(2531), - [anon_sym_export_DASHenv] = ACTIONS(2531), - [anon_sym_extern] = ACTIONS(2531), - [anon_sym_module] = ACTIONS(2531), - [anon_sym_use] = ACTIONS(2531), - [anon_sym_LPAREN] = ACTIONS(2533), - [anon_sym_DOLLAR] = ACTIONS(2533), - [anon_sym_error] = ACTIONS(2531), - [anon_sym_list] = ACTIONS(2531), - [anon_sym_DASH] = ACTIONS(2531), - [anon_sym_break] = ACTIONS(2531), - [anon_sym_continue] = ACTIONS(2531), - [anon_sym_for] = ACTIONS(2531), - [anon_sym_in] = ACTIONS(2531), - [anon_sym_loop] = ACTIONS(2531), - [anon_sym_make] = ACTIONS(2531), - [anon_sym_while] = ACTIONS(2531), - [anon_sym_do] = ACTIONS(2531), - [anon_sym_if] = ACTIONS(2531), - [anon_sym_else] = ACTIONS(2531), - [anon_sym_match] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_try] = ACTIONS(2531), - [anon_sym_catch] = ACTIONS(2531), - [anon_sym_return] = ACTIONS(2531), - [anon_sym_source] = ACTIONS(2531), - [anon_sym_source_DASHenv] = ACTIONS(2531), - [anon_sym_register] = ACTIONS(2531), - [anon_sym_hide] = ACTIONS(2531), - [anon_sym_hide_DASHenv] = ACTIONS(2531), - [anon_sym_overlay] = ACTIONS(2531), - [anon_sym_new] = ACTIONS(2531), - [anon_sym_as] = ACTIONS(2531), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2533), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2533), - [aux_sym__val_number_decimal_token1] = ACTIONS(2531), - [aux_sym__val_number_decimal_token2] = ACTIONS(2533), - [aux_sym__val_number_decimal_token3] = ACTIONS(2533), - [aux_sym__val_number_decimal_token4] = ACTIONS(2533), - [aux_sym__val_number_token1] = ACTIONS(2533), - [aux_sym__val_number_token2] = ACTIONS(2533), - [aux_sym__val_number_token3] = ACTIONS(2533), - [anon_sym_DQUOTE] = ACTIONS(2533), - [sym__str_single_quotes] = ACTIONS(2533), - [sym__str_back_ticks] = ACTIONS(2533), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2533), - [anon_sym_PLUS] = ACTIONS(2531), - [anon_sym_POUND] = ACTIONS(247), + [sym_raw_string_begin] = ACTIONS(1060), }, [624] = { [sym_comment] = STATE(624), - [anon_sym_export] = ACTIONS(2366), - [anon_sym_alias] = ACTIONS(2366), - [anon_sym_let] = ACTIONS(2366), - [anon_sym_let_DASHenv] = ACTIONS(2366), - [anon_sym_mut] = ACTIONS(2366), - [anon_sym_const] = ACTIONS(2366), - [aux_sym_cmd_identifier_token1] = ACTIONS(2366), - [aux_sym_cmd_identifier_token2] = ACTIONS(2366), - [aux_sym_cmd_identifier_token3] = ACTIONS(2366), - [aux_sym_cmd_identifier_token4] = ACTIONS(2366), - [aux_sym_cmd_identifier_token5] = ACTIONS(2366), - [aux_sym_cmd_identifier_token6] = ACTIONS(2366), - [aux_sym_cmd_identifier_token7] = ACTIONS(2366), - [aux_sym_cmd_identifier_token8] = ACTIONS(2366), - [aux_sym_cmd_identifier_token9] = ACTIONS(2366), - [aux_sym_cmd_identifier_token10] = ACTIONS(2366), - [aux_sym_cmd_identifier_token11] = ACTIONS(2366), - [aux_sym_cmd_identifier_token12] = ACTIONS(2366), - [aux_sym_cmd_identifier_token13] = ACTIONS(2366), - [aux_sym_cmd_identifier_token14] = ACTIONS(2366), - [aux_sym_cmd_identifier_token15] = ACTIONS(2366), - [aux_sym_cmd_identifier_token16] = ACTIONS(2366), - [aux_sym_cmd_identifier_token17] = ACTIONS(2366), - [aux_sym_cmd_identifier_token18] = ACTIONS(2366), - [aux_sym_cmd_identifier_token19] = ACTIONS(2366), - [aux_sym_cmd_identifier_token20] = ACTIONS(2366), - [aux_sym_cmd_identifier_token21] = ACTIONS(2366), - [aux_sym_cmd_identifier_token22] = ACTIONS(2366), - [aux_sym_cmd_identifier_token23] = ACTIONS(2366), - [aux_sym_cmd_identifier_token24] = ACTIONS(2366), - [aux_sym_cmd_identifier_token25] = ACTIONS(2366), - [aux_sym_cmd_identifier_token26] = ACTIONS(2366), - [aux_sym_cmd_identifier_token27] = ACTIONS(2366), - [aux_sym_cmd_identifier_token28] = ACTIONS(2366), - [aux_sym_cmd_identifier_token29] = ACTIONS(2366), - [aux_sym_cmd_identifier_token30] = ACTIONS(2366), - [aux_sym_cmd_identifier_token31] = ACTIONS(2366), - [aux_sym_cmd_identifier_token32] = ACTIONS(2366), - [aux_sym_cmd_identifier_token33] = ACTIONS(2366), - [aux_sym_cmd_identifier_token34] = ACTIONS(2366), - [aux_sym_cmd_identifier_token35] = ACTIONS(2366), - [aux_sym_cmd_identifier_token36] = ACTIONS(2366), - [anon_sym_true] = ACTIONS(2368), - [anon_sym_false] = ACTIONS(2368), - [anon_sym_null] = ACTIONS(2368), - [aux_sym_cmd_identifier_token38] = ACTIONS(2366), - [aux_sym_cmd_identifier_token39] = ACTIONS(2368), - [aux_sym_cmd_identifier_token40] = ACTIONS(2368), - [anon_sym_def] = ACTIONS(2366), - [anon_sym_export_DASHenv] = ACTIONS(2366), - [anon_sym_extern] = ACTIONS(2366), - [anon_sym_module] = ACTIONS(2366), - [anon_sym_use] = ACTIONS(2366), - [anon_sym_LPAREN] = ACTIONS(2368), - [anon_sym_DOLLAR] = ACTIONS(2368), - [anon_sym_error] = ACTIONS(2366), - [anon_sym_list] = ACTIONS(2366), - [anon_sym_DASH] = ACTIONS(2366), - [anon_sym_break] = ACTIONS(2366), - [anon_sym_continue] = ACTIONS(2366), - [anon_sym_for] = ACTIONS(2366), - [anon_sym_in] = ACTIONS(2366), - [anon_sym_loop] = ACTIONS(2366), - [anon_sym_make] = ACTIONS(2366), - [anon_sym_while] = ACTIONS(2366), - [anon_sym_do] = ACTIONS(2366), - [anon_sym_if] = ACTIONS(2366), - [anon_sym_else] = ACTIONS(2366), - [anon_sym_match] = ACTIONS(2366), - [anon_sym_RBRACE] = ACTIONS(2368), - [anon_sym_try] = ACTIONS(2366), - [anon_sym_catch] = ACTIONS(2366), - [anon_sym_return] = ACTIONS(2366), - [anon_sym_source] = ACTIONS(2366), - [anon_sym_source_DASHenv] = ACTIONS(2366), - [anon_sym_register] = ACTIONS(2366), - [anon_sym_hide] = ACTIONS(2366), - [anon_sym_hide_DASHenv] = ACTIONS(2366), - [anon_sym_overlay] = ACTIONS(2366), - [anon_sym_new] = ACTIONS(2366), - [anon_sym_as] = ACTIONS(2366), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2368), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2368), - [aux_sym__val_number_decimal_token1] = ACTIONS(2366), - [aux_sym__val_number_decimal_token2] = ACTIONS(2368), - [aux_sym__val_number_decimal_token3] = ACTIONS(2368), - [aux_sym__val_number_decimal_token4] = ACTIONS(2368), - [aux_sym__val_number_token1] = ACTIONS(2368), - [aux_sym__val_number_token2] = ACTIONS(2368), - [aux_sym__val_number_token3] = ACTIONS(2368), - [anon_sym_DQUOTE] = ACTIONS(2368), - [sym__str_single_quotes] = ACTIONS(2368), - [sym__str_back_ticks] = ACTIONS(2368), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2368), - [anon_sym_PLUS] = ACTIONS(2366), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_export] = ACTIONS(1066), + [anon_sym_alias] = ACTIONS(1066), + [anon_sym_let] = ACTIONS(1066), + [anon_sym_let_DASHenv] = ACTIONS(1066), + [anon_sym_mut] = ACTIONS(1066), + [anon_sym_const] = ACTIONS(1066), + [aux_sym_cmd_identifier_token1] = ACTIONS(1066), + [aux_sym_cmd_identifier_token2] = ACTIONS(1066), + [aux_sym_cmd_identifier_token3] = ACTIONS(1066), + [aux_sym_cmd_identifier_token4] = ACTIONS(1066), + [aux_sym_cmd_identifier_token5] = ACTIONS(1066), + [aux_sym_cmd_identifier_token6] = ACTIONS(1066), + [aux_sym_cmd_identifier_token7] = ACTIONS(1066), + [aux_sym_cmd_identifier_token8] = ACTIONS(1066), + [aux_sym_cmd_identifier_token9] = ACTIONS(1066), + [aux_sym_cmd_identifier_token10] = ACTIONS(1066), + [aux_sym_cmd_identifier_token11] = ACTIONS(1066), + [aux_sym_cmd_identifier_token12] = ACTIONS(1066), + [aux_sym_cmd_identifier_token13] = ACTIONS(1066), + [aux_sym_cmd_identifier_token14] = ACTIONS(1066), + [aux_sym_cmd_identifier_token15] = ACTIONS(1066), + [aux_sym_cmd_identifier_token16] = ACTIONS(1066), + [aux_sym_cmd_identifier_token17] = ACTIONS(1066), + [aux_sym_cmd_identifier_token18] = ACTIONS(1066), + [aux_sym_cmd_identifier_token19] = ACTIONS(1066), + [aux_sym_cmd_identifier_token20] = ACTIONS(1066), + [aux_sym_cmd_identifier_token21] = ACTIONS(1066), + [aux_sym_cmd_identifier_token22] = ACTIONS(1066), + [aux_sym_cmd_identifier_token23] = ACTIONS(1066), + [aux_sym_cmd_identifier_token24] = ACTIONS(1066), + [aux_sym_cmd_identifier_token25] = ACTIONS(1066), + [aux_sym_cmd_identifier_token26] = ACTIONS(1066), + [aux_sym_cmd_identifier_token27] = ACTIONS(1066), + [aux_sym_cmd_identifier_token28] = ACTIONS(1066), + [aux_sym_cmd_identifier_token29] = ACTIONS(1066), + [aux_sym_cmd_identifier_token30] = ACTIONS(1066), + [aux_sym_cmd_identifier_token31] = ACTIONS(1066), + [aux_sym_cmd_identifier_token32] = ACTIONS(1066), + [aux_sym_cmd_identifier_token33] = ACTIONS(1066), + [aux_sym_cmd_identifier_token34] = ACTIONS(1066), + [aux_sym_cmd_identifier_token35] = ACTIONS(1066), + [aux_sym_cmd_identifier_token36] = ACTIONS(1066), + [anon_sym_true] = ACTIONS(1068), + [anon_sym_false] = ACTIONS(1068), + [anon_sym_null] = ACTIONS(1068), + [aux_sym_cmd_identifier_token38] = ACTIONS(1066), + [aux_sym_cmd_identifier_token39] = ACTIONS(1068), + [aux_sym_cmd_identifier_token40] = ACTIONS(1068), + [anon_sym_def] = ACTIONS(1066), + [anon_sym_export_DASHenv] = ACTIONS(1066), + [anon_sym_extern] = ACTIONS(1066), + [anon_sym_module] = ACTIONS(1066), + [anon_sym_use] = ACTIONS(1066), + [anon_sym_LPAREN] = ACTIONS(1068), + [anon_sym_DOLLAR] = ACTIONS(1068), + [anon_sym_error] = ACTIONS(1066), + [anon_sym_list] = ACTIONS(1066), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_break] = ACTIONS(1066), + [anon_sym_continue] = ACTIONS(1066), + [anon_sym_for] = ACTIONS(1066), + [anon_sym_in] = ACTIONS(1066), + [anon_sym_loop] = ACTIONS(1066), + [anon_sym_make] = ACTIONS(1066), + [anon_sym_while] = ACTIONS(1066), + [anon_sym_do] = ACTIONS(1066), + [anon_sym_if] = ACTIONS(1066), + [anon_sym_else] = ACTIONS(1066), + [anon_sym_match] = ACTIONS(1066), + [anon_sym_RBRACE] = ACTIONS(1068), + [anon_sym_try] = ACTIONS(1066), + [anon_sym_catch] = ACTIONS(1066), + [anon_sym_return] = ACTIONS(1066), + [anon_sym_source] = ACTIONS(1066), + [anon_sym_source_DASHenv] = ACTIONS(1066), + [anon_sym_register] = ACTIONS(1066), + [anon_sym_hide] = ACTIONS(1066), + [anon_sym_hide_DASHenv] = ACTIONS(1066), + [anon_sym_overlay] = ACTIONS(1066), + [anon_sym_new] = ACTIONS(1066), + [anon_sym_as] = ACTIONS(1066), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1068), + [anon_sym_DOT] = ACTIONS(1066), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1068), + [aux_sym__val_number_decimal_token1] = ACTIONS(1066), + [aux_sym__val_number_decimal_token2] = ACTIONS(1068), + [aux_sym__val_number_decimal_token3] = ACTIONS(1068), + [aux_sym__val_number_decimal_token4] = ACTIONS(1068), + [aux_sym__val_number_token1] = ACTIONS(1068), + [aux_sym__val_number_token2] = ACTIONS(1068), + [aux_sym__val_number_token3] = ACTIONS(1068), + [anon_sym_DQUOTE] = ACTIONS(1068), + [sym__str_single_quotes] = ACTIONS(1068), + [sym__str_back_ticks] = ACTIONS(1068), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1068), + [anon_sym_PLUS] = ACTIONS(1066), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1068), }, [625] = { [sym_comment] = STATE(625), - [anon_sym_export] = ACTIONS(1947), - [anon_sym_alias] = ACTIONS(1947), - [anon_sym_let] = ACTIONS(1947), - [anon_sym_let_DASHenv] = ACTIONS(1947), - [anon_sym_mut] = ACTIONS(1947), - [anon_sym_const] = ACTIONS(1947), - [aux_sym_cmd_identifier_token1] = ACTIONS(1947), - [aux_sym_cmd_identifier_token2] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1947), - [aux_sym_cmd_identifier_token4] = ACTIONS(1947), - [aux_sym_cmd_identifier_token5] = ACTIONS(1947), - [aux_sym_cmd_identifier_token6] = ACTIONS(1947), - [aux_sym_cmd_identifier_token7] = ACTIONS(1947), - [aux_sym_cmd_identifier_token8] = ACTIONS(1947), - [aux_sym_cmd_identifier_token9] = ACTIONS(1947), - [aux_sym_cmd_identifier_token10] = ACTIONS(1947), - [aux_sym_cmd_identifier_token11] = ACTIONS(1947), - [aux_sym_cmd_identifier_token12] = ACTIONS(1947), - [aux_sym_cmd_identifier_token13] = ACTIONS(1947), - [aux_sym_cmd_identifier_token14] = ACTIONS(1947), - [aux_sym_cmd_identifier_token15] = ACTIONS(1947), - [aux_sym_cmd_identifier_token16] = ACTIONS(1947), - [aux_sym_cmd_identifier_token17] = ACTIONS(1947), - [aux_sym_cmd_identifier_token18] = ACTIONS(1947), - [aux_sym_cmd_identifier_token19] = ACTIONS(1947), - [aux_sym_cmd_identifier_token20] = ACTIONS(1947), - [aux_sym_cmd_identifier_token21] = ACTIONS(1947), - [aux_sym_cmd_identifier_token22] = ACTIONS(1947), - [aux_sym_cmd_identifier_token23] = ACTIONS(1947), - [aux_sym_cmd_identifier_token24] = ACTIONS(1947), - [aux_sym_cmd_identifier_token25] = ACTIONS(1947), - [aux_sym_cmd_identifier_token26] = ACTIONS(1947), - [aux_sym_cmd_identifier_token27] = ACTIONS(1947), - [aux_sym_cmd_identifier_token28] = ACTIONS(1947), - [aux_sym_cmd_identifier_token29] = ACTIONS(1947), - [aux_sym_cmd_identifier_token30] = ACTIONS(1947), - [aux_sym_cmd_identifier_token31] = ACTIONS(1947), - [aux_sym_cmd_identifier_token32] = ACTIONS(1947), - [aux_sym_cmd_identifier_token33] = ACTIONS(1947), - [aux_sym_cmd_identifier_token34] = ACTIONS(1947), - [aux_sym_cmd_identifier_token35] = ACTIONS(1947), - [aux_sym_cmd_identifier_token36] = ACTIONS(1947), - [anon_sym_true] = ACTIONS(1949), - [anon_sym_false] = ACTIONS(1949), - [anon_sym_null] = ACTIONS(1949), - [aux_sym_cmd_identifier_token38] = ACTIONS(1947), - [aux_sym_cmd_identifier_token39] = ACTIONS(1949), - [aux_sym_cmd_identifier_token40] = ACTIONS(1949), - [anon_sym_def] = ACTIONS(1947), - [anon_sym_export_DASHenv] = ACTIONS(1947), - [anon_sym_extern] = ACTIONS(1947), - [anon_sym_module] = ACTIONS(1947), - [anon_sym_use] = ACTIONS(1947), - [anon_sym_LPAREN] = ACTIONS(1949), - [anon_sym_DOLLAR] = ACTIONS(1949), - [anon_sym_error] = ACTIONS(1947), - [anon_sym_list] = ACTIONS(1947), - [anon_sym_DASH] = ACTIONS(1947), - [anon_sym_break] = ACTIONS(1947), - [anon_sym_continue] = ACTIONS(1947), - [anon_sym_for] = ACTIONS(1947), - [anon_sym_in] = ACTIONS(1947), - [anon_sym_loop] = ACTIONS(1947), - [anon_sym_make] = ACTIONS(1947), - [anon_sym_while] = ACTIONS(1947), - [anon_sym_do] = ACTIONS(1947), - [anon_sym_if] = ACTIONS(1947), - [anon_sym_else] = ACTIONS(1947), - [anon_sym_match] = ACTIONS(1947), - [anon_sym_RBRACE] = ACTIONS(1949), - [anon_sym_try] = ACTIONS(1947), - [anon_sym_catch] = ACTIONS(1947), - [anon_sym_return] = ACTIONS(1947), - [anon_sym_source] = ACTIONS(1947), - [anon_sym_source_DASHenv] = ACTIONS(1947), - [anon_sym_register] = ACTIONS(1947), - [anon_sym_hide] = ACTIONS(1947), - [anon_sym_hide_DASHenv] = ACTIONS(1947), - [anon_sym_overlay] = ACTIONS(1947), - [anon_sym_new] = ACTIONS(1947), - [anon_sym_as] = ACTIONS(1947), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1949), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1949), - [aux_sym__val_number_decimal_token1] = ACTIONS(1947), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1949), - [aux_sym__val_number_decimal_token4] = ACTIONS(1949), - [aux_sym__val_number_token1] = ACTIONS(1949), - [aux_sym__val_number_token2] = ACTIONS(1949), - [aux_sym__val_number_token3] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(1949), - [sym__str_single_quotes] = ACTIONS(1949), - [sym__str_back_ticks] = ACTIONS(1949), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1949), - [anon_sym_PLUS] = ACTIONS(1947), - [anon_sym_POUND] = ACTIONS(247), - }, - [626] = { - [sym_comment] = STATE(626), - [anon_sym_export] = ACTIONS(2400), - [anon_sym_alias] = ACTIONS(2400), - [anon_sym_let] = ACTIONS(2400), - [anon_sym_let_DASHenv] = ACTIONS(2400), - [anon_sym_mut] = ACTIONS(2400), - [anon_sym_const] = ACTIONS(2400), - [aux_sym_cmd_identifier_token1] = ACTIONS(2400), - [aux_sym_cmd_identifier_token2] = ACTIONS(2400), - [aux_sym_cmd_identifier_token3] = ACTIONS(2400), - [aux_sym_cmd_identifier_token4] = ACTIONS(2400), - [aux_sym_cmd_identifier_token5] = ACTIONS(2400), - [aux_sym_cmd_identifier_token6] = ACTIONS(2400), - [aux_sym_cmd_identifier_token7] = ACTIONS(2400), - [aux_sym_cmd_identifier_token8] = ACTIONS(2400), - [aux_sym_cmd_identifier_token9] = ACTIONS(2400), - [aux_sym_cmd_identifier_token10] = ACTIONS(2400), - [aux_sym_cmd_identifier_token11] = ACTIONS(2400), - [aux_sym_cmd_identifier_token12] = ACTIONS(2400), - [aux_sym_cmd_identifier_token13] = ACTIONS(2400), - [aux_sym_cmd_identifier_token14] = ACTIONS(2400), - [aux_sym_cmd_identifier_token15] = ACTIONS(2400), - [aux_sym_cmd_identifier_token16] = ACTIONS(2400), - [aux_sym_cmd_identifier_token17] = ACTIONS(2400), - [aux_sym_cmd_identifier_token18] = ACTIONS(2400), - [aux_sym_cmd_identifier_token19] = ACTIONS(2400), - [aux_sym_cmd_identifier_token20] = ACTIONS(2400), - [aux_sym_cmd_identifier_token21] = ACTIONS(2400), - [aux_sym_cmd_identifier_token22] = ACTIONS(2400), - [aux_sym_cmd_identifier_token23] = ACTIONS(2400), - [aux_sym_cmd_identifier_token24] = ACTIONS(2400), - [aux_sym_cmd_identifier_token25] = ACTIONS(2400), - [aux_sym_cmd_identifier_token26] = ACTIONS(2400), - [aux_sym_cmd_identifier_token27] = ACTIONS(2400), - [aux_sym_cmd_identifier_token28] = ACTIONS(2400), - [aux_sym_cmd_identifier_token29] = ACTIONS(2400), - [aux_sym_cmd_identifier_token30] = ACTIONS(2400), - [aux_sym_cmd_identifier_token31] = ACTIONS(2400), - [aux_sym_cmd_identifier_token32] = ACTIONS(2400), - [aux_sym_cmd_identifier_token33] = ACTIONS(2400), - [aux_sym_cmd_identifier_token34] = ACTIONS(2400), - [aux_sym_cmd_identifier_token35] = ACTIONS(2400), - [aux_sym_cmd_identifier_token36] = ACTIONS(2400), - [anon_sym_true] = ACTIONS(2402), - [anon_sym_false] = ACTIONS(2402), - [anon_sym_null] = ACTIONS(2402), - [aux_sym_cmd_identifier_token38] = ACTIONS(2400), - [aux_sym_cmd_identifier_token39] = ACTIONS(2402), - [aux_sym_cmd_identifier_token40] = ACTIONS(2402), - [anon_sym_def] = ACTIONS(2400), - [anon_sym_export_DASHenv] = ACTIONS(2400), - [anon_sym_extern] = ACTIONS(2400), - [anon_sym_module] = ACTIONS(2400), - [anon_sym_use] = ACTIONS(2400), - [anon_sym_LPAREN] = ACTIONS(2402), - [anon_sym_DOLLAR] = ACTIONS(2402), - [anon_sym_error] = ACTIONS(2400), - [anon_sym_list] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_break] = ACTIONS(2400), - [anon_sym_continue] = ACTIONS(2400), - [anon_sym_for] = ACTIONS(2400), - [anon_sym_in] = ACTIONS(2400), - [anon_sym_loop] = ACTIONS(2400), - [anon_sym_make] = ACTIONS(2400), - [anon_sym_while] = ACTIONS(2400), - [anon_sym_do] = ACTIONS(2400), - [anon_sym_if] = ACTIONS(2400), - [anon_sym_else] = ACTIONS(2400), - [anon_sym_match] = ACTIONS(2400), - [anon_sym_RBRACE] = ACTIONS(2402), - [anon_sym_try] = ACTIONS(2400), - [anon_sym_catch] = ACTIONS(2400), - [anon_sym_return] = ACTIONS(2400), - [anon_sym_source] = ACTIONS(2400), - [anon_sym_source_DASHenv] = ACTIONS(2400), - [anon_sym_register] = ACTIONS(2400), - [anon_sym_hide] = ACTIONS(2400), - [anon_sym_hide_DASHenv] = ACTIONS(2400), - [anon_sym_overlay] = ACTIONS(2400), - [anon_sym_new] = ACTIONS(2400), - [anon_sym_as] = ACTIONS(2400), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2402), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2402), - [aux_sym__val_number_decimal_token1] = ACTIONS(2400), - [aux_sym__val_number_decimal_token2] = ACTIONS(2402), - [aux_sym__val_number_decimal_token3] = ACTIONS(2402), - [aux_sym__val_number_decimal_token4] = ACTIONS(2402), - [aux_sym__val_number_token1] = ACTIONS(2402), - [aux_sym__val_number_token2] = ACTIONS(2402), - [aux_sym__val_number_token3] = ACTIONS(2402), - [anon_sym_DQUOTE] = ACTIONS(2402), - [sym__str_single_quotes] = ACTIONS(2402), - [sym__str_back_ticks] = ACTIONS(2402), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2402), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_POUND] = ACTIONS(247), - }, - [627] = { - [sym_comment] = STATE(627), - [anon_sym_export] = ACTIONS(2358), - [anon_sym_alias] = ACTIONS(2358), - [anon_sym_let] = ACTIONS(2358), - [anon_sym_let_DASHenv] = ACTIONS(2358), - [anon_sym_mut] = ACTIONS(2358), - [anon_sym_const] = ACTIONS(2358), - [aux_sym_cmd_identifier_token1] = ACTIONS(2358), - [aux_sym_cmd_identifier_token2] = ACTIONS(2358), - [aux_sym_cmd_identifier_token3] = ACTIONS(2358), - [aux_sym_cmd_identifier_token4] = ACTIONS(2358), - [aux_sym_cmd_identifier_token5] = ACTIONS(2358), - [aux_sym_cmd_identifier_token6] = ACTIONS(2358), - [aux_sym_cmd_identifier_token7] = ACTIONS(2358), - [aux_sym_cmd_identifier_token8] = ACTIONS(2358), - [aux_sym_cmd_identifier_token9] = ACTIONS(2358), - [aux_sym_cmd_identifier_token10] = ACTIONS(2358), - [aux_sym_cmd_identifier_token11] = ACTIONS(2358), - [aux_sym_cmd_identifier_token12] = ACTIONS(2358), - [aux_sym_cmd_identifier_token13] = ACTIONS(2358), - [aux_sym_cmd_identifier_token14] = ACTIONS(2358), - [aux_sym_cmd_identifier_token15] = ACTIONS(2358), - [aux_sym_cmd_identifier_token16] = ACTIONS(2358), - [aux_sym_cmd_identifier_token17] = ACTIONS(2358), - [aux_sym_cmd_identifier_token18] = ACTIONS(2358), - [aux_sym_cmd_identifier_token19] = ACTIONS(2358), - [aux_sym_cmd_identifier_token20] = ACTIONS(2358), - [aux_sym_cmd_identifier_token21] = ACTIONS(2358), - [aux_sym_cmd_identifier_token22] = ACTIONS(2358), - [aux_sym_cmd_identifier_token23] = ACTIONS(2358), - [aux_sym_cmd_identifier_token24] = ACTIONS(2358), - [aux_sym_cmd_identifier_token25] = ACTIONS(2358), - [aux_sym_cmd_identifier_token26] = ACTIONS(2358), - [aux_sym_cmd_identifier_token27] = ACTIONS(2358), - [aux_sym_cmd_identifier_token28] = ACTIONS(2358), - [aux_sym_cmd_identifier_token29] = ACTIONS(2358), - [aux_sym_cmd_identifier_token30] = ACTIONS(2358), - [aux_sym_cmd_identifier_token31] = ACTIONS(2358), - [aux_sym_cmd_identifier_token32] = ACTIONS(2358), - [aux_sym_cmd_identifier_token33] = ACTIONS(2358), - [aux_sym_cmd_identifier_token34] = ACTIONS(2358), - [aux_sym_cmd_identifier_token35] = ACTIONS(2358), - [aux_sym_cmd_identifier_token36] = ACTIONS(2358), - [anon_sym_true] = ACTIONS(2360), - [anon_sym_false] = ACTIONS(2360), - [anon_sym_null] = ACTIONS(2360), - [aux_sym_cmd_identifier_token38] = ACTIONS(2358), - [aux_sym_cmd_identifier_token39] = ACTIONS(2360), - [aux_sym_cmd_identifier_token40] = ACTIONS(2360), - [anon_sym_def] = ACTIONS(2358), - [anon_sym_export_DASHenv] = ACTIONS(2358), - [anon_sym_extern] = ACTIONS(2358), - [anon_sym_module] = ACTIONS(2358), - [anon_sym_use] = ACTIONS(2358), - [anon_sym_LPAREN] = ACTIONS(2360), - [anon_sym_DOLLAR] = ACTIONS(2360), - [anon_sym_error] = ACTIONS(2358), - [anon_sym_list] = ACTIONS(2358), - [anon_sym_DASH] = ACTIONS(2358), - [anon_sym_break] = ACTIONS(2358), - [anon_sym_continue] = ACTIONS(2358), - [anon_sym_for] = ACTIONS(2358), - [anon_sym_in] = ACTIONS(2358), - [anon_sym_loop] = ACTIONS(2358), - [anon_sym_make] = ACTIONS(2358), - [anon_sym_while] = ACTIONS(2358), - [anon_sym_do] = ACTIONS(2358), - [anon_sym_if] = ACTIONS(2358), - [anon_sym_else] = ACTIONS(2358), - [anon_sym_match] = ACTIONS(2358), - [anon_sym_RBRACE] = ACTIONS(2360), - [anon_sym_try] = ACTIONS(2358), - [anon_sym_catch] = ACTIONS(2358), - [anon_sym_return] = ACTIONS(2358), - [anon_sym_source] = ACTIONS(2358), - [anon_sym_source_DASHenv] = ACTIONS(2358), - [anon_sym_register] = ACTIONS(2358), - [anon_sym_hide] = ACTIONS(2358), - [anon_sym_hide_DASHenv] = ACTIONS(2358), - [anon_sym_overlay] = ACTIONS(2358), - [anon_sym_new] = ACTIONS(2358), - [anon_sym_as] = ACTIONS(2358), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2360), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2360), - [aux_sym__val_number_decimal_token1] = ACTIONS(2358), - [aux_sym__val_number_decimal_token2] = ACTIONS(2360), - [aux_sym__val_number_decimal_token3] = ACTIONS(2360), - [aux_sym__val_number_decimal_token4] = ACTIONS(2360), - [aux_sym__val_number_token1] = ACTIONS(2360), - [aux_sym__val_number_token2] = ACTIONS(2360), - [aux_sym__val_number_token3] = ACTIONS(2360), - [anon_sym_DQUOTE] = ACTIONS(2360), - [sym__str_single_quotes] = ACTIONS(2360), - [sym__str_back_ticks] = ACTIONS(2360), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2360), - [anon_sym_PLUS] = ACTIONS(2358), - [anon_sym_POUND] = ACTIONS(247), - }, - [628] = { - [sym_comment] = STATE(628), - [anon_sym_export] = ACTIONS(1931), - [anon_sym_alias] = ACTIONS(1931), - [anon_sym_let] = ACTIONS(1931), - [anon_sym_let_DASHenv] = ACTIONS(1931), - [anon_sym_mut] = ACTIONS(1931), - [anon_sym_const] = ACTIONS(1931), - [aux_sym_cmd_identifier_token1] = ACTIONS(1931), - [aux_sym_cmd_identifier_token2] = ACTIONS(1931), - [aux_sym_cmd_identifier_token3] = ACTIONS(1931), - [aux_sym_cmd_identifier_token4] = ACTIONS(1931), - [aux_sym_cmd_identifier_token5] = ACTIONS(1931), - [aux_sym_cmd_identifier_token6] = ACTIONS(1931), - [aux_sym_cmd_identifier_token7] = ACTIONS(1931), - [aux_sym_cmd_identifier_token8] = ACTIONS(1931), - [aux_sym_cmd_identifier_token9] = ACTIONS(1931), - [aux_sym_cmd_identifier_token10] = ACTIONS(1931), - [aux_sym_cmd_identifier_token11] = ACTIONS(1931), - [aux_sym_cmd_identifier_token12] = ACTIONS(1931), - [aux_sym_cmd_identifier_token13] = ACTIONS(1931), - [aux_sym_cmd_identifier_token14] = ACTIONS(1931), - [aux_sym_cmd_identifier_token15] = ACTIONS(1931), - [aux_sym_cmd_identifier_token16] = ACTIONS(1931), - [aux_sym_cmd_identifier_token17] = ACTIONS(1931), - [aux_sym_cmd_identifier_token18] = ACTIONS(1931), - [aux_sym_cmd_identifier_token19] = ACTIONS(1931), - [aux_sym_cmd_identifier_token20] = ACTIONS(1931), - [aux_sym_cmd_identifier_token21] = ACTIONS(1931), - [aux_sym_cmd_identifier_token22] = ACTIONS(1931), - [aux_sym_cmd_identifier_token23] = ACTIONS(1931), - [aux_sym_cmd_identifier_token24] = ACTIONS(1931), - [aux_sym_cmd_identifier_token25] = ACTIONS(1931), - [aux_sym_cmd_identifier_token26] = ACTIONS(1931), - [aux_sym_cmd_identifier_token27] = ACTIONS(1931), - [aux_sym_cmd_identifier_token28] = ACTIONS(1931), - [aux_sym_cmd_identifier_token29] = ACTIONS(1931), - [aux_sym_cmd_identifier_token30] = ACTIONS(1931), - [aux_sym_cmd_identifier_token31] = ACTIONS(1931), - [aux_sym_cmd_identifier_token32] = ACTIONS(1931), - [aux_sym_cmd_identifier_token33] = ACTIONS(1931), - [aux_sym_cmd_identifier_token34] = ACTIONS(1931), - [aux_sym_cmd_identifier_token35] = ACTIONS(1931), - [aux_sym_cmd_identifier_token36] = ACTIONS(1931), - [anon_sym_true] = ACTIONS(1933), - [anon_sym_false] = ACTIONS(1933), - [anon_sym_null] = ACTIONS(1933), - [aux_sym_cmd_identifier_token38] = ACTIONS(1931), - [aux_sym_cmd_identifier_token39] = ACTIONS(1933), - [aux_sym_cmd_identifier_token40] = ACTIONS(1933), - [anon_sym_def] = ACTIONS(1931), - [anon_sym_export_DASHenv] = ACTIONS(1931), - [anon_sym_extern] = ACTIONS(1931), - [anon_sym_module] = ACTIONS(1931), - [anon_sym_use] = ACTIONS(1931), - [anon_sym_LPAREN] = ACTIONS(1933), - [anon_sym_DOLLAR] = ACTIONS(1933), - [anon_sym_error] = ACTIONS(1931), - [anon_sym_list] = ACTIONS(1931), - [anon_sym_DASH] = ACTIONS(1931), - [anon_sym_break] = ACTIONS(1931), - [anon_sym_continue] = ACTIONS(1931), - [anon_sym_for] = ACTIONS(1931), - [anon_sym_in] = ACTIONS(1931), - [anon_sym_loop] = ACTIONS(1931), - [anon_sym_make] = ACTIONS(1931), - [anon_sym_while] = ACTIONS(1931), - [anon_sym_do] = ACTIONS(1931), - [anon_sym_if] = ACTIONS(1931), - [anon_sym_else] = ACTIONS(1931), - [anon_sym_match] = ACTIONS(1931), - [anon_sym_RBRACE] = ACTIONS(1933), - [anon_sym_try] = ACTIONS(1931), - [anon_sym_catch] = ACTIONS(1931), - [anon_sym_return] = ACTIONS(1931), - [anon_sym_source] = ACTIONS(1931), - [anon_sym_source_DASHenv] = ACTIONS(1931), - [anon_sym_register] = ACTIONS(1931), - [anon_sym_hide] = ACTIONS(1931), - [anon_sym_hide_DASHenv] = ACTIONS(1931), - [anon_sym_overlay] = ACTIONS(1931), - [anon_sym_new] = ACTIONS(1931), - [anon_sym_as] = ACTIONS(1931), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1933), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1931), - [aux_sym__val_number_decimal_token2] = ACTIONS(1933), - [aux_sym__val_number_decimal_token3] = ACTIONS(1933), - [aux_sym__val_number_decimal_token4] = ACTIONS(1933), - [aux_sym__val_number_token1] = ACTIONS(1933), - [aux_sym__val_number_token2] = ACTIONS(1933), - [aux_sym__val_number_token3] = ACTIONS(1933), - [anon_sym_DQUOTE] = ACTIONS(1933), - [sym__str_single_quotes] = ACTIONS(1933), - [sym__str_back_ticks] = ACTIONS(1933), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1933), - [anon_sym_PLUS] = ACTIONS(1931), - [anon_sym_POUND] = ACTIONS(247), - }, - [629] = { - [sym_comment] = STATE(629), - [anon_sym_export] = ACTIONS(1311), - [anon_sym_alias] = ACTIONS(1311), - [anon_sym_let] = ACTIONS(1311), - [anon_sym_let_DASHenv] = ACTIONS(1311), - [anon_sym_mut] = ACTIONS(1311), - [anon_sym_const] = ACTIONS(1311), - [aux_sym_cmd_identifier_token1] = ACTIONS(1311), - [aux_sym_cmd_identifier_token2] = ACTIONS(1311), - [aux_sym_cmd_identifier_token3] = ACTIONS(1311), - [aux_sym_cmd_identifier_token4] = ACTIONS(1311), - [aux_sym_cmd_identifier_token5] = ACTIONS(1311), - [aux_sym_cmd_identifier_token6] = ACTIONS(1311), - [aux_sym_cmd_identifier_token7] = ACTIONS(1311), - [aux_sym_cmd_identifier_token8] = ACTIONS(1311), - [aux_sym_cmd_identifier_token9] = ACTIONS(1311), - [aux_sym_cmd_identifier_token10] = ACTIONS(1311), - [aux_sym_cmd_identifier_token11] = ACTIONS(1311), - [aux_sym_cmd_identifier_token12] = ACTIONS(1311), - [aux_sym_cmd_identifier_token13] = ACTIONS(1311), - [aux_sym_cmd_identifier_token14] = ACTIONS(1311), - [aux_sym_cmd_identifier_token15] = ACTIONS(1311), - [aux_sym_cmd_identifier_token16] = ACTIONS(1311), - [aux_sym_cmd_identifier_token17] = ACTIONS(1311), - [aux_sym_cmd_identifier_token18] = ACTIONS(1311), - [aux_sym_cmd_identifier_token19] = ACTIONS(1311), - [aux_sym_cmd_identifier_token20] = ACTIONS(1311), - [aux_sym_cmd_identifier_token21] = ACTIONS(1311), - [aux_sym_cmd_identifier_token22] = ACTIONS(1311), - [aux_sym_cmd_identifier_token23] = ACTIONS(1311), - [aux_sym_cmd_identifier_token24] = ACTIONS(1311), - [aux_sym_cmd_identifier_token25] = ACTIONS(1311), - [aux_sym_cmd_identifier_token26] = ACTIONS(1311), - [aux_sym_cmd_identifier_token27] = ACTIONS(1311), - [aux_sym_cmd_identifier_token28] = ACTIONS(1311), - [aux_sym_cmd_identifier_token29] = ACTIONS(1311), - [aux_sym_cmd_identifier_token30] = ACTIONS(1311), - [aux_sym_cmd_identifier_token31] = ACTIONS(1311), - [aux_sym_cmd_identifier_token32] = ACTIONS(1311), - [aux_sym_cmd_identifier_token33] = ACTIONS(1311), - [aux_sym_cmd_identifier_token34] = ACTIONS(1311), - [aux_sym_cmd_identifier_token35] = ACTIONS(1311), - [aux_sym_cmd_identifier_token36] = ACTIONS(1311), - [anon_sym_true] = ACTIONS(1307), - [anon_sym_false] = ACTIONS(1307), - [anon_sym_null] = ACTIONS(1307), - [aux_sym_cmd_identifier_token38] = ACTIONS(1311), - [aux_sym_cmd_identifier_token39] = ACTIONS(1307), - [aux_sym_cmd_identifier_token40] = ACTIONS(1307), - [sym__newline] = ACTIONS(1307), - [anon_sym_def] = ACTIONS(1311), - [anon_sym_export_DASHenv] = ACTIONS(1311), - [anon_sym_extern] = ACTIONS(1311), - [anon_sym_module] = ACTIONS(1311), - [anon_sym_use] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1307), - [anon_sym_DOLLAR] = ACTIONS(1307), - [anon_sym_error] = ACTIONS(1311), - [anon_sym_list] = ACTIONS(1311), - [anon_sym_DASH] = ACTIONS(1311), - [anon_sym_break] = ACTIONS(1311), - [anon_sym_continue] = ACTIONS(1311), - [anon_sym_for] = ACTIONS(1311), - [anon_sym_in] = ACTIONS(1311), - [anon_sym_loop] = ACTIONS(1311), - [anon_sym_make] = ACTIONS(1311), - [anon_sym_while] = ACTIONS(1311), - [anon_sym_do] = ACTIONS(1311), - [anon_sym_if] = ACTIONS(1311), - [anon_sym_else] = ACTIONS(1311), - [anon_sym_match] = ACTIONS(1311), - [anon_sym_try] = ACTIONS(1311), - [anon_sym_catch] = ACTIONS(1311), - [anon_sym_return] = ACTIONS(1311), - [anon_sym_source] = ACTIONS(1311), - [anon_sym_source_DASHenv] = ACTIONS(1311), - [anon_sym_register] = ACTIONS(1311), - [anon_sym_hide] = ACTIONS(1311), - [anon_sym_hide_DASHenv] = ACTIONS(1311), - [anon_sym_overlay] = ACTIONS(1311), - [anon_sym_new] = ACTIONS(1311), - [anon_sym_as] = ACTIONS(1311), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1307), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1307), - [aux_sym__val_number_decimal_token1] = ACTIONS(1311), - [aux_sym__val_number_decimal_token2] = ACTIONS(1307), - [aux_sym__val_number_decimal_token3] = ACTIONS(1307), - [aux_sym__val_number_decimal_token4] = ACTIONS(1307), - [aux_sym__val_number_token1] = ACTIONS(1307), - [aux_sym__val_number_token2] = ACTIONS(1307), - [aux_sym__val_number_token3] = ACTIONS(1307), - [anon_sym_DQUOTE] = ACTIONS(1307), - [sym__str_single_quotes] = ACTIONS(1307), - [sym__str_back_ticks] = ACTIONS(1307), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(1311), - [anon_sym_POUND] = ACTIONS(247), - }, - [630] = { - [sym_comment] = STATE(630), - [anon_sym_export] = ACTIONS(2019), - [anon_sym_alias] = ACTIONS(2019), - [anon_sym_let] = ACTIONS(2019), - [anon_sym_let_DASHenv] = ACTIONS(2019), - [anon_sym_mut] = ACTIONS(2019), - [anon_sym_const] = ACTIONS(2019), - [aux_sym_cmd_identifier_token1] = ACTIONS(2019), - [aux_sym_cmd_identifier_token2] = ACTIONS(2019), - [aux_sym_cmd_identifier_token3] = ACTIONS(2019), - [aux_sym_cmd_identifier_token4] = ACTIONS(2019), - [aux_sym_cmd_identifier_token5] = ACTIONS(2019), - [aux_sym_cmd_identifier_token6] = ACTIONS(2019), - [aux_sym_cmd_identifier_token7] = ACTIONS(2019), - [aux_sym_cmd_identifier_token8] = ACTIONS(2019), - [aux_sym_cmd_identifier_token9] = ACTIONS(2019), - [aux_sym_cmd_identifier_token10] = ACTIONS(2019), - [aux_sym_cmd_identifier_token11] = ACTIONS(2019), - [aux_sym_cmd_identifier_token12] = ACTIONS(2019), - [aux_sym_cmd_identifier_token13] = ACTIONS(2019), - [aux_sym_cmd_identifier_token14] = ACTIONS(2019), - [aux_sym_cmd_identifier_token15] = ACTIONS(2019), - [aux_sym_cmd_identifier_token16] = ACTIONS(2019), - [aux_sym_cmd_identifier_token17] = ACTIONS(2019), - [aux_sym_cmd_identifier_token18] = ACTIONS(2019), - [aux_sym_cmd_identifier_token19] = ACTIONS(2019), - [aux_sym_cmd_identifier_token20] = ACTIONS(2019), - [aux_sym_cmd_identifier_token21] = ACTIONS(2019), - [aux_sym_cmd_identifier_token22] = ACTIONS(2019), - [aux_sym_cmd_identifier_token23] = ACTIONS(2019), - [aux_sym_cmd_identifier_token24] = ACTIONS(2019), - [aux_sym_cmd_identifier_token25] = ACTIONS(2019), - [aux_sym_cmd_identifier_token26] = ACTIONS(2019), - [aux_sym_cmd_identifier_token27] = ACTIONS(2019), - [aux_sym_cmd_identifier_token28] = ACTIONS(2019), - [aux_sym_cmd_identifier_token29] = ACTIONS(2019), - [aux_sym_cmd_identifier_token30] = ACTIONS(2019), - [aux_sym_cmd_identifier_token31] = ACTIONS(2019), - [aux_sym_cmd_identifier_token32] = ACTIONS(2019), - [aux_sym_cmd_identifier_token33] = ACTIONS(2019), - [aux_sym_cmd_identifier_token34] = ACTIONS(2019), - [aux_sym_cmd_identifier_token35] = ACTIONS(2019), - [aux_sym_cmd_identifier_token36] = ACTIONS(2019), - [anon_sym_true] = ACTIONS(2025), - [anon_sym_false] = ACTIONS(2025), - [anon_sym_null] = ACTIONS(2025), - [aux_sym_cmd_identifier_token38] = ACTIONS(2019), - [aux_sym_cmd_identifier_token39] = ACTIONS(2025), - [aux_sym_cmd_identifier_token40] = ACTIONS(2025), - [anon_sym_def] = ACTIONS(2019), - [anon_sym_export_DASHenv] = ACTIONS(2019), - [anon_sym_extern] = ACTIONS(2019), - [anon_sym_module] = ACTIONS(2019), - [anon_sym_use] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(2025), - [anon_sym_DOLLAR] = ACTIONS(2025), - [anon_sym_error] = ACTIONS(2019), - [anon_sym_list] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_break] = ACTIONS(2019), - [anon_sym_continue] = ACTIONS(2019), - [anon_sym_for] = ACTIONS(2019), - [anon_sym_in] = ACTIONS(2019), - [anon_sym_loop] = ACTIONS(2019), - [anon_sym_make] = ACTIONS(2019), - [anon_sym_while] = ACTIONS(2019), - [anon_sym_do] = ACTIONS(2019), - [anon_sym_if] = ACTIONS(2019), - [anon_sym_else] = ACTIONS(2019), - [anon_sym_match] = ACTIONS(2019), - [anon_sym_RBRACE] = ACTIONS(2025), - [anon_sym_try] = ACTIONS(2019), - [anon_sym_catch] = ACTIONS(2019), - [anon_sym_return] = ACTIONS(2019), - [anon_sym_source] = ACTIONS(2019), - [anon_sym_source_DASHenv] = ACTIONS(2019), - [anon_sym_register] = ACTIONS(2019), - [anon_sym_hide] = ACTIONS(2019), - [anon_sym_hide_DASHenv] = ACTIONS(2019), - [anon_sym_overlay] = ACTIONS(2019), - [anon_sym_new] = ACTIONS(2019), - [anon_sym_as] = ACTIONS(2019), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2025), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2025), - [aux_sym__val_number_decimal_token1] = ACTIONS(2019), - [aux_sym__val_number_decimal_token2] = ACTIONS(2025), - [aux_sym__val_number_decimal_token3] = ACTIONS(2025), - [aux_sym__val_number_decimal_token4] = ACTIONS(2025), - [aux_sym__val_number_token1] = ACTIONS(2025), - [aux_sym__val_number_token2] = ACTIONS(2025), - [aux_sym__val_number_token3] = ACTIONS(2025), - [anon_sym_DQUOTE] = ACTIONS(2025), - [sym__str_single_quotes] = ACTIONS(2025), - [sym__str_back_ticks] = ACTIONS(2025), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2025), - [anon_sym_PLUS] = ACTIONS(2019), - [anon_sym_POUND] = ACTIONS(247), - }, - [631] = { - [sym_comment] = STATE(631), - [anon_sym_export] = ACTIONS(2473), - [anon_sym_alias] = ACTIONS(2473), - [anon_sym_let] = ACTIONS(2473), - [anon_sym_let_DASHenv] = ACTIONS(2473), - [anon_sym_mut] = ACTIONS(2473), - [anon_sym_const] = ACTIONS(2473), - [aux_sym_cmd_identifier_token1] = ACTIONS(2473), - [aux_sym_cmd_identifier_token2] = ACTIONS(2473), - [aux_sym_cmd_identifier_token3] = ACTIONS(2473), - [aux_sym_cmd_identifier_token4] = ACTIONS(2473), - [aux_sym_cmd_identifier_token5] = ACTIONS(2473), - [aux_sym_cmd_identifier_token6] = ACTIONS(2473), - [aux_sym_cmd_identifier_token7] = ACTIONS(2473), - [aux_sym_cmd_identifier_token8] = ACTIONS(2473), - [aux_sym_cmd_identifier_token9] = ACTIONS(2473), - [aux_sym_cmd_identifier_token10] = ACTIONS(2473), - [aux_sym_cmd_identifier_token11] = ACTIONS(2473), - [aux_sym_cmd_identifier_token12] = ACTIONS(2473), - [aux_sym_cmd_identifier_token13] = ACTIONS(2473), - [aux_sym_cmd_identifier_token14] = ACTIONS(2473), - [aux_sym_cmd_identifier_token15] = ACTIONS(2473), - [aux_sym_cmd_identifier_token16] = ACTIONS(2473), - [aux_sym_cmd_identifier_token17] = ACTIONS(2473), - [aux_sym_cmd_identifier_token18] = ACTIONS(2473), - [aux_sym_cmd_identifier_token19] = ACTIONS(2473), - [aux_sym_cmd_identifier_token20] = ACTIONS(2473), - [aux_sym_cmd_identifier_token21] = ACTIONS(2473), - [aux_sym_cmd_identifier_token22] = ACTIONS(2473), - [aux_sym_cmd_identifier_token23] = ACTIONS(2473), - [aux_sym_cmd_identifier_token24] = ACTIONS(2473), - [aux_sym_cmd_identifier_token25] = ACTIONS(2473), - [aux_sym_cmd_identifier_token26] = ACTIONS(2473), - [aux_sym_cmd_identifier_token27] = ACTIONS(2473), - [aux_sym_cmd_identifier_token28] = ACTIONS(2473), - [aux_sym_cmd_identifier_token29] = ACTIONS(2473), - [aux_sym_cmd_identifier_token30] = ACTIONS(2473), - [aux_sym_cmd_identifier_token31] = ACTIONS(2473), - [aux_sym_cmd_identifier_token32] = ACTIONS(2473), - [aux_sym_cmd_identifier_token33] = ACTIONS(2473), - [aux_sym_cmd_identifier_token34] = ACTIONS(2473), - [aux_sym_cmd_identifier_token35] = ACTIONS(2473), - [aux_sym_cmd_identifier_token36] = ACTIONS(2473), - [anon_sym_true] = ACTIONS(2475), - [anon_sym_false] = ACTIONS(2475), - [anon_sym_null] = ACTIONS(2475), - [aux_sym_cmd_identifier_token38] = ACTIONS(2473), - [aux_sym_cmd_identifier_token39] = ACTIONS(2475), - [aux_sym_cmd_identifier_token40] = ACTIONS(2475), - [anon_sym_def] = ACTIONS(2473), - [anon_sym_export_DASHenv] = ACTIONS(2473), - [anon_sym_extern] = ACTIONS(2473), - [anon_sym_module] = ACTIONS(2473), - [anon_sym_use] = ACTIONS(2473), - [anon_sym_LPAREN] = ACTIONS(2475), - [anon_sym_DOLLAR] = ACTIONS(2475), - [anon_sym_error] = ACTIONS(2473), - [anon_sym_list] = ACTIONS(2473), - [anon_sym_DASH] = ACTIONS(2473), - [anon_sym_break] = ACTIONS(2473), - [anon_sym_continue] = ACTIONS(2473), - [anon_sym_for] = ACTIONS(2473), - [anon_sym_in] = ACTIONS(2473), - [anon_sym_loop] = ACTIONS(2473), - [anon_sym_make] = ACTIONS(2473), - [anon_sym_while] = ACTIONS(2473), - [anon_sym_do] = ACTIONS(2473), - [anon_sym_if] = ACTIONS(2473), - [anon_sym_else] = ACTIONS(2473), - [anon_sym_match] = ACTIONS(2473), - [anon_sym_RBRACE] = ACTIONS(2475), - [anon_sym_try] = ACTIONS(2473), - [anon_sym_catch] = ACTIONS(2473), - [anon_sym_return] = ACTIONS(2473), - [anon_sym_source] = ACTIONS(2473), - [anon_sym_source_DASHenv] = ACTIONS(2473), - [anon_sym_register] = ACTIONS(2473), - [anon_sym_hide] = ACTIONS(2473), - [anon_sym_hide_DASHenv] = ACTIONS(2473), - [anon_sym_overlay] = ACTIONS(2473), - [anon_sym_new] = ACTIONS(2473), - [anon_sym_as] = ACTIONS(2473), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2475), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2475), - [aux_sym__val_number_decimal_token1] = ACTIONS(2473), - [aux_sym__val_number_decimal_token2] = ACTIONS(2475), - [aux_sym__val_number_decimal_token3] = ACTIONS(2475), - [aux_sym__val_number_decimal_token4] = ACTIONS(2475), - [aux_sym__val_number_token1] = ACTIONS(2475), - [aux_sym__val_number_token2] = ACTIONS(2475), - [aux_sym__val_number_token3] = ACTIONS(2475), - [anon_sym_DQUOTE] = ACTIONS(2475), - [sym__str_single_quotes] = ACTIONS(2475), - [sym__str_back_ticks] = ACTIONS(2475), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2475), - [anon_sym_PLUS] = ACTIONS(2473), - [anon_sym_POUND] = ACTIONS(247), - }, - [632] = { - [sym_comment] = STATE(632), - [anon_sym_export] = ACTIONS(1991), - [anon_sym_alias] = ACTIONS(1991), - [anon_sym_let] = ACTIONS(1991), - [anon_sym_let_DASHenv] = ACTIONS(1991), - [anon_sym_mut] = ACTIONS(1991), - [anon_sym_const] = ACTIONS(1991), - [aux_sym_cmd_identifier_token1] = ACTIONS(1991), - [aux_sym_cmd_identifier_token2] = ACTIONS(1991), - [aux_sym_cmd_identifier_token3] = ACTIONS(1991), - [aux_sym_cmd_identifier_token4] = ACTIONS(1991), - [aux_sym_cmd_identifier_token5] = ACTIONS(1991), - [aux_sym_cmd_identifier_token6] = ACTIONS(1991), - [aux_sym_cmd_identifier_token7] = ACTIONS(1991), - [aux_sym_cmd_identifier_token8] = ACTIONS(1991), - [aux_sym_cmd_identifier_token9] = ACTIONS(1991), - [aux_sym_cmd_identifier_token10] = ACTIONS(1991), - [aux_sym_cmd_identifier_token11] = ACTIONS(1991), - [aux_sym_cmd_identifier_token12] = ACTIONS(1991), - [aux_sym_cmd_identifier_token13] = ACTIONS(1991), - [aux_sym_cmd_identifier_token14] = ACTIONS(1991), - [aux_sym_cmd_identifier_token15] = ACTIONS(1991), - [aux_sym_cmd_identifier_token16] = ACTIONS(1991), - [aux_sym_cmd_identifier_token17] = ACTIONS(1991), - [aux_sym_cmd_identifier_token18] = ACTIONS(1991), - [aux_sym_cmd_identifier_token19] = ACTIONS(1991), - [aux_sym_cmd_identifier_token20] = ACTIONS(1991), - [aux_sym_cmd_identifier_token21] = ACTIONS(1991), - [aux_sym_cmd_identifier_token22] = ACTIONS(1991), - [aux_sym_cmd_identifier_token23] = ACTIONS(1991), - [aux_sym_cmd_identifier_token24] = ACTIONS(1991), - [aux_sym_cmd_identifier_token25] = ACTIONS(1991), - [aux_sym_cmd_identifier_token26] = ACTIONS(1991), - [aux_sym_cmd_identifier_token27] = ACTIONS(1991), - [aux_sym_cmd_identifier_token28] = ACTIONS(1991), - [aux_sym_cmd_identifier_token29] = ACTIONS(1991), - [aux_sym_cmd_identifier_token30] = ACTIONS(1991), - [aux_sym_cmd_identifier_token31] = ACTIONS(1991), - [aux_sym_cmd_identifier_token32] = ACTIONS(1991), - [aux_sym_cmd_identifier_token33] = ACTIONS(1991), - [aux_sym_cmd_identifier_token34] = ACTIONS(1991), - [aux_sym_cmd_identifier_token35] = ACTIONS(1991), - [aux_sym_cmd_identifier_token36] = ACTIONS(1991), - [anon_sym_true] = ACTIONS(1997), - [anon_sym_false] = ACTIONS(1997), - [anon_sym_null] = ACTIONS(1997), - [aux_sym_cmd_identifier_token38] = ACTIONS(1991), - [aux_sym_cmd_identifier_token39] = ACTIONS(1997), - [aux_sym_cmd_identifier_token40] = ACTIONS(1997), - [anon_sym_def] = ACTIONS(1991), - [anon_sym_export_DASHenv] = ACTIONS(1991), - [anon_sym_extern] = ACTIONS(1991), - [anon_sym_module] = ACTIONS(1991), - [anon_sym_use] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1997), - [anon_sym_DOLLAR] = ACTIONS(1997), - [anon_sym_error] = ACTIONS(1991), - [anon_sym_list] = ACTIONS(1991), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_break] = ACTIONS(1991), - [anon_sym_continue] = ACTIONS(1991), - [anon_sym_for] = ACTIONS(1991), - [anon_sym_in] = ACTIONS(1991), - [anon_sym_loop] = ACTIONS(1991), - [anon_sym_make] = ACTIONS(1991), - [anon_sym_while] = ACTIONS(1991), - [anon_sym_do] = ACTIONS(1991), - [anon_sym_if] = ACTIONS(1991), - [anon_sym_else] = ACTIONS(1991), - [anon_sym_match] = ACTIONS(1991), - [anon_sym_RBRACE] = ACTIONS(1997), - [anon_sym_try] = ACTIONS(1991), - [anon_sym_catch] = ACTIONS(1991), - [anon_sym_return] = ACTIONS(1991), - [anon_sym_source] = ACTIONS(1991), - [anon_sym_source_DASHenv] = ACTIONS(1991), - [anon_sym_register] = ACTIONS(1991), - [anon_sym_hide] = ACTIONS(1991), - [anon_sym_hide_DASHenv] = ACTIONS(1991), - [anon_sym_overlay] = ACTIONS(1991), - [anon_sym_new] = ACTIONS(1991), - [anon_sym_as] = ACTIONS(1991), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1997), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1997), - [aux_sym__val_number_decimal_token1] = ACTIONS(1991), - [aux_sym__val_number_decimal_token2] = ACTIONS(1997), - [aux_sym__val_number_decimal_token3] = ACTIONS(1997), - [aux_sym__val_number_decimal_token4] = ACTIONS(1997), - [aux_sym__val_number_token1] = ACTIONS(1997), - [aux_sym__val_number_token2] = ACTIONS(1997), - [aux_sym__val_number_token3] = ACTIONS(1997), - [anon_sym_DQUOTE] = ACTIONS(1997), - [sym__str_single_quotes] = ACTIONS(1997), - [sym__str_back_ticks] = ACTIONS(1997), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1997), - [anon_sym_PLUS] = ACTIONS(1991), - [anon_sym_POUND] = ACTIONS(247), - }, - [633] = { - [sym_comment] = STATE(633), - [anon_sym_export] = ACTIONS(1999), - [anon_sym_alias] = ACTIONS(1999), - [anon_sym_let] = ACTIONS(1999), - [anon_sym_let_DASHenv] = ACTIONS(1999), - [anon_sym_mut] = ACTIONS(1999), - [anon_sym_const] = ACTIONS(1999), - [aux_sym_cmd_identifier_token1] = ACTIONS(1999), - [aux_sym_cmd_identifier_token2] = ACTIONS(1999), - [aux_sym_cmd_identifier_token3] = ACTIONS(1999), - [aux_sym_cmd_identifier_token4] = ACTIONS(1999), - [aux_sym_cmd_identifier_token5] = ACTIONS(1999), - [aux_sym_cmd_identifier_token6] = ACTIONS(1999), - [aux_sym_cmd_identifier_token7] = ACTIONS(1999), - [aux_sym_cmd_identifier_token8] = ACTIONS(1999), - [aux_sym_cmd_identifier_token9] = ACTIONS(1999), - [aux_sym_cmd_identifier_token10] = ACTIONS(1999), - [aux_sym_cmd_identifier_token11] = ACTIONS(1999), - [aux_sym_cmd_identifier_token12] = ACTIONS(1999), - [aux_sym_cmd_identifier_token13] = ACTIONS(1999), - [aux_sym_cmd_identifier_token14] = ACTIONS(1999), - [aux_sym_cmd_identifier_token15] = ACTIONS(1999), - [aux_sym_cmd_identifier_token16] = ACTIONS(1999), - [aux_sym_cmd_identifier_token17] = ACTIONS(1999), - [aux_sym_cmd_identifier_token18] = ACTIONS(1999), - [aux_sym_cmd_identifier_token19] = ACTIONS(1999), - [aux_sym_cmd_identifier_token20] = ACTIONS(1999), - [aux_sym_cmd_identifier_token21] = ACTIONS(1999), - [aux_sym_cmd_identifier_token22] = ACTIONS(1999), - [aux_sym_cmd_identifier_token23] = ACTIONS(1999), - [aux_sym_cmd_identifier_token24] = ACTIONS(1999), - [aux_sym_cmd_identifier_token25] = ACTIONS(1999), - [aux_sym_cmd_identifier_token26] = ACTIONS(1999), - [aux_sym_cmd_identifier_token27] = ACTIONS(1999), - [aux_sym_cmd_identifier_token28] = ACTIONS(1999), - [aux_sym_cmd_identifier_token29] = ACTIONS(1999), - [aux_sym_cmd_identifier_token30] = ACTIONS(1999), - [aux_sym_cmd_identifier_token31] = ACTIONS(1999), - [aux_sym_cmd_identifier_token32] = ACTIONS(1999), - [aux_sym_cmd_identifier_token33] = ACTIONS(1999), - [aux_sym_cmd_identifier_token34] = ACTIONS(1999), - [aux_sym_cmd_identifier_token35] = ACTIONS(1999), - [aux_sym_cmd_identifier_token36] = ACTIONS(1999), - [anon_sym_true] = ACTIONS(2005), - [anon_sym_false] = ACTIONS(2005), - [anon_sym_null] = ACTIONS(2005), - [aux_sym_cmd_identifier_token38] = ACTIONS(1999), - [aux_sym_cmd_identifier_token39] = ACTIONS(2005), - [aux_sym_cmd_identifier_token40] = ACTIONS(2005), - [anon_sym_def] = ACTIONS(1999), - [anon_sym_export_DASHenv] = ACTIONS(1999), - [anon_sym_extern] = ACTIONS(1999), - [anon_sym_module] = ACTIONS(1999), - [anon_sym_use] = ACTIONS(1999), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_DOLLAR] = ACTIONS(2005), - [anon_sym_error] = ACTIONS(1999), - [anon_sym_list] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1999), - [anon_sym_break] = ACTIONS(1999), - [anon_sym_continue] = ACTIONS(1999), - [anon_sym_for] = ACTIONS(1999), - [anon_sym_in] = ACTIONS(1999), - [anon_sym_loop] = ACTIONS(1999), - [anon_sym_make] = ACTIONS(1999), - [anon_sym_while] = ACTIONS(1999), - [anon_sym_do] = ACTIONS(1999), - [anon_sym_if] = ACTIONS(1999), - [anon_sym_else] = ACTIONS(1999), - [anon_sym_match] = ACTIONS(1999), - [anon_sym_RBRACE] = ACTIONS(2005), - [anon_sym_try] = ACTIONS(1999), - [anon_sym_catch] = ACTIONS(1999), - [anon_sym_return] = ACTIONS(1999), - [anon_sym_source] = ACTIONS(1999), - [anon_sym_source_DASHenv] = ACTIONS(1999), - [anon_sym_register] = ACTIONS(1999), - [anon_sym_hide] = ACTIONS(1999), - [anon_sym_hide_DASHenv] = ACTIONS(1999), - [anon_sym_overlay] = ACTIONS(1999), - [anon_sym_new] = ACTIONS(1999), - [anon_sym_as] = ACTIONS(1999), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2005), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2005), - [aux_sym__val_number_decimal_token1] = ACTIONS(1999), - [aux_sym__val_number_decimal_token2] = ACTIONS(2005), - [aux_sym__val_number_decimal_token3] = ACTIONS(2005), - [aux_sym__val_number_decimal_token4] = ACTIONS(2005), - [aux_sym__val_number_token1] = ACTIONS(2005), - [aux_sym__val_number_token2] = ACTIONS(2005), - [aux_sym__val_number_token3] = ACTIONS(2005), - [anon_sym_DQUOTE] = ACTIONS(2005), - [sym__str_single_quotes] = ACTIONS(2005), - [sym__str_back_ticks] = ACTIONS(2005), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2005), - [anon_sym_PLUS] = ACTIONS(1999), - [anon_sym_POUND] = ACTIONS(247), - }, - [634] = { - [sym_comment] = STATE(634), - [anon_sym_export] = ACTIONS(2007), - [anon_sym_alias] = ACTIONS(2007), - [anon_sym_let] = ACTIONS(2007), - [anon_sym_let_DASHenv] = ACTIONS(2007), - [anon_sym_mut] = ACTIONS(2007), - [anon_sym_const] = ACTIONS(2007), - [aux_sym_cmd_identifier_token1] = ACTIONS(2007), - [aux_sym_cmd_identifier_token2] = ACTIONS(2007), - [aux_sym_cmd_identifier_token3] = ACTIONS(2007), - [aux_sym_cmd_identifier_token4] = ACTIONS(2007), - [aux_sym_cmd_identifier_token5] = ACTIONS(2007), - [aux_sym_cmd_identifier_token6] = ACTIONS(2007), - [aux_sym_cmd_identifier_token7] = ACTIONS(2007), - [aux_sym_cmd_identifier_token8] = ACTIONS(2007), - [aux_sym_cmd_identifier_token9] = ACTIONS(2007), - [aux_sym_cmd_identifier_token10] = ACTIONS(2007), - [aux_sym_cmd_identifier_token11] = ACTIONS(2007), - [aux_sym_cmd_identifier_token12] = ACTIONS(2007), - [aux_sym_cmd_identifier_token13] = ACTIONS(2007), - [aux_sym_cmd_identifier_token14] = ACTIONS(2007), - [aux_sym_cmd_identifier_token15] = ACTIONS(2007), - [aux_sym_cmd_identifier_token16] = ACTIONS(2007), - [aux_sym_cmd_identifier_token17] = ACTIONS(2007), - [aux_sym_cmd_identifier_token18] = ACTIONS(2007), - [aux_sym_cmd_identifier_token19] = ACTIONS(2007), - [aux_sym_cmd_identifier_token20] = ACTIONS(2007), - [aux_sym_cmd_identifier_token21] = ACTIONS(2007), - [aux_sym_cmd_identifier_token22] = ACTIONS(2007), - [aux_sym_cmd_identifier_token23] = ACTIONS(2007), - [aux_sym_cmd_identifier_token24] = ACTIONS(2007), - [aux_sym_cmd_identifier_token25] = ACTIONS(2007), - [aux_sym_cmd_identifier_token26] = ACTIONS(2007), - [aux_sym_cmd_identifier_token27] = ACTIONS(2007), - [aux_sym_cmd_identifier_token28] = ACTIONS(2007), - [aux_sym_cmd_identifier_token29] = ACTIONS(2007), - [aux_sym_cmd_identifier_token30] = ACTIONS(2007), - [aux_sym_cmd_identifier_token31] = ACTIONS(2007), - [aux_sym_cmd_identifier_token32] = ACTIONS(2007), - [aux_sym_cmd_identifier_token33] = ACTIONS(2007), - [aux_sym_cmd_identifier_token34] = ACTIONS(2007), - [aux_sym_cmd_identifier_token35] = ACTIONS(2007), - [aux_sym_cmd_identifier_token36] = ACTIONS(2007), - [anon_sym_true] = ACTIONS(2013), - [anon_sym_false] = ACTIONS(2013), - [anon_sym_null] = ACTIONS(2013), - [aux_sym_cmd_identifier_token38] = ACTIONS(2007), - [aux_sym_cmd_identifier_token39] = ACTIONS(2013), - [aux_sym_cmd_identifier_token40] = ACTIONS(2013), - [anon_sym_def] = ACTIONS(2007), - [anon_sym_export_DASHenv] = ACTIONS(2007), - [anon_sym_extern] = ACTIONS(2007), - [anon_sym_module] = ACTIONS(2007), - [anon_sym_use] = ACTIONS(2007), - [anon_sym_LPAREN] = ACTIONS(2013), - [anon_sym_DOLLAR] = ACTIONS(2013), - [anon_sym_error] = ACTIONS(2007), - [anon_sym_list] = ACTIONS(2007), - [anon_sym_DASH] = ACTIONS(2007), - [anon_sym_break] = ACTIONS(2007), - [anon_sym_continue] = ACTIONS(2007), - [anon_sym_for] = ACTIONS(2007), - [anon_sym_in] = ACTIONS(2007), - [anon_sym_loop] = ACTIONS(2007), - [anon_sym_make] = ACTIONS(2007), - [anon_sym_while] = ACTIONS(2007), - [anon_sym_do] = ACTIONS(2007), - [anon_sym_if] = ACTIONS(2007), - [anon_sym_else] = ACTIONS(2007), - [anon_sym_match] = ACTIONS(2007), - [anon_sym_RBRACE] = ACTIONS(2013), - [anon_sym_try] = ACTIONS(2007), - [anon_sym_catch] = ACTIONS(2007), - [anon_sym_return] = ACTIONS(2007), - [anon_sym_source] = ACTIONS(2007), - [anon_sym_source_DASHenv] = ACTIONS(2007), - [anon_sym_register] = ACTIONS(2007), - [anon_sym_hide] = ACTIONS(2007), - [anon_sym_hide_DASHenv] = ACTIONS(2007), - [anon_sym_overlay] = ACTIONS(2007), - [anon_sym_new] = ACTIONS(2007), - [anon_sym_as] = ACTIONS(2007), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2013), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2013), - [aux_sym__val_number_decimal_token1] = ACTIONS(2007), - [aux_sym__val_number_decimal_token2] = ACTIONS(2013), - [aux_sym__val_number_decimal_token3] = ACTIONS(2013), - [aux_sym__val_number_decimal_token4] = ACTIONS(2013), - [aux_sym__val_number_token1] = ACTIONS(2013), - [aux_sym__val_number_token2] = ACTIONS(2013), - [aux_sym__val_number_token3] = ACTIONS(2013), - [anon_sym_DQUOTE] = ACTIONS(2013), - [sym__str_single_quotes] = ACTIONS(2013), - [sym__str_back_ticks] = ACTIONS(2013), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2013), - [anon_sym_PLUS] = ACTIONS(2007), - [anon_sym_POUND] = ACTIONS(247), - }, - [635] = { - [sym_comment] = STATE(635), - [anon_sym_export] = ACTIONS(2477), - [anon_sym_alias] = ACTIONS(2477), - [anon_sym_let] = ACTIONS(2477), - [anon_sym_let_DASHenv] = ACTIONS(2477), - [anon_sym_mut] = ACTIONS(2477), - [anon_sym_const] = ACTIONS(2477), - [aux_sym_cmd_identifier_token1] = ACTIONS(2477), - [aux_sym_cmd_identifier_token2] = ACTIONS(2477), - [aux_sym_cmd_identifier_token3] = ACTIONS(2477), - [aux_sym_cmd_identifier_token4] = ACTIONS(2477), - [aux_sym_cmd_identifier_token5] = ACTIONS(2477), - [aux_sym_cmd_identifier_token6] = ACTIONS(2477), - [aux_sym_cmd_identifier_token7] = ACTIONS(2477), - [aux_sym_cmd_identifier_token8] = ACTIONS(2477), - [aux_sym_cmd_identifier_token9] = ACTIONS(2477), - [aux_sym_cmd_identifier_token10] = ACTIONS(2477), - [aux_sym_cmd_identifier_token11] = ACTIONS(2477), - [aux_sym_cmd_identifier_token12] = ACTIONS(2477), - [aux_sym_cmd_identifier_token13] = ACTIONS(2477), - [aux_sym_cmd_identifier_token14] = ACTIONS(2477), - [aux_sym_cmd_identifier_token15] = ACTIONS(2477), - [aux_sym_cmd_identifier_token16] = ACTIONS(2477), - [aux_sym_cmd_identifier_token17] = ACTIONS(2477), - [aux_sym_cmd_identifier_token18] = ACTIONS(2477), - [aux_sym_cmd_identifier_token19] = ACTIONS(2477), - [aux_sym_cmd_identifier_token20] = ACTIONS(2477), - [aux_sym_cmd_identifier_token21] = ACTIONS(2477), - [aux_sym_cmd_identifier_token22] = ACTIONS(2477), - [aux_sym_cmd_identifier_token23] = ACTIONS(2477), - [aux_sym_cmd_identifier_token24] = ACTIONS(2477), - [aux_sym_cmd_identifier_token25] = ACTIONS(2477), - [aux_sym_cmd_identifier_token26] = ACTIONS(2477), - [aux_sym_cmd_identifier_token27] = ACTIONS(2477), - [aux_sym_cmd_identifier_token28] = ACTIONS(2477), - [aux_sym_cmd_identifier_token29] = ACTIONS(2477), - [aux_sym_cmd_identifier_token30] = ACTIONS(2477), - [aux_sym_cmd_identifier_token31] = ACTIONS(2477), - [aux_sym_cmd_identifier_token32] = ACTIONS(2477), - [aux_sym_cmd_identifier_token33] = ACTIONS(2477), - [aux_sym_cmd_identifier_token34] = ACTIONS(2477), - [aux_sym_cmd_identifier_token35] = ACTIONS(2477), - [aux_sym_cmd_identifier_token36] = ACTIONS(2477), - [anon_sym_true] = ACTIONS(2479), - [anon_sym_false] = ACTIONS(2479), - [anon_sym_null] = ACTIONS(2479), - [aux_sym_cmd_identifier_token38] = ACTIONS(2477), - [aux_sym_cmd_identifier_token39] = ACTIONS(2479), - [aux_sym_cmd_identifier_token40] = ACTIONS(2479), - [anon_sym_def] = ACTIONS(2477), - [anon_sym_export_DASHenv] = ACTIONS(2477), - [anon_sym_extern] = ACTIONS(2477), - [anon_sym_module] = ACTIONS(2477), - [anon_sym_use] = ACTIONS(2477), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_DOLLAR] = ACTIONS(2479), - [anon_sym_error] = ACTIONS(2477), - [anon_sym_list] = ACTIONS(2477), - [anon_sym_DASH] = ACTIONS(2477), - [anon_sym_break] = ACTIONS(2477), - [anon_sym_continue] = ACTIONS(2477), - [anon_sym_for] = ACTIONS(2477), - [anon_sym_in] = ACTIONS(2477), - [anon_sym_loop] = ACTIONS(2477), - [anon_sym_make] = ACTIONS(2477), - [anon_sym_while] = ACTIONS(2477), - [anon_sym_do] = ACTIONS(2477), - [anon_sym_if] = ACTIONS(2477), - [anon_sym_else] = ACTIONS(2477), - [anon_sym_match] = ACTIONS(2477), - [anon_sym_RBRACE] = ACTIONS(2479), - [anon_sym_try] = ACTIONS(2477), - [anon_sym_catch] = ACTIONS(2477), - [anon_sym_return] = ACTIONS(2477), - [anon_sym_source] = ACTIONS(2477), - [anon_sym_source_DASHenv] = ACTIONS(2477), - [anon_sym_register] = ACTIONS(2477), - [anon_sym_hide] = ACTIONS(2477), - [anon_sym_hide_DASHenv] = ACTIONS(2477), - [anon_sym_overlay] = ACTIONS(2477), - [anon_sym_new] = ACTIONS(2477), - [anon_sym_as] = ACTIONS(2477), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2479), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2479), - [aux_sym__val_number_decimal_token1] = ACTIONS(2477), - [aux_sym__val_number_decimal_token2] = ACTIONS(2479), - [aux_sym__val_number_decimal_token3] = ACTIONS(2479), - [aux_sym__val_number_decimal_token4] = ACTIONS(2479), - [aux_sym__val_number_token1] = ACTIONS(2479), - [aux_sym__val_number_token2] = ACTIONS(2479), - [aux_sym__val_number_token3] = ACTIONS(2479), - [anon_sym_DQUOTE] = ACTIONS(2479), - [sym__str_single_quotes] = ACTIONS(2479), - [sym__str_back_ticks] = ACTIONS(2479), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2479), - [anon_sym_PLUS] = ACTIONS(2477), - [anon_sym_POUND] = ACTIONS(247), - }, - [636] = { - [sym_comment] = STATE(636), - [anon_sym_export] = ACTIONS(2481), - [anon_sym_alias] = ACTIONS(2481), - [anon_sym_let] = ACTIONS(2481), - [anon_sym_let_DASHenv] = ACTIONS(2481), - [anon_sym_mut] = ACTIONS(2481), - [anon_sym_const] = ACTIONS(2481), - [aux_sym_cmd_identifier_token1] = ACTIONS(2481), - [aux_sym_cmd_identifier_token2] = ACTIONS(2481), - [aux_sym_cmd_identifier_token3] = ACTIONS(2481), - [aux_sym_cmd_identifier_token4] = ACTIONS(2481), - [aux_sym_cmd_identifier_token5] = ACTIONS(2481), - [aux_sym_cmd_identifier_token6] = ACTIONS(2481), - [aux_sym_cmd_identifier_token7] = ACTIONS(2481), - [aux_sym_cmd_identifier_token8] = ACTIONS(2481), - [aux_sym_cmd_identifier_token9] = ACTIONS(2481), - [aux_sym_cmd_identifier_token10] = ACTIONS(2481), - [aux_sym_cmd_identifier_token11] = ACTIONS(2481), - [aux_sym_cmd_identifier_token12] = ACTIONS(2481), - [aux_sym_cmd_identifier_token13] = ACTIONS(2481), - [aux_sym_cmd_identifier_token14] = ACTIONS(2481), - [aux_sym_cmd_identifier_token15] = ACTIONS(2481), - [aux_sym_cmd_identifier_token16] = ACTIONS(2481), - [aux_sym_cmd_identifier_token17] = ACTIONS(2481), - [aux_sym_cmd_identifier_token18] = ACTIONS(2481), - [aux_sym_cmd_identifier_token19] = ACTIONS(2481), - [aux_sym_cmd_identifier_token20] = ACTIONS(2481), - [aux_sym_cmd_identifier_token21] = ACTIONS(2481), - [aux_sym_cmd_identifier_token22] = ACTIONS(2481), - [aux_sym_cmd_identifier_token23] = ACTIONS(2481), - [aux_sym_cmd_identifier_token24] = ACTIONS(2481), - [aux_sym_cmd_identifier_token25] = ACTIONS(2481), - [aux_sym_cmd_identifier_token26] = ACTIONS(2481), - [aux_sym_cmd_identifier_token27] = ACTIONS(2481), - [aux_sym_cmd_identifier_token28] = ACTIONS(2481), - [aux_sym_cmd_identifier_token29] = ACTIONS(2481), - [aux_sym_cmd_identifier_token30] = ACTIONS(2481), - [aux_sym_cmd_identifier_token31] = ACTIONS(2481), - [aux_sym_cmd_identifier_token32] = ACTIONS(2481), - [aux_sym_cmd_identifier_token33] = ACTIONS(2481), - [aux_sym_cmd_identifier_token34] = ACTIONS(2481), - [aux_sym_cmd_identifier_token35] = ACTIONS(2481), - [aux_sym_cmd_identifier_token36] = ACTIONS(2481), - [anon_sym_true] = ACTIONS(2483), - [anon_sym_false] = ACTIONS(2483), - [anon_sym_null] = ACTIONS(2483), - [aux_sym_cmd_identifier_token38] = ACTIONS(2481), - [aux_sym_cmd_identifier_token39] = ACTIONS(2483), - [aux_sym_cmd_identifier_token40] = ACTIONS(2483), - [anon_sym_def] = ACTIONS(2481), - [anon_sym_export_DASHenv] = ACTIONS(2481), - [anon_sym_extern] = ACTIONS(2481), - [anon_sym_module] = ACTIONS(2481), - [anon_sym_use] = ACTIONS(2481), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_DOLLAR] = ACTIONS(2483), - [anon_sym_error] = ACTIONS(2481), - [anon_sym_list] = ACTIONS(2481), - [anon_sym_DASH] = ACTIONS(2481), - [anon_sym_break] = ACTIONS(2481), - [anon_sym_continue] = ACTIONS(2481), - [anon_sym_for] = ACTIONS(2481), - [anon_sym_in] = ACTIONS(2481), - [anon_sym_loop] = ACTIONS(2481), - [anon_sym_make] = ACTIONS(2481), - [anon_sym_while] = ACTIONS(2481), - [anon_sym_do] = ACTIONS(2481), - [anon_sym_if] = ACTIONS(2481), - [anon_sym_else] = ACTIONS(2481), - [anon_sym_match] = ACTIONS(2481), - [anon_sym_RBRACE] = ACTIONS(2483), - [anon_sym_try] = ACTIONS(2481), - [anon_sym_catch] = ACTIONS(2481), - [anon_sym_return] = ACTIONS(2481), - [anon_sym_source] = ACTIONS(2481), - [anon_sym_source_DASHenv] = ACTIONS(2481), - [anon_sym_register] = ACTIONS(2481), - [anon_sym_hide] = ACTIONS(2481), - [anon_sym_hide_DASHenv] = ACTIONS(2481), - [anon_sym_overlay] = ACTIONS(2481), - [anon_sym_new] = ACTIONS(2481), - [anon_sym_as] = ACTIONS(2481), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2483), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2483), - [aux_sym__val_number_decimal_token1] = ACTIONS(2481), - [aux_sym__val_number_decimal_token2] = ACTIONS(2483), - [aux_sym__val_number_decimal_token3] = ACTIONS(2483), - [aux_sym__val_number_decimal_token4] = ACTIONS(2483), - [aux_sym__val_number_token1] = ACTIONS(2483), - [aux_sym__val_number_token2] = ACTIONS(2483), - [aux_sym__val_number_token3] = ACTIONS(2483), - [anon_sym_DQUOTE] = ACTIONS(2483), - [sym__str_single_quotes] = ACTIONS(2483), - [sym__str_back_ticks] = ACTIONS(2483), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2483), - [anon_sym_PLUS] = ACTIONS(2481), - [anon_sym_POUND] = ACTIONS(247), - }, - [637] = { - [sym_comment] = STATE(637), - [anon_sym_export] = ACTIONS(2485), - [anon_sym_alias] = ACTIONS(2485), - [anon_sym_let] = ACTIONS(2485), - [anon_sym_let_DASHenv] = ACTIONS(2485), - [anon_sym_mut] = ACTIONS(2485), - [anon_sym_const] = ACTIONS(2485), - [aux_sym_cmd_identifier_token1] = ACTIONS(2485), - [aux_sym_cmd_identifier_token2] = ACTIONS(2485), - [aux_sym_cmd_identifier_token3] = ACTIONS(2485), - [aux_sym_cmd_identifier_token4] = ACTIONS(2485), - [aux_sym_cmd_identifier_token5] = ACTIONS(2485), - [aux_sym_cmd_identifier_token6] = ACTIONS(2485), - [aux_sym_cmd_identifier_token7] = ACTIONS(2485), - [aux_sym_cmd_identifier_token8] = ACTIONS(2485), - [aux_sym_cmd_identifier_token9] = ACTIONS(2485), - [aux_sym_cmd_identifier_token10] = ACTIONS(2485), - [aux_sym_cmd_identifier_token11] = ACTIONS(2485), - [aux_sym_cmd_identifier_token12] = ACTIONS(2485), - [aux_sym_cmd_identifier_token13] = ACTIONS(2485), - [aux_sym_cmd_identifier_token14] = ACTIONS(2485), - [aux_sym_cmd_identifier_token15] = ACTIONS(2485), - [aux_sym_cmd_identifier_token16] = ACTIONS(2485), - [aux_sym_cmd_identifier_token17] = ACTIONS(2485), - [aux_sym_cmd_identifier_token18] = ACTIONS(2485), - [aux_sym_cmd_identifier_token19] = ACTIONS(2485), - [aux_sym_cmd_identifier_token20] = ACTIONS(2485), - [aux_sym_cmd_identifier_token21] = ACTIONS(2485), - [aux_sym_cmd_identifier_token22] = ACTIONS(2485), - [aux_sym_cmd_identifier_token23] = ACTIONS(2485), - [aux_sym_cmd_identifier_token24] = ACTIONS(2485), - [aux_sym_cmd_identifier_token25] = ACTIONS(2485), - [aux_sym_cmd_identifier_token26] = ACTIONS(2485), - [aux_sym_cmd_identifier_token27] = ACTIONS(2485), - [aux_sym_cmd_identifier_token28] = ACTIONS(2485), - [aux_sym_cmd_identifier_token29] = ACTIONS(2485), - [aux_sym_cmd_identifier_token30] = ACTIONS(2485), - [aux_sym_cmd_identifier_token31] = ACTIONS(2485), - [aux_sym_cmd_identifier_token32] = ACTIONS(2485), - [aux_sym_cmd_identifier_token33] = ACTIONS(2485), - [aux_sym_cmd_identifier_token34] = ACTIONS(2485), - [aux_sym_cmd_identifier_token35] = ACTIONS(2485), - [aux_sym_cmd_identifier_token36] = ACTIONS(2485), - [anon_sym_true] = ACTIONS(2487), - [anon_sym_false] = ACTIONS(2487), - [anon_sym_null] = ACTIONS(2487), - [aux_sym_cmd_identifier_token38] = ACTIONS(2485), - [aux_sym_cmd_identifier_token39] = ACTIONS(2487), - [aux_sym_cmd_identifier_token40] = ACTIONS(2487), - [anon_sym_def] = ACTIONS(2485), - [anon_sym_export_DASHenv] = ACTIONS(2485), - [anon_sym_extern] = ACTIONS(2485), - [anon_sym_module] = ACTIONS(2485), - [anon_sym_use] = ACTIONS(2485), - [anon_sym_LPAREN] = ACTIONS(2487), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_error] = ACTIONS(2485), - [anon_sym_list] = ACTIONS(2485), - [anon_sym_DASH] = ACTIONS(2485), - [anon_sym_break] = ACTIONS(2485), - [anon_sym_continue] = ACTIONS(2485), - [anon_sym_for] = ACTIONS(2485), - [anon_sym_in] = ACTIONS(2485), - [anon_sym_loop] = ACTIONS(2485), - [anon_sym_make] = ACTIONS(2485), - [anon_sym_while] = ACTIONS(2485), - [anon_sym_do] = ACTIONS(2485), - [anon_sym_if] = ACTIONS(2485), - [anon_sym_else] = ACTIONS(2485), - [anon_sym_match] = ACTIONS(2485), - [anon_sym_RBRACE] = ACTIONS(2487), - [anon_sym_try] = ACTIONS(2485), - [anon_sym_catch] = ACTIONS(2485), - [anon_sym_return] = ACTIONS(2485), - [anon_sym_source] = ACTIONS(2485), - [anon_sym_source_DASHenv] = ACTIONS(2485), - [anon_sym_register] = ACTIONS(2485), - [anon_sym_hide] = ACTIONS(2485), - [anon_sym_hide_DASHenv] = ACTIONS(2485), - [anon_sym_overlay] = ACTIONS(2485), - [anon_sym_new] = ACTIONS(2485), - [anon_sym_as] = ACTIONS(2485), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2487), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2487), - [aux_sym__val_number_decimal_token1] = ACTIONS(2485), - [aux_sym__val_number_decimal_token2] = ACTIONS(2487), - [aux_sym__val_number_decimal_token3] = ACTIONS(2487), - [aux_sym__val_number_decimal_token4] = ACTIONS(2487), - [aux_sym__val_number_token1] = ACTIONS(2487), - [aux_sym__val_number_token2] = ACTIONS(2487), - [aux_sym__val_number_token3] = ACTIONS(2487), - [anon_sym_DQUOTE] = ACTIONS(2487), - [sym__str_single_quotes] = ACTIONS(2487), - [sym__str_back_ticks] = ACTIONS(2487), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2487), - [anon_sym_PLUS] = ACTIONS(2485), - [anon_sym_POUND] = ACTIONS(247), - }, - [638] = { - [sym_comment] = STATE(638), - [anon_sym_export] = ACTIONS(2489), - [anon_sym_alias] = ACTIONS(2489), - [anon_sym_let] = ACTIONS(2489), - [anon_sym_let_DASHenv] = ACTIONS(2489), - [anon_sym_mut] = ACTIONS(2489), - [anon_sym_const] = ACTIONS(2489), - [aux_sym_cmd_identifier_token1] = ACTIONS(2489), - [aux_sym_cmd_identifier_token2] = ACTIONS(2489), - [aux_sym_cmd_identifier_token3] = ACTIONS(2489), - [aux_sym_cmd_identifier_token4] = ACTIONS(2489), - [aux_sym_cmd_identifier_token5] = ACTIONS(2489), - [aux_sym_cmd_identifier_token6] = ACTIONS(2489), - [aux_sym_cmd_identifier_token7] = ACTIONS(2489), - [aux_sym_cmd_identifier_token8] = ACTIONS(2489), - [aux_sym_cmd_identifier_token9] = ACTIONS(2489), - [aux_sym_cmd_identifier_token10] = ACTIONS(2489), - [aux_sym_cmd_identifier_token11] = ACTIONS(2489), - [aux_sym_cmd_identifier_token12] = ACTIONS(2489), - [aux_sym_cmd_identifier_token13] = ACTIONS(2489), - [aux_sym_cmd_identifier_token14] = ACTIONS(2489), - [aux_sym_cmd_identifier_token15] = ACTIONS(2489), - [aux_sym_cmd_identifier_token16] = ACTIONS(2489), - [aux_sym_cmd_identifier_token17] = ACTIONS(2489), - [aux_sym_cmd_identifier_token18] = ACTIONS(2489), - [aux_sym_cmd_identifier_token19] = ACTIONS(2489), - [aux_sym_cmd_identifier_token20] = ACTIONS(2489), - [aux_sym_cmd_identifier_token21] = ACTIONS(2489), - [aux_sym_cmd_identifier_token22] = ACTIONS(2489), - [aux_sym_cmd_identifier_token23] = ACTIONS(2489), - [aux_sym_cmd_identifier_token24] = ACTIONS(2489), - [aux_sym_cmd_identifier_token25] = ACTIONS(2489), - [aux_sym_cmd_identifier_token26] = ACTIONS(2489), - [aux_sym_cmd_identifier_token27] = ACTIONS(2489), - [aux_sym_cmd_identifier_token28] = ACTIONS(2489), - [aux_sym_cmd_identifier_token29] = ACTIONS(2489), - [aux_sym_cmd_identifier_token30] = ACTIONS(2489), - [aux_sym_cmd_identifier_token31] = ACTIONS(2489), - [aux_sym_cmd_identifier_token32] = ACTIONS(2489), - [aux_sym_cmd_identifier_token33] = ACTIONS(2489), - [aux_sym_cmd_identifier_token34] = ACTIONS(2489), - [aux_sym_cmd_identifier_token35] = ACTIONS(2489), - [aux_sym_cmd_identifier_token36] = ACTIONS(2489), - [anon_sym_true] = ACTIONS(2491), - [anon_sym_false] = ACTIONS(2491), - [anon_sym_null] = ACTIONS(2491), - [aux_sym_cmd_identifier_token38] = ACTIONS(2489), - [aux_sym_cmd_identifier_token39] = ACTIONS(2491), - [aux_sym_cmd_identifier_token40] = ACTIONS(2491), - [anon_sym_def] = ACTIONS(2489), - [anon_sym_export_DASHenv] = ACTIONS(2489), - [anon_sym_extern] = ACTIONS(2489), - [anon_sym_module] = ACTIONS(2489), - [anon_sym_use] = ACTIONS(2489), - [anon_sym_LPAREN] = ACTIONS(2491), - [anon_sym_DOLLAR] = ACTIONS(2491), - [anon_sym_error] = ACTIONS(2489), - [anon_sym_list] = ACTIONS(2489), - [anon_sym_DASH] = ACTIONS(2489), - [anon_sym_break] = ACTIONS(2489), - [anon_sym_continue] = ACTIONS(2489), - [anon_sym_for] = ACTIONS(2489), - [anon_sym_in] = ACTIONS(2489), - [anon_sym_loop] = ACTIONS(2489), - [anon_sym_make] = ACTIONS(2489), - [anon_sym_while] = ACTIONS(2489), - [anon_sym_do] = ACTIONS(2489), - [anon_sym_if] = ACTIONS(2489), - [anon_sym_else] = ACTIONS(2489), - [anon_sym_match] = ACTIONS(2489), - [anon_sym_RBRACE] = ACTIONS(2491), - [anon_sym_try] = ACTIONS(2489), - [anon_sym_catch] = ACTIONS(2489), - [anon_sym_return] = ACTIONS(2489), - [anon_sym_source] = ACTIONS(2489), - [anon_sym_source_DASHenv] = ACTIONS(2489), - [anon_sym_register] = ACTIONS(2489), - [anon_sym_hide] = ACTIONS(2489), - [anon_sym_hide_DASHenv] = ACTIONS(2489), - [anon_sym_overlay] = ACTIONS(2489), - [anon_sym_new] = ACTIONS(2489), - [anon_sym_as] = ACTIONS(2489), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2491), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2491), - [aux_sym__val_number_decimal_token1] = ACTIONS(2489), - [aux_sym__val_number_decimal_token2] = ACTIONS(2491), - [aux_sym__val_number_decimal_token3] = ACTIONS(2491), - [aux_sym__val_number_decimal_token4] = ACTIONS(2491), - [aux_sym__val_number_token1] = ACTIONS(2491), - [aux_sym__val_number_token2] = ACTIONS(2491), - [aux_sym__val_number_token3] = ACTIONS(2491), - [anon_sym_DQUOTE] = ACTIONS(2491), - [sym__str_single_quotes] = ACTIONS(2491), - [sym__str_back_ticks] = ACTIONS(2491), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2491), - [anon_sym_PLUS] = ACTIONS(2489), - [anon_sym_POUND] = ACTIONS(247), - }, - [639] = { - [sym_comment] = STATE(639), - [anon_sym_export] = ACTIONS(2493), - [anon_sym_alias] = ACTIONS(2493), - [anon_sym_let] = ACTIONS(2493), - [anon_sym_let_DASHenv] = ACTIONS(2493), - [anon_sym_mut] = ACTIONS(2493), - [anon_sym_const] = ACTIONS(2493), - [aux_sym_cmd_identifier_token1] = ACTIONS(2493), - [aux_sym_cmd_identifier_token2] = ACTIONS(2493), - [aux_sym_cmd_identifier_token3] = ACTIONS(2493), - [aux_sym_cmd_identifier_token4] = ACTIONS(2493), - [aux_sym_cmd_identifier_token5] = ACTIONS(2493), - [aux_sym_cmd_identifier_token6] = ACTIONS(2493), - [aux_sym_cmd_identifier_token7] = ACTIONS(2493), - [aux_sym_cmd_identifier_token8] = ACTIONS(2493), - [aux_sym_cmd_identifier_token9] = ACTIONS(2493), - [aux_sym_cmd_identifier_token10] = ACTIONS(2493), - [aux_sym_cmd_identifier_token11] = ACTIONS(2493), - [aux_sym_cmd_identifier_token12] = ACTIONS(2493), - [aux_sym_cmd_identifier_token13] = ACTIONS(2493), - [aux_sym_cmd_identifier_token14] = ACTIONS(2493), - [aux_sym_cmd_identifier_token15] = ACTIONS(2493), - [aux_sym_cmd_identifier_token16] = ACTIONS(2493), - [aux_sym_cmd_identifier_token17] = ACTIONS(2493), - [aux_sym_cmd_identifier_token18] = ACTIONS(2493), - [aux_sym_cmd_identifier_token19] = ACTIONS(2493), - [aux_sym_cmd_identifier_token20] = ACTIONS(2493), - [aux_sym_cmd_identifier_token21] = ACTIONS(2493), - [aux_sym_cmd_identifier_token22] = ACTIONS(2493), - [aux_sym_cmd_identifier_token23] = ACTIONS(2493), - [aux_sym_cmd_identifier_token24] = ACTIONS(2493), - [aux_sym_cmd_identifier_token25] = ACTIONS(2493), - [aux_sym_cmd_identifier_token26] = ACTIONS(2493), - [aux_sym_cmd_identifier_token27] = ACTIONS(2493), - [aux_sym_cmd_identifier_token28] = ACTIONS(2493), - [aux_sym_cmd_identifier_token29] = ACTIONS(2493), - [aux_sym_cmd_identifier_token30] = ACTIONS(2493), - [aux_sym_cmd_identifier_token31] = ACTIONS(2493), - [aux_sym_cmd_identifier_token32] = ACTIONS(2493), - [aux_sym_cmd_identifier_token33] = ACTIONS(2493), - [aux_sym_cmd_identifier_token34] = ACTIONS(2493), - [aux_sym_cmd_identifier_token35] = ACTIONS(2493), - [aux_sym_cmd_identifier_token36] = ACTIONS(2493), - [anon_sym_true] = ACTIONS(2495), - [anon_sym_false] = ACTIONS(2495), - [anon_sym_null] = ACTIONS(2495), - [aux_sym_cmd_identifier_token38] = ACTIONS(2493), - [aux_sym_cmd_identifier_token39] = ACTIONS(2495), - [aux_sym_cmd_identifier_token40] = ACTIONS(2495), - [anon_sym_def] = ACTIONS(2493), - [anon_sym_export_DASHenv] = ACTIONS(2493), - [anon_sym_extern] = ACTIONS(2493), - [anon_sym_module] = ACTIONS(2493), - [anon_sym_use] = ACTIONS(2493), - [anon_sym_LPAREN] = ACTIONS(2495), - [anon_sym_DOLLAR] = ACTIONS(2495), - [anon_sym_error] = ACTIONS(2493), - [anon_sym_list] = ACTIONS(2493), - [anon_sym_DASH] = ACTIONS(2493), - [anon_sym_break] = ACTIONS(2493), - [anon_sym_continue] = ACTIONS(2493), - [anon_sym_for] = ACTIONS(2493), - [anon_sym_in] = ACTIONS(2493), - [anon_sym_loop] = ACTIONS(2493), - [anon_sym_make] = ACTIONS(2493), - [anon_sym_while] = ACTIONS(2493), - [anon_sym_do] = ACTIONS(2493), - [anon_sym_if] = ACTIONS(2493), - [anon_sym_else] = ACTIONS(2493), - [anon_sym_match] = ACTIONS(2493), - [anon_sym_RBRACE] = ACTIONS(2495), - [anon_sym_try] = ACTIONS(2493), - [anon_sym_catch] = ACTIONS(2493), - [anon_sym_return] = ACTIONS(2493), - [anon_sym_source] = ACTIONS(2493), - [anon_sym_source_DASHenv] = ACTIONS(2493), - [anon_sym_register] = ACTIONS(2493), - [anon_sym_hide] = ACTIONS(2493), - [anon_sym_hide_DASHenv] = ACTIONS(2493), - [anon_sym_overlay] = ACTIONS(2493), - [anon_sym_new] = ACTIONS(2493), - [anon_sym_as] = ACTIONS(2493), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2495), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2495), - [aux_sym__val_number_decimal_token1] = ACTIONS(2493), - [aux_sym__val_number_decimal_token2] = ACTIONS(2495), - [aux_sym__val_number_decimal_token3] = ACTIONS(2495), - [aux_sym__val_number_decimal_token4] = ACTIONS(2495), - [aux_sym__val_number_token1] = ACTIONS(2495), - [aux_sym__val_number_token2] = ACTIONS(2495), - [aux_sym__val_number_token3] = ACTIONS(2495), - [anon_sym_DQUOTE] = ACTIONS(2495), - [sym__str_single_quotes] = ACTIONS(2495), - [sym__str_back_ticks] = ACTIONS(2495), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2495), - [anon_sym_PLUS] = ACTIONS(2493), - [anon_sym_POUND] = ACTIONS(247), - }, - [640] = { - [sym_comment] = STATE(640), - [anon_sym_export] = ACTIONS(2497), - [anon_sym_alias] = ACTIONS(2497), - [anon_sym_let] = ACTIONS(2497), - [anon_sym_let_DASHenv] = ACTIONS(2497), - [anon_sym_mut] = ACTIONS(2497), - [anon_sym_const] = ACTIONS(2497), - [aux_sym_cmd_identifier_token1] = ACTIONS(2497), - [aux_sym_cmd_identifier_token2] = ACTIONS(2497), - [aux_sym_cmd_identifier_token3] = ACTIONS(2497), - [aux_sym_cmd_identifier_token4] = ACTIONS(2497), - [aux_sym_cmd_identifier_token5] = ACTIONS(2497), - [aux_sym_cmd_identifier_token6] = ACTIONS(2497), - [aux_sym_cmd_identifier_token7] = ACTIONS(2497), - [aux_sym_cmd_identifier_token8] = ACTIONS(2497), - [aux_sym_cmd_identifier_token9] = ACTIONS(2497), - [aux_sym_cmd_identifier_token10] = ACTIONS(2497), - [aux_sym_cmd_identifier_token11] = ACTIONS(2497), - [aux_sym_cmd_identifier_token12] = ACTIONS(2497), - [aux_sym_cmd_identifier_token13] = ACTIONS(2497), - [aux_sym_cmd_identifier_token14] = ACTIONS(2497), - [aux_sym_cmd_identifier_token15] = ACTIONS(2497), - [aux_sym_cmd_identifier_token16] = ACTIONS(2497), - [aux_sym_cmd_identifier_token17] = ACTIONS(2497), - [aux_sym_cmd_identifier_token18] = ACTIONS(2497), - [aux_sym_cmd_identifier_token19] = ACTIONS(2497), - [aux_sym_cmd_identifier_token20] = ACTIONS(2497), - [aux_sym_cmd_identifier_token21] = ACTIONS(2497), - [aux_sym_cmd_identifier_token22] = ACTIONS(2497), - [aux_sym_cmd_identifier_token23] = ACTIONS(2497), - [aux_sym_cmd_identifier_token24] = ACTIONS(2497), - [aux_sym_cmd_identifier_token25] = ACTIONS(2497), - [aux_sym_cmd_identifier_token26] = ACTIONS(2497), - [aux_sym_cmd_identifier_token27] = ACTIONS(2497), - [aux_sym_cmd_identifier_token28] = ACTIONS(2497), - [aux_sym_cmd_identifier_token29] = ACTIONS(2497), - [aux_sym_cmd_identifier_token30] = ACTIONS(2497), - [aux_sym_cmd_identifier_token31] = ACTIONS(2497), - [aux_sym_cmd_identifier_token32] = ACTIONS(2497), - [aux_sym_cmd_identifier_token33] = ACTIONS(2497), - [aux_sym_cmd_identifier_token34] = ACTIONS(2497), - [aux_sym_cmd_identifier_token35] = ACTIONS(2497), - [aux_sym_cmd_identifier_token36] = ACTIONS(2497), - [anon_sym_true] = ACTIONS(2499), - [anon_sym_false] = ACTIONS(2499), - [anon_sym_null] = ACTIONS(2499), - [aux_sym_cmd_identifier_token38] = ACTIONS(2497), - [aux_sym_cmd_identifier_token39] = ACTIONS(2499), - [aux_sym_cmd_identifier_token40] = ACTIONS(2499), - [anon_sym_def] = ACTIONS(2497), - [anon_sym_export_DASHenv] = ACTIONS(2497), - [anon_sym_extern] = ACTIONS(2497), - [anon_sym_module] = ACTIONS(2497), - [anon_sym_use] = ACTIONS(2497), - [anon_sym_LPAREN] = ACTIONS(2499), - [anon_sym_DOLLAR] = ACTIONS(2499), - [anon_sym_error] = ACTIONS(2497), - [anon_sym_list] = ACTIONS(2497), - [anon_sym_DASH] = ACTIONS(2497), - [anon_sym_break] = ACTIONS(2497), - [anon_sym_continue] = ACTIONS(2497), - [anon_sym_for] = ACTIONS(2497), - [anon_sym_in] = ACTIONS(2497), - [anon_sym_loop] = ACTIONS(2497), - [anon_sym_make] = ACTIONS(2497), - [anon_sym_while] = ACTIONS(2497), - [anon_sym_do] = ACTIONS(2497), - [anon_sym_if] = ACTIONS(2497), - [anon_sym_else] = ACTIONS(2497), - [anon_sym_match] = ACTIONS(2497), - [anon_sym_RBRACE] = ACTIONS(2499), - [anon_sym_try] = ACTIONS(2497), - [anon_sym_catch] = ACTIONS(2497), - [anon_sym_return] = ACTIONS(2497), - [anon_sym_source] = ACTIONS(2497), - [anon_sym_source_DASHenv] = ACTIONS(2497), - [anon_sym_register] = ACTIONS(2497), - [anon_sym_hide] = ACTIONS(2497), - [anon_sym_hide_DASHenv] = ACTIONS(2497), - [anon_sym_overlay] = ACTIONS(2497), - [anon_sym_new] = ACTIONS(2497), - [anon_sym_as] = ACTIONS(2497), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2499), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2499), - [aux_sym__val_number_decimal_token1] = ACTIONS(2497), - [aux_sym__val_number_decimal_token2] = ACTIONS(2499), - [aux_sym__val_number_decimal_token3] = ACTIONS(2499), - [aux_sym__val_number_decimal_token4] = ACTIONS(2499), - [aux_sym__val_number_token1] = ACTIONS(2499), - [aux_sym__val_number_token2] = ACTIONS(2499), - [aux_sym__val_number_token3] = ACTIONS(2499), - [anon_sym_DQUOTE] = ACTIONS(2499), - [sym__str_single_quotes] = ACTIONS(2499), - [sym__str_back_ticks] = ACTIONS(2499), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2499), - [anon_sym_PLUS] = ACTIONS(2497), - [anon_sym_POUND] = ACTIONS(247), - }, - [641] = { - [sym_comment] = STATE(641), - [anon_sym_export] = ACTIONS(2501), - [anon_sym_alias] = ACTIONS(2501), - [anon_sym_let] = ACTIONS(2501), - [anon_sym_let_DASHenv] = ACTIONS(2501), - [anon_sym_mut] = ACTIONS(2501), - [anon_sym_const] = ACTIONS(2501), - [aux_sym_cmd_identifier_token1] = ACTIONS(2501), - [aux_sym_cmd_identifier_token2] = ACTIONS(2501), - [aux_sym_cmd_identifier_token3] = ACTIONS(2501), - [aux_sym_cmd_identifier_token4] = ACTIONS(2501), - [aux_sym_cmd_identifier_token5] = ACTIONS(2501), - [aux_sym_cmd_identifier_token6] = ACTIONS(2501), - [aux_sym_cmd_identifier_token7] = ACTIONS(2501), - [aux_sym_cmd_identifier_token8] = ACTIONS(2501), - [aux_sym_cmd_identifier_token9] = ACTIONS(2501), - [aux_sym_cmd_identifier_token10] = ACTIONS(2501), - [aux_sym_cmd_identifier_token11] = ACTIONS(2501), - [aux_sym_cmd_identifier_token12] = ACTIONS(2501), - [aux_sym_cmd_identifier_token13] = ACTIONS(2501), - [aux_sym_cmd_identifier_token14] = ACTIONS(2501), - [aux_sym_cmd_identifier_token15] = ACTIONS(2501), - [aux_sym_cmd_identifier_token16] = ACTIONS(2501), - [aux_sym_cmd_identifier_token17] = ACTIONS(2501), - [aux_sym_cmd_identifier_token18] = ACTIONS(2501), - [aux_sym_cmd_identifier_token19] = ACTIONS(2501), - [aux_sym_cmd_identifier_token20] = ACTIONS(2501), - [aux_sym_cmd_identifier_token21] = ACTIONS(2501), - [aux_sym_cmd_identifier_token22] = ACTIONS(2501), - [aux_sym_cmd_identifier_token23] = ACTIONS(2501), - [aux_sym_cmd_identifier_token24] = ACTIONS(2501), - [aux_sym_cmd_identifier_token25] = ACTIONS(2501), - [aux_sym_cmd_identifier_token26] = ACTIONS(2501), - [aux_sym_cmd_identifier_token27] = ACTIONS(2501), - [aux_sym_cmd_identifier_token28] = ACTIONS(2501), - [aux_sym_cmd_identifier_token29] = ACTIONS(2501), - [aux_sym_cmd_identifier_token30] = ACTIONS(2501), - [aux_sym_cmd_identifier_token31] = ACTIONS(2501), - [aux_sym_cmd_identifier_token32] = ACTIONS(2501), - [aux_sym_cmd_identifier_token33] = ACTIONS(2501), - [aux_sym_cmd_identifier_token34] = ACTIONS(2501), - [aux_sym_cmd_identifier_token35] = ACTIONS(2501), - [aux_sym_cmd_identifier_token36] = ACTIONS(2501), - [anon_sym_true] = ACTIONS(2503), - [anon_sym_false] = ACTIONS(2503), - [anon_sym_null] = ACTIONS(2503), - [aux_sym_cmd_identifier_token38] = ACTIONS(2501), - [aux_sym_cmd_identifier_token39] = ACTIONS(2503), - [aux_sym_cmd_identifier_token40] = ACTIONS(2503), - [anon_sym_def] = ACTIONS(2501), - [anon_sym_export_DASHenv] = ACTIONS(2501), - [anon_sym_extern] = ACTIONS(2501), - [anon_sym_module] = ACTIONS(2501), - [anon_sym_use] = ACTIONS(2501), - [anon_sym_LPAREN] = ACTIONS(2503), - [anon_sym_DOLLAR] = ACTIONS(2503), - [anon_sym_error] = ACTIONS(2501), - [anon_sym_list] = ACTIONS(2501), - [anon_sym_DASH] = ACTIONS(2501), - [anon_sym_break] = ACTIONS(2501), - [anon_sym_continue] = ACTIONS(2501), - [anon_sym_for] = ACTIONS(2501), - [anon_sym_in] = ACTIONS(2501), - [anon_sym_loop] = ACTIONS(2501), - [anon_sym_make] = ACTIONS(2501), - [anon_sym_while] = ACTIONS(2501), - [anon_sym_do] = ACTIONS(2501), - [anon_sym_if] = ACTIONS(2501), - [anon_sym_else] = ACTIONS(2501), - [anon_sym_match] = ACTIONS(2501), - [anon_sym_RBRACE] = ACTIONS(2503), - [anon_sym_try] = ACTIONS(2501), - [anon_sym_catch] = ACTIONS(2501), - [anon_sym_return] = ACTIONS(2501), - [anon_sym_source] = ACTIONS(2501), - [anon_sym_source_DASHenv] = ACTIONS(2501), - [anon_sym_register] = ACTIONS(2501), - [anon_sym_hide] = ACTIONS(2501), - [anon_sym_hide_DASHenv] = ACTIONS(2501), - [anon_sym_overlay] = ACTIONS(2501), - [anon_sym_new] = ACTIONS(2501), - [anon_sym_as] = ACTIONS(2501), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2503), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2503), - [aux_sym__val_number_decimal_token1] = ACTIONS(2501), - [aux_sym__val_number_decimal_token2] = ACTIONS(2503), - [aux_sym__val_number_decimal_token3] = ACTIONS(2503), - [aux_sym__val_number_decimal_token4] = ACTIONS(2503), - [aux_sym__val_number_token1] = ACTIONS(2503), - [aux_sym__val_number_token2] = ACTIONS(2503), - [aux_sym__val_number_token3] = ACTIONS(2503), - [anon_sym_DQUOTE] = ACTIONS(2503), - [sym__str_single_quotes] = ACTIONS(2503), - [sym__str_back_ticks] = ACTIONS(2503), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2503), - [anon_sym_PLUS] = ACTIONS(2501), - [anon_sym_POUND] = ACTIONS(247), - }, - [642] = { - [sym_comment] = STATE(642), - [anon_sym_export] = ACTIONS(2505), - [anon_sym_alias] = ACTIONS(2505), - [anon_sym_let] = ACTIONS(2505), - [anon_sym_let_DASHenv] = ACTIONS(2505), - [anon_sym_mut] = ACTIONS(2505), - [anon_sym_const] = ACTIONS(2505), - [aux_sym_cmd_identifier_token1] = ACTIONS(2505), - [aux_sym_cmd_identifier_token2] = ACTIONS(2505), - [aux_sym_cmd_identifier_token3] = ACTIONS(2505), - [aux_sym_cmd_identifier_token4] = ACTIONS(2505), - [aux_sym_cmd_identifier_token5] = ACTIONS(2505), - [aux_sym_cmd_identifier_token6] = ACTIONS(2505), - [aux_sym_cmd_identifier_token7] = ACTIONS(2505), - [aux_sym_cmd_identifier_token8] = ACTIONS(2505), - [aux_sym_cmd_identifier_token9] = ACTIONS(2505), - [aux_sym_cmd_identifier_token10] = ACTIONS(2505), - [aux_sym_cmd_identifier_token11] = ACTIONS(2505), - [aux_sym_cmd_identifier_token12] = ACTIONS(2505), - [aux_sym_cmd_identifier_token13] = ACTIONS(2505), - [aux_sym_cmd_identifier_token14] = ACTIONS(2505), - [aux_sym_cmd_identifier_token15] = ACTIONS(2505), - [aux_sym_cmd_identifier_token16] = ACTIONS(2505), - [aux_sym_cmd_identifier_token17] = ACTIONS(2505), - [aux_sym_cmd_identifier_token18] = ACTIONS(2505), - [aux_sym_cmd_identifier_token19] = ACTIONS(2505), - [aux_sym_cmd_identifier_token20] = ACTIONS(2505), - [aux_sym_cmd_identifier_token21] = ACTIONS(2505), - [aux_sym_cmd_identifier_token22] = ACTIONS(2505), - [aux_sym_cmd_identifier_token23] = ACTIONS(2505), - [aux_sym_cmd_identifier_token24] = ACTIONS(2505), - [aux_sym_cmd_identifier_token25] = ACTIONS(2505), - [aux_sym_cmd_identifier_token26] = ACTIONS(2505), - [aux_sym_cmd_identifier_token27] = ACTIONS(2505), - [aux_sym_cmd_identifier_token28] = ACTIONS(2505), - [aux_sym_cmd_identifier_token29] = ACTIONS(2505), - [aux_sym_cmd_identifier_token30] = ACTIONS(2505), - [aux_sym_cmd_identifier_token31] = ACTIONS(2505), - [aux_sym_cmd_identifier_token32] = ACTIONS(2505), - [aux_sym_cmd_identifier_token33] = ACTIONS(2505), - [aux_sym_cmd_identifier_token34] = ACTIONS(2505), - [aux_sym_cmd_identifier_token35] = ACTIONS(2505), - [aux_sym_cmd_identifier_token36] = ACTIONS(2505), - [anon_sym_true] = ACTIONS(2507), - [anon_sym_false] = ACTIONS(2507), - [anon_sym_null] = ACTIONS(2507), - [aux_sym_cmd_identifier_token38] = ACTIONS(2505), - [aux_sym_cmd_identifier_token39] = ACTIONS(2507), - [aux_sym_cmd_identifier_token40] = ACTIONS(2507), - [anon_sym_def] = ACTIONS(2505), - [anon_sym_export_DASHenv] = ACTIONS(2505), - [anon_sym_extern] = ACTIONS(2505), - [anon_sym_module] = ACTIONS(2505), - [anon_sym_use] = ACTIONS(2505), - [anon_sym_LPAREN] = ACTIONS(2507), - [anon_sym_DOLLAR] = ACTIONS(2507), - [anon_sym_error] = ACTIONS(2505), - [anon_sym_list] = ACTIONS(2505), - [anon_sym_DASH] = ACTIONS(2505), - [anon_sym_break] = ACTIONS(2505), - [anon_sym_continue] = ACTIONS(2505), - [anon_sym_for] = ACTIONS(2505), - [anon_sym_in] = ACTIONS(2505), - [anon_sym_loop] = ACTIONS(2505), - [anon_sym_make] = ACTIONS(2505), - [anon_sym_while] = ACTIONS(2505), - [anon_sym_do] = ACTIONS(2505), - [anon_sym_if] = ACTIONS(2505), - [anon_sym_else] = ACTIONS(2505), - [anon_sym_match] = ACTIONS(2505), - [anon_sym_RBRACE] = ACTIONS(2507), - [anon_sym_try] = ACTIONS(2505), - [anon_sym_catch] = ACTIONS(2505), - [anon_sym_return] = ACTIONS(2505), - [anon_sym_source] = ACTIONS(2505), - [anon_sym_source_DASHenv] = ACTIONS(2505), - [anon_sym_register] = ACTIONS(2505), - [anon_sym_hide] = ACTIONS(2505), - [anon_sym_hide_DASHenv] = ACTIONS(2505), - [anon_sym_overlay] = ACTIONS(2505), - [anon_sym_new] = ACTIONS(2505), - [anon_sym_as] = ACTIONS(2505), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2507), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2507), - [aux_sym__val_number_decimal_token1] = ACTIONS(2505), - [aux_sym__val_number_decimal_token2] = ACTIONS(2507), - [aux_sym__val_number_decimal_token3] = ACTIONS(2507), - [aux_sym__val_number_decimal_token4] = ACTIONS(2507), - [aux_sym__val_number_token1] = ACTIONS(2507), - [aux_sym__val_number_token2] = ACTIONS(2507), - [aux_sym__val_number_token3] = ACTIONS(2507), - [anon_sym_DQUOTE] = ACTIONS(2507), - [sym__str_single_quotes] = ACTIONS(2507), - [sym__str_back_ticks] = ACTIONS(2507), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2507), - [anon_sym_PLUS] = ACTIONS(2505), - [anon_sym_POUND] = ACTIONS(247), - }, - [643] = { - [sym_comment] = STATE(643), - [anon_sym_export] = ACTIONS(2509), - [anon_sym_alias] = ACTIONS(2509), - [anon_sym_let] = ACTIONS(2509), - [anon_sym_let_DASHenv] = ACTIONS(2509), - [anon_sym_mut] = ACTIONS(2509), - [anon_sym_const] = ACTIONS(2509), - [aux_sym_cmd_identifier_token1] = ACTIONS(2509), - [aux_sym_cmd_identifier_token2] = ACTIONS(2509), - [aux_sym_cmd_identifier_token3] = ACTIONS(2509), - [aux_sym_cmd_identifier_token4] = ACTIONS(2509), - [aux_sym_cmd_identifier_token5] = ACTIONS(2509), - [aux_sym_cmd_identifier_token6] = ACTIONS(2509), - [aux_sym_cmd_identifier_token7] = ACTIONS(2509), - [aux_sym_cmd_identifier_token8] = ACTIONS(2509), - [aux_sym_cmd_identifier_token9] = ACTIONS(2509), - [aux_sym_cmd_identifier_token10] = ACTIONS(2509), - [aux_sym_cmd_identifier_token11] = ACTIONS(2509), - [aux_sym_cmd_identifier_token12] = ACTIONS(2509), - [aux_sym_cmd_identifier_token13] = ACTIONS(2509), - [aux_sym_cmd_identifier_token14] = ACTIONS(2509), - [aux_sym_cmd_identifier_token15] = ACTIONS(2509), - [aux_sym_cmd_identifier_token16] = ACTIONS(2509), - [aux_sym_cmd_identifier_token17] = ACTIONS(2509), - [aux_sym_cmd_identifier_token18] = ACTIONS(2509), - [aux_sym_cmd_identifier_token19] = ACTIONS(2509), - [aux_sym_cmd_identifier_token20] = ACTIONS(2509), - [aux_sym_cmd_identifier_token21] = ACTIONS(2509), - [aux_sym_cmd_identifier_token22] = ACTIONS(2509), - [aux_sym_cmd_identifier_token23] = ACTIONS(2509), - [aux_sym_cmd_identifier_token24] = ACTIONS(2509), - [aux_sym_cmd_identifier_token25] = ACTIONS(2509), - [aux_sym_cmd_identifier_token26] = ACTIONS(2509), - [aux_sym_cmd_identifier_token27] = ACTIONS(2509), - [aux_sym_cmd_identifier_token28] = ACTIONS(2509), - [aux_sym_cmd_identifier_token29] = ACTIONS(2509), - [aux_sym_cmd_identifier_token30] = ACTIONS(2509), - [aux_sym_cmd_identifier_token31] = ACTIONS(2509), - [aux_sym_cmd_identifier_token32] = ACTIONS(2509), - [aux_sym_cmd_identifier_token33] = ACTIONS(2509), - [aux_sym_cmd_identifier_token34] = ACTIONS(2509), - [aux_sym_cmd_identifier_token35] = ACTIONS(2509), - [aux_sym_cmd_identifier_token36] = ACTIONS(2509), - [anon_sym_true] = ACTIONS(2511), - [anon_sym_false] = ACTIONS(2511), - [anon_sym_null] = ACTIONS(2511), - [aux_sym_cmd_identifier_token38] = ACTIONS(2509), - [aux_sym_cmd_identifier_token39] = ACTIONS(2511), - [aux_sym_cmd_identifier_token40] = ACTIONS(2511), - [anon_sym_def] = ACTIONS(2509), - [anon_sym_export_DASHenv] = ACTIONS(2509), - [anon_sym_extern] = ACTIONS(2509), - [anon_sym_module] = ACTIONS(2509), - [anon_sym_use] = ACTIONS(2509), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_DOLLAR] = ACTIONS(2511), - [anon_sym_error] = ACTIONS(2509), - [anon_sym_list] = ACTIONS(2509), - [anon_sym_DASH] = ACTIONS(2509), - [anon_sym_break] = ACTIONS(2509), - [anon_sym_continue] = ACTIONS(2509), - [anon_sym_for] = ACTIONS(2509), - [anon_sym_in] = ACTIONS(2509), - [anon_sym_loop] = ACTIONS(2509), - [anon_sym_make] = ACTIONS(2509), - [anon_sym_while] = ACTIONS(2509), - [anon_sym_do] = ACTIONS(2509), - [anon_sym_if] = ACTIONS(2509), - [anon_sym_else] = ACTIONS(2509), - [anon_sym_match] = ACTIONS(2509), - [anon_sym_RBRACE] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2509), - [anon_sym_catch] = ACTIONS(2509), - [anon_sym_return] = ACTIONS(2509), - [anon_sym_source] = ACTIONS(2509), - [anon_sym_source_DASHenv] = ACTIONS(2509), - [anon_sym_register] = ACTIONS(2509), - [anon_sym_hide] = ACTIONS(2509), - [anon_sym_hide_DASHenv] = ACTIONS(2509), - [anon_sym_overlay] = ACTIONS(2509), - [anon_sym_new] = ACTIONS(2509), - [anon_sym_as] = ACTIONS(2509), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2511), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2511), - [aux_sym__val_number_decimal_token1] = ACTIONS(2509), - [aux_sym__val_number_decimal_token2] = ACTIONS(2511), - [aux_sym__val_number_decimal_token3] = ACTIONS(2511), - [aux_sym__val_number_decimal_token4] = ACTIONS(2511), - [aux_sym__val_number_token1] = ACTIONS(2511), - [aux_sym__val_number_token2] = ACTIONS(2511), - [aux_sym__val_number_token3] = ACTIONS(2511), - [anon_sym_DQUOTE] = ACTIONS(2511), - [sym__str_single_quotes] = ACTIONS(2511), - [sym__str_back_ticks] = ACTIONS(2511), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2511), - [anon_sym_PLUS] = ACTIONS(2509), - [anon_sym_POUND] = ACTIONS(247), - }, - [644] = { - [sym_comment] = STATE(644), - [anon_sym_export] = ACTIONS(2513), - [anon_sym_alias] = ACTIONS(2513), - [anon_sym_let] = ACTIONS(2513), - [anon_sym_let_DASHenv] = ACTIONS(2513), - [anon_sym_mut] = ACTIONS(2513), - [anon_sym_const] = ACTIONS(2513), - [aux_sym_cmd_identifier_token1] = ACTIONS(2513), - [aux_sym_cmd_identifier_token2] = ACTIONS(2513), - [aux_sym_cmd_identifier_token3] = ACTIONS(2513), - [aux_sym_cmd_identifier_token4] = ACTIONS(2513), - [aux_sym_cmd_identifier_token5] = ACTIONS(2513), - [aux_sym_cmd_identifier_token6] = ACTIONS(2513), - [aux_sym_cmd_identifier_token7] = ACTIONS(2513), - [aux_sym_cmd_identifier_token8] = ACTIONS(2513), - [aux_sym_cmd_identifier_token9] = ACTIONS(2513), - [aux_sym_cmd_identifier_token10] = ACTIONS(2513), - [aux_sym_cmd_identifier_token11] = ACTIONS(2513), - [aux_sym_cmd_identifier_token12] = ACTIONS(2513), - [aux_sym_cmd_identifier_token13] = ACTIONS(2513), - [aux_sym_cmd_identifier_token14] = ACTIONS(2513), - [aux_sym_cmd_identifier_token15] = ACTIONS(2513), - [aux_sym_cmd_identifier_token16] = ACTIONS(2513), - [aux_sym_cmd_identifier_token17] = ACTIONS(2513), - [aux_sym_cmd_identifier_token18] = ACTIONS(2513), - [aux_sym_cmd_identifier_token19] = ACTIONS(2513), - [aux_sym_cmd_identifier_token20] = ACTIONS(2513), - [aux_sym_cmd_identifier_token21] = ACTIONS(2513), - [aux_sym_cmd_identifier_token22] = ACTIONS(2513), - [aux_sym_cmd_identifier_token23] = ACTIONS(2513), - [aux_sym_cmd_identifier_token24] = ACTIONS(2513), - [aux_sym_cmd_identifier_token25] = ACTIONS(2513), - [aux_sym_cmd_identifier_token26] = ACTIONS(2513), - [aux_sym_cmd_identifier_token27] = ACTIONS(2513), - [aux_sym_cmd_identifier_token28] = ACTIONS(2513), - [aux_sym_cmd_identifier_token29] = ACTIONS(2513), - [aux_sym_cmd_identifier_token30] = ACTIONS(2513), - [aux_sym_cmd_identifier_token31] = ACTIONS(2513), - [aux_sym_cmd_identifier_token32] = ACTIONS(2513), - [aux_sym_cmd_identifier_token33] = ACTIONS(2513), - [aux_sym_cmd_identifier_token34] = ACTIONS(2513), - [aux_sym_cmd_identifier_token35] = ACTIONS(2513), - [aux_sym_cmd_identifier_token36] = ACTIONS(2513), - [anon_sym_true] = ACTIONS(2515), - [anon_sym_false] = ACTIONS(2515), - [anon_sym_null] = ACTIONS(2515), - [aux_sym_cmd_identifier_token38] = ACTIONS(2513), - [aux_sym_cmd_identifier_token39] = ACTIONS(2515), - [aux_sym_cmd_identifier_token40] = ACTIONS(2515), - [anon_sym_def] = ACTIONS(2513), - [anon_sym_export_DASHenv] = ACTIONS(2513), - [anon_sym_extern] = ACTIONS(2513), - [anon_sym_module] = ACTIONS(2513), - [anon_sym_use] = ACTIONS(2513), - [anon_sym_LPAREN] = ACTIONS(2515), - [anon_sym_DOLLAR] = ACTIONS(2515), - [anon_sym_error] = ACTIONS(2513), - [anon_sym_list] = ACTIONS(2513), - [anon_sym_DASH] = ACTIONS(2513), - [anon_sym_break] = ACTIONS(2513), - [anon_sym_continue] = ACTIONS(2513), - [anon_sym_for] = ACTIONS(2513), - [anon_sym_in] = ACTIONS(2513), - [anon_sym_loop] = ACTIONS(2513), - [anon_sym_make] = ACTIONS(2513), - [anon_sym_while] = ACTIONS(2513), - [anon_sym_do] = ACTIONS(2513), - [anon_sym_if] = ACTIONS(2513), - [anon_sym_else] = ACTIONS(2513), - [anon_sym_match] = ACTIONS(2513), - [anon_sym_RBRACE] = ACTIONS(2515), - [anon_sym_try] = ACTIONS(2513), - [anon_sym_catch] = ACTIONS(2513), - [anon_sym_return] = ACTIONS(2513), - [anon_sym_source] = ACTIONS(2513), - [anon_sym_source_DASHenv] = ACTIONS(2513), - [anon_sym_register] = ACTIONS(2513), - [anon_sym_hide] = ACTIONS(2513), - [anon_sym_hide_DASHenv] = ACTIONS(2513), - [anon_sym_overlay] = ACTIONS(2513), - [anon_sym_new] = ACTIONS(2513), - [anon_sym_as] = ACTIONS(2513), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2515), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2515), - [aux_sym__val_number_decimal_token1] = ACTIONS(2513), - [aux_sym__val_number_decimal_token2] = ACTIONS(2515), - [aux_sym__val_number_decimal_token3] = ACTIONS(2515), - [aux_sym__val_number_decimal_token4] = ACTIONS(2515), - [aux_sym__val_number_token1] = ACTIONS(2515), - [aux_sym__val_number_token2] = ACTIONS(2515), - [aux_sym__val_number_token3] = ACTIONS(2515), - [anon_sym_DQUOTE] = ACTIONS(2515), - [sym__str_single_quotes] = ACTIONS(2515), - [sym__str_back_ticks] = ACTIONS(2515), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2515), - [anon_sym_PLUS] = ACTIONS(2513), - [anon_sym_POUND] = ACTIONS(247), - }, - [645] = { - [sym_comment] = STATE(645), - [anon_sym_export] = ACTIONS(2015), - [anon_sym_alias] = ACTIONS(2015), - [anon_sym_let] = ACTIONS(2015), - [anon_sym_let_DASHenv] = ACTIONS(2015), - [anon_sym_mut] = ACTIONS(2015), - [anon_sym_const] = ACTIONS(2015), - [aux_sym_cmd_identifier_token1] = ACTIONS(2015), - [aux_sym_cmd_identifier_token2] = ACTIONS(2015), - [aux_sym_cmd_identifier_token3] = ACTIONS(2015), - [aux_sym_cmd_identifier_token4] = ACTIONS(2015), - [aux_sym_cmd_identifier_token5] = ACTIONS(2015), - [aux_sym_cmd_identifier_token6] = ACTIONS(2015), - [aux_sym_cmd_identifier_token7] = ACTIONS(2015), - [aux_sym_cmd_identifier_token8] = ACTIONS(2015), - [aux_sym_cmd_identifier_token9] = ACTIONS(2015), - [aux_sym_cmd_identifier_token10] = ACTIONS(2015), - [aux_sym_cmd_identifier_token11] = ACTIONS(2015), - [aux_sym_cmd_identifier_token12] = ACTIONS(2015), - [aux_sym_cmd_identifier_token13] = ACTIONS(2015), - [aux_sym_cmd_identifier_token14] = ACTIONS(2015), - [aux_sym_cmd_identifier_token15] = ACTIONS(2015), - [aux_sym_cmd_identifier_token16] = ACTIONS(2015), - [aux_sym_cmd_identifier_token17] = ACTIONS(2015), - [aux_sym_cmd_identifier_token18] = ACTIONS(2015), - [aux_sym_cmd_identifier_token19] = ACTIONS(2015), - [aux_sym_cmd_identifier_token20] = ACTIONS(2015), - [aux_sym_cmd_identifier_token21] = ACTIONS(2015), - [aux_sym_cmd_identifier_token22] = ACTIONS(2015), - [aux_sym_cmd_identifier_token23] = ACTIONS(2015), - [aux_sym_cmd_identifier_token24] = ACTIONS(2015), - [aux_sym_cmd_identifier_token25] = ACTIONS(2015), - [aux_sym_cmd_identifier_token26] = ACTIONS(2015), - [aux_sym_cmd_identifier_token27] = ACTIONS(2015), - [aux_sym_cmd_identifier_token28] = ACTIONS(2015), - [aux_sym_cmd_identifier_token29] = ACTIONS(2015), - [aux_sym_cmd_identifier_token30] = ACTIONS(2015), - [aux_sym_cmd_identifier_token31] = ACTIONS(2015), - [aux_sym_cmd_identifier_token32] = ACTIONS(2015), - [aux_sym_cmd_identifier_token33] = ACTIONS(2015), - [aux_sym_cmd_identifier_token34] = ACTIONS(2015), - [aux_sym_cmd_identifier_token35] = ACTIONS(2015), - [aux_sym_cmd_identifier_token36] = ACTIONS(2015), - [anon_sym_true] = ACTIONS(2017), - [anon_sym_false] = ACTIONS(2017), - [anon_sym_null] = ACTIONS(2017), - [aux_sym_cmd_identifier_token38] = ACTIONS(2015), - [aux_sym_cmd_identifier_token39] = ACTIONS(2017), - [aux_sym_cmd_identifier_token40] = ACTIONS(2017), - [anon_sym_def] = ACTIONS(2015), - [anon_sym_export_DASHenv] = ACTIONS(2015), - [anon_sym_extern] = ACTIONS(2015), - [anon_sym_module] = ACTIONS(2015), - [anon_sym_use] = ACTIONS(2015), - [anon_sym_LPAREN] = ACTIONS(2017), - [anon_sym_DOLLAR] = ACTIONS(2017), - [anon_sym_error] = ACTIONS(2015), - [anon_sym_list] = ACTIONS(2015), - [anon_sym_DASH] = ACTIONS(2015), - [anon_sym_break] = ACTIONS(2015), - [anon_sym_continue] = ACTIONS(2015), - [anon_sym_for] = ACTIONS(2015), - [anon_sym_in] = ACTIONS(2015), - [anon_sym_loop] = ACTIONS(2015), - [anon_sym_make] = ACTIONS(2015), - [anon_sym_while] = ACTIONS(2015), - [anon_sym_do] = ACTIONS(2015), - [anon_sym_if] = ACTIONS(2015), - [anon_sym_else] = ACTIONS(2015), - [anon_sym_match] = ACTIONS(2015), - [anon_sym_RBRACE] = ACTIONS(2017), - [anon_sym_try] = ACTIONS(2015), - [anon_sym_catch] = ACTIONS(2015), - [anon_sym_return] = ACTIONS(2015), - [anon_sym_source] = ACTIONS(2015), - [anon_sym_source_DASHenv] = ACTIONS(2015), - [anon_sym_register] = ACTIONS(2015), - [anon_sym_hide] = ACTIONS(2015), - [anon_sym_hide_DASHenv] = ACTIONS(2015), - [anon_sym_overlay] = ACTIONS(2015), - [anon_sym_new] = ACTIONS(2015), - [anon_sym_as] = ACTIONS(2015), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2017), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2017), - [aux_sym__val_number_decimal_token1] = ACTIONS(2015), - [aux_sym__val_number_decimal_token2] = ACTIONS(2017), - [aux_sym__val_number_decimal_token3] = ACTIONS(2017), - [aux_sym__val_number_decimal_token4] = ACTIONS(2017), - [aux_sym__val_number_token1] = ACTIONS(2017), - [aux_sym__val_number_token2] = ACTIONS(2017), - [aux_sym__val_number_token3] = ACTIONS(2017), - [anon_sym_DQUOTE] = ACTIONS(2017), - [sym__str_single_quotes] = ACTIONS(2017), - [sym__str_back_ticks] = ACTIONS(2017), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2017), - [anon_sym_PLUS] = ACTIONS(2015), - [anon_sym_POUND] = ACTIONS(247), - }, - [646] = { - [sym_comment] = STATE(646), - [anon_sym_export] = ACTIONS(1058), - [anon_sym_alias] = ACTIONS(1058), - [anon_sym_let] = ACTIONS(1058), - [anon_sym_let_DASHenv] = ACTIONS(1058), - [anon_sym_mut] = ACTIONS(1058), - [anon_sym_const] = ACTIONS(1058), - [aux_sym_cmd_identifier_token1] = ACTIONS(1058), - [aux_sym_cmd_identifier_token2] = ACTIONS(1058), - [aux_sym_cmd_identifier_token3] = ACTIONS(1058), - [aux_sym_cmd_identifier_token4] = ACTIONS(1058), - [aux_sym_cmd_identifier_token5] = ACTIONS(1058), - [aux_sym_cmd_identifier_token6] = ACTIONS(1058), - [aux_sym_cmd_identifier_token7] = ACTIONS(1058), - [aux_sym_cmd_identifier_token8] = ACTIONS(1058), - [aux_sym_cmd_identifier_token9] = ACTIONS(1058), - [aux_sym_cmd_identifier_token10] = ACTIONS(1058), - [aux_sym_cmd_identifier_token11] = ACTIONS(1058), - [aux_sym_cmd_identifier_token12] = ACTIONS(1058), - [aux_sym_cmd_identifier_token13] = ACTIONS(1058), - [aux_sym_cmd_identifier_token14] = ACTIONS(1058), - [aux_sym_cmd_identifier_token15] = ACTIONS(1058), - [aux_sym_cmd_identifier_token16] = ACTIONS(1058), - [aux_sym_cmd_identifier_token17] = ACTIONS(1058), - [aux_sym_cmd_identifier_token18] = ACTIONS(1058), - [aux_sym_cmd_identifier_token19] = ACTIONS(1058), - [aux_sym_cmd_identifier_token20] = ACTIONS(1058), - [aux_sym_cmd_identifier_token21] = ACTIONS(1058), - [aux_sym_cmd_identifier_token22] = ACTIONS(1058), - [aux_sym_cmd_identifier_token23] = ACTIONS(1058), - [aux_sym_cmd_identifier_token24] = ACTIONS(1058), - [aux_sym_cmd_identifier_token25] = ACTIONS(1058), - [aux_sym_cmd_identifier_token26] = ACTIONS(1058), - [aux_sym_cmd_identifier_token27] = ACTIONS(1058), - [aux_sym_cmd_identifier_token28] = ACTIONS(1058), - [aux_sym_cmd_identifier_token29] = ACTIONS(1058), - [aux_sym_cmd_identifier_token30] = ACTIONS(1058), - [aux_sym_cmd_identifier_token31] = ACTIONS(1058), - [aux_sym_cmd_identifier_token32] = ACTIONS(1058), - [aux_sym_cmd_identifier_token33] = ACTIONS(1058), - [aux_sym_cmd_identifier_token34] = ACTIONS(1058), - [aux_sym_cmd_identifier_token35] = ACTIONS(1058), - [aux_sym_cmd_identifier_token36] = ACTIONS(1058), - [anon_sym_true] = ACTIONS(1060), - [anon_sym_false] = ACTIONS(1060), - [anon_sym_null] = ACTIONS(1060), - [aux_sym_cmd_identifier_token38] = ACTIONS(1058), - [aux_sym_cmd_identifier_token39] = ACTIONS(1060), - [aux_sym_cmd_identifier_token40] = ACTIONS(1060), - [anon_sym_def] = ACTIONS(1058), - [anon_sym_export_DASHenv] = ACTIONS(1058), - [anon_sym_extern] = ACTIONS(1058), - [anon_sym_module] = ACTIONS(1058), - [anon_sym_use] = ACTIONS(1058), - [anon_sym_LPAREN] = ACTIONS(1060), - [anon_sym_DOLLAR] = ACTIONS(1060), - [anon_sym_error] = ACTIONS(1058), - [anon_sym_list] = ACTIONS(1058), - [anon_sym_DASH] = ACTIONS(1058), - [anon_sym_break] = ACTIONS(1058), - [anon_sym_continue] = ACTIONS(1058), - [anon_sym_for] = ACTIONS(1058), - [anon_sym_in] = ACTIONS(1058), - [anon_sym_loop] = ACTIONS(1058), - [anon_sym_make] = ACTIONS(1058), - [anon_sym_while] = ACTIONS(1058), - [anon_sym_do] = ACTIONS(1058), - [anon_sym_if] = ACTIONS(1058), - [anon_sym_else] = ACTIONS(1058), - [anon_sym_match] = ACTIONS(1058), - [anon_sym_RBRACE] = ACTIONS(1060), - [anon_sym_try] = ACTIONS(1058), - [anon_sym_catch] = ACTIONS(1058), - [anon_sym_return] = ACTIONS(1058), - [anon_sym_source] = ACTIONS(1058), - [anon_sym_source_DASHenv] = ACTIONS(1058), - [anon_sym_register] = ACTIONS(1058), - [anon_sym_hide] = ACTIONS(1058), - [anon_sym_hide_DASHenv] = ACTIONS(1058), - [anon_sym_overlay] = ACTIONS(1058), - [anon_sym_new] = ACTIONS(1058), - [anon_sym_as] = ACTIONS(1058), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1060), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1060), - [aux_sym__val_number_decimal_token1] = ACTIONS(1058), - [aux_sym__val_number_decimal_token2] = ACTIONS(1060), - [aux_sym__val_number_decimal_token3] = ACTIONS(1060), - [aux_sym__val_number_decimal_token4] = ACTIONS(1060), - [aux_sym__val_number_token1] = ACTIONS(1060), - [aux_sym__val_number_token2] = ACTIONS(1060), - [aux_sym__val_number_token3] = ACTIONS(1060), - [anon_sym_DQUOTE] = ACTIONS(1060), - [sym__str_single_quotes] = ACTIONS(1060), - [sym__str_back_ticks] = ACTIONS(1060), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1060), - [anon_sym_PLUS] = ACTIONS(1058), - [anon_sym_POUND] = ACTIONS(247), - }, - [647] = { - [sym_comment] = STATE(647), - [anon_sym_export] = ACTIONS(2305), - [anon_sym_alias] = ACTIONS(2305), - [anon_sym_let] = ACTIONS(2305), - [anon_sym_let_DASHenv] = ACTIONS(2305), - [anon_sym_mut] = ACTIONS(2305), - [anon_sym_const] = ACTIONS(2305), - [aux_sym_cmd_identifier_token1] = ACTIONS(2305), - [aux_sym_cmd_identifier_token2] = ACTIONS(2305), - [aux_sym_cmd_identifier_token3] = ACTIONS(2305), - [aux_sym_cmd_identifier_token4] = ACTIONS(2305), - [aux_sym_cmd_identifier_token5] = ACTIONS(2305), - [aux_sym_cmd_identifier_token6] = ACTIONS(2305), - [aux_sym_cmd_identifier_token7] = ACTIONS(2305), - [aux_sym_cmd_identifier_token8] = ACTIONS(2305), - [aux_sym_cmd_identifier_token9] = ACTIONS(2305), - [aux_sym_cmd_identifier_token10] = ACTIONS(2305), - [aux_sym_cmd_identifier_token11] = ACTIONS(2305), - [aux_sym_cmd_identifier_token12] = ACTIONS(2305), - [aux_sym_cmd_identifier_token13] = ACTIONS(2305), - [aux_sym_cmd_identifier_token14] = ACTIONS(2305), - [aux_sym_cmd_identifier_token15] = ACTIONS(2305), - [aux_sym_cmd_identifier_token16] = ACTIONS(2305), - [aux_sym_cmd_identifier_token17] = ACTIONS(2305), - [aux_sym_cmd_identifier_token18] = ACTIONS(2305), - [aux_sym_cmd_identifier_token19] = ACTIONS(2305), - [aux_sym_cmd_identifier_token20] = ACTIONS(2305), - [aux_sym_cmd_identifier_token21] = ACTIONS(2305), - [aux_sym_cmd_identifier_token22] = ACTIONS(2305), - [aux_sym_cmd_identifier_token23] = ACTIONS(2305), - [aux_sym_cmd_identifier_token24] = ACTIONS(2305), - [aux_sym_cmd_identifier_token25] = ACTIONS(2305), - [aux_sym_cmd_identifier_token26] = ACTIONS(2305), - [aux_sym_cmd_identifier_token27] = ACTIONS(2305), - [aux_sym_cmd_identifier_token28] = ACTIONS(2305), - [aux_sym_cmd_identifier_token29] = ACTIONS(2305), - [aux_sym_cmd_identifier_token30] = ACTIONS(2305), - [aux_sym_cmd_identifier_token31] = ACTIONS(2305), - [aux_sym_cmd_identifier_token32] = ACTIONS(2305), - [aux_sym_cmd_identifier_token33] = ACTIONS(2305), - [aux_sym_cmd_identifier_token34] = ACTIONS(2305), - [aux_sym_cmd_identifier_token35] = ACTIONS(2305), - [aux_sym_cmd_identifier_token36] = ACTIONS(2305), - [anon_sym_true] = ACTIONS(2307), - [anon_sym_false] = ACTIONS(2307), - [anon_sym_null] = ACTIONS(2307), - [aux_sym_cmd_identifier_token38] = ACTIONS(2305), - [aux_sym_cmd_identifier_token39] = ACTIONS(2307), - [aux_sym_cmd_identifier_token40] = ACTIONS(2307), - [anon_sym_def] = ACTIONS(2305), - [anon_sym_export_DASHenv] = ACTIONS(2305), - [anon_sym_extern] = ACTIONS(2305), - [anon_sym_module] = ACTIONS(2305), - [anon_sym_use] = ACTIONS(2305), - [anon_sym_LPAREN] = ACTIONS(2307), - [anon_sym_DOLLAR] = ACTIONS(2307), - [anon_sym_error] = ACTIONS(2305), - [anon_sym_list] = ACTIONS(2305), - [anon_sym_DASH] = ACTIONS(2305), - [anon_sym_break] = ACTIONS(2305), - [anon_sym_continue] = ACTIONS(2305), - [anon_sym_for] = ACTIONS(2305), - [anon_sym_in] = ACTIONS(2305), - [anon_sym_loop] = ACTIONS(2305), - [anon_sym_make] = ACTIONS(2305), - [anon_sym_while] = ACTIONS(2305), - [anon_sym_do] = ACTIONS(2305), - [anon_sym_if] = ACTIONS(2305), - [anon_sym_else] = ACTIONS(2305), - [anon_sym_match] = ACTIONS(2305), - [anon_sym_RBRACE] = ACTIONS(2307), - [anon_sym_try] = ACTIONS(2305), - [anon_sym_catch] = ACTIONS(2305), - [anon_sym_return] = ACTIONS(2305), - [anon_sym_source] = ACTIONS(2305), - [anon_sym_source_DASHenv] = ACTIONS(2305), - [anon_sym_register] = ACTIONS(2305), - [anon_sym_hide] = ACTIONS(2305), - [anon_sym_hide_DASHenv] = ACTIONS(2305), - [anon_sym_overlay] = ACTIONS(2305), - [anon_sym_new] = ACTIONS(2305), - [anon_sym_as] = ACTIONS(2305), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2307), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2307), - [aux_sym__val_number_decimal_token1] = ACTIONS(2305), - [aux_sym__val_number_decimal_token2] = ACTIONS(2307), - [aux_sym__val_number_decimal_token3] = ACTIONS(2307), - [aux_sym__val_number_decimal_token4] = ACTIONS(2307), - [aux_sym__val_number_token1] = ACTIONS(2307), - [aux_sym__val_number_token2] = ACTIONS(2307), - [aux_sym__val_number_token3] = ACTIONS(2307), - [anon_sym_DQUOTE] = ACTIONS(2307), - [sym__str_single_quotes] = ACTIONS(2307), - [sym__str_back_ticks] = ACTIONS(2307), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2307), - [anon_sym_PLUS] = ACTIONS(2305), - [anon_sym_POUND] = ACTIONS(247), - }, - [648] = { - [sym_comment] = STATE(648), - [anon_sym_export] = ACTIONS(2525), - [anon_sym_alias] = ACTIONS(2525), - [anon_sym_let] = ACTIONS(2525), - [anon_sym_let_DASHenv] = ACTIONS(2525), - [anon_sym_mut] = ACTIONS(2525), - [anon_sym_const] = ACTIONS(2525), - [aux_sym_cmd_identifier_token1] = ACTIONS(2525), - [aux_sym_cmd_identifier_token2] = ACTIONS(2525), - [aux_sym_cmd_identifier_token3] = ACTIONS(2525), - [aux_sym_cmd_identifier_token4] = ACTIONS(2525), - [aux_sym_cmd_identifier_token5] = ACTIONS(2525), - [aux_sym_cmd_identifier_token6] = ACTIONS(2525), - [aux_sym_cmd_identifier_token7] = ACTIONS(2525), - [aux_sym_cmd_identifier_token8] = ACTIONS(2525), - [aux_sym_cmd_identifier_token9] = ACTIONS(2525), - [aux_sym_cmd_identifier_token10] = ACTIONS(2525), - [aux_sym_cmd_identifier_token11] = ACTIONS(2525), - [aux_sym_cmd_identifier_token12] = ACTIONS(2525), - [aux_sym_cmd_identifier_token13] = ACTIONS(2525), - [aux_sym_cmd_identifier_token14] = ACTIONS(2525), - [aux_sym_cmd_identifier_token15] = ACTIONS(2525), - [aux_sym_cmd_identifier_token16] = ACTIONS(2525), - [aux_sym_cmd_identifier_token17] = ACTIONS(2525), - [aux_sym_cmd_identifier_token18] = ACTIONS(2525), - [aux_sym_cmd_identifier_token19] = ACTIONS(2525), - [aux_sym_cmd_identifier_token20] = ACTIONS(2525), - [aux_sym_cmd_identifier_token21] = ACTIONS(2525), - [aux_sym_cmd_identifier_token22] = ACTIONS(2525), - [aux_sym_cmd_identifier_token23] = ACTIONS(2525), - [aux_sym_cmd_identifier_token24] = ACTIONS(2525), - [aux_sym_cmd_identifier_token25] = ACTIONS(2525), - [aux_sym_cmd_identifier_token26] = ACTIONS(2525), - [aux_sym_cmd_identifier_token27] = ACTIONS(2525), - [aux_sym_cmd_identifier_token28] = ACTIONS(2525), - [aux_sym_cmd_identifier_token29] = ACTIONS(2525), - [aux_sym_cmd_identifier_token30] = ACTIONS(2525), - [aux_sym_cmd_identifier_token31] = ACTIONS(2525), - [aux_sym_cmd_identifier_token32] = ACTIONS(2525), - [aux_sym_cmd_identifier_token33] = ACTIONS(2525), - [aux_sym_cmd_identifier_token34] = ACTIONS(2525), - [aux_sym_cmd_identifier_token35] = ACTIONS(2525), - [aux_sym_cmd_identifier_token36] = ACTIONS(2525), - [anon_sym_true] = ACTIONS(2527), - [anon_sym_false] = ACTIONS(2527), - [anon_sym_null] = ACTIONS(2527), - [aux_sym_cmd_identifier_token38] = ACTIONS(2525), - [aux_sym_cmd_identifier_token39] = ACTIONS(2527), - [aux_sym_cmd_identifier_token40] = ACTIONS(2527), - [anon_sym_def] = ACTIONS(2525), - [anon_sym_export_DASHenv] = ACTIONS(2525), - [anon_sym_extern] = ACTIONS(2525), - [anon_sym_module] = ACTIONS(2525), - [anon_sym_use] = ACTIONS(2525), - [anon_sym_LPAREN] = ACTIONS(2527), - [anon_sym_DOLLAR] = ACTIONS(2527), - [anon_sym_error] = ACTIONS(2525), - [anon_sym_list] = ACTIONS(2525), - [anon_sym_DASH] = ACTIONS(2525), - [anon_sym_break] = ACTIONS(2525), - [anon_sym_continue] = ACTIONS(2525), - [anon_sym_for] = ACTIONS(2525), - [anon_sym_in] = ACTIONS(2525), - [anon_sym_loop] = ACTIONS(2525), - [anon_sym_make] = ACTIONS(2525), - [anon_sym_while] = ACTIONS(2525), - [anon_sym_do] = ACTIONS(2525), - [anon_sym_if] = ACTIONS(2525), - [anon_sym_else] = ACTIONS(2525), - [anon_sym_match] = ACTIONS(2525), - [anon_sym_RBRACE] = ACTIONS(2527), - [anon_sym_try] = ACTIONS(2525), - [anon_sym_catch] = ACTIONS(2525), - [anon_sym_return] = ACTIONS(2525), - [anon_sym_source] = ACTIONS(2525), - [anon_sym_source_DASHenv] = ACTIONS(2525), - [anon_sym_register] = ACTIONS(2525), - [anon_sym_hide] = ACTIONS(2525), - [anon_sym_hide_DASHenv] = ACTIONS(2525), - [anon_sym_overlay] = ACTIONS(2525), - [anon_sym_new] = ACTIONS(2525), - [anon_sym_as] = ACTIONS(2525), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2527), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2527), - [aux_sym__val_number_decimal_token1] = ACTIONS(2525), - [aux_sym__val_number_decimal_token2] = ACTIONS(2527), - [aux_sym__val_number_decimal_token3] = ACTIONS(2527), - [aux_sym__val_number_decimal_token4] = ACTIONS(2527), - [aux_sym__val_number_token1] = ACTIONS(2527), - [aux_sym__val_number_token2] = ACTIONS(2527), - [aux_sym__val_number_token3] = ACTIONS(2527), - [anon_sym_DQUOTE] = ACTIONS(2527), - [sym__str_single_quotes] = ACTIONS(2527), - [sym__str_back_ticks] = ACTIONS(2527), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2527), - [anon_sym_PLUS] = ACTIONS(2525), - [anon_sym_POUND] = ACTIONS(247), - }, - [649] = { - [sym_comment] = STATE(649), - [anon_sym_export] = ACTIONS(1667), - [anon_sym_alias] = ACTIONS(1667), - [anon_sym_let] = ACTIONS(1667), - [anon_sym_let_DASHenv] = ACTIONS(1667), - [anon_sym_mut] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1667), - [aux_sym_cmd_identifier_token1] = ACTIONS(1667), - [aux_sym_cmd_identifier_token2] = ACTIONS(1667), - [aux_sym_cmd_identifier_token3] = ACTIONS(1667), - [aux_sym_cmd_identifier_token4] = ACTIONS(1667), - [aux_sym_cmd_identifier_token5] = ACTIONS(1667), - [aux_sym_cmd_identifier_token6] = ACTIONS(1667), - [aux_sym_cmd_identifier_token7] = ACTIONS(1667), - [aux_sym_cmd_identifier_token8] = ACTIONS(1667), - [aux_sym_cmd_identifier_token9] = ACTIONS(1667), - [aux_sym_cmd_identifier_token10] = ACTIONS(1667), - [aux_sym_cmd_identifier_token11] = ACTIONS(1667), - [aux_sym_cmd_identifier_token12] = ACTIONS(1667), - [aux_sym_cmd_identifier_token13] = ACTIONS(1667), - [aux_sym_cmd_identifier_token14] = ACTIONS(1667), - [aux_sym_cmd_identifier_token15] = ACTIONS(1667), - [aux_sym_cmd_identifier_token16] = ACTIONS(1667), - [aux_sym_cmd_identifier_token17] = ACTIONS(1667), - [aux_sym_cmd_identifier_token18] = ACTIONS(1667), - [aux_sym_cmd_identifier_token19] = ACTIONS(1667), - [aux_sym_cmd_identifier_token20] = ACTIONS(1667), - [aux_sym_cmd_identifier_token21] = ACTIONS(1667), - [aux_sym_cmd_identifier_token22] = ACTIONS(1667), - [aux_sym_cmd_identifier_token23] = ACTIONS(1667), - [aux_sym_cmd_identifier_token24] = ACTIONS(1667), - [aux_sym_cmd_identifier_token25] = ACTIONS(1667), - [aux_sym_cmd_identifier_token26] = ACTIONS(1667), - [aux_sym_cmd_identifier_token27] = ACTIONS(1667), - [aux_sym_cmd_identifier_token28] = ACTIONS(1667), - [aux_sym_cmd_identifier_token29] = ACTIONS(1667), - [aux_sym_cmd_identifier_token30] = ACTIONS(1667), - [aux_sym_cmd_identifier_token31] = ACTIONS(1667), - [aux_sym_cmd_identifier_token32] = ACTIONS(1667), - [aux_sym_cmd_identifier_token33] = ACTIONS(1667), - [aux_sym_cmd_identifier_token34] = ACTIONS(1667), - [aux_sym_cmd_identifier_token35] = ACTIONS(1667), - [aux_sym_cmd_identifier_token36] = ACTIONS(1667), - [anon_sym_true] = ACTIONS(1669), - [anon_sym_false] = ACTIONS(1669), - [anon_sym_null] = ACTIONS(1669), - [aux_sym_cmd_identifier_token38] = ACTIONS(1667), - [aux_sym_cmd_identifier_token39] = ACTIONS(1669), - [aux_sym_cmd_identifier_token40] = ACTIONS(1669), - [anon_sym_def] = ACTIONS(1667), - [anon_sym_export_DASHenv] = ACTIONS(1667), - [anon_sym_extern] = ACTIONS(1667), - [anon_sym_module] = ACTIONS(1667), - [anon_sym_use] = ACTIONS(1667), - [anon_sym_LPAREN] = ACTIONS(1669), - [anon_sym_DOLLAR] = ACTIONS(1669), - [anon_sym_error] = ACTIONS(1667), - [anon_sym_list] = ACTIONS(1667), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_break] = ACTIONS(1667), - [anon_sym_continue] = ACTIONS(1667), - [anon_sym_for] = ACTIONS(1667), - [anon_sym_in] = ACTIONS(1667), - [anon_sym_loop] = ACTIONS(1667), - [anon_sym_make] = ACTIONS(1667), - [anon_sym_while] = ACTIONS(1667), - [anon_sym_do] = ACTIONS(1667), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_else] = ACTIONS(1667), - [anon_sym_match] = ACTIONS(1667), - [anon_sym_RBRACE] = ACTIONS(1669), - [anon_sym_try] = ACTIONS(1667), - [anon_sym_catch] = ACTIONS(1667), - [anon_sym_return] = ACTIONS(1667), - [anon_sym_source] = ACTIONS(1667), - [anon_sym_source_DASHenv] = ACTIONS(1667), - [anon_sym_register] = ACTIONS(1667), - [anon_sym_hide] = ACTIONS(1667), - [anon_sym_hide_DASHenv] = ACTIONS(1667), - [anon_sym_overlay] = ACTIONS(1667), - [anon_sym_new] = ACTIONS(1667), - [anon_sym_as] = ACTIONS(1667), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1669), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1669), - [aux_sym__val_number_decimal_token1] = ACTIONS(1667), - [aux_sym__val_number_decimal_token2] = ACTIONS(1669), - [aux_sym__val_number_decimal_token3] = ACTIONS(1669), - [aux_sym__val_number_decimal_token4] = ACTIONS(1669), - [aux_sym__val_number_token1] = ACTIONS(1669), - [aux_sym__val_number_token2] = ACTIONS(1669), - [aux_sym__val_number_token3] = ACTIONS(1669), - [anon_sym_DQUOTE] = ACTIONS(1669), - [sym__str_single_quotes] = ACTIONS(1669), - [sym__str_back_ticks] = ACTIONS(1669), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1669), - [anon_sym_PLUS] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(247), - }, - [650] = { - [sym_comment] = STATE(650), - [anon_sym_export] = ACTIONS(1042), - [anon_sym_alias] = ACTIONS(1042), - [anon_sym_let] = ACTIONS(1042), - [anon_sym_let_DASHenv] = ACTIONS(1042), - [anon_sym_mut] = ACTIONS(1042), - [anon_sym_const] = ACTIONS(1042), - [aux_sym_cmd_identifier_token1] = ACTIONS(1042), - [aux_sym_cmd_identifier_token2] = ACTIONS(1042), - [aux_sym_cmd_identifier_token3] = ACTIONS(1042), - [aux_sym_cmd_identifier_token4] = ACTIONS(1042), - [aux_sym_cmd_identifier_token5] = ACTIONS(1042), - [aux_sym_cmd_identifier_token6] = ACTIONS(1042), - [aux_sym_cmd_identifier_token7] = ACTIONS(1042), - [aux_sym_cmd_identifier_token8] = ACTIONS(1042), - [aux_sym_cmd_identifier_token9] = ACTIONS(1042), - [aux_sym_cmd_identifier_token10] = ACTIONS(1042), - [aux_sym_cmd_identifier_token11] = ACTIONS(1042), - [aux_sym_cmd_identifier_token12] = ACTIONS(1042), - [aux_sym_cmd_identifier_token13] = ACTIONS(1042), - [aux_sym_cmd_identifier_token14] = ACTIONS(1042), - [aux_sym_cmd_identifier_token15] = ACTIONS(1042), - [aux_sym_cmd_identifier_token16] = ACTIONS(1042), - [aux_sym_cmd_identifier_token17] = ACTIONS(1042), - [aux_sym_cmd_identifier_token18] = ACTIONS(1042), - [aux_sym_cmd_identifier_token19] = ACTIONS(1042), - [aux_sym_cmd_identifier_token20] = ACTIONS(1042), - [aux_sym_cmd_identifier_token21] = ACTIONS(1042), - [aux_sym_cmd_identifier_token22] = ACTIONS(1042), - [aux_sym_cmd_identifier_token23] = ACTIONS(1042), - [aux_sym_cmd_identifier_token24] = ACTIONS(1042), - [aux_sym_cmd_identifier_token25] = ACTIONS(1042), - [aux_sym_cmd_identifier_token26] = ACTIONS(1042), - [aux_sym_cmd_identifier_token27] = ACTIONS(1042), - [aux_sym_cmd_identifier_token28] = ACTIONS(1042), - [aux_sym_cmd_identifier_token29] = ACTIONS(1042), - [aux_sym_cmd_identifier_token30] = ACTIONS(1042), - [aux_sym_cmd_identifier_token31] = ACTIONS(1042), - [aux_sym_cmd_identifier_token32] = ACTIONS(1042), - [aux_sym_cmd_identifier_token33] = ACTIONS(1042), - [aux_sym_cmd_identifier_token34] = ACTIONS(1042), - [aux_sym_cmd_identifier_token35] = ACTIONS(1042), - [aux_sym_cmd_identifier_token36] = ACTIONS(1042), - [anon_sym_true] = ACTIONS(1044), - [anon_sym_false] = ACTIONS(1044), - [anon_sym_null] = ACTIONS(1044), - [aux_sym_cmd_identifier_token38] = ACTIONS(1042), - [aux_sym_cmd_identifier_token39] = ACTIONS(1044), - [aux_sym_cmd_identifier_token40] = ACTIONS(1044), - [anon_sym_def] = ACTIONS(1042), - [anon_sym_export_DASHenv] = ACTIONS(1042), - [anon_sym_extern] = ACTIONS(1042), - [anon_sym_module] = ACTIONS(1042), - [anon_sym_use] = ACTIONS(1042), - [anon_sym_LPAREN] = ACTIONS(1044), - [anon_sym_DOLLAR] = ACTIONS(1044), - [anon_sym_error] = ACTIONS(1042), - [anon_sym_list] = ACTIONS(1042), - [anon_sym_DASH] = ACTIONS(1042), - [anon_sym_break] = ACTIONS(1042), - [anon_sym_continue] = ACTIONS(1042), - [anon_sym_for] = ACTIONS(1042), - [anon_sym_in] = ACTIONS(1042), - [anon_sym_loop] = ACTIONS(1042), - [anon_sym_make] = ACTIONS(1042), - [anon_sym_while] = ACTIONS(1042), - [anon_sym_do] = ACTIONS(1042), - [anon_sym_if] = ACTIONS(1042), - [anon_sym_else] = ACTIONS(1042), - [anon_sym_match] = ACTIONS(1042), - [anon_sym_RBRACE] = ACTIONS(1044), - [anon_sym_try] = ACTIONS(1042), - [anon_sym_catch] = ACTIONS(1042), - [anon_sym_return] = ACTIONS(1042), - [anon_sym_source] = ACTIONS(1042), - [anon_sym_source_DASHenv] = ACTIONS(1042), - [anon_sym_register] = ACTIONS(1042), - [anon_sym_hide] = ACTIONS(1042), - [anon_sym_hide_DASHenv] = ACTIONS(1042), - [anon_sym_overlay] = ACTIONS(1042), - [anon_sym_new] = ACTIONS(1042), - [anon_sym_as] = ACTIONS(1042), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1044), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1044), - [aux_sym__val_number_decimal_token1] = ACTIONS(1042), - [aux_sym__val_number_decimal_token2] = ACTIONS(1044), - [aux_sym__val_number_decimal_token3] = ACTIONS(1044), - [aux_sym__val_number_decimal_token4] = ACTIONS(1044), - [aux_sym__val_number_token1] = ACTIONS(1044), - [aux_sym__val_number_token2] = ACTIONS(1044), - [aux_sym__val_number_token3] = ACTIONS(1044), - [anon_sym_DQUOTE] = ACTIONS(1044), - [sym__str_single_quotes] = ACTIONS(1044), - [sym__str_back_ticks] = ACTIONS(1044), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1044), - [anon_sym_PLUS] = ACTIONS(1042), - [anon_sym_POUND] = ACTIONS(247), - }, - [651] = { - [sym_comment] = STATE(651), - [anon_sym_export] = ACTIONS(1038), - [anon_sym_alias] = ACTIONS(1038), - [anon_sym_let] = ACTIONS(1038), - [anon_sym_let_DASHenv] = ACTIONS(1038), - [anon_sym_mut] = ACTIONS(1038), - [anon_sym_const] = ACTIONS(1038), - [aux_sym_cmd_identifier_token1] = ACTIONS(1038), - [aux_sym_cmd_identifier_token2] = ACTIONS(1038), - [aux_sym_cmd_identifier_token3] = ACTIONS(1038), - [aux_sym_cmd_identifier_token4] = ACTIONS(1038), - [aux_sym_cmd_identifier_token5] = ACTIONS(1038), - [aux_sym_cmd_identifier_token6] = ACTIONS(1038), - [aux_sym_cmd_identifier_token7] = ACTIONS(1038), - [aux_sym_cmd_identifier_token8] = ACTIONS(1038), - [aux_sym_cmd_identifier_token9] = ACTIONS(1038), - [aux_sym_cmd_identifier_token10] = ACTIONS(1038), - [aux_sym_cmd_identifier_token11] = ACTIONS(1038), - [aux_sym_cmd_identifier_token12] = ACTIONS(1038), - [aux_sym_cmd_identifier_token13] = ACTIONS(1038), - [aux_sym_cmd_identifier_token14] = ACTIONS(1038), - [aux_sym_cmd_identifier_token15] = ACTIONS(1038), - [aux_sym_cmd_identifier_token16] = ACTIONS(1038), - [aux_sym_cmd_identifier_token17] = ACTIONS(1038), - [aux_sym_cmd_identifier_token18] = ACTIONS(1038), - [aux_sym_cmd_identifier_token19] = ACTIONS(1038), - [aux_sym_cmd_identifier_token20] = ACTIONS(1038), - [aux_sym_cmd_identifier_token21] = ACTIONS(1038), - [aux_sym_cmd_identifier_token22] = ACTIONS(1038), - [aux_sym_cmd_identifier_token23] = ACTIONS(1038), - [aux_sym_cmd_identifier_token24] = ACTIONS(1038), - [aux_sym_cmd_identifier_token25] = ACTIONS(1038), - [aux_sym_cmd_identifier_token26] = ACTIONS(1038), - [aux_sym_cmd_identifier_token27] = ACTIONS(1038), - [aux_sym_cmd_identifier_token28] = ACTIONS(1038), - [aux_sym_cmd_identifier_token29] = ACTIONS(1038), - [aux_sym_cmd_identifier_token30] = ACTIONS(1038), - [aux_sym_cmd_identifier_token31] = ACTIONS(1038), - [aux_sym_cmd_identifier_token32] = ACTIONS(1038), - [aux_sym_cmd_identifier_token33] = ACTIONS(1038), - [aux_sym_cmd_identifier_token34] = ACTIONS(1038), - [aux_sym_cmd_identifier_token35] = ACTIONS(1038), - [aux_sym_cmd_identifier_token36] = ACTIONS(1038), - [anon_sym_true] = ACTIONS(1040), - [anon_sym_false] = ACTIONS(1040), - [anon_sym_null] = ACTIONS(1040), - [aux_sym_cmd_identifier_token38] = ACTIONS(1038), - [aux_sym_cmd_identifier_token39] = ACTIONS(1040), - [aux_sym_cmd_identifier_token40] = ACTIONS(1040), - [anon_sym_def] = ACTIONS(1038), - [anon_sym_export_DASHenv] = ACTIONS(1038), - [anon_sym_extern] = ACTIONS(1038), - [anon_sym_module] = ACTIONS(1038), - [anon_sym_use] = ACTIONS(1038), - [anon_sym_LPAREN] = ACTIONS(1040), - [anon_sym_DOLLAR] = ACTIONS(1040), - [anon_sym_error] = ACTIONS(1038), - [anon_sym_list] = ACTIONS(1038), - [anon_sym_DASH] = ACTIONS(1038), - [anon_sym_break] = ACTIONS(1038), - [anon_sym_continue] = ACTIONS(1038), - [anon_sym_for] = ACTIONS(1038), - [anon_sym_in] = ACTIONS(1038), - [anon_sym_loop] = ACTIONS(1038), - [anon_sym_make] = ACTIONS(1038), - [anon_sym_while] = ACTIONS(1038), - [anon_sym_do] = ACTIONS(1038), - [anon_sym_if] = ACTIONS(1038), - [anon_sym_else] = ACTIONS(1038), - [anon_sym_match] = ACTIONS(1038), - [anon_sym_RBRACE] = ACTIONS(1040), - [anon_sym_try] = ACTIONS(1038), - [anon_sym_catch] = ACTIONS(1038), - [anon_sym_return] = ACTIONS(1038), - [anon_sym_source] = ACTIONS(1038), - [anon_sym_source_DASHenv] = ACTIONS(1038), - [anon_sym_register] = ACTIONS(1038), - [anon_sym_hide] = ACTIONS(1038), - [anon_sym_hide_DASHenv] = ACTIONS(1038), - [anon_sym_overlay] = ACTIONS(1038), - [anon_sym_new] = ACTIONS(1038), - [anon_sym_as] = ACTIONS(1038), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1040), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1040), - [aux_sym__val_number_decimal_token1] = ACTIONS(1038), - [aux_sym__val_number_decimal_token2] = ACTIONS(1040), - [aux_sym__val_number_decimal_token3] = ACTIONS(1040), - [aux_sym__val_number_decimal_token4] = ACTIONS(1040), - [aux_sym__val_number_token1] = ACTIONS(1040), - [aux_sym__val_number_token2] = ACTIONS(1040), - [aux_sym__val_number_token3] = ACTIONS(1040), - [anon_sym_DQUOTE] = ACTIONS(1040), - [sym__str_single_quotes] = ACTIONS(1040), - [sym__str_back_ticks] = ACTIONS(1040), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1040), - [anon_sym_PLUS] = ACTIONS(1038), - [anon_sym_POUND] = ACTIONS(247), - }, - [652] = { - [sym_comment] = STATE(652), - [anon_sym_export] = ACTIONS(2029), - [anon_sym_alias] = ACTIONS(2029), - [anon_sym_let] = ACTIONS(2029), - [anon_sym_let_DASHenv] = ACTIONS(2029), - [anon_sym_mut] = ACTIONS(2029), - [anon_sym_const] = ACTIONS(2029), - [aux_sym_cmd_identifier_token1] = ACTIONS(2029), - [aux_sym_cmd_identifier_token2] = ACTIONS(2029), - [aux_sym_cmd_identifier_token3] = ACTIONS(2029), - [aux_sym_cmd_identifier_token4] = ACTIONS(2029), - [aux_sym_cmd_identifier_token5] = ACTIONS(2029), - [aux_sym_cmd_identifier_token6] = ACTIONS(2029), - [aux_sym_cmd_identifier_token7] = ACTIONS(2029), - [aux_sym_cmd_identifier_token8] = ACTIONS(2029), - [aux_sym_cmd_identifier_token9] = ACTIONS(2029), - [aux_sym_cmd_identifier_token10] = ACTIONS(2029), - [aux_sym_cmd_identifier_token11] = ACTIONS(2029), - [aux_sym_cmd_identifier_token12] = ACTIONS(2029), - [aux_sym_cmd_identifier_token13] = ACTIONS(2029), - [aux_sym_cmd_identifier_token14] = ACTIONS(2029), - [aux_sym_cmd_identifier_token15] = ACTIONS(2029), - [aux_sym_cmd_identifier_token16] = ACTIONS(2029), - [aux_sym_cmd_identifier_token17] = ACTIONS(2029), - [aux_sym_cmd_identifier_token18] = ACTIONS(2029), - [aux_sym_cmd_identifier_token19] = ACTIONS(2029), - [aux_sym_cmd_identifier_token20] = ACTIONS(2029), - [aux_sym_cmd_identifier_token21] = ACTIONS(2029), - [aux_sym_cmd_identifier_token22] = ACTIONS(2029), - [aux_sym_cmd_identifier_token23] = ACTIONS(2029), - [aux_sym_cmd_identifier_token24] = ACTIONS(2029), - [aux_sym_cmd_identifier_token25] = ACTIONS(2029), - [aux_sym_cmd_identifier_token26] = ACTIONS(2029), - [aux_sym_cmd_identifier_token27] = ACTIONS(2029), - [aux_sym_cmd_identifier_token28] = ACTIONS(2029), - [aux_sym_cmd_identifier_token29] = ACTIONS(2029), - [aux_sym_cmd_identifier_token30] = ACTIONS(2029), - [aux_sym_cmd_identifier_token31] = ACTIONS(2029), - [aux_sym_cmd_identifier_token32] = ACTIONS(2029), - [aux_sym_cmd_identifier_token33] = ACTIONS(2029), - [aux_sym_cmd_identifier_token34] = ACTIONS(2029), - [aux_sym_cmd_identifier_token35] = ACTIONS(2029), - [aux_sym_cmd_identifier_token36] = ACTIONS(2029), - [anon_sym_true] = ACTIONS(2031), - [anon_sym_false] = ACTIONS(2031), - [anon_sym_null] = ACTIONS(2031), - [aux_sym_cmd_identifier_token38] = ACTIONS(2029), - [aux_sym_cmd_identifier_token39] = ACTIONS(2031), - [aux_sym_cmd_identifier_token40] = ACTIONS(2031), - [anon_sym_def] = ACTIONS(2029), - [anon_sym_export_DASHenv] = ACTIONS(2029), - [anon_sym_extern] = ACTIONS(2029), - [anon_sym_module] = ACTIONS(2029), - [anon_sym_use] = ACTIONS(2029), - [anon_sym_LPAREN] = ACTIONS(2031), - [anon_sym_DOLLAR] = ACTIONS(2031), - [anon_sym_error] = ACTIONS(2029), - [anon_sym_list] = ACTIONS(2029), - [anon_sym_DASH] = ACTIONS(2029), - [anon_sym_break] = ACTIONS(2029), - [anon_sym_continue] = ACTIONS(2029), - [anon_sym_for] = ACTIONS(2029), - [anon_sym_in] = ACTIONS(2029), - [anon_sym_loop] = ACTIONS(2029), - [anon_sym_make] = ACTIONS(2029), - [anon_sym_while] = ACTIONS(2029), - [anon_sym_do] = ACTIONS(2029), - [anon_sym_if] = ACTIONS(2029), - [anon_sym_else] = ACTIONS(2029), - [anon_sym_match] = ACTIONS(2029), - [anon_sym_RBRACE] = ACTIONS(2031), - [anon_sym_try] = ACTIONS(2029), - [anon_sym_catch] = ACTIONS(2029), - [anon_sym_return] = ACTIONS(2029), - [anon_sym_source] = ACTIONS(2029), - [anon_sym_source_DASHenv] = ACTIONS(2029), - [anon_sym_register] = ACTIONS(2029), - [anon_sym_hide] = ACTIONS(2029), - [anon_sym_hide_DASHenv] = ACTIONS(2029), - [anon_sym_overlay] = ACTIONS(2029), - [anon_sym_new] = ACTIONS(2029), - [anon_sym_as] = ACTIONS(2029), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2031), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2031), - [aux_sym__val_number_decimal_token1] = ACTIONS(2029), - [aux_sym__val_number_decimal_token2] = ACTIONS(2031), - [aux_sym__val_number_decimal_token3] = ACTIONS(2031), - [aux_sym__val_number_decimal_token4] = ACTIONS(2031), - [aux_sym__val_number_token1] = ACTIONS(2031), - [aux_sym__val_number_token2] = ACTIONS(2031), - [aux_sym__val_number_token3] = ACTIONS(2031), - [anon_sym_DQUOTE] = ACTIONS(2031), - [sym__str_single_quotes] = ACTIONS(2031), - [sym__str_back_ticks] = ACTIONS(2031), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2031), - [anon_sym_PLUS] = ACTIONS(2029), - [anon_sym_POUND] = ACTIONS(247), - }, - [653] = { - [sym_comment] = STATE(653), - [anon_sym_export] = ACTIONS(1034), - [anon_sym_alias] = ACTIONS(1034), - [anon_sym_let] = ACTIONS(1034), - [anon_sym_let_DASHenv] = ACTIONS(1034), - [anon_sym_mut] = ACTIONS(1034), - [anon_sym_const] = ACTIONS(1034), - [aux_sym_cmd_identifier_token1] = ACTIONS(1034), - [aux_sym_cmd_identifier_token2] = ACTIONS(1034), - [aux_sym_cmd_identifier_token3] = ACTIONS(1034), - [aux_sym_cmd_identifier_token4] = ACTIONS(1034), - [aux_sym_cmd_identifier_token5] = ACTIONS(1034), - [aux_sym_cmd_identifier_token6] = ACTIONS(1034), - [aux_sym_cmd_identifier_token7] = ACTIONS(1034), - [aux_sym_cmd_identifier_token8] = ACTIONS(1034), - [aux_sym_cmd_identifier_token9] = ACTIONS(1034), - [aux_sym_cmd_identifier_token10] = ACTIONS(1034), - [aux_sym_cmd_identifier_token11] = ACTIONS(1034), - [aux_sym_cmd_identifier_token12] = ACTIONS(1034), - [aux_sym_cmd_identifier_token13] = ACTIONS(1034), - [aux_sym_cmd_identifier_token14] = ACTIONS(1034), - [aux_sym_cmd_identifier_token15] = ACTIONS(1034), - [aux_sym_cmd_identifier_token16] = ACTIONS(1034), - [aux_sym_cmd_identifier_token17] = ACTIONS(1034), - [aux_sym_cmd_identifier_token18] = ACTIONS(1034), - [aux_sym_cmd_identifier_token19] = ACTIONS(1034), - [aux_sym_cmd_identifier_token20] = ACTIONS(1034), - [aux_sym_cmd_identifier_token21] = ACTIONS(1034), - [aux_sym_cmd_identifier_token22] = ACTIONS(1034), - [aux_sym_cmd_identifier_token23] = ACTIONS(1034), - [aux_sym_cmd_identifier_token24] = ACTIONS(1034), - [aux_sym_cmd_identifier_token25] = ACTIONS(1034), - [aux_sym_cmd_identifier_token26] = ACTIONS(1034), - [aux_sym_cmd_identifier_token27] = ACTIONS(1034), - [aux_sym_cmd_identifier_token28] = ACTIONS(1034), - [aux_sym_cmd_identifier_token29] = ACTIONS(1034), - [aux_sym_cmd_identifier_token30] = ACTIONS(1034), - [aux_sym_cmd_identifier_token31] = ACTIONS(1034), - [aux_sym_cmd_identifier_token32] = ACTIONS(1034), - [aux_sym_cmd_identifier_token33] = ACTIONS(1034), - [aux_sym_cmd_identifier_token34] = ACTIONS(1034), - [aux_sym_cmd_identifier_token35] = ACTIONS(1034), - [aux_sym_cmd_identifier_token36] = ACTIONS(1034), - [anon_sym_true] = ACTIONS(1036), - [anon_sym_false] = ACTIONS(1036), - [anon_sym_null] = ACTIONS(1036), - [aux_sym_cmd_identifier_token38] = ACTIONS(1034), - [aux_sym_cmd_identifier_token39] = ACTIONS(1036), - [aux_sym_cmd_identifier_token40] = ACTIONS(1036), - [anon_sym_def] = ACTIONS(1034), - [anon_sym_export_DASHenv] = ACTIONS(1034), - [anon_sym_extern] = ACTIONS(1034), - [anon_sym_module] = ACTIONS(1034), - [anon_sym_use] = ACTIONS(1034), - [anon_sym_LPAREN] = ACTIONS(1036), - [anon_sym_DOLLAR] = ACTIONS(1036), - [anon_sym_error] = ACTIONS(1034), - [anon_sym_list] = ACTIONS(1034), - [anon_sym_DASH] = ACTIONS(1034), - [anon_sym_break] = ACTIONS(1034), - [anon_sym_continue] = ACTIONS(1034), - [anon_sym_for] = ACTIONS(1034), - [anon_sym_in] = ACTIONS(1034), - [anon_sym_loop] = ACTIONS(1034), - [anon_sym_make] = ACTIONS(1034), - [anon_sym_while] = ACTIONS(1034), - [anon_sym_do] = ACTIONS(1034), - [anon_sym_if] = ACTIONS(1034), - [anon_sym_else] = ACTIONS(1034), - [anon_sym_match] = ACTIONS(1034), - [anon_sym_RBRACE] = ACTIONS(1036), - [anon_sym_try] = ACTIONS(1034), - [anon_sym_catch] = ACTIONS(1034), - [anon_sym_return] = ACTIONS(1034), - [anon_sym_source] = ACTIONS(1034), - [anon_sym_source_DASHenv] = ACTIONS(1034), - [anon_sym_register] = ACTIONS(1034), - [anon_sym_hide] = ACTIONS(1034), - [anon_sym_hide_DASHenv] = ACTIONS(1034), - [anon_sym_overlay] = ACTIONS(1034), - [anon_sym_new] = ACTIONS(1034), - [anon_sym_as] = ACTIONS(1034), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1036), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1036), - [aux_sym__val_number_decimal_token1] = ACTIONS(1034), - [aux_sym__val_number_decimal_token2] = ACTIONS(1036), - [aux_sym__val_number_decimal_token3] = ACTIONS(1036), - [aux_sym__val_number_decimal_token4] = ACTIONS(1036), - [aux_sym__val_number_token1] = ACTIONS(1036), - [aux_sym__val_number_token2] = ACTIONS(1036), - [aux_sym__val_number_token3] = ACTIONS(1036), - [anon_sym_DQUOTE] = ACTIONS(1036), - [sym__str_single_quotes] = ACTIONS(1036), - [sym__str_back_ticks] = ACTIONS(1036), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1036), - [anon_sym_PLUS] = ACTIONS(1034), - [anon_sym_POUND] = ACTIONS(247), - }, - [654] = { - [sym_comment] = STATE(654), - [anon_sym_export] = ACTIONS(2033), - [anon_sym_alias] = ACTIONS(2033), - [anon_sym_let] = ACTIONS(2033), - [anon_sym_let_DASHenv] = ACTIONS(2033), - [anon_sym_mut] = ACTIONS(2033), - [anon_sym_const] = ACTIONS(2033), - [aux_sym_cmd_identifier_token1] = ACTIONS(2033), - [aux_sym_cmd_identifier_token2] = ACTIONS(2033), - [aux_sym_cmd_identifier_token3] = ACTIONS(2033), - [aux_sym_cmd_identifier_token4] = ACTIONS(2033), - [aux_sym_cmd_identifier_token5] = ACTIONS(2033), - [aux_sym_cmd_identifier_token6] = ACTIONS(2033), - [aux_sym_cmd_identifier_token7] = ACTIONS(2033), - [aux_sym_cmd_identifier_token8] = ACTIONS(2033), - [aux_sym_cmd_identifier_token9] = ACTIONS(2033), - [aux_sym_cmd_identifier_token10] = ACTIONS(2033), - [aux_sym_cmd_identifier_token11] = ACTIONS(2033), - [aux_sym_cmd_identifier_token12] = ACTIONS(2033), - [aux_sym_cmd_identifier_token13] = ACTIONS(2033), - [aux_sym_cmd_identifier_token14] = ACTIONS(2033), - [aux_sym_cmd_identifier_token15] = ACTIONS(2033), - [aux_sym_cmd_identifier_token16] = ACTIONS(2033), - [aux_sym_cmd_identifier_token17] = ACTIONS(2033), - [aux_sym_cmd_identifier_token18] = ACTIONS(2033), - [aux_sym_cmd_identifier_token19] = ACTIONS(2033), - [aux_sym_cmd_identifier_token20] = ACTIONS(2033), - [aux_sym_cmd_identifier_token21] = ACTIONS(2033), - [aux_sym_cmd_identifier_token22] = ACTIONS(2033), - [aux_sym_cmd_identifier_token23] = ACTIONS(2033), - [aux_sym_cmd_identifier_token24] = ACTIONS(2033), - [aux_sym_cmd_identifier_token25] = ACTIONS(2033), - [aux_sym_cmd_identifier_token26] = ACTIONS(2033), - [aux_sym_cmd_identifier_token27] = ACTIONS(2033), - [aux_sym_cmd_identifier_token28] = ACTIONS(2033), - [aux_sym_cmd_identifier_token29] = ACTIONS(2033), - [aux_sym_cmd_identifier_token30] = ACTIONS(2033), - [aux_sym_cmd_identifier_token31] = ACTIONS(2033), - [aux_sym_cmd_identifier_token32] = ACTIONS(2033), - [aux_sym_cmd_identifier_token33] = ACTIONS(2033), - [aux_sym_cmd_identifier_token34] = ACTIONS(2033), - [aux_sym_cmd_identifier_token35] = ACTIONS(2033), - [aux_sym_cmd_identifier_token36] = ACTIONS(2033), - [anon_sym_true] = ACTIONS(2035), - [anon_sym_false] = ACTIONS(2035), - [anon_sym_null] = ACTIONS(2035), - [aux_sym_cmd_identifier_token38] = ACTIONS(2033), - [aux_sym_cmd_identifier_token39] = ACTIONS(2035), - [aux_sym_cmd_identifier_token40] = ACTIONS(2035), - [anon_sym_def] = ACTIONS(2033), - [anon_sym_export_DASHenv] = ACTIONS(2033), - [anon_sym_extern] = ACTIONS(2033), - [anon_sym_module] = ACTIONS(2033), - [anon_sym_use] = ACTIONS(2033), - [anon_sym_LPAREN] = ACTIONS(2035), - [anon_sym_DOLLAR] = ACTIONS(2035), - [anon_sym_error] = ACTIONS(2033), - [anon_sym_list] = ACTIONS(2033), - [anon_sym_DASH] = ACTIONS(2033), - [anon_sym_break] = ACTIONS(2033), - [anon_sym_continue] = ACTIONS(2033), - [anon_sym_for] = ACTIONS(2033), - [anon_sym_in] = ACTIONS(2033), - [anon_sym_loop] = ACTIONS(2033), - [anon_sym_make] = ACTIONS(2033), - [anon_sym_while] = ACTIONS(2033), - [anon_sym_do] = ACTIONS(2033), - [anon_sym_if] = ACTIONS(2033), - [anon_sym_else] = ACTIONS(2033), - [anon_sym_match] = ACTIONS(2033), - [anon_sym_RBRACE] = ACTIONS(2035), - [anon_sym_try] = ACTIONS(2033), - [anon_sym_catch] = ACTIONS(2033), - [anon_sym_return] = ACTIONS(2033), - [anon_sym_source] = ACTIONS(2033), - [anon_sym_source_DASHenv] = ACTIONS(2033), - [anon_sym_register] = ACTIONS(2033), - [anon_sym_hide] = ACTIONS(2033), - [anon_sym_hide_DASHenv] = ACTIONS(2033), - [anon_sym_overlay] = ACTIONS(2033), - [anon_sym_new] = ACTIONS(2033), - [anon_sym_as] = ACTIONS(2033), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2035), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2035), - [aux_sym__val_number_decimal_token1] = ACTIONS(2033), - [aux_sym__val_number_decimal_token2] = ACTIONS(2035), - [aux_sym__val_number_decimal_token3] = ACTIONS(2035), - [aux_sym__val_number_decimal_token4] = ACTIONS(2035), - [aux_sym__val_number_token1] = ACTIONS(2035), - [aux_sym__val_number_token2] = ACTIONS(2035), - [aux_sym__val_number_token3] = ACTIONS(2035), - [anon_sym_DQUOTE] = ACTIONS(2035), - [sym__str_single_quotes] = ACTIONS(2035), - [sym__str_back_ticks] = ACTIONS(2035), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2035), - [anon_sym_PLUS] = ACTIONS(2033), - [anon_sym_POUND] = ACTIONS(247), - }, - [655] = { - [sym_comment] = STATE(655), - [anon_sym_export] = ACTIONS(1659), - [anon_sym_alias] = ACTIONS(1659), - [anon_sym_let] = ACTIONS(1659), - [anon_sym_let_DASHenv] = ACTIONS(1659), - [anon_sym_mut] = ACTIONS(1659), - [anon_sym_const] = ACTIONS(1659), - [aux_sym_cmd_identifier_token1] = ACTIONS(1659), - [aux_sym_cmd_identifier_token2] = ACTIONS(1659), - [aux_sym_cmd_identifier_token3] = ACTIONS(1659), - [aux_sym_cmd_identifier_token4] = ACTIONS(1659), - [aux_sym_cmd_identifier_token5] = ACTIONS(1659), - [aux_sym_cmd_identifier_token6] = ACTIONS(1659), - [aux_sym_cmd_identifier_token7] = ACTIONS(1659), - [aux_sym_cmd_identifier_token8] = ACTIONS(1659), - [aux_sym_cmd_identifier_token9] = ACTIONS(1659), - [aux_sym_cmd_identifier_token10] = ACTIONS(1659), - [aux_sym_cmd_identifier_token11] = ACTIONS(1659), - [aux_sym_cmd_identifier_token12] = ACTIONS(1659), - [aux_sym_cmd_identifier_token13] = ACTIONS(1659), - [aux_sym_cmd_identifier_token14] = ACTIONS(1659), - [aux_sym_cmd_identifier_token15] = ACTIONS(1659), - [aux_sym_cmd_identifier_token16] = ACTIONS(1659), - [aux_sym_cmd_identifier_token17] = ACTIONS(1659), - [aux_sym_cmd_identifier_token18] = ACTIONS(1659), - [aux_sym_cmd_identifier_token19] = ACTIONS(1659), - [aux_sym_cmd_identifier_token20] = ACTIONS(1659), - [aux_sym_cmd_identifier_token21] = ACTIONS(1659), - [aux_sym_cmd_identifier_token22] = ACTIONS(1659), - [aux_sym_cmd_identifier_token23] = ACTIONS(1659), - [aux_sym_cmd_identifier_token24] = ACTIONS(1659), - [aux_sym_cmd_identifier_token25] = ACTIONS(1659), - [aux_sym_cmd_identifier_token26] = ACTIONS(1659), - [aux_sym_cmd_identifier_token27] = ACTIONS(1659), - [aux_sym_cmd_identifier_token28] = ACTIONS(1659), - [aux_sym_cmd_identifier_token29] = ACTIONS(1659), - [aux_sym_cmd_identifier_token30] = ACTIONS(1659), - [aux_sym_cmd_identifier_token31] = ACTIONS(1659), - [aux_sym_cmd_identifier_token32] = ACTIONS(1659), - [aux_sym_cmd_identifier_token33] = ACTIONS(1659), - [aux_sym_cmd_identifier_token34] = ACTIONS(1659), - [aux_sym_cmd_identifier_token35] = ACTIONS(1659), - [aux_sym_cmd_identifier_token36] = ACTIONS(1659), - [anon_sym_true] = ACTIONS(1661), - [anon_sym_false] = ACTIONS(1661), - [anon_sym_null] = ACTIONS(1661), - [aux_sym_cmd_identifier_token38] = ACTIONS(1659), - [aux_sym_cmd_identifier_token39] = ACTIONS(1661), - [aux_sym_cmd_identifier_token40] = ACTIONS(1661), - [anon_sym_def] = ACTIONS(1659), - [anon_sym_export_DASHenv] = ACTIONS(1659), - [anon_sym_extern] = ACTIONS(1659), - [anon_sym_module] = ACTIONS(1659), - [anon_sym_use] = ACTIONS(1659), - [anon_sym_LPAREN] = ACTIONS(1661), - [anon_sym_DOLLAR] = ACTIONS(1661), - [anon_sym_error] = ACTIONS(1659), - [anon_sym_list] = ACTIONS(1659), - [anon_sym_DASH] = ACTIONS(1659), - [anon_sym_break] = ACTIONS(1659), - [anon_sym_continue] = ACTIONS(1659), - [anon_sym_for] = ACTIONS(1659), - [anon_sym_in] = ACTIONS(1659), - [anon_sym_loop] = ACTIONS(1659), - [anon_sym_make] = ACTIONS(1659), - [anon_sym_while] = ACTIONS(1659), - [anon_sym_do] = ACTIONS(1659), - [anon_sym_if] = ACTIONS(1659), - [anon_sym_else] = ACTIONS(1659), - [anon_sym_match] = ACTIONS(1659), - [anon_sym_RBRACE] = ACTIONS(1661), - [anon_sym_try] = ACTIONS(1659), - [anon_sym_catch] = ACTIONS(1659), - [anon_sym_return] = ACTIONS(1659), - [anon_sym_source] = ACTIONS(1659), - [anon_sym_source_DASHenv] = ACTIONS(1659), - [anon_sym_register] = ACTIONS(1659), - [anon_sym_hide] = ACTIONS(1659), - [anon_sym_hide_DASHenv] = ACTIONS(1659), - [anon_sym_overlay] = ACTIONS(1659), - [anon_sym_new] = ACTIONS(1659), - [anon_sym_as] = ACTIONS(1659), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1661), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1661), - [aux_sym__val_number_decimal_token1] = ACTIONS(1659), - [aux_sym__val_number_decimal_token2] = ACTIONS(1661), - [aux_sym__val_number_decimal_token3] = ACTIONS(1661), - [aux_sym__val_number_decimal_token4] = ACTIONS(1661), - [aux_sym__val_number_token1] = ACTIONS(1661), - [aux_sym__val_number_token2] = ACTIONS(1661), - [aux_sym__val_number_token3] = ACTIONS(1661), - [anon_sym_DQUOTE] = ACTIONS(1661), - [sym__str_single_quotes] = ACTIONS(1661), - [sym__str_back_ticks] = ACTIONS(1661), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1661), - [anon_sym_PLUS] = ACTIONS(1659), - [anon_sym_POUND] = ACTIONS(247), - }, - [656] = { - [sym_comment] = STATE(656), - [anon_sym_export] = ACTIONS(2352), - [anon_sym_alias] = ACTIONS(2352), - [anon_sym_let] = ACTIONS(2352), - [anon_sym_let_DASHenv] = ACTIONS(2352), - [anon_sym_mut] = ACTIONS(2352), - [anon_sym_const] = ACTIONS(2352), - [aux_sym_cmd_identifier_token1] = ACTIONS(2352), - [aux_sym_cmd_identifier_token2] = ACTIONS(2352), - [aux_sym_cmd_identifier_token3] = ACTIONS(2352), - [aux_sym_cmd_identifier_token4] = ACTIONS(2352), - [aux_sym_cmd_identifier_token5] = ACTIONS(2352), - [aux_sym_cmd_identifier_token6] = ACTIONS(2352), - [aux_sym_cmd_identifier_token7] = ACTIONS(2352), - [aux_sym_cmd_identifier_token8] = ACTIONS(2352), - [aux_sym_cmd_identifier_token9] = ACTIONS(2352), - [aux_sym_cmd_identifier_token10] = ACTIONS(2352), - [aux_sym_cmd_identifier_token11] = ACTIONS(2352), - [aux_sym_cmd_identifier_token12] = ACTIONS(2352), - [aux_sym_cmd_identifier_token13] = ACTIONS(2352), - [aux_sym_cmd_identifier_token14] = ACTIONS(2352), - [aux_sym_cmd_identifier_token15] = ACTIONS(2352), - [aux_sym_cmd_identifier_token16] = ACTIONS(2352), - [aux_sym_cmd_identifier_token17] = ACTIONS(2352), - [aux_sym_cmd_identifier_token18] = ACTIONS(2352), - [aux_sym_cmd_identifier_token19] = ACTIONS(2352), - [aux_sym_cmd_identifier_token20] = ACTIONS(2352), - [aux_sym_cmd_identifier_token21] = ACTIONS(2352), - [aux_sym_cmd_identifier_token22] = ACTIONS(2352), - [aux_sym_cmd_identifier_token23] = ACTIONS(2352), - [aux_sym_cmd_identifier_token24] = ACTIONS(2352), - [aux_sym_cmd_identifier_token25] = ACTIONS(2352), - [aux_sym_cmd_identifier_token26] = ACTIONS(2352), - [aux_sym_cmd_identifier_token27] = ACTIONS(2352), - [aux_sym_cmd_identifier_token28] = ACTIONS(2352), - [aux_sym_cmd_identifier_token29] = ACTIONS(2352), - [aux_sym_cmd_identifier_token30] = ACTIONS(2352), - [aux_sym_cmd_identifier_token31] = ACTIONS(2352), - [aux_sym_cmd_identifier_token32] = ACTIONS(2352), - [aux_sym_cmd_identifier_token33] = ACTIONS(2352), - [aux_sym_cmd_identifier_token34] = ACTIONS(2352), - [aux_sym_cmd_identifier_token35] = ACTIONS(2352), - [aux_sym_cmd_identifier_token36] = ACTIONS(2352), - [anon_sym_true] = ACTIONS(2535), - [anon_sym_false] = ACTIONS(2535), - [anon_sym_null] = ACTIONS(2535), - [aux_sym_cmd_identifier_token38] = ACTIONS(2352), - [aux_sym_cmd_identifier_token39] = ACTIONS(2535), - [aux_sym_cmd_identifier_token40] = ACTIONS(2535), - [anon_sym_def] = ACTIONS(2352), - [anon_sym_export_DASHenv] = ACTIONS(2352), - [anon_sym_extern] = ACTIONS(2352), - [anon_sym_module] = ACTIONS(2352), - [anon_sym_use] = ACTIONS(2352), - [anon_sym_LPAREN] = ACTIONS(2535), - [anon_sym_DOLLAR] = ACTIONS(2535), - [anon_sym_error] = ACTIONS(2352), - [anon_sym_list] = ACTIONS(2352), - [anon_sym_DASH] = ACTIONS(2352), - [anon_sym_break] = ACTIONS(2352), - [anon_sym_continue] = ACTIONS(2352), - [anon_sym_for] = ACTIONS(2352), - [anon_sym_in] = ACTIONS(2352), - [anon_sym_loop] = ACTIONS(2352), - [anon_sym_make] = ACTIONS(2352), - [anon_sym_while] = ACTIONS(2352), - [anon_sym_do] = ACTIONS(2352), - [anon_sym_if] = ACTIONS(2352), - [anon_sym_else] = ACTIONS(2352), - [anon_sym_match] = ACTIONS(2352), - [anon_sym_RBRACE] = ACTIONS(2535), - [anon_sym_try] = ACTIONS(2352), - [anon_sym_catch] = ACTIONS(2352), - [anon_sym_return] = ACTIONS(2352), - [anon_sym_source] = ACTIONS(2352), - [anon_sym_source_DASHenv] = ACTIONS(2352), - [anon_sym_register] = ACTIONS(2352), - [anon_sym_hide] = ACTIONS(2352), - [anon_sym_hide_DASHenv] = ACTIONS(2352), - [anon_sym_overlay] = ACTIONS(2352), - [anon_sym_new] = ACTIONS(2352), - [anon_sym_as] = ACTIONS(2352), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2535), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2535), - [aux_sym__val_number_decimal_token1] = ACTIONS(2352), - [aux_sym__val_number_decimal_token2] = ACTIONS(2535), - [aux_sym__val_number_decimal_token3] = ACTIONS(2535), - [aux_sym__val_number_decimal_token4] = ACTIONS(2535), - [aux_sym__val_number_token1] = ACTIONS(2535), - [aux_sym__val_number_token2] = ACTIONS(2535), - [aux_sym__val_number_token3] = ACTIONS(2535), - [anon_sym_DQUOTE] = ACTIONS(2535), - [sym__str_single_quotes] = ACTIONS(2535), - [sym__str_back_ticks] = ACTIONS(2535), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2535), - [anon_sym_PLUS] = ACTIONS(2352), - [anon_sym_POUND] = ACTIONS(247), - }, - [657] = { - [sym_comment] = STATE(657), - [anon_sym_export] = ACTIONS(2380), - [anon_sym_alias] = ACTIONS(2380), - [anon_sym_let] = ACTIONS(2380), - [anon_sym_let_DASHenv] = ACTIONS(2380), - [anon_sym_mut] = ACTIONS(2380), - [anon_sym_const] = ACTIONS(2380), - [aux_sym_cmd_identifier_token1] = ACTIONS(2380), - [aux_sym_cmd_identifier_token2] = ACTIONS(2380), - [aux_sym_cmd_identifier_token3] = ACTIONS(2380), - [aux_sym_cmd_identifier_token4] = ACTIONS(2380), - [aux_sym_cmd_identifier_token5] = ACTIONS(2380), - [aux_sym_cmd_identifier_token6] = ACTIONS(2380), - [aux_sym_cmd_identifier_token7] = ACTIONS(2380), - [aux_sym_cmd_identifier_token8] = ACTIONS(2380), - [aux_sym_cmd_identifier_token9] = ACTIONS(2380), - [aux_sym_cmd_identifier_token10] = ACTIONS(2380), - [aux_sym_cmd_identifier_token11] = ACTIONS(2380), - [aux_sym_cmd_identifier_token12] = ACTIONS(2380), - [aux_sym_cmd_identifier_token13] = ACTIONS(2380), - [aux_sym_cmd_identifier_token14] = ACTIONS(2380), - [aux_sym_cmd_identifier_token15] = ACTIONS(2380), - [aux_sym_cmd_identifier_token16] = ACTIONS(2380), - [aux_sym_cmd_identifier_token17] = ACTIONS(2380), - [aux_sym_cmd_identifier_token18] = ACTIONS(2380), - [aux_sym_cmd_identifier_token19] = ACTIONS(2380), - [aux_sym_cmd_identifier_token20] = ACTIONS(2380), - [aux_sym_cmd_identifier_token21] = ACTIONS(2380), - [aux_sym_cmd_identifier_token22] = ACTIONS(2380), - [aux_sym_cmd_identifier_token23] = ACTIONS(2380), - [aux_sym_cmd_identifier_token24] = ACTIONS(2380), - [aux_sym_cmd_identifier_token25] = ACTIONS(2380), - [aux_sym_cmd_identifier_token26] = ACTIONS(2380), - [aux_sym_cmd_identifier_token27] = ACTIONS(2380), - [aux_sym_cmd_identifier_token28] = ACTIONS(2380), - [aux_sym_cmd_identifier_token29] = ACTIONS(2380), - [aux_sym_cmd_identifier_token30] = ACTIONS(2380), - [aux_sym_cmd_identifier_token31] = ACTIONS(2380), - [aux_sym_cmd_identifier_token32] = ACTIONS(2380), - [aux_sym_cmd_identifier_token33] = ACTIONS(2380), - [aux_sym_cmd_identifier_token34] = ACTIONS(2380), - [aux_sym_cmd_identifier_token35] = ACTIONS(2380), - [aux_sym_cmd_identifier_token36] = ACTIONS(2380), - [anon_sym_true] = ACTIONS(2382), - [anon_sym_false] = ACTIONS(2382), - [anon_sym_null] = ACTIONS(2382), - [aux_sym_cmd_identifier_token38] = ACTIONS(2380), - [aux_sym_cmd_identifier_token39] = ACTIONS(2382), - [aux_sym_cmd_identifier_token40] = ACTIONS(2382), - [anon_sym_def] = ACTIONS(2380), - [anon_sym_export_DASHenv] = ACTIONS(2380), - [anon_sym_extern] = ACTIONS(2380), - [anon_sym_module] = ACTIONS(2380), - [anon_sym_use] = ACTIONS(2380), - [anon_sym_LPAREN] = ACTIONS(2382), - [anon_sym_DOLLAR] = ACTIONS(2382), - [anon_sym_error] = ACTIONS(2380), - [anon_sym_list] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_break] = ACTIONS(2380), - [anon_sym_continue] = ACTIONS(2380), - [anon_sym_for] = ACTIONS(2380), - [anon_sym_in] = ACTIONS(2380), - [anon_sym_loop] = ACTIONS(2380), - [anon_sym_make] = ACTIONS(2380), - [anon_sym_while] = ACTIONS(2380), - [anon_sym_do] = ACTIONS(2380), - [anon_sym_if] = ACTIONS(2380), - [anon_sym_else] = ACTIONS(2380), - [anon_sym_match] = ACTIONS(2380), - [anon_sym_RBRACE] = ACTIONS(2382), - [anon_sym_try] = ACTIONS(2380), - [anon_sym_catch] = ACTIONS(2380), - [anon_sym_return] = ACTIONS(2380), - [anon_sym_source] = ACTIONS(2380), - [anon_sym_source_DASHenv] = ACTIONS(2380), - [anon_sym_register] = ACTIONS(2380), - [anon_sym_hide] = ACTIONS(2380), - [anon_sym_hide_DASHenv] = ACTIONS(2380), - [anon_sym_overlay] = ACTIONS(2380), - [anon_sym_new] = ACTIONS(2380), - [anon_sym_as] = ACTIONS(2380), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2382), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2382), - [aux_sym__val_number_decimal_token1] = ACTIONS(2380), - [aux_sym__val_number_decimal_token2] = ACTIONS(2382), - [aux_sym__val_number_decimal_token3] = ACTIONS(2382), - [aux_sym__val_number_decimal_token4] = ACTIONS(2382), - [aux_sym__val_number_token1] = ACTIONS(2382), - [aux_sym__val_number_token2] = ACTIONS(2382), - [aux_sym__val_number_token3] = ACTIONS(2382), - [anon_sym_DQUOTE] = ACTIONS(2382), - [sym__str_single_quotes] = ACTIONS(2382), - [sym__str_back_ticks] = ACTIONS(2382), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2382), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_POUND] = ACTIONS(247), - }, - [658] = { - [sym_comment] = STATE(658), - [anon_sym_export] = ACTIONS(2424), - [anon_sym_alias] = ACTIONS(2424), - [anon_sym_let] = ACTIONS(2424), - [anon_sym_let_DASHenv] = ACTIONS(2424), - [anon_sym_mut] = ACTIONS(2424), - [anon_sym_const] = ACTIONS(2424), - [aux_sym_cmd_identifier_token1] = ACTIONS(2424), - [aux_sym_cmd_identifier_token2] = ACTIONS(2424), - [aux_sym_cmd_identifier_token3] = ACTIONS(2424), - [aux_sym_cmd_identifier_token4] = ACTIONS(2424), - [aux_sym_cmd_identifier_token5] = ACTIONS(2424), - [aux_sym_cmd_identifier_token6] = ACTIONS(2424), - [aux_sym_cmd_identifier_token7] = ACTIONS(2424), - [aux_sym_cmd_identifier_token8] = ACTIONS(2424), - [aux_sym_cmd_identifier_token9] = ACTIONS(2424), - [aux_sym_cmd_identifier_token10] = ACTIONS(2424), - [aux_sym_cmd_identifier_token11] = ACTIONS(2424), - [aux_sym_cmd_identifier_token12] = ACTIONS(2424), - [aux_sym_cmd_identifier_token13] = ACTIONS(2424), - [aux_sym_cmd_identifier_token14] = ACTIONS(2424), - [aux_sym_cmd_identifier_token15] = ACTIONS(2424), - [aux_sym_cmd_identifier_token16] = ACTIONS(2424), - [aux_sym_cmd_identifier_token17] = ACTIONS(2424), - [aux_sym_cmd_identifier_token18] = ACTIONS(2424), - [aux_sym_cmd_identifier_token19] = ACTIONS(2424), - [aux_sym_cmd_identifier_token20] = ACTIONS(2424), - [aux_sym_cmd_identifier_token21] = ACTIONS(2424), - [aux_sym_cmd_identifier_token22] = ACTIONS(2424), - [aux_sym_cmd_identifier_token23] = ACTIONS(2424), - [aux_sym_cmd_identifier_token24] = ACTIONS(2424), - [aux_sym_cmd_identifier_token25] = ACTIONS(2424), - [aux_sym_cmd_identifier_token26] = ACTIONS(2424), - [aux_sym_cmd_identifier_token27] = ACTIONS(2424), - [aux_sym_cmd_identifier_token28] = ACTIONS(2424), - [aux_sym_cmd_identifier_token29] = ACTIONS(2424), - [aux_sym_cmd_identifier_token30] = ACTIONS(2424), - [aux_sym_cmd_identifier_token31] = ACTIONS(2424), - [aux_sym_cmd_identifier_token32] = ACTIONS(2424), - [aux_sym_cmd_identifier_token33] = ACTIONS(2424), - [aux_sym_cmd_identifier_token34] = ACTIONS(2424), - [aux_sym_cmd_identifier_token35] = ACTIONS(2424), - [aux_sym_cmd_identifier_token36] = ACTIONS(2424), - [anon_sym_true] = ACTIONS(2426), - [anon_sym_false] = ACTIONS(2426), - [anon_sym_null] = ACTIONS(2426), - [aux_sym_cmd_identifier_token38] = ACTIONS(2424), - [aux_sym_cmd_identifier_token39] = ACTIONS(2426), - [aux_sym_cmd_identifier_token40] = ACTIONS(2426), - [anon_sym_def] = ACTIONS(2424), - [anon_sym_export_DASHenv] = ACTIONS(2424), - [anon_sym_extern] = ACTIONS(2424), - [anon_sym_module] = ACTIONS(2424), - [anon_sym_use] = ACTIONS(2424), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_DOLLAR] = ACTIONS(2426), - [anon_sym_error] = ACTIONS(2424), - [anon_sym_list] = ACTIONS(2424), - [anon_sym_DASH] = ACTIONS(2424), - [anon_sym_break] = ACTIONS(2424), - [anon_sym_continue] = ACTIONS(2424), - [anon_sym_for] = ACTIONS(2424), - [anon_sym_in] = ACTIONS(2424), - [anon_sym_loop] = ACTIONS(2424), - [anon_sym_make] = ACTIONS(2424), - [anon_sym_while] = ACTIONS(2424), - [anon_sym_do] = ACTIONS(2424), - [anon_sym_if] = ACTIONS(2424), - [anon_sym_else] = ACTIONS(2424), - [anon_sym_match] = ACTIONS(2424), - [anon_sym_RBRACE] = ACTIONS(2426), - [anon_sym_try] = ACTIONS(2424), - [anon_sym_catch] = ACTIONS(2424), - [anon_sym_return] = ACTIONS(2424), - [anon_sym_source] = ACTIONS(2424), - [anon_sym_source_DASHenv] = ACTIONS(2424), - [anon_sym_register] = ACTIONS(2424), - [anon_sym_hide] = ACTIONS(2424), - [anon_sym_hide_DASHenv] = ACTIONS(2424), - [anon_sym_overlay] = ACTIONS(2424), - [anon_sym_new] = ACTIONS(2424), - [anon_sym_as] = ACTIONS(2424), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2426), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2426), - [aux_sym__val_number_decimal_token1] = ACTIONS(2424), - [aux_sym__val_number_decimal_token2] = ACTIONS(2426), - [aux_sym__val_number_decimal_token3] = ACTIONS(2426), - [aux_sym__val_number_decimal_token4] = ACTIONS(2426), - [aux_sym__val_number_token1] = ACTIONS(2426), - [aux_sym__val_number_token2] = ACTIONS(2426), - [aux_sym__val_number_token3] = ACTIONS(2426), - [anon_sym_DQUOTE] = ACTIONS(2426), - [sym__str_single_quotes] = ACTIONS(2426), - [sym__str_back_ticks] = ACTIONS(2426), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2426), - [anon_sym_PLUS] = ACTIONS(2424), - [anon_sym_POUND] = ACTIONS(247), - }, - [659] = { - [sym_comment] = STATE(659), - [anon_sym_export] = ACTIONS(2384), - [anon_sym_alias] = ACTIONS(2384), - [anon_sym_let] = ACTIONS(2384), - [anon_sym_let_DASHenv] = ACTIONS(2384), - [anon_sym_mut] = ACTIONS(2384), - [anon_sym_const] = ACTIONS(2384), - [aux_sym_cmd_identifier_token1] = ACTIONS(2384), - [aux_sym_cmd_identifier_token2] = ACTIONS(2384), - [aux_sym_cmd_identifier_token3] = ACTIONS(2384), - [aux_sym_cmd_identifier_token4] = ACTIONS(2384), - [aux_sym_cmd_identifier_token5] = ACTIONS(2384), - [aux_sym_cmd_identifier_token6] = ACTIONS(2384), - [aux_sym_cmd_identifier_token7] = ACTIONS(2384), - [aux_sym_cmd_identifier_token8] = ACTIONS(2384), - [aux_sym_cmd_identifier_token9] = ACTIONS(2384), - [aux_sym_cmd_identifier_token10] = ACTIONS(2384), - [aux_sym_cmd_identifier_token11] = ACTIONS(2384), - [aux_sym_cmd_identifier_token12] = ACTIONS(2384), - [aux_sym_cmd_identifier_token13] = ACTIONS(2384), - [aux_sym_cmd_identifier_token14] = ACTIONS(2384), - [aux_sym_cmd_identifier_token15] = ACTIONS(2384), - [aux_sym_cmd_identifier_token16] = ACTIONS(2384), - [aux_sym_cmd_identifier_token17] = ACTIONS(2384), - [aux_sym_cmd_identifier_token18] = ACTIONS(2384), - [aux_sym_cmd_identifier_token19] = ACTIONS(2384), - [aux_sym_cmd_identifier_token20] = ACTIONS(2384), - [aux_sym_cmd_identifier_token21] = ACTIONS(2384), - [aux_sym_cmd_identifier_token22] = ACTIONS(2384), - [aux_sym_cmd_identifier_token23] = ACTIONS(2384), - [aux_sym_cmd_identifier_token24] = ACTIONS(2384), - [aux_sym_cmd_identifier_token25] = ACTIONS(2384), - [aux_sym_cmd_identifier_token26] = ACTIONS(2384), - [aux_sym_cmd_identifier_token27] = ACTIONS(2384), - [aux_sym_cmd_identifier_token28] = ACTIONS(2384), - [aux_sym_cmd_identifier_token29] = ACTIONS(2384), - [aux_sym_cmd_identifier_token30] = ACTIONS(2384), - [aux_sym_cmd_identifier_token31] = ACTIONS(2384), - [aux_sym_cmd_identifier_token32] = ACTIONS(2384), - [aux_sym_cmd_identifier_token33] = ACTIONS(2384), - [aux_sym_cmd_identifier_token34] = ACTIONS(2384), - [aux_sym_cmd_identifier_token35] = ACTIONS(2384), - [aux_sym_cmd_identifier_token36] = ACTIONS(2384), - [anon_sym_true] = ACTIONS(2386), - [anon_sym_false] = ACTIONS(2386), - [anon_sym_null] = ACTIONS(2386), - [aux_sym_cmd_identifier_token38] = ACTIONS(2384), - [aux_sym_cmd_identifier_token39] = ACTIONS(2386), - [aux_sym_cmd_identifier_token40] = ACTIONS(2386), - [anon_sym_def] = ACTIONS(2384), - [anon_sym_export_DASHenv] = ACTIONS(2384), - [anon_sym_extern] = ACTIONS(2384), - [anon_sym_module] = ACTIONS(2384), - [anon_sym_use] = ACTIONS(2384), - [anon_sym_LPAREN] = ACTIONS(2386), - [anon_sym_DOLLAR] = ACTIONS(2386), - [anon_sym_error] = ACTIONS(2384), - [anon_sym_list] = ACTIONS(2384), - [anon_sym_DASH] = ACTIONS(2384), - [anon_sym_break] = ACTIONS(2384), - [anon_sym_continue] = ACTIONS(2384), - [anon_sym_for] = ACTIONS(2384), - [anon_sym_in] = ACTIONS(2384), - [anon_sym_loop] = ACTIONS(2384), - [anon_sym_make] = ACTIONS(2384), - [anon_sym_while] = ACTIONS(2384), - [anon_sym_do] = ACTIONS(2384), - [anon_sym_if] = ACTIONS(2384), - [anon_sym_else] = ACTIONS(2384), - [anon_sym_match] = ACTIONS(2384), - [anon_sym_RBRACE] = ACTIONS(2386), - [anon_sym_try] = ACTIONS(2384), - [anon_sym_catch] = ACTIONS(2384), - [anon_sym_return] = ACTIONS(2384), - [anon_sym_source] = ACTIONS(2384), - [anon_sym_source_DASHenv] = ACTIONS(2384), - [anon_sym_register] = ACTIONS(2384), - [anon_sym_hide] = ACTIONS(2384), - [anon_sym_hide_DASHenv] = ACTIONS(2384), - [anon_sym_overlay] = ACTIONS(2384), - [anon_sym_new] = ACTIONS(2384), - [anon_sym_as] = ACTIONS(2384), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2386), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2386), - [aux_sym__val_number_decimal_token1] = ACTIONS(2384), - [aux_sym__val_number_decimal_token2] = ACTIONS(2386), - [aux_sym__val_number_decimal_token3] = ACTIONS(2386), - [aux_sym__val_number_decimal_token4] = ACTIONS(2386), - [aux_sym__val_number_token1] = ACTIONS(2386), - [aux_sym__val_number_token2] = ACTIONS(2386), - [aux_sym__val_number_token3] = ACTIONS(2386), - [anon_sym_DQUOTE] = ACTIONS(2386), - [sym__str_single_quotes] = ACTIONS(2386), - [sym__str_back_ticks] = ACTIONS(2386), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2386), - [anon_sym_PLUS] = ACTIONS(2384), - [anon_sym_POUND] = ACTIONS(247), - }, - [660] = { - [sym_comment] = STATE(660), - [anon_sym_export] = ACTIONS(2458), - [anon_sym_alias] = ACTIONS(2458), - [anon_sym_let] = ACTIONS(2458), - [anon_sym_let_DASHenv] = ACTIONS(2458), - [anon_sym_mut] = ACTIONS(2458), - [anon_sym_const] = ACTIONS(2458), - [aux_sym_cmd_identifier_token1] = ACTIONS(2458), - [aux_sym_cmd_identifier_token2] = ACTIONS(2458), - [aux_sym_cmd_identifier_token3] = ACTIONS(2458), - [aux_sym_cmd_identifier_token4] = ACTIONS(2458), - [aux_sym_cmd_identifier_token5] = ACTIONS(2458), - [aux_sym_cmd_identifier_token6] = ACTIONS(2458), - [aux_sym_cmd_identifier_token7] = ACTIONS(2458), - [aux_sym_cmd_identifier_token8] = ACTIONS(2458), - [aux_sym_cmd_identifier_token9] = ACTIONS(2458), - [aux_sym_cmd_identifier_token10] = ACTIONS(2458), - [aux_sym_cmd_identifier_token11] = ACTIONS(2458), - [aux_sym_cmd_identifier_token12] = ACTIONS(2458), - [aux_sym_cmd_identifier_token13] = ACTIONS(2458), - [aux_sym_cmd_identifier_token14] = ACTIONS(2458), - [aux_sym_cmd_identifier_token15] = ACTIONS(2458), - [aux_sym_cmd_identifier_token16] = ACTIONS(2458), - [aux_sym_cmd_identifier_token17] = ACTIONS(2458), - [aux_sym_cmd_identifier_token18] = ACTIONS(2458), - [aux_sym_cmd_identifier_token19] = ACTIONS(2458), - [aux_sym_cmd_identifier_token20] = ACTIONS(2458), - [aux_sym_cmd_identifier_token21] = ACTIONS(2458), - [aux_sym_cmd_identifier_token22] = ACTIONS(2458), - [aux_sym_cmd_identifier_token23] = ACTIONS(2458), - [aux_sym_cmd_identifier_token24] = ACTIONS(2458), - [aux_sym_cmd_identifier_token25] = ACTIONS(2458), - [aux_sym_cmd_identifier_token26] = ACTIONS(2458), - [aux_sym_cmd_identifier_token27] = ACTIONS(2458), - [aux_sym_cmd_identifier_token28] = ACTIONS(2458), - [aux_sym_cmd_identifier_token29] = ACTIONS(2458), - [aux_sym_cmd_identifier_token30] = ACTIONS(2458), - [aux_sym_cmd_identifier_token31] = ACTIONS(2458), - [aux_sym_cmd_identifier_token32] = ACTIONS(2458), - [aux_sym_cmd_identifier_token33] = ACTIONS(2458), - [aux_sym_cmd_identifier_token34] = ACTIONS(2458), - [aux_sym_cmd_identifier_token35] = ACTIONS(2458), - [aux_sym_cmd_identifier_token36] = ACTIONS(2458), - [anon_sym_true] = ACTIONS(2460), - [anon_sym_false] = ACTIONS(2460), - [anon_sym_null] = ACTIONS(2460), - [aux_sym_cmd_identifier_token38] = ACTIONS(2458), - [aux_sym_cmd_identifier_token39] = ACTIONS(2460), - [aux_sym_cmd_identifier_token40] = ACTIONS(2460), - [anon_sym_def] = ACTIONS(2458), - [anon_sym_export_DASHenv] = ACTIONS(2458), - [anon_sym_extern] = ACTIONS(2458), - [anon_sym_module] = ACTIONS(2458), - [anon_sym_use] = ACTIONS(2458), - [anon_sym_LPAREN] = ACTIONS(2460), - [anon_sym_DOLLAR] = ACTIONS(2460), - [anon_sym_error] = ACTIONS(2458), - [anon_sym_list] = ACTIONS(2458), - [anon_sym_DASH] = ACTIONS(2458), - [anon_sym_break] = ACTIONS(2458), - [anon_sym_continue] = ACTIONS(2458), - [anon_sym_for] = ACTIONS(2458), - [anon_sym_in] = ACTIONS(2458), - [anon_sym_loop] = ACTIONS(2458), - [anon_sym_make] = ACTIONS(2458), - [anon_sym_while] = ACTIONS(2458), - [anon_sym_do] = ACTIONS(2458), - [anon_sym_if] = ACTIONS(2458), - [anon_sym_else] = ACTIONS(2458), - [anon_sym_match] = ACTIONS(2458), - [anon_sym_RBRACE] = ACTIONS(2460), - [anon_sym_try] = ACTIONS(2458), - [anon_sym_catch] = ACTIONS(2458), - [anon_sym_return] = ACTIONS(2458), - [anon_sym_source] = ACTIONS(2458), - [anon_sym_source_DASHenv] = ACTIONS(2458), - [anon_sym_register] = ACTIONS(2458), - [anon_sym_hide] = ACTIONS(2458), - [anon_sym_hide_DASHenv] = ACTIONS(2458), - [anon_sym_overlay] = ACTIONS(2458), - [anon_sym_new] = ACTIONS(2458), - [anon_sym_as] = ACTIONS(2458), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2460), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2460), - [aux_sym__val_number_decimal_token1] = ACTIONS(2458), - [aux_sym__val_number_decimal_token2] = ACTIONS(2460), - [aux_sym__val_number_decimal_token3] = ACTIONS(2460), - [aux_sym__val_number_decimal_token4] = ACTIONS(2460), - [aux_sym__val_number_token1] = ACTIONS(2460), - [aux_sym__val_number_token2] = ACTIONS(2460), - [aux_sym__val_number_token3] = ACTIONS(2460), - [anon_sym_DQUOTE] = ACTIONS(2460), - [sym__str_single_quotes] = ACTIONS(2460), - [sym__str_back_ticks] = ACTIONS(2460), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2460), - [anon_sym_PLUS] = ACTIONS(2458), - [anon_sym_POUND] = ACTIONS(247), - }, - [661] = { - [sym_comment] = STATE(661), - [anon_sym_export] = ACTIONS(2362), - [anon_sym_alias] = ACTIONS(2362), - [anon_sym_let] = ACTIONS(2362), - [anon_sym_let_DASHenv] = ACTIONS(2362), - [anon_sym_mut] = ACTIONS(2362), - [anon_sym_const] = ACTIONS(2362), - [aux_sym_cmd_identifier_token1] = ACTIONS(2362), - [aux_sym_cmd_identifier_token2] = ACTIONS(2362), - [aux_sym_cmd_identifier_token3] = ACTIONS(2362), - [aux_sym_cmd_identifier_token4] = ACTIONS(2362), - [aux_sym_cmd_identifier_token5] = ACTIONS(2362), - [aux_sym_cmd_identifier_token6] = ACTIONS(2362), - [aux_sym_cmd_identifier_token7] = ACTIONS(2362), - [aux_sym_cmd_identifier_token8] = ACTIONS(2362), - [aux_sym_cmd_identifier_token9] = ACTIONS(2362), - [aux_sym_cmd_identifier_token10] = ACTIONS(2362), - [aux_sym_cmd_identifier_token11] = ACTIONS(2362), - [aux_sym_cmd_identifier_token12] = ACTIONS(2362), - [aux_sym_cmd_identifier_token13] = ACTIONS(2362), - [aux_sym_cmd_identifier_token14] = ACTIONS(2362), - [aux_sym_cmd_identifier_token15] = ACTIONS(2362), - [aux_sym_cmd_identifier_token16] = ACTIONS(2362), - [aux_sym_cmd_identifier_token17] = ACTIONS(2362), - [aux_sym_cmd_identifier_token18] = ACTIONS(2362), - [aux_sym_cmd_identifier_token19] = ACTIONS(2362), - [aux_sym_cmd_identifier_token20] = ACTIONS(2362), - [aux_sym_cmd_identifier_token21] = ACTIONS(2362), - [aux_sym_cmd_identifier_token22] = ACTIONS(2362), - [aux_sym_cmd_identifier_token23] = ACTIONS(2362), - [aux_sym_cmd_identifier_token24] = ACTIONS(2362), - [aux_sym_cmd_identifier_token25] = ACTIONS(2362), - [aux_sym_cmd_identifier_token26] = ACTIONS(2362), - [aux_sym_cmd_identifier_token27] = ACTIONS(2362), - [aux_sym_cmd_identifier_token28] = ACTIONS(2362), - [aux_sym_cmd_identifier_token29] = ACTIONS(2362), - [aux_sym_cmd_identifier_token30] = ACTIONS(2362), - [aux_sym_cmd_identifier_token31] = ACTIONS(2362), - [aux_sym_cmd_identifier_token32] = ACTIONS(2362), - [aux_sym_cmd_identifier_token33] = ACTIONS(2362), - [aux_sym_cmd_identifier_token34] = ACTIONS(2362), - [aux_sym_cmd_identifier_token35] = ACTIONS(2362), - [aux_sym_cmd_identifier_token36] = ACTIONS(2362), - [anon_sym_true] = ACTIONS(2364), - [anon_sym_false] = ACTIONS(2364), - [anon_sym_null] = ACTIONS(2364), - [aux_sym_cmd_identifier_token38] = ACTIONS(2362), - [aux_sym_cmd_identifier_token39] = ACTIONS(2364), - [aux_sym_cmd_identifier_token40] = ACTIONS(2364), - [anon_sym_def] = ACTIONS(2362), - [anon_sym_export_DASHenv] = ACTIONS(2362), - [anon_sym_extern] = ACTIONS(2362), - [anon_sym_module] = ACTIONS(2362), - [anon_sym_use] = ACTIONS(2362), - [anon_sym_LPAREN] = ACTIONS(2364), - [anon_sym_DOLLAR] = ACTIONS(2364), - [anon_sym_error] = ACTIONS(2362), - [anon_sym_list] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_break] = ACTIONS(2362), - [anon_sym_continue] = ACTIONS(2362), - [anon_sym_for] = ACTIONS(2362), - [anon_sym_in] = ACTIONS(2362), - [anon_sym_loop] = ACTIONS(2362), - [anon_sym_make] = ACTIONS(2362), - [anon_sym_while] = ACTIONS(2362), - [anon_sym_do] = ACTIONS(2362), - [anon_sym_if] = ACTIONS(2362), - [anon_sym_else] = ACTIONS(2362), - [anon_sym_match] = ACTIONS(2362), - [anon_sym_RBRACE] = ACTIONS(2364), - [anon_sym_try] = ACTIONS(2362), - [anon_sym_catch] = ACTIONS(2362), - [anon_sym_return] = ACTIONS(2362), - [anon_sym_source] = ACTIONS(2362), - [anon_sym_source_DASHenv] = ACTIONS(2362), - [anon_sym_register] = ACTIONS(2362), - [anon_sym_hide] = ACTIONS(2362), - [anon_sym_hide_DASHenv] = ACTIONS(2362), - [anon_sym_overlay] = ACTIONS(2362), - [anon_sym_new] = ACTIONS(2362), - [anon_sym_as] = ACTIONS(2362), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2364), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2364), - [aux_sym__val_number_decimal_token1] = ACTIONS(2362), - [aux_sym__val_number_decimal_token2] = ACTIONS(2364), - [aux_sym__val_number_decimal_token3] = ACTIONS(2364), - [aux_sym__val_number_decimal_token4] = ACTIONS(2364), - [aux_sym__val_number_token1] = ACTIONS(2364), - [aux_sym__val_number_token2] = ACTIONS(2364), - [aux_sym__val_number_token3] = ACTIONS(2364), - [anon_sym_DQUOTE] = ACTIONS(2364), - [sym__str_single_quotes] = ACTIONS(2364), - [sym__str_back_ticks] = ACTIONS(2364), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2364), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_POUND] = ACTIONS(247), - }, - [662] = { - [sym_comment] = STATE(662), - [anon_sym_export] = ACTIONS(2305), - [anon_sym_alias] = ACTIONS(2305), - [anon_sym_let] = ACTIONS(2305), - [anon_sym_let_DASHenv] = ACTIONS(2305), - [anon_sym_mut] = ACTIONS(2305), - [anon_sym_const] = ACTIONS(2305), - [aux_sym_cmd_identifier_token1] = ACTIONS(2305), - [aux_sym_cmd_identifier_token2] = ACTIONS(2305), - [aux_sym_cmd_identifier_token3] = ACTIONS(2305), - [aux_sym_cmd_identifier_token4] = ACTIONS(2305), - [aux_sym_cmd_identifier_token5] = ACTIONS(2305), - [aux_sym_cmd_identifier_token6] = ACTIONS(2305), - [aux_sym_cmd_identifier_token7] = ACTIONS(2305), - [aux_sym_cmd_identifier_token8] = ACTIONS(2305), - [aux_sym_cmd_identifier_token9] = ACTIONS(2305), - [aux_sym_cmd_identifier_token10] = ACTIONS(2305), - [aux_sym_cmd_identifier_token11] = ACTIONS(2305), - [aux_sym_cmd_identifier_token12] = ACTIONS(2305), - [aux_sym_cmd_identifier_token13] = ACTIONS(2305), - [aux_sym_cmd_identifier_token14] = ACTIONS(2305), - [aux_sym_cmd_identifier_token15] = ACTIONS(2305), - [aux_sym_cmd_identifier_token16] = ACTIONS(2305), - [aux_sym_cmd_identifier_token17] = ACTIONS(2305), - [aux_sym_cmd_identifier_token18] = ACTIONS(2305), - [aux_sym_cmd_identifier_token19] = ACTIONS(2305), - [aux_sym_cmd_identifier_token20] = ACTIONS(2305), - [aux_sym_cmd_identifier_token21] = ACTIONS(2305), - [aux_sym_cmd_identifier_token22] = ACTIONS(2305), - [aux_sym_cmd_identifier_token23] = ACTIONS(2305), - [aux_sym_cmd_identifier_token24] = ACTIONS(2305), - [aux_sym_cmd_identifier_token25] = ACTIONS(2305), - [aux_sym_cmd_identifier_token26] = ACTIONS(2305), - [aux_sym_cmd_identifier_token27] = ACTIONS(2305), - [aux_sym_cmd_identifier_token28] = ACTIONS(2305), - [aux_sym_cmd_identifier_token29] = ACTIONS(2305), - [aux_sym_cmd_identifier_token30] = ACTIONS(2305), - [aux_sym_cmd_identifier_token31] = ACTIONS(2305), - [aux_sym_cmd_identifier_token32] = ACTIONS(2305), - [aux_sym_cmd_identifier_token33] = ACTIONS(2305), - [aux_sym_cmd_identifier_token34] = ACTIONS(2305), - [aux_sym_cmd_identifier_token35] = ACTIONS(2305), - [aux_sym_cmd_identifier_token36] = ACTIONS(2305), - [anon_sym_true] = ACTIONS(2307), - [anon_sym_false] = ACTIONS(2307), - [anon_sym_null] = ACTIONS(2307), - [aux_sym_cmd_identifier_token38] = ACTIONS(2305), - [aux_sym_cmd_identifier_token39] = ACTIONS(2307), - [aux_sym_cmd_identifier_token40] = ACTIONS(2307), - [anon_sym_def] = ACTIONS(2305), - [anon_sym_export_DASHenv] = ACTIONS(2305), - [anon_sym_extern] = ACTIONS(2305), - [anon_sym_module] = ACTIONS(2305), - [anon_sym_use] = ACTIONS(2305), - [anon_sym_LPAREN] = ACTIONS(2307), - [anon_sym_DOLLAR] = ACTIONS(2307), - [anon_sym_error] = ACTIONS(2305), - [anon_sym_list] = ACTIONS(2305), - [anon_sym_DASH] = ACTIONS(2305), - [anon_sym_break] = ACTIONS(2305), - [anon_sym_continue] = ACTIONS(2305), - [anon_sym_for] = ACTIONS(2305), - [anon_sym_in] = ACTIONS(2305), - [anon_sym_loop] = ACTIONS(2305), - [anon_sym_make] = ACTIONS(2305), - [anon_sym_while] = ACTIONS(2305), - [anon_sym_do] = ACTIONS(2305), - [anon_sym_if] = ACTIONS(2305), - [anon_sym_else] = ACTIONS(2305), - [anon_sym_match] = ACTIONS(2305), - [anon_sym_RBRACE] = ACTIONS(2307), - [anon_sym_try] = ACTIONS(2305), - [anon_sym_catch] = ACTIONS(2305), - [anon_sym_return] = ACTIONS(2305), - [anon_sym_source] = ACTIONS(2305), - [anon_sym_source_DASHenv] = ACTIONS(2305), - [anon_sym_register] = ACTIONS(2305), - [anon_sym_hide] = ACTIONS(2305), - [anon_sym_hide_DASHenv] = ACTIONS(2305), - [anon_sym_overlay] = ACTIONS(2305), - [anon_sym_new] = ACTIONS(2305), - [anon_sym_as] = ACTIONS(2305), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2307), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2307), - [aux_sym__val_number_decimal_token1] = ACTIONS(2305), - [aux_sym__val_number_decimal_token2] = ACTIONS(2307), - [aux_sym__val_number_decimal_token3] = ACTIONS(2307), - [aux_sym__val_number_decimal_token4] = ACTIONS(2307), - [aux_sym__val_number_token1] = ACTIONS(2307), - [aux_sym__val_number_token2] = ACTIONS(2307), - [aux_sym__val_number_token3] = ACTIONS(2307), - [anon_sym_DQUOTE] = ACTIONS(2307), - [sym__str_single_quotes] = ACTIONS(2307), - [sym__str_back_ticks] = ACTIONS(2307), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2307), - [anon_sym_PLUS] = ACTIONS(2305), - [anon_sym_POUND] = ACTIONS(247), - }, - [663] = { - [sym_comment] = STATE(663), [anon_sym_export] = ACTIONS(1070), [anon_sym_alias] = ACTIONS(1070), [anon_sym_let] = ACTIONS(1070), @@ -147982,6 +145857,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(1070), [anon_sym_as] = ACTIONS(1070), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1072), + [anon_sym_DOT] = ACTIONS(1070), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1072), [aux_sym__val_number_decimal_token1] = ACTIONS(1070), [aux_sym__val_number_decimal_token2] = ACTIONS(1072), @@ -147995,2782 +145871,2017 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1072), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1072), [anon_sym_PLUS] = ACTIONS(1070), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1072), }, - [664] = { - [sym_comment] = STATE(664), - [anon_sym_export] = ACTIONS(1721), - [anon_sym_alias] = ACTIONS(1721), - [anon_sym_let] = ACTIONS(1721), - [anon_sym_let_DASHenv] = ACTIONS(1721), - [anon_sym_mut] = ACTIONS(1721), - [anon_sym_const] = ACTIONS(1721), - [aux_sym_cmd_identifier_token1] = ACTIONS(1721), - [aux_sym_cmd_identifier_token2] = ACTIONS(1721), - [aux_sym_cmd_identifier_token3] = ACTIONS(1721), - [aux_sym_cmd_identifier_token4] = ACTIONS(1721), - [aux_sym_cmd_identifier_token5] = ACTIONS(1721), - [aux_sym_cmd_identifier_token6] = ACTIONS(1721), - [aux_sym_cmd_identifier_token7] = ACTIONS(1721), - [aux_sym_cmd_identifier_token8] = ACTIONS(1721), - [aux_sym_cmd_identifier_token9] = ACTIONS(1721), - [aux_sym_cmd_identifier_token10] = ACTIONS(1721), - [aux_sym_cmd_identifier_token11] = ACTIONS(1721), - [aux_sym_cmd_identifier_token12] = ACTIONS(1721), - [aux_sym_cmd_identifier_token13] = ACTIONS(1721), - [aux_sym_cmd_identifier_token14] = ACTIONS(1721), - [aux_sym_cmd_identifier_token15] = ACTIONS(1721), - [aux_sym_cmd_identifier_token16] = ACTIONS(1721), - [aux_sym_cmd_identifier_token17] = ACTIONS(1721), - [aux_sym_cmd_identifier_token18] = ACTIONS(1721), - [aux_sym_cmd_identifier_token19] = ACTIONS(1721), - [aux_sym_cmd_identifier_token20] = ACTIONS(1721), - [aux_sym_cmd_identifier_token21] = ACTIONS(1721), - [aux_sym_cmd_identifier_token22] = ACTIONS(1721), - [aux_sym_cmd_identifier_token23] = ACTIONS(1721), - [aux_sym_cmd_identifier_token24] = ACTIONS(1721), - [aux_sym_cmd_identifier_token25] = ACTIONS(1721), - [aux_sym_cmd_identifier_token26] = ACTIONS(1721), - [aux_sym_cmd_identifier_token27] = ACTIONS(1721), - [aux_sym_cmd_identifier_token28] = ACTIONS(1721), - [aux_sym_cmd_identifier_token29] = ACTIONS(1721), - [aux_sym_cmd_identifier_token30] = ACTIONS(1721), - [aux_sym_cmd_identifier_token31] = ACTIONS(1721), - [aux_sym_cmd_identifier_token32] = ACTIONS(1721), - [aux_sym_cmd_identifier_token33] = ACTIONS(1721), - [aux_sym_cmd_identifier_token34] = ACTIONS(1721), - [aux_sym_cmd_identifier_token35] = ACTIONS(1721), - [aux_sym_cmd_identifier_token36] = ACTIONS(1721), - [anon_sym_true] = ACTIONS(1723), - [anon_sym_false] = ACTIONS(1723), - [anon_sym_null] = ACTIONS(1723), - [aux_sym_cmd_identifier_token38] = ACTIONS(1721), - [aux_sym_cmd_identifier_token39] = ACTIONS(1723), - [aux_sym_cmd_identifier_token40] = ACTIONS(1723), - [anon_sym_def] = ACTIONS(1721), - [anon_sym_export_DASHenv] = ACTIONS(1721), - [anon_sym_extern] = ACTIONS(1721), - [anon_sym_module] = ACTIONS(1721), - [anon_sym_use] = ACTIONS(1721), - [anon_sym_LPAREN] = ACTIONS(1723), - [anon_sym_DOLLAR] = ACTIONS(1723), - [anon_sym_error] = ACTIONS(1721), - [anon_sym_list] = ACTIONS(1721), - [anon_sym_DASH] = ACTIONS(1721), - [anon_sym_break] = ACTIONS(1721), - [anon_sym_continue] = ACTIONS(1721), - [anon_sym_for] = ACTIONS(1721), - [anon_sym_in] = ACTIONS(1721), - [anon_sym_loop] = ACTIONS(1721), - [anon_sym_make] = ACTIONS(1721), - [anon_sym_while] = ACTIONS(1721), - [anon_sym_do] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1721), - [anon_sym_else] = ACTIONS(1721), - [anon_sym_match] = ACTIONS(1721), - [anon_sym_RBRACE] = ACTIONS(1723), - [anon_sym_try] = ACTIONS(1721), - [anon_sym_catch] = ACTIONS(1721), - [anon_sym_return] = ACTIONS(1721), - [anon_sym_source] = ACTIONS(1721), - [anon_sym_source_DASHenv] = ACTIONS(1721), - [anon_sym_register] = ACTIONS(1721), - [anon_sym_hide] = ACTIONS(1721), - [anon_sym_hide_DASHenv] = ACTIONS(1721), - [anon_sym_overlay] = ACTIONS(1721), - [anon_sym_new] = ACTIONS(1721), - [anon_sym_as] = ACTIONS(1721), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1723), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1723), - [aux_sym__val_number_decimal_token1] = ACTIONS(1721), - [aux_sym__val_number_decimal_token2] = ACTIONS(1723), - [aux_sym__val_number_decimal_token3] = ACTIONS(1723), - [aux_sym__val_number_decimal_token4] = ACTIONS(1723), - [aux_sym__val_number_token1] = ACTIONS(1723), - [aux_sym__val_number_token2] = ACTIONS(1723), - [aux_sym__val_number_token3] = ACTIONS(1723), - [anon_sym_DQUOTE] = ACTIONS(1723), - [sym__str_single_quotes] = ACTIONS(1723), - [sym__str_back_ticks] = ACTIONS(1723), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1723), - [anon_sym_PLUS] = ACTIONS(1721), - [anon_sym_POUND] = ACTIONS(247), + [626] = { + [sym_comment] = STATE(626), + [anon_sym_export] = ACTIONS(2001), + [anon_sym_alias] = ACTIONS(2001), + [anon_sym_let] = ACTIONS(2001), + [anon_sym_let_DASHenv] = ACTIONS(2001), + [anon_sym_mut] = ACTIONS(2001), + [anon_sym_const] = ACTIONS(2001), + [aux_sym_cmd_identifier_token1] = ACTIONS(2001), + [aux_sym_cmd_identifier_token2] = ACTIONS(2001), + [aux_sym_cmd_identifier_token3] = ACTIONS(2001), + [aux_sym_cmd_identifier_token4] = ACTIONS(2001), + [aux_sym_cmd_identifier_token5] = ACTIONS(2001), + [aux_sym_cmd_identifier_token6] = ACTIONS(2001), + [aux_sym_cmd_identifier_token7] = ACTIONS(2001), + [aux_sym_cmd_identifier_token8] = ACTIONS(2001), + [aux_sym_cmd_identifier_token9] = ACTIONS(2001), + [aux_sym_cmd_identifier_token10] = ACTIONS(2001), + [aux_sym_cmd_identifier_token11] = ACTIONS(2001), + [aux_sym_cmd_identifier_token12] = ACTIONS(2001), + [aux_sym_cmd_identifier_token13] = ACTIONS(2001), + [aux_sym_cmd_identifier_token14] = ACTIONS(2001), + [aux_sym_cmd_identifier_token15] = ACTIONS(2001), + [aux_sym_cmd_identifier_token16] = ACTIONS(2001), + [aux_sym_cmd_identifier_token17] = ACTIONS(2001), + [aux_sym_cmd_identifier_token18] = ACTIONS(2001), + [aux_sym_cmd_identifier_token19] = ACTIONS(2001), + [aux_sym_cmd_identifier_token20] = ACTIONS(2001), + [aux_sym_cmd_identifier_token21] = ACTIONS(2001), + [aux_sym_cmd_identifier_token22] = ACTIONS(2001), + [aux_sym_cmd_identifier_token23] = ACTIONS(2001), + [aux_sym_cmd_identifier_token24] = ACTIONS(2001), + [aux_sym_cmd_identifier_token25] = ACTIONS(2001), + [aux_sym_cmd_identifier_token26] = ACTIONS(2001), + [aux_sym_cmd_identifier_token27] = ACTIONS(2001), + [aux_sym_cmd_identifier_token28] = ACTIONS(2001), + [aux_sym_cmd_identifier_token29] = ACTIONS(2001), + [aux_sym_cmd_identifier_token30] = ACTIONS(2001), + [aux_sym_cmd_identifier_token31] = ACTIONS(2001), + [aux_sym_cmd_identifier_token32] = ACTIONS(2001), + [aux_sym_cmd_identifier_token33] = ACTIONS(2001), + [aux_sym_cmd_identifier_token34] = ACTIONS(2001), + [aux_sym_cmd_identifier_token35] = ACTIONS(2001), + [aux_sym_cmd_identifier_token36] = ACTIONS(2001), + [anon_sym_true] = ACTIONS(2001), + [anon_sym_false] = ACTIONS(2001), + [anon_sym_null] = ACTIONS(2001), + [aux_sym_cmd_identifier_token38] = ACTIONS(2001), + [aux_sym_cmd_identifier_token39] = ACTIONS(2001), + [aux_sym_cmd_identifier_token40] = ACTIONS(2001), + [anon_sym_def] = ACTIONS(2001), + [anon_sym_export_DASHenv] = ACTIONS(2001), + [anon_sym_extern] = ACTIONS(2001), + [anon_sym_module] = ACTIONS(2001), + [anon_sym_use] = ACTIONS(2001), + [anon_sym_LPAREN] = ACTIONS(2001), + [anon_sym_DOLLAR] = ACTIONS(2001), + [anon_sym_error] = ACTIONS(2001), + [anon_sym_list] = ACTIONS(2001), + [anon_sym_DASH] = ACTIONS(2001), + [anon_sym_break] = ACTIONS(2001), + [anon_sym_continue] = ACTIONS(2001), + [anon_sym_for] = ACTIONS(2001), + [anon_sym_in] = ACTIONS(2001), + [anon_sym_loop] = ACTIONS(2001), + [anon_sym_make] = ACTIONS(2001), + [anon_sym_while] = ACTIONS(2001), + [anon_sym_do] = ACTIONS(2001), + [anon_sym_if] = ACTIONS(2001), + [anon_sym_else] = ACTIONS(2001), + [anon_sym_match] = ACTIONS(2001), + [anon_sym_RBRACE] = ACTIONS(2001), + [anon_sym_try] = ACTIONS(2001), + [anon_sym_catch] = ACTIONS(2001), + [anon_sym_return] = ACTIONS(2001), + [anon_sym_source] = ACTIONS(2001), + [anon_sym_source_DASHenv] = ACTIONS(2001), + [anon_sym_register] = ACTIONS(2001), + [anon_sym_hide] = ACTIONS(2001), + [anon_sym_hide_DASHenv] = ACTIONS(2001), + [anon_sym_overlay] = ACTIONS(2001), + [anon_sym_new] = ACTIONS(2001), + [anon_sym_as] = ACTIONS(2001), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2001), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2001), + [aux_sym__val_number_decimal_token1] = ACTIONS(2001), + [aux_sym__val_number_decimal_token2] = ACTIONS(2001), + [aux_sym__val_number_decimal_token3] = ACTIONS(2001), + [aux_sym__val_number_decimal_token4] = ACTIONS(2001), + [aux_sym__val_number_token1] = ACTIONS(2001), + [aux_sym__val_number_token2] = ACTIONS(2001), + [aux_sym__val_number_token3] = ACTIONS(2001), + [anon_sym_DQUOTE] = ACTIONS(2001), + [sym__str_single_quotes] = ACTIONS(2001), + [sym__str_back_ticks] = ACTIONS(2001), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2001), + [sym__entry_separator] = ACTIONS(2003), + [anon_sym_PLUS] = ACTIONS(2001), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2003), }, - [665] = { - [sym_comment] = STATE(665), - [anon_sym_export] = ACTIONS(1738), - [anon_sym_alias] = ACTIONS(1738), - [anon_sym_let] = ACTIONS(1738), - [anon_sym_let_DASHenv] = ACTIONS(1738), - [anon_sym_mut] = ACTIONS(1738), - [anon_sym_const] = ACTIONS(1738), - [aux_sym_cmd_identifier_token1] = ACTIONS(1738), - [aux_sym_cmd_identifier_token2] = ACTIONS(1738), - [aux_sym_cmd_identifier_token3] = ACTIONS(1738), - [aux_sym_cmd_identifier_token4] = ACTIONS(1738), - [aux_sym_cmd_identifier_token5] = ACTIONS(1738), - [aux_sym_cmd_identifier_token6] = ACTIONS(1738), - [aux_sym_cmd_identifier_token7] = ACTIONS(1738), - [aux_sym_cmd_identifier_token8] = ACTIONS(1738), - [aux_sym_cmd_identifier_token9] = ACTIONS(1738), - [aux_sym_cmd_identifier_token10] = ACTIONS(1738), - [aux_sym_cmd_identifier_token11] = ACTIONS(1738), - [aux_sym_cmd_identifier_token12] = ACTIONS(1738), - [aux_sym_cmd_identifier_token13] = ACTIONS(1738), - [aux_sym_cmd_identifier_token14] = ACTIONS(1738), - [aux_sym_cmd_identifier_token15] = ACTIONS(1738), - [aux_sym_cmd_identifier_token16] = ACTIONS(1738), - [aux_sym_cmd_identifier_token17] = ACTIONS(1738), - [aux_sym_cmd_identifier_token18] = ACTIONS(1738), - [aux_sym_cmd_identifier_token19] = ACTIONS(1738), - [aux_sym_cmd_identifier_token20] = ACTIONS(1738), - [aux_sym_cmd_identifier_token21] = ACTIONS(1738), - [aux_sym_cmd_identifier_token22] = ACTIONS(1738), - [aux_sym_cmd_identifier_token23] = ACTIONS(1738), - [aux_sym_cmd_identifier_token24] = ACTIONS(1738), - [aux_sym_cmd_identifier_token25] = ACTIONS(1738), - [aux_sym_cmd_identifier_token26] = ACTIONS(1738), - [aux_sym_cmd_identifier_token27] = ACTIONS(1738), - [aux_sym_cmd_identifier_token28] = ACTIONS(1738), - [aux_sym_cmd_identifier_token29] = ACTIONS(1738), - [aux_sym_cmd_identifier_token30] = ACTIONS(1738), - [aux_sym_cmd_identifier_token31] = ACTIONS(1738), - [aux_sym_cmd_identifier_token32] = ACTIONS(1738), - [aux_sym_cmd_identifier_token33] = ACTIONS(1738), - [aux_sym_cmd_identifier_token34] = ACTIONS(1738), - [aux_sym_cmd_identifier_token35] = ACTIONS(1738), - [aux_sym_cmd_identifier_token36] = ACTIONS(1738), - [anon_sym_true] = ACTIONS(1740), - [anon_sym_false] = ACTIONS(1740), - [anon_sym_null] = ACTIONS(1740), - [aux_sym_cmd_identifier_token38] = ACTIONS(1738), - [aux_sym_cmd_identifier_token39] = ACTIONS(1740), - [aux_sym_cmd_identifier_token40] = ACTIONS(1740), - [anon_sym_def] = ACTIONS(1738), - [anon_sym_export_DASHenv] = ACTIONS(1738), - [anon_sym_extern] = ACTIONS(1738), - [anon_sym_module] = ACTIONS(1738), - [anon_sym_use] = ACTIONS(1738), - [anon_sym_LPAREN] = ACTIONS(1740), - [anon_sym_DOLLAR] = ACTIONS(1740), - [anon_sym_error] = ACTIONS(1738), - [anon_sym_list] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_break] = ACTIONS(1738), - [anon_sym_continue] = ACTIONS(1738), - [anon_sym_for] = ACTIONS(1738), - [anon_sym_in] = ACTIONS(1738), - [anon_sym_loop] = ACTIONS(1738), - [anon_sym_make] = ACTIONS(1738), - [anon_sym_while] = ACTIONS(1738), - [anon_sym_do] = ACTIONS(1738), - [anon_sym_if] = ACTIONS(1738), - [anon_sym_else] = ACTIONS(1738), - [anon_sym_match] = ACTIONS(1738), - [anon_sym_RBRACE] = ACTIONS(1740), - [anon_sym_try] = ACTIONS(1738), - [anon_sym_catch] = ACTIONS(1738), - [anon_sym_return] = ACTIONS(1738), - [anon_sym_source] = ACTIONS(1738), - [anon_sym_source_DASHenv] = ACTIONS(1738), - [anon_sym_register] = ACTIONS(1738), - [anon_sym_hide] = ACTIONS(1738), - [anon_sym_hide_DASHenv] = ACTIONS(1738), - [anon_sym_overlay] = ACTIONS(1738), - [anon_sym_new] = ACTIONS(1738), - [anon_sym_as] = ACTIONS(1738), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1740), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1740), - [aux_sym__val_number_decimal_token1] = ACTIONS(1738), - [aux_sym__val_number_decimal_token2] = ACTIONS(1740), - [aux_sym__val_number_decimal_token3] = ACTIONS(1740), - [aux_sym__val_number_decimal_token4] = ACTIONS(1740), - [aux_sym__val_number_token1] = ACTIONS(1740), - [aux_sym__val_number_token2] = ACTIONS(1740), - [aux_sym__val_number_token3] = ACTIONS(1740), - [anon_sym_DQUOTE] = ACTIONS(1740), - [sym__str_single_quotes] = ACTIONS(1740), - [sym__str_back_ticks] = ACTIONS(1740), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1738), - [anon_sym_POUND] = ACTIONS(247), + [627] = { + [sym_comment] = STATE(627), + [anon_sym_export] = ACTIONS(2565), + [anon_sym_alias] = ACTIONS(2565), + [anon_sym_let] = ACTIONS(2565), + [anon_sym_let_DASHenv] = ACTIONS(2565), + [anon_sym_mut] = ACTIONS(2565), + [anon_sym_const] = ACTIONS(2565), + [aux_sym_cmd_identifier_token1] = ACTIONS(2565), + [aux_sym_cmd_identifier_token2] = ACTIONS(2565), + [aux_sym_cmd_identifier_token3] = ACTIONS(2565), + [aux_sym_cmd_identifier_token4] = ACTIONS(2565), + [aux_sym_cmd_identifier_token5] = ACTIONS(2565), + [aux_sym_cmd_identifier_token6] = ACTIONS(2565), + [aux_sym_cmd_identifier_token7] = ACTIONS(2565), + [aux_sym_cmd_identifier_token8] = ACTIONS(2565), + [aux_sym_cmd_identifier_token9] = ACTIONS(2565), + [aux_sym_cmd_identifier_token10] = ACTIONS(2565), + [aux_sym_cmd_identifier_token11] = ACTIONS(2565), + [aux_sym_cmd_identifier_token12] = ACTIONS(2565), + [aux_sym_cmd_identifier_token13] = ACTIONS(2565), + [aux_sym_cmd_identifier_token14] = ACTIONS(2565), + [aux_sym_cmd_identifier_token15] = ACTIONS(2565), + [aux_sym_cmd_identifier_token16] = ACTIONS(2565), + [aux_sym_cmd_identifier_token17] = ACTIONS(2565), + [aux_sym_cmd_identifier_token18] = ACTIONS(2565), + [aux_sym_cmd_identifier_token19] = ACTIONS(2565), + [aux_sym_cmd_identifier_token20] = ACTIONS(2565), + [aux_sym_cmd_identifier_token21] = ACTIONS(2565), + [aux_sym_cmd_identifier_token22] = ACTIONS(2565), + [aux_sym_cmd_identifier_token23] = ACTIONS(2565), + [aux_sym_cmd_identifier_token24] = ACTIONS(2565), + [aux_sym_cmd_identifier_token25] = ACTIONS(2565), + [aux_sym_cmd_identifier_token26] = ACTIONS(2565), + [aux_sym_cmd_identifier_token27] = ACTIONS(2565), + [aux_sym_cmd_identifier_token28] = ACTIONS(2565), + [aux_sym_cmd_identifier_token29] = ACTIONS(2565), + [aux_sym_cmd_identifier_token30] = ACTIONS(2565), + [aux_sym_cmd_identifier_token31] = ACTIONS(2565), + [aux_sym_cmd_identifier_token32] = ACTIONS(2565), + [aux_sym_cmd_identifier_token33] = ACTIONS(2565), + [aux_sym_cmd_identifier_token34] = ACTIONS(2565), + [aux_sym_cmd_identifier_token35] = ACTIONS(2565), + [aux_sym_cmd_identifier_token36] = ACTIONS(2565), + [anon_sym_true] = ACTIONS(2565), + [anon_sym_false] = ACTIONS(2565), + [anon_sym_null] = ACTIONS(2565), + [aux_sym_cmd_identifier_token38] = ACTIONS(2565), + [aux_sym_cmd_identifier_token39] = ACTIONS(2565), + [aux_sym_cmd_identifier_token40] = ACTIONS(2565), + [anon_sym_def] = ACTIONS(2565), + [anon_sym_export_DASHenv] = ACTIONS(2565), + [anon_sym_extern] = ACTIONS(2565), + [anon_sym_module] = ACTIONS(2565), + [anon_sym_use] = ACTIONS(2565), + [anon_sym_LPAREN] = ACTIONS(2565), + [anon_sym_DOLLAR] = ACTIONS(2565), + [anon_sym_error] = ACTIONS(2565), + [anon_sym_list] = ACTIONS(2565), + [anon_sym_DASH] = ACTIONS(2565), + [anon_sym_break] = ACTIONS(2565), + [anon_sym_continue] = ACTIONS(2565), + [anon_sym_for] = ACTIONS(2565), + [anon_sym_in] = ACTIONS(2565), + [anon_sym_loop] = ACTIONS(2565), + [anon_sym_make] = ACTIONS(2565), + [anon_sym_while] = ACTIONS(2565), + [anon_sym_do] = ACTIONS(2565), + [anon_sym_if] = ACTIONS(2565), + [anon_sym_else] = ACTIONS(2565), + [anon_sym_match] = ACTIONS(2565), + [anon_sym_RBRACE] = ACTIONS(2565), + [anon_sym_try] = ACTIONS(2565), + [anon_sym_catch] = ACTIONS(2565), + [anon_sym_return] = ACTIONS(2565), + [anon_sym_source] = ACTIONS(2565), + [anon_sym_source_DASHenv] = ACTIONS(2565), + [anon_sym_register] = ACTIONS(2565), + [anon_sym_hide] = ACTIONS(2565), + [anon_sym_hide_DASHenv] = ACTIONS(2565), + [anon_sym_overlay] = ACTIONS(2565), + [anon_sym_new] = ACTIONS(2565), + [anon_sym_as] = ACTIONS(2565), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2565), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2565), + [aux_sym__val_number_decimal_token1] = ACTIONS(2565), + [aux_sym__val_number_decimal_token2] = ACTIONS(2565), + [aux_sym__val_number_decimal_token3] = ACTIONS(2565), + [aux_sym__val_number_decimal_token4] = ACTIONS(2565), + [aux_sym__val_number_token1] = ACTIONS(2565), + [aux_sym__val_number_token2] = ACTIONS(2565), + [aux_sym__val_number_token3] = ACTIONS(2565), + [anon_sym_DQUOTE] = ACTIONS(2565), + [sym__str_single_quotes] = ACTIONS(2565), + [sym__str_back_ticks] = ACTIONS(2565), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2565), + [sym__entry_separator] = ACTIONS(2567), + [anon_sym_PLUS] = ACTIONS(2565), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2567), }, - [666] = { - [sym_comment] = STATE(666), - [anon_sym_export] = ACTIONS(1822), - [anon_sym_alias] = ACTIONS(1822), - [anon_sym_let] = ACTIONS(1822), - [anon_sym_let_DASHenv] = ACTIONS(1822), - [anon_sym_mut] = ACTIONS(1822), - [anon_sym_const] = ACTIONS(1822), - [aux_sym_cmd_identifier_token1] = ACTIONS(1822), - [aux_sym_cmd_identifier_token2] = ACTIONS(1822), - [aux_sym_cmd_identifier_token3] = ACTIONS(1822), - [aux_sym_cmd_identifier_token4] = ACTIONS(1822), - [aux_sym_cmd_identifier_token5] = ACTIONS(1822), - [aux_sym_cmd_identifier_token6] = ACTIONS(1822), - [aux_sym_cmd_identifier_token7] = ACTIONS(1822), - [aux_sym_cmd_identifier_token8] = ACTIONS(1822), - [aux_sym_cmd_identifier_token9] = ACTIONS(1822), - [aux_sym_cmd_identifier_token10] = ACTIONS(1822), - [aux_sym_cmd_identifier_token11] = ACTIONS(1822), - [aux_sym_cmd_identifier_token12] = ACTIONS(1822), - [aux_sym_cmd_identifier_token13] = ACTIONS(1822), - [aux_sym_cmd_identifier_token14] = ACTIONS(1822), - [aux_sym_cmd_identifier_token15] = ACTIONS(1822), - [aux_sym_cmd_identifier_token16] = ACTIONS(1822), - [aux_sym_cmd_identifier_token17] = ACTIONS(1822), - [aux_sym_cmd_identifier_token18] = ACTIONS(1822), - [aux_sym_cmd_identifier_token19] = ACTIONS(1822), - [aux_sym_cmd_identifier_token20] = ACTIONS(1822), - [aux_sym_cmd_identifier_token21] = ACTIONS(1822), - [aux_sym_cmd_identifier_token22] = ACTIONS(1822), - [aux_sym_cmd_identifier_token23] = ACTIONS(1822), - [aux_sym_cmd_identifier_token24] = ACTIONS(1822), - [aux_sym_cmd_identifier_token25] = ACTIONS(1822), - [aux_sym_cmd_identifier_token26] = ACTIONS(1822), - [aux_sym_cmd_identifier_token27] = ACTIONS(1822), - [aux_sym_cmd_identifier_token28] = ACTIONS(1822), - [aux_sym_cmd_identifier_token29] = ACTIONS(1822), - [aux_sym_cmd_identifier_token30] = ACTIONS(1822), - [aux_sym_cmd_identifier_token31] = ACTIONS(1822), - [aux_sym_cmd_identifier_token32] = ACTIONS(1822), - [aux_sym_cmd_identifier_token33] = ACTIONS(1822), - [aux_sym_cmd_identifier_token34] = ACTIONS(1822), - [aux_sym_cmd_identifier_token35] = ACTIONS(1822), - [aux_sym_cmd_identifier_token36] = ACTIONS(1822), - [anon_sym_true] = ACTIONS(1826), - [anon_sym_false] = ACTIONS(1826), - [anon_sym_null] = ACTIONS(1826), - [aux_sym_cmd_identifier_token38] = ACTIONS(1822), - [aux_sym_cmd_identifier_token39] = ACTIONS(1826), - [aux_sym_cmd_identifier_token40] = ACTIONS(1826), - [anon_sym_def] = ACTIONS(1822), - [anon_sym_export_DASHenv] = ACTIONS(1822), - [anon_sym_extern] = ACTIONS(1822), - [anon_sym_module] = ACTIONS(1822), - [anon_sym_use] = ACTIONS(1822), - [anon_sym_LPAREN] = ACTIONS(1826), - [anon_sym_DOLLAR] = ACTIONS(1826), - [anon_sym_error] = ACTIONS(1822), - [anon_sym_list] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_break] = ACTIONS(1822), - [anon_sym_continue] = ACTIONS(1822), - [anon_sym_for] = ACTIONS(1822), - [anon_sym_in] = ACTIONS(1822), - [anon_sym_loop] = ACTIONS(1822), - [anon_sym_make] = ACTIONS(1822), - [anon_sym_while] = ACTIONS(1822), - [anon_sym_do] = ACTIONS(1822), - [anon_sym_if] = ACTIONS(1822), - [anon_sym_else] = ACTIONS(1822), - [anon_sym_match] = ACTIONS(1822), - [anon_sym_RBRACE] = ACTIONS(1826), - [anon_sym_try] = ACTIONS(1822), - [anon_sym_catch] = ACTIONS(1822), - [anon_sym_return] = ACTIONS(1822), - [anon_sym_source] = ACTIONS(1822), - [anon_sym_source_DASHenv] = ACTIONS(1822), - [anon_sym_register] = ACTIONS(1822), - [anon_sym_hide] = ACTIONS(1822), - [anon_sym_hide_DASHenv] = ACTIONS(1822), - [anon_sym_overlay] = ACTIONS(1822), - [anon_sym_new] = ACTIONS(1822), - [anon_sym_as] = ACTIONS(1822), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1826), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1826), - [aux_sym__val_number_decimal_token1] = ACTIONS(1822), - [aux_sym__val_number_decimal_token2] = ACTIONS(1826), - [aux_sym__val_number_decimal_token3] = ACTIONS(1826), - [aux_sym__val_number_decimal_token4] = ACTIONS(1826), - [aux_sym__val_number_token1] = ACTIONS(1826), - [aux_sym__val_number_token2] = ACTIONS(1826), - [aux_sym__val_number_token3] = ACTIONS(1826), - [anon_sym_DQUOTE] = ACTIONS(1826), - [sym__str_single_quotes] = ACTIONS(1826), - [sym__str_back_ticks] = ACTIONS(1826), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1826), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_POUND] = ACTIONS(247), + [628] = { + [sym_comment] = STATE(628), + [anon_sym_export] = ACTIONS(1062), + [anon_sym_alias] = ACTIONS(1062), + [anon_sym_let] = ACTIONS(1062), + [anon_sym_let_DASHenv] = ACTIONS(1062), + [anon_sym_mut] = ACTIONS(1062), + [anon_sym_const] = ACTIONS(1062), + [aux_sym_cmd_identifier_token1] = ACTIONS(1062), + [aux_sym_cmd_identifier_token2] = ACTIONS(1062), + [aux_sym_cmd_identifier_token3] = ACTIONS(1062), + [aux_sym_cmd_identifier_token4] = ACTIONS(1062), + [aux_sym_cmd_identifier_token5] = ACTIONS(1062), + [aux_sym_cmd_identifier_token6] = ACTIONS(1062), + [aux_sym_cmd_identifier_token7] = ACTIONS(1062), + [aux_sym_cmd_identifier_token8] = ACTIONS(1062), + [aux_sym_cmd_identifier_token9] = ACTIONS(1062), + [aux_sym_cmd_identifier_token10] = ACTIONS(1062), + [aux_sym_cmd_identifier_token11] = ACTIONS(1062), + [aux_sym_cmd_identifier_token12] = ACTIONS(1062), + [aux_sym_cmd_identifier_token13] = ACTIONS(1062), + [aux_sym_cmd_identifier_token14] = ACTIONS(1062), + [aux_sym_cmd_identifier_token15] = ACTIONS(1062), + [aux_sym_cmd_identifier_token16] = ACTIONS(1062), + [aux_sym_cmd_identifier_token17] = ACTIONS(1062), + [aux_sym_cmd_identifier_token18] = ACTIONS(1062), + [aux_sym_cmd_identifier_token19] = ACTIONS(1062), + [aux_sym_cmd_identifier_token20] = ACTIONS(1062), + [aux_sym_cmd_identifier_token21] = ACTIONS(1062), + [aux_sym_cmd_identifier_token22] = ACTIONS(1062), + [aux_sym_cmd_identifier_token23] = ACTIONS(1062), + [aux_sym_cmd_identifier_token24] = ACTIONS(1062), + [aux_sym_cmd_identifier_token25] = ACTIONS(1062), + [aux_sym_cmd_identifier_token26] = ACTIONS(1062), + [aux_sym_cmd_identifier_token27] = ACTIONS(1062), + [aux_sym_cmd_identifier_token28] = ACTIONS(1062), + [aux_sym_cmd_identifier_token29] = ACTIONS(1062), + [aux_sym_cmd_identifier_token30] = ACTIONS(1062), + [aux_sym_cmd_identifier_token31] = ACTIONS(1062), + [aux_sym_cmd_identifier_token32] = ACTIONS(1062), + [aux_sym_cmd_identifier_token33] = ACTIONS(1062), + [aux_sym_cmd_identifier_token34] = ACTIONS(1062), + [aux_sym_cmd_identifier_token35] = ACTIONS(1062), + [aux_sym_cmd_identifier_token36] = ACTIONS(1062), + [anon_sym_true] = ACTIONS(1062), + [anon_sym_false] = ACTIONS(1062), + [anon_sym_null] = ACTIONS(1062), + [aux_sym_cmd_identifier_token38] = ACTIONS(1062), + [aux_sym_cmd_identifier_token39] = ACTIONS(1062), + [aux_sym_cmd_identifier_token40] = ACTIONS(1062), + [anon_sym_def] = ACTIONS(1062), + [anon_sym_export_DASHenv] = ACTIONS(1062), + [anon_sym_extern] = ACTIONS(1062), + [anon_sym_module] = ACTIONS(1062), + [anon_sym_use] = ACTIONS(1062), + [anon_sym_LPAREN] = ACTIONS(1062), + [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_error] = ACTIONS(1062), + [anon_sym_list] = ACTIONS(1062), + [anon_sym_DASH] = ACTIONS(1062), + [anon_sym_break] = ACTIONS(1062), + [anon_sym_continue] = ACTIONS(1062), + [anon_sym_for] = ACTIONS(1062), + [anon_sym_in] = ACTIONS(1062), + [anon_sym_loop] = ACTIONS(1062), + [anon_sym_make] = ACTIONS(1062), + [anon_sym_while] = ACTIONS(1062), + [anon_sym_do] = ACTIONS(1062), + [anon_sym_if] = ACTIONS(1062), + [anon_sym_else] = ACTIONS(1062), + [anon_sym_match] = ACTIONS(1062), + [anon_sym_RBRACE] = ACTIONS(1062), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_catch] = ACTIONS(1062), + [anon_sym_return] = ACTIONS(1062), + [anon_sym_source] = ACTIONS(1062), + [anon_sym_source_DASHenv] = ACTIONS(1062), + [anon_sym_register] = ACTIONS(1062), + [anon_sym_hide] = ACTIONS(1062), + [anon_sym_hide_DASHenv] = ACTIONS(1062), + [anon_sym_overlay] = ACTIONS(1062), + [anon_sym_new] = ACTIONS(1062), + [anon_sym_as] = ACTIONS(1062), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1062), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1062), + [aux_sym__val_number_decimal_token1] = ACTIONS(1062), + [aux_sym__val_number_decimal_token2] = ACTIONS(1062), + [aux_sym__val_number_decimal_token3] = ACTIONS(1062), + [aux_sym__val_number_decimal_token4] = ACTIONS(1062), + [aux_sym__val_number_token1] = ACTIONS(1062), + [aux_sym__val_number_token2] = ACTIONS(1062), + [aux_sym__val_number_token3] = ACTIONS(1062), + [anon_sym_DQUOTE] = ACTIONS(1062), + [sym__str_single_quotes] = ACTIONS(1062), + [sym__str_back_ticks] = ACTIONS(1062), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1062), + [sym__entry_separator] = ACTIONS(1064), + [anon_sym_PLUS] = ACTIONS(1062), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1064), }, - [667] = { - [sym_comment] = STATE(667), - [anon_sym_export] = ACTIONS(2309), - [anon_sym_alias] = ACTIONS(2309), - [anon_sym_let] = ACTIONS(2309), - [anon_sym_let_DASHenv] = ACTIONS(2309), - [anon_sym_mut] = ACTIONS(2309), - [anon_sym_const] = ACTIONS(2309), - [aux_sym_cmd_identifier_token1] = ACTIONS(2309), - [aux_sym_cmd_identifier_token2] = ACTIONS(2309), - [aux_sym_cmd_identifier_token3] = ACTIONS(2309), - [aux_sym_cmd_identifier_token4] = ACTIONS(2309), - [aux_sym_cmd_identifier_token5] = ACTIONS(2309), - [aux_sym_cmd_identifier_token6] = ACTIONS(2309), - [aux_sym_cmd_identifier_token7] = ACTIONS(2309), - [aux_sym_cmd_identifier_token8] = ACTIONS(2309), - [aux_sym_cmd_identifier_token9] = ACTIONS(2309), - [aux_sym_cmd_identifier_token10] = ACTIONS(2309), - [aux_sym_cmd_identifier_token11] = ACTIONS(2309), - [aux_sym_cmd_identifier_token12] = ACTIONS(2309), - [aux_sym_cmd_identifier_token13] = ACTIONS(2309), - [aux_sym_cmd_identifier_token14] = ACTIONS(2309), - [aux_sym_cmd_identifier_token15] = ACTIONS(2309), - [aux_sym_cmd_identifier_token16] = ACTIONS(2309), - [aux_sym_cmd_identifier_token17] = ACTIONS(2309), - [aux_sym_cmd_identifier_token18] = ACTIONS(2309), - [aux_sym_cmd_identifier_token19] = ACTIONS(2309), - [aux_sym_cmd_identifier_token20] = ACTIONS(2309), - [aux_sym_cmd_identifier_token21] = ACTIONS(2309), - [aux_sym_cmd_identifier_token22] = ACTIONS(2309), - [aux_sym_cmd_identifier_token23] = ACTIONS(2309), - [aux_sym_cmd_identifier_token24] = ACTIONS(2309), - [aux_sym_cmd_identifier_token25] = ACTIONS(2309), - [aux_sym_cmd_identifier_token26] = ACTIONS(2309), - [aux_sym_cmd_identifier_token27] = ACTIONS(2309), - [aux_sym_cmd_identifier_token28] = ACTIONS(2309), - [aux_sym_cmd_identifier_token29] = ACTIONS(2309), - [aux_sym_cmd_identifier_token30] = ACTIONS(2309), - [aux_sym_cmd_identifier_token31] = ACTIONS(2309), - [aux_sym_cmd_identifier_token32] = ACTIONS(2309), - [aux_sym_cmd_identifier_token33] = ACTIONS(2309), - [aux_sym_cmd_identifier_token34] = ACTIONS(2309), - [aux_sym_cmd_identifier_token35] = ACTIONS(2309), - [aux_sym_cmd_identifier_token36] = ACTIONS(2309), - [anon_sym_true] = ACTIONS(2311), - [anon_sym_false] = ACTIONS(2311), - [anon_sym_null] = ACTIONS(2311), - [aux_sym_cmd_identifier_token38] = ACTIONS(2309), - [aux_sym_cmd_identifier_token39] = ACTIONS(2311), - [aux_sym_cmd_identifier_token40] = ACTIONS(2311), - [anon_sym_def] = ACTIONS(2309), - [anon_sym_export_DASHenv] = ACTIONS(2309), - [anon_sym_extern] = ACTIONS(2309), - [anon_sym_module] = ACTIONS(2309), - [anon_sym_use] = ACTIONS(2309), - [anon_sym_LPAREN] = ACTIONS(2311), - [anon_sym_DOLLAR] = ACTIONS(2311), - [anon_sym_error] = ACTIONS(2309), - [anon_sym_list] = ACTIONS(2309), - [anon_sym_DASH] = ACTIONS(2309), - [anon_sym_break] = ACTIONS(2309), - [anon_sym_continue] = ACTIONS(2309), - [anon_sym_for] = ACTIONS(2309), - [anon_sym_in] = ACTIONS(2309), - [anon_sym_loop] = ACTIONS(2309), - [anon_sym_make] = ACTIONS(2309), - [anon_sym_while] = ACTIONS(2309), - [anon_sym_do] = ACTIONS(2309), - [anon_sym_if] = ACTIONS(2309), - [anon_sym_else] = ACTIONS(2309), - [anon_sym_match] = ACTIONS(2309), - [anon_sym_RBRACE] = ACTIONS(2311), - [anon_sym_try] = ACTIONS(2309), - [anon_sym_catch] = ACTIONS(2309), - [anon_sym_return] = ACTIONS(2309), - [anon_sym_source] = ACTIONS(2309), - [anon_sym_source_DASHenv] = ACTIONS(2309), - [anon_sym_register] = ACTIONS(2309), - [anon_sym_hide] = ACTIONS(2309), - [anon_sym_hide_DASHenv] = ACTIONS(2309), - [anon_sym_overlay] = ACTIONS(2309), - [anon_sym_new] = ACTIONS(2309), - [anon_sym_as] = ACTIONS(2309), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2311), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2311), - [aux_sym__val_number_decimal_token1] = ACTIONS(2309), - [aux_sym__val_number_decimal_token2] = ACTIONS(2311), - [aux_sym__val_number_decimal_token3] = ACTIONS(2311), - [aux_sym__val_number_decimal_token4] = ACTIONS(2311), - [aux_sym__val_number_token1] = ACTIONS(2311), - [aux_sym__val_number_token2] = ACTIONS(2311), - [aux_sym__val_number_token3] = ACTIONS(2311), - [anon_sym_DQUOTE] = ACTIONS(2311), - [sym__str_single_quotes] = ACTIONS(2311), - [sym__str_back_ticks] = ACTIONS(2311), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2311), - [anon_sym_PLUS] = ACTIONS(2309), - [anon_sym_POUND] = ACTIONS(247), + [629] = { + [sym_comment] = STATE(629), + [anon_sym_export] = ACTIONS(2569), + [anon_sym_alias] = ACTIONS(2569), + [anon_sym_let] = ACTIONS(2569), + [anon_sym_let_DASHenv] = ACTIONS(2569), + [anon_sym_mut] = ACTIONS(2569), + [anon_sym_const] = ACTIONS(2569), + [aux_sym_cmd_identifier_token1] = ACTIONS(2569), + [aux_sym_cmd_identifier_token2] = ACTIONS(2569), + [aux_sym_cmd_identifier_token3] = ACTIONS(2569), + [aux_sym_cmd_identifier_token4] = ACTIONS(2569), + [aux_sym_cmd_identifier_token5] = ACTIONS(2569), + [aux_sym_cmd_identifier_token6] = ACTIONS(2569), + [aux_sym_cmd_identifier_token7] = ACTIONS(2569), + [aux_sym_cmd_identifier_token8] = ACTIONS(2569), + [aux_sym_cmd_identifier_token9] = ACTIONS(2569), + [aux_sym_cmd_identifier_token10] = ACTIONS(2569), + [aux_sym_cmd_identifier_token11] = ACTIONS(2569), + [aux_sym_cmd_identifier_token12] = ACTIONS(2569), + [aux_sym_cmd_identifier_token13] = ACTIONS(2569), + [aux_sym_cmd_identifier_token14] = ACTIONS(2569), + [aux_sym_cmd_identifier_token15] = ACTIONS(2569), + [aux_sym_cmd_identifier_token16] = ACTIONS(2569), + [aux_sym_cmd_identifier_token17] = ACTIONS(2569), + [aux_sym_cmd_identifier_token18] = ACTIONS(2569), + [aux_sym_cmd_identifier_token19] = ACTIONS(2569), + [aux_sym_cmd_identifier_token20] = ACTIONS(2569), + [aux_sym_cmd_identifier_token21] = ACTIONS(2569), + [aux_sym_cmd_identifier_token22] = ACTIONS(2569), + [aux_sym_cmd_identifier_token23] = ACTIONS(2569), + [aux_sym_cmd_identifier_token24] = ACTIONS(2569), + [aux_sym_cmd_identifier_token25] = ACTIONS(2569), + [aux_sym_cmd_identifier_token26] = ACTIONS(2569), + [aux_sym_cmd_identifier_token27] = ACTIONS(2569), + [aux_sym_cmd_identifier_token28] = ACTIONS(2569), + [aux_sym_cmd_identifier_token29] = ACTIONS(2569), + [aux_sym_cmd_identifier_token30] = ACTIONS(2569), + [aux_sym_cmd_identifier_token31] = ACTIONS(2569), + [aux_sym_cmd_identifier_token32] = ACTIONS(2569), + [aux_sym_cmd_identifier_token33] = ACTIONS(2569), + [aux_sym_cmd_identifier_token34] = ACTIONS(2569), + [aux_sym_cmd_identifier_token35] = ACTIONS(2569), + [aux_sym_cmd_identifier_token36] = ACTIONS(2569), + [anon_sym_true] = ACTIONS(2569), + [anon_sym_false] = ACTIONS(2569), + [anon_sym_null] = ACTIONS(2569), + [aux_sym_cmd_identifier_token38] = ACTIONS(2569), + [aux_sym_cmd_identifier_token39] = ACTIONS(2569), + [aux_sym_cmd_identifier_token40] = ACTIONS(2569), + [anon_sym_def] = ACTIONS(2569), + [anon_sym_export_DASHenv] = ACTIONS(2569), + [anon_sym_extern] = ACTIONS(2569), + [anon_sym_module] = ACTIONS(2569), + [anon_sym_use] = ACTIONS(2569), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_DOLLAR] = ACTIONS(2569), + [anon_sym_error] = ACTIONS(2569), + [anon_sym_list] = ACTIONS(2569), + [anon_sym_DASH] = ACTIONS(2569), + [anon_sym_break] = ACTIONS(2569), + [anon_sym_continue] = ACTIONS(2569), + [anon_sym_for] = ACTIONS(2569), + [anon_sym_in] = ACTIONS(2569), + [anon_sym_loop] = ACTIONS(2569), + [anon_sym_make] = ACTIONS(2569), + [anon_sym_while] = ACTIONS(2569), + [anon_sym_do] = ACTIONS(2569), + [anon_sym_if] = ACTIONS(2569), + [anon_sym_else] = ACTIONS(2569), + [anon_sym_match] = ACTIONS(2569), + [anon_sym_RBRACE] = ACTIONS(2569), + [anon_sym_try] = ACTIONS(2569), + [anon_sym_catch] = ACTIONS(2569), + [anon_sym_return] = ACTIONS(2569), + [anon_sym_source] = ACTIONS(2569), + [anon_sym_source_DASHenv] = ACTIONS(2569), + [anon_sym_register] = ACTIONS(2569), + [anon_sym_hide] = ACTIONS(2569), + [anon_sym_hide_DASHenv] = ACTIONS(2569), + [anon_sym_overlay] = ACTIONS(2569), + [anon_sym_new] = ACTIONS(2569), + [anon_sym_as] = ACTIONS(2569), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2569), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2569), + [aux_sym__val_number_decimal_token1] = ACTIONS(2569), + [aux_sym__val_number_decimal_token2] = ACTIONS(2569), + [aux_sym__val_number_decimal_token3] = ACTIONS(2569), + [aux_sym__val_number_decimal_token4] = ACTIONS(2569), + [aux_sym__val_number_token1] = ACTIONS(2569), + [aux_sym__val_number_token2] = ACTIONS(2569), + [aux_sym__val_number_token3] = ACTIONS(2569), + [anon_sym_DQUOTE] = ACTIONS(2569), + [sym__str_single_quotes] = ACTIONS(2569), + [sym__str_back_ticks] = ACTIONS(2569), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2569), + [sym__entry_separator] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2569), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2571), }, - [668] = { - [sym_comment] = STATE(668), - [anon_sym_export] = ACTIONS(2328), - [anon_sym_alias] = ACTIONS(2328), - [anon_sym_let] = ACTIONS(2328), - [anon_sym_let_DASHenv] = ACTIONS(2328), - [anon_sym_mut] = ACTIONS(2328), - [anon_sym_const] = ACTIONS(2328), - [aux_sym_cmd_identifier_token1] = ACTIONS(2328), - [aux_sym_cmd_identifier_token2] = ACTIONS(2328), - [aux_sym_cmd_identifier_token3] = ACTIONS(2328), - [aux_sym_cmd_identifier_token4] = ACTIONS(2328), - [aux_sym_cmd_identifier_token5] = ACTIONS(2328), - [aux_sym_cmd_identifier_token6] = ACTIONS(2328), - [aux_sym_cmd_identifier_token7] = ACTIONS(2328), - [aux_sym_cmd_identifier_token8] = ACTIONS(2328), - [aux_sym_cmd_identifier_token9] = ACTIONS(2328), - [aux_sym_cmd_identifier_token10] = ACTIONS(2328), - [aux_sym_cmd_identifier_token11] = ACTIONS(2328), - [aux_sym_cmd_identifier_token12] = ACTIONS(2328), - [aux_sym_cmd_identifier_token13] = ACTIONS(2328), - [aux_sym_cmd_identifier_token14] = ACTIONS(2328), - [aux_sym_cmd_identifier_token15] = ACTIONS(2328), - [aux_sym_cmd_identifier_token16] = ACTIONS(2328), - [aux_sym_cmd_identifier_token17] = ACTIONS(2328), - [aux_sym_cmd_identifier_token18] = ACTIONS(2328), - [aux_sym_cmd_identifier_token19] = ACTIONS(2328), - [aux_sym_cmd_identifier_token20] = ACTIONS(2328), - [aux_sym_cmd_identifier_token21] = ACTIONS(2328), - [aux_sym_cmd_identifier_token22] = ACTIONS(2328), - [aux_sym_cmd_identifier_token23] = ACTIONS(2328), - [aux_sym_cmd_identifier_token24] = ACTIONS(2328), - [aux_sym_cmd_identifier_token25] = ACTIONS(2328), - [aux_sym_cmd_identifier_token26] = ACTIONS(2328), - [aux_sym_cmd_identifier_token27] = ACTIONS(2328), - [aux_sym_cmd_identifier_token28] = ACTIONS(2328), - [aux_sym_cmd_identifier_token29] = ACTIONS(2328), - [aux_sym_cmd_identifier_token30] = ACTIONS(2328), - [aux_sym_cmd_identifier_token31] = ACTIONS(2328), - [aux_sym_cmd_identifier_token32] = ACTIONS(2328), - [aux_sym_cmd_identifier_token33] = ACTIONS(2328), - [aux_sym_cmd_identifier_token34] = ACTIONS(2328), - [aux_sym_cmd_identifier_token35] = ACTIONS(2328), - [aux_sym_cmd_identifier_token36] = ACTIONS(2328), - [anon_sym_true] = ACTIONS(2330), - [anon_sym_false] = ACTIONS(2330), - [anon_sym_null] = ACTIONS(2330), - [aux_sym_cmd_identifier_token38] = ACTIONS(2328), - [aux_sym_cmd_identifier_token39] = ACTIONS(2330), - [aux_sym_cmd_identifier_token40] = ACTIONS(2330), - [anon_sym_def] = ACTIONS(2328), - [anon_sym_export_DASHenv] = ACTIONS(2328), - [anon_sym_extern] = ACTIONS(2328), - [anon_sym_module] = ACTIONS(2328), - [anon_sym_use] = ACTIONS(2328), - [anon_sym_LPAREN] = ACTIONS(2330), - [anon_sym_DOLLAR] = ACTIONS(2330), - [anon_sym_error] = ACTIONS(2328), - [anon_sym_list] = ACTIONS(2328), - [anon_sym_DASH] = ACTIONS(2328), - [anon_sym_break] = ACTIONS(2328), - [anon_sym_continue] = ACTIONS(2328), - [anon_sym_for] = ACTIONS(2328), - [anon_sym_in] = ACTIONS(2328), - [anon_sym_loop] = ACTIONS(2328), - [anon_sym_make] = ACTIONS(2328), - [anon_sym_while] = ACTIONS(2328), - [anon_sym_do] = ACTIONS(2328), - [anon_sym_if] = ACTIONS(2328), - [anon_sym_else] = ACTIONS(2328), - [anon_sym_match] = ACTIONS(2328), - [anon_sym_RBRACE] = ACTIONS(2330), - [anon_sym_try] = ACTIONS(2328), - [anon_sym_catch] = ACTIONS(2328), - [anon_sym_return] = ACTIONS(2328), - [anon_sym_source] = ACTIONS(2328), - [anon_sym_source_DASHenv] = ACTIONS(2328), - [anon_sym_register] = ACTIONS(2328), - [anon_sym_hide] = ACTIONS(2328), - [anon_sym_hide_DASHenv] = ACTIONS(2328), - [anon_sym_overlay] = ACTIONS(2328), - [anon_sym_new] = ACTIONS(2328), - [anon_sym_as] = ACTIONS(2328), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2330), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2330), - [aux_sym__val_number_decimal_token1] = ACTIONS(2328), - [aux_sym__val_number_decimal_token2] = ACTIONS(2330), - [aux_sym__val_number_decimal_token3] = ACTIONS(2330), - [aux_sym__val_number_decimal_token4] = ACTIONS(2330), - [aux_sym__val_number_token1] = ACTIONS(2330), - [aux_sym__val_number_token2] = ACTIONS(2330), - [aux_sym__val_number_token3] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2330), - [sym__str_single_quotes] = ACTIONS(2330), - [sym__str_back_ticks] = ACTIONS(2330), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2330), - [anon_sym_PLUS] = ACTIONS(2328), - [anon_sym_POUND] = ACTIONS(247), + [630] = { + [sym_comment] = STATE(630), + [anon_sym_export] = ACTIONS(2234), + [anon_sym_alias] = ACTIONS(2234), + [anon_sym_let] = ACTIONS(2234), + [anon_sym_let_DASHenv] = ACTIONS(2234), + [anon_sym_mut] = ACTIONS(2234), + [anon_sym_const] = ACTIONS(2234), + [aux_sym_cmd_identifier_token1] = ACTIONS(2234), + [aux_sym_cmd_identifier_token2] = ACTIONS(2234), + [aux_sym_cmd_identifier_token3] = ACTIONS(2234), + [aux_sym_cmd_identifier_token4] = ACTIONS(2234), + [aux_sym_cmd_identifier_token5] = ACTIONS(2234), + [aux_sym_cmd_identifier_token6] = ACTIONS(2234), + [aux_sym_cmd_identifier_token7] = ACTIONS(2234), + [aux_sym_cmd_identifier_token8] = ACTIONS(2234), + [aux_sym_cmd_identifier_token9] = ACTIONS(2234), + [aux_sym_cmd_identifier_token10] = ACTIONS(2234), + [aux_sym_cmd_identifier_token11] = ACTIONS(2234), + [aux_sym_cmd_identifier_token12] = ACTIONS(2234), + [aux_sym_cmd_identifier_token13] = ACTIONS(2234), + [aux_sym_cmd_identifier_token14] = ACTIONS(2234), + [aux_sym_cmd_identifier_token15] = ACTIONS(2234), + [aux_sym_cmd_identifier_token16] = ACTIONS(2234), + [aux_sym_cmd_identifier_token17] = ACTIONS(2234), + [aux_sym_cmd_identifier_token18] = ACTIONS(2234), + [aux_sym_cmd_identifier_token19] = ACTIONS(2234), + [aux_sym_cmd_identifier_token20] = ACTIONS(2234), + [aux_sym_cmd_identifier_token21] = ACTIONS(2234), + [aux_sym_cmd_identifier_token22] = ACTIONS(2234), + [aux_sym_cmd_identifier_token23] = ACTIONS(2234), + [aux_sym_cmd_identifier_token24] = ACTIONS(2234), + [aux_sym_cmd_identifier_token25] = ACTIONS(2234), + [aux_sym_cmd_identifier_token26] = ACTIONS(2234), + [aux_sym_cmd_identifier_token27] = ACTIONS(2234), + [aux_sym_cmd_identifier_token28] = ACTIONS(2234), + [aux_sym_cmd_identifier_token29] = ACTIONS(2234), + [aux_sym_cmd_identifier_token30] = ACTIONS(2234), + [aux_sym_cmd_identifier_token31] = ACTIONS(2234), + [aux_sym_cmd_identifier_token32] = ACTIONS(2234), + [aux_sym_cmd_identifier_token33] = ACTIONS(2234), + [aux_sym_cmd_identifier_token34] = ACTIONS(2234), + [aux_sym_cmd_identifier_token35] = ACTIONS(2234), + [aux_sym_cmd_identifier_token36] = ACTIONS(2234), + [anon_sym_true] = ACTIONS(2234), + [anon_sym_false] = ACTIONS(2234), + [anon_sym_null] = ACTIONS(2234), + [aux_sym_cmd_identifier_token38] = ACTIONS(2234), + [aux_sym_cmd_identifier_token39] = ACTIONS(2234), + [aux_sym_cmd_identifier_token40] = ACTIONS(2234), + [anon_sym_def] = ACTIONS(2234), + [anon_sym_export_DASHenv] = ACTIONS(2234), + [anon_sym_extern] = ACTIONS(2234), + [anon_sym_module] = ACTIONS(2234), + [anon_sym_use] = ACTIONS(2234), + [anon_sym_LPAREN] = ACTIONS(2234), + [anon_sym_DOLLAR] = ACTIONS(2234), + [anon_sym_error] = ACTIONS(2234), + [anon_sym_list] = ACTIONS(2234), + [anon_sym_DASH] = ACTIONS(2234), + [anon_sym_break] = ACTIONS(2234), + [anon_sym_continue] = ACTIONS(2234), + [anon_sym_for] = ACTIONS(2234), + [anon_sym_in] = ACTIONS(2234), + [anon_sym_loop] = ACTIONS(2234), + [anon_sym_make] = ACTIONS(2234), + [anon_sym_while] = ACTIONS(2234), + [anon_sym_do] = ACTIONS(2234), + [anon_sym_if] = ACTIONS(2234), + [anon_sym_else] = ACTIONS(2234), + [anon_sym_match] = ACTIONS(2234), + [anon_sym_RBRACE] = ACTIONS(2234), + [anon_sym_try] = ACTIONS(2234), + [anon_sym_catch] = ACTIONS(2234), + [anon_sym_return] = ACTIONS(2234), + [anon_sym_source] = ACTIONS(2234), + [anon_sym_source_DASHenv] = ACTIONS(2234), + [anon_sym_register] = ACTIONS(2234), + [anon_sym_hide] = ACTIONS(2234), + [anon_sym_hide_DASHenv] = ACTIONS(2234), + [anon_sym_overlay] = ACTIONS(2234), + [anon_sym_new] = ACTIONS(2234), + [anon_sym_as] = ACTIONS(2234), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2234), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2234), + [aux_sym__val_number_decimal_token1] = ACTIONS(2234), + [aux_sym__val_number_decimal_token2] = ACTIONS(2234), + [aux_sym__val_number_decimal_token3] = ACTIONS(2234), + [aux_sym__val_number_decimal_token4] = ACTIONS(2234), + [aux_sym__val_number_token1] = ACTIONS(2234), + [aux_sym__val_number_token2] = ACTIONS(2234), + [aux_sym__val_number_token3] = ACTIONS(2234), + [anon_sym_DQUOTE] = ACTIONS(2234), + [sym__str_single_quotes] = ACTIONS(2234), + [sym__str_back_ticks] = ACTIONS(2234), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2234), + [sym__entry_separator] = ACTIONS(2240), + [anon_sym_PLUS] = ACTIONS(2234), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2240), }, - [669] = { - [sym_comment] = STATE(669), - [anon_sym_export] = ACTIONS(2338), - [anon_sym_alias] = ACTIONS(2338), - [anon_sym_let] = ACTIONS(2338), - [anon_sym_let_DASHenv] = ACTIONS(2338), - [anon_sym_mut] = ACTIONS(2338), - [anon_sym_const] = ACTIONS(2338), - [aux_sym_cmd_identifier_token1] = ACTIONS(2338), - [aux_sym_cmd_identifier_token2] = ACTIONS(2338), - [aux_sym_cmd_identifier_token3] = ACTIONS(2338), - [aux_sym_cmd_identifier_token4] = ACTIONS(2338), - [aux_sym_cmd_identifier_token5] = ACTIONS(2338), - [aux_sym_cmd_identifier_token6] = ACTIONS(2338), - [aux_sym_cmd_identifier_token7] = ACTIONS(2338), - [aux_sym_cmd_identifier_token8] = ACTIONS(2338), - [aux_sym_cmd_identifier_token9] = ACTIONS(2338), - [aux_sym_cmd_identifier_token10] = ACTIONS(2338), - [aux_sym_cmd_identifier_token11] = ACTIONS(2338), - [aux_sym_cmd_identifier_token12] = ACTIONS(2338), - [aux_sym_cmd_identifier_token13] = ACTIONS(2338), - [aux_sym_cmd_identifier_token14] = ACTIONS(2338), - [aux_sym_cmd_identifier_token15] = ACTIONS(2338), - [aux_sym_cmd_identifier_token16] = ACTIONS(2338), - [aux_sym_cmd_identifier_token17] = ACTIONS(2338), - [aux_sym_cmd_identifier_token18] = ACTIONS(2338), - [aux_sym_cmd_identifier_token19] = ACTIONS(2338), - [aux_sym_cmd_identifier_token20] = ACTIONS(2338), - [aux_sym_cmd_identifier_token21] = ACTIONS(2338), - [aux_sym_cmd_identifier_token22] = ACTIONS(2338), - [aux_sym_cmd_identifier_token23] = ACTIONS(2338), - [aux_sym_cmd_identifier_token24] = ACTIONS(2338), - [aux_sym_cmd_identifier_token25] = ACTIONS(2338), - [aux_sym_cmd_identifier_token26] = ACTIONS(2338), - [aux_sym_cmd_identifier_token27] = ACTIONS(2338), - [aux_sym_cmd_identifier_token28] = ACTIONS(2338), - [aux_sym_cmd_identifier_token29] = ACTIONS(2338), - [aux_sym_cmd_identifier_token30] = ACTIONS(2338), - [aux_sym_cmd_identifier_token31] = ACTIONS(2338), - [aux_sym_cmd_identifier_token32] = ACTIONS(2338), - [aux_sym_cmd_identifier_token33] = ACTIONS(2338), - [aux_sym_cmd_identifier_token34] = ACTIONS(2338), - [aux_sym_cmd_identifier_token35] = ACTIONS(2338), - [aux_sym_cmd_identifier_token36] = ACTIONS(2338), - [anon_sym_true] = ACTIONS(2340), - [anon_sym_false] = ACTIONS(2340), - [anon_sym_null] = ACTIONS(2340), - [aux_sym_cmd_identifier_token38] = ACTIONS(2338), - [aux_sym_cmd_identifier_token39] = ACTIONS(2340), - [aux_sym_cmd_identifier_token40] = ACTIONS(2340), - [anon_sym_def] = ACTIONS(2338), - [anon_sym_export_DASHenv] = ACTIONS(2338), - [anon_sym_extern] = ACTIONS(2338), - [anon_sym_module] = ACTIONS(2338), - [anon_sym_use] = ACTIONS(2338), - [anon_sym_LPAREN] = ACTIONS(2340), - [anon_sym_DOLLAR] = ACTIONS(2340), - [anon_sym_error] = ACTIONS(2338), - [anon_sym_list] = ACTIONS(2338), - [anon_sym_DASH] = ACTIONS(2338), - [anon_sym_break] = ACTIONS(2338), - [anon_sym_continue] = ACTIONS(2338), - [anon_sym_for] = ACTIONS(2338), - [anon_sym_in] = ACTIONS(2338), - [anon_sym_loop] = ACTIONS(2338), - [anon_sym_make] = ACTIONS(2338), - [anon_sym_while] = ACTIONS(2338), - [anon_sym_do] = ACTIONS(2338), - [anon_sym_if] = ACTIONS(2338), - [anon_sym_else] = ACTIONS(2338), - [anon_sym_match] = ACTIONS(2338), - [anon_sym_RBRACE] = ACTIONS(2340), - [anon_sym_try] = ACTIONS(2338), - [anon_sym_catch] = ACTIONS(2338), - [anon_sym_return] = ACTIONS(2338), - [anon_sym_source] = ACTIONS(2338), - [anon_sym_source_DASHenv] = ACTIONS(2338), - [anon_sym_register] = ACTIONS(2338), - [anon_sym_hide] = ACTIONS(2338), - [anon_sym_hide_DASHenv] = ACTIONS(2338), - [anon_sym_overlay] = ACTIONS(2338), - [anon_sym_new] = ACTIONS(2338), - [anon_sym_as] = ACTIONS(2338), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2340), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2340), - [aux_sym__val_number_decimal_token1] = ACTIONS(2338), - [aux_sym__val_number_decimal_token2] = ACTIONS(2340), - [aux_sym__val_number_decimal_token3] = ACTIONS(2340), - [aux_sym__val_number_decimal_token4] = ACTIONS(2340), - [aux_sym__val_number_token1] = ACTIONS(2340), - [aux_sym__val_number_token2] = ACTIONS(2340), - [aux_sym__val_number_token3] = ACTIONS(2340), - [anon_sym_DQUOTE] = ACTIONS(2340), - [sym__str_single_quotes] = ACTIONS(2340), - [sym__str_back_ticks] = ACTIONS(2340), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2340), - [anon_sym_PLUS] = ACTIONS(2338), - [anon_sym_POUND] = ACTIONS(247), + [631] = { + [sym_comment] = STATE(631), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_alias] = ACTIONS(1074), + [anon_sym_let] = ACTIONS(1074), + [anon_sym_let_DASHenv] = ACTIONS(1074), + [anon_sym_mut] = ACTIONS(1074), + [anon_sym_const] = ACTIONS(1074), + [aux_sym_cmd_identifier_token1] = ACTIONS(1074), + [aux_sym_cmd_identifier_token2] = ACTIONS(1074), + [aux_sym_cmd_identifier_token3] = ACTIONS(1074), + [aux_sym_cmd_identifier_token4] = ACTIONS(1074), + [aux_sym_cmd_identifier_token5] = ACTIONS(1074), + [aux_sym_cmd_identifier_token6] = ACTIONS(1074), + [aux_sym_cmd_identifier_token7] = ACTIONS(1074), + [aux_sym_cmd_identifier_token8] = ACTIONS(1074), + [aux_sym_cmd_identifier_token9] = ACTIONS(1074), + [aux_sym_cmd_identifier_token10] = ACTIONS(1074), + [aux_sym_cmd_identifier_token11] = ACTIONS(1074), + [aux_sym_cmd_identifier_token12] = ACTIONS(1074), + [aux_sym_cmd_identifier_token13] = ACTIONS(1074), + [aux_sym_cmd_identifier_token14] = ACTIONS(1074), + [aux_sym_cmd_identifier_token15] = ACTIONS(1074), + [aux_sym_cmd_identifier_token16] = ACTIONS(1074), + [aux_sym_cmd_identifier_token17] = ACTIONS(1074), + [aux_sym_cmd_identifier_token18] = ACTIONS(1074), + [aux_sym_cmd_identifier_token19] = ACTIONS(1074), + [aux_sym_cmd_identifier_token20] = ACTIONS(1074), + [aux_sym_cmd_identifier_token21] = ACTIONS(1074), + [aux_sym_cmd_identifier_token22] = ACTIONS(1074), + [aux_sym_cmd_identifier_token23] = ACTIONS(1074), + [aux_sym_cmd_identifier_token24] = ACTIONS(1074), + [aux_sym_cmd_identifier_token25] = ACTIONS(1074), + [aux_sym_cmd_identifier_token26] = ACTIONS(1074), + [aux_sym_cmd_identifier_token27] = ACTIONS(1074), + [aux_sym_cmd_identifier_token28] = ACTIONS(1074), + [aux_sym_cmd_identifier_token29] = ACTIONS(1074), + [aux_sym_cmd_identifier_token30] = ACTIONS(1074), + [aux_sym_cmd_identifier_token31] = ACTIONS(1074), + [aux_sym_cmd_identifier_token32] = ACTIONS(1074), + [aux_sym_cmd_identifier_token33] = ACTIONS(1074), + [aux_sym_cmd_identifier_token34] = ACTIONS(1074), + [aux_sym_cmd_identifier_token35] = ACTIONS(1074), + [aux_sym_cmd_identifier_token36] = ACTIONS(1074), + [anon_sym_true] = ACTIONS(1076), + [anon_sym_false] = ACTIONS(1076), + [anon_sym_null] = ACTIONS(1076), + [aux_sym_cmd_identifier_token38] = ACTIONS(1074), + [aux_sym_cmd_identifier_token39] = ACTIONS(1076), + [aux_sym_cmd_identifier_token40] = ACTIONS(1076), + [anon_sym_def] = ACTIONS(1074), + [anon_sym_export_DASHenv] = ACTIONS(1074), + [anon_sym_extern] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_use] = ACTIONS(1074), + [anon_sym_LPAREN] = ACTIONS(1076), + [anon_sym_DOLLAR] = ACTIONS(1076), + [anon_sym_error] = ACTIONS(1074), + [anon_sym_list] = ACTIONS(1074), + [anon_sym_DASH] = ACTIONS(1074), + [anon_sym_break] = ACTIONS(1074), + [anon_sym_continue] = ACTIONS(1074), + [anon_sym_for] = ACTIONS(1074), + [anon_sym_in] = ACTIONS(1074), + [anon_sym_loop] = ACTIONS(1074), + [anon_sym_make] = ACTIONS(1074), + [anon_sym_while] = ACTIONS(1074), + [anon_sym_do] = ACTIONS(1074), + [anon_sym_if] = ACTIONS(1074), + [anon_sym_else] = ACTIONS(1074), + [anon_sym_match] = ACTIONS(1074), + [anon_sym_RBRACE] = ACTIONS(1076), + [anon_sym_try] = ACTIONS(1074), + [anon_sym_catch] = ACTIONS(1074), + [anon_sym_return] = ACTIONS(1074), + [anon_sym_source] = ACTIONS(1074), + [anon_sym_source_DASHenv] = ACTIONS(1074), + [anon_sym_register] = ACTIONS(1074), + [anon_sym_hide] = ACTIONS(1074), + [anon_sym_hide_DASHenv] = ACTIONS(1074), + [anon_sym_overlay] = ACTIONS(1074), + [anon_sym_new] = ACTIONS(1074), + [anon_sym_as] = ACTIONS(1074), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1076), + [anon_sym_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1076), + [aux_sym__val_number_decimal_token1] = ACTIONS(1074), + [aux_sym__val_number_decimal_token2] = ACTIONS(1076), + [aux_sym__val_number_decimal_token3] = ACTIONS(1076), + [aux_sym__val_number_decimal_token4] = ACTIONS(1076), + [aux_sym__val_number_token1] = ACTIONS(1076), + [aux_sym__val_number_token2] = ACTIONS(1076), + [aux_sym__val_number_token3] = ACTIONS(1076), + [anon_sym_DQUOTE] = ACTIONS(1076), + [sym__str_single_quotes] = ACTIONS(1076), + [sym__str_back_ticks] = ACTIONS(1076), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1076), + [anon_sym_PLUS] = ACTIONS(1074), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1076), }, - [670] = { - [sym_comment] = STATE(670), - [anon_sym_export] = ACTIONS(2342), - [anon_sym_alias] = ACTIONS(2342), - [anon_sym_let] = ACTIONS(2342), - [anon_sym_let_DASHenv] = ACTIONS(2342), - [anon_sym_mut] = ACTIONS(2342), - [anon_sym_const] = ACTIONS(2342), - [aux_sym_cmd_identifier_token1] = ACTIONS(2342), - [aux_sym_cmd_identifier_token2] = ACTIONS(2342), - [aux_sym_cmd_identifier_token3] = ACTIONS(2342), - [aux_sym_cmd_identifier_token4] = ACTIONS(2342), - [aux_sym_cmd_identifier_token5] = ACTIONS(2342), - [aux_sym_cmd_identifier_token6] = ACTIONS(2342), - [aux_sym_cmd_identifier_token7] = ACTIONS(2342), - [aux_sym_cmd_identifier_token8] = ACTIONS(2342), - [aux_sym_cmd_identifier_token9] = ACTIONS(2342), - [aux_sym_cmd_identifier_token10] = ACTIONS(2342), - [aux_sym_cmd_identifier_token11] = ACTIONS(2342), - [aux_sym_cmd_identifier_token12] = ACTIONS(2342), - [aux_sym_cmd_identifier_token13] = ACTIONS(2342), - [aux_sym_cmd_identifier_token14] = ACTIONS(2342), - [aux_sym_cmd_identifier_token15] = ACTIONS(2342), - [aux_sym_cmd_identifier_token16] = ACTIONS(2342), - [aux_sym_cmd_identifier_token17] = ACTIONS(2342), - [aux_sym_cmd_identifier_token18] = ACTIONS(2342), - [aux_sym_cmd_identifier_token19] = ACTIONS(2342), - [aux_sym_cmd_identifier_token20] = ACTIONS(2342), - [aux_sym_cmd_identifier_token21] = ACTIONS(2342), - [aux_sym_cmd_identifier_token22] = ACTIONS(2342), - [aux_sym_cmd_identifier_token23] = ACTIONS(2342), - [aux_sym_cmd_identifier_token24] = ACTIONS(2342), - [aux_sym_cmd_identifier_token25] = ACTIONS(2342), - [aux_sym_cmd_identifier_token26] = ACTIONS(2342), - [aux_sym_cmd_identifier_token27] = ACTIONS(2342), - [aux_sym_cmd_identifier_token28] = ACTIONS(2342), - [aux_sym_cmd_identifier_token29] = ACTIONS(2342), - [aux_sym_cmd_identifier_token30] = ACTIONS(2342), - [aux_sym_cmd_identifier_token31] = ACTIONS(2342), - [aux_sym_cmd_identifier_token32] = ACTIONS(2342), - [aux_sym_cmd_identifier_token33] = ACTIONS(2342), - [aux_sym_cmd_identifier_token34] = ACTIONS(2342), - [aux_sym_cmd_identifier_token35] = ACTIONS(2342), - [aux_sym_cmd_identifier_token36] = ACTIONS(2342), - [anon_sym_true] = ACTIONS(2344), - [anon_sym_false] = ACTIONS(2344), - [anon_sym_null] = ACTIONS(2344), - [aux_sym_cmd_identifier_token38] = ACTIONS(2342), - [aux_sym_cmd_identifier_token39] = ACTIONS(2344), - [aux_sym_cmd_identifier_token40] = ACTIONS(2344), - [anon_sym_def] = ACTIONS(2342), - [anon_sym_export_DASHenv] = ACTIONS(2342), - [anon_sym_extern] = ACTIONS(2342), - [anon_sym_module] = ACTIONS(2342), - [anon_sym_use] = ACTIONS(2342), - [anon_sym_LPAREN] = ACTIONS(2344), - [anon_sym_DOLLAR] = ACTIONS(2344), - [anon_sym_error] = ACTIONS(2342), - [anon_sym_list] = ACTIONS(2342), - [anon_sym_DASH] = ACTIONS(2342), - [anon_sym_break] = ACTIONS(2342), - [anon_sym_continue] = ACTIONS(2342), - [anon_sym_for] = ACTIONS(2342), - [anon_sym_in] = ACTIONS(2342), - [anon_sym_loop] = ACTIONS(2342), - [anon_sym_make] = ACTIONS(2342), - [anon_sym_while] = ACTIONS(2342), - [anon_sym_do] = ACTIONS(2342), - [anon_sym_if] = ACTIONS(2342), - [anon_sym_else] = ACTIONS(2342), - [anon_sym_match] = ACTIONS(2342), - [anon_sym_RBRACE] = ACTIONS(2344), - [anon_sym_try] = ACTIONS(2342), - [anon_sym_catch] = ACTIONS(2342), - [anon_sym_return] = ACTIONS(2342), - [anon_sym_source] = ACTIONS(2342), - [anon_sym_source_DASHenv] = ACTIONS(2342), - [anon_sym_register] = ACTIONS(2342), - [anon_sym_hide] = ACTIONS(2342), - [anon_sym_hide_DASHenv] = ACTIONS(2342), - [anon_sym_overlay] = ACTIONS(2342), - [anon_sym_new] = ACTIONS(2342), - [anon_sym_as] = ACTIONS(2342), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2344), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2344), - [aux_sym__val_number_decimal_token1] = ACTIONS(2342), - [aux_sym__val_number_decimal_token2] = ACTIONS(2344), - [aux_sym__val_number_decimal_token3] = ACTIONS(2344), - [aux_sym__val_number_decimal_token4] = ACTIONS(2344), - [aux_sym__val_number_token1] = ACTIONS(2344), - [aux_sym__val_number_token2] = ACTIONS(2344), - [aux_sym__val_number_token3] = ACTIONS(2344), - [anon_sym_DQUOTE] = ACTIONS(2344), - [sym__str_single_quotes] = ACTIONS(2344), - [sym__str_back_ticks] = ACTIONS(2344), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2344), - [anon_sym_PLUS] = ACTIONS(2342), - [anon_sym_POUND] = ACTIONS(247), + [632] = { + [sym_comment] = STATE(632), + [anon_sym_export] = ACTIONS(2569), + [anon_sym_alias] = ACTIONS(2569), + [anon_sym_let] = ACTIONS(2569), + [anon_sym_let_DASHenv] = ACTIONS(2569), + [anon_sym_mut] = ACTIONS(2569), + [anon_sym_const] = ACTIONS(2569), + [aux_sym_cmd_identifier_token1] = ACTIONS(2569), + [aux_sym_cmd_identifier_token2] = ACTIONS(2569), + [aux_sym_cmd_identifier_token3] = ACTIONS(2569), + [aux_sym_cmd_identifier_token4] = ACTIONS(2569), + [aux_sym_cmd_identifier_token5] = ACTIONS(2569), + [aux_sym_cmd_identifier_token6] = ACTIONS(2569), + [aux_sym_cmd_identifier_token7] = ACTIONS(2569), + [aux_sym_cmd_identifier_token8] = ACTIONS(2569), + [aux_sym_cmd_identifier_token9] = ACTIONS(2569), + [aux_sym_cmd_identifier_token10] = ACTIONS(2569), + [aux_sym_cmd_identifier_token11] = ACTIONS(2569), + [aux_sym_cmd_identifier_token12] = ACTIONS(2569), + [aux_sym_cmd_identifier_token13] = ACTIONS(2569), + [aux_sym_cmd_identifier_token14] = ACTIONS(2569), + [aux_sym_cmd_identifier_token15] = ACTIONS(2569), + [aux_sym_cmd_identifier_token16] = ACTIONS(2569), + [aux_sym_cmd_identifier_token17] = ACTIONS(2569), + [aux_sym_cmd_identifier_token18] = ACTIONS(2569), + [aux_sym_cmd_identifier_token19] = ACTIONS(2569), + [aux_sym_cmd_identifier_token20] = ACTIONS(2569), + [aux_sym_cmd_identifier_token21] = ACTIONS(2569), + [aux_sym_cmd_identifier_token22] = ACTIONS(2569), + [aux_sym_cmd_identifier_token23] = ACTIONS(2569), + [aux_sym_cmd_identifier_token24] = ACTIONS(2569), + [aux_sym_cmd_identifier_token25] = ACTIONS(2569), + [aux_sym_cmd_identifier_token26] = ACTIONS(2569), + [aux_sym_cmd_identifier_token27] = ACTIONS(2569), + [aux_sym_cmd_identifier_token28] = ACTIONS(2569), + [aux_sym_cmd_identifier_token29] = ACTIONS(2569), + [aux_sym_cmd_identifier_token30] = ACTIONS(2569), + [aux_sym_cmd_identifier_token31] = ACTIONS(2569), + [aux_sym_cmd_identifier_token32] = ACTIONS(2569), + [aux_sym_cmd_identifier_token33] = ACTIONS(2569), + [aux_sym_cmd_identifier_token34] = ACTIONS(2569), + [aux_sym_cmd_identifier_token35] = ACTIONS(2569), + [aux_sym_cmd_identifier_token36] = ACTIONS(2569), + [anon_sym_true] = ACTIONS(2571), + [anon_sym_false] = ACTIONS(2571), + [anon_sym_null] = ACTIONS(2571), + [aux_sym_cmd_identifier_token38] = ACTIONS(2569), + [aux_sym_cmd_identifier_token39] = ACTIONS(2571), + [aux_sym_cmd_identifier_token40] = ACTIONS(2571), + [anon_sym_def] = ACTIONS(2569), + [anon_sym_export_DASHenv] = ACTIONS(2569), + [anon_sym_extern] = ACTIONS(2569), + [anon_sym_module] = ACTIONS(2569), + [anon_sym_use] = ACTIONS(2569), + [anon_sym_LPAREN] = ACTIONS(2571), + [anon_sym_DOLLAR] = ACTIONS(2571), + [anon_sym_error] = ACTIONS(2569), + [anon_sym_list] = ACTIONS(2569), + [anon_sym_DASH] = ACTIONS(2569), + [anon_sym_break] = ACTIONS(2569), + [anon_sym_continue] = ACTIONS(2569), + [anon_sym_for] = ACTIONS(2569), + [anon_sym_in] = ACTIONS(2569), + [anon_sym_loop] = ACTIONS(2569), + [anon_sym_make] = ACTIONS(2569), + [anon_sym_while] = ACTIONS(2569), + [anon_sym_do] = ACTIONS(2569), + [anon_sym_if] = ACTIONS(2569), + [anon_sym_else] = ACTIONS(2569), + [anon_sym_match] = ACTIONS(2569), + [anon_sym_RBRACE] = ACTIONS(2571), + [anon_sym_try] = ACTIONS(2569), + [anon_sym_catch] = ACTIONS(2569), + [anon_sym_return] = ACTIONS(2569), + [anon_sym_source] = ACTIONS(2569), + [anon_sym_source_DASHenv] = ACTIONS(2569), + [anon_sym_register] = ACTIONS(2569), + [anon_sym_hide] = ACTIONS(2569), + [anon_sym_hide_DASHenv] = ACTIONS(2569), + [anon_sym_overlay] = ACTIONS(2569), + [anon_sym_new] = ACTIONS(2569), + [anon_sym_as] = ACTIONS(2569), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2571), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2571), + [aux_sym__val_number_decimal_token1] = ACTIONS(2569), + [aux_sym__val_number_decimal_token2] = ACTIONS(2571), + [aux_sym__val_number_decimal_token3] = ACTIONS(2571), + [aux_sym__val_number_decimal_token4] = ACTIONS(2571), + [aux_sym__val_number_token1] = ACTIONS(2571), + [aux_sym__val_number_token2] = ACTIONS(2571), + [aux_sym__val_number_token3] = ACTIONS(2571), + [anon_sym_DQUOTE] = ACTIONS(2571), + [sym__str_single_quotes] = ACTIONS(2571), + [sym__str_back_ticks] = ACTIONS(2571), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2569), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2571), }, - [671] = { - [sym_comment] = STATE(671), - [anon_sym_export] = ACTIONS(2348), - [anon_sym_alias] = ACTIONS(2348), - [anon_sym_let] = ACTIONS(2348), - [anon_sym_let_DASHenv] = ACTIONS(2348), - [anon_sym_mut] = ACTIONS(2348), - [anon_sym_const] = ACTIONS(2348), - [aux_sym_cmd_identifier_token1] = ACTIONS(2348), - [aux_sym_cmd_identifier_token2] = ACTIONS(2348), - [aux_sym_cmd_identifier_token3] = ACTIONS(2348), - [aux_sym_cmd_identifier_token4] = ACTIONS(2348), - [aux_sym_cmd_identifier_token5] = ACTIONS(2348), - [aux_sym_cmd_identifier_token6] = ACTIONS(2348), - [aux_sym_cmd_identifier_token7] = ACTIONS(2348), - [aux_sym_cmd_identifier_token8] = ACTIONS(2348), - [aux_sym_cmd_identifier_token9] = ACTIONS(2348), - [aux_sym_cmd_identifier_token10] = ACTIONS(2348), - [aux_sym_cmd_identifier_token11] = ACTIONS(2348), - [aux_sym_cmd_identifier_token12] = ACTIONS(2348), - [aux_sym_cmd_identifier_token13] = ACTIONS(2348), - [aux_sym_cmd_identifier_token14] = ACTIONS(2348), - [aux_sym_cmd_identifier_token15] = ACTIONS(2348), - [aux_sym_cmd_identifier_token16] = ACTIONS(2348), - [aux_sym_cmd_identifier_token17] = ACTIONS(2348), - [aux_sym_cmd_identifier_token18] = ACTIONS(2348), - [aux_sym_cmd_identifier_token19] = ACTIONS(2348), - [aux_sym_cmd_identifier_token20] = ACTIONS(2348), - [aux_sym_cmd_identifier_token21] = ACTIONS(2348), - [aux_sym_cmd_identifier_token22] = ACTIONS(2348), - [aux_sym_cmd_identifier_token23] = ACTIONS(2348), - [aux_sym_cmd_identifier_token24] = ACTIONS(2348), - [aux_sym_cmd_identifier_token25] = ACTIONS(2348), - [aux_sym_cmd_identifier_token26] = ACTIONS(2348), - [aux_sym_cmd_identifier_token27] = ACTIONS(2348), - [aux_sym_cmd_identifier_token28] = ACTIONS(2348), - [aux_sym_cmd_identifier_token29] = ACTIONS(2348), - [aux_sym_cmd_identifier_token30] = ACTIONS(2348), - [aux_sym_cmd_identifier_token31] = ACTIONS(2348), - [aux_sym_cmd_identifier_token32] = ACTIONS(2348), - [aux_sym_cmd_identifier_token33] = ACTIONS(2348), - [aux_sym_cmd_identifier_token34] = ACTIONS(2348), - [aux_sym_cmd_identifier_token35] = ACTIONS(2348), - [aux_sym_cmd_identifier_token36] = ACTIONS(2348), - [anon_sym_true] = ACTIONS(2350), - [anon_sym_false] = ACTIONS(2350), - [anon_sym_null] = ACTIONS(2350), - [aux_sym_cmd_identifier_token38] = ACTIONS(2348), - [aux_sym_cmd_identifier_token39] = ACTIONS(2350), - [aux_sym_cmd_identifier_token40] = ACTIONS(2350), - [anon_sym_def] = ACTIONS(2348), - [anon_sym_export_DASHenv] = ACTIONS(2348), - [anon_sym_extern] = ACTIONS(2348), - [anon_sym_module] = ACTIONS(2348), - [anon_sym_use] = ACTIONS(2348), - [anon_sym_LPAREN] = ACTIONS(2350), - [anon_sym_DOLLAR] = ACTIONS(2350), - [anon_sym_error] = ACTIONS(2348), - [anon_sym_list] = ACTIONS(2348), - [anon_sym_DASH] = ACTIONS(2348), - [anon_sym_break] = ACTIONS(2348), - [anon_sym_continue] = ACTIONS(2348), - [anon_sym_for] = ACTIONS(2348), - [anon_sym_in] = ACTIONS(2348), - [anon_sym_loop] = ACTIONS(2348), - [anon_sym_make] = ACTIONS(2348), - [anon_sym_while] = ACTIONS(2348), - [anon_sym_do] = ACTIONS(2348), - [anon_sym_if] = ACTIONS(2348), - [anon_sym_else] = ACTIONS(2348), - [anon_sym_match] = ACTIONS(2348), - [anon_sym_RBRACE] = ACTIONS(2350), - [anon_sym_try] = ACTIONS(2348), - [anon_sym_catch] = ACTIONS(2348), - [anon_sym_return] = ACTIONS(2348), - [anon_sym_source] = ACTIONS(2348), - [anon_sym_source_DASHenv] = ACTIONS(2348), - [anon_sym_register] = ACTIONS(2348), - [anon_sym_hide] = ACTIONS(2348), - [anon_sym_hide_DASHenv] = ACTIONS(2348), - [anon_sym_overlay] = ACTIONS(2348), - [anon_sym_new] = ACTIONS(2348), - [anon_sym_as] = ACTIONS(2348), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2350), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2350), - [aux_sym__val_number_decimal_token1] = ACTIONS(2348), - [aux_sym__val_number_decimal_token2] = ACTIONS(2350), - [aux_sym__val_number_decimal_token3] = ACTIONS(2350), - [aux_sym__val_number_decimal_token4] = ACTIONS(2350), - [aux_sym__val_number_token1] = ACTIONS(2350), - [aux_sym__val_number_token2] = ACTIONS(2350), - [aux_sym__val_number_token3] = ACTIONS(2350), - [anon_sym_DQUOTE] = ACTIONS(2350), - [sym__str_single_quotes] = ACTIONS(2350), - [sym__str_back_ticks] = ACTIONS(2350), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2350), - [anon_sym_PLUS] = ACTIONS(2348), - [anon_sym_POUND] = ACTIONS(247), + [633] = { + [sym_comment] = STATE(633), + [anon_sym_export] = ACTIONS(2516), + [anon_sym_alias] = ACTIONS(2516), + [anon_sym_let] = ACTIONS(2516), + [anon_sym_let_DASHenv] = ACTIONS(2516), + [anon_sym_mut] = ACTIONS(2516), + [anon_sym_const] = ACTIONS(2516), + [aux_sym_cmd_identifier_token1] = ACTIONS(2516), + [aux_sym_cmd_identifier_token2] = ACTIONS(2516), + [aux_sym_cmd_identifier_token3] = ACTIONS(2516), + [aux_sym_cmd_identifier_token4] = ACTIONS(2516), + [aux_sym_cmd_identifier_token5] = ACTIONS(2516), + [aux_sym_cmd_identifier_token6] = ACTIONS(2516), + [aux_sym_cmd_identifier_token7] = ACTIONS(2516), + [aux_sym_cmd_identifier_token8] = ACTIONS(2516), + [aux_sym_cmd_identifier_token9] = ACTIONS(2516), + [aux_sym_cmd_identifier_token10] = ACTIONS(2516), + [aux_sym_cmd_identifier_token11] = ACTIONS(2516), + [aux_sym_cmd_identifier_token12] = ACTIONS(2516), + [aux_sym_cmd_identifier_token13] = ACTIONS(2516), + [aux_sym_cmd_identifier_token14] = ACTIONS(2516), + [aux_sym_cmd_identifier_token15] = ACTIONS(2516), + [aux_sym_cmd_identifier_token16] = ACTIONS(2516), + [aux_sym_cmd_identifier_token17] = ACTIONS(2516), + [aux_sym_cmd_identifier_token18] = ACTIONS(2516), + [aux_sym_cmd_identifier_token19] = ACTIONS(2516), + [aux_sym_cmd_identifier_token20] = ACTIONS(2516), + [aux_sym_cmd_identifier_token21] = ACTIONS(2516), + [aux_sym_cmd_identifier_token22] = ACTIONS(2516), + [aux_sym_cmd_identifier_token23] = ACTIONS(2516), + [aux_sym_cmd_identifier_token24] = ACTIONS(2516), + [aux_sym_cmd_identifier_token25] = ACTIONS(2516), + [aux_sym_cmd_identifier_token26] = ACTIONS(2516), + [aux_sym_cmd_identifier_token27] = ACTIONS(2516), + [aux_sym_cmd_identifier_token28] = ACTIONS(2516), + [aux_sym_cmd_identifier_token29] = ACTIONS(2516), + [aux_sym_cmd_identifier_token30] = ACTIONS(2516), + [aux_sym_cmd_identifier_token31] = ACTIONS(2516), + [aux_sym_cmd_identifier_token32] = ACTIONS(2516), + [aux_sym_cmd_identifier_token33] = ACTIONS(2516), + [aux_sym_cmd_identifier_token34] = ACTIONS(2516), + [aux_sym_cmd_identifier_token35] = ACTIONS(2516), + [aux_sym_cmd_identifier_token36] = ACTIONS(2516), + [anon_sym_true] = ACTIONS(2518), + [anon_sym_false] = ACTIONS(2518), + [anon_sym_null] = ACTIONS(2518), + [aux_sym_cmd_identifier_token38] = ACTIONS(2516), + [aux_sym_cmd_identifier_token39] = ACTIONS(2518), + [aux_sym_cmd_identifier_token40] = ACTIONS(2518), + [anon_sym_def] = ACTIONS(2516), + [anon_sym_export_DASHenv] = ACTIONS(2516), + [anon_sym_extern] = ACTIONS(2516), + [anon_sym_module] = ACTIONS(2516), + [anon_sym_use] = ACTIONS(2516), + [anon_sym_LPAREN] = ACTIONS(2518), + [anon_sym_DOLLAR] = ACTIONS(2518), + [anon_sym_error] = ACTIONS(2516), + [anon_sym_list] = ACTIONS(2516), + [anon_sym_DASH] = ACTIONS(2516), + [anon_sym_break] = ACTIONS(2516), + [anon_sym_continue] = ACTIONS(2516), + [anon_sym_for] = ACTIONS(2516), + [anon_sym_in] = ACTIONS(2516), + [anon_sym_loop] = ACTIONS(2516), + [anon_sym_make] = ACTIONS(2516), + [anon_sym_while] = ACTIONS(2516), + [anon_sym_do] = ACTIONS(2516), + [anon_sym_if] = ACTIONS(2516), + [anon_sym_else] = ACTIONS(2516), + [anon_sym_match] = ACTIONS(2516), + [anon_sym_RBRACE] = ACTIONS(2518), + [anon_sym_try] = ACTIONS(2516), + [anon_sym_catch] = ACTIONS(2516), + [anon_sym_return] = ACTIONS(2516), + [anon_sym_source] = ACTIONS(2516), + [anon_sym_source_DASHenv] = ACTIONS(2516), + [anon_sym_register] = ACTIONS(2516), + [anon_sym_hide] = ACTIONS(2516), + [anon_sym_hide_DASHenv] = ACTIONS(2516), + [anon_sym_overlay] = ACTIONS(2516), + [anon_sym_new] = ACTIONS(2516), + [anon_sym_as] = ACTIONS(2516), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2518), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2518), + [aux_sym__val_number_decimal_token1] = ACTIONS(2516), + [aux_sym__val_number_decimal_token2] = ACTIONS(2518), + [aux_sym__val_number_decimal_token3] = ACTIONS(2518), + [aux_sym__val_number_decimal_token4] = ACTIONS(2518), + [aux_sym__val_number_token1] = ACTIONS(2518), + [aux_sym__val_number_token2] = ACTIONS(2518), + [aux_sym__val_number_token3] = ACTIONS(2518), + [anon_sym_DQUOTE] = ACTIONS(2518), + [sym__str_single_quotes] = ACTIONS(2518), + [sym__str_back_ticks] = ACTIONS(2518), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2518), + [anon_sym_PLUS] = ACTIONS(2516), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2518), }, - [672] = { - [sym_comment] = STATE(672), - [anon_sym_export] = ACTIONS(1981), - [anon_sym_alias] = ACTIONS(1981), - [anon_sym_let] = ACTIONS(1981), - [anon_sym_let_DASHenv] = ACTIONS(1981), - [anon_sym_mut] = ACTIONS(1981), - [anon_sym_const] = ACTIONS(1981), - [aux_sym_cmd_identifier_token1] = ACTIONS(1981), - [aux_sym_cmd_identifier_token2] = ACTIONS(1981), - [aux_sym_cmd_identifier_token3] = ACTIONS(1981), - [aux_sym_cmd_identifier_token4] = ACTIONS(1981), - [aux_sym_cmd_identifier_token5] = ACTIONS(1981), - [aux_sym_cmd_identifier_token6] = ACTIONS(1981), - [aux_sym_cmd_identifier_token7] = ACTIONS(1981), - [aux_sym_cmd_identifier_token8] = ACTIONS(1981), - [aux_sym_cmd_identifier_token9] = ACTIONS(1981), - [aux_sym_cmd_identifier_token10] = ACTIONS(1981), - [aux_sym_cmd_identifier_token11] = ACTIONS(1981), - [aux_sym_cmd_identifier_token12] = ACTIONS(1981), - [aux_sym_cmd_identifier_token13] = ACTIONS(1981), - [aux_sym_cmd_identifier_token14] = ACTIONS(1981), - [aux_sym_cmd_identifier_token15] = ACTIONS(1981), - [aux_sym_cmd_identifier_token16] = ACTIONS(1981), - [aux_sym_cmd_identifier_token17] = ACTIONS(1981), - [aux_sym_cmd_identifier_token18] = ACTIONS(1981), - [aux_sym_cmd_identifier_token19] = ACTIONS(1981), - [aux_sym_cmd_identifier_token20] = ACTIONS(1981), - [aux_sym_cmd_identifier_token21] = ACTIONS(1981), - [aux_sym_cmd_identifier_token22] = ACTIONS(1981), - [aux_sym_cmd_identifier_token23] = ACTIONS(1981), - [aux_sym_cmd_identifier_token24] = ACTIONS(1981), - [aux_sym_cmd_identifier_token25] = ACTIONS(1981), - [aux_sym_cmd_identifier_token26] = ACTIONS(1981), - [aux_sym_cmd_identifier_token27] = ACTIONS(1981), - [aux_sym_cmd_identifier_token28] = ACTIONS(1981), - [aux_sym_cmd_identifier_token29] = ACTIONS(1981), - [aux_sym_cmd_identifier_token30] = ACTIONS(1981), - [aux_sym_cmd_identifier_token31] = ACTIONS(1981), - [aux_sym_cmd_identifier_token32] = ACTIONS(1981), - [aux_sym_cmd_identifier_token33] = ACTIONS(1981), - [aux_sym_cmd_identifier_token34] = ACTIONS(1981), - [aux_sym_cmd_identifier_token35] = ACTIONS(1981), - [aux_sym_cmd_identifier_token36] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(1987), - [anon_sym_false] = ACTIONS(1987), - [anon_sym_null] = ACTIONS(1987), - [aux_sym_cmd_identifier_token38] = ACTIONS(1981), - [aux_sym_cmd_identifier_token39] = ACTIONS(1987), - [aux_sym_cmd_identifier_token40] = ACTIONS(1987), - [anon_sym_def] = ACTIONS(1981), - [anon_sym_export_DASHenv] = ACTIONS(1981), - [anon_sym_extern] = ACTIONS(1981), - [anon_sym_module] = ACTIONS(1981), - [anon_sym_use] = ACTIONS(1981), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_DOLLAR] = ACTIONS(1987), - [anon_sym_error] = ACTIONS(1981), - [anon_sym_list] = ACTIONS(1981), - [anon_sym_DASH] = ACTIONS(1981), - [anon_sym_break] = ACTIONS(1981), - [anon_sym_continue] = ACTIONS(1981), - [anon_sym_for] = ACTIONS(1981), - [anon_sym_in] = ACTIONS(1981), - [anon_sym_loop] = ACTIONS(1981), - [anon_sym_make] = ACTIONS(1981), - [anon_sym_while] = ACTIONS(1981), - [anon_sym_do] = ACTIONS(1981), - [anon_sym_if] = ACTIONS(1981), - [anon_sym_else] = ACTIONS(1981), - [anon_sym_match] = ACTIONS(1981), - [anon_sym_RBRACE] = ACTIONS(1987), - [anon_sym_try] = ACTIONS(1981), - [anon_sym_catch] = ACTIONS(1981), - [anon_sym_return] = ACTIONS(1981), - [anon_sym_source] = ACTIONS(1981), - [anon_sym_source_DASHenv] = ACTIONS(1981), - [anon_sym_register] = ACTIONS(1981), - [anon_sym_hide] = ACTIONS(1981), - [anon_sym_hide_DASHenv] = ACTIONS(1981), - [anon_sym_overlay] = ACTIONS(1981), - [anon_sym_new] = ACTIONS(1981), - [anon_sym_as] = ACTIONS(1981), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1987), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1987), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1987), - [aux_sym__val_number_decimal_token3] = ACTIONS(1987), - [aux_sym__val_number_decimal_token4] = ACTIONS(1987), - [aux_sym__val_number_token1] = ACTIONS(1987), - [aux_sym__val_number_token2] = ACTIONS(1987), - [aux_sym__val_number_token3] = ACTIONS(1987), - [anon_sym_DQUOTE] = ACTIONS(1987), - [sym__str_single_quotes] = ACTIONS(1987), - [sym__str_back_ticks] = ACTIONS(1987), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1987), - [anon_sym_PLUS] = ACTIONS(1981), - [anon_sym_POUND] = ACTIONS(247), + [634] = { + [sym_comment] = STATE(634), + [anon_sym_export] = ACTIONS(2520), + [anon_sym_alias] = ACTIONS(2520), + [anon_sym_let] = ACTIONS(2520), + [anon_sym_let_DASHenv] = ACTIONS(2520), + [anon_sym_mut] = ACTIONS(2520), + [anon_sym_const] = ACTIONS(2520), + [aux_sym_cmd_identifier_token1] = ACTIONS(2520), + [aux_sym_cmd_identifier_token2] = ACTIONS(2520), + [aux_sym_cmd_identifier_token3] = ACTIONS(2520), + [aux_sym_cmd_identifier_token4] = ACTIONS(2520), + [aux_sym_cmd_identifier_token5] = ACTIONS(2520), + [aux_sym_cmd_identifier_token6] = ACTIONS(2520), + [aux_sym_cmd_identifier_token7] = ACTIONS(2520), + [aux_sym_cmd_identifier_token8] = ACTIONS(2520), + [aux_sym_cmd_identifier_token9] = ACTIONS(2520), + [aux_sym_cmd_identifier_token10] = ACTIONS(2520), + [aux_sym_cmd_identifier_token11] = ACTIONS(2520), + [aux_sym_cmd_identifier_token12] = ACTIONS(2520), + [aux_sym_cmd_identifier_token13] = ACTIONS(2520), + [aux_sym_cmd_identifier_token14] = ACTIONS(2520), + [aux_sym_cmd_identifier_token15] = ACTIONS(2520), + [aux_sym_cmd_identifier_token16] = ACTIONS(2520), + [aux_sym_cmd_identifier_token17] = ACTIONS(2520), + [aux_sym_cmd_identifier_token18] = ACTIONS(2520), + [aux_sym_cmd_identifier_token19] = ACTIONS(2520), + [aux_sym_cmd_identifier_token20] = ACTIONS(2520), + [aux_sym_cmd_identifier_token21] = ACTIONS(2520), + [aux_sym_cmd_identifier_token22] = ACTIONS(2520), + [aux_sym_cmd_identifier_token23] = ACTIONS(2520), + [aux_sym_cmd_identifier_token24] = ACTIONS(2520), + [aux_sym_cmd_identifier_token25] = ACTIONS(2520), + [aux_sym_cmd_identifier_token26] = ACTIONS(2520), + [aux_sym_cmd_identifier_token27] = ACTIONS(2520), + [aux_sym_cmd_identifier_token28] = ACTIONS(2520), + [aux_sym_cmd_identifier_token29] = ACTIONS(2520), + [aux_sym_cmd_identifier_token30] = ACTIONS(2520), + [aux_sym_cmd_identifier_token31] = ACTIONS(2520), + [aux_sym_cmd_identifier_token32] = ACTIONS(2520), + [aux_sym_cmd_identifier_token33] = ACTIONS(2520), + [aux_sym_cmd_identifier_token34] = ACTIONS(2520), + [aux_sym_cmd_identifier_token35] = ACTIONS(2520), + [aux_sym_cmd_identifier_token36] = ACTIONS(2520), + [anon_sym_true] = ACTIONS(2522), + [anon_sym_false] = ACTIONS(2522), + [anon_sym_null] = ACTIONS(2522), + [aux_sym_cmd_identifier_token38] = ACTIONS(2520), + [aux_sym_cmd_identifier_token39] = ACTIONS(2522), + [aux_sym_cmd_identifier_token40] = ACTIONS(2522), + [anon_sym_def] = ACTIONS(2520), + [anon_sym_export_DASHenv] = ACTIONS(2520), + [anon_sym_extern] = ACTIONS(2520), + [anon_sym_module] = ACTIONS(2520), + [anon_sym_use] = ACTIONS(2520), + [anon_sym_LPAREN] = ACTIONS(2522), + [anon_sym_DOLLAR] = ACTIONS(2522), + [anon_sym_error] = ACTIONS(2520), + [anon_sym_list] = ACTIONS(2520), + [anon_sym_DASH] = ACTIONS(2520), + [anon_sym_break] = ACTIONS(2520), + [anon_sym_continue] = ACTIONS(2520), + [anon_sym_for] = ACTIONS(2520), + [anon_sym_in] = ACTIONS(2520), + [anon_sym_loop] = ACTIONS(2520), + [anon_sym_make] = ACTIONS(2520), + [anon_sym_while] = ACTIONS(2520), + [anon_sym_do] = ACTIONS(2520), + [anon_sym_if] = ACTIONS(2520), + [anon_sym_else] = ACTIONS(2520), + [anon_sym_match] = ACTIONS(2520), + [anon_sym_RBRACE] = ACTIONS(2522), + [anon_sym_try] = ACTIONS(2520), + [anon_sym_catch] = ACTIONS(2520), + [anon_sym_return] = ACTIONS(2520), + [anon_sym_source] = ACTIONS(2520), + [anon_sym_source_DASHenv] = ACTIONS(2520), + [anon_sym_register] = ACTIONS(2520), + [anon_sym_hide] = ACTIONS(2520), + [anon_sym_hide_DASHenv] = ACTIONS(2520), + [anon_sym_overlay] = ACTIONS(2520), + [anon_sym_new] = ACTIONS(2520), + [anon_sym_as] = ACTIONS(2520), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2522), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2522), + [aux_sym__val_number_decimal_token1] = ACTIONS(2520), + [aux_sym__val_number_decimal_token2] = ACTIONS(2522), + [aux_sym__val_number_decimal_token3] = ACTIONS(2522), + [aux_sym__val_number_decimal_token4] = ACTIONS(2522), + [aux_sym__val_number_token1] = ACTIONS(2522), + [aux_sym__val_number_token2] = ACTIONS(2522), + [aux_sym__val_number_token3] = ACTIONS(2522), + [anon_sym_DQUOTE] = ACTIONS(2522), + [sym__str_single_quotes] = ACTIONS(2522), + [sym__str_back_ticks] = ACTIONS(2522), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2522), + [anon_sym_PLUS] = ACTIONS(2520), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2522), }, - [673] = { - [sym_comment] = STATE(673), - [anon_sym_export] = ACTIONS(2462), - [anon_sym_alias] = ACTIONS(2462), - [anon_sym_let] = ACTIONS(2462), - [anon_sym_let_DASHenv] = ACTIONS(2462), - [anon_sym_mut] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [aux_sym_cmd_identifier_token1] = ACTIONS(2462), - [aux_sym_cmd_identifier_token2] = ACTIONS(2462), - [aux_sym_cmd_identifier_token3] = ACTIONS(2462), - [aux_sym_cmd_identifier_token4] = ACTIONS(2462), - [aux_sym_cmd_identifier_token5] = ACTIONS(2462), - [aux_sym_cmd_identifier_token6] = ACTIONS(2462), - [aux_sym_cmd_identifier_token7] = ACTIONS(2462), - [aux_sym_cmd_identifier_token8] = ACTIONS(2462), - [aux_sym_cmd_identifier_token9] = ACTIONS(2462), - [aux_sym_cmd_identifier_token10] = ACTIONS(2462), - [aux_sym_cmd_identifier_token11] = ACTIONS(2462), - [aux_sym_cmd_identifier_token12] = ACTIONS(2462), - [aux_sym_cmd_identifier_token13] = ACTIONS(2462), - [aux_sym_cmd_identifier_token14] = ACTIONS(2462), - [aux_sym_cmd_identifier_token15] = ACTIONS(2462), - [aux_sym_cmd_identifier_token16] = ACTIONS(2462), - [aux_sym_cmd_identifier_token17] = ACTIONS(2462), - [aux_sym_cmd_identifier_token18] = ACTIONS(2462), - [aux_sym_cmd_identifier_token19] = ACTIONS(2462), - [aux_sym_cmd_identifier_token20] = ACTIONS(2462), - [aux_sym_cmd_identifier_token21] = ACTIONS(2462), - [aux_sym_cmd_identifier_token22] = ACTIONS(2462), - [aux_sym_cmd_identifier_token23] = ACTIONS(2462), - [aux_sym_cmd_identifier_token24] = ACTIONS(2462), - [aux_sym_cmd_identifier_token25] = ACTIONS(2462), - [aux_sym_cmd_identifier_token26] = ACTIONS(2462), - [aux_sym_cmd_identifier_token27] = ACTIONS(2462), - [aux_sym_cmd_identifier_token28] = ACTIONS(2462), - [aux_sym_cmd_identifier_token29] = ACTIONS(2462), - [aux_sym_cmd_identifier_token30] = ACTIONS(2462), - [aux_sym_cmd_identifier_token31] = ACTIONS(2462), - [aux_sym_cmd_identifier_token32] = ACTIONS(2462), - [aux_sym_cmd_identifier_token33] = ACTIONS(2462), - [aux_sym_cmd_identifier_token34] = ACTIONS(2462), - [aux_sym_cmd_identifier_token35] = ACTIONS(2462), - [aux_sym_cmd_identifier_token36] = ACTIONS(2462), - [anon_sym_true] = ACTIONS(2464), - [anon_sym_false] = ACTIONS(2464), - [anon_sym_null] = ACTIONS(2464), - [aux_sym_cmd_identifier_token38] = ACTIONS(2462), - [aux_sym_cmd_identifier_token39] = ACTIONS(2464), - [aux_sym_cmd_identifier_token40] = ACTIONS(2464), - [anon_sym_def] = ACTIONS(2462), - [anon_sym_export_DASHenv] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym_module] = ACTIONS(2462), - [anon_sym_use] = ACTIONS(2462), - [anon_sym_LPAREN] = ACTIONS(2464), - [anon_sym_DOLLAR] = ACTIONS(2464), - [anon_sym_error] = ACTIONS(2462), - [anon_sym_list] = ACTIONS(2462), - [anon_sym_DASH] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_for] = ACTIONS(2462), - [anon_sym_in] = ACTIONS(2462), - [anon_sym_loop] = ACTIONS(2462), - [anon_sym_make] = ACTIONS(2462), - [anon_sym_while] = ACTIONS(2462), - [anon_sym_do] = ACTIONS(2462), - [anon_sym_if] = ACTIONS(2462), - [anon_sym_else] = ACTIONS(2462), - [anon_sym_match] = ACTIONS(2462), - [anon_sym_RBRACE] = ACTIONS(2464), - [anon_sym_try] = ACTIONS(2462), - [anon_sym_catch] = ACTIONS(2462), - [anon_sym_return] = ACTIONS(2462), - [anon_sym_source] = ACTIONS(2462), - [anon_sym_source_DASHenv] = ACTIONS(2462), - [anon_sym_register] = ACTIONS(2462), - [anon_sym_hide] = ACTIONS(2462), - [anon_sym_hide_DASHenv] = ACTIONS(2462), - [anon_sym_overlay] = ACTIONS(2462), - [anon_sym_new] = ACTIONS(2462), - [anon_sym_as] = ACTIONS(2462), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2464), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2464), - [aux_sym__val_number_decimal_token1] = ACTIONS(2462), - [aux_sym__val_number_decimal_token2] = ACTIONS(2464), - [aux_sym__val_number_decimal_token3] = ACTIONS(2464), - [aux_sym__val_number_decimal_token4] = ACTIONS(2464), - [aux_sym__val_number_token1] = ACTIONS(2464), - [aux_sym__val_number_token2] = ACTIONS(2464), - [aux_sym__val_number_token3] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2464), - [sym__str_single_quotes] = ACTIONS(2464), - [sym__str_back_ticks] = ACTIONS(2464), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2464), - [anon_sym_PLUS] = ACTIONS(2462), - [anon_sym_POUND] = ACTIONS(247), + [635] = { + [sym_comment] = STATE(635), + [anon_sym_export] = ACTIONS(1364), + [anon_sym_alias] = ACTIONS(1364), + [anon_sym_let] = ACTIONS(1364), + [anon_sym_let_DASHenv] = ACTIONS(1364), + [anon_sym_mut] = ACTIONS(1364), + [anon_sym_const] = ACTIONS(1364), + [aux_sym_cmd_identifier_token1] = ACTIONS(1364), + [aux_sym_cmd_identifier_token2] = ACTIONS(1364), + [aux_sym_cmd_identifier_token3] = ACTIONS(1364), + [aux_sym_cmd_identifier_token4] = ACTIONS(1364), + [aux_sym_cmd_identifier_token5] = ACTIONS(1364), + [aux_sym_cmd_identifier_token6] = ACTIONS(1364), + [aux_sym_cmd_identifier_token7] = ACTIONS(1364), + [aux_sym_cmd_identifier_token8] = ACTIONS(1364), + [aux_sym_cmd_identifier_token9] = ACTIONS(1364), + [aux_sym_cmd_identifier_token10] = ACTIONS(1364), + [aux_sym_cmd_identifier_token11] = ACTIONS(1364), + [aux_sym_cmd_identifier_token12] = ACTIONS(1364), + [aux_sym_cmd_identifier_token13] = ACTIONS(1364), + [aux_sym_cmd_identifier_token14] = ACTIONS(1364), + [aux_sym_cmd_identifier_token15] = ACTIONS(1364), + [aux_sym_cmd_identifier_token16] = ACTIONS(1364), + [aux_sym_cmd_identifier_token17] = ACTIONS(1364), + [aux_sym_cmd_identifier_token18] = ACTIONS(1364), + [aux_sym_cmd_identifier_token19] = ACTIONS(1364), + [aux_sym_cmd_identifier_token20] = ACTIONS(1364), + [aux_sym_cmd_identifier_token21] = ACTIONS(1364), + [aux_sym_cmd_identifier_token22] = ACTIONS(1364), + [aux_sym_cmd_identifier_token23] = ACTIONS(1364), + [aux_sym_cmd_identifier_token24] = ACTIONS(1364), + [aux_sym_cmd_identifier_token25] = ACTIONS(1364), + [aux_sym_cmd_identifier_token26] = ACTIONS(1364), + [aux_sym_cmd_identifier_token27] = ACTIONS(1364), + [aux_sym_cmd_identifier_token28] = ACTIONS(1364), + [aux_sym_cmd_identifier_token29] = ACTIONS(1364), + [aux_sym_cmd_identifier_token30] = ACTIONS(1364), + [aux_sym_cmd_identifier_token31] = ACTIONS(1364), + [aux_sym_cmd_identifier_token32] = ACTIONS(1364), + [aux_sym_cmd_identifier_token33] = ACTIONS(1364), + [aux_sym_cmd_identifier_token34] = ACTIONS(1364), + [aux_sym_cmd_identifier_token35] = ACTIONS(1364), + [aux_sym_cmd_identifier_token36] = ACTIONS(1364), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1362), + [aux_sym_cmd_identifier_token38] = ACTIONS(1364), + [aux_sym_cmd_identifier_token39] = ACTIONS(1362), + [aux_sym_cmd_identifier_token40] = ACTIONS(1362), + [sym__newline] = ACTIONS(1362), + [anon_sym_def] = ACTIONS(1364), + [anon_sym_export_DASHenv] = ACTIONS(1364), + [anon_sym_extern] = ACTIONS(1364), + [anon_sym_module] = ACTIONS(1364), + [anon_sym_use] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_DOLLAR] = ACTIONS(1362), + [anon_sym_error] = ACTIONS(1364), + [anon_sym_list] = ACTIONS(1364), + [anon_sym_DASH] = ACTIONS(1364), + [anon_sym_break] = ACTIONS(1364), + [anon_sym_continue] = ACTIONS(1364), + [anon_sym_for] = ACTIONS(1364), + [anon_sym_in] = ACTIONS(1364), + [anon_sym_loop] = ACTIONS(1364), + [anon_sym_make] = ACTIONS(1364), + [anon_sym_while] = ACTIONS(1364), + [anon_sym_do] = ACTIONS(1364), + [anon_sym_if] = ACTIONS(1364), + [anon_sym_else] = ACTIONS(1364), + [anon_sym_match] = ACTIONS(1364), + [anon_sym_try] = ACTIONS(1364), + [anon_sym_catch] = ACTIONS(1364), + [anon_sym_return] = ACTIONS(1364), + [anon_sym_source] = ACTIONS(1364), + [anon_sym_source_DASHenv] = ACTIONS(1364), + [anon_sym_register] = ACTIONS(1364), + [anon_sym_hide] = ACTIONS(1364), + [anon_sym_hide_DASHenv] = ACTIONS(1364), + [anon_sym_overlay] = ACTIONS(1364), + [anon_sym_new] = ACTIONS(1364), + [anon_sym_as] = ACTIONS(1364), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1362), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1362), + [aux_sym__val_number_decimal_token1] = ACTIONS(1364), + [aux_sym__val_number_decimal_token2] = ACTIONS(1362), + [aux_sym__val_number_decimal_token3] = ACTIONS(1362), + [aux_sym__val_number_decimal_token4] = ACTIONS(1362), + [aux_sym__val_number_token1] = ACTIONS(1362), + [aux_sym__val_number_token2] = ACTIONS(1362), + [aux_sym__val_number_token3] = ACTIONS(1362), + [anon_sym_DQUOTE] = ACTIONS(1362), + [sym__str_single_quotes] = ACTIONS(1362), + [sym__str_back_ticks] = ACTIONS(1362), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1362), + [anon_sym_PLUS] = ACTIONS(1364), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1362), }, - [674] = { - [sym_comment] = STATE(674), - [anon_sym_export] = ACTIONS(1832), - [anon_sym_alias] = ACTIONS(1832), - [anon_sym_let] = ACTIONS(1832), - [anon_sym_let_DASHenv] = ACTIONS(1832), - [anon_sym_mut] = ACTIONS(1832), - [anon_sym_const] = ACTIONS(1832), - [aux_sym_cmd_identifier_token1] = ACTIONS(1832), - [aux_sym_cmd_identifier_token2] = ACTIONS(1832), - [aux_sym_cmd_identifier_token3] = ACTIONS(1832), - [aux_sym_cmd_identifier_token4] = ACTIONS(1832), - [aux_sym_cmd_identifier_token5] = ACTIONS(1832), - [aux_sym_cmd_identifier_token6] = ACTIONS(1832), - [aux_sym_cmd_identifier_token7] = ACTIONS(1832), - [aux_sym_cmd_identifier_token8] = ACTIONS(1832), - [aux_sym_cmd_identifier_token9] = ACTIONS(1832), - [aux_sym_cmd_identifier_token10] = ACTIONS(1832), - [aux_sym_cmd_identifier_token11] = ACTIONS(1832), - [aux_sym_cmd_identifier_token12] = ACTIONS(1832), - [aux_sym_cmd_identifier_token13] = ACTIONS(1832), - [aux_sym_cmd_identifier_token14] = ACTIONS(1832), - [aux_sym_cmd_identifier_token15] = ACTIONS(1832), - [aux_sym_cmd_identifier_token16] = ACTIONS(1832), - [aux_sym_cmd_identifier_token17] = ACTIONS(1832), - [aux_sym_cmd_identifier_token18] = ACTIONS(1832), - [aux_sym_cmd_identifier_token19] = ACTIONS(1832), - [aux_sym_cmd_identifier_token20] = ACTIONS(1832), - [aux_sym_cmd_identifier_token21] = ACTIONS(1832), - [aux_sym_cmd_identifier_token22] = ACTIONS(1832), - [aux_sym_cmd_identifier_token23] = ACTIONS(1832), - [aux_sym_cmd_identifier_token24] = ACTIONS(1832), - [aux_sym_cmd_identifier_token25] = ACTIONS(1832), - [aux_sym_cmd_identifier_token26] = ACTIONS(1832), - [aux_sym_cmd_identifier_token27] = ACTIONS(1832), - [aux_sym_cmd_identifier_token28] = ACTIONS(1832), - [aux_sym_cmd_identifier_token29] = ACTIONS(1832), - [aux_sym_cmd_identifier_token30] = ACTIONS(1832), - [aux_sym_cmd_identifier_token31] = ACTIONS(1832), - [aux_sym_cmd_identifier_token32] = ACTIONS(1832), - [aux_sym_cmd_identifier_token33] = ACTIONS(1832), - [aux_sym_cmd_identifier_token34] = ACTIONS(1832), - [aux_sym_cmd_identifier_token35] = ACTIONS(1832), - [aux_sym_cmd_identifier_token36] = ACTIONS(1832), - [anon_sym_true] = ACTIONS(1834), - [anon_sym_false] = ACTIONS(1834), - [anon_sym_null] = ACTIONS(1834), - [aux_sym_cmd_identifier_token38] = ACTIONS(1832), - [aux_sym_cmd_identifier_token39] = ACTIONS(1834), - [aux_sym_cmd_identifier_token40] = ACTIONS(1834), - [anon_sym_def] = ACTIONS(1832), - [anon_sym_export_DASHenv] = ACTIONS(1832), - [anon_sym_extern] = ACTIONS(1832), - [anon_sym_module] = ACTIONS(1832), - [anon_sym_use] = ACTIONS(1832), - [anon_sym_LPAREN] = ACTIONS(1834), - [anon_sym_DOLLAR] = ACTIONS(1834), - [anon_sym_error] = ACTIONS(1832), - [anon_sym_list] = ACTIONS(1832), - [anon_sym_DASH] = ACTIONS(1832), - [anon_sym_break] = ACTIONS(1832), - [anon_sym_continue] = ACTIONS(1832), - [anon_sym_for] = ACTIONS(1832), - [anon_sym_in] = ACTIONS(1832), - [anon_sym_loop] = ACTIONS(1832), - [anon_sym_make] = ACTIONS(1832), - [anon_sym_while] = ACTIONS(1832), - [anon_sym_do] = ACTIONS(1832), - [anon_sym_if] = ACTIONS(1832), - [anon_sym_else] = ACTIONS(1832), - [anon_sym_match] = ACTIONS(1832), - [anon_sym_RBRACE] = ACTIONS(1834), - [anon_sym_try] = ACTIONS(1832), - [anon_sym_catch] = ACTIONS(1832), - [anon_sym_return] = ACTIONS(1832), - [anon_sym_source] = ACTIONS(1832), - [anon_sym_source_DASHenv] = ACTIONS(1832), - [anon_sym_register] = ACTIONS(1832), - [anon_sym_hide] = ACTIONS(1832), - [anon_sym_hide_DASHenv] = ACTIONS(1832), - [anon_sym_overlay] = ACTIONS(1832), - [anon_sym_new] = ACTIONS(1832), - [anon_sym_as] = ACTIONS(1832), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1834), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1834), - [aux_sym__val_number_decimal_token1] = ACTIONS(1832), - [aux_sym__val_number_decimal_token2] = ACTIONS(1834), - [aux_sym__val_number_decimal_token3] = ACTIONS(1834), - [aux_sym__val_number_decimal_token4] = ACTIONS(1834), - [aux_sym__val_number_token1] = ACTIONS(1834), - [aux_sym__val_number_token2] = ACTIONS(1834), - [aux_sym__val_number_token3] = ACTIONS(1834), - [anon_sym_DQUOTE] = ACTIONS(1834), - [sym__str_single_quotes] = ACTIONS(1834), - [sym__str_back_ticks] = ACTIONS(1834), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1834), - [anon_sym_PLUS] = ACTIONS(1832), - [anon_sym_POUND] = ACTIONS(247), + [636] = { + [sym_comment] = STATE(636), + [anon_sym_export] = ACTIONS(2222), + [anon_sym_alias] = ACTIONS(2222), + [anon_sym_let] = ACTIONS(2222), + [anon_sym_let_DASHenv] = ACTIONS(2222), + [anon_sym_mut] = ACTIONS(2222), + [anon_sym_const] = ACTIONS(2222), + [aux_sym_cmd_identifier_token1] = ACTIONS(2222), + [aux_sym_cmd_identifier_token2] = ACTIONS(2222), + [aux_sym_cmd_identifier_token3] = ACTIONS(2222), + [aux_sym_cmd_identifier_token4] = ACTIONS(2222), + [aux_sym_cmd_identifier_token5] = ACTIONS(2222), + [aux_sym_cmd_identifier_token6] = ACTIONS(2222), + [aux_sym_cmd_identifier_token7] = ACTIONS(2222), + [aux_sym_cmd_identifier_token8] = ACTIONS(2222), + [aux_sym_cmd_identifier_token9] = ACTIONS(2222), + [aux_sym_cmd_identifier_token10] = ACTIONS(2222), + [aux_sym_cmd_identifier_token11] = ACTIONS(2222), + [aux_sym_cmd_identifier_token12] = ACTIONS(2222), + [aux_sym_cmd_identifier_token13] = ACTIONS(2222), + [aux_sym_cmd_identifier_token14] = ACTIONS(2222), + [aux_sym_cmd_identifier_token15] = ACTIONS(2222), + [aux_sym_cmd_identifier_token16] = ACTIONS(2222), + [aux_sym_cmd_identifier_token17] = ACTIONS(2222), + [aux_sym_cmd_identifier_token18] = ACTIONS(2222), + [aux_sym_cmd_identifier_token19] = ACTIONS(2222), + [aux_sym_cmd_identifier_token20] = ACTIONS(2222), + [aux_sym_cmd_identifier_token21] = ACTIONS(2222), + [aux_sym_cmd_identifier_token22] = ACTIONS(2222), + [aux_sym_cmd_identifier_token23] = ACTIONS(2222), + [aux_sym_cmd_identifier_token24] = ACTIONS(2222), + [aux_sym_cmd_identifier_token25] = ACTIONS(2222), + [aux_sym_cmd_identifier_token26] = ACTIONS(2222), + [aux_sym_cmd_identifier_token27] = ACTIONS(2222), + [aux_sym_cmd_identifier_token28] = ACTIONS(2222), + [aux_sym_cmd_identifier_token29] = ACTIONS(2222), + [aux_sym_cmd_identifier_token30] = ACTIONS(2222), + [aux_sym_cmd_identifier_token31] = ACTIONS(2222), + [aux_sym_cmd_identifier_token32] = ACTIONS(2222), + [aux_sym_cmd_identifier_token33] = ACTIONS(2222), + [aux_sym_cmd_identifier_token34] = ACTIONS(2222), + [aux_sym_cmd_identifier_token35] = ACTIONS(2222), + [aux_sym_cmd_identifier_token36] = ACTIONS(2222), + [anon_sym_true] = ACTIONS(2228), + [anon_sym_false] = ACTIONS(2228), + [anon_sym_null] = ACTIONS(2228), + [aux_sym_cmd_identifier_token38] = ACTIONS(2222), + [aux_sym_cmd_identifier_token39] = ACTIONS(2228), + [aux_sym_cmd_identifier_token40] = ACTIONS(2228), + [anon_sym_def] = ACTIONS(2222), + [anon_sym_export_DASHenv] = ACTIONS(2222), + [anon_sym_extern] = ACTIONS(2222), + [anon_sym_module] = ACTIONS(2222), + [anon_sym_use] = ACTIONS(2222), + [anon_sym_LPAREN] = ACTIONS(2228), + [anon_sym_DOLLAR] = ACTIONS(2228), + [anon_sym_error] = ACTIONS(2222), + [anon_sym_list] = ACTIONS(2222), + [anon_sym_DASH] = ACTIONS(2222), + [anon_sym_break] = ACTIONS(2222), + [anon_sym_continue] = ACTIONS(2222), + [anon_sym_for] = ACTIONS(2222), + [anon_sym_in] = ACTIONS(2222), + [anon_sym_loop] = ACTIONS(2222), + [anon_sym_make] = ACTIONS(2222), + [anon_sym_while] = ACTIONS(2222), + [anon_sym_do] = ACTIONS(2222), + [anon_sym_if] = ACTIONS(2222), + [anon_sym_else] = ACTIONS(2222), + [anon_sym_match] = ACTIONS(2222), + [anon_sym_RBRACE] = ACTIONS(2228), + [anon_sym_try] = ACTIONS(2222), + [anon_sym_catch] = ACTIONS(2222), + [anon_sym_return] = ACTIONS(2222), + [anon_sym_source] = ACTIONS(2222), + [anon_sym_source_DASHenv] = ACTIONS(2222), + [anon_sym_register] = ACTIONS(2222), + [anon_sym_hide] = ACTIONS(2222), + [anon_sym_hide_DASHenv] = ACTIONS(2222), + [anon_sym_overlay] = ACTIONS(2222), + [anon_sym_new] = ACTIONS(2222), + [anon_sym_as] = ACTIONS(2222), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2228), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2228), + [aux_sym__val_number_decimal_token1] = ACTIONS(2222), + [aux_sym__val_number_decimal_token2] = ACTIONS(2228), + [aux_sym__val_number_decimal_token3] = ACTIONS(2228), + [aux_sym__val_number_decimal_token4] = ACTIONS(2228), + [aux_sym__val_number_token1] = ACTIONS(2228), + [aux_sym__val_number_token2] = ACTIONS(2228), + [aux_sym__val_number_token3] = ACTIONS(2228), + [anon_sym_DQUOTE] = ACTIONS(2228), + [sym__str_single_quotes] = ACTIONS(2228), + [sym__str_back_ticks] = ACTIONS(2228), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2228), + [anon_sym_PLUS] = ACTIONS(2222), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2228), }, - [675] = { - [sym_comment] = STATE(675), - [anon_sym_export] = ACTIONS(2466), - [anon_sym_alias] = ACTIONS(2466), - [anon_sym_let] = ACTIONS(2466), - [anon_sym_let_DASHenv] = ACTIONS(2466), - [anon_sym_mut] = ACTIONS(2466), - [anon_sym_const] = ACTIONS(2466), - [aux_sym_cmd_identifier_token1] = ACTIONS(2466), - [aux_sym_cmd_identifier_token2] = ACTIONS(2466), - [aux_sym_cmd_identifier_token3] = ACTIONS(2466), - [aux_sym_cmd_identifier_token4] = ACTIONS(2466), - [aux_sym_cmd_identifier_token5] = ACTIONS(2466), - [aux_sym_cmd_identifier_token6] = ACTIONS(2466), - [aux_sym_cmd_identifier_token7] = ACTIONS(2466), - [aux_sym_cmd_identifier_token8] = ACTIONS(2466), - [aux_sym_cmd_identifier_token9] = ACTIONS(2466), - [aux_sym_cmd_identifier_token10] = ACTIONS(2466), - [aux_sym_cmd_identifier_token11] = ACTIONS(2466), - [aux_sym_cmd_identifier_token12] = ACTIONS(2466), - [aux_sym_cmd_identifier_token13] = ACTIONS(2466), - [aux_sym_cmd_identifier_token14] = ACTIONS(2466), - [aux_sym_cmd_identifier_token15] = ACTIONS(2466), - [aux_sym_cmd_identifier_token16] = ACTIONS(2466), - [aux_sym_cmd_identifier_token17] = ACTIONS(2466), - [aux_sym_cmd_identifier_token18] = ACTIONS(2466), - [aux_sym_cmd_identifier_token19] = ACTIONS(2466), - [aux_sym_cmd_identifier_token20] = ACTIONS(2466), - [aux_sym_cmd_identifier_token21] = ACTIONS(2466), - [aux_sym_cmd_identifier_token22] = ACTIONS(2466), - [aux_sym_cmd_identifier_token23] = ACTIONS(2466), - [aux_sym_cmd_identifier_token24] = ACTIONS(2466), - [aux_sym_cmd_identifier_token25] = ACTIONS(2466), - [aux_sym_cmd_identifier_token26] = ACTIONS(2466), - [aux_sym_cmd_identifier_token27] = ACTIONS(2466), - [aux_sym_cmd_identifier_token28] = ACTIONS(2466), - [aux_sym_cmd_identifier_token29] = ACTIONS(2466), - [aux_sym_cmd_identifier_token30] = ACTIONS(2466), - [aux_sym_cmd_identifier_token31] = ACTIONS(2466), - [aux_sym_cmd_identifier_token32] = ACTIONS(2466), - [aux_sym_cmd_identifier_token33] = ACTIONS(2466), - [aux_sym_cmd_identifier_token34] = ACTIONS(2466), - [aux_sym_cmd_identifier_token35] = ACTIONS(2466), - [aux_sym_cmd_identifier_token36] = ACTIONS(2466), - [anon_sym_true] = ACTIONS(2468), - [anon_sym_false] = ACTIONS(2468), - [anon_sym_null] = ACTIONS(2468), - [aux_sym_cmd_identifier_token38] = ACTIONS(2466), - [aux_sym_cmd_identifier_token39] = ACTIONS(2468), - [aux_sym_cmd_identifier_token40] = ACTIONS(2468), - [anon_sym_def] = ACTIONS(2466), - [anon_sym_export_DASHenv] = ACTIONS(2466), - [anon_sym_extern] = ACTIONS(2466), - [anon_sym_module] = ACTIONS(2466), - [anon_sym_use] = ACTIONS(2466), - [anon_sym_LPAREN] = ACTIONS(2468), - [anon_sym_DOLLAR] = ACTIONS(2468), - [anon_sym_error] = ACTIONS(2466), - [anon_sym_list] = ACTIONS(2466), - [anon_sym_DASH] = ACTIONS(2466), - [anon_sym_break] = ACTIONS(2466), - [anon_sym_continue] = ACTIONS(2466), - [anon_sym_for] = ACTIONS(2466), - [anon_sym_in] = ACTIONS(2466), - [anon_sym_loop] = ACTIONS(2466), - [anon_sym_make] = ACTIONS(2466), - [anon_sym_while] = ACTIONS(2466), - [anon_sym_do] = ACTIONS(2466), - [anon_sym_if] = ACTIONS(2466), - [anon_sym_else] = ACTIONS(2466), - [anon_sym_match] = ACTIONS(2466), - [anon_sym_RBRACE] = ACTIONS(2468), - [anon_sym_try] = ACTIONS(2466), - [anon_sym_catch] = ACTIONS(2466), - [anon_sym_return] = ACTIONS(2466), - [anon_sym_source] = ACTIONS(2466), - [anon_sym_source_DASHenv] = ACTIONS(2466), - [anon_sym_register] = ACTIONS(2466), - [anon_sym_hide] = ACTIONS(2466), - [anon_sym_hide_DASHenv] = ACTIONS(2466), - [anon_sym_overlay] = ACTIONS(2466), - [anon_sym_new] = ACTIONS(2466), - [anon_sym_as] = ACTIONS(2466), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2468), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2468), - [aux_sym__val_number_decimal_token1] = ACTIONS(2466), - [aux_sym__val_number_decimal_token2] = ACTIONS(2468), - [aux_sym__val_number_decimal_token3] = ACTIONS(2468), - [aux_sym__val_number_decimal_token4] = ACTIONS(2468), - [aux_sym__val_number_token1] = ACTIONS(2468), - [aux_sym__val_number_token2] = ACTIONS(2468), - [aux_sym__val_number_token3] = ACTIONS(2468), - [anon_sym_DQUOTE] = ACTIONS(2468), - [sym__str_single_quotes] = ACTIONS(2468), - [sym__str_back_ticks] = ACTIONS(2468), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2468), - [anon_sym_PLUS] = ACTIONS(2466), - [anon_sym_POUND] = ACTIONS(247), + [637] = { + [sym_comment] = STATE(637), + [anon_sym_export] = ACTIONS(2565), + [anon_sym_alias] = ACTIONS(2565), + [anon_sym_let] = ACTIONS(2565), + [anon_sym_let_DASHenv] = ACTIONS(2565), + [anon_sym_mut] = ACTIONS(2565), + [anon_sym_const] = ACTIONS(2565), + [aux_sym_cmd_identifier_token1] = ACTIONS(2565), + [aux_sym_cmd_identifier_token2] = ACTIONS(2565), + [aux_sym_cmd_identifier_token3] = ACTIONS(2565), + [aux_sym_cmd_identifier_token4] = ACTIONS(2565), + [aux_sym_cmd_identifier_token5] = ACTIONS(2565), + [aux_sym_cmd_identifier_token6] = ACTIONS(2565), + [aux_sym_cmd_identifier_token7] = ACTIONS(2565), + [aux_sym_cmd_identifier_token8] = ACTIONS(2565), + [aux_sym_cmd_identifier_token9] = ACTIONS(2565), + [aux_sym_cmd_identifier_token10] = ACTIONS(2565), + [aux_sym_cmd_identifier_token11] = ACTIONS(2565), + [aux_sym_cmd_identifier_token12] = ACTIONS(2565), + [aux_sym_cmd_identifier_token13] = ACTIONS(2565), + [aux_sym_cmd_identifier_token14] = ACTIONS(2565), + [aux_sym_cmd_identifier_token15] = ACTIONS(2565), + [aux_sym_cmd_identifier_token16] = ACTIONS(2565), + [aux_sym_cmd_identifier_token17] = ACTIONS(2565), + [aux_sym_cmd_identifier_token18] = ACTIONS(2565), + [aux_sym_cmd_identifier_token19] = ACTIONS(2565), + [aux_sym_cmd_identifier_token20] = ACTIONS(2565), + [aux_sym_cmd_identifier_token21] = ACTIONS(2565), + [aux_sym_cmd_identifier_token22] = ACTIONS(2565), + [aux_sym_cmd_identifier_token23] = ACTIONS(2565), + [aux_sym_cmd_identifier_token24] = ACTIONS(2565), + [aux_sym_cmd_identifier_token25] = ACTIONS(2565), + [aux_sym_cmd_identifier_token26] = ACTIONS(2565), + [aux_sym_cmd_identifier_token27] = ACTIONS(2565), + [aux_sym_cmd_identifier_token28] = ACTIONS(2565), + [aux_sym_cmd_identifier_token29] = ACTIONS(2565), + [aux_sym_cmd_identifier_token30] = ACTIONS(2565), + [aux_sym_cmd_identifier_token31] = ACTIONS(2565), + [aux_sym_cmd_identifier_token32] = ACTIONS(2565), + [aux_sym_cmd_identifier_token33] = ACTIONS(2565), + [aux_sym_cmd_identifier_token34] = ACTIONS(2565), + [aux_sym_cmd_identifier_token35] = ACTIONS(2565), + [aux_sym_cmd_identifier_token36] = ACTIONS(2565), + [anon_sym_true] = ACTIONS(2567), + [anon_sym_false] = ACTIONS(2567), + [anon_sym_null] = ACTIONS(2567), + [aux_sym_cmd_identifier_token38] = ACTIONS(2565), + [aux_sym_cmd_identifier_token39] = ACTIONS(2567), + [aux_sym_cmd_identifier_token40] = ACTIONS(2567), + [anon_sym_def] = ACTIONS(2565), + [anon_sym_export_DASHenv] = ACTIONS(2565), + [anon_sym_extern] = ACTIONS(2565), + [anon_sym_module] = ACTIONS(2565), + [anon_sym_use] = ACTIONS(2565), + [anon_sym_LPAREN] = ACTIONS(2567), + [anon_sym_DOLLAR] = ACTIONS(2567), + [anon_sym_error] = ACTIONS(2565), + [anon_sym_list] = ACTIONS(2565), + [anon_sym_DASH] = ACTIONS(2565), + [anon_sym_break] = ACTIONS(2565), + [anon_sym_continue] = ACTIONS(2565), + [anon_sym_for] = ACTIONS(2565), + [anon_sym_in] = ACTIONS(2565), + [anon_sym_loop] = ACTIONS(2565), + [anon_sym_make] = ACTIONS(2565), + [anon_sym_while] = ACTIONS(2565), + [anon_sym_do] = ACTIONS(2565), + [anon_sym_if] = ACTIONS(2565), + [anon_sym_else] = ACTIONS(2565), + [anon_sym_match] = ACTIONS(2565), + [anon_sym_RBRACE] = ACTIONS(2567), + [anon_sym_try] = ACTIONS(2565), + [anon_sym_catch] = ACTIONS(2565), + [anon_sym_return] = ACTIONS(2565), + [anon_sym_source] = ACTIONS(2565), + [anon_sym_source_DASHenv] = ACTIONS(2565), + [anon_sym_register] = ACTIONS(2565), + [anon_sym_hide] = ACTIONS(2565), + [anon_sym_hide_DASHenv] = ACTIONS(2565), + [anon_sym_overlay] = ACTIONS(2565), + [anon_sym_new] = ACTIONS(2565), + [anon_sym_as] = ACTIONS(2565), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2567), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2567), + [aux_sym__val_number_decimal_token1] = ACTIONS(2565), + [aux_sym__val_number_decimal_token2] = ACTIONS(2567), + [aux_sym__val_number_decimal_token3] = ACTIONS(2567), + [aux_sym__val_number_decimal_token4] = ACTIONS(2567), + [aux_sym__val_number_token1] = ACTIONS(2567), + [aux_sym__val_number_token2] = ACTIONS(2567), + [aux_sym__val_number_token3] = ACTIONS(2567), + [anon_sym_DQUOTE] = ACTIONS(2567), + [sym__str_single_quotes] = ACTIONS(2567), + [sym__str_back_ticks] = ACTIONS(2567), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2567), + [anon_sym_PLUS] = ACTIONS(2565), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2567), }, - [676] = { - [sym_comment] = STATE(676), - [anon_sym_export] = ACTIONS(2388), - [anon_sym_alias] = ACTIONS(2388), - [anon_sym_let] = ACTIONS(2388), - [anon_sym_let_DASHenv] = ACTIONS(2388), - [anon_sym_mut] = ACTIONS(2388), - [anon_sym_const] = ACTIONS(2388), - [aux_sym_cmd_identifier_token1] = ACTIONS(2388), - [aux_sym_cmd_identifier_token2] = ACTIONS(2388), - [aux_sym_cmd_identifier_token3] = ACTIONS(2388), - [aux_sym_cmd_identifier_token4] = ACTIONS(2388), - [aux_sym_cmd_identifier_token5] = ACTIONS(2388), - [aux_sym_cmd_identifier_token6] = ACTIONS(2388), - [aux_sym_cmd_identifier_token7] = ACTIONS(2388), - [aux_sym_cmd_identifier_token8] = ACTIONS(2388), - [aux_sym_cmd_identifier_token9] = ACTIONS(2388), - [aux_sym_cmd_identifier_token10] = ACTIONS(2388), - [aux_sym_cmd_identifier_token11] = ACTIONS(2388), - [aux_sym_cmd_identifier_token12] = ACTIONS(2388), - [aux_sym_cmd_identifier_token13] = ACTIONS(2388), - [aux_sym_cmd_identifier_token14] = ACTIONS(2388), - [aux_sym_cmd_identifier_token15] = ACTIONS(2388), - [aux_sym_cmd_identifier_token16] = ACTIONS(2388), - [aux_sym_cmd_identifier_token17] = ACTIONS(2388), - [aux_sym_cmd_identifier_token18] = ACTIONS(2388), - [aux_sym_cmd_identifier_token19] = ACTIONS(2388), - [aux_sym_cmd_identifier_token20] = ACTIONS(2388), - [aux_sym_cmd_identifier_token21] = ACTIONS(2388), - [aux_sym_cmd_identifier_token22] = ACTIONS(2388), - [aux_sym_cmd_identifier_token23] = ACTIONS(2388), - [aux_sym_cmd_identifier_token24] = ACTIONS(2388), - [aux_sym_cmd_identifier_token25] = ACTIONS(2388), - [aux_sym_cmd_identifier_token26] = ACTIONS(2388), - [aux_sym_cmd_identifier_token27] = ACTIONS(2388), - [aux_sym_cmd_identifier_token28] = ACTIONS(2388), - [aux_sym_cmd_identifier_token29] = ACTIONS(2388), - [aux_sym_cmd_identifier_token30] = ACTIONS(2388), - [aux_sym_cmd_identifier_token31] = ACTIONS(2388), - [aux_sym_cmd_identifier_token32] = ACTIONS(2388), - [aux_sym_cmd_identifier_token33] = ACTIONS(2388), - [aux_sym_cmd_identifier_token34] = ACTIONS(2388), - [aux_sym_cmd_identifier_token35] = ACTIONS(2388), - [aux_sym_cmd_identifier_token36] = ACTIONS(2388), - [anon_sym_true] = ACTIONS(2390), - [anon_sym_false] = ACTIONS(2390), - [anon_sym_null] = ACTIONS(2390), - [aux_sym_cmd_identifier_token38] = ACTIONS(2388), - [aux_sym_cmd_identifier_token39] = ACTIONS(2390), - [aux_sym_cmd_identifier_token40] = ACTIONS(2390), - [anon_sym_def] = ACTIONS(2388), - [anon_sym_export_DASHenv] = ACTIONS(2388), - [anon_sym_extern] = ACTIONS(2388), - [anon_sym_module] = ACTIONS(2388), - [anon_sym_use] = ACTIONS(2388), - [anon_sym_LPAREN] = ACTIONS(2390), - [anon_sym_DOLLAR] = ACTIONS(2390), - [anon_sym_error] = ACTIONS(2388), - [anon_sym_list] = ACTIONS(2388), - [anon_sym_DASH] = ACTIONS(2388), - [anon_sym_break] = ACTIONS(2388), - [anon_sym_continue] = ACTIONS(2388), - [anon_sym_for] = ACTIONS(2388), - [anon_sym_in] = ACTIONS(2388), - [anon_sym_loop] = ACTIONS(2388), - [anon_sym_make] = ACTIONS(2388), - [anon_sym_while] = ACTIONS(2388), - [anon_sym_do] = ACTIONS(2388), - [anon_sym_if] = ACTIONS(2388), - [anon_sym_else] = ACTIONS(2388), - [anon_sym_match] = ACTIONS(2388), - [anon_sym_RBRACE] = ACTIONS(2390), - [anon_sym_try] = ACTIONS(2388), - [anon_sym_catch] = ACTIONS(2388), - [anon_sym_return] = ACTIONS(2388), - [anon_sym_source] = ACTIONS(2388), - [anon_sym_source_DASHenv] = ACTIONS(2388), - [anon_sym_register] = ACTIONS(2388), - [anon_sym_hide] = ACTIONS(2388), - [anon_sym_hide_DASHenv] = ACTIONS(2388), - [anon_sym_overlay] = ACTIONS(2388), - [anon_sym_new] = ACTIONS(2388), - [anon_sym_as] = ACTIONS(2388), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2390), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2390), - [aux_sym__val_number_decimal_token1] = ACTIONS(2388), - [aux_sym__val_number_decimal_token2] = ACTIONS(2390), - [aux_sym__val_number_decimal_token3] = ACTIONS(2390), - [aux_sym__val_number_decimal_token4] = ACTIONS(2390), - [aux_sym__val_number_token1] = ACTIONS(2390), - [aux_sym__val_number_token2] = ACTIONS(2390), - [aux_sym__val_number_token3] = ACTIONS(2390), - [anon_sym_DQUOTE] = ACTIONS(2390), - [sym__str_single_quotes] = ACTIONS(2390), - [sym__str_back_ticks] = ACTIONS(2390), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2390), - [anon_sym_PLUS] = ACTIONS(2388), - [anon_sym_POUND] = ACTIONS(247), - }, - [677] = { - [sym_comment] = STATE(677), - [anon_sym_export] = ACTIONS(2517), - [anon_sym_alias] = ACTIONS(2517), - [anon_sym_let] = ACTIONS(2517), - [anon_sym_let_DASHenv] = ACTIONS(2517), - [anon_sym_mut] = ACTIONS(2517), - [anon_sym_const] = ACTIONS(2517), - [aux_sym_cmd_identifier_token1] = ACTIONS(2517), - [aux_sym_cmd_identifier_token2] = ACTIONS(2517), - [aux_sym_cmd_identifier_token3] = ACTIONS(2517), - [aux_sym_cmd_identifier_token4] = ACTIONS(2517), - [aux_sym_cmd_identifier_token5] = ACTIONS(2517), - [aux_sym_cmd_identifier_token6] = ACTIONS(2517), - [aux_sym_cmd_identifier_token7] = ACTIONS(2517), - [aux_sym_cmd_identifier_token8] = ACTIONS(2517), - [aux_sym_cmd_identifier_token9] = ACTIONS(2517), - [aux_sym_cmd_identifier_token10] = ACTIONS(2517), - [aux_sym_cmd_identifier_token11] = ACTIONS(2517), - [aux_sym_cmd_identifier_token12] = ACTIONS(2517), - [aux_sym_cmd_identifier_token13] = ACTIONS(2517), - [aux_sym_cmd_identifier_token14] = ACTIONS(2517), - [aux_sym_cmd_identifier_token15] = ACTIONS(2517), - [aux_sym_cmd_identifier_token16] = ACTIONS(2517), - [aux_sym_cmd_identifier_token17] = ACTIONS(2517), - [aux_sym_cmd_identifier_token18] = ACTIONS(2517), - [aux_sym_cmd_identifier_token19] = ACTIONS(2517), - [aux_sym_cmd_identifier_token20] = ACTIONS(2517), - [aux_sym_cmd_identifier_token21] = ACTIONS(2517), - [aux_sym_cmd_identifier_token22] = ACTIONS(2517), - [aux_sym_cmd_identifier_token23] = ACTIONS(2517), - [aux_sym_cmd_identifier_token24] = ACTIONS(2517), - [aux_sym_cmd_identifier_token25] = ACTIONS(2517), - [aux_sym_cmd_identifier_token26] = ACTIONS(2517), - [aux_sym_cmd_identifier_token27] = ACTIONS(2517), - [aux_sym_cmd_identifier_token28] = ACTIONS(2517), - [aux_sym_cmd_identifier_token29] = ACTIONS(2517), - [aux_sym_cmd_identifier_token30] = ACTIONS(2517), - [aux_sym_cmd_identifier_token31] = ACTIONS(2517), - [aux_sym_cmd_identifier_token32] = ACTIONS(2517), - [aux_sym_cmd_identifier_token33] = ACTIONS(2517), - [aux_sym_cmd_identifier_token34] = ACTIONS(2517), - [aux_sym_cmd_identifier_token35] = ACTIONS(2517), - [aux_sym_cmd_identifier_token36] = ACTIONS(2517), - [anon_sym_true] = ACTIONS(2519), - [anon_sym_false] = ACTIONS(2519), - [anon_sym_null] = ACTIONS(2519), - [aux_sym_cmd_identifier_token38] = ACTIONS(2517), - [aux_sym_cmd_identifier_token39] = ACTIONS(2519), - [aux_sym_cmd_identifier_token40] = ACTIONS(2519), - [anon_sym_def] = ACTIONS(2517), - [anon_sym_export_DASHenv] = ACTIONS(2517), - [anon_sym_extern] = ACTIONS(2517), - [anon_sym_module] = ACTIONS(2517), - [anon_sym_use] = ACTIONS(2517), - [anon_sym_LPAREN] = ACTIONS(2519), - [anon_sym_DOLLAR] = ACTIONS(2519), - [anon_sym_error] = ACTIONS(2517), - [anon_sym_list] = ACTIONS(2517), - [anon_sym_DASH] = ACTIONS(2517), - [anon_sym_break] = ACTIONS(2517), - [anon_sym_continue] = ACTIONS(2517), - [anon_sym_for] = ACTIONS(2517), - [anon_sym_in] = ACTIONS(2517), - [anon_sym_loop] = ACTIONS(2517), - [anon_sym_make] = ACTIONS(2517), - [anon_sym_while] = ACTIONS(2517), - [anon_sym_do] = ACTIONS(2517), - [anon_sym_if] = ACTIONS(2517), - [anon_sym_else] = ACTIONS(2517), - [anon_sym_match] = ACTIONS(2517), - [anon_sym_RBRACE] = ACTIONS(2519), - [anon_sym_try] = ACTIONS(2517), - [anon_sym_catch] = ACTIONS(2517), - [anon_sym_return] = ACTIONS(2517), - [anon_sym_source] = ACTIONS(2517), - [anon_sym_source_DASHenv] = ACTIONS(2517), - [anon_sym_register] = ACTIONS(2517), - [anon_sym_hide] = ACTIONS(2517), - [anon_sym_hide_DASHenv] = ACTIONS(2517), - [anon_sym_overlay] = ACTIONS(2517), - [anon_sym_new] = ACTIONS(2517), - [anon_sym_as] = ACTIONS(2517), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2519), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2519), - [aux_sym__val_number_decimal_token1] = ACTIONS(2517), - [aux_sym__val_number_decimal_token2] = ACTIONS(2519), - [aux_sym__val_number_decimal_token3] = ACTIONS(2519), - [aux_sym__val_number_decimal_token4] = ACTIONS(2519), - [aux_sym__val_number_token1] = ACTIONS(2519), - [aux_sym__val_number_token2] = ACTIONS(2519), - [aux_sym__val_number_token3] = ACTIONS(2519), - [anon_sym_DQUOTE] = ACTIONS(2519), - [sym__str_single_quotes] = ACTIONS(2519), - [sym__str_back_ticks] = ACTIONS(2519), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2519), - [anon_sym_PLUS] = ACTIONS(2517), - [anon_sym_POUND] = ACTIONS(247), - }, - [678] = { - [sym_comment] = STATE(678), - [anon_sym_export] = ACTIONS(2521), - [anon_sym_alias] = ACTIONS(2521), - [anon_sym_let] = ACTIONS(2521), - [anon_sym_let_DASHenv] = ACTIONS(2521), - [anon_sym_mut] = ACTIONS(2521), - [anon_sym_const] = ACTIONS(2521), - [aux_sym_cmd_identifier_token1] = ACTIONS(2521), - [aux_sym_cmd_identifier_token2] = ACTIONS(2521), - [aux_sym_cmd_identifier_token3] = ACTIONS(2521), - [aux_sym_cmd_identifier_token4] = ACTIONS(2521), - [aux_sym_cmd_identifier_token5] = ACTIONS(2521), - [aux_sym_cmd_identifier_token6] = ACTIONS(2521), - [aux_sym_cmd_identifier_token7] = ACTIONS(2521), - [aux_sym_cmd_identifier_token8] = ACTIONS(2521), - [aux_sym_cmd_identifier_token9] = ACTIONS(2521), - [aux_sym_cmd_identifier_token10] = ACTIONS(2521), - [aux_sym_cmd_identifier_token11] = ACTIONS(2521), - [aux_sym_cmd_identifier_token12] = ACTIONS(2521), - [aux_sym_cmd_identifier_token13] = ACTIONS(2521), - [aux_sym_cmd_identifier_token14] = ACTIONS(2521), - [aux_sym_cmd_identifier_token15] = ACTIONS(2521), - [aux_sym_cmd_identifier_token16] = ACTIONS(2521), - [aux_sym_cmd_identifier_token17] = ACTIONS(2521), - [aux_sym_cmd_identifier_token18] = ACTIONS(2521), - [aux_sym_cmd_identifier_token19] = ACTIONS(2521), - [aux_sym_cmd_identifier_token20] = ACTIONS(2521), - [aux_sym_cmd_identifier_token21] = ACTIONS(2521), - [aux_sym_cmd_identifier_token22] = ACTIONS(2521), - [aux_sym_cmd_identifier_token23] = ACTIONS(2521), - [aux_sym_cmd_identifier_token24] = ACTIONS(2521), - [aux_sym_cmd_identifier_token25] = ACTIONS(2521), - [aux_sym_cmd_identifier_token26] = ACTIONS(2521), - [aux_sym_cmd_identifier_token27] = ACTIONS(2521), - [aux_sym_cmd_identifier_token28] = ACTIONS(2521), - [aux_sym_cmd_identifier_token29] = ACTIONS(2521), - [aux_sym_cmd_identifier_token30] = ACTIONS(2521), - [aux_sym_cmd_identifier_token31] = ACTIONS(2521), - [aux_sym_cmd_identifier_token32] = ACTIONS(2521), - [aux_sym_cmd_identifier_token33] = ACTIONS(2521), - [aux_sym_cmd_identifier_token34] = ACTIONS(2521), - [aux_sym_cmd_identifier_token35] = ACTIONS(2521), - [aux_sym_cmd_identifier_token36] = ACTIONS(2521), - [anon_sym_true] = ACTIONS(2523), - [anon_sym_false] = ACTIONS(2523), - [anon_sym_null] = ACTIONS(2523), - [aux_sym_cmd_identifier_token38] = ACTIONS(2521), - [aux_sym_cmd_identifier_token39] = ACTIONS(2523), - [aux_sym_cmd_identifier_token40] = ACTIONS(2523), - [anon_sym_def] = ACTIONS(2521), - [anon_sym_export_DASHenv] = ACTIONS(2521), - [anon_sym_extern] = ACTIONS(2521), - [anon_sym_module] = ACTIONS(2521), - [anon_sym_use] = ACTIONS(2521), - [anon_sym_LPAREN] = ACTIONS(2523), - [anon_sym_DOLLAR] = ACTIONS(2523), - [anon_sym_error] = ACTIONS(2521), - [anon_sym_list] = ACTIONS(2521), - [anon_sym_DASH] = ACTIONS(2521), - [anon_sym_break] = ACTIONS(2521), - [anon_sym_continue] = ACTIONS(2521), - [anon_sym_for] = ACTIONS(2521), - [anon_sym_in] = ACTIONS(2521), - [anon_sym_loop] = ACTIONS(2521), - [anon_sym_make] = ACTIONS(2521), - [anon_sym_while] = ACTIONS(2521), - [anon_sym_do] = ACTIONS(2521), - [anon_sym_if] = ACTIONS(2521), - [anon_sym_else] = ACTIONS(2521), - [anon_sym_match] = ACTIONS(2521), - [anon_sym_RBRACE] = ACTIONS(2523), - [anon_sym_try] = ACTIONS(2521), - [anon_sym_catch] = ACTIONS(2521), - [anon_sym_return] = ACTIONS(2521), - [anon_sym_source] = ACTIONS(2521), - [anon_sym_source_DASHenv] = ACTIONS(2521), - [anon_sym_register] = ACTIONS(2521), - [anon_sym_hide] = ACTIONS(2521), - [anon_sym_hide_DASHenv] = ACTIONS(2521), - [anon_sym_overlay] = ACTIONS(2521), - [anon_sym_new] = ACTIONS(2521), - [anon_sym_as] = ACTIONS(2521), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2523), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2523), - [aux_sym__val_number_decimal_token1] = ACTIONS(2521), - [aux_sym__val_number_decimal_token2] = ACTIONS(2523), - [aux_sym__val_number_decimal_token3] = ACTIONS(2523), - [aux_sym__val_number_decimal_token4] = ACTIONS(2523), - [aux_sym__val_number_token1] = ACTIONS(2523), - [aux_sym__val_number_token2] = ACTIONS(2523), - [aux_sym__val_number_token3] = ACTIONS(2523), - [anon_sym_DQUOTE] = ACTIONS(2523), - [sym__str_single_quotes] = ACTIONS(2523), - [sym__str_back_ticks] = ACTIONS(2523), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2523), - [anon_sym_PLUS] = ACTIONS(2521), - [anon_sym_POUND] = ACTIONS(247), - }, - [679] = { - [sym_comment] = STATE(679), - [anon_sym_export] = ACTIONS(1848), - [anon_sym_alias] = ACTIONS(1848), - [anon_sym_let] = ACTIONS(1848), - [anon_sym_let_DASHenv] = ACTIONS(1848), - [anon_sym_mut] = ACTIONS(1848), - [anon_sym_const] = ACTIONS(1848), - [aux_sym_cmd_identifier_token1] = ACTIONS(1848), - [aux_sym_cmd_identifier_token2] = ACTIONS(1848), - [aux_sym_cmd_identifier_token3] = ACTIONS(1848), - [aux_sym_cmd_identifier_token4] = ACTIONS(1848), - [aux_sym_cmd_identifier_token5] = ACTIONS(1848), - [aux_sym_cmd_identifier_token6] = ACTIONS(1848), - [aux_sym_cmd_identifier_token7] = ACTIONS(1848), - [aux_sym_cmd_identifier_token8] = ACTIONS(1848), - [aux_sym_cmd_identifier_token9] = ACTIONS(1848), - [aux_sym_cmd_identifier_token10] = ACTIONS(1848), - [aux_sym_cmd_identifier_token11] = ACTIONS(1848), - [aux_sym_cmd_identifier_token12] = ACTIONS(1848), - [aux_sym_cmd_identifier_token13] = ACTIONS(1848), - [aux_sym_cmd_identifier_token14] = ACTIONS(1848), - [aux_sym_cmd_identifier_token15] = ACTIONS(1848), - [aux_sym_cmd_identifier_token16] = ACTIONS(1848), - [aux_sym_cmd_identifier_token17] = ACTIONS(1848), - [aux_sym_cmd_identifier_token18] = ACTIONS(1848), - [aux_sym_cmd_identifier_token19] = ACTIONS(1848), - [aux_sym_cmd_identifier_token20] = ACTIONS(1848), - [aux_sym_cmd_identifier_token21] = ACTIONS(1848), - [aux_sym_cmd_identifier_token22] = ACTIONS(1848), - [aux_sym_cmd_identifier_token23] = ACTIONS(1848), - [aux_sym_cmd_identifier_token24] = ACTIONS(1848), - [aux_sym_cmd_identifier_token25] = ACTIONS(1848), - [aux_sym_cmd_identifier_token26] = ACTIONS(1848), - [aux_sym_cmd_identifier_token27] = ACTIONS(1848), - [aux_sym_cmd_identifier_token28] = ACTIONS(1848), - [aux_sym_cmd_identifier_token29] = ACTIONS(1848), - [aux_sym_cmd_identifier_token30] = ACTIONS(1848), - [aux_sym_cmd_identifier_token31] = ACTIONS(1848), - [aux_sym_cmd_identifier_token32] = ACTIONS(1848), - [aux_sym_cmd_identifier_token33] = ACTIONS(1848), - [aux_sym_cmd_identifier_token34] = ACTIONS(1848), - [aux_sym_cmd_identifier_token35] = ACTIONS(1848), - [aux_sym_cmd_identifier_token36] = ACTIONS(1848), - [anon_sym_true] = ACTIONS(1850), - [anon_sym_false] = ACTIONS(1850), - [anon_sym_null] = ACTIONS(1850), - [aux_sym_cmd_identifier_token38] = ACTIONS(1848), - [aux_sym_cmd_identifier_token39] = ACTIONS(1850), - [aux_sym_cmd_identifier_token40] = ACTIONS(1850), - [anon_sym_def] = ACTIONS(1848), - [anon_sym_export_DASHenv] = ACTIONS(1848), - [anon_sym_extern] = ACTIONS(1848), - [anon_sym_module] = ACTIONS(1848), - [anon_sym_use] = ACTIONS(1848), - [anon_sym_LPAREN] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1850), - [anon_sym_error] = ACTIONS(1848), - [anon_sym_list] = ACTIONS(1848), - [anon_sym_DASH] = ACTIONS(1848), - [anon_sym_break] = ACTIONS(1848), - [anon_sym_continue] = ACTIONS(1848), - [anon_sym_for] = ACTIONS(1848), - [anon_sym_in] = ACTIONS(1848), - [anon_sym_loop] = ACTIONS(1848), - [anon_sym_make] = ACTIONS(1848), - [anon_sym_while] = ACTIONS(1848), - [anon_sym_do] = ACTIONS(1848), - [anon_sym_if] = ACTIONS(1848), - [anon_sym_else] = ACTIONS(1848), - [anon_sym_match] = ACTIONS(1848), - [anon_sym_RBRACE] = ACTIONS(1850), - [anon_sym_try] = ACTIONS(1848), - [anon_sym_catch] = ACTIONS(1848), - [anon_sym_return] = ACTIONS(1848), - [anon_sym_source] = ACTIONS(1848), - [anon_sym_source_DASHenv] = ACTIONS(1848), - [anon_sym_register] = ACTIONS(1848), - [anon_sym_hide] = ACTIONS(1848), - [anon_sym_hide_DASHenv] = ACTIONS(1848), - [anon_sym_overlay] = ACTIONS(1848), - [anon_sym_new] = ACTIONS(1848), - [anon_sym_as] = ACTIONS(1848), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1850), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1850), - [aux_sym__val_number_decimal_token1] = ACTIONS(1848), - [aux_sym__val_number_decimal_token2] = ACTIONS(1850), - [aux_sym__val_number_decimal_token3] = ACTIONS(1850), - [aux_sym__val_number_decimal_token4] = ACTIONS(1850), - [aux_sym__val_number_token1] = ACTIONS(1850), - [aux_sym__val_number_token2] = ACTIONS(1850), - [aux_sym__val_number_token3] = ACTIONS(1850), - [anon_sym_DQUOTE] = ACTIONS(1850), - [sym__str_single_quotes] = ACTIONS(1850), - [sym__str_back_ticks] = ACTIONS(1850), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1850), - [anon_sym_PLUS] = ACTIONS(1848), - [anon_sym_POUND] = ACTIONS(247), - }, - [680] = { - [sym_comment] = STATE(680), - [anon_sym_export] = ACTIONS(2412), - [anon_sym_alias] = ACTIONS(2412), - [anon_sym_let] = ACTIONS(2412), - [anon_sym_let_DASHenv] = ACTIONS(2412), - [anon_sym_mut] = ACTIONS(2412), - [anon_sym_const] = ACTIONS(2412), - [aux_sym_cmd_identifier_token1] = ACTIONS(2412), - [aux_sym_cmd_identifier_token2] = ACTIONS(2412), - [aux_sym_cmd_identifier_token3] = ACTIONS(2412), - [aux_sym_cmd_identifier_token4] = ACTIONS(2412), - [aux_sym_cmd_identifier_token5] = ACTIONS(2412), - [aux_sym_cmd_identifier_token6] = ACTIONS(2412), - [aux_sym_cmd_identifier_token7] = ACTIONS(2412), - [aux_sym_cmd_identifier_token8] = ACTIONS(2412), - [aux_sym_cmd_identifier_token9] = ACTIONS(2412), - [aux_sym_cmd_identifier_token10] = ACTIONS(2412), - [aux_sym_cmd_identifier_token11] = ACTIONS(2412), - [aux_sym_cmd_identifier_token12] = ACTIONS(2412), - [aux_sym_cmd_identifier_token13] = ACTIONS(2412), - [aux_sym_cmd_identifier_token14] = ACTIONS(2412), - [aux_sym_cmd_identifier_token15] = ACTIONS(2412), - [aux_sym_cmd_identifier_token16] = ACTIONS(2412), - [aux_sym_cmd_identifier_token17] = ACTIONS(2412), - [aux_sym_cmd_identifier_token18] = ACTIONS(2412), - [aux_sym_cmd_identifier_token19] = ACTIONS(2412), - [aux_sym_cmd_identifier_token20] = ACTIONS(2412), - [aux_sym_cmd_identifier_token21] = ACTIONS(2412), - [aux_sym_cmd_identifier_token22] = ACTIONS(2412), - [aux_sym_cmd_identifier_token23] = ACTIONS(2412), - [aux_sym_cmd_identifier_token24] = ACTIONS(2412), - [aux_sym_cmd_identifier_token25] = ACTIONS(2412), - [aux_sym_cmd_identifier_token26] = ACTIONS(2412), - [aux_sym_cmd_identifier_token27] = ACTIONS(2412), - [aux_sym_cmd_identifier_token28] = ACTIONS(2412), - [aux_sym_cmd_identifier_token29] = ACTIONS(2412), - [aux_sym_cmd_identifier_token30] = ACTIONS(2412), - [aux_sym_cmd_identifier_token31] = ACTIONS(2412), - [aux_sym_cmd_identifier_token32] = ACTIONS(2412), - [aux_sym_cmd_identifier_token33] = ACTIONS(2412), - [aux_sym_cmd_identifier_token34] = ACTIONS(2412), - [aux_sym_cmd_identifier_token35] = ACTIONS(2412), - [aux_sym_cmd_identifier_token36] = ACTIONS(2412), - [anon_sym_true] = ACTIONS(2414), - [anon_sym_false] = ACTIONS(2414), - [anon_sym_null] = ACTIONS(2414), - [aux_sym_cmd_identifier_token38] = ACTIONS(2412), - [aux_sym_cmd_identifier_token39] = ACTIONS(2414), - [aux_sym_cmd_identifier_token40] = ACTIONS(2414), - [anon_sym_def] = ACTIONS(2412), - [anon_sym_export_DASHenv] = ACTIONS(2412), - [anon_sym_extern] = ACTIONS(2412), - [anon_sym_module] = ACTIONS(2412), - [anon_sym_use] = ACTIONS(2412), - [anon_sym_LPAREN] = ACTIONS(2414), - [anon_sym_DOLLAR] = ACTIONS(2414), - [anon_sym_error] = ACTIONS(2412), - [anon_sym_list] = ACTIONS(2412), - [anon_sym_DASH] = ACTIONS(2412), - [anon_sym_break] = ACTIONS(2412), - [anon_sym_continue] = ACTIONS(2412), - [anon_sym_for] = ACTIONS(2412), - [anon_sym_in] = ACTIONS(2412), - [anon_sym_loop] = ACTIONS(2412), - [anon_sym_make] = ACTIONS(2412), - [anon_sym_while] = ACTIONS(2412), - [anon_sym_do] = ACTIONS(2412), - [anon_sym_if] = ACTIONS(2412), - [anon_sym_else] = ACTIONS(2412), - [anon_sym_match] = ACTIONS(2412), - [anon_sym_RBRACE] = ACTIONS(2414), - [anon_sym_try] = ACTIONS(2412), - [anon_sym_catch] = ACTIONS(2412), - [anon_sym_return] = ACTIONS(2412), - [anon_sym_source] = ACTIONS(2412), - [anon_sym_source_DASHenv] = ACTIONS(2412), - [anon_sym_register] = ACTIONS(2412), - [anon_sym_hide] = ACTIONS(2412), - [anon_sym_hide_DASHenv] = ACTIONS(2412), - [anon_sym_overlay] = ACTIONS(2412), - [anon_sym_new] = ACTIONS(2412), - [anon_sym_as] = ACTIONS(2412), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2414), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2414), - [aux_sym__val_number_decimal_token1] = ACTIONS(2412), - [aux_sym__val_number_decimal_token2] = ACTIONS(2414), - [aux_sym__val_number_decimal_token3] = ACTIONS(2414), - [aux_sym__val_number_decimal_token4] = ACTIONS(2414), - [aux_sym__val_number_token1] = ACTIONS(2414), - [aux_sym__val_number_token2] = ACTIONS(2414), - [aux_sym__val_number_token3] = ACTIONS(2414), - [anon_sym_DQUOTE] = ACTIONS(2414), - [sym__str_single_quotes] = ACTIONS(2414), - [sym__str_back_ticks] = ACTIONS(2414), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2414), - [anon_sym_PLUS] = ACTIONS(2412), - [anon_sym_POUND] = ACTIONS(247), - }, - [681] = { - [sym_comment] = STATE(681), - [anon_sym_export] = ACTIONS(2416), - [anon_sym_alias] = ACTIONS(2416), - [anon_sym_let] = ACTIONS(2416), - [anon_sym_let_DASHenv] = ACTIONS(2416), - [anon_sym_mut] = ACTIONS(2416), - [anon_sym_const] = ACTIONS(2416), - [aux_sym_cmd_identifier_token1] = ACTIONS(2416), - [aux_sym_cmd_identifier_token2] = ACTIONS(2416), - [aux_sym_cmd_identifier_token3] = ACTIONS(2416), - [aux_sym_cmd_identifier_token4] = ACTIONS(2416), - [aux_sym_cmd_identifier_token5] = ACTIONS(2416), - [aux_sym_cmd_identifier_token6] = ACTIONS(2416), - [aux_sym_cmd_identifier_token7] = ACTIONS(2416), - [aux_sym_cmd_identifier_token8] = ACTIONS(2416), - [aux_sym_cmd_identifier_token9] = ACTIONS(2416), - [aux_sym_cmd_identifier_token10] = ACTIONS(2416), - [aux_sym_cmd_identifier_token11] = ACTIONS(2416), - [aux_sym_cmd_identifier_token12] = ACTIONS(2416), - [aux_sym_cmd_identifier_token13] = ACTIONS(2416), - [aux_sym_cmd_identifier_token14] = ACTIONS(2416), - [aux_sym_cmd_identifier_token15] = ACTIONS(2416), - [aux_sym_cmd_identifier_token16] = ACTIONS(2416), - [aux_sym_cmd_identifier_token17] = ACTIONS(2416), - [aux_sym_cmd_identifier_token18] = ACTIONS(2416), - [aux_sym_cmd_identifier_token19] = ACTIONS(2416), - [aux_sym_cmd_identifier_token20] = ACTIONS(2416), - [aux_sym_cmd_identifier_token21] = ACTIONS(2416), - [aux_sym_cmd_identifier_token22] = ACTIONS(2416), - [aux_sym_cmd_identifier_token23] = ACTIONS(2416), - [aux_sym_cmd_identifier_token24] = ACTIONS(2416), - [aux_sym_cmd_identifier_token25] = ACTIONS(2416), - [aux_sym_cmd_identifier_token26] = ACTIONS(2416), - [aux_sym_cmd_identifier_token27] = ACTIONS(2416), - [aux_sym_cmd_identifier_token28] = ACTIONS(2416), - [aux_sym_cmd_identifier_token29] = ACTIONS(2416), - [aux_sym_cmd_identifier_token30] = ACTIONS(2416), - [aux_sym_cmd_identifier_token31] = ACTIONS(2416), - [aux_sym_cmd_identifier_token32] = ACTIONS(2416), - [aux_sym_cmd_identifier_token33] = ACTIONS(2416), - [aux_sym_cmd_identifier_token34] = ACTIONS(2416), - [aux_sym_cmd_identifier_token35] = ACTIONS(2416), - [aux_sym_cmd_identifier_token36] = ACTIONS(2416), - [anon_sym_true] = ACTIONS(2418), - [anon_sym_false] = ACTIONS(2418), - [anon_sym_null] = ACTIONS(2418), - [aux_sym_cmd_identifier_token38] = ACTIONS(2416), - [aux_sym_cmd_identifier_token39] = ACTIONS(2418), - [aux_sym_cmd_identifier_token40] = ACTIONS(2418), - [anon_sym_def] = ACTIONS(2416), - [anon_sym_export_DASHenv] = ACTIONS(2416), - [anon_sym_extern] = ACTIONS(2416), - [anon_sym_module] = ACTIONS(2416), - [anon_sym_use] = ACTIONS(2416), - [anon_sym_LPAREN] = ACTIONS(2418), - [anon_sym_DOLLAR] = ACTIONS(2418), - [anon_sym_error] = ACTIONS(2416), - [anon_sym_list] = ACTIONS(2416), - [anon_sym_DASH] = ACTIONS(2416), - [anon_sym_break] = ACTIONS(2416), - [anon_sym_continue] = ACTIONS(2416), - [anon_sym_for] = ACTIONS(2416), - [anon_sym_in] = ACTIONS(2416), - [anon_sym_loop] = ACTIONS(2416), - [anon_sym_make] = ACTIONS(2416), - [anon_sym_while] = ACTIONS(2416), - [anon_sym_do] = ACTIONS(2416), - [anon_sym_if] = ACTIONS(2416), - [anon_sym_else] = ACTIONS(2416), - [anon_sym_match] = ACTIONS(2416), - [anon_sym_RBRACE] = ACTIONS(2418), - [anon_sym_try] = ACTIONS(2416), - [anon_sym_catch] = ACTIONS(2416), - [anon_sym_return] = ACTIONS(2416), - [anon_sym_source] = ACTIONS(2416), - [anon_sym_source_DASHenv] = ACTIONS(2416), - [anon_sym_register] = ACTIONS(2416), - [anon_sym_hide] = ACTIONS(2416), - [anon_sym_hide_DASHenv] = ACTIONS(2416), - [anon_sym_overlay] = ACTIONS(2416), - [anon_sym_new] = ACTIONS(2416), - [anon_sym_as] = ACTIONS(2416), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2418), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2418), - [aux_sym__val_number_decimal_token1] = ACTIONS(2416), - [aux_sym__val_number_decimal_token2] = ACTIONS(2418), - [aux_sym__val_number_decimal_token3] = ACTIONS(2418), - [aux_sym__val_number_decimal_token4] = ACTIONS(2418), - [aux_sym__val_number_token1] = ACTIONS(2418), - [aux_sym__val_number_token2] = ACTIONS(2418), - [aux_sym__val_number_token3] = ACTIONS(2418), - [anon_sym_DQUOTE] = ACTIONS(2418), - [sym__str_single_quotes] = ACTIONS(2418), - [sym__str_back_ticks] = ACTIONS(2418), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2418), - [anon_sym_PLUS] = ACTIONS(2416), - [anon_sym_POUND] = ACTIONS(247), - }, - [682] = { - [sym_comment] = STATE(682), - [anon_sym_export] = ACTIONS(1864), - [anon_sym_alias] = ACTIONS(1864), - [anon_sym_let] = ACTIONS(1864), - [anon_sym_let_DASHenv] = ACTIONS(1864), - [anon_sym_mut] = ACTIONS(1864), - [anon_sym_const] = ACTIONS(1864), - [aux_sym_cmd_identifier_token1] = ACTIONS(1864), - [aux_sym_cmd_identifier_token2] = ACTIONS(1864), - [aux_sym_cmd_identifier_token3] = ACTIONS(1864), - [aux_sym_cmd_identifier_token4] = ACTIONS(1864), - [aux_sym_cmd_identifier_token5] = ACTIONS(1864), - [aux_sym_cmd_identifier_token6] = ACTIONS(1864), - [aux_sym_cmd_identifier_token7] = ACTIONS(1864), - [aux_sym_cmd_identifier_token8] = ACTIONS(1864), - [aux_sym_cmd_identifier_token9] = ACTIONS(1864), - [aux_sym_cmd_identifier_token10] = ACTIONS(1864), - [aux_sym_cmd_identifier_token11] = ACTIONS(1864), - [aux_sym_cmd_identifier_token12] = ACTIONS(1864), - [aux_sym_cmd_identifier_token13] = ACTIONS(1864), - [aux_sym_cmd_identifier_token14] = ACTIONS(1864), - [aux_sym_cmd_identifier_token15] = ACTIONS(1864), - [aux_sym_cmd_identifier_token16] = ACTIONS(1864), - [aux_sym_cmd_identifier_token17] = ACTIONS(1864), - [aux_sym_cmd_identifier_token18] = ACTIONS(1864), - [aux_sym_cmd_identifier_token19] = ACTIONS(1864), - [aux_sym_cmd_identifier_token20] = ACTIONS(1864), - [aux_sym_cmd_identifier_token21] = ACTIONS(1864), - [aux_sym_cmd_identifier_token22] = ACTIONS(1864), - [aux_sym_cmd_identifier_token23] = ACTIONS(1864), - [aux_sym_cmd_identifier_token24] = ACTIONS(1864), - [aux_sym_cmd_identifier_token25] = ACTIONS(1864), - [aux_sym_cmd_identifier_token26] = ACTIONS(1864), - [aux_sym_cmd_identifier_token27] = ACTIONS(1864), - [aux_sym_cmd_identifier_token28] = ACTIONS(1864), - [aux_sym_cmd_identifier_token29] = ACTIONS(1864), - [aux_sym_cmd_identifier_token30] = ACTIONS(1864), - [aux_sym_cmd_identifier_token31] = ACTIONS(1864), - [aux_sym_cmd_identifier_token32] = ACTIONS(1864), - [aux_sym_cmd_identifier_token33] = ACTIONS(1864), - [aux_sym_cmd_identifier_token34] = ACTIONS(1864), - [aux_sym_cmd_identifier_token35] = ACTIONS(1864), - [aux_sym_cmd_identifier_token36] = ACTIONS(1864), - [anon_sym_true] = ACTIONS(1866), - [anon_sym_false] = ACTIONS(1866), - [anon_sym_null] = ACTIONS(1866), - [aux_sym_cmd_identifier_token38] = ACTIONS(1864), - [aux_sym_cmd_identifier_token39] = ACTIONS(1866), - [aux_sym_cmd_identifier_token40] = ACTIONS(1866), - [anon_sym_def] = ACTIONS(1864), - [anon_sym_export_DASHenv] = ACTIONS(1864), - [anon_sym_extern] = ACTIONS(1864), - [anon_sym_module] = ACTIONS(1864), - [anon_sym_use] = ACTIONS(1864), - [anon_sym_LPAREN] = ACTIONS(1866), - [anon_sym_DOLLAR] = ACTIONS(1866), - [anon_sym_error] = ACTIONS(1864), - [anon_sym_list] = ACTIONS(1864), - [anon_sym_DASH] = ACTIONS(1864), - [anon_sym_break] = ACTIONS(1864), - [anon_sym_continue] = ACTIONS(1864), - [anon_sym_for] = ACTIONS(1864), - [anon_sym_in] = ACTIONS(1864), - [anon_sym_loop] = ACTIONS(1864), - [anon_sym_make] = ACTIONS(1864), - [anon_sym_while] = ACTIONS(1864), - [anon_sym_do] = ACTIONS(1864), - [anon_sym_if] = ACTIONS(1864), - [anon_sym_else] = ACTIONS(1864), - [anon_sym_match] = ACTIONS(1864), - [anon_sym_RBRACE] = ACTIONS(1866), - [anon_sym_try] = ACTIONS(1864), - [anon_sym_catch] = ACTIONS(1864), - [anon_sym_return] = ACTIONS(1864), - [anon_sym_source] = ACTIONS(1864), - [anon_sym_source_DASHenv] = ACTIONS(1864), - [anon_sym_register] = ACTIONS(1864), - [anon_sym_hide] = ACTIONS(1864), - [anon_sym_hide_DASHenv] = ACTIONS(1864), - [anon_sym_overlay] = ACTIONS(1864), - [anon_sym_new] = ACTIONS(1864), - [anon_sym_as] = ACTIONS(1864), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1866), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1866), - [aux_sym__val_number_decimal_token1] = ACTIONS(1864), - [aux_sym__val_number_decimal_token2] = ACTIONS(1866), - [aux_sym__val_number_decimal_token3] = ACTIONS(1866), - [aux_sym__val_number_decimal_token4] = ACTIONS(1866), - [aux_sym__val_number_token1] = ACTIONS(1866), - [aux_sym__val_number_token2] = ACTIONS(1866), - [aux_sym__val_number_token3] = ACTIONS(1866), - [anon_sym_DQUOTE] = ACTIONS(1866), - [sym__str_single_quotes] = ACTIONS(1866), - [sym__str_back_ticks] = ACTIONS(1866), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1866), - [anon_sym_PLUS] = ACTIONS(1864), - [anon_sym_POUND] = ACTIONS(247), - }, - [683] = { - [sym_comment] = STATE(683), - [anon_sym_export] = ACTIONS(1872), - [anon_sym_alias] = ACTIONS(1872), - [anon_sym_let] = ACTIONS(1872), - [anon_sym_let_DASHenv] = ACTIONS(1872), - [anon_sym_mut] = ACTIONS(1872), - [anon_sym_const] = ACTIONS(1872), - [aux_sym_cmd_identifier_token1] = ACTIONS(1872), - [aux_sym_cmd_identifier_token2] = ACTIONS(1872), - [aux_sym_cmd_identifier_token3] = ACTIONS(1872), - [aux_sym_cmd_identifier_token4] = ACTIONS(1872), - [aux_sym_cmd_identifier_token5] = ACTIONS(1872), - [aux_sym_cmd_identifier_token6] = ACTIONS(1872), - [aux_sym_cmd_identifier_token7] = ACTIONS(1872), - [aux_sym_cmd_identifier_token8] = ACTIONS(1872), - [aux_sym_cmd_identifier_token9] = ACTIONS(1872), - [aux_sym_cmd_identifier_token10] = ACTIONS(1872), - [aux_sym_cmd_identifier_token11] = ACTIONS(1872), - [aux_sym_cmd_identifier_token12] = ACTIONS(1872), - [aux_sym_cmd_identifier_token13] = ACTIONS(1872), - [aux_sym_cmd_identifier_token14] = ACTIONS(1872), - [aux_sym_cmd_identifier_token15] = ACTIONS(1872), - [aux_sym_cmd_identifier_token16] = ACTIONS(1872), - [aux_sym_cmd_identifier_token17] = ACTIONS(1872), - [aux_sym_cmd_identifier_token18] = ACTIONS(1872), - [aux_sym_cmd_identifier_token19] = ACTIONS(1872), - [aux_sym_cmd_identifier_token20] = ACTIONS(1872), - [aux_sym_cmd_identifier_token21] = ACTIONS(1872), - [aux_sym_cmd_identifier_token22] = ACTIONS(1872), - [aux_sym_cmd_identifier_token23] = ACTIONS(1872), - [aux_sym_cmd_identifier_token24] = ACTIONS(1872), - [aux_sym_cmd_identifier_token25] = ACTIONS(1872), - [aux_sym_cmd_identifier_token26] = ACTIONS(1872), - [aux_sym_cmd_identifier_token27] = ACTIONS(1872), - [aux_sym_cmd_identifier_token28] = ACTIONS(1872), - [aux_sym_cmd_identifier_token29] = ACTIONS(1872), - [aux_sym_cmd_identifier_token30] = ACTIONS(1872), - [aux_sym_cmd_identifier_token31] = ACTIONS(1872), - [aux_sym_cmd_identifier_token32] = ACTIONS(1872), - [aux_sym_cmd_identifier_token33] = ACTIONS(1872), - [aux_sym_cmd_identifier_token34] = ACTIONS(1872), - [aux_sym_cmd_identifier_token35] = ACTIONS(1872), - [aux_sym_cmd_identifier_token36] = ACTIONS(1872), - [anon_sym_true] = ACTIONS(1874), - [anon_sym_false] = ACTIONS(1874), - [anon_sym_null] = ACTIONS(1874), - [aux_sym_cmd_identifier_token38] = ACTIONS(1872), - [aux_sym_cmd_identifier_token39] = ACTIONS(1874), - [aux_sym_cmd_identifier_token40] = ACTIONS(1874), - [anon_sym_def] = ACTIONS(1872), - [anon_sym_export_DASHenv] = ACTIONS(1872), - [anon_sym_extern] = ACTIONS(1872), - [anon_sym_module] = ACTIONS(1872), - [anon_sym_use] = ACTIONS(1872), - [anon_sym_LPAREN] = ACTIONS(1874), - [anon_sym_DOLLAR] = ACTIONS(1874), - [anon_sym_error] = ACTIONS(1872), - [anon_sym_list] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_break] = ACTIONS(1872), - [anon_sym_continue] = ACTIONS(1872), - [anon_sym_for] = ACTIONS(1872), - [anon_sym_in] = ACTIONS(1872), - [anon_sym_loop] = ACTIONS(1872), - [anon_sym_make] = ACTIONS(1872), - [anon_sym_while] = ACTIONS(1872), - [anon_sym_do] = ACTIONS(1872), - [anon_sym_if] = ACTIONS(1872), - [anon_sym_else] = ACTIONS(1872), - [anon_sym_match] = ACTIONS(1872), - [anon_sym_RBRACE] = ACTIONS(1874), - [anon_sym_try] = ACTIONS(1872), - [anon_sym_catch] = ACTIONS(1872), - [anon_sym_return] = ACTIONS(1872), - [anon_sym_source] = ACTIONS(1872), - [anon_sym_source_DASHenv] = ACTIONS(1872), - [anon_sym_register] = ACTIONS(1872), - [anon_sym_hide] = ACTIONS(1872), - [anon_sym_hide_DASHenv] = ACTIONS(1872), - [anon_sym_overlay] = ACTIONS(1872), - [anon_sym_new] = ACTIONS(1872), - [anon_sym_as] = ACTIONS(1872), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1874), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1874), - [aux_sym__val_number_decimal_token1] = ACTIONS(1872), - [aux_sym__val_number_decimal_token2] = ACTIONS(1874), - [aux_sym__val_number_decimal_token3] = ACTIONS(1874), - [aux_sym__val_number_decimal_token4] = ACTIONS(1874), - [aux_sym__val_number_token1] = ACTIONS(1874), - [aux_sym__val_number_token2] = ACTIONS(1874), - [aux_sym__val_number_token3] = ACTIONS(1874), - [anon_sym_DQUOTE] = ACTIONS(1874), - [sym__str_single_quotes] = ACTIONS(1874), - [sym__str_back_ticks] = ACTIONS(1874), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1874), - [anon_sym_PLUS] = ACTIONS(1872), - [anon_sym_POUND] = ACTIONS(247), - }, - [684] = { - [sym_comment] = STATE(684), - [anon_sym_export] = ACTIONS(1876), - [anon_sym_alias] = ACTIONS(1876), - [anon_sym_let] = ACTIONS(1876), - [anon_sym_let_DASHenv] = ACTIONS(1876), - [anon_sym_mut] = ACTIONS(1876), - [anon_sym_const] = ACTIONS(1876), - [aux_sym_cmd_identifier_token1] = ACTIONS(1876), - [aux_sym_cmd_identifier_token2] = ACTIONS(1876), - [aux_sym_cmd_identifier_token3] = ACTIONS(1876), - [aux_sym_cmd_identifier_token4] = ACTIONS(1876), - [aux_sym_cmd_identifier_token5] = ACTIONS(1876), - [aux_sym_cmd_identifier_token6] = ACTIONS(1876), - [aux_sym_cmd_identifier_token7] = ACTIONS(1876), - [aux_sym_cmd_identifier_token8] = ACTIONS(1876), - [aux_sym_cmd_identifier_token9] = ACTIONS(1876), - [aux_sym_cmd_identifier_token10] = ACTIONS(1876), - [aux_sym_cmd_identifier_token11] = ACTIONS(1876), - [aux_sym_cmd_identifier_token12] = ACTIONS(1876), - [aux_sym_cmd_identifier_token13] = ACTIONS(1876), - [aux_sym_cmd_identifier_token14] = ACTIONS(1876), - [aux_sym_cmd_identifier_token15] = ACTIONS(1876), - [aux_sym_cmd_identifier_token16] = ACTIONS(1876), - [aux_sym_cmd_identifier_token17] = ACTIONS(1876), - [aux_sym_cmd_identifier_token18] = ACTIONS(1876), - [aux_sym_cmd_identifier_token19] = ACTIONS(1876), - [aux_sym_cmd_identifier_token20] = ACTIONS(1876), - [aux_sym_cmd_identifier_token21] = ACTIONS(1876), - [aux_sym_cmd_identifier_token22] = ACTIONS(1876), - [aux_sym_cmd_identifier_token23] = ACTIONS(1876), - [aux_sym_cmd_identifier_token24] = ACTIONS(1876), - [aux_sym_cmd_identifier_token25] = ACTIONS(1876), - [aux_sym_cmd_identifier_token26] = ACTIONS(1876), - [aux_sym_cmd_identifier_token27] = ACTIONS(1876), - [aux_sym_cmd_identifier_token28] = ACTIONS(1876), - [aux_sym_cmd_identifier_token29] = ACTIONS(1876), - [aux_sym_cmd_identifier_token30] = ACTIONS(1876), - [aux_sym_cmd_identifier_token31] = ACTIONS(1876), - [aux_sym_cmd_identifier_token32] = ACTIONS(1876), - [aux_sym_cmd_identifier_token33] = ACTIONS(1876), - [aux_sym_cmd_identifier_token34] = ACTIONS(1876), - [aux_sym_cmd_identifier_token35] = ACTIONS(1876), - [aux_sym_cmd_identifier_token36] = ACTIONS(1876), - [anon_sym_true] = ACTIONS(1878), - [anon_sym_false] = ACTIONS(1878), - [anon_sym_null] = ACTIONS(1878), - [aux_sym_cmd_identifier_token38] = ACTIONS(1876), - [aux_sym_cmd_identifier_token39] = ACTIONS(1878), - [aux_sym_cmd_identifier_token40] = ACTIONS(1878), - [anon_sym_def] = ACTIONS(1876), - [anon_sym_export_DASHenv] = ACTIONS(1876), - [anon_sym_extern] = ACTIONS(1876), - [anon_sym_module] = ACTIONS(1876), - [anon_sym_use] = ACTIONS(1876), - [anon_sym_LPAREN] = ACTIONS(1878), - [anon_sym_DOLLAR] = ACTIONS(1878), - [anon_sym_error] = ACTIONS(1876), - [anon_sym_list] = ACTIONS(1876), - [anon_sym_DASH] = ACTIONS(1876), - [anon_sym_break] = ACTIONS(1876), - [anon_sym_continue] = ACTIONS(1876), - [anon_sym_for] = ACTIONS(1876), - [anon_sym_in] = ACTIONS(1876), - [anon_sym_loop] = ACTIONS(1876), - [anon_sym_make] = ACTIONS(1876), - [anon_sym_while] = ACTIONS(1876), - [anon_sym_do] = ACTIONS(1876), - [anon_sym_if] = ACTIONS(1876), - [anon_sym_else] = ACTIONS(1876), - [anon_sym_match] = ACTIONS(1876), - [anon_sym_RBRACE] = ACTIONS(1878), - [anon_sym_try] = ACTIONS(1876), - [anon_sym_catch] = ACTIONS(1876), - [anon_sym_return] = ACTIONS(1876), - [anon_sym_source] = ACTIONS(1876), - [anon_sym_source_DASHenv] = ACTIONS(1876), - [anon_sym_register] = ACTIONS(1876), - [anon_sym_hide] = ACTIONS(1876), - [anon_sym_hide_DASHenv] = ACTIONS(1876), - [anon_sym_overlay] = ACTIONS(1876), - [anon_sym_new] = ACTIONS(1876), - [anon_sym_as] = ACTIONS(1876), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1878), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1878), - [aux_sym__val_number_decimal_token1] = ACTIONS(1876), - [aux_sym__val_number_decimal_token2] = ACTIONS(1878), - [aux_sym__val_number_decimal_token3] = ACTIONS(1878), - [aux_sym__val_number_decimal_token4] = ACTIONS(1878), - [aux_sym__val_number_token1] = ACTIONS(1878), - [aux_sym__val_number_token2] = ACTIONS(1878), - [aux_sym__val_number_token3] = ACTIONS(1878), - [anon_sym_DQUOTE] = ACTIONS(1878), - [sym__str_single_quotes] = ACTIONS(1878), - [sym__str_back_ticks] = ACTIONS(1878), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1878), - [anon_sym_PLUS] = ACTIONS(1876), - [anon_sym_POUND] = ACTIONS(247), + [638] = { + [sym_comment] = STATE(638), + [anon_sym_export] = ACTIONS(2079), + [anon_sym_alias] = ACTIONS(2079), + [anon_sym_let] = ACTIONS(2079), + [anon_sym_let_DASHenv] = ACTIONS(2079), + [anon_sym_mut] = ACTIONS(2079), + [anon_sym_const] = ACTIONS(2079), + [aux_sym_cmd_identifier_token1] = ACTIONS(2079), + [aux_sym_cmd_identifier_token2] = ACTIONS(2079), + [aux_sym_cmd_identifier_token3] = ACTIONS(2079), + [aux_sym_cmd_identifier_token4] = ACTIONS(2079), + [aux_sym_cmd_identifier_token5] = ACTIONS(2079), + [aux_sym_cmd_identifier_token6] = ACTIONS(2079), + [aux_sym_cmd_identifier_token7] = ACTIONS(2079), + [aux_sym_cmd_identifier_token8] = ACTIONS(2079), + [aux_sym_cmd_identifier_token9] = ACTIONS(2079), + [aux_sym_cmd_identifier_token10] = ACTIONS(2079), + [aux_sym_cmd_identifier_token11] = ACTIONS(2079), + [aux_sym_cmd_identifier_token12] = ACTIONS(2079), + [aux_sym_cmd_identifier_token13] = ACTIONS(2079), + [aux_sym_cmd_identifier_token14] = ACTIONS(2079), + [aux_sym_cmd_identifier_token15] = ACTIONS(2079), + [aux_sym_cmd_identifier_token16] = ACTIONS(2079), + [aux_sym_cmd_identifier_token17] = ACTIONS(2079), + [aux_sym_cmd_identifier_token18] = ACTIONS(2079), + [aux_sym_cmd_identifier_token19] = ACTIONS(2079), + [aux_sym_cmd_identifier_token20] = ACTIONS(2079), + [aux_sym_cmd_identifier_token21] = ACTIONS(2079), + [aux_sym_cmd_identifier_token22] = ACTIONS(2079), + [aux_sym_cmd_identifier_token23] = ACTIONS(2079), + [aux_sym_cmd_identifier_token24] = ACTIONS(2079), + [aux_sym_cmd_identifier_token25] = ACTIONS(2079), + [aux_sym_cmd_identifier_token26] = ACTIONS(2079), + [aux_sym_cmd_identifier_token27] = ACTIONS(2079), + [aux_sym_cmd_identifier_token28] = ACTIONS(2079), + [aux_sym_cmd_identifier_token29] = ACTIONS(2079), + [aux_sym_cmd_identifier_token30] = ACTIONS(2079), + [aux_sym_cmd_identifier_token31] = ACTIONS(2079), + [aux_sym_cmd_identifier_token32] = ACTIONS(2079), + [aux_sym_cmd_identifier_token33] = ACTIONS(2079), + [aux_sym_cmd_identifier_token34] = ACTIONS(2079), + [aux_sym_cmd_identifier_token35] = ACTIONS(2079), + [aux_sym_cmd_identifier_token36] = ACTIONS(2079), + [anon_sym_true] = ACTIONS(2081), + [anon_sym_false] = ACTIONS(2081), + [anon_sym_null] = ACTIONS(2081), + [aux_sym_cmd_identifier_token38] = ACTIONS(2079), + [aux_sym_cmd_identifier_token39] = ACTIONS(2081), + [aux_sym_cmd_identifier_token40] = ACTIONS(2081), + [anon_sym_def] = ACTIONS(2079), + [anon_sym_export_DASHenv] = ACTIONS(2079), + [anon_sym_extern] = ACTIONS(2079), + [anon_sym_module] = ACTIONS(2079), + [anon_sym_use] = ACTIONS(2079), + [anon_sym_LPAREN] = ACTIONS(2081), + [anon_sym_DOLLAR] = ACTIONS(2081), + [anon_sym_error] = ACTIONS(2079), + [anon_sym_list] = ACTIONS(2079), + [anon_sym_DASH] = ACTIONS(2079), + [anon_sym_break] = ACTIONS(2079), + [anon_sym_continue] = ACTIONS(2079), + [anon_sym_for] = ACTIONS(2079), + [anon_sym_in] = ACTIONS(2079), + [anon_sym_loop] = ACTIONS(2079), + [anon_sym_make] = ACTIONS(2079), + [anon_sym_while] = ACTIONS(2079), + [anon_sym_do] = ACTIONS(2079), + [anon_sym_if] = ACTIONS(2079), + [anon_sym_else] = ACTIONS(2079), + [anon_sym_match] = ACTIONS(2079), + [anon_sym_RBRACE] = ACTIONS(2081), + [anon_sym_try] = ACTIONS(2079), + [anon_sym_catch] = ACTIONS(2079), + [anon_sym_return] = ACTIONS(2079), + [anon_sym_source] = ACTIONS(2079), + [anon_sym_source_DASHenv] = ACTIONS(2079), + [anon_sym_register] = ACTIONS(2079), + [anon_sym_hide] = ACTIONS(2079), + [anon_sym_hide_DASHenv] = ACTIONS(2079), + [anon_sym_overlay] = ACTIONS(2079), + [anon_sym_new] = ACTIONS(2079), + [anon_sym_as] = ACTIONS(2079), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2081), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2081), + [aux_sym__val_number_decimal_token1] = ACTIONS(2079), + [aux_sym__val_number_decimal_token2] = ACTIONS(2081), + [aux_sym__val_number_decimal_token3] = ACTIONS(2081), + [aux_sym__val_number_decimal_token4] = ACTIONS(2081), + [aux_sym__val_number_token1] = ACTIONS(2081), + [aux_sym__val_number_token2] = ACTIONS(2081), + [aux_sym__val_number_token3] = ACTIONS(2081), + [anon_sym_DQUOTE] = ACTIONS(2081), + [sym__str_single_quotes] = ACTIONS(2081), + [sym__str_back_ticks] = ACTIONS(2081), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2081), + [anon_sym_PLUS] = ACTIONS(2079), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2081), }, - [685] = { - [sym_comment] = STATE(685), - [anon_sym_export] = ACTIONS(2420), - [anon_sym_alias] = ACTIONS(2420), - [anon_sym_let] = ACTIONS(2420), - [anon_sym_let_DASHenv] = ACTIONS(2420), - [anon_sym_mut] = ACTIONS(2420), - [anon_sym_const] = ACTIONS(2420), - [aux_sym_cmd_identifier_token1] = ACTIONS(2420), - [aux_sym_cmd_identifier_token2] = ACTIONS(2420), - [aux_sym_cmd_identifier_token3] = ACTIONS(2420), - [aux_sym_cmd_identifier_token4] = ACTIONS(2420), - [aux_sym_cmd_identifier_token5] = ACTIONS(2420), - [aux_sym_cmd_identifier_token6] = ACTIONS(2420), - [aux_sym_cmd_identifier_token7] = ACTIONS(2420), - [aux_sym_cmd_identifier_token8] = ACTIONS(2420), - [aux_sym_cmd_identifier_token9] = ACTIONS(2420), - [aux_sym_cmd_identifier_token10] = ACTIONS(2420), - [aux_sym_cmd_identifier_token11] = ACTIONS(2420), - [aux_sym_cmd_identifier_token12] = ACTIONS(2420), - [aux_sym_cmd_identifier_token13] = ACTIONS(2420), - [aux_sym_cmd_identifier_token14] = ACTIONS(2420), - [aux_sym_cmd_identifier_token15] = ACTIONS(2420), - [aux_sym_cmd_identifier_token16] = ACTIONS(2420), - [aux_sym_cmd_identifier_token17] = ACTIONS(2420), - [aux_sym_cmd_identifier_token18] = ACTIONS(2420), - [aux_sym_cmd_identifier_token19] = ACTIONS(2420), - [aux_sym_cmd_identifier_token20] = ACTIONS(2420), - [aux_sym_cmd_identifier_token21] = ACTIONS(2420), - [aux_sym_cmd_identifier_token22] = ACTIONS(2420), - [aux_sym_cmd_identifier_token23] = ACTIONS(2420), - [aux_sym_cmd_identifier_token24] = ACTIONS(2420), - [aux_sym_cmd_identifier_token25] = ACTIONS(2420), - [aux_sym_cmd_identifier_token26] = ACTIONS(2420), - [aux_sym_cmd_identifier_token27] = ACTIONS(2420), - [aux_sym_cmd_identifier_token28] = ACTIONS(2420), - [aux_sym_cmd_identifier_token29] = ACTIONS(2420), - [aux_sym_cmd_identifier_token30] = ACTIONS(2420), - [aux_sym_cmd_identifier_token31] = ACTIONS(2420), - [aux_sym_cmd_identifier_token32] = ACTIONS(2420), - [aux_sym_cmd_identifier_token33] = ACTIONS(2420), - [aux_sym_cmd_identifier_token34] = ACTIONS(2420), - [aux_sym_cmd_identifier_token35] = ACTIONS(2420), - [aux_sym_cmd_identifier_token36] = ACTIONS(2420), - [anon_sym_true] = ACTIONS(2422), - [anon_sym_false] = ACTIONS(2422), - [anon_sym_null] = ACTIONS(2422), - [aux_sym_cmd_identifier_token38] = ACTIONS(2420), - [aux_sym_cmd_identifier_token39] = ACTIONS(2422), - [aux_sym_cmd_identifier_token40] = ACTIONS(2422), - [anon_sym_def] = ACTIONS(2420), - [anon_sym_export_DASHenv] = ACTIONS(2420), - [anon_sym_extern] = ACTIONS(2420), - [anon_sym_module] = ACTIONS(2420), - [anon_sym_use] = ACTIONS(2420), - [anon_sym_LPAREN] = ACTIONS(2422), - [anon_sym_DOLLAR] = ACTIONS(2422), - [anon_sym_error] = ACTIONS(2420), - [anon_sym_list] = ACTIONS(2420), - [anon_sym_DASH] = ACTIONS(2420), - [anon_sym_break] = ACTIONS(2420), - [anon_sym_continue] = ACTIONS(2420), - [anon_sym_for] = ACTIONS(2420), - [anon_sym_in] = ACTIONS(2420), - [anon_sym_loop] = ACTIONS(2420), - [anon_sym_make] = ACTIONS(2420), - [anon_sym_while] = ACTIONS(2420), - [anon_sym_do] = ACTIONS(2420), - [anon_sym_if] = ACTIONS(2420), - [anon_sym_else] = ACTIONS(2420), - [anon_sym_match] = ACTIONS(2420), - [anon_sym_RBRACE] = ACTIONS(2422), - [anon_sym_try] = ACTIONS(2420), - [anon_sym_catch] = ACTIONS(2420), - [anon_sym_return] = ACTIONS(2420), - [anon_sym_source] = ACTIONS(2420), - [anon_sym_source_DASHenv] = ACTIONS(2420), - [anon_sym_register] = ACTIONS(2420), - [anon_sym_hide] = ACTIONS(2420), - [anon_sym_hide_DASHenv] = ACTIONS(2420), - [anon_sym_overlay] = ACTIONS(2420), - [anon_sym_new] = ACTIONS(2420), - [anon_sym_as] = ACTIONS(2420), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2422), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2422), - [aux_sym__val_number_decimal_token1] = ACTIONS(2420), - [aux_sym__val_number_decimal_token2] = ACTIONS(2422), - [aux_sym__val_number_decimal_token3] = ACTIONS(2422), - [aux_sym__val_number_decimal_token4] = ACTIONS(2422), - [aux_sym__val_number_token1] = ACTIONS(2422), - [aux_sym__val_number_token2] = ACTIONS(2422), - [aux_sym__val_number_token3] = ACTIONS(2422), - [anon_sym_DQUOTE] = ACTIONS(2422), - [sym__str_single_quotes] = ACTIONS(2422), - [sym__str_back_ticks] = ACTIONS(2422), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2422), - [anon_sym_PLUS] = ACTIONS(2420), - [anon_sym_POUND] = ACTIONS(247), + [639] = { + [sym_comment] = STATE(639), + [anon_sym_export] = ACTIONS(2113), + [anon_sym_alias] = ACTIONS(2113), + [anon_sym_let] = ACTIONS(2113), + [anon_sym_let_DASHenv] = ACTIONS(2113), + [anon_sym_mut] = ACTIONS(2113), + [anon_sym_const] = ACTIONS(2113), + [aux_sym_cmd_identifier_token1] = ACTIONS(2113), + [aux_sym_cmd_identifier_token2] = ACTIONS(2113), + [aux_sym_cmd_identifier_token3] = ACTIONS(2113), + [aux_sym_cmd_identifier_token4] = ACTIONS(2113), + [aux_sym_cmd_identifier_token5] = ACTIONS(2113), + [aux_sym_cmd_identifier_token6] = ACTIONS(2113), + [aux_sym_cmd_identifier_token7] = ACTIONS(2113), + [aux_sym_cmd_identifier_token8] = ACTIONS(2113), + [aux_sym_cmd_identifier_token9] = ACTIONS(2113), + [aux_sym_cmd_identifier_token10] = ACTIONS(2113), + [aux_sym_cmd_identifier_token11] = ACTIONS(2113), + [aux_sym_cmd_identifier_token12] = ACTIONS(2113), + [aux_sym_cmd_identifier_token13] = ACTIONS(2113), + [aux_sym_cmd_identifier_token14] = ACTIONS(2113), + [aux_sym_cmd_identifier_token15] = ACTIONS(2113), + [aux_sym_cmd_identifier_token16] = ACTIONS(2113), + [aux_sym_cmd_identifier_token17] = ACTIONS(2113), + [aux_sym_cmd_identifier_token18] = ACTIONS(2113), + [aux_sym_cmd_identifier_token19] = ACTIONS(2113), + [aux_sym_cmd_identifier_token20] = ACTIONS(2113), + [aux_sym_cmd_identifier_token21] = ACTIONS(2113), + [aux_sym_cmd_identifier_token22] = ACTIONS(2113), + [aux_sym_cmd_identifier_token23] = ACTIONS(2113), + [aux_sym_cmd_identifier_token24] = ACTIONS(2113), + [aux_sym_cmd_identifier_token25] = ACTIONS(2113), + [aux_sym_cmd_identifier_token26] = ACTIONS(2113), + [aux_sym_cmd_identifier_token27] = ACTIONS(2113), + [aux_sym_cmd_identifier_token28] = ACTIONS(2113), + [aux_sym_cmd_identifier_token29] = ACTIONS(2113), + [aux_sym_cmd_identifier_token30] = ACTIONS(2113), + [aux_sym_cmd_identifier_token31] = ACTIONS(2113), + [aux_sym_cmd_identifier_token32] = ACTIONS(2113), + [aux_sym_cmd_identifier_token33] = ACTIONS(2113), + [aux_sym_cmd_identifier_token34] = ACTIONS(2113), + [aux_sym_cmd_identifier_token35] = ACTIONS(2113), + [aux_sym_cmd_identifier_token36] = ACTIONS(2113), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_null] = ACTIONS(2119), + [aux_sym_cmd_identifier_token38] = ACTIONS(2113), + [aux_sym_cmd_identifier_token39] = ACTIONS(2119), + [aux_sym_cmd_identifier_token40] = ACTIONS(2119), + [anon_sym_def] = ACTIONS(2113), + [anon_sym_export_DASHenv] = ACTIONS(2113), + [anon_sym_extern] = ACTIONS(2113), + [anon_sym_module] = ACTIONS(2113), + [anon_sym_use] = ACTIONS(2113), + [anon_sym_LPAREN] = ACTIONS(2119), + [anon_sym_DOLLAR] = ACTIONS(2119), + [anon_sym_error] = ACTIONS(2113), + [anon_sym_list] = ACTIONS(2113), + [anon_sym_DASH] = ACTIONS(2113), + [anon_sym_break] = ACTIONS(2113), + [anon_sym_continue] = ACTIONS(2113), + [anon_sym_for] = ACTIONS(2113), + [anon_sym_in] = ACTIONS(2113), + [anon_sym_loop] = ACTIONS(2113), + [anon_sym_make] = ACTIONS(2113), + [anon_sym_while] = ACTIONS(2113), + [anon_sym_do] = ACTIONS(2113), + [anon_sym_if] = ACTIONS(2113), + [anon_sym_else] = ACTIONS(2113), + [anon_sym_match] = ACTIONS(2113), + [anon_sym_RBRACE] = ACTIONS(2119), + [anon_sym_try] = ACTIONS(2113), + [anon_sym_catch] = ACTIONS(2113), + [anon_sym_return] = ACTIONS(2113), + [anon_sym_source] = ACTIONS(2113), + [anon_sym_source_DASHenv] = ACTIONS(2113), + [anon_sym_register] = ACTIONS(2113), + [anon_sym_hide] = ACTIONS(2113), + [anon_sym_hide_DASHenv] = ACTIONS(2113), + [anon_sym_overlay] = ACTIONS(2113), + [anon_sym_new] = ACTIONS(2113), + [anon_sym_as] = ACTIONS(2113), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2119), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2119), + [aux_sym__val_number_decimal_token1] = ACTIONS(2113), + [aux_sym__val_number_decimal_token2] = ACTIONS(2119), + [aux_sym__val_number_decimal_token3] = ACTIONS(2119), + [aux_sym__val_number_decimal_token4] = ACTIONS(2119), + [aux_sym__val_number_token1] = ACTIONS(2119), + [aux_sym__val_number_token2] = ACTIONS(2119), + [aux_sym__val_number_token3] = ACTIONS(2119), + [anon_sym_DQUOTE] = ACTIONS(2119), + [sym__str_single_quotes] = ACTIONS(2119), + [sym__str_back_ticks] = ACTIONS(2119), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2119), + [anon_sym_PLUS] = ACTIONS(2113), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2119), }, - [686] = { - [sym_comment] = STATE(686), - [anon_sym_export] = ACTIONS(1888), - [anon_sym_alias] = ACTIONS(1888), - [anon_sym_let] = ACTIONS(1888), - [anon_sym_let_DASHenv] = ACTIONS(1888), - [anon_sym_mut] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(1888), - [aux_sym_cmd_identifier_token1] = ACTIONS(1888), - [aux_sym_cmd_identifier_token2] = ACTIONS(1888), - [aux_sym_cmd_identifier_token3] = ACTIONS(1888), - [aux_sym_cmd_identifier_token4] = ACTIONS(1888), - [aux_sym_cmd_identifier_token5] = ACTIONS(1888), - [aux_sym_cmd_identifier_token6] = ACTIONS(1888), - [aux_sym_cmd_identifier_token7] = ACTIONS(1888), - [aux_sym_cmd_identifier_token8] = ACTIONS(1888), - [aux_sym_cmd_identifier_token9] = ACTIONS(1888), - [aux_sym_cmd_identifier_token10] = ACTIONS(1888), - [aux_sym_cmd_identifier_token11] = ACTIONS(1888), - [aux_sym_cmd_identifier_token12] = ACTIONS(1888), - [aux_sym_cmd_identifier_token13] = ACTIONS(1888), - [aux_sym_cmd_identifier_token14] = ACTIONS(1888), - [aux_sym_cmd_identifier_token15] = ACTIONS(1888), - [aux_sym_cmd_identifier_token16] = ACTIONS(1888), - [aux_sym_cmd_identifier_token17] = ACTIONS(1888), - [aux_sym_cmd_identifier_token18] = ACTIONS(1888), - [aux_sym_cmd_identifier_token19] = ACTIONS(1888), - [aux_sym_cmd_identifier_token20] = ACTIONS(1888), - [aux_sym_cmd_identifier_token21] = ACTIONS(1888), - [aux_sym_cmd_identifier_token22] = ACTIONS(1888), - [aux_sym_cmd_identifier_token23] = ACTIONS(1888), - [aux_sym_cmd_identifier_token24] = ACTIONS(1888), - [aux_sym_cmd_identifier_token25] = ACTIONS(1888), - [aux_sym_cmd_identifier_token26] = ACTIONS(1888), - [aux_sym_cmd_identifier_token27] = ACTIONS(1888), - [aux_sym_cmd_identifier_token28] = ACTIONS(1888), - [aux_sym_cmd_identifier_token29] = ACTIONS(1888), - [aux_sym_cmd_identifier_token30] = ACTIONS(1888), - [aux_sym_cmd_identifier_token31] = ACTIONS(1888), - [aux_sym_cmd_identifier_token32] = ACTIONS(1888), - [aux_sym_cmd_identifier_token33] = ACTIONS(1888), - [aux_sym_cmd_identifier_token34] = ACTIONS(1888), - [aux_sym_cmd_identifier_token35] = ACTIONS(1888), - [aux_sym_cmd_identifier_token36] = ACTIONS(1888), - [anon_sym_true] = ACTIONS(1890), - [anon_sym_false] = ACTIONS(1890), - [anon_sym_null] = ACTIONS(1890), - [aux_sym_cmd_identifier_token38] = ACTIONS(1888), - [aux_sym_cmd_identifier_token39] = ACTIONS(1890), - [aux_sym_cmd_identifier_token40] = ACTIONS(1890), - [anon_sym_def] = ACTIONS(1888), - [anon_sym_export_DASHenv] = ACTIONS(1888), - [anon_sym_extern] = ACTIONS(1888), - [anon_sym_module] = ACTIONS(1888), - [anon_sym_use] = ACTIONS(1888), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_DOLLAR] = ACTIONS(1890), - [anon_sym_error] = ACTIONS(1888), - [anon_sym_list] = ACTIONS(1888), - [anon_sym_DASH] = ACTIONS(1888), - [anon_sym_break] = ACTIONS(1888), - [anon_sym_continue] = ACTIONS(1888), - [anon_sym_for] = ACTIONS(1888), - [anon_sym_in] = ACTIONS(1888), - [anon_sym_loop] = ACTIONS(1888), - [anon_sym_make] = ACTIONS(1888), - [anon_sym_while] = ACTIONS(1888), - [anon_sym_do] = ACTIONS(1888), - [anon_sym_if] = ACTIONS(1888), - [anon_sym_else] = ACTIONS(1888), - [anon_sym_match] = ACTIONS(1888), - [anon_sym_RBRACE] = ACTIONS(1890), - [anon_sym_try] = ACTIONS(1888), - [anon_sym_catch] = ACTIONS(1888), - [anon_sym_return] = ACTIONS(1888), - [anon_sym_source] = ACTIONS(1888), - [anon_sym_source_DASHenv] = ACTIONS(1888), - [anon_sym_register] = ACTIONS(1888), - [anon_sym_hide] = ACTIONS(1888), - [anon_sym_hide_DASHenv] = ACTIONS(1888), - [anon_sym_overlay] = ACTIONS(1888), - [anon_sym_new] = ACTIONS(1888), - [anon_sym_as] = ACTIONS(1888), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1890), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1890), - [aux_sym__val_number_decimal_token1] = ACTIONS(1888), - [aux_sym__val_number_decimal_token2] = ACTIONS(1890), - [aux_sym__val_number_decimal_token3] = ACTIONS(1890), - [aux_sym__val_number_decimal_token4] = ACTIONS(1890), - [aux_sym__val_number_token1] = ACTIONS(1890), - [aux_sym__val_number_token2] = ACTIONS(1890), - [aux_sym__val_number_token3] = ACTIONS(1890), - [anon_sym_DQUOTE] = ACTIONS(1890), - [sym__str_single_quotes] = ACTIONS(1890), - [sym__str_back_ticks] = ACTIONS(1890), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1890), - [anon_sym_PLUS] = ACTIONS(1888), - [anon_sym_POUND] = ACTIONS(247), + [640] = { + [sym_comment] = STATE(640), + [anon_sym_export] = ACTIONS(2206), + [anon_sym_alias] = ACTIONS(2206), + [anon_sym_let] = ACTIONS(2206), + [anon_sym_let_DASHenv] = ACTIONS(2206), + [anon_sym_mut] = ACTIONS(2206), + [anon_sym_const] = ACTIONS(2206), + [aux_sym_cmd_identifier_token1] = ACTIONS(2206), + [aux_sym_cmd_identifier_token2] = ACTIONS(2206), + [aux_sym_cmd_identifier_token3] = ACTIONS(2206), + [aux_sym_cmd_identifier_token4] = ACTIONS(2206), + [aux_sym_cmd_identifier_token5] = ACTIONS(2206), + [aux_sym_cmd_identifier_token6] = ACTIONS(2206), + [aux_sym_cmd_identifier_token7] = ACTIONS(2206), + [aux_sym_cmd_identifier_token8] = ACTIONS(2206), + [aux_sym_cmd_identifier_token9] = ACTIONS(2206), + [aux_sym_cmd_identifier_token10] = ACTIONS(2206), + [aux_sym_cmd_identifier_token11] = ACTIONS(2206), + [aux_sym_cmd_identifier_token12] = ACTIONS(2206), + [aux_sym_cmd_identifier_token13] = ACTIONS(2206), + [aux_sym_cmd_identifier_token14] = ACTIONS(2206), + [aux_sym_cmd_identifier_token15] = ACTIONS(2206), + [aux_sym_cmd_identifier_token16] = ACTIONS(2206), + [aux_sym_cmd_identifier_token17] = ACTIONS(2206), + [aux_sym_cmd_identifier_token18] = ACTIONS(2206), + [aux_sym_cmd_identifier_token19] = ACTIONS(2206), + [aux_sym_cmd_identifier_token20] = ACTIONS(2206), + [aux_sym_cmd_identifier_token21] = ACTIONS(2206), + [aux_sym_cmd_identifier_token22] = ACTIONS(2206), + [aux_sym_cmd_identifier_token23] = ACTIONS(2206), + [aux_sym_cmd_identifier_token24] = ACTIONS(2206), + [aux_sym_cmd_identifier_token25] = ACTIONS(2206), + [aux_sym_cmd_identifier_token26] = ACTIONS(2206), + [aux_sym_cmd_identifier_token27] = ACTIONS(2206), + [aux_sym_cmd_identifier_token28] = ACTIONS(2206), + [aux_sym_cmd_identifier_token29] = ACTIONS(2206), + [aux_sym_cmd_identifier_token30] = ACTIONS(2206), + [aux_sym_cmd_identifier_token31] = ACTIONS(2206), + [aux_sym_cmd_identifier_token32] = ACTIONS(2206), + [aux_sym_cmd_identifier_token33] = ACTIONS(2206), + [aux_sym_cmd_identifier_token34] = ACTIONS(2206), + [aux_sym_cmd_identifier_token35] = ACTIONS(2206), + [aux_sym_cmd_identifier_token36] = ACTIONS(2206), + [anon_sym_true] = ACTIONS(2212), + [anon_sym_false] = ACTIONS(2212), + [anon_sym_null] = ACTIONS(2212), + [aux_sym_cmd_identifier_token38] = ACTIONS(2206), + [aux_sym_cmd_identifier_token39] = ACTIONS(2212), + [aux_sym_cmd_identifier_token40] = ACTIONS(2212), + [anon_sym_def] = ACTIONS(2206), + [anon_sym_export_DASHenv] = ACTIONS(2206), + [anon_sym_extern] = ACTIONS(2206), + [anon_sym_module] = ACTIONS(2206), + [anon_sym_use] = ACTIONS(2206), + [anon_sym_LPAREN] = ACTIONS(2212), + [anon_sym_DOLLAR] = ACTIONS(2212), + [anon_sym_error] = ACTIONS(2206), + [anon_sym_list] = ACTIONS(2206), + [anon_sym_DASH] = ACTIONS(2206), + [anon_sym_break] = ACTIONS(2206), + [anon_sym_continue] = ACTIONS(2206), + [anon_sym_for] = ACTIONS(2206), + [anon_sym_in] = ACTIONS(2206), + [anon_sym_loop] = ACTIONS(2206), + [anon_sym_make] = ACTIONS(2206), + [anon_sym_while] = ACTIONS(2206), + [anon_sym_do] = ACTIONS(2206), + [anon_sym_if] = ACTIONS(2206), + [anon_sym_else] = ACTIONS(2206), + [anon_sym_match] = ACTIONS(2206), + [anon_sym_RBRACE] = ACTIONS(2212), + [anon_sym_try] = ACTIONS(2206), + [anon_sym_catch] = ACTIONS(2206), + [anon_sym_return] = ACTIONS(2206), + [anon_sym_source] = ACTIONS(2206), + [anon_sym_source_DASHenv] = ACTIONS(2206), + [anon_sym_register] = ACTIONS(2206), + [anon_sym_hide] = ACTIONS(2206), + [anon_sym_hide_DASHenv] = ACTIONS(2206), + [anon_sym_overlay] = ACTIONS(2206), + [anon_sym_new] = ACTIONS(2206), + [anon_sym_as] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2212), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2212), + [aux_sym__val_number_decimal_token1] = ACTIONS(2206), + [aux_sym__val_number_decimal_token2] = ACTIONS(2212), + [aux_sym__val_number_decimal_token3] = ACTIONS(2212), + [aux_sym__val_number_decimal_token4] = ACTIONS(2212), + [aux_sym__val_number_token1] = ACTIONS(2212), + [aux_sym__val_number_token2] = ACTIONS(2212), + [aux_sym__val_number_token3] = ACTIONS(2212), + [anon_sym_DQUOTE] = ACTIONS(2212), + [sym__str_single_quotes] = ACTIONS(2212), + [sym__str_back_ticks] = ACTIONS(2212), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2212), + [anon_sym_PLUS] = ACTIONS(2206), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2212), }, - [687] = { - [sym_comment] = STATE(687), - [anon_sym_export] = ACTIONS(2434), - [anon_sym_alias] = ACTIONS(2434), - [anon_sym_let] = ACTIONS(2434), - [anon_sym_let_DASHenv] = ACTIONS(2434), - [anon_sym_mut] = ACTIONS(2434), - [anon_sym_const] = ACTIONS(2434), - [aux_sym_cmd_identifier_token1] = ACTIONS(2434), - [aux_sym_cmd_identifier_token2] = ACTIONS(2434), - [aux_sym_cmd_identifier_token3] = ACTIONS(2434), - [aux_sym_cmd_identifier_token4] = ACTIONS(2434), - [aux_sym_cmd_identifier_token5] = ACTIONS(2434), - [aux_sym_cmd_identifier_token6] = ACTIONS(2434), - [aux_sym_cmd_identifier_token7] = ACTIONS(2434), - [aux_sym_cmd_identifier_token8] = ACTIONS(2434), - [aux_sym_cmd_identifier_token9] = ACTIONS(2434), - [aux_sym_cmd_identifier_token10] = ACTIONS(2434), - [aux_sym_cmd_identifier_token11] = ACTIONS(2434), - [aux_sym_cmd_identifier_token12] = ACTIONS(2434), - [aux_sym_cmd_identifier_token13] = ACTIONS(2434), - [aux_sym_cmd_identifier_token14] = ACTIONS(2434), - [aux_sym_cmd_identifier_token15] = ACTIONS(2434), - [aux_sym_cmd_identifier_token16] = ACTIONS(2434), - [aux_sym_cmd_identifier_token17] = ACTIONS(2434), - [aux_sym_cmd_identifier_token18] = ACTIONS(2434), - [aux_sym_cmd_identifier_token19] = ACTIONS(2434), - [aux_sym_cmd_identifier_token20] = ACTIONS(2434), - [aux_sym_cmd_identifier_token21] = ACTIONS(2434), - [aux_sym_cmd_identifier_token22] = ACTIONS(2434), - [aux_sym_cmd_identifier_token23] = ACTIONS(2434), - [aux_sym_cmd_identifier_token24] = ACTIONS(2434), - [aux_sym_cmd_identifier_token25] = ACTIONS(2434), - [aux_sym_cmd_identifier_token26] = ACTIONS(2434), - [aux_sym_cmd_identifier_token27] = ACTIONS(2434), - [aux_sym_cmd_identifier_token28] = ACTIONS(2434), - [aux_sym_cmd_identifier_token29] = ACTIONS(2434), - [aux_sym_cmd_identifier_token30] = ACTIONS(2434), - [aux_sym_cmd_identifier_token31] = ACTIONS(2434), - [aux_sym_cmd_identifier_token32] = ACTIONS(2434), - [aux_sym_cmd_identifier_token33] = ACTIONS(2434), - [aux_sym_cmd_identifier_token34] = ACTIONS(2434), - [aux_sym_cmd_identifier_token35] = ACTIONS(2434), - [aux_sym_cmd_identifier_token36] = ACTIONS(2434), - [anon_sym_true] = ACTIONS(2436), - [anon_sym_false] = ACTIONS(2436), - [anon_sym_null] = ACTIONS(2436), - [aux_sym_cmd_identifier_token38] = ACTIONS(2434), - [aux_sym_cmd_identifier_token39] = ACTIONS(2436), - [aux_sym_cmd_identifier_token40] = ACTIONS(2436), - [anon_sym_def] = ACTIONS(2434), - [anon_sym_export_DASHenv] = ACTIONS(2434), - [anon_sym_extern] = ACTIONS(2434), - [anon_sym_module] = ACTIONS(2434), - [anon_sym_use] = ACTIONS(2434), - [anon_sym_LPAREN] = ACTIONS(2436), - [anon_sym_DOLLAR] = ACTIONS(2436), - [anon_sym_error] = ACTIONS(2434), - [anon_sym_list] = ACTIONS(2434), - [anon_sym_DASH] = ACTIONS(2434), - [anon_sym_break] = ACTIONS(2434), - [anon_sym_continue] = ACTIONS(2434), - [anon_sym_for] = ACTIONS(2434), - [anon_sym_in] = ACTIONS(2434), - [anon_sym_loop] = ACTIONS(2434), - [anon_sym_make] = ACTIONS(2434), - [anon_sym_while] = ACTIONS(2434), - [anon_sym_do] = ACTIONS(2434), - [anon_sym_if] = ACTIONS(2434), - [anon_sym_else] = ACTIONS(2434), - [anon_sym_match] = ACTIONS(2434), - [anon_sym_RBRACE] = ACTIONS(2436), - [anon_sym_try] = ACTIONS(2434), - [anon_sym_catch] = ACTIONS(2434), - [anon_sym_return] = ACTIONS(2434), - [anon_sym_source] = ACTIONS(2434), - [anon_sym_source_DASHenv] = ACTIONS(2434), - [anon_sym_register] = ACTIONS(2434), - [anon_sym_hide] = ACTIONS(2434), - [anon_sym_hide_DASHenv] = ACTIONS(2434), - [anon_sym_overlay] = ACTIONS(2434), - [anon_sym_new] = ACTIONS(2434), - [anon_sym_as] = ACTIONS(2434), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2436), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2436), - [aux_sym__val_number_decimal_token1] = ACTIONS(2434), - [aux_sym__val_number_decimal_token2] = ACTIONS(2436), - [aux_sym__val_number_decimal_token3] = ACTIONS(2436), - [aux_sym__val_number_decimal_token4] = ACTIONS(2436), - [aux_sym__val_number_token1] = ACTIONS(2436), - [aux_sym__val_number_token2] = ACTIONS(2436), - [aux_sym__val_number_token3] = ACTIONS(2436), - [anon_sym_DQUOTE] = ACTIONS(2436), - [sym__str_single_quotes] = ACTIONS(2436), - [sym__str_back_ticks] = ACTIONS(2436), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2436), - [anon_sym_PLUS] = ACTIONS(2434), - [anon_sym_POUND] = ACTIONS(247), + [641] = { + [sym_comment] = STATE(641), + [anon_sym_export] = ACTIONS(2551), + [anon_sym_alias] = ACTIONS(2551), + [anon_sym_let] = ACTIONS(2551), + [anon_sym_let_DASHenv] = ACTIONS(2551), + [anon_sym_mut] = ACTIONS(2551), + [anon_sym_const] = ACTIONS(2551), + [aux_sym_cmd_identifier_token1] = ACTIONS(2551), + [aux_sym_cmd_identifier_token2] = ACTIONS(2551), + [aux_sym_cmd_identifier_token3] = ACTIONS(2551), + [aux_sym_cmd_identifier_token4] = ACTIONS(2551), + [aux_sym_cmd_identifier_token5] = ACTIONS(2551), + [aux_sym_cmd_identifier_token6] = ACTIONS(2551), + [aux_sym_cmd_identifier_token7] = ACTIONS(2551), + [aux_sym_cmd_identifier_token8] = ACTIONS(2551), + [aux_sym_cmd_identifier_token9] = ACTIONS(2551), + [aux_sym_cmd_identifier_token10] = ACTIONS(2551), + [aux_sym_cmd_identifier_token11] = ACTIONS(2551), + [aux_sym_cmd_identifier_token12] = ACTIONS(2551), + [aux_sym_cmd_identifier_token13] = ACTIONS(2551), + [aux_sym_cmd_identifier_token14] = ACTIONS(2551), + [aux_sym_cmd_identifier_token15] = ACTIONS(2551), + [aux_sym_cmd_identifier_token16] = ACTIONS(2551), + [aux_sym_cmd_identifier_token17] = ACTIONS(2551), + [aux_sym_cmd_identifier_token18] = ACTIONS(2551), + [aux_sym_cmd_identifier_token19] = ACTIONS(2551), + [aux_sym_cmd_identifier_token20] = ACTIONS(2551), + [aux_sym_cmd_identifier_token21] = ACTIONS(2551), + [aux_sym_cmd_identifier_token22] = ACTIONS(2551), + [aux_sym_cmd_identifier_token23] = ACTIONS(2551), + [aux_sym_cmd_identifier_token24] = ACTIONS(2551), + [aux_sym_cmd_identifier_token25] = ACTIONS(2551), + [aux_sym_cmd_identifier_token26] = ACTIONS(2551), + [aux_sym_cmd_identifier_token27] = ACTIONS(2551), + [aux_sym_cmd_identifier_token28] = ACTIONS(2551), + [aux_sym_cmd_identifier_token29] = ACTIONS(2551), + [aux_sym_cmd_identifier_token30] = ACTIONS(2551), + [aux_sym_cmd_identifier_token31] = ACTIONS(2551), + [aux_sym_cmd_identifier_token32] = ACTIONS(2551), + [aux_sym_cmd_identifier_token33] = ACTIONS(2551), + [aux_sym_cmd_identifier_token34] = ACTIONS(2551), + [aux_sym_cmd_identifier_token35] = ACTIONS(2551), + [aux_sym_cmd_identifier_token36] = ACTIONS(2551), + [anon_sym_true] = ACTIONS(2553), + [anon_sym_false] = ACTIONS(2553), + [anon_sym_null] = ACTIONS(2553), + [aux_sym_cmd_identifier_token38] = ACTIONS(2551), + [aux_sym_cmd_identifier_token39] = ACTIONS(2553), + [aux_sym_cmd_identifier_token40] = ACTIONS(2553), + [anon_sym_def] = ACTIONS(2551), + [anon_sym_export_DASHenv] = ACTIONS(2551), + [anon_sym_extern] = ACTIONS(2551), + [anon_sym_module] = ACTIONS(2551), + [anon_sym_use] = ACTIONS(2551), + [anon_sym_LPAREN] = ACTIONS(2553), + [anon_sym_DOLLAR] = ACTIONS(2553), + [anon_sym_error] = ACTIONS(2551), + [anon_sym_list] = ACTIONS(2551), + [anon_sym_DASH] = ACTIONS(2551), + [anon_sym_break] = ACTIONS(2551), + [anon_sym_continue] = ACTIONS(2551), + [anon_sym_for] = ACTIONS(2551), + [anon_sym_in] = ACTIONS(2551), + [anon_sym_loop] = ACTIONS(2551), + [anon_sym_make] = ACTIONS(2551), + [anon_sym_while] = ACTIONS(2551), + [anon_sym_do] = ACTIONS(2551), + [anon_sym_if] = ACTIONS(2551), + [anon_sym_else] = ACTIONS(2551), + [anon_sym_match] = ACTIONS(2551), + [anon_sym_RBRACE] = ACTIONS(2553), + [anon_sym_try] = ACTIONS(2551), + [anon_sym_catch] = ACTIONS(2551), + [anon_sym_return] = ACTIONS(2551), + [anon_sym_source] = ACTIONS(2551), + [anon_sym_source_DASHenv] = ACTIONS(2551), + [anon_sym_register] = ACTIONS(2551), + [anon_sym_hide] = ACTIONS(2551), + [anon_sym_hide_DASHenv] = ACTIONS(2551), + [anon_sym_overlay] = ACTIONS(2551), + [anon_sym_new] = ACTIONS(2551), + [anon_sym_as] = ACTIONS(2551), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2553), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2553), + [aux_sym__val_number_decimal_token1] = ACTIONS(2551), + [aux_sym__val_number_decimal_token2] = ACTIONS(2553), + [aux_sym__val_number_decimal_token3] = ACTIONS(2553), + [aux_sym__val_number_decimal_token4] = ACTIONS(2553), + [aux_sym__val_number_token1] = ACTIONS(2553), + [aux_sym__val_number_token2] = ACTIONS(2553), + [aux_sym__val_number_token3] = ACTIONS(2553), + [anon_sym_DQUOTE] = ACTIONS(2553), + [sym__str_single_quotes] = ACTIONS(2553), + [sym__str_back_ticks] = ACTIONS(2553), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2553), + [anon_sym_PLUS] = ACTIONS(2551), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2553), }, - [688] = { - [sym_comment] = STATE(688), - [anon_sym_export] = ACTIONS(2438), - [anon_sym_alias] = ACTIONS(2438), - [anon_sym_let] = ACTIONS(2438), - [anon_sym_let_DASHenv] = ACTIONS(2438), - [anon_sym_mut] = ACTIONS(2438), - [anon_sym_const] = ACTIONS(2438), - [aux_sym_cmd_identifier_token1] = ACTIONS(2438), - [aux_sym_cmd_identifier_token2] = ACTIONS(2438), - [aux_sym_cmd_identifier_token3] = ACTIONS(2438), - [aux_sym_cmd_identifier_token4] = ACTIONS(2438), - [aux_sym_cmd_identifier_token5] = ACTIONS(2438), - [aux_sym_cmd_identifier_token6] = ACTIONS(2438), - [aux_sym_cmd_identifier_token7] = ACTIONS(2438), - [aux_sym_cmd_identifier_token8] = ACTIONS(2438), - [aux_sym_cmd_identifier_token9] = ACTIONS(2438), - [aux_sym_cmd_identifier_token10] = ACTIONS(2438), - [aux_sym_cmd_identifier_token11] = ACTIONS(2438), - [aux_sym_cmd_identifier_token12] = ACTIONS(2438), - [aux_sym_cmd_identifier_token13] = ACTIONS(2438), - [aux_sym_cmd_identifier_token14] = ACTIONS(2438), - [aux_sym_cmd_identifier_token15] = ACTIONS(2438), - [aux_sym_cmd_identifier_token16] = ACTIONS(2438), - [aux_sym_cmd_identifier_token17] = ACTIONS(2438), - [aux_sym_cmd_identifier_token18] = ACTIONS(2438), - [aux_sym_cmd_identifier_token19] = ACTIONS(2438), - [aux_sym_cmd_identifier_token20] = ACTIONS(2438), - [aux_sym_cmd_identifier_token21] = ACTIONS(2438), - [aux_sym_cmd_identifier_token22] = ACTIONS(2438), - [aux_sym_cmd_identifier_token23] = ACTIONS(2438), - [aux_sym_cmd_identifier_token24] = ACTIONS(2438), - [aux_sym_cmd_identifier_token25] = ACTIONS(2438), - [aux_sym_cmd_identifier_token26] = ACTIONS(2438), - [aux_sym_cmd_identifier_token27] = ACTIONS(2438), - [aux_sym_cmd_identifier_token28] = ACTIONS(2438), - [aux_sym_cmd_identifier_token29] = ACTIONS(2438), - [aux_sym_cmd_identifier_token30] = ACTIONS(2438), - [aux_sym_cmd_identifier_token31] = ACTIONS(2438), - [aux_sym_cmd_identifier_token32] = ACTIONS(2438), - [aux_sym_cmd_identifier_token33] = ACTIONS(2438), - [aux_sym_cmd_identifier_token34] = ACTIONS(2438), - [aux_sym_cmd_identifier_token35] = ACTIONS(2438), - [aux_sym_cmd_identifier_token36] = ACTIONS(2438), - [anon_sym_true] = ACTIONS(2440), - [anon_sym_false] = ACTIONS(2440), - [anon_sym_null] = ACTIONS(2440), - [aux_sym_cmd_identifier_token38] = ACTIONS(2438), - [aux_sym_cmd_identifier_token39] = ACTIONS(2440), - [aux_sym_cmd_identifier_token40] = ACTIONS(2440), - [anon_sym_def] = ACTIONS(2438), - [anon_sym_export_DASHenv] = ACTIONS(2438), - [anon_sym_extern] = ACTIONS(2438), - [anon_sym_module] = ACTIONS(2438), - [anon_sym_use] = ACTIONS(2438), - [anon_sym_LPAREN] = ACTIONS(2440), - [anon_sym_DOLLAR] = ACTIONS(2440), - [anon_sym_error] = ACTIONS(2438), - [anon_sym_list] = ACTIONS(2438), - [anon_sym_DASH] = ACTIONS(2438), - [anon_sym_break] = ACTIONS(2438), - [anon_sym_continue] = ACTIONS(2438), - [anon_sym_for] = ACTIONS(2438), - [anon_sym_in] = ACTIONS(2438), - [anon_sym_loop] = ACTIONS(2438), - [anon_sym_make] = ACTIONS(2438), - [anon_sym_while] = ACTIONS(2438), - [anon_sym_do] = ACTIONS(2438), - [anon_sym_if] = ACTIONS(2438), - [anon_sym_else] = ACTIONS(2438), - [anon_sym_match] = ACTIONS(2438), - [anon_sym_RBRACE] = ACTIONS(2440), - [anon_sym_try] = ACTIONS(2438), - [anon_sym_catch] = ACTIONS(2438), - [anon_sym_return] = ACTIONS(2438), - [anon_sym_source] = ACTIONS(2438), - [anon_sym_source_DASHenv] = ACTIONS(2438), - [anon_sym_register] = ACTIONS(2438), - [anon_sym_hide] = ACTIONS(2438), - [anon_sym_hide_DASHenv] = ACTIONS(2438), - [anon_sym_overlay] = ACTIONS(2438), - [anon_sym_new] = ACTIONS(2438), - [anon_sym_as] = ACTIONS(2438), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2440), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2440), - [aux_sym__val_number_decimal_token1] = ACTIONS(2438), - [aux_sym__val_number_decimal_token2] = ACTIONS(2440), - [aux_sym__val_number_decimal_token3] = ACTIONS(2440), - [aux_sym__val_number_decimal_token4] = ACTIONS(2440), - [aux_sym__val_number_token1] = ACTIONS(2440), - [aux_sym__val_number_token2] = ACTIONS(2440), - [aux_sym__val_number_token3] = ACTIONS(2440), - [anon_sym_DQUOTE] = ACTIONS(2440), - [sym__str_single_quotes] = ACTIONS(2440), - [sym__str_back_ticks] = ACTIONS(2440), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2440), - [anon_sym_PLUS] = ACTIONS(2438), - [anon_sym_POUND] = ACTIONS(247), + [642] = { + [sym_comment] = STATE(642), + [anon_sym_export] = ACTIONS(2422), + [anon_sym_alias] = ACTIONS(2422), + [anon_sym_let] = ACTIONS(2422), + [anon_sym_let_DASHenv] = ACTIONS(2422), + [anon_sym_mut] = ACTIONS(2422), + [anon_sym_const] = ACTIONS(2422), + [aux_sym_cmd_identifier_token1] = ACTIONS(2422), + [aux_sym_cmd_identifier_token2] = ACTIONS(2422), + [aux_sym_cmd_identifier_token3] = ACTIONS(2422), + [aux_sym_cmd_identifier_token4] = ACTIONS(2422), + [aux_sym_cmd_identifier_token5] = ACTIONS(2422), + [aux_sym_cmd_identifier_token6] = ACTIONS(2422), + [aux_sym_cmd_identifier_token7] = ACTIONS(2422), + [aux_sym_cmd_identifier_token8] = ACTIONS(2422), + [aux_sym_cmd_identifier_token9] = ACTIONS(2422), + [aux_sym_cmd_identifier_token10] = ACTIONS(2422), + [aux_sym_cmd_identifier_token11] = ACTIONS(2422), + [aux_sym_cmd_identifier_token12] = ACTIONS(2422), + [aux_sym_cmd_identifier_token13] = ACTIONS(2422), + [aux_sym_cmd_identifier_token14] = ACTIONS(2422), + [aux_sym_cmd_identifier_token15] = ACTIONS(2422), + [aux_sym_cmd_identifier_token16] = ACTIONS(2422), + [aux_sym_cmd_identifier_token17] = ACTIONS(2422), + [aux_sym_cmd_identifier_token18] = ACTIONS(2422), + [aux_sym_cmd_identifier_token19] = ACTIONS(2422), + [aux_sym_cmd_identifier_token20] = ACTIONS(2422), + [aux_sym_cmd_identifier_token21] = ACTIONS(2422), + [aux_sym_cmd_identifier_token22] = ACTIONS(2422), + [aux_sym_cmd_identifier_token23] = ACTIONS(2422), + [aux_sym_cmd_identifier_token24] = ACTIONS(2422), + [aux_sym_cmd_identifier_token25] = ACTIONS(2422), + [aux_sym_cmd_identifier_token26] = ACTIONS(2422), + [aux_sym_cmd_identifier_token27] = ACTIONS(2422), + [aux_sym_cmd_identifier_token28] = ACTIONS(2422), + [aux_sym_cmd_identifier_token29] = ACTIONS(2422), + [aux_sym_cmd_identifier_token30] = ACTIONS(2422), + [aux_sym_cmd_identifier_token31] = ACTIONS(2422), + [aux_sym_cmd_identifier_token32] = ACTIONS(2422), + [aux_sym_cmd_identifier_token33] = ACTIONS(2422), + [aux_sym_cmd_identifier_token34] = ACTIONS(2422), + [aux_sym_cmd_identifier_token35] = ACTIONS(2422), + [aux_sym_cmd_identifier_token36] = ACTIONS(2422), + [anon_sym_true] = ACTIONS(2424), + [anon_sym_false] = ACTIONS(2424), + [anon_sym_null] = ACTIONS(2424), + [aux_sym_cmd_identifier_token38] = ACTIONS(2422), + [aux_sym_cmd_identifier_token39] = ACTIONS(2424), + [aux_sym_cmd_identifier_token40] = ACTIONS(2424), + [anon_sym_def] = ACTIONS(2422), + [anon_sym_export_DASHenv] = ACTIONS(2422), + [anon_sym_extern] = ACTIONS(2422), + [anon_sym_module] = ACTIONS(2422), + [anon_sym_use] = ACTIONS(2422), + [anon_sym_LPAREN] = ACTIONS(2424), + [anon_sym_DOLLAR] = ACTIONS(2424), + [anon_sym_error] = ACTIONS(2422), + [anon_sym_list] = ACTIONS(2422), + [anon_sym_DASH] = ACTIONS(2422), + [anon_sym_break] = ACTIONS(2422), + [anon_sym_continue] = ACTIONS(2422), + [anon_sym_for] = ACTIONS(2422), + [anon_sym_in] = ACTIONS(2422), + [anon_sym_loop] = ACTIONS(2422), + [anon_sym_make] = ACTIONS(2422), + [anon_sym_while] = ACTIONS(2422), + [anon_sym_do] = ACTIONS(2422), + [anon_sym_if] = ACTIONS(2422), + [anon_sym_else] = ACTIONS(2422), + [anon_sym_match] = ACTIONS(2422), + [anon_sym_RBRACE] = ACTIONS(2424), + [anon_sym_try] = ACTIONS(2422), + [anon_sym_catch] = ACTIONS(2422), + [anon_sym_return] = ACTIONS(2422), + [anon_sym_source] = ACTIONS(2422), + [anon_sym_source_DASHenv] = ACTIONS(2422), + [anon_sym_register] = ACTIONS(2422), + [anon_sym_hide] = ACTIONS(2422), + [anon_sym_hide_DASHenv] = ACTIONS(2422), + [anon_sym_overlay] = ACTIONS(2422), + [anon_sym_new] = ACTIONS(2422), + [anon_sym_as] = ACTIONS(2422), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2424), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2424), + [aux_sym__val_number_decimal_token1] = ACTIONS(2422), + [aux_sym__val_number_decimal_token2] = ACTIONS(2424), + [aux_sym__val_number_decimal_token3] = ACTIONS(2424), + [aux_sym__val_number_decimal_token4] = ACTIONS(2424), + [aux_sym__val_number_token1] = ACTIONS(2424), + [aux_sym__val_number_token2] = ACTIONS(2424), + [aux_sym__val_number_token3] = ACTIONS(2424), + [anon_sym_DQUOTE] = ACTIONS(2424), + [sym__str_single_quotes] = ACTIONS(2424), + [sym__str_back_ticks] = ACTIONS(2424), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2424), + [anon_sym_PLUS] = ACTIONS(2422), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2424), }, - [689] = { - [sym_comment] = STATE(689), - [anon_sym_export] = ACTIONS(1892), - [anon_sym_alias] = ACTIONS(1892), - [anon_sym_let] = ACTIONS(1892), - [anon_sym_let_DASHenv] = ACTIONS(1892), - [anon_sym_mut] = ACTIONS(1892), - [anon_sym_const] = ACTIONS(1892), - [aux_sym_cmd_identifier_token1] = ACTIONS(1892), - [aux_sym_cmd_identifier_token2] = ACTIONS(1892), - [aux_sym_cmd_identifier_token3] = ACTIONS(1892), - [aux_sym_cmd_identifier_token4] = ACTIONS(1892), - [aux_sym_cmd_identifier_token5] = ACTIONS(1892), - [aux_sym_cmd_identifier_token6] = ACTIONS(1892), - [aux_sym_cmd_identifier_token7] = ACTIONS(1892), - [aux_sym_cmd_identifier_token8] = ACTIONS(1892), - [aux_sym_cmd_identifier_token9] = ACTIONS(1892), - [aux_sym_cmd_identifier_token10] = ACTIONS(1892), - [aux_sym_cmd_identifier_token11] = ACTIONS(1892), - [aux_sym_cmd_identifier_token12] = ACTIONS(1892), - [aux_sym_cmd_identifier_token13] = ACTIONS(1892), - [aux_sym_cmd_identifier_token14] = ACTIONS(1892), - [aux_sym_cmd_identifier_token15] = ACTIONS(1892), - [aux_sym_cmd_identifier_token16] = ACTIONS(1892), - [aux_sym_cmd_identifier_token17] = ACTIONS(1892), - [aux_sym_cmd_identifier_token18] = ACTIONS(1892), - [aux_sym_cmd_identifier_token19] = ACTIONS(1892), - [aux_sym_cmd_identifier_token20] = ACTIONS(1892), - [aux_sym_cmd_identifier_token21] = ACTIONS(1892), - [aux_sym_cmd_identifier_token22] = ACTIONS(1892), - [aux_sym_cmd_identifier_token23] = ACTIONS(1892), - [aux_sym_cmd_identifier_token24] = ACTIONS(1892), - [aux_sym_cmd_identifier_token25] = ACTIONS(1892), - [aux_sym_cmd_identifier_token26] = ACTIONS(1892), - [aux_sym_cmd_identifier_token27] = ACTIONS(1892), - [aux_sym_cmd_identifier_token28] = ACTIONS(1892), - [aux_sym_cmd_identifier_token29] = ACTIONS(1892), - [aux_sym_cmd_identifier_token30] = ACTIONS(1892), - [aux_sym_cmd_identifier_token31] = ACTIONS(1892), - [aux_sym_cmd_identifier_token32] = ACTIONS(1892), - [aux_sym_cmd_identifier_token33] = ACTIONS(1892), - [aux_sym_cmd_identifier_token34] = ACTIONS(1892), - [aux_sym_cmd_identifier_token35] = ACTIONS(1892), - [aux_sym_cmd_identifier_token36] = ACTIONS(1892), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1894), - [aux_sym_cmd_identifier_token38] = ACTIONS(1892), - [aux_sym_cmd_identifier_token39] = ACTIONS(1894), - [aux_sym_cmd_identifier_token40] = ACTIONS(1894), - [anon_sym_def] = ACTIONS(1892), - [anon_sym_export_DASHenv] = ACTIONS(1892), - [anon_sym_extern] = ACTIONS(1892), - [anon_sym_module] = ACTIONS(1892), - [anon_sym_use] = ACTIONS(1892), - [anon_sym_LPAREN] = ACTIONS(1894), - [anon_sym_DOLLAR] = ACTIONS(1894), - [anon_sym_error] = ACTIONS(1892), - [anon_sym_list] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1892), - [anon_sym_break] = ACTIONS(1892), - [anon_sym_continue] = ACTIONS(1892), - [anon_sym_for] = ACTIONS(1892), - [anon_sym_in] = ACTIONS(1892), - [anon_sym_loop] = ACTIONS(1892), - [anon_sym_make] = ACTIONS(1892), - [anon_sym_while] = ACTIONS(1892), - [anon_sym_do] = ACTIONS(1892), - [anon_sym_if] = ACTIONS(1892), - [anon_sym_else] = ACTIONS(1892), - [anon_sym_match] = ACTIONS(1892), - [anon_sym_RBRACE] = ACTIONS(1894), - [anon_sym_try] = ACTIONS(1892), - [anon_sym_catch] = ACTIONS(1892), - [anon_sym_return] = ACTIONS(1892), - [anon_sym_source] = ACTIONS(1892), - [anon_sym_source_DASHenv] = ACTIONS(1892), - [anon_sym_register] = ACTIONS(1892), - [anon_sym_hide] = ACTIONS(1892), - [anon_sym_hide_DASHenv] = ACTIONS(1892), - [anon_sym_overlay] = ACTIONS(1892), - [anon_sym_new] = ACTIONS(1892), - [anon_sym_as] = ACTIONS(1892), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1894), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1894), - [aux_sym__val_number_decimal_token1] = ACTIONS(1892), - [aux_sym__val_number_decimal_token2] = ACTIONS(1894), - [aux_sym__val_number_decimal_token3] = ACTIONS(1894), - [aux_sym__val_number_decimal_token4] = ACTIONS(1894), - [aux_sym__val_number_token1] = ACTIONS(1894), - [aux_sym__val_number_token2] = ACTIONS(1894), - [aux_sym__val_number_token3] = ACTIONS(1894), - [anon_sym_DQUOTE] = ACTIONS(1894), - [sym__str_single_quotes] = ACTIONS(1894), - [sym__str_back_ticks] = ACTIONS(1894), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1894), - [anon_sym_PLUS] = ACTIONS(1892), - [anon_sym_POUND] = ACTIONS(247), + [643] = { + [sym_comment] = STATE(643), + [anon_sym_export] = ACTIONS(2557), + [anon_sym_alias] = ACTIONS(2557), + [anon_sym_let] = ACTIONS(2557), + [anon_sym_let_DASHenv] = ACTIONS(2557), + [anon_sym_mut] = ACTIONS(2557), + [anon_sym_const] = ACTIONS(2557), + [aux_sym_cmd_identifier_token1] = ACTIONS(2557), + [aux_sym_cmd_identifier_token2] = ACTIONS(2557), + [aux_sym_cmd_identifier_token3] = ACTIONS(2557), + [aux_sym_cmd_identifier_token4] = ACTIONS(2557), + [aux_sym_cmd_identifier_token5] = ACTIONS(2557), + [aux_sym_cmd_identifier_token6] = ACTIONS(2557), + [aux_sym_cmd_identifier_token7] = ACTIONS(2557), + [aux_sym_cmd_identifier_token8] = ACTIONS(2557), + [aux_sym_cmd_identifier_token9] = ACTIONS(2557), + [aux_sym_cmd_identifier_token10] = ACTIONS(2557), + [aux_sym_cmd_identifier_token11] = ACTIONS(2557), + [aux_sym_cmd_identifier_token12] = ACTIONS(2557), + [aux_sym_cmd_identifier_token13] = ACTIONS(2557), + [aux_sym_cmd_identifier_token14] = ACTIONS(2557), + [aux_sym_cmd_identifier_token15] = ACTIONS(2557), + [aux_sym_cmd_identifier_token16] = ACTIONS(2557), + [aux_sym_cmd_identifier_token17] = ACTIONS(2557), + [aux_sym_cmd_identifier_token18] = ACTIONS(2557), + [aux_sym_cmd_identifier_token19] = ACTIONS(2557), + [aux_sym_cmd_identifier_token20] = ACTIONS(2557), + [aux_sym_cmd_identifier_token21] = ACTIONS(2557), + [aux_sym_cmd_identifier_token22] = ACTIONS(2557), + [aux_sym_cmd_identifier_token23] = ACTIONS(2557), + [aux_sym_cmd_identifier_token24] = ACTIONS(2557), + [aux_sym_cmd_identifier_token25] = ACTIONS(2557), + [aux_sym_cmd_identifier_token26] = ACTIONS(2557), + [aux_sym_cmd_identifier_token27] = ACTIONS(2557), + [aux_sym_cmd_identifier_token28] = ACTIONS(2557), + [aux_sym_cmd_identifier_token29] = ACTIONS(2557), + [aux_sym_cmd_identifier_token30] = ACTIONS(2557), + [aux_sym_cmd_identifier_token31] = ACTIONS(2557), + [aux_sym_cmd_identifier_token32] = ACTIONS(2557), + [aux_sym_cmd_identifier_token33] = ACTIONS(2557), + [aux_sym_cmd_identifier_token34] = ACTIONS(2557), + [aux_sym_cmd_identifier_token35] = ACTIONS(2557), + [aux_sym_cmd_identifier_token36] = ACTIONS(2557), + [anon_sym_true] = ACTIONS(2559), + [anon_sym_false] = ACTIONS(2559), + [anon_sym_null] = ACTIONS(2559), + [aux_sym_cmd_identifier_token38] = ACTIONS(2557), + [aux_sym_cmd_identifier_token39] = ACTIONS(2559), + [aux_sym_cmd_identifier_token40] = ACTIONS(2559), + [anon_sym_def] = ACTIONS(2557), + [anon_sym_export_DASHenv] = ACTIONS(2557), + [anon_sym_extern] = ACTIONS(2557), + [anon_sym_module] = ACTIONS(2557), + [anon_sym_use] = ACTIONS(2557), + [anon_sym_LPAREN] = ACTIONS(2559), + [anon_sym_DOLLAR] = ACTIONS(2559), + [anon_sym_error] = ACTIONS(2557), + [anon_sym_list] = ACTIONS(2557), + [anon_sym_DASH] = ACTIONS(2557), + [anon_sym_break] = ACTIONS(2557), + [anon_sym_continue] = ACTIONS(2557), + [anon_sym_for] = ACTIONS(2557), + [anon_sym_in] = ACTIONS(2557), + [anon_sym_loop] = ACTIONS(2557), + [anon_sym_make] = ACTIONS(2557), + [anon_sym_while] = ACTIONS(2557), + [anon_sym_do] = ACTIONS(2557), + [anon_sym_if] = ACTIONS(2557), + [anon_sym_else] = ACTIONS(2557), + [anon_sym_match] = ACTIONS(2557), + [anon_sym_RBRACE] = ACTIONS(2559), + [anon_sym_try] = ACTIONS(2557), + [anon_sym_catch] = ACTIONS(2557), + [anon_sym_return] = ACTIONS(2557), + [anon_sym_source] = ACTIONS(2557), + [anon_sym_source_DASHenv] = ACTIONS(2557), + [anon_sym_register] = ACTIONS(2557), + [anon_sym_hide] = ACTIONS(2557), + [anon_sym_hide_DASHenv] = ACTIONS(2557), + [anon_sym_overlay] = ACTIONS(2557), + [anon_sym_new] = ACTIONS(2557), + [anon_sym_as] = ACTIONS(2557), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2559), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2559), + [aux_sym__val_number_decimal_token1] = ACTIONS(2557), + [aux_sym__val_number_decimal_token2] = ACTIONS(2559), + [aux_sym__val_number_decimal_token3] = ACTIONS(2559), + [aux_sym__val_number_decimal_token4] = ACTIONS(2559), + [aux_sym__val_number_token1] = ACTIONS(2559), + [aux_sym__val_number_token2] = ACTIONS(2559), + [aux_sym__val_number_token3] = ACTIONS(2559), + [anon_sym_DQUOTE] = ACTIONS(2559), + [sym__str_single_quotes] = ACTIONS(2559), + [sym__str_back_ticks] = ACTIONS(2559), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2557), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2559), }, - [690] = { - [sym_comment] = STATE(690), - [anon_sym_export] = ACTIONS(1900), - [anon_sym_alias] = ACTIONS(1900), - [anon_sym_let] = ACTIONS(1900), - [anon_sym_let_DASHenv] = ACTIONS(1900), - [anon_sym_mut] = ACTIONS(1900), - [anon_sym_const] = ACTIONS(1900), - [aux_sym_cmd_identifier_token1] = ACTIONS(1900), - [aux_sym_cmd_identifier_token2] = ACTIONS(1900), - [aux_sym_cmd_identifier_token3] = ACTIONS(1900), - [aux_sym_cmd_identifier_token4] = ACTIONS(1900), - [aux_sym_cmd_identifier_token5] = ACTIONS(1900), - [aux_sym_cmd_identifier_token6] = ACTIONS(1900), - [aux_sym_cmd_identifier_token7] = ACTIONS(1900), - [aux_sym_cmd_identifier_token8] = ACTIONS(1900), - [aux_sym_cmd_identifier_token9] = ACTIONS(1900), - [aux_sym_cmd_identifier_token10] = ACTIONS(1900), - [aux_sym_cmd_identifier_token11] = ACTIONS(1900), - [aux_sym_cmd_identifier_token12] = ACTIONS(1900), - [aux_sym_cmd_identifier_token13] = ACTIONS(1900), - [aux_sym_cmd_identifier_token14] = ACTIONS(1900), - [aux_sym_cmd_identifier_token15] = ACTIONS(1900), - [aux_sym_cmd_identifier_token16] = ACTIONS(1900), - [aux_sym_cmd_identifier_token17] = ACTIONS(1900), - [aux_sym_cmd_identifier_token18] = ACTIONS(1900), - [aux_sym_cmd_identifier_token19] = ACTIONS(1900), - [aux_sym_cmd_identifier_token20] = ACTIONS(1900), - [aux_sym_cmd_identifier_token21] = ACTIONS(1900), - [aux_sym_cmd_identifier_token22] = ACTIONS(1900), - [aux_sym_cmd_identifier_token23] = ACTIONS(1900), - [aux_sym_cmd_identifier_token24] = ACTIONS(1900), - [aux_sym_cmd_identifier_token25] = ACTIONS(1900), - [aux_sym_cmd_identifier_token26] = ACTIONS(1900), - [aux_sym_cmd_identifier_token27] = ACTIONS(1900), - [aux_sym_cmd_identifier_token28] = ACTIONS(1900), - [aux_sym_cmd_identifier_token29] = ACTIONS(1900), - [aux_sym_cmd_identifier_token30] = ACTIONS(1900), - [aux_sym_cmd_identifier_token31] = ACTIONS(1900), - [aux_sym_cmd_identifier_token32] = ACTIONS(1900), - [aux_sym_cmd_identifier_token33] = ACTIONS(1900), - [aux_sym_cmd_identifier_token34] = ACTIONS(1900), - [aux_sym_cmd_identifier_token35] = ACTIONS(1900), - [aux_sym_cmd_identifier_token36] = ACTIONS(1900), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1902), - [anon_sym_null] = ACTIONS(1902), - [aux_sym_cmd_identifier_token38] = ACTIONS(1900), - [aux_sym_cmd_identifier_token39] = ACTIONS(1902), - [aux_sym_cmd_identifier_token40] = ACTIONS(1902), - [anon_sym_def] = ACTIONS(1900), - [anon_sym_export_DASHenv] = ACTIONS(1900), - [anon_sym_extern] = ACTIONS(1900), - [anon_sym_module] = ACTIONS(1900), - [anon_sym_use] = ACTIONS(1900), - [anon_sym_LPAREN] = ACTIONS(1902), - [anon_sym_DOLLAR] = ACTIONS(1902), - [anon_sym_error] = ACTIONS(1900), - [anon_sym_list] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_break] = ACTIONS(1900), - [anon_sym_continue] = ACTIONS(1900), - [anon_sym_for] = ACTIONS(1900), - [anon_sym_in] = ACTIONS(1900), - [anon_sym_loop] = ACTIONS(1900), - [anon_sym_make] = ACTIONS(1900), - [anon_sym_while] = ACTIONS(1900), - [anon_sym_do] = ACTIONS(1900), - [anon_sym_if] = ACTIONS(1900), - [anon_sym_else] = ACTIONS(1900), - [anon_sym_match] = ACTIONS(1900), - [anon_sym_RBRACE] = ACTIONS(1902), - [anon_sym_try] = ACTIONS(1900), - [anon_sym_catch] = ACTIONS(1900), - [anon_sym_return] = ACTIONS(1900), - [anon_sym_source] = ACTIONS(1900), - [anon_sym_source_DASHenv] = ACTIONS(1900), - [anon_sym_register] = ACTIONS(1900), - [anon_sym_hide] = ACTIONS(1900), - [anon_sym_hide_DASHenv] = ACTIONS(1900), - [anon_sym_overlay] = ACTIONS(1900), - [anon_sym_new] = ACTIONS(1900), - [anon_sym_as] = ACTIONS(1900), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1902), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1902), - [aux_sym__val_number_decimal_token1] = ACTIONS(1900), - [aux_sym__val_number_decimal_token2] = ACTIONS(1902), - [aux_sym__val_number_decimal_token3] = ACTIONS(1902), - [aux_sym__val_number_decimal_token4] = ACTIONS(1902), - [aux_sym__val_number_token1] = ACTIONS(1902), - [aux_sym__val_number_token2] = ACTIONS(1902), - [aux_sym__val_number_token3] = ACTIONS(1902), - [anon_sym_DQUOTE] = ACTIONS(1902), - [sym__str_single_quotes] = ACTIONS(1902), - [sym__str_back_ticks] = ACTIONS(1902), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1902), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_POUND] = ACTIONS(247), + [644] = { + [sym_comment] = STATE(644), + [anon_sym_export] = ACTIONS(2498), + [anon_sym_alias] = ACTIONS(2498), + [anon_sym_let] = ACTIONS(2498), + [anon_sym_let_DASHenv] = ACTIONS(2498), + [anon_sym_mut] = ACTIONS(2498), + [anon_sym_const] = ACTIONS(2498), + [aux_sym_cmd_identifier_token1] = ACTIONS(2498), + [aux_sym_cmd_identifier_token2] = ACTIONS(2498), + [aux_sym_cmd_identifier_token3] = ACTIONS(2498), + [aux_sym_cmd_identifier_token4] = ACTIONS(2498), + [aux_sym_cmd_identifier_token5] = ACTIONS(2498), + [aux_sym_cmd_identifier_token6] = ACTIONS(2498), + [aux_sym_cmd_identifier_token7] = ACTIONS(2498), + [aux_sym_cmd_identifier_token8] = ACTIONS(2498), + [aux_sym_cmd_identifier_token9] = ACTIONS(2498), + [aux_sym_cmd_identifier_token10] = ACTIONS(2498), + [aux_sym_cmd_identifier_token11] = ACTIONS(2498), + [aux_sym_cmd_identifier_token12] = ACTIONS(2498), + [aux_sym_cmd_identifier_token13] = ACTIONS(2498), + [aux_sym_cmd_identifier_token14] = ACTIONS(2498), + [aux_sym_cmd_identifier_token15] = ACTIONS(2498), + [aux_sym_cmd_identifier_token16] = ACTIONS(2498), + [aux_sym_cmd_identifier_token17] = ACTIONS(2498), + [aux_sym_cmd_identifier_token18] = ACTIONS(2498), + [aux_sym_cmd_identifier_token19] = ACTIONS(2498), + [aux_sym_cmd_identifier_token20] = ACTIONS(2498), + [aux_sym_cmd_identifier_token21] = ACTIONS(2498), + [aux_sym_cmd_identifier_token22] = ACTIONS(2498), + [aux_sym_cmd_identifier_token23] = ACTIONS(2498), + [aux_sym_cmd_identifier_token24] = ACTIONS(2498), + [aux_sym_cmd_identifier_token25] = ACTIONS(2498), + [aux_sym_cmd_identifier_token26] = ACTIONS(2498), + [aux_sym_cmd_identifier_token27] = ACTIONS(2498), + [aux_sym_cmd_identifier_token28] = ACTIONS(2498), + [aux_sym_cmd_identifier_token29] = ACTIONS(2498), + [aux_sym_cmd_identifier_token30] = ACTIONS(2498), + [aux_sym_cmd_identifier_token31] = ACTIONS(2498), + [aux_sym_cmd_identifier_token32] = ACTIONS(2498), + [aux_sym_cmd_identifier_token33] = ACTIONS(2498), + [aux_sym_cmd_identifier_token34] = ACTIONS(2498), + [aux_sym_cmd_identifier_token35] = ACTIONS(2498), + [aux_sym_cmd_identifier_token36] = ACTIONS(2498), + [anon_sym_true] = ACTIONS(2500), + [anon_sym_false] = ACTIONS(2500), + [anon_sym_null] = ACTIONS(2500), + [aux_sym_cmd_identifier_token38] = ACTIONS(2498), + [aux_sym_cmd_identifier_token39] = ACTIONS(2500), + [aux_sym_cmd_identifier_token40] = ACTIONS(2500), + [anon_sym_def] = ACTIONS(2498), + [anon_sym_export_DASHenv] = ACTIONS(2498), + [anon_sym_extern] = ACTIONS(2498), + [anon_sym_module] = ACTIONS(2498), + [anon_sym_use] = ACTIONS(2498), + [anon_sym_LPAREN] = ACTIONS(2500), + [anon_sym_DOLLAR] = ACTIONS(2500), + [anon_sym_error] = ACTIONS(2498), + [anon_sym_list] = ACTIONS(2498), + [anon_sym_DASH] = ACTIONS(2498), + [anon_sym_break] = ACTIONS(2498), + [anon_sym_continue] = ACTIONS(2498), + [anon_sym_for] = ACTIONS(2498), + [anon_sym_in] = ACTIONS(2498), + [anon_sym_loop] = ACTIONS(2498), + [anon_sym_make] = ACTIONS(2498), + [anon_sym_while] = ACTIONS(2498), + [anon_sym_do] = ACTIONS(2498), + [anon_sym_if] = ACTIONS(2498), + [anon_sym_else] = ACTIONS(2498), + [anon_sym_match] = ACTIONS(2498), + [anon_sym_RBRACE] = ACTIONS(2500), + [anon_sym_try] = ACTIONS(2498), + [anon_sym_catch] = ACTIONS(2498), + [anon_sym_return] = ACTIONS(2498), + [anon_sym_source] = ACTIONS(2498), + [anon_sym_source_DASHenv] = ACTIONS(2498), + [anon_sym_register] = ACTIONS(2498), + [anon_sym_hide] = ACTIONS(2498), + [anon_sym_hide_DASHenv] = ACTIONS(2498), + [anon_sym_overlay] = ACTIONS(2498), + [anon_sym_new] = ACTIONS(2498), + [anon_sym_as] = ACTIONS(2498), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2500), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2500), + [aux_sym__val_number_decimal_token1] = ACTIONS(2498), + [aux_sym__val_number_decimal_token2] = ACTIONS(2500), + [aux_sym__val_number_decimal_token3] = ACTIONS(2500), + [aux_sym__val_number_decimal_token4] = ACTIONS(2500), + [aux_sym__val_number_token1] = ACTIONS(2500), + [aux_sym__val_number_token2] = ACTIONS(2500), + [aux_sym__val_number_token3] = ACTIONS(2500), + [anon_sym_DQUOTE] = ACTIONS(2500), + [sym__str_single_quotes] = ACTIONS(2500), + [sym__str_back_ticks] = ACTIONS(2500), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2500), + [anon_sym_PLUS] = ACTIONS(2498), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2500), }, - [691] = { - [sym_comment] = STATE(691), - [anon_sym_export] = ACTIONS(2442), - [anon_sym_alias] = ACTIONS(2442), - [anon_sym_let] = ACTIONS(2442), - [anon_sym_let_DASHenv] = ACTIONS(2442), - [anon_sym_mut] = ACTIONS(2442), - [anon_sym_const] = ACTIONS(2442), - [aux_sym_cmd_identifier_token1] = ACTIONS(2442), - [aux_sym_cmd_identifier_token2] = ACTIONS(2442), - [aux_sym_cmd_identifier_token3] = ACTIONS(2442), - [aux_sym_cmd_identifier_token4] = ACTIONS(2442), - [aux_sym_cmd_identifier_token5] = ACTIONS(2442), - [aux_sym_cmd_identifier_token6] = ACTIONS(2442), - [aux_sym_cmd_identifier_token7] = ACTIONS(2442), - [aux_sym_cmd_identifier_token8] = ACTIONS(2442), - [aux_sym_cmd_identifier_token9] = ACTIONS(2442), - [aux_sym_cmd_identifier_token10] = ACTIONS(2442), - [aux_sym_cmd_identifier_token11] = ACTIONS(2442), - [aux_sym_cmd_identifier_token12] = ACTIONS(2442), - [aux_sym_cmd_identifier_token13] = ACTIONS(2442), - [aux_sym_cmd_identifier_token14] = ACTIONS(2442), - [aux_sym_cmd_identifier_token15] = ACTIONS(2442), - [aux_sym_cmd_identifier_token16] = ACTIONS(2442), - [aux_sym_cmd_identifier_token17] = ACTIONS(2442), - [aux_sym_cmd_identifier_token18] = ACTIONS(2442), - [aux_sym_cmd_identifier_token19] = ACTIONS(2442), - [aux_sym_cmd_identifier_token20] = ACTIONS(2442), - [aux_sym_cmd_identifier_token21] = ACTIONS(2442), - [aux_sym_cmd_identifier_token22] = ACTIONS(2442), - [aux_sym_cmd_identifier_token23] = ACTIONS(2442), - [aux_sym_cmd_identifier_token24] = ACTIONS(2442), - [aux_sym_cmd_identifier_token25] = ACTIONS(2442), - [aux_sym_cmd_identifier_token26] = ACTIONS(2442), - [aux_sym_cmd_identifier_token27] = ACTIONS(2442), - [aux_sym_cmd_identifier_token28] = ACTIONS(2442), - [aux_sym_cmd_identifier_token29] = ACTIONS(2442), - [aux_sym_cmd_identifier_token30] = ACTIONS(2442), - [aux_sym_cmd_identifier_token31] = ACTIONS(2442), - [aux_sym_cmd_identifier_token32] = ACTIONS(2442), - [aux_sym_cmd_identifier_token33] = ACTIONS(2442), - [aux_sym_cmd_identifier_token34] = ACTIONS(2442), - [aux_sym_cmd_identifier_token35] = ACTIONS(2442), - [aux_sym_cmd_identifier_token36] = ACTIONS(2442), - [anon_sym_true] = ACTIONS(2444), - [anon_sym_false] = ACTIONS(2444), - [anon_sym_null] = ACTIONS(2444), - [aux_sym_cmd_identifier_token38] = ACTIONS(2442), - [aux_sym_cmd_identifier_token39] = ACTIONS(2444), - [aux_sym_cmd_identifier_token40] = ACTIONS(2444), - [anon_sym_def] = ACTIONS(2442), - [anon_sym_export_DASHenv] = ACTIONS(2442), - [anon_sym_extern] = ACTIONS(2442), - [anon_sym_module] = ACTIONS(2442), - [anon_sym_use] = ACTIONS(2442), - [anon_sym_LPAREN] = ACTIONS(2444), - [anon_sym_DOLLAR] = ACTIONS(2444), - [anon_sym_error] = ACTIONS(2442), - [anon_sym_list] = ACTIONS(2442), - [anon_sym_DASH] = ACTIONS(2442), - [anon_sym_break] = ACTIONS(2442), - [anon_sym_continue] = ACTIONS(2442), - [anon_sym_for] = ACTIONS(2442), - [anon_sym_in] = ACTIONS(2442), - [anon_sym_loop] = ACTIONS(2442), - [anon_sym_make] = ACTIONS(2442), - [anon_sym_while] = ACTIONS(2442), - [anon_sym_do] = ACTIONS(2442), - [anon_sym_if] = ACTIONS(2442), - [anon_sym_else] = ACTIONS(2442), - [anon_sym_match] = ACTIONS(2442), - [anon_sym_RBRACE] = ACTIONS(2444), - [anon_sym_try] = ACTIONS(2442), - [anon_sym_catch] = ACTIONS(2442), - [anon_sym_return] = ACTIONS(2442), - [anon_sym_source] = ACTIONS(2442), - [anon_sym_source_DASHenv] = ACTIONS(2442), - [anon_sym_register] = ACTIONS(2442), - [anon_sym_hide] = ACTIONS(2442), - [anon_sym_hide_DASHenv] = ACTIONS(2442), - [anon_sym_overlay] = ACTIONS(2442), - [anon_sym_new] = ACTIONS(2442), - [anon_sym_as] = ACTIONS(2442), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2444), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2444), - [aux_sym__val_number_decimal_token1] = ACTIONS(2442), - [aux_sym__val_number_decimal_token2] = ACTIONS(2444), - [aux_sym__val_number_decimal_token3] = ACTIONS(2444), - [aux_sym__val_number_decimal_token4] = ACTIONS(2444), - [aux_sym__val_number_token1] = ACTIONS(2444), - [aux_sym__val_number_token2] = ACTIONS(2444), - [aux_sym__val_number_token3] = ACTIONS(2444), - [anon_sym_DQUOTE] = ACTIONS(2444), - [sym__str_single_quotes] = ACTIONS(2444), - [sym__str_back_ticks] = ACTIONS(2444), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2444), - [anon_sym_PLUS] = ACTIONS(2442), - [anon_sym_POUND] = ACTIONS(247), + [645] = { + [sym_comment] = STATE(645), + [anon_sym_export] = ACTIONS(2426), + [anon_sym_alias] = ACTIONS(2426), + [anon_sym_let] = ACTIONS(2426), + [anon_sym_let_DASHenv] = ACTIONS(2426), + [anon_sym_mut] = ACTIONS(2426), + [anon_sym_const] = ACTIONS(2426), + [aux_sym_cmd_identifier_token1] = ACTIONS(2426), + [aux_sym_cmd_identifier_token2] = ACTIONS(2426), + [aux_sym_cmd_identifier_token3] = ACTIONS(2426), + [aux_sym_cmd_identifier_token4] = ACTIONS(2426), + [aux_sym_cmd_identifier_token5] = ACTIONS(2426), + [aux_sym_cmd_identifier_token6] = ACTIONS(2426), + [aux_sym_cmd_identifier_token7] = ACTIONS(2426), + [aux_sym_cmd_identifier_token8] = ACTIONS(2426), + [aux_sym_cmd_identifier_token9] = ACTIONS(2426), + [aux_sym_cmd_identifier_token10] = ACTIONS(2426), + [aux_sym_cmd_identifier_token11] = ACTIONS(2426), + [aux_sym_cmd_identifier_token12] = ACTIONS(2426), + [aux_sym_cmd_identifier_token13] = ACTIONS(2426), + [aux_sym_cmd_identifier_token14] = ACTIONS(2426), + [aux_sym_cmd_identifier_token15] = ACTIONS(2426), + [aux_sym_cmd_identifier_token16] = ACTIONS(2426), + [aux_sym_cmd_identifier_token17] = ACTIONS(2426), + [aux_sym_cmd_identifier_token18] = ACTIONS(2426), + [aux_sym_cmd_identifier_token19] = ACTIONS(2426), + [aux_sym_cmd_identifier_token20] = ACTIONS(2426), + [aux_sym_cmd_identifier_token21] = ACTIONS(2426), + [aux_sym_cmd_identifier_token22] = ACTIONS(2426), + [aux_sym_cmd_identifier_token23] = ACTIONS(2426), + [aux_sym_cmd_identifier_token24] = ACTIONS(2426), + [aux_sym_cmd_identifier_token25] = ACTIONS(2426), + [aux_sym_cmd_identifier_token26] = ACTIONS(2426), + [aux_sym_cmd_identifier_token27] = ACTIONS(2426), + [aux_sym_cmd_identifier_token28] = ACTIONS(2426), + [aux_sym_cmd_identifier_token29] = ACTIONS(2426), + [aux_sym_cmd_identifier_token30] = ACTIONS(2426), + [aux_sym_cmd_identifier_token31] = ACTIONS(2426), + [aux_sym_cmd_identifier_token32] = ACTIONS(2426), + [aux_sym_cmd_identifier_token33] = ACTIONS(2426), + [aux_sym_cmd_identifier_token34] = ACTIONS(2426), + [aux_sym_cmd_identifier_token35] = ACTIONS(2426), + [aux_sym_cmd_identifier_token36] = ACTIONS(2426), + [anon_sym_true] = ACTIONS(2428), + [anon_sym_false] = ACTIONS(2428), + [anon_sym_null] = ACTIONS(2428), + [aux_sym_cmd_identifier_token38] = ACTIONS(2426), + [aux_sym_cmd_identifier_token39] = ACTIONS(2428), + [aux_sym_cmd_identifier_token40] = ACTIONS(2428), + [anon_sym_def] = ACTIONS(2426), + [anon_sym_export_DASHenv] = ACTIONS(2426), + [anon_sym_extern] = ACTIONS(2426), + [anon_sym_module] = ACTIONS(2426), + [anon_sym_use] = ACTIONS(2426), + [anon_sym_LPAREN] = ACTIONS(2428), + [anon_sym_DOLLAR] = ACTIONS(2428), + [anon_sym_error] = ACTIONS(2426), + [anon_sym_list] = ACTIONS(2426), + [anon_sym_DASH] = ACTIONS(2426), + [anon_sym_break] = ACTIONS(2426), + [anon_sym_continue] = ACTIONS(2426), + [anon_sym_for] = ACTIONS(2426), + [anon_sym_in] = ACTIONS(2426), + [anon_sym_loop] = ACTIONS(2426), + [anon_sym_make] = ACTIONS(2426), + [anon_sym_while] = ACTIONS(2426), + [anon_sym_do] = ACTIONS(2426), + [anon_sym_if] = ACTIONS(2426), + [anon_sym_else] = ACTIONS(2426), + [anon_sym_match] = ACTIONS(2426), + [anon_sym_RBRACE] = ACTIONS(2428), + [anon_sym_try] = ACTIONS(2426), + [anon_sym_catch] = ACTIONS(2426), + [anon_sym_return] = ACTIONS(2426), + [anon_sym_source] = ACTIONS(2426), + [anon_sym_source_DASHenv] = ACTIONS(2426), + [anon_sym_register] = ACTIONS(2426), + [anon_sym_hide] = ACTIONS(2426), + [anon_sym_hide_DASHenv] = ACTIONS(2426), + [anon_sym_overlay] = ACTIONS(2426), + [anon_sym_new] = ACTIONS(2426), + [anon_sym_as] = ACTIONS(2426), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2428), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2428), + [aux_sym__val_number_decimal_token1] = ACTIONS(2426), + [aux_sym__val_number_decimal_token2] = ACTIONS(2428), + [aux_sym__val_number_decimal_token3] = ACTIONS(2428), + [aux_sym__val_number_decimal_token4] = ACTIONS(2428), + [aux_sym__val_number_token1] = ACTIONS(2428), + [aux_sym__val_number_token2] = ACTIONS(2428), + [aux_sym__val_number_token3] = ACTIONS(2428), + [anon_sym_DQUOTE] = ACTIONS(2428), + [sym__str_single_quotes] = ACTIONS(2428), + [sym__str_back_ticks] = ACTIONS(2428), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2428), + [anon_sym_PLUS] = ACTIONS(2426), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2428), }, - [692] = { - [sym_comment] = STATE(692), + [646] = { + [sym_comment] = STATE(646), [anon_sym_export] = ACTIONS(2446), [anon_sym_alias] = ACTIONS(2446), [anon_sym_let] = ACTIONS(2446), @@ -150866,208 +147977,1611 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(2448), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2448), [anon_sym_PLUS] = ACTIONS(2446), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2448), }, - [693] = { - [sym_comment] = STATE(693), - [anon_sym_export] = ACTIONS(1904), - [anon_sym_alias] = ACTIONS(1904), - [anon_sym_let] = ACTIONS(1904), - [anon_sym_let_DASHenv] = ACTIONS(1904), - [anon_sym_mut] = ACTIONS(1904), - [anon_sym_const] = ACTIONS(1904), - [aux_sym_cmd_identifier_token1] = ACTIONS(1904), - [aux_sym_cmd_identifier_token2] = ACTIONS(1904), - [aux_sym_cmd_identifier_token3] = ACTIONS(1904), - [aux_sym_cmd_identifier_token4] = ACTIONS(1904), - [aux_sym_cmd_identifier_token5] = ACTIONS(1904), - [aux_sym_cmd_identifier_token6] = ACTIONS(1904), - [aux_sym_cmd_identifier_token7] = ACTIONS(1904), - [aux_sym_cmd_identifier_token8] = ACTIONS(1904), - [aux_sym_cmd_identifier_token9] = ACTIONS(1904), - [aux_sym_cmd_identifier_token10] = ACTIONS(1904), - [aux_sym_cmd_identifier_token11] = ACTIONS(1904), - [aux_sym_cmd_identifier_token12] = ACTIONS(1904), - [aux_sym_cmd_identifier_token13] = ACTIONS(1904), - [aux_sym_cmd_identifier_token14] = ACTIONS(1904), - [aux_sym_cmd_identifier_token15] = ACTIONS(1904), - [aux_sym_cmd_identifier_token16] = ACTIONS(1904), - [aux_sym_cmd_identifier_token17] = ACTIONS(1904), - [aux_sym_cmd_identifier_token18] = ACTIONS(1904), - [aux_sym_cmd_identifier_token19] = ACTIONS(1904), - [aux_sym_cmd_identifier_token20] = ACTIONS(1904), - [aux_sym_cmd_identifier_token21] = ACTIONS(1904), - [aux_sym_cmd_identifier_token22] = ACTIONS(1904), - [aux_sym_cmd_identifier_token23] = ACTIONS(1904), - [aux_sym_cmd_identifier_token24] = ACTIONS(1904), - [aux_sym_cmd_identifier_token25] = ACTIONS(1904), - [aux_sym_cmd_identifier_token26] = ACTIONS(1904), - [aux_sym_cmd_identifier_token27] = ACTIONS(1904), - [aux_sym_cmd_identifier_token28] = ACTIONS(1904), - [aux_sym_cmd_identifier_token29] = ACTIONS(1904), - [aux_sym_cmd_identifier_token30] = ACTIONS(1904), - [aux_sym_cmd_identifier_token31] = ACTIONS(1904), - [aux_sym_cmd_identifier_token32] = ACTIONS(1904), - [aux_sym_cmd_identifier_token33] = ACTIONS(1904), - [aux_sym_cmd_identifier_token34] = ACTIONS(1904), - [aux_sym_cmd_identifier_token35] = ACTIONS(1904), - [aux_sym_cmd_identifier_token36] = ACTIONS(1904), - [anon_sym_true] = ACTIONS(1906), - [anon_sym_false] = ACTIONS(1906), - [anon_sym_null] = ACTIONS(1906), - [aux_sym_cmd_identifier_token38] = ACTIONS(1904), - [aux_sym_cmd_identifier_token39] = ACTIONS(1906), - [aux_sym_cmd_identifier_token40] = ACTIONS(1906), - [anon_sym_def] = ACTIONS(1904), - [anon_sym_export_DASHenv] = ACTIONS(1904), - [anon_sym_extern] = ACTIONS(1904), - [anon_sym_module] = ACTIONS(1904), - [anon_sym_use] = ACTIONS(1904), - [anon_sym_LPAREN] = ACTIONS(1906), - [anon_sym_DOLLAR] = ACTIONS(1906), - [anon_sym_error] = ACTIONS(1904), - [anon_sym_list] = ACTIONS(1904), - [anon_sym_DASH] = ACTIONS(1904), - [anon_sym_break] = ACTIONS(1904), - [anon_sym_continue] = ACTIONS(1904), - [anon_sym_for] = ACTIONS(1904), - [anon_sym_in] = ACTIONS(1904), - [anon_sym_loop] = ACTIONS(1904), - [anon_sym_make] = ACTIONS(1904), - [anon_sym_while] = ACTIONS(1904), - [anon_sym_do] = ACTIONS(1904), - [anon_sym_if] = ACTIONS(1904), - [anon_sym_else] = ACTIONS(1904), - [anon_sym_match] = ACTIONS(1904), - [anon_sym_RBRACE] = ACTIONS(1906), - [anon_sym_try] = ACTIONS(1904), - [anon_sym_catch] = ACTIONS(1904), - [anon_sym_return] = ACTIONS(1904), - [anon_sym_source] = ACTIONS(1904), - [anon_sym_source_DASHenv] = ACTIONS(1904), - [anon_sym_register] = ACTIONS(1904), - [anon_sym_hide] = ACTIONS(1904), - [anon_sym_hide_DASHenv] = ACTIONS(1904), - [anon_sym_overlay] = ACTIONS(1904), - [anon_sym_new] = ACTIONS(1904), - [anon_sym_as] = ACTIONS(1904), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1906), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1906), - [aux_sym__val_number_decimal_token1] = ACTIONS(1904), - [aux_sym__val_number_decimal_token2] = ACTIONS(1906), - [aux_sym__val_number_decimal_token3] = ACTIONS(1906), - [aux_sym__val_number_decimal_token4] = ACTIONS(1906), - [aux_sym__val_number_token1] = ACTIONS(1906), - [aux_sym__val_number_token2] = ACTIONS(1906), - [aux_sym__val_number_token3] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1906), - [sym__str_single_quotes] = ACTIONS(1906), - [sym__str_back_ticks] = ACTIONS(1906), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1906), - [anon_sym_PLUS] = ACTIONS(1904), - [anon_sym_POUND] = ACTIONS(247), + [647] = { + [sym_comment] = STATE(647), + [anon_sym_export] = ACTIONS(2486), + [anon_sym_alias] = ACTIONS(2486), + [anon_sym_let] = ACTIONS(2486), + [anon_sym_let_DASHenv] = ACTIONS(2486), + [anon_sym_mut] = ACTIONS(2486), + [anon_sym_const] = ACTIONS(2486), + [aux_sym_cmd_identifier_token1] = ACTIONS(2486), + [aux_sym_cmd_identifier_token2] = ACTIONS(2486), + [aux_sym_cmd_identifier_token3] = ACTIONS(2486), + [aux_sym_cmd_identifier_token4] = ACTIONS(2486), + [aux_sym_cmd_identifier_token5] = ACTIONS(2486), + [aux_sym_cmd_identifier_token6] = ACTIONS(2486), + [aux_sym_cmd_identifier_token7] = ACTIONS(2486), + [aux_sym_cmd_identifier_token8] = ACTIONS(2486), + [aux_sym_cmd_identifier_token9] = ACTIONS(2486), + [aux_sym_cmd_identifier_token10] = ACTIONS(2486), + [aux_sym_cmd_identifier_token11] = ACTIONS(2486), + [aux_sym_cmd_identifier_token12] = ACTIONS(2486), + [aux_sym_cmd_identifier_token13] = ACTIONS(2486), + [aux_sym_cmd_identifier_token14] = ACTIONS(2486), + [aux_sym_cmd_identifier_token15] = ACTIONS(2486), + [aux_sym_cmd_identifier_token16] = ACTIONS(2486), + [aux_sym_cmd_identifier_token17] = ACTIONS(2486), + [aux_sym_cmd_identifier_token18] = ACTIONS(2486), + [aux_sym_cmd_identifier_token19] = ACTIONS(2486), + [aux_sym_cmd_identifier_token20] = ACTIONS(2486), + [aux_sym_cmd_identifier_token21] = ACTIONS(2486), + [aux_sym_cmd_identifier_token22] = ACTIONS(2486), + [aux_sym_cmd_identifier_token23] = ACTIONS(2486), + [aux_sym_cmd_identifier_token24] = ACTIONS(2486), + [aux_sym_cmd_identifier_token25] = ACTIONS(2486), + [aux_sym_cmd_identifier_token26] = ACTIONS(2486), + [aux_sym_cmd_identifier_token27] = ACTIONS(2486), + [aux_sym_cmd_identifier_token28] = ACTIONS(2486), + [aux_sym_cmd_identifier_token29] = ACTIONS(2486), + [aux_sym_cmd_identifier_token30] = ACTIONS(2486), + [aux_sym_cmd_identifier_token31] = ACTIONS(2486), + [aux_sym_cmd_identifier_token32] = ACTIONS(2486), + [aux_sym_cmd_identifier_token33] = ACTIONS(2486), + [aux_sym_cmd_identifier_token34] = ACTIONS(2486), + [aux_sym_cmd_identifier_token35] = ACTIONS(2486), + [aux_sym_cmd_identifier_token36] = ACTIONS(2486), + [anon_sym_true] = ACTIONS(2488), + [anon_sym_false] = ACTIONS(2488), + [anon_sym_null] = ACTIONS(2488), + [aux_sym_cmd_identifier_token38] = ACTIONS(2486), + [aux_sym_cmd_identifier_token39] = ACTIONS(2488), + [aux_sym_cmd_identifier_token40] = ACTIONS(2488), + [anon_sym_def] = ACTIONS(2486), + [anon_sym_export_DASHenv] = ACTIONS(2486), + [anon_sym_extern] = ACTIONS(2486), + [anon_sym_module] = ACTIONS(2486), + [anon_sym_use] = ACTIONS(2486), + [anon_sym_LPAREN] = ACTIONS(2488), + [anon_sym_DOLLAR] = ACTIONS(2488), + [anon_sym_error] = ACTIONS(2486), + [anon_sym_list] = ACTIONS(2486), + [anon_sym_DASH] = ACTIONS(2486), + [anon_sym_break] = ACTIONS(2486), + [anon_sym_continue] = ACTIONS(2486), + [anon_sym_for] = ACTIONS(2486), + [anon_sym_in] = ACTIONS(2486), + [anon_sym_loop] = ACTIONS(2486), + [anon_sym_make] = ACTIONS(2486), + [anon_sym_while] = ACTIONS(2486), + [anon_sym_do] = ACTIONS(2486), + [anon_sym_if] = ACTIONS(2486), + [anon_sym_else] = ACTIONS(2486), + [anon_sym_match] = ACTIONS(2486), + [anon_sym_RBRACE] = ACTIONS(2488), + [anon_sym_try] = ACTIONS(2486), + [anon_sym_catch] = ACTIONS(2486), + [anon_sym_return] = ACTIONS(2486), + [anon_sym_source] = ACTIONS(2486), + [anon_sym_source_DASHenv] = ACTIONS(2486), + [anon_sym_register] = ACTIONS(2486), + [anon_sym_hide] = ACTIONS(2486), + [anon_sym_hide_DASHenv] = ACTIONS(2486), + [anon_sym_overlay] = ACTIONS(2486), + [anon_sym_new] = ACTIONS(2486), + [anon_sym_as] = ACTIONS(2486), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2488), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2488), + [aux_sym__val_number_decimal_token1] = ACTIONS(2486), + [aux_sym__val_number_decimal_token2] = ACTIONS(2488), + [aux_sym__val_number_decimal_token3] = ACTIONS(2488), + [aux_sym__val_number_decimal_token4] = ACTIONS(2488), + [aux_sym__val_number_token1] = ACTIONS(2488), + [aux_sym__val_number_token2] = ACTIONS(2488), + [aux_sym__val_number_token3] = ACTIONS(2488), + [anon_sym_DQUOTE] = ACTIONS(2488), + [sym__str_single_quotes] = ACTIONS(2488), + [sym__str_back_ticks] = ACTIONS(2488), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2488), + [anon_sym_PLUS] = ACTIONS(2486), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2488), }, - [694] = { - [sym_comment] = STATE(694), - [anon_sym_export] = ACTIONS(2450), - [anon_sym_alias] = ACTIONS(2450), - [anon_sym_let] = ACTIONS(2450), - [anon_sym_let_DASHenv] = ACTIONS(2450), - [anon_sym_mut] = ACTIONS(2450), - [anon_sym_const] = ACTIONS(2450), - [aux_sym_cmd_identifier_token1] = ACTIONS(2450), - [aux_sym_cmd_identifier_token2] = ACTIONS(2450), - [aux_sym_cmd_identifier_token3] = ACTIONS(2450), - [aux_sym_cmd_identifier_token4] = ACTIONS(2450), - [aux_sym_cmd_identifier_token5] = ACTIONS(2450), - [aux_sym_cmd_identifier_token6] = ACTIONS(2450), - [aux_sym_cmd_identifier_token7] = ACTIONS(2450), - [aux_sym_cmd_identifier_token8] = ACTIONS(2450), - [aux_sym_cmd_identifier_token9] = ACTIONS(2450), - [aux_sym_cmd_identifier_token10] = ACTIONS(2450), - [aux_sym_cmd_identifier_token11] = ACTIONS(2450), - [aux_sym_cmd_identifier_token12] = ACTIONS(2450), - [aux_sym_cmd_identifier_token13] = ACTIONS(2450), - [aux_sym_cmd_identifier_token14] = ACTIONS(2450), - [aux_sym_cmd_identifier_token15] = ACTIONS(2450), - [aux_sym_cmd_identifier_token16] = ACTIONS(2450), - [aux_sym_cmd_identifier_token17] = ACTIONS(2450), - [aux_sym_cmd_identifier_token18] = ACTIONS(2450), - [aux_sym_cmd_identifier_token19] = ACTIONS(2450), - [aux_sym_cmd_identifier_token20] = ACTIONS(2450), - [aux_sym_cmd_identifier_token21] = ACTIONS(2450), - [aux_sym_cmd_identifier_token22] = ACTIONS(2450), - [aux_sym_cmd_identifier_token23] = ACTIONS(2450), - [aux_sym_cmd_identifier_token24] = ACTIONS(2450), - [aux_sym_cmd_identifier_token25] = ACTIONS(2450), - [aux_sym_cmd_identifier_token26] = ACTIONS(2450), - [aux_sym_cmd_identifier_token27] = ACTIONS(2450), - [aux_sym_cmd_identifier_token28] = ACTIONS(2450), - [aux_sym_cmd_identifier_token29] = ACTIONS(2450), - [aux_sym_cmd_identifier_token30] = ACTIONS(2450), - [aux_sym_cmd_identifier_token31] = ACTIONS(2450), - [aux_sym_cmd_identifier_token32] = ACTIONS(2450), - [aux_sym_cmd_identifier_token33] = ACTIONS(2450), - [aux_sym_cmd_identifier_token34] = ACTIONS(2450), - [aux_sym_cmd_identifier_token35] = ACTIONS(2450), - [aux_sym_cmd_identifier_token36] = ACTIONS(2450), - [anon_sym_true] = ACTIONS(2452), - [anon_sym_false] = ACTIONS(2452), - [anon_sym_null] = ACTIONS(2452), - [aux_sym_cmd_identifier_token38] = ACTIONS(2450), - [aux_sym_cmd_identifier_token39] = ACTIONS(2452), - [aux_sym_cmd_identifier_token40] = ACTIONS(2452), - [anon_sym_def] = ACTIONS(2450), - [anon_sym_export_DASHenv] = ACTIONS(2450), - [anon_sym_extern] = ACTIONS(2450), - [anon_sym_module] = ACTIONS(2450), - [anon_sym_use] = ACTIONS(2450), - [anon_sym_LPAREN] = ACTIONS(2452), - [anon_sym_DOLLAR] = ACTIONS(2452), - [anon_sym_error] = ACTIONS(2450), - [anon_sym_list] = ACTIONS(2450), - [anon_sym_DASH] = ACTIONS(2450), - [anon_sym_break] = ACTIONS(2450), - [anon_sym_continue] = ACTIONS(2450), - [anon_sym_for] = ACTIONS(2450), - [anon_sym_in] = ACTIONS(2450), - [anon_sym_loop] = ACTIONS(2450), - [anon_sym_make] = ACTIONS(2450), - [anon_sym_while] = ACTIONS(2450), - [anon_sym_do] = ACTIONS(2450), - [anon_sym_if] = ACTIONS(2450), - [anon_sym_else] = ACTIONS(2450), - [anon_sym_match] = ACTIONS(2450), - [anon_sym_RBRACE] = ACTIONS(2452), - [anon_sym_try] = ACTIONS(2450), - [anon_sym_catch] = ACTIONS(2450), - [anon_sym_return] = ACTIONS(2450), - [anon_sym_source] = ACTIONS(2450), - [anon_sym_source_DASHenv] = ACTIONS(2450), - [anon_sym_register] = ACTIONS(2450), - [anon_sym_hide] = ACTIONS(2450), - [anon_sym_hide_DASHenv] = ACTIONS(2450), - [anon_sym_overlay] = ACTIONS(2450), - [anon_sym_new] = ACTIONS(2450), - [anon_sym_as] = ACTIONS(2450), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2452), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2452), - [aux_sym__val_number_decimal_token1] = ACTIONS(2450), - [aux_sym__val_number_decimal_token2] = ACTIONS(2452), - [aux_sym__val_number_decimal_token3] = ACTIONS(2452), - [aux_sym__val_number_decimal_token4] = ACTIONS(2452), - [aux_sym__val_number_token1] = ACTIONS(2452), - [aux_sym__val_number_token2] = ACTIONS(2452), - [aux_sym__val_number_token3] = ACTIONS(2452), - [anon_sym_DQUOTE] = ACTIONS(2452), - [sym__str_single_quotes] = ACTIONS(2452), - [sym__str_back_ticks] = ACTIONS(2452), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2452), - [anon_sym_PLUS] = ACTIONS(2450), - [anon_sym_POUND] = ACTIONS(247), + [648] = { + [sym_comment] = STATE(648), + [anon_sym_export] = ACTIONS(2414), + [anon_sym_alias] = ACTIONS(2414), + [anon_sym_let] = ACTIONS(2414), + [anon_sym_let_DASHenv] = ACTIONS(2414), + [anon_sym_mut] = ACTIONS(2414), + [anon_sym_const] = ACTIONS(2414), + [aux_sym_cmd_identifier_token1] = ACTIONS(2414), + [aux_sym_cmd_identifier_token2] = ACTIONS(2414), + [aux_sym_cmd_identifier_token3] = ACTIONS(2414), + [aux_sym_cmd_identifier_token4] = ACTIONS(2414), + [aux_sym_cmd_identifier_token5] = ACTIONS(2414), + [aux_sym_cmd_identifier_token6] = ACTIONS(2414), + [aux_sym_cmd_identifier_token7] = ACTIONS(2414), + [aux_sym_cmd_identifier_token8] = ACTIONS(2414), + [aux_sym_cmd_identifier_token9] = ACTIONS(2414), + [aux_sym_cmd_identifier_token10] = ACTIONS(2414), + [aux_sym_cmd_identifier_token11] = ACTIONS(2414), + [aux_sym_cmd_identifier_token12] = ACTIONS(2414), + [aux_sym_cmd_identifier_token13] = ACTIONS(2414), + [aux_sym_cmd_identifier_token14] = ACTIONS(2414), + [aux_sym_cmd_identifier_token15] = ACTIONS(2414), + [aux_sym_cmd_identifier_token16] = ACTIONS(2414), + [aux_sym_cmd_identifier_token17] = ACTIONS(2414), + [aux_sym_cmd_identifier_token18] = ACTIONS(2414), + [aux_sym_cmd_identifier_token19] = ACTIONS(2414), + [aux_sym_cmd_identifier_token20] = ACTIONS(2414), + [aux_sym_cmd_identifier_token21] = ACTIONS(2414), + [aux_sym_cmd_identifier_token22] = ACTIONS(2414), + [aux_sym_cmd_identifier_token23] = ACTIONS(2414), + [aux_sym_cmd_identifier_token24] = ACTIONS(2414), + [aux_sym_cmd_identifier_token25] = ACTIONS(2414), + [aux_sym_cmd_identifier_token26] = ACTIONS(2414), + [aux_sym_cmd_identifier_token27] = ACTIONS(2414), + [aux_sym_cmd_identifier_token28] = ACTIONS(2414), + [aux_sym_cmd_identifier_token29] = ACTIONS(2414), + [aux_sym_cmd_identifier_token30] = ACTIONS(2414), + [aux_sym_cmd_identifier_token31] = ACTIONS(2414), + [aux_sym_cmd_identifier_token32] = ACTIONS(2414), + [aux_sym_cmd_identifier_token33] = ACTIONS(2414), + [aux_sym_cmd_identifier_token34] = ACTIONS(2414), + [aux_sym_cmd_identifier_token35] = ACTIONS(2414), + [aux_sym_cmd_identifier_token36] = ACTIONS(2414), + [anon_sym_true] = ACTIONS(2416), + [anon_sym_false] = ACTIONS(2416), + [anon_sym_null] = ACTIONS(2416), + [aux_sym_cmd_identifier_token38] = ACTIONS(2414), + [aux_sym_cmd_identifier_token39] = ACTIONS(2416), + [aux_sym_cmd_identifier_token40] = ACTIONS(2416), + [anon_sym_def] = ACTIONS(2414), + [anon_sym_export_DASHenv] = ACTIONS(2414), + [anon_sym_extern] = ACTIONS(2414), + [anon_sym_module] = ACTIONS(2414), + [anon_sym_use] = ACTIONS(2414), + [anon_sym_LPAREN] = ACTIONS(2416), + [anon_sym_DOLLAR] = ACTIONS(2416), + [anon_sym_error] = ACTIONS(2414), + [anon_sym_list] = ACTIONS(2414), + [anon_sym_DASH] = ACTIONS(2414), + [anon_sym_break] = ACTIONS(2414), + [anon_sym_continue] = ACTIONS(2414), + [anon_sym_for] = ACTIONS(2414), + [anon_sym_in] = ACTIONS(2414), + [anon_sym_loop] = ACTIONS(2414), + [anon_sym_make] = ACTIONS(2414), + [anon_sym_while] = ACTIONS(2414), + [anon_sym_do] = ACTIONS(2414), + [anon_sym_if] = ACTIONS(2414), + [anon_sym_else] = ACTIONS(2414), + [anon_sym_match] = ACTIONS(2414), + [anon_sym_RBRACE] = ACTIONS(2416), + [anon_sym_try] = ACTIONS(2414), + [anon_sym_catch] = ACTIONS(2414), + [anon_sym_return] = ACTIONS(2414), + [anon_sym_source] = ACTIONS(2414), + [anon_sym_source_DASHenv] = ACTIONS(2414), + [anon_sym_register] = ACTIONS(2414), + [anon_sym_hide] = ACTIONS(2414), + [anon_sym_hide_DASHenv] = ACTIONS(2414), + [anon_sym_overlay] = ACTIONS(2414), + [anon_sym_new] = ACTIONS(2414), + [anon_sym_as] = ACTIONS(2414), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2416), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2416), + [aux_sym__val_number_decimal_token1] = ACTIONS(2414), + [aux_sym__val_number_decimal_token2] = ACTIONS(2416), + [aux_sym__val_number_decimal_token3] = ACTIONS(2416), + [aux_sym__val_number_decimal_token4] = ACTIONS(2416), + [aux_sym__val_number_token1] = ACTIONS(2416), + [aux_sym__val_number_token2] = ACTIONS(2416), + [aux_sym__val_number_token3] = ACTIONS(2416), + [anon_sym_DQUOTE] = ACTIONS(2416), + [sym__str_single_quotes] = ACTIONS(2416), + [sym__str_back_ticks] = ACTIONS(2416), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2416), + [anon_sym_PLUS] = ACTIONS(2414), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2416), }, - [695] = { - [sym_comment] = STATE(695), + [649] = { + [sym_comment] = STATE(649), + [anon_sym_export] = ACTIONS(2482), + [anon_sym_alias] = ACTIONS(2482), + [anon_sym_let] = ACTIONS(2482), + [anon_sym_let_DASHenv] = ACTIONS(2482), + [anon_sym_mut] = ACTIONS(2482), + [anon_sym_const] = ACTIONS(2482), + [aux_sym_cmd_identifier_token1] = ACTIONS(2482), + [aux_sym_cmd_identifier_token2] = ACTIONS(2482), + [aux_sym_cmd_identifier_token3] = ACTIONS(2482), + [aux_sym_cmd_identifier_token4] = ACTIONS(2482), + [aux_sym_cmd_identifier_token5] = ACTIONS(2482), + [aux_sym_cmd_identifier_token6] = ACTIONS(2482), + [aux_sym_cmd_identifier_token7] = ACTIONS(2482), + [aux_sym_cmd_identifier_token8] = ACTIONS(2482), + [aux_sym_cmd_identifier_token9] = ACTIONS(2482), + [aux_sym_cmd_identifier_token10] = ACTIONS(2482), + [aux_sym_cmd_identifier_token11] = ACTIONS(2482), + [aux_sym_cmd_identifier_token12] = ACTIONS(2482), + [aux_sym_cmd_identifier_token13] = ACTIONS(2482), + [aux_sym_cmd_identifier_token14] = ACTIONS(2482), + [aux_sym_cmd_identifier_token15] = ACTIONS(2482), + [aux_sym_cmd_identifier_token16] = ACTIONS(2482), + [aux_sym_cmd_identifier_token17] = ACTIONS(2482), + [aux_sym_cmd_identifier_token18] = ACTIONS(2482), + [aux_sym_cmd_identifier_token19] = ACTIONS(2482), + [aux_sym_cmd_identifier_token20] = ACTIONS(2482), + [aux_sym_cmd_identifier_token21] = ACTIONS(2482), + [aux_sym_cmd_identifier_token22] = ACTIONS(2482), + [aux_sym_cmd_identifier_token23] = ACTIONS(2482), + [aux_sym_cmd_identifier_token24] = ACTIONS(2482), + [aux_sym_cmd_identifier_token25] = ACTIONS(2482), + [aux_sym_cmd_identifier_token26] = ACTIONS(2482), + [aux_sym_cmd_identifier_token27] = ACTIONS(2482), + [aux_sym_cmd_identifier_token28] = ACTIONS(2482), + [aux_sym_cmd_identifier_token29] = ACTIONS(2482), + [aux_sym_cmd_identifier_token30] = ACTIONS(2482), + [aux_sym_cmd_identifier_token31] = ACTIONS(2482), + [aux_sym_cmd_identifier_token32] = ACTIONS(2482), + [aux_sym_cmd_identifier_token33] = ACTIONS(2482), + [aux_sym_cmd_identifier_token34] = ACTIONS(2482), + [aux_sym_cmd_identifier_token35] = ACTIONS(2482), + [aux_sym_cmd_identifier_token36] = ACTIONS(2482), + [anon_sym_true] = ACTIONS(2484), + [anon_sym_false] = ACTIONS(2484), + [anon_sym_null] = ACTIONS(2484), + [aux_sym_cmd_identifier_token38] = ACTIONS(2482), + [aux_sym_cmd_identifier_token39] = ACTIONS(2484), + [aux_sym_cmd_identifier_token40] = ACTIONS(2484), + [anon_sym_def] = ACTIONS(2482), + [anon_sym_export_DASHenv] = ACTIONS(2482), + [anon_sym_extern] = ACTIONS(2482), + [anon_sym_module] = ACTIONS(2482), + [anon_sym_use] = ACTIONS(2482), + [anon_sym_LPAREN] = ACTIONS(2484), + [anon_sym_DOLLAR] = ACTIONS(2484), + [anon_sym_error] = ACTIONS(2482), + [anon_sym_list] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_break] = ACTIONS(2482), + [anon_sym_continue] = ACTIONS(2482), + [anon_sym_for] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_loop] = ACTIONS(2482), + [anon_sym_make] = ACTIONS(2482), + [anon_sym_while] = ACTIONS(2482), + [anon_sym_do] = ACTIONS(2482), + [anon_sym_if] = ACTIONS(2482), + [anon_sym_else] = ACTIONS(2482), + [anon_sym_match] = ACTIONS(2482), + [anon_sym_RBRACE] = ACTIONS(2484), + [anon_sym_try] = ACTIONS(2482), + [anon_sym_catch] = ACTIONS(2482), + [anon_sym_return] = ACTIONS(2482), + [anon_sym_source] = ACTIONS(2482), + [anon_sym_source_DASHenv] = ACTIONS(2482), + [anon_sym_register] = ACTIONS(2482), + [anon_sym_hide] = ACTIONS(2482), + [anon_sym_hide_DASHenv] = ACTIONS(2482), + [anon_sym_overlay] = ACTIONS(2482), + [anon_sym_new] = ACTIONS(2482), + [anon_sym_as] = ACTIONS(2482), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2484), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2484), + [aux_sym__val_number_decimal_token1] = ACTIONS(2482), + [aux_sym__val_number_decimal_token2] = ACTIONS(2484), + [aux_sym__val_number_decimal_token3] = ACTIONS(2484), + [aux_sym__val_number_decimal_token4] = ACTIONS(2484), + [aux_sym__val_number_token1] = ACTIONS(2484), + [aux_sym__val_number_token2] = ACTIONS(2484), + [aux_sym__val_number_token3] = ACTIONS(2484), + [anon_sym_DQUOTE] = ACTIONS(2484), + [sym__str_single_quotes] = ACTIONS(2484), + [sym__str_back_ticks] = ACTIONS(2484), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2484), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2484), + }, + [650] = { + [sym_comment] = STATE(650), + [anon_sym_export] = ACTIONS(2524), + [anon_sym_alias] = ACTIONS(2524), + [anon_sym_let] = ACTIONS(2524), + [anon_sym_let_DASHenv] = ACTIONS(2524), + [anon_sym_mut] = ACTIONS(2524), + [anon_sym_const] = ACTIONS(2524), + [aux_sym_cmd_identifier_token1] = ACTIONS(2524), + [aux_sym_cmd_identifier_token2] = ACTIONS(2524), + [aux_sym_cmd_identifier_token3] = ACTIONS(2524), + [aux_sym_cmd_identifier_token4] = ACTIONS(2524), + [aux_sym_cmd_identifier_token5] = ACTIONS(2524), + [aux_sym_cmd_identifier_token6] = ACTIONS(2524), + [aux_sym_cmd_identifier_token7] = ACTIONS(2524), + [aux_sym_cmd_identifier_token8] = ACTIONS(2524), + [aux_sym_cmd_identifier_token9] = ACTIONS(2524), + [aux_sym_cmd_identifier_token10] = ACTIONS(2524), + [aux_sym_cmd_identifier_token11] = ACTIONS(2524), + [aux_sym_cmd_identifier_token12] = ACTIONS(2524), + [aux_sym_cmd_identifier_token13] = ACTIONS(2524), + [aux_sym_cmd_identifier_token14] = ACTIONS(2524), + [aux_sym_cmd_identifier_token15] = ACTIONS(2524), + [aux_sym_cmd_identifier_token16] = ACTIONS(2524), + [aux_sym_cmd_identifier_token17] = ACTIONS(2524), + [aux_sym_cmd_identifier_token18] = ACTIONS(2524), + [aux_sym_cmd_identifier_token19] = ACTIONS(2524), + [aux_sym_cmd_identifier_token20] = ACTIONS(2524), + [aux_sym_cmd_identifier_token21] = ACTIONS(2524), + [aux_sym_cmd_identifier_token22] = ACTIONS(2524), + [aux_sym_cmd_identifier_token23] = ACTIONS(2524), + [aux_sym_cmd_identifier_token24] = ACTIONS(2524), + [aux_sym_cmd_identifier_token25] = ACTIONS(2524), + [aux_sym_cmd_identifier_token26] = ACTIONS(2524), + [aux_sym_cmd_identifier_token27] = ACTIONS(2524), + [aux_sym_cmd_identifier_token28] = ACTIONS(2524), + [aux_sym_cmd_identifier_token29] = ACTIONS(2524), + [aux_sym_cmd_identifier_token30] = ACTIONS(2524), + [aux_sym_cmd_identifier_token31] = ACTIONS(2524), + [aux_sym_cmd_identifier_token32] = ACTIONS(2524), + [aux_sym_cmd_identifier_token33] = ACTIONS(2524), + [aux_sym_cmd_identifier_token34] = ACTIONS(2524), + [aux_sym_cmd_identifier_token35] = ACTIONS(2524), + [aux_sym_cmd_identifier_token36] = ACTIONS(2524), + [anon_sym_true] = ACTIONS(2526), + [anon_sym_false] = ACTIONS(2526), + [anon_sym_null] = ACTIONS(2526), + [aux_sym_cmd_identifier_token38] = ACTIONS(2524), + [aux_sym_cmd_identifier_token39] = ACTIONS(2526), + [aux_sym_cmd_identifier_token40] = ACTIONS(2526), + [anon_sym_def] = ACTIONS(2524), + [anon_sym_export_DASHenv] = ACTIONS(2524), + [anon_sym_extern] = ACTIONS(2524), + [anon_sym_module] = ACTIONS(2524), + [anon_sym_use] = ACTIONS(2524), + [anon_sym_LPAREN] = ACTIONS(2526), + [anon_sym_DOLLAR] = ACTIONS(2526), + [anon_sym_error] = ACTIONS(2524), + [anon_sym_list] = ACTIONS(2524), + [anon_sym_DASH] = ACTIONS(2524), + [anon_sym_break] = ACTIONS(2524), + [anon_sym_continue] = ACTIONS(2524), + [anon_sym_for] = ACTIONS(2524), + [anon_sym_in] = ACTIONS(2524), + [anon_sym_loop] = ACTIONS(2524), + [anon_sym_make] = ACTIONS(2524), + [anon_sym_while] = ACTIONS(2524), + [anon_sym_do] = ACTIONS(2524), + [anon_sym_if] = ACTIONS(2524), + [anon_sym_else] = ACTIONS(2524), + [anon_sym_match] = ACTIONS(2524), + [anon_sym_RBRACE] = ACTIONS(2526), + [anon_sym_try] = ACTIONS(2524), + [anon_sym_catch] = ACTIONS(2524), + [anon_sym_return] = ACTIONS(2524), + [anon_sym_source] = ACTIONS(2524), + [anon_sym_source_DASHenv] = ACTIONS(2524), + [anon_sym_register] = ACTIONS(2524), + [anon_sym_hide] = ACTIONS(2524), + [anon_sym_hide_DASHenv] = ACTIONS(2524), + [anon_sym_overlay] = ACTIONS(2524), + [anon_sym_new] = ACTIONS(2524), + [anon_sym_as] = ACTIONS(2524), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2526), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2526), + [aux_sym__val_number_decimal_token1] = ACTIONS(2524), + [aux_sym__val_number_decimal_token2] = ACTIONS(2526), + [aux_sym__val_number_decimal_token3] = ACTIONS(2526), + [aux_sym__val_number_decimal_token4] = ACTIONS(2526), + [aux_sym__val_number_token1] = ACTIONS(2526), + [aux_sym__val_number_token2] = ACTIONS(2526), + [aux_sym__val_number_token3] = ACTIONS(2526), + [anon_sym_DQUOTE] = ACTIONS(2526), + [sym__str_single_quotes] = ACTIONS(2526), + [sym__str_back_ticks] = ACTIONS(2526), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2526), + [anon_sym_PLUS] = ACTIONS(2524), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2526), + }, + [651] = { + [sym_comment] = STATE(651), + [anon_sym_export] = ACTIONS(1090), + [anon_sym_alias] = ACTIONS(1090), + [anon_sym_let] = ACTIONS(1090), + [anon_sym_let_DASHenv] = ACTIONS(1090), + [anon_sym_mut] = ACTIONS(1090), + [anon_sym_const] = ACTIONS(1090), + [aux_sym_cmd_identifier_token1] = ACTIONS(1090), + [aux_sym_cmd_identifier_token2] = ACTIONS(1090), + [aux_sym_cmd_identifier_token3] = ACTIONS(1090), + [aux_sym_cmd_identifier_token4] = ACTIONS(1090), + [aux_sym_cmd_identifier_token5] = ACTIONS(1090), + [aux_sym_cmd_identifier_token6] = ACTIONS(1090), + [aux_sym_cmd_identifier_token7] = ACTIONS(1090), + [aux_sym_cmd_identifier_token8] = ACTIONS(1090), + [aux_sym_cmd_identifier_token9] = ACTIONS(1090), + [aux_sym_cmd_identifier_token10] = ACTIONS(1090), + [aux_sym_cmd_identifier_token11] = ACTIONS(1090), + [aux_sym_cmd_identifier_token12] = ACTIONS(1090), + [aux_sym_cmd_identifier_token13] = ACTIONS(1090), + [aux_sym_cmd_identifier_token14] = ACTIONS(1090), + [aux_sym_cmd_identifier_token15] = ACTIONS(1090), + [aux_sym_cmd_identifier_token16] = ACTIONS(1090), + [aux_sym_cmd_identifier_token17] = ACTIONS(1090), + [aux_sym_cmd_identifier_token18] = ACTIONS(1090), + [aux_sym_cmd_identifier_token19] = ACTIONS(1090), + [aux_sym_cmd_identifier_token20] = ACTIONS(1090), + [aux_sym_cmd_identifier_token21] = ACTIONS(1090), + [aux_sym_cmd_identifier_token22] = ACTIONS(1090), + [aux_sym_cmd_identifier_token23] = ACTIONS(1090), + [aux_sym_cmd_identifier_token24] = ACTIONS(1090), + [aux_sym_cmd_identifier_token25] = ACTIONS(1090), + [aux_sym_cmd_identifier_token26] = ACTIONS(1090), + [aux_sym_cmd_identifier_token27] = ACTIONS(1090), + [aux_sym_cmd_identifier_token28] = ACTIONS(1090), + [aux_sym_cmd_identifier_token29] = ACTIONS(1090), + [aux_sym_cmd_identifier_token30] = ACTIONS(1090), + [aux_sym_cmd_identifier_token31] = ACTIONS(1090), + [aux_sym_cmd_identifier_token32] = ACTIONS(1090), + [aux_sym_cmd_identifier_token33] = ACTIONS(1090), + [aux_sym_cmd_identifier_token34] = ACTIONS(1090), + [aux_sym_cmd_identifier_token35] = ACTIONS(1090), + [aux_sym_cmd_identifier_token36] = ACTIONS(1090), + [anon_sym_true] = ACTIONS(1092), + [anon_sym_false] = ACTIONS(1092), + [anon_sym_null] = ACTIONS(1092), + [aux_sym_cmd_identifier_token38] = ACTIONS(1090), + [aux_sym_cmd_identifier_token39] = ACTIONS(1092), + [aux_sym_cmd_identifier_token40] = ACTIONS(1092), + [anon_sym_def] = ACTIONS(1090), + [anon_sym_export_DASHenv] = ACTIONS(1090), + [anon_sym_extern] = ACTIONS(1090), + [anon_sym_module] = ACTIONS(1090), + [anon_sym_use] = ACTIONS(1090), + [anon_sym_LPAREN] = ACTIONS(1092), + [anon_sym_DOLLAR] = ACTIONS(1092), + [anon_sym_error] = ACTIONS(1090), + [anon_sym_list] = ACTIONS(1090), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_break] = ACTIONS(1090), + [anon_sym_continue] = ACTIONS(1090), + [anon_sym_for] = ACTIONS(1090), + [anon_sym_in] = ACTIONS(1090), + [anon_sym_loop] = ACTIONS(1090), + [anon_sym_make] = ACTIONS(1090), + [anon_sym_while] = ACTIONS(1090), + [anon_sym_do] = ACTIONS(1090), + [anon_sym_if] = ACTIONS(1090), + [anon_sym_else] = ACTIONS(1090), + [anon_sym_match] = ACTIONS(1090), + [anon_sym_RBRACE] = ACTIONS(1092), + [anon_sym_try] = ACTIONS(1090), + [anon_sym_catch] = ACTIONS(1090), + [anon_sym_return] = ACTIONS(1090), + [anon_sym_source] = ACTIONS(1090), + [anon_sym_source_DASHenv] = ACTIONS(1090), + [anon_sym_register] = ACTIONS(1090), + [anon_sym_hide] = ACTIONS(1090), + [anon_sym_hide_DASHenv] = ACTIONS(1090), + [anon_sym_overlay] = ACTIONS(1090), + [anon_sym_new] = ACTIONS(1090), + [anon_sym_as] = ACTIONS(1090), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1092), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1092), + [aux_sym__val_number_decimal_token1] = ACTIONS(1090), + [aux_sym__val_number_decimal_token2] = ACTIONS(1092), + [aux_sym__val_number_decimal_token3] = ACTIONS(1092), + [aux_sym__val_number_decimal_token4] = ACTIONS(1092), + [aux_sym__val_number_token1] = ACTIONS(1092), + [aux_sym__val_number_token2] = ACTIONS(1092), + [aux_sym__val_number_token3] = ACTIONS(1092), + [anon_sym_DQUOTE] = ACTIONS(1092), + [sym__str_single_quotes] = ACTIONS(1092), + [sym__str_back_ticks] = ACTIONS(1092), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1092), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1092), + }, + [652] = { + [sym_comment] = STATE(652), + [anon_sym_export] = ACTIONS(1897), + [anon_sym_alias] = ACTIONS(1897), + [anon_sym_let] = ACTIONS(1897), + [anon_sym_let_DASHenv] = ACTIONS(1897), + [anon_sym_mut] = ACTIONS(1897), + [anon_sym_const] = ACTIONS(1897), + [aux_sym_cmd_identifier_token1] = ACTIONS(1897), + [aux_sym_cmd_identifier_token2] = ACTIONS(1897), + [aux_sym_cmd_identifier_token3] = ACTIONS(1897), + [aux_sym_cmd_identifier_token4] = ACTIONS(1897), + [aux_sym_cmd_identifier_token5] = ACTIONS(1897), + [aux_sym_cmd_identifier_token6] = ACTIONS(1897), + [aux_sym_cmd_identifier_token7] = ACTIONS(1897), + [aux_sym_cmd_identifier_token8] = ACTIONS(1897), + [aux_sym_cmd_identifier_token9] = ACTIONS(1897), + [aux_sym_cmd_identifier_token10] = ACTIONS(1897), + [aux_sym_cmd_identifier_token11] = ACTIONS(1897), + [aux_sym_cmd_identifier_token12] = ACTIONS(1897), + [aux_sym_cmd_identifier_token13] = ACTIONS(1897), + [aux_sym_cmd_identifier_token14] = ACTIONS(1897), + [aux_sym_cmd_identifier_token15] = ACTIONS(1897), + [aux_sym_cmd_identifier_token16] = ACTIONS(1897), + [aux_sym_cmd_identifier_token17] = ACTIONS(1897), + [aux_sym_cmd_identifier_token18] = ACTIONS(1897), + [aux_sym_cmd_identifier_token19] = ACTIONS(1897), + [aux_sym_cmd_identifier_token20] = ACTIONS(1897), + [aux_sym_cmd_identifier_token21] = ACTIONS(1897), + [aux_sym_cmd_identifier_token22] = ACTIONS(1897), + [aux_sym_cmd_identifier_token23] = ACTIONS(1897), + [aux_sym_cmd_identifier_token24] = ACTIONS(1897), + [aux_sym_cmd_identifier_token25] = ACTIONS(1897), + [aux_sym_cmd_identifier_token26] = ACTIONS(1897), + [aux_sym_cmd_identifier_token27] = ACTIONS(1897), + [aux_sym_cmd_identifier_token28] = ACTIONS(1897), + [aux_sym_cmd_identifier_token29] = ACTIONS(1897), + [aux_sym_cmd_identifier_token30] = ACTIONS(1897), + [aux_sym_cmd_identifier_token31] = ACTIONS(1897), + [aux_sym_cmd_identifier_token32] = ACTIONS(1897), + [aux_sym_cmd_identifier_token33] = ACTIONS(1897), + [aux_sym_cmd_identifier_token34] = ACTIONS(1897), + [aux_sym_cmd_identifier_token35] = ACTIONS(1897), + [aux_sym_cmd_identifier_token36] = ACTIONS(1897), + [anon_sym_true] = ACTIONS(1899), + [anon_sym_false] = ACTIONS(1899), + [anon_sym_null] = ACTIONS(1899), + [aux_sym_cmd_identifier_token38] = ACTIONS(1897), + [aux_sym_cmd_identifier_token39] = ACTIONS(1899), + [aux_sym_cmd_identifier_token40] = ACTIONS(1899), + [anon_sym_def] = ACTIONS(1897), + [anon_sym_export_DASHenv] = ACTIONS(1897), + [anon_sym_extern] = ACTIONS(1897), + [anon_sym_module] = ACTIONS(1897), + [anon_sym_use] = ACTIONS(1897), + [anon_sym_LPAREN] = ACTIONS(1899), + [anon_sym_DOLLAR] = ACTIONS(1899), + [anon_sym_error] = ACTIONS(1897), + [anon_sym_list] = ACTIONS(1897), + [anon_sym_DASH] = ACTIONS(1897), + [anon_sym_break] = ACTIONS(1897), + [anon_sym_continue] = ACTIONS(1897), + [anon_sym_for] = ACTIONS(1897), + [anon_sym_in] = ACTIONS(1897), + [anon_sym_loop] = ACTIONS(1897), + [anon_sym_make] = ACTIONS(1897), + [anon_sym_while] = ACTIONS(1897), + [anon_sym_do] = ACTIONS(1897), + [anon_sym_if] = ACTIONS(1897), + [anon_sym_else] = ACTIONS(1897), + [anon_sym_match] = ACTIONS(1897), + [anon_sym_RBRACE] = ACTIONS(1899), + [anon_sym_try] = ACTIONS(1897), + [anon_sym_catch] = ACTIONS(1897), + [anon_sym_return] = ACTIONS(1897), + [anon_sym_source] = ACTIONS(1897), + [anon_sym_source_DASHenv] = ACTIONS(1897), + [anon_sym_register] = ACTIONS(1897), + [anon_sym_hide] = ACTIONS(1897), + [anon_sym_hide_DASHenv] = ACTIONS(1897), + [anon_sym_overlay] = ACTIONS(1897), + [anon_sym_new] = ACTIONS(1897), + [anon_sym_as] = ACTIONS(1897), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1899), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1899), + [aux_sym__val_number_decimal_token1] = ACTIONS(1897), + [aux_sym__val_number_decimal_token2] = ACTIONS(1899), + [aux_sym__val_number_decimal_token3] = ACTIONS(1899), + [aux_sym__val_number_decimal_token4] = ACTIONS(1899), + [aux_sym__val_number_token1] = ACTIONS(1899), + [aux_sym__val_number_token2] = ACTIONS(1899), + [aux_sym__val_number_token3] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1899), + [sym__str_single_quotes] = ACTIONS(1899), + [sym__str_back_ticks] = ACTIONS(1899), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1899), + [anon_sym_PLUS] = ACTIONS(1897), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1899), + }, + [653] = { + [sym_comment] = STATE(653), + [anon_sym_export] = ACTIONS(2547), + [anon_sym_alias] = ACTIONS(2547), + [anon_sym_let] = ACTIONS(2547), + [anon_sym_let_DASHenv] = ACTIONS(2547), + [anon_sym_mut] = ACTIONS(2547), + [anon_sym_const] = ACTIONS(2547), + [aux_sym_cmd_identifier_token1] = ACTIONS(2547), + [aux_sym_cmd_identifier_token2] = ACTIONS(2547), + [aux_sym_cmd_identifier_token3] = ACTIONS(2547), + [aux_sym_cmd_identifier_token4] = ACTIONS(2547), + [aux_sym_cmd_identifier_token5] = ACTIONS(2547), + [aux_sym_cmd_identifier_token6] = ACTIONS(2547), + [aux_sym_cmd_identifier_token7] = ACTIONS(2547), + [aux_sym_cmd_identifier_token8] = ACTIONS(2547), + [aux_sym_cmd_identifier_token9] = ACTIONS(2547), + [aux_sym_cmd_identifier_token10] = ACTIONS(2547), + [aux_sym_cmd_identifier_token11] = ACTIONS(2547), + [aux_sym_cmd_identifier_token12] = ACTIONS(2547), + [aux_sym_cmd_identifier_token13] = ACTIONS(2547), + [aux_sym_cmd_identifier_token14] = ACTIONS(2547), + [aux_sym_cmd_identifier_token15] = ACTIONS(2547), + [aux_sym_cmd_identifier_token16] = ACTIONS(2547), + [aux_sym_cmd_identifier_token17] = ACTIONS(2547), + [aux_sym_cmd_identifier_token18] = ACTIONS(2547), + [aux_sym_cmd_identifier_token19] = ACTIONS(2547), + [aux_sym_cmd_identifier_token20] = ACTIONS(2547), + [aux_sym_cmd_identifier_token21] = ACTIONS(2547), + [aux_sym_cmd_identifier_token22] = ACTIONS(2547), + [aux_sym_cmd_identifier_token23] = ACTIONS(2547), + [aux_sym_cmd_identifier_token24] = ACTIONS(2547), + [aux_sym_cmd_identifier_token25] = ACTIONS(2547), + [aux_sym_cmd_identifier_token26] = ACTIONS(2547), + [aux_sym_cmd_identifier_token27] = ACTIONS(2547), + [aux_sym_cmd_identifier_token28] = ACTIONS(2547), + [aux_sym_cmd_identifier_token29] = ACTIONS(2547), + [aux_sym_cmd_identifier_token30] = ACTIONS(2547), + [aux_sym_cmd_identifier_token31] = ACTIONS(2547), + [aux_sym_cmd_identifier_token32] = ACTIONS(2547), + [aux_sym_cmd_identifier_token33] = ACTIONS(2547), + [aux_sym_cmd_identifier_token34] = ACTIONS(2547), + [aux_sym_cmd_identifier_token35] = ACTIONS(2547), + [aux_sym_cmd_identifier_token36] = ACTIONS(2547), + [anon_sym_true] = ACTIONS(2549), + [anon_sym_false] = ACTIONS(2549), + [anon_sym_null] = ACTIONS(2549), + [aux_sym_cmd_identifier_token38] = ACTIONS(2547), + [aux_sym_cmd_identifier_token39] = ACTIONS(2549), + [aux_sym_cmd_identifier_token40] = ACTIONS(2549), + [anon_sym_def] = ACTIONS(2547), + [anon_sym_export_DASHenv] = ACTIONS(2547), + [anon_sym_extern] = ACTIONS(2547), + [anon_sym_module] = ACTIONS(2547), + [anon_sym_use] = ACTIONS(2547), + [anon_sym_LPAREN] = ACTIONS(2549), + [anon_sym_DOLLAR] = ACTIONS(2549), + [anon_sym_error] = ACTIONS(2547), + [anon_sym_list] = ACTIONS(2547), + [anon_sym_DASH] = ACTIONS(2547), + [anon_sym_break] = ACTIONS(2547), + [anon_sym_continue] = ACTIONS(2547), + [anon_sym_for] = ACTIONS(2547), + [anon_sym_in] = ACTIONS(2547), + [anon_sym_loop] = ACTIONS(2547), + [anon_sym_make] = ACTIONS(2547), + [anon_sym_while] = ACTIONS(2547), + [anon_sym_do] = ACTIONS(2547), + [anon_sym_if] = ACTIONS(2547), + [anon_sym_else] = ACTIONS(2547), + [anon_sym_match] = ACTIONS(2547), + [anon_sym_RBRACE] = ACTIONS(2549), + [anon_sym_try] = ACTIONS(2547), + [anon_sym_catch] = ACTIONS(2547), + [anon_sym_return] = ACTIONS(2547), + [anon_sym_source] = ACTIONS(2547), + [anon_sym_source_DASHenv] = ACTIONS(2547), + [anon_sym_register] = ACTIONS(2547), + [anon_sym_hide] = ACTIONS(2547), + [anon_sym_hide_DASHenv] = ACTIONS(2547), + [anon_sym_overlay] = ACTIONS(2547), + [anon_sym_new] = ACTIONS(2547), + [anon_sym_as] = ACTIONS(2547), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2549), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2549), + [aux_sym__val_number_decimal_token1] = ACTIONS(2547), + [aux_sym__val_number_decimal_token2] = ACTIONS(2549), + [aux_sym__val_number_decimal_token3] = ACTIONS(2549), + [aux_sym__val_number_decimal_token4] = ACTIONS(2549), + [aux_sym__val_number_token1] = ACTIONS(2549), + [aux_sym__val_number_token2] = ACTIONS(2549), + [aux_sym__val_number_token3] = ACTIONS(2549), + [anon_sym_DQUOTE] = ACTIONS(2549), + [sym__str_single_quotes] = ACTIONS(2549), + [sym__str_back_ticks] = ACTIONS(2549), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2549), + [anon_sym_PLUS] = ACTIONS(2547), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2549), + }, + [654] = { + [sym_comment] = STATE(654), + [anon_sym_export] = ACTIONS(2398), + [anon_sym_alias] = ACTIONS(2398), + [anon_sym_let] = ACTIONS(2398), + [anon_sym_let_DASHenv] = ACTIONS(2398), + [anon_sym_mut] = ACTIONS(2398), + [anon_sym_const] = ACTIONS(2398), + [aux_sym_cmd_identifier_token1] = ACTIONS(2398), + [aux_sym_cmd_identifier_token2] = ACTIONS(2398), + [aux_sym_cmd_identifier_token3] = ACTIONS(2398), + [aux_sym_cmd_identifier_token4] = ACTIONS(2398), + [aux_sym_cmd_identifier_token5] = ACTIONS(2398), + [aux_sym_cmd_identifier_token6] = ACTIONS(2398), + [aux_sym_cmd_identifier_token7] = ACTIONS(2398), + [aux_sym_cmd_identifier_token8] = ACTIONS(2398), + [aux_sym_cmd_identifier_token9] = ACTIONS(2398), + [aux_sym_cmd_identifier_token10] = ACTIONS(2398), + [aux_sym_cmd_identifier_token11] = ACTIONS(2398), + [aux_sym_cmd_identifier_token12] = ACTIONS(2398), + [aux_sym_cmd_identifier_token13] = ACTIONS(2398), + [aux_sym_cmd_identifier_token14] = ACTIONS(2398), + [aux_sym_cmd_identifier_token15] = ACTIONS(2398), + [aux_sym_cmd_identifier_token16] = ACTIONS(2398), + [aux_sym_cmd_identifier_token17] = ACTIONS(2398), + [aux_sym_cmd_identifier_token18] = ACTIONS(2398), + [aux_sym_cmd_identifier_token19] = ACTIONS(2398), + [aux_sym_cmd_identifier_token20] = ACTIONS(2398), + [aux_sym_cmd_identifier_token21] = ACTIONS(2398), + [aux_sym_cmd_identifier_token22] = ACTIONS(2398), + [aux_sym_cmd_identifier_token23] = ACTIONS(2398), + [aux_sym_cmd_identifier_token24] = ACTIONS(2398), + [aux_sym_cmd_identifier_token25] = ACTIONS(2398), + [aux_sym_cmd_identifier_token26] = ACTIONS(2398), + [aux_sym_cmd_identifier_token27] = ACTIONS(2398), + [aux_sym_cmd_identifier_token28] = ACTIONS(2398), + [aux_sym_cmd_identifier_token29] = ACTIONS(2398), + [aux_sym_cmd_identifier_token30] = ACTIONS(2398), + [aux_sym_cmd_identifier_token31] = ACTIONS(2398), + [aux_sym_cmd_identifier_token32] = ACTIONS(2398), + [aux_sym_cmd_identifier_token33] = ACTIONS(2398), + [aux_sym_cmd_identifier_token34] = ACTIONS(2398), + [aux_sym_cmd_identifier_token35] = ACTIONS(2398), + [aux_sym_cmd_identifier_token36] = ACTIONS(2398), + [anon_sym_true] = ACTIONS(2400), + [anon_sym_false] = ACTIONS(2400), + [anon_sym_null] = ACTIONS(2400), + [aux_sym_cmd_identifier_token38] = ACTIONS(2398), + [aux_sym_cmd_identifier_token39] = ACTIONS(2400), + [aux_sym_cmd_identifier_token40] = ACTIONS(2400), + [anon_sym_def] = ACTIONS(2398), + [anon_sym_export_DASHenv] = ACTIONS(2398), + [anon_sym_extern] = ACTIONS(2398), + [anon_sym_module] = ACTIONS(2398), + [anon_sym_use] = ACTIONS(2398), + [anon_sym_LPAREN] = ACTIONS(2400), + [anon_sym_DOLLAR] = ACTIONS(2400), + [anon_sym_error] = ACTIONS(2398), + [anon_sym_list] = ACTIONS(2398), + [anon_sym_DASH] = ACTIONS(2398), + [anon_sym_break] = ACTIONS(2398), + [anon_sym_continue] = ACTIONS(2398), + [anon_sym_for] = ACTIONS(2398), + [anon_sym_in] = ACTIONS(2398), + [anon_sym_loop] = ACTIONS(2398), + [anon_sym_make] = ACTIONS(2398), + [anon_sym_while] = ACTIONS(2398), + [anon_sym_do] = ACTIONS(2398), + [anon_sym_if] = ACTIONS(2398), + [anon_sym_else] = ACTIONS(2398), + [anon_sym_match] = ACTIONS(2398), + [anon_sym_RBRACE] = ACTIONS(2400), + [anon_sym_try] = ACTIONS(2398), + [anon_sym_catch] = ACTIONS(2398), + [anon_sym_return] = ACTIONS(2398), + [anon_sym_source] = ACTIONS(2398), + [anon_sym_source_DASHenv] = ACTIONS(2398), + [anon_sym_register] = ACTIONS(2398), + [anon_sym_hide] = ACTIONS(2398), + [anon_sym_hide_DASHenv] = ACTIONS(2398), + [anon_sym_overlay] = ACTIONS(2398), + [anon_sym_new] = ACTIONS(2398), + [anon_sym_as] = ACTIONS(2398), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2400), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2400), + [aux_sym__val_number_decimal_token1] = ACTIONS(2398), + [aux_sym__val_number_decimal_token2] = ACTIONS(2400), + [aux_sym__val_number_decimal_token3] = ACTIONS(2400), + [aux_sym__val_number_decimal_token4] = ACTIONS(2400), + [aux_sym__val_number_token1] = ACTIONS(2400), + [aux_sym__val_number_token2] = ACTIONS(2400), + [aux_sym__val_number_token3] = ACTIONS(2400), + [anon_sym_DQUOTE] = ACTIONS(2400), + [sym__str_single_quotes] = ACTIONS(2400), + [sym__str_back_ticks] = ACTIONS(2400), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2400), + [anon_sym_PLUS] = ACTIONS(2398), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2400), + }, + [655] = { + [sym_comment] = STATE(655), + [anon_sym_export] = ACTIONS(2406), + [anon_sym_alias] = ACTIONS(2406), + [anon_sym_let] = ACTIONS(2406), + [anon_sym_let_DASHenv] = ACTIONS(2406), + [anon_sym_mut] = ACTIONS(2406), + [anon_sym_const] = ACTIONS(2406), + [aux_sym_cmd_identifier_token1] = ACTIONS(2406), + [aux_sym_cmd_identifier_token2] = ACTIONS(2406), + [aux_sym_cmd_identifier_token3] = ACTIONS(2406), + [aux_sym_cmd_identifier_token4] = ACTIONS(2406), + [aux_sym_cmd_identifier_token5] = ACTIONS(2406), + [aux_sym_cmd_identifier_token6] = ACTIONS(2406), + [aux_sym_cmd_identifier_token7] = ACTIONS(2406), + [aux_sym_cmd_identifier_token8] = ACTIONS(2406), + [aux_sym_cmd_identifier_token9] = ACTIONS(2406), + [aux_sym_cmd_identifier_token10] = ACTIONS(2406), + [aux_sym_cmd_identifier_token11] = ACTIONS(2406), + [aux_sym_cmd_identifier_token12] = ACTIONS(2406), + [aux_sym_cmd_identifier_token13] = ACTIONS(2406), + [aux_sym_cmd_identifier_token14] = ACTIONS(2406), + [aux_sym_cmd_identifier_token15] = ACTIONS(2406), + [aux_sym_cmd_identifier_token16] = ACTIONS(2406), + [aux_sym_cmd_identifier_token17] = ACTIONS(2406), + [aux_sym_cmd_identifier_token18] = ACTIONS(2406), + [aux_sym_cmd_identifier_token19] = ACTIONS(2406), + [aux_sym_cmd_identifier_token20] = ACTIONS(2406), + [aux_sym_cmd_identifier_token21] = ACTIONS(2406), + [aux_sym_cmd_identifier_token22] = ACTIONS(2406), + [aux_sym_cmd_identifier_token23] = ACTIONS(2406), + [aux_sym_cmd_identifier_token24] = ACTIONS(2406), + [aux_sym_cmd_identifier_token25] = ACTIONS(2406), + [aux_sym_cmd_identifier_token26] = ACTIONS(2406), + [aux_sym_cmd_identifier_token27] = ACTIONS(2406), + [aux_sym_cmd_identifier_token28] = ACTIONS(2406), + [aux_sym_cmd_identifier_token29] = ACTIONS(2406), + [aux_sym_cmd_identifier_token30] = ACTIONS(2406), + [aux_sym_cmd_identifier_token31] = ACTIONS(2406), + [aux_sym_cmd_identifier_token32] = ACTIONS(2406), + [aux_sym_cmd_identifier_token33] = ACTIONS(2406), + [aux_sym_cmd_identifier_token34] = ACTIONS(2406), + [aux_sym_cmd_identifier_token35] = ACTIONS(2406), + [aux_sym_cmd_identifier_token36] = ACTIONS(2406), + [anon_sym_true] = ACTIONS(2408), + [anon_sym_false] = ACTIONS(2408), + [anon_sym_null] = ACTIONS(2408), + [aux_sym_cmd_identifier_token38] = ACTIONS(2406), + [aux_sym_cmd_identifier_token39] = ACTIONS(2408), + [aux_sym_cmd_identifier_token40] = ACTIONS(2408), + [anon_sym_def] = ACTIONS(2406), + [anon_sym_export_DASHenv] = ACTIONS(2406), + [anon_sym_extern] = ACTIONS(2406), + [anon_sym_module] = ACTIONS(2406), + [anon_sym_use] = ACTIONS(2406), + [anon_sym_LPAREN] = ACTIONS(2408), + [anon_sym_DOLLAR] = ACTIONS(2408), + [anon_sym_error] = ACTIONS(2406), + [anon_sym_list] = ACTIONS(2406), + [anon_sym_DASH] = ACTIONS(2406), + [anon_sym_break] = ACTIONS(2406), + [anon_sym_continue] = ACTIONS(2406), + [anon_sym_for] = ACTIONS(2406), + [anon_sym_in] = ACTIONS(2406), + [anon_sym_loop] = ACTIONS(2406), + [anon_sym_make] = ACTIONS(2406), + [anon_sym_while] = ACTIONS(2406), + [anon_sym_do] = ACTIONS(2406), + [anon_sym_if] = ACTIONS(2406), + [anon_sym_else] = ACTIONS(2406), + [anon_sym_match] = ACTIONS(2406), + [anon_sym_RBRACE] = ACTIONS(2408), + [anon_sym_try] = ACTIONS(2406), + [anon_sym_catch] = ACTIONS(2406), + [anon_sym_return] = ACTIONS(2406), + [anon_sym_source] = ACTIONS(2406), + [anon_sym_source_DASHenv] = ACTIONS(2406), + [anon_sym_register] = ACTIONS(2406), + [anon_sym_hide] = ACTIONS(2406), + [anon_sym_hide_DASHenv] = ACTIONS(2406), + [anon_sym_overlay] = ACTIONS(2406), + [anon_sym_new] = ACTIONS(2406), + [anon_sym_as] = ACTIONS(2406), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2408), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2408), + [aux_sym__val_number_decimal_token1] = ACTIONS(2406), + [aux_sym__val_number_decimal_token2] = ACTIONS(2408), + [aux_sym__val_number_decimal_token3] = ACTIONS(2408), + [aux_sym__val_number_decimal_token4] = ACTIONS(2408), + [aux_sym__val_number_token1] = ACTIONS(2408), + [aux_sym__val_number_token2] = ACTIONS(2408), + [aux_sym__val_number_token3] = ACTIONS(2408), + [anon_sym_DQUOTE] = ACTIONS(2408), + [sym__str_single_quotes] = ACTIONS(2408), + [sym__str_back_ticks] = ACTIONS(2408), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2408), + [anon_sym_PLUS] = ACTIONS(2406), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2408), + }, + [656] = { + [sym_comment] = STATE(656), + [anon_sym_export] = ACTIONS(2506), + [anon_sym_alias] = ACTIONS(2506), + [anon_sym_let] = ACTIONS(2506), + [anon_sym_let_DASHenv] = ACTIONS(2506), + [anon_sym_mut] = ACTIONS(2506), + [anon_sym_const] = ACTIONS(2506), + [aux_sym_cmd_identifier_token1] = ACTIONS(2506), + [aux_sym_cmd_identifier_token2] = ACTIONS(2506), + [aux_sym_cmd_identifier_token3] = ACTIONS(2506), + [aux_sym_cmd_identifier_token4] = ACTIONS(2506), + [aux_sym_cmd_identifier_token5] = ACTIONS(2506), + [aux_sym_cmd_identifier_token6] = ACTIONS(2506), + [aux_sym_cmd_identifier_token7] = ACTIONS(2506), + [aux_sym_cmd_identifier_token8] = ACTIONS(2506), + [aux_sym_cmd_identifier_token9] = ACTIONS(2506), + [aux_sym_cmd_identifier_token10] = ACTIONS(2506), + [aux_sym_cmd_identifier_token11] = ACTIONS(2506), + [aux_sym_cmd_identifier_token12] = ACTIONS(2506), + [aux_sym_cmd_identifier_token13] = ACTIONS(2506), + [aux_sym_cmd_identifier_token14] = ACTIONS(2506), + [aux_sym_cmd_identifier_token15] = ACTIONS(2506), + [aux_sym_cmd_identifier_token16] = ACTIONS(2506), + [aux_sym_cmd_identifier_token17] = ACTIONS(2506), + [aux_sym_cmd_identifier_token18] = ACTIONS(2506), + [aux_sym_cmd_identifier_token19] = ACTIONS(2506), + [aux_sym_cmd_identifier_token20] = ACTIONS(2506), + [aux_sym_cmd_identifier_token21] = ACTIONS(2506), + [aux_sym_cmd_identifier_token22] = ACTIONS(2506), + [aux_sym_cmd_identifier_token23] = ACTIONS(2506), + [aux_sym_cmd_identifier_token24] = ACTIONS(2506), + [aux_sym_cmd_identifier_token25] = ACTIONS(2506), + [aux_sym_cmd_identifier_token26] = ACTIONS(2506), + [aux_sym_cmd_identifier_token27] = ACTIONS(2506), + [aux_sym_cmd_identifier_token28] = ACTIONS(2506), + [aux_sym_cmd_identifier_token29] = ACTIONS(2506), + [aux_sym_cmd_identifier_token30] = ACTIONS(2506), + [aux_sym_cmd_identifier_token31] = ACTIONS(2506), + [aux_sym_cmd_identifier_token32] = ACTIONS(2506), + [aux_sym_cmd_identifier_token33] = ACTIONS(2506), + [aux_sym_cmd_identifier_token34] = ACTIONS(2506), + [aux_sym_cmd_identifier_token35] = ACTIONS(2506), + [aux_sym_cmd_identifier_token36] = ACTIONS(2506), + [anon_sym_true] = ACTIONS(2508), + [anon_sym_false] = ACTIONS(2508), + [anon_sym_null] = ACTIONS(2508), + [aux_sym_cmd_identifier_token38] = ACTIONS(2506), + [aux_sym_cmd_identifier_token39] = ACTIONS(2508), + [aux_sym_cmd_identifier_token40] = ACTIONS(2508), + [anon_sym_def] = ACTIONS(2506), + [anon_sym_export_DASHenv] = ACTIONS(2506), + [anon_sym_extern] = ACTIONS(2506), + [anon_sym_module] = ACTIONS(2506), + [anon_sym_use] = ACTIONS(2506), + [anon_sym_LPAREN] = ACTIONS(2508), + [anon_sym_DOLLAR] = ACTIONS(2508), + [anon_sym_error] = ACTIONS(2506), + [anon_sym_list] = ACTIONS(2506), + [anon_sym_DASH] = ACTIONS(2506), + [anon_sym_break] = ACTIONS(2506), + [anon_sym_continue] = ACTIONS(2506), + [anon_sym_for] = ACTIONS(2506), + [anon_sym_in] = ACTIONS(2506), + [anon_sym_loop] = ACTIONS(2506), + [anon_sym_make] = ACTIONS(2506), + [anon_sym_while] = ACTIONS(2506), + [anon_sym_do] = ACTIONS(2506), + [anon_sym_if] = ACTIONS(2506), + [anon_sym_else] = ACTIONS(2506), + [anon_sym_match] = ACTIONS(2506), + [anon_sym_RBRACE] = ACTIONS(2508), + [anon_sym_try] = ACTIONS(2506), + [anon_sym_catch] = ACTIONS(2506), + [anon_sym_return] = ACTIONS(2506), + [anon_sym_source] = ACTIONS(2506), + [anon_sym_source_DASHenv] = ACTIONS(2506), + [anon_sym_register] = ACTIONS(2506), + [anon_sym_hide] = ACTIONS(2506), + [anon_sym_hide_DASHenv] = ACTIONS(2506), + [anon_sym_overlay] = ACTIONS(2506), + [anon_sym_new] = ACTIONS(2506), + [anon_sym_as] = ACTIONS(2506), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2508), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2508), + [aux_sym__val_number_decimal_token1] = ACTIONS(2506), + [aux_sym__val_number_decimal_token2] = ACTIONS(2508), + [aux_sym__val_number_decimal_token3] = ACTIONS(2508), + [aux_sym__val_number_decimal_token4] = ACTIONS(2508), + [aux_sym__val_number_token1] = ACTIONS(2508), + [aux_sym__val_number_token2] = ACTIONS(2508), + [aux_sym__val_number_token3] = ACTIONS(2508), + [anon_sym_DQUOTE] = ACTIONS(2508), + [sym__str_single_quotes] = ACTIONS(2508), + [sym__str_back_ticks] = ACTIONS(2508), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2508), + [anon_sym_PLUS] = ACTIONS(2506), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2508), + }, + [657] = { + [sym_comment] = STATE(657), + [anon_sym_export] = ACTIONS(2510), + [anon_sym_alias] = ACTIONS(2510), + [anon_sym_let] = ACTIONS(2510), + [anon_sym_let_DASHenv] = ACTIONS(2510), + [anon_sym_mut] = ACTIONS(2510), + [anon_sym_const] = ACTIONS(2510), + [aux_sym_cmd_identifier_token1] = ACTIONS(2510), + [aux_sym_cmd_identifier_token2] = ACTIONS(2510), + [aux_sym_cmd_identifier_token3] = ACTIONS(2510), + [aux_sym_cmd_identifier_token4] = ACTIONS(2510), + [aux_sym_cmd_identifier_token5] = ACTIONS(2510), + [aux_sym_cmd_identifier_token6] = ACTIONS(2510), + [aux_sym_cmd_identifier_token7] = ACTIONS(2510), + [aux_sym_cmd_identifier_token8] = ACTIONS(2510), + [aux_sym_cmd_identifier_token9] = ACTIONS(2510), + [aux_sym_cmd_identifier_token10] = ACTIONS(2510), + [aux_sym_cmd_identifier_token11] = ACTIONS(2510), + [aux_sym_cmd_identifier_token12] = ACTIONS(2510), + [aux_sym_cmd_identifier_token13] = ACTIONS(2510), + [aux_sym_cmd_identifier_token14] = ACTIONS(2510), + [aux_sym_cmd_identifier_token15] = ACTIONS(2510), + [aux_sym_cmd_identifier_token16] = ACTIONS(2510), + [aux_sym_cmd_identifier_token17] = ACTIONS(2510), + [aux_sym_cmd_identifier_token18] = ACTIONS(2510), + [aux_sym_cmd_identifier_token19] = ACTIONS(2510), + [aux_sym_cmd_identifier_token20] = ACTIONS(2510), + [aux_sym_cmd_identifier_token21] = ACTIONS(2510), + [aux_sym_cmd_identifier_token22] = ACTIONS(2510), + [aux_sym_cmd_identifier_token23] = ACTIONS(2510), + [aux_sym_cmd_identifier_token24] = ACTIONS(2510), + [aux_sym_cmd_identifier_token25] = ACTIONS(2510), + [aux_sym_cmd_identifier_token26] = ACTIONS(2510), + [aux_sym_cmd_identifier_token27] = ACTIONS(2510), + [aux_sym_cmd_identifier_token28] = ACTIONS(2510), + [aux_sym_cmd_identifier_token29] = ACTIONS(2510), + [aux_sym_cmd_identifier_token30] = ACTIONS(2510), + [aux_sym_cmd_identifier_token31] = ACTIONS(2510), + [aux_sym_cmd_identifier_token32] = ACTIONS(2510), + [aux_sym_cmd_identifier_token33] = ACTIONS(2510), + [aux_sym_cmd_identifier_token34] = ACTIONS(2510), + [aux_sym_cmd_identifier_token35] = ACTIONS(2510), + [aux_sym_cmd_identifier_token36] = ACTIONS(2510), + [anon_sym_true] = ACTIONS(2512), + [anon_sym_false] = ACTIONS(2512), + [anon_sym_null] = ACTIONS(2512), + [aux_sym_cmd_identifier_token38] = ACTIONS(2510), + [aux_sym_cmd_identifier_token39] = ACTIONS(2512), + [aux_sym_cmd_identifier_token40] = ACTIONS(2512), + [anon_sym_def] = ACTIONS(2510), + [anon_sym_export_DASHenv] = ACTIONS(2510), + [anon_sym_extern] = ACTIONS(2510), + [anon_sym_module] = ACTIONS(2510), + [anon_sym_use] = ACTIONS(2510), + [anon_sym_LPAREN] = ACTIONS(2512), + [anon_sym_DOLLAR] = ACTIONS(2512), + [anon_sym_error] = ACTIONS(2510), + [anon_sym_list] = ACTIONS(2510), + [anon_sym_DASH] = ACTIONS(2510), + [anon_sym_break] = ACTIONS(2510), + [anon_sym_continue] = ACTIONS(2510), + [anon_sym_for] = ACTIONS(2510), + [anon_sym_in] = ACTIONS(2510), + [anon_sym_loop] = ACTIONS(2510), + [anon_sym_make] = ACTIONS(2510), + [anon_sym_while] = ACTIONS(2510), + [anon_sym_do] = ACTIONS(2510), + [anon_sym_if] = ACTIONS(2510), + [anon_sym_else] = ACTIONS(2510), + [anon_sym_match] = ACTIONS(2510), + [anon_sym_RBRACE] = ACTIONS(2512), + [anon_sym_try] = ACTIONS(2510), + [anon_sym_catch] = ACTIONS(2510), + [anon_sym_return] = ACTIONS(2510), + [anon_sym_source] = ACTIONS(2510), + [anon_sym_source_DASHenv] = ACTIONS(2510), + [anon_sym_register] = ACTIONS(2510), + [anon_sym_hide] = ACTIONS(2510), + [anon_sym_hide_DASHenv] = ACTIONS(2510), + [anon_sym_overlay] = ACTIONS(2510), + [anon_sym_new] = ACTIONS(2510), + [anon_sym_as] = ACTIONS(2510), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2512), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2512), + [aux_sym__val_number_decimal_token1] = ACTIONS(2510), + [aux_sym__val_number_decimal_token2] = ACTIONS(2512), + [aux_sym__val_number_decimal_token3] = ACTIONS(2512), + [aux_sym__val_number_decimal_token4] = ACTIONS(2512), + [aux_sym__val_number_token1] = ACTIONS(2512), + [aux_sym__val_number_token2] = ACTIONS(2512), + [aux_sym__val_number_token3] = ACTIONS(2512), + [anon_sym_DQUOTE] = ACTIONS(2512), + [sym__str_single_quotes] = ACTIONS(2512), + [sym__str_back_ticks] = ACTIONS(2512), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2512), + [anon_sym_PLUS] = ACTIONS(2510), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2512), + }, + [658] = { + [sym_comment] = STATE(658), + [anon_sym_export] = ACTIONS(1909), + [anon_sym_alias] = ACTIONS(1909), + [anon_sym_let] = ACTIONS(1909), + [anon_sym_let_DASHenv] = ACTIONS(1909), + [anon_sym_mut] = ACTIONS(1909), + [anon_sym_const] = ACTIONS(1909), + [aux_sym_cmd_identifier_token1] = ACTIONS(1909), + [aux_sym_cmd_identifier_token2] = ACTIONS(1909), + [aux_sym_cmd_identifier_token3] = ACTIONS(1909), + [aux_sym_cmd_identifier_token4] = ACTIONS(1909), + [aux_sym_cmd_identifier_token5] = ACTIONS(1909), + [aux_sym_cmd_identifier_token6] = ACTIONS(1909), + [aux_sym_cmd_identifier_token7] = ACTIONS(1909), + [aux_sym_cmd_identifier_token8] = ACTIONS(1909), + [aux_sym_cmd_identifier_token9] = ACTIONS(1909), + [aux_sym_cmd_identifier_token10] = ACTIONS(1909), + [aux_sym_cmd_identifier_token11] = ACTIONS(1909), + [aux_sym_cmd_identifier_token12] = ACTIONS(1909), + [aux_sym_cmd_identifier_token13] = ACTIONS(1909), + [aux_sym_cmd_identifier_token14] = ACTIONS(1909), + [aux_sym_cmd_identifier_token15] = ACTIONS(1909), + [aux_sym_cmd_identifier_token16] = ACTIONS(1909), + [aux_sym_cmd_identifier_token17] = ACTIONS(1909), + [aux_sym_cmd_identifier_token18] = ACTIONS(1909), + [aux_sym_cmd_identifier_token19] = ACTIONS(1909), + [aux_sym_cmd_identifier_token20] = ACTIONS(1909), + [aux_sym_cmd_identifier_token21] = ACTIONS(1909), + [aux_sym_cmd_identifier_token22] = ACTIONS(1909), + [aux_sym_cmd_identifier_token23] = ACTIONS(1909), + [aux_sym_cmd_identifier_token24] = ACTIONS(1909), + [aux_sym_cmd_identifier_token25] = ACTIONS(1909), + [aux_sym_cmd_identifier_token26] = ACTIONS(1909), + [aux_sym_cmd_identifier_token27] = ACTIONS(1909), + [aux_sym_cmd_identifier_token28] = ACTIONS(1909), + [aux_sym_cmd_identifier_token29] = ACTIONS(1909), + [aux_sym_cmd_identifier_token30] = ACTIONS(1909), + [aux_sym_cmd_identifier_token31] = ACTIONS(1909), + [aux_sym_cmd_identifier_token32] = ACTIONS(1909), + [aux_sym_cmd_identifier_token33] = ACTIONS(1909), + [aux_sym_cmd_identifier_token34] = ACTIONS(1909), + [aux_sym_cmd_identifier_token35] = ACTIONS(1909), + [aux_sym_cmd_identifier_token36] = ACTIONS(1909), + [anon_sym_true] = ACTIONS(1911), + [anon_sym_false] = ACTIONS(1911), + [anon_sym_null] = ACTIONS(1911), + [aux_sym_cmd_identifier_token38] = ACTIONS(1909), + [aux_sym_cmd_identifier_token39] = ACTIONS(1911), + [aux_sym_cmd_identifier_token40] = ACTIONS(1911), + [anon_sym_def] = ACTIONS(1909), + [anon_sym_export_DASHenv] = ACTIONS(1909), + [anon_sym_extern] = ACTIONS(1909), + [anon_sym_module] = ACTIONS(1909), + [anon_sym_use] = ACTIONS(1909), + [anon_sym_LPAREN] = ACTIONS(1911), + [anon_sym_DOLLAR] = ACTIONS(1911), + [anon_sym_error] = ACTIONS(1909), + [anon_sym_list] = ACTIONS(1909), + [anon_sym_DASH] = ACTIONS(1909), + [anon_sym_break] = ACTIONS(1909), + [anon_sym_continue] = ACTIONS(1909), + [anon_sym_for] = ACTIONS(1909), + [anon_sym_in] = ACTIONS(1909), + [anon_sym_loop] = ACTIONS(1909), + [anon_sym_make] = ACTIONS(1909), + [anon_sym_while] = ACTIONS(1909), + [anon_sym_do] = ACTIONS(1909), + [anon_sym_if] = ACTIONS(1909), + [anon_sym_else] = ACTIONS(1909), + [anon_sym_match] = ACTIONS(1909), + [anon_sym_RBRACE] = ACTIONS(1911), + [anon_sym_try] = ACTIONS(1909), + [anon_sym_catch] = ACTIONS(1909), + [anon_sym_return] = ACTIONS(1909), + [anon_sym_source] = ACTIONS(1909), + [anon_sym_source_DASHenv] = ACTIONS(1909), + [anon_sym_register] = ACTIONS(1909), + [anon_sym_hide] = ACTIONS(1909), + [anon_sym_hide_DASHenv] = ACTIONS(1909), + [anon_sym_overlay] = ACTIONS(1909), + [anon_sym_new] = ACTIONS(1909), + [anon_sym_as] = ACTIONS(1909), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1911), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1911), + [aux_sym__val_number_decimal_token1] = ACTIONS(1909), + [aux_sym__val_number_decimal_token2] = ACTIONS(1911), + [aux_sym__val_number_decimal_token3] = ACTIONS(1911), + [aux_sym__val_number_decimal_token4] = ACTIONS(1911), + [aux_sym__val_number_token1] = ACTIONS(1911), + [aux_sym__val_number_token2] = ACTIONS(1911), + [aux_sym__val_number_token3] = ACTIONS(1911), + [anon_sym_DQUOTE] = ACTIONS(1911), + [sym__str_single_quotes] = ACTIONS(1911), + [sym__str_back_ticks] = ACTIONS(1911), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1911), + [anon_sym_PLUS] = ACTIONS(1909), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1911), + }, + [659] = { + [sym_comment] = STATE(659), + [anon_sym_export] = ACTIONS(1628), + [anon_sym_alias] = ACTIONS(1628), + [anon_sym_let] = ACTIONS(1628), + [anon_sym_let_DASHenv] = ACTIONS(1628), + [anon_sym_mut] = ACTIONS(1628), + [anon_sym_const] = ACTIONS(1628), + [aux_sym_cmd_identifier_token1] = ACTIONS(1628), + [aux_sym_cmd_identifier_token2] = ACTIONS(1628), + [aux_sym_cmd_identifier_token3] = ACTIONS(1628), + [aux_sym_cmd_identifier_token4] = ACTIONS(1628), + [aux_sym_cmd_identifier_token5] = ACTIONS(1628), + [aux_sym_cmd_identifier_token6] = ACTIONS(1628), + [aux_sym_cmd_identifier_token7] = ACTIONS(1628), + [aux_sym_cmd_identifier_token8] = ACTIONS(1628), + [aux_sym_cmd_identifier_token9] = ACTIONS(1628), + [aux_sym_cmd_identifier_token10] = ACTIONS(1628), + [aux_sym_cmd_identifier_token11] = ACTIONS(1628), + [aux_sym_cmd_identifier_token12] = ACTIONS(1628), + [aux_sym_cmd_identifier_token13] = ACTIONS(1628), + [aux_sym_cmd_identifier_token14] = ACTIONS(1628), + [aux_sym_cmd_identifier_token15] = ACTIONS(1628), + [aux_sym_cmd_identifier_token16] = ACTIONS(1628), + [aux_sym_cmd_identifier_token17] = ACTIONS(1628), + [aux_sym_cmd_identifier_token18] = ACTIONS(1628), + [aux_sym_cmd_identifier_token19] = ACTIONS(1628), + [aux_sym_cmd_identifier_token20] = ACTIONS(1628), + [aux_sym_cmd_identifier_token21] = ACTIONS(1628), + [aux_sym_cmd_identifier_token22] = ACTIONS(1628), + [aux_sym_cmd_identifier_token23] = ACTIONS(1628), + [aux_sym_cmd_identifier_token24] = ACTIONS(1628), + [aux_sym_cmd_identifier_token25] = ACTIONS(1628), + [aux_sym_cmd_identifier_token26] = ACTIONS(1628), + [aux_sym_cmd_identifier_token27] = ACTIONS(1628), + [aux_sym_cmd_identifier_token28] = ACTIONS(1628), + [aux_sym_cmd_identifier_token29] = ACTIONS(1628), + [aux_sym_cmd_identifier_token30] = ACTIONS(1628), + [aux_sym_cmd_identifier_token31] = ACTIONS(1628), + [aux_sym_cmd_identifier_token32] = ACTIONS(1628), + [aux_sym_cmd_identifier_token33] = ACTIONS(1628), + [aux_sym_cmd_identifier_token34] = ACTIONS(1628), + [aux_sym_cmd_identifier_token35] = ACTIONS(1628), + [aux_sym_cmd_identifier_token36] = ACTIONS(1628), + [anon_sym_true] = ACTIONS(1640), + [anon_sym_false] = ACTIONS(1640), + [anon_sym_null] = ACTIONS(1640), + [aux_sym_cmd_identifier_token38] = ACTIONS(1628), + [aux_sym_cmd_identifier_token39] = ACTIONS(1640), + [aux_sym_cmd_identifier_token40] = ACTIONS(1640), + [anon_sym_def] = ACTIONS(1628), + [anon_sym_export_DASHenv] = ACTIONS(1628), + [anon_sym_extern] = ACTIONS(1628), + [anon_sym_module] = ACTIONS(1628), + [anon_sym_use] = ACTIONS(1628), + [anon_sym_LPAREN] = ACTIONS(1640), + [anon_sym_DOLLAR] = ACTIONS(1640), + [anon_sym_error] = ACTIONS(1628), + [anon_sym_list] = ACTIONS(1628), + [anon_sym_DASH] = ACTIONS(1628), + [anon_sym_break] = ACTIONS(1628), + [anon_sym_continue] = ACTIONS(1628), + [anon_sym_for] = ACTIONS(1628), + [anon_sym_in] = ACTIONS(1628), + [anon_sym_loop] = ACTIONS(1628), + [anon_sym_make] = ACTIONS(1628), + [anon_sym_while] = ACTIONS(1628), + [anon_sym_do] = ACTIONS(1628), + [anon_sym_if] = ACTIONS(1628), + [anon_sym_else] = ACTIONS(1628), + [anon_sym_match] = ACTIONS(1628), + [anon_sym_RBRACE] = ACTIONS(1640), + [anon_sym_try] = ACTIONS(1628), + [anon_sym_catch] = ACTIONS(1628), + [anon_sym_return] = ACTIONS(1628), + [anon_sym_source] = ACTIONS(1628), + [anon_sym_source_DASHenv] = ACTIONS(1628), + [anon_sym_register] = ACTIONS(1628), + [anon_sym_hide] = ACTIONS(1628), + [anon_sym_hide_DASHenv] = ACTIONS(1628), + [anon_sym_overlay] = ACTIONS(1628), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_as] = ACTIONS(1628), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1640), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1640), + [aux_sym__val_number_decimal_token1] = ACTIONS(1628), + [aux_sym__val_number_decimal_token2] = ACTIONS(1640), + [aux_sym__val_number_decimal_token3] = ACTIONS(1640), + [aux_sym__val_number_decimal_token4] = ACTIONS(1640), + [aux_sym__val_number_token1] = ACTIONS(1640), + [aux_sym__val_number_token2] = ACTIONS(1640), + [aux_sym__val_number_token3] = ACTIONS(1640), + [anon_sym_DQUOTE] = ACTIONS(1640), + [sym__str_single_quotes] = ACTIONS(1640), + [sym__str_back_ticks] = ACTIONS(1640), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1640), + [anon_sym_PLUS] = ACTIONS(1628), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1640), + }, + [660] = { + [sym_comment] = STATE(660), + [anon_sym_export] = ACTIONS(2418), + [anon_sym_alias] = ACTIONS(2418), + [anon_sym_let] = ACTIONS(2418), + [anon_sym_let_DASHenv] = ACTIONS(2418), + [anon_sym_mut] = ACTIONS(2418), + [anon_sym_const] = ACTIONS(2418), + [aux_sym_cmd_identifier_token1] = ACTIONS(2418), + [aux_sym_cmd_identifier_token2] = ACTIONS(2418), + [aux_sym_cmd_identifier_token3] = ACTIONS(2418), + [aux_sym_cmd_identifier_token4] = ACTIONS(2418), + [aux_sym_cmd_identifier_token5] = ACTIONS(2418), + [aux_sym_cmd_identifier_token6] = ACTIONS(2418), + [aux_sym_cmd_identifier_token7] = ACTIONS(2418), + [aux_sym_cmd_identifier_token8] = ACTIONS(2418), + [aux_sym_cmd_identifier_token9] = ACTIONS(2418), + [aux_sym_cmd_identifier_token10] = ACTIONS(2418), + [aux_sym_cmd_identifier_token11] = ACTIONS(2418), + [aux_sym_cmd_identifier_token12] = ACTIONS(2418), + [aux_sym_cmd_identifier_token13] = ACTIONS(2418), + [aux_sym_cmd_identifier_token14] = ACTIONS(2418), + [aux_sym_cmd_identifier_token15] = ACTIONS(2418), + [aux_sym_cmd_identifier_token16] = ACTIONS(2418), + [aux_sym_cmd_identifier_token17] = ACTIONS(2418), + [aux_sym_cmd_identifier_token18] = ACTIONS(2418), + [aux_sym_cmd_identifier_token19] = ACTIONS(2418), + [aux_sym_cmd_identifier_token20] = ACTIONS(2418), + [aux_sym_cmd_identifier_token21] = ACTIONS(2418), + [aux_sym_cmd_identifier_token22] = ACTIONS(2418), + [aux_sym_cmd_identifier_token23] = ACTIONS(2418), + [aux_sym_cmd_identifier_token24] = ACTIONS(2418), + [aux_sym_cmd_identifier_token25] = ACTIONS(2418), + [aux_sym_cmd_identifier_token26] = ACTIONS(2418), + [aux_sym_cmd_identifier_token27] = ACTIONS(2418), + [aux_sym_cmd_identifier_token28] = ACTIONS(2418), + [aux_sym_cmd_identifier_token29] = ACTIONS(2418), + [aux_sym_cmd_identifier_token30] = ACTIONS(2418), + [aux_sym_cmd_identifier_token31] = ACTIONS(2418), + [aux_sym_cmd_identifier_token32] = ACTIONS(2418), + [aux_sym_cmd_identifier_token33] = ACTIONS(2418), + [aux_sym_cmd_identifier_token34] = ACTIONS(2418), + [aux_sym_cmd_identifier_token35] = ACTIONS(2418), + [aux_sym_cmd_identifier_token36] = ACTIONS(2418), + [anon_sym_true] = ACTIONS(2420), + [anon_sym_false] = ACTIONS(2420), + [anon_sym_null] = ACTIONS(2420), + [aux_sym_cmd_identifier_token38] = ACTIONS(2418), + [aux_sym_cmd_identifier_token39] = ACTIONS(2420), + [aux_sym_cmd_identifier_token40] = ACTIONS(2420), + [anon_sym_def] = ACTIONS(2418), + [anon_sym_export_DASHenv] = ACTIONS(2418), + [anon_sym_extern] = ACTIONS(2418), + [anon_sym_module] = ACTIONS(2418), + [anon_sym_use] = ACTIONS(2418), + [anon_sym_LPAREN] = ACTIONS(2420), + [anon_sym_DOLLAR] = ACTIONS(2420), + [anon_sym_error] = ACTIONS(2418), + [anon_sym_list] = ACTIONS(2418), + [anon_sym_DASH] = ACTIONS(2418), + [anon_sym_break] = ACTIONS(2418), + [anon_sym_continue] = ACTIONS(2418), + [anon_sym_for] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2418), + [anon_sym_loop] = ACTIONS(2418), + [anon_sym_make] = ACTIONS(2418), + [anon_sym_while] = ACTIONS(2418), + [anon_sym_do] = ACTIONS(2418), + [anon_sym_if] = ACTIONS(2418), + [anon_sym_else] = ACTIONS(2418), + [anon_sym_match] = ACTIONS(2418), + [anon_sym_RBRACE] = ACTIONS(2420), + [anon_sym_try] = ACTIONS(2418), + [anon_sym_catch] = ACTIONS(2418), + [anon_sym_return] = ACTIONS(2418), + [anon_sym_source] = ACTIONS(2418), + [anon_sym_source_DASHenv] = ACTIONS(2418), + [anon_sym_register] = ACTIONS(2418), + [anon_sym_hide] = ACTIONS(2418), + [anon_sym_hide_DASHenv] = ACTIONS(2418), + [anon_sym_overlay] = ACTIONS(2418), + [anon_sym_new] = ACTIONS(2418), + [anon_sym_as] = ACTIONS(2418), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2420), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2420), + [aux_sym__val_number_decimal_token1] = ACTIONS(2418), + [aux_sym__val_number_decimal_token2] = ACTIONS(2420), + [aux_sym__val_number_decimal_token3] = ACTIONS(2420), + [aux_sym__val_number_decimal_token4] = ACTIONS(2420), + [aux_sym__val_number_token1] = ACTIONS(2420), + [aux_sym__val_number_token2] = ACTIONS(2420), + [aux_sym__val_number_token3] = ACTIONS(2420), + [anon_sym_DQUOTE] = ACTIONS(2420), + [sym__str_single_quotes] = ACTIONS(2420), + [sym__str_back_ticks] = ACTIONS(2420), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2420), + [anon_sym_PLUS] = ACTIONS(2418), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2420), + }, + [661] = { + [sym_comment] = STATE(661), + [anon_sym_export] = ACTIONS(2494), + [anon_sym_alias] = ACTIONS(2494), + [anon_sym_let] = ACTIONS(2494), + [anon_sym_let_DASHenv] = ACTIONS(2494), + [anon_sym_mut] = ACTIONS(2494), + [anon_sym_const] = ACTIONS(2494), + [aux_sym_cmd_identifier_token1] = ACTIONS(2494), + [aux_sym_cmd_identifier_token2] = ACTIONS(2494), + [aux_sym_cmd_identifier_token3] = ACTIONS(2494), + [aux_sym_cmd_identifier_token4] = ACTIONS(2494), + [aux_sym_cmd_identifier_token5] = ACTIONS(2494), + [aux_sym_cmd_identifier_token6] = ACTIONS(2494), + [aux_sym_cmd_identifier_token7] = ACTIONS(2494), + [aux_sym_cmd_identifier_token8] = ACTIONS(2494), + [aux_sym_cmd_identifier_token9] = ACTIONS(2494), + [aux_sym_cmd_identifier_token10] = ACTIONS(2494), + [aux_sym_cmd_identifier_token11] = ACTIONS(2494), + [aux_sym_cmd_identifier_token12] = ACTIONS(2494), + [aux_sym_cmd_identifier_token13] = ACTIONS(2494), + [aux_sym_cmd_identifier_token14] = ACTIONS(2494), + [aux_sym_cmd_identifier_token15] = ACTIONS(2494), + [aux_sym_cmd_identifier_token16] = ACTIONS(2494), + [aux_sym_cmd_identifier_token17] = ACTIONS(2494), + [aux_sym_cmd_identifier_token18] = ACTIONS(2494), + [aux_sym_cmd_identifier_token19] = ACTIONS(2494), + [aux_sym_cmd_identifier_token20] = ACTIONS(2494), + [aux_sym_cmd_identifier_token21] = ACTIONS(2494), + [aux_sym_cmd_identifier_token22] = ACTIONS(2494), + [aux_sym_cmd_identifier_token23] = ACTIONS(2494), + [aux_sym_cmd_identifier_token24] = ACTIONS(2494), + [aux_sym_cmd_identifier_token25] = ACTIONS(2494), + [aux_sym_cmd_identifier_token26] = ACTIONS(2494), + [aux_sym_cmd_identifier_token27] = ACTIONS(2494), + [aux_sym_cmd_identifier_token28] = ACTIONS(2494), + [aux_sym_cmd_identifier_token29] = ACTIONS(2494), + [aux_sym_cmd_identifier_token30] = ACTIONS(2494), + [aux_sym_cmd_identifier_token31] = ACTIONS(2494), + [aux_sym_cmd_identifier_token32] = ACTIONS(2494), + [aux_sym_cmd_identifier_token33] = ACTIONS(2494), + [aux_sym_cmd_identifier_token34] = ACTIONS(2494), + [aux_sym_cmd_identifier_token35] = ACTIONS(2494), + [aux_sym_cmd_identifier_token36] = ACTIONS(2494), + [anon_sym_true] = ACTIONS(2496), + [anon_sym_false] = ACTIONS(2496), + [anon_sym_null] = ACTIONS(2496), + [aux_sym_cmd_identifier_token38] = ACTIONS(2494), + [aux_sym_cmd_identifier_token39] = ACTIONS(2496), + [aux_sym_cmd_identifier_token40] = ACTIONS(2496), + [anon_sym_def] = ACTIONS(2494), + [anon_sym_export_DASHenv] = ACTIONS(2494), + [anon_sym_extern] = ACTIONS(2494), + [anon_sym_module] = ACTIONS(2494), + [anon_sym_use] = ACTIONS(2494), + [anon_sym_LPAREN] = ACTIONS(2496), + [anon_sym_DOLLAR] = ACTIONS(2496), + [anon_sym_error] = ACTIONS(2494), + [anon_sym_list] = ACTIONS(2494), + [anon_sym_DASH] = ACTIONS(2494), + [anon_sym_break] = ACTIONS(2494), + [anon_sym_continue] = ACTIONS(2494), + [anon_sym_for] = ACTIONS(2494), + [anon_sym_in] = ACTIONS(2494), + [anon_sym_loop] = ACTIONS(2494), + [anon_sym_make] = ACTIONS(2494), + [anon_sym_while] = ACTIONS(2494), + [anon_sym_do] = ACTIONS(2494), + [anon_sym_if] = ACTIONS(2494), + [anon_sym_else] = ACTIONS(2494), + [anon_sym_match] = ACTIONS(2494), + [anon_sym_RBRACE] = ACTIONS(2496), + [anon_sym_try] = ACTIONS(2494), + [anon_sym_catch] = ACTIONS(2494), + [anon_sym_return] = ACTIONS(2494), + [anon_sym_source] = ACTIONS(2494), + [anon_sym_source_DASHenv] = ACTIONS(2494), + [anon_sym_register] = ACTIONS(2494), + [anon_sym_hide] = ACTIONS(2494), + [anon_sym_hide_DASHenv] = ACTIONS(2494), + [anon_sym_overlay] = ACTIONS(2494), + [anon_sym_new] = ACTIONS(2494), + [anon_sym_as] = ACTIONS(2494), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2496), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2496), + [aux_sym__val_number_decimal_token1] = ACTIONS(2494), + [aux_sym__val_number_decimal_token2] = ACTIONS(2496), + [aux_sym__val_number_decimal_token3] = ACTIONS(2496), + [aux_sym__val_number_decimal_token4] = ACTIONS(2496), + [aux_sym__val_number_token1] = ACTIONS(2496), + [aux_sym__val_number_token2] = ACTIONS(2496), + [aux_sym__val_number_token3] = ACTIONS(2496), + [anon_sym_DQUOTE] = ACTIONS(2496), + [sym__str_single_quotes] = ACTIONS(2496), + [sym__str_back_ticks] = ACTIONS(2496), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2496), + [anon_sym_PLUS] = ACTIONS(2494), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2496), + }, + [662] = { + [sym_comment] = STATE(662), + [anon_sym_export] = ACTIONS(2494), + [anon_sym_alias] = ACTIONS(2494), + [anon_sym_let] = ACTIONS(2494), + [anon_sym_let_DASHenv] = ACTIONS(2494), + [anon_sym_mut] = ACTIONS(2494), + [anon_sym_const] = ACTIONS(2494), + [aux_sym_cmd_identifier_token1] = ACTIONS(2494), + [aux_sym_cmd_identifier_token2] = ACTIONS(2494), + [aux_sym_cmd_identifier_token3] = ACTIONS(2494), + [aux_sym_cmd_identifier_token4] = ACTIONS(2494), + [aux_sym_cmd_identifier_token5] = ACTIONS(2494), + [aux_sym_cmd_identifier_token6] = ACTIONS(2494), + [aux_sym_cmd_identifier_token7] = ACTIONS(2494), + [aux_sym_cmd_identifier_token8] = ACTIONS(2494), + [aux_sym_cmd_identifier_token9] = ACTIONS(2494), + [aux_sym_cmd_identifier_token10] = ACTIONS(2494), + [aux_sym_cmd_identifier_token11] = ACTIONS(2494), + [aux_sym_cmd_identifier_token12] = ACTIONS(2494), + [aux_sym_cmd_identifier_token13] = ACTIONS(2494), + [aux_sym_cmd_identifier_token14] = ACTIONS(2494), + [aux_sym_cmd_identifier_token15] = ACTIONS(2494), + [aux_sym_cmd_identifier_token16] = ACTIONS(2494), + [aux_sym_cmd_identifier_token17] = ACTIONS(2494), + [aux_sym_cmd_identifier_token18] = ACTIONS(2494), + [aux_sym_cmd_identifier_token19] = ACTIONS(2494), + [aux_sym_cmd_identifier_token20] = ACTIONS(2494), + [aux_sym_cmd_identifier_token21] = ACTIONS(2494), + [aux_sym_cmd_identifier_token22] = ACTIONS(2494), + [aux_sym_cmd_identifier_token23] = ACTIONS(2494), + [aux_sym_cmd_identifier_token24] = ACTIONS(2494), + [aux_sym_cmd_identifier_token25] = ACTIONS(2494), + [aux_sym_cmd_identifier_token26] = ACTIONS(2494), + [aux_sym_cmd_identifier_token27] = ACTIONS(2494), + [aux_sym_cmd_identifier_token28] = ACTIONS(2494), + [aux_sym_cmd_identifier_token29] = ACTIONS(2494), + [aux_sym_cmd_identifier_token30] = ACTIONS(2494), + [aux_sym_cmd_identifier_token31] = ACTIONS(2494), + [aux_sym_cmd_identifier_token32] = ACTIONS(2494), + [aux_sym_cmd_identifier_token33] = ACTIONS(2494), + [aux_sym_cmd_identifier_token34] = ACTIONS(2494), + [aux_sym_cmd_identifier_token35] = ACTIONS(2494), + [aux_sym_cmd_identifier_token36] = ACTIONS(2494), + [anon_sym_true] = ACTIONS(2496), + [anon_sym_false] = ACTIONS(2496), + [anon_sym_null] = ACTIONS(2496), + [aux_sym_cmd_identifier_token38] = ACTIONS(2494), + [aux_sym_cmd_identifier_token39] = ACTIONS(2496), + [aux_sym_cmd_identifier_token40] = ACTIONS(2496), + [anon_sym_def] = ACTIONS(2494), + [anon_sym_export_DASHenv] = ACTIONS(2494), + [anon_sym_extern] = ACTIONS(2494), + [anon_sym_module] = ACTIONS(2494), + [anon_sym_use] = ACTIONS(2494), + [anon_sym_LPAREN] = ACTIONS(2496), + [anon_sym_DOLLAR] = ACTIONS(2496), + [anon_sym_error] = ACTIONS(2494), + [anon_sym_list] = ACTIONS(2494), + [anon_sym_DASH] = ACTIONS(2494), + [anon_sym_break] = ACTIONS(2494), + [anon_sym_continue] = ACTIONS(2494), + [anon_sym_for] = ACTIONS(2494), + [anon_sym_in] = ACTIONS(2494), + [anon_sym_loop] = ACTIONS(2494), + [anon_sym_make] = ACTIONS(2494), + [anon_sym_while] = ACTIONS(2494), + [anon_sym_do] = ACTIONS(2494), + [anon_sym_if] = ACTIONS(2494), + [anon_sym_else] = ACTIONS(2494), + [anon_sym_match] = ACTIONS(2494), + [anon_sym_RBRACE] = ACTIONS(2496), + [anon_sym_try] = ACTIONS(2494), + [anon_sym_catch] = ACTIONS(2494), + [anon_sym_return] = ACTIONS(2494), + [anon_sym_source] = ACTIONS(2494), + [anon_sym_source_DASHenv] = ACTIONS(2494), + [anon_sym_register] = ACTIONS(2494), + [anon_sym_hide] = ACTIONS(2494), + [anon_sym_hide_DASHenv] = ACTIONS(2494), + [anon_sym_overlay] = ACTIONS(2494), + [anon_sym_new] = ACTIONS(2494), + [anon_sym_as] = ACTIONS(2494), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2496), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2496), + [aux_sym__val_number_decimal_token1] = ACTIONS(2494), + [aux_sym__val_number_decimal_token2] = ACTIONS(2496), + [aux_sym__val_number_decimal_token3] = ACTIONS(2496), + [aux_sym__val_number_decimal_token4] = ACTIONS(2496), + [aux_sym__val_number_token1] = ACTIONS(2496), + [aux_sym__val_number_token2] = ACTIONS(2496), + [aux_sym__val_number_token3] = ACTIONS(2496), + [anon_sym_DQUOTE] = ACTIONS(2496), + [sym__str_single_quotes] = ACTIONS(2496), + [sym__str_back_ticks] = ACTIONS(2496), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2496), + [anon_sym_PLUS] = ACTIONS(2494), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2496), + }, + [663] = { + [sym_comment] = STATE(663), [anon_sym_export] = ACTIONS(2454), [anon_sym_alias] = ACTIONS(2454), [anon_sym_let] = ACTIONS(2454), @@ -151163,109 +149677,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(2456), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2456), [anon_sym_PLUS] = ACTIONS(2454), - [anon_sym_POUND] = ACTIONS(247), - }, - [696] = { - [sym_comment] = STATE(696), - [anon_sym_export] = ACTIONS(1560), - [anon_sym_alias] = ACTIONS(1560), - [anon_sym_let] = ACTIONS(1560), - [anon_sym_let_DASHenv] = ACTIONS(1560), - [anon_sym_mut] = ACTIONS(1560), - [anon_sym_const] = ACTIONS(1560), - [aux_sym_cmd_identifier_token1] = ACTIONS(1560), - [aux_sym_cmd_identifier_token2] = ACTIONS(1560), - [aux_sym_cmd_identifier_token3] = ACTIONS(1560), - [aux_sym_cmd_identifier_token4] = ACTIONS(1560), - [aux_sym_cmd_identifier_token5] = ACTIONS(1560), - [aux_sym_cmd_identifier_token6] = ACTIONS(1560), - [aux_sym_cmd_identifier_token7] = ACTIONS(1560), - [aux_sym_cmd_identifier_token8] = ACTIONS(1560), - [aux_sym_cmd_identifier_token9] = ACTIONS(1560), - [aux_sym_cmd_identifier_token10] = ACTIONS(1560), - [aux_sym_cmd_identifier_token11] = ACTIONS(1560), - [aux_sym_cmd_identifier_token12] = ACTIONS(1560), - [aux_sym_cmd_identifier_token13] = ACTIONS(1560), - [aux_sym_cmd_identifier_token14] = ACTIONS(1560), - [aux_sym_cmd_identifier_token15] = ACTIONS(1560), - [aux_sym_cmd_identifier_token16] = ACTIONS(1560), - [aux_sym_cmd_identifier_token17] = ACTIONS(1560), - [aux_sym_cmd_identifier_token18] = ACTIONS(1560), - [aux_sym_cmd_identifier_token19] = ACTIONS(1560), - [aux_sym_cmd_identifier_token20] = ACTIONS(1560), - [aux_sym_cmd_identifier_token21] = ACTIONS(1560), - [aux_sym_cmd_identifier_token22] = ACTIONS(1560), - [aux_sym_cmd_identifier_token23] = ACTIONS(1560), - [aux_sym_cmd_identifier_token24] = ACTIONS(1560), - [aux_sym_cmd_identifier_token25] = ACTIONS(1560), - [aux_sym_cmd_identifier_token26] = ACTIONS(1560), - [aux_sym_cmd_identifier_token27] = ACTIONS(1560), - [aux_sym_cmd_identifier_token28] = ACTIONS(1560), - [aux_sym_cmd_identifier_token29] = ACTIONS(1560), - [aux_sym_cmd_identifier_token30] = ACTIONS(1560), - [aux_sym_cmd_identifier_token31] = ACTIONS(1560), - [aux_sym_cmd_identifier_token32] = ACTIONS(1560), - [aux_sym_cmd_identifier_token33] = ACTIONS(1560), - [aux_sym_cmd_identifier_token34] = ACTIONS(1560), - [aux_sym_cmd_identifier_token35] = ACTIONS(1560), - [aux_sym_cmd_identifier_token36] = ACTIONS(1560), - [anon_sym_true] = ACTIONS(1572), - [anon_sym_false] = ACTIONS(1572), - [anon_sym_null] = ACTIONS(1572), - [aux_sym_cmd_identifier_token38] = ACTIONS(1560), - [aux_sym_cmd_identifier_token39] = ACTIONS(1572), - [aux_sym_cmd_identifier_token40] = ACTIONS(1572), - [anon_sym_def] = ACTIONS(1560), - [anon_sym_export_DASHenv] = ACTIONS(1560), - [anon_sym_extern] = ACTIONS(1560), - [anon_sym_module] = ACTIONS(1560), - [anon_sym_use] = ACTIONS(1560), - [anon_sym_LPAREN] = ACTIONS(1572), - [anon_sym_DOLLAR] = ACTIONS(1572), - [anon_sym_error] = ACTIONS(1560), - [anon_sym_list] = ACTIONS(1560), - [anon_sym_DASH] = ACTIONS(1560), - [anon_sym_break] = ACTIONS(1560), - [anon_sym_continue] = ACTIONS(1560), - [anon_sym_for] = ACTIONS(1560), - [anon_sym_in] = ACTIONS(1560), - [anon_sym_loop] = ACTIONS(1560), - [anon_sym_make] = ACTIONS(1560), - [anon_sym_while] = ACTIONS(1560), - [anon_sym_do] = ACTIONS(1560), - [anon_sym_if] = ACTIONS(1560), - [anon_sym_else] = ACTIONS(1560), - [anon_sym_match] = ACTIONS(1560), - [anon_sym_RBRACE] = ACTIONS(1572), - [anon_sym_try] = ACTIONS(1560), - [anon_sym_catch] = ACTIONS(1560), - [anon_sym_return] = ACTIONS(1560), - [anon_sym_source] = ACTIONS(1560), - [anon_sym_source_DASHenv] = ACTIONS(1560), - [anon_sym_register] = ACTIONS(1560), - [anon_sym_hide] = ACTIONS(1560), - [anon_sym_hide_DASHenv] = ACTIONS(1560), - [anon_sym_overlay] = ACTIONS(1560), - [anon_sym_new] = ACTIONS(1560), - [anon_sym_as] = ACTIONS(1560), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1572), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1572), - [aux_sym__val_number_decimal_token1] = ACTIONS(1560), - [aux_sym__val_number_decimal_token2] = ACTIONS(1572), - [aux_sym__val_number_decimal_token3] = ACTIONS(1572), - [aux_sym__val_number_decimal_token4] = ACTIONS(1572), - [aux_sym__val_number_token1] = ACTIONS(1572), - [aux_sym__val_number_token2] = ACTIONS(1572), - [aux_sym__val_number_token3] = ACTIONS(1572), - [anon_sym_DQUOTE] = ACTIONS(1572), - [sym__str_single_quotes] = ACTIONS(1572), - [sym__str_back_ticks] = ACTIONS(1572), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1572), - [anon_sym_PLUS] = ACTIONS(1560), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2456), }, - [697] = { - [sym_comment] = STATE(697), + [664] = { + [sym_comment] = STATE(664), [anon_sym_export] = ACTIONS(2430), [anon_sym_alias] = ACTIONS(2430), [anon_sym_let] = ACTIONS(2430), @@ -151361,30597 +149777,34669 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(2432), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2432), [anon_sym_PLUS] = ACTIONS(2430), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2432), }, - [698] = { - [sym__match_pattern_expression] = STATE(3060), - [sym__match_pattern_value] = STATE(3093), - [sym__match_pattern_list] = STATE(3094), - [sym__match_pattern_rest] = STATE(7698), - [sym__match_pattern_record] = STATE(3095), - [sym_expr_parenthesized] = STATE(2728), - [sym__spread_parenthesized] = STATE(7348), - [sym_val_range] = STATE(2981), - [sym__val_range] = STATE(7469), - [sym__val_range_with_end] = STATE(7194), - [sym__value] = STATE(7355), - [sym_val_nothing] = STATE(2972), - [sym_val_bool] = STATE(2851), - [sym__spread_variable] = STATE(7195), - [sym_val_variable] = STATE(2740), - [sym_val_number] = STATE(2972), - [sym__val_number_decimal] = STATE(2493), - [sym__val_number] = STATE(2915), - [sym_val_duration] = STATE(2972), - [sym_val_filesize] = STATE(2972), - [sym_val_binary] = STATE(2972), - [sym_val_string] = STATE(2972), - [sym__str_double_quotes] = STATE(2995), - [sym_val_interpolated] = STATE(521), - [sym__inter_single_quotes] = STATE(495), - [sym__inter_double_quotes] = STATE(556), - [sym_val_list] = STATE(7138), - [sym__spread_list] = STATE(7348), - [sym_list_body] = STATE(7379), - [sym_val_entry] = STATE(6844), - [sym_val_record] = STATE(521), - [sym_val_table] = STATE(2972), - [sym_val_closure] = STATE(521), - [sym__unquoted_in_list] = STATE(2853), - [sym__unquoted_in_list_with_expr] = STATE(7355), - [sym__unquoted_anonymous_prefix] = STATE(6960), - [sym_comment] = STATE(698), - [aux_sym_shebang_repeat1] = STATE(772), - [aux_sym_parameter_repeat2] = STATE(6485), - [aux_sym__match_pattern_list_repeat1] = STATE(1147), - [aux_sym_list_body_repeat1] = STATE(773), - [anon_sym_true] = ACTIONS(2537), - [anon_sym_false] = ACTIONS(2537), - [anon_sym_null] = ACTIONS(2539), - [aux_sym_cmd_identifier_token38] = ACTIONS(2541), - [aux_sym_cmd_identifier_token39] = ACTIONS(2541), - [aux_sym_cmd_identifier_token40] = ACTIONS(2541), - [sym__newline] = ACTIONS(2543), - [anon_sym_LBRACK] = ACTIONS(2545), - [anon_sym_RBRACK] = ACTIONS(2547), - [anon_sym_LPAREN] = ACTIONS(2549), - [anon_sym_COMMA] = ACTIONS(2551), - [anon_sym_DOLLAR] = ACTIONS(2553), - [anon_sym_LBRACE] = ACTIONS(2555), - [anon_sym_DOT_DOT] = ACTIONS(2557), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2559), - [anon_sym_DOT_DOT_LT] = ACTIONS(2559), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2561), - [aux_sym__val_number_decimal_token2] = ACTIONS(2563), - [aux_sym__val_number_decimal_token3] = ACTIONS(2565), - [aux_sym__val_number_decimal_token4] = ACTIONS(2567), - [aux_sym__val_number_token1] = ACTIONS(2569), - [aux_sym__val_number_token2] = ACTIONS(2569), - [aux_sym__val_number_token3] = ACTIONS(2569), - [anon_sym_0b] = ACTIONS(2571), - [anon_sym_0o] = ACTIONS(2573), - [anon_sym_0x] = ACTIONS(2573), - [sym_val_date] = ACTIONS(2575), - [anon_sym_DQUOTE] = ACTIONS(2577), - [sym__str_single_quotes] = ACTIONS(2579), - [sym__str_back_ticks] = ACTIONS(2579), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [anon_sym_err_GT_GT] = ACTIONS(2589), - [anon_sym_out_GT_GT] = ACTIONS(2589), - [anon_sym_e_GT_GT] = ACTIONS(2589), - [anon_sym_o_GT_GT] = ACTIONS(2589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), - [anon_sym_POUND] = ACTIONS(247), + [665] = { + [sym_comment] = STATE(665), + [anon_sym_export] = ACTIONS(2478), + [anon_sym_alias] = ACTIONS(2478), + [anon_sym_let] = ACTIONS(2478), + [anon_sym_let_DASHenv] = ACTIONS(2478), + [anon_sym_mut] = ACTIONS(2478), + [anon_sym_const] = ACTIONS(2478), + [aux_sym_cmd_identifier_token1] = ACTIONS(2478), + [aux_sym_cmd_identifier_token2] = ACTIONS(2478), + [aux_sym_cmd_identifier_token3] = ACTIONS(2478), + [aux_sym_cmd_identifier_token4] = ACTIONS(2478), + [aux_sym_cmd_identifier_token5] = ACTIONS(2478), + [aux_sym_cmd_identifier_token6] = ACTIONS(2478), + [aux_sym_cmd_identifier_token7] = ACTIONS(2478), + [aux_sym_cmd_identifier_token8] = ACTIONS(2478), + [aux_sym_cmd_identifier_token9] = ACTIONS(2478), + [aux_sym_cmd_identifier_token10] = ACTIONS(2478), + [aux_sym_cmd_identifier_token11] = ACTIONS(2478), + [aux_sym_cmd_identifier_token12] = ACTIONS(2478), + [aux_sym_cmd_identifier_token13] = ACTIONS(2478), + [aux_sym_cmd_identifier_token14] = ACTIONS(2478), + [aux_sym_cmd_identifier_token15] = ACTIONS(2478), + [aux_sym_cmd_identifier_token16] = ACTIONS(2478), + [aux_sym_cmd_identifier_token17] = ACTIONS(2478), + [aux_sym_cmd_identifier_token18] = ACTIONS(2478), + [aux_sym_cmd_identifier_token19] = ACTIONS(2478), + [aux_sym_cmd_identifier_token20] = ACTIONS(2478), + [aux_sym_cmd_identifier_token21] = ACTIONS(2478), + [aux_sym_cmd_identifier_token22] = ACTIONS(2478), + [aux_sym_cmd_identifier_token23] = ACTIONS(2478), + [aux_sym_cmd_identifier_token24] = ACTIONS(2478), + [aux_sym_cmd_identifier_token25] = ACTIONS(2478), + [aux_sym_cmd_identifier_token26] = ACTIONS(2478), + [aux_sym_cmd_identifier_token27] = ACTIONS(2478), + [aux_sym_cmd_identifier_token28] = ACTIONS(2478), + [aux_sym_cmd_identifier_token29] = ACTIONS(2478), + [aux_sym_cmd_identifier_token30] = ACTIONS(2478), + [aux_sym_cmd_identifier_token31] = ACTIONS(2478), + [aux_sym_cmd_identifier_token32] = ACTIONS(2478), + [aux_sym_cmd_identifier_token33] = ACTIONS(2478), + [aux_sym_cmd_identifier_token34] = ACTIONS(2478), + [aux_sym_cmd_identifier_token35] = ACTIONS(2478), + [aux_sym_cmd_identifier_token36] = ACTIONS(2478), + [anon_sym_true] = ACTIONS(2480), + [anon_sym_false] = ACTIONS(2480), + [anon_sym_null] = ACTIONS(2480), + [aux_sym_cmd_identifier_token38] = ACTIONS(2478), + [aux_sym_cmd_identifier_token39] = ACTIONS(2480), + [aux_sym_cmd_identifier_token40] = ACTIONS(2480), + [anon_sym_def] = ACTIONS(2478), + [anon_sym_export_DASHenv] = ACTIONS(2478), + [anon_sym_extern] = ACTIONS(2478), + [anon_sym_module] = ACTIONS(2478), + [anon_sym_use] = ACTIONS(2478), + [anon_sym_LPAREN] = ACTIONS(2480), + [anon_sym_DOLLAR] = ACTIONS(2480), + [anon_sym_error] = ACTIONS(2478), + [anon_sym_list] = ACTIONS(2478), + [anon_sym_DASH] = ACTIONS(2478), + [anon_sym_break] = ACTIONS(2478), + [anon_sym_continue] = ACTIONS(2478), + [anon_sym_for] = ACTIONS(2478), + [anon_sym_in] = ACTIONS(2478), + [anon_sym_loop] = ACTIONS(2478), + [anon_sym_make] = ACTIONS(2478), + [anon_sym_while] = ACTIONS(2478), + [anon_sym_do] = ACTIONS(2478), + [anon_sym_if] = ACTIONS(2478), + [anon_sym_else] = ACTIONS(2478), + [anon_sym_match] = ACTIONS(2478), + [anon_sym_RBRACE] = ACTIONS(2480), + [anon_sym_try] = ACTIONS(2478), + [anon_sym_catch] = ACTIONS(2478), + [anon_sym_return] = ACTIONS(2478), + [anon_sym_source] = ACTIONS(2478), + [anon_sym_source_DASHenv] = ACTIONS(2478), + [anon_sym_register] = ACTIONS(2478), + [anon_sym_hide] = ACTIONS(2478), + [anon_sym_hide_DASHenv] = ACTIONS(2478), + [anon_sym_overlay] = ACTIONS(2478), + [anon_sym_new] = ACTIONS(2478), + [anon_sym_as] = ACTIONS(2478), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2480), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2480), + [aux_sym__val_number_decimal_token1] = ACTIONS(2478), + [aux_sym__val_number_decimal_token2] = ACTIONS(2480), + [aux_sym__val_number_decimal_token3] = ACTIONS(2480), + [aux_sym__val_number_decimal_token4] = ACTIONS(2480), + [aux_sym__val_number_token1] = ACTIONS(2480), + [aux_sym__val_number_token2] = ACTIONS(2480), + [aux_sym__val_number_token3] = ACTIONS(2480), + [anon_sym_DQUOTE] = ACTIONS(2480), + [sym__str_single_quotes] = ACTIONS(2480), + [sym__str_back_ticks] = ACTIONS(2480), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2480), + [anon_sym_PLUS] = ACTIONS(2478), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2480), }, - [699] = { - [sym__match_pattern_expression] = STATE(3060), - [sym__match_pattern_value] = STATE(3093), - [sym__match_pattern_list] = STATE(3094), - [sym__match_pattern_rest] = STATE(7698), - [sym__match_pattern_record] = STATE(3095), - [sym_expr_parenthesized] = STATE(2728), - [sym__spread_parenthesized] = STATE(7348), - [sym_val_range] = STATE(2981), - [sym__val_range] = STATE(7469), - [sym__val_range_with_end] = STATE(7194), - [sym__value] = STATE(7355), - [sym_val_nothing] = STATE(2972), - [sym_val_bool] = STATE(2851), - [sym__spread_variable] = STATE(7195), - [sym_val_variable] = STATE(2740), - [sym_val_number] = STATE(2972), - [sym__val_number_decimal] = STATE(2493), - [sym__val_number] = STATE(2915), - [sym_val_duration] = STATE(2972), - [sym_val_filesize] = STATE(2972), - [sym_val_binary] = STATE(2972), - [sym_val_string] = STATE(2972), - [sym__str_double_quotes] = STATE(2995), - [sym_val_interpolated] = STATE(521), - [sym__inter_single_quotes] = STATE(495), - [sym__inter_double_quotes] = STATE(556), - [sym_val_list] = STATE(7117), - [sym__spread_list] = STATE(7348), - [sym_list_body] = STATE(7426), - [sym_val_entry] = STATE(6844), - [sym_val_record] = STATE(521), - [sym_val_table] = STATE(2972), - [sym_val_closure] = STATE(521), - [sym__unquoted_in_list] = STATE(2853), - [sym__unquoted_in_list_with_expr] = STATE(7355), - [sym__unquoted_anonymous_prefix] = STATE(6960), - [sym_comment] = STATE(699), - [aux_sym_shebang_repeat1] = STATE(769), - [aux_sym_parameter_repeat2] = STATE(6485), - [aux_sym__match_pattern_list_repeat1] = STATE(1147), - [aux_sym_list_body_repeat1] = STATE(773), - [anon_sym_true] = ACTIONS(2537), - [anon_sym_false] = ACTIONS(2537), - [anon_sym_null] = ACTIONS(2539), - [aux_sym_cmd_identifier_token38] = ACTIONS(2541), + [666] = { + [sym_comment] = STATE(666), + [anon_sym_export] = ACTIONS(2539), + [anon_sym_alias] = ACTIONS(2539), + [anon_sym_let] = ACTIONS(2539), + [anon_sym_let_DASHenv] = ACTIONS(2539), + [anon_sym_mut] = ACTIONS(2539), + [anon_sym_const] = ACTIONS(2539), + [aux_sym_cmd_identifier_token1] = ACTIONS(2539), + [aux_sym_cmd_identifier_token2] = ACTIONS(2539), + [aux_sym_cmd_identifier_token3] = ACTIONS(2539), + [aux_sym_cmd_identifier_token4] = ACTIONS(2539), + [aux_sym_cmd_identifier_token5] = ACTIONS(2539), + [aux_sym_cmd_identifier_token6] = ACTIONS(2539), + [aux_sym_cmd_identifier_token7] = ACTIONS(2539), + [aux_sym_cmd_identifier_token8] = ACTIONS(2539), + [aux_sym_cmd_identifier_token9] = ACTIONS(2539), + [aux_sym_cmd_identifier_token10] = ACTIONS(2539), + [aux_sym_cmd_identifier_token11] = ACTIONS(2539), + [aux_sym_cmd_identifier_token12] = ACTIONS(2539), + [aux_sym_cmd_identifier_token13] = ACTIONS(2539), + [aux_sym_cmd_identifier_token14] = ACTIONS(2539), + [aux_sym_cmd_identifier_token15] = ACTIONS(2539), + [aux_sym_cmd_identifier_token16] = ACTIONS(2539), + [aux_sym_cmd_identifier_token17] = ACTIONS(2539), + [aux_sym_cmd_identifier_token18] = ACTIONS(2539), + [aux_sym_cmd_identifier_token19] = ACTIONS(2539), + [aux_sym_cmd_identifier_token20] = ACTIONS(2539), + [aux_sym_cmd_identifier_token21] = ACTIONS(2539), + [aux_sym_cmd_identifier_token22] = ACTIONS(2539), + [aux_sym_cmd_identifier_token23] = ACTIONS(2539), + [aux_sym_cmd_identifier_token24] = ACTIONS(2539), + [aux_sym_cmd_identifier_token25] = ACTIONS(2539), + [aux_sym_cmd_identifier_token26] = ACTIONS(2539), + [aux_sym_cmd_identifier_token27] = ACTIONS(2539), + [aux_sym_cmd_identifier_token28] = ACTIONS(2539), + [aux_sym_cmd_identifier_token29] = ACTIONS(2539), + [aux_sym_cmd_identifier_token30] = ACTIONS(2539), + [aux_sym_cmd_identifier_token31] = ACTIONS(2539), + [aux_sym_cmd_identifier_token32] = ACTIONS(2539), + [aux_sym_cmd_identifier_token33] = ACTIONS(2539), + [aux_sym_cmd_identifier_token34] = ACTIONS(2539), + [aux_sym_cmd_identifier_token35] = ACTIONS(2539), + [aux_sym_cmd_identifier_token36] = ACTIONS(2539), + [anon_sym_true] = ACTIONS(2541), + [anon_sym_false] = ACTIONS(2541), + [anon_sym_null] = ACTIONS(2541), + [aux_sym_cmd_identifier_token38] = ACTIONS(2539), [aux_sym_cmd_identifier_token39] = ACTIONS(2541), [aux_sym_cmd_identifier_token40] = ACTIONS(2541), - [sym__newline] = ACTIONS(2543), - [anon_sym_LBRACK] = ACTIONS(2545), - [anon_sym_RBRACK] = ACTIONS(2593), - [anon_sym_LPAREN] = ACTIONS(2549), - [anon_sym_COMMA] = ACTIONS(2551), - [anon_sym_DOLLAR] = ACTIONS(2553), - [anon_sym_LBRACE] = ACTIONS(2555), - [anon_sym_DOT_DOT] = ACTIONS(2557), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2559), - [anon_sym_DOT_DOT_LT] = ACTIONS(2559), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(2561), - [aux_sym__val_number_decimal_token2] = ACTIONS(2563), - [aux_sym__val_number_decimal_token3] = ACTIONS(2565), - [aux_sym__val_number_decimal_token4] = ACTIONS(2567), - [aux_sym__val_number_token1] = ACTIONS(2569), - [aux_sym__val_number_token2] = ACTIONS(2569), - [aux_sym__val_number_token3] = ACTIONS(2569), - [anon_sym_0b] = ACTIONS(2571), - [anon_sym_0o] = ACTIONS(2573), - [anon_sym_0x] = ACTIONS(2573), - [sym_val_date] = ACTIONS(2575), - [anon_sym_DQUOTE] = ACTIONS(2577), - [sym__str_single_quotes] = ACTIONS(2579), - [sym__str_back_ticks] = ACTIONS(2579), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [anon_sym_err_GT_GT] = ACTIONS(2589), - [anon_sym_out_GT_GT] = ACTIONS(2589), - [anon_sym_e_GT_GT] = ACTIONS(2589), - [anon_sym_o_GT_GT] = ACTIONS(2589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), - [anon_sym_POUND] = ACTIONS(247), - }, - [700] = { - [sym_expr_parenthesized] = STATE(1401), - [sym_val_range] = STATE(1735), - [sym__val_range] = STATE(7503), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(1735), - [sym_val_nothing] = STATE(1673), - [sym_val_bool] = STATE(1475), - [sym_val_variable] = STATE(1370), - [sym_val_number] = STATE(1673), - [sym__val_number_decimal] = STATE(1106), - [sym__val_number] = STATE(1734), - [sym_val_duration] = STATE(1673), - [sym_val_filesize] = STATE(1673), - [sym_val_binary] = STATE(1673), - [sym_val_string] = STATE(1673), - [sym__str_double_quotes] = STATE(1675), - [sym_val_interpolated] = STATE(1673), - [sym__inter_single_quotes] = STATE(1583), - [sym__inter_double_quotes] = STATE(1584), - [sym_val_list] = STATE(1673), - [sym_val_record] = STATE(1673), - [sym_val_table] = STATE(1673), - [sym_val_closure] = STATE(1673), - [sym__flag] = STATE(1735), - [sym_short_flag] = STATE(1633), - [sym_long_flag] = STATE(1633), - [sym_unquoted] = STATE(1483), - [sym__unquoted_with_expr] = STATE(1737), - [sym__unquoted_anonymous_prefix] = STATE(7099), - [sym_comment] = STATE(700), - [aux_sym_ctrl_do_repeat2] = STATE(706), - [anon_sym_true] = ACTIONS(2595), - [anon_sym_false] = ACTIONS(2595), - [anon_sym_null] = ACTIONS(2597), - [aux_sym_cmd_identifier_token38] = ACTIONS(2599), - [aux_sym_cmd_identifier_token39] = ACTIONS(2599), - [aux_sym_cmd_identifier_token40] = ACTIONS(2599), - [sym__newline] = ACTIONS(2601), - [anon_sym_SEMI] = ACTIONS(2601), - [anon_sym_PIPE] = ACTIONS(2601), - [anon_sym_err_GT_PIPE] = ACTIONS(2601), - [anon_sym_out_GT_PIPE] = ACTIONS(2601), - [anon_sym_e_GT_PIPE] = ACTIONS(2601), - [anon_sym_o_GT_PIPE] = ACTIONS(2601), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2601), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2601), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2601), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2601), - [anon_sym_LBRACK] = ACTIONS(2603), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_RPAREN] = ACTIONS(2601), - [anon_sym_DOLLAR] = ACTIONS(2607), - [anon_sym_DASH_DASH] = ACTIONS(2609), - [anon_sym_DASH] = ACTIONS(2611), - [anon_sym_LBRACE] = ACTIONS(2613), - [anon_sym_RBRACE] = ACTIONS(2601), - [anon_sym_DOT_DOT] = ACTIONS(2615), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2617), - [anon_sym_DOT_DOT_LT] = ACTIONS(2617), - [aux_sym__val_number_decimal_token1] = ACTIONS(2619), - [aux_sym__val_number_decimal_token2] = ACTIONS(2621), - [aux_sym__val_number_decimal_token3] = ACTIONS(2623), - [aux_sym__val_number_decimal_token4] = ACTIONS(2625), - [aux_sym__val_number_token1] = ACTIONS(2627), - [aux_sym__val_number_token2] = ACTIONS(2627), - [aux_sym__val_number_token3] = ACTIONS(2627), - [anon_sym_0b] = ACTIONS(2629), - [anon_sym_0o] = ACTIONS(2631), - [anon_sym_0x] = ACTIONS(2631), - [sym_val_date] = ACTIONS(2633), - [anon_sym_DQUOTE] = ACTIONS(2635), - [sym__str_single_quotes] = ACTIONS(2637), - [sym__str_back_ticks] = ACTIONS(2637), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2639), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2641), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(2647), - [anon_sym_POUND] = ACTIONS(247), - }, - [701] = { - [sym_expr_parenthesized] = STATE(1401), - [sym_val_range] = STATE(1735), - [sym__val_range] = STATE(7503), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(1735), - [sym_val_nothing] = STATE(1673), - [sym_val_bool] = STATE(1475), - [sym_val_variable] = STATE(1370), - [sym_val_number] = STATE(1673), - [sym__val_number_decimal] = STATE(1106), - [sym__val_number] = STATE(1734), - [sym_val_duration] = STATE(1673), - [sym_val_filesize] = STATE(1673), - [sym_val_binary] = STATE(1673), - [sym_val_string] = STATE(1673), - [sym__str_double_quotes] = STATE(1675), - [sym_val_interpolated] = STATE(1673), - [sym__inter_single_quotes] = STATE(1583), - [sym__inter_double_quotes] = STATE(1584), - [sym_val_list] = STATE(1673), - [sym_val_record] = STATE(1673), - [sym_val_table] = STATE(1673), - [sym_val_closure] = STATE(1673), - [sym__flag] = STATE(1735), - [sym_short_flag] = STATE(1633), - [sym_long_flag] = STATE(1633), - [sym_unquoted] = STATE(1483), - [sym__unquoted_with_expr] = STATE(1737), - [sym__unquoted_anonymous_prefix] = STATE(7099), - [sym_comment] = STATE(701), - [aux_sym_ctrl_do_repeat2] = STATE(706), - [anon_sym_true] = ACTIONS(2595), - [anon_sym_false] = ACTIONS(2595), - [anon_sym_null] = ACTIONS(2597), - [aux_sym_cmd_identifier_token38] = ACTIONS(2599), - [aux_sym_cmd_identifier_token39] = ACTIONS(2599), - [aux_sym_cmd_identifier_token40] = ACTIONS(2599), - [sym__newline] = ACTIONS(2649), - [anon_sym_SEMI] = ACTIONS(2649), - [anon_sym_PIPE] = ACTIONS(2649), - [anon_sym_err_GT_PIPE] = ACTIONS(2649), - [anon_sym_out_GT_PIPE] = ACTIONS(2649), - [anon_sym_e_GT_PIPE] = ACTIONS(2649), - [anon_sym_o_GT_PIPE] = ACTIONS(2649), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2649), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2649), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2649), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2649), - [anon_sym_LBRACK] = ACTIONS(2603), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_RPAREN] = ACTIONS(2649), - [anon_sym_DOLLAR] = ACTIONS(2607), - [anon_sym_DASH_DASH] = ACTIONS(2609), - [anon_sym_DASH] = ACTIONS(2611), - [anon_sym_LBRACE] = ACTIONS(2613), - [anon_sym_RBRACE] = ACTIONS(2649), - [anon_sym_DOT_DOT] = ACTIONS(2615), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2617), - [anon_sym_DOT_DOT_LT] = ACTIONS(2617), - [aux_sym__val_number_decimal_token1] = ACTIONS(2619), - [aux_sym__val_number_decimal_token2] = ACTIONS(2621), - [aux_sym__val_number_decimal_token3] = ACTIONS(2623), - [aux_sym__val_number_decimal_token4] = ACTIONS(2625), - [aux_sym__val_number_token1] = ACTIONS(2627), - [aux_sym__val_number_token2] = ACTIONS(2627), - [aux_sym__val_number_token3] = ACTIONS(2627), - [anon_sym_0b] = ACTIONS(2629), - [anon_sym_0o] = ACTIONS(2631), - [anon_sym_0x] = ACTIONS(2631), - [sym_val_date] = ACTIONS(2633), - [anon_sym_DQUOTE] = ACTIONS(2635), - [sym__str_single_quotes] = ACTIONS(2637), - [sym__str_back_ticks] = ACTIONS(2637), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2639), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2641), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(2647), - [anon_sym_POUND] = ACTIONS(247), - }, - [702] = { - [sym_expr_parenthesized] = STATE(1401), - [sym_val_range] = STATE(1735), - [sym__val_range] = STATE(7503), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(1735), - [sym_val_nothing] = STATE(1673), - [sym_val_bool] = STATE(1475), - [sym_val_variable] = STATE(1370), - [sym_val_number] = STATE(1673), - [sym__val_number_decimal] = STATE(1106), - [sym__val_number] = STATE(1734), - [sym_val_duration] = STATE(1673), - [sym_val_filesize] = STATE(1673), - [sym_val_binary] = STATE(1673), - [sym_val_string] = STATE(1673), - [sym__str_double_quotes] = STATE(1675), - [sym_val_interpolated] = STATE(1673), - [sym__inter_single_quotes] = STATE(1583), - [sym__inter_double_quotes] = STATE(1584), - [sym_val_list] = STATE(1673), - [sym_val_record] = STATE(1673), - [sym_val_table] = STATE(1673), - [sym_val_closure] = STATE(1673), - [sym__flag] = STATE(1735), - [sym_short_flag] = STATE(1633), - [sym_long_flag] = STATE(1633), - [sym_unquoted] = STATE(1483), - [sym__unquoted_with_expr] = STATE(1737), - [sym__unquoted_anonymous_prefix] = STATE(7099), - [sym_comment] = STATE(702), - [aux_sym_ctrl_do_repeat2] = STATE(700), - [anon_sym_true] = ACTIONS(2595), - [anon_sym_false] = ACTIONS(2595), - [anon_sym_null] = ACTIONS(2597), - [aux_sym_cmd_identifier_token38] = ACTIONS(2599), - [aux_sym_cmd_identifier_token39] = ACTIONS(2599), - [aux_sym_cmd_identifier_token40] = ACTIONS(2599), - [sym__newline] = ACTIONS(2649), - [anon_sym_SEMI] = ACTIONS(2649), - [anon_sym_PIPE] = ACTIONS(2649), - [anon_sym_err_GT_PIPE] = ACTIONS(2649), - [anon_sym_out_GT_PIPE] = ACTIONS(2649), - [anon_sym_e_GT_PIPE] = ACTIONS(2649), - [anon_sym_o_GT_PIPE] = ACTIONS(2649), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2649), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2649), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2649), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2649), - [anon_sym_LBRACK] = ACTIONS(2603), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_RPAREN] = ACTIONS(2649), - [anon_sym_DOLLAR] = ACTIONS(2607), - [anon_sym_DASH_DASH] = ACTIONS(2609), - [anon_sym_DASH] = ACTIONS(2611), - [anon_sym_LBRACE] = ACTIONS(2613), - [anon_sym_RBRACE] = ACTIONS(2649), - [anon_sym_DOT_DOT] = ACTIONS(2615), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2617), - [anon_sym_DOT_DOT_LT] = ACTIONS(2617), - [aux_sym__val_number_decimal_token1] = ACTIONS(2619), - [aux_sym__val_number_decimal_token2] = ACTIONS(2621), - [aux_sym__val_number_decimal_token3] = ACTIONS(2623), - [aux_sym__val_number_decimal_token4] = ACTIONS(2625), - [aux_sym__val_number_token1] = ACTIONS(2627), - [aux_sym__val_number_token2] = ACTIONS(2627), - [aux_sym__val_number_token3] = ACTIONS(2627), - [anon_sym_0b] = ACTIONS(2629), - [anon_sym_0o] = ACTIONS(2631), - [anon_sym_0x] = ACTIONS(2631), - [sym_val_date] = ACTIONS(2633), - [anon_sym_DQUOTE] = ACTIONS(2635), - [sym__str_single_quotes] = ACTIONS(2637), - [sym__str_back_ticks] = ACTIONS(2637), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2639), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2641), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(2647), - [anon_sym_POUND] = ACTIONS(247), - }, - [703] = { - [sym_expr_parenthesized] = STATE(1476), - [sym_val_range] = STATE(1895), - [sym__val_range] = STATE(7503), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(1895), - [sym_val_nothing] = STATE(1673), - [sym_val_bool] = STATE(1475), - [sym_val_variable] = STATE(1370), - [sym_val_number] = STATE(1673), - [sym__val_number_decimal] = STATE(1106), - [sym__val_number] = STATE(1734), - [sym_val_duration] = STATE(1673), - [sym_val_filesize] = STATE(1673), - [sym_val_binary] = STATE(1673), - [sym_val_string] = STATE(1673), - [sym__str_double_quotes] = STATE(1675), - [sym_val_interpolated] = STATE(1673), - [sym__inter_single_quotes] = STATE(1583), - [sym__inter_double_quotes] = STATE(1584), - [sym_val_list] = STATE(1673), - [sym_val_record] = STATE(1673), - [sym_val_table] = STATE(1673), - [sym_val_closure] = STATE(1673), - [sym__flag] = STATE(1895), - [sym_short_flag] = STATE(1633), - [sym_long_flag] = STATE(1633), - [sym_unquoted] = STATE(1533), - [sym__unquoted_with_expr] = STATE(1897), - [sym__unquoted_anonymous_prefix] = STATE(7099), - [sym_comment] = STATE(703), - [aux_sym_shebang_repeat1] = STATE(786), - [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(704), - [anon_sym_true] = ACTIONS(2595), - [anon_sym_false] = ACTIONS(2595), - [anon_sym_null] = ACTIONS(2597), - [aux_sym_cmd_identifier_token38] = ACTIONS(2599), - [aux_sym_cmd_identifier_token39] = ACTIONS(2599), - [aux_sym_cmd_identifier_token40] = ACTIONS(2599), - [sym__newline] = ACTIONS(2651), - [anon_sym_SEMI] = ACTIONS(2651), - [anon_sym_PIPE] = ACTIONS(2651), - [anon_sym_err_GT_PIPE] = ACTIONS(2651), - [anon_sym_out_GT_PIPE] = ACTIONS(2651), - [anon_sym_e_GT_PIPE] = ACTIONS(2651), - [anon_sym_o_GT_PIPE] = ACTIONS(2651), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2651), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2651), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2651), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2651), - [anon_sym_LBRACK] = ACTIONS(2603), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_RPAREN] = ACTIONS(2651), - [anon_sym_DOLLAR] = ACTIONS(2607), - [anon_sym_DASH_DASH] = ACTIONS(2609), - [anon_sym_DASH] = ACTIONS(2611), - [anon_sym_LBRACE] = ACTIONS(2613), - [anon_sym_DOT_DOT] = ACTIONS(2615), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2617), - [anon_sym_DOT_DOT_LT] = ACTIONS(2617), - [aux_sym__val_number_decimal_token1] = ACTIONS(2619), - [aux_sym__val_number_decimal_token2] = ACTIONS(2621), - [aux_sym__val_number_decimal_token3] = ACTIONS(2623), - [aux_sym__val_number_decimal_token4] = ACTIONS(2625), - [aux_sym__val_number_token1] = ACTIONS(2627), - [aux_sym__val_number_token2] = ACTIONS(2627), - [aux_sym__val_number_token3] = ACTIONS(2627), - [anon_sym_0b] = ACTIONS(2629), - [anon_sym_0o] = ACTIONS(2631), - [anon_sym_0x] = ACTIONS(2631), - [sym_val_date] = ACTIONS(2633), - [anon_sym_DQUOTE] = ACTIONS(2635), - [sym__str_single_quotes] = ACTIONS(2637), - [sym__str_back_ticks] = ACTIONS(2637), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2639), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2641), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(2647), - [anon_sym_POUND] = ACTIONS(247), - }, - [704] = { - [sym_expr_parenthesized] = STATE(1476), - [sym_val_range] = STATE(1895), - [sym__val_range] = STATE(7503), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(1895), - [sym_val_nothing] = STATE(1673), - [sym_val_bool] = STATE(1475), - [sym_val_variable] = STATE(1370), - [sym_val_number] = STATE(1673), - [sym__val_number_decimal] = STATE(1106), - [sym__val_number] = STATE(1734), - [sym_val_duration] = STATE(1673), - [sym_val_filesize] = STATE(1673), - [sym_val_binary] = STATE(1673), - [sym_val_string] = STATE(1673), - [sym__str_double_quotes] = STATE(1675), - [sym_val_interpolated] = STATE(1673), - [sym__inter_single_quotes] = STATE(1583), - [sym__inter_double_quotes] = STATE(1584), - [sym_val_list] = STATE(1673), - [sym_val_record] = STATE(1673), - [sym_val_table] = STATE(1673), - [sym_val_closure] = STATE(1673), - [sym__flag] = STATE(1895), - [sym_short_flag] = STATE(1633), - [sym_long_flag] = STATE(1633), - [sym_unquoted] = STATE(1533), - [sym__unquoted_with_expr] = STATE(1897), - [sym__unquoted_anonymous_prefix] = STATE(7099), - [sym_comment] = STATE(704), - [aux_sym_shebang_repeat1] = STATE(786), - [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(709), - [anon_sym_true] = ACTIONS(2595), - [anon_sym_false] = ACTIONS(2595), - [anon_sym_null] = ACTIONS(2597), - [aux_sym_cmd_identifier_token38] = ACTIONS(2599), - [aux_sym_cmd_identifier_token39] = ACTIONS(2599), - [aux_sym_cmd_identifier_token40] = ACTIONS(2599), - [sym__newline] = ACTIONS(2653), - [anon_sym_SEMI] = ACTIONS(2655), - [anon_sym_PIPE] = ACTIONS(2655), - [anon_sym_err_GT_PIPE] = ACTIONS(2655), - [anon_sym_out_GT_PIPE] = ACTIONS(2655), - [anon_sym_e_GT_PIPE] = ACTIONS(2655), - [anon_sym_o_GT_PIPE] = ACTIONS(2655), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2655), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2655), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2655), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2655), - [anon_sym_LBRACK] = ACTIONS(2603), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_RPAREN] = ACTIONS(2655), - [anon_sym_DOLLAR] = ACTIONS(2607), - [anon_sym_DASH_DASH] = ACTIONS(2609), - [anon_sym_DASH] = ACTIONS(2611), - [anon_sym_LBRACE] = ACTIONS(2613), - [anon_sym_DOT_DOT] = ACTIONS(2615), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2617), - [anon_sym_DOT_DOT_LT] = ACTIONS(2617), - [aux_sym__val_number_decimal_token1] = ACTIONS(2619), - [aux_sym__val_number_decimal_token2] = ACTIONS(2621), - [aux_sym__val_number_decimal_token3] = ACTIONS(2623), - [aux_sym__val_number_decimal_token4] = ACTIONS(2625), - [aux_sym__val_number_token1] = ACTIONS(2627), - [aux_sym__val_number_token2] = ACTIONS(2627), - [aux_sym__val_number_token3] = ACTIONS(2627), - [anon_sym_0b] = ACTIONS(2629), - [anon_sym_0o] = ACTIONS(2631), - [anon_sym_0x] = ACTIONS(2631), - [sym_val_date] = ACTIONS(2633), - [anon_sym_DQUOTE] = ACTIONS(2635), - [sym__str_single_quotes] = ACTIONS(2637), - [sym__str_back_ticks] = ACTIONS(2637), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2639), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2641), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(2647), - [anon_sym_POUND] = ACTIONS(247), - }, - [705] = { - [sym_expr_parenthesized] = STATE(1476), - [sym_val_range] = STATE(1895), - [sym__val_range] = STATE(7503), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(1895), - [sym_val_nothing] = STATE(1673), - [sym_val_bool] = STATE(1475), - [sym_val_variable] = STATE(1370), - [sym_val_number] = STATE(1673), - [sym__val_number_decimal] = STATE(1106), - [sym__val_number] = STATE(1734), - [sym_val_duration] = STATE(1673), - [sym_val_filesize] = STATE(1673), - [sym_val_binary] = STATE(1673), - [sym_val_string] = STATE(1673), - [sym__str_double_quotes] = STATE(1675), - [sym_val_interpolated] = STATE(1673), - [sym__inter_single_quotes] = STATE(1583), - [sym__inter_double_quotes] = STATE(1584), - [sym_val_list] = STATE(1673), - [sym_val_record] = STATE(1673), - [sym_val_table] = STATE(1673), - [sym_val_closure] = STATE(1673), - [sym__flag] = STATE(1895), - [sym_short_flag] = STATE(1633), - [sym_long_flag] = STATE(1633), - [sym_unquoted] = STATE(1533), - [sym__unquoted_with_expr] = STATE(1897), - [sym__unquoted_anonymous_prefix] = STATE(7099), - [sym_comment] = STATE(705), - [aux_sym_shebang_repeat1] = STATE(786), - [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(709), - [anon_sym_true] = ACTIONS(2595), - [anon_sym_false] = ACTIONS(2595), - [anon_sym_null] = ACTIONS(2597), - [aux_sym_cmd_identifier_token38] = ACTIONS(2599), - [aux_sym_cmd_identifier_token39] = ACTIONS(2599), - [aux_sym_cmd_identifier_token40] = ACTIONS(2599), - [sym__newline] = ACTIONS(2653), - [anon_sym_SEMI] = ACTIONS(2657), - [anon_sym_PIPE] = ACTIONS(2657), - [anon_sym_err_GT_PIPE] = ACTIONS(2657), - [anon_sym_out_GT_PIPE] = ACTIONS(2657), - [anon_sym_e_GT_PIPE] = ACTIONS(2657), - [anon_sym_o_GT_PIPE] = ACTIONS(2657), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2657), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2657), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2657), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2657), - [anon_sym_LBRACK] = ACTIONS(2603), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_RPAREN] = ACTIONS(2657), - [anon_sym_DOLLAR] = ACTIONS(2607), - [anon_sym_DASH_DASH] = ACTIONS(2609), - [anon_sym_DASH] = ACTIONS(2611), - [anon_sym_LBRACE] = ACTIONS(2613), - [anon_sym_DOT_DOT] = ACTIONS(2615), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2617), - [anon_sym_DOT_DOT_LT] = ACTIONS(2617), - [aux_sym__val_number_decimal_token1] = ACTIONS(2619), - [aux_sym__val_number_decimal_token2] = ACTIONS(2621), - [aux_sym__val_number_decimal_token3] = ACTIONS(2623), - [aux_sym__val_number_decimal_token4] = ACTIONS(2625), - [aux_sym__val_number_token1] = ACTIONS(2627), - [aux_sym__val_number_token2] = ACTIONS(2627), - [aux_sym__val_number_token3] = ACTIONS(2627), - [anon_sym_0b] = ACTIONS(2629), - [anon_sym_0o] = ACTIONS(2631), - [anon_sym_0x] = ACTIONS(2631), - [sym_val_date] = ACTIONS(2633), - [anon_sym_DQUOTE] = ACTIONS(2635), - [sym__str_single_quotes] = ACTIONS(2637), - [sym__str_back_ticks] = ACTIONS(2637), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2639), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2641), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(2647), - [anon_sym_POUND] = ACTIONS(247), - }, - [706] = { - [sym_expr_parenthesized] = STATE(1401), - [sym_val_range] = STATE(1735), - [sym__val_range] = STATE(7503), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(1735), - [sym_val_nothing] = STATE(1673), - [sym_val_bool] = STATE(1475), - [sym_val_variable] = STATE(1370), - [sym_val_number] = STATE(1673), - [sym__val_number_decimal] = STATE(1106), - [sym__val_number] = STATE(1734), - [sym_val_duration] = STATE(1673), - [sym_val_filesize] = STATE(1673), - [sym_val_binary] = STATE(1673), - [sym_val_string] = STATE(1673), - [sym__str_double_quotes] = STATE(1675), - [sym_val_interpolated] = STATE(1673), - [sym__inter_single_quotes] = STATE(1583), - [sym__inter_double_quotes] = STATE(1584), - [sym_val_list] = STATE(1673), - [sym_val_record] = STATE(1673), - [sym_val_table] = STATE(1673), - [sym_val_closure] = STATE(1673), - [sym__flag] = STATE(1735), - [sym_short_flag] = STATE(1633), - [sym_long_flag] = STATE(1633), - [sym_unquoted] = STATE(1483), - [sym__unquoted_with_expr] = STATE(1737), - [sym__unquoted_anonymous_prefix] = STATE(7099), - [sym_comment] = STATE(706), - [aux_sym_ctrl_do_repeat2] = STATE(706), - [anon_sym_true] = ACTIONS(2659), - [anon_sym_false] = ACTIONS(2659), - [anon_sym_null] = ACTIONS(2662), - [aux_sym_cmd_identifier_token38] = ACTIONS(2665), - [aux_sym_cmd_identifier_token39] = ACTIONS(2665), - [aux_sym_cmd_identifier_token40] = ACTIONS(2665), - [sym__newline] = ACTIONS(2668), - [anon_sym_SEMI] = ACTIONS(2668), - [anon_sym_PIPE] = ACTIONS(2668), - [anon_sym_err_GT_PIPE] = ACTIONS(2668), - [anon_sym_out_GT_PIPE] = ACTIONS(2668), - [anon_sym_e_GT_PIPE] = ACTIONS(2668), - [anon_sym_o_GT_PIPE] = ACTIONS(2668), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2668), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2668), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2668), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2668), - [anon_sym_LBRACK] = ACTIONS(2670), - [anon_sym_LPAREN] = ACTIONS(2673), - [anon_sym_RPAREN] = ACTIONS(2668), - [anon_sym_DOLLAR] = ACTIONS(2676), - [anon_sym_DASH_DASH] = ACTIONS(2679), - [anon_sym_DASH] = ACTIONS(2682), - [anon_sym_LBRACE] = ACTIONS(2685), - [anon_sym_RBRACE] = ACTIONS(2668), - [anon_sym_DOT_DOT] = ACTIONS(2688), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2691), - [anon_sym_DOT_DOT_LT] = ACTIONS(2691), - [aux_sym__val_number_decimal_token1] = ACTIONS(2694), - [aux_sym__val_number_decimal_token2] = ACTIONS(2697), - [aux_sym__val_number_decimal_token3] = ACTIONS(2700), - [aux_sym__val_number_decimal_token4] = ACTIONS(2703), - [aux_sym__val_number_token1] = ACTIONS(2706), - [aux_sym__val_number_token2] = ACTIONS(2706), - [aux_sym__val_number_token3] = ACTIONS(2706), - [anon_sym_0b] = ACTIONS(2709), - [anon_sym_0o] = ACTIONS(2712), - [anon_sym_0x] = ACTIONS(2712), - [sym_val_date] = ACTIONS(2715), - [anon_sym_DQUOTE] = ACTIONS(2718), - [sym__str_single_quotes] = ACTIONS(2721), - [sym__str_back_ticks] = ACTIONS(2721), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2724), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2727), - [anon_sym_err_GT] = ACTIONS(2730), - [anon_sym_out_GT] = ACTIONS(2730), - [anon_sym_e_GT] = ACTIONS(2730), - [anon_sym_o_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT] = ACTIONS(2730), - [anon_sym_err_GT_GT] = ACTIONS(2733), - [anon_sym_out_GT_GT] = ACTIONS(2733), - [anon_sym_e_GT_GT] = ACTIONS(2733), - [anon_sym_o_GT_GT] = ACTIONS(2733), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2733), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2733), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2733), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2733), - [aux_sym_unquoted_token1] = ACTIONS(2736), - [anon_sym_POUND] = ACTIONS(247), - }, - [707] = { - [sym_expr_parenthesized] = STATE(1476), - [sym_val_range] = STATE(1895), - [sym__val_range] = STATE(7503), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(1895), - [sym_val_nothing] = STATE(1673), - [sym_val_bool] = STATE(1475), - [sym_val_variable] = STATE(1370), - [sym_val_number] = STATE(1673), - [sym__val_number_decimal] = STATE(1106), - [sym__val_number] = STATE(1734), - [sym_val_duration] = STATE(1673), - [sym_val_filesize] = STATE(1673), - [sym_val_binary] = STATE(1673), - [sym_val_string] = STATE(1673), - [sym__str_double_quotes] = STATE(1675), - [sym_val_interpolated] = STATE(1673), - [sym__inter_single_quotes] = STATE(1583), - [sym__inter_double_quotes] = STATE(1584), - [sym_val_list] = STATE(1673), - [sym_val_record] = STATE(1673), - [sym_val_table] = STATE(1673), - [sym_val_closure] = STATE(1673), - [sym__flag] = STATE(1895), - [sym_short_flag] = STATE(1633), - [sym_long_flag] = STATE(1633), - [sym_unquoted] = STATE(1533), - [sym__unquoted_with_expr] = STATE(1897), - [sym__unquoted_anonymous_prefix] = STATE(7099), - [sym_comment] = STATE(707), - [aux_sym_shebang_repeat1] = STATE(786), - [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(705), - [anon_sym_true] = ACTIONS(2595), - [anon_sym_false] = ACTIONS(2595), - [anon_sym_null] = ACTIONS(2597), - [aux_sym_cmd_identifier_token38] = ACTIONS(2599), - [aux_sym_cmd_identifier_token39] = ACTIONS(2599), - [aux_sym_cmd_identifier_token40] = ACTIONS(2599), - [sym__newline] = ACTIONS(2655), - [anon_sym_SEMI] = ACTIONS(2655), - [anon_sym_PIPE] = ACTIONS(2655), - [anon_sym_err_GT_PIPE] = ACTIONS(2655), - [anon_sym_out_GT_PIPE] = ACTIONS(2655), - [anon_sym_e_GT_PIPE] = ACTIONS(2655), - [anon_sym_o_GT_PIPE] = ACTIONS(2655), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2655), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2655), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2655), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2655), - [anon_sym_LBRACK] = ACTIONS(2603), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_RPAREN] = ACTIONS(2655), - [anon_sym_DOLLAR] = ACTIONS(2607), - [anon_sym_DASH_DASH] = ACTIONS(2609), - [anon_sym_DASH] = ACTIONS(2611), - [anon_sym_LBRACE] = ACTIONS(2613), - [anon_sym_DOT_DOT] = ACTIONS(2615), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2617), - [anon_sym_DOT_DOT_LT] = ACTIONS(2617), - [aux_sym__val_number_decimal_token1] = ACTIONS(2619), - [aux_sym__val_number_decimal_token2] = ACTIONS(2621), - [aux_sym__val_number_decimal_token3] = ACTIONS(2623), - [aux_sym__val_number_decimal_token4] = ACTIONS(2625), - [aux_sym__val_number_token1] = ACTIONS(2627), - [aux_sym__val_number_token2] = ACTIONS(2627), - [aux_sym__val_number_token3] = ACTIONS(2627), - [anon_sym_0b] = ACTIONS(2629), - [anon_sym_0o] = ACTIONS(2631), - [anon_sym_0x] = ACTIONS(2631), - [sym_val_date] = ACTIONS(2633), - [anon_sym_DQUOTE] = ACTIONS(2635), - [sym__str_single_quotes] = ACTIONS(2637), - [sym__str_back_ticks] = ACTIONS(2637), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2639), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2641), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(2647), - [anon_sym_POUND] = ACTIONS(247), - }, - [708] = { - [sym_expr_parenthesized] = STATE(1401), - [sym_val_range] = STATE(1735), - [sym__val_range] = STATE(7503), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(1735), - [sym_val_nothing] = STATE(1673), - [sym_val_bool] = STATE(1475), - [sym_val_variable] = STATE(1370), - [sym_val_number] = STATE(1673), - [sym__val_number_decimal] = STATE(1106), - [sym__val_number] = STATE(1734), - [sym_val_duration] = STATE(1673), - [sym_val_filesize] = STATE(1673), - [sym_val_binary] = STATE(1673), - [sym_val_string] = STATE(1673), - [sym__str_double_quotes] = STATE(1675), - [sym_val_interpolated] = STATE(1673), - [sym__inter_single_quotes] = STATE(1583), - [sym__inter_double_quotes] = STATE(1584), - [sym_val_list] = STATE(1673), - [sym_val_record] = STATE(1673), - [sym_val_table] = STATE(1673), - [sym_val_closure] = STATE(1673), - [sym__flag] = STATE(1735), - [sym_short_flag] = STATE(1633), - [sym_long_flag] = STATE(1633), - [sym_unquoted] = STATE(1483), - [sym__unquoted_with_expr] = STATE(1737), - [sym__unquoted_anonymous_prefix] = STATE(7099), - [sym_comment] = STATE(708), - [aux_sym_ctrl_do_repeat2] = STATE(701), - [anon_sym_true] = ACTIONS(2595), - [anon_sym_false] = ACTIONS(2595), - [anon_sym_null] = ACTIONS(2597), - [aux_sym_cmd_identifier_token38] = ACTIONS(2599), - [aux_sym_cmd_identifier_token39] = ACTIONS(2599), - [aux_sym_cmd_identifier_token40] = ACTIONS(2599), - [sym__newline] = ACTIONS(2739), - [anon_sym_SEMI] = ACTIONS(2739), - [anon_sym_PIPE] = ACTIONS(2739), - [anon_sym_err_GT_PIPE] = ACTIONS(2739), - [anon_sym_out_GT_PIPE] = ACTIONS(2739), - [anon_sym_e_GT_PIPE] = ACTIONS(2739), - [anon_sym_o_GT_PIPE] = ACTIONS(2739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2739), - [anon_sym_LBRACK] = ACTIONS(2603), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_RPAREN] = ACTIONS(2739), - [anon_sym_DOLLAR] = ACTIONS(2607), - [anon_sym_DASH_DASH] = ACTIONS(2609), - [anon_sym_DASH] = ACTIONS(2611), - [anon_sym_LBRACE] = ACTIONS(2613), - [anon_sym_RBRACE] = ACTIONS(2739), - [anon_sym_DOT_DOT] = ACTIONS(2615), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2617), - [anon_sym_DOT_DOT_LT] = ACTIONS(2617), - [aux_sym__val_number_decimal_token1] = ACTIONS(2619), - [aux_sym__val_number_decimal_token2] = ACTIONS(2621), - [aux_sym__val_number_decimal_token3] = ACTIONS(2623), - [aux_sym__val_number_decimal_token4] = ACTIONS(2625), - [aux_sym__val_number_token1] = ACTIONS(2627), - [aux_sym__val_number_token2] = ACTIONS(2627), - [aux_sym__val_number_token3] = ACTIONS(2627), - [anon_sym_0b] = ACTIONS(2629), - [anon_sym_0o] = ACTIONS(2631), - [anon_sym_0x] = ACTIONS(2631), - [sym_val_date] = ACTIONS(2633), - [anon_sym_DQUOTE] = ACTIONS(2635), - [sym__str_single_quotes] = ACTIONS(2637), - [sym__str_back_ticks] = ACTIONS(2637), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2639), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2641), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(2647), - [anon_sym_POUND] = ACTIONS(247), - }, - [709] = { - [sym_expr_parenthesized] = STATE(1476), - [sym_val_range] = STATE(1895), - [sym__val_range] = STATE(7503), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(1895), - [sym_val_nothing] = STATE(1673), - [sym_val_bool] = STATE(1475), - [sym_val_variable] = STATE(1370), - [sym_val_number] = STATE(1673), - [sym__val_number_decimal] = STATE(1106), - [sym__val_number] = STATE(1734), - [sym_val_duration] = STATE(1673), - [sym_val_filesize] = STATE(1673), - [sym_val_binary] = STATE(1673), - [sym_val_string] = STATE(1673), - [sym__str_double_quotes] = STATE(1675), - [sym_val_interpolated] = STATE(1673), - [sym__inter_single_quotes] = STATE(1583), - [sym__inter_double_quotes] = STATE(1584), - [sym_val_list] = STATE(1673), - [sym_val_record] = STATE(1673), - [sym_val_table] = STATE(1673), - [sym_val_closure] = STATE(1673), - [sym__flag] = STATE(1895), - [sym_short_flag] = STATE(1633), - [sym_long_flag] = STATE(1633), - [sym_unquoted] = STATE(1533), - [sym__unquoted_with_expr] = STATE(1897), - [sym__unquoted_anonymous_prefix] = STATE(7099), - [sym_comment] = STATE(709), - [aux_sym_shebang_repeat1] = STATE(786), - [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(709), - [anon_sym_true] = ACTIONS(2741), - [anon_sym_false] = ACTIONS(2741), - [anon_sym_null] = ACTIONS(2744), - [aux_sym_cmd_identifier_token38] = ACTIONS(2747), - [aux_sym_cmd_identifier_token39] = ACTIONS(2747), - [aux_sym_cmd_identifier_token40] = ACTIONS(2747), - [sym__newline] = ACTIONS(2750), - [anon_sym_SEMI] = ACTIONS(2753), - [anon_sym_PIPE] = ACTIONS(2753), - [anon_sym_err_GT_PIPE] = ACTIONS(2753), - [anon_sym_out_GT_PIPE] = ACTIONS(2753), - [anon_sym_e_GT_PIPE] = ACTIONS(2753), - [anon_sym_o_GT_PIPE] = ACTIONS(2753), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2753), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2753), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2753), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2753), - [anon_sym_LBRACK] = ACTIONS(2755), - [anon_sym_LPAREN] = ACTIONS(2758), - [anon_sym_RPAREN] = ACTIONS(2753), - [anon_sym_DOLLAR] = ACTIONS(2761), - [anon_sym_DASH_DASH] = ACTIONS(2764), - [anon_sym_DASH] = ACTIONS(2767), - [anon_sym_LBRACE] = ACTIONS(2770), - [anon_sym_DOT_DOT] = ACTIONS(2773), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2776), - [anon_sym_DOT_DOT_LT] = ACTIONS(2776), - [aux_sym__val_number_decimal_token1] = ACTIONS(2779), - [aux_sym__val_number_decimal_token2] = ACTIONS(2782), - [aux_sym__val_number_decimal_token3] = ACTIONS(2785), - [aux_sym__val_number_decimal_token4] = ACTIONS(2788), - [aux_sym__val_number_token1] = ACTIONS(2791), - [aux_sym__val_number_token2] = ACTIONS(2791), - [aux_sym__val_number_token3] = ACTIONS(2791), - [anon_sym_0b] = ACTIONS(2794), - [anon_sym_0o] = ACTIONS(2797), - [anon_sym_0x] = ACTIONS(2797), - [sym_val_date] = ACTIONS(2800), - [anon_sym_DQUOTE] = ACTIONS(2803), - [sym__str_single_quotes] = ACTIONS(2806), - [sym__str_back_ticks] = ACTIONS(2806), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2809), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2812), - [anon_sym_err_GT] = ACTIONS(2815), - [anon_sym_out_GT] = ACTIONS(2815), - [anon_sym_e_GT] = ACTIONS(2815), - [anon_sym_o_GT] = ACTIONS(2815), - [anon_sym_err_PLUSout_GT] = ACTIONS(2815), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2815), - [anon_sym_o_PLUSe_GT] = ACTIONS(2815), - [anon_sym_e_PLUSo_GT] = ACTIONS(2815), - [anon_sym_err_GT_GT] = ACTIONS(2818), - [anon_sym_out_GT_GT] = ACTIONS(2818), - [anon_sym_e_GT_GT] = ACTIONS(2818), - [anon_sym_o_GT_GT] = ACTIONS(2818), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2818), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2818), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2818), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2818), - [aux_sym_unquoted_token1] = ACTIONS(2821), - [anon_sym_POUND] = ACTIONS(247), - }, - [710] = { - [sym_expr_parenthesized] = STATE(1443), - [sym_val_range] = STATE(1821), - [sym__val_range] = STATE(7461), - [sym__val_range_with_end] = STATE(7212), - [sym__value] = STATE(1821), - [sym_val_nothing] = STATE(1887), - [sym_val_bool] = STATE(1510), - [sym_val_variable] = STATE(1455), - [sym_val_number] = STATE(1887), - [sym__val_number_decimal] = STATE(1148), - [sym__val_number] = STATE(1800), - [sym_val_duration] = STATE(1887), - [sym_val_filesize] = STATE(1887), - [sym_val_binary] = STATE(1887), - [sym_val_string] = STATE(1887), - [sym__str_double_quotes] = STATE(1944), - [sym_val_interpolated] = STATE(1887), - [sym__inter_single_quotes] = STATE(1945), - [sym__inter_double_quotes] = STATE(1946), - [sym_val_list] = STATE(1887), - [sym_val_record] = STATE(1887), - [sym_val_table] = STATE(1887), - [sym_val_closure] = STATE(1887), - [sym__flag] = STATE(1821), - [sym_short_flag] = STATE(1953), - [sym_long_flag] = STATE(1953), - [sym_unquoted] = STATE(1507), - [sym__unquoted_with_expr] = STATE(1829), - [sym__unquoted_anonymous_prefix] = STATE(6954), - [sym_comment] = STATE(710), - [aux_sym_ctrl_do_repeat2] = STATE(714), - [ts_builtin_sym_end] = ACTIONS(2649), - [anon_sym_true] = ACTIONS(2824), - [anon_sym_false] = ACTIONS(2824), - [anon_sym_null] = ACTIONS(2826), - [aux_sym_cmd_identifier_token38] = ACTIONS(2828), - [aux_sym_cmd_identifier_token39] = ACTIONS(2828), - [aux_sym_cmd_identifier_token40] = ACTIONS(2828), - [sym__newline] = ACTIONS(2649), - [anon_sym_SEMI] = ACTIONS(2649), - [anon_sym_PIPE] = ACTIONS(2649), - [anon_sym_err_GT_PIPE] = ACTIONS(2649), - [anon_sym_out_GT_PIPE] = ACTIONS(2649), - [anon_sym_e_GT_PIPE] = ACTIONS(2649), - [anon_sym_o_GT_PIPE] = ACTIONS(2649), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2649), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2649), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2649), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2649), - [anon_sym_LBRACK] = ACTIONS(2830), - [anon_sym_LPAREN] = ACTIONS(2832), - [anon_sym_DOLLAR] = ACTIONS(2834), - [anon_sym_DASH_DASH] = ACTIONS(2836), - [anon_sym_DASH] = ACTIONS(2838), - [anon_sym_LBRACE] = ACTIONS(2840), - [anon_sym_DOT_DOT] = ACTIONS(2842), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2844), - [anon_sym_DOT_DOT_LT] = ACTIONS(2844), - [aux_sym__val_number_decimal_token1] = ACTIONS(2846), - [aux_sym__val_number_decimal_token2] = ACTIONS(2848), - [aux_sym__val_number_decimal_token3] = ACTIONS(2850), - [aux_sym__val_number_decimal_token4] = ACTIONS(2852), - [aux_sym__val_number_token1] = ACTIONS(2854), - [aux_sym__val_number_token2] = ACTIONS(2854), - [aux_sym__val_number_token3] = ACTIONS(2854), - [anon_sym_0b] = ACTIONS(2856), - [anon_sym_0o] = ACTIONS(2858), - [anon_sym_0x] = ACTIONS(2858), - [sym_val_date] = ACTIONS(2860), - [anon_sym_DQUOTE] = ACTIONS(2862), - [sym__str_single_quotes] = ACTIONS(2864), - [sym__str_back_ticks] = ACTIONS(2864), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2866), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2868), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(2870), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_def] = ACTIONS(2539), + [anon_sym_export_DASHenv] = ACTIONS(2539), + [anon_sym_extern] = ACTIONS(2539), + [anon_sym_module] = ACTIONS(2539), + [anon_sym_use] = ACTIONS(2539), + [anon_sym_LPAREN] = ACTIONS(2541), + [anon_sym_DOLLAR] = ACTIONS(2541), + [anon_sym_error] = ACTIONS(2539), + [anon_sym_list] = ACTIONS(2539), + [anon_sym_DASH] = ACTIONS(2539), + [anon_sym_break] = ACTIONS(2539), + [anon_sym_continue] = ACTIONS(2539), + [anon_sym_for] = ACTIONS(2539), + [anon_sym_in] = ACTIONS(2539), + [anon_sym_loop] = ACTIONS(2539), + [anon_sym_make] = ACTIONS(2539), + [anon_sym_while] = ACTIONS(2539), + [anon_sym_do] = ACTIONS(2539), + [anon_sym_if] = ACTIONS(2539), + [anon_sym_else] = ACTIONS(2539), + [anon_sym_match] = ACTIONS(2539), + [anon_sym_RBRACE] = ACTIONS(2541), + [anon_sym_try] = ACTIONS(2539), + [anon_sym_catch] = ACTIONS(2539), + [anon_sym_return] = ACTIONS(2539), + [anon_sym_source] = ACTIONS(2539), + [anon_sym_source_DASHenv] = ACTIONS(2539), + [anon_sym_register] = ACTIONS(2539), + [anon_sym_hide] = ACTIONS(2539), + [anon_sym_hide_DASHenv] = ACTIONS(2539), + [anon_sym_overlay] = ACTIONS(2539), + [anon_sym_new] = ACTIONS(2539), + [anon_sym_as] = ACTIONS(2539), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2541), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2541), + [aux_sym__val_number_decimal_token1] = ACTIONS(2539), + [aux_sym__val_number_decimal_token2] = ACTIONS(2541), + [aux_sym__val_number_decimal_token3] = ACTIONS(2541), + [aux_sym__val_number_decimal_token4] = ACTIONS(2541), + [aux_sym__val_number_token1] = ACTIONS(2541), + [aux_sym__val_number_token2] = ACTIONS(2541), + [aux_sym__val_number_token3] = ACTIONS(2541), + [anon_sym_DQUOTE] = ACTIONS(2541), + [sym__str_single_quotes] = ACTIONS(2541), + [sym__str_back_ticks] = ACTIONS(2541), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2541), + [anon_sym_PLUS] = ACTIONS(2539), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2541), }, - [711] = { - [sym_expr_parenthesized] = STATE(1443), - [sym_val_range] = STATE(1821), - [sym__val_range] = STATE(7461), - [sym__val_range_with_end] = STATE(7212), - [sym__value] = STATE(1821), - [sym_val_nothing] = STATE(1887), - [sym_val_bool] = STATE(1510), - [sym_val_variable] = STATE(1455), - [sym_val_number] = STATE(1887), - [sym__val_number_decimal] = STATE(1148), - [sym__val_number] = STATE(1800), - [sym_val_duration] = STATE(1887), - [sym_val_filesize] = STATE(1887), - [sym_val_binary] = STATE(1887), - [sym_val_string] = STATE(1887), - [sym__str_double_quotes] = STATE(1944), - [sym_val_interpolated] = STATE(1887), - [sym__inter_single_quotes] = STATE(1945), - [sym__inter_double_quotes] = STATE(1946), - [sym_val_list] = STATE(1887), - [sym_val_record] = STATE(1887), - [sym_val_table] = STATE(1887), - [sym_val_closure] = STATE(1887), - [sym__flag] = STATE(1821), - [sym_short_flag] = STATE(1953), - [sym_long_flag] = STATE(1953), - [sym_unquoted] = STATE(1507), - [sym__unquoted_with_expr] = STATE(1829), - [sym__unquoted_anonymous_prefix] = STATE(6954), - [sym_comment] = STATE(711), - [aux_sym_ctrl_do_repeat2] = STATE(712), - [ts_builtin_sym_end] = ACTIONS(2739), - [anon_sym_true] = ACTIONS(2824), - [anon_sym_false] = ACTIONS(2824), - [anon_sym_null] = ACTIONS(2826), - [aux_sym_cmd_identifier_token38] = ACTIONS(2828), - [aux_sym_cmd_identifier_token39] = ACTIONS(2828), - [aux_sym_cmd_identifier_token40] = ACTIONS(2828), - [sym__newline] = ACTIONS(2739), - [anon_sym_SEMI] = ACTIONS(2739), - [anon_sym_PIPE] = ACTIONS(2739), - [anon_sym_err_GT_PIPE] = ACTIONS(2739), - [anon_sym_out_GT_PIPE] = ACTIONS(2739), - [anon_sym_e_GT_PIPE] = ACTIONS(2739), - [anon_sym_o_GT_PIPE] = ACTIONS(2739), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2739), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2739), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2739), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2739), - [anon_sym_LBRACK] = ACTIONS(2830), - [anon_sym_LPAREN] = ACTIONS(2832), - [anon_sym_DOLLAR] = ACTIONS(2834), - [anon_sym_DASH_DASH] = ACTIONS(2836), - [anon_sym_DASH] = ACTIONS(2838), - [anon_sym_LBRACE] = ACTIONS(2840), - [anon_sym_DOT_DOT] = ACTIONS(2842), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2844), - [anon_sym_DOT_DOT_LT] = ACTIONS(2844), - [aux_sym__val_number_decimal_token1] = ACTIONS(2846), - [aux_sym__val_number_decimal_token2] = ACTIONS(2848), - [aux_sym__val_number_decimal_token3] = ACTIONS(2850), - [aux_sym__val_number_decimal_token4] = ACTIONS(2852), - [aux_sym__val_number_token1] = ACTIONS(2854), - [aux_sym__val_number_token2] = ACTIONS(2854), - [aux_sym__val_number_token3] = ACTIONS(2854), - [anon_sym_0b] = ACTIONS(2856), - [anon_sym_0o] = ACTIONS(2858), - [anon_sym_0x] = ACTIONS(2858), - [sym_val_date] = ACTIONS(2860), - [anon_sym_DQUOTE] = ACTIONS(2862), - [sym__str_single_quotes] = ACTIONS(2864), - [sym__str_back_ticks] = ACTIONS(2864), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2866), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2868), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(2870), - [anon_sym_POUND] = ACTIONS(247), - }, - [712] = { - [sym_expr_parenthesized] = STATE(1443), - [sym_val_range] = STATE(1821), - [sym__val_range] = STATE(7461), - [sym__val_range_with_end] = STATE(7212), - [sym__value] = STATE(1821), - [sym_val_nothing] = STATE(1887), - [sym_val_bool] = STATE(1510), - [sym_val_variable] = STATE(1455), - [sym_val_number] = STATE(1887), - [sym__val_number_decimal] = STATE(1148), - [sym__val_number] = STATE(1800), - [sym_val_duration] = STATE(1887), - [sym_val_filesize] = STATE(1887), - [sym_val_binary] = STATE(1887), - [sym_val_string] = STATE(1887), - [sym__str_double_quotes] = STATE(1944), - [sym_val_interpolated] = STATE(1887), - [sym__inter_single_quotes] = STATE(1945), - [sym__inter_double_quotes] = STATE(1946), - [sym_val_list] = STATE(1887), - [sym_val_record] = STATE(1887), - [sym_val_table] = STATE(1887), - [sym_val_closure] = STATE(1887), - [sym__flag] = STATE(1821), - [sym_short_flag] = STATE(1953), - [sym_long_flag] = STATE(1953), - [sym_unquoted] = STATE(1507), - [sym__unquoted_with_expr] = STATE(1829), - [sym__unquoted_anonymous_prefix] = STATE(6954), - [sym_comment] = STATE(712), - [aux_sym_ctrl_do_repeat2] = STATE(713), - [ts_builtin_sym_end] = ACTIONS(2649), - [anon_sym_true] = ACTIONS(2824), - [anon_sym_false] = ACTIONS(2824), - [anon_sym_null] = ACTIONS(2826), - [aux_sym_cmd_identifier_token38] = ACTIONS(2828), - [aux_sym_cmd_identifier_token39] = ACTIONS(2828), - [aux_sym_cmd_identifier_token40] = ACTIONS(2828), - [sym__newline] = ACTIONS(2649), - [anon_sym_SEMI] = ACTIONS(2649), - [anon_sym_PIPE] = ACTIONS(2649), - [anon_sym_err_GT_PIPE] = ACTIONS(2649), - [anon_sym_out_GT_PIPE] = ACTIONS(2649), - [anon_sym_e_GT_PIPE] = ACTIONS(2649), - [anon_sym_o_GT_PIPE] = ACTIONS(2649), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2649), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2649), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2649), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2649), - [anon_sym_LBRACK] = ACTIONS(2830), - [anon_sym_LPAREN] = ACTIONS(2832), - [anon_sym_DOLLAR] = ACTIONS(2834), - [anon_sym_DASH_DASH] = ACTIONS(2836), - [anon_sym_DASH] = ACTIONS(2838), - [anon_sym_LBRACE] = ACTIONS(2840), - [anon_sym_DOT_DOT] = ACTIONS(2842), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2844), - [anon_sym_DOT_DOT_LT] = ACTIONS(2844), - [aux_sym__val_number_decimal_token1] = ACTIONS(2846), - [aux_sym__val_number_decimal_token2] = ACTIONS(2848), - [aux_sym__val_number_decimal_token3] = ACTIONS(2850), - [aux_sym__val_number_decimal_token4] = ACTIONS(2852), - [aux_sym__val_number_token1] = ACTIONS(2854), - [aux_sym__val_number_token2] = ACTIONS(2854), - [aux_sym__val_number_token3] = ACTIONS(2854), - [anon_sym_0b] = ACTIONS(2856), - [anon_sym_0o] = ACTIONS(2858), - [anon_sym_0x] = ACTIONS(2858), - [sym_val_date] = ACTIONS(2860), - [anon_sym_DQUOTE] = ACTIONS(2862), - [sym__str_single_quotes] = ACTIONS(2864), - [sym__str_back_ticks] = ACTIONS(2864), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2866), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2868), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(2870), - [anon_sym_POUND] = ACTIONS(247), - }, - [713] = { - [sym_expr_parenthesized] = STATE(1443), - [sym_val_range] = STATE(1821), - [sym__val_range] = STATE(7461), - [sym__val_range_with_end] = STATE(7212), - [sym__value] = STATE(1821), - [sym_val_nothing] = STATE(1887), - [sym_val_bool] = STATE(1510), - [sym_val_variable] = STATE(1455), - [sym_val_number] = STATE(1887), - [sym__val_number_decimal] = STATE(1148), - [sym__val_number] = STATE(1800), - [sym_val_duration] = STATE(1887), - [sym_val_filesize] = STATE(1887), - [sym_val_binary] = STATE(1887), - [sym_val_string] = STATE(1887), - [sym__str_double_quotes] = STATE(1944), - [sym_val_interpolated] = STATE(1887), - [sym__inter_single_quotes] = STATE(1945), - [sym__inter_double_quotes] = STATE(1946), - [sym_val_list] = STATE(1887), - [sym_val_record] = STATE(1887), - [sym_val_table] = STATE(1887), - [sym_val_closure] = STATE(1887), - [sym__flag] = STATE(1821), - [sym_short_flag] = STATE(1953), - [sym_long_flag] = STATE(1953), - [sym_unquoted] = STATE(1507), - [sym__unquoted_with_expr] = STATE(1829), - [sym__unquoted_anonymous_prefix] = STATE(6954), - [sym_comment] = STATE(713), - [aux_sym_ctrl_do_repeat2] = STATE(713), - [ts_builtin_sym_end] = ACTIONS(2668), - [anon_sym_true] = ACTIONS(2872), - [anon_sym_false] = ACTIONS(2872), - [anon_sym_null] = ACTIONS(2875), - [aux_sym_cmd_identifier_token38] = ACTIONS(2878), - [aux_sym_cmd_identifier_token39] = ACTIONS(2878), - [aux_sym_cmd_identifier_token40] = ACTIONS(2878), - [sym__newline] = ACTIONS(2668), - [anon_sym_SEMI] = ACTIONS(2668), - [anon_sym_PIPE] = ACTIONS(2668), - [anon_sym_err_GT_PIPE] = ACTIONS(2668), - [anon_sym_out_GT_PIPE] = ACTIONS(2668), - [anon_sym_e_GT_PIPE] = ACTIONS(2668), - [anon_sym_o_GT_PIPE] = ACTIONS(2668), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2668), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2668), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2668), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2668), - [anon_sym_LBRACK] = ACTIONS(2881), - [anon_sym_LPAREN] = ACTIONS(2884), - [anon_sym_DOLLAR] = ACTIONS(2887), - [anon_sym_DASH_DASH] = ACTIONS(2890), - [anon_sym_DASH] = ACTIONS(2893), - [anon_sym_LBRACE] = ACTIONS(2896), - [anon_sym_DOT_DOT] = ACTIONS(2899), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2902), - [anon_sym_DOT_DOT_LT] = ACTIONS(2902), - [aux_sym__val_number_decimal_token1] = ACTIONS(2905), - [aux_sym__val_number_decimal_token2] = ACTIONS(2908), - [aux_sym__val_number_decimal_token3] = ACTIONS(2911), - [aux_sym__val_number_decimal_token4] = ACTIONS(2914), - [aux_sym__val_number_token1] = ACTIONS(2917), - [aux_sym__val_number_token2] = ACTIONS(2917), - [aux_sym__val_number_token3] = ACTIONS(2917), - [anon_sym_0b] = ACTIONS(2920), - [anon_sym_0o] = ACTIONS(2923), - [anon_sym_0x] = ACTIONS(2923), - [sym_val_date] = ACTIONS(2926), - [anon_sym_DQUOTE] = ACTIONS(2929), - [sym__str_single_quotes] = ACTIONS(2932), - [sym__str_back_ticks] = ACTIONS(2932), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2935), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2938), - [anon_sym_err_GT] = ACTIONS(2730), - [anon_sym_out_GT] = ACTIONS(2730), - [anon_sym_e_GT] = ACTIONS(2730), - [anon_sym_o_GT] = ACTIONS(2730), - [anon_sym_err_PLUSout_GT] = ACTIONS(2730), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2730), - [anon_sym_o_PLUSe_GT] = ACTIONS(2730), - [anon_sym_e_PLUSo_GT] = ACTIONS(2730), - [anon_sym_err_GT_GT] = ACTIONS(2733), - [anon_sym_out_GT_GT] = ACTIONS(2733), - [anon_sym_e_GT_GT] = ACTIONS(2733), - [anon_sym_o_GT_GT] = ACTIONS(2733), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2733), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2733), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2733), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2733), - [aux_sym_unquoted_token1] = ACTIONS(2941), - [anon_sym_POUND] = ACTIONS(247), - }, - [714] = { - [sym_expr_parenthesized] = STATE(1443), - [sym_val_range] = STATE(1821), - [sym__val_range] = STATE(7461), - [sym__val_range_with_end] = STATE(7212), - [sym__value] = STATE(1821), - [sym_val_nothing] = STATE(1887), - [sym_val_bool] = STATE(1510), - [sym_val_variable] = STATE(1455), - [sym_val_number] = STATE(1887), - [sym__val_number_decimal] = STATE(1148), - [sym__val_number] = STATE(1800), - [sym_val_duration] = STATE(1887), - [sym_val_filesize] = STATE(1887), - [sym_val_binary] = STATE(1887), - [sym_val_string] = STATE(1887), - [sym__str_double_quotes] = STATE(1944), - [sym_val_interpolated] = STATE(1887), - [sym__inter_single_quotes] = STATE(1945), - [sym__inter_double_quotes] = STATE(1946), - [sym_val_list] = STATE(1887), - [sym_val_record] = STATE(1887), - [sym_val_table] = STATE(1887), - [sym_val_closure] = STATE(1887), - [sym__flag] = STATE(1821), - [sym_short_flag] = STATE(1953), - [sym_long_flag] = STATE(1953), - [sym_unquoted] = STATE(1507), - [sym__unquoted_with_expr] = STATE(1829), - [sym__unquoted_anonymous_prefix] = STATE(6954), - [sym_comment] = STATE(714), - [aux_sym_ctrl_do_repeat2] = STATE(713), - [ts_builtin_sym_end] = ACTIONS(2601), - [anon_sym_true] = ACTIONS(2824), - [anon_sym_false] = ACTIONS(2824), - [anon_sym_null] = ACTIONS(2826), - [aux_sym_cmd_identifier_token38] = ACTIONS(2828), - [aux_sym_cmd_identifier_token39] = ACTIONS(2828), - [aux_sym_cmd_identifier_token40] = ACTIONS(2828), - [sym__newline] = ACTIONS(2601), - [anon_sym_SEMI] = ACTIONS(2601), - [anon_sym_PIPE] = ACTIONS(2601), - [anon_sym_err_GT_PIPE] = ACTIONS(2601), - [anon_sym_out_GT_PIPE] = ACTIONS(2601), - [anon_sym_e_GT_PIPE] = ACTIONS(2601), - [anon_sym_o_GT_PIPE] = ACTIONS(2601), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2601), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2601), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2601), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2601), - [anon_sym_LBRACK] = ACTIONS(2830), - [anon_sym_LPAREN] = ACTIONS(2832), - [anon_sym_DOLLAR] = ACTIONS(2834), - [anon_sym_DASH_DASH] = ACTIONS(2836), - [anon_sym_DASH] = ACTIONS(2838), - [anon_sym_LBRACE] = ACTIONS(2840), - [anon_sym_DOT_DOT] = ACTIONS(2842), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2844), - [anon_sym_DOT_DOT_LT] = ACTIONS(2844), - [aux_sym__val_number_decimal_token1] = ACTIONS(2846), - [aux_sym__val_number_decimal_token2] = ACTIONS(2848), - [aux_sym__val_number_decimal_token3] = ACTIONS(2850), - [aux_sym__val_number_decimal_token4] = ACTIONS(2852), - [aux_sym__val_number_token1] = ACTIONS(2854), - [aux_sym__val_number_token2] = ACTIONS(2854), - [aux_sym__val_number_token3] = ACTIONS(2854), - [anon_sym_0b] = ACTIONS(2856), - [anon_sym_0o] = ACTIONS(2858), - [anon_sym_0x] = ACTIONS(2858), - [sym_val_date] = ACTIONS(2860), - [anon_sym_DQUOTE] = ACTIONS(2862), - [sym__str_single_quotes] = ACTIONS(2864), - [sym__str_back_ticks] = ACTIONS(2864), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2866), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2868), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(2870), - [anon_sym_POUND] = ACTIONS(247), - }, - [715] = { - [aux_sym__pipe_separator] = STATE(717), - [sym_comment] = STATE(715), - [aux_sym_shebang_repeat1] = STATE(5192), - [aux_sym_cmd_identifier_token1] = ACTIONS(2944), - [aux_sym_cmd_identifier_token2] = ACTIONS(2946), - [aux_sym_cmd_identifier_token3] = ACTIONS(2946), - [aux_sym_cmd_identifier_token4] = ACTIONS(2946), - [aux_sym_cmd_identifier_token5] = ACTIONS(2946), - [aux_sym_cmd_identifier_token6] = ACTIONS(2946), - [aux_sym_cmd_identifier_token7] = ACTIONS(2946), - [aux_sym_cmd_identifier_token8] = ACTIONS(2946), - [aux_sym_cmd_identifier_token9] = ACTIONS(2944), - [aux_sym_cmd_identifier_token10] = ACTIONS(2946), - [aux_sym_cmd_identifier_token11] = ACTIONS(2946), - [aux_sym_cmd_identifier_token12] = ACTIONS(2946), - [aux_sym_cmd_identifier_token13] = ACTIONS(2944), - [aux_sym_cmd_identifier_token14] = ACTIONS(2946), - [aux_sym_cmd_identifier_token15] = ACTIONS(2944), - [aux_sym_cmd_identifier_token16] = ACTIONS(2946), - [aux_sym_cmd_identifier_token17] = ACTIONS(2946), - [aux_sym_cmd_identifier_token18] = ACTIONS(2946), - [aux_sym_cmd_identifier_token19] = ACTIONS(2946), - [aux_sym_cmd_identifier_token20] = ACTIONS(2946), - [aux_sym_cmd_identifier_token21] = ACTIONS(2946), - [aux_sym_cmd_identifier_token22] = ACTIONS(2944), - [aux_sym_cmd_identifier_token23] = ACTIONS(2944), - [aux_sym_cmd_identifier_token24] = ACTIONS(2946), - [aux_sym_cmd_identifier_token25] = ACTIONS(2944), - [aux_sym_cmd_identifier_token26] = ACTIONS(2946), - [aux_sym_cmd_identifier_token27] = ACTIONS(2944), - [aux_sym_cmd_identifier_token28] = ACTIONS(2944), - [aux_sym_cmd_identifier_token29] = ACTIONS(2944), - [aux_sym_cmd_identifier_token30] = ACTIONS(2944), - [aux_sym_cmd_identifier_token31] = ACTIONS(2946), - [aux_sym_cmd_identifier_token32] = ACTIONS(2946), - [aux_sym_cmd_identifier_token33] = ACTIONS(2946), - [aux_sym_cmd_identifier_token34] = ACTIONS(2946), - [aux_sym_cmd_identifier_token35] = ACTIONS(2946), - [aux_sym_cmd_identifier_token36] = ACTIONS(2944), - [anon_sym_true] = ACTIONS(2946), - [anon_sym_false] = ACTIONS(2946), - [anon_sym_null] = ACTIONS(2946), - [aux_sym_cmd_identifier_token38] = ACTIONS(2944), - [aux_sym_cmd_identifier_token39] = ACTIONS(2946), - [aux_sym_cmd_identifier_token40] = ACTIONS(2946), - [sym__newline] = ACTIONS(2948), - [anon_sym_PIPE] = ACTIONS(2950), - [anon_sym_err_GT_PIPE] = ACTIONS(2950), - [anon_sym_out_GT_PIPE] = ACTIONS(2950), - [anon_sym_e_GT_PIPE] = ACTIONS(2950), - [anon_sym_o_GT_PIPE] = ACTIONS(2950), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2950), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2950), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2950), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2950), - [anon_sym_LBRACK] = ACTIONS(2946), - [anon_sym_LPAREN] = ACTIONS(2946), - [anon_sym_DOLLAR] = ACTIONS(2944), - [anon_sym_DASH] = ACTIONS(2944), - [anon_sym_break] = ACTIONS(2944), - [anon_sym_continue] = ACTIONS(2944), - [anon_sym_do] = ACTIONS(2944), - [anon_sym_if] = ACTIONS(2944), - [anon_sym_match] = ACTIONS(2944), - [anon_sym_LBRACE] = ACTIONS(2946), - [anon_sym_DOT_DOT] = ACTIONS(2944), - [anon_sym_try] = ACTIONS(2944), - [anon_sym_return] = ACTIONS(2944), - [anon_sym_where] = ACTIONS(2946), - [aux_sym_expr_unary_token1] = ACTIONS(2946), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2946), - [anon_sym_DOT_DOT_LT] = ACTIONS(2946), - [aux_sym__val_number_decimal_token1] = ACTIONS(2944), - [aux_sym__val_number_decimal_token2] = ACTIONS(2946), - [aux_sym__val_number_decimal_token3] = ACTIONS(2946), - [aux_sym__val_number_decimal_token4] = ACTIONS(2946), - [aux_sym__val_number_token1] = ACTIONS(2946), - [aux_sym__val_number_token2] = ACTIONS(2946), - [aux_sym__val_number_token3] = ACTIONS(2946), - [anon_sym_0b] = ACTIONS(2944), - [anon_sym_0o] = ACTIONS(2944), - [anon_sym_0x] = ACTIONS(2944), - [sym_val_date] = ACTIONS(2946), - [anon_sym_DQUOTE] = ACTIONS(2946), - [sym__str_single_quotes] = ACTIONS(2946), - [sym__str_back_ticks] = ACTIONS(2946), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2946), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2946), - [aux_sym_env_var_token1] = ACTIONS(2944), - [anon_sym_CARET] = ACTIONS(2946), - [anon_sym_POUND] = ACTIONS(247), - }, - [716] = { - [aux_sym__pipe_separator] = STATE(717), - [sym_comment] = STATE(716), - [aux_sym_shebang_repeat1] = STATE(718), - [aux_sym_cmd_identifier_token1] = ACTIONS(2952), - [aux_sym_cmd_identifier_token2] = ACTIONS(2954), - [aux_sym_cmd_identifier_token3] = ACTIONS(2954), - [aux_sym_cmd_identifier_token4] = ACTIONS(2954), - [aux_sym_cmd_identifier_token5] = ACTIONS(2954), - [aux_sym_cmd_identifier_token6] = ACTIONS(2954), - [aux_sym_cmd_identifier_token7] = ACTIONS(2954), - [aux_sym_cmd_identifier_token8] = ACTIONS(2954), - [aux_sym_cmd_identifier_token9] = ACTIONS(2952), - [aux_sym_cmd_identifier_token10] = ACTIONS(2954), - [aux_sym_cmd_identifier_token11] = ACTIONS(2954), - [aux_sym_cmd_identifier_token12] = ACTIONS(2954), - [aux_sym_cmd_identifier_token13] = ACTIONS(2952), - [aux_sym_cmd_identifier_token14] = ACTIONS(2954), - [aux_sym_cmd_identifier_token15] = ACTIONS(2952), - [aux_sym_cmd_identifier_token16] = ACTIONS(2954), - [aux_sym_cmd_identifier_token17] = ACTIONS(2954), - [aux_sym_cmd_identifier_token18] = ACTIONS(2954), - [aux_sym_cmd_identifier_token19] = ACTIONS(2954), - [aux_sym_cmd_identifier_token20] = ACTIONS(2954), - [aux_sym_cmd_identifier_token21] = ACTIONS(2954), - [aux_sym_cmd_identifier_token22] = ACTIONS(2952), - [aux_sym_cmd_identifier_token23] = ACTIONS(2952), - [aux_sym_cmd_identifier_token24] = ACTIONS(2954), - [aux_sym_cmd_identifier_token25] = ACTIONS(2952), - [aux_sym_cmd_identifier_token26] = ACTIONS(2954), - [aux_sym_cmd_identifier_token27] = ACTIONS(2952), - [aux_sym_cmd_identifier_token28] = ACTIONS(2952), - [aux_sym_cmd_identifier_token29] = ACTIONS(2952), - [aux_sym_cmd_identifier_token30] = ACTIONS(2952), - [aux_sym_cmd_identifier_token31] = ACTIONS(2954), - [aux_sym_cmd_identifier_token32] = ACTIONS(2954), - [aux_sym_cmd_identifier_token33] = ACTIONS(2954), - [aux_sym_cmd_identifier_token34] = ACTIONS(2954), - [aux_sym_cmd_identifier_token35] = ACTIONS(2954), - [aux_sym_cmd_identifier_token36] = ACTIONS(2952), - [anon_sym_true] = ACTIONS(2954), - [anon_sym_false] = ACTIONS(2954), - [anon_sym_null] = ACTIONS(2954), - [aux_sym_cmd_identifier_token38] = ACTIONS(2952), - [aux_sym_cmd_identifier_token39] = ACTIONS(2954), - [aux_sym_cmd_identifier_token40] = ACTIONS(2954), - [sym__newline] = ACTIONS(2956), - [anon_sym_PIPE] = ACTIONS(2950), - [anon_sym_err_GT_PIPE] = ACTIONS(2950), - [anon_sym_out_GT_PIPE] = ACTIONS(2950), - [anon_sym_e_GT_PIPE] = ACTIONS(2950), - [anon_sym_o_GT_PIPE] = ACTIONS(2950), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2950), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2950), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2950), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2950), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_LPAREN] = ACTIONS(2954), - [anon_sym_DOLLAR] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(2952), - [anon_sym_break] = ACTIONS(2952), - [anon_sym_continue] = ACTIONS(2952), - [anon_sym_do] = ACTIONS(2952), - [anon_sym_if] = ACTIONS(2952), - [anon_sym_match] = ACTIONS(2952), - [anon_sym_LBRACE] = ACTIONS(2954), - [anon_sym_DOT_DOT] = ACTIONS(2952), - [anon_sym_try] = ACTIONS(2952), - [anon_sym_return] = ACTIONS(2952), - [anon_sym_where] = ACTIONS(2954), - [aux_sym_expr_unary_token1] = ACTIONS(2954), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2954), - [anon_sym_DOT_DOT_LT] = ACTIONS(2954), - [aux_sym__val_number_decimal_token1] = ACTIONS(2952), - [aux_sym__val_number_decimal_token2] = ACTIONS(2954), - [aux_sym__val_number_decimal_token3] = ACTIONS(2954), - [aux_sym__val_number_decimal_token4] = ACTIONS(2954), - [aux_sym__val_number_token1] = ACTIONS(2954), - [aux_sym__val_number_token2] = ACTIONS(2954), - [aux_sym__val_number_token3] = ACTIONS(2954), - [anon_sym_0b] = ACTIONS(2952), - [anon_sym_0o] = ACTIONS(2952), - [anon_sym_0x] = ACTIONS(2952), - [sym_val_date] = ACTIONS(2954), - [anon_sym_DQUOTE] = ACTIONS(2954), - [sym__str_single_quotes] = ACTIONS(2954), - [sym__str_back_ticks] = ACTIONS(2954), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2954), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2954), - [aux_sym_env_var_token1] = ACTIONS(2952), - [anon_sym_CARET] = ACTIONS(2954), - [anon_sym_POUND] = ACTIONS(247), - }, - [717] = { - [aux_sym__pipe_separator] = STATE(717), - [sym_comment] = STATE(717), - [aux_sym_shebang_repeat1] = STATE(5192), - [aux_sym_cmd_identifier_token1] = ACTIONS(2958), - [aux_sym_cmd_identifier_token2] = ACTIONS(2960), - [aux_sym_cmd_identifier_token3] = ACTIONS(2960), - [aux_sym_cmd_identifier_token4] = ACTIONS(2960), - [aux_sym_cmd_identifier_token5] = ACTIONS(2960), - [aux_sym_cmd_identifier_token6] = ACTIONS(2960), - [aux_sym_cmd_identifier_token7] = ACTIONS(2960), - [aux_sym_cmd_identifier_token8] = ACTIONS(2960), - [aux_sym_cmd_identifier_token9] = ACTIONS(2958), - [aux_sym_cmd_identifier_token10] = ACTIONS(2960), - [aux_sym_cmd_identifier_token11] = ACTIONS(2960), - [aux_sym_cmd_identifier_token12] = ACTIONS(2960), - [aux_sym_cmd_identifier_token13] = ACTIONS(2958), - [aux_sym_cmd_identifier_token14] = ACTIONS(2960), - [aux_sym_cmd_identifier_token15] = ACTIONS(2958), - [aux_sym_cmd_identifier_token16] = ACTIONS(2960), - [aux_sym_cmd_identifier_token17] = ACTIONS(2960), - [aux_sym_cmd_identifier_token18] = ACTIONS(2960), - [aux_sym_cmd_identifier_token19] = ACTIONS(2960), - [aux_sym_cmd_identifier_token20] = ACTIONS(2960), - [aux_sym_cmd_identifier_token21] = ACTIONS(2960), - [aux_sym_cmd_identifier_token22] = ACTIONS(2958), - [aux_sym_cmd_identifier_token23] = ACTIONS(2958), - [aux_sym_cmd_identifier_token24] = ACTIONS(2960), - [aux_sym_cmd_identifier_token25] = ACTIONS(2958), - [aux_sym_cmd_identifier_token26] = ACTIONS(2960), - [aux_sym_cmd_identifier_token27] = ACTIONS(2958), - [aux_sym_cmd_identifier_token28] = ACTIONS(2958), - [aux_sym_cmd_identifier_token29] = ACTIONS(2958), - [aux_sym_cmd_identifier_token30] = ACTIONS(2958), - [aux_sym_cmd_identifier_token31] = ACTIONS(2960), - [aux_sym_cmd_identifier_token32] = ACTIONS(2960), - [aux_sym_cmd_identifier_token33] = ACTIONS(2960), - [aux_sym_cmd_identifier_token34] = ACTIONS(2960), - [aux_sym_cmd_identifier_token35] = ACTIONS(2960), - [aux_sym_cmd_identifier_token36] = ACTIONS(2958), - [anon_sym_true] = ACTIONS(2960), - [anon_sym_false] = ACTIONS(2960), - [anon_sym_null] = ACTIONS(2960), - [aux_sym_cmd_identifier_token38] = ACTIONS(2958), - [aux_sym_cmd_identifier_token39] = ACTIONS(2960), - [aux_sym_cmd_identifier_token40] = ACTIONS(2960), - [sym__newline] = ACTIONS(2962), - [anon_sym_PIPE] = ACTIONS(2965), - [anon_sym_err_GT_PIPE] = ACTIONS(2965), - [anon_sym_out_GT_PIPE] = ACTIONS(2965), - [anon_sym_e_GT_PIPE] = ACTIONS(2965), - [anon_sym_o_GT_PIPE] = ACTIONS(2965), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2965), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2965), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2965), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2965), - [anon_sym_LBRACK] = ACTIONS(2960), - [anon_sym_LPAREN] = ACTIONS(2960), - [anon_sym_DOLLAR] = ACTIONS(2958), - [anon_sym_DASH] = ACTIONS(2958), - [anon_sym_break] = ACTIONS(2958), - [anon_sym_continue] = ACTIONS(2958), - [anon_sym_do] = ACTIONS(2958), - [anon_sym_if] = ACTIONS(2958), - [anon_sym_match] = ACTIONS(2958), - [anon_sym_LBRACE] = ACTIONS(2960), - [anon_sym_DOT_DOT] = ACTIONS(2958), - [anon_sym_try] = ACTIONS(2958), - [anon_sym_return] = ACTIONS(2958), - [anon_sym_where] = ACTIONS(2960), - [aux_sym_expr_unary_token1] = ACTIONS(2960), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2960), - [anon_sym_DOT_DOT_LT] = ACTIONS(2960), - [aux_sym__val_number_decimal_token1] = ACTIONS(2958), - [aux_sym__val_number_decimal_token2] = ACTIONS(2960), - [aux_sym__val_number_decimal_token3] = ACTIONS(2960), - [aux_sym__val_number_decimal_token4] = ACTIONS(2960), - [aux_sym__val_number_token1] = ACTIONS(2960), - [aux_sym__val_number_token2] = ACTIONS(2960), - [aux_sym__val_number_token3] = ACTIONS(2960), - [anon_sym_0b] = ACTIONS(2958), - [anon_sym_0o] = ACTIONS(2958), - [anon_sym_0x] = ACTIONS(2958), - [sym_val_date] = ACTIONS(2960), - [anon_sym_DQUOTE] = ACTIONS(2960), - [sym__str_single_quotes] = ACTIONS(2960), - [sym__str_back_ticks] = ACTIONS(2960), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2960), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2960), - [aux_sym_env_var_token1] = ACTIONS(2958), - [anon_sym_CARET] = ACTIONS(2960), - [anon_sym_POUND] = ACTIONS(247), - }, - [718] = { - [sym_comment] = STATE(718), - [aux_sym_shebang_repeat1] = STATE(719), - [aux_sym_cmd_identifier_token1] = ACTIONS(2968), - [aux_sym_cmd_identifier_token2] = ACTIONS(2970), - [aux_sym_cmd_identifier_token3] = ACTIONS(2970), - [aux_sym_cmd_identifier_token4] = ACTIONS(2970), - [aux_sym_cmd_identifier_token5] = ACTIONS(2970), - [aux_sym_cmd_identifier_token6] = ACTIONS(2970), - [aux_sym_cmd_identifier_token7] = ACTIONS(2970), - [aux_sym_cmd_identifier_token8] = ACTIONS(2970), - [aux_sym_cmd_identifier_token9] = ACTIONS(2968), - [aux_sym_cmd_identifier_token10] = ACTIONS(2970), - [aux_sym_cmd_identifier_token11] = ACTIONS(2970), - [aux_sym_cmd_identifier_token12] = ACTIONS(2970), - [aux_sym_cmd_identifier_token13] = ACTIONS(2968), - [aux_sym_cmd_identifier_token14] = ACTIONS(2970), - [aux_sym_cmd_identifier_token15] = ACTIONS(2968), - [aux_sym_cmd_identifier_token16] = ACTIONS(2970), - [aux_sym_cmd_identifier_token17] = ACTIONS(2970), - [aux_sym_cmd_identifier_token18] = ACTIONS(2970), - [aux_sym_cmd_identifier_token19] = ACTIONS(2970), - [aux_sym_cmd_identifier_token20] = ACTIONS(2970), - [aux_sym_cmd_identifier_token21] = ACTIONS(2970), - [aux_sym_cmd_identifier_token22] = ACTIONS(2968), - [aux_sym_cmd_identifier_token23] = ACTIONS(2968), - [aux_sym_cmd_identifier_token24] = ACTIONS(2970), - [aux_sym_cmd_identifier_token25] = ACTIONS(2968), - [aux_sym_cmd_identifier_token26] = ACTIONS(2970), - [aux_sym_cmd_identifier_token27] = ACTIONS(2968), - [aux_sym_cmd_identifier_token28] = ACTIONS(2968), - [aux_sym_cmd_identifier_token29] = ACTIONS(2968), - [aux_sym_cmd_identifier_token30] = ACTIONS(2968), - [aux_sym_cmd_identifier_token31] = ACTIONS(2970), - [aux_sym_cmd_identifier_token32] = ACTIONS(2970), - [aux_sym_cmd_identifier_token33] = ACTIONS(2970), - [aux_sym_cmd_identifier_token34] = ACTIONS(2970), - [aux_sym_cmd_identifier_token35] = ACTIONS(2970), - [aux_sym_cmd_identifier_token36] = ACTIONS(2968), - [anon_sym_true] = ACTIONS(2970), - [anon_sym_false] = ACTIONS(2970), - [anon_sym_null] = ACTIONS(2970), - [aux_sym_cmd_identifier_token38] = ACTIONS(2968), - [aux_sym_cmd_identifier_token39] = ACTIONS(2970), - [aux_sym_cmd_identifier_token40] = ACTIONS(2970), - [sym__newline] = ACTIONS(2956), - [anon_sym_PIPE] = ACTIONS(2972), - [anon_sym_err_GT_PIPE] = ACTIONS(2972), - [anon_sym_out_GT_PIPE] = ACTIONS(2972), - [anon_sym_e_GT_PIPE] = ACTIONS(2972), - [anon_sym_o_GT_PIPE] = ACTIONS(2972), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2972), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2972), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2972), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2972), - [anon_sym_LBRACK] = ACTIONS(2970), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_DOLLAR] = ACTIONS(2968), - [anon_sym_DASH] = ACTIONS(2968), - [anon_sym_break] = ACTIONS(2968), - [anon_sym_continue] = ACTIONS(2968), - [anon_sym_do] = ACTIONS(2968), - [anon_sym_if] = ACTIONS(2968), - [anon_sym_match] = ACTIONS(2968), - [anon_sym_LBRACE] = ACTIONS(2970), - [anon_sym_DOT_DOT] = ACTIONS(2968), - [anon_sym_try] = ACTIONS(2968), - [anon_sym_return] = ACTIONS(2968), - [anon_sym_where] = ACTIONS(2970), - [aux_sym_expr_unary_token1] = ACTIONS(2970), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2970), - [anon_sym_DOT_DOT_LT] = ACTIONS(2970), - [aux_sym__val_number_decimal_token1] = ACTIONS(2968), - [aux_sym__val_number_decimal_token2] = ACTIONS(2970), - [aux_sym__val_number_decimal_token3] = ACTIONS(2970), - [aux_sym__val_number_decimal_token4] = ACTIONS(2970), - [aux_sym__val_number_token1] = ACTIONS(2970), - [aux_sym__val_number_token2] = ACTIONS(2970), - [aux_sym__val_number_token3] = ACTIONS(2970), - [anon_sym_0b] = ACTIONS(2968), - [anon_sym_0o] = ACTIONS(2968), - [anon_sym_0x] = ACTIONS(2968), - [sym_val_date] = ACTIONS(2970), - [anon_sym_DQUOTE] = ACTIONS(2970), - [sym__str_single_quotes] = ACTIONS(2970), - [sym__str_back_ticks] = ACTIONS(2970), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2970), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2970), - [aux_sym_env_var_token1] = ACTIONS(2968), - [anon_sym_CARET] = ACTIONS(2970), - [anon_sym_POUND] = ACTIONS(247), - }, - [719] = { - [sym_comment] = STATE(719), - [aux_sym_shebang_repeat1] = STATE(719), - [aux_sym_cmd_identifier_token1] = ACTIONS(1313), - [aux_sym_cmd_identifier_token2] = ACTIONS(1315), - [aux_sym_cmd_identifier_token3] = ACTIONS(1315), - [aux_sym_cmd_identifier_token4] = ACTIONS(1315), - [aux_sym_cmd_identifier_token5] = ACTIONS(1315), - [aux_sym_cmd_identifier_token6] = ACTIONS(1315), - [aux_sym_cmd_identifier_token7] = ACTIONS(1315), - [aux_sym_cmd_identifier_token8] = ACTIONS(1315), - [aux_sym_cmd_identifier_token9] = ACTIONS(1313), - [aux_sym_cmd_identifier_token10] = ACTIONS(1315), - [aux_sym_cmd_identifier_token11] = ACTIONS(1315), - [aux_sym_cmd_identifier_token12] = ACTIONS(1315), - [aux_sym_cmd_identifier_token13] = ACTIONS(1313), - [aux_sym_cmd_identifier_token14] = ACTIONS(1315), - [aux_sym_cmd_identifier_token15] = ACTIONS(1313), - [aux_sym_cmd_identifier_token16] = ACTIONS(1315), - [aux_sym_cmd_identifier_token17] = ACTIONS(1315), - [aux_sym_cmd_identifier_token18] = ACTIONS(1315), - [aux_sym_cmd_identifier_token19] = ACTIONS(1315), - [aux_sym_cmd_identifier_token20] = ACTIONS(1315), - [aux_sym_cmd_identifier_token21] = ACTIONS(1315), - [aux_sym_cmd_identifier_token22] = ACTIONS(1313), - [aux_sym_cmd_identifier_token23] = ACTIONS(1313), - [aux_sym_cmd_identifier_token24] = ACTIONS(1315), - [aux_sym_cmd_identifier_token25] = ACTIONS(1313), - [aux_sym_cmd_identifier_token26] = ACTIONS(1315), - [aux_sym_cmd_identifier_token27] = ACTIONS(1313), - [aux_sym_cmd_identifier_token28] = ACTIONS(1313), - [aux_sym_cmd_identifier_token29] = ACTIONS(1313), - [aux_sym_cmd_identifier_token30] = ACTIONS(1313), - [aux_sym_cmd_identifier_token31] = ACTIONS(1315), - [aux_sym_cmd_identifier_token32] = ACTIONS(1315), - [aux_sym_cmd_identifier_token33] = ACTIONS(1315), - [aux_sym_cmd_identifier_token34] = ACTIONS(1315), - [aux_sym_cmd_identifier_token35] = ACTIONS(1315), - [aux_sym_cmd_identifier_token36] = ACTIONS(1313), - [anon_sym_true] = ACTIONS(1315), - [anon_sym_false] = ACTIONS(1315), - [anon_sym_null] = ACTIONS(1315), - [aux_sym_cmd_identifier_token38] = ACTIONS(1313), - [aux_sym_cmd_identifier_token39] = ACTIONS(1315), - [aux_sym_cmd_identifier_token40] = ACTIONS(1315), - [sym__newline] = ACTIONS(2974), - [anon_sym_PIPE] = ACTIONS(1315), - [anon_sym_err_GT_PIPE] = ACTIONS(1315), - [anon_sym_out_GT_PIPE] = ACTIONS(1315), - [anon_sym_e_GT_PIPE] = ACTIONS(1315), - [anon_sym_o_GT_PIPE] = ACTIONS(1315), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1315), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1315), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1315), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1315), - [anon_sym_LBRACK] = ACTIONS(1315), - [anon_sym_LPAREN] = ACTIONS(1315), - [anon_sym_DOLLAR] = ACTIONS(1313), - [anon_sym_DASH] = ACTIONS(1313), - [anon_sym_break] = ACTIONS(1313), - [anon_sym_continue] = ACTIONS(1313), - [anon_sym_do] = ACTIONS(1313), - [anon_sym_if] = ACTIONS(1313), - [anon_sym_match] = ACTIONS(1313), - [anon_sym_LBRACE] = ACTIONS(1315), - [anon_sym_DOT_DOT] = ACTIONS(1313), - [anon_sym_try] = ACTIONS(1313), - [anon_sym_return] = ACTIONS(1313), - [anon_sym_where] = ACTIONS(1315), - [aux_sym_expr_unary_token1] = ACTIONS(1315), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1315), - [anon_sym_DOT_DOT_LT] = ACTIONS(1315), - [aux_sym__val_number_decimal_token1] = ACTIONS(1313), - [aux_sym__val_number_decimal_token2] = ACTIONS(1315), - [aux_sym__val_number_decimal_token3] = ACTIONS(1315), - [aux_sym__val_number_decimal_token4] = ACTIONS(1315), - [aux_sym__val_number_token1] = ACTIONS(1315), - [aux_sym__val_number_token2] = ACTIONS(1315), - [aux_sym__val_number_token3] = ACTIONS(1315), - [anon_sym_0b] = ACTIONS(1313), - [anon_sym_0o] = ACTIONS(1313), - [anon_sym_0x] = ACTIONS(1313), - [sym_val_date] = ACTIONS(1315), - [anon_sym_DQUOTE] = ACTIONS(1315), - [sym__str_single_quotes] = ACTIONS(1315), - [sym__str_back_ticks] = ACTIONS(1315), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1315), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1315), - [aux_sym_env_var_token1] = ACTIONS(1313), - [anon_sym_CARET] = ACTIONS(1315), - [anon_sym_POUND] = ACTIONS(247), - }, - [720] = { - [sym_comment] = STATE(720), - [aux_sym_cmd_identifier_token1] = ACTIONS(2958), - [aux_sym_cmd_identifier_token2] = ACTIONS(2960), - [aux_sym_cmd_identifier_token3] = ACTIONS(2960), - [aux_sym_cmd_identifier_token4] = ACTIONS(2960), - [aux_sym_cmd_identifier_token5] = ACTIONS(2960), - [aux_sym_cmd_identifier_token6] = ACTIONS(2960), - [aux_sym_cmd_identifier_token7] = ACTIONS(2960), - [aux_sym_cmd_identifier_token8] = ACTIONS(2960), - [aux_sym_cmd_identifier_token9] = ACTIONS(2958), - [aux_sym_cmd_identifier_token10] = ACTIONS(2960), - [aux_sym_cmd_identifier_token11] = ACTIONS(2960), - [aux_sym_cmd_identifier_token12] = ACTIONS(2960), - [aux_sym_cmd_identifier_token13] = ACTIONS(2958), - [aux_sym_cmd_identifier_token14] = ACTIONS(2960), - [aux_sym_cmd_identifier_token15] = ACTIONS(2958), - [aux_sym_cmd_identifier_token16] = ACTIONS(2960), - [aux_sym_cmd_identifier_token17] = ACTIONS(2960), - [aux_sym_cmd_identifier_token18] = ACTIONS(2960), - [aux_sym_cmd_identifier_token19] = ACTIONS(2960), - [aux_sym_cmd_identifier_token20] = ACTIONS(2960), - [aux_sym_cmd_identifier_token21] = ACTIONS(2960), - [aux_sym_cmd_identifier_token22] = ACTIONS(2958), - [aux_sym_cmd_identifier_token23] = ACTIONS(2958), - [aux_sym_cmd_identifier_token24] = ACTIONS(2960), - [aux_sym_cmd_identifier_token25] = ACTIONS(2958), - [aux_sym_cmd_identifier_token26] = ACTIONS(2960), - [aux_sym_cmd_identifier_token27] = ACTIONS(2958), - [aux_sym_cmd_identifier_token28] = ACTIONS(2958), - [aux_sym_cmd_identifier_token29] = ACTIONS(2958), - [aux_sym_cmd_identifier_token30] = ACTIONS(2958), - [aux_sym_cmd_identifier_token31] = ACTIONS(2960), - [aux_sym_cmd_identifier_token32] = ACTIONS(2960), - [aux_sym_cmd_identifier_token33] = ACTIONS(2960), - [aux_sym_cmd_identifier_token34] = ACTIONS(2960), - [aux_sym_cmd_identifier_token35] = ACTIONS(2960), - [aux_sym_cmd_identifier_token36] = ACTIONS(2958), - [anon_sym_true] = ACTIONS(2960), - [anon_sym_false] = ACTIONS(2960), - [anon_sym_null] = ACTIONS(2960), - [aux_sym_cmd_identifier_token38] = ACTIONS(2958), - [aux_sym_cmd_identifier_token39] = ACTIONS(2960), - [aux_sym_cmd_identifier_token40] = ACTIONS(2960), - [sym__newline] = ACTIONS(2960), - [anon_sym_PIPE] = ACTIONS(2960), - [anon_sym_err_GT_PIPE] = ACTIONS(2960), - [anon_sym_out_GT_PIPE] = ACTIONS(2960), - [anon_sym_e_GT_PIPE] = ACTIONS(2960), - [anon_sym_o_GT_PIPE] = ACTIONS(2960), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2960), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2960), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2960), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2960), - [anon_sym_LBRACK] = ACTIONS(2960), - [anon_sym_LPAREN] = ACTIONS(2960), - [anon_sym_DOLLAR] = ACTIONS(2958), - [anon_sym_DASH] = ACTIONS(2958), - [anon_sym_break] = ACTIONS(2958), - [anon_sym_continue] = ACTIONS(2958), - [anon_sym_do] = ACTIONS(2958), - [anon_sym_if] = ACTIONS(2958), - [anon_sym_match] = ACTIONS(2958), - [anon_sym_LBRACE] = ACTIONS(2960), - [anon_sym_DOT_DOT] = ACTIONS(2958), - [anon_sym_try] = ACTIONS(2958), - [anon_sym_return] = ACTIONS(2958), - [anon_sym_where] = ACTIONS(2960), - [aux_sym_expr_unary_token1] = ACTIONS(2960), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2960), - [anon_sym_DOT_DOT_LT] = ACTIONS(2960), - [aux_sym__val_number_decimal_token1] = ACTIONS(2958), - [aux_sym__val_number_decimal_token2] = ACTIONS(2960), - [aux_sym__val_number_decimal_token3] = ACTIONS(2960), - [aux_sym__val_number_decimal_token4] = ACTIONS(2960), - [aux_sym__val_number_token1] = ACTIONS(2960), - [aux_sym__val_number_token2] = ACTIONS(2960), - [aux_sym__val_number_token3] = ACTIONS(2960), - [anon_sym_0b] = ACTIONS(2958), - [anon_sym_0o] = ACTIONS(2958), - [anon_sym_0x] = ACTIONS(2958), - [sym_val_date] = ACTIONS(2960), - [anon_sym_DQUOTE] = ACTIONS(2960), - [sym__str_single_quotes] = ACTIONS(2960), - [sym__str_back_ticks] = ACTIONS(2960), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2960), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2960), - [aux_sym_env_var_token1] = ACTIONS(2958), - [anon_sym_CARET] = ACTIONS(2960), - [anon_sym_POUND] = ACTIONS(247), + [667] = { + [sym_comment] = STATE(667), + [anon_sym_export] = ACTIONS(2410), + [anon_sym_alias] = ACTIONS(2410), + [anon_sym_let] = ACTIONS(2410), + [anon_sym_let_DASHenv] = ACTIONS(2410), + [anon_sym_mut] = ACTIONS(2410), + [anon_sym_const] = ACTIONS(2410), + [aux_sym_cmd_identifier_token1] = ACTIONS(2410), + [aux_sym_cmd_identifier_token2] = ACTIONS(2410), + [aux_sym_cmd_identifier_token3] = ACTIONS(2410), + [aux_sym_cmd_identifier_token4] = ACTIONS(2410), + [aux_sym_cmd_identifier_token5] = ACTIONS(2410), + [aux_sym_cmd_identifier_token6] = ACTIONS(2410), + [aux_sym_cmd_identifier_token7] = ACTIONS(2410), + [aux_sym_cmd_identifier_token8] = ACTIONS(2410), + [aux_sym_cmd_identifier_token9] = ACTIONS(2410), + [aux_sym_cmd_identifier_token10] = ACTIONS(2410), + [aux_sym_cmd_identifier_token11] = ACTIONS(2410), + [aux_sym_cmd_identifier_token12] = ACTIONS(2410), + [aux_sym_cmd_identifier_token13] = ACTIONS(2410), + [aux_sym_cmd_identifier_token14] = ACTIONS(2410), + [aux_sym_cmd_identifier_token15] = ACTIONS(2410), + [aux_sym_cmd_identifier_token16] = ACTIONS(2410), + [aux_sym_cmd_identifier_token17] = ACTIONS(2410), + [aux_sym_cmd_identifier_token18] = ACTIONS(2410), + [aux_sym_cmd_identifier_token19] = ACTIONS(2410), + [aux_sym_cmd_identifier_token20] = ACTIONS(2410), + [aux_sym_cmd_identifier_token21] = ACTIONS(2410), + [aux_sym_cmd_identifier_token22] = ACTIONS(2410), + [aux_sym_cmd_identifier_token23] = ACTIONS(2410), + [aux_sym_cmd_identifier_token24] = ACTIONS(2410), + [aux_sym_cmd_identifier_token25] = ACTIONS(2410), + [aux_sym_cmd_identifier_token26] = ACTIONS(2410), + [aux_sym_cmd_identifier_token27] = ACTIONS(2410), + [aux_sym_cmd_identifier_token28] = ACTIONS(2410), + [aux_sym_cmd_identifier_token29] = ACTIONS(2410), + [aux_sym_cmd_identifier_token30] = ACTIONS(2410), + [aux_sym_cmd_identifier_token31] = ACTIONS(2410), + [aux_sym_cmd_identifier_token32] = ACTIONS(2410), + [aux_sym_cmd_identifier_token33] = ACTIONS(2410), + [aux_sym_cmd_identifier_token34] = ACTIONS(2410), + [aux_sym_cmd_identifier_token35] = ACTIONS(2410), + [aux_sym_cmd_identifier_token36] = ACTIONS(2410), + [anon_sym_true] = ACTIONS(2412), + [anon_sym_false] = ACTIONS(2412), + [anon_sym_null] = ACTIONS(2412), + [aux_sym_cmd_identifier_token38] = ACTIONS(2410), + [aux_sym_cmd_identifier_token39] = ACTIONS(2412), + [aux_sym_cmd_identifier_token40] = ACTIONS(2412), + [anon_sym_def] = ACTIONS(2410), + [anon_sym_export_DASHenv] = ACTIONS(2410), + [anon_sym_extern] = ACTIONS(2410), + [anon_sym_module] = ACTIONS(2410), + [anon_sym_use] = ACTIONS(2410), + [anon_sym_LPAREN] = ACTIONS(2412), + [anon_sym_DOLLAR] = ACTIONS(2412), + [anon_sym_error] = ACTIONS(2410), + [anon_sym_list] = ACTIONS(2410), + [anon_sym_DASH] = ACTIONS(2410), + [anon_sym_break] = ACTIONS(2410), + [anon_sym_continue] = ACTIONS(2410), + [anon_sym_for] = ACTIONS(2410), + [anon_sym_in] = ACTIONS(2410), + [anon_sym_loop] = ACTIONS(2410), + [anon_sym_make] = ACTIONS(2410), + [anon_sym_while] = ACTIONS(2410), + [anon_sym_do] = ACTIONS(2410), + [anon_sym_if] = ACTIONS(2410), + [anon_sym_else] = ACTIONS(2410), + [anon_sym_match] = ACTIONS(2410), + [anon_sym_RBRACE] = ACTIONS(2412), + [anon_sym_try] = ACTIONS(2410), + [anon_sym_catch] = ACTIONS(2410), + [anon_sym_return] = ACTIONS(2410), + [anon_sym_source] = ACTIONS(2410), + [anon_sym_source_DASHenv] = ACTIONS(2410), + [anon_sym_register] = ACTIONS(2410), + [anon_sym_hide] = ACTIONS(2410), + [anon_sym_hide_DASHenv] = ACTIONS(2410), + [anon_sym_overlay] = ACTIONS(2410), + [anon_sym_new] = ACTIONS(2410), + [anon_sym_as] = ACTIONS(2410), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2412), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2412), + [aux_sym__val_number_decimal_token1] = ACTIONS(2410), + [aux_sym__val_number_decimal_token2] = ACTIONS(2412), + [aux_sym__val_number_decimal_token3] = ACTIONS(2412), + [aux_sym__val_number_decimal_token4] = ACTIONS(2412), + [aux_sym__val_number_token1] = ACTIONS(2412), + [aux_sym__val_number_token2] = ACTIONS(2412), + [aux_sym__val_number_token3] = ACTIONS(2412), + [anon_sym_DQUOTE] = ACTIONS(2412), + [sym__str_single_quotes] = ACTIONS(2412), + [sym__str_back_ticks] = ACTIONS(2412), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2412), + [anon_sym_PLUS] = ACTIONS(2410), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2412), }, - [721] = { - [sym_comment] = STATE(721), - [aux_sym_cmd_identifier_token1] = ACTIONS(2977), - [aux_sym_cmd_identifier_token2] = ACTIONS(2979), - [aux_sym_cmd_identifier_token3] = ACTIONS(2979), - [aux_sym_cmd_identifier_token4] = ACTIONS(2979), - [aux_sym_cmd_identifier_token5] = ACTIONS(2979), - [aux_sym_cmd_identifier_token6] = ACTIONS(2979), - [aux_sym_cmd_identifier_token7] = ACTIONS(2979), - [aux_sym_cmd_identifier_token8] = ACTIONS(2979), - [aux_sym_cmd_identifier_token9] = ACTIONS(2977), - [aux_sym_cmd_identifier_token10] = ACTIONS(2979), - [aux_sym_cmd_identifier_token11] = ACTIONS(2979), - [aux_sym_cmd_identifier_token12] = ACTIONS(2979), - [aux_sym_cmd_identifier_token13] = ACTIONS(2977), - [aux_sym_cmd_identifier_token14] = ACTIONS(2979), - [aux_sym_cmd_identifier_token15] = ACTIONS(2977), - [aux_sym_cmd_identifier_token16] = ACTIONS(2979), - [aux_sym_cmd_identifier_token17] = ACTIONS(2979), - [aux_sym_cmd_identifier_token18] = ACTIONS(2979), - [aux_sym_cmd_identifier_token19] = ACTIONS(2979), - [aux_sym_cmd_identifier_token20] = ACTIONS(2979), - [aux_sym_cmd_identifier_token21] = ACTIONS(2979), - [aux_sym_cmd_identifier_token22] = ACTIONS(2977), - [aux_sym_cmd_identifier_token23] = ACTIONS(2977), - [aux_sym_cmd_identifier_token24] = ACTIONS(2979), - [aux_sym_cmd_identifier_token25] = ACTIONS(2977), - [aux_sym_cmd_identifier_token26] = ACTIONS(2979), - [aux_sym_cmd_identifier_token27] = ACTIONS(2977), - [aux_sym_cmd_identifier_token28] = ACTIONS(2977), - [aux_sym_cmd_identifier_token29] = ACTIONS(2977), - [aux_sym_cmd_identifier_token30] = ACTIONS(2977), - [aux_sym_cmd_identifier_token31] = ACTIONS(2979), - [aux_sym_cmd_identifier_token32] = ACTIONS(2979), - [aux_sym_cmd_identifier_token33] = ACTIONS(2979), - [aux_sym_cmd_identifier_token34] = ACTIONS(2979), - [aux_sym_cmd_identifier_token35] = ACTIONS(2979), - [aux_sym_cmd_identifier_token36] = ACTIONS(2977), - [anon_sym_true] = ACTIONS(2979), - [anon_sym_false] = ACTIONS(2979), - [anon_sym_null] = ACTIONS(2979), - [aux_sym_cmd_identifier_token38] = ACTIONS(2977), - [aux_sym_cmd_identifier_token39] = ACTIONS(2979), - [aux_sym_cmd_identifier_token40] = ACTIONS(2979), - [sym__newline] = ACTIONS(2979), - [anon_sym_PIPE] = ACTIONS(2979), - [anon_sym_err_GT_PIPE] = ACTIONS(2979), - [anon_sym_out_GT_PIPE] = ACTIONS(2979), - [anon_sym_e_GT_PIPE] = ACTIONS(2979), - [anon_sym_o_GT_PIPE] = ACTIONS(2979), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2979), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2979), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2979), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2979), - [anon_sym_LBRACK] = ACTIONS(2979), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_DOLLAR] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_break] = ACTIONS(2977), - [anon_sym_continue] = ACTIONS(2977), - [anon_sym_do] = ACTIONS(2977), - [anon_sym_if] = ACTIONS(2977), - [anon_sym_match] = ACTIONS(2977), - [anon_sym_LBRACE] = ACTIONS(2979), - [anon_sym_DOT_DOT] = ACTIONS(2977), - [anon_sym_try] = ACTIONS(2977), - [anon_sym_return] = ACTIONS(2977), - [anon_sym_where] = ACTIONS(2979), - [aux_sym_expr_unary_token1] = ACTIONS(2979), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2979), - [anon_sym_DOT_DOT_LT] = ACTIONS(2979), - [aux_sym__val_number_decimal_token1] = ACTIONS(2977), - [aux_sym__val_number_decimal_token2] = ACTIONS(2979), - [aux_sym__val_number_decimal_token3] = ACTIONS(2979), - [aux_sym__val_number_decimal_token4] = ACTIONS(2979), - [aux_sym__val_number_token1] = ACTIONS(2979), - [aux_sym__val_number_token2] = ACTIONS(2979), - [aux_sym__val_number_token3] = ACTIONS(2979), - [anon_sym_0b] = ACTIONS(2977), - [anon_sym_0o] = ACTIONS(2977), - [anon_sym_0x] = ACTIONS(2977), - [sym_val_date] = ACTIONS(2979), - [anon_sym_DQUOTE] = ACTIONS(2979), - [sym__str_single_quotes] = ACTIONS(2979), - [sym__str_back_ticks] = ACTIONS(2979), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2979), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2979), - [aux_sym_env_var_token1] = ACTIONS(2977), - [anon_sym_CARET] = ACTIONS(2979), - [anon_sym_POUND] = ACTIONS(247), + [668] = { + [sym_comment] = STATE(668), + [anon_sym_export] = ACTIONS(2438), + [anon_sym_alias] = ACTIONS(2438), + [anon_sym_let] = ACTIONS(2438), + [anon_sym_let_DASHenv] = ACTIONS(2438), + [anon_sym_mut] = ACTIONS(2438), + [anon_sym_const] = ACTIONS(2438), + [aux_sym_cmd_identifier_token1] = ACTIONS(2438), + [aux_sym_cmd_identifier_token2] = ACTIONS(2438), + [aux_sym_cmd_identifier_token3] = ACTIONS(2438), + [aux_sym_cmd_identifier_token4] = ACTIONS(2438), + [aux_sym_cmd_identifier_token5] = ACTIONS(2438), + [aux_sym_cmd_identifier_token6] = ACTIONS(2438), + [aux_sym_cmd_identifier_token7] = ACTIONS(2438), + [aux_sym_cmd_identifier_token8] = ACTIONS(2438), + [aux_sym_cmd_identifier_token9] = ACTIONS(2438), + [aux_sym_cmd_identifier_token10] = ACTIONS(2438), + [aux_sym_cmd_identifier_token11] = ACTIONS(2438), + [aux_sym_cmd_identifier_token12] = ACTIONS(2438), + [aux_sym_cmd_identifier_token13] = ACTIONS(2438), + [aux_sym_cmd_identifier_token14] = ACTIONS(2438), + [aux_sym_cmd_identifier_token15] = ACTIONS(2438), + [aux_sym_cmd_identifier_token16] = ACTIONS(2438), + [aux_sym_cmd_identifier_token17] = ACTIONS(2438), + [aux_sym_cmd_identifier_token18] = ACTIONS(2438), + [aux_sym_cmd_identifier_token19] = ACTIONS(2438), + [aux_sym_cmd_identifier_token20] = ACTIONS(2438), + [aux_sym_cmd_identifier_token21] = ACTIONS(2438), + [aux_sym_cmd_identifier_token22] = ACTIONS(2438), + [aux_sym_cmd_identifier_token23] = ACTIONS(2438), + [aux_sym_cmd_identifier_token24] = ACTIONS(2438), + [aux_sym_cmd_identifier_token25] = ACTIONS(2438), + [aux_sym_cmd_identifier_token26] = ACTIONS(2438), + [aux_sym_cmd_identifier_token27] = ACTIONS(2438), + [aux_sym_cmd_identifier_token28] = ACTIONS(2438), + [aux_sym_cmd_identifier_token29] = ACTIONS(2438), + [aux_sym_cmd_identifier_token30] = ACTIONS(2438), + [aux_sym_cmd_identifier_token31] = ACTIONS(2438), + [aux_sym_cmd_identifier_token32] = ACTIONS(2438), + [aux_sym_cmd_identifier_token33] = ACTIONS(2438), + [aux_sym_cmd_identifier_token34] = ACTIONS(2438), + [aux_sym_cmd_identifier_token35] = ACTIONS(2438), + [aux_sym_cmd_identifier_token36] = ACTIONS(2438), + [anon_sym_true] = ACTIONS(2440), + [anon_sym_false] = ACTIONS(2440), + [anon_sym_null] = ACTIONS(2440), + [aux_sym_cmd_identifier_token38] = ACTIONS(2438), + [aux_sym_cmd_identifier_token39] = ACTIONS(2440), + [aux_sym_cmd_identifier_token40] = ACTIONS(2440), + [anon_sym_def] = ACTIONS(2438), + [anon_sym_export_DASHenv] = ACTIONS(2438), + [anon_sym_extern] = ACTIONS(2438), + [anon_sym_module] = ACTIONS(2438), + [anon_sym_use] = ACTIONS(2438), + [anon_sym_LPAREN] = ACTIONS(2440), + [anon_sym_DOLLAR] = ACTIONS(2440), + [anon_sym_error] = ACTIONS(2438), + [anon_sym_list] = ACTIONS(2438), + [anon_sym_DASH] = ACTIONS(2438), + [anon_sym_break] = ACTIONS(2438), + [anon_sym_continue] = ACTIONS(2438), + [anon_sym_for] = ACTIONS(2438), + [anon_sym_in] = ACTIONS(2438), + [anon_sym_loop] = ACTIONS(2438), + [anon_sym_make] = ACTIONS(2438), + [anon_sym_while] = ACTIONS(2438), + [anon_sym_do] = ACTIONS(2438), + [anon_sym_if] = ACTIONS(2438), + [anon_sym_else] = ACTIONS(2438), + [anon_sym_match] = ACTIONS(2438), + [anon_sym_RBRACE] = ACTIONS(2440), + [anon_sym_try] = ACTIONS(2438), + [anon_sym_catch] = ACTIONS(2438), + [anon_sym_return] = ACTIONS(2438), + [anon_sym_source] = ACTIONS(2438), + [anon_sym_source_DASHenv] = ACTIONS(2438), + [anon_sym_register] = ACTIONS(2438), + [anon_sym_hide] = ACTIONS(2438), + [anon_sym_hide_DASHenv] = ACTIONS(2438), + [anon_sym_overlay] = ACTIONS(2438), + [anon_sym_new] = ACTIONS(2438), + [anon_sym_as] = ACTIONS(2438), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2440), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2440), + [aux_sym__val_number_decimal_token1] = ACTIONS(2438), + [aux_sym__val_number_decimal_token2] = ACTIONS(2440), + [aux_sym__val_number_decimal_token3] = ACTIONS(2440), + [aux_sym__val_number_decimal_token4] = ACTIONS(2440), + [aux_sym__val_number_token1] = ACTIONS(2440), + [aux_sym__val_number_token2] = ACTIONS(2440), + [aux_sym__val_number_token3] = ACTIONS(2440), + [anon_sym_DQUOTE] = ACTIONS(2440), + [sym__str_single_quotes] = ACTIONS(2440), + [sym__str_back_ticks] = ACTIONS(2440), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2440), + [anon_sym_PLUS] = ACTIONS(2438), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2440), }, - [722] = { - [sym_comment] = STATE(722), - [aux_sym_cmd_identifier_token1] = ACTIONS(1311), - [aux_sym_cmd_identifier_token2] = ACTIONS(1307), - [aux_sym_cmd_identifier_token3] = ACTIONS(1307), - [aux_sym_cmd_identifier_token4] = ACTIONS(1307), - [aux_sym_cmd_identifier_token5] = ACTIONS(1307), - [aux_sym_cmd_identifier_token6] = ACTIONS(1307), - [aux_sym_cmd_identifier_token7] = ACTIONS(1307), - [aux_sym_cmd_identifier_token8] = ACTIONS(1307), - [aux_sym_cmd_identifier_token9] = ACTIONS(1311), - [aux_sym_cmd_identifier_token10] = ACTIONS(1307), - [aux_sym_cmd_identifier_token11] = ACTIONS(1307), - [aux_sym_cmd_identifier_token12] = ACTIONS(1307), - [aux_sym_cmd_identifier_token13] = ACTIONS(1311), - [aux_sym_cmd_identifier_token14] = ACTIONS(1307), - [aux_sym_cmd_identifier_token15] = ACTIONS(1311), - [aux_sym_cmd_identifier_token16] = ACTIONS(1307), - [aux_sym_cmd_identifier_token17] = ACTIONS(1307), - [aux_sym_cmd_identifier_token18] = ACTIONS(1307), - [aux_sym_cmd_identifier_token19] = ACTIONS(1307), - [aux_sym_cmd_identifier_token20] = ACTIONS(1307), - [aux_sym_cmd_identifier_token21] = ACTIONS(1307), - [aux_sym_cmd_identifier_token22] = ACTIONS(1311), - [aux_sym_cmd_identifier_token23] = ACTIONS(1311), - [aux_sym_cmd_identifier_token24] = ACTIONS(1307), - [aux_sym_cmd_identifier_token25] = ACTIONS(1311), - [aux_sym_cmd_identifier_token26] = ACTIONS(1307), - [aux_sym_cmd_identifier_token27] = ACTIONS(1311), - [aux_sym_cmd_identifier_token28] = ACTIONS(1311), - [aux_sym_cmd_identifier_token29] = ACTIONS(1311), - [aux_sym_cmd_identifier_token30] = ACTIONS(1311), - [aux_sym_cmd_identifier_token31] = ACTIONS(1307), - [aux_sym_cmd_identifier_token32] = ACTIONS(1307), - [aux_sym_cmd_identifier_token33] = ACTIONS(1307), - [aux_sym_cmd_identifier_token34] = ACTIONS(1307), - [aux_sym_cmd_identifier_token35] = ACTIONS(1307), - [aux_sym_cmd_identifier_token36] = ACTIONS(1311), - [anon_sym_true] = ACTIONS(1307), - [anon_sym_false] = ACTIONS(1307), - [anon_sym_null] = ACTIONS(1307), - [aux_sym_cmd_identifier_token38] = ACTIONS(1311), - [aux_sym_cmd_identifier_token39] = ACTIONS(1307), - [aux_sym_cmd_identifier_token40] = ACTIONS(1307), - [sym__newline] = ACTIONS(1307), - [anon_sym_PIPE] = ACTIONS(1307), - [anon_sym_err_GT_PIPE] = ACTIONS(1307), - [anon_sym_out_GT_PIPE] = ACTIONS(1307), - [anon_sym_e_GT_PIPE] = ACTIONS(1307), - [anon_sym_o_GT_PIPE] = ACTIONS(1307), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1307), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1307), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1307), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1307), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1307), - [anon_sym_DOLLAR] = ACTIONS(1311), - [anon_sym_DASH] = ACTIONS(1311), - [anon_sym_break] = ACTIONS(1311), - [anon_sym_continue] = ACTIONS(1311), - [anon_sym_do] = ACTIONS(1311), - [anon_sym_if] = ACTIONS(1311), - [anon_sym_match] = ACTIONS(1311), - [anon_sym_LBRACE] = ACTIONS(1307), - [anon_sym_DOT_DOT] = ACTIONS(1311), - [anon_sym_try] = ACTIONS(1311), - [anon_sym_return] = ACTIONS(1311), - [anon_sym_where] = ACTIONS(1307), - [aux_sym_expr_unary_token1] = ACTIONS(1307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1307), - [anon_sym_DOT_DOT_LT] = ACTIONS(1307), - [aux_sym__val_number_decimal_token1] = ACTIONS(1311), - [aux_sym__val_number_decimal_token2] = ACTIONS(1307), - [aux_sym__val_number_decimal_token3] = ACTIONS(1307), - [aux_sym__val_number_decimal_token4] = ACTIONS(1307), - [aux_sym__val_number_token1] = ACTIONS(1307), - [aux_sym__val_number_token2] = ACTIONS(1307), - [aux_sym__val_number_token3] = ACTIONS(1307), - [anon_sym_0b] = ACTIONS(1311), - [anon_sym_0o] = ACTIONS(1311), - [anon_sym_0x] = ACTIONS(1311), - [sym_val_date] = ACTIONS(1307), - [anon_sym_DQUOTE] = ACTIONS(1307), - [sym__str_single_quotes] = ACTIONS(1307), - [sym__str_back_ticks] = ACTIONS(1307), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1307), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1307), - [aux_sym_env_var_token1] = ACTIONS(1311), - [anon_sym_CARET] = ACTIONS(1307), - [anon_sym_POUND] = ACTIONS(247), + [669] = { + [sym_comment] = STATE(669), + [anon_sym_export] = ACTIONS(2543), + [anon_sym_alias] = ACTIONS(2543), + [anon_sym_let] = ACTIONS(2543), + [anon_sym_let_DASHenv] = ACTIONS(2543), + [anon_sym_mut] = ACTIONS(2543), + [anon_sym_const] = ACTIONS(2543), + [aux_sym_cmd_identifier_token1] = ACTIONS(2543), + [aux_sym_cmd_identifier_token2] = ACTIONS(2543), + [aux_sym_cmd_identifier_token3] = ACTIONS(2543), + [aux_sym_cmd_identifier_token4] = ACTIONS(2543), + [aux_sym_cmd_identifier_token5] = ACTIONS(2543), + [aux_sym_cmd_identifier_token6] = ACTIONS(2543), + [aux_sym_cmd_identifier_token7] = ACTIONS(2543), + [aux_sym_cmd_identifier_token8] = ACTIONS(2543), + [aux_sym_cmd_identifier_token9] = ACTIONS(2543), + [aux_sym_cmd_identifier_token10] = ACTIONS(2543), + [aux_sym_cmd_identifier_token11] = ACTIONS(2543), + [aux_sym_cmd_identifier_token12] = ACTIONS(2543), + [aux_sym_cmd_identifier_token13] = ACTIONS(2543), + [aux_sym_cmd_identifier_token14] = ACTIONS(2543), + [aux_sym_cmd_identifier_token15] = ACTIONS(2543), + [aux_sym_cmd_identifier_token16] = ACTIONS(2543), + [aux_sym_cmd_identifier_token17] = ACTIONS(2543), + [aux_sym_cmd_identifier_token18] = ACTIONS(2543), + [aux_sym_cmd_identifier_token19] = ACTIONS(2543), + [aux_sym_cmd_identifier_token20] = ACTIONS(2543), + [aux_sym_cmd_identifier_token21] = ACTIONS(2543), + [aux_sym_cmd_identifier_token22] = ACTIONS(2543), + [aux_sym_cmd_identifier_token23] = ACTIONS(2543), + [aux_sym_cmd_identifier_token24] = ACTIONS(2543), + [aux_sym_cmd_identifier_token25] = ACTIONS(2543), + [aux_sym_cmd_identifier_token26] = ACTIONS(2543), + [aux_sym_cmd_identifier_token27] = ACTIONS(2543), + [aux_sym_cmd_identifier_token28] = ACTIONS(2543), + [aux_sym_cmd_identifier_token29] = ACTIONS(2543), + [aux_sym_cmd_identifier_token30] = ACTIONS(2543), + [aux_sym_cmd_identifier_token31] = ACTIONS(2543), + [aux_sym_cmd_identifier_token32] = ACTIONS(2543), + [aux_sym_cmd_identifier_token33] = ACTIONS(2543), + [aux_sym_cmd_identifier_token34] = ACTIONS(2543), + [aux_sym_cmd_identifier_token35] = ACTIONS(2543), + [aux_sym_cmd_identifier_token36] = ACTIONS(2543), + [anon_sym_true] = ACTIONS(2545), + [anon_sym_false] = ACTIONS(2545), + [anon_sym_null] = ACTIONS(2545), + [aux_sym_cmd_identifier_token38] = ACTIONS(2543), + [aux_sym_cmd_identifier_token39] = ACTIONS(2545), + [aux_sym_cmd_identifier_token40] = ACTIONS(2545), + [anon_sym_def] = ACTIONS(2543), + [anon_sym_export_DASHenv] = ACTIONS(2543), + [anon_sym_extern] = ACTIONS(2543), + [anon_sym_module] = ACTIONS(2543), + [anon_sym_use] = ACTIONS(2543), + [anon_sym_LPAREN] = ACTIONS(2545), + [anon_sym_DOLLAR] = ACTIONS(2545), + [anon_sym_error] = ACTIONS(2543), + [anon_sym_list] = ACTIONS(2543), + [anon_sym_DASH] = ACTIONS(2543), + [anon_sym_break] = ACTIONS(2543), + [anon_sym_continue] = ACTIONS(2543), + [anon_sym_for] = ACTIONS(2543), + [anon_sym_in] = ACTIONS(2543), + [anon_sym_loop] = ACTIONS(2543), + [anon_sym_make] = ACTIONS(2543), + [anon_sym_while] = ACTIONS(2543), + [anon_sym_do] = ACTIONS(2543), + [anon_sym_if] = ACTIONS(2543), + [anon_sym_else] = ACTIONS(2543), + [anon_sym_match] = ACTIONS(2543), + [anon_sym_RBRACE] = ACTIONS(2545), + [anon_sym_try] = ACTIONS(2543), + [anon_sym_catch] = ACTIONS(2543), + [anon_sym_return] = ACTIONS(2543), + [anon_sym_source] = ACTIONS(2543), + [anon_sym_source_DASHenv] = ACTIONS(2543), + [anon_sym_register] = ACTIONS(2543), + [anon_sym_hide] = ACTIONS(2543), + [anon_sym_hide_DASHenv] = ACTIONS(2543), + [anon_sym_overlay] = ACTIONS(2543), + [anon_sym_new] = ACTIONS(2543), + [anon_sym_as] = ACTIONS(2543), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2545), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2545), + [aux_sym__val_number_decimal_token1] = ACTIONS(2543), + [aux_sym__val_number_decimal_token2] = ACTIONS(2545), + [aux_sym__val_number_decimal_token3] = ACTIONS(2545), + [aux_sym__val_number_decimal_token4] = ACTIONS(2545), + [aux_sym__val_number_token1] = ACTIONS(2545), + [aux_sym__val_number_token2] = ACTIONS(2545), + [aux_sym__val_number_token3] = ACTIONS(2545), + [anon_sym_DQUOTE] = ACTIONS(2545), + [sym__str_single_quotes] = ACTIONS(2545), + [sym__str_back_ticks] = ACTIONS(2545), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2545), + [anon_sym_PLUS] = ACTIONS(2543), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2545), }, - [723] = { - [sym_comment] = STATE(723), - [aux_sym_cmd_identifier_token1] = ACTIONS(2981), - [aux_sym_cmd_identifier_token2] = ACTIONS(2983), - [aux_sym_cmd_identifier_token3] = ACTIONS(2983), - [aux_sym_cmd_identifier_token4] = ACTIONS(2983), - [aux_sym_cmd_identifier_token5] = ACTIONS(2983), - [aux_sym_cmd_identifier_token6] = ACTIONS(2983), - [aux_sym_cmd_identifier_token7] = ACTIONS(2983), - [aux_sym_cmd_identifier_token8] = ACTIONS(2983), - [aux_sym_cmd_identifier_token9] = ACTIONS(2981), - [aux_sym_cmd_identifier_token10] = ACTIONS(2983), - [aux_sym_cmd_identifier_token11] = ACTIONS(2983), - [aux_sym_cmd_identifier_token12] = ACTIONS(2983), - [aux_sym_cmd_identifier_token13] = ACTIONS(2981), - [aux_sym_cmd_identifier_token14] = ACTIONS(2983), - [aux_sym_cmd_identifier_token15] = ACTIONS(2981), - [aux_sym_cmd_identifier_token16] = ACTIONS(2983), - [aux_sym_cmd_identifier_token17] = ACTIONS(2983), - [aux_sym_cmd_identifier_token18] = ACTIONS(2983), - [aux_sym_cmd_identifier_token19] = ACTIONS(2983), - [aux_sym_cmd_identifier_token20] = ACTIONS(2983), - [aux_sym_cmd_identifier_token21] = ACTIONS(2983), - [aux_sym_cmd_identifier_token22] = ACTIONS(2981), - [aux_sym_cmd_identifier_token23] = ACTIONS(2981), - [aux_sym_cmd_identifier_token24] = ACTIONS(2983), - [aux_sym_cmd_identifier_token25] = ACTIONS(2981), - [aux_sym_cmd_identifier_token26] = ACTIONS(2983), - [aux_sym_cmd_identifier_token27] = ACTIONS(2981), - [aux_sym_cmd_identifier_token28] = ACTIONS(2981), - [aux_sym_cmd_identifier_token29] = ACTIONS(2981), - [aux_sym_cmd_identifier_token30] = ACTIONS(2981), - [aux_sym_cmd_identifier_token31] = ACTIONS(2983), - [aux_sym_cmd_identifier_token32] = ACTIONS(2983), - [aux_sym_cmd_identifier_token33] = ACTIONS(2983), - [aux_sym_cmd_identifier_token34] = ACTIONS(2983), - [aux_sym_cmd_identifier_token35] = ACTIONS(2983), - [aux_sym_cmd_identifier_token36] = ACTIONS(2981), - [anon_sym_true] = ACTIONS(2983), - [anon_sym_false] = ACTIONS(2983), - [anon_sym_null] = ACTIONS(2983), - [aux_sym_cmd_identifier_token38] = ACTIONS(2981), - [aux_sym_cmd_identifier_token39] = ACTIONS(2983), - [aux_sym_cmd_identifier_token40] = ACTIONS(2983), - [sym__newline] = ACTIONS(1307), - [anon_sym_PIPE] = ACTIONS(1307), - [anon_sym_err_GT_PIPE] = ACTIONS(1307), - [anon_sym_out_GT_PIPE] = ACTIONS(1307), - [anon_sym_e_GT_PIPE] = ACTIONS(1307), - [anon_sym_o_GT_PIPE] = ACTIONS(1307), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1307), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1307), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1307), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1307), - [anon_sym_LBRACK] = ACTIONS(2983), - [anon_sym_LPAREN] = ACTIONS(2983), - [anon_sym_DOLLAR] = ACTIONS(2981), - [anon_sym_DASH] = ACTIONS(2981), - [anon_sym_break] = ACTIONS(2981), - [anon_sym_continue] = ACTIONS(2981), - [anon_sym_do] = ACTIONS(2981), - [anon_sym_if] = ACTIONS(2981), - [anon_sym_match] = ACTIONS(2981), - [anon_sym_LBRACE] = ACTIONS(2983), - [anon_sym_DOT_DOT] = ACTIONS(2981), - [anon_sym_try] = ACTIONS(2981), - [anon_sym_return] = ACTIONS(2981), - [anon_sym_where] = ACTIONS(2983), - [aux_sym_expr_unary_token1] = ACTIONS(2983), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2983), - [anon_sym_DOT_DOT_LT] = ACTIONS(2983), - [aux_sym__val_number_decimal_token1] = ACTIONS(2981), - [aux_sym__val_number_decimal_token2] = ACTIONS(2983), - [aux_sym__val_number_decimal_token3] = ACTIONS(2983), - [aux_sym__val_number_decimal_token4] = ACTIONS(2983), - [aux_sym__val_number_token1] = ACTIONS(2983), - [aux_sym__val_number_token2] = ACTIONS(2983), - [aux_sym__val_number_token3] = ACTIONS(2983), - [anon_sym_0b] = ACTIONS(2981), - [anon_sym_0o] = ACTIONS(2981), - [anon_sym_0x] = ACTIONS(2981), - [sym_val_date] = ACTIONS(2983), - [anon_sym_DQUOTE] = ACTIONS(2983), - [sym__str_single_quotes] = ACTIONS(2983), - [sym__str_back_ticks] = ACTIONS(2983), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2983), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2983), - [aux_sym_env_var_token1] = ACTIONS(2981), - [anon_sym_CARET] = ACTIONS(2983), - [anon_sym_POUND] = ACTIONS(247), + [670] = { + [sym_comment] = STATE(670), + [anon_sym_export] = ACTIONS(2561), + [anon_sym_alias] = ACTIONS(2561), + [anon_sym_let] = ACTIONS(2561), + [anon_sym_let_DASHenv] = ACTIONS(2561), + [anon_sym_mut] = ACTIONS(2561), + [anon_sym_const] = ACTIONS(2561), + [aux_sym_cmd_identifier_token1] = ACTIONS(2561), + [aux_sym_cmd_identifier_token2] = ACTIONS(2561), + [aux_sym_cmd_identifier_token3] = ACTIONS(2561), + [aux_sym_cmd_identifier_token4] = ACTIONS(2561), + [aux_sym_cmd_identifier_token5] = ACTIONS(2561), + [aux_sym_cmd_identifier_token6] = ACTIONS(2561), + [aux_sym_cmd_identifier_token7] = ACTIONS(2561), + [aux_sym_cmd_identifier_token8] = ACTIONS(2561), + [aux_sym_cmd_identifier_token9] = ACTIONS(2561), + [aux_sym_cmd_identifier_token10] = ACTIONS(2561), + [aux_sym_cmd_identifier_token11] = ACTIONS(2561), + [aux_sym_cmd_identifier_token12] = ACTIONS(2561), + [aux_sym_cmd_identifier_token13] = ACTIONS(2561), + [aux_sym_cmd_identifier_token14] = ACTIONS(2561), + [aux_sym_cmd_identifier_token15] = ACTIONS(2561), + [aux_sym_cmd_identifier_token16] = ACTIONS(2561), + [aux_sym_cmd_identifier_token17] = ACTIONS(2561), + [aux_sym_cmd_identifier_token18] = ACTIONS(2561), + [aux_sym_cmd_identifier_token19] = ACTIONS(2561), + [aux_sym_cmd_identifier_token20] = ACTIONS(2561), + [aux_sym_cmd_identifier_token21] = ACTIONS(2561), + [aux_sym_cmd_identifier_token22] = ACTIONS(2561), + [aux_sym_cmd_identifier_token23] = ACTIONS(2561), + [aux_sym_cmd_identifier_token24] = ACTIONS(2561), + [aux_sym_cmd_identifier_token25] = ACTIONS(2561), + [aux_sym_cmd_identifier_token26] = ACTIONS(2561), + [aux_sym_cmd_identifier_token27] = ACTIONS(2561), + [aux_sym_cmd_identifier_token28] = ACTIONS(2561), + [aux_sym_cmd_identifier_token29] = ACTIONS(2561), + [aux_sym_cmd_identifier_token30] = ACTIONS(2561), + [aux_sym_cmd_identifier_token31] = ACTIONS(2561), + [aux_sym_cmd_identifier_token32] = ACTIONS(2561), + [aux_sym_cmd_identifier_token33] = ACTIONS(2561), + [aux_sym_cmd_identifier_token34] = ACTIONS(2561), + [aux_sym_cmd_identifier_token35] = ACTIONS(2561), + [aux_sym_cmd_identifier_token36] = ACTIONS(2561), + [anon_sym_true] = ACTIONS(2563), + [anon_sym_false] = ACTIONS(2563), + [anon_sym_null] = ACTIONS(2563), + [aux_sym_cmd_identifier_token38] = ACTIONS(2561), + [aux_sym_cmd_identifier_token39] = ACTIONS(2563), + [aux_sym_cmd_identifier_token40] = ACTIONS(2563), + [anon_sym_def] = ACTIONS(2561), + [anon_sym_export_DASHenv] = ACTIONS(2561), + [anon_sym_extern] = ACTIONS(2561), + [anon_sym_module] = ACTIONS(2561), + [anon_sym_use] = ACTIONS(2561), + [anon_sym_LPAREN] = ACTIONS(2563), + [anon_sym_DOLLAR] = ACTIONS(2563), + [anon_sym_error] = ACTIONS(2561), + [anon_sym_list] = ACTIONS(2561), + [anon_sym_DASH] = ACTIONS(2561), + [anon_sym_break] = ACTIONS(2561), + [anon_sym_continue] = ACTIONS(2561), + [anon_sym_for] = ACTIONS(2561), + [anon_sym_in] = ACTIONS(2561), + [anon_sym_loop] = ACTIONS(2561), + [anon_sym_make] = ACTIONS(2561), + [anon_sym_while] = ACTIONS(2561), + [anon_sym_do] = ACTIONS(2561), + [anon_sym_if] = ACTIONS(2561), + [anon_sym_else] = ACTIONS(2561), + [anon_sym_match] = ACTIONS(2561), + [anon_sym_RBRACE] = ACTIONS(2563), + [anon_sym_try] = ACTIONS(2561), + [anon_sym_catch] = ACTIONS(2561), + [anon_sym_return] = ACTIONS(2561), + [anon_sym_source] = ACTIONS(2561), + [anon_sym_source_DASHenv] = ACTIONS(2561), + [anon_sym_register] = ACTIONS(2561), + [anon_sym_hide] = ACTIONS(2561), + [anon_sym_hide_DASHenv] = ACTIONS(2561), + [anon_sym_overlay] = ACTIONS(2561), + [anon_sym_new] = ACTIONS(2561), + [anon_sym_as] = ACTIONS(2561), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2563), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2563), + [aux_sym__val_number_decimal_token1] = ACTIONS(2561), + [aux_sym__val_number_decimal_token2] = ACTIONS(2563), + [aux_sym__val_number_decimal_token3] = ACTIONS(2563), + [aux_sym__val_number_decimal_token4] = ACTIONS(2563), + [aux_sym__val_number_token1] = ACTIONS(2563), + [aux_sym__val_number_token2] = ACTIONS(2563), + [aux_sym__val_number_token3] = ACTIONS(2563), + [anon_sym_DQUOTE] = ACTIONS(2563), + [sym__str_single_quotes] = ACTIONS(2563), + [sym__str_back_ticks] = ACTIONS(2563), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2563), + [anon_sym_PLUS] = ACTIONS(2561), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2563), }, - [724] = { - [sym_expr_parenthesized] = STATE(5961), - [sym__spread_parenthesized] = STATE(7348), - [sym_val_range] = STATE(7355), - [sym__val_range] = STATE(7469), - [sym__val_range_with_end] = STATE(7194), - [sym__value] = STATE(7355), - [sym_val_nothing] = STATE(521), - [sym_val_bool] = STATE(6215), - [sym__spread_variable] = STATE(7195), - [sym_val_variable] = STATE(5719), - [sym_val_number] = STATE(521), - [sym__val_number_decimal] = STATE(5264), - [sym__val_number] = STATE(2915), - [sym_val_duration] = STATE(521), - [sym_val_filesize] = STATE(521), - [sym_val_binary] = STATE(521), - [sym_val_string] = STATE(521), - [sym__str_double_quotes] = STATE(5413), - [sym_val_interpolated] = STATE(521), - [sym__inter_single_quotes] = STATE(495), - [sym__inter_double_quotes] = STATE(556), - [sym_val_list] = STATE(7057), - [sym__spread_list] = STATE(7348), - [sym_list_body] = STATE(7714), - [sym_val_entry] = STATE(6844), - [sym_val_record] = STATE(521), - [sym_val_table] = STATE(521), - [sym_val_closure] = STATE(521), - [sym__unquoted_in_list] = STATE(6465), - [sym__unquoted_in_list_with_expr] = STATE(7355), - [sym__unquoted_anonymous_prefix] = STATE(6960), - [sym_comment] = STATE(724), - [aux_sym_shebang_repeat1] = STATE(751), - [aux_sym_parameter_repeat2] = STATE(6485), - [aux_sym_list_body_repeat1] = STATE(773), - [anon_sym_true] = ACTIONS(2985), - [anon_sym_false] = ACTIONS(2985), - [anon_sym_null] = ACTIONS(2987), - [aux_sym_cmd_identifier_token38] = ACTIONS(2989), - [aux_sym_cmd_identifier_token39] = ACTIONS(2989), - [aux_sym_cmd_identifier_token40] = ACTIONS(2989), - [sym__newline] = ACTIONS(2543), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_RBRACK] = ACTIONS(2993), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_COMMA] = ACTIONS(2551), - [anon_sym_DOLLAR] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_DOT_DOT] = ACTIONS(3001), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), - [anon_sym_DOT_DOT_LT] = ACTIONS(3003), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(3005), - [aux_sym__val_number_decimal_token2] = ACTIONS(3007), - [aux_sym__val_number_decimal_token3] = ACTIONS(3009), - [aux_sym__val_number_decimal_token4] = ACTIONS(3011), - [aux_sym__val_number_token1] = ACTIONS(2569), - [aux_sym__val_number_token2] = ACTIONS(2569), - [aux_sym__val_number_token3] = ACTIONS(2569), - [anon_sym_0b] = ACTIONS(2571), - [anon_sym_0o] = ACTIONS(2573), - [anon_sym_0x] = ACTIONS(2573), - [sym_val_date] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3015), - [sym__str_single_quotes] = ACTIONS(3017), - [sym__str_back_ticks] = ACTIONS(3017), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [anon_sym_err_GT_GT] = ACTIONS(2589), - [anon_sym_out_GT_GT] = ACTIONS(2589), - [anon_sym_e_GT_GT] = ACTIONS(2589), - [anon_sym_o_GT_GT] = ACTIONS(2589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), - [anon_sym_POUND] = ACTIONS(247), + [671] = { + [sym_comment] = STATE(671), + [anon_sym_export] = ACTIONS(2001), + [anon_sym_alias] = ACTIONS(2001), + [anon_sym_let] = ACTIONS(2001), + [anon_sym_let_DASHenv] = ACTIONS(2001), + [anon_sym_mut] = ACTIONS(2001), + [anon_sym_const] = ACTIONS(2001), + [aux_sym_cmd_identifier_token1] = ACTIONS(2001), + [aux_sym_cmd_identifier_token2] = ACTIONS(2001), + [aux_sym_cmd_identifier_token3] = ACTIONS(2001), + [aux_sym_cmd_identifier_token4] = ACTIONS(2001), + [aux_sym_cmd_identifier_token5] = ACTIONS(2001), + [aux_sym_cmd_identifier_token6] = ACTIONS(2001), + [aux_sym_cmd_identifier_token7] = ACTIONS(2001), + [aux_sym_cmd_identifier_token8] = ACTIONS(2001), + [aux_sym_cmd_identifier_token9] = ACTIONS(2001), + [aux_sym_cmd_identifier_token10] = ACTIONS(2001), + [aux_sym_cmd_identifier_token11] = ACTIONS(2001), + [aux_sym_cmd_identifier_token12] = ACTIONS(2001), + [aux_sym_cmd_identifier_token13] = ACTIONS(2001), + [aux_sym_cmd_identifier_token14] = ACTIONS(2001), + [aux_sym_cmd_identifier_token15] = ACTIONS(2001), + [aux_sym_cmd_identifier_token16] = ACTIONS(2001), + [aux_sym_cmd_identifier_token17] = ACTIONS(2001), + [aux_sym_cmd_identifier_token18] = ACTIONS(2001), + [aux_sym_cmd_identifier_token19] = ACTIONS(2001), + [aux_sym_cmd_identifier_token20] = ACTIONS(2001), + [aux_sym_cmd_identifier_token21] = ACTIONS(2001), + [aux_sym_cmd_identifier_token22] = ACTIONS(2001), + [aux_sym_cmd_identifier_token23] = ACTIONS(2001), + [aux_sym_cmd_identifier_token24] = ACTIONS(2001), + [aux_sym_cmd_identifier_token25] = ACTIONS(2001), + [aux_sym_cmd_identifier_token26] = ACTIONS(2001), + [aux_sym_cmd_identifier_token27] = ACTIONS(2001), + [aux_sym_cmd_identifier_token28] = ACTIONS(2001), + [aux_sym_cmd_identifier_token29] = ACTIONS(2001), + [aux_sym_cmd_identifier_token30] = ACTIONS(2001), + [aux_sym_cmd_identifier_token31] = ACTIONS(2001), + [aux_sym_cmd_identifier_token32] = ACTIONS(2001), + [aux_sym_cmd_identifier_token33] = ACTIONS(2001), + [aux_sym_cmd_identifier_token34] = ACTIONS(2001), + [aux_sym_cmd_identifier_token35] = ACTIONS(2001), + [aux_sym_cmd_identifier_token36] = ACTIONS(2001), + [anon_sym_true] = ACTIONS(2003), + [anon_sym_false] = ACTIONS(2003), + [anon_sym_null] = ACTIONS(2003), + [aux_sym_cmd_identifier_token38] = ACTIONS(2001), + [aux_sym_cmd_identifier_token39] = ACTIONS(2003), + [aux_sym_cmd_identifier_token40] = ACTIONS(2003), + [anon_sym_def] = ACTIONS(2001), + [anon_sym_export_DASHenv] = ACTIONS(2001), + [anon_sym_extern] = ACTIONS(2001), + [anon_sym_module] = ACTIONS(2001), + [anon_sym_use] = ACTIONS(2001), + [anon_sym_LPAREN] = ACTIONS(2003), + [anon_sym_DOLLAR] = ACTIONS(2003), + [anon_sym_error] = ACTIONS(2001), + [anon_sym_list] = ACTIONS(2001), + [anon_sym_DASH] = ACTIONS(2001), + [anon_sym_break] = ACTIONS(2001), + [anon_sym_continue] = ACTIONS(2001), + [anon_sym_for] = ACTIONS(2001), + [anon_sym_in] = ACTIONS(2001), + [anon_sym_loop] = ACTIONS(2001), + [anon_sym_make] = ACTIONS(2001), + [anon_sym_while] = ACTIONS(2001), + [anon_sym_do] = ACTIONS(2001), + [anon_sym_if] = ACTIONS(2001), + [anon_sym_else] = ACTIONS(2001), + [anon_sym_match] = ACTIONS(2001), + [anon_sym_RBRACE] = ACTIONS(2003), + [anon_sym_try] = ACTIONS(2001), + [anon_sym_catch] = ACTIONS(2001), + [anon_sym_return] = ACTIONS(2001), + [anon_sym_source] = ACTIONS(2001), + [anon_sym_source_DASHenv] = ACTIONS(2001), + [anon_sym_register] = ACTIONS(2001), + [anon_sym_hide] = ACTIONS(2001), + [anon_sym_hide_DASHenv] = ACTIONS(2001), + [anon_sym_overlay] = ACTIONS(2001), + [anon_sym_new] = ACTIONS(2001), + [anon_sym_as] = ACTIONS(2001), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2003), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2003), + [aux_sym__val_number_decimal_token1] = ACTIONS(2001), + [aux_sym__val_number_decimal_token2] = ACTIONS(2003), + [aux_sym__val_number_decimal_token3] = ACTIONS(2003), + [aux_sym__val_number_decimal_token4] = ACTIONS(2003), + [aux_sym__val_number_token1] = ACTIONS(2003), + [aux_sym__val_number_token2] = ACTIONS(2003), + [aux_sym__val_number_token3] = ACTIONS(2003), + [anon_sym_DQUOTE] = ACTIONS(2003), + [sym__str_single_quotes] = ACTIONS(2003), + [sym__str_back_ticks] = ACTIONS(2003), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2003), + [anon_sym_PLUS] = ACTIONS(2001), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2003), }, - [725] = { - [sym_expr_parenthesized] = STATE(5961), - [sym__spread_parenthesized] = STATE(7348), - [sym_val_range] = STATE(7355), - [sym__val_range] = STATE(7469), - [sym__val_range_with_end] = STATE(7194), - [sym__value] = STATE(7355), - [sym_val_nothing] = STATE(521), - [sym_val_bool] = STATE(6215), - [sym__spread_variable] = STATE(7195), - [sym_val_variable] = STATE(5719), - [sym_val_number] = STATE(521), - [sym__val_number_decimal] = STATE(5264), - [sym__val_number] = STATE(2915), - [sym_val_duration] = STATE(521), - [sym_val_filesize] = STATE(521), - [sym_val_binary] = STATE(521), - [sym_val_string] = STATE(521), - [sym__str_double_quotes] = STATE(5413), - [sym_val_interpolated] = STATE(521), - [sym__inter_single_quotes] = STATE(495), - [sym__inter_double_quotes] = STATE(556), - [sym_val_list] = STATE(7049), - [sym__spread_list] = STATE(7348), - [sym_list_body] = STATE(7547), - [sym_val_entry] = STATE(6844), - [sym_val_record] = STATE(521), - [sym_val_table] = STATE(521), - [sym_val_closure] = STATE(521), - [sym__unquoted_in_list] = STATE(6465), - [sym__unquoted_in_list_with_expr] = STATE(7355), - [sym__unquoted_anonymous_prefix] = STATE(6960), - [sym_comment] = STATE(725), - [aux_sym_shebang_repeat1] = STATE(761), - [aux_sym_parameter_repeat2] = STATE(6485), - [aux_sym_list_body_repeat1] = STATE(773), - [anon_sym_true] = ACTIONS(2985), - [anon_sym_false] = ACTIONS(2985), - [anon_sym_null] = ACTIONS(2987), - [aux_sym_cmd_identifier_token38] = ACTIONS(2989), - [aux_sym_cmd_identifier_token39] = ACTIONS(2989), - [aux_sym_cmd_identifier_token40] = ACTIONS(2989), - [sym__newline] = ACTIONS(2543), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_RBRACK] = ACTIONS(3019), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_COMMA] = ACTIONS(2551), - [anon_sym_DOLLAR] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_DOT_DOT] = ACTIONS(3001), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), - [anon_sym_DOT_DOT_LT] = ACTIONS(3003), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(3005), - [aux_sym__val_number_decimal_token2] = ACTIONS(3007), - [aux_sym__val_number_decimal_token3] = ACTIONS(3009), - [aux_sym__val_number_decimal_token4] = ACTIONS(3011), - [aux_sym__val_number_token1] = ACTIONS(2569), - [aux_sym__val_number_token2] = ACTIONS(2569), - [aux_sym__val_number_token3] = ACTIONS(2569), - [anon_sym_0b] = ACTIONS(2571), - [anon_sym_0o] = ACTIONS(2573), - [anon_sym_0x] = ACTIONS(2573), - [sym_val_date] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3015), - [sym__str_single_quotes] = ACTIONS(3017), - [sym__str_back_ticks] = ACTIONS(3017), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [anon_sym_err_GT_GT] = ACTIONS(2589), - [anon_sym_out_GT_GT] = ACTIONS(2589), - [anon_sym_e_GT_GT] = ACTIONS(2589), - [anon_sym_o_GT_GT] = ACTIONS(2589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), - [anon_sym_POUND] = ACTIONS(247), + [672] = { + [sym_comment] = STATE(672), + [anon_sym_export] = ACTIONS(2535), + [anon_sym_alias] = ACTIONS(2535), + [anon_sym_let] = ACTIONS(2535), + [anon_sym_let_DASHenv] = ACTIONS(2535), + [anon_sym_mut] = ACTIONS(2535), + [anon_sym_const] = ACTIONS(2535), + [aux_sym_cmd_identifier_token1] = ACTIONS(2535), + [aux_sym_cmd_identifier_token2] = ACTIONS(2535), + [aux_sym_cmd_identifier_token3] = ACTIONS(2535), + [aux_sym_cmd_identifier_token4] = ACTIONS(2535), + [aux_sym_cmd_identifier_token5] = ACTIONS(2535), + [aux_sym_cmd_identifier_token6] = ACTIONS(2535), + [aux_sym_cmd_identifier_token7] = ACTIONS(2535), + [aux_sym_cmd_identifier_token8] = ACTIONS(2535), + [aux_sym_cmd_identifier_token9] = ACTIONS(2535), + [aux_sym_cmd_identifier_token10] = ACTIONS(2535), + [aux_sym_cmd_identifier_token11] = ACTIONS(2535), + [aux_sym_cmd_identifier_token12] = ACTIONS(2535), + [aux_sym_cmd_identifier_token13] = ACTIONS(2535), + [aux_sym_cmd_identifier_token14] = ACTIONS(2535), + [aux_sym_cmd_identifier_token15] = ACTIONS(2535), + [aux_sym_cmd_identifier_token16] = ACTIONS(2535), + [aux_sym_cmd_identifier_token17] = ACTIONS(2535), + [aux_sym_cmd_identifier_token18] = ACTIONS(2535), + [aux_sym_cmd_identifier_token19] = ACTIONS(2535), + [aux_sym_cmd_identifier_token20] = ACTIONS(2535), + [aux_sym_cmd_identifier_token21] = ACTIONS(2535), + [aux_sym_cmd_identifier_token22] = ACTIONS(2535), + [aux_sym_cmd_identifier_token23] = ACTIONS(2535), + [aux_sym_cmd_identifier_token24] = ACTIONS(2535), + [aux_sym_cmd_identifier_token25] = ACTIONS(2535), + [aux_sym_cmd_identifier_token26] = ACTIONS(2535), + [aux_sym_cmd_identifier_token27] = ACTIONS(2535), + [aux_sym_cmd_identifier_token28] = ACTIONS(2535), + [aux_sym_cmd_identifier_token29] = ACTIONS(2535), + [aux_sym_cmd_identifier_token30] = ACTIONS(2535), + [aux_sym_cmd_identifier_token31] = ACTIONS(2535), + [aux_sym_cmd_identifier_token32] = ACTIONS(2535), + [aux_sym_cmd_identifier_token33] = ACTIONS(2535), + [aux_sym_cmd_identifier_token34] = ACTIONS(2535), + [aux_sym_cmd_identifier_token35] = ACTIONS(2535), + [aux_sym_cmd_identifier_token36] = ACTIONS(2535), + [anon_sym_true] = ACTIONS(2537), + [anon_sym_false] = ACTIONS(2537), + [anon_sym_null] = ACTIONS(2537), + [aux_sym_cmd_identifier_token38] = ACTIONS(2535), + [aux_sym_cmd_identifier_token39] = ACTIONS(2537), + [aux_sym_cmd_identifier_token40] = ACTIONS(2537), + [anon_sym_def] = ACTIONS(2535), + [anon_sym_export_DASHenv] = ACTIONS(2535), + [anon_sym_extern] = ACTIONS(2535), + [anon_sym_module] = ACTIONS(2535), + [anon_sym_use] = ACTIONS(2535), + [anon_sym_LPAREN] = ACTIONS(2537), + [anon_sym_DOLLAR] = ACTIONS(2537), + [anon_sym_error] = ACTIONS(2535), + [anon_sym_list] = ACTIONS(2535), + [anon_sym_DASH] = ACTIONS(2535), + [anon_sym_break] = ACTIONS(2535), + [anon_sym_continue] = ACTIONS(2535), + [anon_sym_for] = ACTIONS(2535), + [anon_sym_in] = ACTIONS(2535), + [anon_sym_loop] = ACTIONS(2535), + [anon_sym_make] = ACTIONS(2535), + [anon_sym_while] = ACTIONS(2535), + [anon_sym_do] = ACTIONS(2535), + [anon_sym_if] = ACTIONS(2535), + [anon_sym_else] = ACTIONS(2535), + [anon_sym_match] = ACTIONS(2535), + [anon_sym_RBRACE] = ACTIONS(2537), + [anon_sym_try] = ACTIONS(2535), + [anon_sym_catch] = ACTIONS(2535), + [anon_sym_return] = ACTIONS(2535), + [anon_sym_source] = ACTIONS(2535), + [anon_sym_source_DASHenv] = ACTIONS(2535), + [anon_sym_register] = ACTIONS(2535), + [anon_sym_hide] = ACTIONS(2535), + [anon_sym_hide_DASHenv] = ACTIONS(2535), + [anon_sym_overlay] = ACTIONS(2535), + [anon_sym_new] = ACTIONS(2535), + [anon_sym_as] = ACTIONS(2535), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2537), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2537), + [aux_sym__val_number_decimal_token1] = ACTIONS(2535), + [aux_sym__val_number_decimal_token2] = ACTIONS(2537), + [aux_sym__val_number_decimal_token3] = ACTIONS(2537), + [aux_sym__val_number_decimal_token4] = ACTIONS(2537), + [aux_sym__val_number_token1] = ACTIONS(2537), + [aux_sym__val_number_token2] = ACTIONS(2537), + [aux_sym__val_number_token3] = ACTIONS(2537), + [anon_sym_DQUOTE] = ACTIONS(2537), + [sym__str_single_quotes] = ACTIONS(2537), + [sym__str_back_ticks] = ACTIONS(2537), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2537), + [anon_sym_PLUS] = ACTIONS(2535), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2537), }, - [726] = { - [sym_expr_parenthesized] = STATE(5961), - [sym__spread_parenthesized] = STATE(7348), - [sym_val_range] = STATE(7355), - [sym__val_range] = STATE(7469), - [sym__val_range_with_end] = STATE(7194), - [sym__value] = STATE(7355), - [sym_val_nothing] = STATE(521), - [sym_val_bool] = STATE(6215), - [sym__spread_variable] = STATE(7195), - [sym_val_variable] = STATE(5719), - [sym_val_number] = STATE(521), - [sym__val_number_decimal] = STATE(5264), - [sym__val_number] = STATE(2915), - [sym_val_duration] = STATE(521), - [sym_val_filesize] = STATE(521), - [sym_val_binary] = STATE(521), - [sym_val_string] = STATE(521), - [sym__str_double_quotes] = STATE(5413), - [sym_val_interpolated] = STATE(521), - [sym__inter_single_quotes] = STATE(495), - [sym__inter_double_quotes] = STATE(556), - [sym_val_list] = STATE(7086), - [sym__spread_list] = STATE(7348), - [sym_list_body] = STATE(7506), - [sym_val_entry] = STATE(6844), - [sym_val_record] = STATE(521), - [sym_val_table] = STATE(521), - [sym_val_closure] = STATE(521), - [sym__unquoted_in_list] = STATE(6465), - [sym__unquoted_in_list_with_expr] = STATE(7355), - [sym__unquoted_anonymous_prefix] = STATE(6960), - [sym_comment] = STATE(726), - [aux_sym_shebang_repeat1] = STATE(765), - [aux_sym_parameter_repeat2] = STATE(6485), - [aux_sym_list_body_repeat1] = STATE(773), - [anon_sym_true] = ACTIONS(2985), - [anon_sym_false] = ACTIONS(2985), - [anon_sym_null] = ACTIONS(2987), - [aux_sym_cmd_identifier_token38] = ACTIONS(2989), - [aux_sym_cmd_identifier_token39] = ACTIONS(2989), - [aux_sym_cmd_identifier_token40] = ACTIONS(2989), - [sym__newline] = ACTIONS(2543), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_RBRACK] = ACTIONS(3021), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_COMMA] = ACTIONS(2551), - [anon_sym_DOLLAR] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_DOT_DOT] = ACTIONS(3001), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), - [anon_sym_DOT_DOT_LT] = ACTIONS(3003), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(3005), - [aux_sym__val_number_decimal_token2] = ACTIONS(3007), - [aux_sym__val_number_decimal_token3] = ACTIONS(3009), - [aux_sym__val_number_decimal_token4] = ACTIONS(3011), - [aux_sym__val_number_token1] = ACTIONS(2569), - [aux_sym__val_number_token2] = ACTIONS(2569), - [aux_sym__val_number_token3] = ACTIONS(2569), - [anon_sym_0b] = ACTIONS(2571), - [anon_sym_0o] = ACTIONS(2573), - [anon_sym_0x] = ACTIONS(2573), - [sym_val_date] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3015), - [sym__str_single_quotes] = ACTIONS(3017), - [sym__str_back_ticks] = ACTIONS(3017), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [anon_sym_err_GT_GT] = ACTIONS(2589), - [anon_sym_out_GT_GT] = ACTIONS(2589), - [anon_sym_e_GT_GT] = ACTIONS(2589), - [anon_sym_o_GT_GT] = ACTIONS(2589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), - [anon_sym_POUND] = ACTIONS(247), - }, - [727] = { - [sym_expr_parenthesized] = STATE(5961), - [sym__spread_parenthesized] = STATE(7348), - [sym_val_range] = STATE(7355), - [sym__val_range] = STATE(7469), - [sym__val_range_with_end] = STATE(7194), - [sym__value] = STATE(7355), - [sym_val_nothing] = STATE(521), - [sym_val_bool] = STATE(6215), - [sym__spread_variable] = STATE(7195), - [sym_val_variable] = STATE(5719), - [sym_val_number] = STATE(521), - [sym__val_number_decimal] = STATE(5264), - [sym__val_number] = STATE(2915), - [sym_val_duration] = STATE(521), - [sym_val_filesize] = STATE(521), - [sym_val_binary] = STATE(521), - [sym_val_string] = STATE(521), - [sym__str_double_quotes] = STATE(5413), - [sym_val_interpolated] = STATE(521), - [sym__inter_single_quotes] = STATE(495), - [sym__inter_double_quotes] = STATE(556), - [sym_val_list] = STATE(521), - [sym__spread_list] = STATE(7348), - [sym_list_body] = STATE(7672), - [sym_val_entry] = STATE(6844), - [sym_val_record] = STATE(521), - [sym_val_table] = STATE(521), - [sym_val_closure] = STATE(521), - [sym__unquoted_in_list] = STATE(6465), - [sym__unquoted_in_list_with_expr] = STATE(7355), - [sym__unquoted_anonymous_prefix] = STATE(6960), - [sym_comment] = STATE(727), - [aux_sym_shebang_repeat1] = STATE(755), - [aux_sym_parameter_repeat2] = STATE(6485), - [aux_sym_list_body_repeat1] = STATE(773), - [anon_sym_true] = ACTIONS(2985), - [anon_sym_false] = ACTIONS(2985), - [anon_sym_null] = ACTIONS(2987), - [aux_sym_cmd_identifier_token38] = ACTIONS(2989), - [aux_sym_cmd_identifier_token39] = ACTIONS(2989), - [aux_sym_cmd_identifier_token40] = ACTIONS(2989), - [sym__newline] = ACTIONS(2543), - [anon_sym_LBRACK] = ACTIONS(3023), - [anon_sym_RBRACK] = ACTIONS(3025), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_COMMA] = ACTIONS(2551), - [anon_sym_DOLLAR] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_DOT_DOT] = ACTIONS(3001), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), - [anon_sym_DOT_DOT_LT] = ACTIONS(3003), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(3005), - [aux_sym__val_number_decimal_token2] = ACTIONS(3007), - [aux_sym__val_number_decimal_token3] = ACTIONS(3009), - [aux_sym__val_number_decimal_token4] = ACTIONS(3011), - [aux_sym__val_number_token1] = ACTIONS(2569), - [aux_sym__val_number_token2] = ACTIONS(2569), - [aux_sym__val_number_token3] = ACTIONS(2569), - [anon_sym_0b] = ACTIONS(2571), - [anon_sym_0o] = ACTIONS(2573), - [anon_sym_0x] = ACTIONS(2573), - [sym_val_date] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3015), - [sym__str_single_quotes] = ACTIONS(3017), - [sym__str_back_ticks] = ACTIONS(3017), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [anon_sym_err_GT_GT] = ACTIONS(2589), - [anon_sym_out_GT_GT] = ACTIONS(2589), - [anon_sym_e_GT_GT] = ACTIONS(2589), - [anon_sym_o_GT_GT] = ACTIONS(2589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), - [anon_sym_POUND] = ACTIONS(247), - }, - [728] = { - [sym_expr_parenthesized] = STATE(5961), - [sym__spread_parenthesized] = STATE(7348), - [sym_val_range] = STATE(7355), - [sym__val_range] = STATE(7469), - [sym__val_range_with_end] = STATE(7194), - [sym__value] = STATE(7355), - [sym_val_nothing] = STATE(521), - [sym_val_bool] = STATE(6215), - [sym__spread_variable] = STATE(7195), - [sym_val_variable] = STATE(5719), - [sym_val_number] = STATE(521), - [sym__val_number_decimal] = STATE(5264), - [sym__val_number] = STATE(2915), - [sym_val_duration] = STATE(521), - [sym_val_filesize] = STATE(521), - [sym_val_binary] = STATE(521), - [sym_val_string] = STATE(521), - [sym__str_double_quotes] = STATE(5413), - [sym_val_interpolated] = STATE(521), - [sym__inter_single_quotes] = STATE(495), - [sym__inter_double_quotes] = STATE(556), - [sym_val_list] = STATE(7042), - [sym__spread_list] = STATE(7348), - [sym_list_body] = STATE(7422), - [sym_val_entry] = STATE(6844), - [sym_val_record] = STATE(521), - [sym_val_table] = STATE(521), - [sym_val_closure] = STATE(521), - [sym__unquoted_in_list] = STATE(6465), - [sym__unquoted_in_list_with_expr] = STATE(7355), - [sym__unquoted_anonymous_prefix] = STATE(6960), - [sym_comment] = STATE(728), - [aux_sym_shebang_repeat1] = STATE(760), - [aux_sym_parameter_repeat2] = STATE(6485), - [aux_sym_list_body_repeat1] = STATE(773), - [anon_sym_true] = ACTIONS(2985), - [anon_sym_false] = ACTIONS(2985), - [anon_sym_null] = ACTIONS(2987), - [aux_sym_cmd_identifier_token38] = ACTIONS(2989), - [aux_sym_cmd_identifier_token39] = ACTIONS(2989), - [aux_sym_cmd_identifier_token40] = ACTIONS(2989), - [sym__newline] = ACTIONS(2543), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_RBRACK] = ACTIONS(3027), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_COMMA] = ACTIONS(2551), - [anon_sym_DOLLAR] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_DOT_DOT] = ACTIONS(3001), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), - [anon_sym_DOT_DOT_LT] = ACTIONS(3003), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(3005), - [aux_sym__val_number_decimal_token2] = ACTIONS(3007), - [aux_sym__val_number_decimal_token3] = ACTIONS(3009), - [aux_sym__val_number_decimal_token4] = ACTIONS(3011), - [aux_sym__val_number_token1] = ACTIONS(2569), - [aux_sym__val_number_token2] = ACTIONS(2569), - [aux_sym__val_number_token3] = ACTIONS(2569), - [anon_sym_0b] = ACTIONS(2571), - [anon_sym_0o] = ACTIONS(2573), - [anon_sym_0x] = ACTIONS(2573), - [sym_val_date] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3015), - [sym__str_single_quotes] = ACTIONS(3017), - [sym__str_back_ticks] = ACTIONS(3017), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [anon_sym_err_GT_GT] = ACTIONS(2589), - [anon_sym_out_GT_GT] = ACTIONS(2589), - [anon_sym_e_GT_GT] = ACTIONS(2589), - [anon_sym_o_GT_GT] = ACTIONS(2589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), - [anon_sym_POUND] = ACTIONS(247), - }, - [729] = { - [sym_expr_parenthesized] = STATE(5961), - [sym__spread_parenthesized] = STATE(7348), - [sym_val_range] = STATE(7355), - [sym__val_range] = STATE(7469), - [sym__val_range_with_end] = STATE(7194), - [sym__value] = STATE(7355), - [sym_val_nothing] = STATE(521), - [sym_val_bool] = STATE(6215), - [sym__spread_variable] = STATE(7195), - [sym_val_variable] = STATE(5719), - [sym_val_number] = STATE(521), - [sym__val_number_decimal] = STATE(5264), - [sym__val_number] = STATE(2915), - [sym_val_duration] = STATE(521), - [sym_val_filesize] = STATE(521), - [sym_val_binary] = STATE(521), - [sym_val_string] = STATE(521), - [sym__str_double_quotes] = STATE(5413), - [sym_val_interpolated] = STATE(521), - [sym__inter_single_quotes] = STATE(495), - [sym__inter_double_quotes] = STATE(556), - [sym_val_list] = STATE(7034), - [sym__spread_list] = STATE(7348), - [sym_list_body] = STATE(7509), - [sym_val_entry] = STATE(6844), - [sym_val_record] = STATE(521), - [sym_val_table] = STATE(521), - [sym_val_closure] = STATE(521), - [sym__unquoted_in_list] = STATE(6465), - [sym__unquoted_in_list_with_expr] = STATE(7355), - [sym__unquoted_anonymous_prefix] = STATE(6960), - [sym_comment] = STATE(729), - [aux_sym_shebang_repeat1] = STATE(759), - [aux_sym_parameter_repeat2] = STATE(6485), - [aux_sym_list_body_repeat1] = STATE(773), - [anon_sym_true] = ACTIONS(2985), - [anon_sym_false] = ACTIONS(2985), - [anon_sym_null] = ACTIONS(2987), - [aux_sym_cmd_identifier_token38] = ACTIONS(2989), - [aux_sym_cmd_identifier_token39] = ACTIONS(2989), - [aux_sym_cmd_identifier_token40] = ACTIONS(2989), - [sym__newline] = ACTIONS(2543), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_RBRACK] = ACTIONS(3029), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_COMMA] = ACTIONS(2551), - [anon_sym_DOLLAR] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_DOT_DOT] = ACTIONS(3001), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), - [anon_sym_DOT_DOT_LT] = ACTIONS(3003), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(3005), - [aux_sym__val_number_decimal_token2] = ACTIONS(3007), - [aux_sym__val_number_decimal_token3] = ACTIONS(3009), - [aux_sym__val_number_decimal_token4] = ACTIONS(3011), - [aux_sym__val_number_token1] = ACTIONS(2569), - [aux_sym__val_number_token2] = ACTIONS(2569), - [aux_sym__val_number_token3] = ACTIONS(2569), - [anon_sym_0b] = ACTIONS(2571), - [anon_sym_0o] = ACTIONS(2573), - [anon_sym_0x] = ACTIONS(2573), - [sym_val_date] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3015), - [sym__str_single_quotes] = ACTIONS(3017), - [sym__str_back_ticks] = ACTIONS(3017), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [anon_sym_err_GT_GT] = ACTIONS(2589), - [anon_sym_out_GT_GT] = ACTIONS(2589), - [anon_sym_e_GT_GT] = ACTIONS(2589), - [anon_sym_o_GT_GT] = ACTIONS(2589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), - [anon_sym_POUND] = ACTIONS(247), - }, - [730] = { - [sym_expr_parenthesized] = STATE(5961), - [sym__spread_parenthesized] = STATE(7348), - [sym_val_range] = STATE(7355), - [sym__val_range] = STATE(7469), - [sym__val_range_with_end] = STATE(7194), - [sym__value] = STATE(7355), - [sym_val_nothing] = STATE(521), - [sym_val_bool] = STATE(6215), - [sym__spread_variable] = STATE(7195), - [sym_val_variable] = STATE(5719), - [sym_val_number] = STATE(521), - [sym__val_number_decimal] = STATE(5264), - [sym__val_number] = STATE(2915), - [sym_val_duration] = STATE(521), - [sym_val_filesize] = STATE(521), - [sym_val_binary] = STATE(521), - [sym_val_string] = STATE(521), - [sym__str_double_quotes] = STATE(5413), - [sym_val_interpolated] = STATE(521), - [sym__inter_single_quotes] = STATE(495), - [sym__inter_double_quotes] = STATE(556), - [sym_val_list] = STATE(6926), - [sym__spread_list] = STATE(7348), - [sym_list_body] = STATE(7379), - [sym_val_entry] = STATE(6844), - [sym_val_record] = STATE(521), - [sym_val_table] = STATE(521), - [sym_val_closure] = STATE(521), - [sym__unquoted_in_list] = STATE(6465), - [sym__unquoted_in_list_with_expr] = STATE(7355), - [sym__unquoted_anonymous_prefix] = STATE(6960), - [sym_comment] = STATE(730), - [aux_sym_shebang_repeat1] = STATE(757), - [aux_sym_parameter_repeat2] = STATE(6485), - [aux_sym_list_body_repeat1] = STATE(773), - [anon_sym_true] = ACTIONS(2985), - [anon_sym_false] = ACTIONS(2985), - [anon_sym_null] = ACTIONS(2987), - [aux_sym_cmd_identifier_token38] = ACTIONS(2989), - [aux_sym_cmd_identifier_token39] = ACTIONS(2989), - [aux_sym_cmd_identifier_token40] = ACTIONS(2989), - [sym__newline] = ACTIONS(2543), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_RBRACK] = ACTIONS(3031), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_COMMA] = ACTIONS(2551), - [anon_sym_DOLLAR] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_DOT_DOT] = ACTIONS(3001), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), - [anon_sym_DOT_DOT_LT] = ACTIONS(3003), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(3005), - [aux_sym__val_number_decimal_token2] = ACTIONS(3007), - [aux_sym__val_number_decimal_token3] = ACTIONS(3009), - [aux_sym__val_number_decimal_token4] = ACTIONS(3011), - [aux_sym__val_number_token1] = ACTIONS(2569), - [aux_sym__val_number_token2] = ACTIONS(2569), - [aux_sym__val_number_token3] = ACTIONS(2569), - [anon_sym_0b] = ACTIONS(2571), - [anon_sym_0o] = ACTIONS(2573), - [anon_sym_0x] = ACTIONS(2573), - [sym_val_date] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3015), - [sym__str_single_quotes] = ACTIONS(3017), - [sym__str_back_ticks] = ACTIONS(3017), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [anon_sym_err_GT_GT] = ACTIONS(2589), - [anon_sym_out_GT_GT] = ACTIONS(2589), - [anon_sym_e_GT_GT] = ACTIONS(2589), - [anon_sym_o_GT_GT] = ACTIONS(2589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), - [anon_sym_POUND] = ACTIONS(247), - }, - [731] = { - [sym_expr_parenthesized] = STATE(5961), - [sym__spread_parenthesized] = STATE(7348), - [sym_val_range] = STATE(7355), - [sym__val_range] = STATE(7469), - [sym__val_range_with_end] = STATE(7194), - [sym__value] = STATE(7355), - [sym_val_nothing] = STATE(521), - [sym_val_bool] = STATE(6215), - [sym__spread_variable] = STATE(7195), - [sym_val_variable] = STATE(5719), - [sym_val_number] = STATE(521), - [sym__val_number_decimal] = STATE(5264), - [sym__val_number] = STATE(2915), - [sym_val_duration] = STATE(521), - [sym_val_filesize] = STATE(521), - [sym_val_binary] = STATE(521), - [sym_val_string] = STATE(521), - [sym__str_double_quotes] = STATE(5413), - [sym_val_interpolated] = STATE(521), - [sym__inter_single_quotes] = STATE(495), - [sym__inter_double_quotes] = STATE(556), - [sym_val_list] = STATE(7093), - [sym__spread_list] = STATE(7348), - [sym_list_body] = STATE(7630), - [sym_val_entry] = STATE(6844), - [sym_val_record] = STATE(521), - [sym_val_table] = STATE(521), - [sym_val_closure] = STATE(521), - [sym__unquoted_in_list] = STATE(6465), - [sym__unquoted_in_list_with_expr] = STATE(7355), - [sym__unquoted_anonymous_prefix] = STATE(6960), - [sym_comment] = STATE(731), - [aux_sym_shebang_repeat1] = STATE(766), - [aux_sym_parameter_repeat2] = STATE(6485), - [aux_sym_list_body_repeat1] = STATE(773), - [anon_sym_true] = ACTIONS(2985), - [anon_sym_false] = ACTIONS(2985), - [anon_sym_null] = ACTIONS(2987), - [aux_sym_cmd_identifier_token38] = ACTIONS(2989), - [aux_sym_cmd_identifier_token39] = ACTIONS(2989), - [aux_sym_cmd_identifier_token40] = ACTIONS(2989), - [sym__newline] = ACTIONS(2543), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_RBRACK] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_COMMA] = ACTIONS(2551), - [anon_sym_DOLLAR] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_DOT_DOT] = ACTIONS(3001), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), - [anon_sym_DOT_DOT_LT] = ACTIONS(3003), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(3005), - [aux_sym__val_number_decimal_token2] = ACTIONS(3007), - [aux_sym__val_number_decimal_token3] = ACTIONS(3009), - [aux_sym__val_number_decimal_token4] = ACTIONS(3011), - [aux_sym__val_number_token1] = ACTIONS(2569), - [aux_sym__val_number_token2] = ACTIONS(2569), - [aux_sym__val_number_token3] = ACTIONS(2569), - [anon_sym_0b] = ACTIONS(2571), - [anon_sym_0o] = ACTIONS(2573), - [anon_sym_0x] = ACTIONS(2573), - [sym_val_date] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3015), - [sym__str_single_quotes] = ACTIONS(3017), - [sym__str_back_ticks] = ACTIONS(3017), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [anon_sym_err_GT_GT] = ACTIONS(2589), - [anon_sym_out_GT_GT] = ACTIONS(2589), - [anon_sym_e_GT_GT] = ACTIONS(2589), - [anon_sym_o_GT_GT] = ACTIONS(2589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), - [anon_sym_POUND] = ACTIONS(247), - }, - [732] = { - [sym_expr_parenthesized] = STATE(5961), - [sym__spread_parenthesized] = STATE(7348), - [sym_val_range] = STATE(7355), - [sym__val_range] = STATE(7469), - [sym__val_range_with_end] = STATE(7194), - [sym__value] = STATE(7355), - [sym_val_nothing] = STATE(521), - [sym_val_bool] = STATE(6215), - [sym__spread_variable] = STATE(7195), - [sym_val_variable] = STATE(5719), - [sym_val_number] = STATE(521), - [sym__val_number_decimal] = STATE(5264), - [sym__val_number] = STATE(2915), - [sym_val_duration] = STATE(521), - [sym_val_filesize] = STATE(521), - [sym_val_binary] = STATE(521), - [sym_val_string] = STATE(521), - [sym__str_double_quotes] = STATE(5413), - [sym_val_interpolated] = STATE(521), - [sym__inter_single_quotes] = STATE(495), - [sym__inter_double_quotes] = STATE(556), - [sym_val_list] = STATE(521), - [sym__spread_list] = STATE(7348), - [sym_list_body] = STATE(7680), - [sym_val_entry] = STATE(6844), - [sym_val_record] = STATE(521), - [sym_val_table] = STATE(521), - [sym_val_closure] = STATE(521), - [sym__unquoted_in_list] = STATE(6465), - [sym__unquoted_in_list_with_expr] = STATE(7355), - [sym__unquoted_anonymous_prefix] = STATE(6960), - [sym_comment] = STATE(732), - [aux_sym_shebang_repeat1] = STATE(755), - [aux_sym_parameter_repeat2] = STATE(6485), - [aux_sym_list_body_repeat1] = STATE(773), - [anon_sym_true] = ACTIONS(2985), - [anon_sym_false] = ACTIONS(2985), - [anon_sym_null] = ACTIONS(2987), - [aux_sym_cmd_identifier_token38] = ACTIONS(2989), - [aux_sym_cmd_identifier_token39] = ACTIONS(2989), - [aux_sym_cmd_identifier_token40] = ACTIONS(2989), - [sym__newline] = ACTIONS(2543), - [anon_sym_LBRACK] = ACTIONS(3023), - [anon_sym_RBRACK] = ACTIONS(3035), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_COMMA] = ACTIONS(2551), - [anon_sym_DOLLAR] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_DOT_DOT] = ACTIONS(3001), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), - [anon_sym_DOT_DOT_LT] = ACTIONS(3003), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(3005), - [aux_sym__val_number_decimal_token2] = ACTIONS(3007), - [aux_sym__val_number_decimal_token3] = ACTIONS(3009), - [aux_sym__val_number_decimal_token4] = ACTIONS(3011), - [aux_sym__val_number_token1] = ACTIONS(2569), - [aux_sym__val_number_token2] = ACTIONS(2569), - [aux_sym__val_number_token3] = ACTIONS(2569), - [anon_sym_0b] = ACTIONS(2571), - [anon_sym_0o] = ACTIONS(2573), - [anon_sym_0x] = ACTIONS(2573), - [sym_val_date] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3015), - [sym__str_single_quotes] = ACTIONS(3017), - [sym__str_back_ticks] = ACTIONS(3017), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [anon_sym_err_GT_GT] = ACTIONS(2589), - [anon_sym_out_GT_GT] = ACTIONS(2589), - [anon_sym_e_GT_GT] = ACTIONS(2589), - [anon_sym_o_GT_GT] = ACTIONS(2589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), - [anon_sym_POUND] = ACTIONS(247), - }, - [733] = { - [sym_expr_parenthesized] = STATE(5961), - [sym__spread_parenthesized] = STATE(7348), - [sym_val_range] = STATE(7355), - [sym__val_range] = STATE(7469), - [sym__val_range_with_end] = STATE(7194), - [sym__value] = STATE(7355), - [sym_val_nothing] = STATE(521), - [sym_val_bool] = STATE(6215), - [sym__spread_variable] = STATE(7195), - [sym_val_variable] = STATE(5719), - [sym_val_number] = STATE(521), - [sym__val_number_decimal] = STATE(5264), - [sym__val_number] = STATE(2915), - [sym_val_duration] = STATE(521), - [sym_val_filesize] = STATE(521), - [sym_val_binary] = STATE(521), - [sym_val_string] = STATE(521), - [sym__str_double_quotes] = STATE(5413), - [sym_val_interpolated] = STATE(521), - [sym__inter_single_quotes] = STATE(495), - [sym__inter_double_quotes] = STATE(556), - [sym_val_list] = STATE(7102), - [sym__spread_list] = STATE(7348), - [sym_list_body] = STATE(7471), - [sym_val_entry] = STATE(6844), - [sym_val_record] = STATE(521), - [sym_val_table] = STATE(521), - [sym_val_closure] = STATE(521), - [sym__unquoted_in_list] = STATE(6465), - [sym__unquoted_in_list_with_expr] = STATE(7355), - [sym__unquoted_anonymous_prefix] = STATE(6960), - [sym_comment] = STATE(733), - [aux_sym_shebang_repeat1] = STATE(767), - [aux_sym_parameter_repeat2] = STATE(6485), - [aux_sym_list_body_repeat1] = STATE(773), - [anon_sym_true] = ACTIONS(2985), - [anon_sym_false] = ACTIONS(2985), - [anon_sym_null] = ACTIONS(2987), - [aux_sym_cmd_identifier_token38] = ACTIONS(2989), - [aux_sym_cmd_identifier_token39] = ACTIONS(2989), - [aux_sym_cmd_identifier_token40] = ACTIONS(2989), - [sym__newline] = ACTIONS(2543), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_RBRACK] = ACTIONS(3037), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_COMMA] = ACTIONS(2551), - [anon_sym_DOLLAR] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_DOT_DOT] = ACTIONS(3001), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), - [anon_sym_DOT_DOT_LT] = ACTIONS(3003), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(3005), - [aux_sym__val_number_decimal_token2] = ACTIONS(3007), - [aux_sym__val_number_decimal_token3] = ACTIONS(3009), - [aux_sym__val_number_decimal_token4] = ACTIONS(3011), - [aux_sym__val_number_token1] = ACTIONS(2569), - [aux_sym__val_number_token2] = ACTIONS(2569), - [aux_sym__val_number_token3] = ACTIONS(2569), - [anon_sym_0b] = ACTIONS(2571), - [anon_sym_0o] = ACTIONS(2573), - [anon_sym_0x] = ACTIONS(2573), - [sym_val_date] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3015), - [sym__str_single_quotes] = ACTIONS(3017), - [sym__str_back_ticks] = ACTIONS(3017), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [anon_sym_err_GT_GT] = ACTIONS(2589), - [anon_sym_out_GT_GT] = ACTIONS(2589), - [anon_sym_e_GT_GT] = ACTIONS(2589), - [anon_sym_o_GT_GT] = ACTIONS(2589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), - [anon_sym_POUND] = ACTIONS(247), - }, - [734] = { - [sym_expr_parenthesized] = STATE(5961), - [sym__spread_parenthesized] = STATE(7348), - [sym_val_range] = STATE(7355), - [sym__val_range] = STATE(7469), - [sym__val_range_with_end] = STATE(7194), - [sym__value] = STATE(7355), - [sym_val_nothing] = STATE(521), - [sym_val_bool] = STATE(6215), - [sym__spread_variable] = STATE(7195), - [sym_val_variable] = STATE(5719), - [sym_val_number] = STATE(521), - [sym__val_number_decimal] = STATE(5264), - [sym__val_number] = STATE(2915), - [sym_val_duration] = STATE(521), - [sym_val_filesize] = STATE(521), - [sym_val_binary] = STATE(521), - [sym_val_string] = STATE(521), - [sym__str_double_quotes] = STATE(5413), - [sym_val_interpolated] = STATE(521), - [sym__inter_single_quotes] = STATE(495), - [sym__inter_double_quotes] = STATE(556), - [sym_val_list] = STATE(6926), - [sym__spread_list] = STATE(7348), - [sym_list_body] = STATE(7381), - [sym_val_entry] = STATE(6844), - [sym_val_record] = STATE(521), - [sym_val_table] = STATE(521), - [sym_val_closure] = STATE(521), - [sym__unquoted_in_list] = STATE(6465), - [sym__unquoted_in_list_with_expr] = STATE(7355), - [sym__unquoted_anonymous_prefix] = STATE(6960), - [sym_comment] = STATE(734), - [aux_sym_shebang_repeat1] = STATE(757), - [aux_sym_parameter_repeat2] = STATE(6485), - [aux_sym_list_body_repeat1] = STATE(773), - [anon_sym_true] = ACTIONS(2985), - [anon_sym_false] = ACTIONS(2985), - [anon_sym_null] = ACTIONS(2987), - [aux_sym_cmd_identifier_token38] = ACTIONS(2989), - [aux_sym_cmd_identifier_token39] = ACTIONS(2989), - [aux_sym_cmd_identifier_token40] = ACTIONS(2989), - [sym__newline] = ACTIONS(2543), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_RBRACK] = ACTIONS(3039), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_COMMA] = ACTIONS(2551), - [anon_sym_DOLLAR] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_DOT_DOT] = ACTIONS(3001), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), - [anon_sym_DOT_DOT_LT] = ACTIONS(3003), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(3005), - [aux_sym__val_number_decimal_token2] = ACTIONS(3007), - [aux_sym__val_number_decimal_token3] = ACTIONS(3009), - [aux_sym__val_number_decimal_token4] = ACTIONS(3011), - [aux_sym__val_number_token1] = ACTIONS(2569), - [aux_sym__val_number_token2] = ACTIONS(2569), - [aux_sym__val_number_token3] = ACTIONS(2569), - [anon_sym_0b] = ACTIONS(2571), - [anon_sym_0o] = ACTIONS(2573), - [anon_sym_0x] = ACTIONS(2573), - [sym_val_date] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3015), - [sym__str_single_quotes] = ACTIONS(3017), - [sym__str_back_ticks] = ACTIONS(3017), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [anon_sym_err_GT_GT] = ACTIONS(2589), - [anon_sym_out_GT_GT] = ACTIONS(2589), - [anon_sym_e_GT_GT] = ACTIONS(2589), - [anon_sym_o_GT_GT] = ACTIONS(2589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), - [anon_sym_POUND] = ACTIONS(247), - }, - [735] = { - [sym_expr_parenthesized] = STATE(5961), - [sym__spread_parenthesized] = STATE(7348), - [sym_val_range] = STATE(7355), - [sym__val_range] = STATE(7469), - [sym__val_range_with_end] = STATE(7194), - [sym__value] = STATE(7355), - [sym_val_nothing] = STATE(521), - [sym_val_bool] = STATE(6215), - [sym__spread_variable] = STATE(7195), - [sym_val_variable] = STATE(5719), - [sym_val_number] = STATE(521), - [sym__val_number_decimal] = STATE(5264), - [sym__val_number] = STATE(2915), - [sym_val_duration] = STATE(521), - [sym_val_filesize] = STATE(521), - [sym_val_binary] = STATE(521), - [sym_val_string] = STATE(521), - [sym__str_double_quotes] = STATE(5413), - [sym_val_interpolated] = STATE(521), - [sym__inter_single_quotes] = STATE(495), - [sym__inter_double_quotes] = STATE(556), - [sym_val_list] = STATE(7078), - [sym__spread_list] = STATE(7348), - [sym_list_body] = STATE(7561), - [sym_val_entry] = STATE(6844), - [sym_val_record] = STATE(521), - [sym_val_table] = STATE(521), - [sym_val_closure] = STATE(521), - [sym__unquoted_in_list] = STATE(6465), - [sym__unquoted_in_list_with_expr] = STATE(7355), - [sym__unquoted_anonymous_prefix] = STATE(6960), - [sym_comment] = STATE(735), - [aux_sym_shebang_repeat1] = STATE(764), - [aux_sym_parameter_repeat2] = STATE(6485), - [aux_sym_list_body_repeat1] = STATE(773), - [anon_sym_true] = ACTIONS(2985), - [anon_sym_false] = ACTIONS(2985), - [anon_sym_null] = ACTIONS(2987), - [aux_sym_cmd_identifier_token38] = ACTIONS(2989), - [aux_sym_cmd_identifier_token39] = ACTIONS(2989), - [aux_sym_cmd_identifier_token40] = ACTIONS(2989), - [sym__newline] = ACTIONS(2543), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_RBRACK] = ACTIONS(3041), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_COMMA] = ACTIONS(2551), - [anon_sym_DOLLAR] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_DOT_DOT] = ACTIONS(3001), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), - [anon_sym_DOT_DOT_LT] = ACTIONS(3003), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(3005), - [aux_sym__val_number_decimal_token2] = ACTIONS(3007), - [aux_sym__val_number_decimal_token3] = ACTIONS(3009), - [aux_sym__val_number_decimal_token4] = ACTIONS(3011), - [aux_sym__val_number_token1] = ACTIONS(2569), - [aux_sym__val_number_token2] = ACTIONS(2569), - [aux_sym__val_number_token3] = ACTIONS(2569), - [anon_sym_0b] = ACTIONS(2571), - [anon_sym_0o] = ACTIONS(2573), - [anon_sym_0x] = ACTIONS(2573), - [sym_val_date] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3015), - [sym__str_single_quotes] = ACTIONS(3017), - [sym__str_back_ticks] = ACTIONS(3017), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [anon_sym_err_GT_GT] = ACTIONS(2589), - [anon_sym_out_GT_GT] = ACTIONS(2589), - [anon_sym_e_GT_GT] = ACTIONS(2589), - [anon_sym_o_GT_GT] = ACTIONS(2589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), - [anon_sym_POUND] = ACTIONS(247), - }, - [736] = { - [sym_expr_parenthesized] = STATE(5961), - [sym__spread_parenthesized] = STATE(7348), - [sym_val_range] = STATE(7355), - [sym__val_range] = STATE(7469), - [sym__val_range_with_end] = STATE(7194), - [sym__value] = STATE(7355), - [sym_val_nothing] = STATE(521), - [sym_val_bool] = STATE(6215), - [sym__spread_variable] = STATE(7195), - [sym_val_variable] = STATE(5719), - [sym_val_number] = STATE(521), - [sym__val_number_decimal] = STATE(5264), - [sym__val_number] = STATE(2915), - [sym_val_duration] = STATE(521), - [sym_val_filesize] = STATE(521), - [sym_val_binary] = STATE(521), - [sym_val_string] = STATE(521), - [sym__str_double_quotes] = STATE(5413), - [sym_val_interpolated] = STATE(521), - [sym__inter_single_quotes] = STATE(495), - [sym__inter_double_quotes] = STATE(556), - [sym_val_list] = STATE(7109), - [sym__spread_list] = STATE(7348), - [sym_list_body] = STATE(7541), - [sym_val_entry] = STATE(6844), - [sym_val_record] = STATE(521), - [sym_val_table] = STATE(521), - [sym_val_closure] = STATE(521), - [sym__unquoted_in_list] = STATE(6465), - [sym__unquoted_in_list_with_expr] = STATE(7355), - [sym__unquoted_anonymous_prefix] = STATE(6960), - [sym_comment] = STATE(736), - [aux_sym_shebang_repeat1] = STATE(768), - [aux_sym_parameter_repeat2] = STATE(6485), - [aux_sym_list_body_repeat1] = STATE(773), - [anon_sym_true] = ACTIONS(2985), - [anon_sym_false] = ACTIONS(2985), - [anon_sym_null] = ACTIONS(2987), - [aux_sym_cmd_identifier_token38] = ACTIONS(2989), - [aux_sym_cmd_identifier_token39] = ACTIONS(2989), - [aux_sym_cmd_identifier_token40] = ACTIONS(2989), - [sym__newline] = ACTIONS(2543), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_RBRACK] = ACTIONS(3043), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_COMMA] = ACTIONS(2551), - [anon_sym_DOLLAR] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_DOT_DOT] = ACTIONS(3001), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), - [anon_sym_DOT_DOT_LT] = ACTIONS(3003), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(3005), - [aux_sym__val_number_decimal_token2] = ACTIONS(3007), - [aux_sym__val_number_decimal_token3] = ACTIONS(3009), - [aux_sym__val_number_decimal_token4] = ACTIONS(3011), - [aux_sym__val_number_token1] = ACTIONS(2569), - [aux_sym__val_number_token2] = ACTIONS(2569), - [aux_sym__val_number_token3] = ACTIONS(2569), - [anon_sym_0b] = ACTIONS(2571), - [anon_sym_0o] = ACTIONS(2573), - [anon_sym_0x] = ACTIONS(2573), - [sym_val_date] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3015), - [sym__str_single_quotes] = ACTIONS(3017), - [sym__str_back_ticks] = ACTIONS(3017), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [anon_sym_err_GT_GT] = ACTIONS(2589), - [anon_sym_out_GT_GT] = ACTIONS(2589), - [anon_sym_e_GT_GT] = ACTIONS(2589), - [anon_sym_o_GT_GT] = ACTIONS(2589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), - [anon_sym_POUND] = ACTIONS(247), - }, - [737] = { - [sym_expr_parenthesized] = STATE(5961), - [sym__spread_parenthesized] = STATE(7348), - [sym_val_range] = STATE(7355), - [sym__val_range] = STATE(7469), - [sym__val_range_with_end] = STATE(7194), - [sym__value] = STATE(7355), - [sym_val_nothing] = STATE(521), - [sym_val_bool] = STATE(6215), - [sym__spread_variable] = STATE(7195), - [sym_val_variable] = STATE(5719), - [sym_val_number] = STATE(521), - [sym__val_number_decimal] = STATE(5264), - [sym__val_number] = STATE(2915), - [sym_val_duration] = STATE(521), - [sym_val_filesize] = STATE(521), - [sym_val_binary] = STATE(521), - [sym_val_string] = STATE(521), - [sym__str_double_quotes] = STATE(5413), - [sym_val_interpolated] = STATE(521), - [sym__inter_single_quotes] = STATE(495), - [sym__inter_double_quotes] = STATE(556), - [sym_val_list] = STATE(7006), - [sym__spread_list] = STATE(7348), - [sym_list_body] = STATE(7501), - [sym_val_entry] = STATE(6844), - [sym_val_record] = STATE(521), - [sym_val_table] = STATE(521), - [sym_val_closure] = STATE(521), - [sym__unquoted_in_list] = STATE(6465), - [sym__unquoted_in_list_with_expr] = STATE(7355), - [sym__unquoted_anonymous_prefix] = STATE(6960), - [sym_comment] = STATE(737), - [aux_sym_shebang_repeat1] = STATE(756), - [aux_sym_parameter_repeat2] = STATE(6485), - [aux_sym_list_body_repeat1] = STATE(773), - [anon_sym_true] = ACTIONS(2985), - [anon_sym_false] = ACTIONS(2985), - [anon_sym_null] = ACTIONS(2987), - [aux_sym_cmd_identifier_token38] = ACTIONS(2989), - [aux_sym_cmd_identifier_token39] = ACTIONS(2989), - [aux_sym_cmd_identifier_token40] = ACTIONS(2989), - [sym__newline] = ACTIONS(2543), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_RBRACK] = ACTIONS(3045), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_COMMA] = ACTIONS(2551), - [anon_sym_DOLLAR] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_DOT_DOT] = ACTIONS(3001), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), - [anon_sym_DOT_DOT_LT] = ACTIONS(3003), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(3005), - [aux_sym__val_number_decimal_token2] = ACTIONS(3007), - [aux_sym__val_number_decimal_token3] = ACTIONS(3009), - [aux_sym__val_number_decimal_token4] = ACTIONS(3011), - [aux_sym__val_number_token1] = ACTIONS(2569), - [aux_sym__val_number_token2] = ACTIONS(2569), - [aux_sym__val_number_token3] = ACTIONS(2569), - [anon_sym_0b] = ACTIONS(2571), - [anon_sym_0o] = ACTIONS(2573), - [anon_sym_0x] = ACTIONS(2573), - [sym_val_date] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3015), - [sym__str_single_quotes] = ACTIONS(3017), - [sym__str_back_ticks] = ACTIONS(3017), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [anon_sym_err_GT_GT] = ACTIONS(2589), - [anon_sym_out_GT_GT] = ACTIONS(2589), - [anon_sym_e_GT_GT] = ACTIONS(2589), - [anon_sym_o_GT_GT] = ACTIONS(2589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), - [anon_sym_POUND] = ACTIONS(247), - }, - [738] = { - [sym_expr_parenthesized] = STATE(5961), - [sym__spread_parenthesized] = STATE(7348), - [sym_val_range] = STATE(7355), - [sym__val_range] = STATE(7469), - [sym__val_range_with_end] = STATE(7194), - [sym__value] = STATE(7355), - [sym_val_nothing] = STATE(521), - [sym_val_bool] = STATE(6215), - [sym__spread_variable] = STATE(7195), - [sym_val_variable] = STATE(5719), - [sym_val_number] = STATE(521), - [sym__val_number_decimal] = STATE(5264), - [sym__val_number] = STATE(2915), - [sym_val_duration] = STATE(521), - [sym_val_filesize] = STATE(521), - [sym_val_binary] = STATE(521), - [sym_val_string] = STATE(521), - [sym__str_double_quotes] = STATE(5413), - [sym_val_interpolated] = STATE(521), - [sym__inter_single_quotes] = STATE(495), - [sym__inter_double_quotes] = STATE(556), - [sym_val_list] = STATE(7124), - [sym__spread_list] = STATE(7348), - [sym_list_body] = STATE(7476), - [sym_val_entry] = STATE(6844), - [sym_val_record] = STATE(521), - [sym_val_table] = STATE(521), - [sym_val_closure] = STATE(521), - [sym__unquoted_in_list] = STATE(6465), - [sym__unquoted_in_list_with_expr] = STATE(7355), - [sym__unquoted_anonymous_prefix] = STATE(6960), - [sym_comment] = STATE(738), - [aux_sym_shebang_repeat1] = STATE(770), - [aux_sym_parameter_repeat2] = STATE(6485), - [aux_sym_list_body_repeat1] = STATE(773), - [anon_sym_true] = ACTIONS(2985), - [anon_sym_false] = ACTIONS(2985), - [anon_sym_null] = ACTIONS(2987), - [aux_sym_cmd_identifier_token38] = ACTIONS(2989), - [aux_sym_cmd_identifier_token39] = ACTIONS(2989), - [aux_sym_cmd_identifier_token40] = ACTIONS(2989), - [sym__newline] = ACTIONS(2543), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_RBRACK] = ACTIONS(3047), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_COMMA] = ACTIONS(2551), - [anon_sym_DOLLAR] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_DOT_DOT] = ACTIONS(3001), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), - [anon_sym_DOT_DOT_LT] = ACTIONS(3003), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(3005), - [aux_sym__val_number_decimal_token2] = ACTIONS(3007), - [aux_sym__val_number_decimal_token3] = ACTIONS(3009), - [aux_sym__val_number_decimal_token4] = ACTIONS(3011), - [aux_sym__val_number_token1] = ACTIONS(2569), - [aux_sym__val_number_token2] = ACTIONS(2569), - [aux_sym__val_number_token3] = ACTIONS(2569), - [anon_sym_0b] = ACTIONS(2571), - [anon_sym_0o] = ACTIONS(2573), - [anon_sym_0x] = ACTIONS(2573), - [sym_val_date] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3015), - [sym__str_single_quotes] = ACTIONS(3017), - [sym__str_back_ticks] = ACTIONS(3017), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [anon_sym_err_GT_GT] = ACTIONS(2589), - [anon_sym_out_GT_GT] = ACTIONS(2589), - [anon_sym_e_GT_GT] = ACTIONS(2589), - [anon_sym_o_GT_GT] = ACTIONS(2589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), - [anon_sym_POUND] = ACTIONS(247), - }, - [739] = { - [sym_expr_parenthesized] = STATE(5961), - [sym__spread_parenthesized] = STATE(7348), - [sym_val_range] = STATE(7355), - [sym__val_range] = STATE(7469), - [sym__val_range_with_end] = STATE(7194), - [sym__value] = STATE(7355), - [sym_val_nothing] = STATE(521), - [sym_val_bool] = STATE(6215), - [sym__spread_variable] = STATE(7195), - [sym_val_variable] = STATE(5719), - [sym_val_number] = STATE(521), - [sym__val_number_decimal] = STATE(5264), - [sym__val_number] = STATE(2915), - [sym_val_duration] = STATE(521), - [sym_val_filesize] = STATE(521), - [sym_val_binary] = STATE(521), - [sym_val_string] = STATE(521), - [sym__str_double_quotes] = STATE(5413), - [sym_val_interpolated] = STATE(521), - [sym__inter_single_quotes] = STATE(495), - [sym__inter_double_quotes] = STATE(556), - [sym_val_list] = STATE(521), - [sym__spread_list] = STATE(7348), - [sym_list_body] = STATE(7679), - [sym_val_entry] = STATE(6844), - [sym_val_record] = STATE(521), - [sym_val_table] = STATE(521), - [sym_val_closure] = STATE(521), - [sym__unquoted_in_list] = STATE(6465), - [sym__unquoted_in_list_with_expr] = STATE(7355), - [sym__unquoted_anonymous_prefix] = STATE(6960), - [sym_comment] = STATE(739), - [aux_sym_shebang_repeat1] = STATE(755), - [aux_sym_parameter_repeat2] = STATE(6485), - [aux_sym_list_body_repeat1] = STATE(773), - [anon_sym_true] = ACTIONS(2985), - [anon_sym_false] = ACTIONS(2985), - [anon_sym_null] = ACTIONS(2987), - [aux_sym_cmd_identifier_token38] = ACTIONS(2989), - [aux_sym_cmd_identifier_token39] = ACTIONS(2989), - [aux_sym_cmd_identifier_token40] = ACTIONS(2989), - [sym__newline] = ACTIONS(2543), - [anon_sym_LBRACK] = ACTIONS(3023), - [anon_sym_RBRACK] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_COMMA] = ACTIONS(2551), - [anon_sym_DOLLAR] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_DOT_DOT] = ACTIONS(3001), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), - [anon_sym_DOT_DOT_LT] = ACTIONS(3003), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(3005), - [aux_sym__val_number_decimal_token2] = ACTIONS(3007), - [aux_sym__val_number_decimal_token3] = ACTIONS(3009), - [aux_sym__val_number_decimal_token4] = ACTIONS(3011), - [aux_sym__val_number_token1] = ACTIONS(2569), - [aux_sym__val_number_token2] = ACTIONS(2569), - [aux_sym__val_number_token3] = ACTIONS(2569), - [anon_sym_0b] = ACTIONS(2571), - [anon_sym_0o] = ACTIONS(2573), - [anon_sym_0x] = ACTIONS(2573), - [sym_val_date] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3015), - [sym__str_single_quotes] = ACTIONS(3017), - [sym__str_back_ticks] = ACTIONS(3017), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [anon_sym_err_GT_GT] = ACTIONS(2589), - [anon_sym_out_GT_GT] = ACTIONS(2589), - [anon_sym_e_GT_GT] = ACTIONS(2589), - [anon_sym_o_GT_GT] = ACTIONS(2589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), - [anon_sym_POUND] = ACTIONS(247), + [673] = { + [sym_comment] = STATE(673), + [anon_sym_export] = ACTIONS(2466), + [anon_sym_alias] = ACTIONS(2466), + [anon_sym_let] = ACTIONS(2466), + [anon_sym_let_DASHenv] = ACTIONS(2466), + [anon_sym_mut] = ACTIONS(2466), + [anon_sym_const] = ACTIONS(2466), + [aux_sym_cmd_identifier_token1] = ACTIONS(2466), + [aux_sym_cmd_identifier_token2] = ACTIONS(2466), + [aux_sym_cmd_identifier_token3] = ACTIONS(2466), + [aux_sym_cmd_identifier_token4] = ACTIONS(2466), + [aux_sym_cmd_identifier_token5] = ACTIONS(2466), + [aux_sym_cmd_identifier_token6] = ACTIONS(2466), + [aux_sym_cmd_identifier_token7] = ACTIONS(2466), + [aux_sym_cmd_identifier_token8] = ACTIONS(2466), + [aux_sym_cmd_identifier_token9] = ACTIONS(2466), + [aux_sym_cmd_identifier_token10] = ACTIONS(2466), + [aux_sym_cmd_identifier_token11] = ACTIONS(2466), + [aux_sym_cmd_identifier_token12] = ACTIONS(2466), + [aux_sym_cmd_identifier_token13] = ACTIONS(2466), + [aux_sym_cmd_identifier_token14] = ACTIONS(2466), + [aux_sym_cmd_identifier_token15] = ACTIONS(2466), + [aux_sym_cmd_identifier_token16] = ACTIONS(2466), + [aux_sym_cmd_identifier_token17] = ACTIONS(2466), + [aux_sym_cmd_identifier_token18] = ACTIONS(2466), + [aux_sym_cmd_identifier_token19] = ACTIONS(2466), + [aux_sym_cmd_identifier_token20] = ACTIONS(2466), + [aux_sym_cmd_identifier_token21] = ACTIONS(2466), + [aux_sym_cmd_identifier_token22] = ACTIONS(2466), + [aux_sym_cmd_identifier_token23] = ACTIONS(2466), + [aux_sym_cmd_identifier_token24] = ACTIONS(2466), + [aux_sym_cmd_identifier_token25] = ACTIONS(2466), + [aux_sym_cmd_identifier_token26] = ACTIONS(2466), + [aux_sym_cmd_identifier_token27] = ACTIONS(2466), + [aux_sym_cmd_identifier_token28] = ACTIONS(2466), + [aux_sym_cmd_identifier_token29] = ACTIONS(2466), + [aux_sym_cmd_identifier_token30] = ACTIONS(2466), + [aux_sym_cmd_identifier_token31] = ACTIONS(2466), + [aux_sym_cmd_identifier_token32] = ACTIONS(2466), + [aux_sym_cmd_identifier_token33] = ACTIONS(2466), + [aux_sym_cmd_identifier_token34] = ACTIONS(2466), + [aux_sym_cmd_identifier_token35] = ACTIONS(2466), + [aux_sym_cmd_identifier_token36] = ACTIONS(2466), + [anon_sym_true] = ACTIONS(2468), + [anon_sym_false] = ACTIONS(2468), + [anon_sym_null] = ACTIONS(2468), + [aux_sym_cmd_identifier_token38] = ACTIONS(2466), + [aux_sym_cmd_identifier_token39] = ACTIONS(2468), + [aux_sym_cmd_identifier_token40] = ACTIONS(2468), + [anon_sym_def] = ACTIONS(2466), + [anon_sym_export_DASHenv] = ACTIONS(2466), + [anon_sym_extern] = ACTIONS(2466), + [anon_sym_module] = ACTIONS(2466), + [anon_sym_use] = ACTIONS(2466), + [anon_sym_LPAREN] = ACTIONS(2468), + [anon_sym_DOLLAR] = ACTIONS(2468), + [anon_sym_error] = ACTIONS(2466), + [anon_sym_list] = ACTIONS(2466), + [anon_sym_DASH] = ACTIONS(2466), + [anon_sym_break] = ACTIONS(2466), + [anon_sym_continue] = ACTIONS(2466), + [anon_sym_for] = ACTIONS(2466), + [anon_sym_in] = ACTIONS(2466), + [anon_sym_loop] = ACTIONS(2466), + [anon_sym_make] = ACTIONS(2466), + [anon_sym_while] = ACTIONS(2466), + [anon_sym_do] = ACTIONS(2466), + [anon_sym_if] = ACTIONS(2466), + [anon_sym_else] = ACTIONS(2466), + [anon_sym_match] = ACTIONS(2466), + [anon_sym_RBRACE] = ACTIONS(2468), + [anon_sym_try] = ACTIONS(2466), + [anon_sym_catch] = ACTIONS(2466), + [anon_sym_return] = ACTIONS(2466), + [anon_sym_source] = ACTIONS(2466), + [anon_sym_source_DASHenv] = ACTIONS(2466), + [anon_sym_register] = ACTIONS(2466), + [anon_sym_hide] = ACTIONS(2466), + [anon_sym_hide_DASHenv] = ACTIONS(2466), + [anon_sym_overlay] = ACTIONS(2466), + [anon_sym_new] = ACTIONS(2466), + [anon_sym_as] = ACTIONS(2466), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2468), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2468), + [aux_sym__val_number_decimal_token1] = ACTIONS(2466), + [aux_sym__val_number_decimal_token2] = ACTIONS(2468), + [aux_sym__val_number_decimal_token3] = ACTIONS(2468), + [aux_sym__val_number_decimal_token4] = ACTIONS(2468), + [aux_sym__val_number_token1] = ACTIONS(2468), + [aux_sym__val_number_token2] = ACTIONS(2468), + [aux_sym__val_number_token3] = ACTIONS(2468), + [anon_sym_DQUOTE] = ACTIONS(2468), + [sym__str_single_quotes] = ACTIONS(2468), + [sym__str_back_ticks] = ACTIONS(2468), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2468), + [anon_sym_PLUS] = ACTIONS(2466), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2468), }, - [740] = { - [sym_expr_parenthesized] = STATE(5961), - [sym__spread_parenthesized] = STATE(7348), - [sym_val_range] = STATE(7355), - [sym__val_range] = STATE(7469), - [sym__val_range_with_end] = STATE(7194), - [sym__value] = STATE(7355), - [sym_val_nothing] = STATE(521), - [sym_val_bool] = STATE(6215), - [sym__spread_variable] = STATE(7195), - [sym_val_variable] = STATE(5719), - [sym_val_number] = STATE(521), - [sym__val_number_decimal] = STATE(5264), - [sym__val_number] = STATE(2915), - [sym_val_duration] = STATE(521), - [sym_val_filesize] = STATE(521), - [sym_val_binary] = STATE(521), - [sym_val_string] = STATE(521), - [sym__str_double_quotes] = STATE(5413), - [sym_val_interpolated] = STATE(521), - [sym__inter_single_quotes] = STATE(495), - [sym__inter_double_quotes] = STATE(556), - [sym_val_list] = STATE(7064), - [sym__spread_list] = STATE(7348), - [sym_list_body] = STATE(7570), - [sym_val_entry] = STATE(6844), - [sym_val_record] = STATE(521), - [sym_val_table] = STATE(521), - [sym_val_closure] = STATE(521), - [sym__unquoted_in_list] = STATE(6465), - [sym__unquoted_in_list_with_expr] = STATE(7355), - [sym__unquoted_anonymous_prefix] = STATE(6960), - [sym_comment] = STATE(740), - [aux_sym_shebang_repeat1] = STATE(762), - [aux_sym_parameter_repeat2] = STATE(6485), - [aux_sym_list_body_repeat1] = STATE(773), - [anon_sym_true] = ACTIONS(2985), - [anon_sym_false] = ACTIONS(2985), - [anon_sym_null] = ACTIONS(2987), - [aux_sym_cmd_identifier_token38] = ACTIONS(2989), - [aux_sym_cmd_identifier_token39] = ACTIONS(2989), - [aux_sym_cmd_identifier_token40] = ACTIONS(2989), - [sym__newline] = ACTIONS(2543), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_RBRACK] = ACTIONS(3051), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_COMMA] = ACTIONS(2551), - [anon_sym_DOLLAR] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_DOT_DOT] = ACTIONS(3001), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), - [anon_sym_DOT_DOT_LT] = ACTIONS(3003), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(3005), - [aux_sym__val_number_decimal_token2] = ACTIONS(3007), - [aux_sym__val_number_decimal_token3] = ACTIONS(3009), - [aux_sym__val_number_decimal_token4] = ACTIONS(3011), - [aux_sym__val_number_token1] = ACTIONS(2569), - [aux_sym__val_number_token2] = ACTIONS(2569), - [aux_sym__val_number_token3] = ACTIONS(2569), - [anon_sym_0b] = ACTIONS(2571), - [anon_sym_0o] = ACTIONS(2573), - [anon_sym_0x] = ACTIONS(2573), - [sym_val_date] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3015), - [sym__str_single_quotes] = ACTIONS(3017), - [sym__str_back_ticks] = ACTIONS(3017), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [anon_sym_err_GT_GT] = ACTIONS(2589), - [anon_sym_out_GT_GT] = ACTIONS(2589), - [anon_sym_e_GT_GT] = ACTIONS(2589), - [anon_sym_o_GT_GT] = ACTIONS(2589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), - [anon_sym_POUND] = ACTIONS(247), + [674] = { + [sym_comment] = STATE(674), + [anon_sym_export] = ACTIONS(2017), + [anon_sym_alias] = ACTIONS(2017), + [anon_sym_let] = ACTIONS(2017), + [anon_sym_let_DASHenv] = ACTIONS(2017), + [anon_sym_mut] = ACTIONS(2017), + [anon_sym_const] = ACTIONS(2017), + [aux_sym_cmd_identifier_token1] = ACTIONS(2017), + [aux_sym_cmd_identifier_token2] = ACTIONS(2017), + [aux_sym_cmd_identifier_token3] = ACTIONS(2017), + [aux_sym_cmd_identifier_token4] = ACTIONS(2017), + [aux_sym_cmd_identifier_token5] = ACTIONS(2017), + [aux_sym_cmd_identifier_token6] = ACTIONS(2017), + [aux_sym_cmd_identifier_token7] = ACTIONS(2017), + [aux_sym_cmd_identifier_token8] = ACTIONS(2017), + [aux_sym_cmd_identifier_token9] = ACTIONS(2017), + [aux_sym_cmd_identifier_token10] = ACTIONS(2017), + [aux_sym_cmd_identifier_token11] = ACTIONS(2017), + [aux_sym_cmd_identifier_token12] = ACTIONS(2017), + [aux_sym_cmd_identifier_token13] = ACTIONS(2017), + [aux_sym_cmd_identifier_token14] = ACTIONS(2017), + [aux_sym_cmd_identifier_token15] = ACTIONS(2017), + [aux_sym_cmd_identifier_token16] = ACTIONS(2017), + [aux_sym_cmd_identifier_token17] = ACTIONS(2017), + [aux_sym_cmd_identifier_token18] = ACTIONS(2017), + [aux_sym_cmd_identifier_token19] = ACTIONS(2017), + [aux_sym_cmd_identifier_token20] = ACTIONS(2017), + [aux_sym_cmd_identifier_token21] = ACTIONS(2017), + [aux_sym_cmd_identifier_token22] = ACTIONS(2017), + [aux_sym_cmd_identifier_token23] = ACTIONS(2017), + [aux_sym_cmd_identifier_token24] = ACTIONS(2017), + [aux_sym_cmd_identifier_token25] = ACTIONS(2017), + [aux_sym_cmd_identifier_token26] = ACTIONS(2017), + [aux_sym_cmd_identifier_token27] = ACTIONS(2017), + [aux_sym_cmd_identifier_token28] = ACTIONS(2017), + [aux_sym_cmd_identifier_token29] = ACTIONS(2017), + [aux_sym_cmd_identifier_token30] = ACTIONS(2017), + [aux_sym_cmd_identifier_token31] = ACTIONS(2017), + [aux_sym_cmd_identifier_token32] = ACTIONS(2017), + [aux_sym_cmd_identifier_token33] = ACTIONS(2017), + [aux_sym_cmd_identifier_token34] = ACTIONS(2017), + [aux_sym_cmd_identifier_token35] = ACTIONS(2017), + [aux_sym_cmd_identifier_token36] = ACTIONS(2017), + [anon_sym_true] = ACTIONS(2019), + [anon_sym_false] = ACTIONS(2019), + [anon_sym_null] = ACTIONS(2019), + [aux_sym_cmd_identifier_token38] = ACTIONS(2017), + [aux_sym_cmd_identifier_token39] = ACTIONS(2019), + [aux_sym_cmd_identifier_token40] = ACTIONS(2019), + [anon_sym_def] = ACTIONS(2017), + [anon_sym_export_DASHenv] = ACTIONS(2017), + [anon_sym_extern] = ACTIONS(2017), + [anon_sym_module] = ACTIONS(2017), + [anon_sym_use] = ACTIONS(2017), + [anon_sym_LPAREN] = ACTIONS(2019), + [anon_sym_DOLLAR] = ACTIONS(2019), + [anon_sym_error] = ACTIONS(2017), + [anon_sym_list] = ACTIONS(2017), + [anon_sym_DASH] = ACTIONS(2017), + [anon_sym_break] = ACTIONS(2017), + [anon_sym_continue] = ACTIONS(2017), + [anon_sym_for] = ACTIONS(2017), + [anon_sym_in] = ACTIONS(2017), + [anon_sym_loop] = ACTIONS(2017), + [anon_sym_make] = ACTIONS(2017), + [anon_sym_while] = ACTIONS(2017), + [anon_sym_do] = ACTIONS(2017), + [anon_sym_if] = ACTIONS(2017), + [anon_sym_else] = ACTIONS(2017), + [anon_sym_match] = ACTIONS(2017), + [anon_sym_RBRACE] = ACTIONS(2019), + [anon_sym_try] = ACTIONS(2017), + [anon_sym_catch] = ACTIONS(2017), + [anon_sym_return] = ACTIONS(2017), + [anon_sym_source] = ACTIONS(2017), + [anon_sym_source_DASHenv] = ACTIONS(2017), + [anon_sym_register] = ACTIONS(2017), + [anon_sym_hide] = ACTIONS(2017), + [anon_sym_hide_DASHenv] = ACTIONS(2017), + [anon_sym_overlay] = ACTIONS(2017), + [anon_sym_new] = ACTIONS(2017), + [anon_sym_as] = ACTIONS(2017), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2019), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2019), + [aux_sym__val_number_decimal_token1] = ACTIONS(2017), + [aux_sym__val_number_decimal_token2] = ACTIONS(2019), + [aux_sym__val_number_decimal_token3] = ACTIONS(2019), + [aux_sym__val_number_decimal_token4] = ACTIONS(2019), + [aux_sym__val_number_token1] = ACTIONS(2019), + [aux_sym__val_number_token2] = ACTIONS(2019), + [aux_sym__val_number_token3] = ACTIONS(2019), + [anon_sym_DQUOTE] = ACTIONS(2019), + [sym__str_single_quotes] = ACTIONS(2019), + [sym__str_back_ticks] = ACTIONS(2019), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2019), + [anon_sym_PLUS] = ACTIONS(2017), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2019), }, - [741] = { - [sym_expr_parenthesized] = STATE(5961), - [sym__spread_parenthesized] = STATE(7348), - [sym_val_range] = STATE(7355), - [sym__val_range] = STATE(7469), - [sym__val_range_with_end] = STATE(7194), - [sym__value] = STATE(7355), - [sym_val_nothing] = STATE(521), - [sym_val_bool] = STATE(6215), - [sym__spread_variable] = STATE(7195), - [sym_val_variable] = STATE(5719), - [sym_val_number] = STATE(521), - [sym__val_number_decimal] = STATE(5264), - [sym__val_number] = STATE(2915), - [sym_val_duration] = STATE(521), - [sym_val_filesize] = STATE(521), - [sym_val_binary] = STATE(521), - [sym_val_string] = STATE(521), - [sym__str_double_quotes] = STATE(5413), - [sym_val_interpolated] = STATE(521), - [sym__inter_single_quotes] = STATE(495), - [sym__inter_double_quotes] = STATE(556), - [sym_val_list] = STATE(7132), - [sym__spread_list] = STATE(7348), - [sym_list_body] = STATE(7525), - [sym_val_entry] = STATE(6844), - [sym_val_record] = STATE(521), - [sym_val_table] = STATE(521), - [sym_val_closure] = STATE(521), - [sym__unquoted_in_list] = STATE(6465), - [sym__unquoted_in_list_with_expr] = STATE(7355), - [sym__unquoted_anonymous_prefix] = STATE(6960), - [sym_comment] = STATE(741), - [aux_sym_shebang_repeat1] = STATE(771), - [aux_sym_parameter_repeat2] = STATE(6485), - [aux_sym_list_body_repeat1] = STATE(773), - [anon_sym_true] = ACTIONS(2985), - [anon_sym_false] = ACTIONS(2985), - [anon_sym_null] = ACTIONS(2987), - [aux_sym_cmd_identifier_token38] = ACTIONS(2989), - [aux_sym_cmd_identifier_token39] = ACTIONS(2989), - [aux_sym_cmd_identifier_token40] = ACTIONS(2989), - [sym__newline] = ACTIONS(2543), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_RBRACK] = ACTIONS(3053), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_COMMA] = ACTIONS(2551), - [anon_sym_DOLLAR] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_DOT_DOT] = ACTIONS(3001), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), - [anon_sym_DOT_DOT_LT] = ACTIONS(3003), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(3005), - [aux_sym__val_number_decimal_token2] = ACTIONS(3007), - [aux_sym__val_number_decimal_token3] = ACTIONS(3009), - [aux_sym__val_number_decimal_token4] = ACTIONS(3011), - [aux_sym__val_number_token1] = ACTIONS(2569), - [aux_sym__val_number_token2] = ACTIONS(2569), - [aux_sym__val_number_token3] = ACTIONS(2569), - [anon_sym_0b] = ACTIONS(2571), - [anon_sym_0o] = ACTIONS(2573), - [anon_sym_0x] = ACTIONS(2573), - [sym_val_date] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3015), - [sym__str_single_quotes] = ACTIONS(3017), - [sym__str_back_ticks] = ACTIONS(3017), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [anon_sym_err_GT_GT] = ACTIONS(2589), - [anon_sym_out_GT_GT] = ACTIONS(2589), - [anon_sym_e_GT_GT] = ACTIONS(2589), - [anon_sym_o_GT_GT] = ACTIONS(2589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), - [anon_sym_POUND] = ACTIONS(247), + [675] = { + [sym_comment] = STATE(675), + [anon_sym_export] = ACTIONS(2043), + [anon_sym_alias] = ACTIONS(2043), + [anon_sym_let] = ACTIONS(2043), + [anon_sym_let_DASHenv] = ACTIONS(2043), + [anon_sym_mut] = ACTIONS(2043), + [anon_sym_const] = ACTIONS(2043), + [aux_sym_cmd_identifier_token1] = ACTIONS(2043), + [aux_sym_cmd_identifier_token2] = ACTIONS(2043), + [aux_sym_cmd_identifier_token3] = ACTIONS(2043), + [aux_sym_cmd_identifier_token4] = ACTIONS(2043), + [aux_sym_cmd_identifier_token5] = ACTIONS(2043), + [aux_sym_cmd_identifier_token6] = ACTIONS(2043), + [aux_sym_cmd_identifier_token7] = ACTIONS(2043), + [aux_sym_cmd_identifier_token8] = ACTIONS(2043), + [aux_sym_cmd_identifier_token9] = ACTIONS(2043), + [aux_sym_cmd_identifier_token10] = ACTIONS(2043), + [aux_sym_cmd_identifier_token11] = ACTIONS(2043), + [aux_sym_cmd_identifier_token12] = ACTIONS(2043), + [aux_sym_cmd_identifier_token13] = ACTIONS(2043), + [aux_sym_cmd_identifier_token14] = ACTIONS(2043), + [aux_sym_cmd_identifier_token15] = ACTIONS(2043), + [aux_sym_cmd_identifier_token16] = ACTIONS(2043), + [aux_sym_cmd_identifier_token17] = ACTIONS(2043), + [aux_sym_cmd_identifier_token18] = ACTIONS(2043), + [aux_sym_cmd_identifier_token19] = ACTIONS(2043), + [aux_sym_cmd_identifier_token20] = ACTIONS(2043), + [aux_sym_cmd_identifier_token21] = ACTIONS(2043), + [aux_sym_cmd_identifier_token22] = ACTIONS(2043), + [aux_sym_cmd_identifier_token23] = ACTIONS(2043), + [aux_sym_cmd_identifier_token24] = ACTIONS(2043), + [aux_sym_cmd_identifier_token25] = ACTIONS(2043), + [aux_sym_cmd_identifier_token26] = ACTIONS(2043), + [aux_sym_cmd_identifier_token27] = ACTIONS(2043), + [aux_sym_cmd_identifier_token28] = ACTIONS(2043), + [aux_sym_cmd_identifier_token29] = ACTIONS(2043), + [aux_sym_cmd_identifier_token30] = ACTIONS(2043), + [aux_sym_cmd_identifier_token31] = ACTIONS(2043), + [aux_sym_cmd_identifier_token32] = ACTIONS(2043), + [aux_sym_cmd_identifier_token33] = ACTIONS(2043), + [aux_sym_cmd_identifier_token34] = ACTIONS(2043), + [aux_sym_cmd_identifier_token35] = ACTIONS(2043), + [aux_sym_cmd_identifier_token36] = ACTIONS(2043), + [anon_sym_true] = ACTIONS(2045), + [anon_sym_false] = ACTIONS(2045), + [anon_sym_null] = ACTIONS(2045), + [aux_sym_cmd_identifier_token38] = ACTIONS(2043), + [aux_sym_cmd_identifier_token39] = ACTIONS(2045), + [aux_sym_cmd_identifier_token40] = ACTIONS(2045), + [anon_sym_def] = ACTIONS(2043), + [anon_sym_export_DASHenv] = ACTIONS(2043), + [anon_sym_extern] = ACTIONS(2043), + [anon_sym_module] = ACTIONS(2043), + [anon_sym_use] = ACTIONS(2043), + [anon_sym_LPAREN] = ACTIONS(2045), + [anon_sym_DOLLAR] = ACTIONS(2045), + [anon_sym_error] = ACTIONS(2043), + [anon_sym_list] = ACTIONS(2043), + [anon_sym_DASH] = ACTIONS(2043), + [anon_sym_break] = ACTIONS(2043), + [anon_sym_continue] = ACTIONS(2043), + [anon_sym_for] = ACTIONS(2043), + [anon_sym_in] = ACTIONS(2043), + [anon_sym_loop] = ACTIONS(2043), + [anon_sym_make] = ACTIONS(2043), + [anon_sym_while] = ACTIONS(2043), + [anon_sym_do] = ACTIONS(2043), + [anon_sym_if] = ACTIONS(2043), + [anon_sym_else] = ACTIONS(2043), + [anon_sym_match] = ACTIONS(2043), + [anon_sym_RBRACE] = ACTIONS(2045), + [anon_sym_try] = ACTIONS(2043), + [anon_sym_catch] = ACTIONS(2043), + [anon_sym_return] = ACTIONS(2043), + [anon_sym_source] = ACTIONS(2043), + [anon_sym_source_DASHenv] = ACTIONS(2043), + [anon_sym_register] = ACTIONS(2043), + [anon_sym_hide] = ACTIONS(2043), + [anon_sym_hide_DASHenv] = ACTIONS(2043), + [anon_sym_overlay] = ACTIONS(2043), + [anon_sym_new] = ACTIONS(2043), + [anon_sym_as] = ACTIONS(2043), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2045), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2045), + [aux_sym__val_number_decimal_token1] = ACTIONS(2043), + [aux_sym__val_number_decimal_token2] = ACTIONS(2045), + [aux_sym__val_number_decimal_token3] = ACTIONS(2045), + [aux_sym__val_number_decimal_token4] = ACTIONS(2045), + [aux_sym__val_number_token1] = ACTIONS(2045), + [aux_sym__val_number_token2] = ACTIONS(2045), + [aux_sym__val_number_token3] = ACTIONS(2045), + [anon_sym_DQUOTE] = ACTIONS(2045), + [sym__str_single_quotes] = ACTIONS(2045), + [sym__str_back_ticks] = ACTIONS(2045), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2045), + [anon_sym_PLUS] = ACTIONS(2043), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2045), }, - [742] = { - [sym_expr_parenthesized] = STATE(5961), - [sym__spread_parenthesized] = STATE(7348), - [sym_val_range] = STATE(7355), - [sym__val_range] = STATE(7469), - [sym__val_range_with_end] = STATE(7194), - [sym__value] = STATE(7355), - [sym_val_nothing] = STATE(521), - [sym_val_bool] = STATE(6215), - [sym__spread_variable] = STATE(7195), - [sym_val_variable] = STATE(5719), - [sym_val_number] = STATE(521), - [sym__val_number_decimal] = STATE(5264), - [sym__val_number] = STATE(2915), - [sym_val_duration] = STATE(521), - [sym_val_filesize] = STATE(521), - [sym_val_binary] = STATE(521), - [sym_val_string] = STATE(521), - [sym__str_double_quotes] = STATE(5413), - [sym_val_interpolated] = STATE(521), - [sym__inter_single_quotes] = STATE(495), - [sym__inter_double_quotes] = STATE(556), - [sym_val_list] = STATE(7070), - [sym__spread_list] = STATE(7348), - [sym_list_body] = STATE(7595), - [sym_val_entry] = STATE(6844), - [sym_val_record] = STATE(521), - [sym_val_table] = STATE(521), - [sym_val_closure] = STATE(521), - [sym__unquoted_in_list] = STATE(6465), - [sym__unquoted_in_list_with_expr] = STATE(7355), - [sym__unquoted_anonymous_prefix] = STATE(6960), - [sym_comment] = STATE(742), - [aux_sym_shebang_repeat1] = STATE(763), - [aux_sym_parameter_repeat2] = STATE(6485), - [aux_sym_list_body_repeat1] = STATE(773), - [anon_sym_true] = ACTIONS(2985), - [anon_sym_false] = ACTIONS(2985), - [anon_sym_null] = ACTIONS(2987), - [aux_sym_cmd_identifier_token38] = ACTIONS(2989), - [aux_sym_cmd_identifier_token39] = ACTIONS(2989), - [aux_sym_cmd_identifier_token40] = ACTIONS(2989), - [sym__newline] = ACTIONS(2543), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_RBRACK] = ACTIONS(3055), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_COMMA] = ACTIONS(2551), - [anon_sym_DOLLAR] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_DOT_DOT] = ACTIONS(3001), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), - [anon_sym_DOT_DOT_LT] = ACTIONS(3003), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(3005), - [aux_sym__val_number_decimal_token2] = ACTIONS(3007), - [aux_sym__val_number_decimal_token3] = ACTIONS(3009), - [aux_sym__val_number_decimal_token4] = ACTIONS(3011), - [aux_sym__val_number_token1] = ACTIONS(2569), - [aux_sym__val_number_token2] = ACTIONS(2569), - [aux_sym__val_number_token3] = ACTIONS(2569), - [anon_sym_0b] = ACTIONS(2571), - [anon_sym_0o] = ACTIONS(2573), - [anon_sym_0x] = ACTIONS(2573), - [sym_val_date] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3015), - [sym__str_single_quotes] = ACTIONS(3017), - [sym__str_back_ticks] = ACTIONS(3017), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [anon_sym_err_GT_GT] = ACTIONS(2589), - [anon_sym_out_GT_GT] = ACTIONS(2589), - [anon_sym_e_GT_GT] = ACTIONS(2589), - [anon_sym_o_GT_GT] = ACTIONS(2589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), - [anon_sym_POUND] = ACTIONS(247), + [676] = { + [sym_comment] = STATE(676), + [anon_sym_export] = ACTIONS(2047), + [anon_sym_alias] = ACTIONS(2047), + [anon_sym_let] = ACTIONS(2047), + [anon_sym_let_DASHenv] = ACTIONS(2047), + [anon_sym_mut] = ACTIONS(2047), + [anon_sym_const] = ACTIONS(2047), + [aux_sym_cmd_identifier_token1] = ACTIONS(2047), + [aux_sym_cmd_identifier_token2] = ACTIONS(2047), + [aux_sym_cmd_identifier_token3] = ACTIONS(2047), + [aux_sym_cmd_identifier_token4] = ACTIONS(2047), + [aux_sym_cmd_identifier_token5] = ACTIONS(2047), + [aux_sym_cmd_identifier_token6] = ACTIONS(2047), + [aux_sym_cmd_identifier_token7] = ACTIONS(2047), + [aux_sym_cmd_identifier_token8] = ACTIONS(2047), + [aux_sym_cmd_identifier_token9] = ACTIONS(2047), + [aux_sym_cmd_identifier_token10] = ACTIONS(2047), + [aux_sym_cmd_identifier_token11] = ACTIONS(2047), + [aux_sym_cmd_identifier_token12] = ACTIONS(2047), + [aux_sym_cmd_identifier_token13] = ACTIONS(2047), + [aux_sym_cmd_identifier_token14] = ACTIONS(2047), + [aux_sym_cmd_identifier_token15] = ACTIONS(2047), + [aux_sym_cmd_identifier_token16] = ACTIONS(2047), + [aux_sym_cmd_identifier_token17] = ACTIONS(2047), + [aux_sym_cmd_identifier_token18] = ACTIONS(2047), + [aux_sym_cmd_identifier_token19] = ACTIONS(2047), + [aux_sym_cmd_identifier_token20] = ACTIONS(2047), + [aux_sym_cmd_identifier_token21] = ACTIONS(2047), + [aux_sym_cmd_identifier_token22] = ACTIONS(2047), + [aux_sym_cmd_identifier_token23] = ACTIONS(2047), + [aux_sym_cmd_identifier_token24] = ACTIONS(2047), + [aux_sym_cmd_identifier_token25] = ACTIONS(2047), + [aux_sym_cmd_identifier_token26] = ACTIONS(2047), + [aux_sym_cmd_identifier_token27] = ACTIONS(2047), + [aux_sym_cmd_identifier_token28] = ACTIONS(2047), + [aux_sym_cmd_identifier_token29] = ACTIONS(2047), + [aux_sym_cmd_identifier_token30] = ACTIONS(2047), + [aux_sym_cmd_identifier_token31] = ACTIONS(2047), + [aux_sym_cmd_identifier_token32] = ACTIONS(2047), + [aux_sym_cmd_identifier_token33] = ACTIONS(2047), + [aux_sym_cmd_identifier_token34] = ACTIONS(2047), + [aux_sym_cmd_identifier_token35] = ACTIONS(2047), + [aux_sym_cmd_identifier_token36] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(2049), + [anon_sym_false] = ACTIONS(2049), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token38] = ACTIONS(2047), + [aux_sym_cmd_identifier_token39] = ACTIONS(2049), + [aux_sym_cmd_identifier_token40] = ACTIONS(2049), + [anon_sym_def] = ACTIONS(2047), + [anon_sym_export_DASHenv] = ACTIONS(2047), + [anon_sym_extern] = ACTIONS(2047), + [anon_sym_module] = ACTIONS(2047), + [anon_sym_use] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(2049), + [anon_sym_DOLLAR] = ACTIONS(2049), + [anon_sym_error] = ACTIONS(2047), + [anon_sym_list] = ACTIONS(2047), + [anon_sym_DASH] = ACTIONS(2047), + [anon_sym_break] = ACTIONS(2047), + [anon_sym_continue] = ACTIONS(2047), + [anon_sym_for] = ACTIONS(2047), + [anon_sym_in] = ACTIONS(2047), + [anon_sym_loop] = ACTIONS(2047), + [anon_sym_make] = ACTIONS(2047), + [anon_sym_while] = ACTIONS(2047), + [anon_sym_do] = ACTIONS(2047), + [anon_sym_if] = ACTIONS(2047), + [anon_sym_else] = ACTIONS(2047), + [anon_sym_match] = ACTIONS(2047), + [anon_sym_RBRACE] = ACTIONS(2049), + [anon_sym_try] = ACTIONS(2047), + [anon_sym_catch] = ACTIONS(2047), + [anon_sym_return] = ACTIONS(2047), + [anon_sym_source] = ACTIONS(2047), + [anon_sym_source_DASHenv] = ACTIONS(2047), + [anon_sym_register] = ACTIONS(2047), + [anon_sym_hide] = ACTIONS(2047), + [anon_sym_hide_DASHenv] = ACTIONS(2047), + [anon_sym_overlay] = ACTIONS(2047), + [anon_sym_new] = ACTIONS(2047), + [anon_sym_as] = ACTIONS(2047), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2049), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2049), + [aux_sym__val_number_decimal_token1] = ACTIONS(2047), + [aux_sym__val_number_decimal_token2] = ACTIONS(2049), + [aux_sym__val_number_decimal_token3] = ACTIONS(2049), + [aux_sym__val_number_decimal_token4] = ACTIONS(2049), + [aux_sym__val_number_token1] = ACTIONS(2049), + [aux_sym__val_number_token2] = ACTIONS(2049), + [aux_sym__val_number_token3] = ACTIONS(2049), + [anon_sym_DQUOTE] = ACTIONS(2049), + [sym__str_single_quotes] = ACTIONS(2049), + [sym__str_back_ticks] = ACTIONS(2049), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2049), + [anon_sym_PLUS] = ACTIONS(2047), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2049), }, - [743] = { - [sym_expr_parenthesized] = STATE(5961), - [sym__spread_parenthesized] = STATE(7348), - [sym_val_range] = STATE(7355), - [sym__val_range] = STATE(7469), - [sym__val_range_with_end] = STATE(7194), - [sym__value] = STATE(7355), - [sym_val_nothing] = STATE(521), - [sym_val_bool] = STATE(6215), - [sym__spread_variable] = STATE(7195), - [sym_val_variable] = STATE(5719), - [sym_val_number] = STATE(521), - [sym__val_number_decimal] = STATE(5264), - [sym__val_number] = STATE(2915), - [sym_val_duration] = STATE(521), - [sym_val_filesize] = STATE(521), - [sym_val_binary] = STATE(521), - [sym_val_string] = STATE(521), - [sym__str_double_quotes] = STATE(5413), - [sym_val_interpolated] = STATE(521), - [sym__inter_single_quotes] = STATE(495), - [sym__inter_double_quotes] = STATE(556), - [sym_val_list] = STATE(6901), - [sym__spread_list] = STATE(7348), - [sym_list_body] = STATE(7568), - [sym_val_entry] = STATE(6844), - [sym_val_record] = STATE(521), - [sym_val_table] = STATE(521), - [sym_val_closure] = STATE(521), - [sym__unquoted_in_list] = STATE(6465), - [sym__unquoted_in_list_with_expr] = STATE(7355), - [sym__unquoted_anonymous_prefix] = STATE(6960), - [sym_comment] = STATE(743), - [aux_sym_shebang_repeat1] = STATE(754), - [aux_sym_parameter_repeat2] = STATE(6485), - [aux_sym_list_body_repeat1] = STATE(773), - [anon_sym_true] = ACTIONS(2985), - [anon_sym_false] = ACTIONS(2985), - [anon_sym_null] = ACTIONS(2987), - [aux_sym_cmd_identifier_token38] = ACTIONS(2989), - [aux_sym_cmd_identifier_token39] = ACTIONS(2989), - [aux_sym_cmd_identifier_token40] = ACTIONS(2989), - [sym__newline] = ACTIONS(2543), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_RBRACK] = ACTIONS(3057), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_COMMA] = ACTIONS(2551), - [anon_sym_DOLLAR] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_DOT_DOT] = ACTIONS(3001), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), - [anon_sym_DOT_DOT_LT] = ACTIONS(3003), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(3005), - [aux_sym__val_number_decimal_token2] = ACTIONS(3007), - [aux_sym__val_number_decimal_token3] = ACTIONS(3009), - [aux_sym__val_number_decimal_token4] = ACTIONS(3011), - [aux_sym__val_number_token1] = ACTIONS(2569), - [aux_sym__val_number_token2] = ACTIONS(2569), - [aux_sym__val_number_token3] = ACTIONS(2569), - [anon_sym_0b] = ACTIONS(2571), - [anon_sym_0o] = ACTIONS(2573), - [anon_sym_0x] = ACTIONS(2573), - [sym_val_date] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3015), - [sym__str_single_quotes] = ACTIONS(3017), - [sym__str_back_ticks] = ACTIONS(3017), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [anon_sym_err_GT_GT] = ACTIONS(2589), - [anon_sym_out_GT_GT] = ACTIONS(2589), - [anon_sym_e_GT_GT] = ACTIONS(2589), - [anon_sym_o_GT_GT] = ACTIONS(2589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), - [anon_sym_POUND] = ACTIONS(247), + [677] = { + [sym_comment] = STATE(677), + [anon_sym_export] = ACTIONS(2434), + [anon_sym_alias] = ACTIONS(2434), + [anon_sym_let] = ACTIONS(2434), + [anon_sym_let_DASHenv] = ACTIONS(2434), + [anon_sym_mut] = ACTIONS(2434), + [anon_sym_const] = ACTIONS(2434), + [aux_sym_cmd_identifier_token1] = ACTIONS(2434), + [aux_sym_cmd_identifier_token2] = ACTIONS(2434), + [aux_sym_cmd_identifier_token3] = ACTIONS(2434), + [aux_sym_cmd_identifier_token4] = ACTIONS(2434), + [aux_sym_cmd_identifier_token5] = ACTIONS(2434), + [aux_sym_cmd_identifier_token6] = ACTIONS(2434), + [aux_sym_cmd_identifier_token7] = ACTIONS(2434), + [aux_sym_cmd_identifier_token8] = ACTIONS(2434), + [aux_sym_cmd_identifier_token9] = ACTIONS(2434), + [aux_sym_cmd_identifier_token10] = ACTIONS(2434), + [aux_sym_cmd_identifier_token11] = ACTIONS(2434), + [aux_sym_cmd_identifier_token12] = ACTIONS(2434), + [aux_sym_cmd_identifier_token13] = ACTIONS(2434), + [aux_sym_cmd_identifier_token14] = ACTIONS(2434), + [aux_sym_cmd_identifier_token15] = ACTIONS(2434), + [aux_sym_cmd_identifier_token16] = ACTIONS(2434), + [aux_sym_cmd_identifier_token17] = ACTIONS(2434), + [aux_sym_cmd_identifier_token18] = ACTIONS(2434), + [aux_sym_cmd_identifier_token19] = ACTIONS(2434), + [aux_sym_cmd_identifier_token20] = ACTIONS(2434), + [aux_sym_cmd_identifier_token21] = ACTIONS(2434), + [aux_sym_cmd_identifier_token22] = ACTIONS(2434), + [aux_sym_cmd_identifier_token23] = ACTIONS(2434), + [aux_sym_cmd_identifier_token24] = ACTIONS(2434), + [aux_sym_cmd_identifier_token25] = ACTIONS(2434), + [aux_sym_cmd_identifier_token26] = ACTIONS(2434), + [aux_sym_cmd_identifier_token27] = ACTIONS(2434), + [aux_sym_cmd_identifier_token28] = ACTIONS(2434), + [aux_sym_cmd_identifier_token29] = ACTIONS(2434), + [aux_sym_cmd_identifier_token30] = ACTIONS(2434), + [aux_sym_cmd_identifier_token31] = ACTIONS(2434), + [aux_sym_cmd_identifier_token32] = ACTIONS(2434), + [aux_sym_cmd_identifier_token33] = ACTIONS(2434), + [aux_sym_cmd_identifier_token34] = ACTIONS(2434), + [aux_sym_cmd_identifier_token35] = ACTIONS(2434), + [aux_sym_cmd_identifier_token36] = ACTIONS(2434), + [anon_sym_true] = ACTIONS(2436), + [anon_sym_false] = ACTIONS(2436), + [anon_sym_null] = ACTIONS(2436), + [aux_sym_cmd_identifier_token38] = ACTIONS(2434), + [aux_sym_cmd_identifier_token39] = ACTIONS(2436), + [aux_sym_cmd_identifier_token40] = ACTIONS(2436), + [anon_sym_def] = ACTIONS(2434), + [anon_sym_export_DASHenv] = ACTIONS(2434), + [anon_sym_extern] = ACTIONS(2434), + [anon_sym_module] = ACTIONS(2434), + [anon_sym_use] = ACTIONS(2434), + [anon_sym_LPAREN] = ACTIONS(2436), + [anon_sym_DOLLAR] = ACTIONS(2436), + [anon_sym_error] = ACTIONS(2434), + [anon_sym_list] = ACTIONS(2434), + [anon_sym_DASH] = ACTIONS(2434), + [anon_sym_break] = ACTIONS(2434), + [anon_sym_continue] = ACTIONS(2434), + [anon_sym_for] = ACTIONS(2434), + [anon_sym_in] = ACTIONS(2434), + [anon_sym_loop] = ACTIONS(2434), + [anon_sym_make] = ACTIONS(2434), + [anon_sym_while] = ACTIONS(2434), + [anon_sym_do] = ACTIONS(2434), + [anon_sym_if] = ACTIONS(2434), + [anon_sym_else] = ACTIONS(2434), + [anon_sym_match] = ACTIONS(2434), + [anon_sym_RBRACE] = ACTIONS(2436), + [anon_sym_try] = ACTIONS(2434), + [anon_sym_catch] = ACTIONS(2434), + [anon_sym_return] = ACTIONS(2434), + [anon_sym_source] = ACTIONS(2434), + [anon_sym_source_DASHenv] = ACTIONS(2434), + [anon_sym_register] = ACTIONS(2434), + [anon_sym_hide] = ACTIONS(2434), + [anon_sym_hide_DASHenv] = ACTIONS(2434), + [anon_sym_overlay] = ACTIONS(2434), + [anon_sym_new] = ACTIONS(2434), + [anon_sym_as] = ACTIONS(2434), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2436), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2436), + [aux_sym__val_number_decimal_token1] = ACTIONS(2434), + [aux_sym__val_number_decimal_token2] = ACTIONS(2436), + [aux_sym__val_number_decimal_token3] = ACTIONS(2436), + [aux_sym__val_number_decimal_token4] = ACTIONS(2436), + [aux_sym__val_number_token1] = ACTIONS(2436), + [aux_sym__val_number_token2] = ACTIONS(2436), + [aux_sym__val_number_token3] = ACTIONS(2436), + [anon_sym_DQUOTE] = ACTIONS(2436), + [sym__str_single_quotes] = ACTIONS(2436), + [sym__str_back_ticks] = ACTIONS(2436), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2436), + [anon_sym_PLUS] = ACTIONS(2434), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2436), }, - [744] = { - [sym_expr_parenthesized] = STATE(5961), - [sym__spread_parenthesized] = STATE(7348), - [sym_val_range] = STATE(7355), - [sym__val_range] = STATE(7469), - [sym__val_range_with_end] = STATE(7194), - [sym__value] = STATE(7355), - [sym_val_nothing] = STATE(521), - [sym_val_bool] = STATE(6215), - [sym__spread_variable] = STATE(7195), - [sym_val_variable] = STATE(5719), - [sym_val_number] = STATE(521), - [sym__val_number_decimal] = STATE(5264), - [sym__val_number] = STATE(2915), - [sym_val_duration] = STATE(521), - [sym_val_filesize] = STATE(521), - [sym_val_binary] = STATE(521), - [sym_val_string] = STATE(521), - [sym__str_double_quotes] = STATE(5413), - [sym_val_interpolated] = STATE(521), - [sym__inter_single_quotes] = STATE(495), - [sym__inter_double_quotes] = STATE(556), - [sym_val_list] = STATE(7144), - [sym__spread_list] = STATE(7348), - [sym_list_body] = STATE(7574), - [sym_val_entry] = STATE(6844), - [sym_val_record] = STATE(521), - [sym_val_table] = STATE(521), - [sym_val_closure] = STATE(521), - [sym__unquoted_in_list] = STATE(6465), - [sym__unquoted_in_list_with_expr] = STATE(7355), - [sym__unquoted_anonymous_prefix] = STATE(6960), - [sym_comment] = STATE(744), - [aux_sym_shebang_repeat1] = STATE(752), - [aux_sym_parameter_repeat2] = STATE(6485), - [aux_sym_list_body_repeat1] = STATE(773), - [anon_sym_true] = ACTIONS(2985), - [anon_sym_false] = ACTIONS(2985), - [anon_sym_null] = ACTIONS(2987), - [aux_sym_cmd_identifier_token38] = ACTIONS(2989), - [aux_sym_cmd_identifier_token39] = ACTIONS(2989), - [aux_sym_cmd_identifier_token40] = ACTIONS(2989), - [sym__newline] = ACTIONS(2543), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_RBRACK] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_COMMA] = ACTIONS(2551), - [anon_sym_DOLLAR] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_DOT_DOT] = ACTIONS(3001), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), - [anon_sym_DOT_DOT_LT] = ACTIONS(3003), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(3005), - [aux_sym__val_number_decimal_token2] = ACTIONS(3007), - [aux_sym__val_number_decimal_token3] = ACTIONS(3009), - [aux_sym__val_number_decimal_token4] = ACTIONS(3011), - [aux_sym__val_number_token1] = ACTIONS(2569), - [aux_sym__val_number_token2] = ACTIONS(2569), - [aux_sym__val_number_token3] = ACTIONS(2569), - [anon_sym_0b] = ACTIONS(2571), - [anon_sym_0o] = ACTIONS(2573), - [anon_sym_0x] = ACTIONS(2573), - [sym_val_date] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3015), - [sym__str_single_quotes] = ACTIONS(3017), - [sym__str_back_ticks] = ACTIONS(3017), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [anon_sym_err_GT_GT] = ACTIONS(2589), - [anon_sym_out_GT_GT] = ACTIONS(2589), - [anon_sym_e_GT_GT] = ACTIONS(2589), - [anon_sym_o_GT_GT] = ACTIONS(2589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), - [anon_sym_POUND] = ACTIONS(247), + [678] = { + [sym_comment] = STATE(678), + [anon_sym_export] = ACTIONS(2059), + [anon_sym_alias] = ACTIONS(2059), + [anon_sym_let] = ACTIONS(2059), + [anon_sym_let_DASHenv] = ACTIONS(2059), + [anon_sym_mut] = ACTIONS(2059), + [anon_sym_const] = ACTIONS(2059), + [aux_sym_cmd_identifier_token1] = ACTIONS(2059), + [aux_sym_cmd_identifier_token2] = ACTIONS(2059), + [aux_sym_cmd_identifier_token3] = ACTIONS(2059), + [aux_sym_cmd_identifier_token4] = ACTIONS(2059), + [aux_sym_cmd_identifier_token5] = ACTIONS(2059), + [aux_sym_cmd_identifier_token6] = ACTIONS(2059), + [aux_sym_cmd_identifier_token7] = ACTIONS(2059), + [aux_sym_cmd_identifier_token8] = ACTIONS(2059), + [aux_sym_cmd_identifier_token9] = ACTIONS(2059), + [aux_sym_cmd_identifier_token10] = ACTIONS(2059), + [aux_sym_cmd_identifier_token11] = ACTIONS(2059), + [aux_sym_cmd_identifier_token12] = ACTIONS(2059), + [aux_sym_cmd_identifier_token13] = ACTIONS(2059), + [aux_sym_cmd_identifier_token14] = ACTIONS(2059), + [aux_sym_cmd_identifier_token15] = ACTIONS(2059), + [aux_sym_cmd_identifier_token16] = ACTIONS(2059), + [aux_sym_cmd_identifier_token17] = ACTIONS(2059), + [aux_sym_cmd_identifier_token18] = ACTIONS(2059), + [aux_sym_cmd_identifier_token19] = ACTIONS(2059), + [aux_sym_cmd_identifier_token20] = ACTIONS(2059), + [aux_sym_cmd_identifier_token21] = ACTIONS(2059), + [aux_sym_cmd_identifier_token22] = ACTIONS(2059), + [aux_sym_cmd_identifier_token23] = ACTIONS(2059), + [aux_sym_cmd_identifier_token24] = ACTIONS(2059), + [aux_sym_cmd_identifier_token25] = ACTIONS(2059), + [aux_sym_cmd_identifier_token26] = ACTIONS(2059), + [aux_sym_cmd_identifier_token27] = ACTIONS(2059), + [aux_sym_cmd_identifier_token28] = ACTIONS(2059), + [aux_sym_cmd_identifier_token29] = ACTIONS(2059), + [aux_sym_cmd_identifier_token30] = ACTIONS(2059), + [aux_sym_cmd_identifier_token31] = ACTIONS(2059), + [aux_sym_cmd_identifier_token32] = ACTIONS(2059), + [aux_sym_cmd_identifier_token33] = ACTIONS(2059), + [aux_sym_cmd_identifier_token34] = ACTIONS(2059), + [aux_sym_cmd_identifier_token35] = ACTIONS(2059), + [aux_sym_cmd_identifier_token36] = ACTIONS(2059), + [anon_sym_true] = ACTIONS(2061), + [anon_sym_false] = ACTIONS(2061), + [anon_sym_null] = ACTIONS(2061), + [aux_sym_cmd_identifier_token38] = ACTIONS(2059), + [aux_sym_cmd_identifier_token39] = ACTIONS(2061), + [aux_sym_cmd_identifier_token40] = ACTIONS(2061), + [anon_sym_def] = ACTIONS(2059), + [anon_sym_export_DASHenv] = ACTIONS(2059), + [anon_sym_extern] = ACTIONS(2059), + [anon_sym_module] = ACTIONS(2059), + [anon_sym_use] = ACTIONS(2059), + [anon_sym_LPAREN] = ACTIONS(2061), + [anon_sym_DOLLAR] = ACTIONS(2061), + [anon_sym_error] = ACTIONS(2059), + [anon_sym_list] = ACTIONS(2059), + [anon_sym_DASH] = ACTIONS(2059), + [anon_sym_break] = ACTIONS(2059), + [anon_sym_continue] = ACTIONS(2059), + [anon_sym_for] = ACTIONS(2059), + [anon_sym_in] = ACTIONS(2059), + [anon_sym_loop] = ACTIONS(2059), + [anon_sym_make] = ACTIONS(2059), + [anon_sym_while] = ACTIONS(2059), + [anon_sym_do] = ACTIONS(2059), + [anon_sym_if] = ACTIONS(2059), + [anon_sym_else] = ACTIONS(2059), + [anon_sym_match] = ACTIONS(2059), + [anon_sym_RBRACE] = ACTIONS(2061), + [anon_sym_try] = ACTIONS(2059), + [anon_sym_catch] = ACTIONS(2059), + [anon_sym_return] = ACTIONS(2059), + [anon_sym_source] = ACTIONS(2059), + [anon_sym_source_DASHenv] = ACTIONS(2059), + [anon_sym_register] = ACTIONS(2059), + [anon_sym_hide] = ACTIONS(2059), + [anon_sym_hide_DASHenv] = ACTIONS(2059), + [anon_sym_overlay] = ACTIONS(2059), + [anon_sym_new] = ACTIONS(2059), + [anon_sym_as] = ACTIONS(2059), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2061), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2061), + [aux_sym__val_number_decimal_token1] = ACTIONS(2059), + [aux_sym__val_number_decimal_token2] = ACTIONS(2061), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), + [aux_sym__val_number_token1] = ACTIONS(2061), + [aux_sym__val_number_token2] = ACTIONS(2061), + [aux_sym__val_number_token3] = ACTIONS(2061), + [anon_sym_DQUOTE] = ACTIONS(2061), + [sym__str_single_quotes] = ACTIONS(2061), + [sym__str_back_ticks] = ACTIONS(2061), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2061), + [anon_sym_PLUS] = ACTIONS(2059), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2061), }, - [745] = { - [sym_expr_parenthesized] = STATE(5961), - [sym__spread_parenthesized] = STATE(7348), - [sym_val_range] = STATE(7355), - [sym__val_range] = STATE(7469), - [sym__val_range_with_end] = STATE(7194), - [sym__value] = STATE(7355), - [sym_val_nothing] = STATE(521), - [sym_val_bool] = STATE(6215), - [sym__spread_variable] = STATE(7195), - [sym_val_variable] = STATE(5719), - [sym_val_number] = STATE(521), - [sym__val_number_decimal] = STATE(5264), - [sym__val_number] = STATE(2915), - [sym_val_duration] = STATE(521), - [sym_val_filesize] = STATE(521), - [sym_val_binary] = STATE(521), - [sym_val_string] = STATE(521), - [sym__str_double_quotes] = STATE(5413), - [sym_val_interpolated] = STATE(521), - [sym__inter_single_quotes] = STATE(495), - [sym__inter_double_quotes] = STATE(556), - [sym_val_list] = STATE(7151), - [sym__spread_list] = STATE(7348), - [sym_list_body] = STATE(7615), - [sym_val_entry] = STATE(6844), - [sym_val_record] = STATE(521), - [sym_val_table] = STATE(521), - [sym_val_closure] = STATE(521), - [sym__unquoted_in_list] = STATE(6465), - [sym__unquoted_in_list_with_expr] = STATE(7355), - [sym__unquoted_anonymous_prefix] = STATE(6960), - [sym_comment] = STATE(745), - [aux_sym_shebang_repeat1] = STATE(753), - [aux_sym_parameter_repeat2] = STATE(6485), - [aux_sym_list_body_repeat1] = STATE(773), - [anon_sym_true] = ACTIONS(2985), - [anon_sym_false] = ACTIONS(2985), - [anon_sym_null] = ACTIONS(2987), - [aux_sym_cmd_identifier_token38] = ACTIONS(2989), - [aux_sym_cmd_identifier_token39] = ACTIONS(2989), - [aux_sym_cmd_identifier_token40] = ACTIONS(2989), - [sym__newline] = ACTIONS(2543), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_RBRACK] = ACTIONS(3061), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_COMMA] = ACTIONS(2551), - [anon_sym_DOLLAR] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_DOT_DOT] = ACTIONS(3001), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), - [anon_sym_DOT_DOT_LT] = ACTIONS(3003), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(3005), - [aux_sym__val_number_decimal_token2] = ACTIONS(3007), - [aux_sym__val_number_decimal_token3] = ACTIONS(3009), - [aux_sym__val_number_decimal_token4] = ACTIONS(3011), - [aux_sym__val_number_token1] = ACTIONS(2569), - [aux_sym__val_number_token2] = ACTIONS(2569), - [aux_sym__val_number_token3] = ACTIONS(2569), - [anon_sym_0b] = ACTIONS(2571), - [anon_sym_0o] = ACTIONS(2573), - [anon_sym_0x] = ACTIONS(2573), - [sym_val_date] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3015), - [sym__str_single_quotes] = ACTIONS(3017), - [sym__str_back_ticks] = ACTIONS(3017), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [anon_sym_err_GT_GT] = ACTIONS(2589), - [anon_sym_out_GT_GT] = ACTIONS(2589), - [anon_sym_e_GT_GT] = ACTIONS(2589), - [anon_sym_o_GT_GT] = ACTIONS(2589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), - [anon_sym_POUND] = ACTIONS(247), + [679] = { + [sym_comment] = STATE(679), + [anon_sym_export] = ACTIONS(2442), + [anon_sym_alias] = ACTIONS(2442), + [anon_sym_let] = ACTIONS(2442), + [anon_sym_let_DASHenv] = ACTIONS(2442), + [anon_sym_mut] = ACTIONS(2442), + [anon_sym_const] = ACTIONS(2442), + [aux_sym_cmd_identifier_token1] = ACTIONS(2442), + [aux_sym_cmd_identifier_token2] = ACTIONS(2442), + [aux_sym_cmd_identifier_token3] = ACTIONS(2442), + [aux_sym_cmd_identifier_token4] = ACTIONS(2442), + [aux_sym_cmd_identifier_token5] = ACTIONS(2442), + [aux_sym_cmd_identifier_token6] = ACTIONS(2442), + [aux_sym_cmd_identifier_token7] = ACTIONS(2442), + [aux_sym_cmd_identifier_token8] = ACTIONS(2442), + [aux_sym_cmd_identifier_token9] = ACTIONS(2442), + [aux_sym_cmd_identifier_token10] = ACTIONS(2442), + [aux_sym_cmd_identifier_token11] = ACTIONS(2442), + [aux_sym_cmd_identifier_token12] = ACTIONS(2442), + [aux_sym_cmd_identifier_token13] = ACTIONS(2442), + [aux_sym_cmd_identifier_token14] = ACTIONS(2442), + [aux_sym_cmd_identifier_token15] = ACTIONS(2442), + [aux_sym_cmd_identifier_token16] = ACTIONS(2442), + [aux_sym_cmd_identifier_token17] = ACTIONS(2442), + [aux_sym_cmd_identifier_token18] = ACTIONS(2442), + [aux_sym_cmd_identifier_token19] = ACTIONS(2442), + [aux_sym_cmd_identifier_token20] = ACTIONS(2442), + [aux_sym_cmd_identifier_token21] = ACTIONS(2442), + [aux_sym_cmd_identifier_token22] = ACTIONS(2442), + [aux_sym_cmd_identifier_token23] = ACTIONS(2442), + [aux_sym_cmd_identifier_token24] = ACTIONS(2442), + [aux_sym_cmd_identifier_token25] = ACTIONS(2442), + [aux_sym_cmd_identifier_token26] = ACTIONS(2442), + [aux_sym_cmd_identifier_token27] = ACTIONS(2442), + [aux_sym_cmd_identifier_token28] = ACTIONS(2442), + [aux_sym_cmd_identifier_token29] = ACTIONS(2442), + [aux_sym_cmd_identifier_token30] = ACTIONS(2442), + [aux_sym_cmd_identifier_token31] = ACTIONS(2442), + [aux_sym_cmd_identifier_token32] = ACTIONS(2442), + [aux_sym_cmd_identifier_token33] = ACTIONS(2442), + [aux_sym_cmd_identifier_token34] = ACTIONS(2442), + [aux_sym_cmd_identifier_token35] = ACTIONS(2442), + [aux_sym_cmd_identifier_token36] = ACTIONS(2442), + [anon_sym_true] = ACTIONS(2444), + [anon_sym_false] = ACTIONS(2444), + [anon_sym_null] = ACTIONS(2444), + [aux_sym_cmd_identifier_token38] = ACTIONS(2442), + [aux_sym_cmd_identifier_token39] = ACTIONS(2444), + [aux_sym_cmd_identifier_token40] = ACTIONS(2444), + [anon_sym_def] = ACTIONS(2442), + [anon_sym_export_DASHenv] = ACTIONS(2442), + [anon_sym_extern] = ACTIONS(2442), + [anon_sym_module] = ACTIONS(2442), + [anon_sym_use] = ACTIONS(2442), + [anon_sym_LPAREN] = ACTIONS(2444), + [anon_sym_DOLLAR] = ACTIONS(2444), + [anon_sym_error] = ACTIONS(2442), + [anon_sym_list] = ACTIONS(2442), + [anon_sym_DASH] = ACTIONS(2442), + [anon_sym_break] = ACTIONS(2442), + [anon_sym_continue] = ACTIONS(2442), + [anon_sym_for] = ACTIONS(2442), + [anon_sym_in] = ACTIONS(2442), + [anon_sym_loop] = ACTIONS(2442), + [anon_sym_make] = ACTIONS(2442), + [anon_sym_while] = ACTIONS(2442), + [anon_sym_do] = ACTIONS(2442), + [anon_sym_if] = ACTIONS(2442), + [anon_sym_else] = ACTIONS(2442), + [anon_sym_match] = ACTIONS(2442), + [anon_sym_RBRACE] = ACTIONS(2444), + [anon_sym_try] = ACTIONS(2442), + [anon_sym_catch] = ACTIONS(2442), + [anon_sym_return] = ACTIONS(2442), + [anon_sym_source] = ACTIONS(2442), + [anon_sym_source_DASHenv] = ACTIONS(2442), + [anon_sym_register] = ACTIONS(2442), + [anon_sym_hide] = ACTIONS(2442), + [anon_sym_hide_DASHenv] = ACTIONS(2442), + [anon_sym_overlay] = ACTIONS(2442), + [anon_sym_new] = ACTIONS(2442), + [anon_sym_as] = ACTIONS(2442), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2444), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2444), + [aux_sym__val_number_decimal_token1] = ACTIONS(2442), + [aux_sym__val_number_decimal_token2] = ACTIONS(2444), + [aux_sym__val_number_decimal_token3] = ACTIONS(2444), + [aux_sym__val_number_decimal_token4] = ACTIONS(2444), + [aux_sym__val_number_token1] = ACTIONS(2444), + [aux_sym__val_number_token2] = ACTIONS(2444), + [aux_sym__val_number_token3] = ACTIONS(2444), + [anon_sym_DQUOTE] = ACTIONS(2444), + [sym__str_single_quotes] = ACTIONS(2444), + [sym__str_back_ticks] = ACTIONS(2444), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2444), + [anon_sym_PLUS] = ACTIONS(2442), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2444), }, - [746] = { - [sym_expr_parenthesized] = STATE(5961), - [sym__spread_parenthesized] = STATE(7348), - [sym_val_range] = STATE(7355), - [sym__val_range] = STATE(7469), - [sym__val_range_with_end] = STATE(7194), - [sym__value] = STATE(7355), - [sym_val_nothing] = STATE(521), - [sym_val_bool] = STATE(6215), - [sym__spread_variable] = STATE(7195), - [sym_val_variable] = STATE(5719), - [sym_val_number] = STATE(521), - [sym__val_number_decimal] = STATE(5264), - [sym__val_number] = STATE(2915), - [sym_val_duration] = STATE(521), - [sym_val_filesize] = STATE(521), - [sym_val_binary] = STATE(521), - [sym_val_string] = STATE(521), - [sym__str_double_quotes] = STATE(5413), - [sym_val_interpolated] = STATE(521), - [sym__inter_single_quotes] = STATE(495), - [sym__inter_double_quotes] = STATE(556), - [sym_val_list] = STATE(521), - [sym__spread_list] = STATE(7348), - [sym_list_body] = STATE(7381), - [sym_val_entry] = STATE(6844), - [sym_val_record] = STATE(521), - [sym_val_table] = STATE(521), - [sym_val_closure] = STATE(521), - [sym__unquoted_in_list] = STATE(6465), - [sym__unquoted_in_list_with_expr] = STATE(7355), - [sym__unquoted_anonymous_prefix] = STATE(6960), - [sym_comment] = STATE(746), - [aux_sym_shebang_repeat1] = STATE(755), - [aux_sym_parameter_repeat2] = STATE(6485), - [aux_sym_list_body_repeat1] = STATE(773), - [anon_sym_true] = ACTIONS(2985), - [anon_sym_false] = ACTIONS(2985), - [anon_sym_null] = ACTIONS(2987), - [aux_sym_cmd_identifier_token38] = ACTIONS(2989), - [aux_sym_cmd_identifier_token39] = ACTIONS(2989), - [aux_sym_cmd_identifier_token40] = ACTIONS(2989), - [sym__newline] = ACTIONS(2543), - [anon_sym_LBRACK] = ACTIONS(3023), - [anon_sym_RBRACK] = ACTIONS(3039), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_COMMA] = ACTIONS(2551), - [anon_sym_DOLLAR] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_DOT_DOT] = ACTIONS(3001), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), - [anon_sym_DOT_DOT_LT] = ACTIONS(3003), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(3005), - [aux_sym__val_number_decimal_token2] = ACTIONS(3007), - [aux_sym__val_number_decimal_token3] = ACTIONS(3009), - [aux_sym__val_number_decimal_token4] = ACTIONS(3011), - [aux_sym__val_number_token1] = ACTIONS(2569), - [aux_sym__val_number_token2] = ACTIONS(2569), - [aux_sym__val_number_token3] = ACTIONS(2569), - [anon_sym_0b] = ACTIONS(2571), - [anon_sym_0o] = ACTIONS(2573), - [anon_sym_0x] = ACTIONS(2573), - [sym_val_date] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3015), - [sym__str_single_quotes] = ACTIONS(3017), - [sym__str_back_ticks] = ACTIONS(3017), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [anon_sym_err_GT_GT] = ACTIONS(2589), - [anon_sym_out_GT_GT] = ACTIONS(2589), - [anon_sym_e_GT_GT] = ACTIONS(2589), - [anon_sym_o_GT_GT] = ACTIONS(2589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), - [anon_sym_POUND] = ACTIONS(247), + [680] = { + [sym_comment] = STATE(680), + [anon_sym_export] = ACTIONS(2450), + [anon_sym_alias] = ACTIONS(2450), + [anon_sym_let] = ACTIONS(2450), + [anon_sym_let_DASHenv] = ACTIONS(2450), + [anon_sym_mut] = ACTIONS(2450), + [anon_sym_const] = ACTIONS(2450), + [aux_sym_cmd_identifier_token1] = ACTIONS(2450), + [aux_sym_cmd_identifier_token2] = ACTIONS(2450), + [aux_sym_cmd_identifier_token3] = ACTIONS(2450), + [aux_sym_cmd_identifier_token4] = ACTIONS(2450), + [aux_sym_cmd_identifier_token5] = ACTIONS(2450), + [aux_sym_cmd_identifier_token6] = ACTIONS(2450), + [aux_sym_cmd_identifier_token7] = ACTIONS(2450), + [aux_sym_cmd_identifier_token8] = ACTIONS(2450), + [aux_sym_cmd_identifier_token9] = ACTIONS(2450), + [aux_sym_cmd_identifier_token10] = ACTIONS(2450), + [aux_sym_cmd_identifier_token11] = ACTIONS(2450), + [aux_sym_cmd_identifier_token12] = ACTIONS(2450), + [aux_sym_cmd_identifier_token13] = ACTIONS(2450), + [aux_sym_cmd_identifier_token14] = ACTIONS(2450), + [aux_sym_cmd_identifier_token15] = ACTIONS(2450), + [aux_sym_cmd_identifier_token16] = ACTIONS(2450), + [aux_sym_cmd_identifier_token17] = ACTIONS(2450), + [aux_sym_cmd_identifier_token18] = ACTIONS(2450), + [aux_sym_cmd_identifier_token19] = ACTIONS(2450), + [aux_sym_cmd_identifier_token20] = ACTIONS(2450), + [aux_sym_cmd_identifier_token21] = ACTIONS(2450), + [aux_sym_cmd_identifier_token22] = ACTIONS(2450), + [aux_sym_cmd_identifier_token23] = ACTIONS(2450), + [aux_sym_cmd_identifier_token24] = ACTIONS(2450), + [aux_sym_cmd_identifier_token25] = ACTIONS(2450), + [aux_sym_cmd_identifier_token26] = ACTIONS(2450), + [aux_sym_cmd_identifier_token27] = ACTIONS(2450), + [aux_sym_cmd_identifier_token28] = ACTIONS(2450), + [aux_sym_cmd_identifier_token29] = ACTIONS(2450), + [aux_sym_cmd_identifier_token30] = ACTIONS(2450), + [aux_sym_cmd_identifier_token31] = ACTIONS(2450), + [aux_sym_cmd_identifier_token32] = ACTIONS(2450), + [aux_sym_cmd_identifier_token33] = ACTIONS(2450), + [aux_sym_cmd_identifier_token34] = ACTIONS(2450), + [aux_sym_cmd_identifier_token35] = ACTIONS(2450), + [aux_sym_cmd_identifier_token36] = ACTIONS(2450), + [anon_sym_true] = ACTIONS(2452), + [anon_sym_false] = ACTIONS(2452), + [anon_sym_null] = ACTIONS(2452), + [aux_sym_cmd_identifier_token38] = ACTIONS(2450), + [aux_sym_cmd_identifier_token39] = ACTIONS(2452), + [aux_sym_cmd_identifier_token40] = ACTIONS(2452), + [anon_sym_def] = ACTIONS(2450), + [anon_sym_export_DASHenv] = ACTIONS(2450), + [anon_sym_extern] = ACTIONS(2450), + [anon_sym_module] = ACTIONS(2450), + [anon_sym_use] = ACTIONS(2450), + [anon_sym_LPAREN] = ACTIONS(2452), + [anon_sym_DOLLAR] = ACTIONS(2452), + [anon_sym_error] = ACTIONS(2450), + [anon_sym_list] = ACTIONS(2450), + [anon_sym_DASH] = ACTIONS(2450), + [anon_sym_break] = ACTIONS(2450), + [anon_sym_continue] = ACTIONS(2450), + [anon_sym_for] = ACTIONS(2450), + [anon_sym_in] = ACTIONS(2450), + [anon_sym_loop] = ACTIONS(2450), + [anon_sym_make] = ACTIONS(2450), + [anon_sym_while] = ACTIONS(2450), + [anon_sym_do] = ACTIONS(2450), + [anon_sym_if] = ACTIONS(2450), + [anon_sym_else] = ACTIONS(2450), + [anon_sym_match] = ACTIONS(2450), + [anon_sym_RBRACE] = ACTIONS(2452), + [anon_sym_try] = ACTIONS(2450), + [anon_sym_catch] = ACTIONS(2450), + [anon_sym_return] = ACTIONS(2450), + [anon_sym_source] = ACTIONS(2450), + [anon_sym_source_DASHenv] = ACTIONS(2450), + [anon_sym_register] = ACTIONS(2450), + [anon_sym_hide] = ACTIONS(2450), + [anon_sym_hide_DASHenv] = ACTIONS(2450), + [anon_sym_overlay] = ACTIONS(2450), + [anon_sym_new] = ACTIONS(2450), + [anon_sym_as] = ACTIONS(2450), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2452), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2452), + [aux_sym__val_number_decimal_token1] = ACTIONS(2450), + [aux_sym__val_number_decimal_token2] = ACTIONS(2452), + [aux_sym__val_number_decimal_token3] = ACTIONS(2452), + [aux_sym__val_number_decimal_token4] = ACTIONS(2452), + [aux_sym__val_number_token1] = ACTIONS(2452), + [aux_sym__val_number_token2] = ACTIONS(2452), + [aux_sym__val_number_token3] = ACTIONS(2452), + [anon_sym_DQUOTE] = ACTIONS(2452), + [sym__str_single_quotes] = ACTIONS(2452), + [sym__str_back_ticks] = ACTIONS(2452), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2452), + [anon_sym_PLUS] = ACTIONS(2450), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2452), }, - [747] = { - [sym_expr_parenthesized] = STATE(5961), - [sym__spread_parenthesized] = STATE(7348), - [sym_val_range] = STATE(7355), - [sym__val_range] = STATE(7469), - [sym__val_range_with_end] = STATE(7194), - [sym__value] = STATE(7355), - [sym_val_nothing] = STATE(521), - [sym_val_bool] = STATE(6215), - [sym__spread_variable] = STATE(7195), - [sym_val_variable] = STATE(5719), - [sym_val_number] = STATE(521), - [sym__val_number_decimal] = STATE(5264), - [sym__val_number] = STATE(2915), - [sym_val_duration] = STATE(521), - [sym_val_filesize] = STATE(521), - [sym_val_binary] = STATE(521), - [sym_val_string] = STATE(521), - [sym__str_double_quotes] = STATE(5413), - [sym_val_interpolated] = STATE(521), - [sym__inter_single_quotes] = STATE(495), - [sym__inter_double_quotes] = STATE(556), - [sym_val_list] = STATE(521), - [sym__spread_list] = STATE(7348), - [sym_list_body] = STATE(7426), - [sym_val_entry] = STATE(6844), - [sym_val_record] = STATE(521), - [sym_val_table] = STATE(521), - [sym_val_closure] = STATE(521), - [sym__unquoted_in_list] = STATE(6465), - [sym__unquoted_in_list_with_expr] = STATE(7355), - [sym__unquoted_anonymous_prefix] = STATE(6960), - [sym_comment] = STATE(747), - [aux_sym_shebang_repeat1] = STATE(755), - [aux_sym_parameter_repeat2] = STATE(6485), - [aux_sym_list_body_repeat1] = STATE(773), - [anon_sym_true] = ACTIONS(2985), - [anon_sym_false] = ACTIONS(2985), - [anon_sym_null] = ACTIONS(2987), - [aux_sym_cmd_identifier_token38] = ACTIONS(2989), - [aux_sym_cmd_identifier_token39] = ACTIONS(2989), - [aux_sym_cmd_identifier_token40] = ACTIONS(2989), - [sym__newline] = ACTIONS(2543), - [anon_sym_LBRACK] = ACTIONS(3023), - [anon_sym_RBRACK] = ACTIONS(3063), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_COMMA] = ACTIONS(2551), - [anon_sym_DOLLAR] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_DOT_DOT] = ACTIONS(3001), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), - [anon_sym_DOT_DOT_LT] = ACTIONS(3003), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(3005), - [aux_sym__val_number_decimal_token2] = ACTIONS(3007), - [aux_sym__val_number_decimal_token3] = ACTIONS(3009), - [aux_sym__val_number_decimal_token4] = ACTIONS(3011), - [aux_sym__val_number_token1] = ACTIONS(2569), - [aux_sym__val_number_token2] = ACTIONS(2569), - [aux_sym__val_number_token3] = ACTIONS(2569), - [anon_sym_0b] = ACTIONS(2571), - [anon_sym_0o] = ACTIONS(2573), - [anon_sym_0x] = ACTIONS(2573), - [sym_val_date] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3015), - [sym__str_single_quotes] = ACTIONS(3017), - [sym__str_back_ticks] = ACTIONS(3017), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [anon_sym_err_GT_GT] = ACTIONS(2589), - [anon_sym_out_GT_GT] = ACTIONS(2589), - [anon_sym_e_GT_GT] = ACTIONS(2589), - [anon_sym_o_GT_GT] = ACTIONS(2589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), - [anon_sym_POUND] = ACTIONS(247), + [681] = { + [sym_comment] = STATE(681), + [anon_sym_export] = ACTIONS(2067), + [anon_sym_alias] = ACTIONS(2067), + [anon_sym_let] = ACTIONS(2067), + [anon_sym_let_DASHenv] = ACTIONS(2067), + [anon_sym_mut] = ACTIONS(2067), + [anon_sym_const] = ACTIONS(2067), + [aux_sym_cmd_identifier_token1] = ACTIONS(2067), + [aux_sym_cmd_identifier_token2] = ACTIONS(2067), + [aux_sym_cmd_identifier_token3] = ACTIONS(2067), + [aux_sym_cmd_identifier_token4] = ACTIONS(2067), + [aux_sym_cmd_identifier_token5] = ACTIONS(2067), + [aux_sym_cmd_identifier_token6] = ACTIONS(2067), + [aux_sym_cmd_identifier_token7] = ACTIONS(2067), + [aux_sym_cmd_identifier_token8] = ACTIONS(2067), + [aux_sym_cmd_identifier_token9] = ACTIONS(2067), + [aux_sym_cmd_identifier_token10] = ACTIONS(2067), + [aux_sym_cmd_identifier_token11] = ACTIONS(2067), + [aux_sym_cmd_identifier_token12] = ACTIONS(2067), + [aux_sym_cmd_identifier_token13] = ACTIONS(2067), + [aux_sym_cmd_identifier_token14] = ACTIONS(2067), + [aux_sym_cmd_identifier_token15] = ACTIONS(2067), + [aux_sym_cmd_identifier_token16] = ACTIONS(2067), + [aux_sym_cmd_identifier_token17] = ACTIONS(2067), + [aux_sym_cmd_identifier_token18] = ACTIONS(2067), + [aux_sym_cmd_identifier_token19] = ACTIONS(2067), + [aux_sym_cmd_identifier_token20] = ACTIONS(2067), + [aux_sym_cmd_identifier_token21] = ACTIONS(2067), + [aux_sym_cmd_identifier_token22] = ACTIONS(2067), + [aux_sym_cmd_identifier_token23] = ACTIONS(2067), + [aux_sym_cmd_identifier_token24] = ACTIONS(2067), + [aux_sym_cmd_identifier_token25] = ACTIONS(2067), + [aux_sym_cmd_identifier_token26] = ACTIONS(2067), + [aux_sym_cmd_identifier_token27] = ACTIONS(2067), + [aux_sym_cmd_identifier_token28] = ACTIONS(2067), + [aux_sym_cmd_identifier_token29] = ACTIONS(2067), + [aux_sym_cmd_identifier_token30] = ACTIONS(2067), + [aux_sym_cmd_identifier_token31] = ACTIONS(2067), + [aux_sym_cmd_identifier_token32] = ACTIONS(2067), + [aux_sym_cmd_identifier_token33] = ACTIONS(2067), + [aux_sym_cmd_identifier_token34] = ACTIONS(2067), + [aux_sym_cmd_identifier_token35] = ACTIONS(2067), + [aux_sym_cmd_identifier_token36] = ACTIONS(2067), + [anon_sym_true] = ACTIONS(2069), + [anon_sym_false] = ACTIONS(2069), + [anon_sym_null] = ACTIONS(2069), + [aux_sym_cmd_identifier_token38] = ACTIONS(2067), + [aux_sym_cmd_identifier_token39] = ACTIONS(2069), + [aux_sym_cmd_identifier_token40] = ACTIONS(2069), + [anon_sym_def] = ACTIONS(2067), + [anon_sym_export_DASHenv] = ACTIONS(2067), + [anon_sym_extern] = ACTIONS(2067), + [anon_sym_module] = ACTIONS(2067), + [anon_sym_use] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(2069), + [anon_sym_DOLLAR] = ACTIONS(2069), + [anon_sym_error] = ACTIONS(2067), + [anon_sym_list] = ACTIONS(2067), + [anon_sym_DASH] = ACTIONS(2067), + [anon_sym_break] = ACTIONS(2067), + [anon_sym_continue] = ACTIONS(2067), + [anon_sym_for] = ACTIONS(2067), + [anon_sym_in] = ACTIONS(2067), + [anon_sym_loop] = ACTIONS(2067), + [anon_sym_make] = ACTIONS(2067), + [anon_sym_while] = ACTIONS(2067), + [anon_sym_do] = ACTIONS(2067), + [anon_sym_if] = ACTIONS(2067), + [anon_sym_else] = ACTIONS(2067), + [anon_sym_match] = ACTIONS(2067), + [anon_sym_RBRACE] = ACTIONS(2069), + [anon_sym_try] = ACTIONS(2067), + [anon_sym_catch] = ACTIONS(2067), + [anon_sym_return] = ACTIONS(2067), + [anon_sym_source] = ACTIONS(2067), + [anon_sym_source_DASHenv] = ACTIONS(2067), + [anon_sym_register] = ACTIONS(2067), + [anon_sym_hide] = ACTIONS(2067), + [anon_sym_hide_DASHenv] = ACTIONS(2067), + [anon_sym_overlay] = ACTIONS(2067), + [anon_sym_new] = ACTIONS(2067), + [anon_sym_as] = ACTIONS(2067), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2069), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2069), + [aux_sym__val_number_decimal_token1] = ACTIONS(2067), + [aux_sym__val_number_decimal_token2] = ACTIONS(2069), + [aux_sym__val_number_decimal_token3] = ACTIONS(2069), + [aux_sym__val_number_decimal_token4] = ACTIONS(2069), + [aux_sym__val_number_token1] = ACTIONS(2069), + [aux_sym__val_number_token2] = ACTIONS(2069), + [aux_sym__val_number_token3] = ACTIONS(2069), + [anon_sym_DQUOTE] = ACTIONS(2069), + [sym__str_single_quotes] = ACTIONS(2069), + [sym__str_back_ticks] = ACTIONS(2069), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2069), + [anon_sym_PLUS] = ACTIONS(2067), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2069), }, - [748] = { - [sym_expr_parenthesized] = STATE(5961), - [sym__spread_parenthesized] = STATE(7348), - [sym_val_range] = STATE(7355), - [sym__val_range] = STATE(7469), - [sym__val_range_with_end] = STATE(7194), - [sym__value] = STATE(7355), - [sym_val_nothing] = STATE(521), - [sym_val_bool] = STATE(6215), - [sym__spread_variable] = STATE(7195), - [sym_val_variable] = STATE(5719), - [sym_val_number] = STATE(521), - [sym__val_number_decimal] = STATE(5264), - [sym__val_number] = STATE(2915), - [sym_val_duration] = STATE(521), - [sym_val_filesize] = STATE(521), - [sym_val_binary] = STATE(521), - [sym_val_string] = STATE(521), - [sym__str_double_quotes] = STATE(5413), - [sym_val_interpolated] = STATE(521), - [sym__inter_single_quotes] = STATE(495), - [sym__inter_double_quotes] = STATE(556), - [sym_val_list] = STATE(7021), - [sym__spread_list] = STATE(7348), - [sym_list_body] = STATE(7632), - [sym_val_entry] = STATE(6844), - [sym_val_record] = STATE(521), - [sym_val_table] = STATE(521), - [sym_val_closure] = STATE(521), - [sym__unquoted_in_list] = STATE(6465), - [sym__unquoted_in_list_with_expr] = STATE(7355), - [sym__unquoted_anonymous_prefix] = STATE(6960), - [sym_comment] = STATE(748), - [aux_sym_shebang_repeat1] = STATE(758), - [aux_sym_parameter_repeat2] = STATE(6485), - [aux_sym_list_body_repeat1] = STATE(773), - [anon_sym_true] = ACTIONS(2985), - [anon_sym_false] = ACTIONS(2985), - [anon_sym_null] = ACTIONS(2987), - [aux_sym_cmd_identifier_token38] = ACTIONS(2989), - [aux_sym_cmd_identifier_token39] = ACTIONS(2989), - [aux_sym_cmd_identifier_token40] = ACTIONS(2989), - [sym__newline] = ACTIONS(2543), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_RBRACK] = ACTIONS(3065), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_COMMA] = ACTIONS(2551), - [anon_sym_DOLLAR] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_DOT_DOT] = ACTIONS(3001), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), - [anon_sym_DOT_DOT_LT] = ACTIONS(3003), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(3005), - [aux_sym__val_number_decimal_token2] = ACTIONS(3007), - [aux_sym__val_number_decimal_token3] = ACTIONS(3009), - [aux_sym__val_number_decimal_token4] = ACTIONS(3011), - [aux_sym__val_number_token1] = ACTIONS(2569), - [aux_sym__val_number_token2] = ACTIONS(2569), - [aux_sym__val_number_token3] = ACTIONS(2569), - [anon_sym_0b] = ACTIONS(2571), - [anon_sym_0o] = ACTIONS(2573), - [anon_sym_0x] = ACTIONS(2573), - [sym_val_date] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3015), - [sym__str_single_quotes] = ACTIONS(3017), - [sym__str_back_ticks] = ACTIONS(3017), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [anon_sym_err_GT_GT] = ACTIONS(2589), - [anon_sym_out_GT_GT] = ACTIONS(2589), - [anon_sym_e_GT_GT] = ACTIONS(2589), - [anon_sym_o_GT_GT] = ACTIONS(2589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), - [anon_sym_POUND] = ACTIONS(247), + [682] = { + [sym_comment] = STATE(682), + [anon_sym_export] = ACTIONS(2087), + [anon_sym_alias] = ACTIONS(2087), + [anon_sym_let] = ACTIONS(2087), + [anon_sym_let_DASHenv] = ACTIONS(2087), + [anon_sym_mut] = ACTIONS(2087), + [anon_sym_const] = ACTIONS(2087), + [aux_sym_cmd_identifier_token1] = ACTIONS(2087), + [aux_sym_cmd_identifier_token2] = ACTIONS(2087), + [aux_sym_cmd_identifier_token3] = ACTIONS(2087), + [aux_sym_cmd_identifier_token4] = ACTIONS(2087), + [aux_sym_cmd_identifier_token5] = ACTIONS(2087), + [aux_sym_cmd_identifier_token6] = ACTIONS(2087), + [aux_sym_cmd_identifier_token7] = ACTIONS(2087), + [aux_sym_cmd_identifier_token8] = ACTIONS(2087), + [aux_sym_cmd_identifier_token9] = ACTIONS(2087), + [aux_sym_cmd_identifier_token10] = ACTIONS(2087), + [aux_sym_cmd_identifier_token11] = ACTIONS(2087), + [aux_sym_cmd_identifier_token12] = ACTIONS(2087), + [aux_sym_cmd_identifier_token13] = ACTIONS(2087), + [aux_sym_cmd_identifier_token14] = ACTIONS(2087), + [aux_sym_cmd_identifier_token15] = ACTIONS(2087), + [aux_sym_cmd_identifier_token16] = ACTIONS(2087), + [aux_sym_cmd_identifier_token17] = ACTIONS(2087), + [aux_sym_cmd_identifier_token18] = ACTIONS(2087), + [aux_sym_cmd_identifier_token19] = ACTIONS(2087), + [aux_sym_cmd_identifier_token20] = ACTIONS(2087), + [aux_sym_cmd_identifier_token21] = ACTIONS(2087), + [aux_sym_cmd_identifier_token22] = ACTIONS(2087), + [aux_sym_cmd_identifier_token23] = ACTIONS(2087), + [aux_sym_cmd_identifier_token24] = ACTIONS(2087), + [aux_sym_cmd_identifier_token25] = ACTIONS(2087), + [aux_sym_cmd_identifier_token26] = ACTIONS(2087), + [aux_sym_cmd_identifier_token27] = ACTIONS(2087), + [aux_sym_cmd_identifier_token28] = ACTIONS(2087), + [aux_sym_cmd_identifier_token29] = ACTIONS(2087), + [aux_sym_cmd_identifier_token30] = ACTIONS(2087), + [aux_sym_cmd_identifier_token31] = ACTIONS(2087), + [aux_sym_cmd_identifier_token32] = ACTIONS(2087), + [aux_sym_cmd_identifier_token33] = ACTIONS(2087), + [aux_sym_cmd_identifier_token34] = ACTIONS(2087), + [aux_sym_cmd_identifier_token35] = ACTIONS(2087), + [aux_sym_cmd_identifier_token36] = ACTIONS(2087), + [anon_sym_true] = ACTIONS(2089), + [anon_sym_false] = ACTIONS(2089), + [anon_sym_null] = ACTIONS(2089), + [aux_sym_cmd_identifier_token38] = ACTIONS(2087), + [aux_sym_cmd_identifier_token39] = ACTIONS(2089), + [aux_sym_cmd_identifier_token40] = ACTIONS(2089), + [anon_sym_def] = ACTIONS(2087), + [anon_sym_export_DASHenv] = ACTIONS(2087), + [anon_sym_extern] = ACTIONS(2087), + [anon_sym_module] = ACTIONS(2087), + [anon_sym_use] = ACTIONS(2087), + [anon_sym_LPAREN] = ACTIONS(2089), + [anon_sym_DOLLAR] = ACTIONS(2089), + [anon_sym_error] = ACTIONS(2087), + [anon_sym_list] = ACTIONS(2087), + [anon_sym_DASH] = ACTIONS(2087), + [anon_sym_break] = ACTIONS(2087), + [anon_sym_continue] = ACTIONS(2087), + [anon_sym_for] = ACTIONS(2087), + [anon_sym_in] = ACTIONS(2087), + [anon_sym_loop] = ACTIONS(2087), + [anon_sym_make] = ACTIONS(2087), + [anon_sym_while] = ACTIONS(2087), + [anon_sym_do] = ACTIONS(2087), + [anon_sym_if] = ACTIONS(2087), + [anon_sym_else] = ACTIONS(2087), + [anon_sym_match] = ACTIONS(2087), + [anon_sym_RBRACE] = ACTIONS(2089), + [anon_sym_try] = ACTIONS(2087), + [anon_sym_catch] = ACTIONS(2087), + [anon_sym_return] = ACTIONS(2087), + [anon_sym_source] = ACTIONS(2087), + [anon_sym_source_DASHenv] = ACTIONS(2087), + [anon_sym_register] = ACTIONS(2087), + [anon_sym_hide] = ACTIONS(2087), + [anon_sym_hide_DASHenv] = ACTIONS(2087), + [anon_sym_overlay] = ACTIONS(2087), + [anon_sym_new] = ACTIONS(2087), + [anon_sym_as] = ACTIONS(2087), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2089), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2089), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2089), + [aux_sym__val_number_decimal_token4] = ACTIONS(2089), + [aux_sym__val_number_token1] = ACTIONS(2089), + [aux_sym__val_number_token2] = ACTIONS(2089), + [aux_sym__val_number_token3] = ACTIONS(2089), + [anon_sym_DQUOTE] = ACTIONS(2089), + [sym__str_single_quotes] = ACTIONS(2089), + [sym__str_back_ticks] = ACTIONS(2089), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2089), + [anon_sym_PLUS] = ACTIONS(2087), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2089), }, - [749] = { - [sym_comment] = STATE(749), - [aux_sym_shebang_repeat1] = STATE(749), - [anon_sym_EQ] = ACTIONS(1315), - [anon_sym_true] = ACTIONS(1315), - [anon_sym_false] = ACTIONS(1315), - [anon_sym_null] = ACTIONS(1315), - [aux_sym_cmd_identifier_token38] = ACTIONS(1315), - [aux_sym_cmd_identifier_token39] = ACTIONS(1315), - [aux_sym_cmd_identifier_token40] = ACTIONS(1315), - [sym__newline] = ACTIONS(3067), - [anon_sym_SEMI] = ACTIONS(1315), - [anon_sym_PIPE] = ACTIONS(1315), - [anon_sym_err_GT_PIPE] = ACTIONS(1315), - [anon_sym_out_GT_PIPE] = ACTIONS(1315), - [anon_sym_e_GT_PIPE] = ACTIONS(1315), - [anon_sym_o_GT_PIPE] = ACTIONS(1315), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1315), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1315), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1315), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1315), - [anon_sym_COLON] = ACTIONS(1315), - [anon_sym_LBRACK] = ACTIONS(1315), - [anon_sym_LPAREN] = ACTIONS(1315), - [anon_sym_RPAREN] = ACTIONS(1315), - [anon_sym_DOLLAR] = ACTIONS(1313), - [anon_sym_any] = ACTIONS(1315), - [anon_sym_binary] = ACTIONS(1315), - [anon_sym_block] = ACTIONS(1315), - [anon_sym_bool] = ACTIONS(1315), - [anon_sym_cell_DASHpath] = ACTIONS(1315), - [anon_sym_closure] = ACTIONS(1315), - [anon_sym_cond] = ACTIONS(1315), - [anon_sym_datetime] = ACTIONS(1315), - [anon_sym_directory] = ACTIONS(1315), - [anon_sym_duration] = ACTIONS(1315), - [anon_sym_error] = ACTIONS(1315), - [anon_sym_expr] = ACTIONS(1315), - [anon_sym_float] = ACTIONS(1315), - [anon_sym_decimal] = ACTIONS(1315), - [anon_sym_filesize] = ACTIONS(1315), - [anon_sym_full_DASHcell_DASHpath] = ACTIONS(1315), - [anon_sym_glob] = ACTIONS(1315), - [anon_sym_int] = ACTIONS(1315), - [anon_sym_import_DASHpattern] = ACTIONS(1315), - [anon_sym_keyword] = ACTIONS(1315), - [anon_sym_math] = ACTIONS(1315), - [anon_sym_nothing] = ACTIONS(1315), - [anon_sym_number] = ACTIONS(1315), - [anon_sym_one_DASHof] = ACTIONS(1315), - [anon_sym_operator] = ACTIONS(1315), - [anon_sym_path] = ACTIONS(1315), - [anon_sym_range] = ACTIONS(1315), - [anon_sym_signature] = ACTIONS(1315), - [anon_sym_string] = ACTIONS(1315), - [anon_sym_table] = ACTIONS(1315), - [anon_sym_variable] = ACTIONS(1315), - [anon_sym_var_DASHwith_DASHopt_DASHtype] = ACTIONS(1315), - [anon_sym_record] = ACTIONS(1315), - [anon_sym_list] = ACTIONS(1315), - [anon_sym_DASH] = ACTIONS(1313), - [anon_sym_else] = ACTIONS(1315), - [anon_sym_LBRACE] = ACTIONS(1315), - [anon_sym_DOT_DOT] = ACTIONS(1313), - [anon_sym_catch] = ACTIONS(1315), - [anon_sym_and] = ACTIONS(1315), - [anon_sym_xor] = ACTIONS(1315), - [anon_sym_or] = ACTIONS(1315), - [aux_sym_expr_unary_token1] = ACTIONS(1315), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1315), - [anon_sym_DOT_DOT_LT] = ACTIONS(1315), - [aux_sym__val_number_decimal_token1] = ACTIONS(1313), - [aux_sym__val_number_decimal_token2] = ACTIONS(1315), - [aux_sym__val_number_decimal_token3] = ACTIONS(1315), - [aux_sym__val_number_decimal_token4] = ACTIONS(1315), - [aux_sym__val_number_token1] = ACTIONS(1315), - [aux_sym__val_number_token2] = ACTIONS(1315), - [aux_sym__val_number_token3] = ACTIONS(1315), - [anon_sym_0b] = ACTIONS(1313), - [anon_sym_0o] = ACTIONS(1313), - [anon_sym_0x] = ACTIONS(1313), - [sym_val_date] = ACTIONS(1315), - [anon_sym_DQUOTE] = ACTIONS(1315), - [sym__str_single_quotes] = ACTIONS(1315), - [sym__str_back_ticks] = ACTIONS(1315), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1315), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1315), - [anon_sym_POUND] = ACTIONS(247), + [683] = { + [sym_comment] = STATE(683), + [anon_sym_export] = ACTIONS(2470), + [anon_sym_alias] = ACTIONS(2470), + [anon_sym_let] = ACTIONS(2470), + [anon_sym_let_DASHenv] = ACTIONS(2470), + [anon_sym_mut] = ACTIONS(2470), + [anon_sym_const] = ACTIONS(2470), + [aux_sym_cmd_identifier_token1] = ACTIONS(2470), + [aux_sym_cmd_identifier_token2] = ACTIONS(2470), + [aux_sym_cmd_identifier_token3] = ACTIONS(2470), + [aux_sym_cmd_identifier_token4] = ACTIONS(2470), + [aux_sym_cmd_identifier_token5] = ACTIONS(2470), + [aux_sym_cmd_identifier_token6] = ACTIONS(2470), + [aux_sym_cmd_identifier_token7] = ACTIONS(2470), + [aux_sym_cmd_identifier_token8] = ACTIONS(2470), + [aux_sym_cmd_identifier_token9] = ACTIONS(2470), + [aux_sym_cmd_identifier_token10] = ACTIONS(2470), + [aux_sym_cmd_identifier_token11] = ACTIONS(2470), + [aux_sym_cmd_identifier_token12] = ACTIONS(2470), + [aux_sym_cmd_identifier_token13] = ACTIONS(2470), + [aux_sym_cmd_identifier_token14] = ACTIONS(2470), + [aux_sym_cmd_identifier_token15] = ACTIONS(2470), + [aux_sym_cmd_identifier_token16] = ACTIONS(2470), + [aux_sym_cmd_identifier_token17] = ACTIONS(2470), + [aux_sym_cmd_identifier_token18] = ACTIONS(2470), + [aux_sym_cmd_identifier_token19] = ACTIONS(2470), + [aux_sym_cmd_identifier_token20] = ACTIONS(2470), + [aux_sym_cmd_identifier_token21] = ACTIONS(2470), + [aux_sym_cmd_identifier_token22] = ACTIONS(2470), + [aux_sym_cmd_identifier_token23] = ACTIONS(2470), + [aux_sym_cmd_identifier_token24] = ACTIONS(2470), + [aux_sym_cmd_identifier_token25] = ACTIONS(2470), + [aux_sym_cmd_identifier_token26] = ACTIONS(2470), + [aux_sym_cmd_identifier_token27] = ACTIONS(2470), + [aux_sym_cmd_identifier_token28] = ACTIONS(2470), + [aux_sym_cmd_identifier_token29] = ACTIONS(2470), + [aux_sym_cmd_identifier_token30] = ACTIONS(2470), + [aux_sym_cmd_identifier_token31] = ACTIONS(2470), + [aux_sym_cmd_identifier_token32] = ACTIONS(2470), + [aux_sym_cmd_identifier_token33] = ACTIONS(2470), + [aux_sym_cmd_identifier_token34] = ACTIONS(2470), + [aux_sym_cmd_identifier_token35] = ACTIONS(2470), + [aux_sym_cmd_identifier_token36] = ACTIONS(2470), + [anon_sym_true] = ACTIONS(2472), + [anon_sym_false] = ACTIONS(2472), + [anon_sym_null] = ACTIONS(2472), + [aux_sym_cmd_identifier_token38] = ACTIONS(2470), + [aux_sym_cmd_identifier_token39] = ACTIONS(2472), + [aux_sym_cmd_identifier_token40] = ACTIONS(2472), + [anon_sym_def] = ACTIONS(2470), + [anon_sym_export_DASHenv] = ACTIONS(2470), + [anon_sym_extern] = ACTIONS(2470), + [anon_sym_module] = ACTIONS(2470), + [anon_sym_use] = ACTIONS(2470), + [anon_sym_LPAREN] = ACTIONS(2472), + [anon_sym_DOLLAR] = ACTIONS(2472), + [anon_sym_error] = ACTIONS(2470), + [anon_sym_list] = ACTIONS(2470), + [anon_sym_DASH] = ACTIONS(2470), + [anon_sym_break] = ACTIONS(2470), + [anon_sym_continue] = ACTIONS(2470), + [anon_sym_for] = ACTIONS(2470), + [anon_sym_in] = ACTIONS(2470), + [anon_sym_loop] = ACTIONS(2470), + [anon_sym_make] = ACTIONS(2470), + [anon_sym_while] = ACTIONS(2470), + [anon_sym_do] = ACTIONS(2470), + [anon_sym_if] = ACTIONS(2470), + [anon_sym_else] = ACTIONS(2470), + [anon_sym_match] = ACTIONS(2470), + [anon_sym_RBRACE] = ACTIONS(2472), + [anon_sym_try] = ACTIONS(2470), + [anon_sym_catch] = ACTIONS(2470), + [anon_sym_return] = ACTIONS(2470), + [anon_sym_source] = ACTIONS(2470), + [anon_sym_source_DASHenv] = ACTIONS(2470), + [anon_sym_register] = ACTIONS(2470), + [anon_sym_hide] = ACTIONS(2470), + [anon_sym_hide_DASHenv] = ACTIONS(2470), + [anon_sym_overlay] = ACTIONS(2470), + [anon_sym_new] = ACTIONS(2470), + [anon_sym_as] = ACTIONS(2470), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2472), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2472), + [aux_sym__val_number_decimal_token1] = ACTIONS(2470), + [aux_sym__val_number_decimal_token2] = ACTIONS(2472), + [aux_sym__val_number_decimal_token3] = ACTIONS(2472), + [aux_sym__val_number_decimal_token4] = ACTIONS(2472), + [aux_sym__val_number_token1] = ACTIONS(2472), + [aux_sym__val_number_token2] = ACTIONS(2472), + [aux_sym__val_number_token3] = ACTIONS(2472), + [anon_sym_DQUOTE] = ACTIONS(2472), + [sym__str_single_quotes] = ACTIONS(2472), + [sym__str_back_ticks] = ACTIONS(2472), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2472), + [anon_sym_PLUS] = ACTIONS(2470), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2472), }, - [750] = { - [sym_comment] = STATE(750), - [anon_sym_EQ] = ACTIONS(1307), - [anon_sym_true] = ACTIONS(1307), - [anon_sym_false] = ACTIONS(1307), - [anon_sym_null] = ACTIONS(1307), - [aux_sym_cmd_identifier_token38] = ACTIONS(1307), - [aux_sym_cmd_identifier_token39] = ACTIONS(1307), - [aux_sym_cmd_identifier_token40] = ACTIONS(1307), - [sym__newline] = ACTIONS(1307), - [anon_sym_SEMI] = ACTIONS(1307), - [anon_sym_PIPE] = ACTIONS(1307), - [anon_sym_err_GT_PIPE] = ACTIONS(1307), - [anon_sym_out_GT_PIPE] = ACTIONS(1307), - [anon_sym_e_GT_PIPE] = ACTIONS(1307), - [anon_sym_o_GT_PIPE] = ACTIONS(1307), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1307), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1307), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1307), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1307), - [anon_sym_COLON] = ACTIONS(1307), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1307), - [anon_sym_RPAREN] = ACTIONS(1307), - [anon_sym_DOLLAR] = ACTIONS(1311), - [anon_sym_any] = ACTIONS(1307), - [anon_sym_binary] = ACTIONS(1307), - [anon_sym_block] = ACTIONS(1307), - [anon_sym_bool] = ACTIONS(1307), - [anon_sym_cell_DASHpath] = ACTIONS(1307), - [anon_sym_closure] = ACTIONS(1307), - [anon_sym_cond] = ACTIONS(1307), - [anon_sym_datetime] = ACTIONS(1307), - [anon_sym_directory] = ACTIONS(1307), - [anon_sym_duration] = ACTIONS(1307), - [anon_sym_error] = ACTIONS(1307), - [anon_sym_expr] = ACTIONS(1307), - [anon_sym_float] = ACTIONS(1307), - [anon_sym_decimal] = ACTIONS(1307), - [anon_sym_filesize] = ACTIONS(1307), - [anon_sym_full_DASHcell_DASHpath] = ACTIONS(1307), - [anon_sym_glob] = ACTIONS(1307), - [anon_sym_int] = ACTIONS(1307), - [anon_sym_import_DASHpattern] = ACTIONS(1307), - [anon_sym_keyword] = ACTIONS(1307), - [anon_sym_math] = ACTIONS(1307), - [anon_sym_nothing] = ACTIONS(1307), - [anon_sym_number] = ACTIONS(1307), - [anon_sym_one_DASHof] = ACTIONS(1307), - [anon_sym_operator] = ACTIONS(1307), - [anon_sym_path] = ACTIONS(1307), - [anon_sym_range] = ACTIONS(1307), - [anon_sym_signature] = ACTIONS(1307), - [anon_sym_string] = ACTIONS(1307), - [anon_sym_table] = ACTIONS(1307), - [anon_sym_variable] = ACTIONS(1307), - [anon_sym_var_DASHwith_DASHopt_DASHtype] = ACTIONS(1307), - [anon_sym_record] = ACTIONS(1307), - [anon_sym_list] = ACTIONS(1307), - [anon_sym_DASH] = ACTIONS(1311), - [anon_sym_else] = ACTIONS(1307), - [anon_sym_LBRACE] = ACTIONS(1307), - [anon_sym_DOT_DOT] = ACTIONS(1311), - [anon_sym_catch] = ACTIONS(1307), - [anon_sym_and] = ACTIONS(1307), - [anon_sym_xor] = ACTIONS(1307), - [anon_sym_or] = ACTIONS(1307), - [aux_sym_expr_unary_token1] = ACTIONS(1307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1307), - [anon_sym_DOT_DOT_LT] = ACTIONS(1307), - [aux_sym__val_number_decimal_token1] = ACTIONS(1311), - [aux_sym__val_number_decimal_token2] = ACTIONS(1307), - [aux_sym__val_number_decimal_token3] = ACTIONS(1307), - [aux_sym__val_number_decimal_token4] = ACTIONS(1307), - [aux_sym__val_number_token1] = ACTIONS(1307), - [aux_sym__val_number_token2] = ACTIONS(1307), - [aux_sym__val_number_token3] = ACTIONS(1307), - [anon_sym_0b] = ACTIONS(1311), - [anon_sym_0o] = ACTIONS(1311), - [anon_sym_0x] = ACTIONS(1311), - [sym_val_date] = ACTIONS(1307), - [anon_sym_DQUOTE] = ACTIONS(1307), - [sym__str_single_quotes] = ACTIONS(1307), - [sym__str_back_ticks] = ACTIONS(1307), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1307), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1307), - [anon_sym_POUND] = ACTIONS(247), + [684] = { + [sym_comment] = STATE(684), + [anon_sym_export] = ACTIONS(2474), + [anon_sym_alias] = ACTIONS(2474), + [anon_sym_let] = ACTIONS(2474), + [anon_sym_let_DASHenv] = ACTIONS(2474), + [anon_sym_mut] = ACTIONS(2474), + [anon_sym_const] = ACTIONS(2474), + [aux_sym_cmd_identifier_token1] = ACTIONS(2474), + [aux_sym_cmd_identifier_token2] = ACTIONS(2474), + [aux_sym_cmd_identifier_token3] = ACTIONS(2474), + [aux_sym_cmd_identifier_token4] = ACTIONS(2474), + [aux_sym_cmd_identifier_token5] = ACTIONS(2474), + [aux_sym_cmd_identifier_token6] = ACTIONS(2474), + [aux_sym_cmd_identifier_token7] = ACTIONS(2474), + [aux_sym_cmd_identifier_token8] = ACTIONS(2474), + [aux_sym_cmd_identifier_token9] = ACTIONS(2474), + [aux_sym_cmd_identifier_token10] = ACTIONS(2474), + [aux_sym_cmd_identifier_token11] = ACTIONS(2474), + [aux_sym_cmd_identifier_token12] = ACTIONS(2474), + [aux_sym_cmd_identifier_token13] = ACTIONS(2474), + [aux_sym_cmd_identifier_token14] = ACTIONS(2474), + [aux_sym_cmd_identifier_token15] = ACTIONS(2474), + [aux_sym_cmd_identifier_token16] = ACTIONS(2474), + [aux_sym_cmd_identifier_token17] = ACTIONS(2474), + [aux_sym_cmd_identifier_token18] = ACTIONS(2474), + [aux_sym_cmd_identifier_token19] = ACTIONS(2474), + [aux_sym_cmd_identifier_token20] = ACTIONS(2474), + [aux_sym_cmd_identifier_token21] = ACTIONS(2474), + [aux_sym_cmd_identifier_token22] = ACTIONS(2474), + [aux_sym_cmd_identifier_token23] = ACTIONS(2474), + [aux_sym_cmd_identifier_token24] = ACTIONS(2474), + [aux_sym_cmd_identifier_token25] = ACTIONS(2474), + [aux_sym_cmd_identifier_token26] = ACTIONS(2474), + [aux_sym_cmd_identifier_token27] = ACTIONS(2474), + [aux_sym_cmd_identifier_token28] = ACTIONS(2474), + [aux_sym_cmd_identifier_token29] = ACTIONS(2474), + [aux_sym_cmd_identifier_token30] = ACTIONS(2474), + [aux_sym_cmd_identifier_token31] = ACTIONS(2474), + [aux_sym_cmd_identifier_token32] = ACTIONS(2474), + [aux_sym_cmd_identifier_token33] = ACTIONS(2474), + [aux_sym_cmd_identifier_token34] = ACTIONS(2474), + [aux_sym_cmd_identifier_token35] = ACTIONS(2474), + [aux_sym_cmd_identifier_token36] = ACTIONS(2474), + [anon_sym_true] = ACTIONS(2476), + [anon_sym_false] = ACTIONS(2476), + [anon_sym_null] = ACTIONS(2476), + [aux_sym_cmd_identifier_token38] = ACTIONS(2474), + [aux_sym_cmd_identifier_token39] = ACTIONS(2476), + [aux_sym_cmd_identifier_token40] = ACTIONS(2476), + [anon_sym_def] = ACTIONS(2474), + [anon_sym_export_DASHenv] = ACTIONS(2474), + [anon_sym_extern] = ACTIONS(2474), + [anon_sym_module] = ACTIONS(2474), + [anon_sym_use] = ACTIONS(2474), + [anon_sym_LPAREN] = ACTIONS(2476), + [anon_sym_DOLLAR] = ACTIONS(2476), + [anon_sym_error] = ACTIONS(2474), + [anon_sym_list] = ACTIONS(2474), + [anon_sym_DASH] = ACTIONS(2474), + [anon_sym_break] = ACTIONS(2474), + [anon_sym_continue] = ACTIONS(2474), + [anon_sym_for] = ACTIONS(2474), + [anon_sym_in] = ACTIONS(2474), + [anon_sym_loop] = ACTIONS(2474), + [anon_sym_make] = ACTIONS(2474), + [anon_sym_while] = ACTIONS(2474), + [anon_sym_do] = ACTIONS(2474), + [anon_sym_if] = ACTIONS(2474), + [anon_sym_else] = ACTIONS(2474), + [anon_sym_match] = ACTIONS(2474), + [anon_sym_RBRACE] = ACTIONS(2476), + [anon_sym_try] = ACTIONS(2474), + [anon_sym_catch] = ACTIONS(2474), + [anon_sym_return] = ACTIONS(2474), + [anon_sym_source] = ACTIONS(2474), + [anon_sym_source_DASHenv] = ACTIONS(2474), + [anon_sym_register] = ACTIONS(2474), + [anon_sym_hide] = ACTIONS(2474), + [anon_sym_hide_DASHenv] = ACTIONS(2474), + [anon_sym_overlay] = ACTIONS(2474), + [anon_sym_new] = ACTIONS(2474), + [anon_sym_as] = ACTIONS(2474), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2476), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2476), + [aux_sym__val_number_decimal_token1] = ACTIONS(2474), + [aux_sym__val_number_decimal_token2] = ACTIONS(2476), + [aux_sym__val_number_decimal_token3] = ACTIONS(2476), + [aux_sym__val_number_decimal_token4] = ACTIONS(2476), + [aux_sym__val_number_token1] = ACTIONS(2476), + [aux_sym__val_number_token2] = ACTIONS(2476), + [aux_sym__val_number_token3] = ACTIONS(2476), + [anon_sym_DQUOTE] = ACTIONS(2476), + [sym__str_single_quotes] = ACTIONS(2476), + [sym__str_back_ticks] = ACTIONS(2476), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2476), + [anon_sym_PLUS] = ACTIONS(2474), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2476), }, - [751] = { - [sym_expr_parenthesized] = STATE(5961), - [sym__spread_parenthesized] = STATE(7348), - [sym_val_range] = STATE(7355), - [sym__val_range] = STATE(7469), - [sym__val_range_with_end] = STATE(7194), - [sym__value] = STATE(7355), - [sym_val_nothing] = STATE(521), - [sym_val_bool] = STATE(6215), - [sym__spread_variable] = STATE(7195), - [sym_val_variable] = STATE(5719), - [sym_val_number] = STATE(521), - [sym__val_number_decimal] = STATE(5264), - [sym__val_number] = STATE(2915), - [sym_val_duration] = STATE(521), - [sym_val_filesize] = STATE(521), - [sym_val_binary] = STATE(521), - [sym_val_string] = STATE(521), - [sym__str_double_quotes] = STATE(5413), - [sym_val_interpolated] = STATE(521), - [sym__inter_single_quotes] = STATE(495), - [sym__inter_double_quotes] = STATE(556), - [sym_val_list] = STATE(7059), - [sym__spread_list] = STATE(7348), - [sym_val_entry] = STATE(6710), - [sym_val_record] = STATE(521), - [sym_val_table] = STATE(521), - [sym_val_closure] = STATE(521), - [sym__unquoted_in_list] = STATE(6465), - [sym__unquoted_in_list_with_expr] = STATE(7355), - [sym__unquoted_anonymous_prefix] = STATE(6960), - [sym_comment] = STATE(751), - [aux_sym_shebang_repeat1] = STATE(2691), - [aux_sym_list_body_repeat1] = STATE(774), - [anon_sym_true] = ACTIONS(2985), - [anon_sym_false] = ACTIONS(2985), - [anon_sym_null] = ACTIONS(2987), - [aux_sym_cmd_identifier_token38] = ACTIONS(2989), - [aux_sym_cmd_identifier_token39] = ACTIONS(2989), - [aux_sym_cmd_identifier_token40] = ACTIONS(2989), - [sym__newline] = ACTIONS(3070), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_DOLLAR] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_DOT_DOT] = ACTIONS(3001), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), - [anon_sym_DOT_DOT_LT] = ACTIONS(3003), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(3005), - [aux_sym__val_number_decimal_token2] = ACTIONS(3007), - [aux_sym__val_number_decimal_token3] = ACTIONS(3009), - [aux_sym__val_number_decimal_token4] = ACTIONS(3011), - [aux_sym__val_number_token1] = ACTIONS(2569), - [aux_sym__val_number_token2] = ACTIONS(2569), - [aux_sym__val_number_token3] = ACTIONS(2569), - [anon_sym_0b] = ACTIONS(2571), - [anon_sym_0o] = ACTIONS(2573), - [anon_sym_0x] = ACTIONS(2573), - [sym_val_date] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3015), - [sym__str_single_quotes] = ACTIONS(3017), - [sym__str_back_ticks] = ACTIONS(3017), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [anon_sym_err_GT_GT] = ACTIONS(2589), - [anon_sym_out_GT_GT] = ACTIONS(2589), - [anon_sym_e_GT_GT] = ACTIONS(2589), - [anon_sym_o_GT_GT] = ACTIONS(2589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), - [anon_sym_POUND] = ACTIONS(247), + [685] = { + [sym_comment] = STATE(685), + [anon_sym_export] = ACTIONS(2095), + [anon_sym_alias] = ACTIONS(2095), + [anon_sym_let] = ACTIONS(2095), + [anon_sym_let_DASHenv] = ACTIONS(2095), + [anon_sym_mut] = ACTIONS(2095), + [anon_sym_const] = ACTIONS(2095), + [aux_sym_cmd_identifier_token1] = ACTIONS(2095), + [aux_sym_cmd_identifier_token2] = ACTIONS(2095), + [aux_sym_cmd_identifier_token3] = ACTIONS(2095), + [aux_sym_cmd_identifier_token4] = ACTIONS(2095), + [aux_sym_cmd_identifier_token5] = ACTIONS(2095), + [aux_sym_cmd_identifier_token6] = ACTIONS(2095), + [aux_sym_cmd_identifier_token7] = ACTIONS(2095), + [aux_sym_cmd_identifier_token8] = ACTIONS(2095), + [aux_sym_cmd_identifier_token9] = ACTIONS(2095), + [aux_sym_cmd_identifier_token10] = ACTIONS(2095), + [aux_sym_cmd_identifier_token11] = ACTIONS(2095), + [aux_sym_cmd_identifier_token12] = ACTIONS(2095), + [aux_sym_cmd_identifier_token13] = ACTIONS(2095), + [aux_sym_cmd_identifier_token14] = ACTIONS(2095), + [aux_sym_cmd_identifier_token15] = ACTIONS(2095), + [aux_sym_cmd_identifier_token16] = ACTIONS(2095), + [aux_sym_cmd_identifier_token17] = ACTIONS(2095), + [aux_sym_cmd_identifier_token18] = ACTIONS(2095), + [aux_sym_cmd_identifier_token19] = ACTIONS(2095), + [aux_sym_cmd_identifier_token20] = ACTIONS(2095), + [aux_sym_cmd_identifier_token21] = ACTIONS(2095), + [aux_sym_cmd_identifier_token22] = ACTIONS(2095), + [aux_sym_cmd_identifier_token23] = ACTIONS(2095), + [aux_sym_cmd_identifier_token24] = ACTIONS(2095), + [aux_sym_cmd_identifier_token25] = ACTIONS(2095), + [aux_sym_cmd_identifier_token26] = ACTIONS(2095), + [aux_sym_cmd_identifier_token27] = ACTIONS(2095), + [aux_sym_cmd_identifier_token28] = ACTIONS(2095), + [aux_sym_cmd_identifier_token29] = ACTIONS(2095), + [aux_sym_cmd_identifier_token30] = ACTIONS(2095), + [aux_sym_cmd_identifier_token31] = ACTIONS(2095), + [aux_sym_cmd_identifier_token32] = ACTIONS(2095), + [aux_sym_cmd_identifier_token33] = ACTIONS(2095), + [aux_sym_cmd_identifier_token34] = ACTIONS(2095), + [aux_sym_cmd_identifier_token35] = ACTIONS(2095), + [aux_sym_cmd_identifier_token36] = ACTIONS(2095), + [anon_sym_true] = ACTIONS(2097), + [anon_sym_false] = ACTIONS(2097), + [anon_sym_null] = ACTIONS(2097), + [aux_sym_cmd_identifier_token38] = ACTIONS(2095), + [aux_sym_cmd_identifier_token39] = ACTIONS(2097), + [aux_sym_cmd_identifier_token40] = ACTIONS(2097), + [anon_sym_def] = ACTIONS(2095), + [anon_sym_export_DASHenv] = ACTIONS(2095), + [anon_sym_extern] = ACTIONS(2095), + [anon_sym_module] = ACTIONS(2095), + [anon_sym_use] = ACTIONS(2095), + [anon_sym_LPAREN] = ACTIONS(2097), + [anon_sym_DOLLAR] = ACTIONS(2097), + [anon_sym_error] = ACTIONS(2095), + [anon_sym_list] = ACTIONS(2095), + [anon_sym_DASH] = ACTIONS(2095), + [anon_sym_break] = ACTIONS(2095), + [anon_sym_continue] = ACTIONS(2095), + [anon_sym_for] = ACTIONS(2095), + [anon_sym_in] = ACTIONS(2095), + [anon_sym_loop] = ACTIONS(2095), + [anon_sym_make] = ACTIONS(2095), + [anon_sym_while] = ACTIONS(2095), + [anon_sym_do] = ACTIONS(2095), + [anon_sym_if] = ACTIONS(2095), + [anon_sym_else] = ACTIONS(2095), + [anon_sym_match] = ACTIONS(2095), + [anon_sym_RBRACE] = ACTIONS(2097), + [anon_sym_try] = ACTIONS(2095), + [anon_sym_catch] = ACTIONS(2095), + [anon_sym_return] = ACTIONS(2095), + [anon_sym_source] = ACTIONS(2095), + [anon_sym_source_DASHenv] = ACTIONS(2095), + [anon_sym_register] = ACTIONS(2095), + [anon_sym_hide] = ACTIONS(2095), + [anon_sym_hide_DASHenv] = ACTIONS(2095), + [anon_sym_overlay] = ACTIONS(2095), + [anon_sym_new] = ACTIONS(2095), + [anon_sym_as] = ACTIONS(2095), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2097), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2097), + [aux_sym__val_number_decimal_token1] = ACTIONS(2095), + [aux_sym__val_number_decimal_token2] = ACTIONS(2097), + [aux_sym__val_number_decimal_token3] = ACTIONS(2097), + [aux_sym__val_number_decimal_token4] = ACTIONS(2097), + [aux_sym__val_number_token1] = ACTIONS(2097), + [aux_sym__val_number_token2] = ACTIONS(2097), + [aux_sym__val_number_token3] = ACTIONS(2097), + [anon_sym_DQUOTE] = ACTIONS(2097), + [sym__str_single_quotes] = ACTIONS(2097), + [sym__str_back_ticks] = ACTIONS(2097), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2097), + [anon_sym_PLUS] = ACTIONS(2095), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2097), }, - [752] = { - [sym_expr_parenthesized] = STATE(5961), - [sym__spread_parenthesized] = STATE(7348), - [sym_val_range] = STATE(7355), - [sym__val_range] = STATE(7469), - [sym__val_range_with_end] = STATE(7194), - [sym__value] = STATE(7355), - [sym_val_nothing] = STATE(521), - [sym_val_bool] = STATE(6215), - [sym__spread_variable] = STATE(7195), - [sym_val_variable] = STATE(5719), - [sym_val_number] = STATE(521), - [sym__val_number_decimal] = STATE(5264), - [sym__val_number] = STATE(2915), - [sym_val_duration] = STATE(521), - [sym_val_filesize] = STATE(521), - [sym_val_binary] = STATE(521), - [sym_val_string] = STATE(521), - [sym__str_double_quotes] = STATE(5413), - [sym_val_interpolated] = STATE(521), - [sym__inter_single_quotes] = STATE(495), - [sym__inter_double_quotes] = STATE(556), - [sym_val_list] = STATE(7145), - [sym__spread_list] = STATE(7348), - [sym_val_entry] = STATE(6710), - [sym_val_record] = STATE(521), - [sym_val_table] = STATE(521), - [sym_val_closure] = STATE(521), - [sym__unquoted_in_list] = STATE(6465), - [sym__unquoted_in_list_with_expr] = STATE(7355), - [sym__unquoted_anonymous_prefix] = STATE(6960), - [sym_comment] = STATE(752), - [aux_sym_shebang_repeat1] = STATE(2691), - [aux_sym_list_body_repeat1] = STATE(774), - [anon_sym_true] = ACTIONS(2985), - [anon_sym_false] = ACTIONS(2985), - [anon_sym_null] = ACTIONS(2987), - [aux_sym_cmd_identifier_token38] = ACTIONS(2989), - [aux_sym_cmd_identifier_token39] = ACTIONS(2989), - [aux_sym_cmd_identifier_token40] = ACTIONS(2989), - [sym__newline] = ACTIONS(3070), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_DOLLAR] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_DOT_DOT] = ACTIONS(3001), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), - [anon_sym_DOT_DOT_LT] = ACTIONS(3003), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(3005), - [aux_sym__val_number_decimal_token2] = ACTIONS(3007), - [aux_sym__val_number_decimal_token3] = ACTIONS(3009), - [aux_sym__val_number_decimal_token4] = ACTIONS(3011), - [aux_sym__val_number_token1] = ACTIONS(2569), - [aux_sym__val_number_token2] = ACTIONS(2569), - [aux_sym__val_number_token3] = ACTIONS(2569), - [anon_sym_0b] = ACTIONS(2571), - [anon_sym_0o] = ACTIONS(2573), - [anon_sym_0x] = ACTIONS(2573), - [sym_val_date] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3015), - [sym__str_single_quotes] = ACTIONS(3017), - [sym__str_back_ticks] = ACTIONS(3017), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [anon_sym_err_GT_GT] = ACTIONS(2589), - [anon_sym_out_GT_GT] = ACTIONS(2589), - [anon_sym_e_GT_GT] = ACTIONS(2589), - [anon_sym_o_GT_GT] = ACTIONS(2589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), - [anon_sym_POUND] = ACTIONS(247), + [686] = { + [sym_comment] = STATE(686), + [anon_sym_export] = ACTIONS(2502), + [anon_sym_alias] = ACTIONS(2502), + [anon_sym_let] = ACTIONS(2502), + [anon_sym_let_DASHenv] = ACTIONS(2502), + [anon_sym_mut] = ACTIONS(2502), + [anon_sym_const] = ACTIONS(2502), + [aux_sym_cmd_identifier_token1] = ACTIONS(2502), + [aux_sym_cmd_identifier_token2] = ACTIONS(2502), + [aux_sym_cmd_identifier_token3] = ACTIONS(2502), + [aux_sym_cmd_identifier_token4] = ACTIONS(2502), + [aux_sym_cmd_identifier_token5] = ACTIONS(2502), + [aux_sym_cmd_identifier_token6] = ACTIONS(2502), + [aux_sym_cmd_identifier_token7] = ACTIONS(2502), + [aux_sym_cmd_identifier_token8] = ACTIONS(2502), + [aux_sym_cmd_identifier_token9] = ACTIONS(2502), + [aux_sym_cmd_identifier_token10] = ACTIONS(2502), + [aux_sym_cmd_identifier_token11] = ACTIONS(2502), + [aux_sym_cmd_identifier_token12] = ACTIONS(2502), + [aux_sym_cmd_identifier_token13] = ACTIONS(2502), + [aux_sym_cmd_identifier_token14] = ACTIONS(2502), + [aux_sym_cmd_identifier_token15] = ACTIONS(2502), + [aux_sym_cmd_identifier_token16] = ACTIONS(2502), + [aux_sym_cmd_identifier_token17] = ACTIONS(2502), + [aux_sym_cmd_identifier_token18] = ACTIONS(2502), + [aux_sym_cmd_identifier_token19] = ACTIONS(2502), + [aux_sym_cmd_identifier_token20] = ACTIONS(2502), + [aux_sym_cmd_identifier_token21] = ACTIONS(2502), + [aux_sym_cmd_identifier_token22] = ACTIONS(2502), + [aux_sym_cmd_identifier_token23] = ACTIONS(2502), + [aux_sym_cmd_identifier_token24] = ACTIONS(2502), + [aux_sym_cmd_identifier_token25] = ACTIONS(2502), + [aux_sym_cmd_identifier_token26] = ACTIONS(2502), + [aux_sym_cmd_identifier_token27] = ACTIONS(2502), + [aux_sym_cmd_identifier_token28] = ACTIONS(2502), + [aux_sym_cmd_identifier_token29] = ACTIONS(2502), + [aux_sym_cmd_identifier_token30] = ACTIONS(2502), + [aux_sym_cmd_identifier_token31] = ACTIONS(2502), + [aux_sym_cmd_identifier_token32] = ACTIONS(2502), + [aux_sym_cmd_identifier_token33] = ACTIONS(2502), + [aux_sym_cmd_identifier_token34] = ACTIONS(2502), + [aux_sym_cmd_identifier_token35] = ACTIONS(2502), + [aux_sym_cmd_identifier_token36] = ACTIONS(2502), + [anon_sym_true] = ACTIONS(2504), + [anon_sym_false] = ACTIONS(2504), + [anon_sym_null] = ACTIONS(2504), + [aux_sym_cmd_identifier_token38] = ACTIONS(2502), + [aux_sym_cmd_identifier_token39] = ACTIONS(2504), + [aux_sym_cmd_identifier_token40] = ACTIONS(2504), + [anon_sym_def] = ACTIONS(2502), + [anon_sym_export_DASHenv] = ACTIONS(2502), + [anon_sym_extern] = ACTIONS(2502), + [anon_sym_module] = ACTIONS(2502), + [anon_sym_use] = ACTIONS(2502), + [anon_sym_LPAREN] = ACTIONS(2504), + [anon_sym_DOLLAR] = ACTIONS(2504), + [anon_sym_error] = ACTIONS(2502), + [anon_sym_list] = ACTIONS(2502), + [anon_sym_DASH] = ACTIONS(2502), + [anon_sym_break] = ACTIONS(2502), + [anon_sym_continue] = ACTIONS(2502), + [anon_sym_for] = ACTIONS(2502), + [anon_sym_in] = ACTIONS(2502), + [anon_sym_loop] = ACTIONS(2502), + [anon_sym_make] = ACTIONS(2502), + [anon_sym_while] = ACTIONS(2502), + [anon_sym_do] = ACTIONS(2502), + [anon_sym_if] = ACTIONS(2502), + [anon_sym_else] = ACTIONS(2502), + [anon_sym_match] = ACTIONS(2502), + [anon_sym_RBRACE] = ACTIONS(2504), + [anon_sym_try] = ACTIONS(2502), + [anon_sym_catch] = ACTIONS(2502), + [anon_sym_return] = ACTIONS(2502), + [anon_sym_source] = ACTIONS(2502), + [anon_sym_source_DASHenv] = ACTIONS(2502), + [anon_sym_register] = ACTIONS(2502), + [anon_sym_hide] = ACTIONS(2502), + [anon_sym_hide_DASHenv] = ACTIONS(2502), + [anon_sym_overlay] = ACTIONS(2502), + [anon_sym_new] = ACTIONS(2502), + [anon_sym_as] = ACTIONS(2502), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2504), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2504), + [aux_sym__val_number_decimal_token1] = ACTIONS(2502), + [aux_sym__val_number_decimal_token2] = ACTIONS(2504), + [aux_sym__val_number_decimal_token3] = ACTIONS(2504), + [aux_sym__val_number_decimal_token4] = ACTIONS(2504), + [aux_sym__val_number_token1] = ACTIONS(2504), + [aux_sym__val_number_token2] = ACTIONS(2504), + [aux_sym__val_number_token3] = ACTIONS(2504), + [anon_sym_DQUOTE] = ACTIONS(2504), + [sym__str_single_quotes] = ACTIONS(2504), + [sym__str_back_ticks] = ACTIONS(2504), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2504), + [anon_sym_PLUS] = ACTIONS(2502), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2504), }, - [753] = { - [sym_expr_parenthesized] = STATE(5961), - [sym__spread_parenthesized] = STATE(7348), - [sym_val_range] = STATE(7355), - [sym__val_range] = STATE(7469), - [sym__val_range_with_end] = STATE(7194), - [sym__value] = STATE(7355), - [sym_val_nothing] = STATE(521), - [sym_val_bool] = STATE(6215), - [sym__spread_variable] = STATE(7195), - [sym_val_variable] = STATE(5719), - [sym_val_number] = STATE(521), - [sym__val_number_decimal] = STATE(5264), - [sym__val_number] = STATE(2915), - [sym_val_duration] = STATE(521), - [sym_val_filesize] = STATE(521), - [sym_val_binary] = STATE(521), - [sym_val_string] = STATE(521), - [sym__str_double_quotes] = STATE(5413), - [sym_val_interpolated] = STATE(521), - [sym__inter_single_quotes] = STATE(495), - [sym__inter_double_quotes] = STATE(556), - [sym_val_list] = STATE(7152), - [sym__spread_list] = STATE(7348), - [sym_val_entry] = STATE(6710), - [sym_val_record] = STATE(521), - [sym_val_table] = STATE(521), - [sym_val_closure] = STATE(521), - [sym__unquoted_in_list] = STATE(6465), - [sym__unquoted_in_list_with_expr] = STATE(7355), - [sym__unquoted_anonymous_prefix] = STATE(6960), - [sym_comment] = STATE(753), - [aux_sym_shebang_repeat1] = STATE(2691), - [aux_sym_list_body_repeat1] = STATE(774), - [anon_sym_true] = ACTIONS(2985), - [anon_sym_false] = ACTIONS(2985), - [anon_sym_null] = ACTIONS(2987), - [aux_sym_cmd_identifier_token38] = ACTIONS(2989), - [aux_sym_cmd_identifier_token39] = ACTIONS(2989), - [aux_sym_cmd_identifier_token40] = ACTIONS(2989), - [sym__newline] = ACTIONS(3070), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_DOLLAR] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_DOT_DOT] = ACTIONS(3001), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), - [anon_sym_DOT_DOT_LT] = ACTIONS(3003), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(3005), - [aux_sym__val_number_decimal_token2] = ACTIONS(3007), - [aux_sym__val_number_decimal_token3] = ACTIONS(3009), - [aux_sym__val_number_decimal_token4] = ACTIONS(3011), - [aux_sym__val_number_token1] = ACTIONS(2569), - [aux_sym__val_number_token2] = ACTIONS(2569), - [aux_sym__val_number_token3] = ACTIONS(2569), - [anon_sym_0b] = ACTIONS(2571), - [anon_sym_0o] = ACTIONS(2573), - [anon_sym_0x] = ACTIONS(2573), - [sym_val_date] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3015), - [sym__str_single_quotes] = ACTIONS(3017), - [sym__str_back_ticks] = ACTIONS(3017), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [anon_sym_err_GT_GT] = ACTIONS(2589), - [anon_sym_out_GT_GT] = ACTIONS(2589), - [anon_sym_e_GT_GT] = ACTIONS(2589), - [anon_sym_o_GT_GT] = ACTIONS(2589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), - [anon_sym_POUND] = ACTIONS(247), + [687] = { + [sym_comment] = STATE(687), + [anon_sym_export] = ACTIONS(2531), + [anon_sym_alias] = ACTIONS(2531), + [anon_sym_let] = ACTIONS(2531), + [anon_sym_let_DASHenv] = ACTIONS(2531), + [anon_sym_mut] = ACTIONS(2531), + [anon_sym_const] = ACTIONS(2531), + [aux_sym_cmd_identifier_token1] = ACTIONS(2531), + [aux_sym_cmd_identifier_token2] = ACTIONS(2531), + [aux_sym_cmd_identifier_token3] = ACTIONS(2531), + [aux_sym_cmd_identifier_token4] = ACTIONS(2531), + [aux_sym_cmd_identifier_token5] = ACTIONS(2531), + [aux_sym_cmd_identifier_token6] = ACTIONS(2531), + [aux_sym_cmd_identifier_token7] = ACTIONS(2531), + [aux_sym_cmd_identifier_token8] = ACTIONS(2531), + [aux_sym_cmd_identifier_token9] = ACTIONS(2531), + [aux_sym_cmd_identifier_token10] = ACTIONS(2531), + [aux_sym_cmd_identifier_token11] = ACTIONS(2531), + [aux_sym_cmd_identifier_token12] = ACTIONS(2531), + [aux_sym_cmd_identifier_token13] = ACTIONS(2531), + [aux_sym_cmd_identifier_token14] = ACTIONS(2531), + [aux_sym_cmd_identifier_token15] = ACTIONS(2531), + [aux_sym_cmd_identifier_token16] = ACTIONS(2531), + [aux_sym_cmd_identifier_token17] = ACTIONS(2531), + [aux_sym_cmd_identifier_token18] = ACTIONS(2531), + [aux_sym_cmd_identifier_token19] = ACTIONS(2531), + [aux_sym_cmd_identifier_token20] = ACTIONS(2531), + [aux_sym_cmd_identifier_token21] = ACTIONS(2531), + [aux_sym_cmd_identifier_token22] = ACTIONS(2531), + [aux_sym_cmd_identifier_token23] = ACTIONS(2531), + [aux_sym_cmd_identifier_token24] = ACTIONS(2531), + [aux_sym_cmd_identifier_token25] = ACTIONS(2531), + [aux_sym_cmd_identifier_token26] = ACTIONS(2531), + [aux_sym_cmd_identifier_token27] = ACTIONS(2531), + [aux_sym_cmd_identifier_token28] = ACTIONS(2531), + [aux_sym_cmd_identifier_token29] = ACTIONS(2531), + [aux_sym_cmd_identifier_token30] = ACTIONS(2531), + [aux_sym_cmd_identifier_token31] = ACTIONS(2531), + [aux_sym_cmd_identifier_token32] = ACTIONS(2531), + [aux_sym_cmd_identifier_token33] = ACTIONS(2531), + [aux_sym_cmd_identifier_token34] = ACTIONS(2531), + [aux_sym_cmd_identifier_token35] = ACTIONS(2531), + [aux_sym_cmd_identifier_token36] = ACTIONS(2531), + [anon_sym_true] = ACTIONS(2533), + [anon_sym_false] = ACTIONS(2533), + [anon_sym_null] = ACTIONS(2533), + [aux_sym_cmd_identifier_token38] = ACTIONS(2531), + [aux_sym_cmd_identifier_token39] = ACTIONS(2533), + [aux_sym_cmd_identifier_token40] = ACTIONS(2533), + [anon_sym_def] = ACTIONS(2531), + [anon_sym_export_DASHenv] = ACTIONS(2531), + [anon_sym_extern] = ACTIONS(2531), + [anon_sym_module] = ACTIONS(2531), + [anon_sym_use] = ACTIONS(2531), + [anon_sym_LPAREN] = ACTIONS(2533), + [anon_sym_DOLLAR] = ACTIONS(2533), + [anon_sym_error] = ACTIONS(2531), + [anon_sym_list] = ACTIONS(2531), + [anon_sym_DASH] = ACTIONS(2531), + [anon_sym_break] = ACTIONS(2531), + [anon_sym_continue] = ACTIONS(2531), + [anon_sym_for] = ACTIONS(2531), + [anon_sym_in] = ACTIONS(2531), + [anon_sym_loop] = ACTIONS(2531), + [anon_sym_make] = ACTIONS(2531), + [anon_sym_while] = ACTIONS(2531), + [anon_sym_do] = ACTIONS(2531), + [anon_sym_if] = ACTIONS(2531), + [anon_sym_else] = ACTIONS(2531), + [anon_sym_match] = ACTIONS(2531), + [anon_sym_RBRACE] = ACTIONS(2533), + [anon_sym_try] = ACTIONS(2531), + [anon_sym_catch] = ACTIONS(2531), + [anon_sym_return] = ACTIONS(2531), + [anon_sym_source] = ACTIONS(2531), + [anon_sym_source_DASHenv] = ACTIONS(2531), + [anon_sym_register] = ACTIONS(2531), + [anon_sym_hide] = ACTIONS(2531), + [anon_sym_hide_DASHenv] = ACTIONS(2531), + [anon_sym_overlay] = ACTIONS(2531), + [anon_sym_new] = ACTIONS(2531), + [anon_sym_as] = ACTIONS(2531), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2533), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2533), + [aux_sym__val_number_decimal_token1] = ACTIONS(2531), + [aux_sym__val_number_decimal_token2] = ACTIONS(2533), + [aux_sym__val_number_decimal_token3] = ACTIONS(2533), + [aux_sym__val_number_decimal_token4] = ACTIONS(2533), + [aux_sym__val_number_token1] = ACTIONS(2533), + [aux_sym__val_number_token2] = ACTIONS(2533), + [aux_sym__val_number_token3] = ACTIONS(2533), + [anon_sym_DQUOTE] = ACTIONS(2533), + [sym__str_single_quotes] = ACTIONS(2533), + [sym__str_back_ticks] = ACTIONS(2533), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2533), + [anon_sym_PLUS] = ACTIONS(2531), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2533), }, - [754] = { - [sym_expr_parenthesized] = STATE(5961), - [sym__spread_parenthesized] = STATE(7348), - [sym_val_range] = STATE(7355), - [sym__val_range] = STATE(7469), - [sym__val_range_with_end] = STATE(7194), - [sym__value] = STATE(7355), - [sym_val_nothing] = STATE(521), - [sym_val_bool] = STATE(6215), - [sym__spread_variable] = STATE(7195), - [sym_val_variable] = STATE(5719), - [sym_val_number] = STATE(521), - [sym__val_number_decimal] = STATE(5264), - [sym__val_number] = STATE(2915), - [sym_val_duration] = STATE(521), - [sym_val_filesize] = STATE(521), - [sym_val_binary] = STATE(521), - [sym_val_string] = STATE(521), - [sym__str_double_quotes] = STATE(5413), - [sym_val_interpolated] = STATE(521), - [sym__inter_single_quotes] = STATE(495), - [sym__inter_double_quotes] = STATE(556), - [sym_val_list] = STATE(6684), - [sym__spread_list] = STATE(7348), - [sym_val_entry] = STATE(6710), - [sym_val_record] = STATE(521), - [sym_val_table] = STATE(521), - [sym_val_closure] = STATE(521), - [sym__unquoted_in_list] = STATE(6465), - [sym__unquoted_in_list_with_expr] = STATE(7355), - [sym__unquoted_anonymous_prefix] = STATE(6960), - [sym_comment] = STATE(754), - [aux_sym_shebang_repeat1] = STATE(2691), - [aux_sym_list_body_repeat1] = STATE(774), - [anon_sym_true] = ACTIONS(2985), - [anon_sym_false] = ACTIONS(2985), - [anon_sym_null] = ACTIONS(2987), - [aux_sym_cmd_identifier_token38] = ACTIONS(2989), - [aux_sym_cmd_identifier_token39] = ACTIONS(2989), - [aux_sym_cmd_identifier_token40] = ACTIONS(2989), - [sym__newline] = ACTIONS(3070), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_DOLLAR] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_DOT_DOT] = ACTIONS(3001), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), - [anon_sym_DOT_DOT_LT] = ACTIONS(3003), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(3005), - [aux_sym__val_number_decimal_token2] = ACTIONS(3007), - [aux_sym__val_number_decimal_token3] = ACTIONS(3009), - [aux_sym__val_number_decimal_token4] = ACTIONS(3011), - [aux_sym__val_number_token1] = ACTIONS(2569), - [aux_sym__val_number_token2] = ACTIONS(2569), - [aux_sym__val_number_token3] = ACTIONS(2569), - [anon_sym_0b] = ACTIONS(2571), - [anon_sym_0o] = ACTIONS(2573), - [anon_sym_0x] = ACTIONS(2573), - [sym_val_date] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3015), - [sym__str_single_quotes] = ACTIONS(3017), - [sym__str_back_ticks] = ACTIONS(3017), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [anon_sym_err_GT_GT] = ACTIONS(2589), - [anon_sym_out_GT_GT] = ACTIONS(2589), - [anon_sym_e_GT_GT] = ACTIONS(2589), - [anon_sym_o_GT_GT] = ACTIONS(2589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), - [anon_sym_POUND] = ACTIONS(247), + [688] = { + [sym_comment] = STATE(688), + [anon_sym_export] = ACTIONS(2349), + [anon_sym_alias] = ACTIONS(2349), + [anon_sym_let] = ACTIONS(2349), + [anon_sym_let_DASHenv] = ACTIONS(2349), + [anon_sym_mut] = ACTIONS(2349), + [anon_sym_const] = ACTIONS(2349), + [aux_sym_cmd_identifier_token1] = ACTIONS(2349), + [aux_sym_cmd_identifier_token2] = ACTIONS(2349), + [aux_sym_cmd_identifier_token3] = ACTIONS(2349), + [aux_sym_cmd_identifier_token4] = ACTIONS(2349), + [aux_sym_cmd_identifier_token5] = ACTIONS(2349), + [aux_sym_cmd_identifier_token6] = ACTIONS(2349), + [aux_sym_cmd_identifier_token7] = ACTIONS(2349), + [aux_sym_cmd_identifier_token8] = ACTIONS(2349), + [aux_sym_cmd_identifier_token9] = ACTIONS(2349), + [aux_sym_cmd_identifier_token10] = ACTIONS(2349), + [aux_sym_cmd_identifier_token11] = ACTIONS(2349), + [aux_sym_cmd_identifier_token12] = ACTIONS(2349), + [aux_sym_cmd_identifier_token13] = ACTIONS(2349), + [aux_sym_cmd_identifier_token14] = ACTIONS(2349), + [aux_sym_cmd_identifier_token15] = ACTIONS(2349), + [aux_sym_cmd_identifier_token16] = ACTIONS(2349), + [aux_sym_cmd_identifier_token17] = ACTIONS(2349), + [aux_sym_cmd_identifier_token18] = ACTIONS(2349), + [aux_sym_cmd_identifier_token19] = ACTIONS(2349), + [aux_sym_cmd_identifier_token20] = ACTIONS(2349), + [aux_sym_cmd_identifier_token21] = ACTIONS(2349), + [aux_sym_cmd_identifier_token22] = ACTIONS(2349), + [aux_sym_cmd_identifier_token23] = ACTIONS(2349), + [aux_sym_cmd_identifier_token24] = ACTIONS(2349), + [aux_sym_cmd_identifier_token25] = ACTIONS(2349), + [aux_sym_cmd_identifier_token26] = ACTIONS(2349), + [aux_sym_cmd_identifier_token27] = ACTIONS(2349), + [aux_sym_cmd_identifier_token28] = ACTIONS(2349), + [aux_sym_cmd_identifier_token29] = ACTIONS(2349), + [aux_sym_cmd_identifier_token30] = ACTIONS(2349), + [aux_sym_cmd_identifier_token31] = ACTIONS(2349), + [aux_sym_cmd_identifier_token32] = ACTIONS(2349), + [aux_sym_cmd_identifier_token33] = ACTIONS(2349), + [aux_sym_cmd_identifier_token34] = ACTIONS(2349), + [aux_sym_cmd_identifier_token35] = ACTIONS(2349), + [aux_sym_cmd_identifier_token36] = ACTIONS(2349), + [anon_sym_true] = ACTIONS(2353), + [anon_sym_false] = ACTIONS(2353), + [anon_sym_null] = ACTIONS(2353), + [aux_sym_cmd_identifier_token38] = ACTIONS(2349), + [aux_sym_cmd_identifier_token39] = ACTIONS(2353), + [aux_sym_cmd_identifier_token40] = ACTIONS(2353), + [anon_sym_def] = ACTIONS(2349), + [anon_sym_export_DASHenv] = ACTIONS(2349), + [anon_sym_extern] = ACTIONS(2349), + [anon_sym_module] = ACTIONS(2349), + [anon_sym_use] = ACTIONS(2349), + [anon_sym_LPAREN] = ACTIONS(2353), + [anon_sym_DOLLAR] = ACTIONS(2353), + [anon_sym_error] = ACTIONS(2349), + [anon_sym_list] = ACTIONS(2349), + [anon_sym_DASH] = ACTIONS(2349), + [anon_sym_break] = ACTIONS(2349), + [anon_sym_continue] = ACTIONS(2349), + [anon_sym_for] = ACTIONS(2349), + [anon_sym_in] = ACTIONS(2349), + [anon_sym_loop] = ACTIONS(2349), + [anon_sym_make] = ACTIONS(2349), + [anon_sym_while] = ACTIONS(2349), + [anon_sym_do] = ACTIONS(2349), + [anon_sym_if] = ACTIONS(2349), + [anon_sym_else] = ACTIONS(2349), + [anon_sym_match] = ACTIONS(2349), + [anon_sym_RBRACE] = ACTIONS(2353), + [anon_sym_try] = ACTIONS(2349), + [anon_sym_catch] = ACTIONS(2349), + [anon_sym_return] = ACTIONS(2349), + [anon_sym_source] = ACTIONS(2349), + [anon_sym_source_DASHenv] = ACTIONS(2349), + [anon_sym_register] = ACTIONS(2349), + [anon_sym_hide] = ACTIONS(2349), + [anon_sym_hide_DASHenv] = ACTIONS(2349), + [anon_sym_overlay] = ACTIONS(2349), + [anon_sym_new] = ACTIONS(2349), + [anon_sym_as] = ACTIONS(2349), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2353), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2353), + [aux_sym__val_number_decimal_token1] = ACTIONS(2349), + [aux_sym__val_number_decimal_token2] = ACTIONS(2353), + [aux_sym__val_number_decimal_token3] = ACTIONS(2353), + [aux_sym__val_number_decimal_token4] = ACTIONS(2353), + [aux_sym__val_number_token1] = ACTIONS(2353), + [aux_sym__val_number_token2] = ACTIONS(2353), + [aux_sym__val_number_token3] = ACTIONS(2353), + [anon_sym_DQUOTE] = ACTIONS(2353), + [sym__str_single_quotes] = ACTIONS(2353), + [sym__str_back_ticks] = ACTIONS(2353), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2353), + [anon_sym_PLUS] = ACTIONS(2349), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2353), }, - [755] = { - [sym_expr_parenthesized] = STATE(5961), - [sym__spread_parenthesized] = STATE(7348), - [sym_val_range] = STATE(7355), - [sym__val_range] = STATE(7469), - [sym__val_range_with_end] = STATE(7194), - [sym__value] = STATE(7355), - [sym_val_nothing] = STATE(521), - [sym_val_bool] = STATE(6215), - [sym__spread_variable] = STATE(7195), - [sym_val_variable] = STATE(5719), - [sym_val_number] = STATE(521), - [sym__val_number_decimal] = STATE(5264), - [sym__val_number] = STATE(2915), - [sym_val_duration] = STATE(521), - [sym_val_filesize] = STATE(521), - [sym_val_binary] = STATE(521), - [sym_val_string] = STATE(521), - [sym__str_double_quotes] = STATE(5413), - [sym_val_interpolated] = STATE(521), - [sym__inter_single_quotes] = STATE(495), - [sym__inter_double_quotes] = STATE(556), - [sym_val_list] = STATE(521), - [sym__spread_list] = STATE(7348), - [sym_val_entry] = STATE(6710), - [sym_val_record] = STATE(521), - [sym_val_table] = STATE(521), - [sym_val_closure] = STATE(521), - [sym__unquoted_in_list] = STATE(6465), - [sym__unquoted_in_list_with_expr] = STATE(7355), - [sym__unquoted_anonymous_prefix] = STATE(6960), - [sym_comment] = STATE(755), - [aux_sym_shebang_repeat1] = STATE(2691), - [aux_sym_list_body_repeat1] = STATE(774), - [anon_sym_true] = ACTIONS(2985), - [anon_sym_false] = ACTIONS(2985), - [anon_sym_null] = ACTIONS(2987), - [aux_sym_cmd_identifier_token38] = ACTIONS(2989), - [aux_sym_cmd_identifier_token39] = ACTIONS(2989), - [aux_sym_cmd_identifier_token40] = ACTIONS(2989), - [sym__newline] = ACTIONS(3070), - [anon_sym_LBRACK] = ACTIONS(3023), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_DOLLAR] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_DOT_DOT] = ACTIONS(3001), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), - [anon_sym_DOT_DOT_LT] = ACTIONS(3003), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(3005), - [aux_sym__val_number_decimal_token2] = ACTIONS(3007), - [aux_sym__val_number_decimal_token3] = ACTIONS(3009), - [aux_sym__val_number_decimal_token4] = ACTIONS(3011), - [aux_sym__val_number_token1] = ACTIONS(2569), - [aux_sym__val_number_token2] = ACTIONS(2569), - [aux_sym__val_number_token3] = ACTIONS(2569), - [anon_sym_0b] = ACTIONS(2571), - [anon_sym_0o] = ACTIONS(2573), - [anon_sym_0x] = ACTIONS(2573), - [sym_val_date] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3015), - [sym__str_single_quotes] = ACTIONS(3017), - [sym__str_back_ticks] = ACTIONS(3017), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [anon_sym_err_GT_GT] = ACTIONS(2589), - [anon_sym_out_GT_GT] = ACTIONS(2589), - [anon_sym_e_GT_GT] = ACTIONS(2589), - [anon_sym_o_GT_GT] = ACTIONS(2589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), - [anon_sym_POUND] = ACTIONS(247), + [689] = { + [sym_comment] = STATE(689), + [anon_sym_export] = ACTIONS(2218), + [anon_sym_alias] = ACTIONS(2218), + [anon_sym_let] = ACTIONS(2218), + [anon_sym_let_DASHenv] = ACTIONS(2218), + [anon_sym_mut] = ACTIONS(2218), + [anon_sym_const] = ACTIONS(2218), + [aux_sym_cmd_identifier_token1] = ACTIONS(2218), + [aux_sym_cmd_identifier_token2] = ACTIONS(2218), + [aux_sym_cmd_identifier_token3] = ACTIONS(2218), + [aux_sym_cmd_identifier_token4] = ACTIONS(2218), + [aux_sym_cmd_identifier_token5] = ACTIONS(2218), + [aux_sym_cmd_identifier_token6] = ACTIONS(2218), + [aux_sym_cmd_identifier_token7] = ACTIONS(2218), + [aux_sym_cmd_identifier_token8] = ACTIONS(2218), + [aux_sym_cmd_identifier_token9] = ACTIONS(2218), + [aux_sym_cmd_identifier_token10] = ACTIONS(2218), + [aux_sym_cmd_identifier_token11] = ACTIONS(2218), + [aux_sym_cmd_identifier_token12] = ACTIONS(2218), + [aux_sym_cmd_identifier_token13] = ACTIONS(2218), + [aux_sym_cmd_identifier_token14] = ACTIONS(2218), + [aux_sym_cmd_identifier_token15] = ACTIONS(2218), + [aux_sym_cmd_identifier_token16] = ACTIONS(2218), + [aux_sym_cmd_identifier_token17] = ACTIONS(2218), + [aux_sym_cmd_identifier_token18] = ACTIONS(2218), + [aux_sym_cmd_identifier_token19] = ACTIONS(2218), + [aux_sym_cmd_identifier_token20] = ACTIONS(2218), + [aux_sym_cmd_identifier_token21] = ACTIONS(2218), + [aux_sym_cmd_identifier_token22] = ACTIONS(2218), + [aux_sym_cmd_identifier_token23] = ACTIONS(2218), + [aux_sym_cmd_identifier_token24] = ACTIONS(2218), + [aux_sym_cmd_identifier_token25] = ACTIONS(2218), + [aux_sym_cmd_identifier_token26] = ACTIONS(2218), + [aux_sym_cmd_identifier_token27] = ACTIONS(2218), + [aux_sym_cmd_identifier_token28] = ACTIONS(2218), + [aux_sym_cmd_identifier_token29] = ACTIONS(2218), + [aux_sym_cmd_identifier_token30] = ACTIONS(2218), + [aux_sym_cmd_identifier_token31] = ACTIONS(2218), + [aux_sym_cmd_identifier_token32] = ACTIONS(2218), + [aux_sym_cmd_identifier_token33] = ACTIONS(2218), + [aux_sym_cmd_identifier_token34] = ACTIONS(2218), + [aux_sym_cmd_identifier_token35] = ACTIONS(2218), + [aux_sym_cmd_identifier_token36] = ACTIONS(2218), + [anon_sym_true] = ACTIONS(2220), + [anon_sym_false] = ACTIONS(2220), + [anon_sym_null] = ACTIONS(2220), + [aux_sym_cmd_identifier_token38] = ACTIONS(2218), + [aux_sym_cmd_identifier_token39] = ACTIONS(2220), + [aux_sym_cmd_identifier_token40] = ACTIONS(2220), + [anon_sym_def] = ACTIONS(2218), + [anon_sym_export_DASHenv] = ACTIONS(2218), + [anon_sym_extern] = ACTIONS(2218), + [anon_sym_module] = ACTIONS(2218), + [anon_sym_use] = ACTIONS(2218), + [anon_sym_LPAREN] = ACTIONS(2220), + [anon_sym_DOLLAR] = ACTIONS(2220), + [anon_sym_error] = ACTIONS(2218), + [anon_sym_list] = ACTIONS(2218), + [anon_sym_DASH] = ACTIONS(2218), + [anon_sym_break] = ACTIONS(2218), + [anon_sym_continue] = ACTIONS(2218), + [anon_sym_for] = ACTIONS(2218), + [anon_sym_in] = ACTIONS(2218), + [anon_sym_loop] = ACTIONS(2218), + [anon_sym_make] = ACTIONS(2218), + [anon_sym_while] = ACTIONS(2218), + [anon_sym_do] = ACTIONS(2218), + [anon_sym_if] = ACTIONS(2218), + [anon_sym_else] = ACTIONS(2218), + [anon_sym_match] = ACTIONS(2218), + [anon_sym_RBRACE] = ACTIONS(2220), + [anon_sym_try] = ACTIONS(2218), + [anon_sym_catch] = ACTIONS(2218), + [anon_sym_return] = ACTIONS(2218), + [anon_sym_source] = ACTIONS(2218), + [anon_sym_source_DASHenv] = ACTIONS(2218), + [anon_sym_register] = ACTIONS(2218), + [anon_sym_hide] = ACTIONS(2218), + [anon_sym_hide_DASHenv] = ACTIONS(2218), + [anon_sym_overlay] = ACTIONS(2218), + [anon_sym_new] = ACTIONS(2218), + [anon_sym_as] = ACTIONS(2218), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2220), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2220), + [aux_sym__val_number_decimal_token1] = ACTIONS(2218), + [aux_sym__val_number_decimal_token2] = ACTIONS(2220), + [aux_sym__val_number_decimal_token3] = ACTIONS(2220), + [aux_sym__val_number_decimal_token4] = ACTIONS(2220), + [aux_sym__val_number_token1] = ACTIONS(2220), + [aux_sym__val_number_token2] = ACTIONS(2220), + [aux_sym__val_number_token3] = ACTIONS(2220), + [anon_sym_DQUOTE] = ACTIONS(2220), + [sym__str_single_quotes] = ACTIONS(2220), + [sym__str_back_ticks] = ACTIONS(2220), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2220), + [anon_sym_PLUS] = ACTIONS(2218), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2220), }, - [756] = { - [sym_expr_parenthesized] = STATE(5961), - [sym__spread_parenthesized] = STATE(7348), - [sym_val_range] = STATE(7355), - [sym__val_range] = STATE(7469), - [sym__val_range_with_end] = STATE(7194), - [sym__value] = STATE(7355), - [sym_val_nothing] = STATE(521), - [sym_val_bool] = STATE(6215), - [sym__spread_variable] = STATE(7195), - [sym_val_variable] = STATE(5719), - [sym_val_number] = STATE(521), - [sym__val_number_decimal] = STATE(5264), - [sym__val_number] = STATE(2915), - [sym_val_duration] = STATE(521), - [sym_val_filesize] = STATE(521), - [sym_val_binary] = STATE(521), - [sym_val_string] = STATE(521), - [sym__str_double_quotes] = STATE(5413), - [sym_val_interpolated] = STATE(521), - [sym__inter_single_quotes] = STATE(495), - [sym__inter_double_quotes] = STATE(556), - [sym_val_list] = STATE(7009), - [sym__spread_list] = STATE(7348), - [sym_val_entry] = STATE(6710), - [sym_val_record] = STATE(521), - [sym_val_table] = STATE(521), - [sym_val_closure] = STATE(521), - [sym__unquoted_in_list] = STATE(6465), - [sym__unquoted_in_list_with_expr] = STATE(7355), - [sym__unquoted_anonymous_prefix] = STATE(6960), - [sym_comment] = STATE(756), - [aux_sym_shebang_repeat1] = STATE(2691), - [aux_sym_list_body_repeat1] = STATE(774), - [anon_sym_true] = ACTIONS(2985), - [anon_sym_false] = ACTIONS(2985), - [anon_sym_null] = ACTIONS(2987), - [aux_sym_cmd_identifier_token38] = ACTIONS(2989), - [aux_sym_cmd_identifier_token39] = ACTIONS(2989), - [aux_sym_cmd_identifier_token40] = ACTIONS(2989), - [sym__newline] = ACTIONS(3070), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_DOLLAR] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_DOT_DOT] = ACTIONS(3001), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), - [anon_sym_DOT_DOT_LT] = ACTIONS(3003), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(3005), - [aux_sym__val_number_decimal_token2] = ACTIONS(3007), - [aux_sym__val_number_decimal_token3] = ACTIONS(3009), - [aux_sym__val_number_decimal_token4] = ACTIONS(3011), - [aux_sym__val_number_token1] = ACTIONS(2569), - [aux_sym__val_number_token2] = ACTIONS(2569), - [aux_sym__val_number_token3] = ACTIONS(2569), - [anon_sym_0b] = ACTIONS(2571), - [anon_sym_0o] = ACTIONS(2573), - [anon_sym_0x] = ACTIONS(2573), - [sym_val_date] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3015), - [sym__str_single_quotes] = ACTIONS(3017), - [sym__str_back_ticks] = ACTIONS(3017), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [anon_sym_err_GT_GT] = ACTIONS(2589), - [anon_sym_out_GT_GT] = ACTIONS(2589), - [anon_sym_e_GT_GT] = ACTIONS(2589), - [anon_sym_o_GT_GT] = ACTIONS(2589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), - [anon_sym_POUND] = ACTIONS(247), + [690] = { + [sym_comment] = STATE(690), + [anon_sym_export] = ACTIONS(2230), + [anon_sym_alias] = ACTIONS(2230), + [anon_sym_let] = ACTIONS(2230), + [anon_sym_let_DASHenv] = ACTIONS(2230), + [anon_sym_mut] = ACTIONS(2230), + [anon_sym_const] = ACTIONS(2230), + [aux_sym_cmd_identifier_token1] = ACTIONS(2230), + [aux_sym_cmd_identifier_token2] = ACTIONS(2230), + [aux_sym_cmd_identifier_token3] = ACTIONS(2230), + [aux_sym_cmd_identifier_token4] = ACTIONS(2230), + [aux_sym_cmd_identifier_token5] = ACTIONS(2230), + [aux_sym_cmd_identifier_token6] = ACTIONS(2230), + [aux_sym_cmd_identifier_token7] = ACTIONS(2230), + [aux_sym_cmd_identifier_token8] = ACTIONS(2230), + [aux_sym_cmd_identifier_token9] = ACTIONS(2230), + [aux_sym_cmd_identifier_token10] = ACTIONS(2230), + [aux_sym_cmd_identifier_token11] = ACTIONS(2230), + [aux_sym_cmd_identifier_token12] = ACTIONS(2230), + [aux_sym_cmd_identifier_token13] = ACTIONS(2230), + [aux_sym_cmd_identifier_token14] = ACTIONS(2230), + [aux_sym_cmd_identifier_token15] = ACTIONS(2230), + [aux_sym_cmd_identifier_token16] = ACTIONS(2230), + [aux_sym_cmd_identifier_token17] = ACTIONS(2230), + [aux_sym_cmd_identifier_token18] = ACTIONS(2230), + [aux_sym_cmd_identifier_token19] = ACTIONS(2230), + [aux_sym_cmd_identifier_token20] = ACTIONS(2230), + [aux_sym_cmd_identifier_token21] = ACTIONS(2230), + [aux_sym_cmd_identifier_token22] = ACTIONS(2230), + [aux_sym_cmd_identifier_token23] = ACTIONS(2230), + [aux_sym_cmd_identifier_token24] = ACTIONS(2230), + [aux_sym_cmd_identifier_token25] = ACTIONS(2230), + [aux_sym_cmd_identifier_token26] = ACTIONS(2230), + [aux_sym_cmd_identifier_token27] = ACTIONS(2230), + [aux_sym_cmd_identifier_token28] = ACTIONS(2230), + [aux_sym_cmd_identifier_token29] = ACTIONS(2230), + [aux_sym_cmd_identifier_token30] = ACTIONS(2230), + [aux_sym_cmd_identifier_token31] = ACTIONS(2230), + [aux_sym_cmd_identifier_token32] = ACTIONS(2230), + [aux_sym_cmd_identifier_token33] = ACTIONS(2230), + [aux_sym_cmd_identifier_token34] = ACTIONS(2230), + [aux_sym_cmd_identifier_token35] = ACTIONS(2230), + [aux_sym_cmd_identifier_token36] = ACTIONS(2230), + [anon_sym_true] = ACTIONS(2232), + [anon_sym_false] = ACTIONS(2232), + [anon_sym_null] = ACTIONS(2232), + [aux_sym_cmd_identifier_token38] = ACTIONS(2230), + [aux_sym_cmd_identifier_token39] = ACTIONS(2232), + [aux_sym_cmd_identifier_token40] = ACTIONS(2232), + [anon_sym_def] = ACTIONS(2230), + [anon_sym_export_DASHenv] = ACTIONS(2230), + [anon_sym_extern] = ACTIONS(2230), + [anon_sym_module] = ACTIONS(2230), + [anon_sym_use] = ACTIONS(2230), + [anon_sym_LPAREN] = ACTIONS(2232), + [anon_sym_DOLLAR] = ACTIONS(2232), + [anon_sym_error] = ACTIONS(2230), + [anon_sym_list] = ACTIONS(2230), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_break] = ACTIONS(2230), + [anon_sym_continue] = ACTIONS(2230), + [anon_sym_for] = ACTIONS(2230), + [anon_sym_in] = ACTIONS(2230), + [anon_sym_loop] = ACTIONS(2230), + [anon_sym_make] = ACTIONS(2230), + [anon_sym_while] = ACTIONS(2230), + [anon_sym_do] = ACTIONS(2230), + [anon_sym_if] = ACTIONS(2230), + [anon_sym_else] = ACTIONS(2230), + [anon_sym_match] = ACTIONS(2230), + [anon_sym_RBRACE] = ACTIONS(2232), + [anon_sym_try] = ACTIONS(2230), + [anon_sym_catch] = ACTIONS(2230), + [anon_sym_return] = ACTIONS(2230), + [anon_sym_source] = ACTIONS(2230), + [anon_sym_source_DASHenv] = ACTIONS(2230), + [anon_sym_register] = ACTIONS(2230), + [anon_sym_hide] = ACTIONS(2230), + [anon_sym_hide_DASHenv] = ACTIONS(2230), + [anon_sym_overlay] = ACTIONS(2230), + [anon_sym_new] = ACTIONS(2230), + [anon_sym_as] = ACTIONS(2230), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2232), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2232), + [aux_sym__val_number_decimal_token1] = ACTIONS(2230), + [aux_sym__val_number_decimal_token2] = ACTIONS(2232), + [aux_sym__val_number_decimal_token3] = ACTIONS(2232), + [aux_sym__val_number_decimal_token4] = ACTIONS(2232), + [aux_sym__val_number_token1] = ACTIONS(2232), + [aux_sym__val_number_token2] = ACTIONS(2232), + [aux_sym__val_number_token3] = ACTIONS(2232), + [anon_sym_DQUOTE] = ACTIONS(2232), + [sym__str_single_quotes] = ACTIONS(2232), + [sym__str_back_ticks] = ACTIONS(2232), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2232), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2232), }, - [757] = { - [sym_expr_parenthesized] = STATE(5961), - [sym__spread_parenthesized] = STATE(7348), - [sym_val_range] = STATE(7355), - [sym__val_range] = STATE(7469), - [sym__val_range_with_end] = STATE(7194), - [sym__value] = STATE(7355), - [sym_val_nothing] = STATE(521), - [sym_val_bool] = STATE(6215), - [sym__spread_variable] = STATE(7195), - [sym_val_variable] = STATE(5719), - [sym_val_number] = STATE(521), - [sym__val_number_decimal] = STATE(5264), - [sym__val_number] = STATE(2915), - [sym_val_duration] = STATE(521), - [sym_val_filesize] = STATE(521), - [sym_val_binary] = STATE(521), - [sym_val_string] = STATE(521), - [sym__str_double_quotes] = STATE(5413), - [sym_val_interpolated] = STATE(521), - [sym__inter_single_quotes] = STATE(495), - [sym__inter_double_quotes] = STATE(556), - [sym_val_list] = STATE(6950), - [sym__spread_list] = STATE(7348), - [sym_val_entry] = STATE(6710), - [sym_val_record] = STATE(521), - [sym_val_table] = STATE(521), - [sym_val_closure] = STATE(521), - [sym__unquoted_in_list] = STATE(6465), - [sym__unquoted_in_list_with_expr] = STATE(7355), - [sym__unquoted_anonymous_prefix] = STATE(6960), - [sym_comment] = STATE(757), - [aux_sym_shebang_repeat1] = STATE(2691), - [aux_sym_list_body_repeat1] = STATE(774), - [anon_sym_true] = ACTIONS(2985), - [anon_sym_false] = ACTIONS(2985), - [anon_sym_null] = ACTIONS(2987), - [aux_sym_cmd_identifier_token38] = ACTIONS(2989), - [aux_sym_cmd_identifier_token39] = ACTIONS(2989), - [aux_sym_cmd_identifier_token40] = ACTIONS(2989), - [sym__newline] = ACTIONS(3070), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_DOLLAR] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_DOT_DOT] = ACTIONS(3001), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), - [anon_sym_DOT_DOT_LT] = ACTIONS(3003), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(3005), - [aux_sym__val_number_decimal_token2] = ACTIONS(3007), - [aux_sym__val_number_decimal_token3] = ACTIONS(3009), - [aux_sym__val_number_decimal_token4] = ACTIONS(3011), - [aux_sym__val_number_token1] = ACTIONS(2569), - [aux_sym__val_number_token2] = ACTIONS(2569), - [aux_sym__val_number_token3] = ACTIONS(2569), - [anon_sym_0b] = ACTIONS(2571), - [anon_sym_0o] = ACTIONS(2573), - [anon_sym_0x] = ACTIONS(2573), - [sym_val_date] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3015), - [sym__str_single_quotes] = ACTIONS(3017), - [sym__str_back_ticks] = ACTIONS(3017), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [anon_sym_err_GT_GT] = ACTIONS(2589), - [anon_sym_out_GT_GT] = ACTIONS(2589), - [anon_sym_e_GT_GT] = ACTIONS(2589), - [anon_sym_o_GT_GT] = ACTIONS(2589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), - [anon_sym_POUND] = ACTIONS(247), + [691] = { + [sym_comment] = STATE(691), + [anon_sym_export] = ACTIONS(1078), + [anon_sym_alias] = ACTIONS(1078), + [anon_sym_let] = ACTIONS(1078), + [anon_sym_let_DASHenv] = ACTIONS(1078), + [anon_sym_mut] = ACTIONS(1078), + [anon_sym_const] = ACTIONS(1078), + [aux_sym_cmd_identifier_token1] = ACTIONS(1078), + [aux_sym_cmd_identifier_token2] = ACTIONS(1078), + [aux_sym_cmd_identifier_token3] = ACTIONS(1078), + [aux_sym_cmd_identifier_token4] = ACTIONS(1078), + [aux_sym_cmd_identifier_token5] = ACTIONS(1078), + [aux_sym_cmd_identifier_token6] = ACTIONS(1078), + [aux_sym_cmd_identifier_token7] = ACTIONS(1078), + [aux_sym_cmd_identifier_token8] = ACTIONS(1078), + [aux_sym_cmd_identifier_token9] = ACTIONS(1078), + [aux_sym_cmd_identifier_token10] = ACTIONS(1078), + [aux_sym_cmd_identifier_token11] = ACTIONS(1078), + [aux_sym_cmd_identifier_token12] = ACTIONS(1078), + [aux_sym_cmd_identifier_token13] = ACTIONS(1078), + [aux_sym_cmd_identifier_token14] = ACTIONS(1078), + [aux_sym_cmd_identifier_token15] = ACTIONS(1078), + [aux_sym_cmd_identifier_token16] = ACTIONS(1078), + [aux_sym_cmd_identifier_token17] = ACTIONS(1078), + [aux_sym_cmd_identifier_token18] = ACTIONS(1078), + [aux_sym_cmd_identifier_token19] = ACTIONS(1078), + [aux_sym_cmd_identifier_token20] = ACTIONS(1078), + [aux_sym_cmd_identifier_token21] = ACTIONS(1078), + [aux_sym_cmd_identifier_token22] = ACTIONS(1078), + [aux_sym_cmd_identifier_token23] = ACTIONS(1078), + [aux_sym_cmd_identifier_token24] = ACTIONS(1078), + [aux_sym_cmd_identifier_token25] = ACTIONS(1078), + [aux_sym_cmd_identifier_token26] = ACTIONS(1078), + [aux_sym_cmd_identifier_token27] = ACTIONS(1078), + [aux_sym_cmd_identifier_token28] = ACTIONS(1078), + [aux_sym_cmd_identifier_token29] = ACTIONS(1078), + [aux_sym_cmd_identifier_token30] = ACTIONS(1078), + [aux_sym_cmd_identifier_token31] = ACTIONS(1078), + [aux_sym_cmd_identifier_token32] = ACTIONS(1078), + [aux_sym_cmd_identifier_token33] = ACTIONS(1078), + [aux_sym_cmd_identifier_token34] = ACTIONS(1078), + [aux_sym_cmd_identifier_token35] = ACTIONS(1078), + [aux_sym_cmd_identifier_token36] = ACTIONS(1078), + [anon_sym_true] = ACTIONS(1080), + [anon_sym_false] = ACTIONS(1080), + [anon_sym_null] = ACTIONS(1080), + [aux_sym_cmd_identifier_token38] = ACTIONS(1078), + [aux_sym_cmd_identifier_token39] = ACTIONS(1080), + [aux_sym_cmd_identifier_token40] = ACTIONS(1080), + [anon_sym_def] = ACTIONS(1078), + [anon_sym_export_DASHenv] = ACTIONS(1078), + [anon_sym_extern] = ACTIONS(1078), + [anon_sym_module] = ACTIONS(1078), + [anon_sym_use] = ACTIONS(1078), + [anon_sym_LPAREN] = ACTIONS(1080), + [anon_sym_DOLLAR] = ACTIONS(1080), + [anon_sym_error] = ACTIONS(1078), + [anon_sym_list] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_break] = ACTIONS(1078), + [anon_sym_continue] = ACTIONS(1078), + [anon_sym_for] = ACTIONS(1078), + [anon_sym_in] = ACTIONS(1078), + [anon_sym_loop] = ACTIONS(1078), + [anon_sym_make] = ACTIONS(1078), + [anon_sym_while] = ACTIONS(1078), + [anon_sym_do] = ACTIONS(1078), + [anon_sym_if] = ACTIONS(1078), + [anon_sym_else] = ACTIONS(1078), + [anon_sym_match] = ACTIONS(1078), + [anon_sym_RBRACE] = ACTIONS(1080), + [anon_sym_try] = ACTIONS(1078), + [anon_sym_catch] = ACTIONS(1078), + [anon_sym_return] = ACTIONS(1078), + [anon_sym_source] = ACTIONS(1078), + [anon_sym_source_DASHenv] = ACTIONS(1078), + [anon_sym_register] = ACTIONS(1078), + [anon_sym_hide] = ACTIONS(1078), + [anon_sym_hide_DASHenv] = ACTIONS(1078), + [anon_sym_overlay] = ACTIONS(1078), + [anon_sym_new] = ACTIONS(1078), + [anon_sym_as] = ACTIONS(1078), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1080), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1080), + [aux_sym__val_number_decimal_token1] = ACTIONS(1078), + [aux_sym__val_number_decimal_token2] = ACTIONS(1080), + [aux_sym__val_number_decimal_token3] = ACTIONS(1080), + [aux_sym__val_number_decimal_token4] = ACTIONS(1080), + [aux_sym__val_number_token1] = ACTIONS(1080), + [aux_sym__val_number_token2] = ACTIONS(1080), + [aux_sym__val_number_token3] = ACTIONS(1080), + [anon_sym_DQUOTE] = ACTIONS(1080), + [sym__str_single_quotes] = ACTIONS(1080), + [sym__str_back_ticks] = ACTIONS(1080), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1080), + [anon_sym_PLUS] = ACTIONS(1078), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1080), }, - [758] = { - [sym_expr_parenthesized] = STATE(5961), - [sym__spread_parenthesized] = STATE(7348), - [sym_val_range] = STATE(7355), - [sym__val_range] = STATE(7469), - [sym__val_range_with_end] = STATE(7194), - [sym__value] = STATE(7355), - [sym_val_nothing] = STATE(521), - [sym_val_bool] = STATE(6215), - [sym__spread_variable] = STATE(7195), - [sym_val_variable] = STATE(5719), - [sym_val_number] = STATE(521), - [sym__val_number_decimal] = STATE(5264), - [sym__val_number] = STATE(2915), - [sym_val_duration] = STATE(521), - [sym_val_filesize] = STATE(521), - [sym_val_binary] = STATE(521), - [sym_val_string] = STATE(521), - [sym__str_double_quotes] = STATE(5413), - [sym_val_interpolated] = STATE(521), - [sym__inter_single_quotes] = STATE(495), - [sym__inter_double_quotes] = STATE(556), - [sym_val_list] = STATE(7024), - [sym__spread_list] = STATE(7348), - [sym_val_entry] = STATE(6710), - [sym_val_record] = STATE(521), - [sym_val_table] = STATE(521), - [sym_val_closure] = STATE(521), - [sym__unquoted_in_list] = STATE(6465), - [sym__unquoted_in_list_with_expr] = STATE(7355), - [sym__unquoted_anonymous_prefix] = STATE(6960), - [sym_comment] = STATE(758), - [aux_sym_shebang_repeat1] = STATE(2691), - [aux_sym_list_body_repeat1] = STATE(774), - [anon_sym_true] = ACTIONS(2985), - [anon_sym_false] = ACTIONS(2985), - [anon_sym_null] = ACTIONS(2987), - [aux_sym_cmd_identifier_token38] = ACTIONS(2989), - [aux_sym_cmd_identifier_token39] = ACTIONS(2989), - [aux_sym_cmd_identifier_token40] = ACTIONS(2989), - [sym__newline] = ACTIONS(3070), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_DOLLAR] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_DOT_DOT] = ACTIONS(3001), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), - [anon_sym_DOT_DOT_LT] = ACTIONS(3003), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(3005), - [aux_sym__val_number_decimal_token2] = ACTIONS(3007), - [aux_sym__val_number_decimal_token3] = ACTIONS(3009), - [aux_sym__val_number_decimal_token4] = ACTIONS(3011), - [aux_sym__val_number_token1] = ACTIONS(2569), - [aux_sym__val_number_token2] = ACTIONS(2569), - [aux_sym__val_number_token3] = ACTIONS(2569), - [anon_sym_0b] = ACTIONS(2571), - [anon_sym_0o] = ACTIONS(2573), - [anon_sym_0x] = ACTIONS(2573), - [sym_val_date] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3015), - [sym__str_single_quotes] = ACTIONS(3017), - [sym__str_back_ticks] = ACTIONS(3017), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [anon_sym_err_GT_GT] = ACTIONS(2589), - [anon_sym_out_GT_GT] = ACTIONS(2589), - [anon_sym_e_GT_GT] = ACTIONS(2589), - [anon_sym_o_GT_GT] = ACTIONS(2589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), - [anon_sym_POUND] = ACTIONS(247), + [692] = { + [sym_comment] = STATE(692), + [anon_sym_export] = ACTIONS(1058), + [anon_sym_alias] = ACTIONS(1058), + [anon_sym_let] = ACTIONS(1058), + [anon_sym_let_DASHenv] = ACTIONS(1058), + [anon_sym_mut] = ACTIONS(1058), + [anon_sym_const] = ACTIONS(1058), + [aux_sym_cmd_identifier_token1] = ACTIONS(1058), + [aux_sym_cmd_identifier_token2] = ACTIONS(1058), + [aux_sym_cmd_identifier_token3] = ACTIONS(1058), + [aux_sym_cmd_identifier_token4] = ACTIONS(1058), + [aux_sym_cmd_identifier_token5] = ACTIONS(1058), + [aux_sym_cmd_identifier_token6] = ACTIONS(1058), + [aux_sym_cmd_identifier_token7] = ACTIONS(1058), + [aux_sym_cmd_identifier_token8] = ACTIONS(1058), + [aux_sym_cmd_identifier_token9] = ACTIONS(1058), + [aux_sym_cmd_identifier_token10] = ACTIONS(1058), + [aux_sym_cmd_identifier_token11] = ACTIONS(1058), + [aux_sym_cmd_identifier_token12] = ACTIONS(1058), + [aux_sym_cmd_identifier_token13] = ACTIONS(1058), + [aux_sym_cmd_identifier_token14] = ACTIONS(1058), + [aux_sym_cmd_identifier_token15] = ACTIONS(1058), + [aux_sym_cmd_identifier_token16] = ACTIONS(1058), + [aux_sym_cmd_identifier_token17] = ACTIONS(1058), + [aux_sym_cmd_identifier_token18] = ACTIONS(1058), + [aux_sym_cmd_identifier_token19] = ACTIONS(1058), + [aux_sym_cmd_identifier_token20] = ACTIONS(1058), + [aux_sym_cmd_identifier_token21] = ACTIONS(1058), + [aux_sym_cmd_identifier_token22] = ACTIONS(1058), + [aux_sym_cmd_identifier_token23] = ACTIONS(1058), + [aux_sym_cmd_identifier_token24] = ACTIONS(1058), + [aux_sym_cmd_identifier_token25] = ACTIONS(1058), + [aux_sym_cmd_identifier_token26] = ACTIONS(1058), + [aux_sym_cmd_identifier_token27] = ACTIONS(1058), + [aux_sym_cmd_identifier_token28] = ACTIONS(1058), + [aux_sym_cmd_identifier_token29] = ACTIONS(1058), + [aux_sym_cmd_identifier_token30] = ACTIONS(1058), + [aux_sym_cmd_identifier_token31] = ACTIONS(1058), + [aux_sym_cmd_identifier_token32] = ACTIONS(1058), + [aux_sym_cmd_identifier_token33] = ACTIONS(1058), + [aux_sym_cmd_identifier_token34] = ACTIONS(1058), + [aux_sym_cmd_identifier_token35] = ACTIONS(1058), + [aux_sym_cmd_identifier_token36] = ACTIONS(1058), + [anon_sym_true] = ACTIONS(1060), + [anon_sym_false] = ACTIONS(1060), + [anon_sym_null] = ACTIONS(1060), + [aux_sym_cmd_identifier_token38] = ACTIONS(1058), + [aux_sym_cmd_identifier_token39] = ACTIONS(1060), + [aux_sym_cmd_identifier_token40] = ACTIONS(1060), + [anon_sym_def] = ACTIONS(1058), + [anon_sym_export_DASHenv] = ACTIONS(1058), + [anon_sym_extern] = ACTIONS(1058), + [anon_sym_module] = ACTIONS(1058), + [anon_sym_use] = ACTIONS(1058), + [anon_sym_LPAREN] = ACTIONS(1060), + [anon_sym_DOLLAR] = ACTIONS(1060), + [anon_sym_error] = ACTIONS(1058), + [anon_sym_list] = ACTIONS(1058), + [anon_sym_DASH] = ACTIONS(1058), + [anon_sym_break] = ACTIONS(1058), + [anon_sym_continue] = ACTIONS(1058), + [anon_sym_for] = ACTIONS(1058), + [anon_sym_in] = ACTIONS(1058), + [anon_sym_loop] = ACTIONS(1058), + [anon_sym_make] = ACTIONS(1058), + [anon_sym_while] = ACTIONS(1058), + [anon_sym_do] = ACTIONS(1058), + [anon_sym_if] = ACTIONS(1058), + [anon_sym_else] = ACTIONS(1058), + [anon_sym_match] = ACTIONS(1058), + [anon_sym_RBRACE] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1058), + [anon_sym_catch] = ACTIONS(1058), + [anon_sym_return] = ACTIONS(1058), + [anon_sym_source] = ACTIONS(1058), + [anon_sym_source_DASHenv] = ACTIONS(1058), + [anon_sym_register] = ACTIONS(1058), + [anon_sym_hide] = ACTIONS(1058), + [anon_sym_hide_DASHenv] = ACTIONS(1058), + [anon_sym_overlay] = ACTIONS(1058), + [anon_sym_new] = ACTIONS(1058), + [anon_sym_as] = ACTIONS(1058), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1060), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1060), + [aux_sym__val_number_decimal_token1] = ACTIONS(1058), + [aux_sym__val_number_decimal_token2] = ACTIONS(1060), + [aux_sym__val_number_decimal_token3] = ACTIONS(1060), + [aux_sym__val_number_decimal_token4] = ACTIONS(1060), + [aux_sym__val_number_token1] = ACTIONS(1060), + [aux_sym__val_number_token2] = ACTIONS(1060), + [aux_sym__val_number_token3] = ACTIONS(1060), + [anon_sym_DQUOTE] = ACTIONS(1060), + [sym__str_single_quotes] = ACTIONS(1060), + [sym__str_back_ticks] = ACTIONS(1060), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1060), + [anon_sym_PLUS] = ACTIONS(1058), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1060), }, - [759] = { - [sym_expr_parenthesized] = STATE(5961), - [sym__spread_parenthesized] = STATE(7348), - [sym_val_range] = STATE(7355), - [sym__val_range] = STATE(7469), - [sym__val_range_with_end] = STATE(7194), - [sym__value] = STATE(7355), - [sym_val_nothing] = STATE(521), - [sym_val_bool] = STATE(6215), - [sym__spread_variable] = STATE(7195), - [sym_val_variable] = STATE(5719), - [sym_val_number] = STATE(521), - [sym__val_number_decimal] = STATE(5264), - [sym__val_number] = STATE(2915), - [sym_val_duration] = STATE(521), - [sym_val_filesize] = STATE(521), - [sym_val_binary] = STATE(521), - [sym_val_string] = STATE(521), - [sym__str_double_quotes] = STATE(5413), - [sym_val_interpolated] = STATE(521), - [sym__inter_single_quotes] = STATE(495), - [sym__inter_double_quotes] = STATE(556), - [sym_val_list] = STATE(7035), - [sym__spread_list] = STATE(7348), - [sym_val_entry] = STATE(6710), - [sym_val_record] = STATE(521), - [sym_val_table] = STATE(521), - [sym_val_closure] = STATE(521), - [sym__unquoted_in_list] = STATE(6465), - [sym__unquoted_in_list_with_expr] = STATE(7355), - [sym__unquoted_anonymous_prefix] = STATE(6960), - [sym_comment] = STATE(759), - [aux_sym_shebang_repeat1] = STATE(2691), - [aux_sym_list_body_repeat1] = STATE(774), - [anon_sym_true] = ACTIONS(2985), - [anon_sym_false] = ACTIONS(2985), - [anon_sym_null] = ACTIONS(2987), - [aux_sym_cmd_identifier_token38] = ACTIONS(2989), - [aux_sym_cmd_identifier_token39] = ACTIONS(2989), - [aux_sym_cmd_identifier_token40] = ACTIONS(2989), - [sym__newline] = ACTIONS(3070), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_DOLLAR] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_DOT_DOT] = ACTIONS(3001), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), - [anon_sym_DOT_DOT_LT] = ACTIONS(3003), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(3005), - [aux_sym__val_number_decimal_token2] = ACTIONS(3007), - [aux_sym__val_number_decimal_token3] = ACTIONS(3009), - [aux_sym__val_number_decimal_token4] = ACTIONS(3011), - [aux_sym__val_number_token1] = ACTIONS(2569), - [aux_sym__val_number_token2] = ACTIONS(2569), - [aux_sym__val_number_token3] = ACTIONS(2569), - [anon_sym_0b] = ACTIONS(2571), - [anon_sym_0o] = ACTIONS(2573), - [anon_sym_0x] = ACTIONS(2573), - [sym_val_date] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3015), - [sym__str_single_quotes] = ACTIONS(3017), - [sym__str_back_ticks] = ACTIONS(3017), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [anon_sym_err_GT_GT] = ACTIONS(2589), - [anon_sym_out_GT_GT] = ACTIONS(2589), - [anon_sym_e_GT_GT] = ACTIONS(2589), - [anon_sym_o_GT_GT] = ACTIONS(2589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), - [anon_sym_POUND] = ACTIONS(247), + [693] = { + [sym_comment] = STATE(693), + [anon_sym_export] = ACTIONS(1062), + [anon_sym_alias] = ACTIONS(1062), + [anon_sym_let] = ACTIONS(1062), + [anon_sym_let_DASHenv] = ACTIONS(1062), + [anon_sym_mut] = ACTIONS(1062), + [anon_sym_const] = ACTIONS(1062), + [aux_sym_cmd_identifier_token1] = ACTIONS(1062), + [aux_sym_cmd_identifier_token2] = ACTIONS(1062), + [aux_sym_cmd_identifier_token3] = ACTIONS(1062), + [aux_sym_cmd_identifier_token4] = ACTIONS(1062), + [aux_sym_cmd_identifier_token5] = ACTIONS(1062), + [aux_sym_cmd_identifier_token6] = ACTIONS(1062), + [aux_sym_cmd_identifier_token7] = ACTIONS(1062), + [aux_sym_cmd_identifier_token8] = ACTIONS(1062), + [aux_sym_cmd_identifier_token9] = ACTIONS(1062), + [aux_sym_cmd_identifier_token10] = ACTIONS(1062), + [aux_sym_cmd_identifier_token11] = ACTIONS(1062), + [aux_sym_cmd_identifier_token12] = ACTIONS(1062), + [aux_sym_cmd_identifier_token13] = ACTIONS(1062), + [aux_sym_cmd_identifier_token14] = ACTIONS(1062), + [aux_sym_cmd_identifier_token15] = ACTIONS(1062), + [aux_sym_cmd_identifier_token16] = ACTIONS(1062), + [aux_sym_cmd_identifier_token17] = ACTIONS(1062), + [aux_sym_cmd_identifier_token18] = ACTIONS(1062), + [aux_sym_cmd_identifier_token19] = ACTIONS(1062), + [aux_sym_cmd_identifier_token20] = ACTIONS(1062), + [aux_sym_cmd_identifier_token21] = ACTIONS(1062), + [aux_sym_cmd_identifier_token22] = ACTIONS(1062), + [aux_sym_cmd_identifier_token23] = ACTIONS(1062), + [aux_sym_cmd_identifier_token24] = ACTIONS(1062), + [aux_sym_cmd_identifier_token25] = ACTIONS(1062), + [aux_sym_cmd_identifier_token26] = ACTIONS(1062), + [aux_sym_cmd_identifier_token27] = ACTIONS(1062), + [aux_sym_cmd_identifier_token28] = ACTIONS(1062), + [aux_sym_cmd_identifier_token29] = ACTIONS(1062), + [aux_sym_cmd_identifier_token30] = ACTIONS(1062), + [aux_sym_cmd_identifier_token31] = ACTIONS(1062), + [aux_sym_cmd_identifier_token32] = ACTIONS(1062), + [aux_sym_cmd_identifier_token33] = ACTIONS(1062), + [aux_sym_cmd_identifier_token34] = ACTIONS(1062), + [aux_sym_cmd_identifier_token35] = ACTIONS(1062), + [aux_sym_cmd_identifier_token36] = ACTIONS(1062), + [anon_sym_true] = ACTIONS(1064), + [anon_sym_false] = ACTIONS(1064), + [anon_sym_null] = ACTIONS(1064), + [aux_sym_cmd_identifier_token38] = ACTIONS(1062), + [aux_sym_cmd_identifier_token39] = ACTIONS(1064), + [aux_sym_cmd_identifier_token40] = ACTIONS(1064), + [anon_sym_def] = ACTIONS(1062), + [anon_sym_export_DASHenv] = ACTIONS(1062), + [anon_sym_extern] = ACTIONS(1062), + [anon_sym_module] = ACTIONS(1062), + [anon_sym_use] = ACTIONS(1062), + [anon_sym_LPAREN] = ACTIONS(1064), + [anon_sym_DOLLAR] = ACTIONS(1064), + [anon_sym_error] = ACTIONS(1062), + [anon_sym_list] = ACTIONS(1062), + [anon_sym_DASH] = ACTIONS(1062), + [anon_sym_break] = ACTIONS(1062), + [anon_sym_continue] = ACTIONS(1062), + [anon_sym_for] = ACTIONS(1062), + [anon_sym_in] = ACTIONS(1062), + [anon_sym_loop] = ACTIONS(1062), + [anon_sym_make] = ACTIONS(1062), + [anon_sym_while] = ACTIONS(1062), + [anon_sym_do] = ACTIONS(1062), + [anon_sym_if] = ACTIONS(1062), + [anon_sym_else] = ACTIONS(1062), + [anon_sym_match] = ACTIONS(1062), + [anon_sym_RBRACE] = ACTIONS(1064), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_catch] = ACTIONS(1062), + [anon_sym_return] = ACTIONS(1062), + [anon_sym_source] = ACTIONS(1062), + [anon_sym_source_DASHenv] = ACTIONS(1062), + [anon_sym_register] = ACTIONS(1062), + [anon_sym_hide] = ACTIONS(1062), + [anon_sym_hide_DASHenv] = ACTIONS(1062), + [anon_sym_overlay] = ACTIONS(1062), + [anon_sym_new] = ACTIONS(1062), + [anon_sym_as] = ACTIONS(1062), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1064), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1064), + [aux_sym__val_number_decimal_token1] = ACTIONS(1062), + [aux_sym__val_number_decimal_token2] = ACTIONS(1064), + [aux_sym__val_number_decimal_token3] = ACTIONS(1064), + [aux_sym__val_number_decimal_token4] = ACTIONS(1064), + [aux_sym__val_number_token1] = ACTIONS(1064), + [aux_sym__val_number_token2] = ACTIONS(1064), + [aux_sym__val_number_token3] = ACTIONS(1064), + [anon_sym_DQUOTE] = ACTIONS(1064), + [sym__str_single_quotes] = ACTIONS(1064), + [sym__str_back_ticks] = ACTIONS(1064), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1064), + [anon_sym_PLUS] = ACTIONS(1062), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1064), }, - [760] = { - [sym_expr_parenthesized] = STATE(5961), - [sym__spread_parenthesized] = STATE(7348), - [sym_val_range] = STATE(7355), - [sym__val_range] = STATE(7469), - [sym__val_range_with_end] = STATE(7194), - [sym__value] = STATE(7355), - [sym_val_nothing] = STATE(521), - [sym_val_bool] = STATE(6215), - [sym__spread_variable] = STATE(7195), - [sym_val_variable] = STATE(5719), - [sym_val_number] = STATE(521), - [sym__val_number_decimal] = STATE(5264), - [sym__val_number] = STATE(2915), - [sym_val_duration] = STATE(521), - [sym_val_filesize] = STATE(521), - [sym_val_binary] = STATE(521), - [sym_val_string] = STATE(521), - [sym__str_double_quotes] = STATE(5413), - [sym_val_interpolated] = STATE(521), - [sym__inter_single_quotes] = STATE(495), - [sym__inter_double_quotes] = STATE(556), - [sym_val_list] = STATE(7043), - [sym__spread_list] = STATE(7348), - [sym_val_entry] = STATE(6710), - [sym_val_record] = STATE(521), - [sym_val_table] = STATE(521), - [sym_val_closure] = STATE(521), - [sym__unquoted_in_list] = STATE(6465), - [sym__unquoted_in_list_with_expr] = STATE(7355), - [sym__unquoted_anonymous_prefix] = STATE(6960), - [sym_comment] = STATE(760), - [aux_sym_shebang_repeat1] = STATE(2691), - [aux_sym_list_body_repeat1] = STATE(774), - [anon_sym_true] = ACTIONS(2985), - [anon_sym_false] = ACTIONS(2985), - [anon_sym_null] = ACTIONS(2987), - [aux_sym_cmd_identifier_token38] = ACTIONS(2989), - [aux_sym_cmd_identifier_token39] = ACTIONS(2989), - [aux_sym_cmd_identifier_token40] = ACTIONS(2989), - [sym__newline] = ACTIONS(3070), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_DOLLAR] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_DOT_DOT] = ACTIONS(3001), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), - [anon_sym_DOT_DOT_LT] = ACTIONS(3003), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(3005), - [aux_sym__val_number_decimal_token2] = ACTIONS(3007), - [aux_sym__val_number_decimal_token3] = ACTIONS(3009), + [694] = { + [sym_comment] = STATE(694), + [anon_sym_export] = ACTIONS(1038), + [anon_sym_alias] = ACTIONS(1038), + [anon_sym_let] = ACTIONS(1038), + [anon_sym_let_DASHenv] = ACTIONS(1038), + [anon_sym_mut] = ACTIONS(1038), + [anon_sym_const] = ACTIONS(1038), + [aux_sym_cmd_identifier_token1] = ACTIONS(1038), + [aux_sym_cmd_identifier_token2] = ACTIONS(1038), + [aux_sym_cmd_identifier_token3] = ACTIONS(1038), + [aux_sym_cmd_identifier_token4] = ACTIONS(1038), + [aux_sym_cmd_identifier_token5] = ACTIONS(1038), + [aux_sym_cmd_identifier_token6] = ACTIONS(1038), + [aux_sym_cmd_identifier_token7] = ACTIONS(1038), + [aux_sym_cmd_identifier_token8] = ACTIONS(1038), + [aux_sym_cmd_identifier_token9] = ACTIONS(1038), + [aux_sym_cmd_identifier_token10] = ACTIONS(1038), + [aux_sym_cmd_identifier_token11] = ACTIONS(1038), + [aux_sym_cmd_identifier_token12] = ACTIONS(1038), + [aux_sym_cmd_identifier_token13] = ACTIONS(1038), + [aux_sym_cmd_identifier_token14] = ACTIONS(1038), + [aux_sym_cmd_identifier_token15] = ACTIONS(1038), + [aux_sym_cmd_identifier_token16] = ACTIONS(1038), + [aux_sym_cmd_identifier_token17] = ACTIONS(1038), + [aux_sym_cmd_identifier_token18] = ACTIONS(1038), + [aux_sym_cmd_identifier_token19] = ACTIONS(1038), + [aux_sym_cmd_identifier_token20] = ACTIONS(1038), + [aux_sym_cmd_identifier_token21] = ACTIONS(1038), + [aux_sym_cmd_identifier_token22] = ACTIONS(1038), + [aux_sym_cmd_identifier_token23] = ACTIONS(1038), + [aux_sym_cmd_identifier_token24] = ACTIONS(1038), + [aux_sym_cmd_identifier_token25] = ACTIONS(1038), + [aux_sym_cmd_identifier_token26] = ACTIONS(1038), + [aux_sym_cmd_identifier_token27] = ACTIONS(1038), + [aux_sym_cmd_identifier_token28] = ACTIONS(1038), + [aux_sym_cmd_identifier_token29] = ACTIONS(1038), + [aux_sym_cmd_identifier_token30] = ACTIONS(1038), + [aux_sym_cmd_identifier_token31] = ACTIONS(1038), + [aux_sym_cmd_identifier_token32] = ACTIONS(1038), + [aux_sym_cmd_identifier_token33] = ACTIONS(1038), + [aux_sym_cmd_identifier_token34] = ACTIONS(1038), + [aux_sym_cmd_identifier_token35] = ACTIONS(1038), + [aux_sym_cmd_identifier_token36] = ACTIONS(1038), + [anon_sym_true] = ACTIONS(1040), + [anon_sym_false] = ACTIONS(1040), + [anon_sym_null] = ACTIONS(1040), + [aux_sym_cmd_identifier_token38] = ACTIONS(1038), + [aux_sym_cmd_identifier_token39] = ACTIONS(1040), + [aux_sym_cmd_identifier_token40] = ACTIONS(1040), + [anon_sym_def] = ACTIONS(1038), + [anon_sym_export_DASHenv] = ACTIONS(1038), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_module] = ACTIONS(1038), + [anon_sym_use] = ACTIONS(1038), + [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_DOLLAR] = ACTIONS(1040), + [anon_sym_error] = ACTIONS(1038), + [anon_sym_list] = ACTIONS(1038), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_break] = ACTIONS(1038), + [anon_sym_continue] = ACTIONS(1038), + [anon_sym_for] = ACTIONS(1038), + [anon_sym_in] = ACTIONS(1038), + [anon_sym_loop] = ACTIONS(1038), + [anon_sym_make] = ACTIONS(1038), + [anon_sym_while] = ACTIONS(1038), + [anon_sym_do] = ACTIONS(1038), + [anon_sym_if] = ACTIONS(1038), + [anon_sym_else] = ACTIONS(1038), + [anon_sym_match] = ACTIONS(1038), + [anon_sym_RBRACE] = ACTIONS(1040), + [anon_sym_try] = ACTIONS(1038), + [anon_sym_catch] = ACTIONS(1038), + [anon_sym_return] = ACTIONS(1038), + [anon_sym_source] = ACTIONS(1038), + [anon_sym_source_DASHenv] = ACTIONS(1038), + [anon_sym_register] = ACTIONS(1038), + [anon_sym_hide] = ACTIONS(1038), + [anon_sym_hide_DASHenv] = ACTIONS(1038), + [anon_sym_overlay] = ACTIONS(1038), + [anon_sym_new] = ACTIONS(1038), + [anon_sym_as] = ACTIONS(1038), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1040), + [aux_sym__val_number_decimal_token1] = ACTIONS(1038), + [aux_sym__val_number_decimal_token2] = ACTIONS(1040), + [aux_sym__val_number_decimal_token3] = ACTIONS(1040), + [aux_sym__val_number_decimal_token4] = ACTIONS(1040), + [aux_sym__val_number_token1] = ACTIONS(1040), + [aux_sym__val_number_token2] = ACTIONS(1040), + [aux_sym__val_number_token3] = ACTIONS(1040), + [anon_sym_DQUOTE] = ACTIONS(1040), + [sym__str_single_quotes] = ACTIONS(1040), + [sym__str_back_ticks] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1040), + [anon_sym_PLUS] = ACTIONS(1038), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1040), + }, + [695] = { + [sym_comment] = STATE(695), + [anon_sym_export] = ACTIONS(1054), + [anon_sym_alias] = ACTIONS(1054), + [anon_sym_let] = ACTIONS(1054), + [anon_sym_let_DASHenv] = ACTIONS(1054), + [anon_sym_mut] = ACTIONS(1054), + [anon_sym_const] = ACTIONS(1054), + [aux_sym_cmd_identifier_token1] = ACTIONS(1054), + [aux_sym_cmd_identifier_token2] = ACTIONS(1054), + [aux_sym_cmd_identifier_token3] = ACTIONS(1054), + [aux_sym_cmd_identifier_token4] = ACTIONS(1054), + [aux_sym_cmd_identifier_token5] = ACTIONS(1054), + [aux_sym_cmd_identifier_token6] = ACTIONS(1054), + [aux_sym_cmd_identifier_token7] = ACTIONS(1054), + [aux_sym_cmd_identifier_token8] = ACTIONS(1054), + [aux_sym_cmd_identifier_token9] = ACTIONS(1054), + [aux_sym_cmd_identifier_token10] = ACTIONS(1054), + [aux_sym_cmd_identifier_token11] = ACTIONS(1054), + [aux_sym_cmd_identifier_token12] = ACTIONS(1054), + [aux_sym_cmd_identifier_token13] = ACTIONS(1054), + [aux_sym_cmd_identifier_token14] = ACTIONS(1054), + [aux_sym_cmd_identifier_token15] = ACTIONS(1054), + [aux_sym_cmd_identifier_token16] = ACTIONS(1054), + [aux_sym_cmd_identifier_token17] = ACTIONS(1054), + [aux_sym_cmd_identifier_token18] = ACTIONS(1054), + [aux_sym_cmd_identifier_token19] = ACTIONS(1054), + [aux_sym_cmd_identifier_token20] = ACTIONS(1054), + [aux_sym_cmd_identifier_token21] = ACTIONS(1054), + [aux_sym_cmd_identifier_token22] = ACTIONS(1054), + [aux_sym_cmd_identifier_token23] = ACTIONS(1054), + [aux_sym_cmd_identifier_token24] = ACTIONS(1054), + [aux_sym_cmd_identifier_token25] = ACTIONS(1054), + [aux_sym_cmd_identifier_token26] = ACTIONS(1054), + [aux_sym_cmd_identifier_token27] = ACTIONS(1054), + [aux_sym_cmd_identifier_token28] = ACTIONS(1054), + [aux_sym_cmd_identifier_token29] = ACTIONS(1054), + [aux_sym_cmd_identifier_token30] = ACTIONS(1054), + [aux_sym_cmd_identifier_token31] = ACTIONS(1054), + [aux_sym_cmd_identifier_token32] = ACTIONS(1054), + [aux_sym_cmd_identifier_token33] = ACTIONS(1054), + [aux_sym_cmd_identifier_token34] = ACTIONS(1054), + [aux_sym_cmd_identifier_token35] = ACTIONS(1054), + [aux_sym_cmd_identifier_token36] = ACTIONS(1054), + [anon_sym_true] = ACTIONS(1056), + [anon_sym_false] = ACTIONS(1056), + [anon_sym_null] = ACTIONS(1056), + [aux_sym_cmd_identifier_token38] = ACTIONS(1054), + [aux_sym_cmd_identifier_token39] = ACTIONS(1056), + [aux_sym_cmd_identifier_token40] = ACTIONS(1056), + [anon_sym_def] = ACTIONS(1054), + [anon_sym_export_DASHenv] = ACTIONS(1054), + [anon_sym_extern] = ACTIONS(1054), + [anon_sym_module] = ACTIONS(1054), + [anon_sym_use] = ACTIONS(1054), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_DOLLAR] = ACTIONS(1056), + [anon_sym_error] = ACTIONS(1054), + [anon_sym_list] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_break] = ACTIONS(1054), + [anon_sym_continue] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1054), + [anon_sym_in] = ACTIONS(1054), + [anon_sym_loop] = ACTIONS(1054), + [anon_sym_make] = ACTIONS(1054), + [anon_sym_while] = ACTIONS(1054), + [anon_sym_do] = ACTIONS(1054), + [anon_sym_if] = ACTIONS(1054), + [anon_sym_else] = ACTIONS(1054), + [anon_sym_match] = ACTIONS(1054), + [anon_sym_RBRACE] = ACTIONS(1056), + [anon_sym_try] = ACTIONS(1054), + [anon_sym_catch] = ACTIONS(1054), + [anon_sym_return] = ACTIONS(1054), + [anon_sym_source] = ACTIONS(1054), + [anon_sym_source_DASHenv] = ACTIONS(1054), + [anon_sym_register] = ACTIONS(1054), + [anon_sym_hide] = ACTIONS(1054), + [anon_sym_hide_DASHenv] = ACTIONS(1054), + [anon_sym_overlay] = ACTIONS(1054), + [anon_sym_new] = ACTIONS(1054), + [anon_sym_as] = ACTIONS(1054), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1056), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1056), + [aux_sym__val_number_decimal_token1] = ACTIONS(1054), + [aux_sym__val_number_decimal_token2] = ACTIONS(1056), + [aux_sym__val_number_decimal_token3] = ACTIONS(1056), + [aux_sym__val_number_decimal_token4] = ACTIONS(1056), + [aux_sym__val_number_token1] = ACTIONS(1056), + [aux_sym__val_number_token2] = ACTIONS(1056), + [aux_sym__val_number_token3] = ACTIONS(1056), + [anon_sym_DQUOTE] = ACTIONS(1056), + [sym__str_single_quotes] = ACTIONS(1056), + [sym__str_back_ticks] = ACTIONS(1056), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1056), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1056), + }, + [696] = { + [sym_comment] = STATE(696), + [anon_sym_export] = ACTIONS(2573), + [anon_sym_alias] = ACTIONS(2573), + [anon_sym_let] = ACTIONS(2573), + [anon_sym_let_DASHenv] = ACTIONS(2573), + [anon_sym_mut] = ACTIONS(2573), + [anon_sym_const] = ACTIONS(2573), + [aux_sym_cmd_identifier_token1] = ACTIONS(2573), + [aux_sym_cmd_identifier_token2] = ACTIONS(2573), + [aux_sym_cmd_identifier_token3] = ACTIONS(2573), + [aux_sym_cmd_identifier_token4] = ACTIONS(2573), + [aux_sym_cmd_identifier_token5] = ACTIONS(2573), + [aux_sym_cmd_identifier_token6] = ACTIONS(2573), + [aux_sym_cmd_identifier_token7] = ACTIONS(2573), + [aux_sym_cmd_identifier_token8] = ACTIONS(2573), + [aux_sym_cmd_identifier_token9] = ACTIONS(2573), + [aux_sym_cmd_identifier_token10] = ACTIONS(2573), + [aux_sym_cmd_identifier_token11] = ACTIONS(2573), + [aux_sym_cmd_identifier_token12] = ACTIONS(2573), + [aux_sym_cmd_identifier_token13] = ACTIONS(2573), + [aux_sym_cmd_identifier_token14] = ACTIONS(2573), + [aux_sym_cmd_identifier_token15] = ACTIONS(2573), + [aux_sym_cmd_identifier_token16] = ACTIONS(2573), + [aux_sym_cmd_identifier_token17] = ACTIONS(2573), + [aux_sym_cmd_identifier_token18] = ACTIONS(2573), + [aux_sym_cmd_identifier_token19] = ACTIONS(2573), + [aux_sym_cmd_identifier_token20] = ACTIONS(2573), + [aux_sym_cmd_identifier_token21] = ACTIONS(2573), + [aux_sym_cmd_identifier_token22] = ACTIONS(2573), + [aux_sym_cmd_identifier_token23] = ACTIONS(2573), + [aux_sym_cmd_identifier_token24] = ACTIONS(2573), + [aux_sym_cmd_identifier_token25] = ACTIONS(2573), + [aux_sym_cmd_identifier_token26] = ACTIONS(2573), + [aux_sym_cmd_identifier_token27] = ACTIONS(2573), + [aux_sym_cmd_identifier_token28] = ACTIONS(2573), + [aux_sym_cmd_identifier_token29] = ACTIONS(2573), + [aux_sym_cmd_identifier_token30] = ACTIONS(2573), + [aux_sym_cmd_identifier_token31] = ACTIONS(2573), + [aux_sym_cmd_identifier_token32] = ACTIONS(2573), + [aux_sym_cmd_identifier_token33] = ACTIONS(2573), + [aux_sym_cmd_identifier_token34] = ACTIONS(2573), + [aux_sym_cmd_identifier_token35] = ACTIONS(2573), + [aux_sym_cmd_identifier_token36] = ACTIONS(2573), + [anon_sym_true] = ACTIONS(2575), + [anon_sym_false] = ACTIONS(2575), + [anon_sym_null] = ACTIONS(2575), + [aux_sym_cmd_identifier_token38] = ACTIONS(2573), + [aux_sym_cmd_identifier_token39] = ACTIONS(2575), + [aux_sym_cmd_identifier_token40] = ACTIONS(2575), + [anon_sym_def] = ACTIONS(2573), + [anon_sym_export_DASHenv] = ACTIONS(2573), + [anon_sym_extern] = ACTIONS(2573), + [anon_sym_module] = ACTIONS(2573), + [anon_sym_use] = ACTIONS(2573), + [anon_sym_LPAREN] = ACTIONS(2575), + [anon_sym_DOLLAR] = ACTIONS(2575), + [anon_sym_error] = ACTIONS(2573), + [anon_sym_list] = ACTIONS(2573), + [anon_sym_DASH] = ACTIONS(2573), + [anon_sym_break] = ACTIONS(2573), + [anon_sym_continue] = ACTIONS(2573), + [anon_sym_for] = ACTIONS(2573), + [anon_sym_in] = ACTIONS(2573), + [anon_sym_loop] = ACTIONS(2573), + [anon_sym_make] = ACTIONS(2573), + [anon_sym_while] = ACTIONS(2573), + [anon_sym_do] = ACTIONS(2573), + [anon_sym_if] = ACTIONS(2573), + [anon_sym_else] = ACTIONS(2573), + [anon_sym_match] = ACTIONS(2573), + [anon_sym_RBRACE] = ACTIONS(2575), + [anon_sym_try] = ACTIONS(2573), + [anon_sym_catch] = ACTIONS(2573), + [anon_sym_return] = ACTIONS(2573), + [anon_sym_source] = ACTIONS(2573), + [anon_sym_source_DASHenv] = ACTIONS(2573), + [anon_sym_register] = ACTIONS(2573), + [anon_sym_hide] = ACTIONS(2573), + [anon_sym_hide_DASHenv] = ACTIONS(2573), + [anon_sym_overlay] = ACTIONS(2573), + [anon_sym_new] = ACTIONS(2573), + [anon_sym_as] = ACTIONS(2573), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2575), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2575), + [aux_sym__val_number_decimal_token1] = ACTIONS(2573), + [aux_sym__val_number_decimal_token2] = ACTIONS(2575), + [aux_sym__val_number_decimal_token3] = ACTIONS(2575), + [aux_sym__val_number_decimal_token4] = ACTIONS(2575), + [aux_sym__val_number_token1] = ACTIONS(2575), + [aux_sym__val_number_token2] = ACTIONS(2575), + [aux_sym__val_number_token3] = ACTIONS(2575), + [anon_sym_DQUOTE] = ACTIONS(2575), + [sym__str_single_quotes] = ACTIONS(2575), + [sym__str_back_ticks] = ACTIONS(2575), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2575), + [anon_sym_PLUS] = ACTIONS(2573), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2575), + }, + [697] = { + [sym_comment] = STATE(697), + [anon_sym_export] = ACTIONS(2458), + [anon_sym_alias] = ACTIONS(2458), + [anon_sym_let] = ACTIONS(2458), + [anon_sym_let_DASHenv] = ACTIONS(2458), + [anon_sym_mut] = ACTIONS(2458), + [anon_sym_const] = ACTIONS(2458), + [aux_sym_cmd_identifier_token1] = ACTIONS(2458), + [aux_sym_cmd_identifier_token2] = ACTIONS(2458), + [aux_sym_cmd_identifier_token3] = ACTIONS(2458), + [aux_sym_cmd_identifier_token4] = ACTIONS(2458), + [aux_sym_cmd_identifier_token5] = ACTIONS(2458), + [aux_sym_cmd_identifier_token6] = ACTIONS(2458), + [aux_sym_cmd_identifier_token7] = ACTIONS(2458), + [aux_sym_cmd_identifier_token8] = ACTIONS(2458), + [aux_sym_cmd_identifier_token9] = ACTIONS(2458), + [aux_sym_cmd_identifier_token10] = ACTIONS(2458), + [aux_sym_cmd_identifier_token11] = ACTIONS(2458), + [aux_sym_cmd_identifier_token12] = ACTIONS(2458), + [aux_sym_cmd_identifier_token13] = ACTIONS(2458), + [aux_sym_cmd_identifier_token14] = ACTIONS(2458), + [aux_sym_cmd_identifier_token15] = ACTIONS(2458), + [aux_sym_cmd_identifier_token16] = ACTIONS(2458), + [aux_sym_cmd_identifier_token17] = ACTIONS(2458), + [aux_sym_cmd_identifier_token18] = ACTIONS(2458), + [aux_sym_cmd_identifier_token19] = ACTIONS(2458), + [aux_sym_cmd_identifier_token20] = ACTIONS(2458), + [aux_sym_cmd_identifier_token21] = ACTIONS(2458), + [aux_sym_cmd_identifier_token22] = ACTIONS(2458), + [aux_sym_cmd_identifier_token23] = ACTIONS(2458), + [aux_sym_cmd_identifier_token24] = ACTIONS(2458), + [aux_sym_cmd_identifier_token25] = ACTIONS(2458), + [aux_sym_cmd_identifier_token26] = ACTIONS(2458), + [aux_sym_cmd_identifier_token27] = ACTIONS(2458), + [aux_sym_cmd_identifier_token28] = ACTIONS(2458), + [aux_sym_cmd_identifier_token29] = ACTIONS(2458), + [aux_sym_cmd_identifier_token30] = ACTIONS(2458), + [aux_sym_cmd_identifier_token31] = ACTIONS(2458), + [aux_sym_cmd_identifier_token32] = ACTIONS(2458), + [aux_sym_cmd_identifier_token33] = ACTIONS(2458), + [aux_sym_cmd_identifier_token34] = ACTIONS(2458), + [aux_sym_cmd_identifier_token35] = ACTIONS(2458), + [aux_sym_cmd_identifier_token36] = ACTIONS(2458), + [anon_sym_true] = ACTIONS(2460), + [anon_sym_false] = ACTIONS(2460), + [anon_sym_null] = ACTIONS(2460), + [aux_sym_cmd_identifier_token38] = ACTIONS(2458), + [aux_sym_cmd_identifier_token39] = ACTIONS(2460), + [aux_sym_cmd_identifier_token40] = ACTIONS(2460), + [anon_sym_def] = ACTIONS(2458), + [anon_sym_export_DASHenv] = ACTIONS(2458), + [anon_sym_extern] = ACTIONS(2458), + [anon_sym_module] = ACTIONS(2458), + [anon_sym_use] = ACTIONS(2458), + [anon_sym_LPAREN] = ACTIONS(2460), + [anon_sym_DOLLAR] = ACTIONS(2460), + [anon_sym_error] = ACTIONS(2458), + [anon_sym_list] = ACTIONS(2458), + [anon_sym_DASH] = ACTIONS(2458), + [anon_sym_break] = ACTIONS(2458), + [anon_sym_continue] = ACTIONS(2458), + [anon_sym_for] = ACTIONS(2458), + [anon_sym_in] = ACTIONS(2458), + [anon_sym_loop] = ACTIONS(2458), + [anon_sym_make] = ACTIONS(2458), + [anon_sym_while] = ACTIONS(2458), + [anon_sym_do] = ACTIONS(2458), + [anon_sym_if] = ACTIONS(2458), + [anon_sym_else] = ACTIONS(2458), + [anon_sym_match] = ACTIONS(2458), + [anon_sym_RBRACE] = ACTIONS(2460), + [anon_sym_try] = ACTIONS(2458), + [anon_sym_catch] = ACTIONS(2458), + [anon_sym_return] = ACTIONS(2458), + [anon_sym_source] = ACTIONS(2458), + [anon_sym_source_DASHenv] = ACTIONS(2458), + [anon_sym_register] = ACTIONS(2458), + [anon_sym_hide] = ACTIONS(2458), + [anon_sym_hide_DASHenv] = ACTIONS(2458), + [anon_sym_overlay] = ACTIONS(2458), + [anon_sym_new] = ACTIONS(2458), + [anon_sym_as] = ACTIONS(2458), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2460), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2460), + [aux_sym__val_number_decimal_token1] = ACTIONS(2458), + [aux_sym__val_number_decimal_token2] = ACTIONS(2460), + [aux_sym__val_number_decimal_token3] = ACTIONS(2460), + [aux_sym__val_number_decimal_token4] = ACTIONS(2460), + [aux_sym__val_number_token1] = ACTIONS(2460), + [aux_sym__val_number_token2] = ACTIONS(2460), + [aux_sym__val_number_token3] = ACTIONS(2460), + [anon_sym_DQUOTE] = ACTIONS(2460), + [sym__str_single_quotes] = ACTIONS(2460), + [sym__str_back_ticks] = ACTIONS(2460), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2460), + [anon_sym_PLUS] = ACTIONS(2458), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2460), + }, + [698] = { + [sym_comment] = STATE(698), + [anon_sym_export] = ACTIONS(2462), + [anon_sym_alias] = ACTIONS(2462), + [anon_sym_let] = ACTIONS(2462), + [anon_sym_let_DASHenv] = ACTIONS(2462), + [anon_sym_mut] = ACTIONS(2462), + [anon_sym_const] = ACTIONS(2462), + [aux_sym_cmd_identifier_token1] = ACTIONS(2462), + [aux_sym_cmd_identifier_token2] = ACTIONS(2462), + [aux_sym_cmd_identifier_token3] = ACTIONS(2462), + [aux_sym_cmd_identifier_token4] = ACTIONS(2462), + [aux_sym_cmd_identifier_token5] = ACTIONS(2462), + [aux_sym_cmd_identifier_token6] = ACTIONS(2462), + [aux_sym_cmd_identifier_token7] = ACTIONS(2462), + [aux_sym_cmd_identifier_token8] = ACTIONS(2462), + [aux_sym_cmd_identifier_token9] = ACTIONS(2462), + [aux_sym_cmd_identifier_token10] = ACTIONS(2462), + [aux_sym_cmd_identifier_token11] = ACTIONS(2462), + [aux_sym_cmd_identifier_token12] = ACTIONS(2462), + [aux_sym_cmd_identifier_token13] = ACTIONS(2462), + [aux_sym_cmd_identifier_token14] = ACTIONS(2462), + [aux_sym_cmd_identifier_token15] = ACTIONS(2462), + [aux_sym_cmd_identifier_token16] = ACTIONS(2462), + [aux_sym_cmd_identifier_token17] = ACTIONS(2462), + [aux_sym_cmd_identifier_token18] = ACTIONS(2462), + [aux_sym_cmd_identifier_token19] = ACTIONS(2462), + [aux_sym_cmd_identifier_token20] = ACTIONS(2462), + [aux_sym_cmd_identifier_token21] = ACTIONS(2462), + [aux_sym_cmd_identifier_token22] = ACTIONS(2462), + [aux_sym_cmd_identifier_token23] = ACTIONS(2462), + [aux_sym_cmd_identifier_token24] = ACTIONS(2462), + [aux_sym_cmd_identifier_token25] = ACTIONS(2462), + [aux_sym_cmd_identifier_token26] = ACTIONS(2462), + [aux_sym_cmd_identifier_token27] = ACTIONS(2462), + [aux_sym_cmd_identifier_token28] = ACTIONS(2462), + [aux_sym_cmd_identifier_token29] = ACTIONS(2462), + [aux_sym_cmd_identifier_token30] = ACTIONS(2462), + [aux_sym_cmd_identifier_token31] = ACTIONS(2462), + [aux_sym_cmd_identifier_token32] = ACTIONS(2462), + [aux_sym_cmd_identifier_token33] = ACTIONS(2462), + [aux_sym_cmd_identifier_token34] = ACTIONS(2462), + [aux_sym_cmd_identifier_token35] = ACTIONS(2462), + [aux_sym_cmd_identifier_token36] = ACTIONS(2462), + [anon_sym_true] = ACTIONS(2464), + [anon_sym_false] = ACTIONS(2464), + [anon_sym_null] = ACTIONS(2464), + [aux_sym_cmd_identifier_token38] = ACTIONS(2462), + [aux_sym_cmd_identifier_token39] = ACTIONS(2464), + [aux_sym_cmd_identifier_token40] = ACTIONS(2464), + [anon_sym_def] = ACTIONS(2462), + [anon_sym_export_DASHenv] = ACTIONS(2462), + [anon_sym_extern] = ACTIONS(2462), + [anon_sym_module] = ACTIONS(2462), + [anon_sym_use] = ACTIONS(2462), + [anon_sym_LPAREN] = ACTIONS(2464), + [anon_sym_DOLLAR] = ACTIONS(2464), + [anon_sym_error] = ACTIONS(2462), + [anon_sym_list] = ACTIONS(2462), + [anon_sym_DASH] = ACTIONS(2462), + [anon_sym_break] = ACTIONS(2462), + [anon_sym_continue] = ACTIONS(2462), + [anon_sym_for] = ACTIONS(2462), + [anon_sym_in] = ACTIONS(2462), + [anon_sym_loop] = ACTIONS(2462), + [anon_sym_make] = ACTIONS(2462), + [anon_sym_while] = ACTIONS(2462), + [anon_sym_do] = ACTIONS(2462), + [anon_sym_if] = ACTIONS(2462), + [anon_sym_else] = ACTIONS(2462), + [anon_sym_match] = ACTIONS(2462), + [anon_sym_RBRACE] = ACTIONS(2464), + [anon_sym_try] = ACTIONS(2462), + [anon_sym_catch] = ACTIONS(2462), + [anon_sym_return] = ACTIONS(2462), + [anon_sym_source] = ACTIONS(2462), + [anon_sym_source_DASHenv] = ACTIONS(2462), + [anon_sym_register] = ACTIONS(2462), + [anon_sym_hide] = ACTIONS(2462), + [anon_sym_hide_DASHenv] = ACTIONS(2462), + [anon_sym_overlay] = ACTIONS(2462), + [anon_sym_new] = ACTIONS(2462), + [anon_sym_as] = ACTIONS(2462), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2464), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2464), + [aux_sym__val_number_decimal_token1] = ACTIONS(2462), + [aux_sym__val_number_decimal_token2] = ACTIONS(2464), + [aux_sym__val_number_decimal_token3] = ACTIONS(2464), + [aux_sym__val_number_decimal_token4] = ACTIONS(2464), + [aux_sym__val_number_token1] = ACTIONS(2464), + [aux_sym__val_number_token2] = ACTIONS(2464), + [aux_sym__val_number_token3] = ACTIONS(2464), + [anon_sym_DQUOTE] = ACTIONS(2464), + [sym__str_single_quotes] = ACTIONS(2464), + [sym__str_back_ticks] = ACTIONS(2464), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2464), + [anon_sym_PLUS] = ACTIONS(2462), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2464), + }, + [699] = { + [sym_comment] = STATE(699), + [anon_sym_export] = ACTIONS(1715), + [anon_sym_alias] = ACTIONS(1715), + [anon_sym_let] = ACTIONS(1715), + [anon_sym_let_DASHenv] = ACTIONS(1715), + [anon_sym_mut] = ACTIONS(1715), + [anon_sym_const] = ACTIONS(1715), + [aux_sym_cmd_identifier_token1] = ACTIONS(1715), + [aux_sym_cmd_identifier_token2] = ACTIONS(1715), + [aux_sym_cmd_identifier_token3] = ACTIONS(1715), + [aux_sym_cmd_identifier_token4] = ACTIONS(1715), + [aux_sym_cmd_identifier_token5] = ACTIONS(1715), + [aux_sym_cmd_identifier_token6] = ACTIONS(1715), + [aux_sym_cmd_identifier_token7] = ACTIONS(1715), + [aux_sym_cmd_identifier_token8] = ACTIONS(1715), + [aux_sym_cmd_identifier_token9] = ACTIONS(1715), + [aux_sym_cmd_identifier_token10] = ACTIONS(1715), + [aux_sym_cmd_identifier_token11] = ACTIONS(1715), + [aux_sym_cmd_identifier_token12] = ACTIONS(1715), + [aux_sym_cmd_identifier_token13] = ACTIONS(1715), + [aux_sym_cmd_identifier_token14] = ACTIONS(1715), + [aux_sym_cmd_identifier_token15] = ACTIONS(1715), + [aux_sym_cmd_identifier_token16] = ACTIONS(1715), + [aux_sym_cmd_identifier_token17] = ACTIONS(1715), + [aux_sym_cmd_identifier_token18] = ACTIONS(1715), + [aux_sym_cmd_identifier_token19] = ACTIONS(1715), + [aux_sym_cmd_identifier_token20] = ACTIONS(1715), + [aux_sym_cmd_identifier_token21] = ACTIONS(1715), + [aux_sym_cmd_identifier_token22] = ACTIONS(1715), + [aux_sym_cmd_identifier_token23] = ACTIONS(1715), + [aux_sym_cmd_identifier_token24] = ACTIONS(1715), + [aux_sym_cmd_identifier_token25] = ACTIONS(1715), + [aux_sym_cmd_identifier_token26] = ACTIONS(1715), + [aux_sym_cmd_identifier_token27] = ACTIONS(1715), + [aux_sym_cmd_identifier_token28] = ACTIONS(1715), + [aux_sym_cmd_identifier_token29] = ACTIONS(1715), + [aux_sym_cmd_identifier_token30] = ACTIONS(1715), + [aux_sym_cmd_identifier_token31] = ACTIONS(1715), + [aux_sym_cmd_identifier_token32] = ACTIONS(1715), + [aux_sym_cmd_identifier_token33] = ACTIONS(1715), + [aux_sym_cmd_identifier_token34] = ACTIONS(1715), + [aux_sym_cmd_identifier_token35] = ACTIONS(1715), + [aux_sym_cmd_identifier_token36] = ACTIONS(1715), + [anon_sym_true] = ACTIONS(1717), + [anon_sym_false] = ACTIONS(1717), + [anon_sym_null] = ACTIONS(1717), + [aux_sym_cmd_identifier_token38] = ACTIONS(1715), + [aux_sym_cmd_identifier_token39] = ACTIONS(1717), + [aux_sym_cmd_identifier_token40] = ACTIONS(1717), + [anon_sym_def] = ACTIONS(1715), + [anon_sym_export_DASHenv] = ACTIONS(1715), + [anon_sym_extern] = ACTIONS(1715), + [anon_sym_module] = ACTIONS(1715), + [anon_sym_use] = ACTIONS(1715), + [anon_sym_LPAREN] = ACTIONS(1717), + [anon_sym_DOLLAR] = ACTIONS(1717), + [anon_sym_error] = ACTIONS(1715), + [anon_sym_list] = ACTIONS(1715), + [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_break] = ACTIONS(1715), + [anon_sym_continue] = ACTIONS(1715), + [anon_sym_for] = ACTIONS(1715), + [anon_sym_in] = ACTIONS(1715), + [anon_sym_loop] = ACTIONS(1715), + [anon_sym_make] = ACTIONS(1715), + [anon_sym_while] = ACTIONS(1715), + [anon_sym_do] = ACTIONS(1715), + [anon_sym_if] = ACTIONS(1715), + [anon_sym_else] = ACTIONS(1715), + [anon_sym_match] = ACTIONS(1715), + [anon_sym_RBRACE] = ACTIONS(1717), + [anon_sym_try] = ACTIONS(1715), + [anon_sym_catch] = ACTIONS(1715), + [anon_sym_return] = ACTIONS(1715), + [anon_sym_source] = ACTIONS(1715), + [anon_sym_source_DASHenv] = ACTIONS(1715), + [anon_sym_register] = ACTIONS(1715), + [anon_sym_hide] = ACTIONS(1715), + [anon_sym_hide_DASHenv] = ACTIONS(1715), + [anon_sym_overlay] = ACTIONS(1715), + [anon_sym_new] = ACTIONS(1715), + [anon_sym_as] = ACTIONS(1715), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1717), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1717), + [aux_sym__val_number_decimal_token1] = ACTIONS(1715), + [aux_sym__val_number_decimal_token2] = ACTIONS(1717), + [aux_sym__val_number_decimal_token3] = ACTIONS(1717), + [aux_sym__val_number_decimal_token4] = ACTIONS(1717), + [aux_sym__val_number_token1] = ACTIONS(1717), + [aux_sym__val_number_token2] = ACTIONS(1717), + [aux_sym__val_number_token3] = ACTIONS(1717), + [anon_sym_DQUOTE] = ACTIONS(1717), + [sym__str_single_quotes] = ACTIONS(1717), + [sym__str_back_ticks] = ACTIONS(1717), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1717), + [anon_sym_PLUS] = ACTIONS(1715), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1717), + }, + [700] = { + [sym_comment] = STATE(700), + [anon_sym_export] = ACTIONS(1703), + [anon_sym_alias] = ACTIONS(1703), + [anon_sym_let] = ACTIONS(1703), + [anon_sym_let_DASHenv] = ACTIONS(1703), + [anon_sym_mut] = ACTIONS(1703), + [anon_sym_const] = ACTIONS(1703), + [aux_sym_cmd_identifier_token1] = ACTIONS(1703), + [aux_sym_cmd_identifier_token2] = ACTIONS(1703), + [aux_sym_cmd_identifier_token3] = ACTIONS(1703), + [aux_sym_cmd_identifier_token4] = ACTIONS(1703), + [aux_sym_cmd_identifier_token5] = ACTIONS(1703), + [aux_sym_cmd_identifier_token6] = ACTIONS(1703), + [aux_sym_cmd_identifier_token7] = ACTIONS(1703), + [aux_sym_cmd_identifier_token8] = ACTIONS(1703), + [aux_sym_cmd_identifier_token9] = ACTIONS(1703), + [aux_sym_cmd_identifier_token10] = ACTIONS(1703), + [aux_sym_cmd_identifier_token11] = ACTIONS(1703), + [aux_sym_cmd_identifier_token12] = ACTIONS(1703), + [aux_sym_cmd_identifier_token13] = ACTIONS(1703), + [aux_sym_cmd_identifier_token14] = ACTIONS(1703), + [aux_sym_cmd_identifier_token15] = ACTIONS(1703), + [aux_sym_cmd_identifier_token16] = ACTIONS(1703), + [aux_sym_cmd_identifier_token17] = ACTIONS(1703), + [aux_sym_cmd_identifier_token18] = ACTIONS(1703), + [aux_sym_cmd_identifier_token19] = ACTIONS(1703), + [aux_sym_cmd_identifier_token20] = ACTIONS(1703), + [aux_sym_cmd_identifier_token21] = ACTIONS(1703), + [aux_sym_cmd_identifier_token22] = ACTIONS(1703), + [aux_sym_cmd_identifier_token23] = ACTIONS(1703), + [aux_sym_cmd_identifier_token24] = ACTIONS(1703), + [aux_sym_cmd_identifier_token25] = ACTIONS(1703), + [aux_sym_cmd_identifier_token26] = ACTIONS(1703), + [aux_sym_cmd_identifier_token27] = ACTIONS(1703), + [aux_sym_cmd_identifier_token28] = ACTIONS(1703), + [aux_sym_cmd_identifier_token29] = ACTIONS(1703), + [aux_sym_cmd_identifier_token30] = ACTIONS(1703), + [aux_sym_cmd_identifier_token31] = ACTIONS(1703), + [aux_sym_cmd_identifier_token32] = ACTIONS(1703), + [aux_sym_cmd_identifier_token33] = ACTIONS(1703), + [aux_sym_cmd_identifier_token34] = ACTIONS(1703), + [aux_sym_cmd_identifier_token35] = ACTIONS(1703), + [aux_sym_cmd_identifier_token36] = ACTIONS(1703), + [anon_sym_true] = ACTIONS(1705), + [anon_sym_false] = ACTIONS(1705), + [anon_sym_null] = ACTIONS(1705), + [aux_sym_cmd_identifier_token38] = ACTIONS(1703), + [aux_sym_cmd_identifier_token39] = ACTIONS(1705), + [aux_sym_cmd_identifier_token40] = ACTIONS(1705), + [anon_sym_def] = ACTIONS(1703), + [anon_sym_export_DASHenv] = ACTIONS(1703), + [anon_sym_extern] = ACTIONS(1703), + [anon_sym_module] = ACTIONS(1703), + [anon_sym_use] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1705), + [anon_sym_error] = ACTIONS(1703), + [anon_sym_list] = ACTIONS(1703), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_break] = ACTIONS(1703), + [anon_sym_continue] = ACTIONS(1703), + [anon_sym_for] = ACTIONS(1703), + [anon_sym_in] = ACTIONS(1703), + [anon_sym_loop] = ACTIONS(1703), + [anon_sym_make] = ACTIONS(1703), + [anon_sym_while] = ACTIONS(1703), + [anon_sym_do] = ACTIONS(1703), + [anon_sym_if] = ACTIONS(1703), + [anon_sym_else] = ACTIONS(1703), + [anon_sym_match] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1703), + [anon_sym_catch] = ACTIONS(1703), + [anon_sym_return] = ACTIONS(1703), + [anon_sym_source] = ACTIONS(1703), + [anon_sym_source_DASHenv] = ACTIONS(1703), + [anon_sym_register] = ACTIONS(1703), + [anon_sym_hide] = ACTIONS(1703), + [anon_sym_hide_DASHenv] = ACTIONS(1703), + [anon_sym_overlay] = ACTIONS(1703), + [anon_sym_new] = ACTIONS(1703), + [anon_sym_as] = ACTIONS(1703), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1705), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1705), + [aux_sym__val_number_decimal_token1] = ACTIONS(1703), + [aux_sym__val_number_decimal_token2] = ACTIONS(1705), + [aux_sym__val_number_decimal_token3] = ACTIONS(1705), + [aux_sym__val_number_decimal_token4] = ACTIONS(1705), + [aux_sym__val_number_token1] = ACTIONS(1705), + [aux_sym__val_number_token2] = ACTIONS(1705), + [aux_sym__val_number_token3] = ACTIONS(1705), + [anon_sym_DQUOTE] = ACTIONS(1705), + [sym__str_single_quotes] = ACTIONS(1705), + [sym__str_back_ticks] = ACTIONS(1705), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1705), + [anon_sym_PLUS] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1705), + }, + [701] = { + [sym_comment] = STATE(701), + [anon_sym_export] = ACTIONS(1769), + [anon_sym_alias] = ACTIONS(1769), + [anon_sym_let] = ACTIONS(1769), + [anon_sym_let_DASHenv] = ACTIONS(1769), + [anon_sym_mut] = ACTIONS(1769), + [anon_sym_const] = ACTIONS(1769), + [aux_sym_cmd_identifier_token1] = ACTIONS(1769), + [aux_sym_cmd_identifier_token2] = ACTIONS(1769), + [aux_sym_cmd_identifier_token3] = ACTIONS(1769), + [aux_sym_cmd_identifier_token4] = ACTIONS(1769), + [aux_sym_cmd_identifier_token5] = ACTIONS(1769), + [aux_sym_cmd_identifier_token6] = ACTIONS(1769), + [aux_sym_cmd_identifier_token7] = ACTIONS(1769), + [aux_sym_cmd_identifier_token8] = ACTIONS(1769), + [aux_sym_cmd_identifier_token9] = ACTIONS(1769), + [aux_sym_cmd_identifier_token10] = ACTIONS(1769), + [aux_sym_cmd_identifier_token11] = ACTIONS(1769), + [aux_sym_cmd_identifier_token12] = ACTIONS(1769), + [aux_sym_cmd_identifier_token13] = ACTIONS(1769), + [aux_sym_cmd_identifier_token14] = ACTIONS(1769), + [aux_sym_cmd_identifier_token15] = ACTIONS(1769), + [aux_sym_cmd_identifier_token16] = ACTIONS(1769), + [aux_sym_cmd_identifier_token17] = ACTIONS(1769), + [aux_sym_cmd_identifier_token18] = ACTIONS(1769), + [aux_sym_cmd_identifier_token19] = ACTIONS(1769), + [aux_sym_cmd_identifier_token20] = ACTIONS(1769), + [aux_sym_cmd_identifier_token21] = ACTIONS(1769), + [aux_sym_cmd_identifier_token22] = ACTIONS(1769), + [aux_sym_cmd_identifier_token23] = ACTIONS(1769), + [aux_sym_cmd_identifier_token24] = ACTIONS(1769), + [aux_sym_cmd_identifier_token25] = ACTIONS(1769), + [aux_sym_cmd_identifier_token26] = ACTIONS(1769), + [aux_sym_cmd_identifier_token27] = ACTIONS(1769), + [aux_sym_cmd_identifier_token28] = ACTIONS(1769), + [aux_sym_cmd_identifier_token29] = ACTIONS(1769), + [aux_sym_cmd_identifier_token30] = ACTIONS(1769), + [aux_sym_cmd_identifier_token31] = ACTIONS(1769), + [aux_sym_cmd_identifier_token32] = ACTIONS(1769), + [aux_sym_cmd_identifier_token33] = ACTIONS(1769), + [aux_sym_cmd_identifier_token34] = ACTIONS(1769), + [aux_sym_cmd_identifier_token35] = ACTIONS(1769), + [aux_sym_cmd_identifier_token36] = ACTIONS(1769), + [anon_sym_true] = ACTIONS(1771), + [anon_sym_false] = ACTIONS(1771), + [anon_sym_null] = ACTIONS(1771), + [aux_sym_cmd_identifier_token38] = ACTIONS(1769), + [aux_sym_cmd_identifier_token39] = ACTIONS(1771), + [aux_sym_cmd_identifier_token40] = ACTIONS(1771), + [anon_sym_def] = ACTIONS(1769), + [anon_sym_export_DASHenv] = ACTIONS(1769), + [anon_sym_extern] = ACTIONS(1769), + [anon_sym_module] = ACTIONS(1769), + [anon_sym_use] = ACTIONS(1769), + [anon_sym_LPAREN] = ACTIONS(1771), + [anon_sym_DOLLAR] = ACTIONS(1771), + [anon_sym_error] = ACTIONS(1769), + [anon_sym_list] = ACTIONS(1769), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_break] = ACTIONS(1769), + [anon_sym_continue] = ACTIONS(1769), + [anon_sym_for] = ACTIONS(1769), + [anon_sym_in] = ACTIONS(1769), + [anon_sym_loop] = ACTIONS(1769), + [anon_sym_make] = ACTIONS(1769), + [anon_sym_while] = ACTIONS(1769), + [anon_sym_do] = ACTIONS(1769), + [anon_sym_if] = ACTIONS(1769), + [anon_sym_else] = ACTIONS(1769), + [anon_sym_match] = ACTIONS(1769), + [anon_sym_RBRACE] = ACTIONS(1771), + [anon_sym_try] = ACTIONS(1769), + [anon_sym_catch] = ACTIONS(1769), + [anon_sym_return] = ACTIONS(1769), + [anon_sym_source] = ACTIONS(1769), + [anon_sym_source_DASHenv] = ACTIONS(1769), + [anon_sym_register] = ACTIONS(1769), + [anon_sym_hide] = ACTIONS(1769), + [anon_sym_hide_DASHenv] = ACTIONS(1769), + [anon_sym_overlay] = ACTIONS(1769), + [anon_sym_new] = ACTIONS(1769), + [anon_sym_as] = ACTIONS(1769), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1771), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1771), + [aux_sym__val_number_decimal_token1] = ACTIONS(1769), + [aux_sym__val_number_decimal_token2] = ACTIONS(1771), + [aux_sym__val_number_decimal_token3] = ACTIONS(1771), + [aux_sym__val_number_decimal_token4] = ACTIONS(1771), + [aux_sym__val_number_token1] = ACTIONS(1771), + [aux_sym__val_number_token2] = ACTIONS(1771), + [aux_sym__val_number_token3] = ACTIONS(1771), + [anon_sym_DQUOTE] = ACTIONS(1771), + [sym__str_single_quotes] = ACTIONS(1771), + [sym__str_back_ticks] = ACTIONS(1771), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1769), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1771), + }, + [702] = { + [sym_comment] = STATE(702), + [anon_sym_export] = ACTIONS(1826), + [anon_sym_alias] = ACTIONS(1826), + [anon_sym_let] = ACTIONS(1826), + [anon_sym_let_DASHenv] = ACTIONS(1826), + [anon_sym_mut] = ACTIONS(1826), + [anon_sym_const] = ACTIONS(1826), + [aux_sym_cmd_identifier_token1] = ACTIONS(1826), + [aux_sym_cmd_identifier_token2] = ACTIONS(1826), + [aux_sym_cmd_identifier_token3] = ACTIONS(1826), + [aux_sym_cmd_identifier_token4] = ACTIONS(1826), + [aux_sym_cmd_identifier_token5] = ACTIONS(1826), + [aux_sym_cmd_identifier_token6] = ACTIONS(1826), + [aux_sym_cmd_identifier_token7] = ACTIONS(1826), + [aux_sym_cmd_identifier_token8] = ACTIONS(1826), + [aux_sym_cmd_identifier_token9] = ACTIONS(1826), + [aux_sym_cmd_identifier_token10] = ACTIONS(1826), + [aux_sym_cmd_identifier_token11] = ACTIONS(1826), + [aux_sym_cmd_identifier_token12] = ACTIONS(1826), + [aux_sym_cmd_identifier_token13] = ACTIONS(1826), + [aux_sym_cmd_identifier_token14] = ACTIONS(1826), + [aux_sym_cmd_identifier_token15] = ACTIONS(1826), + [aux_sym_cmd_identifier_token16] = ACTIONS(1826), + [aux_sym_cmd_identifier_token17] = ACTIONS(1826), + [aux_sym_cmd_identifier_token18] = ACTIONS(1826), + [aux_sym_cmd_identifier_token19] = ACTIONS(1826), + [aux_sym_cmd_identifier_token20] = ACTIONS(1826), + [aux_sym_cmd_identifier_token21] = ACTIONS(1826), + [aux_sym_cmd_identifier_token22] = ACTIONS(1826), + [aux_sym_cmd_identifier_token23] = ACTIONS(1826), + [aux_sym_cmd_identifier_token24] = ACTIONS(1826), + [aux_sym_cmd_identifier_token25] = ACTIONS(1826), + [aux_sym_cmd_identifier_token26] = ACTIONS(1826), + [aux_sym_cmd_identifier_token27] = ACTIONS(1826), + [aux_sym_cmd_identifier_token28] = ACTIONS(1826), + [aux_sym_cmd_identifier_token29] = ACTIONS(1826), + [aux_sym_cmd_identifier_token30] = ACTIONS(1826), + [aux_sym_cmd_identifier_token31] = ACTIONS(1826), + [aux_sym_cmd_identifier_token32] = ACTIONS(1826), + [aux_sym_cmd_identifier_token33] = ACTIONS(1826), + [aux_sym_cmd_identifier_token34] = ACTIONS(1826), + [aux_sym_cmd_identifier_token35] = ACTIONS(1826), + [aux_sym_cmd_identifier_token36] = ACTIONS(1826), + [anon_sym_true] = ACTIONS(1828), + [anon_sym_false] = ACTIONS(1828), + [anon_sym_null] = ACTIONS(1828), + [aux_sym_cmd_identifier_token38] = ACTIONS(1826), + [aux_sym_cmd_identifier_token39] = ACTIONS(1828), + [aux_sym_cmd_identifier_token40] = ACTIONS(1828), + [anon_sym_def] = ACTIONS(1826), + [anon_sym_export_DASHenv] = ACTIONS(1826), + [anon_sym_extern] = ACTIONS(1826), + [anon_sym_module] = ACTIONS(1826), + [anon_sym_use] = ACTIONS(1826), + [anon_sym_LPAREN] = ACTIONS(1828), + [anon_sym_DOLLAR] = ACTIONS(1828), + [anon_sym_error] = ACTIONS(1826), + [anon_sym_list] = ACTIONS(1826), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_break] = ACTIONS(1826), + [anon_sym_continue] = ACTIONS(1826), + [anon_sym_for] = ACTIONS(1826), + [anon_sym_in] = ACTIONS(1826), + [anon_sym_loop] = ACTIONS(1826), + [anon_sym_make] = ACTIONS(1826), + [anon_sym_while] = ACTIONS(1826), + [anon_sym_do] = ACTIONS(1826), + [anon_sym_if] = ACTIONS(1826), + [anon_sym_else] = ACTIONS(1826), + [anon_sym_match] = ACTIONS(1826), + [anon_sym_RBRACE] = ACTIONS(1828), + [anon_sym_try] = ACTIONS(1826), + [anon_sym_catch] = ACTIONS(1826), + [anon_sym_return] = ACTIONS(1826), + [anon_sym_source] = ACTIONS(1826), + [anon_sym_source_DASHenv] = ACTIONS(1826), + [anon_sym_register] = ACTIONS(1826), + [anon_sym_hide] = ACTIONS(1826), + [anon_sym_hide_DASHenv] = ACTIONS(1826), + [anon_sym_overlay] = ACTIONS(1826), + [anon_sym_new] = ACTIONS(1826), + [anon_sym_as] = ACTIONS(1826), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1828), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1828), + [aux_sym__val_number_decimal_token1] = ACTIONS(1826), + [aux_sym__val_number_decimal_token2] = ACTIONS(1828), + [aux_sym__val_number_decimal_token3] = ACTIONS(1828), + [aux_sym__val_number_decimal_token4] = ACTIONS(1828), + [aux_sym__val_number_token1] = ACTIONS(1828), + [aux_sym__val_number_token2] = ACTIONS(1828), + [aux_sym__val_number_token3] = ACTIONS(1828), + [anon_sym_DQUOTE] = ACTIONS(1828), + [sym__str_single_quotes] = ACTIONS(1828), + [sym__str_back_ticks] = ACTIONS(1828), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1828), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1828), + }, + [703] = { + [sym_comment] = STATE(703), + [anon_sym_export] = ACTIONS(2196), + [anon_sym_alias] = ACTIONS(2196), + [anon_sym_let] = ACTIONS(2196), + [anon_sym_let_DASHenv] = ACTIONS(2196), + [anon_sym_mut] = ACTIONS(2196), + [anon_sym_const] = ACTIONS(2196), + [aux_sym_cmd_identifier_token1] = ACTIONS(2196), + [aux_sym_cmd_identifier_token2] = ACTIONS(2196), + [aux_sym_cmd_identifier_token3] = ACTIONS(2196), + [aux_sym_cmd_identifier_token4] = ACTIONS(2196), + [aux_sym_cmd_identifier_token5] = ACTIONS(2196), + [aux_sym_cmd_identifier_token6] = ACTIONS(2196), + [aux_sym_cmd_identifier_token7] = ACTIONS(2196), + [aux_sym_cmd_identifier_token8] = ACTIONS(2196), + [aux_sym_cmd_identifier_token9] = ACTIONS(2196), + [aux_sym_cmd_identifier_token10] = ACTIONS(2196), + [aux_sym_cmd_identifier_token11] = ACTIONS(2196), + [aux_sym_cmd_identifier_token12] = ACTIONS(2196), + [aux_sym_cmd_identifier_token13] = ACTIONS(2196), + [aux_sym_cmd_identifier_token14] = ACTIONS(2196), + [aux_sym_cmd_identifier_token15] = ACTIONS(2196), + [aux_sym_cmd_identifier_token16] = ACTIONS(2196), + [aux_sym_cmd_identifier_token17] = ACTIONS(2196), + [aux_sym_cmd_identifier_token18] = ACTIONS(2196), + [aux_sym_cmd_identifier_token19] = ACTIONS(2196), + [aux_sym_cmd_identifier_token20] = ACTIONS(2196), + [aux_sym_cmd_identifier_token21] = ACTIONS(2196), + [aux_sym_cmd_identifier_token22] = ACTIONS(2196), + [aux_sym_cmd_identifier_token23] = ACTIONS(2196), + [aux_sym_cmd_identifier_token24] = ACTIONS(2196), + [aux_sym_cmd_identifier_token25] = ACTIONS(2196), + [aux_sym_cmd_identifier_token26] = ACTIONS(2196), + [aux_sym_cmd_identifier_token27] = ACTIONS(2196), + [aux_sym_cmd_identifier_token28] = ACTIONS(2196), + [aux_sym_cmd_identifier_token29] = ACTIONS(2196), + [aux_sym_cmd_identifier_token30] = ACTIONS(2196), + [aux_sym_cmd_identifier_token31] = ACTIONS(2196), + [aux_sym_cmd_identifier_token32] = ACTIONS(2196), + [aux_sym_cmd_identifier_token33] = ACTIONS(2196), + [aux_sym_cmd_identifier_token34] = ACTIONS(2196), + [aux_sym_cmd_identifier_token35] = ACTIONS(2196), + [aux_sym_cmd_identifier_token36] = ACTIONS(2196), + [anon_sym_true] = ACTIONS(2198), + [anon_sym_false] = ACTIONS(2198), + [anon_sym_null] = ACTIONS(2198), + [aux_sym_cmd_identifier_token38] = ACTIONS(2196), + [aux_sym_cmd_identifier_token39] = ACTIONS(2198), + [aux_sym_cmd_identifier_token40] = ACTIONS(2198), + [anon_sym_def] = ACTIONS(2196), + [anon_sym_export_DASHenv] = ACTIONS(2196), + [anon_sym_extern] = ACTIONS(2196), + [anon_sym_module] = ACTIONS(2196), + [anon_sym_use] = ACTIONS(2196), + [anon_sym_LPAREN] = ACTIONS(2198), + [anon_sym_DOLLAR] = ACTIONS(2198), + [anon_sym_error] = ACTIONS(2196), + [anon_sym_list] = ACTIONS(2196), + [anon_sym_DASH] = ACTIONS(2196), + [anon_sym_break] = ACTIONS(2196), + [anon_sym_continue] = ACTIONS(2196), + [anon_sym_for] = ACTIONS(2196), + [anon_sym_in] = ACTIONS(2196), + [anon_sym_loop] = ACTIONS(2196), + [anon_sym_make] = ACTIONS(2196), + [anon_sym_while] = ACTIONS(2196), + [anon_sym_do] = ACTIONS(2196), + [anon_sym_if] = ACTIONS(2196), + [anon_sym_else] = ACTIONS(2196), + [anon_sym_match] = ACTIONS(2196), + [anon_sym_RBRACE] = ACTIONS(2198), + [anon_sym_try] = ACTIONS(2196), + [anon_sym_catch] = ACTIONS(2196), + [anon_sym_return] = ACTIONS(2196), + [anon_sym_source] = ACTIONS(2196), + [anon_sym_source_DASHenv] = ACTIONS(2196), + [anon_sym_register] = ACTIONS(2196), + [anon_sym_hide] = ACTIONS(2196), + [anon_sym_hide_DASHenv] = ACTIONS(2196), + [anon_sym_overlay] = ACTIONS(2196), + [anon_sym_new] = ACTIONS(2196), + [anon_sym_as] = ACTIONS(2196), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2198), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2198), + [aux_sym__val_number_decimal_token1] = ACTIONS(2196), + [aux_sym__val_number_decimal_token2] = ACTIONS(2198), + [aux_sym__val_number_decimal_token3] = ACTIONS(2198), + [aux_sym__val_number_decimal_token4] = ACTIONS(2198), + [aux_sym__val_number_token1] = ACTIONS(2198), + [aux_sym__val_number_token2] = ACTIONS(2198), + [aux_sym__val_number_token3] = ACTIONS(2198), + [anon_sym_DQUOTE] = ACTIONS(2198), + [sym__str_single_quotes] = ACTIONS(2198), + [sym__str_back_ticks] = ACTIONS(2198), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2198), + [anon_sym_PLUS] = ACTIONS(2196), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2198), + }, + [704] = { + [sym_comment] = STATE(704), + [anon_sym_export] = ACTIONS(2063), + [anon_sym_alias] = ACTIONS(2063), + [anon_sym_let] = ACTIONS(2063), + [anon_sym_let_DASHenv] = ACTIONS(2063), + [anon_sym_mut] = ACTIONS(2063), + [anon_sym_const] = ACTIONS(2063), + [aux_sym_cmd_identifier_token1] = ACTIONS(2063), + [aux_sym_cmd_identifier_token2] = ACTIONS(2063), + [aux_sym_cmd_identifier_token3] = ACTIONS(2063), + [aux_sym_cmd_identifier_token4] = ACTIONS(2063), + [aux_sym_cmd_identifier_token5] = ACTIONS(2063), + [aux_sym_cmd_identifier_token6] = ACTIONS(2063), + [aux_sym_cmd_identifier_token7] = ACTIONS(2063), + [aux_sym_cmd_identifier_token8] = ACTIONS(2063), + [aux_sym_cmd_identifier_token9] = ACTIONS(2063), + [aux_sym_cmd_identifier_token10] = ACTIONS(2063), + [aux_sym_cmd_identifier_token11] = ACTIONS(2063), + [aux_sym_cmd_identifier_token12] = ACTIONS(2063), + [aux_sym_cmd_identifier_token13] = ACTIONS(2063), + [aux_sym_cmd_identifier_token14] = ACTIONS(2063), + [aux_sym_cmd_identifier_token15] = ACTIONS(2063), + [aux_sym_cmd_identifier_token16] = ACTIONS(2063), + [aux_sym_cmd_identifier_token17] = ACTIONS(2063), + [aux_sym_cmd_identifier_token18] = ACTIONS(2063), + [aux_sym_cmd_identifier_token19] = ACTIONS(2063), + [aux_sym_cmd_identifier_token20] = ACTIONS(2063), + [aux_sym_cmd_identifier_token21] = ACTIONS(2063), + [aux_sym_cmd_identifier_token22] = ACTIONS(2063), + [aux_sym_cmd_identifier_token23] = ACTIONS(2063), + [aux_sym_cmd_identifier_token24] = ACTIONS(2063), + [aux_sym_cmd_identifier_token25] = ACTIONS(2063), + [aux_sym_cmd_identifier_token26] = ACTIONS(2063), + [aux_sym_cmd_identifier_token27] = ACTIONS(2063), + [aux_sym_cmd_identifier_token28] = ACTIONS(2063), + [aux_sym_cmd_identifier_token29] = ACTIONS(2063), + [aux_sym_cmd_identifier_token30] = ACTIONS(2063), + [aux_sym_cmd_identifier_token31] = ACTIONS(2063), + [aux_sym_cmd_identifier_token32] = ACTIONS(2063), + [aux_sym_cmd_identifier_token33] = ACTIONS(2063), + [aux_sym_cmd_identifier_token34] = ACTIONS(2063), + [aux_sym_cmd_identifier_token35] = ACTIONS(2063), + [aux_sym_cmd_identifier_token36] = ACTIONS(2063), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [anon_sym_null] = ACTIONS(2065), + [aux_sym_cmd_identifier_token38] = ACTIONS(2063), + [aux_sym_cmd_identifier_token39] = ACTIONS(2065), + [aux_sym_cmd_identifier_token40] = ACTIONS(2065), + [anon_sym_def] = ACTIONS(2063), + [anon_sym_export_DASHenv] = ACTIONS(2063), + [anon_sym_extern] = ACTIONS(2063), + [anon_sym_module] = ACTIONS(2063), + [anon_sym_use] = ACTIONS(2063), + [anon_sym_LPAREN] = ACTIONS(2065), + [anon_sym_DOLLAR] = ACTIONS(2065), + [anon_sym_error] = ACTIONS(2063), + [anon_sym_list] = ACTIONS(2063), + [anon_sym_DASH] = ACTIONS(2063), + [anon_sym_break] = ACTIONS(2063), + [anon_sym_continue] = ACTIONS(2063), + [anon_sym_for] = ACTIONS(2063), + [anon_sym_in] = ACTIONS(2063), + [anon_sym_loop] = ACTIONS(2063), + [anon_sym_make] = ACTIONS(2063), + [anon_sym_while] = ACTIONS(2063), + [anon_sym_do] = ACTIONS(2063), + [anon_sym_if] = ACTIONS(2063), + [anon_sym_else] = ACTIONS(2063), + [anon_sym_match] = ACTIONS(2063), + [anon_sym_RBRACE] = ACTIONS(2065), + [anon_sym_try] = ACTIONS(2063), + [anon_sym_catch] = ACTIONS(2063), + [anon_sym_return] = ACTIONS(2063), + [anon_sym_source] = ACTIONS(2063), + [anon_sym_source_DASHenv] = ACTIONS(2063), + [anon_sym_register] = ACTIONS(2063), + [anon_sym_hide] = ACTIONS(2063), + [anon_sym_hide_DASHenv] = ACTIONS(2063), + [anon_sym_overlay] = ACTIONS(2063), + [anon_sym_new] = ACTIONS(2063), + [anon_sym_as] = ACTIONS(2063), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2065), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2065), + [aux_sym__val_number_decimal_token1] = ACTIONS(2063), + [aux_sym__val_number_decimal_token2] = ACTIONS(2065), + [aux_sym__val_number_decimal_token3] = ACTIONS(2065), + [aux_sym__val_number_decimal_token4] = ACTIONS(2065), + [aux_sym__val_number_token1] = ACTIONS(2065), + [aux_sym__val_number_token2] = ACTIONS(2065), + [aux_sym__val_number_token3] = ACTIONS(2065), + [anon_sym_DQUOTE] = ACTIONS(2065), + [sym__str_single_quotes] = ACTIONS(2065), + [sym__str_back_ticks] = ACTIONS(2065), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2065), + [anon_sym_PLUS] = ACTIONS(2063), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2065), + }, + [705] = { + [sym_comment] = STATE(705), + [anon_sym_export] = ACTIONS(2200), + [anon_sym_alias] = ACTIONS(2200), + [anon_sym_let] = ACTIONS(2200), + [anon_sym_let_DASHenv] = ACTIONS(2200), + [anon_sym_mut] = ACTIONS(2200), + [anon_sym_const] = ACTIONS(2200), + [aux_sym_cmd_identifier_token1] = ACTIONS(2200), + [aux_sym_cmd_identifier_token2] = ACTIONS(2200), + [aux_sym_cmd_identifier_token3] = ACTIONS(2200), + [aux_sym_cmd_identifier_token4] = ACTIONS(2200), + [aux_sym_cmd_identifier_token5] = ACTIONS(2200), + [aux_sym_cmd_identifier_token6] = ACTIONS(2200), + [aux_sym_cmd_identifier_token7] = ACTIONS(2200), + [aux_sym_cmd_identifier_token8] = ACTIONS(2200), + [aux_sym_cmd_identifier_token9] = ACTIONS(2200), + [aux_sym_cmd_identifier_token10] = ACTIONS(2200), + [aux_sym_cmd_identifier_token11] = ACTIONS(2200), + [aux_sym_cmd_identifier_token12] = ACTIONS(2200), + [aux_sym_cmd_identifier_token13] = ACTIONS(2200), + [aux_sym_cmd_identifier_token14] = ACTIONS(2200), + [aux_sym_cmd_identifier_token15] = ACTIONS(2200), + [aux_sym_cmd_identifier_token16] = ACTIONS(2200), + [aux_sym_cmd_identifier_token17] = ACTIONS(2200), + [aux_sym_cmd_identifier_token18] = ACTIONS(2200), + [aux_sym_cmd_identifier_token19] = ACTIONS(2200), + [aux_sym_cmd_identifier_token20] = ACTIONS(2200), + [aux_sym_cmd_identifier_token21] = ACTIONS(2200), + [aux_sym_cmd_identifier_token22] = ACTIONS(2200), + [aux_sym_cmd_identifier_token23] = ACTIONS(2200), + [aux_sym_cmd_identifier_token24] = ACTIONS(2200), + [aux_sym_cmd_identifier_token25] = ACTIONS(2200), + [aux_sym_cmd_identifier_token26] = ACTIONS(2200), + [aux_sym_cmd_identifier_token27] = ACTIONS(2200), + [aux_sym_cmd_identifier_token28] = ACTIONS(2200), + [aux_sym_cmd_identifier_token29] = ACTIONS(2200), + [aux_sym_cmd_identifier_token30] = ACTIONS(2200), + [aux_sym_cmd_identifier_token31] = ACTIONS(2200), + [aux_sym_cmd_identifier_token32] = ACTIONS(2200), + [aux_sym_cmd_identifier_token33] = ACTIONS(2200), + [aux_sym_cmd_identifier_token34] = ACTIONS(2200), + [aux_sym_cmd_identifier_token35] = ACTIONS(2200), + [aux_sym_cmd_identifier_token36] = ACTIONS(2200), + [anon_sym_true] = ACTIONS(2202), + [anon_sym_false] = ACTIONS(2202), + [anon_sym_null] = ACTIONS(2202), + [aux_sym_cmd_identifier_token38] = ACTIONS(2200), + [aux_sym_cmd_identifier_token39] = ACTIONS(2202), + [aux_sym_cmd_identifier_token40] = ACTIONS(2202), + [anon_sym_def] = ACTIONS(2200), + [anon_sym_export_DASHenv] = ACTIONS(2200), + [anon_sym_extern] = ACTIONS(2200), + [anon_sym_module] = ACTIONS(2200), + [anon_sym_use] = ACTIONS(2200), + [anon_sym_LPAREN] = ACTIONS(2202), + [anon_sym_DOLLAR] = ACTIONS(2202), + [anon_sym_error] = ACTIONS(2200), + [anon_sym_list] = ACTIONS(2200), + [anon_sym_DASH] = ACTIONS(2200), + [anon_sym_break] = ACTIONS(2200), + [anon_sym_continue] = ACTIONS(2200), + [anon_sym_for] = ACTIONS(2200), + [anon_sym_in] = ACTIONS(2200), + [anon_sym_loop] = ACTIONS(2200), + [anon_sym_make] = ACTIONS(2200), + [anon_sym_while] = ACTIONS(2200), + [anon_sym_do] = ACTIONS(2200), + [anon_sym_if] = ACTIONS(2200), + [anon_sym_else] = ACTIONS(2200), + [anon_sym_match] = ACTIONS(2200), + [anon_sym_RBRACE] = ACTIONS(2202), + [anon_sym_try] = ACTIONS(2200), + [anon_sym_catch] = ACTIONS(2200), + [anon_sym_return] = ACTIONS(2200), + [anon_sym_source] = ACTIONS(2200), + [anon_sym_source_DASHenv] = ACTIONS(2200), + [anon_sym_register] = ACTIONS(2200), + [anon_sym_hide] = ACTIONS(2200), + [anon_sym_hide_DASHenv] = ACTIONS(2200), + [anon_sym_overlay] = ACTIONS(2200), + [anon_sym_new] = ACTIONS(2200), + [anon_sym_as] = ACTIONS(2200), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2202), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2202), + [aux_sym__val_number_decimal_token1] = ACTIONS(2200), + [aux_sym__val_number_decimal_token2] = ACTIONS(2202), + [aux_sym__val_number_decimal_token3] = ACTIONS(2202), + [aux_sym__val_number_decimal_token4] = ACTIONS(2202), + [aux_sym__val_number_token1] = ACTIONS(2202), + [aux_sym__val_number_token2] = ACTIONS(2202), + [aux_sym__val_number_token3] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym__str_single_quotes] = ACTIONS(2202), + [sym__str_back_ticks] = ACTIONS(2202), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2202), + [anon_sym_PLUS] = ACTIONS(2200), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2202), + }, + [706] = { + [sym_comment] = STATE(706), + [anon_sym_export] = ACTIONS(2490), + [anon_sym_alias] = ACTIONS(2490), + [anon_sym_let] = ACTIONS(2490), + [anon_sym_let_DASHenv] = ACTIONS(2490), + [anon_sym_mut] = ACTIONS(2490), + [anon_sym_const] = ACTIONS(2490), + [aux_sym_cmd_identifier_token1] = ACTIONS(2490), + [aux_sym_cmd_identifier_token2] = ACTIONS(2490), + [aux_sym_cmd_identifier_token3] = ACTIONS(2490), + [aux_sym_cmd_identifier_token4] = ACTIONS(2490), + [aux_sym_cmd_identifier_token5] = ACTIONS(2490), + [aux_sym_cmd_identifier_token6] = ACTIONS(2490), + [aux_sym_cmd_identifier_token7] = ACTIONS(2490), + [aux_sym_cmd_identifier_token8] = ACTIONS(2490), + [aux_sym_cmd_identifier_token9] = ACTIONS(2490), + [aux_sym_cmd_identifier_token10] = ACTIONS(2490), + [aux_sym_cmd_identifier_token11] = ACTIONS(2490), + [aux_sym_cmd_identifier_token12] = ACTIONS(2490), + [aux_sym_cmd_identifier_token13] = ACTIONS(2490), + [aux_sym_cmd_identifier_token14] = ACTIONS(2490), + [aux_sym_cmd_identifier_token15] = ACTIONS(2490), + [aux_sym_cmd_identifier_token16] = ACTIONS(2490), + [aux_sym_cmd_identifier_token17] = ACTIONS(2490), + [aux_sym_cmd_identifier_token18] = ACTIONS(2490), + [aux_sym_cmd_identifier_token19] = ACTIONS(2490), + [aux_sym_cmd_identifier_token20] = ACTIONS(2490), + [aux_sym_cmd_identifier_token21] = ACTIONS(2490), + [aux_sym_cmd_identifier_token22] = ACTIONS(2490), + [aux_sym_cmd_identifier_token23] = ACTIONS(2490), + [aux_sym_cmd_identifier_token24] = ACTIONS(2490), + [aux_sym_cmd_identifier_token25] = ACTIONS(2490), + [aux_sym_cmd_identifier_token26] = ACTIONS(2490), + [aux_sym_cmd_identifier_token27] = ACTIONS(2490), + [aux_sym_cmd_identifier_token28] = ACTIONS(2490), + [aux_sym_cmd_identifier_token29] = ACTIONS(2490), + [aux_sym_cmd_identifier_token30] = ACTIONS(2490), + [aux_sym_cmd_identifier_token31] = ACTIONS(2490), + [aux_sym_cmd_identifier_token32] = ACTIONS(2490), + [aux_sym_cmd_identifier_token33] = ACTIONS(2490), + [aux_sym_cmd_identifier_token34] = ACTIONS(2490), + [aux_sym_cmd_identifier_token35] = ACTIONS(2490), + [aux_sym_cmd_identifier_token36] = ACTIONS(2490), + [anon_sym_true] = ACTIONS(2492), + [anon_sym_false] = ACTIONS(2492), + [anon_sym_null] = ACTIONS(2492), + [aux_sym_cmd_identifier_token38] = ACTIONS(2490), + [aux_sym_cmd_identifier_token39] = ACTIONS(2492), + [aux_sym_cmd_identifier_token40] = ACTIONS(2492), + [anon_sym_def] = ACTIONS(2490), + [anon_sym_export_DASHenv] = ACTIONS(2490), + [anon_sym_extern] = ACTIONS(2490), + [anon_sym_module] = ACTIONS(2490), + [anon_sym_use] = ACTIONS(2490), + [anon_sym_LPAREN] = ACTIONS(2492), + [anon_sym_DOLLAR] = ACTIONS(2492), + [anon_sym_error] = ACTIONS(2490), + [anon_sym_list] = ACTIONS(2490), + [anon_sym_DASH] = ACTIONS(2490), + [anon_sym_break] = ACTIONS(2490), + [anon_sym_continue] = ACTIONS(2490), + [anon_sym_for] = ACTIONS(2490), + [anon_sym_in] = ACTIONS(2490), + [anon_sym_loop] = ACTIONS(2490), + [anon_sym_make] = ACTIONS(2490), + [anon_sym_while] = ACTIONS(2490), + [anon_sym_do] = ACTIONS(2490), + [anon_sym_if] = ACTIONS(2490), + [anon_sym_else] = ACTIONS(2490), + [anon_sym_match] = ACTIONS(2490), + [anon_sym_RBRACE] = ACTIONS(2492), + [anon_sym_try] = ACTIONS(2490), + [anon_sym_catch] = ACTIONS(2490), + [anon_sym_return] = ACTIONS(2490), + [anon_sym_source] = ACTIONS(2490), + [anon_sym_source_DASHenv] = ACTIONS(2490), + [anon_sym_register] = ACTIONS(2490), + [anon_sym_hide] = ACTIONS(2490), + [anon_sym_hide_DASHenv] = ACTIONS(2490), + [anon_sym_overlay] = ACTIONS(2490), + [anon_sym_new] = ACTIONS(2490), + [anon_sym_as] = ACTIONS(2490), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2492), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2492), + [aux_sym__val_number_decimal_token1] = ACTIONS(2490), + [aux_sym__val_number_decimal_token2] = ACTIONS(2492), + [aux_sym__val_number_decimal_token3] = ACTIONS(2492), + [aux_sym__val_number_decimal_token4] = ACTIONS(2492), + [aux_sym__val_number_token1] = ACTIONS(2492), + [aux_sym__val_number_token2] = ACTIONS(2492), + [aux_sym__val_number_token3] = ACTIONS(2492), + [anon_sym_DQUOTE] = ACTIONS(2492), + [sym__str_single_quotes] = ACTIONS(2492), + [sym__str_back_ticks] = ACTIONS(2492), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2492), + [anon_sym_PLUS] = ACTIONS(2490), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2492), + }, + [707] = { + [sym_comment] = STATE(707), + [anon_sym_export] = ACTIONS(2234), + [anon_sym_alias] = ACTIONS(2234), + [anon_sym_let] = ACTIONS(2234), + [anon_sym_let_DASHenv] = ACTIONS(2234), + [anon_sym_mut] = ACTIONS(2234), + [anon_sym_const] = ACTIONS(2234), + [aux_sym_cmd_identifier_token1] = ACTIONS(2234), + [aux_sym_cmd_identifier_token2] = ACTIONS(2234), + [aux_sym_cmd_identifier_token3] = ACTIONS(2234), + [aux_sym_cmd_identifier_token4] = ACTIONS(2234), + [aux_sym_cmd_identifier_token5] = ACTIONS(2234), + [aux_sym_cmd_identifier_token6] = ACTIONS(2234), + [aux_sym_cmd_identifier_token7] = ACTIONS(2234), + [aux_sym_cmd_identifier_token8] = ACTIONS(2234), + [aux_sym_cmd_identifier_token9] = ACTIONS(2234), + [aux_sym_cmd_identifier_token10] = ACTIONS(2234), + [aux_sym_cmd_identifier_token11] = ACTIONS(2234), + [aux_sym_cmd_identifier_token12] = ACTIONS(2234), + [aux_sym_cmd_identifier_token13] = ACTIONS(2234), + [aux_sym_cmd_identifier_token14] = ACTIONS(2234), + [aux_sym_cmd_identifier_token15] = ACTIONS(2234), + [aux_sym_cmd_identifier_token16] = ACTIONS(2234), + [aux_sym_cmd_identifier_token17] = ACTIONS(2234), + [aux_sym_cmd_identifier_token18] = ACTIONS(2234), + [aux_sym_cmd_identifier_token19] = ACTIONS(2234), + [aux_sym_cmd_identifier_token20] = ACTIONS(2234), + [aux_sym_cmd_identifier_token21] = ACTIONS(2234), + [aux_sym_cmd_identifier_token22] = ACTIONS(2234), + [aux_sym_cmd_identifier_token23] = ACTIONS(2234), + [aux_sym_cmd_identifier_token24] = ACTIONS(2234), + [aux_sym_cmd_identifier_token25] = ACTIONS(2234), + [aux_sym_cmd_identifier_token26] = ACTIONS(2234), + [aux_sym_cmd_identifier_token27] = ACTIONS(2234), + [aux_sym_cmd_identifier_token28] = ACTIONS(2234), + [aux_sym_cmd_identifier_token29] = ACTIONS(2234), + [aux_sym_cmd_identifier_token30] = ACTIONS(2234), + [aux_sym_cmd_identifier_token31] = ACTIONS(2234), + [aux_sym_cmd_identifier_token32] = ACTIONS(2234), + [aux_sym_cmd_identifier_token33] = ACTIONS(2234), + [aux_sym_cmd_identifier_token34] = ACTIONS(2234), + [aux_sym_cmd_identifier_token35] = ACTIONS(2234), + [aux_sym_cmd_identifier_token36] = ACTIONS(2234), + [anon_sym_true] = ACTIONS(2240), + [anon_sym_false] = ACTIONS(2240), + [anon_sym_null] = ACTIONS(2240), + [aux_sym_cmd_identifier_token38] = ACTIONS(2234), + [aux_sym_cmd_identifier_token39] = ACTIONS(2240), + [aux_sym_cmd_identifier_token40] = ACTIONS(2240), + [anon_sym_def] = ACTIONS(2234), + [anon_sym_export_DASHenv] = ACTIONS(2234), + [anon_sym_extern] = ACTIONS(2234), + [anon_sym_module] = ACTIONS(2234), + [anon_sym_use] = ACTIONS(2234), + [anon_sym_LPAREN] = ACTIONS(2240), + [anon_sym_DOLLAR] = ACTIONS(2240), + [anon_sym_error] = ACTIONS(2234), + [anon_sym_list] = ACTIONS(2234), + [anon_sym_DASH] = ACTIONS(2234), + [anon_sym_break] = ACTIONS(2234), + [anon_sym_continue] = ACTIONS(2234), + [anon_sym_for] = ACTIONS(2234), + [anon_sym_in] = ACTIONS(2234), + [anon_sym_loop] = ACTIONS(2234), + [anon_sym_make] = ACTIONS(2234), + [anon_sym_while] = ACTIONS(2234), + [anon_sym_do] = ACTIONS(2234), + [anon_sym_if] = ACTIONS(2234), + [anon_sym_else] = ACTIONS(2234), + [anon_sym_match] = ACTIONS(2234), + [anon_sym_RBRACE] = ACTIONS(2240), + [anon_sym_try] = ACTIONS(2234), + [anon_sym_catch] = ACTIONS(2234), + [anon_sym_return] = ACTIONS(2234), + [anon_sym_source] = ACTIONS(2234), + [anon_sym_source_DASHenv] = ACTIONS(2234), + [anon_sym_register] = ACTIONS(2234), + [anon_sym_hide] = ACTIONS(2234), + [anon_sym_hide_DASHenv] = ACTIONS(2234), + [anon_sym_overlay] = ACTIONS(2234), + [anon_sym_new] = ACTIONS(2234), + [anon_sym_as] = ACTIONS(2234), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2240), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2240), + [aux_sym__val_number_decimal_token1] = ACTIONS(2234), + [aux_sym__val_number_decimal_token2] = ACTIONS(2240), + [aux_sym__val_number_decimal_token3] = ACTIONS(2240), + [aux_sym__val_number_decimal_token4] = ACTIONS(2240), + [aux_sym__val_number_token1] = ACTIONS(2240), + [aux_sym__val_number_token2] = ACTIONS(2240), + [aux_sym__val_number_token3] = ACTIONS(2240), + [anon_sym_DQUOTE] = ACTIONS(2240), + [sym__str_single_quotes] = ACTIONS(2240), + [sym__str_back_ticks] = ACTIONS(2240), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2240), + [anon_sym_PLUS] = ACTIONS(2234), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2240), + }, + [708] = { + [sym__match_pattern_expression] = STATE(3083), + [sym__match_pattern_value] = STATE(3079), + [sym__match_pattern_list] = STATE(3092), + [sym__match_pattern_rest] = STATE(7898), + [sym__match_pattern_record] = STATE(3125), + [sym_expr_parenthesized] = STATE(2777), + [sym__spread_parenthesized] = STATE(7414), + [sym_val_range] = STATE(2958), + [sym__val_range] = STATE(7864), + [sym__val_range_with_end] = STATE(7490), + [sym__value] = STATE(7423), + [sym_val_nothing] = STATE(2959), + [sym_val_bool] = STATE(2860), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(2779), + [sym_val_number] = STATE(2959), + [sym__val_number_decimal] = STATE(2456), + [sym__val_number] = STATE(3029), + [sym_val_duration] = STATE(2959), + [sym_val_filesize] = STATE(2959), + [sym_val_binary] = STATE(2959), + [sym_val_string] = STATE(2959), + [sym__raw_str] = STATE(2953), + [sym__str_double_quotes] = STATE(2953), + [sym_val_interpolated] = STATE(6921), + [sym__inter_single_quotes] = STATE(7044), + [sym__inter_double_quotes] = STATE(7055), + [sym_val_list] = STATE(7328), + [sym__spread_list] = STATE(7414), + [sym_list_body] = STATE(7736), + [sym_val_entry] = STATE(6779), + [sym_val_record] = STATE(6921), + [sym_val_table] = STATE(2959), + [sym_val_closure] = STATE(6921), + [sym__unquoted_in_list] = STATE(2882), + [sym__unquoted_in_list_with_expr] = STATE(7423), + [sym__unquoted_anonymous_prefix] = STATE(7095), + [sym_comment] = STATE(708), + [aux_sym_shebang_repeat1] = STATE(777), + [aux_sym_parameter_repeat2] = STATE(6382), + [aux_sym__match_pattern_list_repeat1] = STATE(1148), + [aux_sym_list_body_repeat1] = STATE(782), + [anon_sym_true] = ACTIONS(2577), + [anon_sym_false] = ACTIONS(2577), + [anon_sym_null] = ACTIONS(2579), + [aux_sym_cmd_identifier_token38] = ACTIONS(2581), + [aux_sym_cmd_identifier_token39] = ACTIONS(2581), + [aux_sym_cmd_identifier_token40] = ACTIONS(2581), + [sym__newline] = ACTIONS(2583), + [anon_sym_LBRACK] = ACTIONS(2585), + [anon_sym_RBRACK] = ACTIONS(2587), + [anon_sym_LPAREN] = ACTIONS(2589), + [anon_sym_COMMA] = ACTIONS(2591), + [anon_sym_DOLLAR] = ACTIONS(2593), + [anon_sym_LBRACE] = ACTIONS(2595), + [anon_sym_DOT_DOT] = ACTIONS(2597), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2599), + [anon_sym_DOT_DOT_LT] = ACTIONS(2599), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(2601), + [aux_sym__val_number_decimal_token2] = ACTIONS(2603), + [aux_sym__val_number_decimal_token3] = ACTIONS(2605), + [aux_sym__val_number_decimal_token4] = ACTIONS(2607), + [aux_sym__val_number_token1] = ACTIONS(2609), + [aux_sym__val_number_token2] = ACTIONS(2609), + [aux_sym__val_number_token3] = ACTIONS(2609), + [anon_sym_0b] = ACTIONS(2611), + [anon_sym_0o] = ACTIONS(2613), + [anon_sym_0x] = ACTIONS(2613), + [sym_val_date] = ACTIONS(2615), + [anon_sym_DQUOTE] = ACTIONS(2617), + [sym__str_single_quotes] = ACTIONS(2619), + [sym__str_back_ticks] = ACTIONS(2619), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), + [anon_sym_err_GT] = ACTIONS(2627), + [anon_sym_out_GT] = ACTIONS(2627), + [anon_sym_e_GT] = ACTIONS(2627), + [anon_sym_o_GT] = ACTIONS(2627), + [anon_sym_err_PLUSout_GT] = ACTIONS(2627), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), + [anon_sym_o_PLUSe_GT] = ACTIONS(2627), + [anon_sym_e_PLUSo_GT] = ACTIONS(2627), + [anon_sym_err_GT_GT] = ACTIONS(2629), + [anon_sym_out_GT_GT] = ACTIONS(2629), + [anon_sym_e_GT_GT] = ACTIONS(2629), + [anon_sym_o_GT_GT] = ACTIONS(2629), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2631), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2633), + }, + [709] = { + [sym__match_pattern_expression] = STATE(3083), + [sym__match_pattern_value] = STATE(3079), + [sym__match_pattern_list] = STATE(3092), + [sym__match_pattern_rest] = STATE(7898), + [sym__match_pattern_record] = STATE(3125), + [sym_expr_parenthesized] = STATE(2777), + [sym__spread_parenthesized] = STATE(7414), + [sym_val_range] = STATE(2958), + [sym__val_range] = STATE(7864), + [sym__val_range_with_end] = STATE(7490), + [sym__value] = STATE(7423), + [sym_val_nothing] = STATE(2959), + [sym_val_bool] = STATE(2860), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(2779), + [sym_val_number] = STATE(2959), + [sym__val_number_decimal] = STATE(2456), + [sym__val_number] = STATE(3029), + [sym_val_duration] = STATE(2959), + [sym_val_filesize] = STATE(2959), + [sym_val_binary] = STATE(2959), + [sym_val_string] = STATE(2959), + [sym__raw_str] = STATE(2953), + [sym__str_double_quotes] = STATE(2953), + [sym_val_interpolated] = STATE(6921), + [sym__inter_single_quotes] = STATE(7044), + [sym__inter_double_quotes] = STATE(7055), + [sym_val_list] = STATE(7352), + [sym__spread_list] = STATE(7414), + [sym_list_body] = STATE(7942), + [sym_val_entry] = STATE(6779), + [sym_val_record] = STATE(6921), + [sym_val_table] = STATE(2959), + [sym_val_closure] = STATE(6921), + [sym__unquoted_in_list] = STATE(2882), + [sym__unquoted_in_list_with_expr] = STATE(7423), + [sym__unquoted_anonymous_prefix] = STATE(7095), + [sym_comment] = STATE(709), + [aux_sym_shebang_repeat1] = STATE(780), + [aux_sym_parameter_repeat2] = STATE(6382), + [aux_sym__match_pattern_list_repeat1] = STATE(1148), + [aux_sym_list_body_repeat1] = STATE(782), + [anon_sym_true] = ACTIONS(2577), + [anon_sym_false] = ACTIONS(2577), + [anon_sym_null] = ACTIONS(2579), + [aux_sym_cmd_identifier_token38] = ACTIONS(2581), + [aux_sym_cmd_identifier_token39] = ACTIONS(2581), + [aux_sym_cmd_identifier_token40] = ACTIONS(2581), + [sym__newline] = ACTIONS(2583), + [anon_sym_LBRACK] = ACTIONS(2585), + [anon_sym_RBRACK] = ACTIONS(2635), + [anon_sym_LPAREN] = ACTIONS(2589), + [anon_sym_COMMA] = ACTIONS(2591), + [anon_sym_DOLLAR] = ACTIONS(2593), + [anon_sym_LBRACE] = ACTIONS(2595), + [anon_sym_DOT_DOT] = ACTIONS(2597), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2599), + [anon_sym_DOT_DOT_LT] = ACTIONS(2599), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(2601), + [aux_sym__val_number_decimal_token2] = ACTIONS(2603), + [aux_sym__val_number_decimal_token3] = ACTIONS(2605), + [aux_sym__val_number_decimal_token4] = ACTIONS(2607), + [aux_sym__val_number_token1] = ACTIONS(2609), + [aux_sym__val_number_token2] = ACTIONS(2609), + [aux_sym__val_number_token3] = ACTIONS(2609), + [anon_sym_0b] = ACTIONS(2611), + [anon_sym_0o] = ACTIONS(2613), + [anon_sym_0x] = ACTIONS(2613), + [sym_val_date] = ACTIONS(2615), + [anon_sym_DQUOTE] = ACTIONS(2617), + [sym__str_single_quotes] = ACTIONS(2619), + [sym__str_back_ticks] = ACTIONS(2619), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), + [anon_sym_err_GT] = ACTIONS(2627), + [anon_sym_out_GT] = ACTIONS(2627), + [anon_sym_e_GT] = ACTIONS(2627), + [anon_sym_o_GT] = ACTIONS(2627), + [anon_sym_err_PLUSout_GT] = ACTIONS(2627), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), + [anon_sym_o_PLUSe_GT] = ACTIONS(2627), + [anon_sym_e_PLUSo_GT] = ACTIONS(2627), + [anon_sym_err_GT_GT] = ACTIONS(2629), + [anon_sym_out_GT_GT] = ACTIONS(2629), + [anon_sym_e_GT_GT] = ACTIONS(2629), + [anon_sym_o_GT_GT] = ACTIONS(2629), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2631), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2633), + }, + [710] = { + [sym_expr_parenthesized] = STATE(1352), + [sym_val_range] = STATE(1628), + [sym__val_range] = STATE(7767), + [sym__val_range_with_end] = STATE(7549), + [sym__value] = STATE(1628), + [sym_val_nothing] = STATE(1587), + [sym_val_bool] = STATE(1412), + [sym_val_variable] = STATE(1346), + [sym_val_number] = STATE(1587), + [sym__val_number_decimal] = STATE(1165), + [sym__val_number] = STATE(1646), + [sym_val_duration] = STATE(1587), + [sym_val_filesize] = STATE(1587), + [sym_val_binary] = STATE(1587), + [sym_val_string] = STATE(1587), + [sym__raw_str] = STATE(1640), + [sym__str_double_quotes] = STATE(1640), + [sym_val_interpolated] = STATE(1587), + [sym__inter_single_quotes] = STATE(1696), + [sym__inter_double_quotes] = STATE(1642), + [sym_val_list] = STATE(1587), + [sym_val_record] = STATE(1587), + [sym_val_table] = STATE(1587), + [sym_val_closure] = STATE(1587), + [sym__flag] = STATE(1628), + [sym_short_flag] = STATE(1673), + [sym_long_flag] = STATE(1673), + [sym_unquoted] = STATE(1408), + [sym__unquoted_with_expr] = STATE(1634), + [sym__unquoted_anonymous_prefix] = STATE(6757), + [sym_comment] = STATE(710), + [aux_sym_ctrl_do_repeat2] = STATE(711), + [anon_sym_true] = ACTIONS(2637), + [anon_sym_false] = ACTIONS(2637), + [anon_sym_null] = ACTIONS(2639), + [aux_sym_cmd_identifier_token38] = ACTIONS(2641), + [aux_sym_cmd_identifier_token39] = ACTIONS(2641), + [aux_sym_cmd_identifier_token40] = ACTIONS(2641), + [sym__newline] = ACTIONS(2643), + [anon_sym_SEMI] = ACTIONS(2643), + [anon_sym_PIPE] = ACTIONS(2643), + [anon_sym_err_GT_PIPE] = ACTIONS(2643), + [anon_sym_out_GT_PIPE] = ACTIONS(2643), + [anon_sym_e_GT_PIPE] = ACTIONS(2643), + [anon_sym_o_GT_PIPE] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2643), + [anon_sym_LBRACK] = ACTIONS(2645), + [anon_sym_LPAREN] = ACTIONS(2647), + [anon_sym_RPAREN] = ACTIONS(2643), + [anon_sym_DOLLAR] = ACTIONS(2649), + [anon_sym_DASH_DASH] = ACTIONS(2651), + [anon_sym_DASH] = ACTIONS(2653), + [anon_sym_LBRACE] = ACTIONS(2655), + [anon_sym_RBRACE] = ACTIONS(2643), + [anon_sym_DOT_DOT] = ACTIONS(2657), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2659), + [anon_sym_DOT_DOT_LT] = ACTIONS(2659), + [aux_sym__val_number_decimal_token1] = ACTIONS(2661), + [aux_sym__val_number_decimal_token2] = ACTIONS(2663), + [aux_sym__val_number_decimal_token3] = ACTIONS(2665), + [aux_sym__val_number_decimal_token4] = ACTIONS(2667), + [aux_sym__val_number_token1] = ACTIONS(2669), + [aux_sym__val_number_token2] = ACTIONS(2669), + [aux_sym__val_number_token3] = ACTIONS(2669), + [anon_sym_0b] = ACTIONS(2671), + [anon_sym_0o] = ACTIONS(2673), + [anon_sym_0x] = ACTIONS(2673), + [sym_val_date] = ACTIONS(2675), + [anon_sym_DQUOTE] = ACTIONS(2677), + [sym__str_single_quotes] = ACTIONS(2679), + [sym__str_back_ticks] = ACTIONS(2679), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2681), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2683), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(2689), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2691), + }, + [711] = { + [sym_expr_parenthesized] = STATE(1352), + [sym_val_range] = STATE(1628), + [sym__val_range] = STATE(7767), + [sym__val_range_with_end] = STATE(7549), + [sym__value] = STATE(1628), + [sym_val_nothing] = STATE(1587), + [sym_val_bool] = STATE(1412), + [sym_val_variable] = STATE(1346), + [sym_val_number] = STATE(1587), + [sym__val_number_decimal] = STATE(1165), + [sym__val_number] = STATE(1646), + [sym_val_duration] = STATE(1587), + [sym_val_filesize] = STATE(1587), + [sym_val_binary] = STATE(1587), + [sym_val_string] = STATE(1587), + [sym__raw_str] = STATE(1640), + [sym__str_double_quotes] = STATE(1640), + [sym_val_interpolated] = STATE(1587), + [sym__inter_single_quotes] = STATE(1696), + [sym__inter_double_quotes] = STATE(1642), + [sym_val_list] = STATE(1587), + [sym_val_record] = STATE(1587), + [sym_val_table] = STATE(1587), + [sym_val_closure] = STATE(1587), + [sym__flag] = STATE(1628), + [sym_short_flag] = STATE(1673), + [sym_long_flag] = STATE(1673), + [sym_unquoted] = STATE(1408), + [sym__unquoted_with_expr] = STATE(1634), + [sym__unquoted_anonymous_prefix] = STATE(6757), + [sym_comment] = STATE(711), + [aux_sym_ctrl_do_repeat2] = STATE(716), + [anon_sym_true] = ACTIONS(2637), + [anon_sym_false] = ACTIONS(2637), + [anon_sym_null] = ACTIONS(2639), + [aux_sym_cmd_identifier_token38] = ACTIONS(2641), + [aux_sym_cmd_identifier_token39] = ACTIONS(2641), + [aux_sym_cmd_identifier_token40] = ACTIONS(2641), + [sym__newline] = ACTIONS(2693), + [anon_sym_SEMI] = ACTIONS(2693), + [anon_sym_PIPE] = ACTIONS(2693), + [anon_sym_err_GT_PIPE] = ACTIONS(2693), + [anon_sym_out_GT_PIPE] = ACTIONS(2693), + [anon_sym_e_GT_PIPE] = ACTIONS(2693), + [anon_sym_o_GT_PIPE] = ACTIONS(2693), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2693), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2693), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2693), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2693), + [anon_sym_LBRACK] = ACTIONS(2645), + [anon_sym_LPAREN] = ACTIONS(2647), + [anon_sym_RPAREN] = ACTIONS(2693), + [anon_sym_DOLLAR] = ACTIONS(2649), + [anon_sym_DASH_DASH] = ACTIONS(2651), + [anon_sym_DASH] = ACTIONS(2653), + [anon_sym_LBRACE] = ACTIONS(2655), + [anon_sym_RBRACE] = ACTIONS(2693), + [anon_sym_DOT_DOT] = ACTIONS(2657), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2659), + [anon_sym_DOT_DOT_LT] = ACTIONS(2659), + [aux_sym__val_number_decimal_token1] = ACTIONS(2661), + [aux_sym__val_number_decimal_token2] = ACTIONS(2663), + [aux_sym__val_number_decimal_token3] = ACTIONS(2665), + [aux_sym__val_number_decimal_token4] = ACTIONS(2667), + [aux_sym__val_number_token1] = ACTIONS(2669), + [aux_sym__val_number_token2] = ACTIONS(2669), + [aux_sym__val_number_token3] = ACTIONS(2669), + [anon_sym_0b] = ACTIONS(2671), + [anon_sym_0o] = ACTIONS(2673), + [anon_sym_0x] = ACTIONS(2673), + [sym_val_date] = ACTIONS(2675), + [anon_sym_DQUOTE] = ACTIONS(2677), + [sym__str_single_quotes] = ACTIONS(2679), + [sym__str_back_ticks] = ACTIONS(2679), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2681), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2683), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(2689), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2691), + }, + [712] = { + [sym_expr_parenthesized] = STATE(1464), + [sym_val_range] = STATE(1815), + [sym__val_range] = STATE(7767), + [sym__val_range_with_end] = STATE(7549), + [sym__value] = STATE(1815), + [sym_val_nothing] = STATE(1587), + [sym_val_bool] = STATE(1412), + [sym_val_variable] = STATE(1346), + [sym_val_number] = STATE(1587), + [sym__val_number_decimal] = STATE(1165), + [sym__val_number] = STATE(1646), + [sym_val_duration] = STATE(1587), + [sym_val_filesize] = STATE(1587), + [sym_val_binary] = STATE(1587), + [sym_val_string] = STATE(1587), + [sym__raw_str] = STATE(1640), + [sym__str_double_quotes] = STATE(1640), + [sym_val_interpolated] = STATE(1587), + [sym__inter_single_quotes] = STATE(1696), + [sym__inter_double_quotes] = STATE(1642), + [sym_val_list] = STATE(1587), + [sym_val_record] = STATE(1587), + [sym_val_table] = STATE(1587), + [sym_val_closure] = STATE(1587), + [sym__flag] = STATE(1815), + [sym_short_flag] = STATE(1673), + [sym_long_flag] = STATE(1673), + [sym_unquoted] = STATE(1555), + [sym__unquoted_with_expr] = STATE(1821), + [sym__unquoted_anonymous_prefix] = STATE(6757), + [sym_comment] = STATE(712), + [aux_sym_shebang_repeat1] = STATE(785), + [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(719), + [anon_sym_true] = ACTIONS(2637), + [anon_sym_false] = ACTIONS(2637), + [anon_sym_null] = ACTIONS(2639), + [aux_sym_cmd_identifier_token38] = ACTIONS(2641), + [aux_sym_cmd_identifier_token39] = ACTIONS(2641), + [aux_sym_cmd_identifier_token40] = ACTIONS(2641), + [sym__newline] = ACTIONS(2695), + [anon_sym_SEMI] = ACTIONS(2697), + [anon_sym_PIPE] = ACTIONS(2697), + [anon_sym_err_GT_PIPE] = ACTIONS(2697), + [anon_sym_out_GT_PIPE] = ACTIONS(2697), + [anon_sym_e_GT_PIPE] = ACTIONS(2697), + [anon_sym_o_GT_PIPE] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2697), + [anon_sym_LBRACK] = ACTIONS(2645), + [anon_sym_LPAREN] = ACTIONS(2647), + [anon_sym_RPAREN] = ACTIONS(2697), + [anon_sym_DOLLAR] = ACTIONS(2649), + [anon_sym_DASH_DASH] = ACTIONS(2651), + [anon_sym_DASH] = ACTIONS(2653), + [anon_sym_LBRACE] = ACTIONS(2655), + [anon_sym_DOT_DOT] = ACTIONS(2657), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2659), + [anon_sym_DOT_DOT_LT] = ACTIONS(2659), + [aux_sym__val_number_decimal_token1] = ACTIONS(2661), + [aux_sym__val_number_decimal_token2] = ACTIONS(2663), + [aux_sym__val_number_decimal_token3] = ACTIONS(2665), + [aux_sym__val_number_decimal_token4] = ACTIONS(2667), + [aux_sym__val_number_token1] = ACTIONS(2669), + [aux_sym__val_number_token2] = ACTIONS(2669), + [aux_sym__val_number_token3] = ACTIONS(2669), + [anon_sym_0b] = ACTIONS(2671), + [anon_sym_0o] = ACTIONS(2673), + [anon_sym_0x] = ACTIONS(2673), + [sym_val_date] = ACTIONS(2675), + [anon_sym_DQUOTE] = ACTIONS(2677), + [sym__str_single_quotes] = ACTIONS(2679), + [sym__str_back_ticks] = ACTIONS(2679), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2681), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2683), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(2689), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2691), + }, + [713] = { + [sym_expr_parenthesized] = STATE(1352), + [sym_val_range] = STATE(1628), + [sym__val_range] = STATE(7767), + [sym__val_range_with_end] = STATE(7549), + [sym__value] = STATE(1628), + [sym_val_nothing] = STATE(1587), + [sym_val_bool] = STATE(1412), + [sym_val_variable] = STATE(1346), + [sym_val_number] = STATE(1587), + [sym__val_number_decimal] = STATE(1165), + [sym__val_number] = STATE(1646), + [sym_val_duration] = STATE(1587), + [sym_val_filesize] = STATE(1587), + [sym_val_binary] = STATE(1587), + [sym_val_string] = STATE(1587), + [sym__raw_str] = STATE(1640), + [sym__str_double_quotes] = STATE(1640), + [sym_val_interpolated] = STATE(1587), + [sym__inter_single_quotes] = STATE(1696), + [sym__inter_double_quotes] = STATE(1642), + [sym_val_list] = STATE(1587), + [sym_val_record] = STATE(1587), + [sym_val_table] = STATE(1587), + [sym_val_closure] = STATE(1587), + [sym__flag] = STATE(1628), + [sym_short_flag] = STATE(1673), + [sym_long_flag] = STATE(1673), + [sym_unquoted] = STATE(1408), + [sym__unquoted_with_expr] = STATE(1634), + [sym__unquoted_anonymous_prefix] = STATE(6757), + [sym_comment] = STATE(713), + [aux_sym_ctrl_do_repeat2] = STATE(715), + [anon_sym_true] = ACTIONS(2637), + [anon_sym_false] = ACTIONS(2637), + [anon_sym_null] = ACTIONS(2639), + [aux_sym_cmd_identifier_token38] = ACTIONS(2641), + [aux_sym_cmd_identifier_token39] = ACTIONS(2641), + [aux_sym_cmd_identifier_token40] = ACTIONS(2641), + [sym__newline] = ACTIONS(2693), + [anon_sym_SEMI] = ACTIONS(2693), + [anon_sym_PIPE] = ACTIONS(2693), + [anon_sym_err_GT_PIPE] = ACTIONS(2693), + [anon_sym_out_GT_PIPE] = ACTIONS(2693), + [anon_sym_e_GT_PIPE] = ACTIONS(2693), + [anon_sym_o_GT_PIPE] = ACTIONS(2693), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2693), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2693), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2693), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2693), + [anon_sym_LBRACK] = ACTIONS(2645), + [anon_sym_LPAREN] = ACTIONS(2647), + [anon_sym_RPAREN] = ACTIONS(2693), + [anon_sym_DOLLAR] = ACTIONS(2649), + [anon_sym_DASH_DASH] = ACTIONS(2651), + [anon_sym_DASH] = ACTIONS(2653), + [anon_sym_LBRACE] = ACTIONS(2655), + [anon_sym_RBRACE] = ACTIONS(2693), + [anon_sym_DOT_DOT] = ACTIONS(2657), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2659), + [anon_sym_DOT_DOT_LT] = ACTIONS(2659), + [aux_sym__val_number_decimal_token1] = ACTIONS(2661), + [aux_sym__val_number_decimal_token2] = ACTIONS(2663), + [aux_sym__val_number_decimal_token3] = ACTIONS(2665), + [aux_sym__val_number_decimal_token4] = ACTIONS(2667), + [aux_sym__val_number_token1] = ACTIONS(2669), + [aux_sym__val_number_token2] = ACTIONS(2669), + [aux_sym__val_number_token3] = ACTIONS(2669), + [anon_sym_0b] = ACTIONS(2671), + [anon_sym_0o] = ACTIONS(2673), + [anon_sym_0x] = ACTIONS(2673), + [sym_val_date] = ACTIONS(2675), + [anon_sym_DQUOTE] = ACTIONS(2677), + [sym__str_single_quotes] = ACTIONS(2679), + [sym__str_back_ticks] = ACTIONS(2679), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2681), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2683), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(2689), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2691), + }, + [714] = { + [sym_expr_parenthesized] = STATE(1464), + [sym_val_range] = STATE(1815), + [sym__val_range] = STATE(7767), + [sym__val_range_with_end] = STATE(7549), + [sym__value] = STATE(1815), + [sym_val_nothing] = STATE(1587), + [sym_val_bool] = STATE(1412), + [sym_val_variable] = STATE(1346), + [sym_val_number] = STATE(1587), + [sym__val_number_decimal] = STATE(1165), + [sym__val_number] = STATE(1646), + [sym_val_duration] = STATE(1587), + [sym_val_filesize] = STATE(1587), + [sym_val_binary] = STATE(1587), + [sym_val_string] = STATE(1587), + [sym__raw_str] = STATE(1640), + [sym__str_double_quotes] = STATE(1640), + [sym_val_interpolated] = STATE(1587), + [sym__inter_single_quotes] = STATE(1696), + [sym__inter_double_quotes] = STATE(1642), + [sym_val_list] = STATE(1587), + [sym_val_record] = STATE(1587), + [sym_val_table] = STATE(1587), + [sym_val_closure] = STATE(1587), + [sym__flag] = STATE(1815), + [sym_short_flag] = STATE(1673), + [sym_long_flag] = STATE(1673), + [sym_unquoted] = STATE(1555), + [sym__unquoted_with_expr] = STATE(1821), + [sym__unquoted_anonymous_prefix] = STATE(6757), + [sym_comment] = STATE(714), + [aux_sym_shebang_repeat1] = STATE(785), + [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(718), + [anon_sym_true] = ACTIONS(2637), + [anon_sym_false] = ACTIONS(2637), + [anon_sym_null] = ACTIONS(2639), + [aux_sym_cmd_identifier_token38] = ACTIONS(2641), + [aux_sym_cmd_identifier_token39] = ACTIONS(2641), + [aux_sym_cmd_identifier_token40] = ACTIONS(2641), + [sym__newline] = ACTIONS(2697), + [anon_sym_SEMI] = ACTIONS(2697), + [anon_sym_PIPE] = ACTIONS(2697), + [anon_sym_err_GT_PIPE] = ACTIONS(2697), + [anon_sym_out_GT_PIPE] = ACTIONS(2697), + [anon_sym_e_GT_PIPE] = ACTIONS(2697), + [anon_sym_o_GT_PIPE] = ACTIONS(2697), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2697), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2697), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2697), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2697), + [anon_sym_LBRACK] = ACTIONS(2645), + [anon_sym_LPAREN] = ACTIONS(2647), + [anon_sym_RPAREN] = ACTIONS(2697), + [anon_sym_DOLLAR] = ACTIONS(2649), + [anon_sym_DASH_DASH] = ACTIONS(2651), + [anon_sym_DASH] = ACTIONS(2653), + [anon_sym_LBRACE] = ACTIONS(2655), + [anon_sym_DOT_DOT] = ACTIONS(2657), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2659), + [anon_sym_DOT_DOT_LT] = ACTIONS(2659), + [aux_sym__val_number_decimal_token1] = ACTIONS(2661), + [aux_sym__val_number_decimal_token2] = ACTIONS(2663), + [aux_sym__val_number_decimal_token3] = ACTIONS(2665), + [aux_sym__val_number_decimal_token4] = ACTIONS(2667), + [aux_sym__val_number_token1] = ACTIONS(2669), + [aux_sym__val_number_token2] = ACTIONS(2669), + [aux_sym__val_number_token3] = ACTIONS(2669), + [anon_sym_0b] = ACTIONS(2671), + [anon_sym_0o] = ACTIONS(2673), + [anon_sym_0x] = ACTIONS(2673), + [sym_val_date] = ACTIONS(2675), + [anon_sym_DQUOTE] = ACTIONS(2677), + [sym__str_single_quotes] = ACTIONS(2679), + [sym__str_back_ticks] = ACTIONS(2679), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2681), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2683), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(2689), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2691), + }, + [715] = { + [sym_expr_parenthesized] = STATE(1352), + [sym_val_range] = STATE(1628), + [sym__val_range] = STATE(7767), + [sym__val_range_with_end] = STATE(7549), + [sym__value] = STATE(1628), + [sym_val_nothing] = STATE(1587), + [sym_val_bool] = STATE(1412), + [sym_val_variable] = STATE(1346), + [sym_val_number] = STATE(1587), + [sym__val_number_decimal] = STATE(1165), + [sym__val_number] = STATE(1646), + [sym_val_duration] = STATE(1587), + [sym_val_filesize] = STATE(1587), + [sym_val_binary] = STATE(1587), + [sym_val_string] = STATE(1587), + [sym__raw_str] = STATE(1640), + [sym__str_double_quotes] = STATE(1640), + [sym_val_interpolated] = STATE(1587), + [sym__inter_single_quotes] = STATE(1696), + [sym__inter_double_quotes] = STATE(1642), + [sym_val_list] = STATE(1587), + [sym_val_record] = STATE(1587), + [sym_val_table] = STATE(1587), + [sym_val_closure] = STATE(1587), + [sym__flag] = STATE(1628), + [sym_short_flag] = STATE(1673), + [sym_long_flag] = STATE(1673), + [sym_unquoted] = STATE(1408), + [sym__unquoted_with_expr] = STATE(1634), + [sym__unquoted_anonymous_prefix] = STATE(6757), + [sym_comment] = STATE(715), + [aux_sym_ctrl_do_repeat2] = STATE(716), + [anon_sym_true] = ACTIONS(2637), + [anon_sym_false] = ACTIONS(2637), + [anon_sym_null] = ACTIONS(2639), + [aux_sym_cmd_identifier_token38] = ACTIONS(2641), + [aux_sym_cmd_identifier_token39] = ACTIONS(2641), + [aux_sym_cmd_identifier_token40] = ACTIONS(2641), + [sym__newline] = ACTIONS(2699), + [anon_sym_SEMI] = ACTIONS(2699), + [anon_sym_PIPE] = ACTIONS(2699), + [anon_sym_err_GT_PIPE] = ACTIONS(2699), + [anon_sym_out_GT_PIPE] = ACTIONS(2699), + [anon_sym_e_GT_PIPE] = ACTIONS(2699), + [anon_sym_o_GT_PIPE] = ACTIONS(2699), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2699), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2699), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2699), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2699), + [anon_sym_LBRACK] = ACTIONS(2645), + [anon_sym_LPAREN] = ACTIONS(2647), + [anon_sym_RPAREN] = ACTIONS(2699), + [anon_sym_DOLLAR] = ACTIONS(2649), + [anon_sym_DASH_DASH] = ACTIONS(2651), + [anon_sym_DASH] = ACTIONS(2653), + [anon_sym_LBRACE] = ACTIONS(2655), + [anon_sym_RBRACE] = ACTIONS(2699), + [anon_sym_DOT_DOT] = ACTIONS(2657), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2659), + [anon_sym_DOT_DOT_LT] = ACTIONS(2659), + [aux_sym__val_number_decimal_token1] = ACTIONS(2661), + [aux_sym__val_number_decimal_token2] = ACTIONS(2663), + [aux_sym__val_number_decimal_token3] = ACTIONS(2665), + [aux_sym__val_number_decimal_token4] = ACTIONS(2667), + [aux_sym__val_number_token1] = ACTIONS(2669), + [aux_sym__val_number_token2] = ACTIONS(2669), + [aux_sym__val_number_token3] = ACTIONS(2669), + [anon_sym_0b] = ACTIONS(2671), + [anon_sym_0o] = ACTIONS(2673), + [anon_sym_0x] = ACTIONS(2673), + [sym_val_date] = ACTIONS(2675), + [anon_sym_DQUOTE] = ACTIONS(2677), + [sym__str_single_quotes] = ACTIONS(2679), + [sym__str_back_ticks] = ACTIONS(2679), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2681), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2683), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(2689), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2691), + }, + [716] = { + [sym_expr_parenthesized] = STATE(1352), + [sym_val_range] = STATE(1628), + [sym__val_range] = STATE(7767), + [sym__val_range_with_end] = STATE(7549), + [sym__value] = STATE(1628), + [sym_val_nothing] = STATE(1587), + [sym_val_bool] = STATE(1412), + [sym_val_variable] = STATE(1346), + [sym_val_number] = STATE(1587), + [sym__val_number_decimal] = STATE(1165), + [sym__val_number] = STATE(1646), + [sym_val_duration] = STATE(1587), + [sym_val_filesize] = STATE(1587), + [sym_val_binary] = STATE(1587), + [sym_val_string] = STATE(1587), + [sym__raw_str] = STATE(1640), + [sym__str_double_quotes] = STATE(1640), + [sym_val_interpolated] = STATE(1587), + [sym__inter_single_quotes] = STATE(1696), + [sym__inter_double_quotes] = STATE(1642), + [sym_val_list] = STATE(1587), + [sym_val_record] = STATE(1587), + [sym_val_table] = STATE(1587), + [sym_val_closure] = STATE(1587), + [sym__flag] = STATE(1628), + [sym_short_flag] = STATE(1673), + [sym_long_flag] = STATE(1673), + [sym_unquoted] = STATE(1408), + [sym__unquoted_with_expr] = STATE(1634), + [sym__unquoted_anonymous_prefix] = STATE(6757), + [sym_comment] = STATE(716), + [aux_sym_ctrl_do_repeat2] = STATE(716), + [anon_sym_true] = ACTIONS(2701), + [anon_sym_false] = ACTIONS(2701), + [anon_sym_null] = ACTIONS(2704), + [aux_sym_cmd_identifier_token38] = ACTIONS(2707), + [aux_sym_cmd_identifier_token39] = ACTIONS(2707), + [aux_sym_cmd_identifier_token40] = ACTIONS(2707), + [sym__newline] = ACTIONS(2710), + [anon_sym_SEMI] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(2710), + [anon_sym_err_GT_PIPE] = ACTIONS(2710), + [anon_sym_out_GT_PIPE] = ACTIONS(2710), + [anon_sym_e_GT_PIPE] = ACTIONS(2710), + [anon_sym_o_GT_PIPE] = ACTIONS(2710), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2710), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2710), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2710), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2710), + [anon_sym_LBRACK] = ACTIONS(2712), + [anon_sym_LPAREN] = ACTIONS(2715), + [anon_sym_RPAREN] = ACTIONS(2710), + [anon_sym_DOLLAR] = ACTIONS(2718), + [anon_sym_DASH_DASH] = ACTIONS(2721), + [anon_sym_DASH] = ACTIONS(2724), + [anon_sym_LBRACE] = ACTIONS(2727), + [anon_sym_RBRACE] = ACTIONS(2710), + [anon_sym_DOT_DOT] = ACTIONS(2730), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2733), + [anon_sym_DOT_DOT_LT] = ACTIONS(2733), + [aux_sym__val_number_decimal_token1] = ACTIONS(2736), + [aux_sym__val_number_decimal_token2] = ACTIONS(2739), + [aux_sym__val_number_decimal_token3] = ACTIONS(2742), + [aux_sym__val_number_decimal_token4] = ACTIONS(2745), + [aux_sym__val_number_token1] = ACTIONS(2748), + [aux_sym__val_number_token2] = ACTIONS(2748), + [aux_sym__val_number_token3] = ACTIONS(2748), + [anon_sym_0b] = ACTIONS(2751), + [anon_sym_0o] = ACTIONS(2754), + [anon_sym_0x] = ACTIONS(2754), + [sym_val_date] = ACTIONS(2757), + [anon_sym_DQUOTE] = ACTIONS(2760), + [sym__str_single_quotes] = ACTIONS(2763), + [sym__str_back_ticks] = ACTIONS(2763), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2766), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2769), + [anon_sym_err_GT] = ACTIONS(2772), + [anon_sym_out_GT] = ACTIONS(2772), + [anon_sym_e_GT] = ACTIONS(2772), + [anon_sym_o_GT] = ACTIONS(2772), + [anon_sym_err_PLUSout_GT] = ACTIONS(2772), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2772), + [anon_sym_o_PLUSe_GT] = ACTIONS(2772), + [anon_sym_e_PLUSo_GT] = ACTIONS(2772), + [anon_sym_err_GT_GT] = ACTIONS(2775), + [anon_sym_out_GT_GT] = ACTIONS(2775), + [anon_sym_e_GT_GT] = ACTIONS(2775), + [anon_sym_o_GT_GT] = ACTIONS(2775), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2775), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2775), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2775), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2775), + [aux_sym_unquoted_token1] = ACTIONS(2778), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2781), + }, + [717] = { + [sym_expr_parenthesized] = STATE(1464), + [sym_val_range] = STATE(1815), + [sym__val_range] = STATE(7767), + [sym__val_range_with_end] = STATE(7549), + [sym__value] = STATE(1815), + [sym_val_nothing] = STATE(1587), + [sym_val_bool] = STATE(1412), + [sym_val_variable] = STATE(1346), + [sym_val_number] = STATE(1587), + [sym__val_number_decimal] = STATE(1165), + [sym__val_number] = STATE(1646), + [sym_val_duration] = STATE(1587), + [sym_val_filesize] = STATE(1587), + [sym_val_binary] = STATE(1587), + [sym_val_string] = STATE(1587), + [sym__raw_str] = STATE(1640), + [sym__str_double_quotes] = STATE(1640), + [sym_val_interpolated] = STATE(1587), + [sym__inter_single_quotes] = STATE(1696), + [sym__inter_double_quotes] = STATE(1642), + [sym_val_list] = STATE(1587), + [sym_val_record] = STATE(1587), + [sym_val_table] = STATE(1587), + [sym_val_closure] = STATE(1587), + [sym__flag] = STATE(1815), + [sym_short_flag] = STATE(1673), + [sym_long_flag] = STATE(1673), + [sym_unquoted] = STATE(1555), + [sym__unquoted_with_expr] = STATE(1821), + [sym__unquoted_anonymous_prefix] = STATE(6757), + [sym_comment] = STATE(717), + [aux_sym_shebang_repeat1] = STATE(785), + [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(712), + [anon_sym_true] = ACTIONS(2637), + [anon_sym_false] = ACTIONS(2637), + [anon_sym_null] = ACTIONS(2639), + [aux_sym_cmd_identifier_token38] = ACTIONS(2641), + [aux_sym_cmd_identifier_token39] = ACTIONS(2641), + [aux_sym_cmd_identifier_token40] = ACTIONS(2641), + [sym__newline] = ACTIONS(2784), + [anon_sym_SEMI] = ACTIONS(2784), + [anon_sym_PIPE] = ACTIONS(2784), + [anon_sym_err_GT_PIPE] = ACTIONS(2784), + [anon_sym_out_GT_PIPE] = ACTIONS(2784), + [anon_sym_e_GT_PIPE] = ACTIONS(2784), + [anon_sym_o_GT_PIPE] = ACTIONS(2784), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2784), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2784), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2784), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2784), + [anon_sym_LBRACK] = ACTIONS(2645), + [anon_sym_LPAREN] = ACTIONS(2647), + [anon_sym_RPAREN] = ACTIONS(2784), + [anon_sym_DOLLAR] = ACTIONS(2649), + [anon_sym_DASH_DASH] = ACTIONS(2651), + [anon_sym_DASH] = ACTIONS(2653), + [anon_sym_LBRACE] = ACTIONS(2655), + [anon_sym_DOT_DOT] = ACTIONS(2657), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2659), + [anon_sym_DOT_DOT_LT] = ACTIONS(2659), + [aux_sym__val_number_decimal_token1] = ACTIONS(2661), + [aux_sym__val_number_decimal_token2] = ACTIONS(2663), + [aux_sym__val_number_decimal_token3] = ACTIONS(2665), + [aux_sym__val_number_decimal_token4] = ACTIONS(2667), + [aux_sym__val_number_token1] = ACTIONS(2669), + [aux_sym__val_number_token2] = ACTIONS(2669), + [aux_sym__val_number_token3] = ACTIONS(2669), + [anon_sym_0b] = ACTIONS(2671), + [anon_sym_0o] = ACTIONS(2673), + [anon_sym_0x] = ACTIONS(2673), + [sym_val_date] = ACTIONS(2675), + [anon_sym_DQUOTE] = ACTIONS(2677), + [sym__str_single_quotes] = ACTIONS(2679), + [sym__str_back_ticks] = ACTIONS(2679), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2681), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2683), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(2689), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2691), + }, + [718] = { + [sym_expr_parenthesized] = STATE(1464), + [sym_val_range] = STATE(1815), + [sym__val_range] = STATE(7767), + [sym__val_range_with_end] = STATE(7549), + [sym__value] = STATE(1815), + [sym_val_nothing] = STATE(1587), + [sym_val_bool] = STATE(1412), + [sym_val_variable] = STATE(1346), + [sym_val_number] = STATE(1587), + [sym__val_number_decimal] = STATE(1165), + [sym__val_number] = STATE(1646), + [sym_val_duration] = STATE(1587), + [sym_val_filesize] = STATE(1587), + [sym_val_binary] = STATE(1587), + [sym_val_string] = STATE(1587), + [sym__raw_str] = STATE(1640), + [sym__str_double_quotes] = STATE(1640), + [sym_val_interpolated] = STATE(1587), + [sym__inter_single_quotes] = STATE(1696), + [sym__inter_double_quotes] = STATE(1642), + [sym_val_list] = STATE(1587), + [sym_val_record] = STATE(1587), + [sym_val_table] = STATE(1587), + [sym_val_closure] = STATE(1587), + [sym__flag] = STATE(1815), + [sym_short_flag] = STATE(1673), + [sym_long_flag] = STATE(1673), + [sym_unquoted] = STATE(1555), + [sym__unquoted_with_expr] = STATE(1821), + [sym__unquoted_anonymous_prefix] = STATE(6757), + [sym_comment] = STATE(718), + [aux_sym_shebang_repeat1] = STATE(785), + [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(719), + [anon_sym_true] = ACTIONS(2637), + [anon_sym_false] = ACTIONS(2637), + [anon_sym_null] = ACTIONS(2639), + [aux_sym_cmd_identifier_token38] = ACTIONS(2641), + [aux_sym_cmd_identifier_token39] = ACTIONS(2641), + [aux_sym_cmd_identifier_token40] = ACTIONS(2641), + [sym__newline] = ACTIONS(2695), + [anon_sym_SEMI] = ACTIONS(2786), + [anon_sym_PIPE] = ACTIONS(2786), + [anon_sym_err_GT_PIPE] = ACTIONS(2786), + [anon_sym_out_GT_PIPE] = ACTIONS(2786), + [anon_sym_e_GT_PIPE] = ACTIONS(2786), + [anon_sym_o_GT_PIPE] = ACTIONS(2786), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2786), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2786), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2786), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2786), + [anon_sym_LBRACK] = ACTIONS(2645), + [anon_sym_LPAREN] = ACTIONS(2647), + [anon_sym_RPAREN] = ACTIONS(2786), + [anon_sym_DOLLAR] = ACTIONS(2649), + [anon_sym_DASH_DASH] = ACTIONS(2651), + [anon_sym_DASH] = ACTIONS(2653), + [anon_sym_LBRACE] = ACTIONS(2655), + [anon_sym_DOT_DOT] = ACTIONS(2657), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2659), + [anon_sym_DOT_DOT_LT] = ACTIONS(2659), + [aux_sym__val_number_decimal_token1] = ACTIONS(2661), + [aux_sym__val_number_decimal_token2] = ACTIONS(2663), + [aux_sym__val_number_decimal_token3] = ACTIONS(2665), + [aux_sym__val_number_decimal_token4] = ACTIONS(2667), + [aux_sym__val_number_token1] = ACTIONS(2669), + [aux_sym__val_number_token2] = ACTIONS(2669), + [aux_sym__val_number_token3] = ACTIONS(2669), + [anon_sym_0b] = ACTIONS(2671), + [anon_sym_0o] = ACTIONS(2673), + [anon_sym_0x] = ACTIONS(2673), + [sym_val_date] = ACTIONS(2675), + [anon_sym_DQUOTE] = ACTIONS(2677), + [sym__str_single_quotes] = ACTIONS(2679), + [sym__str_back_ticks] = ACTIONS(2679), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2681), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2683), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(2689), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2691), + }, + [719] = { + [sym_expr_parenthesized] = STATE(1464), + [sym_val_range] = STATE(1815), + [sym__val_range] = STATE(7767), + [sym__val_range_with_end] = STATE(7549), + [sym__value] = STATE(1815), + [sym_val_nothing] = STATE(1587), + [sym_val_bool] = STATE(1412), + [sym_val_variable] = STATE(1346), + [sym_val_number] = STATE(1587), + [sym__val_number_decimal] = STATE(1165), + [sym__val_number] = STATE(1646), + [sym_val_duration] = STATE(1587), + [sym_val_filesize] = STATE(1587), + [sym_val_binary] = STATE(1587), + [sym_val_string] = STATE(1587), + [sym__raw_str] = STATE(1640), + [sym__str_double_quotes] = STATE(1640), + [sym_val_interpolated] = STATE(1587), + [sym__inter_single_quotes] = STATE(1696), + [sym__inter_double_quotes] = STATE(1642), + [sym_val_list] = STATE(1587), + [sym_val_record] = STATE(1587), + [sym_val_table] = STATE(1587), + [sym_val_closure] = STATE(1587), + [sym__flag] = STATE(1815), + [sym_short_flag] = STATE(1673), + [sym_long_flag] = STATE(1673), + [sym_unquoted] = STATE(1555), + [sym__unquoted_with_expr] = STATE(1821), + [sym__unquoted_anonymous_prefix] = STATE(6757), + [sym_comment] = STATE(719), + [aux_sym_shebang_repeat1] = STATE(785), + [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(719), + [anon_sym_true] = ACTIONS(2788), + [anon_sym_false] = ACTIONS(2788), + [anon_sym_null] = ACTIONS(2791), + [aux_sym_cmd_identifier_token38] = ACTIONS(2794), + [aux_sym_cmd_identifier_token39] = ACTIONS(2794), + [aux_sym_cmd_identifier_token40] = ACTIONS(2794), + [sym__newline] = ACTIONS(2797), + [anon_sym_SEMI] = ACTIONS(2800), + [anon_sym_PIPE] = ACTIONS(2800), + [anon_sym_err_GT_PIPE] = ACTIONS(2800), + [anon_sym_out_GT_PIPE] = ACTIONS(2800), + [anon_sym_e_GT_PIPE] = ACTIONS(2800), + [anon_sym_o_GT_PIPE] = ACTIONS(2800), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2800), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2800), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2800), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2800), + [anon_sym_LBRACK] = ACTIONS(2802), + [anon_sym_LPAREN] = ACTIONS(2805), + [anon_sym_RPAREN] = ACTIONS(2800), + [anon_sym_DOLLAR] = ACTIONS(2808), + [anon_sym_DASH_DASH] = ACTIONS(2811), + [anon_sym_DASH] = ACTIONS(2814), + [anon_sym_LBRACE] = ACTIONS(2817), + [anon_sym_DOT_DOT] = ACTIONS(2820), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2823), + [anon_sym_DOT_DOT_LT] = ACTIONS(2823), + [aux_sym__val_number_decimal_token1] = ACTIONS(2826), + [aux_sym__val_number_decimal_token2] = ACTIONS(2829), + [aux_sym__val_number_decimal_token3] = ACTIONS(2832), + [aux_sym__val_number_decimal_token4] = ACTIONS(2835), + [aux_sym__val_number_token1] = ACTIONS(2838), + [aux_sym__val_number_token2] = ACTIONS(2838), + [aux_sym__val_number_token3] = ACTIONS(2838), + [anon_sym_0b] = ACTIONS(2841), + [anon_sym_0o] = ACTIONS(2844), + [anon_sym_0x] = ACTIONS(2844), + [sym_val_date] = ACTIONS(2847), + [anon_sym_DQUOTE] = ACTIONS(2850), + [sym__str_single_quotes] = ACTIONS(2853), + [sym__str_back_ticks] = ACTIONS(2853), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2856), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2859), + [anon_sym_err_GT] = ACTIONS(2862), + [anon_sym_out_GT] = ACTIONS(2862), + [anon_sym_e_GT] = ACTIONS(2862), + [anon_sym_o_GT] = ACTIONS(2862), + [anon_sym_err_PLUSout_GT] = ACTIONS(2862), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2862), + [anon_sym_o_PLUSe_GT] = ACTIONS(2862), + [anon_sym_e_PLUSo_GT] = ACTIONS(2862), + [anon_sym_err_GT_GT] = ACTIONS(2865), + [anon_sym_out_GT_GT] = ACTIONS(2865), + [anon_sym_e_GT_GT] = ACTIONS(2865), + [anon_sym_o_GT_GT] = ACTIONS(2865), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2865), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2865), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2865), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2865), + [aux_sym_unquoted_token1] = ACTIONS(2868), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2871), + }, + [720] = { + [sym_expr_parenthesized] = STATE(1425), + [sym_val_range] = STATE(1755), + [sym__val_range] = STATE(7659), + [sym__val_range_with_end] = STATE(7482), + [sym__value] = STATE(1755), + [sym_val_nothing] = STATE(1819), + [sym_val_bool] = STATE(1537), + [sym_val_variable] = STATE(1451), + [sym_val_number] = STATE(1819), + [sym__val_number_decimal] = STATE(1185), + [sym__val_number] = STATE(1792), + [sym_val_duration] = STATE(1819), + [sym_val_filesize] = STATE(1819), + [sym_val_binary] = STATE(1819), + [sym_val_string] = STATE(1819), + [sym__raw_str] = STATE(1795), + [sym__str_double_quotes] = STATE(1795), + [sym_val_interpolated] = STATE(1819), + [sym__inter_single_quotes] = STATE(1749), + [sym__inter_double_quotes] = STATE(1750), + [sym_val_list] = STATE(1819), + [sym_val_record] = STATE(1819), + [sym_val_table] = STATE(1819), + [sym_val_closure] = STATE(1819), + [sym__flag] = STATE(1755), + [sym_short_flag] = STATE(1789), + [sym_long_flag] = STATE(1789), + [sym_unquoted] = STATE(1539), + [sym__unquoted_with_expr] = STATE(1793), + [sym__unquoted_anonymous_prefix] = STATE(6858), + [sym_comment] = STATE(720), + [aux_sym_ctrl_do_repeat2] = STATE(722), + [ts_builtin_sym_end] = ACTIONS(2699), + [anon_sym_true] = ACTIONS(2874), + [anon_sym_false] = ACTIONS(2874), + [anon_sym_null] = ACTIONS(2876), + [aux_sym_cmd_identifier_token38] = ACTIONS(2878), + [aux_sym_cmd_identifier_token39] = ACTIONS(2878), + [aux_sym_cmd_identifier_token40] = ACTIONS(2878), + [sym__newline] = ACTIONS(2699), + [anon_sym_SEMI] = ACTIONS(2699), + [anon_sym_PIPE] = ACTIONS(2699), + [anon_sym_err_GT_PIPE] = ACTIONS(2699), + [anon_sym_out_GT_PIPE] = ACTIONS(2699), + [anon_sym_e_GT_PIPE] = ACTIONS(2699), + [anon_sym_o_GT_PIPE] = ACTIONS(2699), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2699), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2699), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2699), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2699), + [anon_sym_LBRACK] = ACTIONS(2880), + [anon_sym_LPAREN] = ACTIONS(2882), + [anon_sym_DOLLAR] = ACTIONS(2884), + [anon_sym_DASH_DASH] = ACTIONS(2886), + [anon_sym_DASH] = ACTIONS(2888), + [anon_sym_LBRACE] = ACTIONS(2890), + [anon_sym_DOT_DOT] = ACTIONS(2892), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2894), + [anon_sym_DOT_DOT_LT] = ACTIONS(2894), + [aux_sym__val_number_decimal_token1] = ACTIONS(2896), + [aux_sym__val_number_decimal_token2] = ACTIONS(2898), + [aux_sym__val_number_decimal_token3] = ACTIONS(2900), + [aux_sym__val_number_decimal_token4] = ACTIONS(2902), + [aux_sym__val_number_token1] = ACTIONS(2904), + [aux_sym__val_number_token2] = ACTIONS(2904), + [aux_sym__val_number_token3] = ACTIONS(2904), + [anon_sym_0b] = ACTIONS(2906), + [anon_sym_0o] = ACTIONS(2908), + [anon_sym_0x] = ACTIONS(2908), + [sym_val_date] = ACTIONS(2910), + [anon_sym_DQUOTE] = ACTIONS(2912), + [sym__str_single_quotes] = ACTIONS(2914), + [sym__str_back_ticks] = ACTIONS(2914), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2916), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2918), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(2920), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2922), + }, + [721] = { + [sym_expr_parenthesized] = STATE(1425), + [sym_val_range] = STATE(1755), + [sym__val_range] = STATE(7659), + [sym__val_range_with_end] = STATE(7482), + [sym__value] = STATE(1755), + [sym_val_nothing] = STATE(1819), + [sym_val_bool] = STATE(1537), + [sym_val_variable] = STATE(1451), + [sym_val_number] = STATE(1819), + [sym__val_number_decimal] = STATE(1185), + [sym__val_number] = STATE(1792), + [sym_val_duration] = STATE(1819), + [sym_val_filesize] = STATE(1819), + [sym_val_binary] = STATE(1819), + [sym_val_string] = STATE(1819), + [sym__raw_str] = STATE(1795), + [sym__str_double_quotes] = STATE(1795), + [sym_val_interpolated] = STATE(1819), + [sym__inter_single_quotes] = STATE(1749), + [sym__inter_double_quotes] = STATE(1750), + [sym_val_list] = STATE(1819), + [sym_val_record] = STATE(1819), + [sym_val_table] = STATE(1819), + [sym_val_closure] = STATE(1819), + [sym__flag] = STATE(1755), + [sym_short_flag] = STATE(1789), + [sym_long_flag] = STATE(1789), + [sym_unquoted] = STATE(1539), + [sym__unquoted_with_expr] = STATE(1793), + [sym__unquoted_anonymous_prefix] = STATE(6858), + [sym_comment] = STATE(721), + [aux_sym_ctrl_do_repeat2] = STATE(722), + [ts_builtin_sym_end] = ACTIONS(2693), + [anon_sym_true] = ACTIONS(2874), + [anon_sym_false] = ACTIONS(2874), + [anon_sym_null] = ACTIONS(2876), + [aux_sym_cmd_identifier_token38] = ACTIONS(2878), + [aux_sym_cmd_identifier_token39] = ACTIONS(2878), + [aux_sym_cmd_identifier_token40] = ACTIONS(2878), + [sym__newline] = ACTIONS(2693), + [anon_sym_SEMI] = ACTIONS(2693), + [anon_sym_PIPE] = ACTIONS(2693), + [anon_sym_err_GT_PIPE] = ACTIONS(2693), + [anon_sym_out_GT_PIPE] = ACTIONS(2693), + [anon_sym_e_GT_PIPE] = ACTIONS(2693), + [anon_sym_o_GT_PIPE] = ACTIONS(2693), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2693), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2693), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2693), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2693), + [anon_sym_LBRACK] = ACTIONS(2880), + [anon_sym_LPAREN] = ACTIONS(2882), + [anon_sym_DOLLAR] = ACTIONS(2884), + [anon_sym_DASH_DASH] = ACTIONS(2886), + [anon_sym_DASH] = ACTIONS(2888), + [anon_sym_LBRACE] = ACTIONS(2890), + [anon_sym_DOT_DOT] = ACTIONS(2892), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2894), + [anon_sym_DOT_DOT_LT] = ACTIONS(2894), + [aux_sym__val_number_decimal_token1] = ACTIONS(2896), + [aux_sym__val_number_decimal_token2] = ACTIONS(2898), + [aux_sym__val_number_decimal_token3] = ACTIONS(2900), + [aux_sym__val_number_decimal_token4] = ACTIONS(2902), + [aux_sym__val_number_token1] = ACTIONS(2904), + [aux_sym__val_number_token2] = ACTIONS(2904), + [aux_sym__val_number_token3] = ACTIONS(2904), + [anon_sym_0b] = ACTIONS(2906), + [anon_sym_0o] = ACTIONS(2908), + [anon_sym_0x] = ACTIONS(2908), + [sym_val_date] = ACTIONS(2910), + [anon_sym_DQUOTE] = ACTIONS(2912), + [sym__str_single_quotes] = ACTIONS(2914), + [sym__str_back_ticks] = ACTIONS(2914), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2916), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2918), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(2920), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2922), + }, + [722] = { + [sym_expr_parenthesized] = STATE(1425), + [sym_val_range] = STATE(1755), + [sym__val_range] = STATE(7659), + [sym__val_range_with_end] = STATE(7482), + [sym__value] = STATE(1755), + [sym_val_nothing] = STATE(1819), + [sym_val_bool] = STATE(1537), + [sym_val_variable] = STATE(1451), + [sym_val_number] = STATE(1819), + [sym__val_number_decimal] = STATE(1185), + [sym__val_number] = STATE(1792), + [sym_val_duration] = STATE(1819), + [sym_val_filesize] = STATE(1819), + [sym_val_binary] = STATE(1819), + [sym_val_string] = STATE(1819), + [sym__raw_str] = STATE(1795), + [sym__str_double_quotes] = STATE(1795), + [sym_val_interpolated] = STATE(1819), + [sym__inter_single_quotes] = STATE(1749), + [sym__inter_double_quotes] = STATE(1750), + [sym_val_list] = STATE(1819), + [sym_val_record] = STATE(1819), + [sym_val_table] = STATE(1819), + [sym_val_closure] = STATE(1819), + [sym__flag] = STATE(1755), + [sym_short_flag] = STATE(1789), + [sym_long_flag] = STATE(1789), + [sym_unquoted] = STATE(1539), + [sym__unquoted_with_expr] = STATE(1793), + [sym__unquoted_anonymous_prefix] = STATE(6858), + [sym_comment] = STATE(722), + [aux_sym_ctrl_do_repeat2] = STATE(722), + [ts_builtin_sym_end] = ACTIONS(2710), + [anon_sym_true] = ACTIONS(2924), + [anon_sym_false] = ACTIONS(2924), + [anon_sym_null] = ACTIONS(2927), + [aux_sym_cmd_identifier_token38] = ACTIONS(2930), + [aux_sym_cmd_identifier_token39] = ACTIONS(2930), + [aux_sym_cmd_identifier_token40] = ACTIONS(2930), + [sym__newline] = ACTIONS(2710), + [anon_sym_SEMI] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(2710), + [anon_sym_err_GT_PIPE] = ACTIONS(2710), + [anon_sym_out_GT_PIPE] = ACTIONS(2710), + [anon_sym_e_GT_PIPE] = ACTIONS(2710), + [anon_sym_o_GT_PIPE] = ACTIONS(2710), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2710), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2710), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2710), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2710), + [anon_sym_LBRACK] = ACTIONS(2933), + [anon_sym_LPAREN] = ACTIONS(2936), + [anon_sym_DOLLAR] = ACTIONS(2939), + [anon_sym_DASH_DASH] = ACTIONS(2942), + [anon_sym_DASH] = ACTIONS(2945), + [anon_sym_LBRACE] = ACTIONS(2948), + [anon_sym_DOT_DOT] = ACTIONS(2951), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2954), + [anon_sym_DOT_DOT_LT] = ACTIONS(2954), + [aux_sym__val_number_decimal_token1] = ACTIONS(2957), + [aux_sym__val_number_decimal_token2] = ACTIONS(2960), + [aux_sym__val_number_decimal_token3] = ACTIONS(2963), + [aux_sym__val_number_decimal_token4] = ACTIONS(2966), + [aux_sym__val_number_token1] = ACTIONS(2969), + [aux_sym__val_number_token2] = ACTIONS(2969), + [aux_sym__val_number_token3] = ACTIONS(2969), + [anon_sym_0b] = ACTIONS(2972), + [anon_sym_0o] = ACTIONS(2975), + [anon_sym_0x] = ACTIONS(2975), + [sym_val_date] = ACTIONS(2978), + [anon_sym_DQUOTE] = ACTIONS(2981), + [sym__str_single_quotes] = ACTIONS(2984), + [sym__str_back_ticks] = ACTIONS(2984), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2987), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2990), + [anon_sym_err_GT] = ACTIONS(2772), + [anon_sym_out_GT] = ACTIONS(2772), + [anon_sym_e_GT] = ACTIONS(2772), + [anon_sym_o_GT] = ACTIONS(2772), + [anon_sym_err_PLUSout_GT] = ACTIONS(2772), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2772), + [anon_sym_o_PLUSe_GT] = ACTIONS(2772), + [anon_sym_e_PLUSo_GT] = ACTIONS(2772), + [anon_sym_err_GT_GT] = ACTIONS(2775), + [anon_sym_out_GT_GT] = ACTIONS(2775), + [anon_sym_e_GT_GT] = ACTIONS(2775), + [anon_sym_o_GT_GT] = ACTIONS(2775), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2775), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2775), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2775), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2775), + [aux_sym_unquoted_token1] = ACTIONS(2993), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2996), + }, + [723] = { + [sym_expr_parenthesized] = STATE(1425), + [sym_val_range] = STATE(1755), + [sym__val_range] = STATE(7659), + [sym__val_range_with_end] = STATE(7482), + [sym__value] = STATE(1755), + [sym_val_nothing] = STATE(1819), + [sym_val_bool] = STATE(1537), + [sym_val_variable] = STATE(1451), + [sym_val_number] = STATE(1819), + [sym__val_number_decimal] = STATE(1185), + [sym__val_number] = STATE(1792), + [sym_val_duration] = STATE(1819), + [sym_val_filesize] = STATE(1819), + [sym_val_binary] = STATE(1819), + [sym_val_string] = STATE(1819), + [sym__raw_str] = STATE(1795), + [sym__str_double_quotes] = STATE(1795), + [sym_val_interpolated] = STATE(1819), + [sym__inter_single_quotes] = STATE(1749), + [sym__inter_double_quotes] = STATE(1750), + [sym_val_list] = STATE(1819), + [sym_val_record] = STATE(1819), + [sym_val_table] = STATE(1819), + [sym_val_closure] = STATE(1819), + [sym__flag] = STATE(1755), + [sym_short_flag] = STATE(1789), + [sym_long_flag] = STATE(1789), + [sym_unquoted] = STATE(1539), + [sym__unquoted_with_expr] = STATE(1793), + [sym__unquoted_anonymous_prefix] = STATE(6858), + [sym_comment] = STATE(723), + [aux_sym_ctrl_do_repeat2] = STATE(720), + [ts_builtin_sym_end] = ACTIONS(2693), + [anon_sym_true] = ACTIONS(2874), + [anon_sym_false] = ACTIONS(2874), + [anon_sym_null] = ACTIONS(2876), + [aux_sym_cmd_identifier_token38] = ACTIONS(2878), + [aux_sym_cmd_identifier_token39] = ACTIONS(2878), + [aux_sym_cmd_identifier_token40] = ACTIONS(2878), + [sym__newline] = ACTIONS(2693), + [anon_sym_SEMI] = ACTIONS(2693), + [anon_sym_PIPE] = ACTIONS(2693), + [anon_sym_err_GT_PIPE] = ACTIONS(2693), + [anon_sym_out_GT_PIPE] = ACTIONS(2693), + [anon_sym_e_GT_PIPE] = ACTIONS(2693), + [anon_sym_o_GT_PIPE] = ACTIONS(2693), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2693), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2693), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2693), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2693), + [anon_sym_LBRACK] = ACTIONS(2880), + [anon_sym_LPAREN] = ACTIONS(2882), + [anon_sym_DOLLAR] = ACTIONS(2884), + [anon_sym_DASH_DASH] = ACTIONS(2886), + [anon_sym_DASH] = ACTIONS(2888), + [anon_sym_LBRACE] = ACTIONS(2890), + [anon_sym_DOT_DOT] = ACTIONS(2892), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2894), + [anon_sym_DOT_DOT_LT] = ACTIONS(2894), + [aux_sym__val_number_decimal_token1] = ACTIONS(2896), + [aux_sym__val_number_decimal_token2] = ACTIONS(2898), + [aux_sym__val_number_decimal_token3] = ACTIONS(2900), + [aux_sym__val_number_decimal_token4] = ACTIONS(2902), + [aux_sym__val_number_token1] = ACTIONS(2904), + [aux_sym__val_number_token2] = ACTIONS(2904), + [aux_sym__val_number_token3] = ACTIONS(2904), + [anon_sym_0b] = ACTIONS(2906), + [anon_sym_0o] = ACTIONS(2908), + [anon_sym_0x] = ACTIONS(2908), + [sym_val_date] = ACTIONS(2910), + [anon_sym_DQUOTE] = ACTIONS(2912), + [sym__str_single_quotes] = ACTIONS(2914), + [sym__str_back_ticks] = ACTIONS(2914), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2916), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2918), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(2920), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2922), + }, + [724] = { + [sym_expr_parenthesized] = STATE(1425), + [sym_val_range] = STATE(1755), + [sym__val_range] = STATE(7659), + [sym__val_range_with_end] = STATE(7482), + [sym__value] = STATE(1755), + [sym_val_nothing] = STATE(1819), + [sym_val_bool] = STATE(1537), + [sym_val_variable] = STATE(1451), + [sym_val_number] = STATE(1819), + [sym__val_number_decimal] = STATE(1185), + [sym__val_number] = STATE(1792), + [sym_val_duration] = STATE(1819), + [sym_val_filesize] = STATE(1819), + [sym_val_binary] = STATE(1819), + [sym_val_string] = STATE(1819), + [sym__raw_str] = STATE(1795), + [sym__str_double_quotes] = STATE(1795), + [sym_val_interpolated] = STATE(1819), + [sym__inter_single_quotes] = STATE(1749), + [sym__inter_double_quotes] = STATE(1750), + [sym_val_list] = STATE(1819), + [sym_val_record] = STATE(1819), + [sym_val_table] = STATE(1819), + [sym_val_closure] = STATE(1819), + [sym__flag] = STATE(1755), + [sym_short_flag] = STATE(1789), + [sym_long_flag] = STATE(1789), + [sym_unquoted] = STATE(1539), + [sym__unquoted_with_expr] = STATE(1793), + [sym__unquoted_anonymous_prefix] = STATE(6858), + [sym_comment] = STATE(724), + [aux_sym_ctrl_do_repeat2] = STATE(721), + [ts_builtin_sym_end] = ACTIONS(2643), + [anon_sym_true] = ACTIONS(2874), + [anon_sym_false] = ACTIONS(2874), + [anon_sym_null] = ACTIONS(2876), + [aux_sym_cmd_identifier_token38] = ACTIONS(2878), + [aux_sym_cmd_identifier_token39] = ACTIONS(2878), + [aux_sym_cmd_identifier_token40] = ACTIONS(2878), + [sym__newline] = ACTIONS(2643), + [anon_sym_SEMI] = ACTIONS(2643), + [anon_sym_PIPE] = ACTIONS(2643), + [anon_sym_err_GT_PIPE] = ACTIONS(2643), + [anon_sym_out_GT_PIPE] = ACTIONS(2643), + [anon_sym_e_GT_PIPE] = ACTIONS(2643), + [anon_sym_o_GT_PIPE] = ACTIONS(2643), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2643), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2643), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2643), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2643), + [anon_sym_LBRACK] = ACTIONS(2880), + [anon_sym_LPAREN] = ACTIONS(2882), + [anon_sym_DOLLAR] = ACTIONS(2884), + [anon_sym_DASH_DASH] = ACTIONS(2886), + [anon_sym_DASH] = ACTIONS(2888), + [anon_sym_LBRACE] = ACTIONS(2890), + [anon_sym_DOT_DOT] = ACTIONS(2892), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2894), + [anon_sym_DOT_DOT_LT] = ACTIONS(2894), + [aux_sym__val_number_decimal_token1] = ACTIONS(2896), + [aux_sym__val_number_decimal_token2] = ACTIONS(2898), + [aux_sym__val_number_decimal_token3] = ACTIONS(2900), + [aux_sym__val_number_decimal_token4] = ACTIONS(2902), + [aux_sym__val_number_token1] = ACTIONS(2904), + [aux_sym__val_number_token2] = ACTIONS(2904), + [aux_sym__val_number_token3] = ACTIONS(2904), + [anon_sym_0b] = ACTIONS(2906), + [anon_sym_0o] = ACTIONS(2908), + [anon_sym_0x] = ACTIONS(2908), + [sym_val_date] = ACTIONS(2910), + [anon_sym_DQUOTE] = ACTIONS(2912), + [sym__str_single_quotes] = ACTIONS(2914), + [sym__str_back_ticks] = ACTIONS(2914), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2916), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2918), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(2920), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2922), + }, + [725] = { + [aux_sym__pipe_separator] = STATE(725), + [sym_comment] = STATE(725), + [aux_sym_shebang_repeat1] = STATE(5265), + [aux_sym_cmd_identifier_token1] = ACTIONS(2999), + [aux_sym_cmd_identifier_token2] = ACTIONS(3001), + [aux_sym_cmd_identifier_token3] = ACTIONS(3001), + [aux_sym_cmd_identifier_token4] = ACTIONS(3001), + [aux_sym_cmd_identifier_token5] = ACTIONS(3001), + [aux_sym_cmd_identifier_token6] = ACTIONS(3001), + [aux_sym_cmd_identifier_token7] = ACTIONS(3001), + [aux_sym_cmd_identifier_token8] = ACTIONS(3001), + [aux_sym_cmd_identifier_token9] = ACTIONS(2999), + [aux_sym_cmd_identifier_token10] = ACTIONS(3001), + [aux_sym_cmd_identifier_token11] = ACTIONS(3001), + [aux_sym_cmd_identifier_token12] = ACTIONS(3001), + [aux_sym_cmd_identifier_token13] = ACTIONS(2999), + [aux_sym_cmd_identifier_token14] = ACTIONS(3001), + [aux_sym_cmd_identifier_token15] = ACTIONS(2999), + [aux_sym_cmd_identifier_token16] = ACTIONS(3001), + [aux_sym_cmd_identifier_token17] = ACTIONS(3001), + [aux_sym_cmd_identifier_token18] = ACTIONS(3001), + [aux_sym_cmd_identifier_token19] = ACTIONS(3001), + [aux_sym_cmd_identifier_token20] = ACTIONS(3001), + [aux_sym_cmd_identifier_token21] = ACTIONS(3001), + [aux_sym_cmd_identifier_token22] = ACTIONS(2999), + [aux_sym_cmd_identifier_token23] = ACTIONS(2999), + [aux_sym_cmd_identifier_token24] = ACTIONS(3001), + [aux_sym_cmd_identifier_token25] = ACTIONS(2999), + [aux_sym_cmd_identifier_token26] = ACTIONS(3001), + [aux_sym_cmd_identifier_token27] = ACTIONS(2999), + [aux_sym_cmd_identifier_token28] = ACTIONS(2999), + [aux_sym_cmd_identifier_token29] = ACTIONS(2999), + [aux_sym_cmd_identifier_token30] = ACTIONS(2999), + [aux_sym_cmd_identifier_token31] = ACTIONS(3001), + [aux_sym_cmd_identifier_token32] = ACTIONS(3001), + [aux_sym_cmd_identifier_token33] = ACTIONS(3001), + [aux_sym_cmd_identifier_token34] = ACTIONS(3001), + [aux_sym_cmd_identifier_token35] = ACTIONS(3001), + [aux_sym_cmd_identifier_token36] = ACTIONS(2999), + [anon_sym_true] = ACTIONS(3001), + [anon_sym_false] = ACTIONS(3001), + [anon_sym_null] = ACTIONS(3001), + [aux_sym_cmd_identifier_token38] = ACTIONS(2999), + [aux_sym_cmd_identifier_token39] = ACTIONS(3001), + [aux_sym_cmd_identifier_token40] = ACTIONS(3001), + [sym__newline] = ACTIONS(3003), + [anon_sym_PIPE] = ACTIONS(3006), + [anon_sym_err_GT_PIPE] = ACTIONS(3006), + [anon_sym_out_GT_PIPE] = ACTIONS(3006), + [anon_sym_e_GT_PIPE] = ACTIONS(3006), + [anon_sym_o_GT_PIPE] = ACTIONS(3006), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3006), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3006), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3006), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3006), + [anon_sym_LBRACK] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(3001), + [anon_sym_DOLLAR] = ACTIONS(2999), + [anon_sym_DASH] = ACTIONS(2999), + [anon_sym_break] = ACTIONS(2999), + [anon_sym_continue] = ACTIONS(2999), + [anon_sym_do] = ACTIONS(2999), + [anon_sym_if] = ACTIONS(2999), + [anon_sym_match] = ACTIONS(2999), + [anon_sym_LBRACE] = ACTIONS(3001), + [anon_sym_DOT_DOT] = ACTIONS(2999), + [anon_sym_try] = ACTIONS(2999), + [anon_sym_return] = ACTIONS(2999), + [anon_sym_where] = ACTIONS(3001), + [aux_sym_expr_unary_token1] = ACTIONS(3001), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3001), + [anon_sym_DOT_DOT_LT] = ACTIONS(3001), + [aux_sym__val_number_decimal_token1] = ACTIONS(2999), + [aux_sym__val_number_decimal_token2] = ACTIONS(3001), + [aux_sym__val_number_decimal_token3] = ACTIONS(3001), + [aux_sym__val_number_decimal_token4] = ACTIONS(3001), + [aux_sym__val_number_token1] = ACTIONS(3001), + [aux_sym__val_number_token2] = ACTIONS(3001), + [aux_sym__val_number_token3] = ACTIONS(3001), + [anon_sym_0b] = ACTIONS(2999), + [anon_sym_0o] = ACTIONS(2999), + [anon_sym_0x] = ACTIONS(2999), + [sym_val_date] = ACTIONS(3001), + [anon_sym_DQUOTE] = ACTIONS(3001), + [sym__str_single_quotes] = ACTIONS(3001), + [sym__str_back_ticks] = ACTIONS(3001), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3001), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3001), + [aux_sym_env_var_token1] = ACTIONS(2999), + [anon_sym_CARET] = ACTIONS(3001), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3001), + }, + [726] = { + [aux_sym__pipe_separator] = STATE(725), + [sym_comment] = STATE(726), + [aux_sym_shebang_repeat1] = STATE(728), + [aux_sym_cmd_identifier_token1] = ACTIONS(3009), + [aux_sym_cmd_identifier_token2] = ACTIONS(3011), + [aux_sym_cmd_identifier_token3] = ACTIONS(3011), + [aux_sym_cmd_identifier_token4] = ACTIONS(3011), + [aux_sym_cmd_identifier_token5] = ACTIONS(3011), + [aux_sym_cmd_identifier_token6] = ACTIONS(3011), + [aux_sym_cmd_identifier_token7] = ACTIONS(3011), + [aux_sym_cmd_identifier_token8] = ACTIONS(3011), + [aux_sym_cmd_identifier_token9] = ACTIONS(3009), + [aux_sym_cmd_identifier_token10] = ACTIONS(3011), + [aux_sym_cmd_identifier_token11] = ACTIONS(3011), + [aux_sym_cmd_identifier_token12] = ACTIONS(3011), + [aux_sym_cmd_identifier_token13] = ACTIONS(3009), + [aux_sym_cmd_identifier_token14] = ACTIONS(3011), + [aux_sym_cmd_identifier_token15] = ACTIONS(3009), + [aux_sym_cmd_identifier_token16] = ACTIONS(3011), + [aux_sym_cmd_identifier_token17] = ACTIONS(3011), + [aux_sym_cmd_identifier_token18] = ACTIONS(3011), + [aux_sym_cmd_identifier_token19] = ACTIONS(3011), + [aux_sym_cmd_identifier_token20] = ACTIONS(3011), + [aux_sym_cmd_identifier_token21] = ACTIONS(3011), + [aux_sym_cmd_identifier_token22] = ACTIONS(3009), + [aux_sym_cmd_identifier_token23] = ACTIONS(3009), + [aux_sym_cmd_identifier_token24] = ACTIONS(3011), + [aux_sym_cmd_identifier_token25] = ACTIONS(3009), + [aux_sym_cmd_identifier_token26] = ACTIONS(3011), + [aux_sym_cmd_identifier_token27] = ACTIONS(3009), + [aux_sym_cmd_identifier_token28] = ACTIONS(3009), + [aux_sym_cmd_identifier_token29] = ACTIONS(3009), + [aux_sym_cmd_identifier_token30] = ACTIONS(3009), + [aux_sym_cmd_identifier_token31] = ACTIONS(3011), + [aux_sym_cmd_identifier_token32] = ACTIONS(3011), + [aux_sym_cmd_identifier_token33] = ACTIONS(3011), + [aux_sym_cmd_identifier_token34] = ACTIONS(3011), + [aux_sym_cmd_identifier_token35] = ACTIONS(3011), + [aux_sym_cmd_identifier_token36] = ACTIONS(3009), + [anon_sym_true] = ACTIONS(3011), + [anon_sym_false] = ACTIONS(3011), + [anon_sym_null] = ACTIONS(3011), + [aux_sym_cmd_identifier_token38] = ACTIONS(3009), + [aux_sym_cmd_identifier_token39] = ACTIONS(3011), + [aux_sym_cmd_identifier_token40] = ACTIONS(3011), + [sym__newline] = ACTIONS(3013), + [anon_sym_PIPE] = ACTIONS(3015), + [anon_sym_err_GT_PIPE] = ACTIONS(3015), + [anon_sym_out_GT_PIPE] = ACTIONS(3015), + [anon_sym_e_GT_PIPE] = ACTIONS(3015), + [anon_sym_o_GT_PIPE] = ACTIONS(3015), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3015), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3015), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3015), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3015), + [anon_sym_LBRACK] = ACTIONS(3011), + [anon_sym_LPAREN] = ACTIONS(3011), + [anon_sym_DOLLAR] = ACTIONS(3009), + [anon_sym_DASH] = ACTIONS(3009), + [anon_sym_break] = ACTIONS(3009), + [anon_sym_continue] = ACTIONS(3009), + [anon_sym_do] = ACTIONS(3009), + [anon_sym_if] = ACTIONS(3009), + [anon_sym_match] = ACTIONS(3009), + [anon_sym_LBRACE] = ACTIONS(3011), + [anon_sym_DOT_DOT] = ACTIONS(3009), + [anon_sym_try] = ACTIONS(3009), + [anon_sym_return] = ACTIONS(3009), + [anon_sym_where] = ACTIONS(3011), + [aux_sym_expr_unary_token1] = ACTIONS(3011), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3011), + [anon_sym_DOT_DOT_LT] = ACTIONS(3011), + [aux_sym__val_number_decimal_token1] = ACTIONS(3009), + [aux_sym__val_number_decimal_token2] = ACTIONS(3011), + [aux_sym__val_number_decimal_token3] = ACTIONS(3011), [aux_sym__val_number_decimal_token4] = ACTIONS(3011), - [aux_sym__val_number_token1] = ACTIONS(2569), - [aux_sym__val_number_token2] = ACTIONS(2569), - [aux_sym__val_number_token3] = ACTIONS(2569), - [anon_sym_0b] = ACTIONS(2571), - [anon_sym_0o] = ACTIONS(2573), - [anon_sym_0x] = ACTIONS(2573), - [sym_val_date] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3015), - [sym__str_single_quotes] = ACTIONS(3017), - [sym__str_back_ticks] = ACTIONS(3017), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [anon_sym_err_GT_GT] = ACTIONS(2589), - [anon_sym_out_GT_GT] = ACTIONS(2589), - [anon_sym_e_GT_GT] = ACTIONS(2589), - [anon_sym_o_GT_GT] = ACTIONS(2589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym__val_number_token1] = ACTIONS(3011), + [aux_sym__val_number_token2] = ACTIONS(3011), + [aux_sym__val_number_token3] = ACTIONS(3011), + [anon_sym_0b] = ACTIONS(3009), + [anon_sym_0o] = ACTIONS(3009), + [anon_sym_0x] = ACTIONS(3009), + [sym_val_date] = ACTIONS(3011), + [anon_sym_DQUOTE] = ACTIONS(3011), + [sym__str_single_quotes] = ACTIONS(3011), + [sym__str_back_ticks] = ACTIONS(3011), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3011), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3011), + [aux_sym_env_var_token1] = ACTIONS(3009), + [anon_sym_CARET] = ACTIONS(3011), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3011), + }, + [727] = { + [aux_sym__pipe_separator] = STATE(725), + [sym_comment] = STATE(727), + [aux_sym_shebang_repeat1] = STATE(5265), + [aux_sym_cmd_identifier_token1] = ACTIONS(3017), + [aux_sym_cmd_identifier_token2] = ACTIONS(3019), + [aux_sym_cmd_identifier_token3] = ACTIONS(3019), + [aux_sym_cmd_identifier_token4] = ACTIONS(3019), + [aux_sym_cmd_identifier_token5] = ACTIONS(3019), + [aux_sym_cmd_identifier_token6] = ACTIONS(3019), + [aux_sym_cmd_identifier_token7] = ACTIONS(3019), + [aux_sym_cmd_identifier_token8] = ACTIONS(3019), + [aux_sym_cmd_identifier_token9] = ACTIONS(3017), + [aux_sym_cmd_identifier_token10] = ACTIONS(3019), + [aux_sym_cmd_identifier_token11] = ACTIONS(3019), + [aux_sym_cmd_identifier_token12] = ACTIONS(3019), + [aux_sym_cmd_identifier_token13] = ACTIONS(3017), + [aux_sym_cmd_identifier_token14] = ACTIONS(3019), + [aux_sym_cmd_identifier_token15] = ACTIONS(3017), + [aux_sym_cmd_identifier_token16] = ACTIONS(3019), + [aux_sym_cmd_identifier_token17] = ACTIONS(3019), + [aux_sym_cmd_identifier_token18] = ACTIONS(3019), + [aux_sym_cmd_identifier_token19] = ACTIONS(3019), + [aux_sym_cmd_identifier_token20] = ACTIONS(3019), + [aux_sym_cmd_identifier_token21] = ACTIONS(3019), + [aux_sym_cmd_identifier_token22] = ACTIONS(3017), + [aux_sym_cmd_identifier_token23] = ACTIONS(3017), + [aux_sym_cmd_identifier_token24] = ACTIONS(3019), + [aux_sym_cmd_identifier_token25] = ACTIONS(3017), + [aux_sym_cmd_identifier_token26] = ACTIONS(3019), + [aux_sym_cmd_identifier_token27] = ACTIONS(3017), + [aux_sym_cmd_identifier_token28] = ACTIONS(3017), + [aux_sym_cmd_identifier_token29] = ACTIONS(3017), + [aux_sym_cmd_identifier_token30] = ACTIONS(3017), + [aux_sym_cmd_identifier_token31] = ACTIONS(3019), + [aux_sym_cmd_identifier_token32] = ACTIONS(3019), + [aux_sym_cmd_identifier_token33] = ACTIONS(3019), + [aux_sym_cmd_identifier_token34] = ACTIONS(3019), + [aux_sym_cmd_identifier_token35] = ACTIONS(3019), + [aux_sym_cmd_identifier_token36] = ACTIONS(3017), + [anon_sym_true] = ACTIONS(3019), + [anon_sym_false] = ACTIONS(3019), + [anon_sym_null] = ACTIONS(3019), + [aux_sym_cmd_identifier_token38] = ACTIONS(3017), + [aux_sym_cmd_identifier_token39] = ACTIONS(3019), + [aux_sym_cmd_identifier_token40] = ACTIONS(3019), + [sym__newline] = ACTIONS(3021), + [anon_sym_PIPE] = ACTIONS(3015), + [anon_sym_err_GT_PIPE] = ACTIONS(3015), + [anon_sym_out_GT_PIPE] = ACTIONS(3015), + [anon_sym_e_GT_PIPE] = ACTIONS(3015), + [anon_sym_o_GT_PIPE] = ACTIONS(3015), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3015), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3015), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3015), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3015), + [anon_sym_LBRACK] = ACTIONS(3019), + [anon_sym_LPAREN] = ACTIONS(3019), + [anon_sym_DOLLAR] = ACTIONS(3017), + [anon_sym_DASH] = ACTIONS(3017), + [anon_sym_break] = ACTIONS(3017), + [anon_sym_continue] = ACTIONS(3017), + [anon_sym_do] = ACTIONS(3017), + [anon_sym_if] = ACTIONS(3017), + [anon_sym_match] = ACTIONS(3017), + [anon_sym_LBRACE] = ACTIONS(3019), + [anon_sym_DOT_DOT] = ACTIONS(3017), + [anon_sym_try] = ACTIONS(3017), + [anon_sym_return] = ACTIONS(3017), + [anon_sym_where] = ACTIONS(3019), + [aux_sym_expr_unary_token1] = ACTIONS(3019), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3019), + [anon_sym_DOT_DOT_LT] = ACTIONS(3019), + [aux_sym__val_number_decimal_token1] = ACTIONS(3017), + [aux_sym__val_number_decimal_token2] = ACTIONS(3019), + [aux_sym__val_number_decimal_token3] = ACTIONS(3019), + [aux_sym__val_number_decimal_token4] = ACTIONS(3019), + [aux_sym__val_number_token1] = ACTIONS(3019), + [aux_sym__val_number_token2] = ACTIONS(3019), + [aux_sym__val_number_token3] = ACTIONS(3019), + [anon_sym_0b] = ACTIONS(3017), + [anon_sym_0o] = ACTIONS(3017), + [anon_sym_0x] = ACTIONS(3017), + [sym_val_date] = ACTIONS(3019), + [anon_sym_DQUOTE] = ACTIONS(3019), + [sym__str_single_quotes] = ACTIONS(3019), + [sym__str_back_ticks] = ACTIONS(3019), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3019), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3019), + [aux_sym_env_var_token1] = ACTIONS(3017), + [anon_sym_CARET] = ACTIONS(3019), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3019), + }, + [728] = { + [sym_comment] = STATE(728), + [aux_sym_shebang_repeat1] = STATE(729), + [aux_sym_cmd_identifier_token1] = ACTIONS(3023), + [aux_sym_cmd_identifier_token2] = ACTIONS(3025), + [aux_sym_cmd_identifier_token3] = ACTIONS(3025), + [aux_sym_cmd_identifier_token4] = ACTIONS(3025), + [aux_sym_cmd_identifier_token5] = ACTIONS(3025), + [aux_sym_cmd_identifier_token6] = ACTIONS(3025), + [aux_sym_cmd_identifier_token7] = ACTIONS(3025), + [aux_sym_cmd_identifier_token8] = ACTIONS(3025), + [aux_sym_cmd_identifier_token9] = ACTIONS(3023), + [aux_sym_cmd_identifier_token10] = ACTIONS(3025), + [aux_sym_cmd_identifier_token11] = ACTIONS(3025), + [aux_sym_cmd_identifier_token12] = ACTIONS(3025), + [aux_sym_cmd_identifier_token13] = ACTIONS(3023), + [aux_sym_cmd_identifier_token14] = ACTIONS(3025), + [aux_sym_cmd_identifier_token15] = ACTIONS(3023), + [aux_sym_cmd_identifier_token16] = ACTIONS(3025), + [aux_sym_cmd_identifier_token17] = ACTIONS(3025), + [aux_sym_cmd_identifier_token18] = ACTIONS(3025), + [aux_sym_cmd_identifier_token19] = ACTIONS(3025), + [aux_sym_cmd_identifier_token20] = ACTIONS(3025), + [aux_sym_cmd_identifier_token21] = ACTIONS(3025), + [aux_sym_cmd_identifier_token22] = ACTIONS(3023), + [aux_sym_cmd_identifier_token23] = ACTIONS(3023), + [aux_sym_cmd_identifier_token24] = ACTIONS(3025), + [aux_sym_cmd_identifier_token25] = ACTIONS(3023), + [aux_sym_cmd_identifier_token26] = ACTIONS(3025), + [aux_sym_cmd_identifier_token27] = ACTIONS(3023), + [aux_sym_cmd_identifier_token28] = ACTIONS(3023), + [aux_sym_cmd_identifier_token29] = ACTIONS(3023), + [aux_sym_cmd_identifier_token30] = ACTIONS(3023), + [aux_sym_cmd_identifier_token31] = ACTIONS(3025), + [aux_sym_cmd_identifier_token32] = ACTIONS(3025), + [aux_sym_cmd_identifier_token33] = ACTIONS(3025), + [aux_sym_cmd_identifier_token34] = ACTIONS(3025), + [aux_sym_cmd_identifier_token35] = ACTIONS(3025), + [aux_sym_cmd_identifier_token36] = ACTIONS(3023), + [anon_sym_true] = ACTIONS(3025), + [anon_sym_false] = ACTIONS(3025), + [anon_sym_null] = ACTIONS(3025), + [aux_sym_cmd_identifier_token38] = ACTIONS(3023), + [aux_sym_cmd_identifier_token39] = ACTIONS(3025), + [aux_sym_cmd_identifier_token40] = ACTIONS(3025), + [sym__newline] = ACTIONS(3013), + [anon_sym_PIPE] = ACTIONS(3027), + [anon_sym_err_GT_PIPE] = ACTIONS(3027), + [anon_sym_out_GT_PIPE] = ACTIONS(3027), + [anon_sym_e_GT_PIPE] = ACTIONS(3027), + [anon_sym_o_GT_PIPE] = ACTIONS(3027), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3027), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3027), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3027), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3027), + [anon_sym_LBRACK] = ACTIONS(3025), + [anon_sym_LPAREN] = ACTIONS(3025), + [anon_sym_DOLLAR] = ACTIONS(3023), + [anon_sym_DASH] = ACTIONS(3023), + [anon_sym_break] = ACTIONS(3023), + [anon_sym_continue] = ACTIONS(3023), + [anon_sym_do] = ACTIONS(3023), + [anon_sym_if] = ACTIONS(3023), + [anon_sym_match] = ACTIONS(3023), + [anon_sym_LBRACE] = ACTIONS(3025), + [anon_sym_DOT_DOT] = ACTIONS(3023), + [anon_sym_try] = ACTIONS(3023), + [anon_sym_return] = ACTIONS(3023), + [anon_sym_where] = ACTIONS(3025), + [aux_sym_expr_unary_token1] = ACTIONS(3025), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3025), + [anon_sym_DOT_DOT_LT] = ACTIONS(3025), + [aux_sym__val_number_decimal_token1] = ACTIONS(3023), + [aux_sym__val_number_decimal_token2] = ACTIONS(3025), + [aux_sym__val_number_decimal_token3] = ACTIONS(3025), + [aux_sym__val_number_decimal_token4] = ACTIONS(3025), + [aux_sym__val_number_token1] = ACTIONS(3025), + [aux_sym__val_number_token2] = ACTIONS(3025), + [aux_sym__val_number_token3] = ACTIONS(3025), + [anon_sym_0b] = ACTIONS(3023), + [anon_sym_0o] = ACTIONS(3023), + [anon_sym_0x] = ACTIONS(3023), + [sym_val_date] = ACTIONS(3025), + [anon_sym_DQUOTE] = ACTIONS(3025), + [sym__str_single_quotes] = ACTIONS(3025), + [sym__str_back_ticks] = ACTIONS(3025), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3025), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3025), + [aux_sym_env_var_token1] = ACTIONS(3023), + [anon_sym_CARET] = ACTIONS(3025), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3025), + }, + [729] = { + [sym_comment] = STATE(729), + [aux_sym_shebang_repeat1] = STATE(729), + [aux_sym_cmd_identifier_token1] = ACTIONS(1349), + [aux_sym_cmd_identifier_token2] = ACTIONS(1351), + [aux_sym_cmd_identifier_token3] = ACTIONS(1351), + [aux_sym_cmd_identifier_token4] = ACTIONS(1351), + [aux_sym_cmd_identifier_token5] = ACTIONS(1351), + [aux_sym_cmd_identifier_token6] = ACTIONS(1351), + [aux_sym_cmd_identifier_token7] = ACTIONS(1351), + [aux_sym_cmd_identifier_token8] = ACTIONS(1351), + [aux_sym_cmd_identifier_token9] = ACTIONS(1349), + [aux_sym_cmd_identifier_token10] = ACTIONS(1351), + [aux_sym_cmd_identifier_token11] = ACTIONS(1351), + [aux_sym_cmd_identifier_token12] = ACTIONS(1351), + [aux_sym_cmd_identifier_token13] = ACTIONS(1349), + [aux_sym_cmd_identifier_token14] = ACTIONS(1351), + [aux_sym_cmd_identifier_token15] = ACTIONS(1349), + [aux_sym_cmd_identifier_token16] = ACTIONS(1351), + [aux_sym_cmd_identifier_token17] = ACTIONS(1351), + [aux_sym_cmd_identifier_token18] = ACTIONS(1351), + [aux_sym_cmd_identifier_token19] = ACTIONS(1351), + [aux_sym_cmd_identifier_token20] = ACTIONS(1351), + [aux_sym_cmd_identifier_token21] = ACTIONS(1351), + [aux_sym_cmd_identifier_token22] = ACTIONS(1349), + [aux_sym_cmd_identifier_token23] = ACTIONS(1349), + [aux_sym_cmd_identifier_token24] = ACTIONS(1351), + [aux_sym_cmd_identifier_token25] = ACTIONS(1349), + [aux_sym_cmd_identifier_token26] = ACTIONS(1351), + [aux_sym_cmd_identifier_token27] = ACTIONS(1349), + [aux_sym_cmd_identifier_token28] = ACTIONS(1349), + [aux_sym_cmd_identifier_token29] = ACTIONS(1349), + [aux_sym_cmd_identifier_token30] = ACTIONS(1349), + [aux_sym_cmd_identifier_token31] = ACTIONS(1351), + [aux_sym_cmd_identifier_token32] = ACTIONS(1351), + [aux_sym_cmd_identifier_token33] = ACTIONS(1351), + [aux_sym_cmd_identifier_token34] = ACTIONS(1351), + [aux_sym_cmd_identifier_token35] = ACTIONS(1351), + [aux_sym_cmd_identifier_token36] = ACTIONS(1349), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_null] = ACTIONS(1351), + [aux_sym_cmd_identifier_token38] = ACTIONS(1349), + [aux_sym_cmd_identifier_token39] = ACTIONS(1351), + [aux_sym_cmd_identifier_token40] = ACTIONS(1351), + [sym__newline] = ACTIONS(3029), + [anon_sym_PIPE] = ACTIONS(1351), + [anon_sym_err_GT_PIPE] = ACTIONS(1351), + [anon_sym_out_GT_PIPE] = ACTIONS(1351), + [anon_sym_e_GT_PIPE] = ACTIONS(1351), + [anon_sym_o_GT_PIPE] = ACTIONS(1351), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1351), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1351), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1351), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1351), + [anon_sym_LBRACK] = ACTIONS(1351), + [anon_sym_LPAREN] = ACTIONS(1351), + [anon_sym_DOLLAR] = ACTIONS(1349), + [anon_sym_DASH] = ACTIONS(1349), + [anon_sym_break] = ACTIONS(1349), + [anon_sym_continue] = ACTIONS(1349), + [anon_sym_do] = ACTIONS(1349), + [anon_sym_if] = ACTIONS(1349), + [anon_sym_match] = ACTIONS(1349), + [anon_sym_LBRACE] = ACTIONS(1351), + [anon_sym_DOT_DOT] = ACTIONS(1349), + [anon_sym_try] = ACTIONS(1349), + [anon_sym_return] = ACTIONS(1349), + [anon_sym_where] = ACTIONS(1351), + [aux_sym_expr_unary_token1] = ACTIONS(1351), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1351), + [anon_sym_DOT_DOT_LT] = ACTIONS(1351), + [aux_sym__val_number_decimal_token1] = ACTIONS(1349), + [aux_sym__val_number_decimal_token2] = ACTIONS(1351), + [aux_sym__val_number_decimal_token3] = ACTIONS(1351), + [aux_sym__val_number_decimal_token4] = ACTIONS(1351), + [aux_sym__val_number_token1] = ACTIONS(1351), + [aux_sym__val_number_token2] = ACTIONS(1351), + [aux_sym__val_number_token3] = ACTIONS(1351), + [anon_sym_0b] = ACTIONS(1349), + [anon_sym_0o] = ACTIONS(1349), + [anon_sym_0x] = ACTIONS(1349), + [sym_val_date] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1351), + [sym__str_single_quotes] = ACTIONS(1351), + [sym__str_back_ticks] = ACTIONS(1351), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1351), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1351), + [aux_sym_env_var_token1] = ACTIONS(1349), + [anon_sym_CARET] = ACTIONS(1351), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1351), + }, + [730] = { + [sym_expr_parenthesized] = STATE(6164), + [sym__spread_parenthesized] = STATE(7414), + [sym_val_range] = STATE(7423), + [sym__val_range] = STATE(7652), + [sym__val_range_with_end] = STATE(7490), + [sym__value] = STATE(7423), + [sym_val_nothing] = STATE(6921), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5774), + [sym_val_number] = STATE(6921), + [sym__val_number_decimal] = STATE(5339), + [sym__val_number] = STATE(7088), + [sym_val_duration] = STATE(6921), + [sym_val_filesize] = STATE(6921), + [sym_val_binary] = STATE(6921), + [sym_val_string] = STATE(6921), + [sym__raw_str] = STATE(5521), + [sym__str_double_quotes] = STATE(5521), + [sym_val_interpolated] = STATE(6921), + [sym__inter_single_quotes] = STATE(7044), + [sym__inter_double_quotes] = STATE(7055), + [sym_val_list] = STATE(7267), + [sym__spread_list] = STATE(7414), + [sym_list_body] = STATE(7884), + [sym_val_entry] = STATE(6779), + [sym_val_record] = STATE(6921), + [sym_val_table] = STATE(6921), + [sym_val_closure] = STATE(6921), + [sym__unquoted_in_list] = STATE(6357), + [sym__unquoted_in_list_with_expr] = STATE(7423), + [sym__unquoted_anonymous_prefix] = STATE(6796), + [sym_comment] = STATE(730), + [aux_sym_shebang_repeat1] = STATE(770), + [aux_sym_parameter_repeat2] = STATE(6382), + [aux_sym_list_body_repeat1] = STATE(782), + [anon_sym_true] = ACTIONS(3032), + [anon_sym_false] = ACTIONS(3032), + [anon_sym_null] = ACTIONS(3034), + [aux_sym_cmd_identifier_token38] = ACTIONS(3036), + [aux_sym_cmd_identifier_token39] = ACTIONS(3036), + [aux_sym_cmd_identifier_token40] = ACTIONS(3036), + [sym__newline] = ACTIONS(2583), + [anon_sym_LBRACK] = ACTIONS(3038), + [anon_sym_RBRACK] = ACTIONS(3040), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym_COMMA] = ACTIONS(2591), + [anon_sym_DOLLAR] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_DOT_DOT] = ACTIONS(3048), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), + [anon_sym_DOT_DOT_LT] = ACTIONS(3050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(3052), + [aux_sym__val_number_decimal_token2] = ACTIONS(3054), + [aux_sym__val_number_decimal_token3] = ACTIONS(3056), + [aux_sym__val_number_decimal_token4] = ACTIONS(3058), + [aux_sym__val_number_token1] = ACTIONS(3060), + [aux_sym__val_number_token2] = ACTIONS(3060), + [aux_sym__val_number_token3] = ACTIONS(3060), + [anon_sym_0b] = ACTIONS(3062), + [anon_sym_0o] = ACTIONS(3064), + [anon_sym_0x] = ACTIONS(3064), + [sym_val_date] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(3068), + [sym__str_single_quotes] = ACTIONS(3070), + [sym__str_back_ticks] = ACTIONS(3070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), + [anon_sym_err_GT] = ACTIONS(2627), + [anon_sym_out_GT] = ACTIONS(2627), + [anon_sym_e_GT] = ACTIONS(2627), + [anon_sym_o_GT] = ACTIONS(2627), + [anon_sym_err_PLUSout_GT] = ACTIONS(2627), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), + [anon_sym_o_PLUSe_GT] = ACTIONS(2627), + [anon_sym_e_PLUSo_GT] = ACTIONS(2627), + [anon_sym_err_GT_GT] = ACTIONS(2629), + [anon_sym_out_GT_GT] = ACTIONS(2629), + [anon_sym_e_GT_GT] = ACTIONS(2629), + [anon_sym_o_GT_GT] = ACTIONS(2629), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3074), + }, + [731] = { + [sym_expr_parenthesized] = STATE(6164), + [sym__spread_parenthesized] = STATE(7414), + [sym_val_range] = STATE(7423), + [sym__val_range] = STATE(7652), + [sym__val_range_with_end] = STATE(7490), + [sym__value] = STATE(7423), + [sym_val_nothing] = STATE(6921), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5774), + [sym_val_number] = STATE(6921), + [sym__val_number_decimal] = STATE(5339), + [sym__val_number] = STATE(7088), + [sym_val_duration] = STATE(6921), + [sym_val_filesize] = STATE(6921), + [sym_val_binary] = STATE(6921), + [sym_val_string] = STATE(6921), + [sym__raw_str] = STATE(5521), + [sym__str_double_quotes] = STATE(5521), + [sym_val_interpolated] = STATE(6921), + [sym__inter_single_quotes] = STATE(7044), + [sym__inter_double_quotes] = STATE(7055), + [sym_val_list] = STATE(7129), + [sym__spread_list] = STATE(7414), + [sym_list_body] = STATE(7942), + [sym_val_entry] = STATE(6779), + [sym_val_record] = STATE(6921), + [sym_val_table] = STATE(6921), + [sym_val_closure] = STATE(6921), + [sym__unquoted_in_list] = STATE(6357), + [sym__unquoted_in_list_with_expr] = STATE(7423), + [sym__unquoted_anonymous_prefix] = STATE(6796), + [sym_comment] = STATE(731), + [aux_sym_shebang_repeat1] = STATE(760), + [aux_sym_parameter_repeat2] = STATE(6382), + [aux_sym_list_body_repeat1] = STATE(782), + [anon_sym_true] = ACTIONS(3032), + [anon_sym_false] = ACTIONS(3032), + [anon_sym_null] = ACTIONS(3034), + [aux_sym_cmd_identifier_token38] = ACTIONS(3036), + [aux_sym_cmd_identifier_token39] = ACTIONS(3036), + [aux_sym_cmd_identifier_token40] = ACTIONS(3036), + [sym__newline] = ACTIONS(2583), + [anon_sym_LBRACK] = ACTIONS(3038), + [anon_sym_RBRACK] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym_COMMA] = ACTIONS(2591), + [anon_sym_DOLLAR] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_DOT_DOT] = ACTIONS(3048), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), + [anon_sym_DOT_DOT_LT] = ACTIONS(3050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(3052), + [aux_sym__val_number_decimal_token2] = ACTIONS(3054), + [aux_sym__val_number_decimal_token3] = ACTIONS(3056), + [aux_sym__val_number_decimal_token4] = ACTIONS(3058), + [aux_sym__val_number_token1] = ACTIONS(3060), + [aux_sym__val_number_token2] = ACTIONS(3060), + [aux_sym__val_number_token3] = ACTIONS(3060), + [anon_sym_0b] = ACTIONS(3062), + [anon_sym_0o] = ACTIONS(3064), + [anon_sym_0x] = ACTIONS(3064), + [sym_val_date] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(3068), + [sym__str_single_quotes] = ACTIONS(3070), + [sym__str_back_ticks] = ACTIONS(3070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), + [anon_sym_err_GT] = ACTIONS(2627), + [anon_sym_out_GT] = ACTIONS(2627), + [anon_sym_e_GT] = ACTIONS(2627), + [anon_sym_o_GT] = ACTIONS(2627), + [anon_sym_err_PLUSout_GT] = ACTIONS(2627), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), + [anon_sym_o_PLUSe_GT] = ACTIONS(2627), + [anon_sym_e_PLUSo_GT] = ACTIONS(2627), + [anon_sym_err_GT_GT] = ACTIONS(2629), + [anon_sym_out_GT_GT] = ACTIONS(2629), + [anon_sym_e_GT_GT] = ACTIONS(2629), + [anon_sym_o_GT_GT] = ACTIONS(2629), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3074), + }, + [732] = { + [sym_expr_parenthesized] = STATE(6164), + [sym__spread_parenthesized] = STATE(7414), + [sym_val_range] = STATE(7423), + [sym__val_range] = STATE(7652), + [sym__val_range_with_end] = STATE(7490), + [sym__value] = STATE(7423), + [sym_val_nothing] = STATE(6921), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5774), + [sym_val_number] = STATE(6921), + [sym__val_number_decimal] = STATE(5339), + [sym__val_number] = STATE(7088), + [sym_val_duration] = STATE(6921), + [sym_val_filesize] = STATE(6921), + [sym_val_binary] = STATE(6921), + [sym_val_string] = STATE(6921), + [sym__raw_str] = STATE(5521), + [sym__str_double_quotes] = STATE(5521), + [sym_val_interpolated] = STATE(6921), + [sym__inter_single_quotes] = STATE(7044), + [sym__inter_double_quotes] = STATE(7055), + [sym_val_list] = STATE(6921), + [sym__spread_list] = STATE(7414), + [sym_list_body] = STATE(7716), + [sym_val_entry] = STATE(6779), + [sym_val_record] = STATE(6921), + [sym_val_table] = STATE(6921), + [sym_val_closure] = STATE(6921), + [sym__unquoted_in_list] = STATE(6357), + [sym__unquoted_in_list_with_expr] = STATE(7423), + [sym__unquoted_anonymous_prefix] = STATE(6796), + [sym_comment] = STATE(732), + [aux_sym_shebang_repeat1] = STATE(761), + [aux_sym_parameter_repeat2] = STATE(6382), + [aux_sym_list_body_repeat1] = STATE(782), + [anon_sym_true] = ACTIONS(3032), + [anon_sym_false] = ACTIONS(3032), + [anon_sym_null] = ACTIONS(3034), + [aux_sym_cmd_identifier_token38] = ACTIONS(3036), + [aux_sym_cmd_identifier_token39] = ACTIONS(3036), + [aux_sym_cmd_identifier_token40] = ACTIONS(3036), + [sym__newline] = ACTIONS(2583), + [anon_sym_LBRACK] = ACTIONS(3078), + [anon_sym_RBRACK] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym_COMMA] = ACTIONS(2591), + [anon_sym_DOLLAR] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_DOT_DOT] = ACTIONS(3048), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), + [anon_sym_DOT_DOT_LT] = ACTIONS(3050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(3052), + [aux_sym__val_number_decimal_token2] = ACTIONS(3054), + [aux_sym__val_number_decimal_token3] = ACTIONS(3056), + [aux_sym__val_number_decimal_token4] = ACTIONS(3058), + [aux_sym__val_number_token1] = ACTIONS(3060), + [aux_sym__val_number_token2] = ACTIONS(3060), + [aux_sym__val_number_token3] = ACTIONS(3060), + [anon_sym_0b] = ACTIONS(3062), + [anon_sym_0o] = ACTIONS(3064), + [anon_sym_0x] = ACTIONS(3064), + [sym_val_date] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(3068), + [sym__str_single_quotes] = ACTIONS(3070), + [sym__str_back_ticks] = ACTIONS(3070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), + [anon_sym_err_GT] = ACTIONS(2627), + [anon_sym_out_GT] = ACTIONS(2627), + [anon_sym_e_GT] = ACTIONS(2627), + [anon_sym_o_GT] = ACTIONS(2627), + [anon_sym_err_PLUSout_GT] = ACTIONS(2627), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), + [anon_sym_o_PLUSe_GT] = ACTIONS(2627), + [anon_sym_e_PLUSo_GT] = ACTIONS(2627), + [anon_sym_err_GT_GT] = ACTIONS(2629), + [anon_sym_out_GT_GT] = ACTIONS(2629), + [anon_sym_e_GT_GT] = ACTIONS(2629), + [anon_sym_o_GT_GT] = ACTIONS(2629), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3074), + }, + [733] = { + [sym_expr_parenthesized] = STATE(6164), + [sym__spread_parenthesized] = STATE(7414), + [sym_val_range] = STATE(7423), + [sym__val_range] = STATE(7652), + [sym__val_range_with_end] = STATE(7490), + [sym__value] = STATE(7423), + [sym_val_nothing] = STATE(6921), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5774), + [sym_val_number] = STATE(6921), + [sym__val_number_decimal] = STATE(5339), + [sym__val_number] = STATE(7088), + [sym_val_duration] = STATE(6921), + [sym_val_filesize] = STATE(6921), + [sym_val_binary] = STATE(6921), + [sym_val_string] = STATE(6921), + [sym__raw_str] = STATE(5521), + [sym__str_double_quotes] = STATE(5521), + [sym_val_interpolated] = STATE(6921), + [sym__inter_single_quotes] = STATE(7044), + [sym__inter_double_quotes] = STATE(7055), + [sym_val_list] = STATE(6921), + [sym__spread_list] = STATE(7414), + [sym_list_body] = STATE(7719), + [sym_val_entry] = STATE(6779), + [sym_val_record] = STATE(6921), + [sym_val_table] = STATE(6921), + [sym_val_closure] = STATE(6921), + [sym__unquoted_in_list] = STATE(6357), + [sym__unquoted_in_list_with_expr] = STATE(7423), + [sym__unquoted_anonymous_prefix] = STATE(6796), + [sym_comment] = STATE(733), + [aux_sym_shebang_repeat1] = STATE(761), + [aux_sym_parameter_repeat2] = STATE(6382), + [aux_sym_list_body_repeat1] = STATE(782), + [anon_sym_true] = ACTIONS(3032), + [anon_sym_false] = ACTIONS(3032), + [anon_sym_null] = ACTIONS(3034), + [aux_sym_cmd_identifier_token38] = ACTIONS(3036), + [aux_sym_cmd_identifier_token39] = ACTIONS(3036), + [aux_sym_cmd_identifier_token40] = ACTIONS(3036), + [sym__newline] = ACTIONS(2583), + [anon_sym_LBRACK] = ACTIONS(3078), + [anon_sym_RBRACK] = ACTIONS(3082), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym_COMMA] = ACTIONS(2591), + [anon_sym_DOLLAR] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_DOT_DOT] = ACTIONS(3048), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), + [anon_sym_DOT_DOT_LT] = ACTIONS(3050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(3052), + [aux_sym__val_number_decimal_token2] = ACTIONS(3054), + [aux_sym__val_number_decimal_token3] = ACTIONS(3056), + [aux_sym__val_number_decimal_token4] = ACTIONS(3058), + [aux_sym__val_number_token1] = ACTIONS(3060), + [aux_sym__val_number_token2] = ACTIONS(3060), + [aux_sym__val_number_token3] = ACTIONS(3060), + [anon_sym_0b] = ACTIONS(3062), + [anon_sym_0o] = ACTIONS(3064), + [anon_sym_0x] = ACTIONS(3064), + [sym_val_date] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(3068), + [sym__str_single_quotes] = ACTIONS(3070), + [sym__str_back_ticks] = ACTIONS(3070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), + [anon_sym_err_GT] = ACTIONS(2627), + [anon_sym_out_GT] = ACTIONS(2627), + [anon_sym_e_GT] = ACTIONS(2627), + [anon_sym_o_GT] = ACTIONS(2627), + [anon_sym_err_PLUSout_GT] = ACTIONS(2627), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), + [anon_sym_o_PLUSe_GT] = ACTIONS(2627), + [anon_sym_e_PLUSo_GT] = ACTIONS(2627), + [anon_sym_err_GT_GT] = ACTIONS(2629), + [anon_sym_out_GT_GT] = ACTIONS(2629), + [anon_sym_e_GT_GT] = ACTIONS(2629), + [anon_sym_o_GT_GT] = ACTIONS(2629), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3074), + }, + [734] = { + [sym_comment] = STATE(734), + [aux_sym_cmd_identifier_token1] = ACTIONS(3084), + [aux_sym_cmd_identifier_token2] = ACTIONS(3086), + [aux_sym_cmd_identifier_token3] = ACTIONS(3086), + [aux_sym_cmd_identifier_token4] = ACTIONS(3086), + [aux_sym_cmd_identifier_token5] = ACTIONS(3086), + [aux_sym_cmd_identifier_token6] = ACTIONS(3086), + [aux_sym_cmd_identifier_token7] = ACTIONS(3086), + [aux_sym_cmd_identifier_token8] = ACTIONS(3086), + [aux_sym_cmd_identifier_token9] = ACTIONS(3084), + [aux_sym_cmd_identifier_token10] = ACTIONS(3086), + [aux_sym_cmd_identifier_token11] = ACTIONS(3086), + [aux_sym_cmd_identifier_token12] = ACTIONS(3086), + [aux_sym_cmd_identifier_token13] = ACTIONS(3084), + [aux_sym_cmd_identifier_token14] = ACTIONS(3086), + [aux_sym_cmd_identifier_token15] = ACTIONS(3084), + [aux_sym_cmd_identifier_token16] = ACTIONS(3086), + [aux_sym_cmd_identifier_token17] = ACTIONS(3086), + [aux_sym_cmd_identifier_token18] = ACTIONS(3086), + [aux_sym_cmd_identifier_token19] = ACTIONS(3086), + [aux_sym_cmd_identifier_token20] = ACTIONS(3086), + [aux_sym_cmd_identifier_token21] = ACTIONS(3086), + [aux_sym_cmd_identifier_token22] = ACTIONS(3084), + [aux_sym_cmd_identifier_token23] = ACTIONS(3084), + [aux_sym_cmd_identifier_token24] = ACTIONS(3086), + [aux_sym_cmd_identifier_token25] = ACTIONS(3084), + [aux_sym_cmd_identifier_token26] = ACTIONS(3086), + [aux_sym_cmd_identifier_token27] = ACTIONS(3084), + [aux_sym_cmd_identifier_token28] = ACTIONS(3084), + [aux_sym_cmd_identifier_token29] = ACTIONS(3084), + [aux_sym_cmd_identifier_token30] = ACTIONS(3084), + [aux_sym_cmd_identifier_token31] = ACTIONS(3086), + [aux_sym_cmd_identifier_token32] = ACTIONS(3086), + [aux_sym_cmd_identifier_token33] = ACTIONS(3086), + [aux_sym_cmd_identifier_token34] = ACTIONS(3086), + [aux_sym_cmd_identifier_token35] = ACTIONS(3086), + [aux_sym_cmd_identifier_token36] = ACTIONS(3084), + [anon_sym_true] = ACTIONS(3086), + [anon_sym_false] = ACTIONS(3086), + [anon_sym_null] = ACTIONS(3086), + [aux_sym_cmd_identifier_token38] = ACTIONS(3084), + [aux_sym_cmd_identifier_token39] = ACTIONS(3086), + [aux_sym_cmd_identifier_token40] = ACTIONS(3086), + [sym__newline] = ACTIONS(3086), + [anon_sym_PIPE] = ACTIONS(3086), + [anon_sym_err_GT_PIPE] = ACTIONS(3086), + [anon_sym_out_GT_PIPE] = ACTIONS(3086), + [anon_sym_e_GT_PIPE] = ACTIONS(3086), + [anon_sym_o_GT_PIPE] = ACTIONS(3086), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3086), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3086), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3086), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3086), + [anon_sym_LBRACK] = ACTIONS(3086), + [anon_sym_LPAREN] = ACTIONS(3086), + [anon_sym_DOLLAR] = ACTIONS(3084), + [anon_sym_DASH] = ACTIONS(3084), + [anon_sym_break] = ACTIONS(3084), + [anon_sym_continue] = ACTIONS(3084), + [anon_sym_do] = ACTIONS(3084), + [anon_sym_if] = ACTIONS(3084), + [anon_sym_match] = ACTIONS(3084), + [anon_sym_LBRACE] = ACTIONS(3086), + [anon_sym_DOT_DOT] = ACTIONS(3084), + [anon_sym_try] = ACTIONS(3084), + [anon_sym_return] = ACTIONS(3084), + [anon_sym_where] = ACTIONS(3086), + [aux_sym_expr_unary_token1] = ACTIONS(3086), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3086), + [anon_sym_DOT_DOT_LT] = ACTIONS(3086), + [aux_sym__val_number_decimal_token1] = ACTIONS(3084), + [aux_sym__val_number_decimal_token2] = ACTIONS(3086), + [aux_sym__val_number_decimal_token3] = ACTIONS(3086), + [aux_sym__val_number_decimal_token4] = ACTIONS(3086), + [aux_sym__val_number_token1] = ACTIONS(3086), + [aux_sym__val_number_token2] = ACTIONS(3086), + [aux_sym__val_number_token3] = ACTIONS(3086), + [anon_sym_0b] = ACTIONS(3084), + [anon_sym_0o] = ACTIONS(3084), + [anon_sym_0x] = ACTIONS(3084), + [sym_val_date] = ACTIONS(3086), + [anon_sym_DQUOTE] = ACTIONS(3086), + [sym__str_single_quotes] = ACTIONS(3086), + [sym__str_back_ticks] = ACTIONS(3086), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3086), + [aux_sym_env_var_token1] = ACTIONS(3084), + [anon_sym_CARET] = ACTIONS(3086), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3086), + }, + [735] = { + [sym_expr_parenthesized] = STATE(6164), + [sym__spread_parenthesized] = STATE(7414), + [sym_val_range] = STATE(7423), + [sym__val_range] = STATE(7652), + [sym__val_range_with_end] = STATE(7490), + [sym__value] = STATE(7423), + [sym_val_nothing] = STATE(6921), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5774), + [sym_val_number] = STATE(6921), + [sym__val_number_decimal] = STATE(5339), + [sym__val_number] = STATE(7088), + [sym_val_duration] = STATE(6921), + [sym_val_filesize] = STATE(6921), + [sym_val_binary] = STATE(6921), + [sym_val_string] = STATE(6921), + [sym__raw_str] = STATE(5521), + [sym__str_double_quotes] = STATE(5521), + [sym_val_interpolated] = STATE(6921), + [sym__inter_single_quotes] = STATE(7044), + [sym__inter_double_quotes] = STATE(7055), + [sym_val_list] = STATE(6921), + [sym__spread_list] = STATE(7414), + [sym_list_body] = STATE(7736), + [sym_val_entry] = STATE(6779), + [sym_val_record] = STATE(6921), + [sym_val_table] = STATE(6921), + [sym_val_closure] = STATE(6921), + [sym__unquoted_in_list] = STATE(6357), + [sym__unquoted_in_list_with_expr] = STATE(7423), + [sym__unquoted_anonymous_prefix] = STATE(6796), + [sym_comment] = STATE(735), + [aux_sym_shebang_repeat1] = STATE(761), + [aux_sym_parameter_repeat2] = STATE(6382), + [aux_sym_list_body_repeat1] = STATE(782), + [anon_sym_true] = ACTIONS(3032), + [anon_sym_false] = ACTIONS(3032), + [anon_sym_null] = ACTIONS(3034), + [aux_sym_cmd_identifier_token38] = ACTIONS(3036), + [aux_sym_cmd_identifier_token39] = ACTIONS(3036), + [aux_sym_cmd_identifier_token40] = ACTIONS(3036), + [sym__newline] = ACTIONS(2583), + [anon_sym_LBRACK] = ACTIONS(3078), + [anon_sym_RBRACK] = ACTIONS(3088), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym_COMMA] = ACTIONS(2591), + [anon_sym_DOLLAR] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_DOT_DOT] = ACTIONS(3048), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), + [anon_sym_DOT_DOT_LT] = ACTIONS(3050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(3052), + [aux_sym__val_number_decimal_token2] = ACTIONS(3054), + [aux_sym__val_number_decimal_token3] = ACTIONS(3056), + [aux_sym__val_number_decimal_token4] = ACTIONS(3058), + [aux_sym__val_number_token1] = ACTIONS(3060), + [aux_sym__val_number_token2] = ACTIONS(3060), + [aux_sym__val_number_token3] = ACTIONS(3060), + [anon_sym_0b] = ACTIONS(3062), + [anon_sym_0o] = ACTIONS(3064), + [anon_sym_0x] = ACTIONS(3064), + [sym_val_date] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(3068), + [sym__str_single_quotes] = ACTIONS(3070), + [sym__str_back_ticks] = ACTIONS(3070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), + [anon_sym_err_GT] = ACTIONS(2627), + [anon_sym_out_GT] = ACTIONS(2627), + [anon_sym_e_GT] = ACTIONS(2627), + [anon_sym_o_GT] = ACTIONS(2627), + [anon_sym_err_PLUSout_GT] = ACTIONS(2627), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), + [anon_sym_o_PLUSe_GT] = ACTIONS(2627), + [anon_sym_e_PLUSo_GT] = ACTIONS(2627), + [anon_sym_err_GT_GT] = ACTIONS(2629), + [anon_sym_out_GT_GT] = ACTIONS(2629), + [anon_sym_e_GT_GT] = ACTIONS(2629), + [anon_sym_o_GT_GT] = ACTIONS(2629), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3074), + }, + [736] = { + [sym_expr_parenthesized] = STATE(6164), + [sym__spread_parenthesized] = STATE(7414), + [sym_val_range] = STATE(7423), + [sym__val_range] = STATE(7652), + [sym__val_range_with_end] = STATE(7490), + [sym__value] = STATE(7423), + [sym_val_nothing] = STATE(6921), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5774), + [sym_val_number] = STATE(6921), + [sym__val_number_decimal] = STATE(5339), + [sym__val_number] = STATE(7088), + [sym_val_duration] = STATE(6921), + [sym_val_filesize] = STATE(6921), + [sym_val_binary] = STATE(6921), + [sym_val_string] = STATE(6921), + [sym__raw_str] = STATE(5521), + [sym__str_double_quotes] = STATE(5521), + [sym_val_interpolated] = STATE(6921), + [sym__inter_single_quotes] = STATE(7044), + [sym__inter_double_quotes] = STATE(7055), + [sym_val_list] = STATE(7213), + [sym__spread_list] = STATE(7414), + [sym_list_body] = STATE(8066), + [sym_val_entry] = STATE(6779), + [sym_val_record] = STATE(6921), + [sym_val_table] = STATE(6921), + [sym_val_closure] = STATE(6921), + [sym__unquoted_in_list] = STATE(6357), + [sym__unquoted_in_list_with_expr] = STATE(7423), + [sym__unquoted_anonymous_prefix] = STATE(6796), + [sym_comment] = STATE(736), + [aux_sym_shebang_repeat1] = STATE(763), + [aux_sym_parameter_repeat2] = STATE(6382), + [aux_sym_list_body_repeat1] = STATE(782), + [anon_sym_true] = ACTIONS(3032), + [anon_sym_false] = ACTIONS(3032), + [anon_sym_null] = ACTIONS(3034), + [aux_sym_cmd_identifier_token38] = ACTIONS(3036), + [aux_sym_cmd_identifier_token39] = ACTIONS(3036), + [aux_sym_cmd_identifier_token40] = ACTIONS(3036), + [sym__newline] = ACTIONS(2583), + [anon_sym_LBRACK] = ACTIONS(3038), + [anon_sym_RBRACK] = ACTIONS(3090), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym_COMMA] = ACTIONS(2591), + [anon_sym_DOLLAR] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_DOT_DOT] = ACTIONS(3048), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), + [anon_sym_DOT_DOT_LT] = ACTIONS(3050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(3052), + [aux_sym__val_number_decimal_token2] = ACTIONS(3054), + [aux_sym__val_number_decimal_token3] = ACTIONS(3056), + [aux_sym__val_number_decimal_token4] = ACTIONS(3058), + [aux_sym__val_number_token1] = ACTIONS(3060), + [aux_sym__val_number_token2] = ACTIONS(3060), + [aux_sym__val_number_token3] = ACTIONS(3060), + [anon_sym_0b] = ACTIONS(3062), + [anon_sym_0o] = ACTIONS(3064), + [anon_sym_0x] = ACTIONS(3064), + [sym_val_date] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(3068), + [sym__str_single_quotes] = ACTIONS(3070), + [sym__str_back_ticks] = ACTIONS(3070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), + [anon_sym_err_GT] = ACTIONS(2627), + [anon_sym_out_GT] = ACTIONS(2627), + [anon_sym_e_GT] = ACTIONS(2627), + [anon_sym_o_GT] = ACTIONS(2627), + [anon_sym_err_PLUSout_GT] = ACTIONS(2627), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), + [anon_sym_o_PLUSe_GT] = ACTIONS(2627), + [anon_sym_e_PLUSo_GT] = ACTIONS(2627), + [anon_sym_err_GT_GT] = ACTIONS(2629), + [anon_sym_out_GT_GT] = ACTIONS(2629), + [anon_sym_e_GT_GT] = ACTIONS(2629), + [anon_sym_o_GT_GT] = ACTIONS(2629), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3074), + }, + [737] = { + [sym_expr_parenthesized] = STATE(6164), + [sym__spread_parenthesized] = STATE(7414), + [sym_val_range] = STATE(7423), + [sym__val_range] = STATE(7652), + [sym__val_range_with_end] = STATE(7490), + [sym__value] = STATE(7423), + [sym_val_nothing] = STATE(6921), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5774), + [sym_val_number] = STATE(6921), + [sym__val_number_decimal] = STATE(5339), + [sym__val_number] = STATE(7088), + [sym_val_duration] = STATE(6921), + [sym_val_filesize] = STATE(6921), + [sym_val_binary] = STATE(6921), + [sym_val_string] = STATE(6921), + [sym__raw_str] = STATE(5521), + [sym__str_double_quotes] = STATE(5521), + [sym_val_interpolated] = STATE(6921), + [sym__inter_single_quotes] = STATE(7044), + [sym__inter_double_quotes] = STATE(7055), + [sym_val_list] = STATE(6921), + [sym__spread_list] = STATE(7414), + [sym_list_body] = STATE(7714), + [sym_val_entry] = STATE(6779), + [sym_val_record] = STATE(6921), + [sym_val_table] = STATE(6921), + [sym_val_closure] = STATE(6921), + [sym__unquoted_in_list] = STATE(6357), + [sym__unquoted_in_list_with_expr] = STATE(7423), + [sym__unquoted_anonymous_prefix] = STATE(6796), + [sym_comment] = STATE(737), + [aux_sym_shebang_repeat1] = STATE(761), + [aux_sym_parameter_repeat2] = STATE(6382), + [aux_sym_list_body_repeat1] = STATE(782), + [anon_sym_true] = ACTIONS(3032), + [anon_sym_false] = ACTIONS(3032), + [anon_sym_null] = ACTIONS(3034), + [aux_sym_cmd_identifier_token38] = ACTIONS(3036), + [aux_sym_cmd_identifier_token39] = ACTIONS(3036), + [aux_sym_cmd_identifier_token40] = ACTIONS(3036), + [sym__newline] = ACTIONS(2583), + [anon_sym_LBRACK] = ACTIONS(3078), + [anon_sym_RBRACK] = ACTIONS(3092), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym_COMMA] = ACTIONS(2591), + [anon_sym_DOLLAR] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_DOT_DOT] = ACTIONS(3048), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), + [anon_sym_DOT_DOT_LT] = ACTIONS(3050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(3052), + [aux_sym__val_number_decimal_token2] = ACTIONS(3054), + [aux_sym__val_number_decimal_token3] = ACTIONS(3056), + [aux_sym__val_number_decimal_token4] = ACTIONS(3058), + [aux_sym__val_number_token1] = ACTIONS(3060), + [aux_sym__val_number_token2] = ACTIONS(3060), + [aux_sym__val_number_token3] = ACTIONS(3060), + [anon_sym_0b] = ACTIONS(3062), + [anon_sym_0o] = ACTIONS(3064), + [anon_sym_0x] = ACTIONS(3064), + [sym_val_date] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(3068), + [sym__str_single_quotes] = ACTIONS(3070), + [sym__str_back_ticks] = ACTIONS(3070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), + [anon_sym_err_GT] = ACTIONS(2627), + [anon_sym_out_GT] = ACTIONS(2627), + [anon_sym_e_GT] = ACTIONS(2627), + [anon_sym_o_GT] = ACTIONS(2627), + [anon_sym_err_PLUSout_GT] = ACTIONS(2627), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), + [anon_sym_o_PLUSe_GT] = ACTIONS(2627), + [anon_sym_e_PLUSo_GT] = ACTIONS(2627), + [anon_sym_err_GT_GT] = ACTIONS(2629), + [anon_sym_out_GT_GT] = ACTIONS(2629), + [anon_sym_e_GT_GT] = ACTIONS(2629), + [anon_sym_o_GT_GT] = ACTIONS(2629), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3074), + }, + [738] = { + [sym_expr_parenthesized] = STATE(6164), + [sym__spread_parenthesized] = STATE(7414), + [sym_val_range] = STATE(7423), + [sym__val_range] = STATE(7652), + [sym__val_range_with_end] = STATE(7490), + [sym__value] = STATE(7423), + [sym_val_nothing] = STATE(6921), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5774), + [sym_val_number] = STATE(6921), + [sym__val_number_decimal] = STATE(5339), + [sym__val_number] = STATE(7088), + [sym_val_duration] = STATE(6921), + [sym_val_filesize] = STATE(6921), + [sym_val_binary] = STATE(6921), + [sym_val_string] = STATE(6921), + [sym__raw_str] = STATE(5521), + [sym__str_double_quotes] = STATE(5521), + [sym_val_interpolated] = STATE(6921), + [sym__inter_single_quotes] = STATE(7044), + [sym__inter_double_quotes] = STATE(7055), + [sym_val_list] = STATE(7228), + [sym__spread_list] = STATE(7414), + [sym_list_body] = STATE(7868), + [sym_val_entry] = STATE(6779), + [sym_val_record] = STATE(6921), + [sym_val_table] = STATE(6921), + [sym_val_closure] = STATE(6921), + [sym__unquoted_in_list] = STATE(6357), + [sym__unquoted_in_list_with_expr] = STATE(7423), + [sym__unquoted_anonymous_prefix] = STATE(6796), + [sym_comment] = STATE(738), + [aux_sym_shebang_repeat1] = STATE(765), + [aux_sym_parameter_repeat2] = STATE(6382), + [aux_sym_list_body_repeat1] = STATE(782), + [anon_sym_true] = ACTIONS(3032), + [anon_sym_false] = ACTIONS(3032), + [anon_sym_null] = ACTIONS(3034), + [aux_sym_cmd_identifier_token38] = ACTIONS(3036), + [aux_sym_cmd_identifier_token39] = ACTIONS(3036), + [aux_sym_cmd_identifier_token40] = ACTIONS(3036), + [sym__newline] = ACTIONS(2583), + [anon_sym_LBRACK] = ACTIONS(3038), + [anon_sym_RBRACK] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym_COMMA] = ACTIONS(2591), + [anon_sym_DOLLAR] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_DOT_DOT] = ACTIONS(3048), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), + [anon_sym_DOT_DOT_LT] = ACTIONS(3050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(3052), + [aux_sym__val_number_decimal_token2] = ACTIONS(3054), + [aux_sym__val_number_decimal_token3] = ACTIONS(3056), + [aux_sym__val_number_decimal_token4] = ACTIONS(3058), + [aux_sym__val_number_token1] = ACTIONS(3060), + [aux_sym__val_number_token2] = ACTIONS(3060), + [aux_sym__val_number_token3] = ACTIONS(3060), + [anon_sym_0b] = ACTIONS(3062), + [anon_sym_0o] = ACTIONS(3064), + [anon_sym_0x] = ACTIONS(3064), + [sym_val_date] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(3068), + [sym__str_single_quotes] = ACTIONS(3070), + [sym__str_back_ticks] = ACTIONS(3070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), + [anon_sym_err_GT] = ACTIONS(2627), + [anon_sym_out_GT] = ACTIONS(2627), + [anon_sym_e_GT] = ACTIONS(2627), + [anon_sym_o_GT] = ACTIONS(2627), + [anon_sym_err_PLUSout_GT] = ACTIONS(2627), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), + [anon_sym_o_PLUSe_GT] = ACTIONS(2627), + [anon_sym_e_PLUSo_GT] = ACTIONS(2627), + [anon_sym_err_GT_GT] = ACTIONS(2629), + [anon_sym_out_GT_GT] = ACTIONS(2629), + [anon_sym_e_GT_GT] = ACTIONS(2629), + [anon_sym_o_GT_GT] = ACTIONS(2629), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3074), + }, + [739] = { + [sym_expr_parenthesized] = STATE(6164), + [sym__spread_parenthesized] = STATE(7414), + [sym_val_range] = STATE(7423), + [sym__val_range] = STATE(7652), + [sym__val_range_with_end] = STATE(7490), + [sym__value] = STATE(7423), + [sym_val_nothing] = STATE(6921), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5774), + [sym_val_number] = STATE(6921), + [sym__val_number_decimal] = STATE(5339), + [sym__val_number] = STATE(7088), + [sym_val_duration] = STATE(6921), + [sym_val_filesize] = STATE(6921), + [sym_val_binary] = STATE(6921), + [sym_val_string] = STATE(6921), + [sym__raw_str] = STATE(5521), + [sym__str_double_quotes] = STATE(5521), + [sym_val_interpolated] = STATE(6921), + [sym__inter_single_quotes] = STATE(7044), + [sym__inter_double_quotes] = STATE(7055), + [sym_val_list] = STATE(7238), + [sym__spread_list] = STATE(7414), + [sym_list_body] = STATE(7679), + [sym_val_entry] = STATE(6779), + [sym_val_record] = STATE(6921), + [sym_val_table] = STATE(6921), + [sym_val_closure] = STATE(6921), + [sym__unquoted_in_list] = STATE(6357), + [sym__unquoted_in_list_with_expr] = STATE(7423), + [sym__unquoted_anonymous_prefix] = STATE(6796), + [sym_comment] = STATE(739), + [aux_sym_shebang_repeat1] = STATE(766), + [aux_sym_parameter_repeat2] = STATE(6382), + [aux_sym_list_body_repeat1] = STATE(782), + [anon_sym_true] = ACTIONS(3032), + [anon_sym_false] = ACTIONS(3032), + [anon_sym_null] = ACTIONS(3034), + [aux_sym_cmd_identifier_token38] = ACTIONS(3036), + [aux_sym_cmd_identifier_token39] = ACTIONS(3036), + [aux_sym_cmd_identifier_token40] = ACTIONS(3036), + [sym__newline] = ACTIONS(2583), + [anon_sym_LBRACK] = ACTIONS(3038), + [anon_sym_RBRACK] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym_COMMA] = ACTIONS(2591), + [anon_sym_DOLLAR] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_DOT_DOT] = ACTIONS(3048), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), + [anon_sym_DOT_DOT_LT] = ACTIONS(3050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(3052), + [aux_sym__val_number_decimal_token2] = ACTIONS(3054), + [aux_sym__val_number_decimal_token3] = ACTIONS(3056), + [aux_sym__val_number_decimal_token4] = ACTIONS(3058), + [aux_sym__val_number_token1] = ACTIONS(3060), + [aux_sym__val_number_token2] = ACTIONS(3060), + [aux_sym__val_number_token3] = ACTIONS(3060), + [anon_sym_0b] = ACTIONS(3062), + [anon_sym_0o] = ACTIONS(3064), + [anon_sym_0x] = ACTIONS(3064), + [sym_val_date] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(3068), + [sym__str_single_quotes] = ACTIONS(3070), + [sym__str_back_ticks] = ACTIONS(3070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), + [anon_sym_err_GT] = ACTIONS(2627), + [anon_sym_out_GT] = ACTIONS(2627), + [anon_sym_e_GT] = ACTIONS(2627), + [anon_sym_o_GT] = ACTIONS(2627), + [anon_sym_err_PLUSout_GT] = ACTIONS(2627), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), + [anon_sym_o_PLUSe_GT] = ACTIONS(2627), + [anon_sym_e_PLUSo_GT] = ACTIONS(2627), + [anon_sym_err_GT_GT] = ACTIONS(2629), + [anon_sym_out_GT_GT] = ACTIONS(2629), + [anon_sym_e_GT_GT] = ACTIONS(2629), + [anon_sym_o_GT_GT] = ACTIONS(2629), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3074), + }, + [740] = { + [sym_expr_parenthesized] = STATE(6164), + [sym__spread_parenthesized] = STATE(7414), + [sym_val_range] = STATE(7423), + [sym__val_range] = STATE(7652), + [sym__val_range_with_end] = STATE(7490), + [sym__value] = STATE(7423), + [sym_val_nothing] = STATE(6921), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5774), + [sym_val_number] = STATE(6921), + [sym__val_number_decimal] = STATE(5339), + [sym__val_number] = STATE(7088), + [sym_val_duration] = STATE(6921), + [sym_val_filesize] = STATE(6921), + [sym_val_binary] = STATE(6921), + [sym_val_string] = STATE(6921), + [sym__raw_str] = STATE(5521), + [sym__str_double_quotes] = STATE(5521), + [sym_val_interpolated] = STATE(6921), + [sym__inter_single_quotes] = STATE(7044), + [sym__inter_double_quotes] = STATE(7055), + [sym_val_list] = STATE(7129), + [sym__spread_list] = STATE(7414), + [sym_list_body] = STATE(7686), + [sym_val_entry] = STATE(6779), + [sym_val_record] = STATE(6921), + [sym_val_table] = STATE(6921), + [sym_val_closure] = STATE(6921), + [sym__unquoted_in_list] = STATE(6357), + [sym__unquoted_in_list_with_expr] = STATE(7423), + [sym__unquoted_anonymous_prefix] = STATE(6796), + [sym_comment] = STATE(740), + [aux_sym_shebang_repeat1] = STATE(760), + [aux_sym_parameter_repeat2] = STATE(6382), + [aux_sym_list_body_repeat1] = STATE(782), + [anon_sym_true] = ACTIONS(3032), + [anon_sym_false] = ACTIONS(3032), + [anon_sym_null] = ACTIONS(3034), + [aux_sym_cmd_identifier_token38] = ACTIONS(3036), + [aux_sym_cmd_identifier_token39] = ACTIONS(3036), + [aux_sym_cmd_identifier_token40] = ACTIONS(3036), + [sym__newline] = ACTIONS(2583), + [anon_sym_LBRACK] = ACTIONS(3038), + [anon_sym_RBRACK] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym_COMMA] = ACTIONS(2591), + [anon_sym_DOLLAR] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_DOT_DOT] = ACTIONS(3048), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), + [anon_sym_DOT_DOT_LT] = ACTIONS(3050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(3052), + [aux_sym__val_number_decimal_token2] = ACTIONS(3054), + [aux_sym__val_number_decimal_token3] = ACTIONS(3056), + [aux_sym__val_number_decimal_token4] = ACTIONS(3058), + [aux_sym__val_number_token1] = ACTIONS(3060), + [aux_sym__val_number_token2] = ACTIONS(3060), + [aux_sym__val_number_token3] = ACTIONS(3060), + [anon_sym_0b] = ACTIONS(3062), + [anon_sym_0o] = ACTIONS(3064), + [anon_sym_0x] = ACTIONS(3064), + [sym_val_date] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(3068), + [sym__str_single_quotes] = ACTIONS(3070), + [sym__str_back_ticks] = ACTIONS(3070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), + [anon_sym_err_GT] = ACTIONS(2627), + [anon_sym_out_GT] = ACTIONS(2627), + [anon_sym_e_GT] = ACTIONS(2627), + [anon_sym_o_GT] = ACTIONS(2627), + [anon_sym_err_PLUSout_GT] = ACTIONS(2627), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), + [anon_sym_o_PLUSe_GT] = ACTIONS(2627), + [anon_sym_e_PLUSo_GT] = ACTIONS(2627), + [anon_sym_err_GT_GT] = ACTIONS(2629), + [anon_sym_out_GT_GT] = ACTIONS(2629), + [anon_sym_e_GT_GT] = ACTIONS(2629), + [anon_sym_o_GT_GT] = ACTIONS(2629), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3074), + }, + [741] = { + [sym_expr_parenthesized] = STATE(6164), + [sym__spread_parenthesized] = STATE(7414), + [sym_val_range] = STATE(7423), + [sym__val_range] = STATE(7652), + [sym__val_range_with_end] = STATE(7490), + [sym__value] = STATE(7423), + [sym_val_nothing] = STATE(6921), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5774), + [sym_val_number] = STATE(6921), + [sym__val_number_decimal] = STATE(5339), + [sym__val_number] = STATE(7088), + [sym_val_duration] = STATE(6921), + [sym_val_filesize] = STATE(6921), + [sym_val_binary] = STATE(6921), + [sym_val_string] = STATE(6921), + [sym__raw_str] = STATE(5521), + [sym__str_double_quotes] = STATE(5521), + [sym_val_interpolated] = STATE(6921), + [sym__inter_single_quotes] = STATE(7044), + [sym__inter_double_quotes] = STATE(7055), + [sym_val_list] = STATE(7254), + [sym__spread_list] = STATE(7414), + [sym_list_body] = STATE(8072), + [sym_val_entry] = STATE(6779), + [sym_val_record] = STATE(6921), + [sym_val_table] = STATE(6921), + [sym_val_closure] = STATE(6921), + [sym__unquoted_in_list] = STATE(6357), + [sym__unquoted_in_list_with_expr] = STATE(7423), + [sym__unquoted_anonymous_prefix] = STATE(6796), + [sym_comment] = STATE(741), + [aux_sym_shebang_repeat1] = STATE(768), + [aux_sym_parameter_repeat2] = STATE(6382), + [aux_sym_list_body_repeat1] = STATE(782), + [anon_sym_true] = ACTIONS(3032), + [anon_sym_false] = ACTIONS(3032), + [anon_sym_null] = ACTIONS(3034), + [aux_sym_cmd_identifier_token38] = ACTIONS(3036), + [aux_sym_cmd_identifier_token39] = ACTIONS(3036), + [aux_sym_cmd_identifier_token40] = ACTIONS(3036), + [sym__newline] = ACTIONS(2583), + [anon_sym_LBRACK] = ACTIONS(3038), + [anon_sym_RBRACK] = ACTIONS(3100), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym_COMMA] = ACTIONS(2591), + [anon_sym_DOLLAR] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_DOT_DOT] = ACTIONS(3048), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), + [anon_sym_DOT_DOT_LT] = ACTIONS(3050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(3052), + [aux_sym__val_number_decimal_token2] = ACTIONS(3054), + [aux_sym__val_number_decimal_token3] = ACTIONS(3056), + [aux_sym__val_number_decimal_token4] = ACTIONS(3058), + [aux_sym__val_number_token1] = ACTIONS(3060), + [aux_sym__val_number_token2] = ACTIONS(3060), + [aux_sym__val_number_token3] = ACTIONS(3060), + [anon_sym_0b] = ACTIONS(3062), + [anon_sym_0o] = ACTIONS(3064), + [anon_sym_0x] = ACTIONS(3064), + [sym_val_date] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(3068), + [sym__str_single_quotes] = ACTIONS(3070), + [sym__str_back_ticks] = ACTIONS(3070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), + [anon_sym_err_GT] = ACTIONS(2627), + [anon_sym_out_GT] = ACTIONS(2627), + [anon_sym_e_GT] = ACTIONS(2627), + [anon_sym_o_GT] = ACTIONS(2627), + [anon_sym_err_PLUSout_GT] = ACTIONS(2627), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), + [anon_sym_o_PLUSe_GT] = ACTIONS(2627), + [anon_sym_e_PLUSo_GT] = ACTIONS(2627), + [anon_sym_err_GT_GT] = ACTIONS(2629), + [anon_sym_out_GT_GT] = ACTIONS(2629), + [anon_sym_e_GT_GT] = ACTIONS(2629), + [anon_sym_o_GT_GT] = ACTIONS(2629), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3074), + }, + [742] = { + [sym_expr_parenthesized] = STATE(6164), + [sym__spread_parenthesized] = STATE(7414), + [sym_val_range] = STATE(7423), + [sym__val_range] = STATE(7652), + [sym__val_range_with_end] = STATE(7490), + [sym__value] = STATE(7423), + [sym_val_nothing] = STATE(6921), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5774), + [sym_val_number] = STATE(6921), + [sym__val_number_decimal] = STATE(5339), + [sym__val_number] = STATE(7088), + [sym_val_duration] = STATE(6921), + [sym_val_filesize] = STATE(6921), + [sym_val_binary] = STATE(6921), + [sym_val_string] = STATE(6921), + [sym__raw_str] = STATE(5521), + [sym__str_double_quotes] = STATE(5521), + [sym_val_interpolated] = STATE(6921), + [sym__inter_single_quotes] = STATE(7044), + [sym__inter_double_quotes] = STATE(7055), + [sym_val_list] = STATE(7261), + [sym__spread_list] = STATE(7414), + [sym_list_body] = STATE(8025), + [sym_val_entry] = STATE(6779), + [sym_val_record] = STATE(6921), + [sym_val_table] = STATE(6921), + [sym_val_closure] = STATE(6921), + [sym__unquoted_in_list] = STATE(6357), + [sym__unquoted_in_list_with_expr] = STATE(7423), + [sym__unquoted_anonymous_prefix] = STATE(6796), + [sym_comment] = STATE(742), + [aux_sym_shebang_repeat1] = STATE(769), + [aux_sym_parameter_repeat2] = STATE(6382), + [aux_sym_list_body_repeat1] = STATE(782), + [anon_sym_true] = ACTIONS(3032), + [anon_sym_false] = ACTIONS(3032), + [anon_sym_null] = ACTIONS(3034), + [aux_sym_cmd_identifier_token38] = ACTIONS(3036), + [aux_sym_cmd_identifier_token39] = ACTIONS(3036), + [aux_sym_cmd_identifier_token40] = ACTIONS(3036), + [sym__newline] = ACTIONS(2583), + [anon_sym_LBRACK] = ACTIONS(3038), + [anon_sym_RBRACK] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym_COMMA] = ACTIONS(2591), + [anon_sym_DOLLAR] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_DOT_DOT] = ACTIONS(3048), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), + [anon_sym_DOT_DOT_LT] = ACTIONS(3050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(3052), + [aux_sym__val_number_decimal_token2] = ACTIONS(3054), + [aux_sym__val_number_decimal_token3] = ACTIONS(3056), + [aux_sym__val_number_decimal_token4] = ACTIONS(3058), + [aux_sym__val_number_token1] = ACTIONS(3060), + [aux_sym__val_number_token2] = ACTIONS(3060), + [aux_sym__val_number_token3] = ACTIONS(3060), + [anon_sym_0b] = ACTIONS(3062), + [anon_sym_0o] = ACTIONS(3064), + [anon_sym_0x] = ACTIONS(3064), + [sym_val_date] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(3068), + [sym__str_single_quotes] = ACTIONS(3070), + [sym__str_back_ticks] = ACTIONS(3070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), + [anon_sym_err_GT] = ACTIONS(2627), + [anon_sym_out_GT] = ACTIONS(2627), + [anon_sym_e_GT] = ACTIONS(2627), + [anon_sym_o_GT] = ACTIONS(2627), + [anon_sym_err_PLUSout_GT] = ACTIONS(2627), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), + [anon_sym_o_PLUSe_GT] = ACTIONS(2627), + [anon_sym_e_PLUSo_GT] = ACTIONS(2627), + [anon_sym_err_GT_GT] = ACTIONS(2629), + [anon_sym_out_GT_GT] = ACTIONS(2629), + [anon_sym_e_GT_GT] = ACTIONS(2629), + [anon_sym_o_GT_GT] = ACTIONS(2629), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3074), + }, + [743] = { + [sym_expr_parenthesized] = STATE(6164), + [sym__spread_parenthesized] = STATE(7414), + [sym_val_range] = STATE(7423), + [sym__val_range] = STATE(7652), + [sym__val_range_with_end] = STATE(7490), + [sym__value] = STATE(7423), + [sym_val_nothing] = STATE(6921), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5774), + [sym_val_number] = STATE(6921), + [sym__val_number_decimal] = STATE(5339), + [sym__val_number] = STATE(7088), + [sym_val_duration] = STATE(6921), + [sym_val_filesize] = STATE(6921), + [sym_val_binary] = STATE(6921), + [sym_val_string] = STATE(6921), + [sym__raw_str] = STATE(5521), + [sym__str_double_quotes] = STATE(5521), + [sym_val_interpolated] = STATE(6921), + [sym__inter_single_quotes] = STATE(7044), + [sym__inter_double_quotes] = STATE(7055), + [sym_val_list] = STATE(7275), + [sym__spread_list] = STATE(7414), + [sym_list_body] = STATE(7816), + [sym_val_entry] = STATE(6779), + [sym_val_record] = STATE(6921), + [sym_val_table] = STATE(6921), + [sym_val_closure] = STATE(6921), + [sym__unquoted_in_list] = STATE(6357), + [sym__unquoted_in_list_with_expr] = STATE(7423), + [sym__unquoted_anonymous_prefix] = STATE(6796), + [sym_comment] = STATE(743), + [aux_sym_shebang_repeat1] = STATE(771), + [aux_sym_parameter_repeat2] = STATE(6382), + [aux_sym_list_body_repeat1] = STATE(782), + [anon_sym_true] = ACTIONS(3032), + [anon_sym_false] = ACTIONS(3032), + [anon_sym_null] = ACTIONS(3034), + [aux_sym_cmd_identifier_token38] = ACTIONS(3036), + [aux_sym_cmd_identifier_token39] = ACTIONS(3036), + [aux_sym_cmd_identifier_token40] = ACTIONS(3036), + [sym__newline] = ACTIONS(2583), + [anon_sym_LBRACK] = ACTIONS(3038), + [anon_sym_RBRACK] = ACTIONS(3104), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym_COMMA] = ACTIONS(2591), + [anon_sym_DOLLAR] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_DOT_DOT] = ACTIONS(3048), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), + [anon_sym_DOT_DOT_LT] = ACTIONS(3050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(3052), + [aux_sym__val_number_decimal_token2] = ACTIONS(3054), + [aux_sym__val_number_decimal_token3] = ACTIONS(3056), + [aux_sym__val_number_decimal_token4] = ACTIONS(3058), + [aux_sym__val_number_token1] = ACTIONS(3060), + [aux_sym__val_number_token2] = ACTIONS(3060), + [aux_sym__val_number_token3] = ACTIONS(3060), + [anon_sym_0b] = ACTIONS(3062), + [anon_sym_0o] = ACTIONS(3064), + [anon_sym_0x] = ACTIONS(3064), + [sym_val_date] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(3068), + [sym__str_single_quotes] = ACTIONS(3070), + [sym__str_back_ticks] = ACTIONS(3070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), + [anon_sym_err_GT] = ACTIONS(2627), + [anon_sym_out_GT] = ACTIONS(2627), + [anon_sym_e_GT] = ACTIONS(2627), + [anon_sym_o_GT] = ACTIONS(2627), + [anon_sym_err_PLUSout_GT] = ACTIONS(2627), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), + [anon_sym_o_PLUSe_GT] = ACTIONS(2627), + [anon_sym_e_PLUSo_GT] = ACTIONS(2627), + [anon_sym_err_GT_GT] = ACTIONS(2629), + [anon_sym_out_GT_GT] = ACTIONS(2629), + [anon_sym_e_GT_GT] = ACTIONS(2629), + [anon_sym_o_GT_GT] = ACTIONS(2629), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3074), + }, + [744] = { + [sym_expr_parenthesized] = STATE(6164), + [sym__spread_parenthesized] = STATE(7414), + [sym_val_range] = STATE(7423), + [sym__val_range] = STATE(7652), + [sym__val_range_with_end] = STATE(7490), + [sym__value] = STATE(7423), + [sym_val_nothing] = STATE(6921), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5774), + [sym_val_number] = STATE(6921), + [sym__val_number_decimal] = STATE(5339), + [sym__val_number] = STATE(7088), + [sym_val_duration] = STATE(6921), + [sym_val_filesize] = STATE(6921), + [sym_val_binary] = STATE(6921), + [sym_val_string] = STATE(6921), + [sym__raw_str] = STATE(5521), + [sym__str_double_quotes] = STATE(5521), + [sym_val_interpolated] = STATE(6921), + [sym__inter_single_quotes] = STATE(7044), + [sym__inter_double_quotes] = STATE(7055), + [sym_val_list] = STATE(7284), + [sym__spread_list] = STATE(7414), + [sym_list_body] = STATE(7775), + [sym_val_entry] = STATE(6779), + [sym_val_record] = STATE(6921), + [sym_val_table] = STATE(6921), + [sym_val_closure] = STATE(6921), + [sym__unquoted_in_list] = STATE(6357), + [sym__unquoted_in_list_with_expr] = STATE(7423), + [sym__unquoted_anonymous_prefix] = STATE(6796), + [sym_comment] = STATE(744), + [aux_sym_shebang_repeat1] = STATE(772), + [aux_sym_parameter_repeat2] = STATE(6382), + [aux_sym_list_body_repeat1] = STATE(782), + [anon_sym_true] = ACTIONS(3032), + [anon_sym_false] = ACTIONS(3032), + [anon_sym_null] = ACTIONS(3034), + [aux_sym_cmd_identifier_token38] = ACTIONS(3036), + [aux_sym_cmd_identifier_token39] = ACTIONS(3036), + [aux_sym_cmd_identifier_token40] = ACTIONS(3036), + [sym__newline] = ACTIONS(2583), + [anon_sym_LBRACK] = ACTIONS(3038), + [anon_sym_RBRACK] = ACTIONS(3106), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym_COMMA] = ACTIONS(2591), + [anon_sym_DOLLAR] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_DOT_DOT] = ACTIONS(3048), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), + [anon_sym_DOT_DOT_LT] = ACTIONS(3050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(3052), + [aux_sym__val_number_decimal_token2] = ACTIONS(3054), + [aux_sym__val_number_decimal_token3] = ACTIONS(3056), + [aux_sym__val_number_decimal_token4] = ACTIONS(3058), + [aux_sym__val_number_token1] = ACTIONS(3060), + [aux_sym__val_number_token2] = ACTIONS(3060), + [aux_sym__val_number_token3] = ACTIONS(3060), + [anon_sym_0b] = ACTIONS(3062), + [anon_sym_0o] = ACTIONS(3064), + [anon_sym_0x] = ACTIONS(3064), + [sym_val_date] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(3068), + [sym__str_single_quotes] = ACTIONS(3070), + [sym__str_back_ticks] = ACTIONS(3070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), + [anon_sym_err_GT] = ACTIONS(2627), + [anon_sym_out_GT] = ACTIONS(2627), + [anon_sym_e_GT] = ACTIONS(2627), + [anon_sym_o_GT] = ACTIONS(2627), + [anon_sym_err_PLUSout_GT] = ACTIONS(2627), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), + [anon_sym_o_PLUSe_GT] = ACTIONS(2627), + [anon_sym_e_PLUSo_GT] = ACTIONS(2627), + [anon_sym_err_GT_GT] = ACTIONS(2629), + [anon_sym_out_GT_GT] = ACTIONS(2629), + [anon_sym_e_GT_GT] = ACTIONS(2629), + [anon_sym_o_GT_GT] = ACTIONS(2629), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3074), + }, + [745] = { + [sym_expr_parenthesized] = STATE(6164), + [sym__spread_parenthesized] = STATE(7414), + [sym_val_range] = STATE(7423), + [sym__val_range] = STATE(7652), + [sym__val_range_with_end] = STATE(7490), + [sym__value] = STATE(7423), + [sym_val_nothing] = STATE(6921), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5774), + [sym_val_number] = STATE(6921), + [sym__val_number_decimal] = STATE(5339), + [sym__val_number] = STATE(7088), + [sym_val_duration] = STATE(6921), + [sym_val_filesize] = STATE(6921), + [sym_val_binary] = STATE(6921), + [sym_val_string] = STATE(6921), + [sym__raw_str] = STATE(5521), + [sym__str_double_quotes] = STATE(5521), + [sym_val_interpolated] = STATE(6921), + [sym__inter_single_quotes] = STATE(7044), + [sym__inter_double_quotes] = STATE(7055), + [sym_val_list] = STATE(7292), + [sym__spread_list] = STATE(7414), + [sym_list_body] = STATE(7938), + [sym_val_entry] = STATE(6779), + [sym_val_record] = STATE(6921), + [sym_val_table] = STATE(6921), + [sym_val_closure] = STATE(6921), + [sym__unquoted_in_list] = STATE(6357), + [sym__unquoted_in_list_with_expr] = STATE(7423), + [sym__unquoted_anonymous_prefix] = STATE(6796), + [sym_comment] = STATE(745), + [aux_sym_shebang_repeat1] = STATE(773), + [aux_sym_parameter_repeat2] = STATE(6382), + [aux_sym_list_body_repeat1] = STATE(782), + [anon_sym_true] = ACTIONS(3032), + [anon_sym_false] = ACTIONS(3032), + [anon_sym_null] = ACTIONS(3034), + [aux_sym_cmd_identifier_token38] = ACTIONS(3036), + [aux_sym_cmd_identifier_token39] = ACTIONS(3036), + [aux_sym_cmd_identifier_token40] = ACTIONS(3036), + [sym__newline] = ACTIONS(2583), + [anon_sym_LBRACK] = ACTIONS(3038), + [anon_sym_RBRACK] = ACTIONS(3108), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym_COMMA] = ACTIONS(2591), + [anon_sym_DOLLAR] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_DOT_DOT] = ACTIONS(3048), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), + [anon_sym_DOT_DOT_LT] = ACTIONS(3050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(3052), + [aux_sym__val_number_decimal_token2] = ACTIONS(3054), + [aux_sym__val_number_decimal_token3] = ACTIONS(3056), + [aux_sym__val_number_decimal_token4] = ACTIONS(3058), + [aux_sym__val_number_token1] = ACTIONS(3060), + [aux_sym__val_number_token2] = ACTIONS(3060), + [aux_sym__val_number_token3] = ACTIONS(3060), + [anon_sym_0b] = ACTIONS(3062), + [anon_sym_0o] = ACTIONS(3064), + [anon_sym_0x] = ACTIONS(3064), + [sym_val_date] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(3068), + [sym__str_single_quotes] = ACTIONS(3070), + [sym__str_back_ticks] = ACTIONS(3070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), + [anon_sym_err_GT] = ACTIONS(2627), + [anon_sym_out_GT] = ACTIONS(2627), + [anon_sym_e_GT] = ACTIONS(2627), + [anon_sym_o_GT] = ACTIONS(2627), + [anon_sym_err_PLUSout_GT] = ACTIONS(2627), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), + [anon_sym_o_PLUSe_GT] = ACTIONS(2627), + [anon_sym_e_PLUSo_GT] = ACTIONS(2627), + [anon_sym_err_GT_GT] = ACTIONS(2629), + [anon_sym_out_GT_GT] = ACTIONS(2629), + [anon_sym_e_GT_GT] = ACTIONS(2629), + [anon_sym_o_GT_GT] = ACTIONS(2629), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3074), + }, + [746] = { + [sym_comment] = STATE(746), + [aux_sym_cmd_identifier_token1] = ACTIONS(1364), + [aux_sym_cmd_identifier_token2] = ACTIONS(1362), + [aux_sym_cmd_identifier_token3] = ACTIONS(1362), + [aux_sym_cmd_identifier_token4] = ACTIONS(1362), + [aux_sym_cmd_identifier_token5] = ACTIONS(1362), + [aux_sym_cmd_identifier_token6] = ACTIONS(1362), + [aux_sym_cmd_identifier_token7] = ACTIONS(1362), + [aux_sym_cmd_identifier_token8] = ACTIONS(1362), + [aux_sym_cmd_identifier_token9] = ACTIONS(1364), + [aux_sym_cmd_identifier_token10] = ACTIONS(1362), + [aux_sym_cmd_identifier_token11] = ACTIONS(1362), + [aux_sym_cmd_identifier_token12] = ACTIONS(1362), + [aux_sym_cmd_identifier_token13] = ACTIONS(1364), + [aux_sym_cmd_identifier_token14] = ACTIONS(1362), + [aux_sym_cmd_identifier_token15] = ACTIONS(1364), + [aux_sym_cmd_identifier_token16] = ACTIONS(1362), + [aux_sym_cmd_identifier_token17] = ACTIONS(1362), + [aux_sym_cmd_identifier_token18] = ACTIONS(1362), + [aux_sym_cmd_identifier_token19] = ACTIONS(1362), + [aux_sym_cmd_identifier_token20] = ACTIONS(1362), + [aux_sym_cmd_identifier_token21] = ACTIONS(1362), + [aux_sym_cmd_identifier_token22] = ACTIONS(1364), + [aux_sym_cmd_identifier_token23] = ACTIONS(1364), + [aux_sym_cmd_identifier_token24] = ACTIONS(1362), + [aux_sym_cmd_identifier_token25] = ACTIONS(1364), + [aux_sym_cmd_identifier_token26] = ACTIONS(1362), + [aux_sym_cmd_identifier_token27] = ACTIONS(1364), + [aux_sym_cmd_identifier_token28] = ACTIONS(1364), + [aux_sym_cmd_identifier_token29] = ACTIONS(1364), + [aux_sym_cmd_identifier_token30] = ACTIONS(1364), + [aux_sym_cmd_identifier_token31] = ACTIONS(1362), + [aux_sym_cmd_identifier_token32] = ACTIONS(1362), + [aux_sym_cmd_identifier_token33] = ACTIONS(1362), + [aux_sym_cmd_identifier_token34] = ACTIONS(1362), + [aux_sym_cmd_identifier_token35] = ACTIONS(1362), + [aux_sym_cmd_identifier_token36] = ACTIONS(1364), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1362), + [aux_sym_cmd_identifier_token38] = ACTIONS(1364), + [aux_sym_cmd_identifier_token39] = ACTIONS(1362), + [aux_sym_cmd_identifier_token40] = ACTIONS(1362), + [sym__newline] = ACTIONS(1362), + [anon_sym_PIPE] = ACTIONS(1362), + [anon_sym_err_GT_PIPE] = ACTIONS(1362), + [anon_sym_out_GT_PIPE] = ACTIONS(1362), + [anon_sym_e_GT_PIPE] = ACTIONS(1362), + [anon_sym_o_GT_PIPE] = ACTIONS(1362), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1362), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1362), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1362), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1362), + [anon_sym_LBRACK] = ACTIONS(1362), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_DOLLAR] = ACTIONS(1364), + [anon_sym_DASH] = ACTIONS(1364), + [anon_sym_break] = ACTIONS(1364), + [anon_sym_continue] = ACTIONS(1364), + [anon_sym_do] = ACTIONS(1364), + [anon_sym_if] = ACTIONS(1364), + [anon_sym_match] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1362), + [anon_sym_DOT_DOT] = ACTIONS(1364), + [anon_sym_try] = ACTIONS(1364), + [anon_sym_return] = ACTIONS(1364), + [anon_sym_where] = ACTIONS(1362), + [aux_sym_expr_unary_token1] = ACTIONS(1362), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1362), + [anon_sym_DOT_DOT_LT] = ACTIONS(1362), + [aux_sym__val_number_decimal_token1] = ACTIONS(1364), + [aux_sym__val_number_decimal_token2] = ACTIONS(1362), + [aux_sym__val_number_decimal_token3] = ACTIONS(1362), + [aux_sym__val_number_decimal_token4] = ACTIONS(1362), + [aux_sym__val_number_token1] = ACTIONS(1362), + [aux_sym__val_number_token2] = ACTIONS(1362), + [aux_sym__val_number_token3] = ACTIONS(1362), + [anon_sym_0b] = ACTIONS(1364), + [anon_sym_0o] = ACTIONS(1364), + [anon_sym_0x] = ACTIONS(1364), + [sym_val_date] = ACTIONS(1362), + [anon_sym_DQUOTE] = ACTIONS(1362), + [sym__str_single_quotes] = ACTIONS(1362), + [sym__str_back_ticks] = ACTIONS(1362), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1362), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1362), + [aux_sym_env_var_token1] = ACTIONS(1364), + [anon_sym_CARET] = ACTIONS(1362), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1362), + }, + [747] = { + [sym_expr_parenthesized] = STATE(6164), + [sym__spread_parenthesized] = STATE(7414), + [sym_val_range] = STATE(7423), + [sym__val_range] = STATE(7652), + [sym__val_range_with_end] = STATE(7490), + [sym__value] = STATE(7423), + [sym_val_nothing] = STATE(6921), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5774), + [sym_val_number] = STATE(6921), + [sym__val_number_decimal] = STATE(5339), + [sym__val_number] = STATE(7088), + [sym_val_duration] = STATE(6921), + [sym_val_filesize] = STATE(6921), + [sym_val_binary] = STATE(6921), + [sym_val_string] = STATE(6921), + [sym__raw_str] = STATE(5521), + [sym__str_double_quotes] = STATE(5521), + [sym_val_interpolated] = STATE(6921), + [sym__inter_single_quotes] = STATE(7044), + [sym__inter_double_quotes] = STATE(7055), + [sym_val_list] = STATE(7300), + [sym__spread_list] = STATE(7414), + [sym_list_body] = STATE(7650), + [sym_val_entry] = STATE(6779), + [sym_val_record] = STATE(6921), + [sym_val_table] = STATE(6921), + [sym_val_closure] = STATE(6921), + [sym__unquoted_in_list] = STATE(6357), + [sym__unquoted_in_list_with_expr] = STATE(7423), + [sym__unquoted_anonymous_prefix] = STATE(6796), + [sym_comment] = STATE(747), + [aux_sym_shebang_repeat1] = STATE(774), + [aux_sym_parameter_repeat2] = STATE(6382), + [aux_sym_list_body_repeat1] = STATE(782), + [anon_sym_true] = ACTIONS(3032), + [anon_sym_false] = ACTIONS(3032), + [anon_sym_null] = ACTIONS(3034), + [aux_sym_cmd_identifier_token38] = ACTIONS(3036), + [aux_sym_cmd_identifier_token39] = ACTIONS(3036), + [aux_sym_cmd_identifier_token40] = ACTIONS(3036), + [sym__newline] = ACTIONS(2583), + [anon_sym_LBRACK] = ACTIONS(3038), + [anon_sym_RBRACK] = ACTIONS(3110), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym_COMMA] = ACTIONS(2591), + [anon_sym_DOLLAR] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_DOT_DOT] = ACTIONS(3048), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), + [anon_sym_DOT_DOT_LT] = ACTIONS(3050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(3052), + [aux_sym__val_number_decimal_token2] = ACTIONS(3054), + [aux_sym__val_number_decimal_token3] = ACTIONS(3056), + [aux_sym__val_number_decimal_token4] = ACTIONS(3058), + [aux_sym__val_number_token1] = ACTIONS(3060), + [aux_sym__val_number_token2] = ACTIONS(3060), + [aux_sym__val_number_token3] = ACTIONS(3060), + [anon_sym_0b] = ACTIONS(3062), + [anon_sym_0o] = ACTIONS(3064), + [anon_sym_0x] = ACTIONS(3064), + [sym_val_date] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(3068), + [sym__str_single_quotes] = ACTIONS(3070), + [sym__str_back_ticks] = ACTIONS(3070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), + [anon_sym_err_GT] = ACTIONS(2627), + [anon_sym_out_GT] = ACTIONS(2627), + [anon_sym_e_GT] = ACTIONS(2627), + [anon_sym_o_GT] = ACTIONS(2627), + [anon_sym_err_PLUSout_GT] = ACTIONS(2627), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), + [anon_sym_o_PLUSe_GT] = ACTIONS(2627), + [anon_sym_e_PLUSo_GT] = ACTIONS(2627), + [anon_sym_err_GT_GT] = ACTIONS(2629), + [anon_sym_out_GT_GT] = ACTIONS(2629), + [anon_sym_e_GT_GT] = ACTIONS(2629), + [anon_sym_o_GT_GT] = ACTIONS(2629), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3074), + }, + [748] = { + [sym_expr_parenthesized] = STATE(6164), + [sym__spread_parenthesized] = STATE(7414), + [sym_val_range] = STATE(7423), + [sym__val_range] = STATE(7652), + [sym__val_range_with_end] = STATE(7490), + [sym__value] = STATE(7423), + [sym_val_nothing] = STATE(6921), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5774), + [sym_val_number] = STATE(6921), + [sym__val_number_decimal] = STATE(5339), + [sym__val_number] = STATE(7088), + [sym_val_duration] = STATE(6921), + [sym_val_filesize] = STATE(6921), + [sym_val_binary] = STATE(6921), + [sym_val_string] = STATE(6921), + [sym__raw_str] = STATE(5521), + [sym__str_double_quotes] = STATE(5521), + [sym_val_interpolated] = STATE(6921), + [sym__inter_single_quotes] = STATE(7044), + [sym__inter_double_quotes] = STATE(7055), + [sym_val_list] = STATE(7309), + [sym__spread_list] = STATE(7414), + [sym_list_body] = STATE(7857), + [sym_val_entry] = STATE(6779), + [sym_val_record] = STATE(6921), + [sym_val_table] = STATE(6921), + [sym_val_closure] = STATE(6921), + [sym__unquoted_in_list] = STATE(6357), + [sym__unquoted_in_list_with_expr] = STATE(7423), + [sym__unquoted_anonymous_prefix] = STATE(6796), + [sym_comment] = STATE(748), + [aux_sym_shebang_repeat1] = STATE(775), + [aux_sym_parameter_repeat2] = STATE(6382), + [aux_sym_list_body_repeat1] = STATE(782), + [anon_sym_true] = ACTIONS(3032), + [anon_sym_false] = ACTIONS(3032), + [anon_sym_null] = ACTIONS(3034), + [aux_sym_cmd_identifier_token38] = ACTIONS(3036), + [aux_sym_cmd_identifier_token39] = ACTIONS(3036), + [aux_sym_cmd_identifier_token40] = ACTIONS(3036), + [sym__newline] = ACTIONS(2583), + [anon_sym_LBRACK] = ACTIONS(3038), + [anon_sym_RBRACK] = ACTIONS(3112), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym_COMMA] = ACTIONS(2591), + [anon_sym_DOLLAR] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_DOT_DOT] = ACTIONS(3048), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), + [anon_sym_DOT_DOT_LT] = ACTIONS(3050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(3052), + [aux_sym__val_number_decimal_token2] = ACTIONS(3054), + [aux_sym__val_number_decimal_token3] = ACTIONS(3056), + [aux_sym__val_number_decimal_token4] = ACTIONS(3058), + [aux_sym__val_number_token1] = ACTIONS(3060), + [aux_sym__val_number_token2] = ACTIONS(3060), + [aux_sym__val_number_token3] = ACTIONS(3060), + [anon_sym_0b] = ACTIONS(3062), + [anon_sym_0o] = ACTIONS(3064), + [anon_sym_0x] = ACTIONS(3064), + [sym_val_date] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(3068), + [sym__str_single_quotes] = ACTIONS(3070), + [sym__str_back_ticks] = ACTIONS(3070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), + [anon_sym_err_GT] = ACTIONS(2627), + [anon_sym_out_GT] = ACTIONS(2627), + [anon_sym_e_GT] = ACTIONS(2627), + [anon_sym_o_GT] = ACTIONS(2627), + [anon_sym_err_PLUSout_GT] = ACTIONS(2627), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), + [anon_sym_o_PLUSe_GT] = ACTIONS(2627), + [anon_sym_e_PLUSo_GT] = ACTIONS(2627), + [anon_sym_err_GT_GT] = ACTIONS(2629), + [anon_sym_out_GT_GT] = ACTIONS(2629), + [anon_sym_e_GT_GT] = ACTIONS(2629), + [anon_sym_o_GT_GT] = ACTIONS(2629), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3074), + }, + [749] = { + [sym_expr_parenthesized] = STATE(6164), + [sym__spread_parenthesized] = STATE(7414), + [sym_val_range] = STATE(7423), + [sym__val_range] = STATE(7652), + [sym__val_range_with_end] = STATE(7490), + [sym__value] = STATE(7423), + [sym_val_nothing] = STATE(6921), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5774), + [sym_val_number] = STATE(6921), + [sym__val_number_decimal] = STATE(5339), + [sym__val_number] = STATE(7088), + [sym_val_duration] = STATE(6921), + [sym_val_filesize] = STATE(6921), + [sym_val_binary] = STATE(6921), + [sym_val_string] = STATE(6921), + [sym__raw_str] = STATE(5521), + [sym__str_double_quotes] = STATE(5521), + [sym_val_interpolated] = STATE(6921), + [sym__inter_single_quotes] = STATE(7044), + [sym__inter_double_quotes] = STATE(7055), + [sym_val_list] = STATE(7319), + [sym__spread_list] = STATE(7414), + [sym_list_body] = STATE(7646), + [sym_val_entry] = STATE(6779), + [sym_val_record] = STATE(6921), + [sym_val_table] = STATE(6921), + [sym_val_closure] = STATE(6921), + [sym__unquoted_in_list] = STATE(6357), + [sym__unquoted_in_list_with_expr] = STATE(7423), + [sym__unquoted_anonymous_prefix] = STATE(6796), + [sym_comment] = STATE(749), + [aux_sym_shebang_repeat1] = STATE(776), + [aux_sym_parameter_repeat2] = STATE(6382), + [aux_sym_list_body_repeat1] = STATE(782), + [anon_sym_true] = ACTIONS(3032), + [anon_sym_false] = ACTIONS(3032), + [anon_sym_null] = ACTIONS(3034), + [aux_sym_cmd_identifier_token38] = ACTIONS(3036), + [aux_sym_cmd_identifier_token39] = ACTIONS(3036), + [aux_sym_cmd_identifier_token40] = ACTIONS(3036), + [sym__newline] = ACTIONS(2583), + [anon_sym_LBRACK] = ACTIONS(3038), + [anon_sym_RBRACK] = ACTIONS(3114), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym_COMMA] = ACTIONS(2591), + [anon_sym_DOLLAR] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_DOT_DOT] = ACTIONS(3048), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), + [anon_sym_DOT_DOT_LT] = ACTIONS(3050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(3052), + [aux_sym__val_number_decimal_token2] = ACTIONS(3054), + [aux_sym__val_number_decimal_token3] = ACTIONS(3056), + [aux_sym__val_number_decimal_token4] = ACTIONS(3058), + [aux_sym__val_number_token1] = ACTIONS(3060), + [aux_sym__val_number_token2] = ACTIONS(3060), + [aux_sym__val_number_token3] = ACTIONS(3060), + [anon_sym_0b] = ACTIONS(3062), + [anon_sym_0o] = ACTIONS(3064), + [anon_sym_0x] = ACTIONS(3064), + [sym_val_date] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(3068), + [sym__str_single_quotes] = ACTIONS(3070), + [sym__str_back_ticks] = ACTIONS(3070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), + [anon_sym_err_GT] = ACTIONS(2627), + [anon_sym_out_GT] = ACTIONS(2627), + [anon_sym_e_GT] = ACTIONS(2627), + [anon_sym_o_GT] = ACTIONS(2627), + [anon_sym_err_PLUSout_GT] = ACTIONS(2627), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), + [anon_sym_o_PLUSe_GT] = ACTIONS(2627), + [anon_sym_e_PLUSo_GT] = ACTIONS(2627), + [anon_sym_err_GT_GT] = ACTIONS(2629), + [anon_sym_out_GT_GT] = ACTIONS(2629), + [anon_sym_e_GT_GT] = ACTIONS(2629), + [anon_sym_o_GT_GT] = ACTIONS(2629), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3074), + }, + [750] = { + [sym_expr_parenthesized] = STATE(6164), + [sym__spread_parenthesized] = STATE(7414), + [sym_val_range] = STATE(7423), + [sym__val_range] = STATE(7652), + [sym__val_range_with_end] = STATE(7490), + [sym__value] = STATE(7423), + [sym_val_nothing] = STATE(6921), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5774), + [sym_val_number] = STATE(6921), + [sym__val_number_decimal] = STATE(5339), + [sym__val_number] = STATE(7088), + [sym_val_duration] = STATE(6921), + [sym_val_filesize] = STATE(6921), + [sym_val_binary] = STATE(6921), + [sym_val_string] = STATE(6921), + [sym__raw_str] = STATE(5521), + [sym__str_double_quotes] = STATE(5521), + [sym_val_interpolated] = STATE(6921), + [sym__inter_single_quotes] = STATE(7044), + [sym__inter_double_quotes] = STATE(7055), + [sym_val_list] = STATE(7336), + [sym__spread_list] = STATE(7414), + [sym_list_body] = STATE(7808), + [sym_val_entry] = STATE(6779), + [sym_val_record] = STATE(6921), + [sym_val_table] = STATE(6921), + [sym_val_closure] = STATE(6921), + [sym__unquoted_in_list] = STATE(6357), + [sym__unquoted_in_list_with_expr] = STATE(7423), + [sym__unquoted_anonymous_prefix] = STATE(6796), + [sym_comment] = STATE(750), + [aux_sym_shebang_repeat1] = STATE(778), + [aux_sym_parameter_repeat2] = STATE(6382), + [aux_sym_list_body_repeat1] = STATE(782), + [anon_sym_true] = ACTIONS(3032), + [anon_sym_false] = ACTIONS(3032), + [anon_sym_null] = ACTIONS(3034), + [aux_sym_cmd_identifier_token38] = ACTIONS(3036), + [aux_sym_cmd_identifier_token39] = ACTIONS(3036), + [aux_sym_cmd_identifier_token40] = ACTIONS(3036), + [sym__newline] = ACTIONS(2583), + [anon_sym_LBRACK] = ACTIONS(3038), + [anon_sym_RBRACK] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym_COMMA] = ACTIONS(2591), + [anon_sym_DOLLAR] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_DOT_DOT] = ACTIONS(3048), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), + [anon_sym_DOT_DOT_LT] = ACTIONS(3050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(3052), + [aux_sym__val_number_decimal_token2] = ACTIONS(3054), + [aux_sym__val_number_decimal_token3] = ACTIONS(3056), + [aux_sym__val_number_decimal_token4] = ACTIONS(3058), + [aux_sym__val_number_token1] = ACTIONS(3060), + [aux_sym__val_number_token2] = ACTIONS(3060), + [aux_sym__val_number_token3] = ACTIONS(3060), + [anon_sym_0b] = ACTIONS(3062), + [anon_sym_0o] = ACTIONS(3064), + [anon_sym_0x] = ACTIONS(3064), + [sym_val_date] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(3068), + [sym__str_single_quotes] = ACTIONS(3070), + [sym__str_back_ticks] = ACTIONS(3070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), + [anon_sym_err_GT] = ACTIONS(2627), + [anon_sym_out_GT] = ACTIONS(2627), + [anon_sym_e_GT] = ACTIONS(2627), + [anon_sym_o_GT] = ACTIONS(2627), + [anon_sym_err_PLUSout_GT] = ACTIONS(2627), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), + [anon_sym_o_PLUSe_GT] = ACTIONS(2627), + [anon_sym_e_PLUSo_GT] = ACTIONS(2627), + [anon_sym_err_GT_GT] = ACTIONS(2629), + [anon_sym_out_GT_GT] = ACTIONS(2629), + [anon_sym_e_GT_GT] = ACTIONS(2629), + [anon_sym_o_GT_GT] = ACTIONS(2629), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3074), + }, + [751] = { + [sym_expr_parenthesized] = STATE(6164), + [sym__spread_parenthesized] = STATE(7414), + [sym_val_range] = STATE(7423), + [sym__val_range] = STATE(7652), + [sym__val_range_with_end] = STATE(7490), + [sym__value] = STATE(7423), + [sym_val_nothing] = STATE(6921), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5774), + [sym_val_number] = STATE(6921), + [sym__val_number_decimal] = STATE(5339), + [sym__val_number] = STATE(7088), + [sym_val_duration] = STATE(6921), + [sym_val_filesize] = STATE(6921), + [sym_val_binary] = STATE(6921), + [sym_val_string] = STATE(6921), + [sym__raw_str] = STATE(5521), + [sym__str_double_quotes] = STATE(5521), + [sym_val_interpolated] = STATE(6921), + [sym__inter_single_quotes] = STATE(7044), + [sym__inter_double_quotes] = STATE(7055), + [sym_val_list] = STATE(7344), + [sym__spread_list] = STATE(7414), + [sym_list_body] = STATE(7871), + [sym_val_entry] = STATE(6779), + [sym_val_record] = STATE(6921), + [sym_val_table] = STATE(6921), + [sym_val_closure] = STATE(6921), + [sym__unquoted_in_list] = STATE(6357), + [sym__unquoted_in_list_with_expr] = STATE(7423), + [sym__unquoted_anonymous_prefix] = STATE(6796), + [sym_comment] = STATE(751), + [aux_sym_shebang_repeat1] = STATE(779), + [aux_sym_parameter_repeat2] = STATE(6382), + [aux_sym_list_body_repeat1] = STATE(782), + [anon_sym_true] = ACTIONS(3032), + [anon_sym_false] = ACTIONS(3032), + [anon_sym_null] = ACTIONS(3034), + [aux_sym_cmd_identifier_token38] = ACTIONS(3036), + [aux_sym_cmd_identifier_token39] = ACTIONS(3036), + [aux_sym_cmd_identifier_token40] = ACTIONS(3036), + [sym__newline] = ACTIONS(2583), + [anon_sym_LBRACK] = ACTIONS(3038), + [anon_sym_RBRACK] = ACTIONS(3118), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym_COMMA] = ACTIONS(2591), + [anon_sym_DOLLAR] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_DOT_DOT] = ACTIONS(3048), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), + [anon_sym_DOT_DOT_LT] = ACTIONS(3050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(3052), + [aux_sym__val_number_decimal_token2] = ACTIONS(3054), + [aux_sym__val_number_decimal_token3] = ACTIONS(3056), + [aux_sym__val_number_decimal_token4] = ACTIONS(3058), + [aux_sym__val_number_token1] = ACTIONS(3060), + [aux_sym__val_number_token2] = ACTIONS(3060), + [aux_sym__val_number_token3] = ACTIONS(3060), + [anon_sym_0b] = ACTIONS(3062), + [anon_sym_0o] = ACTIONS(3064), + [anon_sym_0x] = ACTIONS(3064), + [sym_val_date] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(3068), + [sym__str_single_quotes] = ACTIONS(3070), + [sym__str_back_ticks] = ACTIONS(3070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), + [anon_sym_err_GT] = ACTIONS(2627), + [anon_sym_out_GT] = ACTIONS(2627), + [anon_sym_e_GT] = ACTIONS(2627), + [anon_sym_o_GT] = ACTIONS(2627), + [anon_sym_err_PLUSout_GT] = ACTIONS(2627), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), + [anon_sym_o_PLUSe_GT] = ACTIONS(2627), + [anon_sym_e_PLUSo_GT] = ACTIONS(2627), + [anon_sym_err_GT_GT] = ACTIONS(2629), + [anon_sym_out_GT_GT] = ACTIONS(2629), + [anon_sym_e_GT_GT] = ACTIONS(2629), + [anon_sym_o_GT_GT] = ACTIONS(2629), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3074), + }, + [752] = { + [sym_expr_parenthesized] = STATE(6164), + [sym__spread_parenthesized] = STATE(7414), + [sym_val_range] = STATE(7423), + [sym__val_range] = STATE(7652), + [sym__val_range_with_end] = STATE(7490), + [sym__value] = STATE(7423), + [sym_val_nothing] = STATE(6921), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5774), + [sym_val_number] = STATE(6921), + [sym__val_number_decimal] = STATE(5339), + [sym__val_number] = STATE(7088), + [sym_val_duration] = STATE(6921), + [sym_val_filesize] = STATE(6921), + [sym_val_binary] = STATE(6921), + [sym_val_string] = STATE(6921), + [sym__raw_str] = STATE(5521), + [sym__str_double_quotes] = STATE(5521), + [sym_val_interpolated] = STATE(6921), + [sym__inter_single_quotes] = STATE(7044), + [sym__inter_double_quotes] = STATE(7055), + [sym_val_list] = STATE(7359), + [sym__spread_list] = STATE(7414), + [sym_list_body] = STATE(7915), + [sym_val_entry] = STATE(6779), + [sym_val_record] = STATE(6921), + [sym_val_table] = STATE(6921), + [sym_val_closure] = STATE(6921), + [sym__unquoted_in_list] = STATE(6357), + [sym__unquoted_in_list_with_expr] = STATE(7423), + [sym__unquoted_anonymous_prefix] = STATE(6796), + [sym_comment] = STATE(752), + [aux_sym_shebang_repeat1] = STATE(762), + [aux_sym_parameter_repeat2] = STATE(6382), + [aux_sym_list_body_repeat1] = STATE(782), + [anon_sym_true] = ACTIONS(3032), + [anon_sym_false] = ACTIONS(3032), + [anon_sym_null] = ACTIONS(3034), + [aux_sym_cmd_identifier_token38] = ACTIONS(3036), + [aux_sym_cmd_identifier_token39] = ACTIONS(3036), + [aux_sym_cmd_identifier_token40] = ACTIONS(3036), + [sym__newline] = ACTIONS(2583), + [anon_sym_LBRACK] = ACTIONS(3038), + [anon_sym_RBRACK] = ACTIONS(3120), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym_COMMA] = ACTIONS(2591), + [anon_sym_DOLLAR] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_DOT_DOT] = ACTIONS(3048), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), + [anon_sym_DOT_DOT_LT] = ACTIONS(3050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(3052), + [aux_sym__val_number_decimal_token2] = ACTIONS(3054), + [aux_sym__val_number_decimal_token3] = ACTIONS(3056), + [aux_sym__val_number_decimal_token4] = ACTIONS(3058), + [aux_sym__val_number_token1] = ACTIONS(3060), + [aux_sym__val_number_token2] = ACTIONS(3060), + [aux_sym__val_number_token3] = ACTIONS(3060), + [anon_sym_0b] = ACTIONS(3062), + [anon_sym_0o] = ACTIONS(3064), + [anon_sym_0x] = ACTIONS(3064), + [sym_val_date] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(3068), + [sym__str_single_quotes] = ACTIONS(3070), + [sym__str_back_ticks] = ACTIONS(3070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), + [anon_sym_err_GT] = ACTIONS(2627), + [anon_sym_out_GT] = ACTIONS(2627), + [anon_sym_e_GT] = ACTIONS(2627), + [anon_sym_o_GT] = ACTIONS(2627), + [anon_sym_err_PLUSout_GT] = ACTIONS(2627), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), + [anon_sym_o_PLUSe_GT] = ACTIONS(2627), + [anon_sym_e_PLUSo_GT] = ACTIONS(2627), + [anon_sym_err_GT_GT] = ACTIONS(2629), + [anon_sym_out_GT_GT] = ACTIONS(2629), + [anon_sym_e_GT_GT] = ACTIONS(2629), + [anon_sym_o_GT_GT] = ACTIONS(2629), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3074), + }, + [753] = { + [sym_expr_parenthesized] = STATE(6164), + [sym__spread_parenthesized] = STATE(7414), + [sym_val_range] = STATE(7423), + [sym__val_range] = STATE(7652), + [sym__val_range_with_end] = STATE(7490), + [sym__value] = STATE(7423), + [sym_val_nothing] = STATE(6921), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5774), + [sym_val_number] = STATE(6921), + [sym__val_number_decimal] = STATE(5339), + [sym__val_number] = STATE(7088), + [sym_val_duration] = STATE(6921), + [sym_val_filesize] = STATE(6921), + [sym_val_binary] = STATE(6921), + [sym_val_string] = STATE(6921), + [sym__raw_str] = STATE(5521), + [sym__str_double_quotes] = STATE(5521), + [sym_val_interpolated] = STATE(6921), + [sym__inter_single_quotes] = STATE(7044), + [sym__inter_double_quotes] = STATE(7055), + [sym_val_list] = STATE(7366), + [sym__spread_list] = STATE(7414), + [sym_list_body] = STATE(7953), + [sym_val_entry] = STATE(6779), + [sym_val_record] = STATE(6921), + [sym_val_table] = STATE(6921), + [sym_val_closure] = STATE(6921), + [sym__unquoted_in_list] = STATE(6357), + [sym__unquoted_in_list_with_expr] = STATE(7423), + [sym__unquoted_anonymous_prefix] = STATE(6796), + [sym_comment] = STATE(753), + [aux_sym_shebang_repeat1] = STATE(764), + [aux_sym_parameter_repeat2] = STATE(6382), + [aux_sym_list_body_repeat1] = STATE(782), + [anon_sym_true] = ACTIONS(3032), + [anon_sym_false] = ACTIONS(3032), + [anon_sym_null] = ACTIONS(3034), + [aux_sym_cmd_identifier_token38] = ACTIONS(3036), + [aux_sym_cmd_identifier_token39] = ACTIONS(3036), + [aux_sym_cmd_identifier_token40] = ACTIONS(3036), + [sym__newline] = ACTIONS(2583), + [anon_sym_LBRACK] = ACTIONS(3038), + [anon_sym_RBRACK] = ACTIONS(3122), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym_COMMA] = ACTIONS(2591), + [anon_sym_DOLLAR] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_DOT_DOT] = ACTIONS(3048), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), + [anon_sym_DOT_DOT_LT] = ACTIONS(3050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(3052), + [aux_sym__val_number_decimal_token2] = ACTIONS(3054), + [aux_sym__val_number_decimal_token3] = ACTIONS(3056), + [aux_sym__val_number_decimal_token4] = ACTIONS(3058), + [aux_sym__val_number_token1] = ACTIONS(3060), + [aux_sym__val_number_token2] = ACTIONS(3060), + [aux_sym__val_number_token3] = ACTIONS(3060), + [anon_sym_0b] = ACTIONS(3062), + [anon_sym_0o] = ACTIONS(3064), + [anon_sym_0x] = ACTIONS(3064), + [sym_val_date] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(3068), + [sym__str_single_quotes] = ACTIONS(3070), + [sym__str_back_ticks] = ACTIONS(3070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), + [anon_sym_err_GT] = ACTIONS(2627), + [anon_sym_out_GT] = ACTIONS(2627), + [anon_sym_e_GT] = ACTIONS(2627), + [anon_sym_o_GT] = ACTIONS(2627), + [anon_sym_err_PLUSout_GT] = ACTIONS(2627), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), + [anon_sym_o_PLUSe_GT] = ACTIONS(2627), + [anon_sym_e_PLUSo_GT] = ACTIONS(2627), + [anon_sym_err_GT_GT] = ACTIONS(2629), + [anon_sym_out_GT_GT] = ACTIONS(2629), + [anon_sym_e_GT_GT] = ACTIONS(2629), + [anon_sym_o_GT_GT] = ACTIONS(2629), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3074), + }, + [754] = { + [sym_expr_parenthesized] = STATE(6164), + [sym__spread_parenthesized] = STATE(7414), + [sym_val_range] = STATE(7423), + [sym__val_range] = STATE(7652), + [sym__val_range_with_end] = STATE(7490), + [sym__value] = STATE(7423), + [sym_val_nothing] = STATE(6921), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5774), + [sym_val_number] = STATE(6921), + [sym__val_number_decimal] = STATE(5339), + [sym__val_number] = STATE(7088), + [sym_val_duration] = STATE(6921), + [sym_val_filesize] = STATE(6921), + [sym_val_binary] = STATE(6921), + [sym_val_string] = STATE(6921), + [sym__raw_str] = STATE(5521), + [sym__str_double_quotes] = STATE(5521), + [sym_val_interpolated] = STATE(6921), + [sym__inter_single_quotes] = STATE(7044), + [sym__inter_double_quotes] = STATE(7055), + [sym_val_list] = STATE(7244), + [sym__spread_list] = STATE(7414), + [sym_list_body] = STATE(7706), + [sym_val_entry] = STATE(6779), + [sym_val_record] = STATE(6921), + [sym_val_table] = STATE(6921), + [sym_val_closure] = STATE(6921), + [sym__unquoted_in_list] = STATE(6357), + [sym__unquoted_in_list_with_expr] = STATE(7423), + [sym__unquoted_anonymous_prefix] = STATE(6796), + [sym_comment] = STATE(754), + [aux_sym_shebang_repeat1] = STATE(767), + [aux_sym_parameter_repeat2] = STATE(6382), + [aux_sym_list_body_repeat1] = STATE(782), + [anon_sym_true] = ACTIONS(3032), + [anon_sym_false] = ACTIONS(3032), + [anon_sym_null] = ACTIONS(3034), + [aux_sym_cmd_identifier_token38] = ACTIONS(3036), + [aux_sym_cmd_identifier_token39] = ACTIONS(3036), + [aux_sym_cmd_identifier_token40] = ACTIONS(3036), + [sym__newline] = ACTIONS(2583), + [anon_sym_LBRACK] = ACTIONS(3038), + [anon_sym_RBRACK] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym_COMMA] = ACTIONS(2591), + [anon_sym_DOLLAR] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_DOT_DOT] = ACTIONS(3048), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), + [anon_sym_DOT_DOT_LT] = ACTIONS(3050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(3052), + [aux_sym__val_number_decimal_token2] = ACTIONS(3054), + [aux_sym__val_number_decimal_token3] = ACTIONS(3056), + [aux_sym__val_number_decimal_token4] = ACTIONS(3058), + [aux_sym__val_number_token1] = ACTIONS(3060), + [aux_sym__val_number_token2] = ACTIONS(3060), + [aux_sym__val_number_token3] = ACTIONS(3060), + [anon_sym_0b] = ACTIONS(3062), + [anon_sym_0o] = ACTIONS(3064), + [anon_sym_0x] = ACTIONS(3064), + [sym_val_date] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(3068), + [sym__str_single_quotes] = ACTIONS(3070), + [sym__str_back_ticks] = ACTIONS(3070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), + [anon_sym_err_GT] = ACTIONS(2627), + [anon_sym_out_GT] = ACTIONS(2627), + [anon_sym_e_GT] = ACTIONS(2627), + [anon_sym_o_GT] = ACTIONS(2627), + [anon_sym_err_PLUSout_GT] = ACTIONS(2627), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), + [anon_sym_o_PLUSe_GT] = ACTIONS(2627), + [anon_sym_e_PLUSo_GT] = ACTIONS(2627), + [anon_sym_err_GT_GT] = ACTIONS(2629), + [anon_sym_out_GT_GT] = ACTIONS(2629), + [anon_sym_e_GT_GT] = ACTIONS(2629), + [anon_sym_o_GT_GT] = ACTIONS(2629), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3074), + }, + [755] = { + [sym_comment] = STATE(755), + [aux_sym_cmd_identifier_token1] = ACTIONS(3126), + [aux_sym_cmd_identifier_token2] = ACTIONS(3128), + [aux_sym_cmd_identifier_token3] = ACTIONS(3128), + [aux_sym_cmd_identifier_token4] = ACTIONS(3128), + [aux_sym_cmd_identifier_token5] = ACTIONS(3128), + [aux_sym_cmd_identifier_token6] = ACTIONS(3128), + [aux_sym_cmd_identifier_token7] = ACTIONS(3128), + [aux_sym_cmd_identifier_token8] = ACTIONS(3128), + [aux_sym_cmd_identifier_token9] = ACTIONS(3126), + [aux_sym_cmd_identifier_token10] = ACTIONS(3128), + [aux_sym_cmd_identifier_token11] = ACTIONS(3128), + [aux_sym_cmd_identifier_token12] = ACTIONS(3128), + [aux_sym_cmd_identifier_token13] = ACTIONS(3126), + [aux_sym_cmd_identifier_token14] = ACTIONS(3128), + [aux_sym_cmd_identifier_token15] = ACTIONS(3126), + [aux_sym_cmd_identifier_token16] = ACTIONS(3128), + [aux_sym_cmd_identifier_token17] = ACTIONS(3128), + [aux_sym_cmd_identifier_token18] = ACTIONS(3128), + [aux_sym_cmd_identifier_token19] = ACTIONS(3128), + [aux_sym_cmd_identifier_token20] = ACTIONS(3128), + [aux_sym_cmd_identifier_token21] = ACTIONS(3128), + [aux_sym_cmd_identifier_token22] = ACTIONS(3126), + [aux_sym_cmd_identifier_token23] = ACTIONS(3126), + [aux_sym_cmd_identifier_token24] = ACTIONS(3128), + [aux_sym_cmd_identifier_token25] = ACTIONS(3126), + [aux_sym_cmd_identifier_token26] = ACTIONS(3128), + [aux_sym_cmd_identifier_token27] = ACTIONS(3126), + [aux_sym_cmd_identifier_token28] = ACTIONS(3126), + [aux_sym_cmd_identifier_token29] = ACTIONS(3126), + [aux_sym_cmd_identifier_token30] = ACTIONS(3126), + [aux_sym_cmd_identifier_token31] = ACTIONS(3128), + [aux_sym_cmd_identifier_token32] = ACTIONS(3128), + [aux_sym_cmd_identifier_token33] = ACTIONS(3128), + [aux_sym_cmd_identifier_token34] = ACTIONS(3128), + [aux_sym_cmd_identifier_token35] = ACTIONS(3128), + [aux_sym_cmd_identifier_token36] = ACTIONS(3126), + [anon_sym_true] = ACTIONS(3128), + [anon_sym_false] = ACTIONS(3128), + [anon_sym_null] = ACTIONS(3128), + [aux_sym_cmd_identifier_token38] = ACTIONS(3126), + [aux_sym_cmd_identifier_token39] = ACTIONS(3128), + [aux_sym_cmd_identifier_token40] = ACTIONS(3128), + [sym__newline] = ACTIONS(1362), + [anon_sym_PIPE] = ACTIONS(1362), + [anon_sym_err_GT_PIPE] = ACTIONS(1362), + [anon_sym_out_GT_PIPE] = ACTIONS(1362), + [anon_sym_e_GT_PIPE] = ACTIONS(1362), + [anon_sym_o_GT_PIPE] = ACTIONS(1362), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1362), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1362), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1362), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1362), + [anon_sym_LBRACK] = ACTIONS(3128), + [anon_sym_LPAREN] = ACTIONS(3128), + [anon_sym_DOLLAR] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_break] = ACTIONS(3126), + [anon_sym_continue] = ACTIONS(3126), + [anon_sym_do] = ACTIONS(3126), + [anon_sym_if] = ACTIONS(3126), + [anon_sym_match] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_DOT_DOT] = ACTIONS(3126), + [anon_sym_try] = ACTIONS(3126), + [anon_sym_return] = ACTIONS(3126), + [anon_sym_where] = ACTIONS(3128), + [aux_sym_expr_unary_token1] = ACTIONS(3128), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3128), + [anon_sym_DOT_DOT_LT] = ACTIONS(3128), + [aux_sym__val_number_decimal_token1] = ACTIONS(3126), + [aux_sym__val_number_decimal_token2] = ACTIONS(3128), + [aux_sym__val_number_decimal_token3] = ACTIONS(3128), + [aux_sym__val_number_decimal_token4] = ACTIONS(3128), + [aux_sym__val_number_token1] = ACTIONS(3128), + [aux_sym__val_number_token2] = ACTIONS(3128), + [aux_sym__val_number_token3] = ACTIONS(3128), + [anon_sym_0b] = ACTIONS(3126), + [anon_sym_0o] = ACTIONS(3126), + [anon_sym_0x] = ACTIONS(3126), + [sym_val_date] = ACTIONS(3128), + [anon_sym_DQUOTE] = ACTIONS(3128), + [sym__str_single_quotes] = ACTIONS(3128), + [sym__str_back_ticks] = ACTIONS(3128), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3128), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3128), + [aux_sym_env_var_token1] = ACTIONS(3126), + [anon_sym_CARET] = ACTIONS(3128), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3128), + }, + [756] = { + [sym_expr_parenthesized] = STATE(6164), + [sym__spread_parenthesized] = STATE(7414), + [sym_val_range] = STATE(7423), + [sym__val_range] = STATE(7652), + [sym__val_range_with_end] = STATE(7490), + [sym__value] = STATE(7423), + [sym_val_nothing] = STATE(6921), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5774), + [sym_val_number] = STATE(6921), + [sym__val_number_decimal] = STATE(5339), + [sym__val_number] = STATE(7088), + [sym_val_duration] = STATE(6921), + [sym_val_filesize] = STATE(6921), + [sym_val_binary] = STATE(6921), + [sym_val_string] = STATE(6921), + [sym__raw_str] = STATE(5521), + [sym__str_double_quotes] = STATE(5521), + [sym_val_interpolated] = STATE(6921), + [sym__inter_single_quotes] = STATE(7044), + [sym__inter_double_quotes] = STATE(7055), + [sym_val_list] = STATE(6776), + [sym__spread_list] = STATE(7414), + [sym_list_body] = STATE(7752), + [sym_val_entry] = STATE(6779), + [sym_val_record] = STATE(6921), + [sym_val_table] = STATE(6921), + [sym_val_closure] = STATE(6921), + [sym__unquoted_in_list] = STATE(6357), + [sym__unquoted_in_list_with_expr] = STATE(7423), + [sym__unquoted_anonymous_prefix] = STATE(6796), + [sym_comment] = STATE(756), + [aux_sym_shebang_repeat1] = STATE(759), + [aux_sym_parameter_repeat2] = STATE(6382), + [aux_sym_list_body_repeat1] = STATE(782), + [anon_sym_true] = ACTIONS(3032), + [anon_sym_false] = ACTIONS(3032), + [anon_sym_null] = ACTIONS(3034), + [aux_sym_cmd_identifier_token38] = ACTIONS(3036), + [aux_sym_cmd_identifier_token39] = ACTIONS(3036), + [aux_sym_cmd_identifier_token40] = ACTIONS(3036), + [sym__newline] = ACTIONS(2583), + [anon_sym_LBRACK] = ACTIONS(3038), + [anon_sym_RBRACK] = ACTIONS(3130), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym_COMMA] = ACTIONS(2591), + [anon_sym_DOLLAR] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_DOT_DOT] = ACTIONS(3048), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), + [anon_sym_DOT_DOT_LT] = ACTIONS(3050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(3052), + [aux_sym__val_number_decimal_token2] = ACTIONS(3054), + [aux_sym__val_number_decimal_token3] = ACTIONS(3056), + [aux_sym__val_number_decimal_token4] = ACTIONS(3058), + [aux_sym__val_number_token1] = ACTIONS(3060), + [aux_sym__val_number_token2] = ACTIONS(3060), + [aux_sym__val_number_token3] = ACTIONS(3060), + [anon_sym_0b] = ACTIONS(3062), + [anon_sym_0o] = ACTIONS(3064), + [anon_sym_0x] = ACTIONS(3064), + [sym_val_date] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(3068), + [sym__str_single_quotes] = ACTIONS(3070), + [sym__str_back_ticks] = ACTIONS(3070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), + [anon_sym_err_GT] = ACTIONS(2627), + [anon_sym_out_GT] = ACTIONS(2627), + [anon_sym_e_GT] = ACTIONS(2627), + [anon_sym_o_GT] = ACTIONS(2627), + [anon_sym_err_PLUSout_GT] = ACTIONS(2627), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), + [anon_sym_o_PLUSe_GT] = ACTIONS(2627), + [anon_sym_e_PLUSo_GT] = ACTIONS(2627), + [anon_sym_err_GT_GT] = ACTIONS(2629), + [anon_sym_out_GT_GT] = ACTIONS(2629), + [anon_sym_e_GT_GT] = ACTIONS(2629), + [anon_sym_o_GT_GT] = ACTIONS(2629), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3074), + }, + [757] = { + [sym_comment] = STATE(757), + [aux_sym_cmd_identifier_token1] = ACTIONS(2999), + [aux_sym_cmd_identifier_token2] = ACTIONS(3001), + [aux_sym_cmd_identifier_token3] = ACTIONS(3001), + [aux_sym_cmd_identifier_token4] = ACTIONS(3001), + [aux_sym_cmd_identifier_token5] = ACTIONS(3001), + [aux_sym_cmd_identifier_token6] = ACTIONS(3001), + [aux_sym_cmd_identifier_token7] = ACTIONS(3001), + [aux_sym_cmd_identifier_token8] = ACTIONS(3001), + [aux_sym_cmd_identifier_token9] = ACTIONS(2999), + [aux_sym_cmd_identifier_token10] = ACTIONS(3001), + [aux_sym_cmd_identifier_token11] = ACTIONS(3001), + [aux_sym_cmd_identifier_token12] = ACTIONS(3001), + [aux_sym_cmd_identifier_token13] = ACTIONS(2999), + [aux_sym_cmd_identifier_token14] = ACTIONS(3001), + [aux_sym_cmd_identifier_token15] = ACTIONS(2999), + [aux_sym_cmd_identifier_token16] = ACTIONS(3001), + [aux_sym_cmd_identifier_token17] = ACTIONS(3001), + [aux_sym_cmd_identifier_token18] = ACTIONS(3001), + [aux_sym_cmd_identifier_token19] = ACTIONS(3001), + [aux_sym_cmd_identifier_token20] = ACTIONS(3001), + [aux_sym_cmd_identifier_token21] = ACTIONS(3001), + [aux_sym_cmd_identifier_token22] = ACTIONS(2999), + [aux_sym_cmd_identifier_token23] = ACTIONS(2999), + [aux_sym_cmd_identifier_token24] = ACTIONS(3001), + [aux_sym_cmd_identifier_token25] = ACTIONS(2999), + [aux_sym_cmd_identifier_token26] = ACTIONS(3001), + [aux_sym_cmd_identifier_token27] = ACTIONS(2999), + [aux_sym_cmd_identifier_token28] = ACTIONS(2999), + [aux_sym_cmd_identifier_token29] = ACTIONS(2999), + [aux_sym_cmd_identifier_token30] = ACTIONS(2999), + [aux_sym_cmd_identifier_token31] = ACTIONS(3001), + [aux_sym_cmd_identifier_token32] = ACTIONS(3001), + [aux_sym_cmd_identifier_token33] = ACTIONS(3001), + [aux_sym_cmd_identifier_token34] = ACTIONS(3001), + [aux_sym_cmd_identifier_token35] = ACTIONS(3001), + [aux_sym_cmd_identifier_token36] = ACTIONS(2999), + [anon_sym_true] = ACTIONS(3001), + [anon_sym_false] = ACTIONS(3001), + [anon_sym_null] = ACTIONS(3001), + [aux_sym_cmd_identifier_token38] = ACTIONS(2999), + [aux_sym_cmd_identifier_token39] = ACTIONS(3001), + [aux_sym_cmd_identifier_token40] = ACTIONS(3001), + [sym__newline] = ACTIONS(3001), + [anon_sym_PIPE] = ACTIONS(3001), + [anon_sym_err_GT_PIPE] = ACTIONS(3001), + [anon_sym_out_GT_PIPE] = ACTIONS(3001), + [anon_sym_e_GT_PIPE] = ACTIONS(3001), + [anon_sym_o_GT_PIPE] = ACTIONS(3001), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3001), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3001), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3001), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3001), + [anon_sym_LBRACK] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(3001), + [anon_sym_DOLLAR] = ACTIONS(2999), + [anon_sym_DASH] = ACTIONS(2999), + [anon_sym_break] = ACTIONS(2999), + [anon_sym_continue] = ACTIONS(2999), + [anon_sym_do] = ACTIONS(2999), + [anon_sym_if] = ACTIONS(2999), + [anon_sym_match] = ACTIONS(2999), + [anon_sym_LBRACE] = ACTIONS(3001), + [anon_sym_DOT_DOT] = ACTIONS(2999), + [anon_sym_try] = ACTIONS(2999), + [anon_sym_return] = ACTIONS(2999), + [anon_sym_where] = ACTIONS(3001), + [aux_sym_expr_unary_token1] = ACTIONS(3001), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3001), + [anon_sym_DOT_DOT_LT] = ACTIONS(3001), + [aux_sym__val_number_decimal_token1] = ACTIONS(2999), + [aux_sym__val_number_decimal_token2] = ACTIONS(3001), + [aux_sym__val_number_decimal_token3] = ACTIONS(3001), + [aux_sym__val_number_decimal_token4] = ACTIONS(3001), + [aux_sym__val_number_token1] = ACTIONS(3001), + [aux_sym__val_number_token2] = ACTIONS(3001), + [aux_sym__val_number_token3] = ACTIONS(3001), + [anon_sym_0b] = ACTIONS(2999), + [anon_sym_0o] = ACTIONS(2999), + [anon_sym_0x] = ACTIONS(2999), + [sym_val_date] = ACTIONS(3001), + [anon_sym_DQUOTE] = ACTIONS(3001), + [sym__str_single_quotes] = ACTIONS(3001), + [sym__str_back_ticks] = ACTIONS(3001), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3001), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3001), + [aux_sym_env_var_token1] = ACTIONS(2999), + [anon_sym_CARET] = ACTIONS(3001), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3001), + }, + [758] = { + [sym_expr_parenthesized] = STATE(6164), + [sym__spread_parenthesized] = STATE(7414), + [sym_val_range] = STATE(7423), + [sym__val_range] = STATE(7652), + [sym__val_range_with_end] = STATE(7490), + [sym__value] = STATE(7423), + [sym_val_nothing] = STATE(6921), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5774), + [sym_val_number] = STATE(6921), + [sym__val_number_decimal] = STATE(5339), + [sym__val_number] = STATE(7088), + [sym_val_duration] = STATE(6921), + [sym_val_filesize] = STATE(6921), + [sym_val_binary] = STATE(6921), + [sym_val_string] = STATE(6921), + [sym__raw_str] = STATE(5521), + [sym__str_double_quotes] = STATE(5521), + [sym_val_interpolated] = STATE(6921), + [sym__inter_single_quotes] = STATE(7044), + [sym__inter_double_quotes] = STATE(7055), + [sym_val_list] = STATE(6921), + [sym__spread_list] = STATE(7414), + [sym_list_body] = STATE(7686), + [sym_val_entry] = STATE(6779), + [sym_val_record] = STATE(6921), + [sym_val_table] = STATE(6921), + [sym_val_closure] = STATE(6921), + [sym__unquoted_in_list] = STATE(6357), + [sym__unquoted_in_list_with_expr] = STATE(7423), + [sym__unquoted_anonymous_prefix] = STATE(6796), + [sym_comment] = STATE(758), + [aux_sym_shebang_repeat1] = STATE(761), + [aux_sym_parameter_repeat2] = STATE(6382), + [aux_sym_list_body_repeat1] = STATE(782), + [anon_sym_true] = ACTIONS(3032), + [anon_sym_false] = ACTIONS(3032), + [anon_sym_null] = ACTIONS(3034), + [aux_sym_cmd_identifier_token38] = ACTIONS(3036), + [aux_sym_cmd_identifier_token39] = ACTIONS(3036), + [aux_sym_cmd_identifier_token40] = ACTIONS(3036), + [sym__newline] = ACTIONS(2583), + [anon_sym_LBRACK] = ACTIONS(3078), + [anon_sym_RBRACK] = ACTIONS(3098), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym_COMMA] = ACTIONS(2591), + [anon_sym_DOLLAR] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_DOT_DOT] = ACTIONS(3048), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), + [anon_sym_DOT_DOT_LT] = ACTIONS(3050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(3052), + [aux_sym__val_number_decimal_token2] = ACTIONS(3054), + [aux_sym__val_number_decimal_token3] = ACTIONS(3056), + [aux_sym__val_number_decimal_token4] = ACTIONS(3058), + [aux_sym__val_number_token1] = ACTIONS(3060), + [aux_sym__val_number_token2] = ACTIONS(3060), + [aux_sym__val_number_token3] = ACTIONS(3060), + [anon_sym_0b] = ACTIONS(3062), + [anon_sym_0o] = ACTIONS(3064), + [anon_sym_0x] = ACTIONS(3064), + [sym_val_date] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(3068), + [sym__str_single_quotes] = ACTIONS(3070), + [sym__str_back_ticks] = ACTIONS(3070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), + [anon_sym_err_GT] = ACTIONS(2627), + [anon_sym_out_GT] = ACTIONS(2627), + [anon_sym_e_GT] = ACTIONS(2627), + [anon_sym_o_GT] = ACTIONS(2627), + [anon_sym_err_PLUSout_GT] = ACTIONS(2627), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), + [anon_sym_o_PLUSe_GT] = ACTIONS(2627), + [anon_sym_e_PLUSo_GT] = ACTIONS(2627), + [anon_sym_err_GT_GT] = ACTIONS(2629), + [anon_sym_out_GT_GT] = ACTIONS(2629), + [anon_sym_e_GT_GT] = ACTIONS(2629), + [anon_sym_o_GT_GT] = ACTIONS(2629), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3074), + }, + [759] = { + [sym_expr_parenthesized] = STATE(6164), + [sym__spread_parenthesized] = STATE(7414), + [sym_val_range] = STATE(7423), + [sym__val_range] = STATE(7652), + [sym__val_range_with_end] = STATE(7490), + [sym__value] = STATE(7423), + [sym_val_nothing] = STATE(6921), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5774), + [sym_val_number] = STATE(6921), + [sym__val_number_decimal] = STATE(5339), + [sym__val_number] = STATE(7088), + [sym_val_duration] = STATE(6921), + [sym_val_filesize] = STATE(6921), + [sym_val_binary] = STATE(6921), + [sym_val_string] = STATE(6921), + [sym__raw_str] = STATE(5521), + [sym__str_double_quotes] = STATE(5521), + [sym_val_interpolated] = STATE(6921), + [sym__inter_single_quotes] = STATE(7044), + [sym__inter_double_quotes] = STATE(7055), + [sym_val_list] = STATE(7395), + [sym__spread_list] = STATE(7414), + [sym_val_entry] = STATE(6855), + [sym_val_record] = STATE(6921), + [sym_val_table] = STATE(6921), + [sym_val_closure] = STATE(6921), + [sym__unquoted_in_list] = STATE(6357), + [sym__unquoted_in_list_with_expr] = STATE(7423), + [sym__unquoted_anonymous_prefix] = STATE(6796), + [sym_comment] = STATE(759), + [aux_sym_shebang_repeat1] = STATE(2709), + [aux_sym_list_body_repeat1] = STATE(781), + [anon_sym_true] = ACTIONS(3032), + [anon_sym_false] = ACTIONS(3032), + [anon_sym_null] = ACTIONS(3034), + [aux_sym_cmd_identifier_token38] = ACTIONS(3036), + [aux_sym_cmd_identifier_token39] = ACTIONS(3036), + [aux_sym_cmd_identifier_token40] = ACTIONS(3036), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(3038), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym_DOLLAR] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_DOT_DOT] = ACTIONS(3048), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), + [anon_sym_DOT_DOT_LT] = ACTIONS(3050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(3052), + [aux_sym__val_number_decimal_token2] = ACTIONS(3054), + [aux_sym__val_number_decimal_token3] = ACTIONS(3056), + [aux_sym__val_number_decimal_token4] = ACTIONS(3058), + [aux_sym__val_number_token1] = ACTIONS(3060), + [aux_sym__val_number_token2] = ACTIONS(3060), + [aux_sym__val_number_token3] = ACTIONS(3060), + [anon_sym_0b] = ACTIONS(3062), + [anon_sym_0o] = ACTIONS(3064), + [anon_sym_0x] = ACTIONS(3064), + [sym_val_date] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(3068), + [sym__str_single_quotes] = ACTIONS(3070), + [sym__str_back_ticks] = ACTIONS(3070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), + [anon_sym_err_GT] = ACTIONS(2627), + [anon_sym_out_GT] = ACTIONS(2627), + [anon_sym_e_GT] = ACTIONS(2627), + [anon_sym_o_GT] = ACTIONS(2627), + [anon_sym_err_PLUSout_GT] = ACTIONS(2627), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), + [anon_sym_o_PLUSe_GT] = ACTIONS(2627), + [anon_sym_e_PLUSo_GT] = ACTIONS(2627), + [anon_sym_err_GT_GT] = ACTIONS(2629), + [anon_sym_out_GT_GT] = ACTIONS(2629), + [anon_sym_e_GT_GT] = ACTIONS(2629), + [anon_sym_o_GT_GT] = ACTIONS(2629), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3074), + }, + [760] = { + [sym_expr_parenthesized] = STATE(6164), + [sym__spread_parenthesized] = STATE(7414), + [sym_val_range] = STATE(7423), + [sym__val_range] = STATE(7652), + [sym__val_range_with_end] = STATE(7490), + [sym__value] = STATE(7423), + [sym_val_nothing] = STATE(6921), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5774), + [sym_val_number] = STATE(6921), + [sym__val_number_decimal] = STATE(5339), + [sym__val_number] = STATE(7088), + [sym_val_duration] = STATE(6921), + [sym_val_filesize] = STATE(6921), + [sym_val_binary] = STATE(6921), + [sym_val_string] = STATE(6921), + [sym__raw_str] = STATE(5521), + [sym__str_double_quotes] = STATE(5521), + [sym_val_interpolated] = STATE(6921), + [sym__inter_single_quotes] = STATE(7044), + [sym__inter_double_quotes] = STATE(7055), + [sym_val_list] = STATE(7148), + [sym__spread_list] = STATE(7414), + [sym_val_entry] = STATE(6855), + [sym_val_record] = STATE(6921), + [sym_val_table] = STATE(6921), + [sym_val_closure] = STATE(6921), + [sym__unquoted_in_list] = STATE(6357), + [sym__unquoted_in_list_with_expr] = STATE(7423), + [sym__unquoted_anonymous_prefix] = STATE(6796), + [sym_comment] = STATE(760), + [aux_sym_shebang_repeat1] = STATE(2709), + [aux_sym_list_body_repeat1] = STATE(781), + [anon_sym_true] = ACTIONS(3032), + [anon_sym_false] = ACTIONS(3032), + [anon_sym_null] = ACTIONS(3034), + [aux_sym_cmd_identifier_token38] = ACTIONS(3036), + [aux_sym_cmd_identifier_token39] = ACTIONS(3036), + [aux_sym_cmd_identifier_token40] = ACTIONS(3036), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(3038), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym_DOLLAR] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_DOT_DOT] = ACTIONS(3048), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), + [anon_sym_DOT_DOT_LT] = ACTIONS(3050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(3052), + [aux_sym__val_number_decimal_token2] = ACTIONS(3054), + [aux_sym__val_number_decimal_token3] = ACTIONS(3056), + [aux_sym__val_number_decimal_token4] = ACTIONS(3058), + [aux_sym__val_number_token1] = ACTIONS(3060), + [aux_sym__val_number_token2] = ACTIONS(3060), + [aux_sym__val_number_token3] = ACTIONS(3060), + [anon_sym_0b] = ACTIONS(3062), + [anon_sym_0o] = ACTIONS(3064), + [anon_sym_0x] = ACTIONS(3064), + [sym_val_date] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(3068), + [sym__str_single_quotes] = ACTIONS(3070), + [sym__str_back_ticks] = ACTIONS(3070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), + [anon_sym_err_GT] = ACTIONS(2627), + [anon_sym_out_GT] = ACTIONS(2627), + [anon_sym_e_GT] = ACTIONS(2627), + [anon_sym_o_GT] = ACTIONS(2627), + [anon_sym_err_PLUSout_GT] = ACTIONS(2627), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), + [anon_sym_o_PLUSe_GT] = ACTIONS(2627), + [anon_sym_e_PLUSo_GT] = ACTIONS(2627), + [anon_sym_err_GT_GT] = ACTIONS(2629), + [anon_sym_out_GT_GT] = ACTIONS(2629), + [anon_sym_e_GT_GT] = ACTIONS(2629), + [anon_sym_o_GT_GT] = ACTIONS(2629), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3074), }, [761] = { - [sym_expr_parenthesized] = STATE(5961), - [sym__spread_parenthesized] = STATE(7348), - [sym_val_range] = STATE(7355), - [sym__val_range] = STATE(7469), - [sym__val_range_with_end] = STATE(7194), - [sym__value] = STATE(7355), - [sym_val_nothing] = STATE(521), - [sym_val_bool] = STATE(6215), - [sym__spread_variable] = STATE(7195), - [sym_val_variable] = STATE(5719), - [sym_val_number] = STATE(521), - [sym__val_number_decimal] = STATE(5264), - [sym__val_number] = STATE(2915), - [sym_val_duration] = STATE(521), - [sym_val_filesize] = STATE(521), - [sym_val_binary] = STATE(521), - [sym_val_string] = STATE(521), - [sym__str_double_quotes] = STATE(5413), - [sym_val_interpolated] = STATE(521), - [sym__inter_single_quotes] = STATE(495), - [sym__inter_double_quotes] = STATE(556), - [sym_val_list] = STATE(7051), - [sym__spread_list] = STATE(7348), - [sym_val_entry] = STATE(6710), - [sym_val_record] = STATE(521), - [sym_val_table] = STATE(521), - [sym_val_closure] = STATE(521), - [sym__unquoted_in_list] = STATE(6465), - [sym__unquoted_in_list_with_expr] = STATE(7355), - [sym__unquoted_anonymous_prefix] = STATE(6960), + [sym_expr_parenthesized] = STATE(6164), + [sym__spread_parenthesized] = STATE(7414), + [sym_val_range] = STATE(7423), + [sym__val_range] = STATE(7652), + [sym__val_range_with_end] = STATE(7490), + [sym__value] = STATE(7423), + [sym_val_nothing] = STATE(6921), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5774), + [sym_val_number] = STATE(6921), + [sym__val_number_decimal] = STATE(5339), + [sym__val_number] = STATE(7088), + [sym_val_duration] = STATE(6921), + [sym_val_filesize] = STATE(6921), + [sym_val_binary] = STATE(6921), + [sym_val_string] = STATE(6921), + [sym__raw_str] = STATE(5521), + [sym__str_double_quotes] = STATE(5521), + [sym_val_interpolated] = STATE(6921), + [sym__inter_single_quotes] = STATE(7044), + [sym__inter_double_quotes] = STATE(7055), + [sym_val_list] = STATE(6921), + [sym__spread_list] = STATE(7414), + [sym_val_entry] = STATE(6855), + [sym_val_record] = STATE(6921), + [sym_val_table] = STATE(6921), + [sym_val_closure] = STATE(6921), + [sym__unquoted_in_list] = STATE(6357), + [sym__unquoted_in_list_with_expr] = STATE(7423), + [sym__unquoted_anonymous_prefix] = STATE(6796), [sym_comment] = STATE(761), - [aux_sym_shebang_repeat1] = STATE(2691), - [aux_sym_list_body_repeat1] = STATE(774), - [anon_sym_true] = ACTIONS(2985), - [anon_sym_false] = ACTIONS(2985), - [anon_sym_null] = ACTIONS(2987), - [aux_sym_cmd_identifier_token38] = ACTIONS(2989), - [aux_sym_cmd_identifier_token39] = ACTIONS(2989), - [aux_sym_cmd_identifier_token40] = ACTIONS(2989), - [sym__newline] = ACTIONS(3070), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_DOLLAR] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_DOT_DOT] = ACTIONS(3001), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), - [anon_sym_DOT_DOT_LT] = ACTIONS(3003), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(3005), - [aux_sym__val_number_decimal_token2] = ACTIONS(3007), - [aux_sym__val_number_decimal_token3] = ACTIONS(3009), - [aux_sym__val_number_decimal_token4] = ACTIONS(3011), - [aux_sym__val_number_token1] = ACTIONS(2569), - [aux_sym__val_number_token2] = ACTIONS(2569), - [aux_sym__val_number_token3] = ACTIONS(2569), - [anon_sym_0b] = ACTIONS(2571), - [anon_sym_0o] = ACTIONS(2573), - [anon_sym_0x] = ACTIONS(2573), - [sym_val_date] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3015), - [sym__str_single_quotes] = ACTIONS(3017), - [sym__str_back_ticks] = ACTIONS(3017), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [anon_sym_err_GT_GT] = ACTIONS(2589), - [anon_sym_out_GT_GT] = ACTIONS(2589), - [anon_sym_e_GT_GT] = ACTIONS(2589), - [anon_sym_o_GT_GT] = ACTIONS(2589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2709), + [aux_sym_list_body_repeat1] = STATE(781), + [anon_sym_true] = ACTIONS(3032), + [anon_sym_false] = ACTIONS(3032), + [anon_sym_null] = ACTIONS(3034), + [aux_sym_cmd_identifier_token38] = ACTIONS(3036), + [aux_sym_cmd_identifier_token39] = ACTIONS(3036), + [aux_sym_cmd_identifier_token40] = ACTIONS(3036), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(3078), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym_DOLLAR] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_DOT_DOT] = ACTIONS(3048), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), + [anon_sym_DOT_DOT_LT] = ACTIONS(3050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(3052), + [aux_sym__val_number_decimal_token2] = ACTIONS(3054), + [aux_sym__val_number_decimal_token3] = ACTIONS(3056), + [aux_sym__val_number_decimal_token4] = ACTIONS(3058), + [aux_sym__val_number_token1] = ACTIONS(3060), + [aux_sym__val_number_token2] = ACTIONS(3060), + [aux_sym__val_number_token3] = ACTIONS(3060), + [anon_sym_0b] = ACTIONS(3062), + [anon_sym_0o] = ACTIONS(3064), + [anon_sym_0x] = ACTIONS(3064), + [sym_val_date] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(3068), + [sym__str_single_quotes] = ACTIONS(3070), + [sym__str_back_ticks] = ACTIONS(3070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), + [anon_sym_err_GT] = ACTIONS(2627), + [anon_sym_out_GT] = ACTIONS(2627), + [anon_sym_e_GT] = ACTIONS(2627), + [anon_sym_o_GT] = ACTIONS(2627), + [anon_sym_err_PLUSout_GT] = ACTIONS(2627), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), + [anon_sym_o_PLUSe_GT] = ACTIONS(2627), + [anon_sym_e_PLUSo_GT] = ACTIONS(2627), + [anon_sym_err_GT_GT] = ACTIONS(2629), + [anon_sym_out_GT_GT] = ACTIONS(2629), + [anon_sym_e_GT_GT] = ACTIONS(2629), + [anon_sym_o_GT_GT] = ACTIONS(2629), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3074), }, [762] = { - [sym_expr_parenthesized] = STATE(5961), - [sym__spread_parenthesized] = STATE(7348), - [sym_val_range] = STATE(7355), - [sym__val_range] = STATE(7469), - [sym__val_range_with_end] = STATE(7194), - [sym__value] = STATE(7355), - [sym_val_nothing] = STATE(521), - [sym_val_bool] = STATE(6215), - [sym__spread_variable] = STATE(7195), - [sym_val_variable] = STATE(5719), - [sym_val_number] = STATE(521), - [sym__val_number_decimal] = STATE(5264), - [sym__val_number] = STATE(2915), - [sym_val_duration] = STATE(521), - [sym_val_filesize] = STATE(521), - [sym_val_binary] = STATE(521), - [sym_val_string] = STATE(521), - [sym__str_double_quotes] = STATE(5413), - [sym_val_interpolated] = STATE(521), - [sym__inter_single_quotes] = STATE(495), - [sym__inter_double_quotes] = STATE(556), - [sym_val_list] = STATE(7065), - [sym__spread_list] = STATE(7348), - [sym_val_entry] = STATE(6710), - [sym_val_record] = STATE(521), - [sym_val_table] = STATE(521), - [sym_val_closure] = STATE(521), - [sym__unquoted_in_list] = STATE(6465), - [sym__unquoted_in_list_with_expr] = STATE(7355), - [sym__unquoted_anonymous_prefix] = STATE(6960), + [sym_expr_parenthesized] = STATE(6164), + [sym__spread_parenthesized] = STATE(7414), + [sym_val_range] = STATE(7423), + [sym__val_range] = STATE(7652), + [sym__val_range_with_end] = STATE(7490), + [sym__value] = STATE(7423), + [sym_val_nothing] = STATE(6921), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5774), + [sym_val_number] = STATE(6921), + [sym__val_number_decimal] = STATE(5339), + [sym__val_number] = STATE(7088), + [sym_val_duration] = STATE(6921), + [sym_val_filesize] = STATE(6921), + [sym_val_binary] = STATE(6921), + [sym_val_string] = STATE(6921), + [sym__raw_str] = STATE(5521), + [sym__str_double_quotes] = STATE(5521), + [sym_val_interpolated] = STATE(6921), + [sym__inter_single_quotes] = STATE(7044), + [sym__inter_double_quotes] = STATE(7055), + [sym_val_list] = STATE(7360), + [sym__spread_list] = STATE(7414), + [sym_val_entry] = STATE(6855), + [sym_val_record] = STATE(6921), + [sym_val_table] = STATE(6921), + [sym_val_closure] = STATE(6921), + [sym__unquoted_in_list] = STATE(6357), + [sym__unquoted_in_list_with_expr] = STATE(7423), + [sym__unquoted_anonymous_prefix] = STATE(6796), [sym_comment] = STATE(762), - [aux_sym_shebang_repeat1] = STATE(2691), - [aux_sym_list_body_repeat1] = STATE(774), - [anon_sym_true] = ACTIONS(2985), - [anon_sym_false] = ACTIONS(2985), - [anon_sym_null] = ACTIONS(2987), - [aux_sym_cmd_identifier_token38] = ACTIONS(2989), - [aux_sym_cmd_identifier_token39] = ACTIONS(2989), - [aux_sym_cmd_identifier_token40] = ACTIONS(2989), - [sym__newline] = ACTIONS(3070), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_DOLLAR] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_DOT_DOT] = ACTIONS(3001), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), - [anon_sym_DOT_DOT_LT] = ACTIONS(3003), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(3005), - [aux_sym__val_number_decimal_token2] = ACTIONS(3007), - [aux_sym__val_number_decimal_token3] = ACTIONS(3009), - [aux_sym__val_number_decimal_token4] = ACTIONS(3011), - [aux_sym__val_number_token1] = ACTIONS(2569), - [aux_sym__val_number_token2] = ACTIONS(2569), - [aux_sym__val_number_token3] = ACTIONS(2569), - [anon_sym_0b] = ACTIONS(2571), - [anon_sym_0o] = ACTIONS(2573), - [anon_sym_0x] = ACTIONS(2573), - [sym_val_date] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3015), - [sym__str_single_quotes] = ACTIONS(3017), - [sym__str_back_ticks] = ACTIONS(3017), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [anon_sym_err_GT_GT] = ACTIONS(2589), - [anon_sym_out_GT_GT] = ACTIONS(2589), - [anon_sym_e_GT_GT] = ACTIONS(2589), - [anon_sym_o_GT_GT] = ACTIONS(2589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2709), + [aux_sym_list_body_repeat1] = STATE(781), + [anon_sym_true] = ACTIONS(3032), + [anon_sym_false] = ACTIONS(3032), + [anon_sym_null] = ACTIONS(3034), + [aux_sym_cmd_identifier_token38] = ACTIONS(3036), + [aux_sym_cmd_identifier_token39] = ACTIONS(3036), + [aux_sym_cmd_identifier_token40] = ACTIONS(3036), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(3038), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym_DOLLAR] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_DOT_DOT] = ACTIONS(3048), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), + [anon_sym_DOT_DOT_LT] = ACTIONS(3050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(3052), + [aux_sym__val_number_decimal_token2] = ACTIONS(3054), + [aux_sym__val_number_decimal_token3] = ACTIONS(3056), + [aux_sym__val_number_decimal_token4] = ACTIONS(3058), + [aux_sym__val_number_token1] = ACTIONS(3060), + [aux_sym__val_number_token2] = ACTIONS(3060), + [aux_sym__val_number_token3] = ACTIONS(3060), + [anon_sym_0b] = ACTIONS(3062), + [anon_sym_0o] = ACTIONS(3064), + [anon_sym_0x] = ACTIONS(3064), + [sym_val_date] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(3068), + [sym__str_single_quotes] = ACTIONS(3070), + [sym__str_back_ticks] = ACTIONS(3070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), + [anon_sym_err_GT] = ACTIONS(2627), + [anon_sym_out_GT] = ACTIONS(2627), + [anon_sym_e_GT] = ACTIONS(2627), + [anon_sym_o_GT] = ACTIONS(2627), + [anon_sym_err_PLUSout_GT] = ACTIONS(2627), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), + [anon_sym_o_PLUSe_GT] = ACTIONS(2627), + [anon_sym_e_PLUSo_GT] = ACTIONS(2627), + [anon_sym_err_GT_GT] = ACTIONS(2629), + [anon_sym_out_GT_GT] = ACTIONS(2629), + [anon_sym_e_GT_GT] = ACTIONS(2629), + [anon_sym_o_GT_GT] = ACTIONS(2629), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3074), }, [763] = { - [sym_expr_parenthesized] = STATE(5961), - [sym__spread_parenthesized] = STATE(7348), - [sym_val_range] = STATE(7355), - [sym__val_range] = STATE(7469), - [sym__val_range_with_end] = STATE(7194), - [sym__value] = STATE(7355), - [sym_val_nothing] = STATE(521), - [sym_val_bool] = STATE(6215), - [sym__spread_variable] = STATE(7195), - [sym_val_variable] = STATE(5719), - [sym_val_number] = STATE(521), - [sym__val_number_decimal] = STATE(5264), - [sym__val_number] = STATE(2915), - [sym_val_duration] = STATE(521), - [sym_val_filesize] = STATE(521), - [sym_val_binary] = STATE(521), - [sym_val_string] = STATE(521), - [sym__str_double_quotes] = STATE(5413), - [sym_val_interpolated] = STATE(521), - [sym__inter_single_quotes] = STATE(495), - [sym__inter_double_quotes] = STATE(556), - [sym_val_list] = STATE(7073), - [sym__spread_list] = STATE(7348), - [sym_val_entry] = STATE(6710), - [sym_val_record] = STATE(521), - [sym_val_table] = STATE(521), - [sym_val_closure] = STATE(521), - [sym__unquoted_in_list] = STATE(6465), - [sym__unquoted_in_list_with_expr] = STATE(7355), - [sym__unquoted_anonymous_prefix] = STATE(6960), + [sym_expr_parenthesized] = STATE(6164), + [sym__spread_parenthesized] = STATE(7414), + [sym_val_range] = STATE(7423), + [sym__val_range] = STATE(7652), + [sym__val_range_with_end] = STATE(7490), + [sym__value] = STATE(7423), + [sym_val_nothing] = STATE(6921), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5774), + [sym_val_number] = STATE(6921), + [sym__val_number_decimal] = STATE(5339), + [sym__val_number] = STATE(7088), + [sym_val_duration] = STATE(6921), + [sym_val_filesize] = STATE(6921), + [sym_val_binary] = STATE(6921), + [sym_val_string] = STATE(6921), + [sym__raw_str] = STATE(5521), + [sym__str_double_quotes] = STATE(5521), + [sym_val_interpolated] = STATE(6921), + [sym__inter_single_quotes] = STATE(7044), + [sym__inter_double_quotes] = STATE(7055), + [sym_val_list] = STATE(7215), + [sym__spread_list] = STATE(7414), + [sym_val_entry] = STATE(6855), + [sym_val_record] = STATE(6921), + [sym_val_table] = STATE(6921), + [sym_val_closure] = STATE(6921), + [sym__unquoted_in_list] = STATE(6357), + [sym__unquoted_in_list_with_expr] = STATE(7423), + [sym__unquoted_anonymous_prefix] = STATE(6796), [sym_comment] = STATE(763), - [aux_sym_shebang_repeat1] = STATE(2691), - [aux_sym_list_body_repeat1] = STATE(774), - [anon_sym_true] = ACTIONS(2985), - [anon_sym_false] = ACTIONS(2985), - [anon_sym_null] = ACTIONS(2987), - [aux_sym_cmd_identifier_token38] = ACTIONS(2989), - [aux_sym_cmd_identifier_token39] = ACTIONS(2989), - [aux_sym_cmd_identifier_token40] = ACTIONS(2989), - [sym__newline] = ACTIONS(3070), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_DOLLAR] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_DOT_DOT] = ACTIONS(3001), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), - [anon_sym_DOT_DOT_LT] = ACTIONS(3003), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(3005), - [aux_sym__val_number_decimal_token2] = ACTIONS(3007), - [aux_sym__val_number_decimal_token3] = ACTIONS(3009), - [aux_sym__val_number_decimal_token4] = ACTIONS(3011), - [aux_sym__val_number_token1] = ACTIONS(2569), - [aux_sym__val_number_token2] = ACTIONS(2569), - [aux_sym__val_number_token3] = ACTIONS(2569), - [anon_sym_0b] = ACTIONS(2571), - [anon_sym_0o] = ACTIONS(2573), - [anon_sym_0x] = ACTIONS(2573), - [sym_val_date] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3015), - [sym__str_single_quotes] = ACTIONS(3017), - [sym__str_back_ticks] = ACTIONS(3017), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [anon_sym_err_GT_GT] = ACTIONS(2589), - [anon_sym_out_GT_GT] = ACTIONS(2589), - [anon_sym_e_GT_GT] = ACTIONS(2589), - [anon_sym_o_GT_GT] = ACTIONS(2589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2709), + [aux_sym_list_body_repeat1] = STATE(781), + [anon_sym_true] = ACTIONS(3032), + [anon_sym_false] = ACTIONS(3032), + [anon_sym_null] = ACTIONS(3034), + [aux_sym_cmd_identifier_token38] = ACTIONS(3036), + [aux_sym_cmd_identifier_token39] = ACTIONS(3036), + [aux_sym_cmd_identifier_token40] = ACTIONS(3036), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(3038), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym_DOLLAR] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_DOT_DOT] = ACTIONS(3048), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), + [anon_sym_DOT_DOT_LT] = ACTIONS(3050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(3052), + [aux_sym__val_number_decimal_token2] = ACTIONS(3054), + [aux_sym__val_number_decimal_token3] = ACTIONS(3056), + [aux_sym__val_number_decimal_token4] = ACTIONS(3058), + [aux_sym__val_number_token1] = ACTIONS(3060), + [aux_sym__val_number_token2] = ACTIONS(3060), + [aux_sym__val_number_token3] = ACTIONS(3060), + [anon_sym_0b] = ACTIONS(3062), + [anon_sym_0o] = ACTIONS(3064), + [anon_sym_0x] = ACTIONS(3064), + [sym_val_date] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(3068), + [sym__str_single_quotes] = ACTIONS(3070), + [sym__str_back_ticks] = ACTIONS(3070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), + [anon_sym_err_GT] = ACTIONS(2627), + [anon_sym_out_GT] = ACTIONS(2627), + [anon_sym_e_GT] = ACTIONS(2627), + [anon_sym_o_GT] = ACTIONS(2627), + [anon_sym_err_PLUSout_GT] = ACTIONS(2627), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), + [anon_sym_o_PLUSe_GT] = ACTIONS(2627), + [anon_sym_e_PLUSo_GT] = ACTIONS(2627), + [anon_sym_err_GT_GT] = ACTIONS(2629), + [anon_sym_out_GT_GT] = ACTIONS(2629), + [anon_sym_e_GT_GT] = ACTIONS(2629), + [anon_sym_o_GT_GT] = ACTIONS(2629), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3074), }, [764] = { - [sym_expr_parenthesized] = STATE(5961), - [sym__spread_parenthesized] = STATE(7348), - [sym_val_range] = STATE(7355), - [sym__val_range] = STATE(7469), - [sym__val_range_with_end] = STATE(7194), - [sym__value] = STATE(7355), - [sym_val_nothing] = STATE(521), - [sym_val_bool] = STATE(6215), - [sym__spread_variable] = STATE(7195), - [sym_val_variable] = STATE(5719), - [sym_val_number] = STATE(521), - [sym__val_number_decimal] = STATE(5264), - [sym__val_number] = STATE(2915), - [sym_val_duration] = STATE(521), - [sym_val_filesize] = STATE(521), - [sym_val_binary] = STATE(521), - [sym_val_string] = STATE(521), - [sym__str_double_quotes] = STATE(5413), - [sym_val_interpolated] = STATE(521), - [sym__inter_single_quotes] = STATE(495), - [sym__inter_double_quotes] = STATE(556), - [sym_val_list] = STATE(7080), - [sym__spread_list] = STATE(7348), - [sym_val_entry] = STATE(6710), - [sym_val_record] = STATE(521), - [sym_val_table] = STATE(521), - [sym_val_closure] = STATE(521), - [sym__unquoted_in_list] = STATE(6465), - [sym__unquoted_in_list_with_expr] = STATE(7355), - [sym__unquoted_anonymous_prefix] = STATE(6960), + [sym_expr_parenthesized] = STATE(6164), + [sym__spread_parenthesized] = STATE(7414), + [sym_val_range] = STATE(7423), + [sym__val_range] = STATE(7652), + [sym__val_range_with_end] = STATE(7490), + [sym__value] = STATE(7423), + [sym_val_nothing] = STATE(6921), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5774), + [sym_val_number] = STATE(6921), + [sym__val_number_decimal] = STATE(5339), + [sym__val_number] = STATE(7088), + [sym_val_duration] = STATE(6921), + [sym_val_filesize] = STATE(6921), + [sym_val_binary] = STATE(6921), + [sym_val_string] = STATE(6921), + [sym__raw_str] = STATE(5521), + [sym__str_double_quotes] = STATE(5521), + [sym_val_interpolated] = STATE(6921), + [sym__inter_single_quotes] = STATE(7044), + [sym__inter_double_quotes] = STATE(7055), + [sym_val_list] = STATE(7367), + [sym__spread_list] = STATE(7414), + [sym_val_entry] = STATE(6855), + [sym_val_record] = STATE(6921), + [sym_val_table] = STATE(6921), + [sym_val_closure] = STATE(6921), + [sym__unquoted_in_list] = STATE(6357), + [sym__unquoted_in_list_with_expr] = STATE(7423), + [sym__unquoted_anonymous_prefix] = STATE(6796), [sym_comment] = STATE(764), - [aux_sym_shebang_repeat1] = STATE(2691), - [aux_sym_list_body_repeat1] = STATE(774), - [anon_sym_true] = ACTIONS(2985), - [anon_sym_false] = ACTIONS(2985), - [anon_sym_null] = ACTIONS(2987), - [aux_sym_cmd_identifier_token38] = ACTIONS(2989), - [aux_sym_cmd_identifier_token39] = ACTIONS(2989), - [aux_sym_cmd_identifier_token40] = ACTIONS(2989), - [sym__newline] = ACTIONS(3070), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_DOLLAR] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_DOT_DOT] = ACTIONS(3001), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), - [anon_sym_DOT_DOT_LT] = ACTIONS(3003), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(3005), - [aux_sym__val_number_decimal_token2] = ACTIONS(3007), - [aux_sym__val_number_decimal_token3] = ACTIONS(3009), - [aux_sym__val_number_decimal_token4] = ACTIONS(3011), - [aux_sym__val_number_token1] = ACTIONS(2569), - [aux_sym__val_number_token2] = ACTIONS(2569), - [aux_sym__val_number_token3] = ACTIONS(2569), - [anon_sym_0b] = ACTIONS(2571), - [anon_sym_0o] = ACTIONS(2573), - [anon_sym_0x] = ACTIONS(2573), - [sym_val_date] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3015), - [sym__str_single_quotes] = ACTIONS(3017), - [sym__str_back_ticks] = ACTIONS(3017), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [anon_sym_err_GT_GT] = ACTIONS(2589), - [anon_sym_out_GT_GT] = ACTIONS(2589), - [anon_sym_e_GT_GT] = ACTIONS(2589), - [anon_sym_o_GT_GT] = ACTIONS(2589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2709), + [aux_sym_list_body_repeat1] = STATE(781), + [anon_sym_true] = ACTIONS(3032), + [anon_sym_false] = ACTIONS(3032), + [anon_sym_null] = ACTIONS(3034), + [aux_sym_cmd_identifier_token38] = ACTIONS(3036), + [aux_sym_cmd_identifier_token39] = ACTIONS(3036), + [aux_sym_cmd_identifier_token40] = ACTIONS(3036), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(3038), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym_DOLLAR] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_DOT_DOT] = ACTIONS(3048), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), + [anon_sym_DOT_DOT_LT] = ACTIONS(3050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(3052), + [aux_sym__val_number_decimal_token2] = ACTIONS(3054), + [aux_sym__val_number_decimal_token3] = ACTIONS(3056), + [aux_sym__val_number_decimal_token4] = ACTIONS(3058), + [aux_sym__val_number_token1] = ACTIONS(3060), + [aux_sym__val_number_token2] = ACTIONS(3060), + [aux_sym__val_number_token3] = ACTIONS(3060), + [anon_sym_0b] = ACTIONS(3062), + [anon_sym_0o] = ACTIONS(3064), + [anon_sym_0x] = ACTIONS(3064), + [sym_val_date] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(3068), + [sym__str_single_quotes] = ACTIONS(3070), + [sym__str_back_ticks] = ACTIONS(3070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), + [anon_sym_err_GT] = ACTIONS(2627), + [anon_sym_out_GT] = ACTIONS(2627), + [anon_sym_e_GT] = ACTIONS(2627), + [anon_sym_o_GT] = ACTIONS(2627), + [anon_sym_err_PLUSout_GT] = ACTIONS(2627), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), + [anon_sym_o_PLUSe_GT] = ACTIONS(2627), + [anon_sym_e_PLUSo_GT] = ACTIONS(2627), + [anon_sym_err_GT_GT] = ACTIONS(2629), + [anon_sym_out_GT_GT] = ACTIONS(2629), + [anon_sym_e_GT_GT] = ACTIONS(2629), + [anon_sym_o_GT_GT] = ACTIONS(2629), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3074), }, [765] = { - [sym_expr_parenthesized] = STATE(5961), - [sym__spread_parenthesized] = STATE(7348), - [sym_val_range] = STATE(7355), - [sym__val_range] = STATE(7469), - [sym__val_range_with_end] = STATE(7194), - [sym__value] = STATE(7355), - [sym_val_nothing] = STATE(521), - [sym_val_bool] = STATE(6215), - [sym__spread_variable] = STATE(7195), - [sym_val_variable] = STATE(5719), - [sym_val_number] = STATE(521), - [sym__val_number_decimal] = STATE(5264), - [sym__val_number] = STATE(2915), - [sym_val_duration] = STATE(521), - [sym_val_filesize] = STATE(521), - [sym_val_binary] = STATE(521), - [sym_val_string] = STATE(521), - [sym__str_double_quotes] = STATE(5413), - [sym_val_interpolated] = STATE(521), - [sym__inter_single_quotes] = STATE(495), - [sym__inter_double_quotes] = STATE(556), - [sym_val_list] = STATE(7087), - [sym__spread_list] = STATE(7348), - [sym_val_entry] = STATE(6710), - [sym_val_record] = STATE(521), - [sym_val_table] = STATE(521), - [sym_val_closure] = STATE(521), - [sym__unquoted_in_list] = STATE(6465), - [sym__unquoted_in_list_with_expr] = STATE(7355), - [sym__unquoted_anonymous_prefix] = STATE(6960), + [sym_expr_parenthesized] = STATE(6164), + [sym__spread_parenthesized] = STATE(7414), + [sym_val_range] = STATE(7423), + [sym__val_range] = STATE(7652), + [sym__val_range_with_end] = STATE(7490), + [sym__value] = STATE(7423), + [sym_val_nothing] = STATE(6921), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5774), + [sym_val_number] = STATE(6921), + [sym__val_number_decimal] = STATE(5339), + [sym__val_number] = STATE(7088), + [sym_val_duration] = STATE(6921), + [sym_val_filesize] = STATE(6921), + [sym_val_binary] = STATE(6921), + [sym_val_string] = STATE(6921), + [sym__raw_str] = STATE(5521), + [sym__str_double_quotes] = STATE(5521), + [sym_val_interpolated] = STATE(6921), + [sym__inter_single_quotes] = STATE(7044), + [sym__inter_double_quotes] = STATE(7055), + [sym_val_list] = STATE(7232), + [sym__spread_list] = STATE(7414), + [sym_val_entry] = STATE(6855), + [sym_val_record] = STATE(6921), + [sym_val_table] = STATE(6921), + [sym_val_closure] = STATE(6921), + [sym__unquoted_in_list] = STATE(6357), + [sym__unquoted_in_list_with_expr] = STATE(7423), + [sym__unquoted_anonymous_prefix] = STATE(6796), [sym_comment] = STATE(765), - [aux_sym_shebang_repeat1] = STATE(2691), - [aux_sym_list_body_repeat1] = STATE(774), - [anon_sym_true] = ACTIONS(2985), - [anon_sym_false] = ACTIONS(2985), - [anon_sym_null] = ACTIONS(2987), - [aux_sym_cmd_identifier_token38] = ACTIONS(2989), - [aux_sym_cmd_identifier_token39] = ACTIONS(2989), - [aux_sym_cmd_identifier_token40] = ACTIONS(2989), - [sym__newline] = ACTIONS(3070), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_DOLLAR] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_DOT_DOT] = ACTIONS(3001), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), - [anon_sym_DOT_DOT_LT] = ACTIONS(3003), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(3005), - [aux_sym__val_number_decimal_token2] = ACTIONS(3007), - [aux_sym__val_number_decimal_token3] = ACTIONS(3009), - [aux_sym__val_number_decimal_token4] = ACTIONS(3011), - [aux_sym__val_number_token1] = ACTIONS(2569), - [aux_sym__val_number_token2] = ACTIONS(2569), - [aux_sym__val_number_token3] = ACTIONS(2569), - [anon_sym_0b] = ACTIONS(2571), - [anon_sym_0o] = ACTIONS(2573), - [anon_sym_0x] = ACTIONS(2573), - [sym_val_date] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3015), - [sym__str_single_quotes] = ACTIONS(3017), - [sym__str_back_ticks] = ACTIONS(3017), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [anon_sym_err_GT_GT] = ACTIONS(2589), - [anon_sym_out_GT_GT] = ACTIONS(2589), - [anon_sym_e_GT_GT] = ACTIONS(2589), - [anon_sym_o_GT_GT] = ACTIONS(2589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2709), + [aux_sym_list_body_repeat1] = STATE(781), + [anon_sym_true] = ACTIONS(3032), + [anon_sym_false] = ACTIONS(3032), + [anon_sym_null] = ACTIONS(3034), + [aux_sym_cmd_identifier_token38] = ACTIONS(3036), + [aux_sym_cmd_identifier_token39] = ACTIONS(3036), + [aux_sym_cmd_identifier_token40] = ACTIONS(3036), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(3038), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym_DOLLAR] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_DOT_DOT] = ACTIONS(3048), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), + [anon_sym_DOT_DOT_LT] = ACTIONS(3050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(3052), + [aux_sym__val_number_decimal_token2] = ACTIONS(3054), + [aux_sym__val_number_decimal_token3] = ACTIONS(3056), + [aux_sym__val_number_decimal_token4] = ACTIONS(3058), + [aux_sym__val_number_token1] = ACTIONS(3060), + [aux_sym__val_number_token2] = ACTIONS(3060), + [aux_sym__val_number_token3] = ACTIONS(3060), + [anon_sym_0b] = ACTIONS(3062), + [anon_sym_0o] = ACTIONS(3064), + [anon_sym_0x] = ACTIONS(3064), + [sym_val_date] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(3068), + [sym__str_single_quotes] = ACTIONS(3070), + [sym__str_back_ticks] = ACTIONS(3070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), + [anon_sym_err_GT] = ACTIONS(2627), + [anon_sym_out_GT] = ACTIONS(2627), + [anon_sym_e_GT] = ACTIONS(2627), + [anon_sym_o_GT] = ACTIONS(2627), + [anon_sym_err_PLUSout_GT] = ACTIONS(2627), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), + [anon_sym_o_PLUSe_GT] = ACTIONS(2627), + [anon_sym_e_PLUSo_GT] = ACTIONS(2627), + [anon_sym_err_GT_GT] = ACTIONS(2629), + [anon_sym_out_GT_GT] = ACTIONS(2629), + [anon_sym_e_GT_GT] = ACTIONS(2629), + [anon_sym_o_GT_GT] = ACTIONS(2629), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3074), }, [766] = { - [sym_expr_parenthesized] = STATE(5961), - [sym__spread_parenthesized] = STATE(7348), - [sym_val_range] = STATE(7355), - [sym__val_range] = STATE(7469), - [sym__val_range_with_end] = STATE(7194), - [sym__value] = STATE(7355), - [sym_val_nothing] = STATE(521), - [sym_val_bool] = STATE(6215), - [sym__spread_variable] = STATE(7195), - [sym_val_variable] = STATE(5719), - [sym_val_number] = STATE(521), - [sym__val_number_decimal] = STATE(5264), - [sym__val_number] = STATE(2915), - [sym_val_duration] = STATE(521), - [sym_val_filesize] = STATE(521), - [sym_val_binary] = STATE(521), - [sym_val_string] = STATE(521), - [sym__str_double_quotes] = STATE(5413), - [sym_val_interpolated] = STATE(521), - [sym__inter_single_quotes] = STATE(495), - [sym__inter_double_quotes] = STATE(556), - [sym_val_list] = STATE(7095), - [sym__spread_list] = STATE(7348), - [sym_val_entry] = STATE(6710), - [sym_val_record] = STATE(521), - [sym_val_table] = STATE(521), - [sym_val_closure] = STATE(521), - [sym__unquoted_in_list] = STATE(6465), - [sym__unquoted_in_list_with_expr] = STATE(7355), - [sym__unquoted_anonymous_prefix] = STATE(6960), + [sym_expr_parenthesized] = STATE(6164), + [sym__spread_parenthesized] = STATE(7414), + [sym_val_range] = STATE(7423), + [sym__val_range] = STATE(7652), + [sym__val_range_with_end] = STATE(7490), + [sym__value] = STATE(7423), + [sym_val_nothing] = STATE(6921), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5774), + [sym_val_number] = STATE(6921), + [sym__val_number_decimal] = STATE(5339), + [sym__val_number] = STATE(7088), + [sym_val_duration] = STATE(6921), + [sym_val_filesize] = STATE(6921), + [sym_val_binary] = STATE(6921), + [sym_val_string] = STATE(6921), + [sym__raw_str] = STATE(5521), + [sym__str_double_quotes] = STATE(5521), + [sym_val_interpolated] = STATE(6921), + [sym__inter_single_quotes] = STATE(7044), + [sym__inter_double_quotes] = STATE(7055), + [sym_val_list] = STATE(7239), + [sym__spread_list] = STATE(7414), + [sym_val_entry] = STATE(6855), + [sym_val_record] = STATE(6921), + [sym_val_table] = STATE(6921), + [sym_val_closure] = STATE(6921), + [sym__unquoted_in_list] = STATE(6357), + [sym__unquoted_in_list_with_expr] = STATE(7423), + [sym__unquoted_anonymous_prefix] = STATE(6796), [sym_comment] = STATE(766), - [aux_sym_shebang_repeat1] = STATE(2691), - [aux_sym_list_body_repeat1] = STATE(774), - [anon_sym_true] = ACTIONS(2985), - [anon_sym_false] = ACTIONS(2985), - [anon_sym_null] = ACTIONS(2987), - [aux_sym_cmd_identifier_token38] = ACTIONS(2989), - [aux_sym_cmd_identifier_token39] = ACTIONS(2989), - [aux_sym_cmd_identifier_token40] = ACTIONS(2989), - [sym__newline] = ACTIONS(3070), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_DOLLAR] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_DOT_DOT] = ACTIONS(3001), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), - [anon_sym_DOT_DOT_LT] = ACTIONS(3003), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(3005), - [aux_sym__val_number_decimal_token2] = ACTIONS(3007), - [aux_sym__val_number_decimal_token3] = ACTIONS(3009), - [aux_sym__val_number_decimal_token4] = ACTIONS(3011), - [aux_sym__val_number_token1] = ACTIONS(2569), - [aux_sym__val_number_token2] = ACTIONS(2569), - [aux_sym__val_number_token3] = ACTIONS(2569), - [anon_sym_0b] = ACTIONS(2571), - [anon_sym_0o] = ACTIONS(2573), - [anon_sym_0x] = ACTIONS(2573), - [sym_val_date] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3015), - [sym__str_single_quotes] = ACTIONS(3017), - [sym__str_back_ticks] = ACTIONS(3017), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [anon_sym_err_GT_GT] = ACTIONS(2589), - [anon_sym_out_GT_GT] = ACTIONS(2589), - [anon_sym_e_GT_GT] = ACTIONS(2589), - [anon_sym_o_GT_GT] = ACTIONS(2589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2709), + [aux_sym_list_body_repeat1] = STATE(781), + [anon_sym_true] = ACTIONS(3032), + [anon_sym_false] = ACTIONS(3032), + [anon_sym_null] = ACTIONS(3034), + [aux_sym_cmd_identifier_token38] = ACTIONS(3036), + [aux_sym_cmd_identifier_token39] = ACTIONS(3036), + [aux_sym_cmd_identifier_token40] = ACTIONS(3036), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(3038), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym_DOLLAR] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_DOT_DOT] = ACTIONS(3048), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), + [anon_sym_DOT_DOT_LT] = ACTIONS(3050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(3052), + [aux_sym__val_number_decimal_token2] = ACTIONS(3054), + [aux_sym__val_number_decimal_token3] = ACTIONS(3056), + [aux_sym__val_number_decimal_token4] = ACTIONS(3058), + [aux_sym__val_number_token1] = ACTIONS(3060), + [aux_sym__val_number_token2] = ACTIONS(3060), + [aux_sym__val_number_token3] = ACTIONS(3060), + [anon_sym_0b] = ACTIONS(3062), + [anon_sym_0o] = ACTIONS(3064), + [anon_sym_0x] = ACTIONS(3064), + [sym_val_date] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(3068), + [sym__str_single_quotes] = ACTIONS(3070), + [sym__str_back_ticks] = ACTIONS(3070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), + [anon_sym_err_GT] = ACTIONS(2627), + [anon_sym_out_GT] = ACTIONS(2627), + [anon_sym_e_GT] = ACTIONS(2627), + [anon_sym_o_GT] = ACTIONS(2627), + [anon_sym_err_PLUSout_GT] = ACTIONS(2627), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), + [anon_sym_o_PLUSe_GT] = ACTIONS(2627), + [anon_sym_e_PLUSo_GT] = ACTIONS(2627), + [anon_sym_err_GT_GT] = ACTIONS(2629), + [anon_sym_out_GT_GT] = ACTIONS(2629), + [anon_sym_e_GT_GT] = ACTIONS(2629), + [anon_sym_o_GT_GT] = ACTIONS(2629), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3074), }, [767] = { - [sym_expr_parenthesized] = STATE(5961), - [sym__spread_parenthesized] = STATE(7348), - [sym_val_range] = STATE(7355), - [sym__val_range] = STATE(7469), - [sym__val_range_with_end] = STATE(7194), - [sym__value] = STATE(7355), - [sym_val_nothing] = STATE(521), - [sym_val_bool] = STATE(6215), - [sym__spread_variable] = STATE(7195), - [sym_val_variable] = STATE(5719), - [sym_val_number] = STATE(521), - [sym__val_number_decimal] = STATE(5264), - [sym__val_number] = STATE(2915), - [sym_val_duration] = STATE(521), - [sym_val_filesize] = STATE(521), - [sym_val_binary] = STATE(521), - [sym_val_string] = STATE(521), - [sym__str_double_quotes] = STATE(5413), - [sym_val_interpolated] = STATE(521), - [sym__inter_single_quotes] = STATE(495), - [sym__inter_double_quotes] = STATE(556), - [sym_val_list] = STATE(7103), - [sym__spread_list] = STATE(7348), - [sym_val_entry] = STATE(6710), - [sym_val_record] = STATE(521), - [sym_val_table] = STATE(521), - [sym_val_closure] = STATE(521), - [sym__unquoted_in_list] = STATE(6465), - [sym__unquoted_in_list_with_expr] = STATE(7355), - [sym__unquoted_anonymous_prefix] = STATE(6960), + [sym_expr_parenthesized] = STATE(6164), + [sym__spread_parenthesized] = STATE(7414), + [sym_val_range] = STATE(7423), + [sym__val_range] = STATE(7652), + [sym__val_range_with_end] = STATE(7490), + [sym__value] = STATE(7423), + [sym_val_nothing] = STATE(6921), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5774), + [sym_val_number] = STATE(6921), + [sym__val_number_decimal] = STATE(5339), + [sym__val_number] = STATE(7088), + [sym_val_duration] = STATE(6921), + [sym_val_filesize] = STATE(6921), + [sym_val_binary] = STATE(6921), + [sym_val_string] = STATE(6921), + [sym__raw_str] = STATE(5521), + [sym__str_double_quotes] = STATE(5521), + [sym_val_interpolated] = STATE(6921), + [sym__inter_single_quotes] = STATE(7044), + [sym__inter_double_quotes] = STATE(7055), + [sym_val_list] = STATE(7247), + [sym__spread_list] = STATE(7414), + [sym_val_entry] = STATE(6855), + [sym_val_record] = STATE(6921), + [sym_val_table] = STATE(6921), + [sym_val_closure] = STATE(6921), + [sym__unquoted_in_list] = STATE(6357), + [sym__unquoted_in_list_with_expr] = STATE(7423), + [sym__unquoted_anonymous_prefix] = STATE(6796), [sym_comment] = STATE(767), - [aux_sym_shebang_repeat1] = STATE(2691), - [aux_sym_list_body_repeat1] = STATE(774), - [anon_sym_true] = ACTIONS(2985), - [anon_sym_false] = ACTIONS(2985), - [anon_sym_null] = ACTIONS(2987), - [aux_sym_cmd_identifier_token38] = ACTIONS(2989), - [aux_sym_cmd_identifier_token39] = ACTIONS(2989), - [aux_sym_cmd_identifier_token40] = ACTIONS(2989), - [sym__newline] = ACTIONS(3070), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_DOLLAR] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_DOT_DOT] = ACTIONS(3001), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), - [anon_sym_DOT_DOT_LT] = ACTIONS(3003), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(3005), - [aux_sym__val_number_decimal_token2] = ACTIONS(3007), - [aux_sym__val_number_decimal_token3] = ACTIONS(3009), - [aux_sym__val_number_decimal_token4] = ACTIONS(3011), - [aux_sym__val_number_token1] = ACTIONS(2569), - [aux_sym__val_number_token2] = ACTIONS(2569), - [aux_sym__val_number_token3] = ACTIONS(2569), - [anon_sym_0b] = ACTIONS(2571), - [anon_sym_0o] = ACTIONS(2573), - [anon_sym_0x] = ACTIONS(2573), - [sym_val_date] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3015), - [sym__str_single_quotes] = ACTIONS(3017), - [sym__str_back_ticks] = ACTIONS(3017), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [anon_sym_err_GT_GT] = ACTIONS(2589), - [anon_sym_out_GT_GT] = ACTIONS(2589), - [anon_sym_e_GT_GT] = ACTIONS(2589), - [anon_sym_o_GT_GT] = ACTIONS(2589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2709), + [aux_sym_list_body_repeat1] = STATE(781), + [anon_sym_true] = ACTIONS(3032), + [anon_sym_false] = ACTIONS(3032), + [anon_sym_null] = ACTIONS(3034), + [aux_sym_cmd_identifier_token38] = ACTIONS(3036), + [aux_sym_cmd_identifier_token39] = ACTIONS(3036), + [aux_sym_cmd_identifier_token40] = ACTIONS(3036), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(3038), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym_DOLLAR] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_DOT_DOT] = ACTIONS(3048), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), + [anon_sym_DOT_DOT_LT] = ACTIONS(3050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(3052), + [aux_sym__val_number_decimal_token2] = ACTIONS(3054), + [aux_sym__val_number_decimal_token3] = ACTIONS(3056), + [aux_sym__val_number_decimal_token4] = ACTIONS(3058), + [aux_sym__val_number_token1] = ACTIONS(3060), + [aux_sym__val_number_token2] = ACTIONS(3060), + [aux_sym__val_number_token3] = ACTIONS(3060), + [anon_sym_0b] = ACTIONS(3062), + [anon_sym_0o] = ACTIONS(3064), + [anon_sym_0x] = ACTIONS(3064), + [sym_val_date] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(3068), + [sym__str_single_quotes] = ACTIONS(3070), + [sym__str_back_ticks] = ACTIONS(3070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), + [anon_sym_err_GT] = ACTIONS(2627), + [anon_sym_out_GT] = ACTIONS(2627), + [anon_sym_e_GT] = ACTIONS(2627), + [anon_sym_o_GT] = ACTIONS(2627), + [anon_sym_err_PLUSout_GT] = ACTIONS(2627), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), + [anon_sym_o_PLUSe_GT] = ACTIONS(2627), + [anon_sym_e_PLUSo_GT] = ACTIONS(2627), + [anon_sym_err_GT_GT] = ACTIONS(2629), + [anon_sym_out_GT_GT] = ACTIONS(2629), + [anon_sym_e_GT_GT] = ACTIONS(2629), + [anon_sym_o_GT_GT] = ACTIONS(2629), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3074), }, [768] = { - [sym_expr_parenthesized] = STATE(5961), - [sym__spread_parenthesized] = STATE(7348), - [sym_val_range] = STATE(7355), - [sym__val_range] = STATE(7469), - [sym__val_range_with_end] = STATE(7194), - [sym__value] = STATE(7355), - [sym_val_nothing] = STATE(521), - [sym_val_bool] = STATE(6215), - [sym__spread_variable] = STATE(7195), - [sym_val_variable] = STATE(5719), - [sym_val_number] = STATE(521), - [sym__val_number_decimal] = STATE(5264), - [sym__val_number] = STATE(2915), - [sym_val_duration] = STATE(521), - [sym_val_filesize] = STATE(521), - [sym_val_binary] = STATE(521), - [sym_val_string] = STATE(521), - [sym__str_double_quotes] = STATE(5413), - [sym_val_interpolated] = STATE(521), - [sym__inter_single_quotes] = STATE(495), - [sym__inter_double_quotes] = STATE(556), - [sym_val_list] = STATE(7110), - [sym__spread_list] = STATE(7348), - [sym_val_entry] = STATE(6710), - [sym_val_record] = STATE(521), - [sym_val_table] = STATE(521), - [sym_val_closure] = STATE(521), - [sym__unquoted_in_list] = STATE(6465), - [sym__unquoted_in_list_with_expr] = STATE(7355), - [sym__unquoted_anonymous_prefix] = STATE(6960), + [sym_expr_parenthesized] = STATE(6164), + [sym__spread_parenthesized] = STATE(7414), + [sym_val_range] = STATE(7423), + [sym__val_range] = STATE(7652), + [sym__val_range_with_end] = STATE(7490), + [sym__value] = STATE(7423), + [sym_val_nothing] = STATE(6921), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5774), + [sym_val_number] = STATE(6921), + [sym__val_number_decimal] = STATE(5339), + [sym__val_number] = STATE(7088), + [sym_val_duration] = STATE(6921), + [sym_val_filesize] = STATE(6921), + [sym_val_binary] = STATE(6921), + [sym_val_string] = STATE(6921), + [sym__raw_str] = STATE(5521), + [sym__str_double_quotes] = STATE(5521), + [sym_val_interpolated] = STATE(6921), + [sym__inter_single_quotes] = STATE(7044), + [sym__inter_double_quotes] = STATE(7055), + [sym_val_list] = STATE(7256), + [sym__spread_list] = STATE(7414), + [sym_val_entry] = STATE(6855), + [sym_val_record] = STATE(6921), + [sym_val_table] = STATE(6921), + [sym_val_closure] = STATE(6921), + [sym__unquoted_in_list] = STATE(6357), + [sym__unquoted_in_list_with_expr] = STATE(7423), + [sym__unquoted_anonymous_prefix] = STATE(6796), [sym_comment] = STATE(768), - [aux_sym_shebang_repeat1] = STATE(2691), - [aux_sym_list_body_repeat1] = STATE(774), - [anon_sym_true] = ACTIONS(2985), - [anon_sym_false] = ACTIONS(2985), - [anon_sym_null] = ACTIONS(2987), - [aux_sym_cmd_identifier_token38] = ACTIONS(2989), - [aux_sym_cmd_identifier_token39] = ACTIONS(2989), - [aux_sym_cmd_identifier_token40] = ACTIONS(2989), - [sym__newline] = ACTIONS(3070), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_DOLLAR] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_DOT_DOT] = ACTIONS(3001), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), - [anon_sym_DOT_DOT_LT] = ACTIONS(3003), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(3005), - [aux_sym__val_number_decimal_token2] = ACTIONS(3007), - [aux_sym__val_number_decimal_token3] = ACTIONS(3009), - [aux_sym__val_number_decimal_token4] = ACTIONS(3011), - [aux_sym__val_number_token1] = ACTIONS(2569), - [aux_sym__val_number_token2] = ACTIONS(2569), - [aux_sym__val_number_token3] = ACTIONS(2569), - [anon_sym_0b] = ACTIONS(2571), - [anon_sym_0o] = ACTIONS(2573), - [anon_sym_0x] = ACTIONS(2573), - [sym_val_date] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3015), - [sym__str_single_quotes] = ACTIONS(3017), - [sym__str_back_ticks] = ACTIONS(3017), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [anon_sym_err_GT_GT] = ACTIONS(2589), - [anon_sym_out_GT_GT] = ACTIONS(2589), - [anon_sym_e_GT_GT] = ACTIONS(2589), - [anon_sym_o_GT_GT] = ACTIONS(2589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2709), + [aux_sym_list_body_repeat1] = STATE(781), + [anon_sym_true] = ACTIONS(3032), + [anon_sym_false] = ACTIONS(3032), + [anon_sym_null] = ACTIONS(3034), + [aux_sym_cmd_identifier_token38] = ACTIONS(3036), + [aux_sym_cmd_identifier_token39] = ACTIONS(3036), + [aux_sym_cmd_identifier_token40] = ACTIONS(3036), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(3038), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym_DOLLAR] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_DOT_DOT] = ACTIONS(3048), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), + [anon_sym_DOT_DOT_LT] = ACTIONS(3050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(3052), + [aux_sym__val_number_decimal_token2] = ACTIONS(3054), + [aux_sym__val_number_decimal_token3] = ACTIONS(3056), + [aux_sym__val_number_decimal_token4] = ACTIONS(3058), + [aux_sym__val_number_token1] = ACTIONS(3060), + [aux_sym__val_number_token2] = ACTIONS(3060), + [aux_sym__val_number_token3] = ACTIONS(3060), + [anon_sym_0b] = ACTIONS(3062), + [anon_sym_0o] = ACTIONS(3064), + [anon_sym_0x] = ACTIONS(3064), + [sym_val_date] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(3068), + [sym__str_single_quotes] = ACTIONS(3070), + [sym__str_back_ticks] = ACTIONS(3070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), + [anon_sym_err_GT] = ACTIONS(2627), + [anon_sym_out_GT] = ACTIONS(2627), + [anon_sym_e_GT] = ACTIONS(2627), + [anon_sym_o_GT] = ACTIONS(2627), + [anon_sym_err_PLUSout_GT] = ACTIONS(2627), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), + [anon_sym_o_PLUSe_GT] = ACTIONS(2627), + [anon_sym_e_PLUSo_GT] = ACTIONS(2627), + [anon_sym_err_GT_GT] = ACTIONS(2629), + [anon_sym_out_GT_GT] = ACTIONS(2629), + [anon_sym_e_GT_GT] = ACTIONS(2629), + [anon_sym_o_GT_GT] = ACTIONS(2629), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3074), }, [769] = { - [sym_expr_parenthesized] = STATE(5961), - [sym__spread_parenthesized] = STATE(7348), - [sym_val_range] = STATE(7355), - [sym__val_range] = STATE(7469), - [sym__val_range_with_end] = STATE(7194), - [sym__value] = STATE(7355), - [sym_val_nothing] = STATE(521), - [sym_val_bool] = STATE(6215), - [sym__spread_variable] = STATE(7195), - [sym_val_variable] = STATE(5719), - [sym_val_number] = STATE(521), - [sym__val_number_decimal] = STATE(5264), - [sym__val_number] = STATE(2915), - [sym_val_duration] = STATE(521), - [sym_val_filesize] = STATE(521), - [sym_val_binary] = STATE(521), - [sym_val_string] = STATE(521), - [sym__str_double_quotes] = STATE(5413), - [sym_val_interpolated] = STATE(521), - [sym__inter_single_quotes] = STATE(495), - [sym__inter_double_quotes] = STATE(556), - [sym_val_list] = STATE(7118), - [sym__spread_list] = STATE(7348), - [sym_val_entry] = STATE(6710), - [sym_val_record] = STATE(521), - [sym_val_table] = STATE(521), - [sym_val_closure] = STATE(521), - [sym__unquoted_in_list] = STATE(6465), - [sym__unquoted_in_list_with_expr] = STATE(7355), - [sym__unquoted_anonymous_prefix] = STATE(6960), + [sym_expr_parenthesized] = STATE(6164), + [sym__spread_parenthesized] = STATE(7414), + [sym_val_range] = STATE(7423), + [sym__val_range] = STATE(7652), + [sym__val_range_with_end] = STATE(7490), + [sym__value] = STATE(7423), + [sym_val_nothing] = STATE(6921), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5774), + [sym_val_number] = STATE(6921), + [sym__val_number_decimal] = STATE(5339), + [sym__val_number] = STATE(7088), + [sym_val_duration] = STATE(6921), + [sym_val_filesize] = STATE(6921), + [sym_val_binary] = STATE(6921), + [sym_val_string] = STATE(6921), + [sym__raw_str] = STATE(5521), + [sym__str_double_quotes] = STATE(5521), + [sym_val_interpolated] = STATE(6921), + [sym__inter_single_quotes] = STATE(7044), + [sym__inter_double_quotes] = STATE(7055), + [sym_val_list] = STATE(7262), + [sym__spread_list] = STATE(7414), + [sym_val_entry] = STATE(6855), + [sym_val_record] = STATE(6921), + [sym_val_table] = STATE(6921), + [sym_val_closure] = STATE(6921), + [sym__unquoted_in_list] = STATE(6357), + [sym__unquoted_in_list_with_expr] = STATE(7423), + [sym__unquoted_anonymous_prefix] = STATE(6796), [sym_comment] = STATE(769), - [aux_sym_shebang_repeat1] = STATE(2691), - [aux_sym_list_body_repeat1] = STATE(774), - [anon_sym_true] = ACTIONS(2985), - [anon_sym_false] = ACTIONS(2985), - [anon_sym_null] = ACTIONS(2987), - [aux_sym_cmd_identifier_token38] = ACTIONS(2989), - [aux_sym_cmd_identifier_token39] = ACTIONS(2989), - [aux_sym_cmd_identifier_token40] = ACTIONS(2989), - [sym__newline] = ACTIONS(3070), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_DOLLAR] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_DOT_DOT] = ACTIONS(3001), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), - [anon_sym_DOT_DOT_LT] = ACTIONS(3003), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(3005), - [aux_sym__val_number_decimal_token2] = ACTIONS(3007), - [aux_sym__val_number_decimal_token3] = ACTIONS(3009), - [aux_sym__val_number_decimal_token4] = ACTIONS(3011), - [aux_sym__val_number_token1] = ACTIONS(2569), - [aux_sym__val_number_token2] = ACTIONS(2569), - [aux_sym__val_number_token3] = ACTIONS(2569), - [anon_sym_0b] = ACTIONS(2571), - [anon_sym_0o] = ACTIONS(2573), - [anon_sym_0x] = ACTIONS(2573), - [sym_val_date] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3015), - [sym__str_single_quotes] = ACTIONS(3017), - [sym__str_back_ticks] = ACTIONS(3017), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [anon_sym_err_GT_GT] = ACTIONS(2589), - [anon_sym_out_GT_GT] = ACTIONS(2589), - [anon_sym_e_GT_GT] = ACTIONS(2589), - [anon_sym_o_GT_GT] = ACTIONS(2589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2709), + [aux_sym_list_body_repeat1] = STATE(781), + [anon_sym_true] = ACTIONS(3032), + [anon_sym_false] = ACTIONS(3032), + [anon_sym_null] = ACTIONS(3034), + [aux_sym_cmd_identifier_token38] = ACTIONS(3036), + [aux_sym_cmd_identifier_token39] = ACTIONS(3036), + [aux_sym_cmd_identifier_token40] = ACTIONS(3036), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(3038), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym_DOLLAR] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_DOT_DOT] = ACTIONS(3048), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), + [anon_sym_DOT_DOT_LT] = ACTIONS(3050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(3052), + [aux_sym__val_number_decimal_token2] = ACTIONS(3054), + [aux_sym__val_number_decimal_token3] = ACTIONS(3056), + [aux_sym__val_number_decimal_token4] = ACTIONS(3058), + [aux_sym__val_number_token1] = ACTIONS(3060), + [aux_sym__val_number_token2] = ACTIONS(3060), + [aux_sym__val_number_token3] = ACTIONS(3060), + [anon_sym_0b] = ACTIONS(3062), + [anon_sym_0o] = ACTIONS(3064), + [anon_sym_0x] = ACTIONS(3064), + [sym_val_date] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(3068), + [sym__str_single_quotes] = ACTIONS(3070), + [sym__str_back_ticks] = ACTIONS(3070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), + [anon_sym_err_GT] = ACTIONS(2627), + [anon_sym_out_GT] = ACTIONS(2627), + [anon_sym_e_GT] = ACTIONS(2627), + [anon_sym_o_GT] = ACTIONS(2627), + [anon_sym_err_PLUSout_GT] = ACTIONS(2627), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), + [anon_sym_o_PLUSe_GT] = ACTIONS(2627), + [anon_sym_e_PLUSo_GT] = ACTIONS(2627), + [anon_sym_err_GT_GT] = ACTIONS(2629), + [anon_sym_out_GT_GT] = ACTIONS(2629), + [anon_sym_e_GT_GT] = ACTIONS(2629), + [anon_sym_o_GT_GT] = ACTIONS(2629), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3074), }, [770] = { - [sym_expr_parenthesized] = STATE(5961), - [sym__spread_parenthesized] = STATE(7348), - [sym_val_range] = STATE(7355), - [sym__val_range] = STATE(7469), - [sym__val_range_with_end] = STATE(7194), - [sym__value] = STATE(7355), - [sym_val_nothing] = STATE(521), - [sym_val_bool] = STATE(6215), - [sym__spread_variable] = STATE(7195), - [sym_val_variable] = STATE(5719), - [sym_val_number] = STATE(521), - [sym__val_number_decimal] = STATE(5264), - [sym__val_number] = STATE(2915), - [sym_val_duration] = STATE(521), - [sym_val_filesize] = STATE(521), - [sym_val_binary] = STATE(521), - [sym_val_string] = STATE(521), - [sym__str_double_quotes] = STATE(5413), - [sym_val_interpolated] = STATE(521), - [sym__inter_single_quotes] = STATE(495), - [sym__inter_double_quotes] = STATE(556), - [sym_val_list] = STATE(7125), - [sym__spread_list] = STATE(7348), - [sym_val_entry] = STATE(6710), - [sym_val_record] = STATE(521), - [sym_val_table] = STATE(521), - [sym_val_closure] = STATE(521), - [sym__unquoted_in_list] = STATE(6465), - [sym__unquoted_in_list_with_expr] = STATE(7355), - [sym__unquoted_anonymous_prefix] = STATE(6960), + [sym_expr_parenthesized] = STATE(6164), + [sym__spread_parenthesized] = STATE(7414), + [sym_val_range] = STATE(7423), + [sym__val_range] = STATE(7652), + [sym__val_range_with_end] = STATE(7490), + [sym__value] = STATE(7423), + [sym_val_nothing] = STATE(6921), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5774), + [sym_val_number] = STATE(6921), + [sym__val_number_decimal] = STATE(5339), + [sym__val_number] = STATE(7088), + [sym_val_duration] = STATE(6921), + [sym_val_filesize] = STATE(6921), + [sym_val_binary] = STATE(6921), + [sym_val_string] = STATE(6921), + [sym__raw_str] = STATE(5521), + [sym__str_double_quotes] = STATE(5521), + [sym_val_interpolated] = STATE(6921), + [sym__inter_single_quotes] = STATE(7044), + [sym__inter_double_quotes] = STATE(7055), + [sym_val_list] = STATE(7268), + [sym__spread_list] = STATE(7414), + [sym_val_entry] = STATE(6855), + [sym_val_record] = STATE(6921), + [sym_val_table] = STATE(6921), + [sym_val_closure] = STATE(6921), + [sym__unquoted_in_list] = STATE(6357), + [sym__unquoted_in_list_with_expr] = STATE(7423), + [sym__unquoted_anonymous_prefix] = STATE(6796), [sym_comment] = STATE(770), - [aux_sym_shebang_repeat1] = STATE(2691), - [aux_sym_list_body_repeat1] = STATE(774), - [anon_sym_true] = ACTIONS(2985), - [anon_sym_false] = ACTIONS(2985), - [anon_sym_null] = ACTIONS(2987), - [aux_sym_cmd_identifier_token38] = ACTIONS(2989), - [aux_sym_cmd_identifier_token39] = ACTIONS(2989), - [aux_sym_cmd_identifier_token40] = ACTIONS(2989), - [sym__newline] = ACTIONS(3070), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_DOLLAR] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_DOT_DOT] = ACTIONS(3001), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), - [anon_sym_DOT_DOT_LT] = ACTIONS(3003), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(3005), - [aux_sym__val_number_decimal_token2] = ACTIONS(3007), - [aux_sym__val_number_decimal_token3] = ACTIONS(3009), - [aux_sym__val_number_decimal_token4] = ACTIONS(3011), - [aux_sym__val_number_token1] = ACTIONS(2569), - [aux_sym__val_number_token2] = ACTIONS(2569), - [aux_sym__val_number_token3] = ACTIONS(2569), - [anon_sym_0b] = ACTIONS(2571), - [anon_sym_0o] = ACTIONS(2573), - [anon_sym_0x] = ACTIONS(2573), - [sym_val_date] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3015), - [sym__str_single_quotes] = ACTIONS(3017), - [sym__str_back_ticks] = ACTIONS(3017), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [anon_sym_err_GT_GT] = ACTIONS(2589), - [anon_sym_out_GT_GT] = ACTIONS(2589), - [anon_sym_e_GT_GT] = ACTIONS(2589), - [anon_sym_o_GT_GT] = ACTIONS(2589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2709), + [aux_sym_list_body_repeat1] = STATE(781), + [anon_sym_true] = ACTIONS(3032), + [anon_sym_false] = ACTIONS(3032), + [anon_sym_null] = ACTIONS(3034), + [aux_sym_cmd_identifier_token38] = ACTIONS(3036), + [aux_sym_cmd_identifier_token39] = ACTIONS(3036), + [aux_sym_cmd_identifier_token40] = ACTIONS(3036), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(3038), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym_DOLLAR] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_DOT_DOT] = ACTIONS(3048), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), + [anon_sym_DOT_DOT_LT] = ACTIONS(3050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(3052), + [aux_sym__val_number_decimal_token2] = ACTIONS(3054), + [aux_sym__val_number_decimal_token3] = ACTIONS(3056), + [aux_sym__val_number_decimal_token4] = ACTIONS(3058), + [aux_sym__val_number_token1] = ACTIONS(3060), + [aux_sym__val_number_token2] = ACTIONS(3060), + [aux_sym__val_number_token3] = ACTIONS(3060), + [anon_sym_0b] = ACTIONS(3062), + [anon_sym_0o] = ACTIONS(3064), + [anon_sym_0x] = ACTIONS(3064), + [sym_val_date] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(3068), + [sym__str_single_quotes] = ACTIONS(3070), + [sym__str_back_ticks] = ACTIONS(3070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), + [anon_sym_err_GT] = ACTIONS(2627), + [anon_sym_out_GT] = ACTIONS(2627), + [anon_sym_e_GT] = ACTIONS(2627), + [anon_sym_o_GT] = ACTIONS(2627), + [anon_sym_err_PLUSout_GT] = ACTIONS(2627), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), + [anon_sym_o_PLUSe_GT] = ACTIONS(2627), + [anon_sym_e_PLUSo_GT] = ACTIONS(2627), + [anon_sym_err_GT_GT] = ACTIONS(2629), + [anon_sym_out_GT_GT] = ACTIONS(2629), + [anon_sym_e_GT_GT] = ACTIONS(2629), + [anon_sym_o_GT_GT] = ACTIONS(2629), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3074), }, [771] = { - [sym_expr_parenthesized] = STATE(5961), - [sym__spread_parenthesized] = STATE(7348), - [sym_val_range] = STATE(7355), - [sym__val_range] = STATE(7469), - [sym__val_range_with_end] = STATE(7194), - [sym__value] = STATE(7355), - [sym_val_nothing] = STATE(521), - [sym_val_bool] = STATE(6215), - [sym__spread_variable] = STATE(7195), - [sym_val_variable] = STATE(5719), - [sym_val_number] = STATE(521), - [sym__val_number_decimal] = STATE(5264), - [sym__val_number] = STATE(2915), - [sym_val_duration] = STATE(521), - [sym_val_filesize] = STATE(521), - [sym_val_binary] = STATE(521), - [sym_val_string] = STATE(521), - [sym__str_double_quotes] = STATE(5413), - [sym_val_interpolated] = STATE(521), - [sym__inter_single_quotes] = STATE(495), - [sym__inter_double_quotes] = STATE(556), - [sym_val_list] = STATE(7133), - [sym__spread_list] = STATE(7348), - [sym_val_entry] = STATE(6710), - [sym_val_record] = STATE(521), - [sym_val_table] = STATE(521), - [sym_val_closure] = STATE(521), - [sym__unquoted_in_list] = STATE(6465), - [sym__unquoted_in_list_with_expr] = STATE(7355), - [sym__unquoted_anonymous_prefix] = STATE(6960), + [sym_expr_parenthesized] = STATE(6164), + [sym__spread_parenthesized] = STATE(7414), + [sym_val_range] = STATE(7423), + [sym__val_range] = STATE(7652), + [sym__val_range_with_end] = STATE(7490), + [sym__value] = STATE(7423), + [sym_val_nothing] = STATE(6921), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5774), + [sym_val_number] = STATE(6921), + [sym__val_number_decimal] = STATE(5339), + [sym__val_number] = STATE(7088), + [sym_val_duration] = STATE(6921), + [sym_val_filesize] = STATE(6921), + [sym_val_binary] = STATE(6921), + [sym_val_string] = STATE(6921), + [sym__raw_str] = STATE(5521), + [sym__str_double_quotes] = STATE(5521), + [sym_val_interpolated] = STATE(6921), + [sym__inter_single_quotes] = STATE(7044), + [sym__inter_double_quotes] = STATE(7055), + [sym_val_list] = STATE(7276), + [sym__spread_list] = STATE(7414), + [sym_val_entry] = STATE(6855), + [sym_val_record] = STATE(6921), + [sym_val_table] = STATE(6921), + [sym_val_closure] = STATE(6921), + [sym__unquoted_in_list] = STATE(6357), + [sym__unquoted_in_list_with_expr] = STATE(7423), + [sym__unquoted_anonymous_prefix] = STATE(6796), [sym_comment] = STATE(771), - [aux_sym_shebang_repeat1] = STATE(2691), - [aux_sym_list_body_repeat1] = STATE(774), - [anon_sym_true] = ACTIONS(2985), - [anon_sym_false] = ACTIONS(2985), - [anon_sym_null] = ACTIONS(2987), - [aux_sym_cmd_identifier_token38] = ACTIONS(2989), - [aux_sym_cmd_identifier_token39] = ACTIONS(2989), - [aux_sym_cmd_identifier_token40] = ACTIONS(2989), - [sym__newline] = ACTIONS(3070), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_DOLLAR] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_DOT_DOT] = ACTIONS(3001), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), - [anon_sym_DOT_DOT_LT] = ACTIONS(3003), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(3005), - [aux_sym__val_number_decimal_token2] = ACTIONS(3007), - [aux_sym__val_number_decimal_token3] = ACTIONS(3009), - [aux_sym__val_number_decimal_token4] = ACTIONS(3011), - [aux_sym__val_number_token1] = ACTIONS(2569), - [aux_sym__val_number_token2] = ACTIONS(2569), - [aux_sym__val_number_token3] = ACTIONS(2569), - [anon_sym_0b] = ACTIONS(2571), - [anon_sym_0o] = ACTIONS(2573), - [anon_sym_0x] = ACTIONS(2573), - [sym_val_date] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3015), - [sym__str_single_quotes] = ACTIONS(3017), - [sym__str_back_ticks] = ACTIONS(3017), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [anon_sym_err_GT_GT] = ACTIONS(2589), - [anon_sym_out_GT_GT] = ACTIONS(2589), - [anon_sym_e_GT_GT] = ACTIONS(2589), - [anon_sym_o_GT_GT] = ACTIONS(2589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2709), + [aux_sym_list_body_repeat1] = STATE(781), + [anon_sym_true] = ACTIONS(3032), + [anon_sym_false] = ACTIONS(3032), + [anon_sym_null] = ACTIONS(3034), + [aux_sym_cmd_identifier_token38] = ACTIONS(3036), + [aux_sym_cmd_identifier_token39] = ACTIONS(3036), + [aux_sym_cmd_identifier_token40] = ACTIONS(3036), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(3038), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym_DOLLAR] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_DOT_DOT] = ACTIONS(3048), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), + [anon_sym_DOT_DOT_LT] = ACTIONS(3050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(3052), + [aux_sym__val_number_decimal_token2] = ACTIONS(3054), + [aux_sym__val_number_decimal_token3] = ACTIONS(3056), + [aux_sym__val_number_decimal_token4] = ACTIONS(3058), + [aux_sym__val_number_token1] = ACTIONS(3060), + [aux_sym__val_number_token2] = ACTIONS(3060), + [aux_sym__val_number_token3] = ACTIONS(3060), + [anon_sym_0b] = ACTIONS(3062), + [anon_sym_0o] = ACTIONS(3064), + [anon_sym_0x] = ACTIONS(3064), + [sym_val_date] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(3068), + [sym__str_single_quotes] = ACTIONS(3070), + [sym__str_back_ticks] = ACTIONS(3070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), + [anon_sym_err_GT] = ACTIONS(2627), + [anon_sym_out_GT] = ACTIONS(2627), + [anon_sym_e_GT] = ACTIONS(2627), + [anon_sym_o_GT] = ACTIONS(2627), + [anon_sym_err_PLUSout_GT] = ACTIONS(2627), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), + [anon_sym_o_PLUSe_GT] = ACTIONS(2627), + [anon_sym_e_PLUSo_GT] = ACTIONS(2627), + [anon_sym_err_GT_GT] = ACTIONS(2629), + [anon_sym_out_GT_GT] = ACTIONS(2629), + [anon_sym_e_GT_GT] = ACTIONS(2629), + [anon_sym_o_GT_GT] = ACTIONS(2629), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3074), }, [772] = { - [sym_expr_parenthesized] = STATE(5961), - [sym__spread_parenthesized] = STATE(7348), - [sym_val_range] = STATE(7355), - [sym__val_range] = STATE(7469), - [sym__val_range_with_end] = STATE(7194), - [sym__value] = STATE(7355), - [sym_val_nothing] = STATE(521), - [sym_val_bool] = STATE(6215), - [sym__spread_variable] = STATE(7195), - [sym_val_variable] = STATE(5719), - [sym_val_number] = STATE(521), - [sym__val_number_decimal] = STATE(5264), - [sym__val_number] = STATE(2915), - [sym_val_duration] = STATE(521), - [sym_val_filesize] = STATE(521), - [sym_val_binary] = STATE(521), - [sym_val_string] = STATE(521), - [sym__str_double_quotes] = STATE(5413), - [sym_val_interpolated] = STATE(521), - [sym__inter_single_quotes] = STATE(495), - [sym__inter_double_quotes] = STATE(556), - [sym_val_list] = STATE(7139), - [sym__spread_list] = STATE(7348), - [sym_val_entry] = STATE(6710), - [sym_val_record] = STATE(521), - [sym_val_table] = STATE(521), - [sym_val_closure] = STATE(521), - [sym__unquoted_in_list] = STATE(6465), - [sym__unquoted_in_list_with_expr] = STATE(7355), - [sym__unquoted_anonymous_prefix] = STATE(6960), + [sym_expr_parenthesized] = STATE(6164), + [sym__spread_parenthesized] = STATE(7414), + [sym_val_range] = STATE(7423), + [sym__val_range] = STATE(7652), + [sym__val_range_with_end] = STATE(7490), + [sym__value] = STATE(7423), + [sym_val_nothing] = STATE(6921), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5774), + [sym_val_number] = STATE(6921), + [sym__val_number_decimal] = STATE(5339), + [sym__val_number] = STATE(7088), + [sym_val_duration] = STATE(6921), + [sym_val_filesize] = STATE(6921), + [sym_val_binary] = STATE(6921), + [sym_val_string] = STATE(6921), + [sym__raw_str] = STATE(5521), + [sym__str_double_quotes] = STATE(5521), + [sym_val_interpolated] = STATE(6921), + [sym__inter_single_quotes] = STATE(7044), + [sym__inter_double_quotes] = STATE(7055), + [sym_val_list] = STATE(7286), + [sym__spread_list] = STATE(7414), + [sym_val_entry] = STATE(6855), + [sym_val_record] = STATE(6921), + [sym_val_table] = STATE(6921), + [sym_val_closure] = STATE(6921), + [sym__unquoted_in_list] = STATE(6357), + [sym__unquoted_in_list_with_expr] = STATE(7423), + [sym__unquoted_anonymous_prefix] = STATE(6796), [sym_comment] = STATE(772), - [aux_sym_shebang_repeat1] = STATE(2691), - [aux_sym_list_body_repeat1] = STATE(774), - [anon_sym_true] = ACTIONS(2985), - [anon_sym_false] = ACTIONS(2985), - [anon_sym_null] = ACTIONS(2987), - [aux_sym_cmd_identifier_token38] = ACTIONS(2989), - [aux_sym_cmd_identifier_token39] = ACTIONS(2989), - [aux_sym_cmd_identifier_token40] = ACTIONS(2989), - [sym__newline] = ACTIONS(3070), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_DOLLAR] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_DOT_DOT] = ACTIONS(3001), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), - [anon_sym_DOT_DOT_LT] = ACTIONS(3003), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(3005), - [aux_sym__val_number_decimal_token2] = ACTIONS(3007), - [aux_sym__val_number_decimal_token3] = ACTIONS(3009), - [aux_sym__val_number_decimal_token4] = ACTIONS(3011), - [aux_sym__val_number_token1] = ACTIONS(2569), - [aux_sym__val_number_token2] = ACTIONS(2569), - [aux_sym__val_number_token3] = ACTIONS(2569), - [anon_sym_0b] = ACTIONS(2571), - [anon_sym_0o] = ACTIONS(2573), - [anon_sym_0x] = ACTIONS(2573), - [sym_val_date] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3015), - [sym__str_single_quotes] = ACTIONS(3017), - [sym__str_back_ticks] = ACTIONS(3017), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [anon_sym_err_GT_GT] = ACTIONS(2589), - [anon_sym_out_GT_GT] = ACTIONS(2589), - [anon_sym_e_GT_GT] = ACTIONS(2589), - [anon_sym_o_GT_GT] = ACTIONS(2589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2709), + [aux_sym_list_body_repeat1] = STATE(781), + [anon_sym_true] = ACTIONS(3032), + [anon_sym_false] = ACTIONS(3032), + [anon_sym_null] = ACTIONS(3034), + [aux_sym_cmd_identifier_token38] = ACTIONS(3036), + [aux_sym_cmd_identifier_token39] = ACTIONS(3036), + [aux_sym_cmd_identifier_token40] = ACTIONS(3036), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(3038), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym_DOLLAR] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_DOT_DOT] = ACTIONS(3048), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), + [anon_sym_DOT_DOT_LT] = ACTIONS(3050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(3052), + [aux_sym__val_number_decimal_token2] = ACTIONS(3054), + [aux_sym__val_number_decimal_token3] = ACTIONS(3056), + [aux_sym__val_number_decimal_token4] = ACTIONS(3058), + [aux_sym__val_number_token1] = ACTIONS(3060), + [aux_sym__val_number_token2] = ACTIONS(3060), + [aux_sym__val_number_token3] = ACTIONS(3060), + [anon_sym_0b] = ACTIONS(3062), + [anon_sym_0o] = ACTIONS(3064), + [anon_sym_0x] = ACTIONS(3064), + [sym_val_date] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(3068), + [sym__str_single_quotes] = ACTIONS(3070), + [sym__str_back_ticks] = ACTIONS(3070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), + [anon_sym_err_GT] = ACTIONS(2627), + [anon_sym_out_GT] = ACTIONS(2627), + [anon_sym_e_GT] = ACTIONS(2627), + [anon_sym_o_GT] = ACTIONS(2627), + [anon_sym_err_PLUSout_GT] = ACTIONS(2627), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), + [anon_sym_o_PLUSe_GT] = ACTIONS(2627), + [anon_sym_e_PLUSo_GT] = ACTIONS(2627), + [anon_sym_err_GT_GT] = ACTIONS(2629), + [anon_sym_out_GT_GT] = ACTIONS(2629), + [anon_sym_e_GT_GT] = ACTIONS(2629), + [anon_sym_o_GT_GT] = ACTIONS(2629), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3074), }, [773] = { - [sym_expr_parenthesized] = STATE(5961), - [sym__spread_parenthesized] = STATE(7348), - [sym_val_range] = STATE(7355), - [sym__val_range] = STATE(7469), - [sym__val_range_with_end] = STATE(7194), - [sym__value] = STATE(7355), - [sym_val_nothing] = STATE(521), - [sym_val_bool] = STATE(6215), - [sym__spread_variable] = STATE(7195), - [sym_val_variable] = STATE(5719), - [sym_val_number] = STATE(521), - [sym__val_number_decimal] = STATE(5264), - [sym__val_number] = STATE(2915), - [sym_val_duration] = STATE(521), - [sym_val_filesize] = STATE(521), - [sym_val_binary] = STATE(521), - [sym_val_string] = STATE(521), - [sym__str_double_quotes] = STATE(5413), - [sym_val_interpolated] = STATE(521), - [sym__inter_single_quotes] = STATE(495), - [sym__inter_double_quotes] = STATE(556), - [sym_val_list] = STATE(521), - [sym__spread_list] = STATE(7348), - [sym_val_entry] = STATE(6713), - [sym_val_record] = STATE(521), - [sym_val_table] = STATE(521), - [sym_val_closure] = STATE(521), - [sym__unquoted_in_list] = STATE(6465), - [sym__unquoted_in_list_with_expr] = STATE(7355), - [sym__unquoted_anonymous_prefix] = STATE(6960), + [sym_expr_parenthesized] = STATE(6164), + [sym__spread_parenthesized] = STATE(7414), + [sym_val_range] = STATE(7423), + [sym__val_range] = STATE(7652), + [sym__val_range_with_end] = STATE(7490), + [sym__value] = STATE(7423), + [sym_val_nothing] = STATE(6921), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5774), + [sym_val_number] = STATE(6921), + [sym__val_number_decimal] = STATE(5339), + [sym__val_number] = STATE(7088), + [sym_val_duration] = STATE(6921), + [sym_val_filesize] = STATE(6921), + [sym_val_binary] = STATE(6921), + [sym_val_string] = STATE(6921), + [sym__raw_str] = STATE(5521), + [sym__str_double_quotes] = STATE(5521), + [sym_val_interpolated] = STATE(6921), + [sym__inter_single_quotes] = STATE(7044), + [sym__inter_double_quotes] = STATE(7055), + [sym_val_list] = STATE(7294), + [sym__spread_list] = STATE(7414), + [sym_val_entry] = STATE(6855), + [sym_val_record] = STATE(6921), + [sym_val_table] = STATE(6921), + [sym_val_closure] = STATE(6921), + [sym__unquoted_in_list] = STATE(6357), + [sym__unquoted_in_list_with_expr] = STATE(7423), + [sym__unquoted_anonymous_prefix] = STATE(6796), [sym_comment] = STATE(773), - [aux_sym_list_body_repeat1] = STATE(775), - [anon_sym_true] = ACTIONS(2985), - [anon_sym_false] = ACTIONS(2985), - [anon_sym_null] = ACTIONS(2987), - [aux_sym_cmd_identifier_token38] = ACTIONS(2989), - [aux_sym_cmd_identifier_token39] = ACTIONS(2989), - [aux_sym_cmd_identifier_token40] = ACTIONS(2989), - [anon_sym_LBRACK] = ACTIONS(3023), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_DOLLAR] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_DOT_DOT] = ACTIONS(3001), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), - [anon_sym_DOT_DOT_LT] = ACTIONS(3003), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(3005), - [aux_sym__val_number_decimal_token2] = ACTIONS(3007), - [aux_sym__val_number_decimal_token3] = ACTIONS(3009), - [aux_sym__val_number_decimal_token4] = ACTIONS(3011), - [aux_sym__val_number_token1] = ACTIONS(2569), - [aux_sym__val_number_token2] = ACTIONS(2569), - [aux_sym__val_number_token3] = ACTIONS(2569), - [anon_sym_0b] = ACTIONS(2571), - [anon_sym_0o] = ACTIONS(2573), - [anon_sym_0x] = ACTIONS(2573), - [sym_val_date] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3015), - [sym__str_single_quotes] = ACTIONS(3017), - [sym__str_back_ticks] = ACTIONS(3017), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [anon_sym_err_GT_GT] = ACTIONS(2589), - [anon_sym_out_GT_GT] = ACTIONS(2589), - [anon_sym_e_GT_GT] = ACTIONS(2589), - [anon_sym_o_GT_GT] = ACTIONS(2589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2709), + [aux_sym_list_body_repeat1] = STATE(781), + [anon_sym_true] = ACTIONS(3032), + [anon_sym_false] = ACTIONS(3032), + [anon_sym_null] = ACTIONS(3034), + [aux_sym_cmd_identifier_token38] = ACTIONS(3036), + [aux_sym_cmd_identifier_token39] = ACTIONS(3036), + [aux_sym_cmd_identifier_token40] = ACTIONS(3036), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(3038), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym_DOLLAR] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_DOT_DOT] = ACTIONS(3048), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), + [anon_sym_DOT_DOT_LT] = ACTIONS(3050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(3052), + [aux_sym__val_number_decimal_token2] = ACTIONS(3054), + [aux_sym__val_number_decimal_token3] = ACTIONS(3056), + [aux_sym__val_number_decimal_token4] = ACTIONS(3058), + [aux_sym__val_number_token1] = ACTIONS(3060), + [aux_sym__val_number_token2] = ACTIONS(3060), + [aux_sym__val_number_token3] = ACTIONS(3060), + [anon_sym_0b] = ACTIONS(3062), + [anon_sym_0o] = ACTIONS(3064), + [anon_sym_0x] = ACTIONS(3064), + [sym_val_date] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(3068), + [sym__str_single_quotes] = ACTIONS(3070), + [sym__str_back_ticks] = ACTIONS(3070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), + [anon_sym_err_GT] = ACTIONS(2627), + [anon_sym_out_GT] = ACTIONS(2627), + [anon_sym_e_GT] = ACTIONS(2627), + [anon_sym_o_GT] = ACTIONS(2627), + [anon_sym_err_PLUSout_GT] = ACTIONS(2627), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), + [anon_sym_o_PLUSe_GT] = ACTIONS(2627), + [anon_sym_e_PLUSo_GT] = ACTIONS(2627), + [anon_sym_err_GT_GT] = ACTIONS(2629), + [anon_sym_out_GT_GT] = ACTIONS(2629), + [anon_sym_e_GT_GT] = ACTIONS(2629), + [anon_sym_o_GT_GT] = ACTIONS(2629), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3074), }, [774] = { - [sym_expr_parenthesized] = STATE(5961), - [sym__spread_parenthesized] = STATE(7348), - [sym_val_range] = STATE(7355), - [sym__val_range] = STATE(7469), - [sym__val_range_with_end] = STATE(7194), - [sym__value] = STATE(7355), - [sym_val_nothing] = STATE(521), - [sym_val_bool] = STATE(6215), - [sym__spread_variable] = STATE(7195), - [sym_val_variable] = STATE(5719), - [sym_val_number] = STATE(521), - [sym__val_number_decimal] = STATE(5264), - [sym__val_number] = STATE(2915), - [sym_val_duration] = STATE(521), - [sym_val_filesize] = STATE(521), - [sym_val_binary] = STATE(521), - [sym_val_string] = STATE(521), - [sym__str_double_quotes] = STATE(5413), - [sym_val_interpolated] = STATE(521), - [sym__inter_single_quotes] = STATE(495), - [sym__inter_double_quotes] = STATE(556), - [sym_val_list] = STATE(521), - [sym__spread_list] = STATE(7348), - [sym_val_entry] = STATE(7174), - [sym_val_record] = STATE(521), - [sym_val_table] = STATE(521), - [sym_val_closure] = STATE(521), - [sym__unquoted_in_list] = STATE(6465), - [sym__unquoted_in_list_with_expr] = STATE(7355), - [sym__unquoted_anonymous_prefix] = STATE(6960), + [sym_expr_parenthesized] = STATE(6164), + [sym__spread_parenthesized] = STATE(7414), + [sym_val_range] = STATE(7423), + [sym__val_range] = STATE(7652), + [sym__val_range_with_end] = STATE(7490), + [sym__value] = STATE(7423), + [sym_val_nothing] = STATE(6921), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5774), + [sym_val_number] = STATE(6921), + [sym__val_number_decimal] = STATE(5339), + [sym__val_number] = STATE(7088), + [sym_val_duration] = STATE(6921), + [sym_val_filesize] = STATE(6921), + [sym_val_binary] = STATE(6921), + [sym_val_string] = STATE(6921), + [sym__raw_str] = STATE(5521), + [sym__str_double_quotes] = STATE(5521), + [sym_val_interpolated] = STATE(6921), + [sym__inter_single_quotes] = STATE(7044), + [sym__inter_double_quotes] = STATE(7055), + [sym_val_list] = STATE(7302), + [sym__spread_list] = STATE(7414), + [sym_val_entry] = STATE(6855), + [sym_val_record] = STATE(6921), + [sym_val_table] = STATE(6921), + [sym_val_closure] = STATE(6921), + [sym__unquoted_in_list] = STATE(6357), + [sym__unquoted_in_list_with_expr] = STATE(7423), + [sym__unquoted_anonymous_prefix] = STATE(6796), [sym_comment] = STATE(774), - [aux_sym_list_body_repeat1] = STATE(775), - [anon_sym_true] = ACTIONS(2985), - [anon_sym_false] = ACTIONS(2985), - [anon_sym_null] = ACTIONS(2987), - [aux_sym_cmd_identifier_token38] = ACTIONS(2989), - [aux_sym_cmd_identifier_token39] = ACTIONS(2989), - [aux_sym_cmd_identifier_token40] = ACTIONS(2989), - [anon_sym_LBRACK] = ACTIONS(3023), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_DOLLAR] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_DOT_DOT] = ACTIONS(3001), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3003), - [anon_sym_DOT_DOT_LT] = ACTIONS(3003), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(309), - [aux_sym__val_number_decimal_token1] = ACTIONS(3005), - [aux_sym__val_number_decimal_token2] = ACTIONS(3007), - [aux_sym__val_number_decimal_token3] = ACTIONS(3009), - [aux_sym__val_number_decimal_token4] = ACTIONS(3011), - [aux_sym__val_number_token1] = ACTIONS(2569), - [aux_sym__val_number_token2] = ACTIONS(2569), - [aux_sym__val_number_token3] = ACTIONS(2569), - [anon_sym_0b] = ACTIONS(2571), - [anon_sym_0o] = ACTIONS(2573), - [anon_sym_0x] = ACTIONS(2573), - [sym_val_date] = ACTIONS(3013), - [anon_sym_DQUOTE] = ACTIONS(3015), - [sym__str_single_quotes] = ACTIONS(3017), - [sym__str_back_ticks] = ACTIONS(3017), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [anon_sym_err_GT_GT] = ACTIONS(2589), - [anon_sym_out_GT_GT] = ACTIONS(2589), - [anon_sym_e_GT_GT] = ACTIONS(2589), - [anon_sym_o_GT_GT] = ACTIONS(2589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2709), + [aux_sym_list_body_repeat1] = STATE(781), + [anon_sym_true] = ACTIONS(3032), + [anon_sym_false] = ACTIONS(3032), + [anon_sym_null] = ACTIONS(3034), + [aux_sym_cmd_identifier_token38] = ACTIONS(3036), + [aux_sym_cmd_identifier_token39] = ACTIONS(3036), + [aux_sym_cmd_identifier_token40] = ACTIONS(3036), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(3038), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym_DOLLAR] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_DOT_DOT] = ACTIONS(3048), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), + [anon_sym_DOT_DOT_LT] = ACTIONS(3050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(3052), + [aux_sym__val_number_decimal_token2] = ACTIONS(3054), + [aux_sym__val_number_decimal_token3] = ACTIONS(3056), + [aux_sym__val_number_decimal_token4] = ACTIONS(3058), + [aux_sym__val_number_token1] = ACTIONS(3060), + [aux_sym__val_number_token2] = ACTIONS(3060), + [aux_sym__val_number_token3] = ACTIONS(3060), + [anon_sym_0b] = ACTIONS(3062), + [anon_sym_0o] = ACTIONS(3064), + [anon_sym_0x] = ACTIONS(3064), + [sym_val_date] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(3068), + [sym__str_single_quotes] = ACTIONS(3070), + [sym__str_back_ticks] = ACTIONS(3070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), + [anon_sym_err_GT] = ACTIONS(2627), + [anon_sym_out_GT] = ACTIONS(2627), + [anon_sym_e_GT] = ACTIONS(2627), + [anon_sym_o_GT] = ACTIONS(2627), + [anon_sym_err_PLUSout_GT] = ACTIONS(2627), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), + [anon_sym_o_PLUSe_GT] = ACTIONS(2627), + [anon_sym_e_PLUSo_GT] = ACTIONS(2627), + [anon_sym_err_GT_GT] = ACTIONS(2629), + [anon_sym_out_GT_GT] = ACTIONS(2629), + [anon_sym_e_GT_GT] = ACTIONS(2629), + [anon_sym_o_GT_GT] = ACTIONS(2629), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3074), }, [775] = { - [sym_expr_parenthesized] = STATE(5961), - [sym__spread_parenthesized] = STATE(7348), - [sym_val_range] = STATE(7355), - [sym__val_range] = STATE(7469), - [sym__val_range_with_end] = STATE(7194), - [sym__value] = STATE(7355), - [sym_val_nothing] = STATE(521), - [sym_val_bool] = STATE(6215), - [sym__spread_variable] = STATE(7195), - [sym_val_variable] = STATE(5719), - [sym_val_number] = STATE(521), - [sym__val_number_decimal] = STATE(5264), - [sym__val_number] = STATE(2915), - [sym_val_duration] = STATE(521), - [sym_val_filesize] = STATE(521), - [sym_val_binary] = STATE(521), - [sym_val_string] = STATE(521), - [sym__str_double_quotes] = STATE(5413), - [sym_val_interpolated] = STATE(521), - [sym__inter_single_quotes] = STATE(495), - [sym__inter_double_quotes] = STATE(556), - [sym_val_list] = STATE(521), - [sym__spread_list] = STATE(7348), - [sym_val_entry] = STATE(7244), - [sym_val_record] = STATE(521), - [sym_val_table] = STATE(521), - [sym_val_closure] = STATE(521), - [sym__unquoted_in_list] = STATE(6465), - [sym__unquoted_in_list_with_expr] = STATE(7355), - [sym__unquoted_anonymous_prefix] = STATE(6960), + [sym_expr_parenthesized] = STATE(6164), + [sym__spread_parenthesized] = STATE(7414), + [sym_val_range] = STATE(7423), + [sym__val_range] = STATE(7652), + [sym__val_range_with_end] = STATE(7490), + [sym__value] = STATE(7423), + [sym_val_nothing] = STATE(6921), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5774), + [sym_val_number] = STATE(6921), + [sym__val_number_decimal] = STATE(5339), + [sym__val_number] = STATE(7088), + [sym_val_duration] = STATE(6921), + [sym_val_filesize] = STATE(6921), + [sym_val_binary] = STATE(6921), + [sym_val_string] = STATE(6921), + [sym__raw_str] = STATE(5521), + [sym__str_double_quotes] = STATE(5521), + [sym_val_interpolated] = STATE(6921), + [sym__inter_single_quotes] = STATE(7044), + [sym__inter_double_quotes] = STATE(7055), + [sym_val_list] = STATE(7311), + [sym__spread_list] = STATE(7414), + [sym_val_entry] = STATE(6855), + [sym_val_record] = STATE(6921), + [sym_val_table] = STATE(6921), + [sym_val_closure] = STATE(6921), + [sym__unquoted_in_list] = STATE(6357), + [sym__unquoted_in_list_with_expr] = STATE(7423), + [sym__unquoted_anonymous_prefix] = STATE(6796), [sym_comment] = STATE(775), - [aux_sym_list_body_repeat1] = STATE(775), - [anon_sym_true] = ACTIONS(3072), - [anon_sym_false] = ACTIONS(3072), - [anon_sym_null] = ACTIONS(3075), - [aux_sym_cmd_identifier_token38] = ACTIONS(3078), - [aux_sym_cmd_identifier_token39] = ACTIONS(3078), - [aux_sym_cmd_identifier_token40] = ACTIONS(3078), - [anon_sym_LBRACK] = ACTIONS(3081), - [anon_sym_LPAREN] = ACTIONS(3084), - [anon_sym_DOLLAR] = ACTIONS(3087), - [anon_sym_LBRACE] = ACTIONS(3090), - [anon_sym_DOT_DOT] = ACTIONS(3093), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(3096), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3099), - [anon_sym_DOT_DOT_LT] = ACTIONS(3099), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(3102), - [aux_sym__val_number_decimal_token1] = ACTIONS(3105), - [aux_sym__val_number_decimal_token2] = ACTIONS(3108), - [aux_sym__val_number_decimal_token3] = ACTIONS(3111), - [aux_sym__val_number_decimal_token4] = ACTIONS(3114), - [aux_sym__val_number_token1] = ACTIONS(3117), - [aux_sym__val_number_token2] = ACTIONS(3117), - [aux_sym__val_number_token3] = ACTIONS(3117), - [anon_sym_0b] = ACTIONS(3120), - [anon_sym_0o] = ACTIONS(3123), - [anon_sym_0x] = ACTIONS(3123), - [sym_val_date] = ACTIONS(3126), - [anon_sym_DQUOTE] = ACTIONS(3129), - [sym__str_single_quotes] = ACTIONS(3132), - [sym__str_back_ticks] = ACTIONS(3132), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3135), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3138), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(3141), - [anon_sym_err_GT] = ACTIONS(3144), - [anon_sym_out_GT] = ACTIONS(3144), - [anon_sym_e_GT] = ACTIONS(3144), - [anon_sym_o_GT] = ACTIONS(3144), - [anon_sym_err_PLUSout_GT] = ACTIONS(3144), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3144), - [anon_sym_o_PLUSe_GT] = ACTIONS(3144), - [anon_sym_e_PLUSo_GT] = ACTIONS(3144), - [anon_sym_err_GT_GT] = ACTIONS(3147), - [anon_sym_out_GT_GT] = ACTIONS(3147), - [anon_sym_e_GT_GT] = ACTIONS(3147), - [anon_sym_o_GT_GT] = ACTIONS(3147), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3147), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3147), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3147), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3147), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3150), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2709), + [aux_sym_list_body_repeat1] = STATE(781), + [anon_sym_true] = ACTIONS(3032), + [anon_sym_false] = ACTIONS(3032), + [anon_sym_null] = ACTIONS(3034), + [aux_sym_cmd_identifier_token38] = ACTIONS(3036), + [aux_sym_cmd_identifier_token39] = ACTIONS(3036), + [aux_sym_cmd_identifier_token40] = ACTIONS(3036), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(3038), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym_DOLLAR] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_DOT_DOT] = ACTIONS(3048), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), + [anon_sym_DOT_DOT_LT] = ACTIONS(3050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(3052), + [aux_sym__val_number_decimal_token2] = ACTIONS(3054), + [aux_sym__val_number_decimal_token3] = ACTIONS(3056), + [aux_sym__val_number_decimal_token4] = ACTIONS(3058), + [aux_sym__val_number_token1] = ACTIONS(3060), + [aux_sym__val_number_token2] = ACTIONS(3060), + [aux_sym__val_number_token3] = ACTIONS(3060), + [anon_sym_0b] = ACTIONS(3062), + [anon_sym_0o] = ACTIONS(3064), + [anon_sym_0x] = ACTIONS(3064), + [sym_val_date] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(3068), + [sym__str_single_quotes] = ACTIONS(3070), + [sym__str_back_ticks] = ACTIONS(3070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), + [anon_sym_err_GT] = ACTIONS(2627), + [anon_sym_out_GT] = ACTIONS(2627), + [anon_sym_e_GT] = ACTIONS(2627), + [anon_sym_o_GT] = ACTIONS(2627), + [anon_sym_err_PLUSout_GT] = ACTIONS(2627), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), + [anon_sym_o_PLUSe_GT] = ACTIONS(2627), + [anon_sym_e_PLUSo_GT] = ACTIONS(2627), + [anon_sym_err_GT_GT] = ACTIONS(2629), + [anon_sym_out_GT_GT] = ACTIONS(2629), + [anon_sym_e_GT_GT] = ACTIONS(2629), + [anon_sym_o_GT_GT] = ACTIONS(2629), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3074), }, [776] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3619), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3361), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1914), - [sym__unquoted_with_expr] = STATE(2173), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_parenthesized] = STATE(6164), + [sym__spread_parenthesized] = STATE(7414), + [sym_val_range] = STATE(7423), + [sym__val_range] = STATE(7652), + [sym__val_range_with_end] = STATE(7490), + [sym__value] = STATE(7423), + [sym_val_nothing] = STATE(6921), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5774), + [sym_val_number] = STATE(6921), + [sym__val_number_decimal] = STATE(5339), + [sym__val_number] = STATE(7088), + [sym_val_duration] = STATE(6921), + [sym_val_filesize] = STATE(6921), + [sym_val_binary] = STATE(6921), + [sym_val_string] = STATE(6921), + [sym__raw_str] = STATE(5521), + [sym__str_double_quotes] = STATE(5521), + [sym_val_interpolated] = STATE(6921), + [sym__inter_single_quotes] = STATE(7044), + [sym__inter_double_quotes] = STATE(7055), + [sym_val_list] = STATE(7321), + [sym__spread_list] = STATE(7414), + [sym_val_entry] = STATE(6855), + [sym_val_record] = STATE(6921), + [sym_val_table] = STATE(6921), + [sym_val_closure] = STATE(6921), + [sym__unquoted_in_list] = STATE(6357), + [sym__unquoted_in_list_with_expr] = STATE(7423), + [sym__unquoted_anonymous_prefix] = STATE(6796), [sym_comment] = STATE(776), - [aux_sym_shebang_repeat1] = STATE(781), - [anon_sym_true] = ACTIONS(3153), - [anon_sym_false] = ACTIONS(3153), - [anon_sym_null] = ACTIONS(3155), - [aux_sym_cmd_identifier_token38] = ACTIONS(3157), - [aux_sym_cmd_identifier_token39] = ACTIONS(3157), - [aux_sym_cmd_identifier_token40] = ACTIONS(3157), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3169), - [aux_sym__val_number_decimal_token2] = ACTIONS(3171), - [aux_sym__val_number_decimal_token3] = ACTIONS(3173), - [aux_sym__val_number_decimal_token4] = ACTIONS(3175), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2709), + [aux_sym_list_body_repeat1] = STATE(781), + [anon_sym_true] = ACTIONS(3032), + [anon_sym_false] = ACTIONS(3032), + [anon_sym_null] = ACTIONS(3034), + [aux_sym_cmd_identifier_token38] = ACTIONS(3036), + [aux_sym_cmd_identifier_token39] = ACTIONS(3036), + [aux_sym_cmd_identifier_token40] = ACTIONS(3036), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(3038), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym_DOLLAR] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_DOT_DOT] = ACTIONS(3048), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), + [anon_sym_DOT_DOT_LT] = ACTIONS(3050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(3052), + [aux_sym__val_number_decimal_token2] = ACTIONS(3054), + [aux_sym__val_number_decimal_token3] = ACTIONS(3056), + [aux_sym__val_number_decimal_token4] = ACTIONS(3058), + [aux_sym__val_number_token1] = ACTIONS(3060), + [aux_sym__val_number_token2] = ACTIONS(3060), + [aux_sym__val_number_token3] = ACTIONS(3060), + [anon_sym_0b] = ACTIONS(3062), + [anon_sym_0o] = ACTIONS(3064), + [anon_sym_0x] = ACTIONS(3064), + [sym_val_date] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(3068), + [sym__str_single_quotes] = ACTIONS(3070), + [sym__str_back_ticks] = ACTIONS(3070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), + [anon_sym_err_GT] = ACTIONS(2627), + [anon_sym_out_GT] = ACTIONS(2627), + [anon_sym_e_GT] = ACTIONS(2627), + [anon_sym_o_GT] = ACTIONS(2627), + [anon_sym_err_PLUSout_GT] = ACTIONS(2627), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), + [anon_sym_o_PLUSe_GT] = ACTIONS(2627), + [anon_sym_e_PLUSo_GT] = ACTIONS(2627), + [anon_sym_err_GT_GT] = ACTIONS(2629), + [anon_sym_out_GT_GT] = ACTIONS(2629), + [anon_sym_e_GT_GT] = ACTIONS(2629), + [anon_sym_o_GT_GT] = ACTIONS(2629), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3074), }, [777] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3644), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3361), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1796), - [sym__unquoted_with_expr] = STATE(2050), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_parenthesized] = STATE(6164), + [sym__spread_parenthesized] = STATE(7414), + [sym_val_range] = STATE(7423), + [sym__val_range] = STATE(7652), + [sym__val_range_with_end] = STATE(7490), + [sym__value] = STATE(7423), + [sym_val_nothing] = STATE(6921), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5774), + [sym_val_number] = STATE(6921), + [sym__val_number_decimal] = STATE(5339), + [sym__val_number] = STATE(7088), + [sym_val_duration] = STATE(6921), + [sym_val_filesize] = STATE(6921), + [sym_val_binary] = STATE(6921), + [sym_val_string] = STATE(6921), + [sym__raw_str] = STATE(5521), + [sym__str_double_quotes] = STATE(5521), + [sym_val_interpolated] = STATE(6921), + [sym__inter_single_quotes] = STATE(7044), + [sym__inter_double_quotes] = STATE(7055), + [sym_val_list] = STATE(7329), + [sym__spread_list] = STATE(7414), + [sym_val_entry] = STATE(6855), + [sym_val_record] = STATE(6921), + [sym_val_table] = STATE(6921), + [sym_val_closure] = STATE(6921), + [sym__unquoted_in_list] = STATE(6357), + [sym__unquoted_in_list_with_expr] = STATE(7423), + [sym__unquoted_anonymous_prefix] = STATE(6796), [sym_comment] = STATE(777), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3153), - [anon_sym_false] = ACTIONS(3153), - [anon_sym_null] = ACTIONS(3155), - [aux_sym_cmd_identifier_token38] = ACTIONS(3157), - [aux_sym_cmd_identifier_token39] = ACTIONS(3157), - [aux_sym_cmd_identifier_token40] = ACTIONS(3157), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3169), - [aux_sym__val_number_decimal_token2] = ACTIONS(3171), - [aux_sym__val_number_decimal_token3] = ACTIONS(3173), - [aux_sym__val_number_decimal_token4] = ACTIONS(3175), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2709), + [aux_sym_list_body_repeat1] = STATE(781), + [anon_sym_true] = ACTIONS(3032), + [anon_sym_false] = ACTIONS(3032), + [anon_sym_null] = ACTIONS(3034), + [aux_sym_cmd_identifier_token38] = ACTIONS(3036), + [aux_sym_cmd_identifier_token39] = ACTIONS(3036), + [aux_sym_cmd_identifier_token40] = ACTIONS(3036), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(3038), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym_DOLLAR] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_DOT_DOT] = ACTIONS(3048), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), + [anon_sym_DOT_DOT_LT] = ACTIONS(3050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(3052), + [aux_sym__val_number_decimal_token2] = ACTIONS(3054), + [aux_sym__val_number_decimal_token3] = ACTIONS(3056), + [aux_sym__val_number_decimal_token4] = ACTIONS(3058), + [aux_sym__val_number_token1] = ACTIONS(3060), + [aux_sym__val_number_token2] = ACTIONS(3060), + [aux_sym__val_number_token3] = ACTIONS(3060), + [anon_sym_0b] = ACTIONS(3062), + [anon_sym_0o] = ACTIONS(3064), + [anon_sym_0x] = ACTIONS(3064), + [sym_val_date] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(3068), + [sym__str_single_quotes] = ACTIONS(3070), + [sym__str_back_ticks] = ACTIONS(3070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), + [anon_sym_err_GT] = ACTIONS(2627), + [anon_sym_out_GT] = ACTIONS(2627), + [anon_sym_e_GT] = ACTIONS(2627), + [anon_sym_o_GT] = ACTIONS(2627), + [anon_sym_err_PLUSout_GT] = ACTIONS(2627), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), + [anon_sym_o_PLUSe_GT] = ACTIONS(2627), + [anon_sym_e_PLUSo_GT] = ACTIONS(2627), + [anon_sym_err_GT_GT] = ACTIONS(2629), + [anon_sym_out_GT_GT] = ACTIONS(2629), + [anon_sym_e_GT_GT] = ACTIONS(2629), + [anon_sym_o_GT_GT] = ACTIONS(2629), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3074), }, [778] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3646), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3361), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1797), - [sym__unquoted_with_expr] = STATE(2053), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_parenthesized] = STATE(6164), + [sym__spread_parenthesized] = STATE(7414), + [sym_val_range] = STATE(7423), + [sym__val_range] = STATE(7652), + [sym__val_range_with_end] = STATE(7490), + [sym__value] = STATE(7423), + [sym_val_nothing] = STATE(6921), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5774), + [sym_val_number] = STATE(6921), + [sym__val_number_decimal] = STATE(5339), + [sym__val_number] = STATE(7088), + [sym_val_duration] = STATE(6921), + [sym_val_filesize] = STATE(6921), + [sym_val_binary] = STATE(6921), + [sym_val_string] = STATE(6921), + [sym__raw_str] = STATE(5521), + [sym__str_double_quotes] = STATE(5521), + [sym_val_interpolated] = STATE(6921), + [sym__inter_single_quotes] = STATE(7044), + [sym__inter_double_quotes] = STATE(7055), + [sym_val_list] = STATE(7337), + [sym__spread_list] = STATE(7414), + [sym_val_entry] = STATE(6855), + [sym_val_record] = STATE(6921), + [sym_val_table] = STATE(6921), + [sym_val_closure] = STATE(6921), + [sym__unquoted_in_list] = STATE(6357), + [sym__unquoted_in_list_with_expr] = STATE(7423), + [sym__unquoted_anonymous_prefix] = STATE(6796), [sym_comment] = STATE(778), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3153), - [anon_sym_false] = ACTIONS(3153), - [anon_sym_null] = ACTIONS(3155), - [aux_sym_cmd_identifier_token38] = ACTIONS(3157), - [aux_sym_cmd_identifier_token39] = ACTIONS(3157), - [aux_sym_cmd_identifier_token40] = ACTIONS(3157), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3169), - [aux_sym__val_number_decimal_token2] = ACTIONS(3171), - [aux_sym__val_number_decimal_token3] = ACTIONS(3173), - [aux_sym__val_number_decimal_token4] = ACTIONS(3175), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2709), + [aux_sym_list_body_repeat1] = STATE(781), + [anon_sym_true] = ACTIONS(3032), + [anon_sym_false] = ACTIONS(3032), + [anon_sym_null] = ACTIONS(3034), + [aux_sym_cmd_identifier_token38] = ACTIONS(3036), + [aux_sym_cmd_identifier_token39] = ACTIONS(3036), + [aux_sym_cmd_identifier_token40] = ACTIONS(3036), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(3038), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym_DOLLAR] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_DOT_DOT] = ACTIONS(3048), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), + [anon_sym_DOT_DOT_LT] = ACTIONS(3050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(3052), + [aux_sym__val_number_decimal_token2] = ACTIONS(3054), + [aux_sym__val_number_decimal_token3] = ACTIONS(3056), + [aux_sym__val_number_decimal_token4] = ACTIONS(3058), + [aux_sym__val_number_token1] = ACTIONS(3060), + [aux_sym__val_number_token2] = ACTIONS(3060), + [aux_sym__val_number_token3] = ACTIONS(3060), + [anon_sym_0b] = ACTIONS(3062), + [anon_sym_0o] = ACTIONS(3064), + [anon_sym_0x] = ACTIONS(3064), + [sym_val_date] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(3068), + [sym__str_single_quotes] = ACTIONS(3070), + [sym__str_back_ticks] = ACTIONS(3070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), + [anon_sym_err_GT] = ACTIONS(2627), + [anon_sym_out_GT] = ACTIONS(2627), + [anon_sym_e_GT] = ACTIONS(2627), + [anon_sym_o_GT] = ACTIONS(2627), + [anon_sym_err_PLUSout_GT] = ACTIONS(2627), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), + [anon_sym_o_PLUSe_GT] = ACTIONS(2627), + [anon_sym_e_PLUSo_GT] = ACTIONS(2627), + [anon_sym_err_GT_GT] = ACTIONS(2629), + [anon_sym_out_GT_GT] = ACTIONS(2629), + [anon_sym_e_GT_GT] = ACTIONS(2629), + [anon_sym_o_GT_GT] = ACTIONS(2629), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3074), }, [779] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3648), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3361), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1798), - [sym__unquoted_with_expr] = STATE(2056), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_parenthesized] = STATE(6164), + [sym__spread_parenthesized] = STATE(7414), + [sym_val_range] = STATE(7423), + [sym__val_range] = STATE(7652), + [sym__val_range_with_end] = STATE(7490), + [sym__value] = STATE(7423), + [sym_val_nothing] = STATE(6921), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5774), + [sym_val_number] = STATE(6921), + [sym__val_number_decimal] = STATE(5339), + [sym__val_number] = STATE(7088), + [sym_val_duration] = STATE(6921), + [sym_val_filesize] = STATE(6921), + [sym_val_binary] = STATE(6921), + [sym_val_string] = STATE(6921), + [sym__raw_str] = STATE(5521), + [sym__str_double_quotes] = STATE(5521), + [sym_val_interpolated] = STATE(6921), + [sym__inter_single_quotes] = STATE(7044), + [sym__inter_double_quotes] = STATE(7055), + [sym_val_list] = STATE(7345), + [sym__spread_list] = STATE(7414), + [sym_val_entry] = STATE(6855), + [sym_val_record] = STATE(6921), + [sym_val_table] = STATE(6921), + [sym_val_closure] = STATE(6921), + [sym__unquoted_in_list] = STATE(6357), + [sym__unquoted_in_list_with_expr] = STATE(7423), + [sym__unquoted_anonymous_prefix] = STATE(6796), [sym_comment] = STATE(779), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3153), - [anon_sym_false] = ACTIONS(3153), - [anon_sym_null] = ACTIONS(3155), - [aux_sym_cmd_identifier_token38] = ACTIONS(3157), - [aux_sym_cmd_identifier_token39] = ACTIONS(3157), - [aux_sym_cmd_identifier_token40] = ACTIONS(3157), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3169), - [aux_sym__val_number_decimal_token2] = ACTIONS(3171), - [aux_sym__val_number_decimal_token3] = ACTIONS(3173), - [aux_sym__val_number_decimal_token4] = ACTIONS(3175), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2709), + [aux_sym_list_body_repeat1] = STATE(781), + [anon_sym_true] = ACTIONS(3032), + [anon_sym_false] = ACTIONS(3032), + [anon_sym_null] = ACTIONS(3034), + [aux_sym_cmd_identifier_token38] = ACTIONS(3036), + [aux_sym_cmd_identifier_token39] = ACTIONS(3036), + [aux_sym_cmd_identifier_token40] = ACTIONS(3036), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(3038), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym_DOLLAR] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_DOT_DOT] = ACTIONS(3048), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), + [anon_sym_DOT_DOT_LT] = ACTIONS(3050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(3052), + [aux_sym__val_number_decimal_token2] = ACTIONS(3054), + [aux_sym__val_number_decimal_token3] = ACTIONS(3056), + [aux_sym__val_number_decimal_token4] = ACTIONS(3058), + [aux_sym__val_number_token1] = ACTIONS(3060), + [aux_sym__val_number_token2] = ACTIONS(3060), + [aux_sym__val_number_token3] = ACTIONS(3060), + [anon_sym_0b] = ACTIONS(3062), + [anon_sym_0o] = ACTIONS(3064), + [anon_sym_0x] = ACTIONS(3064), + [sym_val_date] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(3068), + [sym__str_single_quotes] = ACTIONS(3070), + [sym__str_back_ticks] = ACTIONS(3070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), + [anon_sym_err_GT] = ACTIONS(2627), + [anon_sym_out_GT] = ACTIONS(2627), + [anon_sym_e_GT] = ACTIONS(2627), + [anon_sym_o_GT] = ACTIONS(2627), + [anon_sym_err_PLUSout_GT] = ACTIONS(2627), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), + [anon_sym_o_PLUSe_GT] = ACTIONS(2627), + [anon_sym_e_PLUSo_GT] = ACTIONS(2627), + [anon_sym_err_GT_GT] = ACTIONS(2629), + [anon_sym_out_GT_GT] = ACTIONS(2629), + [anon_sym_e_GT_GT] = ACTIONS(2629), + [anon_sym_o_GT_GT] = ACTIONS(2629), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3074), }, [780] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3650), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3361), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1799), - [sym__unquoted_with_expr] = STATE(2059), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_parenthesized] = STATE(6164), + [sym__spread_parenthesized] = STATE(7414), + [sym_val_range] = STATE(7423), + [sym__val_range] = STATE(7652), + [sym__val_range_with_end] = STATE(7490), + [sym__value] = STATE(7423), + [sym_val_nothing] = STATE(6921), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5774), + [sym_val_number] = STATE(6921), + [sym__val_number_decimal] = STATE(5339), + [sym__val_number] = STATE(7088), + [sym_val_duration] = STATE(6921), + [sym_val_filesize] = STATE(6921), + [sym_val_binary] = STATE(6921), + [sym_val_string] = STATE(6921), + [sym__raw_str] = STATE(5521), + [sym__str_double_quotes] = STATE(5521), + [sym_val_interpolated] = STATE(6921), + [sym__inter_single_quotes] = STATE(7044), + [sym__inter_double_quotes] = STATE(7055), + [sym_val_list] = STATE(7353), + [sym__spread_list] = STATE(7414), + [sym_val_entry] = STATE(6855), + [sym_val_record] = STATE(6921), + [sym_val_table] = STATE(6921), + [sym_val_closure] = STATE(6921), + [sym__unquoted_in_list] = STATE(6357), + [sym__unquoted_in_list_with_expr] = STATE(7423), + [sym__unquoted_anonymous_prefix] = STATE(6796), [sym_comment] = STATE(780), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3153), - [anon_sym_false] = ACTIONS(3153), - [anon_sym_null] = ACTIONS(3155), - [aux_sym_cmd_identifier_token38] = ACTIONS(3157), - [aux_sym_cmd_identifier_token39] = ACTIONS(3157), - [aux_sym_cmd_identifier_token40] = ACTIONS(3157), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3169), - [aux_sym__val_number_decimal_token2] = ACTIONS(3171), - [aux_sym__val_number_decimal_token3] = ACTIONS(3173), - [aux_sym__val_number_decimal_token4] = ACTIONS(3175), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2709), + [aux_sym_list_body_repeat1] = STATE(781), + [anon_sym_true] = ACTIONS(3032), + [anon_sym_false] = ACTIONS(3032), + [anon_sym_null] = ACTIONS(3034), + [aux_sym_cmd_identifier_token38] = ACTIONS(3036), + [aux_sym_cmd_identifier_token39] = ACTIONS(3036), + [aux_sym_cmd_identifier_token40] = ACTIONS(3036), + [sym__newline] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(3038), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym_DOLLAR] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_DOT_DOT] = ACTIONS(3048), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), + [anon_sym_DOT_DOT_LT] = ACTIONS(3050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(3052), + [aux_sym__val_number_decimal_token2] = ACTIONS(3054), + [aux_sym__val_number_decimal_token3] = ACTIONS(3056), + [aux_sym__val_number_decimal_token4] = ACTIONS(3058), + [aux_sym__val_number_token1] = ACTIONS(3060), + [aux_sym__val_number_token2] = ACTIONS(3060), + [aux_sym__val_number_token3] = ACTIONS(3060), + [anon_sym_0b] = ACTIONS(3062), + [anon_sym_0o] = ACTIONS(3064), + [anon_sym_0x] = ACTIONS(3064), + [sym_val_date] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(3068), + [sym__str_single_quotes] = ACTIONS(3070), + [sym__str_back_ticks] = ACTIONS(3070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), + [anon_sym_err_GT] = ACTIONS(2627), + [anon_sym_out_GT] = ACTIONS(2627), + [anon_sym_e_GT] = ACTIONS(2627), + [anon_sym_o_GT] = ACTIONS(2627), + [anon_sym_err_PLUSout_GT] = ACTIONS(2627), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), + [anon_sym_o_PLUSe_GT] = ACTIONS(2627), + [anon_sym_e_PLUSo_GT] = ACTIONS(2627), + [anon_sym_err_GT_GT] = ACTIONS(2629), + [anon_sym_out_GT_GT] = ACTIONS(2629), + [anon_sym_e_GT_GT] = ACTIONS(2629), + [anon_sym_o_GT_GT] = ACTIONS(2629), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3074), }, [781] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3652), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3361), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1801), - [sym__unquoted_with_expr] = STATE(2063), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_parenthesized] = STATE(6164), + [sym__spread_parenthesized] = STATE(7414), + [sym_val_range] = STATE(7423), + [sym__val_range] = STATE(7652), + [sym__val_range_with_end] = STATE(7490), + [sym__value] = STATE(7423), + [sym_val_nothing] = STATE(6921), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5774), + [sym_val_number] = STATE(6921), + [sym__val_number_decimal] = STATE(5339), + [sym__val_number] = STATE(7088), + [sym_val_duration] = STATE(6921), + [sym_val_filesize] = STATE(6921), + [sym_val_binary] = STATE(6921), + [sym_val_string] = STATE(6921), + [sym__raw_str] = STATE(5521), + [sym__str_double_quotes] = STATE(5521), + [sym_val_interpolated] = STATE(6921), + [sym__inter_single_quotes] = STATE(7044), + [sym__inter_double_quotes] = STATE(7055), + [sym_val_list] = STATE(6921), + [sym__spread_list] = STATE(7414), + [sym_val_entry] = STATE(7229), + [sym_val_record] = STATE(6921), + [sym_val_table] = STATE(6921), + [sym_val_closure] = STATE(6921), + [sym__unquoted_in_list] = STATE(6357), + [sym__unquoted_in_list_with_expr] = STATE(7423), + [sym__unquoted_anonymous_prefix] = STATE(6796), [sym_comment] = STATE(781), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3153), - [anon_sym_false] = ACTIONS(3153), - [anon_sym_null] = ACTIONS(3155), - [aux_sym_cmd_identifier_token38] = ACTIONS(3157), - [aux_sym_cmd_identifier_token39] = ACTIONS(3157), - [aux_sym_cmd_identifier_token40] = ACTIONS(3157), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3169), - [aux_sym__val_number_decimal_token2] = ACTIONS(3171), - [aux_sym__val_number_decimal_token3] = ACTIONS(3173), - [aux_sym__val_number_decimal_token4] = ACTIONS(3175), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_list_body_repeat1] = STATE(783), + [anon_sym_true] = ACTIONS(3032), + [anon_sym_false] = ACTIONS(3032), + [anon_sym_null] = ACTIONS(3034), + [aux_sym_cmd_identifier_token38] = ACTIONS(3036), + [aux_sym_cmd_identifier_token39] = ACTIONS(3036), + [aux_sym_cmd_identifier_token40] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(3078), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym_DOLLAR] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_DOT_DOT] = ACTIONS(3048), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), + [anon_sym_DOT_DOT_LT] = ACTIONS(3050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(3052), + [aux_sym__val_number_decimal_token2] = ACTIONS(3054), + [aux_sym__val_number_decimal_token3] = ACTIONS(3056), + [aux_sym__val_number_decimal_token4] = ACTIONS(3058), + [aux_sym__val_number_token1] = ACTIONS(3060), + [aux_sym__val_number_token2] = ACTIONS(3060), + [aux_sym__val_number_token3] = ACTIONS(3060), + [anon_sym_0b] = ACTIONS(3062), + [anon_sym_0o] = ACTIONS(3064), + [anon_sym_0x] = ACTIONS(3064), + [sym_val_date] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(3068), + [sym__str_single_quotes] = ACTIONS(3070), + [sym__str_back_ticks] = ACTIONS(3070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), + [anon_sym_err_GT] = ACTIONS(2627), + [anon_sym_out_GT] = ACTIONS(2627), + [anon_sym_e_GT] = ACTIONS(2627), + [anon_sym_o_GT] = ACTIONS(2627), + [anon_sym_err_PLUSout_GT] = ACTIONS(2627), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), + [anon_sym_o_PLUSe_GT] = ACTIONS(2627), + [anon_sym_e_PLUSo_GT] = ACTIONS(2627), + [anon_sym_err_GT_GT] = ACTIONS(2629), + [anon_sym_out_GT_GT] = ACTIONS(2629), + [anon_sym_e_GT_GT] = ACTIONS(2629), + [anon_sym_o_GT_GT] = ACTIONS(2629), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3074), }, [782] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3654), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3361), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1802), - [sym__unquoted_with_expr] = STATE(2066), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_parenthesized] = STATE(6164), + [sym__spread_parenthesized] = STATE(7414), + [sym_val_range] = STATE(7423), + [sym__val_range] = STATE(7652), + [sym__val_range_with_end] = STATE(7490), + [sym__value] = STATE(7423), + [sym_val_nothing] = STATE(6921), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5774), + [sym_val_number] = STATE(6921), + [sym__val_number_decimal] = STATE(5339), + [sym__val_number] = STATE(7088), + [sym_val_duration] = STATE(6921), + [sym_val_filesize] = STATE(6921), + [sym_val_binary] = STATE(6921), + [sym_val_string] = STATE(6921), + [sym__raw_str] = STATE(5521), + [sym__str_double_quotes] = STATE(5521), + [sym_val_interpolated] = STATE(6921), + [sym__inter_single_quotes] = STATE(7044), + [sym__inter_double_quotes] = STATE(7055), + [sym_val_list] = STATE(6921), + [sym__spread_list] = STATE(7414), + [sym_val_entry] = STATE(6755), + [sym_val_record] = STATE(6921), + [sym_val_table] = STATE(6921), + [sym_val_closure] = STATE(6921), + [sym__unquoted_in_list] = STATE(6357), + [sym__unquoted_in_list_with_expr] = STATE(7423), + [sym__unquoted_anonymous_prefix] = STATE(6796), [sym_comment] = STATE(782), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3153), - [anon_sym_false] = ACTIONS(3153), - [anon_sym_null] = ACTIONS(3155), - [aux_sym_cmd_identifier_token38] = ACTIONS(3157), - [aux_sym_cmd_identifier_token39] = ACTIONS(3157), - [aux_sym_cmd_identifier_token40] = ACTIONS(3157), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3169), - [aux_sym__val_number_decimal_token2] = ACTIONS(3171), - [aux_sym__val_number_decimal_token3] = ACTIONS(3173), - [aux_sym__val_number_decimal_token4] = ACTIONS(3175), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_list_body_repeat1] = STATE(783), + [anon_sym_true] = ACTIONS(3032), + [anon_sym_false] = ACTIONS(3032), + [anon_sym_null] = ACTIONS(3034), + [aux_sym_cmd_identifier_token38] = ACTIONS(3036), + [aux_sym_cmd_identifier_token39] = ACTIONS(3036), + [aux_sym_cmd_identifier_token40] = ACTIONS(3036), + [anon_sym_LBRACK] = ACTIONS(3078), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym_DOLLAR] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_DOT_DOT] = ACTIONS(3048), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(311), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3050), + [anon_sym_DOT_DOT_LT] = ACTIONS(3050), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(313), + [aux_sym__val_number_decimal_token1] = ACTIONS(3052), + [aux_sym__val_number_decimal_token2] = ACTIONS(3054), + [aux_sym__val_number_decimal_token3] = ACTIONS(3056), + [aux_sym__val_number_decimal_token4] = ACTIONS(3058), + [aux_sym__val_number_token1] = ACTIONS(3060), + [aux_sym__val_number_token2] = ACTIONS(3060), + [aux_sym__val_number_token3] = ACTIONS(3060), + [anon_sym_0b] = ACTIONS(3062), + [anon_sym_0o] = ACTIONS(3064), + [anon_sym_0x] = ACTIONS(3064), + [sym_val_date] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(3068), + [sym__str_single_quotes] = ACTIONS(3070), + [sym__str_back_ticks] = ACTIONS(3070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2625), + [anon_sym_err_GT] = ACTIONS(2627), + [anon_sym_out_GT] = ACTIONS(2627), + [anon_sym_e_GT] = ACTIONS(2627), + [anon_sym_o_GT] = ACTIONS(2627), + [anon_sym_err_PLUSout_GT] = ACTIONS(2627), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), + [anon_sym_o_PLUSe_GT] = ACTIONS(2627), + [anon_sym_e_PLUSo_GT] = ACTIONS(2627), + [anon_sym_err_GT_GT] = ACTIONS(2629), + [anon_sym_out_GT_GT] = ACTIONS(2629), + [anon_sym_e_GT_GT] = ACTIONS(2629), + [anon_sym_o_GT_GT] = ACTIONS(2629), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3072), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3074), }, [783] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3656), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3361), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1803), - [sym__unquoted_with_expr] = STATE(2069), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_parenthesized] = STATE(6164), + [sym__spread_parenthesized] = STATE(7414), + [sym_val_range] = STATE(7423), + [sym__val_range] = STATE(7652), + [sym__val_range_with_end] = STATE(7490), + [sym__value] = STATE(7423), + [sym_val_nothing] = STATE(6921), + [sym_val_bool] = STATE(6258), + [sym__spread_variable] = STATE(7497), + [sym_val_variable] = STATE(5774), + [sym_val_number] = STATE(6921), + [sym__val_number_decimal] = STATE(5339), + [sym__val_number] = STATE(7088), + [sym_val_duration] = STATE(6921), + [sym_val_filesize] = STATE(6921), + [sym_val_binary] = STATE(6921), + [sym_val_string] = STATE(6921), + [sym__raw_str] = STATE(5521), + [sym__str_double_quotes] = STATE(5521), + [sym_val_interpolated] = STATE(6921), + [sym__inter_single_quotes] = STATE(7044), + [sym__inter_double_quotes] = STATE(7055), + [sym_val_list] = STATE(6921), + [sym__spread_list] = STATE(7414), + [sym_val_entry] = STATE(7431), + [sym_val_record] = STATE(6921), + [sym_val_table] = STATE(6921), + [sym_val_closure] = STATE(6921), + [sym__unquoted_in_list] = STATE(6357), + [sym__unquoted_in_list_with_expr] = STATE(7423), + [sym__unquoted_anonymous_prefix] = STATE(6796), [sym_comment] = STATE(783), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3153), - [anon_sym_false] = ACTIONS(3153), - [anon_sym_null] = ACTIONS(3155), - [aux_sym_cmd_identifier_token38] = ACTIONS(3157), - [aux_sym_cmd_identifier_token39] = ACTIONS(3157), - [aux_sym_cmd_identifier_token40] = ACTIONS(3157), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3169), - [aux_sym__val_number_decimal_token2] = ACTIONS(3171), + [aux_sym_list_body_repeat1] = STATE(783), + [anon_sym_true] = ACTIONS(3134), + [anon_sym_false] = ACTIONS(3134), + [anon_sym_null] = ACTIONS(3137), + [aux_sym_cmd_identifier_token38] = ACTIONS(3140), + [aux_sym_cmd_identifier_token39] = ACTIONS(3140), + [aux_sym_cmd_identifier_token40] = ACTIONS(3140), + [anon_sym_LBRACK] = ACTIONS(3143), + [anon_sym_LPAREN] = ACTIONS(3146), + [anon_sym_DOLLAR] = ACTIONS(3149), + [anon_sym_LBRACE] = ACTIONS(3152), + [anon_sym_DOT_DOT] = ACTIONS(3155), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(3158), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3161), + [anon_sym_DOT_DOT_LT] = ACTIONS(3161), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(3164), + [aux_sym__val_number_decimal_token1] = ACTIONS(3167), + [aux_sym__val_number_decimal_token2] = ACTIONS(3170), [aux_sym__val_number_decimal_token3] = ACTIONS(3173), - [aux_sym__val_number_decimal_token4] = ACTIONS(3175), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym__val_number_decimal_token4] = ACTIONS(3176), + [aux_sym__val_number_token1] = ACTIONS(3179), + [aux_sym__val_number_token2] = ACTIONS(3179), + [aux_sym__val_number_token3] = ACTIONS(3179), + [anon_sym_0b] = ACTIONS(3182), + [anon_sym_0o] = ACTIONS(3185), + [anon_sym_0x] = ACTIONS(3185), + [sym_val_date] = ACTIONS(3188), + [anon_sym_DQUOTE] = ACTIONS(3191), + [sym__str_single_quotes] = ACTIONS(3194), + [sym__str_back_ticks] = ACTIONS(3194), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3197), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3200), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(3203), + [anon_sym_err_GT] = ACTIONS(3206), + [anon_sym_out_GT] = ACTIONS(3206), + [anon_sym_e_GT] = ACTIONS(3206), + [anon_sym_o_GT] = ACTIONS(3206), + [anon_sym_err_PLUSout_GT] = ACTIONS(3206), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3206), + [anon_sym_o_PLUSe_GT] = ACTIONS(3206), + [anon_sym_e_PLUSo_GT] = ACTIONS(3206), + [anon_sym_err_GT_GT] = ACTIONS(3209), + [anon_sym_out_GT_GT] = ACTIONS(3209), + [anon_sym_e_GT_GT] = ACTIONS(3209), + [anon_sym_o_GT_GT] = ACTIONS(3209), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3209), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3209), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3209), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3209), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3212), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3215), }, [784] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3658), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3361), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1807), - [sym__unquoted_with_expr] = STATE(2072), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3675), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3660), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1911), + [sym__unquoted_with_expr] = STATE(2149), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(784), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3153), - [anon_sym_false] = ACTIONS(3153), - [anon_sym_null] = ACTIONS(3155), - [aux_sym_cmd_identifier_token38] = ACTIONS(3157), - [aux_sym_cmd_identifier_token39] = ACTIONS(3157), - [aux_sym_cmd_identifier_token40] = ACTIONS(3157), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3169), - [aux_sym__val_number_decimal_token2] = ACTIONS(3171), - [aux_sym__val_number_decimal_token3] = ACTIONS(3173), - [aux_sym__val_number_decimal_token4] = ACTIONS(3175), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(852), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [aux_sym_cmd_identifier_token38] = ACTIONS(3222), + [aux_sym_cmd_identifier_token39] = ACTIONS(3222), + [aux_sym_cmd_identifier_token40] = ACTIONS(3222), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3234), + [aux_sym__val_number_decimal_token2] = ACTIONS(3236), + [aux_sym__val_number_decimal_token3] = ACTIONS(3238), + [aux_sym__val_number_decimal_token4] = ACTIONS(3240), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [785] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(2300), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2144), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1926), - [sym__unquoted_with_expr] = STATE(2168), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_parenthesized] = STATE(1455), + [sym_val_range] = STATE(1797), + [sym__val_range] = STATE(7767), + [sym__val_range_with_end] = STATE(7549), + [sym__value] = STATE(1797), + [sym_val_nothing] = STATE(1587), + [sym_val_bool] = STATE(1412), + [sym_val_variable] = STATE(1346), + [sym_val_number] = STATE(1587), + [sym__val_number_decimal] = STATE(1165), + [sym__val_number] = STATE(1646), + [sym_val_duration] = STATE(1587), + [sym_val_filesize] = STATE(1587), + [sym_val_binary] = STATE(1587), + [sym_val_string] = STATE(1587), + [sym__raw_str] = STATE(1640), + [sym__str_double_quotes] = STATE(1640), + [sym_val_interpolated] = STATE(1587), + [sym__inter_single_quotes] = STATE(1696), + [sym__inter_double_quotes] = STATE(1642), + [sym_val_list] = STATE(1587), + [sym_val_record] = STATE(1587), + [sym_val_table] = STATE(1587), + [sym_val_closure] = STATE(1587), + [sym__flag] = STATE(1797), + [sym_short_flag] = STATE(1673), + [sym_long_flag] = STATE(1673), + [sym_unquoted] = STATE(1494), + [sym__unquoted_with_expr] = STATE(1895), + [sym__unquoted_anonymous_prefix] = STATE(6757), [sym_comment] = STATE(785), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3183), - [aux_sym_cmd_identifier_token38] = ACTIONS(3185), - [aux_sym_cmd_identifier_token39] = ACTIONS(3185), - [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3187), - [aux_sym__val_number_decimal_token2] = ACTIONS(3189), - [aux_sym__val_number_decimal_token3] = ACTIONS(3191), - [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2755), + [anon_sym_true] = ACTIONS(2637), + [anon_sym_false] = ACTIONS(2637), + [anon_sym_null] = ACTIONS(2639), + [aux_sym_cmd_identifier_token38] = ACTIONS(2641), + [aux_sym_cmd_identifier_token39] = ACTIONS(2641), + [aux_sym_cmd_identifier_token40] = ACTIONS(2641), + [sym__newline] = ACTIONS(2695), + [anon_sym_LBRACK] = ACTIONS(2645), + [anon_sym_LPAREN] = ACTIONS(2647), + [anon_sym_DOLLAR] = ACTIONS(2649), + [anon_sym_DASH_DASH] = ACTIONS(2651), + [anon_sym_DASH] = ACTIONS(2653), + [anon_sym_LBRACE] = ACTIONS(2655), + [anon_sym_DOT_DOT] = ACTIONS(2657), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2659), + [anon_sym_DOT_DOT_LT] = ACTIONS(2659), + [aux_sym__val_number_decimal_token1] = ACTIONS(2661), + [aux_sym__val_number_decimal_token2] = ACTIONS(2663), + [aux_sym__val_number_decimal_token3] = ACTIONS(2665), + [aux_sym__val_number_decimal_token4] = ACTIONS(2667), + [aux_sym__val_number_token1] = ACTIONS(2669), + [aux_sym__val_number_token2] = ACTIONS(2669), + [aux_sym__val_number_token3] = ACTIONS(2669), + [anon_sym_0b] = ACTIONS(2671), + [anon_sym_0o] = ACTIONS(2673), + [anon_sym_0x] = ACTIONS(2673), + [sym_val_date] = ACTIONS(2675), + [anon_sym_DQUOTE] = ACTIONS(2677), + [sym__str_single_quotes] = ACTIONS(2679), + [sym__str_back_ticks] = ACTIONS(2679), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2681), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2683), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(2689), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2691), }, [786] = { - [sym_expr_parenthesized] = STATE(1431), - [sym_val_range] = STATE(1954), - [sym__val_range] = STATE(7503), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(1954), - [sym_val_nothing] = STATE(1673), - [sym_val_bool] = STATE(1475), - [sym_val_variable] = STATE(1370), - [sym_val_number] = STATE(1673), - [sym__val_number_decimal] = STATE(1106), - [sym__val_number] = STATE(1734), - [sym_val_duration] = STATE(1673), - [sym_val_filesize] = STATE(1673), - [sym_val_binary] = STATE(1673), - [sym_val_string] = STATE(1673), - [sym__str_double_quotes] = STATE(1675), - [sym_val_interpolated] = STATE(1673), - [sym__inter_single_quotes] = STATE(1583), - [sym__inter_double_quotes] = STATE(1584), - [sym_val_list] = STATE(1673), - [sym_val_record] = STATE(1673), - [sym_val_table] = STATE(1673), - [sym_val_closure] = STATE(1673), - [sym__flag] = STATE(1954), - [sym_short_flag] = STATE(1633), - [sym_long_flag] = STATE(1633), - [sym_unquoted] = STATE(1506), - [sym__unquoted_with_expr] = STATE(1957), - [sym__unquoted_anonymous_prefix] = STATE(7099), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(2185), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2120), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1417), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1942), + [sym__unquoted_with_expr] = STATE(2186), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(786), - [aux_sym_shebang_repeat1] = STATE(2763), - [anon_sym_true] = ACTIONS(2595), - [anon_sym_false] = ACTIONS(2595), - [anon_sym_null] = ACTIONS(2597), - [aux_sym_cmd_identifier_token38] = ACTIONS(2599), - [aux_sym_cmd_identifier_token39] = ACTIONS(2599), - [aux_sym_cmd_identifier_token40] = ACTIONS(2599), - [sym__newline] = ACTIONS(2653), - [anon_sym_LBRACK] = ACTIONS(2603), - [anon_sym_LPAREN] = ACTIONS(2605), - [anon_sym_DOLLAR] = ACTIONS(2607), - [anon_sym_DASH_DASH] = ACTIONS(2609), - [anon_sym_DASH] = ACTIONS(2611), - [anon_sym_LBRACE] = ACTIONS(2613), - [anon_sym_DOT_DOT] = ACTIONS(2615), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2617), - [anon_sym_DOT_DOT_LT] = ACTIONS(2617), - [aux_sym__val_number_decimal_token1] = ACTIONS(2619), - [aux_sym__val_number_decimal_token2] = ACTIONS(2621), - [aux_sym__val_number_decimal_token3] = ACTIONS(2623), - [aux_sym__val_number_decimal_token4] = ACTIONS(2625), - [aux_sym__val_number_token1] = ACTIONS(2627), - [aux_sym__val_number_token2] = ACTIONS(2627), - [aux_sym__val_number_token3] = ACTIONS(2627), - [anon_sym_0b] = ACTIONS(2629), - [anon_sym_0o] = ACTIONS(2631), - [anon_sym_0x] = ACTIONS(2631), - [sym_val_date] = ACTIONS(2633), - [anon_sym_DQUOTE] = ACTIONS(2635), - [sym__str_single_quotes] = ACTIONS(2637), - [sym__str_back_ticks] = ACTIONS(2637), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2639), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2641), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(2647), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_null] = ACTIONS(3248), + [aux_sym_cmd_identifier_token38] = ACTIONS(3250), + [aux_sym_cmd_identifier_token39] = ACTIONS(3250), + [aux_sym_cmd_identifier_token40] = ACTIONS(3250), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3252), + [aux_sym__val_number_decimal_token2] = ACTIONS(3254), + [aux_sym__val_number_decimal_token3] = ACTIONS(3256), + [aux_sym__val_number_decimal_token4] = ACTIONS(3258), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [787] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(2324), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2144), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1927), - [sym__unquoted_with_expr] = STATE(2175), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(2309), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2120), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1417), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1968), + [sym__unquoted_with_expr] = STATE(2188), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(787), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3183), - [aux_sym_cmd_identifier_token38] = ACTIONS(3185), - [aux_sym_cmd_identifier_token39] = ACTIONS(3185), - [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3187), - [aux_sym__val_number_decimal_token2] = ACTIONS(3189), - [aux_sym__val_number_decimal_token3] = ACTIONS(3191), - [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_null] = ACTIONS(3248), + [aux_sym_cmd_identifier_token38] = ACTIONS(3250), + [aux_sym_cmd_identifier_token39] = ACTIONS(3250), + [aux_sym_cmd_identifier_token40] = ACTIONS(3250), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3252), + [aux_sym__val_number_decimal_token2] = ACTIONS(3254), + [aux_sym__val_number_decimal_token3] = ACTIONS(3256), + [aux_sym__val_number_decimal_token4] = ACTIONS(3258), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [788] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(2033), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2144), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1962), - [sym__unquoted_with_expr] = STATE(2034), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(2313), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2120), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1417), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1905), + [sym__unquoted_with_expr] = STATE(2191), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(788), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3183), - [aux_sym_cmd_identifier_token38] = ACTIONS(3185), - [aux_sym_cmd_identifier_token39] = ACTIONS(3185), - [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3187), - [aux_sym__val_number_decimal_token2] = ACTIONS(3189), - [aux_sym__val_number_decimal_token3] = ACTIONS(3191), - [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_null] = ACTIONS(3248), + [aux_sym_cmd_identifier_token38] = ACTIONS(3250), + [aux_sym_cmd_identifier_token39] = ACTIONS(3250), + [aux_sym_cmd_identifier_token40] = ACTIONS(3250), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3252), + [aux_sym__val_number_decimal_token2] = ACTIONS(3254), + [aux_sym__val_number_decimal_token3] = ACTIONS(3256), + [aux_sym__val_number_decimal_token4] = ACTIONS(3258), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [789] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(2360), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2144), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1811), - [sym__unquoted_with_expr] = STATE(2074), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(2319), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2120), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1417), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1959), + [sym__unquoted_with_expr] = STATE(2194), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(789), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3183), - [aux_sym_cmd_identifier_token38] = ACTIONS(3185), - [aux_sym_cmd_identifier_token39] = ACTIONS(3185), - [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3187), - [aux_sym__val_number_decimal_token2] = ACTIONS(3189), - [aux_sym__val_number_decimal_token3] = ACTIONS(3191), - [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_null] = ACTIONS(3248), + [aux_sym_cmd_identifier_token38] = ACTIONS(3250), + [aux_sym_cmd_identifier_token39] = ACTIONS(3250), + [aux_sym_cmd_identifier_token40] = ACTIONS(3250), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3252), + [aux_sym__val_number_decimal_token2] = ACTIONS(3254), + [aux_sym__val_number_decimal_token3] = ACTIONS(3256), + [aux_sym__val_number_decimal_token4] = ACTIONS(3258), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [790] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(2246), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2144), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1820), - [sym__unquoted_with_expr] = STATE(2065), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(2324), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2120), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1417), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1969), + [sym__unquoted_with_expr] = STATE(2197), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(790), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3183), - [aux_sym_cmd_identifier_token38] = ACTIONS(3185), - [aux_sym_cmd_identifier_token39] = ACTIONS(3185), - [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3187), - [aux_sym__val_number_decimal_token2] = ACTIONS(3189), - [aux_sym__val_number_decimal_token3] = ACTIONS(3191), - [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_null] = ACTIONS(3248), + [aux_sym_cmd_identifier_token38] = ACTIONS(3250), + [aux_sym_cmd_identifier_token39] = ACTIONS(3250), + [aux_sym_cmd_identifier_token40] = ACTIONS(3250), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3252), + [aux_sym__val_number_decimal_token2] = ACTIONS(3254), + [aux_sym__val_number_decimal_token3] = ACTIONS(3256), + [aux_sym__val_number_decimal_token4] = ACTIONS(3258), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [791] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(2216), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2144), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1823), - [sym__unquoted_with_expr] = STATE(2096), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(2334), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2120), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1417), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1972), + [sym__unquoted_with_expr] = STATE(2199), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(791), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3183), - [aux_sym_cmd_identifier_token38] = ACTIONS(3185), - [aux_sym_cmd_identifier_token39] = ACTIONS(3185), - [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3187), - [aux_sym__val_number_decimal_token2] = ACTIONS(3189), - [aux_sym__val_number_decimal_token3] = ACTIONS(3191), - [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_null] = ACTIONS(3248), + [aux_sym_cmd_identifier_token38] = ACTIONS(3250), + [aux_sym_cmd_identifier_token39] = ACTIONS(3250), + [aux_sym_cmd_identifier_token40] = ACTIONS(3250), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3252), + [aux_sym__val_number_decimal_token2] = ACTIONS(3254), + [aux_sym__val_number_decimal_token3] = ACTIONS(3256), + [aux_sym__val_number_decimal_token4] = ACTIONS(3258), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [792] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(2184), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2144), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1849), - [sym__unquoted_with_expr] = STATE(2036), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(2338), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2120), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1417), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1899), + [sym__unquoted_with_expr] = STATE(2202), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(792), - [aux_sym_shebang_repeat1] = STATE(870), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3183), - [aux_sym_cmd_identifier_token38] = ACTIONS(3185), - [aux_sym_cmd_identifier_token39] = ACTIONS(3185), - [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3187), - [aux_sym__val_number_decimal_token2] = ACTIONS(3189), - [aux_sym__val_number_decimal_token3] = ACTIONS(3191), - [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_null] = ACTIONS(3248), + [aux_sym_cmd_identifier_token38] = ACTIONS(3250), + [aux_sym_cmd_identifier_token39] = ACTIONS(3250), + [aux_sym_cmd_identifier_token40] = ACTIONS(3250), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3252), + [aux_sym__val_number_decimal_token2] = ACTIONS(3254), + [aux_sym__val_number_decimal_token3] = ACTIONS(3256), + [aux_sym__val_number_decimal_token4] = ACTIONS(3258), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [793] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(2346), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2144), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1963), - [sym__unquoted_with_expr] = STATE(2037), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(2345), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2120), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1417), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1951), + [sym__unquoted_with_expr] = STATE(2204), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(793), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3183), - [aux_sym_cmd_identifier_token38] = ACTIONS(3185), - [aux_sym_cmd_identifier_token39] = ACTIONS(3185), - [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3187), - [aux_sym__val_number_decimal_token2] = ACTIONS(3189), - [aux_sym__val_number_decimal_token3] = ACTIONS(3191), - [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_null] = ACTIONS(3248), + [aux_sym_cmd_identifier_token38] = ACTIONS(3250), + [aux_sym_cmd_identifier_token39] = ACTIONS(3250), + [aux_sym_cmd_identifier_token40] = ACTIONS(3250), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3252), + [aux_sym__val_number_decimal_token2] = ACTIONS(3254), + [aux_sym__val_number_decimal_token3] = ACTIONS(3256), + [aux_sym__val_number_decimal_token4] = ACTIONS(3258), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [794] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(2309), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2144), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1824), - [sym__unquoted_with_expr] = STATE(2112), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(2349), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2120), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1417), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1952), + [sym__unquoted_with_expr] = STATE(2206), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(794), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3183), - [aux_sym_cmd_identifier_token38] = ACTIONS(3185), - [aux_sym_cmd_identifier_token39] = ACTIONS(3185), - [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3187), - [aux_sym__val_number_decimal_token2] = ACTIONS(3189), - [aux_sym__val_number_decimal_token3] = ACTIONS(3191), - [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_null] = ACTIONS(3248), + [aux_sym_cmd_identifier_token38] = ACTIONS(3250), + [aux_sym_cmd_identifier_token39] = ACTIONS(3250), + [aux_sym_cmd_identifier_token40] = ACTIONS(3250), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3252), + [aux_sym__val_number_decimal_token2] = ACTIONS(3254), + [aux_sym__val_number_decimal_token3] = ACTIONS(3256), + [aux_sym__val_number_decimal_token4] = ACTIONS(3258), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [795] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(2184), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3138), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(2943), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1849), - [sym__unquoted_with_expr] = STATE(2036), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(2353), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2120), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1417), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1991), + [sym__unquoted_with_expr] = STATE(2208), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(795), - [aux_sym_shebang_repeat1] = STATE(808), - [anon_sym_true] = ACTIONS(3197), - [anon_sym_false] = ACTIONS(3197), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3201), - [aux_sym_cmd_identifier_token39] = ACTIONS(3201), - [aux_sym_cmd_identifier_token40] = ACTIONS(3201), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3203), - [aux_sym__val_number_decimal_token2] = ACTIONS(3205), - [aux_sym__val_number_decimal_token3] = ACTIONS(3207), - [aux_sym__val_number_decimal_token4] = ACTIONS(3209), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3211), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_null] = ACTIONS(3248), + [aux_sym_cmd_identifier_token38] = ACTIONS(3250), + [aux_sym_cmd_identifier_token39] = ACTIONS(3250), + [aux_sym_cmd_identifier_token40] = ACTIONS(3250), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3252), + [aux_sym__val_number_decimal_token2] = ACTIONS(3254), + [aux_sym__val_number_decimal_token3] = ACTIONS(3256), + [aux_sym__val_number_decimal_token4] = ACTIONS(3258), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [796] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3251), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3138), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(2943), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1869), - [sym__unquoted_with_expr] = STATE(2148), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(2357), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2120), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1417), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1912), + [sym__unquoted_with_expr] = STATE(2210), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(796), - [aux_sym_shebang_repeat1] = STATE(809), - [anon_sym_true] = ACTIONS(3197), - [anon_sym_false] = ACTIONS(3197), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3201), - [aux_sym_cmd_identifier_token39] = ACTIONS(3201), - [aux_sym_cmd_identifier_token40] = ACTIONS(3201), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3203), - [aux_sym__val_number_decimal_token2] = ACTIONS(3205), - [aux_sym__val_number_decimal_token3] = ACTIONS(3207), - [aux_sym__val_number_decimal_token4] = ACTIONS(3209), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3211), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_null] = ACTIONS(3248), + [aux_sym_cmd_identifier_token38] = ACTIONS(3250), + [aux_sym_cmd_identifier_token39] = ACTIONS(3250), + [aux_sym_cmd_identifier_token40] = ACTIONS(3250), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3252), + [aux_sym__val_number_decimal_token2] = ACTIONS(3254), + [aux_sym__val_number_decimal_token3] = ACTIONS(3256), + [aux_sym__val_number_decimal_token4] = ACTIONS(3258), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [797] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3252), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3138), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(2943), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1925), - [sym__unquoted_with_expr] = STATE(2183), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(2361), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2120), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1417), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1947), + [sym__unquoted_with_expr] = STATE(2212), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(797), - [aux_sym_shebang_repeat1] = STATE(810), - [anon_sym_true] = ACTIONS(3197), - [anon_sym_false] = ACTIONS(3197), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3201), - [aux_sym_cmd_identifier_token39] = ACTIONS(3201), - [aux_sym_cmd_identifier_token40] = ACTIONS(3201), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3203), - [aux_sym__val_number_decimal_token2] = ACTIONS(3205), - [aux_sym__val_number_decimal_token3] = ACTIONS(3207), - [aux_sym__val_number_decimal_token4] = ACTIONS(3209), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3211), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_null] = ACTIONS(3248), + [aux_sym_cmd_identifier_token38] = ACTIONS(3250), + [aux_sym_cmd_identifier_token39] = ACTIONS(3250), + [aux_sym_cmd_identifier_token40] = ACTIONS(3250), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3252), + [aux_sym__val_number_decimal_token2] = ACTIONS(3254), + [aux_sym__val_number_decimal_token3] = ACTIONS(3256), + [aux_sym__val_number_decimal_token4] = ACTIONS(3258), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [798] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3253), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3138), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(2943), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1928), - [sym__unquoted_with_expr] = STATE(2195), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(2365), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2120), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1417), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1934), + [sym__unquoted_with_expr] = STATE(2214), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(798), - [aux_sym_shebang_repeat1] = STATE(811), - [anon_sym_true] = ACTIONS(3197), - [anon_sym_false] = ACTIONS(3197), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3201), - [aux_sym_cmd_identifier_token39] = ACTIONS(3201), - [aux_sym_cmd_identifier_token40] = ACTIONS(3201), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3203), - [aux_sym__val_number_decimal_token2] = ACTIONS(3205), - [aux_sym__val_number_decimal_token3] = ACTIONS(3207), - [aux_sym__val_number_decimal_token4] = ACTIONS(3209), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3211), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_null] = ACTIONS(3248), + [aux_sym_cmd_identifier_token38] = ACTIONS(3250), + [aux_sym_cmd_identifier_token39] = ACTIONS(3250), + [aux_sym_cmd_identifier_token40] = ACTIONS(3250), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3252), + [aux_sym__val_number_decimal_token2] = ACTIONS(3254), + [aux_sym__val_number_decimal_token3] = ACTIONS(3256), + [aux_sym__val_number_decimal_token4] = ACTIONS(3258), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [799] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3254), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3138), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(2943), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1933), - [sym__unquoted_with_expr] = STATE(2039), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(2089), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2120), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1417), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1915), + [sym__unquoted_with_expr] = STATE(2090), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(799), - [aux_sym_shebang_repeat1] = STATE(812), - [anon_sym_true] = ACTIONS(3197), - [anon_sym_false] = ACTIONS(3197), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3201), - [aux_sym_cmd_identifier_token39] = ACTIONS(3201), - [aux_sym_cmd_identifier_token40] = ACTIONS(3201), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3203), - [aux_sym__val_number_decimal_token2] = ACTIONS(3205), - [aux_sym__val_number_decimal_token3] = ACTIONS(3207), - [aux_sym__val_number_decimal_token4] = ACTIONS(3209), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3211), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_null] = ACTIONS(3248), + [aux_sym_cmd_identifier_token38] = ACTIONS(3250), + [aux_sym_cmd_identifier_token39] = ACTIONS(3250), + [aux_sym_cmd_identifier_token40] = ACTIONS(3250), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3252), + [aux_sym__val_number_decimal_token2] = ACTIONS(3254), + [aux_sym__val_number_decimal_token3] = ACTIONS(3256), + [aux_sym__val_number_decimal_token4] = ACTIONS(3258), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [800] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3256), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3138), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(2943), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1961), - [sym__unquoted_with_expr] = STATE(2117), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(2305), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2120), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1417), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1917), + [sym__unquoted_with_expr] = STATE(2097), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(800), - [aux_sym_shebang_repeat1] = STATE(813), - [anon_sym_true] = ACTIONS(3197), - [anon_sym_false] = ACTIONS(3197), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3201), - [aux_sym_cmd_identifier_token39] = ACTIONS(3201), - [aux_sym_cmd_identifier_token40] = ACTIONS(3201), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3203), - [aux_sym__val_number_decimal_token2] = ACTIONS(3205), - [aux_sym__val_number_decimal_token3] = ACTIONS(3207), - [aux_sym__val_number_decimal_token4] = ACTIONS(3209), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3211), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_null] = ACTIONS(3248), + [aux_sym_cmd_identifier_token38] = ACTIONS(3250), + [aux_sym_cmd_identifier_token39] = ACTIONS(3250), + [aux_sym_cmd_identifier_token40] = ACTIONS(3250), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3252), + [aux_sym__val_number_decimal_token2] = ACTIONS(3254), + [aux_sym__val_number_decimal_token3] = ACTIONS(3256), + [aux_sym__val_number_decimal_token4] = ACTIONS(3258), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [801] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3257), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3138), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(2943), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1846), - [sym__unquoted_with_expr] = STATE(2116), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(2386), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2120), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1417), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1918), + [sym__unquoted_with_expr] = STATE(2100), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(801), - [aux_sym_shebang_repeat1] = STATE(814), - [anon_sym_true] = ACTIONS(3197), - [anon_sym_false] = ACTIONS(3197), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3201), - [aux_sym_cmd_identifier_token39] = ACTIONS(3201), - [aux_sym_cmd_identifier_token40] = ACTIONS(3201), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3203), - [aux_sym__val_number_decimal_token2] = ACTIONS(3205), - [aux_sym__val_number_decimal_token3] = ACTIONS(3207), - [aux_sym__val_number_decimal_token4] = ACTIONS(3209), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3211), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_null] = ACTIONS(3248), + [aux_sym_cmd_identifier_token38] = ACTIONS(3250), + [aux_sym_cmd_identifier_token39] = ACTIONS(3250), + [aux_sym_cmd_identifier_token40] = ACTIONS(3250), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3252), + [aux_sym__val_number_decimal_token2] = ACTIONS(3254), + [aux_sym__val_number_decimal_token3] = ACTIONS(3256), + [aux_sym__val_number_decimal_token4] = ACTIONS(3258), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [802] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3261), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3138), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(2943), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1856), - [sym__unquoted_with_expr] = STATE(2124), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(2262), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2120), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1417), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1919), + [sym__unquoted_with_expr] = STATE(2102), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(802), - [aux_sym_shebang_repeat1] = STATE(815), - [anon_sym_true] = ACTIONS(3197), - [anon_sym_false] = ACTIONS(3197), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3201), - [aux_sym_cmd_identifier_token39] = ACTIONS(3201), - [aux_sym_cmd_identifier_token40] = ACTIONS(3201), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3203), - [aux_sym__val_number_decimal_token2] = ACTIONS(3205), - [aux_sym__val_number_decimal_token3] = ACTIONS(3207), - [aux_sym__val_number_decimal_token4] = ACTIONS(3209), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3211), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_null] = ACTIONS(3248), + [aux_sym_cmd_identifier_token38] = ACTIONS(3250), + [aux_sym_cmd_identifier_token39] = ACTIONS(3250), + [aux_sym_cmd_identifier_token40] = ACTIONS(3250), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3252), + [aux_sym__val_number_decimal_token2] = ACTIONS(3254), + [aux_sym__val_number_decimal_token3] = ACTIONS(3256), + [aux_sym__val_number_decimal_token4] = ACTIONS(3258), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [803] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3262), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3138), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(2943), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1863), - [sym__unquoted_with_expr] = STATE(2129), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(2278), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2120), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1417), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1920), + [sym__unquoted_with_expr] = STATE(2105), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(803), - [aux_sym_shebang_repeat1] = STATE(816), - [anon_sym_true] = ACTIONS(3197), - [anon_sym_false] = ACTIONS(3197), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3201), - [aux_sym_cmd_identifier_token39] = ACTIONS(3201), - [aux_sym_cmd_identifier_token40] = ACTIONS(3201), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3203), - [aux_sym__val_number_decimal_token2] = ACTIONS(3205), - [aux_sym__val_number_decimal_token3] = ACTIONS(3207), - [aux_sym__val_number_decimal_token4] = ACTIONS(3209), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3211), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_null] = ACTIONS(3248), + [aux_sym_cmd_identifier_token38] = ACTIONS(3250), + [aux_sym_cmd_identifier_token39] = ACTIONS(3250), + [aux_sym_cmd_identifier_token40] = ACTIONS(3250), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3252), + [aux_sym__val_number_decimal_token2] = ACTIONS(3254), + [aux_sym__val_number_decimal_token3] = ACTIONS(3256), + [aux_sym__val_number_decimal_token4] = ACTIONS(3258), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [804] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3263), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3138), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(2943), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1864), - [sym__unquoted_with_expr] = STATE(2163), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(2301), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2120), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1417), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1921), + [sym__unquoted_with_expr] = STATE(2107), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(804), - [aux_sym_shebang_repeat1] = STATE(817), - [anon_sym_true] = ACTIONS(3197), - [anon_sym_false] = ACTIONS(3197), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3201), - [aux_sym_cmd_identifier_token39] = ACTIONS(3201), - [aux_sym_cmd_identifier_token40] = ACTIONS(3201), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3203), - [aux_sym__val_number_decimal_token2] = ACTIONS(3205), - [aux_sym__val_number_decimal_token3] = ACTIONS(3207), - [aux_sym__val_number_decimal_token4] = ACTIONS(3209), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3211), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_null] = ACTIONS(3248), + [aux_sym_cmd_identifier_token38] = ACTIONS(3250), + [aux_sym_cmd_identifier_token39] = ACTIONS(3250), + [aux_sym_cmd_identifier_token40] = ACTIONS(3250), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3252), + [aux_sym__val_number_decimal_token2] = ACTIONS(3254), + [aux_sym__val_number_decimal_token3] = ACTIONS(3256), + [aux_sym__val_number_decimal_token4] = ACTIONS(3258), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [805] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3264), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3138), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(2943), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1918), - [sym__unquoted_with_expr] = STATE(2169), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(2315), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2120), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1417), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1923), + [sym__unquoted_with_expr] = STATE(2109), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(805), - [aux_sym_shebang_repeat1] = STATE(818), - [anon_sym_true] = ACTIONS(3197), - [anon_sym_false] = ACTIONS(3197), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3201), - [aux_sym_cmd_identifier_token39] = ACTIONS(3201), - [aux_sym_cmd_identifier_token40] = ACTIONS(3201), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3203), - [aux_sym__val_number_decimal_token2] = ACTIONS(3205), - [aux_sym__val_number_decimal_token3] = ACTIONS(3207), - [aux_sym__val_number_decimal_token4] = ACTIONS(3209), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3211), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_null] = ACTIONS(3248), + [aux_sym_cmd_identifier_token38] = ACTIONS(3250), + [aux_sym_cmd_identifier_token39] = ACTIONS(3250), + [aux_sym_cmd_identifier_token40] = ACTIONS(3250), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3252), + [aux_sym__val_number_decimal_token2] = ACTIONS(3254), + [aux_sym__val_number_decimal_token3] = ACTIONS(3256), + [aux_sym__val_number_decimal_token4] = ACTIONS(3258), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [806] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3265), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3138), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(2943), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1959), - [sym__unquoted_with_expr] = STATE(2188), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(2333), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2120), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1417), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1924), + [sym__unquoted_with_expr] = STATE(2111), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(806), - [aux_sym_shebang_repeat1] = STATE(819), - [anon_sym_true] = ACTIONS(3197), - [anon_sym_false] = ACTIONS(3197), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3201), - [aux_sym_cmd_identifier_token39] = ACTIONS(3201), - [aux_sym_cmd_identifier_token40] = ACTIONS(3201), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3203), - [aux_sym__val_number_decimal_token2] = ACTIONS(3205), - [aux_sym__val_number_decimal_token3] = ACTIONS(3207), - [aux_sym__val_number_decimal_token4] = ACTIONS(3209), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3211), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_null] = ACTIONS(3248), + [aux_sym_cmd_identifier_token38] = ACTIONS(3250), + [aux_sym_cmd_identifier_token39] = ACTIONS(3250), + [aux_sym_cmd_identifier_token40] = ACTIONS(3250), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3252), + [aux_sym__val_number_decimal_token2] = ACTIONS(3254), + [aux_sym__val_number_decimal_token3] = ACTIONS(3256), + [aux_sym__val_number_decimal_token4] = ACTIONS(3258), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [807] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3268), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3138), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(2943), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1860), - [sym__unquoted_with_expr] = STATE(2185), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(2354), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2120), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1417), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1927), + [sym__unquoted_with_expr] = STATE(2113), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(807), - [aux_sym_shebang_repeat1] = STATE(820), - [anon_sym_true] = ACTIONS(3197), - [anon_sym_false] = ACTIONS(3197), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3201), - [aux_sym_cmd_identifier_token39] = ACTIONS(3201), - [aux_sym_cmd_identifier_token40] = ACTIONS(3201), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3203), - [aux_sym__val_number_decimal_token2] = ACTIONS(3205), - [aux_sym__val_number_decimal_token3] = ACTIONS(3207), - [aux_sym__val_number_decimal_token4] = ACTIONS(3209), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3211), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_null] = ACTIONS(3248), + [aux_sym_cmd_identifier_token38] = ACTIONS(3250), + [aux_sym_cmd_identifier_token39] = ACTIONS(3250), + [aux_sym_cmd_identifier_token40] = ACTIONS(3250), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3252), + [aux_sym__val_number_decimal_token2] = ACTIONS(3254), + [aux_sym__val_number_decimal_token3] = ACTIONS(3256), + [aux_sym__val_number_decimal_token4] = ACTIONS(3258), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [808] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(2113), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3138), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(2943), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1900), - [sym__unquoted_with_expr] = STATE(2119), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(2380), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2120), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1417), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1928), + [sym__unquoted_with_expr] = STATE(2115), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(808), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3197), - [anon_sym_false] = ACTIONS(3197), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3201), - [aux_sym_cmd_identifier_token39] = ACTIONS(3201), - [aux_sym_cmd_identifier_token40] = ACTIONS(3201), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3203), - [aux_sym__val_number_decimal_token2] = ACTIONS(3205), - [aux_sym__val_number_decimal_token3] = ACTIONS(3207), - [aux_sym__val_number_decimal_token4] = ACTIONS(3209), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3211), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_null] = ACTIONS(3248), + [aux_sym_cmd_identifier_token38] = ACTIONS(3250), + [aux_sym_cmd_identifier_token39] = ACTIONS(3250), + [aux_sym_cmd_identifier_token40] = ACTIONS(3250), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3252), + [aux_sym__val_number_decimal_token2] = ACTIONS(3254), + [aux_sym__val_number_decimal_token3] = ACTIONS(3256), + [aux_sym__val_number_decimal_token4] = ACTIONS(3258), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [809] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3281), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3138), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(2943), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1907), - [sym__unquoted_with_expr] = STATE(2132), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(2391), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2120), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1417), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1931), + [sym__unquoted_with_expr] = STATE(2117), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(809), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3197), - [anon_sym_false] = ACTIONS(3197), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3201), - [aux_sym_cmd_identifier_token39] = ACTIONS(3201), - [aux_sym_cmd_identifier_token40] = ACTIONS(3201), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3203), - [aux_sym__val_number_decimal_token2] = ACTIONS(3205), - [aux_sym__val_number_decimal_token3] = ACTIONS(3207), - [aux_sym__val_number_decimal_token4] = ACTIONS(3209), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3211), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_null] = ACTIONS(3248), + [aux_sym_cmd_identifier_token38] = ACTIONS(3250), + [aux_sym_cmd_identifier_token39] = ACTIONS(3250), + [aux_sym_cmd_identifier_token40] = ACTIONS(3250), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3252), + [aux_sym__val_number_decimal_token2] = ACTIONS(3254), + [aux_sym__val_number_decimal_token3] = ACTIONS(3256), + [aux_sym__val_number_decimal_token4] = ACTIONS(3258), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [810] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3283), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3138), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(2943), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1923), - [sym__unquoted_with_expr] = STATE(2152), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(2254), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2120), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1417), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1933), + [sym__unquoted_with_expr] = STATE(2121), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(810), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3197), - [anon_sym_false] = ACTIONS(3197), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3201), - [aux_sym_cmd_identifier_token39] = ACTIONS(3201), - [aux_sym_cmd_identifier_token40] = ACTIONS(3201), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3203), - [aux_sym__val_number_decimal_token2] = ACTIONS(3205), - [aux_sym__val_number_decimal_token3] = ACTIONS(3207), - [aux_sym__val_number_decimal_token4] = ACTIONS(3209), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3211), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_null] = ACTIONS(3248), + [aux_sym_cmd_identifier_token38] = ACTIONS(3250), + [aux_sym_cmd_identifier_token39] = ACTIONS(3250), + [aux_sym_cmd_identifier_token40] = ACTIONS(3250), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3252), + [aux_sym__val_number_decimal_token2] = ACTIONS(3254), + [aux_sym__val_number_decimal_token3] = ACTIONS(3256), + [aux_sym__val_number_decimal_token4] = ACTIONS(3258), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [811] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3286), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3138), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(2943), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1924), - [sym__unquoted_with_expr] = STATE(2157), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(2122), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2120), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1417), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1935), + [sym__unquoted_with_expr] = STATE(2123), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(811), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3197), - [anon_sym_false] = ACTIONS(3197), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3201), - [aux_sym_cmd_identifier_token39] = ACTIONS(3201), - [aux_sym_cmd_identifier_token40] = ACTIONS(3201), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3203), - [aux_sym__val_number_decimal_token2] = ACTIONS(3205), - [aux_sym__val_number_decimal_token3] = ACTIONS(3207), - [aux_sym__val_number_decimal_token4] = ACTIONS(3209), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3211), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(786), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_null] = ACTIONS(3248), + [aux_sym_cmd_identifier_token38] = ACTIONS(3250), + [aux_sym_cmd_identifier_token39] = ACTIONS(3250), + [aux_sym_cmd_identifier_token40] = ACTIONS(3250), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3252), + [aux_sym__val_number_decimal_token2] = ACTIONS(3254), + [aux_sym__val_number_decimal_token3] = ACTIONS(3256), + [aux_sym__val_number_decimal_token4] = ACTIONS(3258), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [812] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3288), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3138), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(2943), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1926), - [sym__unquoted_with_expr] = STATE(2168), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(2266), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2120), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1417), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1941), + [sym__unquoted_with_expr] = STATE(2124), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(812), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3197), - [anon_sym_false] = ACTIONS(3197), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3201), - [aux_sym_cmd_identifier_token39] = ACTIONS(3201), - [aux_sym_cmd_identifier_token40] = ACTIONS(3201), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3203), - [aux_sym__val_number_decimal_token2] = ACTIONS(3205), - [aux_sym__val_number_decimal_token3] = ACTIONS(3207), - [aux_sym__val_number_decimal_token4] = ACTIONS(3209), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3211), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(787), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_null] = ACTIONS(3248), + [aux_sym_cmd_identifier_token38] = ACTIONS(3250), + [aux_sym_cmd_identifier_token39] = ACTIONS(3250), + [aux_sym_cmd_identifier_token40] = ACTIONS(3250), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3252), + [aux_sym__val_number_decimal_token2] = ACTIONS(3254), + [aux_sym__val_number_decimal_token3] = ACTIONS(3256), + [aux_sym__val_number_decimal_token4] = ACTIONS(3258), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [813] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3290), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3138), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(2943), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1927), - [sym__unquoted_with_expr] = STATE(2175), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(2135), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2120), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1417), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1981), + [sym__unquoted_with_expr] = STATE(2140), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(813), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3197), - [anon_sym_false] = ACTIONS(3197), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3201), - [aux_sym_cmd_identifier_token39] = ACTIONS(3201), - [aux_sym_cmd_identifier_token40] = ACTIONS(3201), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3203), - [aux_sym__val_number_decimal_token2] = ACTIONS(3205), - [aux_sym__val_number_decimal_token3] = ACTIONS(3207), - [aux_sym__val_number_decimal_token4] = ACTIONS(3209), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3211), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(799), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_null] = ACTIONS(3248), + [aux_sym_cmd_identifier_token38] = ACTIONS(3250), + [aux_sym_cmd_identifier_token39] = ACTIONS(3250), + [aux_sym_cmd_identifier_token40] = ACTIONS(3250), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3252), + [aux_sym__val_number_decimal_token2] = ACTIONS(3254), + [aux_sym__val_number_decimal_token3] = ACTIONS(3256), + [aux_sym__val_number_decimal_token4] = ACTIONS(3258), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [814] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3292), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3138), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(2943), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1811), - [sym__unquoted_with_expr] = STATE(2074), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(2245), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2120), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1417), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1997), + [sym__unquoted_with_expr] = STATE(2145), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(814), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3197), - [anon_sym_false] = ACTIONS(3197), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3201), - [aux_sym_cmd_identifier_token39] = ACTIONS(3201), - [aux_sym_cmd_identifier_token40] = ACTIONS(3201), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3203), - [aux_sym__val_number_decimal_token2] = ACTIONS(3205), - [aux_sym__val_number_decimal_token3] = ACTIONS(3207), - [aux_sym__val_number_decimal_token4] = ACTIONS(3209), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3211), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(940), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_null] = ACTIONS(3248), + [aux_sym_cmd_identifier_token38] = ACTIONS(3250), + [aux_sym_cmd_identifier_token39] = ACTIONS(3250), + [aux_sym_cmd_identifier_token40] = ACTIONS(3250), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3252), + [aux_sym__val_number_decimal_token2] = ACTIONS(3254), + [aux_sym__val_number_decimal_token3] = ACTIONS(3256), + [aux_sym__val_number_decimal_token4] = ACTIONS(3258), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [815] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3294), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3138), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(2943), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1820), - [sym__unquoted_with_expr] = STATE(2065), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(2367), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2120), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1417), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1977), + [sym__unquoted_with_expr] = STATE(2148), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(815), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3197), - [anon_sym_false] = ACTIONS(3197), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3201), - [aux_sym_cmd_identifier_token39] = ACTIONS(3201), - [aux_sym_cmd_identifier_token40] = ACTIONS(3201), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3203), - [aux_sym__val_number_decimal_token2] = ACTIONS(3205), - [aux_sym__val_number_decimal_token3] = ACTIONS(3207), - [aux_sym__val_number_decimal_token4] = ACTIONS(3209), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3211), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(800), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_null] = ACTIONS(3248), + [aux_sym_cmd_identifier_token38] = ACTIONS(3250), + [aux_sym_cmd_identifier_token39] = ACTIONS(3250), + [aux_sym_cmd_identifier_token40] = ACTIONS(3250), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3252), + [aux_sym__val_number_decimal_token2] = ACTIONS(3254), + [aux_sym__val_number_decimal_token3] = ACTIONS(3256), + [aux_sym__val_number_decimal_token4] = ACTIONS(3258), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [816] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3296), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3138), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(2943), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1823), - [sym__unquoted_with_expr] = STATE(2096), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(2381), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2120), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1417), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1911), + [sym__unquoted_with_expr] = STATE(2149), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(816), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3197), - [anon_sym_false] = ACTIONS(3197), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3201), - [aux_sym_cmd_identifier_token39] = ACTIONS(3201), - [aux_sym_cmd_identifier_token40] = ACTIONS(3201), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3203), - [aux_sym__val_number_decimal_token2] = ACTIONS(3205), - [aux_sym__val_number_decimal_token3] = ACTIONS(3207), - [aux_sym__val_number_decimal_token4] = ACTIONS(3209), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3211), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(801), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_null] = ACTIONS(3248), + [aux_sym_cmd_identifier_token38] = ACTIONS(3250), + [aux_sym_cmd_identifier_token39] = ACTIONS(3250), + [aux_sym_cmd_identifier_token40] = ACTIONS(3250), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3252), + [aux_sym__val_number_decimal_token2] = ACTIONS(3254), + [aux_sym__val_number_decimal_token3] = ACTIONS(3256), + [aux_sym__val_number_decimal_token4] = ACTIONS(3258), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [817] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3299), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3138), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(2943), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1824), - [sym__unquoted_with_expr] = STATE(2112), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(2384), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2120), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1417), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1954), + [sym__unquoted_with_expr] = STATE(2150), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(817), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3197), - [anon_sym_false] = ACTIONS(3197), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3201), - [aux_sym_cmd_identifier_token39] = ACTIONS(3201), - [aux_sym_cmd_identifier_token40] = ACTIONS(3201), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3203), - [aux_sym__val_number_decimal_token2] = ACTIONS(3205), - [aux_sym__val_number_decimal_token3] = ACTIONS(3207), - [aux_sym__val_number_decimal_token4] = ACTIONS(3209), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3211), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(802), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_null] = ACTIONS(3248), + [aux_sym_cmd_identifier_token38] = ACTIONS(3250), + [aux_sym_cmd_identifier_token39] = ACTIONS(3250), + [aux_sym_cmd_identifier_token40] = ACTIONS(3250), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3252), + [aux_sym__val_number_decimal_token2] = ACTIONS(3254), + [aux_sym__val_number_decimal_token3] = ACTIONS(3256), + [aux_sym__val_number_decimal_token4] = ACTIONS(3258), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [818] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3301), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3138), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(2943), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1839), - [sym__unquoted_with_expr] = STATE(2068), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(2390), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2120), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1417), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1960), + [sym__unquoted_with_expr] = STATE(2152), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(818), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3197), - [anon_sym_false] = ACTIONS(3197), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3201), - [aux_sym_cmd_identifier_token39] = ACTIONS(3201), - [aux_sym_cmd_identifier_token40] = ACTIONS(3201), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3203), - [aux_sym__val_number_decimal_token2] = ACTIONS(3205), - [aux_sym__val_number_decimal_token3] = ACTIONS(3207), - [aux_sym__val_number_decimal_token4] = ACTIONS(3209), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3211), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(803), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_null] = ACTIONS(3248), + [aux_sym_cmd_identifier_token38] = ACTIONS(3250), + [aux_sym_cmd_identifier_token39] = ACTIONS(3250), + [aux_sym_cmd_identifier_token40] = ACTIONS(3250), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3252), + [aux_sym__val_number_decimal_token2] = ACTIONS(3254), + [aux_sym__val_number_decimal_token3] = ACTIONS(3256), + [aux_sym__val_number_decimal_token4] = ACTIONS(3258), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [819] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3166), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3138), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(2943), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1868), - [sym__unquoted_with_expr] = STATE(2111), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(2392), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2120), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1417), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1970), + [sym__unquoted_with_expr] = STATE(2153), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(819), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3197), - [anon_sym_false] = ACTIONS(3197), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3201), - [aux_sym_cmd_identifier_token39] = ACTIONS(3201), - [aux_sym_cmd_identifier_token40] = ACTIONS(3201), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3203), - [aux_sym__val_number_decimal_token2] = ACTIONS(3205), - [aux_sym__val_number_decimal_token3] = ACTIONS(3207), - [aux_sym__val_number_decimal_token4] = ACTIONS(3209), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3211), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(804), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_null] = ACTIONS(3248), + [aux_sym_cmd_identifier_token38] = ACTIONS(3250), + [aux_sym_cmd_identifier_token39] = ACTIONS(3250), + [aux_sym_cmd_identifier_token40] = ACTIONS(3250), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3252), + [aux_sym__val_number_decimal_token2] = ACTIONS(3254), + [aux_sym__val_number_decimal_token3] = ACTIONS(3256), + [aux_sym__val_number_decimal_token4] = ACTIONS(3258), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [820] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3168), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3138), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(2943), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1872), - [sym__unquoted_with_expr] = STATE(2121), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(2403), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2120), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1417), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1976), + [sym__unquoted_with_expr] = STATE(2155), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(820), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3197), - [anon_sym_false] = ACTIONS(3197), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3201), - [aux_sym_cmd_identifier_token39] = ACTIONS(3201), - [aux_sym_cmd_identifier_token40] = ACTIONS(3201), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3203), - [aux_sym__val_number_decimal_token2] = ACTIONS(3205), - [aux_sym__val_number_decimal_token3] = ACTIONS(3207), - [aux_sym__val_number_decimal_token4] = ACTIONS(3209), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3211), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(805), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_null] = ACTIONS(3248), + [aux_sym_cmd_identifier_token38] = ACTIONS(3250), + [aux_sym_cmd_identifier_token39] = ACTIONS(3250), + [aux_sym_cmd_identifier_token40] = ACTIONS(3250), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3252), + [aux_sym__val_number_decimal_token2] = ACTIONS(3254), + [aux_sym__val_number_decimal_token3] = ACTIONS(3256), + [aux_sym__val_number_decimal_token4] = ACTIONS(3258), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [821] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3138), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(2943), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1877), - [sym__unquoted_with_expr] = STATE(2128), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(2274), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2120), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1417), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1945), + [sym__unquoted_with_expr] = STATE(2127), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(821), - [aux_sym_shebang_repeat1] = STATE(834), - [anon_sym_true] = ACTIONS(3197), - [anon_sym_false] = ACTIONS(3197), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3201), - [aux_sym_cmd_identifier_token39] = ACTIONS(3201), - [aux_sym_cmd_identifier_token40] = ACTIONS(3201), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3203), - [aux_sym__val_number_decimal_token2] = ACTIONS(3205), - [aux_sym__val_number_decimal_token3] = ACTIONS(3207), - [aux_sym__val_number_decimal_token4] = ACTIONS(3209), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3211), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(788), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_null] = ACTIONS(3248), + [aux_sym_cmd_identifier_token38] = ACTIONS(3250), + [aux_sym_cmd_identifier_token39] = ACTIONS(3250), + [aux_sym_cmd_identifier_token40] = ACTIONS(3250), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3252), + [aux_sym__val_number_decimal_token2] = ACTIONS(3254), + [aux_sym__val_number_decimal_token3] = ACTIONS(3256), + [aux_sym__val_number_decimal_token4] = ACTIONS(3258), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [822] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3169), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3138), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(2943), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1888), - [sym__unquoted_with_expr] = STATE(2135), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(2282), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2120), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1417), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1949), + [sym__unquoted_with_expr] = STATE(2128), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(822), - [aux_sym_shebang_repeat1] = STATE(835), - [anon_sym_true] = ACTIONS(3197), - [anon_sym_false] = ACTIONS(3197), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3201), - [aux_sym_cmd_identifier_token39] = ACTIONS(3201), - [aux_sym_cmd_identifier_token40] = ACTIONS(3201), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3203), - [aux_sym__val_number_decimal_token2] = ACTIONS(3205), - [aux_sym__val_number_decimal_token3] = ACTIONS(3207), - [aux_sym__val_number_decimal_token4] = ACTIONS(3209), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3211), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(789), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_null] = ACTIONS(3248), + [aux_sym_cmd_identifier_token38] = ACTIONS(3250), + [aux_sym_cmd_identifier_token39] = ACTIONS(3250), + [aux_sym_cmd_identifier_token40] = ACTIONS(3250), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3252), + [aux_sym__val_number_decimal_token2] = ACTIONS(3254), + [aux_sym__val_number_decimal_token3] = ACTIONS(3256), + [aux_sym__val_number_decimal_token4] = ACTIONS(3258), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [823] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3171), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3138), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(2943), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1891), - [sym__unquoted_with_expr] = STATE(2138), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(2288), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2120), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1417), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1950), + [sym__unquoted_with_expr] = STATE(2129), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(823), - [aux_sym_shebang_repeat1] = STATE(836), - [anon_sym_true] = ACTIONS(3197), - [anon_sym_false] = ACTIONS(3197), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3201), - [aux_sym_cmd_identifier_token39] = ACTIONS(3201), - [aux_sym_cmd_identifier_token40] = ACTIONS(3201), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3203), - [aux_sym__val_number_decimal_token2] = ACTIONS(3205), - [aux_sym__val_number_decimal_token3] = ACTIONS(3207), - [aux_sym__val_number_decimal_token4] = ACTIONS(3209), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3211), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(790), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_null] = ACTIONS(3248), + [aux_sym_cmd_identifier_token38] = ACTIONS(3250), + [aux_sym_cmd_identifier_token39] = ACTIONS(3250), + [aux_sym_cmd_identifier_token40] = ACTIONS(3250), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3252), + [aux_sym__val_number_decimal_token2] = ACTIONS(3254), + [aux_sym__val_number_decimal_token3] = ACTIONS(3256), + [aux_sym__val_number_decimal_token4] = ACTIONS(3258), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [824] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3172), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3138), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(2943), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1894), - [sym__unquoted_with_expr] = STATE(2142), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(2251), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2120), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1417), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1908), + [sym__unquoted_with_expr] = STATE(2156), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(824), - [aux_sym_shebang_repeat1] = STATE(837), - [anon_sym_true] = ACTIONS(3197), - [anon_sym_false] = ACTIONS(3197), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3201), - [aux_sym_cmd_identifier_token39] = ACTIONS(3201), - [aux_sym_cmd_identifier_token40] = ACTIONS(3201), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3203), - [aux_sym__val_number_decimal_token2] = ACTIONS(3205), - [aux_sym__val_number_decimal_token3] = ACTIONS(3207), - [aux_sym__val_number_decimal_token4] = ACTIONS(3209), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3211), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(806), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_null] = ACTIONS(3248), + [aux_sym_cmd_identifier_token38] = ACTIONS(3250), + [aux_sym_cmd_identifier_token39] = ACTIONS(3250), + [aux_sym_cmd_identifier_token40] = ACTIONS(3250), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3252), + [aux_sym__val_number_decimal_token2] = ACTIONS(3254), + [aux_sym__val_number_decimal_token3] = ACTIONS(3256), + [aux_sym__val_number_decimal_token4] = ACTIONS(3258), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [825] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3173), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3138), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(2943), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1896), - [sym__unquoted_with_expr] = STATE(2151), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(2294), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2120), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1417), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1953), + [sym__unquoted_with_expr] = STATE(2130), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(825), - [aux_sym_shebang_repeat1] = STATE(838), - [anon_sym_true] = ACTIONS(3197), - [anon_sym_false] = ACTIONS(3197), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3201), - [aux_sym_cmd_identifier_token39] = ACTIONS(3201), - [aux_sym_cmd_identifier_token40] = ACTIONS(3201), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3203), - [aux_sym__val_number_decimal_token2] = ACTIONS(3205), - [aux_sym__val_number_decimal_token3] = ACTIONS(3207), - [aux_sym__val_number_decimal_token4] = ACTIONS(3209), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3211), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(791), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_null] = ACTIONS(3248), + [aux_sym_cmd_identifier_token38] = ACTIONS(3250), + [aux_sym_cmd_identifier_token39] = ACTIONS(3250), + [aux_sym_cmd_identifier_token40] = ACTIONS(3250), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3252), + [aux_sym__val_number_decimal_token2] = ACTIONS(3254), + [aux_sym__val_number_decimal_token3] = ACTIONS(3256), + [aux_sym__val_number_decimal_token4] = ACTIONS(3258), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [826] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3174), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3138), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(2943), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1899), - [sym__unquoted_with_expr] = STATE(2156), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(2298), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2120), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1417), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1974), + [sym__unquoted_with_expr] = STATE(2131), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(826), - [aux_sym_shebang_repeat1] = STATE(839), - [anon_sym_true] = ACTIONS(3197), - [anon_sym_false] = ACTIONS(3197), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3201), - [aux_sym_cmd_identifier_token39] = ACTIONS(3201), - [aux_sym_cmd_identifier_token40] = ACTIONS(3201), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3203), - [aux_sym__val_number_decimal_token2] = ACTIONS(3205), - [aux_sym__val_number_decimal_token3] = ACTIONS(3207), - [aux_sym__val_number_decimal_token4] = ACTIONS(3209), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3211), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(792), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_null] = ACTIONS(3248), + [aux_sym_cmd_identifier_token38] = ACTIONS(3250), + [aux_sym_cmd_identifier_token39] = ACTIONS(3250), + [aux_sym_cmd_identifier_token40] = ACTIONS(3250), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3252), + [aux_sym__val_number_decimal_token2] = ACTIONS(3254), + [aux_sym__val_number_decimal_token3] = ACTIONS(3256), + [aux_sym__val_number_decimal_token4] = ACTIONS(3258), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [827] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3175), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3138), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(2943), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1911), - [sym__unquoted_with_expr] = STATE(2166), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(2303), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2120), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1417), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1979), + [sym__unquoted_with_expr] = STATE(2133), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(827), - [aux_sym_shebang_repeat1] = STATE(840), - [anon_sym_true] = ACTIONS(3197), - [anon_sym_false] = ACTIONS(3197), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3201), - [aux_sym_cmd_identifier_token39] = ACTIONS(3201), - [aux_sym_cmd_identifier_token40] = ACTIONS(3201), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3203), - [aux_sym__val_number_decimal_token2] = ACTIONS(3205), - [aux_sym__val_number_decimal_token3] = ACTIONS(3207), - [aux_sym__val_number_decimal_token4] = ACTIONS(3209), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3211), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(793), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_null] = ACTIONS(3248), + [aux_sym_cmd_identifier_token38] = ACTIONS(3250), + [aux_sym_cmd_identifier_token39] = ACTIONS(3250), + [aux_sym_cmd_identifier_token40] = ACTIONS(3250), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3252), + [aux_sym__val_number_decimal_token2] = ACTIONS(3254), + [aux_sym__val_number_decimal_token3] = ACTIONS(3256), + [aux_sym__val_number_decimal_token4] = ACTIONS(3258), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [828] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3177), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3138), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(2943), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1912), - [sym__unquoted_with_expr] = STATE(2170), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(2253), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2120), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1417), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1936), + [sym__unquoted_with_expr] = STATE(2157), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(828), - [aux_sym_shebang_repeat1] = STATE(841), - [anon_sym_true] = ACTIONS(3197), - [anon_sym_false] = ACTIONS(3197), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3201), - [aux_sym_cmd_identifier_token39] = ACTIONS(3201), - [aux_sym_cmd_identifier_token40] = ACTIONS(3201), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3203), - [aux_sym__val_number_decimal_token2] = ACTIONS(3205), - [aux_sym__val_number_decimal_token3] = ACTIONS(3207), - [aux_sym__val_number_decimal_token4] = ACTIONS(3209), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3211), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(807), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_null] = ACTIONS(3248), + [aux_sym_cmd_identifier_token38] = ACTIONS(3250), + [aux_sym_cmd_identifier_token39] = ACTIONS(3250), + [aux_sym_cmd_identifier_token40] = ACTIONS(3250), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3252), + [aux_sym__val_number_decimal_token2] = ACTIONS(3254), + [aux_sym__val_number_decimal_token3] = ACTIONS(3256), + [aux_sym__val_number_decimal_token4] = ACTIONS(3258), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [829] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3178), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3138), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(2943), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1913), - [sym__unquoted_with_expr] = STATE(2171), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(2258), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2120), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1417), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1955), + [sym__unquoted_with_expr] = STATE(2159), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(829), - [aux_sym_shebang_repeat1] = STATE(842), - [anon_sym_true] = ACTIONS(3197), - [anon_sym_false] = ACTIONS(3197), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3201), - [aux_sym_cmd_identifier_token39] = ACTIONS(3201), - [aux_sym_cmd_identifier_token40] = ACTIONS(3201), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3203), - [aux_sym__val_number_decimal_token2] = ACTIONS(3205), - [aux_sym__val_number_decimal_token3] = ACTIONS(3207), - [aux_sym__val_number_decimal_token4] = ACTIONS(3209), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3211), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(808), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_null] = ACTIONS(3248), + [aux_sym_cmd_identifier_token38] = ACTIONS(3250), + [aux_sym_cmd_identifier_token39] = ACTIONS(3250), + [aux_sym_cmd_identifier_token40] = ACTIONS(3250), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3252), + [aux_sym__val_number_decimal_token2] = ACTIONS(3254), + [aux_sym__val_number_decimal_token3] = ACTIONS(3256), + [aux_sym__val_number_decimal_token4] = ACTIONS(3258), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [830] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3180), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3138), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(2943), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1914), - [sym__unquoted_with_expr] = STATE(2173), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(2304), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2120), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1417), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1958), + [sym__unquoted_with_expr] = STATE(2190), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(830), - [aux_sym_shebang_repeat1] = STATE(843), - [anon_sym_true] = ACTIONS(3197), - [anon_sym_false] = ACTIONS(3197), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3201), - [aux_sym_cmd_identifier_token39] = ACTIONS(3201), - [aux_sym_cmd_identifier_token40] = ACTIONS(3201), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3203), - [aux_sym__val_number_decimal_token2] = ACTIONS(3205), - [aux_sym__val_number_decimal_token3] = ACTIONS(3207), - [aux_sym__val_number_decimal_token4] = ACTIONS(3209), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3211), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(809), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_null] = ACTIONS(3248), + [aux_sym_cmd_identifier_token38] = ACTIONS(3250), + [aux_sym_cmd_identifier_token39] = ACTIONS(3250), + [aux_sym_cmd_identifier_token40] = ACTIONS(3250), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3252), + [aux_sym__val_number_decimal_token2] = ACTIONS(3254), + [aux_sym__val_number_decimal_token3] = ACTIONS(3256), + [aux_sym__val_number_decimal_token4] = ACTIONS(3258), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [831] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3181), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3138), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(2943), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1919), - [sym__unquoted_with_expr] = STATE(2176), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(2327), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2120), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1417), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1961), + [sym__unquoted_with_expr] = STATE(2201), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(831), - [aux_sym_shebang_repeat1] = STATE(844), - [anon_sym_true] = ACTIONS(3197), - [anon_sym_false] = ACTIONS(3197), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3201), - [aux_sym_cmd_identifier_token39] = ACTIONS(3201), - [aux_sym_cmd_identifier_token40] = ACTIONS(3201), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3203), - [aux_sym__val_number_decimal_token2] = ACTIONS(3205), - [aux_sym__val_number_decimal_token3] = ACTIONS(3207), - [aux_sym__val_number_decimal_token4] = ACTIONS(3209), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3211), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(810), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_null] = ACTIONS(3248), + [aux_sym_cmd_identifier_token38] = ACTIONS(3250), + [aux_sym_cmd_identifier_token39] = ACTIONS(3250), + [aux_sym_cmd_identifier_token40] = ACTIONS(3250), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3252), + [aux_sym__val_number_decimal_token2] = ACTIONS(3254), + [aux_sym__val_number_decimal_token3] = ACTIONS(3256), + [aux_sym__val_number_decimal_token4] = ACTIONS(3258), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [832] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3182), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3138), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(2943), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1920), - [sym__unquoted_with_expr] = STATE(2178), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(2310), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2120), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1417), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1984), + [sym__unquoted_with_expr] = STATE(2134), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(832), - [aux_sym_shebang_repeat1] = STATE(845), - [anon_sym_true] = ACTIONS(3197), - [anon_sym_false] = ACTIONS(3197), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3201), - [aux_sym_cmd_identifier_token39] = ACTIONS(3201), - [aux_sym_cmd_identifier_token40] = ACTIONS(3201), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3203), - [aux_sym__val_number_decimal_token2] = ACTIONS(3205), - [aux_sym__val_number_decimal_token3] = ACTIONS(3207), - [aux_sym__val_number_decimal_token4] = ACTIONS(3209), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3211), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(794), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_null] = ACTIONS(3248), + [aux_sym_cmd_identifier_token38] = ACTIONS(3250), + [aux_sym_cmd_identifier_token39] = ACTIONS(3250), + [aux_sym_cmd_identifier_token40] = ACTIONS(3250), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3252), + [aux_sym__val_number_decimal_token2] = ACTIONS(3254), + [aux_sym__val_number_decimal_token3] = ACTIONS(3256), + [aux_sym__val_number_decimal_token4] = ACTIONS(3258), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [833] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3184), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3138), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(2943), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1922), - [sym__unquoted_with_expr] = STATE(2180), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(2317), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2120), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1417), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1985), + [sym__unquoted_with_expr] = STATE(2138), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(833), - [aux_sym_shebang_repeat1] = STATE(846), - [anon_sym_true] = ACTIONS(3197), - [anon_sym_false] = ACTIONS(3197), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3201), - [aux_sym_cmd_identifier_token39] = ACTIONS(3201), - [aux_sym_cmd_identifier_token40] = ACTIONS(3201), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3203), - [aux_sym__val_number_decimal_token2] = ACTIONS(3205), - [aux_sym__val_number_decimal_token3] = ACTIONS(3207), - [aux_sym__val_number_decimal_token4] = ACTIONS(3209), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3211), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(795), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_null] = ACTIONS(3248), + [aux_sym_cmd_identifier_token38] = ACTIONS(3250), + [aux_sym_cmd_identifier_token39] = ACTIONS(3250), + [aux_sym_cmd_identifier_token40] = ACTIONS(3250), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3252), + [aux_sym__val_number_decimal_token2] = ACTIONS(3254), + [aux_sym__val_number_decimal_token3] = ACTIONS(3256), + [aux_sym__val_number_decimal_token4] = ACTIONS(3258), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [834] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(2033), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3138), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(2943), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1962), - [sym__unquoted_with_expr] = STATE(2034), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(2335), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2120), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1417), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1986), + [sym__unquoted_with_expr] = STATE(2141), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(834), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3197), - [anon_sym_false] = ACTIONS(3197), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3201), - [aux_sym_cmd_identifier_token39] = ACTIONS(3201), - [aux_sym_cmd_identifier_token40] = ACTIONS(3201), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3203), - [aux_sym__val_number_decimal_token2] = ACTIONS(3205), - [aux_sym__val_number_decimal_token3] = ACTIONS(3207), - [aux_sym__val_number_decimal_token4] = ACTIONS(3209), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3211), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(796), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_null] = ACTIONS(3248), + [aux_sym_cmd_identifier_token38] = ACTIONS(3250), + [aux_sym_cmd_identifier_token39] = ACTIONS(3250), + [aux_sym_cmd_identifier_token40] = ACTIONS(3250), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3252), + [aux_sym__val_number_decimal_token2] = ACTIONS(3254), + [aux_sym__val_number_decimal_token3] = ACTIONS(3256), + [aux_sym__val_number_decimal_token4] = ACTIONS(3258), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [835] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3199), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3138), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(2943), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1963), - [sym__unquoted_with_expr] = STATE(2037), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(2346), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2120), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1417), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1988), + [sym__unquoted_with_expr] = STATE(2144), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(835), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3197), - [anon_sym_false] = ACTIONS(3197), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3201), - [aux_sym_cmd_identifier_token39] = ACTIONS(3201), - [aux_sym_cmd_identifier_token40] = ACTIONS(3201), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3203), - [aux_sym__val_number_decimal_token2] = ACTIONS(3205), - [aux_sym__val_number_decimal_token3] = ACTIONS(3207), - [aux_sym__val_number_decimal_token4] = ACTIONS(3209), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3211), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(797), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_null] = ACTIONS(3248), + [aux_sym_cmd_identifier_token38] = ACTIONS(3250), + [aux_sym_cmd_identifier_token39] = ACTIONS(3250), + [aux_sym_cmd_identifier_token40] = ACTIONS(3250), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3252), + [aux_sym__val_number_decimal_token2] = ACTIONS(3254), + [aux_sym__val_number_decimal_token3] = ACTIONS(3256), + [aux_sym__val_number_decimal_token4] = ACTIONS(3258), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [836] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3201), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3138), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(2943), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1884), - [sym__unquoted_with_expr] = STATE(2040), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(2362), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2120), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1417), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1989), + [sym__unquoted_with_expr] = STATE(2146), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(836), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3197), - [anon_sym_false] = ACTIONS(3197), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3201), - [aux_sym_cmd_identifier_token39] = ACTIONS(3201), - [aux_sym_cmd_identifier_token40] = ACTIONS(3201), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3203), - [aux_sym__val_number_decimal_token2] = ACTIONS(3205), - [aux_sym__val_number_decimal_token3] = ACTIONS(3207), - [aux_sym__val_number_decimal_token4] = ACTIONS(3209), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3211), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(798), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_null] = ACTIONS(3248), + [aux_sym_cmd_identifier_token38] = ACTIONS(3250), + [aux_sym_cmd_identifier_token39] = ACTIONS(3250), + [aux_sym_cmd_identifier_token40] = ACTIONS(3250), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3252), + [aux_sym__val_number_decimal_token2] = ACTIONS(3254), + [aux_sym__val_number_decimal_token3] = ACTIONS(3256), + [aux_sym__val_number_decimal_token4] = ACTIONS(3258), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [837] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3203), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3138), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(2943), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1885), - [sym__unquoted_with_expr] = STATE(2046), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(2135), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3660), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1981), + [sym__unquoted_with_expr] = STATE(2140), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(837), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3197), - [anon_sym_false] = ACTIONS(3197), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3201), - [aux_sym_cmd_identifier_token39] = ACTIONS(3201), - [aux_sym_cmd_identifier_token40] = ACTIONS(3201), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3203), - [aux_sym__val_number_decimal_token2] = ACTIONS(3205), - [aux_sym__val_number_decimal_token3] = ACTIONS(3207), - [aux_sym__val_number_decimal_token4] = ACTIONS(3209), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3211), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(849), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [aux_sym_cmd_identifier_token38] = ACTIONS(3222), + [aux_sym_cmd_identifier_token39] = ACTIONS(3222), + [aux_sym_cmd_identifier_token40] = ACTIONS(3222), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3234), + [aux_sym__val_number_decimal_token2] = ACTIONS(3236), + [aux_sym__val_number_decimal_token3] = ACTIONS(3238), + [aux_sym__val_number_decimal_token4] = ACTIONS(3240), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [838] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3205), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3138), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(2943), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1795), - [sym__unquoted_with_expr] = STATE(2048), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3691), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3660), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1997), + [sym__unquoted_with_expr] = STATE(2145), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(838), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3197), - [anon_sym_false] = ACTIONS(3197), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3201), - [aux_sym_cmd_identifier_token39] = ACTIONS(3201), - [aux_sym_cmd_identifier_token40] = ACTIONS(3201), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3203), - [aux_sym__val_number_decimal_token2] = ACTIONS(3205), - [aux_sym__val_number_decimal_token3] = ACTIONS(3207), - [aux_sym__val_number_decimal_token4] = ACTIONS(3209), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3211), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(850), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [aux_sym_cmd_identifier_token38] = ACTIONS(3222), + [aux_sym_cmd_identifier_token39] = ACTIONS(3222), + [aux_sym_cmd_identifier_token40] = ACTIONS(3222), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3234), + [aux_sym__val_number_decimal_token2] = ACTIONS(3236), + [aux_sym__val_number_decimal_token3] = ACTIONS(3238), + [aux_sym__val_number_decimal_token4] = ACTIONS(3240), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [839] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3207), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3138), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(2943), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1796), - [sym__unquoted_with_expr] = STATE(2050), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3669), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3660), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1977), + [sym__unquoted_with_expr] = STATE(2148), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(839), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3197), - [anon_sym_false] = ACTIONS(3197), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3201), - [aux_sym_cmd_identifier_token39] = ACTIONS(3201), - [aux_sym_cmd_identifier_token40] = ACTIONS(3201), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3203), - [aux_sym__val_number_decimal_token2] = ACTIONS(3205), - [aux_sym__val_number_decimal_token3] = ACTIONS(3207), - [aux_sym__val_number_decimal_token4] = ACTIONS(3209), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3211), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(851), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [aux_sym_cmd_identifier_token38] = ACTIONS(3222), + [aux_sym_cmd_identifier_token39] = ACTIONS(3222), + [aux_sym_cmd_identifier_token40] = ACTIONS(3222), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3234), + [aux_sym__val_number_decimal_token2] = ACTIONS(3236), + [aux_sym__val_number_decimal_token3] = ACTIONS(3238), + [aux_sym__val_number_decimal_token4] = ACTIONS(3240), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [840] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3209), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3138), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(2943), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1797), - [sym__unquoted_with_expr] = STATE(2053), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3676), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3660), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1954), + [sym__unquoted_with_expr] = STATE(2150), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(840), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3197), - [anon_sym_false] = ACTIONS(3197), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3201), - [aux_sym_cmd_identifier_token39] = ACTIONS(3201), - [aux_sym_cmd_identifier_token40] = ACTIONS(3201), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3203), - [aux_sym__val_number_decimal_token2] = ACTIONS(3205), - [aux_sym__val_number_decimal_token3] = ACTIONS(3207), - [aux_sym__val_number_decimal_token4] = ACTIONS(3209), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3211), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(853), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [aux_sym_cmd_identifier_token38] = ACTIONS(3222), + [aux_sym_cmd_identifier_token39] = ACTIONS(3222), + [aux_sym_cmd_identifier_token40] = ACTIONS(3222), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3234), + [aux_sym__val_number_decimal_token2] = ACTIONS(3236), + [aux_sym__val_number_decimal_token3] = ACTIONS(3238), + [aux_sym__val_number_decimal_token4] = ACTIONS(3240), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [841] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3211), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3138), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(2943), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1798), - [sym__unquoted_with_expr] = STATE(2056), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3677), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3660), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1960), + [sym__unquoted_with_expr] = STATE(2152), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(841), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3197), - [anon_sym_false] = ACTIONS(3197), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3201), - [aux_sym_cmd_identifier_token39] = ACTIONS(3201), - [aux_sym_cmd_identifier_token40] = ACTIONS(3201), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3203), - [aux_sym__val_number_decimal_token2] = ACTIONS(3205), - [aux_sym__val_number_decimal_token3] = ACTIONS(3207), - [aux_sym__val_number_decimal_token4] = ACTIONS(3209), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3211), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(854), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [aux_sym_cmd_identifier_token38] = ACTIONS(3222), + [aux_sym_cmd_identifier_token39] = ACTIONS(3222), + [aux_sym_cmd_identifier_token40] = ACTIONS(3222), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3234), + [aux_sym__val_number_decimal_token2] = ACTIONS(3236), + [aux_sym__val_number_decimal_token3] = ACTIONS(3238), + [aux_sym__val_number_decimal_token4] = ACTIONS(3240), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [842] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3213), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3138), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(2943), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1799), - [sym__unquoted_with_expr] = STATE(2059), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3679), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3660), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1970), + [sym__unquoted_with_expr] = STATE(2153), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(842), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3197), - [anon_sym_false] = ACTIONS(3197), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3201), - [aux_sym_cmd_identifier_token39] = ACTIONS(3201), - [aux_sym_cmd_identifier_token40] = ACTIONS(3201), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3203), - [aux_sym__val_number_decimal_token2] = ACTIONS(3205), - [aux_sym__val_number_decimal_token3] = ACTIONS(3207), - [aux_sym__val_number_decimal_token4] = ACTIONS(3209), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3211), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(855), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [aux_sym_cmd_identifier_token38] = ACTIONS(3222), + [aux_sym_cmd_identifier_token39] = ACTIONS(3222), + [aux_sym_cmd_identifier_token40] = ACTIONS(3222), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3234), + [aux_sym__val_number_decimal_token2] = ACTIONS(3236), + [aux_sym__val_number_decimal_token3] = ACTIONS(3238), + [aux_sym__val_number_decimal_token4] = ACTIONS(3240), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [843] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3215), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3138), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(2943), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1801), - [sym__unquoted_with_expr] = STATE(2063), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3680), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3660), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1976), + [sym__unquoted_with_expr] = STATE(2155), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(843), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3197), - [anon_sym_false] = ACTIONS(3197), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3201), - [aux_sym_cmd_identifier_token39] = ACTIONS(3201), - [aux_sym_cmd_identifier_token40] = ACTIONS(3201), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3203), - [aux_sym__val_number_decimal_token2] = ACTIONS(3205), - [aux_sym__val_number_decimal_token3] = ACTIONS(3207), - [aux_sym__val_number_decimal_token4] = ACTIONS(3209), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3211), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(856), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [aux_sym_cmd_identifier_token38] = ACTIONS(3222), + [aux_sym_cmd_identifier_token39] = ACTIONS(3222), + [aux_sym_cmd_identifier_token40] = ACTIONS(3222), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3234), + [aux_sym__val_number_decimal_token2] = ACTIONS(3236), + [aux_sym__val_number_decimal_token3] = ACTIONS(3238), + [aux_sym__val_number_decimal_token4] = ACTIONS(3240), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [844] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3217), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3138), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(2943), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1802), - [sym__unquoted_with_expr] = STATE(2066), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3682), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3660), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1908), + [sym__unquoted_with_expr] = STATE(2156), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(844), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3197), - [anon_sym_false] = ACTIONS(3197), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3201), - [aux_sym_cmd_identifier_token39] = ACTIONS(3201), - [aux_sym_cmd_identifier_token40] = ACTIONS(3201), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3203), - [aux_sym__val_number_decimal_token2] = ACTIONS(3205), - [aux_sym__val_number_decimal_token3] = ACTIONS(3207), - [aux_sym__val_number_decimal_token4] = ACTIONS(3209), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3211), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(857), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [aux_sym_cmd_identifier_token38] = ACTIONS(3222), + [aux_sym_cmd_identifier_token39] = ACTIONS(3222), + [aux_sym_cmd_identifier_token40] = ACTIONS(3222), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3234), + [aux_sym__val_number_decimal_token2] = ACTIONS(3236), + [aux_sym__val_number_decimal_token3] = ACTIONS(3238), + [aux_sym__val_number_decimal_token4] = ACTIONS(3240), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [845] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3219), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3138), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(2943), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1803), - [sym__unquoted_with_expr] = STATE(2069), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3684), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3660), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1936), + [sym__unquoted_with_expr] = STATE(2157), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(845), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3197), - [anon_sym_false] = ACTIONS(3197), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3201), - [aux_sym_cmd_identifier_token39] = ACTIONS(3201), - [aux_sym_cmd_identifier_token40] = ACTIONS(3201), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3203), - [aux_sym__val_number_decimal_token2] = ACTIONS(3205), - [aux_sym__val_number_decimal_token3] = ACTIONS(3207), - [aux_sym__val_number_decimal_token4] = ACTIONS(3209), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3211), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(858), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [aux_sym_cmd_identifier_token38] = ACTIONS(3222), + [aux_sym_cmd_identifier_token39] = ACTIONS(3222), + [aux_sym_cmd_identifier_token40] = ACTIONS(3222), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3234), + [aux_sym__val_number_decimal_token2] = ACTIONS(3236), + [aux_sym__val_number_decimal_token3] = ACTIONS(3238), + [aux_sym__val_number_decimal_token4] = ACTIONS(3240), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [846] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3221), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3138), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(2943), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1807), - [sym__unquoted_with_expr] = STATE(2072), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3686), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3660), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1955), + [sym__unquoted_with_expr] = STATE(2159), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(846), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3197), - [anon_sym_false] = ACTIONS(3197), - [anon_sym_null] = ACTIONS(3199), - [aux_sym_cmd_identifier_token38] = ACTIONS(3201), - [aux_sym_cmd_identifier_token39] = ACTIONS(3201), - [aux_sym_cmd_identifier_token40] = ACTIONS(3201), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3203), - [aux_sym__val_number_decimal_token2] = ACTIONS(3205), - [aux_sym__val_number_decimal_token3] = ACTIONS(3207), - [aux_sym__val_number_decimal_token4] = ACTIONS(3209), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3211), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(859), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [aux_sym_cmd_identifier_token38] = ACTIONS(3222), + [aux_sym_cmd_identifier_token39] = ACTIONS(3222), + [aux_sym_cmd_identifier_token40] = ACTIONS(3222), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3234), + [aux_sym__val_number_decimal_token2] = ACTIONS(3236), + [aux_sym__val_number_decimal_token3] = ACTIONS(3238), + [aux_sym__val_number_decimal_token4] = ACTIONS(3240), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [847] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3602), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3361), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1823), - [sym__unquoted_with_expr] = STATE(2096), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3687), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3660), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1958), + [sym__unquoted_with_expr] = STATE(2190), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(847), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3153), - [anon_sym_false] = ACTIONS(3153), - [anon_sym_null] = ACTIONS(3155), - [aux_sym_cmd_identifier_token38] = ACTIONS(3157), - [aux_sym_cmd_identifier_token39] = ACTIONS(3157), - [aux_sym_cmd_identifier_token40] = ACTIONS(3157), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3169), - [aux_sym__val_number_decimal_token2] = ACTIONS(3171), - [aux_sym__val_number_decimal_token3] = ACTIONS(3173), - [aux_sym__val_number_decimal_token4] = ACTIONS(3175), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(860), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [aux_sym_cmd_identifier_token38] = ACTIONS(3222), + [aux_sym_cmd_identifier_token39] = ACTIONS(3222), + [aux_sym_cmd_identifier_token40] = ACTIONS(3222), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3234), + [aux_sym__val_number_decimal_token2] = ACTIONS(3236), + [aux_sym__val_number_decimal_token3] = ACTIONS(3238), + [aux_sym__val_number_decimal_token4] = ACTIONS(3240), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [848] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(2200), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2144), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1839), - [sym__unquoted_with_expr] = STATE(2068), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3689), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3660), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1961), + [sym__unquoted_with_expr] = STATE(2201), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(848), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3183), - [aux_sym_cmd_identifier_token38] = ACTIONS(3185), - [aux_sym_cmd_identifier_token39] = ACTIONS(3185), - [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3187), - [aux_sym__val_number_decimal_token2] = ACTIONS(3189), - [aux_sym__val_number_decimal_token3] = ACTIONS(3191), - [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(861), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [aux_sym_cmd_identifier_token38] = ACTIONS(3222), + [aux_sym_cmd_identifier_token39] = ACTIONS(3222), + [aux_sym_cmd_identifier_token40] = ACTIONS(3222), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3234), + [aux_sym__val_number_decimal_token2] = ACTIONS(3236), + [aux_sym__val_number_decimal_token3] = ACTIONS(3238), + [aux_sym__val_number_decimal_token4] = ACTIONS(3240), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [849] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(2323), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2144), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1868), - [sym__unquoted_with_expr] = STATE(2111), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(2089), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3660), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1915), + [sym__unquoted_with_expr] = STATE(2090), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(849), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3183), - [aux_sym_cmd_identifier_token38] = ACTIONS(3185), - [aux_sym_cmd_identifier_token39] = ACTIONS(3185), - [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3187), - [aux_sym__val_number_decimal_token2] = ACTIONS(3189), - [aux_sym__val_number_decimal_token3] = ACTIONS(3191), - [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [aux_sym_cmd_identifier_token38] = ACTIONS(3222), + [aux_sym_cmd_identifier_token39] = ACTIONS(3222), + [aux_sym_cmd_identifier_token40] = ACTIONS(3222), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3234), + [aux_sym__val_number_decimal_token2] = ACTIONS(3236), + [aux_sym__val_number_decimal_token3] = ACTIONS(3238), + [aux_sym__val_number_decimal_token4] = ACTIONS(3240), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [850] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(2378), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2144), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1872), - [sym__unquoted_with_expr] = STATE(2121), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3693), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3660), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1916), + [sym__unquoted_with_expr] = STATE(2093), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(850), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3183), - [aux_sym_cmd_identifier_token38] = ACTIONS(3185), - [aux_sym_cmd_identifier_token39] = ACTIONS(3185), - [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3187), - [aux_sym__val_number_decimal_token2] = ACTIONS(3189), - [aux_sym__val_number_decimal_token3] = ACTIONS(3191), - [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [aux_sym_cmd_identifier_token38] = ACTIONS(3222), + [aux_sym_cmd_identifier_token39] = ACTIONS(3222), + [aux_sym_cmd_identifier_token40] = ACTIONS(3222), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3234), + [aux_sym__val_number_decimal_token2] = ACTIONS(3236), + [aux_sym__val_number_decimal_token3] = ACTIONS(3238), + [aux_sym__val_number_decimal_token4] = ACTIONS(3240), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [851] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(2305), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2144), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1884), - [sym__unquoted_with_expr] = STATE(2040), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3698), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3660), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1917), + [sym__unquoted_with_expr] = STATE(2097), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(851), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3183), - [aux_sym_cmd_identifier_token38] = ACTIONS(3185), - [aux_sym_cmd_identifier_token39] = ACTIONS(3185), - [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3187), - [aux_sym__val_number_decimal_token2] = ACTIONS(3189), - [aux_sym__val_number_decimal_token3] = ACTIONS(3191), - [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [aux_sym_cmd_identifier_token38] = ACTIONS(3222), + [aux_sym_cmd_identifier_token39] = ACTIONS(3222), + [aux_sym_cmd_identifier_token40] = ACTIONS(3222), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3234), + [aux_sym__val_number_decimal_token2] = ACTIONS(3236), + [aux_sym__val_number_decimal_token3] = ACTIONS(3238), + [aux_sym__val_number_decimal_token4] = ACTIONS(3240), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [852] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2144), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1877), - [sym__unquoted_with_expr] = STATE(2128), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3700), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3660), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1918), + [sym__unquoted_with_expr] = STATE(2100), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(852), - [aux_sym_shebang_repeat1] = STATE(788), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3183), - [aux_sym_cmd_identifier_token38] = ACTIONS(3185), - [aux_sym_cmd_identifier_token39] = ACTIONS(3185), - [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3187), - [aux_sym__val_number_decimal_token2] = ACTIONS(3189), - [aux_sym__val_number_decimal_token3] = ACTIONS(3191), - [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [aux_sym_cmd_identifier_token38] = ACTIONS(3222), + [aux_sym_cmd_identifier_token39] = ACTIONS(3222), + [aux_sym_cmd_identifier_token40] = ACTIONS(3222), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3234), + [aux_sym__val_number_decimal_token2] = ACTIONS(3236), + [aux_sym__val_number_decimal_token3] = ACTIONS(3238), + [aux_sym__val_number_decimal_token4] = ACTIONS(3240), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [853] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(2255), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2144), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1885), - [sym__unquoted_with_expr] = STATE(2046), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3702), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3660), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1919), + [sym__unquoted_with_expr] = STATE(2102), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(853), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3183), - [aux_sym_cmd_identifier_token38] = ACTIONS(3185), - [aux_sym_cmd_identifier_token39] = ACTIONS(3185), - [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3187), - [aux_sym__val_number_decimal_token2] = ACTIONS(3189), - [aux_sym__val_number_decimal_token3] = ACTIONS(3191), - [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [aux_sym_cmd_identifier_token38] = ACTIONS(3222), + [aux_sym_cmd_identifier_token39] = ACTIONS(3222), + [aux_sym_cmd_identifier_token40] = ACTIONS(3222), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3234), + [aux_sym__val_number_decimal_token2] = ACTIONS(3236), + [aux_sym__val_number_decimal_token3] = ACTIONS(3238), + [aux_sym__val_number_decimal_token4] = ACTIONS(3240), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [854] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(2329), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2144), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1869), - [sym__unquoted_with_expr] = STATE(2148), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3705), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3660), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1920), + [sym__unquoted_with_expr] = STATE(2105), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(854), - [aux_sym_shebang_repeat1] = STATE(889), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3183), - [aux_sym_cmd_identifier_token38] = ACTIONS(3185), - [aux_sym_cmd_identifier_token39] = ACTIONS(3185), - [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3187), - [aux_sym__val_number_decimal_token2] = ACTIONS(3189), - [aux_sym__val_number_decimal_token3] = ACTIONS(3191), - [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [aux_sym_cmd_identifier_token38] = ACTIONS(3222), + [aux_sym_cmd_identifier_token39] = ACTIONS(3222), + [aux_sym_cmd_identifier_token40] = ACTIONS(3222), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3234), + [aux_sym__val_number_decimal_token2] = ACTIONS(3236), + [aux_sym__val_number_decimal_token3] = ACTIONS(3238), + [aux_sym__val_number_decimal_token4] = ACTIONS(3240), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [855] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(2198), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2144), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1795), - [sym__unquoted_with_expr] = STATE(2048), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3710), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3660), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1921), + [sym__unquoted_with_expr] = STATE(2107), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(855), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3183), - [aux_sym_cmd_identifier_token38] = ACTIONS(3185), - [aux_sym_cmd_identifier_token39] = ACTIONS(3185), - [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3187), - [aux_sym__val_number_decimal_token2] = ACTIONS(3189), - [aux_sym__val_number_decimal_token3] = ACTIONS(3191), - [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [aux_sym_cmd_identifier_token38] = ACTIONS(3222), + [aux_sym_cmd_identifier_token39] = ACTIONS(3222), + [aux_sym_cmd_identifier_token40] = ACTIONS(3222), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3234), + [aux_sym__val_number_decimal_token2] = ACTIONS(3236), + [aux_sym__val_number_decimal_token3] = ACTIONS(3238), + [aux_sym__val_number_decimal_token4] = ACTIONS(3240), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [856] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(2234), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2144), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1796), - [sym__unquoted_with_expr] = STATE(2050), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3712), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3660), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1923), + [sym__unquoted_with_expr] = STATE(2109), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(856), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3183), - [aux_sym_cmd_identifier_token38] = ACTIONS(3185), - [aux_sym_cmd_identifier_token39] = ACTIONS(3185), - [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3187), - [aux_sym__val_number_decimal_token2] = ACTIONS(3189), - [aux_sym__val_number_decimal_token3] = ACTIONS(3191), - [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [aux_sym_cmd_identifier_token38] = ACTIONS(3222), + [aux_sym_cmd_identifier_token39] = ACTIONS(3222), + [aux_sym_cmd_identifier_token40] = ACTIONS(3222), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3234), + [aux_sym__val_number_decimal_token2] = ACTIONS(3236), + [aux_sym__val_number_decimal_token3] = ACTIONS(3238), + [aux_sym__val_number_decimal_token4] = ACTIONS(3240), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [857] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(2271), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2144), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1797), - [sym__unquoted_with_expr] = STATE(2053), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3714), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3660), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1924), + [sym__unquoted_with_expr] = STATE(2111), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(857), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3183), - [aux_sym_cmd_identifier_token38] = ACTIONS(3185), - [aux_sym_cmd_identifier_token39] = ACTIONS(3185), - [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3187), - [aux_sym__val_number_decimal_token2] = ACTIONS(3189), - [aux_sym__val_number_decimal_token3] = ACTIONS(3191), - [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [aux_sym_cmd_identifier_token38] = ACTIONS(3222), + [aux_sym_cmd_identifier_token39] = ACTIONS(3222), + [aux_sym_cmd_identifier_token40] = ACTIONS(3222), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3234), + [aux_sym__val_number_decimal_token2] = ACTIONS(3236), + [aux_sym__val_number_decimal_token3] = ACTIONS(3238), + [aux_sym__val_number_decimal_token4] = ACTIONS(3240), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [858] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(2306), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2144), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1798), - [sym__unquoted_with_expr] = STATE(2056), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3716), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3660), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1927), + [sym__unquoted_with_expr] = STATE(2113), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(858), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3183), - [aux_sym_cmd_identifier_token38] = ACTIONS(3185), - [aux_sym_cmd_identifier_token39] = ACTIONS(3185), - [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3187), - [aux_sym__val_number_decimal_token2] = ACTIONS(3189), - [aux_sym__val_number_decimal_token3] = ACTIONS(3191), - [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [aux_sym_cmd_identifier_token38] = ACTIONS(3222), + [aux_sym_cmd_identifier_token39] = ACTIONS(3222), + [aux_sym_cmd_identifier_token40] = ACTIONS(3222), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3234), + [aux_sym__val_number_decimal_token2] = ACTIONS(3236), + [aux_sym__val_number_decimal_token3] = ACTIONS(3238), + [aux_sym__val_number_decimal_token4] = ACTIONS(3240), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [859] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(2371), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2144), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1799), - [sym__unquoted_with_expr] = STATE(2059), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3729), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3660), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1928), + [sym__unquoted_with_expr] = STATE(2115), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(859), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3183), - [aux_sym_cmd_identifier_token38] = ACTIONS(3185), - [aux_sym_cmd_identifier_token39] = ACTIONS(3185), - [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3187), - [aux_sym__val_number_decimal_token2] = ACTIONS(3189), - [aux_sym__val_number_decimal_token3] = ACTIONS(3191), - [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [aux_sym_cmd_identifier_token38] = ACTIONS(3222), + [aux_sym_cmd_identifier_token39] = ACTIONS(3222), + [aux_sym_cmd_identifier_token40] = ACTIONS(3222), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3234), + [aux_sym__val_number_decimal_token2] = ACTIONS(3236), + [aux_sym__val_number_decimal_token3] = ACTIONS(3238), + [aux_sym__val_number_decimal_token4] = ACTIONS(3240), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [860] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(2342), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2144), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1925), - [sym__unquoted_with_expr] = STATE(2183), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3731), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3660), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1931), + [sym__unquoted_with_expr] = STATE(2117), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(860), - [aux_sym_shebang_repeat1] = STATE(891), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3183), - [aux_sym_cmd_identifier_token38] = ACTIONS(3185), - [aux_sym_cmd_identifier_token39] = ACTIONS(3185), - [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3187), - [aux_sym__val_number_decimal_token2] = ACTIONS(3189), - [aux_sym__val_number_decimal_token3] = ACTIONS(3191), - [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [aux_sym_cmd_identifier_token38] = ACTIONS(3222), + [aux_sym_cmd_identifier_token39] = ACTIONS(3222), + [aux_sym_cmd_identifier_token40] = ACTIONS(3222), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3234), + [aux_sym__val_number_decimal_token2] = ACTIONS(3236), + [aux_sym__val_number_decimal_token3] = ACTIONS(3238), + [aux_sym__val_number_decimal_token4] = ACTIONS(3240), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [861] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3604), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3361), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1824), - [sym__unquoted_with_expr] = STATE(2112), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3733), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3660), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1933), + [sym__unquoted_with_expr] = STATE(2121), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(861), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3153), - [anon_sym_false] = ACTIONS(3153), - [anon_sym_null] = ACTIONS(3155), - [aux_sym_cmd_identifier_token38] = ACTIONS(3157), - [aux_sym_cmd_identifier_token39] = ACTIONS(3157), - [aux_sym_cmd_identifier_token40] = ACTIONS(3157), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3169), - [aux_sym__val_number_decimal_token2] = ACTIONS(3171), - [aux_sym__val_number_decimal_token3] = ACTIONS(3173), - [aux_sym__val_number_decimal_token4] = ACTIONS(3175), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [aux_sym_cmd_identifier_token38] = ACTIONS(3222), + [aux_sym_cmd_identifier_token39] = ACTIONS(3222), + [aux_sym_cmd_identifier_token40] = ACTIONS(3222), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3234), + [aux_sym__val_number_decimal_token2] = ACTIONS(3236), + [aux_sym__val_number_decimal_token3] = ACTIONS(3238), + [aux_sym__val_number_decimal_token4] = ACTIONS(3240), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [862] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(2354), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2144), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1928), - [sym__unquoted_with_expr] = STATE(2195), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(2122), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3660), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1935), + [sym__unquoted_with_expr] = STATE(2123), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(862), - [aux_sym_shebang_repeat1] = STATE(926), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3183), - [aux_sym_cmd_identifier_token38] = ACTIONS(3185), - [aux_sym_cmd_identifier_token39] = ACTIONS(3185), - [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3187), - [aux_sym__val_number_decimal_token2] = ACTIONS(3189), - [aux_sym__val_number_decimal_token3] = ACTIONS(3191), - [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(875), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [aux_sym_cmd_identifier_token38] = ACTIONS(3222), + [aux_sym_cmd_identifier_token39] = ACTIONS(3222), + [aux_sym_cmd_identifier_token40] = ACTIONS(3222), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3234), + [aux_sym__val_number_decimal_token2] = ACTIONS(3236), + [aux_sym__val_number_decimal_token3] = ACTIONS(3238), + [aux_sym__val_number_decimal_token4] = ACTIONS(3240), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [863] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(2236), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2144), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1888), - [sym__unquoted_with_expr] = STATE(2135), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3734), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3660), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1941), + [sym__unquoted_with_expr] = STATE(2124), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(863), - [aux_sym_shebang_repeat1] = STATE(793), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3183), - [aux_sym_cmd_identifier_token38] = ACTIONS(3185), - [aux_sym_cmd_identifier_token39] = ACTIONS(3185), - [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3187), - [aux_sym__val_number_decimal_token2] = ACTIONS(3189), - [aux_sym__val_number_decimal_token3] = ACTIONS(3191), - [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(876), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [aux_sym_cmd_identifier_token38] = ACTIONS(3222), + [aux_sym_cmd_identifier_token39] = ACTIONS(3222), + [aux_sym_cmd_identifier_token40] = ACTIONS(3222), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3234), + [aux_sym__val_number_decimal_token2] = ACTIONS(3236), + [aux_sym__val_number_decimal_token3] = ACTIONS(3238), + [aux_sym__val_number_decimal_token4] = ACTIONS(3240), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [864] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(2203), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2144), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1933), - [sym__unquoted_with_expr] = STATE(2039), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3735), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3660), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1945), + [sym__unquoted_with_expr] = STATE(2127), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(864), - [aux_sym_shebang_repeat1] = STATE(785), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3183), - [aux_sym_cmd_identifier_token38] = ACTIONS(3185), - [aux_sym_cmd_identifier_token39] = ACTIONS(3185), - [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3187), - [aux_sym__val_number_decimal_token2] = ACTIONS(3189), - [aux_sym__val_number_decimal_token3] = ACTIONS(3191), - [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(877), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [aux_sym_cmd_identifier_token38] = ACTIONS(3222), + [aux_sym_cmd_identifier_token39] = ACTIONS(3222), + [aux_sym_cmd_identifier_token40] = ACTIONS(3222), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3234), + [aux_sym__val_number_decimal_token2] = ACTIONS(3236), + [aux_sym__val_number_decimal_token3] = ACTIONS(3238), + [aux_sym__val_number_decimal_token4] = ACTIONS(3240), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [865] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(2365), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2144), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1961), - [sym__unquoted_with_expr] = STATE(2117), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3736), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3660), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1949), + [sym__unquoted_with_expr] = STATE(2128), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(865), - [aux_sym_shebang_repeat1] = STATE(787), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3183), - [aux_sym_cmd_identifier_token38] = ACTIONS(3185), - [aux_sym_cmd_identifier_token39] = ACTIONS(3185), - [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3187), - [aux_sym__val_number_decimal_token2] = ACTIONS(3189), - [aux_sym__val_number_decimal_token3] = ACTIONS(3191), - [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(878), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [aux_sym_cmd_identifier_token38] = ACTIONS(3222), + [aux_sym_cmd_identifier_token39] = ACTIONS(3222), + [aux_sym_cmd_identifier_token40] = ACTIONS(3222), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3234), + [aux_sym__val_number_decimal_token2] = ACTIONS(3236), + [aux_sym__val_number_decimal_token3] = ACTIONS(3238), + [aux_sym__val_number_decimal_token4] = ACTIONS(3240), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [866] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(2370), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2144), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1846), - [sym__unquoted_with_expr] = STATE(2116), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3737), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3660), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1950), + [sym__unquoted_with_expr] = STATE(2129), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(866), - [aux_sym_shebang_repeat1] = STATE(789), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3183), - [aux_sym_cmd_identifier_token38] = ACTIONS(3185), - [aux_sym_cmd_identifier_token39] = ACTIONS(3185), - [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3187), - [aux_sym__val_number_decimal_token2] = ACTIONS(3189), - [aux_sym__val_number_decimal_token3] = ACTIONS(3191), - [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(879), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [aux_sym_cmd_identifier_token38] = ACTIONS(3222), + [aux_sym_cmd_identifier_token39] = ACTIONS(3222), + [aux_sym_cmd_identifier_token40] = ACTIONS(3222), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3234), + [aux_sym__val_number_decimal_token2] = ACTIONS(3236), + [aux_sym__val_number_decimal_token3] = ACTIONS(3238), + [aux_sym__val_number_decimal_token4] = ACTIONS(3240), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [867] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(2229), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2144), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1801), - [sym__unquoted_with_expr] = STATE(2063), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3804), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3660), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1953), + [sym__unquoted_with_expr] = STATE(2130), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(867), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3183), - [aux_sym_cmd_identifier_token38] = ACTIONS(3185), - [aux_sym_cmd_identifier_token39] = ACTIONS(3185), - [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3187), - [aux_sym__val_number_decimal_token2] = ACTIONS(3189), - [aux_sym__val_number_decimal_token3] = ACTIONS(3191), - [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(880), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [aux_sym_cmd_identifier_token38] = ACTIONS(3222), + [aux_sym_cmd_identifier_token39] = ACTIONS(3222), + [aux_sym_cmd_identifier_token40] = ACTIONS(3222), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3234), + [aux_sym__val_number_decimal_token2] = ACTIONS(3236), + [aux_sym__val_number_decimal_token3] = ACTIONS(3238), + [aux_sym__val_number_decimal_token4] = ACTIONS(3240), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [868] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(2206), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2144), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1856), - [sym__unquoted_with_expr] = STATE(2124), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3739), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3660), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1974), + [sym__unquoted_with_expr] = STATE(2131), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(868), - [aux_sym_shebang_repeat1] = STATE(790), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3183), - [aux_sym_cmd_identifier_token38] = ACTIONS(3185), - [aux_sym_cmd_identifier_token39] = ACTIONS(3185), - [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3187), - [aux_sym__val_number_decimal_token2] = ACTIONS(3189), - [aux_sym__val_number_decimal_token3] = ACTIONS(3191), - [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(881), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [aux_sym_cmd_identifier_token38] = ACTIONS(3222), + [aux_sym_cmd_identifier_token39] = ACTIONS(3222), + [aux_sym_cmd_identifier_token40] = ACTIONS(3222), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3234), + [aux_sym__val_number_decimal_token2] = ACTIONS(3236), + [aux_sym__val_number_decimal_token3] = ACTIONS(3238), + [aux_sym__val_number_decimal_token4] = ACTIONS(3240), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [869] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(2252), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2144), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1802), - [sym__unquoted_with_expr] = STATE(2066), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3741), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3660), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1979), + [sym__unquoted_with_expr] = STATE(2133), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(869), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3183), - [aux_sym_cmd_identifier_token38] = ACTIONS(3185), - [aux_sym_cmd_identifier_token39] = ACTIONS(3185), - [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3187), - [aux_sym__val_number_decimal_token2] = ACTIONS(3189), - [aux_sym__val_number_decimal_token3] = ACTIONS(3191), - [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(882), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [aux_sym_cmd_identifier_token38] = ACTIONS(3222), + [aux_sym_cmd_identifier_token39] = ACTIONS(3222), + [aux_sym_cmd_identifier_token40] = ACTIONS(3222), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3234), + [aux_sym__val_number_decimal_token2] = ACTIONS(3236), + [aux_sym__val_number_decimal_token3] = ACTIONS(3238), + [aux_sym__val_number_decimal_token4] = ACTIONS(3240), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [870] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(2113), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2144), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1900), - [sym__unquoted_with_expr] = STATE(2119), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3742), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3660), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1984), + [sym__unquoted_with_expr] = STATE(2134), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(870), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3183), - [aux_sym_cmd_identifier_token38] = ACTIONS(3185), - [aux_sym_cmd_identifier_token39] = ACTIONS(3185), - [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3187), - [aux_sym__val_number_decimal_token2] = ACTIONS(3189), - [aux_sym__val_number_decimal_token3] = ACTIONS(3191), - [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(883), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [aux_sym_cmd_identifier_token38] = ACTIONS(3222), + [aux_sym_cmd_identifier_token39] = ACTIONS(3222), + [aux_sym_cmd_identifier_token40] = ACTIONS(3222), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3234), + [aux_sym__val_number_decimal_token2] = ACTIONS(3236), + [aux_sym__val_number_decimal_token3] = ACTIONS(3238), + [aux_sym__val_number_decimal_token4] = ACTIONS(3240), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [871] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(2247), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2144), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1891), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3743), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3660), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1985), [sym__unquoted_with_expr] = STATE(2138), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(871), - [aux_sym_shebang_repeat1] = STATE(851), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3183), - [aux_sym_cmd_identifier_token38] = ACTIONS(3185), - [aux_sym_cmd_identifier_token39] = ACTIONS(3185), - [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3187), - [aux_sym__val_number_decimal_token2] = ACTIONS(3189), - [aux_sym__val_number_decimal_token3] = ACTIONS(3191), - [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(884), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [aux_sym_cmd_identifier_token38] = ACTIONS(3222), + [aux_sym_cmd_identifier_token39] = ACTIONS(3222), + [aux_sym_cmd_identifier_token40] = ACTIONS(3222), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3234), + [aux_sym__val_number_decimal_token2] = ACTIONS(3236), + [aux_sym__val_number_decimal_token3] = ACTIONS(3238), + [aux_sym__val_number_decimal_token4] = ACTIONS(3240), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [872] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(2256), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2144), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1894), - [sym__unquoted_with_expr] = STATE(2142), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3745), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3660), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1986), + [sym__unquoted_with_expr] = STATE(2141), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(872), - [aux_sym_shebang_repeat1] = STATE(853), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3183), - [aux_sym_cmd_identifier_token38] = ACTIONS(3185), - [aux_sym_cmd_identifier_token39] = ACTIONS(3185), - [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3187), - [aux_sym__val_number_decimal_token2] = ACTIONS(3189), - [aux_sym__val_number_decimal_token3] = ACTIONS(3191), - [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(885), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [aux_sym_cmd_identifier_token38] = ACTIONS(3222), + [aux_sym_cmd_identifier_token39] = ACTIONS(3222), + [aux_sym_cmd_identifier_token40] = ACTIONS(3222), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3234), + [aux_sym__val_number_decimal_token2] = ACTIONS(3236), + [aux_sym__val_number_decimal_token3] = ACTIONS(3238), + [aux_sym__val_number_decimal_token4] = ACTIONS(3240), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [873] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(2262), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2144), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1896), - [sym__unquoted_with_expr] = STATE(2151), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3746), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3660), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1988), + [sym__unquoted_with_expr] = STATE(2144), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(873), - [aux_sym_shebang_repeat1] = STATE(855), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3183), - [aux_sym_cmd_identifier_token38] = ACTIONS(3185), - [aux_sym_cmd_identifier_token39] = ACTIONS(3185), - [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3187), - [aux_sym__val_number_decimal_token2] = ACTIONS(3189), - [aux_sym__val_number_decimal_token3] = ACTIONS(3191), - [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(886), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [aux_sym_cmd_identifier_token38] = ACTIONS(3222), + [aux_sym_cmd_identifier_token39] = ACTIONS(3222), + [aux_sym_cmd_identifier_token40] = ACTIONS(3222), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3234), + [aux_sym__val_number_decimal_token2] = ACTIONS(3236), + [aux_sym__val_number_decimal_token3] = ACTIONS(3238), + [aux_sym__val_number_decimal_token4] = ACTIONS(3240), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [874] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(2269), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2144), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1803), - [sym__unquoted_with_expr] = STATE(2069), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3747), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3660), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1989), + [sym__unquoted_with_expr] = STATE(2146), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(874), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3183), - [aux_sym_cmd_identifier_token38] = ACTIONS(3185), - [aux_sym_cmd_identifier_token39] = ACTIONS(3185), - [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3187), - [aux_sym__val_number_decimal_token2] = ACTIONS(3189), - [aux_sym__val_number_decimal_token3] = ACTIONS(3191), - [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(887), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [aux_sym_cmd_identifier_token38] = ACTIONS(3222), + [aux_sym_cmd_identifier_token39] = ACTIONS(3222), + [aux_sym_cmd_identifier_token40] = ACTIONS(3222), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3234), + [aux_sym__val_number_decimal_token2] = ACTIONS(3236), + [aux_sym__val_number_decimal_token3] = ACTIONS(3238), + [aux_sym__val_number_decimal_token4] = ACTIONS(3240), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [875] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(2276), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2144), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1899), - [sym__unquoted_with_expr] = STATE(2156), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(2185), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3660), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1942), + [sym__unquoted_with_expr] = STATE(2186), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(875), - [aux_sym_shebang_repeat1] = STATE(856), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3183), - [aux_sym_cmd_identifier_token38] = ACTIONS(3185), - [aux_sym_cmd_identifier_token39] = ACTIONS(3185), - [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3187), - [aux_sym__val_number_decimal_token2] = ACTIONS(3189), - [aux_sym__val_number_decimal_token3] = ACTIONS(3191), - [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [aux_sym_cmd_identifier_token38] = ACTIONS(3222), + [aux_sym_cmd_identifier_token39] = ACTIONS(3222), + [aux_sym_cmd_identifier_token40] = ACTIONS(3222), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3234), + [aux_sym__val_number_decimal_token2] = ACTIONS(3236), + [aux_sym__val_number_decimal_token3] = ACTIONS(3238), + [aux_sym__val_number_decimal_token4] = ACTIONS(3240), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [876] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(2220), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2144), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1863), - [sym__unquoted_with_expr] = STATE(2129), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3764), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3660), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1968), + [sym__unquoted_with_expr] = STATE(2188), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(876), - [aux_sym_shebang_repeat1] = STATE(791), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3183), - [aux_sym_cmd_identifier_token38] = ACTIONS(3185), - [aux_sym_cmd_identifier_token39] = ACTIONS(3185), - [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3187), - [aux_sym__val_number_decimal_token2] = ACTIONS(3189), - [aux_sym__val_number_decimal_token3] = ACTIONS(3191), - [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [aux_sym_cmd_identifier_token38] = ACTIONS(3222), + [aux_sym_cmd_identifier_token39] = ACTIONS(3222), + [aux_sym_cmd_identifier_token40] = ACTIONS(3222), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3234), + [aux_sym__val_number_decimal_token2] = ACTIONS(3236), + [aux_sym__val_number_decimal_token3] = ACTIONS(3238), + [aux_sym__val_number_decimal_token4] = ACTIONS(3240), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [877] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(2225), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2144), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1864), - [sym__unquoted_with_expr] = STATE(2163), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3766), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3660), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1905), + [sym__unquoted_with_expr] = STATE(2191), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(877), - [aux_sym_shebang_repeat1] = STATE(794), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3183), - [aux_sym_cmd_identifier_token38] = ACTIONS(3185), - [aux_sym_cmd_identifier_token39] = ACTIONS(3185), - [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3187), - [aux_sym__val_number_decimal_token2] = ACTIONS(3189), - [aux_sym__val_number_decimal_token3] = ACTIONS(3191), - [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [aux_sym_cmd_identifier_token38] = ACTIONS(3222), + [aux_sym_cmd_identifier_token39] = ACTIONS(3222), + [aux_sym_cmd_identifier_token40] = ACTIONS(3222), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3234), + [aux_sym__val_number_decimal_token2] = ACTIONS(3236), + [aux_sym__val_number_decimal_token3] = ACTIONS(3238), + [aux_sym__val_number_decimal_token4] = ACTIONS(3240), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [878] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(2301), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2144), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1911), - [sym__unquoted_with_expr] = STATE(2166), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3768), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3660), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1959), + [sym__unquoted_with_expr] = STATE(2194), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(878), - [aux_sym_shebang_repeat1] = STATE(857), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3183), - [aux_sym_cmd_identifier_token38] = ACTIONS(3185), - [aux_sym_cmd_identifier_token39] = ACTIONS(3185), - [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3187), - [aux_sym__val_number_decimal_token2] = ACTIONS(3189), - [aux_sym__val_number_decimal_token3] = ACTIONS(3191), - [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [aux_sym_cmd_identifier_token38] = ACTIONS(3222), + [aux_sym_cmd_identifier_token39] = ACTIONS(3222), + [aux_sym_cmd_identifier_token40] = ACTIONS(3222), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3234), + [aux_sym__val_number_decimal_token2] = ACTIONS(3236), + [aux_sym__val_number_decimal_token3] = ACTIONS(3238), + [aux_sym__val_number_decimal_token4] = ACTIONS(3240), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [879] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(2298), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2144), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1807), - [sym__unquoted_with_expr] = STATE(2072), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3770), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3660), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1969), + [sym__unquoted_with_expr] = STATE(2197), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(879), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3183), - [aux_sym_cmd_identifier_token38] = ACTIONS(3185), - [aux_sym_cmd_identifier_token39] = ACTIONS(3185), - [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3187), - [aux_sym__val_number_decimal_token2] = ACTIONS(3189), - [aux_sym__val_number_decimal_token3] = ACTIONS(3191), - [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [aux_sym_cmd_identifier_token38] = ACTIONS(3222), + [aux_sym_cmd_identifier_token39] = ACTIONS(3222), + [aux_sym_cmd_identifier_token40] = ACTIONS(3222), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3234), + [aux_sym__val_number_decimal_token2] = ACTIONS(3236), + [aux_sym__val_number_decimal_token3] = ACTIONS(3238), + [aux_sym__val_number_decimal_token4] = ACTIONS(3240), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [880] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(2307), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2144), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1912), - [sym__unquoted_with_expr] = STATE(2170), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3772), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3660), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1972), + [sym__unquoted_with_expr] = STATE(2199), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(880), - [aux_sym_shebang_repeat1] = STATE(858), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3183), - [aux_sym_cmd_identifier_token38] = ACTIONS(3185), - [aux_sym_cmd_identifier_token39] = ACTIONS(3185), - [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3187), - [aux_sym__val_number_decimal_token2] = ACTIONS(3189), - [aux_sym__val_number_decimal_token3] = ACTIONS(3191), - [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [aux_sym_cmd_identifier_token38] = ACTIONS(3222), + [aux_sym_cmd_identifier_token39] = ACTIONS(3222), + [aux_sym_cmd_identifier_token40] = ACTIONS(3222), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3234), + [aux_sym__val_number_decimal_token2] = ACTIONS(3236), + [aux_sym__val_number_decimal_token3] = ACTIONS(3238), + [aux_sym__val_number_decimal_token4] = ACTIONS(3240), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [881] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(2317), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2144), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1913), - [sym__unquoted_with_expr] = STATE(2171), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3775), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3660), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1899), + [sym__unquoted_with_expr] = STATE(2202), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(881), - [aux_sym_shebang_repeat1] = STATE(859), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3183), - [aux_sym_cmd_identifier_token38] = ACTIONS(3185), - [aux_sym_cmd_identifier_token39] = ACTIONS(3185), - [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3187), - [aux_sym__val_number_decimal_token2] = ACTIONS(3189), - [aux_sym__val_number_decimal_token3] = ACTIONS(3191), - [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [aux_sym_cmd_identifier_token38] = ACTIONS(3222), + [aux_sym_cmd_identifier_token39] = ACTIONS(3222), + [aux_sym_cmd_identifier_token40] = ACTIONS(3222), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3234), + [aux_sym__val_number_decimal_token2] = ACTIONS(3236), + [aux_sym__val_number_decimal_token3] = ACTIONS(3238), + [aux_sym__val_number_decimal_token4] = ACTIONS(3240), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [882] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(2321), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2144), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1914), - [sym__unquoted_with_expr] = STATE(2173), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3777), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3660), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1951), + [sym__unquoted_with_expr] = STATE(2204), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(882), - [aux_sym_shebang_repeat1] = STATE(867), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3183), - [aux_sym_cmd_identifier_token38] = ACTIONS(3185), - [aux_sym_cmd_identifier_token39] = ACTIONS(3185), - [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3187), - [aux_sym__val_number_decimal_token2] = ACTIONS(3189), - [aux_sym__val_number_decimal_token3] = ACTIONS(3191), - [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [aux_sym_cmd_identifier_token38] = ACTIONS(3222), + [aux_sym_cmd_identifier_token39] = ACTIONS(3222), + [aux_sym_cmd_identifier_token40] = ACTIONS(3222), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3234), + [aux_sym__val_number_decimal_token2] = ACTIONS(3236), + [aux_sym__val_number_decimal_token3] = ACTIONS(3238), + [aux_sym__val_number_decimal_token4] = ACTIONS(3240), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [883] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(2327), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2144), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1919), - [sym__unquoted_with_expr] = STATE(2176), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3779), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3660), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1952), + [sym__unquoted_with_expr] = STATE(2206), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(883), - [aux_sym_shebang_repeat1] = STATE(869), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3183), - [aux_sym_cmd_identifier_token38] = ACTIONS(3185), - [aux_sym_cmd_identifier_token39] = ACTIONS(3185), - [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3187), - [aux_sym__val_number_decimal_token2] = ACTIONS(3189), - [aux_sym__val_number_decimal_token3] = ACTIONS(3191), - [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [aux_sym_cmd_identifier_token38] = ACTIONS(3222), + [aux_sym_cmd_identifier_token39] = ACTIONS(3222), + [aux_sym_cmd_identifier_token40] = ACTIONS(3222), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3234), + [aux_sym__val_number_decimal_token2] = ACTIONS(3236), + [aux_sym__val_number_decimal_token3] = ACTIONS(3238), + [aux_sym__val_number_decimal_token4] = ACTIONS(3240), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [884] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(2331), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2144), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1920), - [sym__unquoted_with_expr] = STATE(2178), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3783), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3660), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1991), + [sym__unquoted_with_expr] = STATE(2208), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(884), - [aux_sym_shebang_repeat1] = STATE(874), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3183), - [aux_sym_cmd_identifier_token38] = ACTIONS(3185), - [aux_sym_cmd_identifier_token39] = ACTIONS(3185), - [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3187), - [aux_sym__val_number_decimal_token2] = ACTIONS(3189), - [aux_sym__val_number_decimal_token3] = ACTIONS(3191), - [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [aux_sym_cmd_identifier_token38] = ACTIONS(3222), + [aux_sym_cmd_identifier_token39] = ACTIONS(3222), + [aux_sym_cmd_identifier_token40] = ACTIONS(3222), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3234), + [aux_sym__val_number_decimal_token2] = ACTIONS(3236), + [aux_sym__val_number_decimal_token3] = ACTIONS(3238), + [aux_sym__val_number_decimal_token4] = ACTIONS(3240), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [885] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(2334), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2144), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1922), - [sym__unquoted_with_expr] = STATE(2180), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3785), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3660), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1912), + [sym__unquoted_with_expr] = STATE(2210), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(885), - [aux_sym_shebang_repeat1] = STATE(879), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3183), - [aux_sym_cmd_identifier_token38] = ACTIONS(3185), - [aux_sym_cmd_identifier_token39] = ACTIONS(3185), - [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3187), - [aux_sym__val_number_decimal_token2] = ACTIONS(3189), - [aux_sym__val_number_decimal_token3] = ACTIONS(3191), - [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [aux_sym_cmd_identifier_token38] = ACTIONS(3222), + [aux_sym_cmd_identifier_token39] = ACTIONS(3222), + [aux_sym_cmd_identifier_token40] = ACTIONS(3222), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3234), + [aux_sym__val_number_decimal_token2] = ACTIONS(3236), + [aux_sym__val_number_decimal_token3] = ACTIONS(3238), + [aux_sym__val_number_decimal_token4] = ACTIONS(3240), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [886] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(2308), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2144), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1918), - [sym__unquoted_with_expr] = STATE(2169), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3787), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3660), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1947), + [sym__unquoted_with_expr] = STATE(2212), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(886), - [aux_sym_shebang_repeat1] = STATE(848), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3183), - [aux_sym_cmd_identifier_token38] = ACTIONS(3185), - [aux_sym_cmd_identifier_token39] = ACTIONS(3185), - [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3187), - [aux_sym__val_number_decimal_token2] = ACTIONS(3189), - [aux_sym__val_number_decimal_token3] = ACTIONS(3191), - [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [aux_sym_cmd_identifier_token38] = ACTIONS(3222), + [aux_sym_cmd_identifier_token39] = ACTIONS(3222), + [aux_sym_cmd_identifier_token40] = ACTIONS(3222), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3234), + [aux_sym__val_number_decimal_token2] = ACTIONS(3236), + [aux_sym__val_number_decimal_token3] = ACTIONS(3238), + [aux_sym__val_number_decimal_token4] = ACTIONS(3240), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [887] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3606), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3361), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1839), - [sym__unquoted_with_expr] = STATE(2068), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3791), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3660), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3409), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1934), + [sym__unquoted_with_expr] = STATE(2214), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(887), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3153), - [anon_sym_false] = ACTIONS(3153), - [anon_sym_null] = ACTIONS(3155), - [aux_sym_cmd_identifier_token38] = ACTIONS(3157), - [aux_sym_cmd_identifier_token39] = ACTIONS(3157), - [aux_sym_cmd_identifier_token40] = ACTIONS(3157), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3169), - [aux_sym__val_number_decimal_token2] = ACTIONS(3171), - [aux_sym__val_number_decimal_token3] = ACTIONS(3173), - [aux_sym__val_number_decimal_token4] = ACTIONS(3175), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3218), + [anon_sym_false] = ACTIONS(3218), + [anon_sym_null] = ACTIONS(3220), + [aux_sym_cmd_identifier_token38] = ACTIONS(3222), + [aux_sym_cmd_identifier_token39] = ACTIONS(3222), + [aux_sym_cmd_identifier_token40] = ACTIONS(3222), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3234), + [aux_sym__val_number_decimal_token2] = ACTIONS(3236), + [aux_sym__val_number_decimal_token3] = ACTIONS(3238), + [aux_sym__val_number_decimal_token4] = ACTIONS(3240), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3242), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [888] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(2353), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2144), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1959), - [sym__unquoted_with_expr] = STATE(2188), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(2135), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3174), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3025), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1981), + [sym__unquoted_with_expr] = STATE(2140), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(888), - [aux_sym_shebang_repeat1] = STATE(849), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3183), - [aux_sym_cmd_identifier_token38] = ACTIONS(3185), - [aux_sym_cmd_identifier_token39] = ACTIONS(3185), - [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3187), - [aux_sym__val_number_decimal_token2] = ACTIONS(3189), - [aux_sym__val_number_decimal_token3] = ACTIONS(3191), - [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(901), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [anon_sym_null] = ACTIONS(3264), + [aux_sym_cmd_identifier_token38] = ACTIONS(3266), + [aux_sym_cmd_identifier_token39] = ACTIONS(3266), + [aux_sym_cmd_identifier_token40] = ACTIONS(3266), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3268), + [aux_sym__val_number_decimal_token2] = ACTIONS(3270), + [aux_sym__val_number_decimal_token3] = ACTIONS(3272), + [aux_sym__val_number_decimal_token4] = ACTIONS(3274), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [889] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(2218), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2144), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1907), - [sym__unquoted_with_expr] = STATE(2132), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3236), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3174), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3025), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1997), + [sym__unquoted_with_expr] = STATE(2145), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(889), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3183), - [aux_sym_cmd_identifier_token38] = ACTIONS(3185), - [aux_sym_cmd_identifier_token39] = ACTIONS(3185), - [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3187), - [aux_sym__val_number_decimal_token2] = ACTIONS(3189), - [aux_sym__val_number_decimal_token3] = ACTIONS(3191), - [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(902), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [anon_sym_null] = ACTIONS(3264), + [aux_sym_cmd_identifier_token38] = ACTIONS(3266), + [aux_sym_cmd_identifier_token39] = ACTIONS(3266), + [aux_sym_cmd_identifier_token40] = ACTIONS(3266), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3268), + [aux_sym__val_number_decimal_token2] = ACTIONS(3270), + [aux_sym__val_number_decimal_token3] = ACTIONS(3272), + [aux_sym__val_number_decimal_token4] = ACTIONS(3274), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [890] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(2366), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2144), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1860), - [sym__unquoted_with_expr] = STATE(2185), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3237), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3174), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3025), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1977), + [sym__unquoted_with_expr] = STATE(2148), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(890), - [aux_sym_shebang_repeat1] = STATE(850), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3183), - [aux_sym_cmd_identifier_token38] = ACTIONS(3185), - [aux_sym_cmd_identifier_token39] = ACTIONS(3185), - [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3187), - [aux_sym__val_number_decimal_token2] = ACTIONS(3189), - [aux_sym__val_number_decimal_token3] = ACTIONS(3191), - [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(903), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [anon_sym_null] = ACTIONS(3264), + [aux_sym_cmd_identifier_token38] = ACTIONS(3266), + [aux_sym_cmd_identifier_token39] = ACTIONS(3266), + [aux_sym_cmd_identifier_token40] = ACTIONS(3266), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3268), + [aux_sym__val_number_decimal_token2] = ACTIONS(3270), + [aux_sym__val_number_decimal_token3] = ACTIONS(3272), + [aux_sym__val_number_decimal_token4] = ACTIONS(3274), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [891] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(2261), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2144), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1923), - [sym__unquoted_with_expr] = STATE(2152), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3238), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3174), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3025), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1911), + [sym__unquoted_with_expr] = STATE(2149), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(891), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3183), - [aux_sym_cmd_identifier_token38] = ACTIONS(3185), - [aux_sym_cmd_identifier_token39] = ACTIONS(3185), - [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3187), - [aux_sym__val_number_decimal_token2] = ACTIONS(3189), - [aux_sym__val_number_decimal_token3] = ACTIONS(3191), - [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(904), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [anon_sym_null] = ACTIONS(3264), + [aux_sym_cmd_identifier_token38] = ACTIONS(3266), + [aux_sym_cmd_identifier_token39] = ACTIONS(3266), + [aux_sym_cmd_identifier_token40] = ACTIONS(3266), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3268), + [aux_sym__val_number_decimal_token2] = ACTIONS(3270), + [aux_sym__val_number_decimal_token3] = ACTIONS(3272), + [aux_sym__val_number_decimal_token4] = ACTIONS(3274), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [892] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3608), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3361), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1868), - [sym__unquoted_with_expr] = STATE(2111), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3239), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3174), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3025), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1954), + [sym__unquoted_with_expr] = STATE(2150), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(892), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3153), - [anon_sym_false] = ACTIONS(3153), - [anon_sym_null] = ACTIONS(3155), - [aux_sym_cmd_identifier_token38] = ACTIONS(3157), - [aux_sym_cmd_identifier_token39] = ACTIONS(3157), - [aux_sym_cmd_identifier_token40] = ACTIONS(3157), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3169), - [aux_sym__val_number_decimal_token2] = ACTIONS(3171), - [aux_sym__val_number_decimal_token3] = ACTIONS(3173), - [aux_sym__val_number_decimal_token4] = ACTIONS(3175), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(905), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [anon_sym_null] = ACTIONS(3264), + [aux_sym_cmd_identifier_token38] = ACTIONS(3266), + [aux_sym_cmd_identifier_token39] = ACTIONS(3266), + [aux_sym_cmd_identifier_token40] = ACTIONS(3266), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3268), + [aux_sym__val_number_decimal_token2] = ACTIONS(3270), + [aux_sym__val_number_decimal_token3] = ACTIONS(3272), + [aux_sym__val_number_decimal_token4] = ACTIONS(3274), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [893] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3610), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3361), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1872), - [sym__unquoted_with_expr] = STATE(2121), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3240), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3174), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3025), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1960), + [sym__unquoted_with_expr] = STATE(2152), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(893), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3153), - [anon_sym_false] = ACTIONS(3153), - [anon_sym_null] = ACTIONS(3155), - [aux_sym_cmd_identifier_token38] = ACTIONS(3157), - [aux_sym_cmd_identifier_token39] = ACTIONS(3157), - [aux_sym_cmd_identifier_token40] = ACTIONS(3157), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3169), - [aux_sym__val_number_decimal_token2] = ACTIONS(3171), - [aux_sym__val_number_decimal_token3] = ACTIONS(3173), - [aux_sym__val_number_decimal_token4] = ACTIONS(3175), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(906), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [anon_sym_null] = ACTIONS(3264), + [aux_sym_cmd_identifier_token38] = ACTIONS(3266), + [aux_sym_cmd_identifier_token39] = ACTIONS(3266), + [aux_sym_cmd_identifier_token40] = ACTIONS(3266), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3268), + [aux_sym__val_number_decimal_token2] = ACTIONS(3270), + [aux_sym__val_number_decimal_token3] = ACTIONS(3272), + [aux_sym__val_number_decimal_token4] = ACTIONS(3274), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [894] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(2196), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3361), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1877), - [sym__unquoted_with_expr] = STATE(2128), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3241), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3174), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3025), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1970), + [sym__unquoted_with_expr] = STATE(2153), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(894), - [aux_sym_shebang_repeat1] = STATE(927), - [anon_sym_true] = ACTIONS(3153), - [anon_sym_false] = ACTIONS(3153), - [anon_sym_null] = ACTIONS(3155), - [aux_sym_cmd_identifier_token38] = ACTIONS(3157), - [aux_sym_cmd_identifier_token39] = ACTIONS(3157), - [aux_sym_cmd_identifier_token40] = ACTIONS(3157), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3169), - [aux_sym__val_number_decimal_token2] = ACTIONS(3171), - [aux_sym__val_number_decimal_token3] = ACTIONS(3173), - [aux_sym__val_number_decimal_token4] = ACTIONS(3175), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(907), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [anon_sym_null] = ACTIONS(3264), + [aux_sym_cmd_identifier_token38] = ACTIONS(3266), + [aux_sym_cmd_identifier_token39] = ACTIONS(3266), + [aux_sym_cmd_identifier_token40] = ACTIONS(3266), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3268), + [aux_sym__val_number_decimal_token2] = ACTIONS(3270), + [aux_sym__val_number_decimal_token3] = ACTIONS(3272), + [aux_sym__val_number_decimal_token4] = ACTIONS(3274), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [895] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(2184), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3361), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1849), - [sym__unquoted_with_expr] = STATE(2036), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3242), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3174), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3025), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1976), + [sym__unquoted_with_expr] = STATE(2155), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(895), [aux_sym_shebang_repeat1] = STATE(908), - [anon_sym_true] = ACTIONS(3153), - [anon_sym_false] = ACTIONS(3153), - [anon_sym_null] = ACTIONS(3155), - [aux_sym_cmd_identifier_token38] = ACTIONS(3157), - [aux_sym_cmd_identifier_token39] = ACTIONS(3157), - [aux_sym_cmd_identifier_token40] = ACTIONS(3157), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3169), - [aux_sym__val_number_decimal_token2] = ACTIONS(3171), - [aux_sym__val_number_decimal_token3] = ACTIONS(3173), - [aux_sym__val_number_decimal_token4] = ACTIONS(3175), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [anon_sym_null] = ACTIONS(3264), + [aux_sym_cmd_identifier_token38] = ACTIONS(3266), + [aux_sym_cmd_identifier_token39] = ACTIONS(3266), + [aux_sym_cmd_identifier_token40] = ACTIONS(3266), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3268), + [aux_sym__val_number_decimal_token2] = ACTIONS(3270), + [aux_sym__val_number_decimal_token3] = ACTIONS(3272), + [aux_sym__val_number_decimal_token4] = ACTIONS(3274), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [896] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3575), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3361), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1869), - [sym__unquoted_with_expr] = STATE(2148), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3243), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3174), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3025), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1908), + [sym__unquoted_with_expr] = STATE(2156), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(896), [aux_sym_shebang_repeat1] = STATE(909), - [anon_sym_true] = ACTIONS(3153), - [anon_sym_false] = ACTIONS(3153), - [anon_sym_null] = ACTIONS(3155), - [aux_sym_cmd_identifier_token38] = ACTIONS(3157), - [aux_sym_cmd_identifier_token39] = ACTIONS(3157), - [aux_sym_cmd_identifier_token40] = ACTIONS(3157), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3169), - [aux_sym__val_number_decimal_token2] = ACTIONS(3171), - [aux_sym__val_number_decimal_token3] = ACTIONS(3173), - [aux_sym__val_number_decimal_token4] = ACTIONS(3175), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [anon_sym_null] = ACTIONS(3264), + [aux_sym_cmd_identifier_token38] = ACTIONS(3266), + [aux_sym_cmd_identifier_token39] = ACTIONS(3266), + [aux_sym_cmd_identifier_token40] = ACTIONS(3266), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3268), + [aux_sym__val_number_decimal_token2] = ACTIONS(3270), + [aux_sym__val_number_decimal_token3] = ACTIONS(3272), + [aux_sym__val_number_decimal_token4] = ACTIONS(3274), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [897] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3576), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3361), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1925), - [sym__unquoted_with_expr] = STATE(2183), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3244), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3174), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3025), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1936), + [sym__unquoted_with_expr] = STATE(2157), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(897), [aux_sym_shebang_repeat1] = STATE(910), - [anon_sym_true] = ACTIONS(3153), - [anon_sym_false] = ACTIONS(3153), - [anon_sym_null] = ACTIONS(3155), - [aux_sym_cmd_identifier_token38] = ACTIONS(3157), - [aux_sym_cmd_identifier_token39] = ACTIONS(3157), - [aux_sym_cmd_identifier_token40] = ACTIONS(3157), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3169), - [aux_sym__val_number_decimal_token2] = ACTIONS(3171), - [aux_sym__val_number_decimal_token3] = ACTIONS(3173), - [aux_sym__val_number_decimal_token4] = ACTIONS(3175), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [anon_sym_null] = ACTIONS(3264), + [aux_sym_cmd_identifier_token38] = ACTIONS(3266), + [aux_sym_cmd_identifier_token39] = ACTIONS(3266), + [aux_sym_cmd_identifier_token40] = ACTIONS(3266), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3268), + [aux_sym__val_number_decimal_token2] = ACTIONS(3270), + [aux_sym__val_number_decimal_token3] = ACTIONS(3272), + [aux_sym__val_number_decimal_token4] = ACTIONS(3274), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [898] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3577), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3361), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1928), - [sym__unquoted_with_expr] = STATE(2195), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3245), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3174), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3025), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1955), + [sym__unquoted_with_expr] = STATE(2159), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(898), [aux_sym_shebang_repeat1] = STATE(911), - [anon_sym_true] = ACTIONS(3153), - [anon_sym_false] = ACTIONS(3153), - [anon_sym_null] = ACTIONS(3155), - [aux_sym_cmd_identifier_token38] = ACTIONS(3157), - [aux_sym_cmd_identifier_token39] = ACTIONS(3157), - [aux_sym_cmd_identifier_token40] = ACTIONS(3157), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3169), - [aux_sym__val_number_decimal_token2] = ACTIONS(3171), - [aux_sym__val_number_decimal_token3] = ACTIONS(3173), - [aux_sym__val_number_decimal_token4] = ACTIONS(3175), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [anon_sym_null] = ACTIONS(3264), + [aux_sym_cmd_identifier_token38] = ACTIONS(3266), + [aux_sym_cmd_identifier_token39] = ACTIONS(3266), + [aux_sym_cmd_identifier_token40] = ACTIONS(3266), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3268), + [aux_sym__val_number_decimal_token2] = ACTIONS(3270), + [aux_sym__val_number_decimal_token3] = ACTIONS(3272), + [aux_sym__val_number_decimal_token4] = ACTIONS(3274), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [899] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3578), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3361), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1933), - [sym__unquoted_with_expr] = STATE(2039), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3246), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3174), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3025), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1958), + [sym__unquoted_with_expr] = STATE(2190), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(899), - [aux_sym_shebang_repeat1] = STATE(913), - [anon_sym_true] = ACTIONS(3153), - [anon_sym_false] = ACTIONS(3153), - [anon_sym_null] = ACTIONS(3155), - [aux_sym_cmd_identifier_token38] = ACTIONS(3157), - [aux_sym_cmd_identifier_token39] = ACTIONS(3157), - [aux_sym_cmd_identifier_token40] = ACTIONS(3157), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3169), - [aux_sym__val_number_decimal_token2] = ACTIONS(3171), - [aux_sym__val_number_decimal_token3] = ACTIONS(3173), - [aux_sym__val_number_decimal_token4] = ACTIONS(3175), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(912), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [anon_sym_null] = ACTIONS(3264), + [aux_sym_cmd_identifier_token38] = ACTIONS(3266), + [aux_sym_cmd_identifier_token39] = ACTIONS(3266), + [aux_sym_cmd_identifier_token40] = ACTIONS(3266), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3268), + [aux_sym__val_number_decimal_token2] = ACTIONS(3270), + [aux_sym__val_number_decimal_token3] = ACTIONS(3272), + [aux_sym__val_number_decimal_token4] = ACTIONS(3274), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [900] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3579), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3361), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3247), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3174), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3025), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), [sym_unquoted] = STATE(1961), - [sym__unquoted_with_expr] = STATE(2117), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym__unquoted_with_expr] = STATE(2201), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(900), - [aux_sym_shebang_repeat1] = STATE(919), - [anon_sym_true] = ACTIONS(3153), - [anon_sym_false] = ACTIONS(3153), - [anon_sym_null] = ACTIONS(3155), - [aux_sym_cmd_identifier_token38] = ACTIONS(3157), - [aux_sym_cmd_identifier_token39] = ACTIONS(3157), - [aux_sym_cmd_identifier_token40] = ACTIONS(3157), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3169), - [aux_sym__val_number_decimal_token2] = ACTIONS(3171), - [aux_sym__val_number_decimal_token3] = ACTIONS(3173), - [aux_sym__val_number_decimal_token4] = ACTIONS(3175), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(913), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [anon_sym_null] = ACTIONS(3264), + [aux_sym_cmd_identifier_token38] = ACTIONS(3266), + [aux_sym_cmd_identifier_token39] = ACTIONS(3266), + [aux_sym_cmd_identifier_token40] = ACTIONS(3266), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3268), + [aux_sym__val_number_decimal_token2] = ACTIONS(3270), + [aux_sym__val_number_decimal_token3] = ACTIONS(3272), + [aux_sym__val_number_decimal_token4] = ACTIONS(3274), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [901] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3580), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3361), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1846), - [sym__unquoted_with_expr] = STATE(2116), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(2089), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3174), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3025), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1915), + [sym__unquoted_with_expr] = STATE(2090), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(901), - [aux_sym_shebang_repeat1] = STATE(922), - [anon_sym_true] = ACTIONS(3153), - [anon_sym_false] = ACTIONS(3153), - [anon_sym_null] = ACTIONS(3155), - [aux_sym_cmd_identifier_token38] = ACTIONS(3157), - [aux_sym_cmd_identifier_token39] = ACTIONS(3157), - [aux_sym_cmd_identifier_token40] = ACTIONS(3157), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3169), - [aux_sym__val_number_decimal_token2] = ACTIONS(3171), - [aux_sym__val_number_decimal_token3] = ACTIONS(3173), - [aux_sym__val_number_decimal_token4] = ACTIONS(3175), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [anon_sym_null] = ACTIONS(3264), + [aux_sym_cmd_identifier_token38] = ACTIONS(3266), + [aux_sym_cmd_identifier_token39] = ACTIONS(3266), + [aux_sym_cmd_identifier_token40] = ACTIONS(3266), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3268), + [aux_sym__val_number_decimal_token2] = ACTIONS(3270), + [aux_sym__val_number_decimal_token3] = ACTIONS(3272), + [aux_sym__val_number_decimal_token4] = ACTIONS(3274), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [902] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3581), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3361), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1856), - [sym__unquoted_with_expr] = STATE(2124), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3250), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3174), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3025), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1916), + [sym__unquoted_with_expr] = STATE(2093), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(902), - [aux_sym_shebang_repeat1] = STATE(932), - [anon_sym_true] = ACTIONS(3153), - [anon_sym_false] = ACTIONS(3153), - [anon_sym_null] = ACTIONS(3155), - [aux_sym_cmd_identifier_token38] = ACTIONS(3157), - [aux_sym_cmd_identifier_token39] = ACTIONS(3157), - [aux_sym_cmd_identifier_token40] = ACTIONS(3157), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3169), - [aux_sym__val_number_decimal_token2] = ACTIONS(3171), - [aux_sym__val_number_decimal_token3] = ACTIONS(3173), - [aux_sym__val_number_decimal_token4] = ACTIONS(3175), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [anon_sym_null] = ACTIONS(3264), + [aux_sym_cmd_identifier_token38] = ACTIONS(3266), + [aux_sym_cmd_identifier_token39] = ACTIONS(3266), + [aux_sym_cmd_identifier_token40] = ACTIONS(3266), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3268), + [aux_sym__val_number_decimal_token2] = ACTIONS(3270), + [aux_sym__val_number_decimal_token3] = ACTIONS(3272), + [aux_sym__val_number_decimal_token4] = ACTIONS(3274), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [903] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3582), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3361), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1863), - [sym__unquoted_with_expr] = STATE(2129), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3252), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3174), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3025), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1917), + [sym__unquoted_with_expr] = STATE(2097), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(903), - [aux_sym_shebang_repeat1] = STATE(847), - [anon_sym_true] = ACTIONS(3153), - [anon_sym_false] = ACTIONS(3153), - [anon_sym_null] = ACTIONS(3155), - [aux_sym_cmd_identifier_token38] = ACTIONS(3157), - [aux_sym_cmd_identifier_token39] = ACTIONS(3157), - [aux_sym_cmd_identifier_token40] = ACTIONS(3157), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3169), - [aux_sym__val_number_decimal_token2] = ACTIONS(3171), - [aux_sym__val_number_decimal_token3] = ACTIONS(3173), - [aux_sym__val_number_decimal_token4] = ACTIONS(3175), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [anon_sym_null] = ACTIONS(3264), + [aux_sym_cmd_identifier_token38] = ACTIONS(3266), + [aux_sym_cmd_identifier_token39] = ACTIONS(3266), + [aux_sym_cmd_identifier_token40] = ACTIONS(3266), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3268), + [aux_sym__val_number_decimal_token2] = ACTIONS(3270), + [aux_sym__val_number_decimal_token3] = ACTIONS(3272), + [aux_sym__val_number_decimal_token4] = ACTIONS(3274), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [904] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3583), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3361), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1864), - [sym__unquoted_with_expr] = STATE(2163), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3254), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3174), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3025), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1918), + [sym__unquoted_with_expr] = STATE(2100), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(904), - [aux_sym_shebang_repeat1] = STATE(861), - [anon_sym_true] = ACTIONS(3153), - [anon_sym_false] = ACTIONS(3153), - [anon_sym_null] = ACTIONS(3155), - [aux_sym_cmd_identifier_token38] = ACTIONS(3157), - [aux_sym_cmd_identifier_token39] = ACTIONS(3157), - [aux_sym_cmd_identifier_token40] = ACTIONS(3157), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3169), - [aux_sym__val_number_decimal_token2] = ACTIONS(3171), - [aux_sym__val_number_decimal_token3] = ACTIONS(3173), - [aux_sym__val_number_decimal_token4] = ACTIONS(3175), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [anon_sym_null] = ACTIONS(3264), + [aux_sym_cmd_identifier_token38] = ACTIONS(3266), + [aux_sym_cmd_identifier_token39] = ACTIONS(3266), + [aux_sym_cmd_identifier_token40] = ACTIONS(3266), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3268), + [aux_sym__val_number_decimal_token2] = ACTIONS(3270), + [aux_sym__val_number_decimal_token3] = ACTIONS(3272), + [aux_sym__val_number_decimal_token4] = ACTIONS(3274), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [905] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3584), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3361), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1918), - [sym__unquoted_with_expr] = STATE(2169), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3256), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3174), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3025), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1919), + [sym__unquoted_with_expr] = STATE(2102), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(905), - [aux_sym_shebang_repeat1] = STATE(887), - [anon_sym_true] = ACTIONS(3153), - [anon_sym_false] = ACTIONS(3153), - [anon_sym_null] = ACTIONS(3155), - [aux_sym_cmd_identifier_token38] = ACTIONS(3157), - [aux_sym_cmd_identifier_token39] = ACTIONS(3157), - [aux_sym_cmd_identifier_token40] = ACTIONS(3157), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3169), - [aux_sym__val_number_decimal_token2] = ACTIONS(3171), - [aux_sym__val_number_decimal_token3] = ACTIONS(3173), - [aux_sym__val_number_decimal_token4] = ACTIONS(3175), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [anon_sym_null] = ACTIONS(3264), + [aux_sym_cmd_identifier_token38] = ACTIONS(3266), + [aux_sym_cmd_identifier_token39] = ACTIONS(3266), + [aux_sym_cmd_identifier_token40] = ACTIONS(3266), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3268), + [aux_sym__val_number_decimal_token2] = ACTIONS(3270), + [aux_sym__val_number_decimal_token3] = ACTIONS(3272), + [aux_sym__val_number_decimal_token4] = ACTIONS(3274), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [906] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3585), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3361), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1959), - [sym__unquoted_with_expr] = STATE(2188), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3258), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3174), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3025), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1920), + [sym__unquoted_with_expr] = STATE(2105), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(906), - [aux_sym_shebang_repeat1] = STATE(892), - [anon_sym_true] = ACTIONS(3153), - [anon_sym_false] = ACTIONS(3153), - [anon_sym_null] = ACTIONS(3155), - [aux_sym_cmd_identifier_token38] = ACTIONS(3157), - [aux_sym_cmd_identifier_token39] = ACTIONS(3157), - [aux_sym_cmd_identifier_token40] = ACTIONS(3157), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3169), - [aux_sym__val_number_decimal_token2] = ACTIONS(3171), - [aux_sym__val_number_decimal_token3] = ACTIONS(3173), - [aux_sym__val_number_decimal_token4] = ACTIONS(3175), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [anon_sym_null] = ACTIONS(3264), + [aux_sym_cmd_identifier_token38] = ACTIONS(3266), + [aux_sym_cmd_identifier_token39] = ACTIONS(3266), + [aux_sym_cmd_identifier_token40] = ACTIONS(3266), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3268), + [aux_sym__val_number_decimal_token2] = ACTIONS(3270), + [aux_sym__val_number_decimal_token3] = ACTIONS(3272), + [aux_sym__val_number_decimal_token4] = ACTIONS(3274), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [907] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3586), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3361), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1860), - [sym__unquoted_with_expr] = STATE(2185), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3260), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3174), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3025), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1921), + [sym__unquoted_with_expr] = STATE(2107), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(907), - [aux_sym_shebang_repeat1] = STATE(893), - [anon_sym_true] = ACTIONS(3153), - [anon_sym_false] = ACTIONS(3153), - [anon_sym_null] = ACTIONS(3155), - [aux_sym_cmd_identifier_token38] = ACTIONS(3157), - [aux_sym_cmd_identifier_token39] = ACTIONS(3157), - [aux_sym_cmd_identifier_token40] = ACTIONS(3157), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3169), - [aux_sym__val_number_decimal_token2] = ACTIONS(3171), - [aux_sym__val_number_decimal_token3] = ACTIONS(3173), - [aux_sym__val_number_decimal_token4] = ACTIONS(3175), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [anon_sym_null] = ACTIONS(3264), + [aux_sym_cmd_identifier_token38] = ACTIONS(3266), + [aux_sym_cmd_identifier_token39] = ACTIONS(3266), + [aux_sym_cmd_identifier_token40] = ACTIONS(3266), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3268), + [aux_sym__val_number_decimal_token2] = ACTIONS(3270), + [aux_sym__val_number_decimal_token3] = ACTIONS(3272), + [aux_sym__val_number_decimal_token4] = ACTIONS(3274), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [908] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(2113), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3361), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1900), - [sym__unquoted_with_expr] = STATE(2119), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3262), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3174), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3025), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1923), + [sym__unquoted_with_expr] = STATE(2109), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(908), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3153), - [anon_sym_false] = ACTIONS(3153), - [anon_sym_null] = ACTIONS(3155), - [aux_sym_cmd_identifier_token38] = ACTIONS(3157), - [aux_sym_cmd_identifier_token39] = ACTIONS(3157), - [aux_sym_cmd_identifier_token40] = ACTIONS(3157), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3169), - [aux_sym__val_number_decimal_token2] = ACTIONS(3171), - [aux_sym__val_number_decimal_token3] = ACTIONS(3173), - [aux_sym__val_number_decimal_token4] = ACTIONS(3175), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [anon_sym_null] = ACTIONS(3264), + [aux_sym_cmd_identifier_token38] = ACTIONS(3266), + [aux_sym_cmd_identifier_token39] = ACTIONS(3266), + [aux_sym_cmd_identifier_token40] = ACTIONS(3266), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3268), + [aux_sym__val_number_decimal_token2] = ACTIONS(3270), + [aux_sym__val_number_decimal_token3] = ACTIONS(3272), + [aux_sym__val_number_decimal_token4] = ACTIONS(3274), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [909] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3588), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3361), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1907), - [sym__unquoted_with_expr] = STATE(2132), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3264), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3174), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3025), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1924), + [sym__unquoted_with_expr] = STATE(2111), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(909), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3153), - [anon_sym_false] = ACTIONS(3153), - [anon_sym_null] = ACTIONS(3155), - [aux_sym_cmd_identifier_token38] = ACTIONS(3157), - [aux_sym_cmd_identifier_token39] = ACTIONS(3157), - [aux_sym_cmd_identifier_token40] = ACTIONS(3157), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3169), - [aux_sym__val_number_decimal_token2] = ACTIONS(3171), - [aux_sym__val_number_decimal_token3] = ACTIONS(3173), - [aux_sym__val_number_decimal_token4] = ACTIONS(3175), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [anon_sym_null] = ACTIONS(3264), + [aux_sym_cmd_identifier_token38] = ACTIONS(3266), + [aux_sym_cmd_identifier_token39] = ACTIONS(3266), + [aux_sym_cmd_identifier_token40] = ACTIONS(3266), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3268), + [aux_sym__val_number_decimal_token2] = ACTIONS(3270), + [aux_sym__val_number_decimal_token3] = ACTIONS(3272), + [aux_sym__val_number_decimal_token4] = ACTIONS(3274), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [910] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3590), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3361), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1923), - [sym__unquoted_with_expr] = STATE(2152), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3266), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3174), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3025), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1927), + [sym__unquoted_with_expr] = STATE(2113), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(910), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3153), - [anon_sym_false] = ACTIONS(3153), - [anon_sym_null] = ACTIONS(3155), - [aux_sym_cmd_identifier_token38] = ACTIONS(3157), - [aux_sym_cmd_identifier_token39] = ACTIONS(3157), - [aux_sym_cmd_identifier_token40] = ACTIONS(3157), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3169), - [aux_sym__val_number_decimal_token2] = ACTIONS(3171), - [aux_sym__val_number_decimal_token3] = ACTIONS(3173), - [aux_sym__val_number_decimal_token4] = ACTIONS(3175), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [anon_sym_null] = ACTIONS(3264), + [aux_sym_cmd_identifier_token38] = ACTIONS(3266), + [aux_sym_cmd_identifier_token39] = ACTIONS(3266), + [aux_sym_cmd_identifier_token40] = ACTIONS(3266), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3268), + [aux_sym__val_number_decimal_token2] = ACTIONS(3270), + [aux_sym__val_number_decimal_token3] = ACTIONS(3272), + [aux_sym__val_number_decimal_token4] = ACTIONS(3274), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [911] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3592), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3361), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1924), - [sym__unquoted_with_expr] = STATE(2157), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3268), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3174), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3025), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1928), + [sym__unquoted_with_expr] = STATE(2115), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(911), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3153), - [anon_sym_false] = ACTIONS(3153), - [anon_sym_null] = ACTIONS(3155), - [aux_sym_cmd_identifier_token38] = ACTIONS(3157), - [aux_sym_cmd_identifier_token39] = ACTIONS(3157), - [aux_sym_cmd_identifier_token40] = ACTIONS(3157), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3169), - [aux_sym__val_number_decimal_token2] = ACTIONS(3171), - [aux_sym__val_number_decimal_token3] = ACTIONS(3173), - [aux_sym__val_number_decimal_token4] = ACTIONS(3175), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [anon_sym_null] = ACTIONS(3264), + [aux_sym_cmd_identifier_token38] = ACTIONS(3266), + [aux_sym_cmd_identifier_token39] = ACTIONS(3266), + [aux_sym_cmd_identifier_token40] = ACTIONS(3266), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3268), + [aux_sym__val_number_decimal_token2] = ACTIONS(3270), + [aux_sym__val_number_decimal_token3] = ACTIONS(3272), + [aux_sym__val_number_decimal_token4] = ACTIONS(3274), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [912] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3611), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3361), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1888), - [sym__unquoted_with_expr] = STATE(2135), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3270), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3174), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3025), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1931), + [sym__unquoted_with_expr] = STATE(2117), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(912), - [aux_sym_shebang_repeat1] = STATE(928), - [anon_sym_true] = ACTIONS(3153), - [anon_sym_false] = ACTIONS(3153), - [anon_sym_null] = ACTIONS(3155), - [aux_sym_cmd_identifier_token38] = ACTIONS(3157), - [aux_sym_cmd_identifier_token39] = ACTIONS(3157), - [aux_sym_cmd_identifier_token40] = ACTIONS(3157), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3169), - [aux_sym__val_number_decimal_token2] = ACTIONS(3171), - [aux_sym__val_number_decimal_token3] = ACTIONS(3173), - [aux_sym__val_number_decimal_token4] = ACTIONS(3175), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [anon_sym_null] = ACTIONS(3264), + [aux_sym_cmd_identifier_token38] = ACTIONS(3266), + [aux_sym_cmd_identifier_token39] = ACTIONS(3266), + [aux_sym_cmd_identifier_token40] = ACTIONS(3266), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3268), + [aux_sym__val_number_decimal_token2] = ACTIONS(3270), + [aux_sym__val_number_decimal_token3] = ACTIONS(3272), + [aux_sym__val_number_decimal_token4] = ACTIONS(3274), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [913] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3594), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3361), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1926), - [sym__unquoted_with_expr] = STATE(2168), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3272), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3174), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3025), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1933), + [sym__unquoted_with_expr] = STATE(2121), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(913), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3153), - [anon_sym_false] = ACTIONS(3153), - [anon_sym_null] = ACTIONS(3155), - [aux_sym_cmd_identifier_token38] = ACTIONS(3157), - [aux_sym_cmd_identifier_token39] = ACTIONS(3157), - [aux_sym_cmd_identifier_token40] = ACTIONS(3157), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3169), - [aux_sym__val_number_decimal_token2] = ACTIONS(3171), - [aux_sym__val_number_decimal_token3] = ACTIONS(3173), - [aux_sym__val_number_decimal_token4] = ACTIONS(3175), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [anon_sym_null] = ACTIONS(3264), + [aux_sym_cmd_identifier_token38] = ACTIONS(3266), + [aux_sym_cmd_identifier_token39] = ACTIONS(3266), + [aux_sym_cmd_identifier_token40] = ACTIONS(3266), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3268), + [aux_sym__val_number_decimal_token2] = ACTIONS(3270), + [aux_sym__val_number_decimal_token3] = ACTIONS(3272), + [aux_sym__val_number_decimal_token4] = ACTIONS(3274), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [914] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3612), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3361), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1891), - [sym__unquoted_with_expr] = STATE(2138), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(2122), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3174), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3025), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1935), + [sym__unquoted_with_expr] = STATE(2123), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(914), - [aux_sym_shebang_repeat1] = STATE(929), - [anon_sym_true] = ACTIONS(3153), - [anon_sym_false] = ACTIONS(3153), - [anon_sym_null] = ACTIONS(3155), - [aux_sym_cmd_identifier_token38] = ACTIONS(3157), - [aux_sym_cmd_identifier_token39] = ACTIONS(3157), - [aux_sym_cmd_identifier_token40] = ACTIONS(3157), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3169), - [aux_sym__val_number_decimal_token2] = ACTIONS(3171), - [aux_sym__val_number_decimal_token3] = ACTIONS(3173), - [aux_sym__val_number_decimal_token4] = ACTIONS(3175), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(927), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [anon_sym_null] = ACTIONS(3264), + [aux_sym_cmd_identifier_token38] = ACTIONS(3266), + [aux_sym_cmd_identifier_token39] = ACTIONS(3266), + [aux_sym_cmd_identifier_token40] = ACTIONS(3266), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3268), + [aux_sym__val_number_decimal_token2] = ACTIONS(3270), + [aux_sym__val_number_decimal_token3] = ACTIONS(3272), + [aux_sym__val_number_decimal_token4] = ACTIONS(3274), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [915] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3613), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3361), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1894), - [sym__unquoted_with_expr] = STATE(2142), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3273), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3174), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3025), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1941), + [sym__unquoted_with_expr] = STATE(2124), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(915), - [aux_sym_shebang_repeat1] = STATE(930), - [anon_sym_true] = ACTIONS(3153), - [anon_sym_false] = ACTIONS(3153), - [anon_sym_null] = ACTIONS(3155), - [aux_sym_cmd_identifier_token38] = ACTIONS(3157), - [aux_sym_cmd_identifier_token39] = ACTIONS(3157), - [aux_sym_cmd_identifier_token40] = ACTIONS(3157), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3169), - [aux_sym__val_number_decimal_token2] = ACTIONS(3171), - [aux_sym__val_number_decimal_token3] = ACTIONS(3173), - [aux_sym__val_number_decimal_token4] = ACTIONS(3175), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(928), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [anon_sym_null] = ACTIONS(3264), + [aux_sym_cmd_identifier_token38] = ACTIONS(3266), + [aux_sym_cmd_identifier_token39] = ACTIONS(3266), + [aux_sym_cmd_identifier_token40] = ACTIONS(3266), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3268), + [aux_sym__val_number_decimal_token2] = ACTIONS(3270), + [aux_sym__val_number_decimal_token3] = ACTIONS(3272), + [aux_sym__val_number_decimal_token4] = ACTIONS(3274), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [916] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3614), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3361), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1896), - [sym__unquoted_with_expr] = STATE(2151), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3274), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3174), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3025), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1945), + [sym__unquoted_with_expr] = STATE(2127), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(916), - [aux_sym_shebang_repeat1] = STATE(931), - [anon_sym_true] = ACTIONS(3153), - [anon_sym_false] = ACTIONS(3153), - [anon_sym_null] = ACTIONS(3155), - [aux_sym_cmd_identifier_token38] = ACTIONS(3157), - [aux_sym_cmd_identifier_token39] = ACTIONS(3157), - [aux_sym_cmd_identifier_token40] = ACTIONS(3157), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3169), - [aux_sym__val_number_decimal_token2] = ACTIONS(3171), - [aux_sym__val_number_decimal_token3] = ACTIONS(3173), - [aux_sym__val_number_decimal_token4] = ACTIONS(3175), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(929), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [anon_sym_null] = ACTIONS(3264), + [aux_sym_cmd_identifier_token38] = ACTIONS(3266), + [aux_sym_cmd_identifier_token39] = ACTIONS(3266), + [aux_sym_cmd_identifier_token40] = ACTIONS(3266), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3268), + [aux_sym__val_number_decimal_token2] = ACTIONS(3270), + [aux_sym__val_number_decimal_token3] = ACTIONS(3272), + [aux_sym__val_number_decimal_token4] = ACTIONS(3274), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [917] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3615), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3361), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1899), - [sym__unquoted_with_expr] = STATE(2156), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3275), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3174), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3025), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1949), + [sym__unquoted_with_expr] = STATE(2128), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(917), - [aux_sym_shebang_repeat1] = STATE(777), - [anon_sym_true] = ACTIONS(3153), - [anon_sym_false] = ACTIONS(3153), - [anon_sym_null] = ACTIONS(3155), - [aux_sym_cmd_identifier_token38] = ACTIONS(3157), - [aux_sym_cmd_identifier_token39] = ACTIONS(3157), - [aux_sym_cmd_identifier_token40] = ACTIONS(3157), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3169), - [aux_sym__val_number_decimal_token2] = ACTIONS(3171), - [aux_sym__val_number_decimal_token3] = ACTIONS(3173), - [aux_sym__val_number_decimal_token4] = ACTIONS(3175), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(930), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [anon_sym_null] = ACTIONS(3264), + [aux_sym_cmd_identifier_token38] = ACTIONS(3266), + [aux_sym_cmd_identifier_token39] = ACTIONS(3266), + [aux_sym_cmd_identifier_token40] = ACTIONS(3266), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3268), + [aux_sym__val_number_decimal_token2] = ACTIONS(3270), + [aux_sym__val_number_decimal_token3] = ACTIONS(3272), + [aux_sym__val_number_decimal_token4] = ACTIONS(3274), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [918] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3616), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3361), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1911), - [sym__unquoted_with_expr] = STATE(2166), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3276), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3174), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3025), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1950), + [sym__unquoted_with_expr] = STATE(2129), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(918), - [aux_sym_shebang_repeat1] = STATE(778), - [anon_sym_true] = ACTIONS(3153), - [anon_sym_false] = ACTIONS(3153), - [anon_sym_null] = ACTIONS(3155), - [aux_sym_cmd_identifier_token38] = ACTIONS(3157), - [aux_sym_cmd_identifier_token39] = ACTIONS(3157), - [aux_sym_cmd_identifier_token40] = ACTIONS(3157), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3169), - [aux_sym__val_number_decimal_token2] = ACTIONS(3171), - [aux_sym__val_number_decimal_token3] = ACTIONS(3173), - [aux_sym__val_number_decimal_token4] = ACTIONS(3175), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(931), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [anon_sym_null] = ACTIONS(3264), + [aux_sym_cmd_identifier_token38] = ACTIONS(3266), + [aux_sym_cmd_identifier_token39] = ACTIONS(3266), + [aux_sym_cmd_identifier_token40] = ACTIONS(3266), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3268), + [aux_sym__val_number_decimal_token2] = ACTIONS(3270), + [aux_sym__val_number_decimal_token3] = ACTIONS(3272), + [aux_sym__val_number_decimal_token4] = ACTIONS(3274), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [919] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3596), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3361), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1927), - [sym__unquoted_with_expr] = STATE(2175), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3277), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3174), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3025), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1953), + [sym__unquoted_with_expr] = STATE(2130), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(919), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3153), - [anon_sym_false] = ACTIONS(3153), - [anon_sym_null] = ACTIONS(3155), - [aux_sym_cmd_identifier_token38] = ACTIONS(3157), - [aux_sym_cmd_identifier_token39] = ACTIONS(3157), - [aux_sym_cmd_identifier_token40] = ACTIONS(3157), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3169), - [aux_sym__val_number_decimal_token2] = ACTIONS(3171), - [aux_sym__val_number_decimal_token3] = ACTIONS(3173), - [aux_sym__val_number_decimal_token4] = ACTIONS(3175), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(932), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [anon_sym_null] = ACTIONS(3264), + [aux_sym_cmd_identifier_token38] = ACTIONS(3266), + [aux_sym_cmd_identifier_token39] = ACTIONS(3266), + [aux_sym_cmd_identifier_token40] = ACTIONS(3266), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3268), + [aux_sym__val_number_decimal_token2] = ACTIONS(3270), + [aux_sym__val_number_decimal_token3] = ACTIONS(3272), + [aux_sym__val_number_decimal_token4] = ACTIONS(3274), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [920] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3617), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3361), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1912), - [sym__unquoted_with_expr] = STATE(2170), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3278), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3174), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3025), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1974), + [sym__unquoted_with_expr] = STATE(2131), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(920), - [aux_sym_shebang_repeat1] = STATE(779), - [anon_sym_true] = ACTIONS(3153), - [anon_sym_false] = ACTIONS(3153), - [anon_sym_null] = ACTIONS(3155), - [aux_sym_cmd_identifier_token38] = ACTIONS(3157), - [aux_sym_cmd_identifier_token39] = ACTIONS(3157), - [aux_sym_cmd_identifier_token40] = ACTIONS(3157), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3169), - [aux_sym__val_number_decimal_token2] = ACTIONS(3171), - [aux_sym__val_number_decimal_token3] = ACTIONS(3173), - [aux_sym__val_number_decimal_token4] = ACTIONS(3175), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(933), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [anon_sym_null] = ACTIONS(3264), + [aux_sym_cmd_identifier_token38] = ACTIONS(3266), + [aux_sym_cmd_identifier_token39] = ACTIONS(3266), + [aux_sym_cmd_identifier_token40] = ACTIONS(3266), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3268), + [aux_sym__val_number_decimal_token2] = ACTIONS(3270), + [aux_sym__val_number_decimal_token3] = ACTIONS(3272), + [aux_sym__val_number_decimal_token4] = ACTIONS(3274), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [921] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3618), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3361), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1913), - [sym__unquoted_with_expr] = STATE(2171), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3279), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3174), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3025), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1979), + [sym__unquoted_with_expr] = STATE(2133), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(921), - [aux_sym_shebang_repeat1] = STATE(780), - [anon_sym_true] = ACTIONS(3153), - [anon_sym_false] = ACTIONS(3153), - [anon_sym_null] = ACTIONS(3155), - [aux_sym_cmd_identifier_token38] = ACTIONS(3157), - [aux_sym_cmd_identifier_token39] = ACTIONS(3157), - [aux_sym_cmd_identifier_token40] = ACTIONS(3157), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3169), - [aux_sym__val_number_decimal_token2] = ACTIONS(3171), - [aux_sym__val_number_decimal_token3] = ACTIONS(3173), - [aux_sym__val_number_decimal_token4] = ACTIONS(3175), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(934), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [anon_sym_null] = ACTIONS(3264), + [aux_sym_cmd_identifier_token38] = ACTIONS(3266), + [aux_sym_cmd_identifier_token39] = ACTIONS(3266), + [aux_sym_cmd_identifier_token40] = ACTIONS(3266), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3268), + [aux_sym__val_number_decimal_token2] = ACTIONS(3270), + [aux_sym__val_number_decimal_token3] = ACTIONS(3272), + [aux_sym__val_number_decimal_token4] = ACTIONS(3274), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [922] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3598), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3361), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1811), - [sym__unquoted_with_expr] = STATE(2074), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3280), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3174), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3025), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1984), + [sym__unquoted_with_expr] = STATE(2134), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(922), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3153), - [anon_sym_false] = ACTIONS(3153), - [anon_sym_null] = ACTIONS(3155), - [aux_sym_cmd_identifier_token38] = ACTIONS(3157), - [aux_sym_cmd_identifier_token39] = ACTIONS(3157), - [aux_sym_cmd_identifier_token40] = ACTIONS(3157), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3169), - [aux_sym__val_number_decimal_token2] = ACTIONS(3171), - [aux_sym__val_number_decimal_token3] = ACTIONS(3173), - [aux_sym__val_number_decimal_token4] = ACTIONS(3175), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(935), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [anon_sym_null] = ACTIONS(3264), + [aux_sym_cmd_identifier_token38] = ACTIONS(3266), + [aux_sym_cmd_identifier_token39] = ACTIONS(3266), + [aux_sym_cmd_identifier_token40] = ACTIONS(3266), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3268), + [aux_sym__val_number_decimal_token2] = ACTIONS(3270), + [aux_sym__val_number_decimal_token3] = ACTIONS(3272), + [aux_sym__val_number_decimal_token4] = ACTIONS(3274), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [923] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3620), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3361), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1919), - [sym__unquoted_with_expr] = STATE(2176), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3281), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3174), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3025), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1985), + [sym__unquoted_with_expr] = STATE(2138), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(923), - [aux_sym_shebang_repeat1] = STATE(782), - [anon_sym_true] = ACTIONS(3153), - [anon_sym_false] = ACTIONS(3153), - [anon_sym_null] = ACTIONS(3155), - [aux_sym_cmd_identifier_token38] = ACTIONS(3157), - [aux_sym_cmd_identifier_token39] = ACTIONS(3157), - [aux_sym_cmd_identifier_token40] = ACTIONS(3157), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3169), - [aux_sym__val_number_decimal_token2] = ACTIONS(3171), - [aux_sym__val_number_decimal_token3] = ACTIONS(3173), - [aux_sym__val_number_decimal_token4] = ACTIONS(3175), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(936), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [anon_sym_null] = ACTIONS(3264), + [aux_sym_cmd_identifier_token38] = ACTIONS(3266), + [aux_sym_cmd_identifier_token39] = ACTIONS(3266), + [aux_sym_cmd_identifier_token40] = ACTIONS(3266), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3268), + [aux_sym__val_number_decimal_token2] = ACTIONS(3270), + [aux_sym__val_number_decimal_token3] = ACTIONS(3272), + [aux_sym__val_number_decimal_token4] = ACTIONS(3274), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [924] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3621), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3361), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1920), - [sym__unquoted_with_expr] = STATE(2178), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3282), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3174), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3025), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1986), + [sym__unquoted_with_expr] = STATE(2141), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(924), - [aux_sym_shebang_repeat1] = STATE(783), - [anon_sym_true] = ACTIONS(3153), - [anon_sym_false] = ACTIONS(3153), - [anon_sym_null] = ACTIONS(3155), - [aux_sym_cmd_identifier_token38] = ACTIONS(3157), - [aux_sym_cmd_identifier_token39] = ACTIONS(3157), - [aux_sym_cmd_identifier_token40] = ACTIONS(3157), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3169), - [aux_sym__val_number_decimal_token2] = ACTIONS(3171), - [aux_sym__val_number_decimal_token3] = ACTIONS(3173), - [aux_sym__val_number_decimal_token4] = ACTIONS(3175), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(937), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [anon_sym_null] = ACTIONS(3264), + [aux_sym_cmd_identifier_token38] = ACTIONS(3266), + [aux_sym_cmd_identifier_token39] = ACTIONS(3266), + [aux_sym_cmd_identifier_token40] = ACTIONS(3266), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3268), + [aux_sym__val_number_decimal_token2] = ACTIONS(3270), + [aux_sym__val_number_decimal_token3] = ACTIONS(3272), + [aux_sym__val_number_decimal_token4] = ACTIONS(3274), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [925] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3622), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3361), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1922), - [sym__unquoted_with_expr] = STATE(2180), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3283), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3174), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3025), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1988), + [sym__unquoted_with_expr] = STATE(2144), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(925), - [aux_sym_shebang_repeat1] = STATE(784), - [anon_sym_true] = ACTIONS(3153), - [anon_sym_false] = ACTIONS(3153), - [anon_sym_null] = ACTIONS(3155), - [aux_sym_cmd_identifier_token38] = ACTIONS(3157), - [aux_sym_cmd_identifier_token39] = ACTIONS(3157), - [aux_sym_cmd_identifier_token40] = ACTIONS(3157), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3169), - [aux_sym__val_number_decimal_token2] = ACTIONS(3171), - [aux_sym__val_number_decimal_token3] = ACTIONS(3173), - [aux_sym__val_number_decimal_token4] = ACTIONS(3175), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(938), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [anon_sym_null] = ACTIONS(3264), + [aux_sym_cmd_identifier_token38] = ACTIONS(3266), + [aux_sym_cmd_identifier_token39] = ACTIONS(3266), + [aux_sym_cmd_identifier_token40] = ACTIONS(3266), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3268), + [aux_sym__val_number_decimal_token2] = ACTIONS(3270), + [aux_sym__val_number_decimal_token3] = ACTIONS(3272), + [aux_sym__val_number_decimal_token4] = ACTIONS(3274), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [926] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(2285), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(2144), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(1402), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1924), - [sym__unquoted_with_expr] = STATE(2157), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3284), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3174), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3025), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1989), + [sym__unquoted_with_expr] = STATE(2146), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(926), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [anon_sym_null] = ACTIONS(3183), - [aux_sym_cmd_identifier_token38] = ACTIONS(3185), - [aux_sym_cmd_identifier_token39] = ACTIONS(3185), - [aux_sym_cmd_identifier_token40] = ACTIONS(3185), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3187), - [aux_sym__val_number_decimal_token2] = ACTIONS(3189), - [aux_sym__val_number_decimal_token3] = ACTIONS(3191), - [aux_sym__val_number_decimal_token4] = ACTIONS(3193), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(939), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [anon_sym_null] = ACTIONS(3264), + [aux_sym_cmd_identifier_token38] = ACTIONS(3266), + [aux_sym_cmd_identifier_token39] = ACTIONS(3266), + [aux_sym_cmd_identifier_token40] = ACTIONS(3266), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3268), + [aux_sym__val_number_decimal_token2] = ACTIONS(3270), + [aux_sym__val_number_decimal_token3] = ACTIONS(3272), + [aux_sym__val_number_decimal_token4] = ACTIONS(3274), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [927] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(2033), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3361), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1962), - [sym__unquoted_with_expr] = STATE(2034), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(2185), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3174), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3025), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1942), + [sym__unquoted_with_expr] = STATE(2186), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(927), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3153), - [anon_sym_false] = ACTIONS(3153), - [anon_sym_null] = ACTIONS(3155), - [aux_sym_cmd_identifier_token38] = ACTIONS(3157), - [aux_sym_cmd_identifier_token39] = ACTIONS(3157), - [aux_sym_cmd_identifier_token40] = ACTIONS(3157), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3169), - [aux_sym__val_number_decimal_token2] = ACTIONS(3171), - [aux_sym__val_number_decimal_token3] = ACTIONS(3173), - [aux_sym__val_number_decimal_token4] = ACTIONS(3175), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [anon_sym_null] = ACTIONS(3264), + [aux_sym_cmd_identifier_token38] = ACTIONS(3266), + [aux_sym_cmd_identifier_token39] = ACTIONS(3266), + [aux_sym_cmd_identifier_token40] = ACTIONS(3266), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3268), + [aux_sym__val_number_decimal_token2] = ACTIONS(3270), + [aux_sym__val_number_decimal_token3] = ACTIONS(3272), + [aux_sym__val_number_decimal_token4] = ACTIONS(3274), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [928] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3636), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3361), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1963), - [sym__unquoted_with_expr] = STATE(2037), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3298), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3174), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3025), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1968), + [sym__unquoted_with_expr] = STATE(2188), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(928), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3153), - [anon_sym_false] = ACTIONS(3153), - [anon_sym_null] = ACTIONS(3155), - [aux_sym_cmd_identifier_token38] = ACTIONS(3157), - [aux_sym_cmd_identifier_token39] = ACTIONS(3157), - [aux_sym_cmd_identifier_token40] = ACTIONS(3157), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3169), - [aux_sym__val_number_decimal_token2] = ACTIONS(3171), - [aux_sym__val_number_decimal_token3] = ACTIONS(3173), - [aux_sym__val_number_decimal_token4] = ACTIONS(3175), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [anon_sym_null] = ACTIONS(3264), + [aux_sym_cmd_identifier_token38] = ACTIONS(3266), + [aux_sym_cmd_identifier_token39] = ACTIONS(3266), + [aux_sym_cmd_identifier_token40] = ACTIONS(3266), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3268), + [aux_sym__val_number_decimal_token2] = ACTIONS(3270), + [aux_sym__val_number_decimal_token3] = ACTIONS(3272), + [aux_sym__val_number_decimal_token4] = ACTIONS(3274), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [929] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3638), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3361), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1884), - [sym__unquoted_with_expr] = STATE(2040), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3300), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3174), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3025), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1905), + [sym__unquoted_with_expr] = STATE(2191), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(929), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3153), - [anon_sym_false] = ACTIONS(3153), - [anon_sym_null] = ACTIONS(3155), - [aux_sym_cmd_identifier_token38] = ACTIONS(3157), - [aux_sym_cmd_identifier_token39] = ACTIONS(3157), - [aux_sym_cmd_identifier_token40] = ACTIONS(3157), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3169), - [aux_sym__val_number_decimal_token2] = ACTIONS(3171), - [aux_sym__val_number_decimal_token3] = ACTIONS(3173), - [aux_sym__val_number_decimal_token4] = ACTIONS(3175), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [anon_sym_null] = ACTIONS(3264), + [aux_sym_cmd_identifier_token38] = ACTIONS(3266), + [aux_sym_cmd_identifier_token39] = ACTIONS(3266), + [aux_sym_cmd_identifier_token40] = ACTIONS(3266), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3268), + [aux_sym__val_number_decimal_token2] = ACTIONS(3270), + [aux_sym__val_number_decimal_token3] = ACTIONS(3272), + [aux_sym__val_number_decimal_token4] = ACTIONS(3274), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [930] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3640), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3361), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1885), - [sym__unquoted_with_expr] = STATE(2046), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3302), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3174), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3025), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1959), + [sym__unquoted_with_expr] = STATE(2194), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(930), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3153), - [anon_sym_false] = ACTIONS(3153), - [anon_sym_null] = ACTIONS(3155), - [aux_sym_cmd_identifier_token38] = ACTIONS(3157), - [aux_sym_cmd_identifier_token39] = ACTIONS(3157), - [aux_sym_cmd_identifier_token40] = ACTIONS(3157), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3169), - [aux_sym__val_number_decimal_token2] = ACTIONS(3171), - [aux_sym__val_number_decimal_token3] = ACTIONS(3173), - [aux_sym__val_number_decimal_token4] = ACTIONS(3175), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [anon_sym_null] = ACTIONS(3264), + [aux_sym_cmd_identifier_token38] = ACTIONS(3266), + [aux_sym_cmd_identifier_token39] = ACTIONS(3266), + [aux_sym_cmd_identifier_token40] = ACTIONS(3266), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3268), + [aux_sym__val_number_decimal_token2] = ACTIONS(3270), + [aux_sym__val_number_decimal_token3] = ACTIONS(3272), + [aux_sym__val_number_decimal_token4] = ACTIONS(3274), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [931] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3642), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3361), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1795), - [sym__unquoted_with_expr] = STATE(2048), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3304), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3174), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3025), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1969), + [sym__unquoted_with_expr] = STATE(2197), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(931), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3153), - [anon_sym_false] = ACTIONS(3153), - [anon_sym_null] = ACTIONS(3155), - [aux_sym_cmd_identifier_token38] = ACTIONS(3157), - [aux_sym_cmd_identifier_token39] = ACTIONS(3157), - [aux_sym_cmd_identifier_token40] = ACTIONS(3157), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3169), - [aux_sym__val_number_decimal_token2] = ACTIONS(3171), - [aux_sym__val_number_decimal_token3] = ACTIONS(3173), - [aux_sym__val_number_decimal_token4] = ACTIONS(3175), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [anon_sym_null] = ACTIONS(3264), + [aux_sym_cmd_identifier_token38] = ACTIONS(3266), + [aux_sym_cmd_identifier_token39] = ACTIONS(3266), + [aux_sym_cmd_identifier_token40] = ACTIONS(3266), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3268), + [aux_sym__val_number_decimal_token2] = ACTIONS(3270), + [aux_sym__val_number_decimal_token3] = ACTIONS(3272), + [aux_sym__val_number_decimal_token4] = ACTIONS(3274), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [932] = { - [sym_expr_unary] = STATE(2373), - [sym__expr_unary_minus] = STATE(2377), - [sym_expr_binary_parenthesized] = STATE(2373), - [sym__expr_binary_expression_parenthesized] = STATE(3600), - [sym_expr_parenthesized] = STATE(2373), - [sym__val_range] = STATE(7706), - [sym__val_range_with_end] = STATE(7306), - [sym__value] = STATE(2373), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(3361), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(1725), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(1820), - [sym__unquoted_with_expr] = STATE(2065), - [sym__unquoted_anonymous_prefix] = STATE(6921), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3306), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3174), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3025), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1972), + [sym__unquoted_with_expr] = STATE(2199), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(932), - [aux_sym_shebang_repeat1] = STATE(2826), - [anon_sym_true] = ACTIONS(3153), - [anon_sym_false] = ACTIONS(3153), - [anon_sym_null] = ACTIONS(3155), - [aux_sym_cmd_identifier_token38] = ACTIONS(3157), - [aux_sym_cmd_identifier_token39] = ACTIONS(3157), - [aux_sym_cmd_identifier_token40] = ACTIONS(3157), - [sym__newline] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_DOLLAR] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(475), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_DOT_DOT] = ACTIONS(3165), - [aux_sym_expr_unary_token1] = ACTIONS(491), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3167), - [anon_sym_DOT_DOT_LT] = ACTIONS(3167), - [aux_sym__val_number_decimal_token1] = ACTIONS(3169), - [aux_sym__val_number_decimal_token2] = ACTIONS(3171), - [aux_sym__val_number_decimal_token3] = ACTIONS(3173), - [aux_sym__val_number_decimal_token4] = ACTIONS(3175), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3177), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [anon_sym_null] = ACTIONS(3264), + [aux_sym_cmd_identifier_token38] = ACTIONS(3266), + [aux_sym_cmd_identifier_token39] = ACTIONS(3266), + [aux_sym_cmd_identifier_token40] = ACTIONS(3266), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3268), + [aux_sym__val_number_decimal_token2] = ACTIONS(3270), + [aux_sym__val_number_decimal_token3] = ACTIONS(3272), + [aux_sym__val_number_decimal_token4] = ACTIONS(3274), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [933] = { - [sym_ctrl_do] = STATE(4912), - [sym_ctrl_if] = STATE(4912), - [sym_ctrl_match] = STATE(4912), - [sym_ctrl_try] = STATE(4912), - [sym__expression] = STATE(4912), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3819), - [sym_expr_parenthesized] = STATE(1445), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym_val_variable] = STATE(1446), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(2846), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3308), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3174), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3025), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1899), + [sym__unquoted_with_expr] = STATE(2202), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(933), - [anon_sym_true] = ACTIONS(3213), - [anon_sym_false] = ACTIONS(3213), - [anon_sym_null] = ACTIONS(3215), - [aux_sym_cmd_identifier_token38] = ACTIONS(439), - [aux_sym_cmd_identifier_token39] = ACTIONS(439), - [aux_sym_cmd_identifier_token40] = ACTIONS(439), - [sym__newline] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_PIPE] = ACTIONS(3217), - [anon_sym_err_GT_PIPE] = ACTIONS(3217), - [anon_sym_out_GT_PIPE] = ACTIONS(3217), - [anon_sym_e_GT_PIPE] = ACTIONS(3217), - [anon_sym_o_GT_PIPE] = ACTIONS(3217), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3217), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3217), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3217), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_RPAREN] = ACTIONS(3217), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_do] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3221), - [anon_sym_match] = ACTIONS(3223), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(3225), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [anon_sym_null] = ACTIONS(3264), + [aux_sym_cmd_identifier_token38] = ACTIONS(3266), + [aux_sym_cmd_identifier_token39] = ACTIONS(3266), + [aux_sym_cmd_identifier_token40] = ACTIONS(3266), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3268), + [aux_sym__val_number_decimal_token2] = ACTIONS(3270), + [aux_sym__val_number_decimal_token3] = ACTIONS(3272), + [aux_sym__val_number_decimal_token4] = ACTIONS(3274), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [934] = { - [sym_ctrl_do] = STATE(4912), - [sym_ctrl_if] = STATE(4912), - [sym_ctrl_match] = STATE(4912), - [sym_ctrl_try] = STATE(4912), - [sym__expression] = STATE(4912), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3819), - [sym_expr_parenthesized] = STATE(1445), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym_val_variable] = STATE(1446), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(2846), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3310), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3174), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3025), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1951), + [sym__unquoted_with_expr] = STATE(2204), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(934), - [anon_sym_true] = ACTIONS(3213), - [anon_sym_false] = ACTIONS(3213), - [anon_sym_null] = ACTIONS(3215), - [aux_sym_cmd_identifier_token38] = ACTIONS(439), - [aux_sym_cmd_identifier_token39] = ACTIONS(439), - [aux_sym_cmd_identifier_token40] = ACTIONS(439), - [sym__newline] = ACTIONS(3227), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_PIPE] = ACTIONS(3217), - [anon_sym_err_GT_PIPE] = ACTIONS(3217), - [anon_sym_out_GT_PIPE] = ACTIONS(3217), - [anon_sym_e_GT_PIPE] = ACTIONS(3217), - [anon_sym_o_GT_PIPE] = ACTIONS(3217), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3217), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3217), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3217), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_do] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3221), - [anon_sym_match] = ACTIONS(3223), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(3225), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [aux_sym_record_entry_token1] = ACTIONS(3229), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [anon_sym_null] = ACTIONS(3264), + [aux_sym_cmd_identifier_token38] = ACTIONS(3266), + [aux_sym_cmd_identifier_token39] = ACTIONS(3266), + [aux_sym_cmd_identifier_token40] = ACTIONS(3266), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3268), + [aux_sym__val_number_decimal_token2] = ACTIONS(3270), + [aux_sym__val_number_decimal_token3] = ACTIONS(3272), + [aux_sym__val_number_decimal_token4] = ACTIONS(3274), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [935] = { - [sym_ctrl_do] = STATE(4912), - [sym_ctrl_if] = STATE(4912), - [sym_ctrl_match] = STATE(4912), - [sym_ctrl_try] = STATE(4912), - [sym__expression] = STATE(4912), - [sym_expr_unary] = STATE(1687), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1687), - [sym__expr_binary_expression] = STATE(3819), - [sym_expr_parenthesized] = STATE(1445), - [sym_val_range] = STATE(3520), - [sym__value] = STATE(1687), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1643), - [sym_val_variable] = STATE(1446), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(2846), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3312), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3174), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3025), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1952), + [sym__unquoted_with_expr] = STATE(2206), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(935), - [anon_sym_true] = ACTIONS(3213), - [anon_sym_false] = ACTIONS(3213), - [anon_sym_null] = ACTIONS(3215), - [aux_sym_cmd_identifier_token38] = ACTIONS(439), - [aux_sym_cmd_identifier_token39] = ACTIONS(439), - [aux_sym_cmd_identifier_token40] = ACTIONS(439), - [sym__newline] = ACTIONS(3227), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_PIPE] = ACTIONS(3217), - [anon_sym_err_GT_PIPE] = ACTIONS(3217), - [anon_sym_out_GT_PIPE] = ACTIONS(3217), - [anon_sym_e_GT_PIPE] = ACTIONS(3217), - [anon_sym_o_GT_PIPE] = ACTIONS(3217), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3217), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3217), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3217), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_DOLLAR] = ACTIONS(393), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_do] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3221), - [anon_sym_match] = ACTIONS(3223), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_DOT_DOT] = ACTIONS(191), - [anon_sym_try] = ACTIONS(3225), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(213), - [anon_sym_DOT_DOT_LT] = ACTIONS(213), - [aux_sym__val_number_decimal_token1] = ACTIONS(431), - [aux_sym__val_number_decimal_token2] = ACTIONS(433), - [aux_sym__val_number_decimal_token3] = ACTIONS(435), - [aux_sym__val_number_decimal_token4] = ACTIONS(437), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(231), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [aux_sym_record_entry_token1] = ACTIONS(3231), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [anon_sym_null] = ACTIONS(3264), + [aux_sym_cmd_identifier_token38] = ACTIONS(3266), + [aux_sym_cmd_identifier_token39] = ACTIONS(3266), + [aux_sym_cmd_identifier_token40] = ACTIONS(3266), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3268), + [aux_sym__val_number_decimal_token2] = ACTIONS(3270), + [aux_sym__val_number_decimal_token3] = ACTIONS(3272), + [aux_sym__val_number_decimal_token4] = ACTIONS(3274), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [936] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2432), - [sym_expr_binary] = STATE(2438), - [sym__expr_binary_expression] = STATE(3326), - [sym_expr_parenthesized] = STATE(2438), - [sym__val_range] = STATE(7480), - [sym__val_range_with_end] = STATE(7292), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2399), - [sym_val_bool] = STATE(3156), - [sym_val_variable] = STATE(2399), - [sym_val_number] = STATE(2399), - [sym__val_number_decimal] = STATE(2937), - [sym__val_number] = STATE(2385), - [sym_val_duration] = STATE(2399), - [sym_val_filesize] = STATE(2399), - [sym_val_binary] = STATE(2399), - [sym_val_string] = STATE(2399), - [sym__str_double_quotes] = STATE(1975), - [sym_val_interpolated] = STATE(2399), - [sym__inter_single_quotes] = STATE(2384), - [sym__inter_double_quotes] = STATE(2390), - [sym_val_list] = STATE(2399), - [sym_val_record] = STATE(2399), - [sym_val_table] = STATE(2399), - [sym_val_closure] = STATE(2399), - [sym_unquoted] = STATE(2145), - [sym__unquoted_with_expr] = STATE(2450), - [sym__unquoted_anonymous_prefix] = STATE(6622), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3314), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3174), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3025), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1991), + [sym__unquoted_with_expr] = STATE(2208), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(936), - [anon_sym_true] = ACTIONS(3233), - [anon_sym_false] = ACTIONS(3233), - [anon_sym_null] = ACTIONS(3235), - [aux_sym_cmd_identifier_token38] = ACTIONS(3237), - [aux_sym_cmd_identifier_token39] = ACTIONS(3237), - [aux_sym_cmd_identifier_token40] = ACTIONS(3237), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3239), - [anon_sym_DOLLAR] = ACTIONS(3241), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3243), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3245), - [anon_sym_DOT_DOT_LT] = ACTIONS(3245), - [aux_sym__val_number_decimal_token1] = ACTIONS(3247), - [aux_sym__val_number_decimal_token2] = ACTIONS(3249), - [aux_sym__val_number_decimal_token3] = ACTIONS(3251), - [aux_sym__val_number_decimal_token4] = ACTIONS(3253), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3255), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3257), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [anon_sym_null] = ACTIONS(3264), + [aux_sym_cmd_identifier_token38] = ACTIONS(3266), + [aux_sym_cmd_identifier_token39] = ACTIONS(3266), + [aux_sym_cmd_identifier_token40] = ACTIONS(3266), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3268), + [aux_sym__val_number_decimal_token2] = ACTIONS(3270), + [aux_sym__val_number_decimal_token3] = ACTIONS(3272), + [aux_sym__val_number_decimal_token4] = ACTIONS(3274), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [937] = { - [sym_expr_unary] = STATE(1738), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1738), - [sym__expr_binary_expression] = STATE(3810), - [sym_expr_parenthesized] = STATE(1738), - [sym__val_range] = STATE(7580), - [sym__val_range_with_end] = STATE(7312), - [sym__value] = STATE(1738), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(3707), - [sym_val_variable] = STATE(1643), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(3383), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_unquoted] = STATE(1502), - [sym__unquoted_with_expr] = STATE(1786), - [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3316), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3174), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3025), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1912), + [sym__unquoted_with_expr] = STATE(2210), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(937), - [anon_sym_true] = ACTIONS(3259), - [anon_sym_false] = ACTIONS(3259), - [anon_sym_null] = ACTIONS(3261), - [aux_sym_cmd_identifier_token38] = ACTIONS(3263), - [aux_sym_cmd_identifier_token39] = ACTIONS(3263), - [aux_sym_cmd_identifier_token40] = ACTIONS(3263), - [anon_sym_LBRACK] = ACTIONS(3265), - [anon_sym_LPAREN] = ACTIONS(3267), - [anon_sym_DOLLAR] = ACTIONS(3269), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(3271), - [anon_sym_DOT_DOT] = ACTIONS(3273), - [aux_sym_expr_unary_token1] = ACTIONS(3275), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), - [anon_sym_DOT_DOT_LT] = ACTIONS(3277), - [aux_sym__val_number_decimal_token1] = ACTIONS(3279), - [aux_sym__val_number_decimal_token2] = ACTIONS(3281), - [aux_sym__val_number_decimal_token3] = ACTIONS(3283), - [aux_sym__val_number_decimal_token4] = ACTIONS(3285), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3287), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3289), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [anon_sym_null] = ACTIONS(3264), + [aux_sym_cmd_identifier_token38] = ACTIONS(3266), + [aux_sym_cmd_identifier_token39] = ACTIONS(3266), + [aux_sym_cmd_identifier_token40] = ACTIONS(3266), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3268), + [aux_sym__val_number_decimal_token2] = ACTIONS(3270), + [aux_sym__val_number_decimal_token3] = ACTIONS(3272), + [aux_sym__val_number_decimal_token4] = ACTIONS(3274), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [938] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2432), - [sym_expr_binary] = STATE(2438), - [sym__expr_binary_expression] = STATE(2462), - [sym_expr_parenthesized] = STATE(2438), - [sym__val_range] = STATE(7480), - [sym__val_range_with_end] = STATE(7292), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2399), - [sym_val_bool] = STATE(2149), - [sym_val_variable] = STATE(2399), - [sym_val_number] = STATE(2399), - [sym__val_number_decimal] = STATE(1386), - [sym__val_number] = STATE(2385), - [sym_val_duration] = STATE(2399), - [sym_val_filesize] = STATE(2399), - [sym_val_binary] = STATE(2399), - [sym_val_string] = STATE(2399), - [sym__str_double_quotes] = STATE(1975), - [sym_val_interpolated] = STATE(2399), - [sym__inter_single_quotes] = STATE(2384), - [sym__inter_double_quotes] = STATE(2390), - [sym_val_list] = STATE(2399), - [sym_val_record] = STATE(2399), - [sym_val_table] = STATE(2399), - [sym_val_closure] = STATE(2399), - [sym_unquoted] = STATE(2190), - [sym__unquoted_with_expr] = STATE(2464), - [sym__unquoted_anonymous_prefix] = STATE(6622), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3318), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3174), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3025), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1947), + [sym__unquoted_with_expr] = STATE(2212), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(938), - [anon_sym_true] = ACTIONS(3291), - [anon_sym_false] = ACTIONS(3291), - [anon_sym_null] = ACTIONS(3293), - [aux_sym_cmd_identifier_token38] = ACTIONS(3295), - [aux_sym_cmd_identifier_token39] = ACTIONS(3295), - [aux_sym_cmd_identifier_token40] = ACTIONS(3295), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3239), - [anon_sym_DOLLAR] = ACTIONS(3241), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3243), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3245), - [anon_sym_DOT_DOT_LT] = ACTIONS(3245), - [aux_sym__val_number_decimal_token1] = ACTIONS(3297), - [aux_sym__val_number_decimal_token2] = ACTIONS(3299), - [aux_sym__val_number_decimal_token3] = ACTIONS(3301), - [aux_sym__val_number_decimal_token4] = ACTIONS(3303), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3305), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3257), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [anon_sym_null] = ACTIONS(3264), + [aux_sym_cmd_identifier_token38] = ACTIONS(3266), + [aux_sym_cmd_identifier_token39] = ACTIONS(3266), + [aux_sym_cmd_identifier_token40] = ACTIONS(3266), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3268), + [aux_sym__val_number_decimal_token2] = ACTIONS(3270), + [aux_sym__val_number_decimal_token3] = ACTIONS(3272), + [aux_sym__val_number_decimal_token4] = ACTIONS(3274), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [939] = { - [sym_expr_unary] = STATE(1738), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1738), - [sym__expr_binary_expression] = STATE(3701), - [sym_expr_parenthesized] = STATE(1738), - [sym__val_range] = STATE(7580), - [sym__val_range_with_end] = STATE(7312), - [sym__value] = STATE(1738), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(3522), - [sym_val_variable] = STATE(1643), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(3346), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_unquoted] = STATE(1497), - [sym__unquoted_with_expr] = STATE(1778), - [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(3320), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3174), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(3025), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1934), + [sym__unquoted_with_expr] = STATE(2214), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(939), - [anon_sym_true] = ACTIONS(3307), - [anon_sym_false] = ACTIONS(3307), - [anon_sym_null] = ACTIONS(3309), - [aux_sym_cmd_identifier_token38] = ACTIONS(3311), - [aux_sym_cmd_identifier_token39] = ACTIONS(3311), - [aux_sym_cmd_identifier_token40] = ACTIONS(3311), - [anon_sym_LBRACK] = ACTIONS(3265), - [anon_sym_LPAREN] = ACTIONS(3267), - [anon_sym_DOLLAR] = ACTIONS(3313), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(3271), - [anon_sym_DOT_DOT] = ACTIONS(3273), - [aux_sym_expr_unary_token1] = ACTIONS(3315), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), - [anon_sym_DOT_DOT_LT] = ACTIONS(3277), - [aux_sym__val_number_decimal_token1] = ACTIONS(3317), - [aux_sym__val_number_decimal_token2] = ACTIONS(3319), - [aux_sym__val_number_decimal_token3] = ACTIONS(3321), - [aux_sym__val_number_decimal_token4] = ACTIONS(3323), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3325), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3289), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3262), + [anon_sym_false] = ACTIONS(3262), + [anon_sym_null] = ACTIONS(3264), + [aux_sym_cmd_identifier_token38] = ACTIONS(3266), + [aux_sym_cmd_identifier_token39] = ACTIONS(3266), + [aux_sym_cmd_identifier_token40] = ACTIONS(3266), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3268), + [aux_sym__val_number_decimal_token2] = ACTIONS(3270), + [aux_sym__val_number_decimal_token3] = ACTIONS(3272), + [aux_sym__val_number_decimal_token4] = ACTIONS(3274), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [940] = { - [sym_expr_unary] = STATE(1738), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1738), - [sym__expr_binary_expression] = STATE(1739), - [sym_expr_parenthesized] = STATE(1738), - [sym__val_range] = STATE(7580), - [sym__val_range_with_end] = STATE(7312), - [sym__value] = STATE(1738), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1978), - [sym_val_variable] = STATE(1643), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1287), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_unquoted] = STATE(1485), - [sym__unquoted_with_expr] = STATE(1740), - [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_expr_unary] = STATE(2312), + [sym__expr_unary_minus] = STATE(2328), + [sym_expr_binary_parenthesized] = STATE(2312), + [sym__expr_binary_expression_parenthesized] = STATE(2259), + [sym_expr_parenthesized] = STATE(2312), + [sym__val_range] = STATE(7854), + [sym__val_range_with_end] = STATE(7540), + [sym__value] = STATE(2312), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(2120), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(1417), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(1916), + [sym__unquoted_with_expr] = STATE(2093), + [sym__unquoted_anonymous_prefix] = STATE(7116), [sym_comment] = STATE(940), - [anon_sym_true] = ACTIONS(3327), - [anon_sym_false] = ACTIONS(3327), - [anon_sym_null] = ACTIONS(3329), - [aux_sym_cmd_identifier_token38] = ACTIONS(3331), - [aux_sym_cmd_identifier_token39] = ACTIONS(3331), - [aux_sym_cmd_identifier_token40] = ACTIONS(3331), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3333), - [anon_sym_DOLLAR] = ACTIONS(3335), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3273), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), - [anon_sym_DOT_DOT_LT] = ACTIONS(3277), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3289), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2823), + [anon_sym_true] = ACTIONS(3246), + [anon_sym_false] = ACTIONS(3246), + [anon_sym_null] = ACTIONS(3248), + [aux_sym_cmd_identifier_token38] = ACTIONS(3250), + [aux_sym_cmd_identifier_token39] = ACTIONS(3250), + [aux_sym_cmd_identifier_token40] = ACTIONS(3250), + [sym__newline] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(475), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_DOLLAR] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_LBRACE] = ACTIONS(493), + [anon_sym_DOT_DOT] = ACTIONS(3230), + [aux_sym_expr_unary_token1] = ACTIONS(499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3232), + [anon_sym_DOT_DOT_LT] = ACTIONS(3232), + [aux_sym__val_number_decimal_token1] = ACTIONS(3252), + [aux_sym__val_number_decimal_token2] = ACTIONS(3254), + [aux_sym__val_number_decimal_token3] = ACTIONS(3256), + [aux_sym__val_number_decimal_token4] = ACTIONS(3258), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [941] = { - [sym_expr_unary] = STATE(1738), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1738), - [sym__expr_binary_expression] = STATE(3702), - [sym_expr_parenthesized] = STATE(1738), - [sym__val_range] = STATE(7580), - [sym__val_range_with_end] = STATE(7312), - [sym__value] = STATE(1738), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(3522), - [sym_val_variable] = STATE(1643), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(3346), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_unquoted] = STATE(1498), - [sym__unquoted_with_expr] = STATE(1780), - [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_ctrl_do] = STATE(5022), + [sym_ctrl_if] = STATE(5022), + [sym_ctrl_match] = STATE(5022), + [sym_ctrl_try] = STATE(5022), + [sym__expression] = STATE(5022), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3881), + [sym_expr_parenthesized] = STATE(1922), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(1929), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(3136), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), [sym_comment] = STATE(941), - [anon_sym_true] = ACTIONS(3307), - [anon_sym_false] = ACTIONS(3307), - [anon_sym_null] = ACTIONS(3309), - [aux_sym_cmd_identifier_token38] = ACTIONS(3311), - [aux_sym_cmd_identifier_token39] = ACTIONS(3311), - [aux_sym_cmd_identifier_token40] = ACTIONS(3311), - [anon_sym_LBRACK] = ACTIONS(3265), - [anon_sym_LPAREN] = ACTIONS(3267), - [anon_sym_DOLLAR] = ACTIONS(3313), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(3271), - [anon_sym_DOT_DOT] = ACTIONS(3273), - [aux_sym_expr_unary_token1] = ACTIONS(3315), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), - [anon_sym_DOT_DOT_LT] = ACTIONS(3277), - [aux_sym__val_number_decimal_token1] = ACTIONS(3317), - [aux_sym__val_number_decimal_token2] = ACTIONS(3319), - [aux_sym__val_number_decimal_token3] = ACTIONS(3321), - [aux_sym__val_number_decimal_token4] = ACTIONS(3323), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3325), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3289), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [aux_sym_cmd_identifier_token38] = ACTIONS(443), + [aux_sym_cmd_identifier_token39] = ACTIONS(443), + [aux_sym_cmd_identifier_token40] = ACTIONS(443), + [sym__newline] = ACTIONS(3282), + [anon_sym_SEMI] = ACTIONS(3284), + [anon_sym_PIPE] = ACTIONS(3284), + [anon_sym_err_GT_PIPE] = ACTIONS(3284), + [anon_sym_out_GT_PIPE] = ACTIONS(3284), + [anon_sym_e_GT_PIPE] = ACTIONS(3284), + [anon_sym_o_GT_PIPE] = ACTIONS(3284), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3284), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3284), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3284), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3284), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_do] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3288), + [anon_sym_match] = ACTIONS(3290), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_RBRACE] = ACTIONS(3284), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(3292), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(435), + [aux_sym__val_number_decimal_token2] = ACTIONS(437), + [aux_sym__val_number_decimal_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token4] = ACTIONS(441), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_record_entry_token1] = ACTIONS(3294), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [942] = { - [sym_expr_unary] = STATE(1738), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1738), - [sym__expr_binary_expression] = STATE(2330), - [sym_expr_parenthesized] = STATE(1738), - [sym__val_range] = STATE(7580), - [sym__val_range_with_end] = STATE(7312), - [sym__value] = STATE(1738), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1978), - [sym_val_variable] = STATE(1643), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1287), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_unquoted] = STATE(1486), - [sym__unquoted_with_expr] = STATE(1742), - [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_ctrl_do] = STATE(5022), + [sym_ctrl_if] = STATE(5022), + [sym_ctrl_match] = STATE(5022), + [sym_ctrl_try] = STATE(5022), + [sym__expression] = STATE(5022), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3881), + [sym_expr_parenthesized] = STATE(1922), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(1929), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(3136), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), [sym_comment] = STATE(942), - [anon_sym_true] = ACTIONS(3327), - [anon_sym_false] = ACTIONS(3327), - [anon_sym_null] = ACTIONS(3329), - [aux_sym_cmd_identifier_token38] = ACTIONS(3331), - [aux_sym_cmd_identifier_token39] = ACTIONS(3331), - [aux_sym_cmd_identifier_token40] = ACTIONS(3331), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3333), - [anon_sym_DOLLAR] = ACTIONS(3335), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3273), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), - [anon_sym_DOT_DOT_LT] = ACTIONS(3277), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3289), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [aux_sym_cmd_identifier_token38] = ACTIONS(443), + [aux_sym_cmd_identifier_token39] = ACTIONS(443), + [aux_sym_cmd_identifier_token40] = ACTIONS(443), + [sym__newline] = ACTIONS(3282), + [anon_sym_SEMI] = ACTIONS(3284), + [anon_sym_PIPE] = ACTIONS(3284), + [anon_sym_err_GT_PIPE] = ACTIONS(3284), + [anon_sym_out_GT_PIPE] = ACTIONS(3284), + [anon_sym_e_GT_PIPE] = ACTIONS(3284), + [anon_sym_o_GT_PIPE] = ACTIONS(3284), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3284), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3284), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3284), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3284), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_do] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3288), + [anon_sym_match] = ACTIONS(3290), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_RBRACE] = ACTIONS(3284), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(3292), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(435), + [aux_sym__val_number_decimal_token2] = ACTIONS(437), + [aux_sym__val_number_decimal_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token4] = ACTIONS(441), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [aux_sym_record_entry_token1] = ACTIONS(3296), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [943] = { - [sym_expr_unary] = STATE(1738), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1738), - [sym__expr_binary_expression] = STATE(3703), - [sym_expr_parenthesized] = STATE(1738), - [sym__val_range] = STATE(7580), - [sym__val_range_with_end] = STATE(7312), - [sym__value] = STATE(1738), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(3522), - [sym_val_variable] = STATE(1643), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(3346), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_unquoted] = STATE(1499), - [sym__unquoted_with_expr] = STATE(1781), - [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_ctrl_do] = STATE(5022), + [sym_ctrl_if] = STATE(5022), + [sym_ctrl_match] = STATE(5022), + [sym_ctrl_try] = STATE(5022), + [sym__expression] = STATE(5022), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3881), + [sym_expr_parenthesized] = STATE(1922), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(1929), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(3136), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), [sym_comment] = STATE(943), - [anon_sym_true] = ACTIONS(3307), - [anon_sym_false] = ACTIONS(3307), - [anon_sym_null] = ACTIONS(3309), - [aux_sym_cmd_identifier_token38] = ACTIONS(3311), - [aux_sym_cmd_identifier_token39] = ACTIONS(3311), - [aux_sym_cmd_identifier_token40] = ACTIONS(3311), - [anon_sym_LBRACK] = ACTIONS(3265), - [anon_sym_LPAREN] = ACTIONS(3267), - [anon_sym_DOLLAR] = ACTIONS(3313), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(3271), - [anon_sym_DOT_DOT] = ACTIONS(3273), - [aux_sym_expr_unary_token1] = ACTIONS(3315), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), - [anon_sym_DOT_DOT_LT] = ACTIONS(3277), - [aux_sym__val_number_decimal_token1] = ACTIONS(3317), - [aux_sym__val_number_decimal_token2] = ACTIONS(3319), - [aux_sym__val_number_decimal_token3] = ACTIONS(3321), - [aux_sym__val_number_decimal_token4] = ACTIONS(3323), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3325), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3289), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [aux_sym_cmd_identifier_token38] = ACTIONS(443), + [aux_sym_cmd_identifier_token39] = ACTIONS(443), + [aux_sym_cmd_identifier_token40] = ACTIONS(443), + [sym__newline] = ACTIONS(3284), + [anon_sym_SEMI] = ACTIONS(3284), + [anon_sym_PIPE] = ACTIONS(3284), + [anon_sym_err_GT_PIPE] = ACTIONS(3284), + [anon_sym_out_GT_PIPE] = ACTIONS(3284), + [anon_sym_e_GT_PIPE] = ACTIONS(3284), + [anon_sym_o_GT_PIPE] = ACTIONS(3284), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3284), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3284), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3284), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3284), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(395), + [anon_sym_RPAREN] = ACTIONS(3284), + [anon_sym_DOLLAR] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_do] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3288), + [anon_sym_match] = ACTIONS(3290), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_RBRACE] = ACTIONS(3284), + [anon_sym_DOT_DOT] = ACTIONS(193), + [anon_sym_try] = ACTIONS(3292), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(215), + [anon_sym_DOT_DOT_LT] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(435), + [aux_sym__val_number_decimal_token2] = ACTIONS(437), + [aux_sym__val_number_decimal_token3] = ACTIONS(439), + [aux_sym__val_number_decimal_token4] = ACTIONS(441), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [944] = { - [sym_expr_unary] = STATE(1738), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1738), - [sym__expr_binary_expression] = STATE(2297), - [sym_expr_parenthesized] = STATE(1738), - [sym__val_range] = STATE(7580), - [sym__val_range_with_end] = STATE(7312), - [sym__value] = STATE(1738), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1978), - [sym_val_variable] = STATE(1643), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1287), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_unquoted] = STATE(1488), - [sym__unquoted_with_expr] = STATE(1743), - [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_expr_unary] = STATE(2512), + [sym__expr_unary_minus] = STATE(2510), + [sym_expr_binary] = STATE(2512), + [sym__expr_binary_expression] = STATE(3338), + [sym_expr_parenthesized] = STATE(2512), + [sym__val_range] = STATE(7869), + [sym__val_range_with_end] = STATE(7524), + [sym__value] = STATE(2512), + [sym_val_nothing] = STATE(2441), + [sym_val_bool] = STATE(3183), + [sym_val_variable] = STATE(2441), + [sym_val_number] = STATE(2441), + [sym__val_number_decimal] = STATE(3024), + [sym__val_number] = STATE(2488), + [sym_val_duration] = STATE(2441), + [sym_val_filesize] = STATE(2441), + [sym_val_binary] = STATE(2441), + [sym_val_string] = STATE(2441), + [sym__raw_str] = STATE(2065), + [sym__str_double_quotes] = STATE(2065), + [sym_val_interpolated] = STATE(2441), + [sym__inter_single_quotes] = STATE(2563), + [sym__inter_double_quotes] = STATE(2436), + [sym_val_list] = STATE(2441), + [sym_val_record] = STATE(2441), + [sym_val_table] = STATE(2441), + [sym_val_closure] = STATE(2441), + [sym_unquoted] = STATE(2083), + [sym__unquoted_with_expr] = STATE(2482), + [sym__unquoted_anonymous_prefix] = STATE(6886), [sym_comment] = STATE(944), - [anon_sym_true] = ACTIONS(3327), - [anon_sym_false] = ACTIONS(3327), - [anon_sym_null] = ACTIONS(3329), - [aux_sym_cmd_identifier_token38] = ACTIONS(3331), - [aux_sym_cmd_identifier_token39] = ACTIONS(3331), - [aux_sym_cmd_identifier_token40] = ACTIONS(3331), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3333), - [anon_sym_DOLLAR] = ACTIONS(3335), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3273), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), - [anon_sym_DOT_DOT_LT] = ACTIONS(3277), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3289), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(3298), + [anon_sym_false] = ACTIONS(3298), + [anon_sym_null] = ACTIONS(3300), + [aux_sym_cmd_identifier_token38] = ACTIONS(3302), + [aux_sym_cmd_identifier_token39] = ACTIONS(3302), + [aux_sym_cmd_identifier_token40] = ACTIONS(3302), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(3304), + [anon_sym_DOLLAR] = ACTIONS(3306), + [anon_sym_DASH] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3308), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3310), + [anon_sym_DOT_DOT_LT] = ACTIONS(3310), + [aux_sym__val_number_decimal_token1] = ACTIONS(3312), + [aux_sym__val_number_decimal_token2] = ACTIONS(3314), + [aux_sym__val_number_decimal_token3] = ACTIONS(3316), + [aux_sym__val_number_decimal_token4] = ACTIONS(3318), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(3320), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3322), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(123), }, [945] = { - [sym_expr_unary] = STATE(1738), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1738), - [sym__expr_binary_expression] = STATE(2201), - [sym_expr_parenthesized] = STATE(1738), - [sym__val_range] = STATE(7580), - [sym__val_range_with_end] = STATE(7312), - [sym__value] = STATE(1738), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1978), - [sym_val_variable] = STATE(1643), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1287), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_unquoted] = STATE(1489), - [sym__unquoted_with_expr] = STATE(1744), - [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_expr_unary] = STATE(2512), + [sym__expr_unary_minus] = STATE(2510), + [sym_expr_binary] = STATE(2512), + [sym__expr_binary_expression] = STATE(3355), + [sym_expr_parenthesized] = STATE(2512), + [sym__val_range] = STATE(7869), + [sym__val_range_with_end] = STATE(7524), + [sym__value] = STATE(2512), + [sym_val_nothing] = STATE(2441), + [sym_val_bool] = STATE(3183), + [sym_val_variable] = STATE(2441), + [sym_val_number] = STATE(2441), + [sym__val_number_decimal] = STATE(3024), + [sym__val_number] = STATE(2488), + [sym_val_duration] = STATE(2441), + [sym_val_filesize] = STATE(2441), + [sym_val_binary] = STATE(2441), + [sym_val_string] = STATE(2441), + [sym__raw_str] = STATE(2065), + [sym__str_double_quotes] = STATE(2065), + [sym_val_interpolated] = STATE(2441), + [sym__inter_single_quotes] = STATE(2563), + [sym__inter_double_quotes] = STATE(2436), + [sym_val_list] = STATE(2441), + [sym_val_record] = STATE(2441), + [sym_val_table] = STATE(2441), + [sym_val_closure] = STATE(2441), + [sym_unquoted] = STATE(2242), + [sym__unquoted_with_expr] = STATE(2548), + [sym__unquoted_anonymous_prefix] = STATE(6886), [sym_comment] = STATE(945), - [anon_sym_true] = ACTIONS(3327), - [anon_sym_false] = ACTIONS(3327), - [anon_sym_null] = ACTIONS(3329), - [aux_sym_cmd_identifier_token38] = ACTIONS(3331), - [aux_sym_cmd_identifier_token39] = ACTIONS(3331), - [aux_sym_cmd_identifier_token40] = ACTIONS(3331), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3333), - [anon_sym_DOLLAR] = ACTIONS(3335), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3273), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), - [anon_sym_DOT_DOT_LT] = ACTIONS(3277), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3289), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(3298), + [anon_sym_false] = ACTIONS(3298), + [anon_sym_null] = ACTIONS(3300), + [aux_sym_cmd_identifier_token38] = ACTIONS(3302), + [aux_sym_cmd_identifier_token39] = ACTIONS(3302), + [aux_sym_cmd_identifier_token40] = ACTIONS(3302), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(3304), + [anon_sym_DOLLAR] = ACTIONS(3306), + [anon_sym_DASH] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3308), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3310), + [anon_sym_DOT_DOT_LT] = ACTIONS(3310), + [aux_sym__val_number_decimal_token1] = ACTIONS(3312), + [aux_sym__val_number_decimal_token2] = ACTIONS(3314), + [aux_sym__val_number_decimal_token3] = ACTIONS(3316), + [aux_sym__val_number_decimal_token4] = ACTIONS(3318), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(3320), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3322), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(123), }, [946] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2432), - [sym_expr_binary] = STATE(2438), - [sym__expr_binary_expression] = STATE(2466), - [sym_expr_parenthesized] = STATE(2438), - [sym__val_range] = STATE(7480), - [sym__val_range_with_end] = STATE(7292), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2399), - [sym_val_bool] = STATE(2149), - [sym_val_variable] = STATE(2399), - [sym_val_number] = STATE(2399), - [sym__val_number_decimal] = STATE(1386), - [sym__val_number] = STATE(2385), - [sym_val_duration] = STATE(2399), - [sym_val_filesize] = STATE(2399), - [sym_val_binary] = STATE(2399), - [sym_val_string] = STATE(2399), - [sym__str_double_quotes] = STATE(1975), - [sym_val_interpolated] = STATE(2399), - [sym__inter_single_quotes] = STATE(2384), - [sym__inter_double_quotes] = STATE(2390), - [sym_val_list] = STATE(2399), - [sym_val_record] = STATE(2399), - [sym_val_table] = STATE(2399), - [sym_val_closure] = STATE(2399), - [sym_unquoted] = STATE(2191), - [sym__unquoted_with_expr] = STATE(2467), - [sym__unquoted_anonymous_prefix] = STATE(6622), + [sym_expr_unary] = STATE(2512), + [sym__expr_unary_minus] = STATE(2510), + [sym_expr_binary] = STATE(2512), + [sym__expr_binary_expression] = STATE(3356), + [sym_expr_parenthesized] = STATE(2512), + [sym__val_range] = STATE(7869), + [sym__val_range_with_end] = STATE(7524), + [sym__value] = STATE(2512), + [sym_val_nothing] = STATE(2441), + [sym_val_bool] = STATE(3183), + [sym_val_variable] = STATE(2441), + [sym_val_number] = STATE(2441), + [sym__val_number_decimal] = STATE(3024), + [sym__val_number] = STATE(2488), + [sym_val_duration] = STATE(2441), + [sym_val_filesize] = STATE(2441), + [sym_val_binary] = STATE(2441), + [sym_val_string] = STATE(2441), + [sym__raw_str] = STATE(2065), + [sym__str_double_quotes] = STATE(2065), + [sym_val_interpolated] = STATE(2441), + [sym__inter_single_quotes] = STATE(2563), + [sym__inter_double_quotes] = STATE(2436), + [sym_val_list] = STATE(2441), + [sym_val_record] = STATE(2441), + [sym_val_table] = STATE(2441), + [sym_val_closure] = STATE(2441), + [sym_unquoted] = STATE(2243), + [sym__unquoted_with_expr] = STATE(2554), + [sym__unquoted_anonymous_prefix] = STATE(6886), [sym_comment] = STATE(946), - [anon_sym_true] = ACTIONS(3291), - [anon_sym_false] = ACTIONS(3291), - [anon_sym_null] = ACTIONS(3293), - [aux_sym_cmd_identifier_token38] = ACTIONS(3295), - [aux_sym_cmd_identifier_token39] = ACTIONS(3295), - [aux_sym_cmd_identifier_token40] = ACTIONS(3295), + [anon_sym_true] = ACTIONS(3298), + [anon_sym_false] = ACTIONS(3298), + [anon_sym_null] = ACTIONS(3300), + [aux_sym_cmd_identifier_token38] = ACTIONS(3302), + [aux_sym_cmd_identifier_token39] = ACTIONS(3302), + [aux_sym_cmd_identifier_token40] = ACTIONS(3302), [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3239), - [anon_sym_DOLLAR] = ACTIONS(3241), + [anon_sym_LPAREN] = ACTIONS(3304), + [anon_sym_DOLLAR] = ACTIONS(3306), [anon_sym_DASH] = ACTIONS(53), [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3243), + [anon_sym_DOT_DOT] = ACTIONS(3308), [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3245), - [anon_sym_DOT_DOT_LT] = ACTIONS(3245), - [aux_sym__val_number_decimal_token1] = ACTIONS(3297), - [aux_sym__val_number_decimal_token2] = ACTIONS(3299), - [aux_sym__val_number_decimal_token3] = ACTIONS(3301), - [aux_sym__val_number_decimal_token4] = ACTIONS(3303), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3310), + [anon_sym_DOT_DOT_LT] = ACTIONS(3310), + [aux_sym__val_number_decimal_token1] = ACTIONS(3312), + [aux_sym__val_number_decimal_token2] = ACTIONS(3314), + [aux_sym__val_number_decimal_token3] = ACTIONS(3316), + [aux_sym__val_number_decimal_token4] = ACTIONS(3318), [aux_sym__val_number_token1] = ACTIONS(103), [aux_sym__val_number_token2] = ACTIONS(103), [aux_sym__val_number_token3] = ACTIONS(103), [anon_sym_0b] = ACTIONS(105), [anon_sym_0o] = ACTIONS(107), [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3305), + [sym_val_date] = ACTIONS(3320), [anon_sym_DQUOTE] = ACTIONS(111), [sym__str_single_quotes] = ACTIONS(113), [sym__str_back_ticks] = ACTIONS(113), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3257), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3322), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(123), }, [947] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2432), - [sym_expr_binary] = STATE(2438), - [sym__expr_binary_expression] = STATE(2468), - [sym_expr_parenthesized] = STATE(2438), - [sym__val_range] = STATE(7480), - [sym__val_range_with_end] = STATE(7292), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2399), - [sym_val_bool] = STATE(2149), - [sym_val_variable] = STATE(2399), - [sym_val_number] = STATE(2399), - [sym__val_number_decimal] = STATE(1386), - [sym__val_number] = STATE(2385), - [sym_val_duration] = STATE(2399), - [sym_val_filesize] = STATE(2399), - [sym_val_binary] = STATE(2399), - [sym_val_string] = STATE(2399), - [sym__str_double_quotes] = STATE(1975), - [sym_val_interpolated] = STATE(2399), - [sym__inter_single_quotes] = STATE(2384), - [sym__inter_double_quotes] = STATE(2390), - [sym_val_list] = STATE(2399), - [sym_val_record] = STATE(2399), - [sym_val_table] = STATE(2399), - [sym_val_closure] = STATE(2399), - [sym_unquoted] = STATE(2192), - [sym__unquoted_with_expr] = STATE(2469), - [sym__unquoted_anonymous_prefix] = STATE(6622), + [sym_expr_unary] = STATE(2512), + [sym__expr_unary_minus] = STATE(2510), + [sym_expr_binary] = STATE(2512), + [sym__expr_binary_expression] = STATE(3357), + [sym_expr_parenthesized] = STATE(2512), + [sym__val_range] = STATE(7869), + [sym__val_range_with_end] = STATE(7524), + [sym__value] = STATE(2512), + [sym_val_nothing] = STATE(2441), + [sym_val_bool] = STATE(3183), + [sym_val_variable] = STATE(2441), + [sym_val_number] = STATE(2441), + [sym__val_number_decimal] = STATE(3024), + [sym__val_number] = STATE(2488), + [sym_val_duration] = STATE(2441), + [sym_val_filesize] = STATE(2441), + [sym_val_binary] = STATE(2441), + [sym_val_string] = STATE(2441), + [sym__raw_str] = STATE(2065), + [sym__str_double_quotes] = STATE(2065), + [sym_val_interpolated] = STATE(2441), + [sym__inter_single_quotes] = STATE(2563), + [sym__inter_double_quotes] = STATE(2436), + [sym_val_list] = STATE(2441), + [sym_val_record] = STATE(2441), + [sym_val_table] = STATE(2441), + [sym_val_closure] = STATE(2441), + [sym_unquoted] = STATE(2080), + [sym__unquoted_with_expr] = STATE(2561), + [sym__unquoted_anonymous_prefix] = STATE(6886), [sym_comment] = STATE(947), - [anon_sym_true] = ACTIONS(3291), - [anon_sym_false] = ACTIONS(3291), - [anon_sym_null] = ACTIONS(3293), - [aux_sym_cmd_identifier_token38] = ACTIONS(3295), - [aux_sym_cmd_identifier_token39] = ACTIONS(3295), - [aux_sym_cmd_identifier_token40] = ACTIONS(3295), + [anon_sym_true] = ACTIONS(3298), + [anon_sym_false] = ACTIONS(3298), + [anon_sym_null] = ACTIONS(3300), + [aux_sym_cmd_identifier_token38] = ACTIONS(3302), + [aux_sym_cmd_identifier_token39] = ACTIONS(3302), + [aux_sym_cmd_identifier_token40] = ACTIONS(3302), [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3239), - [anon_sym_DOLLAR] = ACTIONS(3241), + [anon_sym_LPAREN] = ACTIONS(3304), + [anon_sym_DOLLAR] = ACTIONS(3306), [anon_sym_DASH] = ACTIONS(53), [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3243), + [anon_sym_DOT_DOT] = ACTIONS(3308), [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3245), - [anon_sym_DOT_DOT_LT] = ACTIONS(3245), - [aux_sym__val_number_decimal_token1] = ACTIONS(3297), - [aux_sym__val_number_decimal_token2] = ACTIONS(3299), - [aux_sym__val_number_decimal_token3] = ACTIONS(3301), - [aux_sym__val_number_decimal_token4] = ACTIONS(3303), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3310), + [anon_sym_DOT_DOT_LT] = ACTIONS(3310), + [aux_sym__val_number_decimal_token1] = ACTIONS(3312), + [aux_sym__val_number_decimal_token2] = ACTIONS(3314), + [aux_sym__val_number_decimal_token3] = ACTIONS(3316), + [aux_sym__val_number_decimal_token4] = ACTIONS(3318), [aux_sym__val_number_token1] = ACTIONS(103), [aux_sym__val_number_token2] = ACTIONS(103), [aux_sym__val_number_token3] = ACTIONS(103), [anon_sym_0b] = ACTIONS(105), [anon_sym_0o] = ACTIONS(107), [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3305), + [sym_val_date] = ACTIONS(3320), [anon_sym_DQUOTE] = ACTIONS(111), [sym__str_single_quotes] = ACTIONS(113), [sym__str_back_ticks] = ACTIONS(113), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3257), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3322), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(123), }, [948] = { - [sym_expr_unary] = STATE(1738), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1738), - [sym__expr_binary_expression] = STATE(3704), - [sym_expr_parenthesized] = STATE(1738), - [sym__val_range] = STATE(7580), - [sym__val_range_with_end] = STATE(7312), - [sym__value] = STATE(1738), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(3522), - [sym_val_variable] = STATE(1643), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(3346), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_unquoted] = STATE(1500), - [sym__unquoted_with_expr] = STATE(1783), - [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_expr_unary] = STATE(2512), + [sym__expr_unary_minus] = STATE(2510), + [sym_expr_binary] = STATE(2512), + [sym__expr_binary_expression] = STATE(3351), + [sym_expr_parenthesized] = STATE(2512), + [sym__val_range] = STATE(7869), + [sym__val_range_with_end] = STATE(7524), + [sym__value] = STATE(2512), + [sym_val_nothing] = STATE(2441), + [sym_val_bool] = STATE(3183), + [sym_val_variable] = STATE(2441), + [sym_val_number] = STATE(2441), + [sym__val_number_decimal] = STATE(3024), + [sym__val_number] = STATE(2488), + [sym_val_duration] = STATE(2441), + [sym_val_filesize] = STATE(2441), + [sym_val_binary] = STATE(2441), + [sym_val_string] = STATE(2441), + [sym__raw_str] = STATE(2065), + [sym__str_double_quotes] = STATE(2065), + [sym_val_interpolated] = STATE(2441), + [sym__inter_single_quotes] = STATE(2563), + [sym__inter_double_quotes] = STATE(2436), + [sym_val_list] = STATE(2441), + [sym_val_record] = STATE(2441), + [sym_val_table] = STATE(2441), + [sym_val_closure] = STATE(2441), + [sym_unquoted] = STATE(2216), + [sym__unquoted_with_expr] = STATE(2523), + [sym__unquoted_anonymous_prefix] = STATE(6886), [sym_comment] = STATE(948), - [anon_sym_true] = ACTIONS(3307), - [anon_sym_false] = ACTIONS(3307), - [anon_sym_null] = ACTIONS(3309), - [aux_sym_cmd_identifier_token38] = ACTIONS(3311), - [aux_sym_cmd_identifier_token39] = ACTIONS(3311), - [aux_sym_cmd_identifier_token40] = ACTIONS(3311), - [anon_sym_LBRACK] = ACTIONS(3265), - [anon_sym_LPAREN] = ACTIONS(3267), - [anon_sym_DOLLAR] = ACTIONS(3313), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(3271), - [anon_sym_DOT_DOT] = ACTIONS(3273), - [aux_sym_expr_unary_token1] = ACTIONS(3315), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), - [anon_sym_DOT_DOT_LT] = ACTIONS(3277), - [aux_sym__val_number_decimal_token1] = ACTIONS(3317), - [aux_sym__val_number_decimal_token2] = ACTIONS(3319), - [aux_sym__val_number_decimal_token3] = ACTIONS(3321), - [aux_sym__val_number_decimal_token4] = ACTIONS(3323), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3325), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3289), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(3298), + [anon_sym_false] = ACTIONS(3298), + [anon_sym_null] = ACTIONS(3300), + [aux_sym_cmd_identifier_token38] = ACTIONS(3302), + [aux_sym_cmd_identifier_token39] = ACTIONS(3302), + [aux_sym_cmd_identifier_token40] = ACTIONS(3302), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(3304), + [anon_sym_DOLLAR] = ACTIONS(3306), + [anon_sym_DASH] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3308), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3310), + [anon_sym_DOT_DOT_LT] = ACTIONS(3310), + [aux_sym__val_number_decimal_token1] = ACTIONS(3312), + [aux_sym__val_number_decimal_token2] = ACTIONS(3314), + [aux_sym__val_number_decimal_token3] = ACTIONS(3316), + [aux_sym__val_number_decimal_token4] = ACTIONS(3318), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(3320), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3322), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(123), }, [949] = { - [sym_expr_unary] = STATE(1738), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1738), - [sym__expr_binary_expression] = STATE(3705), - [sym_expr_parenthesized] = STATE(1738), - [sym__val_range] = STATE(7580), - [sym__val_range_with_end] = STATE(7312), - [sym__value] = STATE(1738), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(3522), - [sym_val_variable] = STATE(1643), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(3346), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_unquoted] = STATE(1501), - [sym__unquoted_with_expr] = STATE(1784), - [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_expr_unary] = STATE(2512), + [sym__expr_unary_minus] = STATE(2510), + [sym_expr_binary] = STATE(2512), + [sym__expr_binary_expression] = STATE(3358), + [sym_expr_parenthesized] = STATE(2512), + [sym__val_range] = STATE(7869), + [sym__val_range_with_end] = STATE(7524), + [sym__value] = STATE(2512), + [sym_val_nothing] = STATE(2441), + [sym_val_bool] = STATE(3183), + [sym_val_variable] = STATE(2441), + [sym_val_number] = STATE(2441), + [sym__val_number_decimal] = STATE(3024), + [sym__val_number] = STATE(2488), + [sym_val_duration] = STATE(2441), + [sym_val_filesize] = STATE(2441), + [sym_val_binary] = STATE(2441), + [sym_val_string] = STATE(2441), + [sym__raw_str] = STATE(2065), + [sym__str_double_quotes] = STATE(2065), + [sym_val_interpolated] = STATE(2441), + [sym__inter_single_quotes] = STATE(2563), + [sym__inter_double_quotes] = STATE(2436), + [sym_val_list] = STATE(2441), + [sym_val_record] = STATE(2441), + [sym_val_table] = STATE(2441), + [sym_val_closure] = STATE(2441), + [sym_unquoted] = STATE(2084), + [sym__unquoted_with_expr] = STATE(2489), + [sym__unquoted_anonymous_prefix] = STATE(6886), [sym_comment] = STATE(949), - [anon_sym_true] = ACTIONS(3307), - [anon_sym_false] = ACTIONS(3307), - [anon_sym_null] = ACTIONS(3309), - [aux_sym_cmd_identifier_token38] = ACTIONS(3311), - [aux_sym_cmd_identifier_token39] = ACTIONS(3311), - [aux_sym_cmd_identifier_token40] = ACTIONS(3311), - [anon_sym_LBRACK] = ACTIONS(3265), - [anon_sym_LPAREN] = ACTIONS(3267), - [anon_sym_DOLLAR] = ACTIONS(3313), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(3271), - [anon_sym_DOT_DOT] = ACTIONS(3273), - [aux_sym_expr_unary_token1] = ACTIONS(3315), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), - [anon_sym_DOT_DOT_LT] = ACTIONS(3277), - [aux_sym__val_number_decimal_token1] = ACTIONS(3317), - [aux_sym__val_number_decimal_token2] = ACTIONS(3319), - [aux_sym__val_number_decimal_token3] = ACTIONS(3321), - [aux_sym__val_number_decimal_token4] = ACTIONS(3323), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3325), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3289), - [anon_sym_POUND] = ACTIONS(247), - }, - [950] = { - [sym_expr_unary] = STATE(1738), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1738), - [sym__expr_binary_expression] = STATE(3706), - [sym_expr_parenthesized] = STATE(1738), - [sym__val_range] = STATE(7580), - [sym__val_range_with_end] = STATE(7312), - [sym__value] = STATE(1738), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(3522), - [sym_val_variable] = STATE(1643), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(3346), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_unquoted] = STATE(1502), - [sym__unquoted_with_expr] = STATE(1786), - [sym__unquoted_anonymous_prefix] = STATE(6990), - [sym_comment] = STATE(950), - [anon_sym_true] = ACTIONS(3307), - [anon_sym_false] = ACTIONS(3307), - [anon_sym_null] = ACTIONS(3309), - [aux_sym_cmd_identifier_token38] = ACTIONS(3311), - [aux_sym_cmd_identifier_token39] = ACTIONS(3311), - [aux_sym_cmd_identifier_token40] = ACTIONS(3311), - [anon_sym_LBRACK] = ACTIONS(3265), - [anon_sym_LPAREN] = ACTIONS(3267), - [anon_sym_DOLLAR] = ACTIONS(3313), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(3271), - [anon_sym_DOT_DOT] = ACTIONS(3273), - [aux_sym_expr_unary_token1] = ACTIONS(3315), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), - [anon_sym_DOT_DOT_LT] = ACTIONS(3277), - [aux_sym__val_number_decimal_token1] = ACTIONS(3317), - [aux_sym__val_number_decimal_token2] = ACTIONS(3319), - [aux_sym__val_number_decimal_token3] = ACTIONS(3321), - [aux_sym__val_number_decimal_token4] = ACTIONS(3323), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3325), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3289), - [anon_sym_POUND] = ACTIONS(247), - }, - [951] = { - [sym_expr_unary] = STATE(1738), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1738), - [sym__expr_binary_expression] = STATE(3239), - [sym_expr_parenthesized] = STATE(1738), - [sym__val_range] = STATE(7580), - [sym__val_range_with_end] = STATE(7312), - [sym__value] = STATE(1738), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(3129), - [sym_val_variable] = STATE(1643), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(2873), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_unquoted] = STATE(1502), - [sym__unquoted_with_expr] = STATE(1786), - [sym__unquoted_anonymous_prefix] = STATE(6990), - [sym_comment] = STATE(951), - [anon_sym_true] = ACTIONS(3347), - [anon_sym_false] = ACTIONS(3347), - [anon_sym_null] = ACTIONS(3349), - [aux_sym_cmd_identifier_token38] = ACTIONS(3351), - [aux_sym_cmd_identifier_token39] = ACTIONS(3351), - [aux_sym_cmd_identifier_token40] = ACTIONS(3351), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3333), - [anon_sym_DOLLAR] = ACTIONS(3335), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3273), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), - [anon_sym_DOT_DOT_LT] = ACTIONS(3277), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3361), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3289), - [anon_sym_POUND] = ACTIONS(247), - }, - [952] = { - [sym_expr_unary] = STATE(1738), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1738), - [sym__expr_binary_expression] = STATE(1739), - [sym_expr_parenthesized] = STATE(1738), - [sym__val_range] = STATE(7580), - [sym__val_range_with_end] = STATE(7312), - [sym__value] = STATE(1738), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(3129), - [sym_val_variable] = STATE(1643), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(2873), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_unquoted] = STATE(1485), - [sym__unquoted_with_expr] = STATE(1740), - [sym__unquoted_anonymous_prefix] = STATE(6990), - [sym_comment] = STATE(952), - [anon_sym_true] = ACTIONS(3347), - [anon_sym_false] = ACTIONS(3347), - [anon_sym_null] = ACTIONS(3349), - [aux_sym_cmd_identifier_token38] = ACTIONS(3351), - [aux_sym_cmd_identifier_token39] = ACTIONS(3351), - [aux_sym_cmd_identifier_token40] = ACTIONS(3351), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3333), - [anon_sym_DOLLAR] = ACTIONS(3335), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3273), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), - [anon_sym_DOT_DOT_LT] = ACTIONS(3277), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3361), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3289), - [anon_sym_POUND] = ACTIONS(247), - }, - [953] = { - [sym_expr_unary] = STATE(1738), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1738), - [sym__expr_binary_expression] = STATE(2202), - [sym_expr_parenthesized] = STATE(1738), - [sym__val_range] = STATE(7580), - [sym__val_range_with_end] = STATE(7312), - [sym__value] = STATE(1738), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1978), - [sym_val_variable] = STATE(1643), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1287), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_unquoted] = STATE(1490), - [sym__unquoted_with_expr] = STATE(1747), - [sym__unquoted_anonymous_prefix] = STATE(6990), - [sym_comment] = STATE(953), - [anon_sym_true] = ACTIONS(3327), - [anon_sym_false] = ACTIONS(3327), - [anon_sym_null] = ACTIONS(3329), - [aux_sym_cmd_identifier_token38] = ACTIONS(3331), - [aux_sym_cmd_identifier_token39] = ACTIONS(3331), - [aux_sym_cmd_identifier_token40] = ACTIONS(3331), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3333), - [anon_sym_DOLLAR] = ACTIONS(3335), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3273), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), - [anon_sym_DOT_DOT_LT] = ACTIONS(3277), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3289), - [anon_sym_POUND] = ACTIONS(247), - }, - [954] = { - [sym_expr_unary] = STATE(1738), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1738), - [sym__expr_binary_expression] = STATE(2215), - [sym_expr_parenthesized] = STATE(1738), - [sym__val_range] = STATE(7580), - [sym__val_range_with_end] = STATE(7312), - [sym__value] = STATE(1738), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1978), - [sym_val_variable] = STATE(1643), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1287), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_unquoted] = STATE(1495), - [sym__unquoted_with_expr] = STATE(1774), - [sym__unquoted_anonymous_prefix] = STATE(6990), - [sym_comment] = STATE(954), - [anon_sym_true] = ACTIONS(3327), - [anon_sym_false] = ACTIONS(3327), - [anon_sym_null] = ACTIONS(3329), - [aux_sym_cmd_identifier_token38] = ACTIONS(3331), - [aux_sym_cmd_identifier_token39] = ACTIONS(3331), - [aux_sym_cmd_identifier_token40] = ACTIONS(3331), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3333), - [anon_sym_DOLLAR] = ACTIONS(3335), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3273), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), - [anon_sym_DOT_DOT_LT] = ACTIONS(3277), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3289), - [anon_sym_POUND] = ACTIONS(247), - }, - [955] = { - [sym_expr_unary] = STATE(1738), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1738), - [sym__expr_binary_expression] = STATE(3276), - [sym_expr_parenthesized] = STATE(1738), - [sym__val_range] = STATE(7580), - [sym__val_range_with_end] = STATE(7312), - [sym__value] = STATE(1738), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(3129), - [sym_val_variable] = STATE(1643), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(2873), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_unquoted] = STATE(1486), - [sym__unquoted_with_expr] = STATE(1742), - [sym__unquoted_anonymous_prefix] = STATE(6990), - [sym_comment] = STATE(955), - [anon_sym_true] = ACTIONS(3347), - [anon_sym_false] = ACTIONS(3347), - [anon_sym_null] = ACTIONS(3349), - [aux_sym_cmd_identifier_token38] = ACTIONS(3351), - [aux_sym_cmd_identifier_token39] = ACTIONS(3351), - [aux_sym_cmd_identifier_token40] = ACTIONS(3351), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3333), - [anon_sym_DOLLAR] = ACTIONS(3335), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3273), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), - [anon_sym_DOT_DOT_LT] = ACTIONS(3277), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3361), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3289), - [anon_sym_POUND] = ACTIONS(247), - }, - [956] = { - [sym_expr_unary] = STATE(1738), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1738), - [sym__expr_binary_expression] = STATE(3811), - [sym_expr_parenthesized] = STATE(1738), - [sym__val_range] = STATE(7580), - [sym__val_range_with_end] = STATE(7312), - [sym__value] = STATE(1738), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(3707), - [sym_val_variable] = STATE(1643), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(3383), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_unquoted] = STATE(1499), - [sym__unquoted_with_expr] = STATE(1781), - [sym__unquoted_anonymous_prefix] = STATE(6990), - [sym_comment] = STATE(956), - [anon_sym_true] = ACTIONS(3259), - [anon_sym_false] = ACTIONS(3259), - [anon_sym_null] = ACTIONS(3261), - [aux_sym_cmd_identifier_token38] = ACTIONS(3263), - [aux_sym_cmd_identifier_token39] = ACTIONS(3263), - [aux_sym_cmd_identifier_token40] = ACTIONS(3263), - [anon_sym_LBRACK] = ACTIONS(3265), - [anon_sym_LPAREN] = ACTIONS(3267), - [anon_sym_DOLLAR] = ACTIONS(3269), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(3271), - [anon_sym_DOT_DOT] = ACTIONS(3273), - [aux_sym_expr_unary_token1] = ACTIONS(3275), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), - [anon_sym_DOT_DOT_LT] = ACTIONS(3277), - [aux_sym__val_number_decimal_token1] = ACTIONS(3279), - [aux_sym__val_number_decimal_token2] = ACTIONS(3281), - [aux_sym__val_number_decimal_token3] = ACTIONS(3283), - [aux_sym__val_number_decimal_token4] = ACTIONS(3285), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3287), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3289), - [anon_sym_POUND] = ACTIONS(247), - }, - [957] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2432), - [sym_expr_binary] = STATE(2438), - [sym__expr_binary_expression] = STATE(2470), - [sym_expr_parenthesized] = STATE(2438), - [sym__val_range] = STATE(7480), - [sym__val_range_with_end] = STATE(7292), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2399), - [sym_val_bool] = STATE(2149), - [sym_val_variable] = STATE(2399), - [sym_val_number] = STATE(2399), - [sym__val_number_decimal] = STATE(1386), - [sym__val_number] = STATE(2385), - [sym_val_duration] = STATE(2399), - [sym_val_filesize] = STATE(2399), - [sym_val_binary] = STATE(2399), - [sym_val_string] = STATE(2399), - [sym__str_double_quotes] = STATE(1975), - [sym_val_interpolated] = STATE(2399), - [sym__inter_single_quotes] = STATE(2384), - [sym__inter_double_quotes] = STATE(2390), - [sym_val_list] = STATE(2399), - [sym_val_record] = STATE(2399), - [sym_val_table] = STATE(2399), - [sym_val_closure] = STATE(2399), - [sym_unquoted] = STATE(2193), - [sym__unquoted_with_expr] = STATE(2424), - [sym__unquoted_anonymous_prefix] = STATE(6622), - [sym_comment] = STATE(957), - [anon_sym_true] = ACTIONS(3291), - [anon_sym_false] = ACTIONS(3291), - [anon_sym_null] = ACTIONS(3293), - [aux_sym_cmd_identifier_token38] = ACTIONS(3295), - [aux_sym_cmd_identifier_token39] = ACTIONS(3295), - [aux_sym_cmd_identifier_token40] = ACTIONS(3295), + [anon_sym_true] = ACTIONS(3298), + [anon_sym_false] = ACTIONS(3298), + [anon_sym_null] = ACTIONS(3300), + [aux_sym_cmd_identifier_token38] = ACTIONS(3302), + [aux_sym_cmd_identifier_token39] = ACTIONS(3302), + [aux_sym_cmd_identifier_token40] = ACTIONS(3302), [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3239), - [anon_sym_DOLLAR] = ACTIONS(3241), + [anon_sym_LPAREN] = ACTIONS(3304), + [anon_sym_DOLLAR] = ACTIONS(3306), [anon_sym_DASH] = ACTIONS(53), [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3243), + [anon_sym_DOT_DOT] = ACTIONS(3308), [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3245), - [anon_sym_DOT_DOT_LT] = ACTIONS(3245), - [aux_sym__val_number_decimal_token1] = ACTIONS(3297), - [aux_sym__val_number_decimal_token2] = ACTIONS(3299), - [aux_sym__val_number_decimal_token3] = ACTIONS(3301), - [aux_sym__val_number_decimal_token4] = ACTIONS(3303), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3310), + [anon_sym_DOT_DOT_LT] = ACTIONS(3310), + [aux_sym__val_number_decimal_token1] = ACTIONS(3312), + [aux_sym__val_number_decimal_token2] = ACTIONS(3314), + [aux_sym__val_number_decimal_token3] = ACTIONS(3316), + [aux_sym__val_number_decimal_token4] = ACTIONS(3318), [aux_sym__val_number_token1] = ACTIONS(103), [aux_sym__val_number_token2] = ACTIONS(103), [aux_sym__val_number_token3] = ACTIONS(103), [anon_sym_0b] = ACTIONS(105), [anon_sym_0o] = ACTIONS(107), [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3305), + [sym_val_date] = ACTIONS(3320), [anon_sym_DQUOTE] = ACTIONS(111), [sym__str_single_quotes] = ACTIONS(113), [sym__str_back_ticks] = ACTIONS(113), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3257), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3322), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(123), }, - [958] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2432), - [sym_expr_binary] = STATE(2438), - [sym__expr_binary_expression] = STATE(2451), - [sym_expr_parenthesized] = STATE(2438), - [sym__val_range] = STATE(7480), - [sym__val_range_with_end] = STATE(7292), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2399), - [sym_val_bool] = STATE(2149), - [sym_val_variable] = STATE(2399), - [sym_val_number] = STATE(2399), - [sym__val_number_decimal] = STATE(1386), - [sym__val_number] = STATE(2385), - [sym_val_duration] = STATE(2399), - [sym_val_filesize] = STATE(2399), - [sym_val_binary] = STATE(2399), - [sym_val_string] = STATE(2399), - [sym__str_double_quotes] = STATE(1975), - [sym_val_interpolated] = STATE(2399), - [sym__inter_single_quotes] = STATE(2384), - [sym__inter_double_quotes] = STATE(2390), - [sym_val_list] = STATE(2399), - [sym_val_record] = STATE(2399), - [sym_val_table] = STATE(2399), - [sym_val_closure] = STATE(2399), - [sym_unquoted] = STATE(2153), - [sym__unquoted_with_expr] = STATE(2452), - [sym__unquoted_anonymous_prefix] = STATE(6622), - [sym_comment] = STATE(958), - [anon_sym_true] = ACTIONS(3291), - [anon_sym_false] = ACTIONS(3291), - [anon_sym_null] = ACTIONS(3293), - [aux_sym_cmd_identifier_token38] = ACTIONS(3295), - [aux_sym_cmd_identifier_token39] = ACTIONS(3295), - [aux_sym_cmd_identifier_token40] = ACTIONS(3295), + [950] = { + [sym_expr_unary] = STATE(1701), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1701), + [sym__expr_binary_expression] = STATE(1702), + [sym_expr_parenthesized] = STATE(1701), + [sym__val_range] = STATE(7780), + [sym__val_range_with_end] = STATE(7546), + [sym__value] = STATE(1701), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(3169), + [sym_val_variable] = STATE(1881), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(2926), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_unquoted] = STATE(1548), + [sym__unquoted_with_expr] = STATE(1707), + [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_comment] = STATE(950), + [anon_sym_true] = ACTIONS(3324), + [anon_sym_false] = ACTIONS(3324), + [anon_sym_null] = ACTIONS(3326), + [aux_sym_cmd_identifier_token38] = ACTIONS(3328), + [aux_sym_cmd_identifier_token39] = ACTIONS(3328), + [aux_sym_cmd_identifier_token40] = ACTIONS(3328), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(3330), + [anon_sym_DOLLAR] = ACTIONS(3332), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [aux_sym__val_number_decimal_token1] = ACTIONS(3338), + [aux_sym__val_number_decimal_token2] = ACTIONS(3340), + [aux_sym__val_number_decimal_token3] = ACTIONS(3342), + [aux_sym__val_number_decimal_token4] = ACTIONS(3344), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3346), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3348), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), + }, + [951] = { + [sym_expr_unary] = STATE(1701), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1701), + [sym__expr_binary_expression] = STATE(3223), + [sym_expr_parenthesized] = STATE(1701), + [sym__val_range] = STATE(7780), + [sym__val_range_with_end] = STATE(7546), + [sym__value] = STATE(1701), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(3169), + [sym_val_variable] = STATE(1881), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(2926), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_unquoted] = STATE(1554), + [sym__unquoted_with_expr] = STATE(1709), + [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_comment] = STATE(951), + [anon_sym_true] = ACTIONS(3324), + [anon_sym_false] = ACTIONS(3324), + [anon_sym_null] = ACTIONS(3326), + [aux_sym_cmd_identifier_token38] = ACTIONS(3328), + [aux_sym_cmd_identifier_token39] = ACTIONS(3328), + [aux_sym_cmd_identifier_token40] = ACTIONS(3328), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(3330), + [anon_sym_DOLLAR] = ACTIONS(3332), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [aux_sym__val_number_decimal_token1] = ACTIONS(3338), + [aux_sym__val_number_decimal_token2] = ACTIONS(3340), + [aux_sym__val_number_decimal_token3] = ACTIONS(3342), + [aux_sym__val_number_decimal_token4] = ACTIONS(3344), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3346), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3348), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), + }, + [952] = { + [sym_expr_unary] = STATE(2512), + [sym__expr_unary_minus] = STATE(2510), + [sym_expr_binary] = STATE(2512), + [sym__expr_binary_expression] = STATE(3352), + [sym_expr_parenthesized] = STATE(2512), + [sym__val_range] = STATE(7869), + [sym__val_range_with_end] = STATE(7524), + [sym__value] = STATE(2512), + [sym_val_nothing] = STATE(2441), + [sym_val_bool] = STATE(3183), + [sym_val_variable] = STATE(2441), + [sym_val_number] = STATE(2441), + [sym__val_number_decimal] = STATE(3024), + [sym__val_number] = STATE(2488), + [sym_val_duration] = STATE(2441), + [sym_val_filesize] = STATE(2441), + [sym_val_binary] = STATE(2441), + [sym_val_string] = STATE(2441), + [sym__raw_str] = STATE(2065), + [sym__str_double_quotes] = STATE(2065), + [sym_val_interpolated] = STATE(2441), + [sym__inter_single_quotes] = STATE(2563), + [sym__inter_double_quotes] = STATE(2436), + [sym_val_list] = STATE(2441), + [sym_val_record] = STATE(2441), + [sym_val_table] = STATE(2441), + [sym_val_closure] = STATE(2441), + [sym_unquoted] = STATE(2217), + [sym__unquoted_with_expr] = STATE(2529), + [sym__unquoted_anonymous_prefix] = STATE(6886), + [sym_comment] = STATE(952), + [anon_sym_true] = ACTIONS(3298), + [anon_sym_false] = ACTIONS(3298), + [anon_sym_null] = ACTIONS(3300), + [aux_sym_cmd_identifier_token38] = ACTIONS(3302), + [aux_sym_cmd_identifier_token39] = ACTIONS(3302), + [aux_sym_cmd_identifier_token40] = ACTIONS(3302), [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3239), - [anon_sym_DOLLAR] = ACTIONS(3241), + [anon_sym_LPAREN] = ACTIONS(3304), + [anon_sym_DOLLAR] = ACTIONS(3306), [anon_sym_DASH] = ACTIONS(53), [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3243), + [anon_sym_DOT_DOT] = ACTIONS(3308), [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3245), - [anon_sym_DOT_DOT_LT] = ACTIONS(3245), - [aux_sym__val_number_decimal_token1] = ACTIONS(3297), - [aux_sym__val_number_decimal_token2] = ACTIONS(3299), - [aux_sym__val_number_decimal_token3] = ACTIONS(3301), - [aux_sym__val_number_decimal_token4] = ACTIONS(3303), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3310), + [anon_sym_DOT_DOT_LT] = ACTIONS(3310), + [aux_sym__val_number_decimal_token1] = ACTIONS(3312), + [aux_sym__val_number_decimal_token2] = ACTIONS(3314), + [aux_sym__val_number_decimal_token3] = ACTIONS(3316), + [aux_sym__val_number_decimal_token4] = ACTIONS(3318), [aux_sym__val_number_token1] = ACTIONS(103), [aux_sym__val_number_token2] = ACTIONS(103), [aux_sym__val_number_token3] = ACTIONS(103), [anon_sym_0b] = ACTIONS(105), [anon_sym_0o] = ACTIONS(107), [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3305), + [sym_val_date] = ACTIONS(3320), [anon_sym_DQUOTE] = ACTIONS(111), [sym__str_single_quotes] = ACTIONS(113), [sym__str_back_ticks] = ACTIONS(113), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3257), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3322), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(123), + }, + [953] = { + [sym_expr_unary] = STATE(1701), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1701), + [sym__expr_binary_expression] = STATE(3225), + [sym_expr_parenthesized] = STATE(1701), + [sym__val_range] = STATE(7780), + [sym__val_range_with_end] = STATE(7546), + [sym__value] = STATE(1701), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(3169), + [sym_val_variable] = STATE(1881), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(2926), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_unquoted] = STATE(1565), + [sym__unquoted_with_expr] = STATE(1714), + [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_comment] = STATE(953), + [anon_sym_true] = ACTIONS(3324), + [anon_sym_false] = ACTIONS(3324), + [anon_sym_null] = ACTIONS(3326), + [aux_sym_cmd_identifier_token38] = ACTIONS(3328), + [aux_sym_cmd_identifier_token39] = ACTIONS(3328), + [aux_sym_cmd_identifier_token40] = ACTIONS(3328), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(3330), + [anon_sym_DOLLAR] = ACTIONS(3332), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [aux_sym__val_number_decimal_token1] = ACTIONS(3338), + [aux_sym__val_number_decimal_token2] = ACTIONS(3340), + [aux_sym__val_number_decimal_token3] = ACTIONS(3342), + [aux_sym__val_number_decimal_token4] = ACTIONS(3344), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3346), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3348), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), + }, + [954] = { + [sym_expr_unary] = STATE(1701), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1701), + [sym__expr_binary_expression] = STATE(3226), + [sym_expr_parenthesized] = STATE(1701), + [sym__val_range] = STATE(7780), + [sym__val_range_with_end] = STATE(7546), + [sym__value] = STATE(1701), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(3169), + [sym_val_variable] = STATE(1881), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(2926), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_unquoted] = STATE(1567), + [sym__unquoted_with_expr] = STATE(1718), + [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_comment] = STATE(954), + [anon_sym_true] = ACTIONS(3324), + [anon_sym_false] = ACTIONS(3324), + [anon_sym_null] = ACTIONS(3326), + [aux_sym_cmd_identifier_token38] = ACTIONS(3328), + [aux_sym_cmd_identifier_token39] = ACTIONS(3328), + [aux_sym_cmd_identifier_token40] = ACTIONS(3328), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(3330), + [anon_sym_DOLLAR] = ACTIONS(3332), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [aux_sym__val_number_decimal_token1] = ACTIONS(3338), + [aux_sym__val_number_decimal_token2] = ACTIONS(3340), + [aux_sym__val_number_decimal_token3] = ACTIONS(3342), + [aux_sym__val_number_decimal_token4] = ACTIONS(3344), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3346), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3348), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), + }, + [955] = { + [sym_expr_unary] = STATE(1701), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1701), + [sym__expr_binary_expression] = STATE(3227), + [sym_expr_parenthesized] = STATE(1701), + [sym__val_range] = STATE(7780), + [sym__val_range_with_end] = STATE(7546), + [sym__value] = STATE(1701), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(3169), + [sym_val_variable] = STATE(1881), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(2926), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_unquoted] = STATE(1568), + [sym__unquoted_with_expr] = STATE(1719), + [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_comment] = STATE(955), + [anon_sym_true] = ACTIONS(3324), + [anon_sym_false] = ACTIONS(3324), + [anon_sym_null] = ACTIONS(3326), + [aux_sym_cmd_identifier_token38] = ACTIONS(3328), + [aux_sym_cmd_identifier_token39] = ACTIONS(3328), + [aux_sym_cmd_identifier_token40] = ACTIONS(3328), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(3330), + [anon_sym_DOLLAR] = ACTIONS(3332), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [aux_sym__val_number_decimal_token1] = ACTIONS(3338), + [aux_sym__val_number_decimal_token2] = ACTIONS(3340), + [aux_sym__val_number_decimal_token3] = ACTIONS(3342), + [aux_sym__val_number_decimal_token4] = ACTIONS(3344), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3346), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3348), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), + }, + [956] = { + [sym_expr_unary] = STATE(1701), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1701), + [sym__expr_binary_expression] = STATE(3228), + [sym_expr_parenthesized] = STATE(1701), + [sym__val_range] = STATE(7780), + [sym__val_range_with_end] = STATE(7546), + [sym__value] = STATE(1701), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(3169), + [sym_val_variable] = STATE(1881), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(2926), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_unquoted] = STATE(1570), + [sym__unquoted_with_expr] = STATE(1721), + [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_comment] = STATE(956), + [anon_sym_true] = ACTIONS(3324), + [anon_sym_false] = ACTIONS(3324), + [anon_sym_null] = ACTIONS(3326), + [aux_sym_cmd_identifier_token38] = ACTIONS(3328), + [aux_sym_cmd_identifier_token39] = ACTIONS(3328), + [aux_sym_cmd_identifier_token40] = ACTIONS(3328), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(3330), + [anon_sym_DOLLAR] = ACTIONS(3332), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [aux_sym__val_number_decimal_token1] = ACTIONS(3338), + [aux_sym__val_number_decimal_token2] = ACTIONS(3340), + [aux_sym__val_number_decimal_token3] = ACTIONS(3342), + [aux_sym__val_number_decimal_token4] = ACTIONS(3344), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3346), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3348), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), + }, + [957] = { + [sym_expr_unary] = STATE(1701), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1701), + [sym__expr_binary_expression] = STATE(3229), + [sym_expr_parenthesized] = STATE(1701), + [sym__val_range] = STATE(7780), + [sym__val_range_with_end] = STATE(7546), + [sym__value] = STATE(1701), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(3169), + [sym_val_variable] = STATE(1881), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(2926), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_unquoted] = STATE(1572), + [sym__unquoted_with_expr] = STATE(1731), + [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_comment] = STATE(957), + [anon_sym_true] = ACTIONS(3324), + [anon_sym_false] = ACTIONS(3324), + [anon_sym_null] = ACTIONS(3326), + [aux_sym_cmd_identifier_token38] = ACTIONS(3328), + [aux_sym_cmd_identifier_token39] = ACTIONS(3328), + [aux_sym_cmd_identifier_token40] = ACTIONS(3328), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(3330), + [anon_sym_DOLLAR] = ACTIONS(3332), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [aux_sym__val_number_decimal_token1] = ACTIONS(3338), + [aux_sym__val_number_decimal_token2] = ACTIONS(3340), + [aux_sym__val_number_decimal_token3] = ACTIONS(3342), + [aux_sym__val_number_decimal_token4] = ACTIONS(3344), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3346), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3348), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), + }, + [958] = { + [sym_expr_unary] = STATE(1701), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1701), + [sym__expr_binary_expression] = STATE(3230), + [sym_expr_parenthesized] = STATE(1701), + [sym__val_range] = STATE(7780), + [sym__val_range_with_end] = STATE(7546), + [sym__value] = STATE(1701), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(3169), + [sym_val_variable] = STATE(1881), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(2926), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_unquoted] = STATE(1574), + [sym__unquoted_with_expr] = STATE(1732), + [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_comment] = STATE(958), + [anon_sym_true] = ACTIONS(3324), + [anon_sym_false] = ACTIONS(3324), + [anon_sym_null] = ACTIONS(3326), + [aux_sym_cmd_identifier_token38] = ACTIONS(3328), + [aux_sym_cmd_identifier_token39] = ACTIONS(3328), + [aux_sym_cmd_identifier_token40] = ACTIONS(3328), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(3330), + [anon_sym_DOLLAR] = ACTIONS(3332), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [aux_sym__val_number_decimal_token1] = ACTIONS(3338), + [aux_sym__val_number_decimal_token2] = ACTIONS(3340), + [aux_sym__val_number_decimal_token3] = ACTIONS(3342), + [aux_sym__val_number_decimal_token4] = ACTIONS(3344), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3346), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3348), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [959] = { - [sym_expr_unary] = STATE(1738), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1738), - [sym__expr_binary_expression] = STATE(3170), - [sym_expr_parenthesized] = STATE(1738), - [sym__val_range] = STATE(7580), - [sym__val_range_with_end] = STATE(7312), - [sym__value] = STATE(1738), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(3129), - [sym_val_variable] = STATE(1643), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(2873), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_unquoted] = STATE(1488), - [sym__unquoted_with_expr] = STATE(1743), - [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_expr_unary] = STATE(1701), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1701), + [sym__expr_binary_expression] = STATE(3231), + [sym_expr_parenthesized] = STATE(1701), + [sym__val_range] = STATE(7780), + [sym__val_range_with_end] = STATE(7546), + [sym__value] = STATE(1701), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(3169), + [sym_val_variable] = STATE(1881), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(2926), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_unquoted] = STATE(1575), + [sym__unquoted_with_expr] = STATE(1735), + [sym__unquoted_anonymous_prefix] = STATE(7212), [sym_comment] = STATE(959), - [anon_sym_true] = ACTIONS(3347), - [anon_sym_false] = ACTIONS(3347), - [anon_sym_null] = ACTIONS(3349), - [aux_sym_cmd_identifier_token38] = ACTIONS(3351), - [aux_sym_cmd_identifier_token39] = ACTIONS(3351), - [aux_sym_cmd_identifier_token40] = ACTIONS(3351), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3333), - [anon_sym_DOLLAR] = ACTIONS(3335), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3273), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), - [anon_sym_DOT_DOT_LT] = ACTIONS(3277), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3361), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3289), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(3324), + [anon_sym_false] = ACTIONS(3324), + [anon_sym_null] = ACTIONS(3326), + [aux_sym_cmd_identifier_token38] = ACTIONS(3328), + [aux_sym_cmd_identifier_token39] = ACTIONS(3328), + [aux_sym_cmd_identifier_token40] = ACTIONS(3328), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(3330), + [anon_sym_DOLLAR] = ACTIONS(3332), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [aux_sym__val_number_decimal_token1] = ACTIONS(3338), + [aux_sym__val_number_decimal_token2] = ACTIONS(3340), + [aux_sym__val_number_decimal_token3] = ACTIONS(3342), + [aux_sym__val_number_decimal_token4] = ACTIONS(3344), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3346), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3348), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [960] = { - [sym_expr_unary] = STATE(1738), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1738), - [sym__expr_binary_expression] = STATE(2232), - [sym_expr_parenthesized] = STATE(1738), - [sym__val_range] = STATE(7580), - [sym__val_range_with_end] = STATE(7312), - [sym__value] = STATE(1738), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1978), - [sym_val_variable] = STATE(1643), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1287), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_unquoted] = STATE(1496), - [sym__unquoted_with_expr] = STATE(1776), - [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_expr_unary] = STATE(1701), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1701), + [sym__expr_binary_expression] = STATE(3232), + [sym_expr_parenthesized] = STATE(1701), + [sym__val_range] = STATE(7780), + [sym__val_range_with_end] = STATE(7546), + [sym__value] = STATE(1701), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(3169), + [sym_val_variable] = STATE(1881), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(2926), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_unquoted] = STATE(1576), + [sym__unquoted_with_expr] = STATE(1738), + [sym__unquoted_anonymous_prefix] = STATE(7212), [sym_comment] = STATE(960), - [anon_sym_true] = ACTIONS(3327), - [anon_sym_false] = ACTIONS(3327), - [anon_sym_null] = ACTIONS(3329), - [aux_sym_cmd_identifier_token38] = ACTIONS(3331), - [aux_sym_cmd_identifier_token39] = ACTIONS(3331), - [aux_sym_cmd_identifier_token40] = ACTIONS(3331), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3333), - [anon_sym_DOLLAR] = ACTIONS(3335), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3273), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), - [anon_sym_DOT_DOT_LT] = ACTIONS(3277), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3289), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(3324), + [anon_sym_false] = ACTIONS(3324), + [anon_sym_null] = ACTIONS(3326), + [aux_sym_cmd_identifier_token38] = ACTIONS(3328), + [aux_sym_cmd_identifier_token39] = ACTIONS(3328), + [aux_sym_cmd_identifier_token40] = ACTIONS(3328), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(3330), + [anon_sym_DOLLAR] = ACTIONS(3332), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [aux_sym__val_number_decimal_token1] = ACTIONS(3338), + [aux_sym__val_number_decimal_token2] = ACTIONS(3340), + [aux_sym__val_number_decimal_token3] = ACTIONS(3342), + [aux_sym__val_number_decimal_token4] = ACTIONS(3344), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3346), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3348), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [961] = { - [sym_expr_unary] = STATE(1738), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1738), - [sym__expr_binary_expression] = STATE(1739), - [sym_expr_parenthesized] = STATE(1738), - [sym__val_range] = STATE(7580), - [sym__val_range_with_end] = STATE(7312), - [sym__value] = STATE(1738), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(3673), - [sym_val_variable] = STATE(1643), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(3403), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_unquoted] = STATE(1485), + [sym_expr_unary] = STATE(1701), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1701), + [sym__expr_binary_expression] = STATE(3233), + [sym_expr_parenthesized] = STATE(1701), + [sym__val_range] = STATE(7780), + [sym__val_range_with_end] = STATE(7546), + [sym__value] = STATE(1701), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(3169), + [sym_val_variable] = STATE(1881), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(2926), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_unquoted] = STATE(1577), [sym__unquoted_with_expr] = STATE(1740), - [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym__unquoted_anonymous_prefix] = STATE(7212), [sym_comment] = STATE(961), - [anon_sym_true] = ACTIONS(3363), - [anon_sym_false] = ACTIONS(3363), - [anon_sym_null] = ACTIONS(3365), - [aux_sym_cmd_identifier_token38] = ACTIONS(3367), - [aux_sym_cmd_identifier_token39] = ACTIONS(3367), - [aux_sym_cmd_identifier_token40] = ACTIONS(3367), - [anon_sym_LBRACK] = ACTIONS(3265), - [anon_sym_LPAREN] = ACTIONS(3267), - [anon_sym_DOLLAR] = ACTIONS(3313), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(3271), - [anon_sym_DOT_DOT] = ACTIONS(3273), - [aux_sym_expr_unary_token1] = ACTIONS(3315), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), - [anon_sym_DOT_DOT_LT] = ACTIONS(3277), - [aux_sym__val_number_decimal_token1] = ACTIONS(3369), - [aux_sym__val_number_decimal_token2] = ACTIONS(3371), - [aux_sym__val_number_decimal_token3] = ACTIONS(3373), - [aux_sym__val_number_decimal_token4] = ACTIONS(3375), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3377), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3289), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(3324), + [anon_sym_false] = ACTIONS(3324), + [anon_sym_null] = ACTIONS(3326), + [aux_sym_cmd_identifier_token38] = ACTIONS(3328), + [aux_sym_cmd_identifier_token39] = ACTIONS(3328), + [aux_sym_cmd_identifier_token40] = ACTIONS(3328), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(3330), + [anon_sym_DOLLAR] = ACTIONS(3332), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [aux_sym__val_number_decimal_token1] = ACTIONS(3338), + [aux_sym__val_number_decimal_token2] = ACTIONS(3340), + [aux_sym__val_number_decimal_token3] = ACTIONS(3342), + [aux_sym__val_number_decimal_token4] = ACTIONS(3344), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3346), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3348), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [962] = { - [sym_expr_unary] = STATE(1738), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1738), - [sym__expr_binary_expression] = STATE(2208), - [sym_expr_parenthesized] = STATE(1738), - [sym__val_range] = STATE(7580), - [sym__val_range_with_end] = STATE(7312), - [sym__value] = STATE(1738), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1978), - [sym_val_variable] = STATE(1643), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1287), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_unquoted] = STATE(1497), - [sym__unquoted_with_expr] = STATE(1778), - [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_expr_unary] = STATE(1701), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1701), + [sym__expr_binary_expression] = STATE(3234), + [sym_expr_parenthesized] = STATE(1701), + [sym__val_range] = STATE(7780), + [sym__val_range_with_end] = STATE(7546), + [sym__value] = STATE(1701), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(3169), + [sym_val_variable] = STATE(1881), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(2926), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_unquoted] = STATE(1578), + [sym__unquoted_with_expr] = STATE(1743), + [sym__unquoted_anonymous_prefix] = STATE(7212), [sym_comment] = STATE(962), - [anon_sym_true] = ACTIONS(3327), - [anon_sym_false] = ACTIONS(3327), - [anon_sym_null] = ACTIONS(3329), - [aux_sym_cmd_identifier_token38] = ACTIONS(3331), - [aux_sym_cmd_identifier_token39] = ACTIONS(3331), - [aux_sym_cmd_identifier_token40] = ACTIONS(3331), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3333), - [anon_sym_DOLLAR] = ACTIONS(3335), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3273), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), - [anon_sym_DOT_DOT_LT] = ACTIONS(3277), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3289), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(3324), + [anon_sym_false] = ACTIONS(3324), + [anon_sym_null] = ACTIONS(3326), + [aux_sym_cmd_identifier_token38] = ACTIONS(3328), + [aux_sym_cmd_identifier_token39] = ACTIONS(3328), + [aux_sym_cmd_identifier_token40] = ACTIONS(3328), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(3330), + [anon_sym_DOLLAR] = ACTIONS(3332), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [aux_sym__val_number_decimal_token1] = ACTIONS(3338), + [aux_sym__val_number_decimal_token2] = ACTIONS(3340), + [aux_sym__val_number_decimal_token3] = ACTIONS(3342), + [aux_sym__val_number_decimal_token4] = ACTIONS(3344), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3346), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3348), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [963] = { - [sym_expr_unary] = STATE(1738), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1738), - [sym__expr_binary_expression] = STATE(3788), - [sym_expr_parenthesized] = STATE(1738), - [sym__val_range] = STATE(7580), - [sym__val_range_with_end] = STATE(7312), - [sym__value] = STATE(1738), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(3673), - [sym_val_variable] = STATE(1643), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(3403), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_unquoted] = STATE(1486), - [sym__unquoted_with_expr] = STATE(1742), - [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_expr_unary] = STATE(2512), + [sym__expr_unary_minus] = STATE(2510), + [sym_expr_binary] = STATE(2512), + [sym__expr_binary_expression] = STATE(3359), + [sym_expr_parenthesized] = STATE(2512), + [sym__val_range] = STATE(7869), + [sym__val_range_with_end] = STATE(7524), + [sym__value] = STATE(2512), + [sym_val_nothing] = STATE(2441), + [sym_val_bool] = STATE(3183), + [sym_val_variable] = STATE(2441), + [sym_val_number] = STATE(2441), + [sym__val_number_decimal] = STATE(3024), + [sym__val_number] = STATE(2488), + [sym_val_duration] = STATE(2441), + [sym_val_filesize] = STATE(2441), + [sym_val_binary] = STATE(2441), + [sym_val_string] = STATE(2441), + [sym__raw_str] = STATE(2065), + [sym__str_double_quotes] = STATE(2065), + [sym_val_interpolated] = STATE(2441), + [sym__inter_single_quotes] = STATE(2563), + [sym__inter_double_quotes] = STATE(2436), + [sym_val_list] = STATE(2441), + [sym_val_record] = STATE(2441), + [sym_val_table] = STATE(2441), + [sym_val_closure] = STATE(2441), + [sym_unquoted] = STATE(2085), + [sym__unquoted_with_expr] = STATE(2491), + [sym__unquoted_anonymous_prefix] = STATE(6886), [sym_comment] = STATE(963), - [anon_sym_true] = ACTIONS(3363), - [anon_sym_false] = ACTIONS(3363), - [anon_sym_null] = ACTIONS(3365), - [aux_sym_cmd_identifier_token38] = ACTIONS(3367), - [aux_sym_cmd_identifier_token39] = ACTIONS(3367), - [aux_sym_cmd_identifier_token40] = ACTIONS(3367), - [anon_sym_LBRACK] = ACTIONS(3265), - [anon_sym_LPAREN] = ACTIONS(3267), - [anon_sym_DOLLAR] = ACTIONS(3313), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(3271), - [anon_sym_DOT_DOT] = ACTIONS(3273), - [aux_sym_expr_unary_token1] = ACTIONS(3315), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), - [anon_sym_DOT_DOT_LT] = ACTIONS(3277), - [aux_sym__val_number_decimal_token1] = ACTIONS(3369), - [aux_sym__val_number_decimal_token2] = ACTIONS(3371), - [aux_sym__val_number_decimal_token3] = ACTIONS(3373), - [aux_sym__val_number_decimal_token4] = ACTIONS(3375), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3377), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3289), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(3298), + [anon_sym_false] = ACTIONS(3298), + [anon_sym_null] = ACTIONS(3300), + [aux_sym_cmd_identifier_token38] = ACTIONS(3302), + [aux_sym_cmd_identifier_token39] = ACTIONS(3302), + [aux_sym_cmd_identifier_token40] = ACTIONS(3302), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(3304), + [anon_sym_DOLLAR] = ACTIONS(3306), + [anon_sym_DASH] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3308), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3310), + [anon_sym_DOT_DOT_LT] = ACTIONS(3310), + [aux_sym__val_number_decimal_token1] = ACTIONS(3312), + [aux_sym__val_number_decimal_token2] = ACTIONS(3314), + [aux_sym__val_number_decimal_token3] = ACTIONS(3316), + [aux_sym__val_number_decimal_token4] = ACTIONS(3318), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(3320), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3322), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(123), }, [964] = { - [sym_expr_unary] = STATE(1738), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1738), - [sym__expr_binary_expression] = STATE(2219), - [sym_expr_parenthesized] = STATE(1738), - [sym__val_range] = STATE(7580), - [sym__val_range_with_end] = STATE(7312), - [sym__value] = STATE(1738), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1978), - [sym_val_variable] = STATE(1643), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1287), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_unquoted] = STATE(1498), - [sym__unquoted_with_expr] = STATE(1780), - [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_expr_unary] = STATE(2512), + [sym__expr_unary_minus] = STATE(2510), + [sym_expr_binary] = STATE(2512), + [sym__expr_binary_expression] = STATE(3360), + [sym_expr_parenthesized] = STATE(2512), + [sym__val_range] = STATE(7869), + [sym__val_range_with_end] = STATE(7524), + [sym__value] = STATE(2512), + [sym_val_nothing] = STATE(2441), + [sym_val_bool] = STATE(3183), + [sym_val_variable] = STATE(2441), + [sym_val_number] = STATE(2441), + [sym__val_number_decimal] = STATE(3024), + [sym__val_number] = STATE(2488), + [sym_val_duration] = STATE(2441), + [sym_val_filesize] = STATE(2441), + [sym_val_binary] = STATE(2441), + [sym_val_string] = STATE(2441), + [sym__raw_str] = STATE(2065), + [sym__str_double_quotes] = STATE(2065), + [sym_val_interpolated] = STATE(2441), + [sym__inter_single_quotes] = STATE(2563), + [sym__inter_double_quotes] = STATE(2436), + [sym_val_list] = STATE(2441), + [sym_val_record] = STATE(2441), + [sym_val_table] = STATE(2441), + [sym_val_closure] = STATE(2441), + [sym_unquoted] = STATE(2086), + [sym__unquoted_with_expr] = STATE(2502), + [sym__unquoted_anonymous_prefix] = STATE(6886), [sym_comment] = STATE(964), - [anon_sym_true] = ACTIONS(3327), - [anon_sym_false] = ACTIONS(3327), - [anon_sym_null] = ACTIONS(3329), - [aux_sym_cmd_identifier_token38] = ACTIONS(3331), - [aux_sym_cmd_identifier_token39] = ACTIONS(3331), - [aux_sym_cmd_identifier_token40] = ACTIONS(3331), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3333), - [anon_sym_DOLLAR] = ACTIONS(3335), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3273), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), - [anon_sym_DOT_DOT_LT] = ACTIONS(3277), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3289), - [anon_sym_POUND] = ACTIONS(247), - }, - [965] = { - [sym_expr_unary] = STATE(1738), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1738), - [sym__expr_binary_expression] = STATE(3790), - [sym_expr_parenthesized] = STATE(1738), - [sym__val_range] = STATE(7580), - [sym__val_range_with_end] = STATE(7312), - [sym__value] = STATE(1738), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(3673), - [sym_val_variable] = STATE(1643), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(3403), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_unquoted] = STATE(1488), - [sym__unquoted_with_expr] = STATE(1743), - [sym__unquoted_anonymous_prefix] = STATE(6990), - [sym_comment] = STATE(965), - [anon_sym_true] = ACTIONS(3363), - [anon_sym_false] = ACTIONS(3363), - [anon_sym_null] = ACTIONS(3365), - [aux_sym_cmd_identifier_token38] = ACTIONS(3367), - [aux_sym_cmd_identifier_token39] = ACTIONS(3367), - [aux_sym_cmd_identifier_token40] = ACTIONS(3367), - [anon_sym_LBRACK] = ACTIONS(3265), - [anon_sym_LPAREN] = ACTIONS(3267), - [anon_sym_DOLLAR] = ACTIONS(3313), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(3271), - [anon_sym_DOT_DOT] = ACTIONS(3273), - [aux_sym_expr_unary_token1] = ACTIONS(3315), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), - [anon_sym_DOT_DOT_LT] = ACTIONS(3277), - [aux_sym__val_number_decimal_token1] = ACTIONS(3369), - [aux_sym__val_number_decimal_token2] = ACTIONS(3371), - [aux_sym__val_number_decimal_token3] = ACTIONS(3373), - [aux_sym__val_number_decimal_token4] = ACTIONS(3375), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3377), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3289), - [anon_sym_POUND] = ACTIONS(247), - }, - [966] = { - [sym_expr_unary] = STATE(1738), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1738), - [sym__expr_binary_expression] = STATE(3792), - [sym_expr_parenthesized] = STATE(1738), - [sym__val_range] = STATE(7580), - [sym__val_range_with_end] = STATE(7312), - [sym__value] = STATE(1738), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(3673), - [sym_val_variable] = STATE(1643), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(3403), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_unquoted] = STATE(1489), - [sym__unquoted_with_expr] = STATE(1744), - [sym__unquoted_anonymous_prefix] = STATE(6990), - [sym_comment] = STATE(966), - [anon_sym_true] = ACTIONS(3363), - [anon_sym_false] = ACTIONS(3363), - [anon_sym_null] = ACTIONS(3365), - [aux_sym_cmd_identifier_token38] = ACTIONS(3367), - [aux_sym_cmd_identifier_token39] = ACTIONS(3367), - [aux_sym_cmd_identifier_token40] = ACTIONS(3367), - [anon_sym_LBRACK] = ACTIONS(3265), - [anon_sym_LPAREN] = ACTIONS(3267), - [anon_sym_DOLLAR] = ACTIONS(3313), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(3271), - [anon_sym_DOT_DOT] = ACTIONS(3273), - [aux_sym_expr_unary_token1] = ACTIONS(3315), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), - [anon_sym_DOT_DOT_LT] = ACTIONS(3277), - [aux_sym__val_number_decimal_token1] = ACTIONS(3369), - [aux_sym__val_number_decimal_token2] = ACTIONS(3371), - [aux_sym__val_number_decimal_token3] = ACTIONS(3373), - [aux_sym__val_number_decimal_token4] = ACTIONS(3375), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3377), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3289), - [anon_sym_POUND] = ACTIONS(247), - }, - [967] = { - [sym_ctrl_do] = STATE(5081), - [sym_ctrl_if] = STATE(5081), - [sym_ctrl_match] = STATE(5081), - [sym_ctrl_try] = STATE(5081), - [sym__expression] = STATE(5081), - [sym_expr_unary] = STATE(2430), - [sym__expr_unary_minus] = STATE(2432), - [sym_expr_binary] = STATE(2430), - [sym__expr_binary_expression] = STATE(3833), - [sym_expr_parenthesized] = STATE(2004), - [sym_val_range] = STATE(3821), - [sym__value] = STATE(2430), - [sym_val_nothing] = STATE(2399), - [sym_val_bool] = STATE(2399), - [sym_val_variable] = STATE(1994), - [sym_val_number] = STATE(2399), - [sym__val_number_decimal] = STATE(3110), - [sym__val_number] = STATE(2385), - [sym_val_duration] = STATE(2399), - [sym_val_filesize] = STATE(2399), - [sym_val_binary] = STATE(2399), - [sym_val_string] = STATE(2399), - [sym__str_double_quotes] = STATE(1975), - [sym_val_interpolated] = STATE(2399), - [sym__inter_single_quotes] = STATE(2384), - [sym__inter_double_quotes] = STATE(2390), - [sym_val_list] = STATE(2399), - [sym_val_record] = STATE(2399), - [sym_val_table] = STATE(2399), - [sym_val_closure] = STATE(2399), - [sym_comment] = STATE(967), - [ts_builtin_sym_end] = ACTIONS(3217), - [anon_sym_true] = ACTIONS(3379), - [anon_sym_false] = ACTIONS(3379), - [anon_sym_null] = ACTIONS(3381), - [aux_sym_cmd_identifier_token38] = ACTIONS(103), - [aux_sym_cmd_identifier_token39] = ACTIONS(103), - [aux_sym_cmd_identifier_token40] = ACTIONS(103), - [sym__newline] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_PIPE] = ACTIONS(3217), - [anon_sym_err_GT_PIPE] = ACTIONS(3217), - [anon_sym_out_GT_PIPE] = ACTIONS(3217), - [anon_sym_e_GT_PIPE] = ACTIONS(3217), - [anon_sym_o_GT_PIPE] = ACTIONS(3217), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3217), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3217), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3217), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3217), + [anon_sym_true] = ACTIONS(3298), + [anon_sym_false] = ACTIONS(3298), + [anon_sym_null] = ACTIONS(3300), + [aux_sym_cmd_identifier_token38] = ACTIONS(3302), + [aux_sym_cmd_identifier_token39] = ACTIONS(3302), + [aux_sym_cmd_identifier_token40] = ACTIONS(3302), [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(47), - [anon_sym_DOLLAR] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(3304), + [anon_sym_DOLLAR] = ACTIONS(3306), [anon_sym_DASH] = ACTIONS(53), - [anon_sym_do] = ACTIONS(3383), - [anon_sym_if] = ACTIONS(3385), - [anon_sym_match] = ACTIONS(3387), [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(73), - [anon_sym_try] = ACTIONS(3389), + [anon_sym_DOT_DOT] = ACTIONS(3308), [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(93), - [anon_sym_DOT_DOT_LT] = ACTIONS(93), - [aux_sym__val_number_decimal_token1] = ACTIONS(95), - [aux_sym__val_number_decimal_token2] = ACTIONS(97), - [aux_sym__val_number_decimal_token3] = ACTIONS(99), - [aux_sym__val_number_decimal_token4] = ACTIONS(101), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3310), + [anon_sym_DOT_DOT_LT] = ACTIONS(3310), + [aux_sym__val_number_decimal_token1] = ACTIONS(3312), + [aux_sym__val_number_decimal_token2] = ACTIONS(3314), + [aux_sym__val_number_decimal_token3] = ACTIONS(3316), + [aux_sym__val_number_decimal_token4] = ACTIONS(3318), [aux_sym__val_number_token1] = ACTIONS(103), [aux_sym__val_number_token2] = ACTIONS(103), [aux_sym__val_number_token3] = ACTIONS(103), [anon_sym_0b] = ACTIONS(105), [anon_sym_0o] = ACTIONS(107), [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(109), + [sym_val_date] = ACTIONS(3320), [anon_sym_DQUOTE] = ACTIONS(111), [sym__str_single_quotes] = ACTIONS(113), [sym__str_back_ticks] = ACTIONS(113), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3322), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(123), + }, + [965] = { + [sym_expr_unary] = STATE(1701), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1701), + [sym__expr_binary_expression] = STATE(1702), + [sym_expr_parenthesized] = STATE(1701), + [sym__val_range] = STATE(7780), + [sym__val_range_with_end] = STATE(7546), + [sym__value] = STATE(1701), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(3688), + [sym_val_variable] = STATE(1881), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(3459), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_unquoted] = STATE(1548), + [sym__unquoted_with_expr] = STATE(1707), + [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_comment] = STATE(965), + [anon_sym_true] = ACTIONS(3350), + [anon_sym_false] = ACTIONS(3350), + [anon_sym_null] = ACTIONS(3352), + [aux_sym_cmd_identifier_token38] = ACTIONS(3354), + [aux_sym_cmd_identifier_token39] = ACTIONS(3354), + [aux_sym_cmd_identifier_token40] = ACTIONS(3354), + [anon_sym_LBRACK] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym_DOLLAR] = ACTIONS(3360), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(3364), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [aux_sym__val_number_decimal_token1] = ACTIONS(3366), + [aux_sym__val_number_decimal_token2] = ACTIONS(3368), + [aux_sym__val_number_decimal_token3] = ACTIONS(3370), + [aux_sym__val_number_decimal_token4] = ACTIONS(3372), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3374), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3348), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), + }, + [966] = { + [sym_expr_unary] = STATE(1701), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1701), + [sym__expr_binary_expression] = STATE(3850), + [sym_expr_parenthesized] = STATE(1701), + [sym__val_range] = STATE(7780), + [sym__val_range_with_end] = STATE(7546), + [sym__value] = STATE(1701), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(3688), + [sym_val_variable] = STATE(1881), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(3459), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_unquoted] = STATE(1554), + [sym__unquoted_with_expr] = STATE(1709), + [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_comment] = STATE(966), + [anon_sym_true] = ACTIONS(3350), + [anon_sym_false] = ACTIONS(3350), + [anon_sym_null] = ACTIONS(3352), + [aux_sym_cmd_identifier_token38] = ACTIONS(3354), + [aux_sym_cmd_identifier_token39] = ACTIONS(3354), + [aux_sym_cmd_identifier_token40] = ACTIONS(3354), + [anon_sym_LBRACK] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym_DOLLAR] = ACTIONS(3360), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(3364), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [aux_sym__val_number_decimal_token1] = ACTIONS(3366), + [aux_sym__val_number_decimal_token2] = ACTIONS(3368), + [aux_sym__val_number_decimal_token3] = ACTIONS(3370), + [aux_sym__val_number_decimal_token4] = ACTIONS(3372), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3374), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3348), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), + }, + [967] = { + [sym_expr_unary] = STATE(1701), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1701), + [sym__expr_binary_expression] = STATE(3853), + [sym_expr_parenthesized] = STATE(1701), + [sym__val_range] = STATE(7780), + [sym__val_range_with_end] = STATE(7546), + [sym__value] = STATE(1701), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(3688), + [sym_val_variable] = STATE(1881), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(3459), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_unquoted] = STATE(1556), + [sym__unquoted_with_expr] = STATE(1710), + [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_comment] = STATE(967), + [anon_sym_true] = ACTIONS(3350), + [anon_sym_false] = ACTIONS(3350), + [anon_sym_null] = ACTIONS(3352), + [aux_sym_cmd_identifier_token38] = ACTIONS(3354), + [aux_sym_cmd_identifier_token39] = ACTIONS(3354), + [aux_sym_cmd_identifier_token40] = ACTIONS(3354), + [anon_sym_LBRACK] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym_DOLLAR] = ACTIONS(3360), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(3364), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [aux_sym__val_number_decimal_token1] = ACTIONS(3366), + [aux_sym__val_number_decimal_token2] = ACTIONS(3368), + [aux_sym__val_number_decimal_token3] = ACTIONS(3370), + [aux_sym__val_number_decimal_token4] = ACTIONS(3372), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3374), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3348), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [968] = { - [sym_expr_unary] = STATE(1738), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1738), - [sym__expr_binary_expression] = STATE(3794), - [sym_expr_parenthesized] = STATE(1738), - [sym__val_range] = STATE(7580), - [sym__val_range_with_end] = STATE(7312), - [sym__value] = STATE(1738), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(3673), - [sym_val_variable] = STATE(1643), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(3403), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_unquoted] = STATE(1490), - [sym__unquoted_with_expr] = STATE(1747), - [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_expr_unary] = STATE(1701), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1701), + [sym__expr_binary_expression] = STATE(3868), + [sym_expr_parenthesized] = STATE(1701), + [sym__val_range] = STATE(7780), + [sym__val_range_with_end] = STATE(7546), + [sym__value] = STATE(1701), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(3688), + [sym_val_variable] = STATE(1881), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(3459), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_unquoted] = STATE(1565), + [sym__unquoted_with_expr] = STATE(1714), + [sym__unquoted_anonymous_prefix] = STATE(7212), [sym_comment] = STATE(968), - [anon_sym_true] = ACTIONS(3363), - [anon_sym_false] = ACTIONS(3363), - [anon_sym_null] = ACTIONS(3365), - [aux_sym_cmd_identifier_token38] = ACTIONS(3367), - [aux_sym_cmd_identifier_token39] = ACTIONS(3367), - [aux_sym_cmd_identifier_token40] = ACTIONS(3367), - [anon_sym_LBRACK] = ACTIONS(3265), - [anon_sym_LPAREN] = ACTIONS(3267), - [anon_sym_DOLLAR] = ACTIONS(3313), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(3271), - [anon_sym_DOT_DOT] = ACTIONS(3273), - [aux_sym_expr_unary_token1] = ACTIONS(3315), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), - [anon_sym_DOT_DOT_LT] = ACTIONS(3277), - [aux_sym__val_number_decimal_token1] = ACTIONS(3369), - [aux_sym__val_number_decimal_token2] = ACTIONS(3371), - [aux_sym__val_number_decimal_token3] = ACTIONS(3373), - [aux_sym__val_number_decimal_token4] = ACTIONS(3375), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3377), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3289), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(3350), + [anon_sym_false] = ACTIONS(3350), + [anon_sym_null] = ACTIONS(3352), + [aux_sym_cmd_identifier_token38] = ACTIONS(3354), + [aux_sym_cmd_identifier_token39] = ACTIONS(3354), + [aux_sym_cmd_identifier_token40] = ACTIONS(3354), + [anon_sym_LBRACK] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym_DOLLAR] = ACTIONS(3360), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(3364), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [aux_sym__val_number_decimal_token1] = ACTIONS(3366), + [aux_sym__val_number_decimal_token2] = ACTIONS(3368), + [aux_sym__val_number_decimal_token3] = ACTIONS(3370), + [aux_sym__val_number_decimal_token4] = ACTIONS(3372), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3374), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3348), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [969] = { - [sym_expr_unary] = STATE(1738), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1738), - [sym__expr_binary_expression] = STATE(3787), - [sym_expr_parenthesized] = STATE(1738), - [sym__val_range] = STATE(7580), - [sym__val_range_with_end] = STATE(7312), - [sym__value] = STATE(1738), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(3707), - [sym_val_variable] = STATE(1643), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(3383), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_unquoted] = STATE(1500), - [sym__unquoted_with_expr] = STATE(1783), - [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_expr_unary] = STATE(1701), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1701), + [sym__expr_binary_expression] = STATE(3846), + [sym_expr_parenthesized] = STATE(1701), + [sym__val_range] = STATE(7780), + [sym__val_range_with_end] = STATE(7546), + [sym__value] = STATE(1701), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(3688), + [sym_val_variable] = STATE(1881), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(3459), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_unquoted] = STATE(1567), + [sym__unquoted_with_expr] = STATE(1718), + [sym__unquoted_anonymous_prefix] = STATE(7212), [sym_comment] = STATE(969), - [anon_sym_true] = ACTIONS(3259), - [anon_sym_false] = ACTIONS(3259), - [anon_sym_null] = ACTIONS(3261), - [aux_sym_cmd_identifier_token38] = ACTIONS(3263), - [aux_sym_cmd_identifier_token39] = ACTIONS(3263), - [aux_sym_cmd_identifier_token40] = ACTIONS(3263), - [anon_sym_LBRACK] = ACTIONS(3265), - [anon_sym_LPAREN] = ACTIONS(3267), - [anon_sym_DOLLAR] = ACTIONS(3269), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(3271), - [anon_sym_DOT_DOT] = ACTIONS(3273), - [aux_sym_expr_unary_token1] = ACTIONS(3275), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), - [anon_sym_DOT_DOT_LT] = ACTIONS(3277), - [aux_sym__val_number_decimal_token1] = ACTIONS(3279), - [aux_sym__val_number_decimal_token2] = ACTIONS(3281), - [aux_sym__val_number_decimal_token3] = ACTIONS(3283), - [aux_sym__val_number_decimal_token4] = ACTIONS(3285), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3287), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3289), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(3350), + [anon_sym_false] = ACTIONS(3350), + [anon_sym_null] = ACTIONS(3352), + [aux_sym_cmd_identifier_token38] = ACTIONS(3354), + [aux_sym_cmd_identifier_token39] = ACTIONS(3354), + [aux_sym_cmd_identifier_token40] = ACTIONS(3354), + [anon_sym_LBRACK] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym_DOLLAR] = ACTIONS(3360), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(3364), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [aux_sym__val_number_decimal_token1] = ACTIONS(3366), + [aux_sym__val_number_decimal_token2] = ACTIONS(3368), + [aux_sym__val_number_decimal_token3] = ACTIONS(3370), + [aux_sym__val_number_decimal_token4] = ACTIONS(3372), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3374), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3348), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [970] = { - [sym_expr_unary] = STATE(1738), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1738), - [sym__expr_binary_expression] = STATE(2250), - [sym_expr_parenthesized] = STATE(1738), - [sym__val_range] = STATE(7580), - [sym__val_range_with_end] = STATE(7312), - [sym__value] = STATE(1738), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1978), - [sym_val_variable] = STATE(1643), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1287), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_unquoted] = STATE(1499), - [sym__unquoted_with_expr] = STATE(1781), - [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_expr_unary] = STATE(1701), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1701), + [sym__expr_binary_expression] = STATE(3858), + [sym_expr_parenthesized] = STATE(1701), + [sym__val_range] = STATE(7780), + [sym__val_range_with_end] = STATE(7546), + [sym__value] = STATE(1701), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(3688), + [sym_val_variable] = STATE(1881), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(3459), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_unquoted] = STATE(1568), + [sym__unquoted_with_expr] = STATE(1719), + [sym__unquoted_anonymous_prefix] = STATE(7212), [sym_comment] = STATE(970), - [anon_sym_true] = ACTIONS(3327), - [anon_sym_false] = ACTIONS(3327), - [anon_sym_null] = ACTIONS(3329), - [aux_sym_cmd_identifier_token38] = ACTIONS(3331), - [aux_sym_cmd_identifier_token39] = ACTIONS(3331), - [aux_sym_cmd_identifier_token40] = ACTIONS(3331), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3333), - [anon_sym_DOLLAR] = ACTIONS(3335), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3273), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), - [anon_sym_DOT_DOT_LT] = ACTIONS(3277), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3289), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(3350), + [anon_sym_false] = ACTIONS(3350), + [anon_sym_null] = ACTIONS(3352), + [aux_sym_cmd_identifier_token38] = ACTIONS(3354), + [aux_sym_cmd_identifier_token39] = ACTIONS(3354), + [aux_sym_cmd_identifier_token40] = ACTIONS(3354), + [anon_sym_LBRACK] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym_DOLLAR] = ACTIONS(3360), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(3364), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [aux_sym__val_number_decimal_token1] = ACTIONS(3366), + [aux_sym__val_number_decimal_token2] = ACTIONS(3368), + [aux_sym__val_number_decimal_token3] = ACTIONS(3370), + [aux_sym__val_number_decimal_token4] = ACTIONS(3372), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3374), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3348), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [971] = { - [sym_expr_unary] = STATE(1738), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1738), - [sym__expr_binary_expression] = STATE(2263), - [sym_expr_parenthesized] = STATE(1738), - [sym__val_range] = STATE(7580), - [sym__val_range_with_end] = STATE(7312), - [sym__value] = STATE(1738), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1978), - [sym_val_variable] = STATE(1643), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1287), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_unquoted] = STATE(1500), - [sym__unquoted_with_expr] = STATE(1783), - [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_expr_unary] = STATE(1701), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1701), + [sym__expr_binary_expression] = STATE(3874), + [sym_expr_parenthesized] = STATE(1701), + [sym__val_range] = STATE(7780), + [sym__val_range_with_end] = STATE(7546), + [sym__value] = STATE(1701), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(3688), + [sym_val_variable] = STATE(1881), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(3459), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_unquoted] = STATE(1570), + [sym__unquoted_with_expr] = STATE(1721), + [sym__unquoted_anonymous_prefix] = STATE(7212), [sym_comment] = STATE(971), - [anon_sym_true] = ACTIONS(3327), - [anon_sym_false] = ACTIONS(3327), - [anon_sym_null] = ACTIONS(3329), - [aux_sym_cmd_identifier_token38] = ACTIONS(3331), - [aux_sym_cmd_identifier_token39] = ACTIONS(3331), - [aux_sym_cmd_identifier_token40] = ACTIONS(3331), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3333), - [anon_sym_DOLLAR] = ACTIONS(3335), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3273), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), - [anon_sym_DOT_DOT_LT] = ACTIONS(3277), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3289), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(3350), + [anon_sym_false] = ACTIONS(3350), + [anon_sym_null] = ACTIONS(3352), + [aux_sym_cmd_identifier_token38] = ACTIONS(3354), + [aux_sym_cmd_identifier_token39] = ACTIONS(3354), + [aux_sym_cmd_identifier_token40] = ACTIONS(3354), + [anon_sym_LBRACK] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym_DOLLAR] = ACTIONS(3360), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(3364), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [aux_sym__val_number_decimal_token1] = ACTIONS(3366), + [aux_sym__val_number_decimal_token2] = ACTIONS(3368), + [aux_sym__val_number_decimal_token3] = ACTIONS(3370), + [aux_sym__val_number_decimal_token4] = ACTIONS(3372), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3374), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3348), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [972] = { - [sym_expr_unary] = STATE(1738), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1738), - [sym__expr_binary_expression] = STATE(2363), - [sym_expr_parenthesized] = STATE(1738), - [sym__val_range] = STATE(7580), - [sym__val_range_with_end] = STATE(7312), - [sym__value] = STATE(1738), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1978), - [sym_val_variable] = STATE(1643), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1287), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_unquoted] = STATE(1501), - [sym__unquoted_with_expr] = STATE(1784), - [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_expr_unary] = STATE(1701), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1701), + [sym__expr_binary_expression] = STATE(3848), + [sym_expr_parenthesized] = STATE(1701), + [sym__val_range] = STATE(7780), + [sym__val_range_with_end] = STATE(7546), + [sym__value] = STATE(1701), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(3688), + [sym_val_variable] = STATE(1881), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(3459), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_unquoted] = STATE(1572), + [sym__unquoted_with_expr] = STATE(1731), + [sym__unquoted_anonymous_prefix] = STATE(7212), [sym_comment] = STATE(972), - [anon_sym_true] = ACTIONS(3327), - [anon_sym_false] = ACTIONS(3327), - [anon_sym_null] = ACTIONS(3329), - [aux_sym_cmd_identifier_token38] = ACTIONS(3331), - [aux_sym_cmd_identifier_token39] = ACTIONS(3331), - [aux_sym_cmd_identifier_token40] = ACTIONS(3331), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3333), - [anon_sym_DOLLAR] = ACTIONS(3335), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3273), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), - [anon_sym_DOT_DOT_LT] = ACTIONS(3277), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3289), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(3350), + [anon_sym_false] = ACTIONS(3350), + [anon_sym_null] = ACTIONS(3352), + [aux_sym_cmd_identifier_token38] = ACTIONS(3354), + [aux_sym_cmd_identifier_token39] = ACTIONS(3354), + [aux_sym_cmd_identifier_token40] = ACTIONS(3354), + [anon_sym_LBRACK] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym_DOLLAR] = ACTIONS(3360), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(3364), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [aux_sym__val_number_decimal_token1] = ACTIONS(3366), + [aux_sym__val_number_decimal_token2] = ACTIONS(3368), + [aux_sym__val_number_decimal_token3] = ACTIONS(3370), + [aux_sym__val_number_decimal_token4] = ACTIONS(3372), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3374), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3348), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [973] = { - [sym_expr_unary] = STATE(1738), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1738), - [sym__expr_binary_expression] = STATE(2302), - [sym_expr_parenthesized] = STATE(1738), - [sym__val_range] = STATE(7580), - [sym__val_range_with_end] = STATE(7312), - [sym__value] = STATE(1738), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(1978), - [sym_val_variable] = STATE(1643), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(1287), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_unquoted] = STATE(1502), - [sym__unquoted_with_expr] = STATE(1786), - [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_expr_unary] = STATE(1701), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1701), + [sym__expr_binary_expression] = STATE(3854), + [sym_expr_parenthesized] = STATE(1701), + [sym__val_range] = STATE(7780), + [sym__val_range_with_end] = STATE(7546), + [sym__value] = STATE(1701), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(3688), + [sym_val_variable] = STATE(1881), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(3459), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_unquoted] = STATE(1574), + [sym__unquoted_with_expr] = STATE(1732), + [sym__unquoted_anonymous_prefix] = STATE(7212), [sym_comment] = STATE(973), - [anon_sym_true] = ACTIONS(3327), - [anon_sym_false] = ACTIONS(3327), - [anon_sym_null] = ACTIONS(3329), - [aux_sym_cmd_identifier_token38] = ACTIONS(3331), - [aux_sym_cmd_identifier_token39] = ACTIONS(3331), - [aux_sym_cmd_identifier_token40] = ACTIONS(3331), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3333), - [anon_sym_DOLLAR] = ACTIONS(3335), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3273), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), - [anon_sym_DOT_DOT_LT] = ACTIONS(3277), - [aux_sym__val_number_decimal_token1] = ACTIONS(3337), - [aux_sym__val_number_decimal_token2] = ACTIONS(3339), - [aux_sym__val_number_decimal_token3] = ACTIONS(3341), - [aux_sym__val_number_decimal_token4] = ACTIONS(3343), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3289), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(3350), + [anon_sym_false] = ACTIONS(3350), + [anon_sym_null] = ACTIONS(3352), + [aux_sym_cmd_identifier_token38] = ACTIONS(3354), + [aux_sym_cmd_identifier_token39] = ACTIONS(3354), + [aux_sym_cmd_identifier_token40] = ACTIONS(3354), + [anon_sym_LBRACK] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym_DOLLAR] = ACTIONS(3360), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(3364), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [aux_sym__val_number_decimal_token1] = ACTIONS(3366), + [aux_sym__val_number_decimal_token2] = ACTIONS(3368), + [aux_sym__val_number_decimal_token3] = ACTIONS(3370), + [aux_sym__val_number_decimal_token4] = ACTIONS(3372), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3374), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3348), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [974] = { - [sym_expr_unary] = STATE(1738), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1738), - [sym__expr_binary_expression] = STATE(3795), - [sym_expr_parenthesized] = STATE(1738), - [sym__val_range] = STATE(7580), - [sym__val_range_with_end] = STATE(7312), - [sym__value] = STATE(1738), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(3673), - [sym_val_variable] = STATE(1643), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(3403), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_unquoted] = STATE(1495), - [sym__unquoted_with_expr] = STATE(1774), - [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_expr_unary] = STATE(1701), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1701), + [sym__expr_binary_expression] = STATE(3859), + [sym_expr_parenthesized] = STATE(1701), + [sym__val_range] = STATE(7780), + [sym__val_range_with_end] = STATE(7546), + [sym__value] = STATE(1701), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(3688), + [sym_val_variable] = STATE(1881), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(3459), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_unquoted] = STATE(1575), + [sym__unquoted_with_expr] = STATE(1735), + [sym__unquoted_anonymous_prefix] = STATE(7212), [sym_comment] = STATE(974), - [anon_sym_true] = ACTIONS(3363), - [anon_sym_false] = ACTIONS(3363), - [anon_sym_null] = ACTIONS(3365), - [aux_sym_cmd_identifier_token38] = ACTIONS(3367), - [aux_sym_cmd_identifier_token39] = ACTIONS(3367), - [aux_sym_cmd_identifier_token40] = ACTIONS(3367), - [anon_sym_LBRACK] = ACTIONS(3265), - [anon_sym_LPAREN] = ACTIONS(3267), - [anon_sym_DOLLAR] = ACTIONS(3313), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(3271), - [anon_sym_DOT_DOT] = ACTIONS(3273), - [aux_sym_expr_unary_token1] = ACTIONS(3315), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), - [anon_sym_DOT_DOT_LT] = ACTIONS(3277), - [aux_sym__val_number_decimal_token1] = ACTIONS(3369), - [aux_sym__val_number_decimal_token2] = ACTIONS(3371), - [aux_sym__val_number_decimal_token3] = ACTIONS(3373), - [aux_sym__val_number_decimal_token4] = ACTIONS(3375), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3377), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3289), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(3350), + [anon_sym_false] = ACTIONS(3350), + [anon_sym_null] = ACTIONS(3352), + [aux_sym_cmd_identifier_token38] = ACTIONS(3354), + [aux_sym_cmd_identifier_token39] = ACTIONS(3354), + [aux_sym_cmd_identifier_token40] = ACTIONS(3354), + [anon_sym_LBRACK] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym_DOLLAR] = ACTIONS(3360), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(3364), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [aux_sym__val_number_decimal_token1] = ACTIONS(3366), + [aux_sym__val_number_decimal_token2] = ACTIONS(3368), + [aux_sym__val_number_decimal_token3] = ACTIONS(3370), + [aux_sym__val_number_decimal_token4] = ACTIONS(3372), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3374), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3348), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [975] = { - [sym_expr_unary] = STATE(1738), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1738), - [sym__expr_binary_expression] = STATE(3800), - [sym_expr_parenthesized] = STATE(1738), - [sym__val_range] = STATE(7580), - [sym__val_range_with_end] = STATE(7312), - [sym__value] = STATE(1738), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(3673), - [sym_val_variable] = STATE(1643), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(3403), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_unquoted] = STATE(1496), - [sym__unquoted_with_expr] = STATE(1776), - [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_expr_unary] = STATE(1701), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1701), + [sym__expr_binary_expression] = STATE(3861), + [sym_expr_parenthesized] = STATE(1701), + [sym__val_range] = STATE(7780), + [sym__val_range_with_end] = STATE(7546), + [sym__value] = STATE(1701), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(3688), + [sym_val_variable] = STATE(1881), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(3459), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_unquoted] = STATE(1576), + [sym__unquoted_with_expr] = STATE(1738), + [sym__unquoted_anonymous_prefix] = STATE(7212), [sym_comment] = STATE(975), - [anon_sym_true] = ACTIONS(3363), - [anon_sym_false] = ACTIONS(3363), - [anon_sym_null] = ACTIONS(3365), - [aux_sym_cmd_identifier_token38] = ACTIONS(3367), - [aux_sym_cmd_identifier_token39] = ACTIONS(3367), - [aux_sym_cmd_identifier_token40] = ACTIONS(3367), - [anon_sym_LBRACK] = ACTIONS(3265), - [anon_sym_LPAREN] = ACTIONS(3267), - [anon_sym_DOLLAR] = ACTIONS(3313), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(3271), - [anon_sym_DOT_DOT] = ACTIONS(3273), - [aux_sym_expr_unary_token1] = ACTIONS(3315), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), - [anon_sym_DOT_DOT_LT] = ACTIONS(3277), - [aux_sym__val_number_decimal_token1] = ACTIONS(3369), - [aux_sym__val_number_decimal_token2] = ACTIONS(3371), - [aux_sym__val_number_decimal_token3] = ACTIONS(3373), - [aux_sym__val_number_decimal_token4] = ACTIONS(3375), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3377), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3289), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(3350), + [anon_sym_false] = ACTIONS(3350), + [anon_sym_null] = ACTIONS(3352), + [aux_sym_cmd_identifier_token38] = ACTIONS(3354), + [aux_sym_cmd_identifier_token39] = ACTIONS(3354), + [aux_sym_cmd_identifier_token40] = ACTIONS(3354), + [anon_sym_LBRACK] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym_DOLLAR] = ACTIONS(3360), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(3364), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [aux_sym__val_number_decimal_token1] = ACTIONS(3366), + [aux_sym__val_number_decimal_token2] = ACTIONS(3368), + [aux_sym__val_number_decimal_token3] = ACTIONS(3370), + [aux_sym__val_number_decimal_token4] = ACTIONS(3372), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3374), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3348), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [976] = { - [sym_expr_unary] = STATE(1738), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1738), - [sym__expr_binary_expression] = STATE(3801), - [sym_expr_parenthesized] = STATE(1738), - [sym__val_range] = STATE(7580), - [sym__val_range_with_end] = STATE(7312), - [sym__value] = STATE(1738), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(3673), - [sym_val_variable] = STATE(1643), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(3403), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_unquoted] = STATE(1497), - [sym__unquoted_with_expr] = STATE(1778), - [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_expr_unary] = STATE(1701), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1701), + [sym__expr_binary_expression] = STATE(3849), + [sym_expr_parenthesized] = STATE(1701), + [sym__val_range] = STATE(7780), + [sym__val_range_with_end] = STATE(7546), + [sym__value] = STATE(1701), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(3688), + [sym_val_variable] = STATE(1881), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(3459), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_unquoted] = STATE(1577), + [sym__unquoted_with_expr] = STATE(1740), + [sym__unquoted_anonymous_prefix] = STATE(7212), [sym_comment] = STATE(976), - [anon_sym_true] = ACTIONS(3363), - [anon_sym_false] = ACTIONS(3363), - [anon_sym_null] = ACTIONS(3365), - [aux_sym_cmd_identifier_token38] = ACTIONS(3367), - [aux_sym_cmd_identifier_token39] = ACTIONS(3367), - [aux_sym_cmd_identifier_token40] = ACTIONS(3367), - [anon_sym_LBRACK] = ACTIONS(3265), - [anon_sym_LPAREN] = ACTIONS(3267), - [anon_sym_DOLLAR] = ACTIONS(3313), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(3271), - [anon_sym_DOT_DOT] = ACTIONS(3273), - [aux_sym_expr_unary_token1] = ACTIONS(3315), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), - [anon_sym_DOT_DOT_LT] = ACTIONS(3277), - [aux_sym__val_number_decimal_token1] = ACTIONS(3369), - [aux_sym__val_number_decimal_token2] = ACTIONS(3371), - [aux_sym__val_number_decimal_token3] = ACTIONS(3373), - [aux_sym__val_number_decimal_token4] = ACTIONS(3375), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3377), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3289), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(3350), + [anon_sym_false] = ACTIONS(3350), + [anon_sym_null] = ACTIONS(3352), + [aux_sym_cmd_identifier_token38] = ACTIONS(3354), + [aux_sym_cmd_identifier_token39] = ACTIONS(3354), + [aux_sym_cmd_identifier_token40] = ACTIONS(3354), + [anon_sym_LBRACK] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym_DOLLAR] = ACTIONS(3360), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(3364), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [aux_sym__val_number_decimal_token1] = ACTIONS(3366), + [aux_sym__val_number_decimal_token2] = ACTIONS(3368), + [aux_sym__val_number_decimal_token3] = ACTIONS(3370), + [aux_sym__val_number_decimal_token4] = ACTIONS(3372), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3374), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3348), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [977] = { - [sym_expr_unary] = STATE(1738), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1738), - [sym__expr_binary_expression] = STATE(3802), - [sym_expr_parenthesized] = STATE(1738), - [sym__val_range] = STATE(7580), - [sym__val_range_with_end] = STATE(7312), - [sym__value] = STATE(1738), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(3673), - [sym_val_variable] = STATE(1643), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(3403), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_unquoted] = STATE(1498), - [sym__unquoted_with_expr] = STATE(1780), - [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_expr_unary] = STATE(2512), + [sym__expr_unary_minus] = STATE(2510), + [sym_expr_binary] = STATE(2512), + [sym__expr_binary_expression] = STATE(3353), + [sym_expr_parenthesized] = STATE(2512), + [sym__val_range] = STATE(7869), + [sym__val_range_with_end] = STATE(7524), + [sym__value] = STATE(2512), + [sym_val_nothing] = STATE(2441), + [sym_val_bool] = STATE(3183), + [sym_val_variable] = STATE(2441), + [sym_val_number] = STATE(2441), + [sym__val_number_decimal] = STATE(3024), + [sym__val_number] = STATE(2488), + [sym_val_duration] = STATE(2441), + [sym_val_filesize] = STATE(2441), + [sym_val_binary] = STATE(2441), + [sym_val_string] = STATE(2441), + [sym__raw_str] = STATE(2065), + [sym__str_double_quotes] = STATE(2065), + [sym_val_interpolated] = STATE(2441), + [sym__inter_single_quotes] = STATE(2563), + [sym__inter_double_quotes] = STATE(2436), + [sym_val_list] = STATE(2441), + [sym_val_record] = STATE(2441), + [sym_val_table] = STATE(2441), + [sym_val_closure] = STATE(2441), + [sym_unquoted] = STATE(2222), + [sym__unquoted_with_expr] = STATE(2531), + [sym__unquoted_anonymous_prefix] = STATE(6886), [sym_comment] = STATE(977), - [anon_sym_true] = ACTIONS(3363), - [anon_sym_false] = ACTIONS(3363), - [anon_sym_null] = ACTIONS(3365), - [aux_sym_cmd_identifier_token38] = ACTIONS(3367), - [aux_sym_cmd_identifier_token39] = ACTIONS(3367), - [aux_sym_cmd_identifier_token40] = ACTIONS(3367), - [anon_sym_LBRACK] = ACTIONS(3265), - [anon_sym_LPAREN] = ACTIONS(3267), - [anon_sym_DOLLAR] = ACTIONS(3313), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(3271), - [anon_sym_DOT_DOT] = ACTIONS(3273), - [aux_sym_expr_unary_token1] = ACTIONS(3315), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), - [anon_sym_DOT_DOT_LT] = ACTIONS(3277), - [aux_sym__val_number_decimal_token1] = ACTIONS(3369), - [aux_sym__val_number_decimal_token2] = ACTIONS(3371), - [aux_sym__val_number_decimal_token3] = ACTIONS(3373), - [aux_sym__val_number_decimal_token4] = ACTIONS(3375), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3377), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3289), - [anon_sym_POUND] = ACTIONS(247), - }, - [978] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2432), - [sym_expr_binary] = STATE(2438), - [sym__expr_binary_expression] = STATE(2443), - [sym_expr_parenthesized] = STATE(2438), - [sym__val_range] = STATE(7480), - [sym__val_range_with_end] = STATE(7292), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2399), - [sym_val_bool] = STATE(2149), - [sym_val_variable] = STATE(2399), - [sym_val_number] = STATE(2399), - [sym__val_number_decimal] = STATE(1386), - [sym__val_number] = STATE(2385), - [sym_val_duration] = STATE(2399), - [sym_val_filesize] = STATE(2399), - [sym_val_binary] = STATE(2399), - [sym_val_string] = STATE(2399), - [sym__str_double_quotes] = STATE(1975), - [sym_val_interpolated] = STATE(2399), - [sym__inter_single_quotes] = STATE(2384), - [sym__inter_double_quotes] = STATE(2390), - [sym_val_list] = STATE(2399), - [sym_val_record] = STATE(2399), - [sym_val_table] = STATE(2399), - [sym_val_closure] = STATE(2399), - [sym_unquoted] = STATE(2134), - [sym__unquoted_with_expr] = STATE(2444), - [sym__unquoted_anonymous_prefix] = STATE(6622), - [sym_comment] = STATE(978), - [anon_sym_true] = ACTIONS(3291), - [anon_sym_false] = ACTIONS(3291), - [anon_sym_null] = ACTIONS(3293), - [aux_sym_cmd_identifier_token38] = ACTIONS(3295), - [aux_sym_cmd_identifier_token39] = ACTIONS(3295), - [aux_sym_cmd_identifier_token40] = ACTIONS(3295), + [anon_sym_true] = ACTIONS(3298), + [anon_sym_false] = ACTIONS(3298), + [anon_sym_null] = ACTIONS(3300), + [aux_sym_cmd_identifier_token38] = ACTIONS(3302), + [aux_sym_cmd_identifier_token39] = ACTIONS(3302), + [aux_sym_cmd_identifier_token40] = ACTIONS(3302), [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3239), - [anon_sym_DOLLAR] = ACTIONS(3241), + [anon_sym_LPAREN] = ACTIONS(3304), + [anon_sym_DOLLAR] = ACTIONS(3306), [anon_sym_DASH] = ACTIONS(53), [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3243), + [anon_sym_DOT_DOT] = ACTIONS(3308), [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3245), - [anon_sym_DOT_DOT_LT] = ACTIONS(3245), - [aux_sym__val_number_decimal_token1] = ACTIONS(3297), - [aux_sym__val_number_decimal_token2] = ACTIONS(3299), - [aux_sym__val_number_decimal_token3] = ACTIONS(3301), - [aux_sym__val_number_decimal_token4] = ACTIONS(3303), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3310), + [anon_sym_DOT_DOT_LT] = ACTIONS(3310), + [aux_sym__val_number_decimal_token1] = ACTIONS(3312), + [aux_sym__val_number_decimal_token2] = ACTIONS(3314), + [aux_sym__val_number_decimal_token3] = ACTIONS(3316), + [aux_sym__val_number_decimal_token4] = ACTIONS(3318), [aux_sym__val_number_token1] = ACTIONS(103), [aux_sym__val_number_token2] = ACTIONS(103), [aux_sym__val_number_token3] = ACTIONS(103), [anon_sym_0b] = ACTIONS(105), [anon_sym_0o] = ACTIONS(107), [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3305), + [sym_val_date] = ACTIONS(3320), [anon_sym_DQUOTE] = ACTIONS(111), [sym__str_single_quotes] = ACTIONS(113), [sym__str_back_ticks] = ACTIONS(113), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3257), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3322), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(123), + }, + [978] = { + [sym_expr_unary] = STATE(1701), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1701), + [sym__expr_binary_expression] = STATE(3851), + [sym_expr_parenthesized] = STATE(1701), + [sym__val_range] = STATE(7780), + [sym__val_range_with_end] = STATE(7546), + [sym__value] = STATE(1701), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(3688), + [sym_val_variable] = STATE(1881), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(3459), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_unquoted] = STATE(1578), + [sym__unquoted_with_expr] = STATE(1743), + [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_comment] = STATE(978), + [anon_sym_true] = ACTIONS(3350), + [anon_sym_false] = ACTIONS(3350), + [anon_sym_null] = ACTIONS(3352), + [aux_sym_cmd_identifier_token38] = ACTIONS(3354), + [aux_sym_cmd_identifier_token39] = ACTIONS(3354), + [aux_sym_cmd_identifier_token40] = ACTIONS(3354), + [anon_sym_LBRACK] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym_DOLLAR] = ACTIONS(3360), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(3364), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [aux_sym__val_number_decimal_token1] = ACTIONS(3366), + [aux_sym__val_number_decimal_token2] = ACTIONS(3368), + [aux_sym__val_number_decimal_token3] = ACTIONS(3370), + [aux_sym__val_number_decimal_token4] = ACTIONS(3372), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3374), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3348), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [979] = { - [sym_expr_unary] = STATE(1738), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1738), - [sym__expr_binary_expression] = STATE(3804), - [sym_expr_parenthesized] = STATE(1738), - [sym__val_range] = STATE(7580), - [sym__val_range_with_end] = STATE(7312), - [sym__value] = STATE(1738), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(3673), - [sym_val_variable] = STATE(1643), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(3403), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_unquoted] = STATE(1499), - [sym__unquoted_with_expr] = STATE(1781), - [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_expr_unary] = STATE(2512), + [sym__expr_unary_minus] = STATE(2510), + [sym_expr_binary] = STATE(2512), + [sym__expr_binary_expression] = STATE(2540), + [sym_expr_parenthesized] = STATE(2512), + [sym__val_range] = STATE(7869), + [sym__val_range_with_end] = STATE(7524), + [sym__value] = STATE(2512), + [sym_val_nothing] = STATE(2441), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(2441), + [sym_val_number] = STATE(2441), + [sym__val_number_decimal] = STATE(1430), + [sym__val_number] = STATE(2488), + [sym_val_duration] = STATE(2441), + [sym_val_filesize] = STATE(2441), + [sym_val_binary] = STATE(2441), + [sym_val_string] = STATE(2441), + [sym__raw_str] = STATE(2065), + [sym__str_double_quotes] = STATE(2065), + [sym_val_interpolated] = STATE(2441), + [sym__inter_single_quotes] = STATE(2563), + [sym__inter_double_quotes] = STATE(2436), + [sym_val_list] = STATE(2441), + [sym_val_record] = STATE(2441), + [sym_val_table] = STATE(2441), + [sym_val_closure] = STATE(2441), + [sym_unquoted] = STATE(2242), + [sym__unquoted_with_expr] = STATE(2548), + [sym__unquoted_anonymous_prefix] = STATE(6886), [sym_comment] = STATE(979), - [anon_sym_true] = ACTIONS(3363), - [anon_sym_false] = ACTIONS(3363), - [anon_sym_null] = ACTIONS(3365), - [aux_sym_cmd_identifier_token38] = ACTIONS(3367), - [aux_sym_cmd_identifier_token39] = ACTIONS(3367), - [aux_sym_cmd_identifier_token40] = ACTIONS(3367), - [anon_sym_LBRACK] = ACTIONS(3265), - [anon_sym_LPAREN] = ACTIONS(3267), - [anon_sym_DOLLAR] = ACTIONS(3313), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(3271), - [anon_sym_DOT_DOT] = ACTIONS(3273), - [aux_sym_expr_unary_token1] = ACTIONS(3315), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), - [anon_sym_DOT_DOT_LT] = ACTIONS(3277), - [aux_sym__val_number_decimal_token1] = ACTIONS(3369), - [aux_sym__val_number_decimal_token2] = ACTIONS(3371), - [aux_sym__val_number_decimal_token3] = ACTIONS(3373), - [aux_sym__val_number_decimal_token4] = ACTIONS(3375), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3377), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3289), - [anon_sym_POUND] = ACTIONS(247), - }, - [980] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2432), - [sym_expr_binary] = STATE(2438), - [sym__expr_binary_expression] = STATE(2439), - [sym_expr_parenthesized] = STATE(2438), - [sym__val_range] = STATE(7480), - [sym__val_range_with_end] = STATE(7292), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2399), - [sym_val_bool] = STATE(3156), - [sym_val_variable] = STATE(2399), - [sym_val_number] = STATE(2399), - [sym__val_number_decimal] = STATE(2937), - [sym__val_number] = STATE(2385), - [sym_val_duration] = STATE(2399), - [sym_val_filesize] = STATE(2399), - [sym_val_binary] = STATE(2399), - [sym_val_string] = STATE(2399), - [sym__str_double_quotes] = STATE(1975), - [sym_val_interpolated] = STATE(2399), - [sym__inter_single_quotes] = STATE(2384), - [sym__inter_double_quotes] = STATE(2390), - [sym_val_list] = STATE(2399), - [sym_val_record] = STATE(2399), - [sym_val_table] = STATE(2399), - [sym_val_closure] = STATE(2399), - [sym_unquoted] = STATE(2130), - [sym__unquoted_with_expr] = STATE(2440), - [sym__unquoted_anonymous_prefix] = STATE(6622), - [sym_comment] = STATE(980), - [anon_sym_true] = ACTIONS(3233), - [anon_sym_false] = ACTIONS(3233), - [anon_sym_null] = ACTIONS(3235), - [aux_sym_cmd_identifier_token38] = ACTIONS(3237), - [aux_sym_cmd_identifier_token39] = ACTIONS(3237), - [aux_sym_cmd_identifier_token40] = ACTIONS(3237), + [anon_sym_true] = ACTIONS(3376), + [anon_sym_false] = ACTIONS(3376), + [anon_sym_null] = ACTIONS(3378), + [aux_sym_cmd_identifier_token38] = ACTIONS(3380), + [aux_sym_cmd_identifier_token39] = ACTIONS(3380), + [aux_sym_cmd_identifier_token40] = ACTIONS(3380), [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3239), - [anon_sym_DOLLAR] = ACTIONS(3241), + [anon_sym_LPAREN] = ACTIONS(3304), + [anon_sym_DOLLAR] = ACTIONS(3306), [anon_sym_DASH] = ACTIONS(53), [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3243), + [anon_sym_DOT_DOT] = ACTIONS(3308), [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3245), - [anon_sym_DOT_DOT_LT] = ACTIONS(3245), - [aux_sym__val_number_decimal_token1] = ACTIONS(3247), - [aux_sym__val_number_decimal_token2] = ACTIONS(3249), - [aux_sym__val_number_decimal_token3] = ACTIONS(3251), - [aux_sym__val_number_decimal_token4] = ACTIONS(3253), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3310), + [anon_sym_DOT_DOT_LT] = ACTIONS(3310), + [aux_sym__val_number_decimal_token1] = ACTIONS(3382), + [aux_sym__val_number_decimal_token2] = ACTIONS(3384), + [aux_sym__val_number_decimal_token3] = ACTIONS(3386), + [aux_sym__val_number_decimal_token4] = ACTIONS(3388), [aux_sym__val_number_token1] = ACTIONS(103), [aux_sym__val_number_token2] = ACTIONS(103), [aux_sym__val_number_token3] = ACTIONS(103), [anon_sym_0b] = ACTIONS(105), [anon_sym_0o] = ACTIONS(107), [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3255), + [sym_val_date] = ACTIONS(3390), [anon_sym_DQUOTE] = ACTIONS(111), [sym__str_single_quotes] = ACTIONS(113), [sym__str_back_ticks] = ACTIONS(113), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3257), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3322), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(123), }, - [981] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2432), - [sym_expr_binary] = STATE(2438), - [sym__expr_binary_expression] = STATE(3322), - [sym_expr_parenthesized] = STATE(2438), - [sym__val_range] = STATE(7480), - [sym__val_range_with_end] = STATE(7292), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2399), - [sym_val_bool] = STATE(3156), - [sym_val_variable] = STATE(2399), - [sym_val_number] = STATE(2399), - [sym__val_number_decimal] = STATE(2937), - [sym__val_number] = STATE(2385), - [sym_val_duration] = STATE(2399), - [sym_val_filesize] = STATE(2399), - [sym_val_binary] = STATE(2399), - [sym_val_string] = STATE(2399), - [sym__str_double_quotes] = STATE(1975), - [sym_val_interpolated] = STATE(2399), - [sym__inter_single_quotes] = STATE(2384), - [sym__inter_double_quotes] = STATE(2390), - [sym_val_list] = STATE(2399), - [sym_val_record] = STATE(2399), - [sym_val_table] = STATE(2399), - [sym_val_closure] = STATE(2399), - [sym_unquoted] = STATE(2133), - [sym__unquoted_with_expr] = STATE(2442), - [sym__unquoted_anonymous_prefix] = STATE(6622), - [sym_comment] = STATE(981), - [anon_sym_true] = ACTIONS(3233), - [anon_sym_false] = ACTIONS(3233), - [anon_sym_null] = ACTIONS(3235), - [aux_sym_cmd_identifier_token38] = ACTIONS(3237), - [aux_sym_cmd_identifier_token39] = ACTIONS(3237), - [aux_sym_cmd_identifier_token40] = ACTIONS(3237), + [980] = { + [sym_expr_unary] = STATE(2512), + [sym__expr_unary_minus] = STATE(2510), + [sym_expr_binary] = STATE(2512), + [sym__expr_binary_expression] = STATE(2515), + [sym_expr_parenthesized] = STATE(2512), + [sym__val_range] = STATE(7869), + [sym__val_range_with_end] = STATE(7524), + [sym__value] = STATE(2512), + [sym_val_nothing] = STATE(2441), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(2441), + [sym_val_number] = STATE(2441), + [sym__val_number_decimal] = STATE(1430), + [sym__val_number] = STATE(2488), + [sym_val_duration] = STATE(2441), + [sym_val_filesize] = STATE(2441), + [sym_val_binary] = STATE(2441), + [sym_val_string] = STATE(2441), + [sym__raw_str] = STATE(2065), + [sym__str_double_quotes] = STATE(2065), + [sym_val_interpolated] = STATE(2441), + [sym__inter_single_quotes] = STATE(2563), + [sym__inter_double_quotes] = STATE(2436), + [sym_val_list] = STATE(2441), + [sym_val_record] = STATE(2441), + [sym_val_table] = STATE(2441), + [sym_val_closure] = STATE(2441), + [sym_unquoted] = STATE(2216), + [sym__unquoted_with_expr] = STATE(2523), + [sym__unquoted_anonymous_prefix] = STATE(6886), + [sym_comment] = STATE(980), + [anon_sym_true] = ACTIONS(3376), + [anon_sym_false] = ACTIONS(3376), + [anon_sym_null] = ACTIONS(3378), + [aux_sym_cmd_identifier_token38] = ACTIONS(3380), + [aux_sym_cmd_identifier_token39] = ACTIONS(3380), + [aux_sym_cmd_identifier_token40] = ACTIONS(3380), [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3239), - [anon_sym_DOLLAR] = ACTIONS(3241), + [anon_sym_LPAREN] = ACTIONS(3304), + [anon_sym_DOLLAR] = ACTIONS(3306), [anon_sym_DASH] = ACTIONS(53), [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3243), + [anon_sym_DOT_DOT] = ACTIONS(3308), [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3245), - [anon_sym_DOT_DOT_LT] = ACTIONS(3245), - [aux_sym__val_number_decimal_token1] = ACTIONS(3247), - [aux_sym__val_number_decimal_token2] = ACTIONS(3249), - [aux_sym__val_number_decimal_token3] = ACTIONS(3251), - [aux_sym__val_number_decimal_token4] = ACTIONS(3253), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3310), + [anon_sym_DOT_DOT_LT] = ACTIONS(3310), + [aux_sym__val_number_decimal_token1] = ACTIONS(3382), + [aux_sym__val_number_decimal_token2] = ACTIONS(3384), + [aux_sym__val_number_decimal_token3] = ACTIONS(3386), + [aux_sym__val_number_decimal_token4] = ACTIONS(3388), [aux_sym__val_number_token1] = ACTIONS(103), [aux_sym__val_number_token2] = ACTIONS(103), [aux_sym__val_number_token3] = ACTIONS(103), [anon_sym_0b] = ACTIONS(105), [anon_sym_0o] = ACTIONS(107), [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3255), + [sym_val_date] = ACTIONS(3390), [anon_sym_DQUOTE] = ACTIONS(111), [sym__str_single_quotes] = ACTIONS(113), [sym__str_back_ticks] = ACTIONS(113), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3257), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3322), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(123), }, - [982] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2432), - [sym_expr_binary] = STATE(2438), - [sym__expr_binary_expression] = STATE(3323), - [sym_expr_parenthesized] = STATE(2438), - [sym__val_range] = STATE(7480), - [sym__val_range_with_end] = STATE(7292), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2399), - [sym_val_bool] = STATE(3156), - [sym_val_variable] = STATE(2399), - [sym_val_number] = STATE(2399), - [sym__val_number_decimal] = STATE(2937), - [sym__val_number] = STATE(2385), - [sym_val_duration] = STATE(2399), - [sym_val_filesize] = STATE(2399), - [sym_val_binary] = STATE(2399), - [sym_val_string] = STATE(2399), - [sym__str_double_quotes] = STATE(1975), - [sym_val_interpolated] = STATE(2399), - [sym__inter_single_quotes] = STATE(2384), - [sym__inter_double_quotes] = STATE(2390), - [sym_val_list] = STATE(2399), - [sym_val_record] = STATE(2399), - [sym_val_table] = STATE(2399), - [sym_val_closure] = STATE(2399), - [sym_unquoted] = STATE(2134), - [sym__unquoted_with_expr] = STATE(2444), - [sym__unquoted_anonymous_prefix] = STATE(6622), - [sym_comment] = STATE(982), - [anon_sym_true] = ACTIONS(3233), - [anon_sym_false] = ACTIONS(3233), - [anon_sym_null] = ACTIONS(3235), - [aux_sym_cmd_identifier_token38] = ACTIONS(3237), - [aux_sym_cmd_identifier_token39] = ACTIONS(3237), - [aux_sym_cmd_identifier_token40] = ACTIONS(3237), + [981] = { + [sym_expr_unary] = STATE(2512), + [sym__expr_unary_minus] = STATE(2510), + [sym_expr_binary] = STATE(2512), + [sym__expr_binary_expression] = STATE(2549), + [sym_expr_parenthesized] = STATE(2512), + [sym__val_range] = STATE(7869), + [sym__val_range_with_end] = STATE(7524), + [sym__value] = STATE(2512), + [sym_val_nothing] = STATE(2441), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(2441), + [sym_val_number] = STATE(2441), + [sym__val_number_decimal] = STATE(1430), + [sym__val_number] = STATE(2488), + [sym_val_duration] = STATE(2441), + [sym_val_filesize] = STATE(2441), + [sym_val_binary] = STATE(2441), + [sym_val_string] = STATE(2441), + [sym__raw_str] = STATE(2065), + [sym__str_double_quotes] = STATE(2065), + [sym_val_interpolated] = STATE(2441), + [sym__inter_single_quotes] = STATE(2563), + [sym__inter_double_quotes] = STATE(2436), + [sym_val_list] = STATE(2441), + [sym_val_record] = STATE(2441), + [sym_val_table] = STATE(2441), + [sym_val_closure] = STATE(2441), + [sym_unquoted] = STATE(2243), + [sym__unquoted_with_expr] = STATE(2554), + [sym__unquoted_anonymous_prefix] = STATE(6886), + [sym_comment] = STATE(981), + [anon_sym_true] = ACTIONS(3376), + [anon_sym_false] = ACTIONS(3376), + [anon_sym_null] = ACTIONS(3378), + [aux_sym_cmd_identifier_token38] = ACTIONS(3380), + [aux_sym_cmd_identifier_token39] = ACTIONS(3380), + [aux_sym_cmd_identifier_token40] = ACTIONS(3380), [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3239), - [anon_sym_DOLLAR] = ACTIONS(3241), + [anon_sym_LPAREN] = ACTIONS(3304), + [anon_sym_DOLLAR] = ACTIONS(3306), [anon_sym_DASH] = ACTIONS(53), [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3243), + [anon_sym_DOT_DOT] = ACTIONS(3308), [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3245), - [anon_sym_DOT_DOT_LT] = ACTIONS(3245), - [aux_sym__val_number_decimal_token1] = ACTIONS(3247), - [aux_sym__val_number_decimal_token2] = ACTIONS(3249), - [aux_sym__val_number_decimal_token3] = ACTIONS(3251), - [aux_sym__val_number_decimal_token4] = ACTIONS(3253), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3310), + [anon_sym_DOT_DOT_LT] = ACTIONS(3310), + [aux_sym__val_number_decimal_token1] = ACTIONS(3382), + [aux_sym__val_number_decimal_token2] = ACTIONS(3384), + [aux_sym__val_number_decimal_token3] = ACTIONS(3386), + [aux_sym__val_number_decimal_token4] = ACTIONS(3388), [aux_sym__val_number_token1] = ACTIONS(103), [aux_sym__val_number_token2] = ACTIONS(103), [aux_sym__val_number_token3] = ACTIONS(103), [anon_sym_0b] = ACTIONS(105), [anon_sym_0o] = ACTIONS(107), [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3255), + [sym_val_date] = ACTIONS(3390), [anon_sym_DQUOTE] = ACTIONS(111), [sym__str_single_quotes] = ACTIONS(113), [sym__str_back_ticks] = ACTIONS(113), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3257), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3322), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(123), }, - [983] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2432), - [sym_expr_binary] = STATE(2438), - [sym__expr_binary_expression] = STATE(3324), - [sym_expr_parenthesized] = STATE(2438), - [sym__val_range] = STATE(7480), - [sym__val_range_with_end] = STATE(7292), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2399), - [sym_val_bool] = STATE(3156), - [sym_val_variable] = STATE(2399), - [sym_val_number] = STATE(2399), - [sym__val_number_decimal] = STATE(2937), - [sym__val_number] = STATE(2385), - [sym_val_duration] = STATE(2399), - [sym_val_filesize] = STATE(2399), - [sym_val_binary] = STATE(2399), - [sym_val_string] = STATE(2399), - [sym__str_double_quotes] = STATE(1975), - [sym_val_interpolated] = STATE(2399), - [sym__inter_single_quotes] = STATE(2384), - [sym__inter_double_quotes] = STATE(2390), - [sym_val_list] = STATE(2399), - [sym_val_record] = STATE(2399), - [sym_val_table] = STATE(2399), - [sym_val_closure] = STATE(2399), - [sym_unquoted] = STATE(2136), - [sym__unquoted_with_expr] = STATE(2448), - [sym__unquoted_anonymous_prefix] = STATE(6622), - [sym_comment] = STATE(983), - [anon_sym_true] = ACTIONS(3233), - [anon_sym_false] = ACTIONS(3233), - [anon_sym_null] = ACTIONS(3235), - [aux_sym_cmd_identifier_token38] = ACTIONS(3237), - [aux_sym_cmd_identifier_token39] = ACTIONS(3237), - [aux_sym_cmd_identifier_token40] = ACTIONS(3237), + [982] = { + [sym_expr_unary] = STATE(2512), + [sym__expr_unary_minus] = STATE(2510), + [sym_expr_binary] = STATE(2512), + [sym__expr_binary_expression] = STATE(2556), + [sym_expr_parenthesized] = STATE(2512), + [sym__val_range] = STATE(7869), + [sym__val_range_with_end] = STATE(7524), + [sym__value] = STATE(2512), + [sym_val_nothing] = STATE(2441), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(2441), + [sym_val_number] = STATE(2441), + [sym__val_number_decimal] = STATE(1430), + [sym__val_number] = STATE(2488), + [sym_val_duration] = STATE(2441), + [sym_val_filesize] = STATE(2441), + [sym_val_binary] = STATE(2441), + [sym_val_string] = STATE(2441), + [sym__raw_str] = STATE(2065), + [sym__str_double_quotes] = STATE(2065), + [sym_val_interpolated] = STATE(2441), + [sym__inter_single_quotes] = STATE(2563), + [sym__inter_double_quotes] = STATE(2436), + [sym_val_list] = STATE(2441), + [sym_val_record] = STATE(2441), + [sym_val_table] = STATE(2441), + [sym_val_closure] = STATE(2441), + [sym_unquoted] = STATE(2080), + [sym__unquoted_with_expr] = STATE(2561), + [sym__unquoted_anonymous_prefix] = STATE(6886), + [sym_comment] = STATE(982), + [anon_sym_true] = ACTIONS(3376), + [anon_sym_false] = ACTIONS(3376), + [anon_sym_null] = ACTIONS(3378), + [aux_sym_cmd_identifier_token38] = ACTIONS(3380), + [aux_sym_cmd_identifier_token39] = ACTIONS(3380), + [aux_sym_cmd_identifier_token40] = ACTIONS(3380), [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3239), - [anon_sym_DOLLAR] = ACTIONS(3241), + [anon_sym_LPAREN] = ACTIONS(3304), + [anon_sym_DOLLAR] = ACTIONS(3306), [anon_sym_DASH] = ACTIONS(53), [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3243), + [anon_sym_DOT_DOT] = ACTIONS(3308), [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3245), - [anon_sym_DOT_DOT_LT] = ACTIONS(3245), - [aux_sym__val_number_decimal_token1] = ACTIONS(3247), - [aux_sym__val_number_decimal_token2] = ACTIONS(3249), - [aux_sym__val_number_decimal_token3] = ACTIONS(3251), - [aux_sym__val_number_decimal_token4] = ACTIONS(3253), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3310), + [anon_sym_DOT_DOT_LT] = ACTIONS(3310), + [aux_sym__val_number_decimal_token1] = ACTIONS(3382), + [aux_sym__val_number_decimal_token2] = ACTIONS(3384), + [aux_sym__val_number_decimal_token3] = ACTIONS(3386), + [aux_sym__val_number_decimal_token4] = ACTIONS(3388), [aux_sym__val_number_token1] = ACTIONS(103), [aux_sym__val_number_token2] = ACTIONS(103), [aux_sym__val_number_token3] = ACTIONS(103), [anon_sym_0b] = ACTIONS(105), [anon_sym_0o] = ACTIONS(107), [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3255), + [sym_val_date] = ACTIONS(3390), [anon_sym_DQUOTE] = ACTIONS(111), [sym__str_single_quotes] = ACTIONS(113), [sym__str_back_ticks] = ACTIONS(113), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3257), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3322), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(123), }, - [984] = { - [sym_expr_unary] = STATE(1738), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1738), - [sym__expr_binary_expression] = STATE(3791), - [sym_expr_parenthesized] = STATE(1738), - [sym__val_range] = STATE(7580), - [sym__val_range_with_end] = STATE(7312), - [sym__value] = STATE(1738), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(3707), - [sym_val_variable] = STATE(1643), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(3383), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_unquoted] = STATE(1498), - [sym__unquoted_with_expr] = STATE(1780), - [sym__unquoted_anonymous_prefix] = STATE(6990), - [sym_comment] = STATE(984), - [anon_sym_true] = ACTIONS(3259), - [anon_sym_false] = ACTIONS(3259), - [anon_sym_null] = ACTIONS(3261), - [aux_sym_cmd_identifier_token38] = ACTIONS(3263), - [aux_sym_cmd_identifier_token39] = ACTIONS(3263), - [aux_sym_cmd_identifier_token40] = ACTIONS(3263), - [anon_sym_LBRACK] = ACTIONS(3265), - [anon_sym_LPAREN] = ACTIONS(3267), - [anon_sym_DOLLAR] = ACTIONS(3269), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(3271), - [anon_sym_DOT_DOT] = ACTIONS(3273), - [aux_sym_expr_unary_token1] = ACTIONS(3275), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), - [anon_sym_DOT_DOT_LT] = ACTIONS(3277), - [aux_sym__val_number_decimal_token1] = ACTIONS(3279), - [aux_sym__val_number_decimal_token2] = ACTIONS(3281), - [aux_sym__val_number_decimal_token3] = ACTIONS(3283), - [aux_sym__val_number_decimal_token4] = ACTIONS(3285), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3287), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3289), - [anon_sym_POUND] = ACTIONS(247), - }, - [985] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2432), - [sym_expr_binary] = STATE(2438), - [sym__expr_binary_expression] = STATE(3327), - [sym_expr_parenthesized] = STATE(2438), - [sym__val_range] = STATE(7480), - [sym__val_range_with_end] = STATE(7292), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2399), - [sym_val_bool] = STATE(3156), - [sym_val_variable] = STATE(2399), - [sym_val_number] = STATE(2399), - [sym__val_number_decimal] = STATE(2937), - [sym__val_number] = STATE(2385), - [sym_val_duration] = STATE(2399), - [sym_val_filesize] = STATE(2399), - [sym_val_binary] = STATE(2399), - [sym_val_string] = STATE(2399), - [sym__str_double_quotes] = STATE(1975), - [sym_val_interpolated] = STATE(2399), - [sym__inter_single_quotes] = STATE(2384), - [sym__inter_double_quotes] = STATE(2390), - [sym_val_list] = STATE(2399), - [sym_val_record] = STATE(2399), - [sym_val_table] = STATE(2399), - [sym_val_closure] = STATE(2399), - [sym_unquoted] = STATE(2153), - [sym__unquoted_with_expr] = STATE(2452), - [sym__unquoted_anonymous_prefix] = STATE(6622), - [sym_comment] = STATE(985), - [anon_sym_true] = ACTIONS(3233), - [anon_sym_false] = ACTIONS(3233), - [anon_sym_null] = ACTIONS(3235), - [aux_sym_cmd_identifier_token38] = ACTIONS(3237), - [aux_sym_cmd_identifier_token39] = ACTIONS(3237), - [aux_sym_cmd_identifier_token40] = ACTIONS(3237), + [983] = { + [sym_expr_unary] = STATE(2512), + [sym__expr_unary_minus] = STATE(2510), + [sym_expr_binary] = STATE(2512), + [sym__expr_binary_expression] = STATE(2462), + [sym_expr_parenthesized] = STATE(2512), + [sym__val_range] = STATE(7869), + [sym__val_range_with_end] = STATE(7524), + [sym__value] = STATE(2512), + [sym_val_nothing] = STATE(2441), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(2441), + [sym_val_number] = STATE(2441), + [sym__val_number_decimal] = STATE(1430), + [sym__val_number] = STATE(2488), + [sym_val_duration] = STATE(2441), + [sym_val_filesize] = STATE(2441), + [sym_val_binary] = STATE(2441), + [sym_val_string] = STATE(2441), + [sym__raw_str] = STATE(2065), + [sym__str_double_quotes] = STATE(2065), + [sym_val_interpolated] = STATE(2441), + [sym__inter_single_quotes] = STATE(2563), + [sym__inter_double_quotes] = STATE(2436), + [sym_val_list] = STATE(2441), + [sym_val_record] = STATE(2441), + [sym_val_table] = STATE(2441), + [sym_val_closure] = STATE(2441), + [sym_unquoted] = STATE(2083), + [sym__unquoted_with_expr] = STATE(2482), + [sym__unquoted_anonymous_prefix] = STATE(6886), + [sym_comment] = STATE(983), + [anon_sym_true] = ACTIONS(3376), + [anon_sym_false] = ACTIONS(3376), + [anon_sym_null] = ACTIONS(3378), + [aux_sym_cmd_identifier_token38] = ACTIONS(3380), + [aux_sym_cmd_identifier_token39] = ACTIONS(3380), + [aux_sym_cmd_identifier_token40] = ACTIONS(3380), [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3239), - [anon_sym_DOLLAR] = ACTIONS(3241), + [anon_sym_LPAREN] = ACTIONS(3304), + [anon_sym_DOLLAR] = ACTIONS(3306), [anon_sym_DASH] = ACTIONS(53), [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3243), + [anon_sym_DOT_DOT] = ACTIONS(3308), [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3245), - [anon_sym_DOT_DOT_LT] = ACTIONS(3245), - [aux_sym__val_number_decimal_token1] = ACTIONS(3247), - [aux_sym__val_number_decimal_token2] = ACTIONS(3249), - [aux_sym__val_number_decimal_token3] = ACTIONS(3251), - [aux_sym__val_number_decimal_token4] = ACTIONS(3253), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3310), + [anon_sym_DOT_DOT_LT] = ACTIONS(3310), + [aux_sym__val_number_decimal_token1] = ACTIONS(3382), + [aux_sym__val_number_decimal_token2] = ACTIONS(3384), + [aux_sym__val_number_decimal_token3] = ACTIONS(3386), + [aux_sym__val_number_decimal_token4] = ACTIONS(3388), [aux_sym__val_number_token1] = ACTIONS(103), [aux_sym__val_number_token2] = ACTIONS(103), [aux_sym__val_number_token3] = ACTIONS(103), [anon_sym_0b] = ACTIONS(105), [anon_sym_0o] = ACTIONS(107), [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3255), + [sym_val_date] = ACTIONS(3390), [anon_sym_DQUOTE] = ACTIONS(111), [sym__str_single_quotes] = ACTIONS(113), [sym__str_back_ticks] = ACTIONS(113), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3257), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3322), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(123), }, - [986] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2432), - [sym_expr_binary] = STATE(2438), - [sym__expr_binary_expression] = STATE(3328), - [sym_expr_parenthesized] = STATE(2438), - [sym__val_range] = STATE(7480), - [sym__val_range_with_end] = STATE(7292), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2399), - [sym_val_bool] = STATE(3156), - [sym_val_variable] = STATE(2399), - [sym_val_number] = STATE(2399), - [sym__val_number_decimal] = STATE(2937), - [sym__val_number] = STATE(2385), - [sym_val_duration] = STATE(2399), - [sym_val_filesize] = STATE(2399), - [sym_val_binary] = STATE(2399), - [sym_val_string] = STATE(2399), - [sym__str_double_quotes] = STATE(1975), - [sym_val_interpolated] = STATE(2399), - [sym__inter_single_quotes] = STATE(2384), - [sym__inter_double_quotes] = STATE(2390), - [sym_val_list] = STATE(2399), - [sym_val_record] = STATE(2399), - [sym_val_table] = STATE(2399), - [sym_val_closure] = STATE(2399), - [sym_unquoted] = STATE(2154), - [sym__unquoted_with_expr] = STATE(2383), - [sym__unquoted_anonymous_prefix] = STATE(6622), - [sym_comment] = STATE(986), - [anon_sym_true] = ACTIONS(3233), - [anon_sym_false] = ACTIONS(3233), - [anon_sym_null] = ACTIONS(3235), - [aux_sym_cmd_identifier_token38] = ACTIONS(3237), - [aux_sym_cmd_identifier_token39] = ACTIONS(3237), - [aux_sym_cmd_identifier_token40] = ACTIONS(3237), + [984] = { + [sym_expr_unary] = STATE(2512), + [sym__expr_unary_minus] = STATE(2510), + [sym_expr_binary] = STATE(2512), + [sym__expr_binary_expression] = STATE(2483), + [sym_expr_parenthesized] = STATE(2512), + [sym__val_range] = STATE(7869), + [sym__val_range_with_end] = STATE(7524), + [sym__value] = STATE(2512), + [sym_val_nothing] = STATE(2441), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(2441), + [sym_val_number] = STATE(2441), + [sym__val_number_decimal] = STATE(1430), + [sym__val_number] = STATE(2488), + [sym_val_duration] = STATE(2441), + [sym_val_filesize] = STATE(2441), + [sym_val_binary] = STATE(2441), + [sym_val_string] = STATE(2441), + [sym__raw_str] = STATE(2065), + [sym__str_double_quotes] = STATE(2065), + [sym_val_interpolated] = STATE(2441), + [sym__inter_single_quotes] = STATE(2563), + [sym__inter_double_quotes] = STATE(2436), + [sym_val_list] = STATE(2441), + [sym_val_record] = STATE(2441), + [sym_val_table] = STATE(2441), + [sym_val_closure] = STATE(2441), + [sym_unquoted] = STATE(2084), + [sym__unquoted_with_expr] = STATE(2489), + [sym__unquoted_anonymous_prefix] = STATE(6886), + [sym_comment] = STATE(984), + [anon_sym_true] = ACTIONS(3376), + [anon_sym_false] = ACTIONS(3376), + [anon_sym_null] = ACTIONS(3378), + [aux_sym_cmd_identifier_token38] = ACTIONS(3380), + [aux_sym_cmd_identifier_token39] = ACTIONS(3380), + [aux_sym_cmd_identifier_token40] = ACTIONS(3380), [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3239), - [anon_sym_DOLLAR] = ACTIONS(3241), + [anon_sym_LPAREN] = ACTIONS(3304), + [anon_sym_DOLLAR] = ACTIONS(3306), [anon_sym_DASH] = ACTIONS(53), [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3243), + [anon_sym_DOT_DOT] = ACTIONS(3308), [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3245), - [anon_sym_DOT_DOT_LT] = ACTIONS(3245), - [aux_sym__val_number_decimal_token1] = ACTIONS(3247), - [aux_sym__val_number_decimal_token2] = ACTIONS(3249), - [aux_sym__val_number_decimal_token3] = ACTIONS(3251), - [aux_sym__val_number_decimal_token4] = ACTIONS(3253), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3310), + [anon_sym_DOT_DOT_LT] = ACTIONS(3310), + [aux_sym__val_number_decimal_token1] = ACTIONS(3382), + [aux_sym__val_number_decimal_token2] = ACTIONS(3384), + [aux_sym__val_number_decimal_token3] = ACTIONS(3386), + [aux_sym__val_number_decimal_token4] = ACTIONS(3388), [aux_sym__val_number_token1] = ACTIONS(103), [aux_sym__val_number_token2] = ACTIONS(103), [aux_sym__val_number_token3] = ACTIONS(103), [anon_sym_0b] = ACTIONS(105), [anon_sym_0o] = ACTIONS(107), [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3255), + [sym_val_date] = ACTIONS(3390), [anon_sym_DQUOTE] = ACTIONS(111), [sym__str_single_quotes] = ACTIONS(113), [sym__str_back_ticks] = ACTIONS(113), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3257), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3322), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(123), }, - [987] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2432), - [sym_expr_binary] = STATE(2438), - [sym__expr_binary_expression] = STATE(3329), - [sym_expr_parenthesized] = STATE(2438), - [sym__val_range] = STATE(7480), - [sym__val_range_with_end] = STATE(7292), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2399), - [sym_val_bool] = STATE(3156), - [sym_val_variable] = STATE(2399), - [sym_val_number] = STATE(2399), - [sym__val_number_decimal] = STATE(2937), - [sym__val_number] = STATE(2385), - [sym_val_duration] = STATE(2399), - [sym_val_filesize] = STATE(2399), - [sym_val_binary] = STATE(2399), - [sym_val_string] = STATE(2399), - [sym__str_double_quotes] = STATE(1975), - [sym_val_interpolated] = STATE(2399), - [sym__inter_single_quotes] = STATE(2384), - [sym__inter_double_quotes] = STATE(2390), - [sym_val_list] = STATE(2399), - [sym_val_record] = STATE(2399), - [sym_val_table] = STATE(2399), - [sym_val_closure] = STATE(2399), - [sym_unquoted] = STATE(2187), - [sym__unquoted_with_expr] = STATE(2460), - [sym__unquoted_anonymous_prefix] = STATE(6622), - [sym_comment] = STATE(987), - [anon_sym_true] = ACTIONS(3233), - [anon_sym_false] = ACTIONS(3233), - [anon_sym_null] = ACTIONS(3235), - [aux_sym_cmd_identifier_token38] = ACTIONS(3237), - [aux_sym_cmd_identifier_token39] = ACTIONS(3237), - [aux_sym_cmd_identifier_token40] = ACTIONS(3237), + [985] = { + [sym_expr_unary] = STATE(2512), + [sym__expr_unary_minus] = STATE(2510), + [sym_expr_binary] = STATE(2512), + [sym__expr_binary_expression] = STATE(2490), + [sym_expr_parenthesized] = STATE(2512), + [sym__val_range] = STATE(7869), + [sym__val_range_with_end] = STATE(7524), + [sym__value] = STATE(2512), + [sym_val_nothing] = STATE(2441), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(2441), + [sym_val_number] = STATE(2441), + [sym__val_number_decimal] = STATE(1430), + [sym__val_number] = STATE(2488), + [sym_val_duration] = STATE(2441), + [sym_val_filesize] = STATE(2441), + [sym_val_binary] = STATE(2441), + [sym_val_string] = STATE(2441), + [sym__raw_str] = STATE(2065), + [sym__str_double_quotes] = STATE(2065), + [sym_val_interpolated] = STATE(2441), + [sym__inter_single_quotes] = STATE(2563), + [sym__inter_double_quotes] = STATE(2436), + [sym_val_list] = STATE(2441), + [sym_val_record] = STATE(2441), + [sym_val_table] = STATE(2441), + [sym_val_closure] = STATE(2441), + [sym_unquoted] = STATE(2085), + [sym__unquoted_with_expr] = STATE(2491), + [sym__unquoted_anonymous_prefix] = STATE(6886), + [sym_comment] = STATE(985), + [anon_sym_true] = ACTIONS(3376), + [anon_sym_false] = ACTIONS(3376), + [anon_sym_null] = ACTIONS(3378), + [aux_sym_cmd_identifier_token38] = ACTIONS(3380), + [aux_sym_cmd_identifier_token39] = ACTIONS(3380), + [aux_sym_cmd_identifier_token40] = ACTIONS(3380), [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3239), - [anon_sym_DOLLAR] = ACTIONS(3241), + [anon_sym_LPAREN] = ACTIONS(3304), + [anon_sym_DOLLAR] = ACTIONS(3306), [anon_sym_DASH] = ACTIONS(53), [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3243), + [anon_sym_DOT_DOT] = ACTIONS(3308), [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3245), - [anon_sym_DOT_DOT_LT] = ACTIONS(3245), - [aux_sym__val_number_decimal_token1] = ACTIONS(3247), - [aux_sym__val_number_decimal_token2] = ACTIONS(3249), - [aux_sym__val_number_decimal_token3] = ACTIONS(3251), - [aux_sym__val_number_decimal_token4] = ACTIONS(3253), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3310), + [anon_sym_DOT_DOT_LT] = ACTIONS(3310), + [aux_sym__val_number_decimal_token1] = ACTIONS(3382), + [aux_sym__val_number_decimal_token2] = ACTIONS(3384), + [aux_sym__val_number_decimal_token3] = ACTIONS(3386), + [aux_sym__val_number_decimal_token4] = ACTIONS(3388), [aux_sym__val_number_token1] = ACTIONS(103), [aux_sym__val_number_token2] = ACTIONS(103), [aux_sym__val_number_token3] = ACTIONS(103), [anon_sym_0b] = ACTIONS(105), [anon_sym_0o] = ACTIONS(107), [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3255), + [sym_val_date] = ACTIONS(3390), [anon_sym_DQUOTE] = ACTIONS(111), [sym__str_single_quotes] = ACTIONS(113), [sym__str_back_ticks] = ACTIONS(113), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3257), - [anon_sym_POUND] = ACTIONS(247), - }, - [988] = { - [sym_expr_unary] = STATE(1738), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1738), - [sym__expr_binary_expression] = STATE(3700), - [sym_expr_parenthesized] = STATE(1738), - [sym__val_range] = STATE(7580), - [sym__val_range_with_end] = STATE(7312), - [sym__value] = STATE(1738), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(3522), - [sym_val_variable] = STATE(1643), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(3346), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_unquoted] = STATE(1496), - [sym__unquoted_with_expr] = STATE(1776), - [sym__unquoted_anonymous_prefix] = STATE(6990), - [sym_comment] = STATE(988), - [anon_sym_true] = ACTIONS(3307), - [anon_sym_false] = ACTIONS(3307), - [anon_sym_null] = ACTIONS(3309), - [aux_sym_cmd_identifier_token38] = ACTIONS(3311), - [aux_sym_cmd_identifier_token39] = ACTIONS(3311), - [aux_sym_cmd_identifier_token40] = ACTIONS(3311), - [anon_sym_LBRACK] = ACTIONS(3265), - [anon_sym_LPAREN] = ACTIONS(3267), - [anon_sym_DOLLAR] = ACTIONS(3313), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(3271), - [anon_sym_DOT_DOT] = ACTIONS(3273), - [aux_sym_expr_unary_token1] = ACTIONS(3315), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), - [anon_sym_DOT_DOT_LT] = ACTIONS(3277), - [aux_sym__val_number_decimal_token1] = ACTIONS(3317), - [aux_sym__val_number_decimal_token2] = ACTIONS(3319), - [aux_sym__val_number_decimal_token3] = ACTIONS(3321), - [aux_sym__val_number_decimal_token4] = ACTIONS(3323), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3325), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3289), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3322), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(123), }, - [989] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2432), - [sym_expr_binary] = STATE(2438), - [sym__expr_binary_expression] = STATE(3331), - [sym_expr_parenthesized] = STATE(2438), - [sym__val_range] = STATE(7480), - [sym__val_range_with_end] = STATE(7292), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2399), - [sym_val_bool] = STATE(3156), - [sym_val_variable] = STATE(2399), - [sym_val_number] = STATE(2399), - [sym__val_number_decimal] = STATE(2937), - [sym__val_number] = STATE(2385), - [sym_val_duration] = STATE(2399), - [sym_val_filesize] = STATE(2399), - [sym_val_binary] = STATE(2399), - [sym_val_string] = STATE(2399), - [sym__str_double_quotes] = STATE(1975), - [sym_val_interpolated] = STATE(2399), - [sym__inter_single_quotes] = STATE(2384), - [sym__inter_double_quotes] = STATE(2390), - [sym_val_list] = STATE(2399), - [sym_val_record] = STATE(2399), - [sym_val_table] = STATE(2399), - [sym_val_closure] = STATE(2399), - [sym_unquoted] = STATE(2191), - [sym__unquoted_with_expr] = STATE(2467), - [sym__unquoted_anonymous_prefix] = STATE(6622), - [sym_comment] = STATE(989), - [anon_sym_true] = ACTIONS(3233), - [anon_sym_false] = ACTIONS(3233), - [anon_sym_null] = ACTIONS(3235), - [aux_sym_cmd_identifier_token38] = ACTIONS(3237), - [aux_sym_cmd_identifier_token39] = ACTIONS(3237), - [aux_sym_cmd_identifier_token40] = ACTIONS(3237), + [986] = { + [sym_expr_unary] = STATE(2512), + [sym__expr_unary_minus] = STATE(2510), + [sym_expr_binary] = STATE(2512), + [sym__expr_binary_expression] = STATE(2497), + [sym_expr_parenthesized] = STATE(2512), + [sym__val_range] = STATE(7869), + [sym__val_range_with_end] = STATE(7524), + [sym__value] = STATE(2512), + [sym_val_nothing] = STATE(2441), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(2441), + [sym_val_number] = STATE(2441), + [sym__val_number_decimal] = STATE(1430), + [sym__val_number] = STATE(2488), + [sym_val_duration] = STATE(2441), + [sym_val_filesize] = STATE(2441), + [sym_val_binary] = STATE(2441), + [sym_val_string] = STATE(2441), + [sym__raw_str] = STATE(2065), + [sym__str_double_quotes] = STATE(2065), + [sym_val_interpolated] = STATE(2441), + [sym__inter_single_quotes] = STATE(2563), + [sym__inter_double_quotes] = STATE(2436), + [sym_val_list] = STATE(2441), + [sym_val_record] = STATE(2441), + [sym_val_table] = STATE(2441), + [sym_val_closure] = STATE(2441), + [sym_unquoted] = STATE(2086), + [sym__unquoted_with_expr] = STATE(2502), + [sym__unquoted_anonymous_prefix] = STATE(6886), + [sym_comment] = STATE(986), + [anon_sym_true] = ACTIONS(3376), + [anon_sym_false] = ACTIONS(3376), + [anon_sym_null] = ACTIONS(3378), + [aux_sym_cmd_identifier_token38] = ACTIONS(3380), + [aux_sym_cmd_identifier_token39] = ACTIONS(3380), + [aux_sym_cmd_identifier_token40] = ACTIONS(3380), [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3239), - [anon_sym_DOLLAR] = ACTIONS(3241), + [anon_sym_LPAREN] = ACTIONS(3304), + [anon_sym_DOLLAR] = ACTIONS(3306), [anon_sym_DASH] = ACTIONS(53), [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3243), + [anon_sym_DOT_DOT] = ACTIONS(3308), [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3245), - [anon_sym_DOT_DOT_LT] = ACTIONS(3245), - [aux_sym__val_number_decimal_token1] = ACTIONS(3247), - [aux_sym__val_number_decimal_token2] = ACTIONS(3249), - [aux_sym__val_number_decimal_token3] = ACTIONS(3251), - [aux_sym__val_number_decimal_token4] = ACTIONS(3253), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3310), + [anon_sym_DOT_DOT_LT] = ACTIONS(3310), + [aux_sym__val_number_decimal_token1] = ACTIONS(3382), + [aux_sym__val_number_decimal_token2] = ACTIONS(3384), + [aux_sym__val_number_decimal_token3] = ACTIONS(3386), + [aux_sym__val_number_decimal_token4] = ACTIONS(3388), [aux_sym__val_number_token1] = ACTIONS(103), [aux_sym__val_number_token2] = ACTIONS(103), [aux_sym__val_number_token3] = ACTIONS(103), [anon_sym_0b] = ACTIONS(105), [anon_sym_0o] = ACTIONS(107), [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3255), + [sym_val_date] = ACTIONS(3390), [anon_sym_DQUOTE] = ACTIONS(111), [sym__str_single_quotes] = ACTIONS(113), [sym__str_back_ticks] = ACTIONS(113), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3257), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3322), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(123), }, - [990] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2432), - [sym_expr_binary] = STATE(2438), - [sym__expr_binary_expression] = STATE(3334), - [sym_expr_parenthesized] = STATE(2438), - [sym__val_range] = STATE(7480), - [sym__val_range_with_end] = STATE(7292), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2399), - [sym_val_bool] = STATE(3156), - [sym_val_variable] = STATE(2399), - [sym_val_number] = STATE(2399), - [sym__val_number_decimal] = STATE(2937), - [sym__val_number] = STATE(2385), - [sym_val_duration] = STATE(2399), - [sym_val_filesize] = STATE(2399), - [sym_val_binary] = STATE(2399), - [sym_val_string] = STATE(2399), - [sym__str_double_quotes] = STATE(1975), - [sym_val_interpolated] = STATE(2399), - [sym__inter_single_quotes] = STATE(2384), - [sym__inter_double_quotes] = STATE(2390), - [sym_val_list] = STATE(2399), - [sym_val_record] = STATE(2399), - [sym_val_table] = STATE(2399), - [sym_val_closure] = STATE(2399), - [sym_unquoted] = STATE(2192), - [sym__unquoted_with_expr] = STATE(2469), - [sym__unquoted_anonymous_prefix] = STATE(6622), - [sym_comment] = STATE(990), - [anon_sym_true] = ACTIONS(3233), - [anon_sym_false] = ACTIONS(3233), - [anon_sym_null] = ACTIONS(3235), - [aux_sym_cmd_identifier_token38] = ACTIONS(3237), - [aux_sym_cmd_identifier_token39] = ACTIONS(3237), - [aux_sym_cmd_identifier_token40] = ACTIONS(3237), + [987] = { + [sym_expr_unary] = STATE(2512), + [sym__expr_unary_minus] = STATE(2510), + [sym_expr_binary] = STATE(2512), + [sym__expr_binary_expression] = STATE(2527), + [sym_expr_parenthesized] = STATE(2512), + [sym__val_range] = STATE(7869), + [sym__val_range_with_end] = STATE(7524), + [sym__value] = STATE(2512), + [sym_val_nothing] = STATE(2441), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(2441), + [sym_val_number] = STATE(2441), + [sym__val_number_decimal] = STATE(1430), + [sym__val_number] = STATE(2488), + [sym_val_duration] = STATE(2441), + [sym_val_filesize] = STATE(2441), + [sym_val_binary] = STATE(2441), + [sym_val_string] = STATE(2441), + [sym__raw_str] = STATE(2065), + [sym__str_double_quotes] = STATE(2065), + [sym_val_interpolated] = STATE(2441), + [sym__inter_single_quotes] = STATE(2563), + [sym__inter_double_quotes] = STATE(2436), + [sym_val_list] = STATE(2441), + [sym_val_record] = STATE(2441), + [sym_val_table] = STATE(2441), + [sym_val_closure] = STATE(2441), + [sym_unquoted] = STATE(2217), + [sym__unquoted_with_expr] = STATE(2529), + [sym__unquoted_anonymous_prefix] = STATE(6886), + [sym_comment] = STATE(987), + [anon_sym_true] = ACTIONS(3376), + [anon_sym_false] = ACTIONS(3376), + [anon_sym_null] = ACTIONS(3378), + [aux_sym_cmd_identifier_token38] = ACTIONS(3380), + [aux_sym_cmd_identifier_token39] = ACTIONS(3380), + [aux_sym_cmd_identifier_token40] = ACTIONS(3380), [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3239), - [anon_sym_DOLLAR] = ACTIONS(3241), + [anon_sym_LPAREN] = ACTIONS(3304), + [anon_sym_DOLLAR] = ACTIONS(3306), [anon_sym_DASH] = ACTIONS(53), [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3243), + [anon_sym_DOT_DOT] = ACTIONS(3308), [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3245), - [anon_sym_DOT_DOT_LT] = ACTIONS(3245), - [aux_sym__val_number_decimal_token1] = ACTIONS(3247), - [aux_sym__val_number_decimal_token2] = ACTIONS(3249), - [aux_sym__val_number_decimal_token3] = ACTIONS(3251), - [aux_sym__val_number_decimal_token4] = ACTIONS(3253), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3310), + [anon_sym_DOT_DOT_LT] = ACTIONS(3310), + [aux_sym__val_number_decimal_token1] = ACTIONS(3382), + [aux_sym__val_number_decimal_token2] = ACTIONS(3384), + [aux_sym__val_number_decimal_token3] = ACTIONS(3386), + [aux_sym__val_number_decimal_token4] = ACTIONS(3388), [aux_sym__val_number_token1] = ACTIONS(103), [aux_sym__val_number_token2] = ACTIONS(103), [aux_sym__val_number_token3] = ACTIONS(103), [anon_sym_0b] = ACTIONS(105), [anon_sym_0o] = ACTIONS(107), [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3255), + [sym_val_date] = ACTIONS(3390), [anon_sym_DQUOTE] = ACTIONS(111), [sym__str_single_quotes] = ACTIONS(113), [sym__str_back_ticks] = ACTIONS(113), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3257), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3322), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(123), }, - [991] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2432), - [sym_expr_binary] = STATE(2438), - [sym__expr_binary_expression] = STATE(3337), - [sym_expr_parenthesized] = STATE(2438), - [sym__val_range] = STATE(7480), - [sym__val_range_with_end] = STATE(7292), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2399), - [sym_val_bool] = STATE(3156), - [sym_val_variable] = STATE(2399), - [sym_val_number] = STATE(2399), - [sym__val_number_decimal] = STATE(2937), - [sym__val_number] = STATE(2385), - [sym_val_duration] = STATE(2399), - [sym_val_filesize] = STATE(2399), - [sym_val_binary] = STATE(2399), - [sym_val_string] = STATE(2399), - [sym__str_double_quotes] = STATE(1975), - [sym_val_interpolated] = STATE(2399), - [sym__inter_single_quotes] = STATE(2384), - [sym__inter_double_quotes] = STATE(2390), - [sym_val_list] = STATE(2399), - [sym_val_record] = STATE(2399), - [sym_val_table] = STATE(2399), - [sym_val_closure] = STATE(2399), - [sym_unquoted] = STATE(2193), - [sym__unquoted_with_expr] = STATE(2424), - [sym__unquoted_anonymous_prefix] = STATE(6622), - [sym_comment] = STATE(991), - [anon_sym_true] = ACTIONS(3233), - [anon_sym_false] = ACTIONS(3233), - [anon_sym_null] = ACTIONS(3235), - [aux_sym_cmd_identifier_token38] = ACTIONS(3237), - [aux_sym_cmd_identifier_token39] = ACTIONS(3237), - [aux_sym_cmd_identifier_token40] = ACTIONS(3237), + [988] = { + [sym_expr_unary] = STATE(2512), + [sym__expr_unary_minus] = STATE(2510), + [sym_expr_binary] = STATE(2512), + [sym__expr_binary_expression] = STATE(2530), + [sym_expr_parenthesized] = STATE(2512), + [sym__val_range] = STATE(7869), + [sym__val_range_with_end] = STATE(7524), + [sym__value] = STATE(2512), + [sym_val_nothing] = STATE(2441), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(2441), + [sym_val_number] = STATE(2441), + [sym__val_number_decimal] = STATE(1430), + [sym__val_number] = STATE(2488), + [sym_val_duration] = STATE(2441), + [sym_val_filesize] = STATE(2441), + [sym_val_binary] = STATE(2441), + [sym_val_string] = STATE(2441), + [sym__raw_str] = STATE(2065), + [sym__str_double_quotes] = STATE(2065), + [sym_val_interpolated] = STATE(2441), + [sym__inter_single_quotes] = STATE(2563), + [sym__inter_double_quotes] = STATE(2436), + [sym_val_list] = STATE(2441), + [sym_val_record] = STATE(2441), + [sym_val_table] = STATE(2441), + [sym_val_closure] = STATE(2441), + [sym_unquoted] = STATE(2222), + [sym__unquoted_with_expr] = STATE(2531), + [sym__unquoted_anonymous_prefix] = STATE(6886), + [sym_comment] = STATE(988), + [anon_sym_true] = ACTIONS(3376), + [anon_sym_false] = ACTIONS(3376), + [anon_sym_null] = ACTIONS(3378), + [aux_sym_cmd_identifier_token38] = ACTIONS(3380), + [aux_sym_cmd_identifier_token39] = ACTIONS(3380), + [aux_sym_cmd_identifier_token40] = ACTIONS(3380), [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3239), - [anon_sym_DOLLAR] = ACTIONS(3241), + [anon_sym_LPAREN] = ACTIONS(3304), + [anon_sym_DOLLAR] = ACTIONS(3306), [anon_sym_DASH] = ACTIONS(53), [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3243), + [anon_sym_DOT_DOT] = ACTIONS(3308), [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3245), - [anon_sym_DOT_DOT_LT] = ACTIONS(3245), - [aux_sym__val_number_decimal_token1] = ACTIONS(3247), - [aux_sym__val_number_decimal_token2] = ACTIONS(3249), - [aux_sym__val_number_decimal_token3] = ACTIONS(3251), - [aux_sym__val_number_decimal_token4] = ACTIONS(3253), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3310), + [anon_sym_DOT_DOT_LT] = ACTIONS(3310), + [aux_sym__val_number_decimal_token1] = ACTIONS(3382), + [aux_sym__val_number_decimal_token2] = ACTIONS(3384), + [aux_sym__val_number_decimal_token3] = ACTIONS(3386), + [aux_sym__val_number_decimal_token4] = ACTIONS(3388), [aux_sym__val_number_token1] = ACTIONS(103), [aux_sym__val_number_token2] = ACTIONS(103), [aux_sym__val_number_token3] = ACTIONS(103), [anon_sym_0b] = ACTIONS(105), [anon_sym_0o] = ACTIONS(107), [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3255), + [sym_val_date] = ACTIONS(3390), [anon_sym_DQUOTE] = ACTIONS(111), [sym__str_single_quotes] = ACTIONS(113), [sym__str_back_ticks] = ACTIONS(113), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3257), - [anon_sym_POUND] = ACTIONS(247), - }, - [992] = { - [sym_expr_unary] = STATE(1738), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1738), - [sym__expr_binary_expression] = STATE(3805), - [sym_expr_parenthesized] = STATE(1738), - [sym__val_range] = STATE(7580), - [sym__val_range_with_end] = STATE(7312), - [sym__value] = STATE(1738), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(3673), - [sym_val_variable] = STATE(1643), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(3403), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_unquoted] = STATE(1500), - [sym__unquoted_with_expr] = STATE(1783), - [sym__unquoted_anonymous_prefix] = STATE(6990), - [sym_comment] = STATE(992), - [anon_sym_true] = ACTIONS(3363), - [anon_sym_false] = ACTIONS(3363), - [anon_sym_null] = ACTIONS(3365), - [aux_sym_cmd_identifier_token38] = ACTIONS(3367), - [aux_sym_cmd_identifier_token39] = ACTIONS(3367), - [aux_sym_cmd_identifier_token40] = ACTIONS(3367), - [anon_sym_LBRACK] = ACTIONS(3265), - [anon_sym_LPAREN] = ACTIONS(3267), - [anon_sym_DOLLAR] = ACTIONS(3313), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(3271), - [anon_sym_DOT_DOT] = ACTIONS(3273), - [aux_sym_expr_unary_token1] = ACTIONS(3315), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), - [anon_sym_DOT_DOT_LT] = ACTIONS(3277), - [aux_sym__val_number_decimal_token1] = ACTIONS(3369), - [aux_sym__val_number_decimal_token2] = ACTIONS(3371), - [aux_sym__val_number_decimal_token3] = ACTIONS(3373), - [aux_sym__val_number_decimal_token4] = ACTIONS(3375), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3377), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3289), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3322), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(123), }, - [993] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2432), - [sym_expr_binary] = STATE(2438), - [sym__expr_binary_expression] = STATE(3304), - [sym_expr_parenthesized] = STATE(2438), - [sym__val_range] = STATE(7480), - [sym__val_range_with_end] = STATE(7292), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2399), - [sym_val_bool] = STATE(3156), - [sym_val_variable] = STATE(2399), - [sym_val_number] = STATE(2399), - [sym__val_number_decimal] = STATE(2937), - [sym__val_number] = STATE(2385), - [sym_val_duration] = STATE(2399), - [sym_val_filesize] = STATE(2399), - [sym_val_binary] = STATE(2399), - [sym_val_string] = STATE(2399), - [sym__str_double_quotes] = STATE(1975), - [sym_val_interpolated] = STATE(2399), - [sym__inter_single_quotes] = STATE(2384), - [sym__inter_double_quotes] = STATE(2390), - [sym_val_list] = STATE(2399), - [sym_val_record] = STATE(2399), - [sym_val_table] = STATE(2399), - [sym_val_closure] = STATE(2399), - [sym_unquoted] = STATE(2194), - [sym__unquoted_with_expr] = STATE(2388), - [sym__unquoted_anonymous_prefix] = STATE(6622), - [sym_comment] = STATE(993), - [anon_sym_true] = ACTIONS(3233), - [anon_sym_false] = ACTIONS(3233), - [anon_sym_null] = ACTIONS(3235), - [aux_sym_cmd_identifier_token38] = ACTIONS(3237), - [aux_sym_cmd_identifier_token39] = ACTIONS(3237), - [aux_sym_cmd_identifier_token40] = ACTIONS(3237), + [989] = { + [sym_expr_unary] = STATE(2512), + [sym__expr_unary_minus] = STATE(2510), + [sym_expr_binary] = STATE(2512), + [sym__expr_binary_expression] = STATE(3376), + [sym_expr_parenthesized] = STATE(2512), + [sym__val_range] = STATE(7869), + [sym__val_range_with_end] = STATE(7524), + [sym__value] = STATE(2512), + [sym_val_nothing] = STATE(2441), + [sym_val_bool] = STATE(3183), + [sym_val_variable] = STATE(2441), + [sym_val_number] = STATE(2441), + [sym__val_number_decimal] = STATE(3024), + [sym__val_number] = STATE(2488), + [sym_val_duration] = STATE(2441), + [sym_val_filesize] = STATE(2441), + [sym_val_binary] = STATE(2441), + [sym_val_string] = STATE(2441), + [sym__raw_str] = STATE(2065), + [sym__str_double_quotes] = STATE(2065), + [sym_val_interpolated] = STATE(2441), + [sym__inter_single_quotes] = STATE(2563), + [sym__inter_double_quotes] = STATE(2436), + [sym_val_list] = STATE(2441), + [sym_val_record] = STATE(2441), + [sym_val_table] = STATE(2441), + [sym_val_closure] = STATE(2441), + [sym_unquoted] = STATE(2223), + [sym__unquoted_with_expr] = STATE(2533), + [sym__unquoted_anonymous_prefix] = STATE(6886), + [sym_comment] = STATE(989), + [anon_sym_true] = ACTIONS(3298), + [anon_sym_false] = ACTIONS(3298), + [anon_sym_null] = ACTIONS(3300), + [aux_sym_cmd_identifier_token38] = ACTIONS(3302), + [aux_sym_cmd_identifier_token39] = ACTIONS(3302), + [aux_sym_cmd_identifier_token40] = ACTIONS(3302), [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3239), - [anon_sym_DOLLAR] = ACTIONS(3241), + [anon_sym_LPAREN] = ACTIONS(3304), + [anon_sym_DOLLAR] = ACTIONS(3306), [anon_sym_DASH] = ACTIONS(53), [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3243), + [anon_sym_DOT_DOT] = ACTIONS(3308), [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3245), - [anon_sym_DOT_DOT_LT] = ACTIONS(3245), - [aux_sym__val_number_decimal_token1] = ACTIONS(3247), - [aux_sym__val_number_decimal_token2] = ACTIONS(3249), - [aux_sym__val_number_decimal_token3] = ACTIONS(3251), - [aux_sym__val_number_decimal_token4] = ACTIONS(3253), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3310), + [anon_sym_DOT_DOT_LT] = ACTIONS(3310), + [aux_sym__val_number_decimal_token1] = ACTIONS(3312), + [aux_sym__val_number_decimal_token2] = ACTIONS(3314), + [aux_sym__val_number_decimal_token3] = ACTIONS(3316), + [aux_sym__val_number_decimal_token4] = ACTIONS(3318), [aux_sym__val_number_token1] = ACTIONS(103), [aux_sym__val_number_token2] = ACTIONS(103), [aux_sym__val_number_token3] = ACTIONS(103), [anon_sym_0b] = ACTIONS(105), [anon_sym_0o] = ACTIONS(107), [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3255), + [sym_val_date] = ACTIONS(3320), [anon_sym_DQUOTE] = ACTIONS(111), [sym__str_single_quotes] = ACTIONS(113), [sym__str_back_ticks] = ACTIONS(113), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3257), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3322), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(123), }, - [994] = { - [sym_expr_unary] = STATE(1738), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1738), - [sym__expr_binary_expression] = STATE(3806), - [sym_expr_parenthesized] = STATE(1738), - [sym__val_range] = STATE(7580), - [sym__val_range_with_end] = STATE(7312), - [sym__value] = STATE(1738), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(3673), - [sym_val_variable] = STATE(1643), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(3403), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_unquoted] = STATE(1501), - [sym__unquoted_with_expr] = STATE(1784), - [sym__unquoted_anonymous_prefix] = STATE(6990), - [sym_comment] = STATE(994), - [anon_sym_true] = ACTIONS(3363), - [anon_sym_false] = ACTIONS(3363), - [anon_sym_null] = ACTIONS(3365), - [aux_sym_cmd_identifier_token38] = ACTIONS(3367), - [aux_sym_cmd_identifier_token39] = ACTIONS(3367), - [aux_sym_cmd_identifier_token40] = ACTIONS(3367), - [anon_sym_LBRACK] = ACTIONS(3265), - [anon_sym_LPAREN] = ACTIONS(3267), - [anon_sym_DOLLAR] = ACTIONS(3313), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(3271), - [anon_sym_DOT_DOT] = ACTIONS(3273), - [aux_sym_expr_unary_token1] = ACTIONS(3315), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), - [anon_sym_DOT_DOT_LT] = ACTIONS(3277), - [aux_sym__val_number_decimal_token1] = ACTIONS(3369), - [aux_sym__val_number_decimal_token2] = ACTIONS(3371), - [aux_sym__val_number_decimal_token3] = ACTIONS(3373), - [aux_sym__val_number_decimal_token4] = ACTIONS(3375), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3377), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3289), - [anon_sym_POUND] = ACTIONS(247), - }, - [995] = { - [sym_expr_unary] = STATE(1738), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1738), - [sym__expr_binary_expression] = STATE(3808), - [sym_expr_parenthesized] = STATE(1738), - [sym__val_range] = STATE(7580), - [sym__val_range_with_end] = STATE(7312), - [sym__value] = STATE(1738), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(3673), - [sym_val_variable] = STATE(1643), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(3403), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_unquoted] = STATE(1502), - [sym__unquoted_with_expr] = STATE(1786), - [sym__unquoted_anonymous_prefix] = STATE(6990), - [sym_comment] = STATE(995), - [anon_sym_true] = ACTIONS(3363), - [anon_sym_false] = ACTIONS(3363), - [anon_sym_null] = ACTIONS(3365), - [aux_sym_cmd_identifier_token38] = ACTIONS(3367), - [aux_sym_cmd_identifier_token39] = ACTIONS(3367), - [aux_sym_cmd_identifier_token40] = ACTIONS(3367), - [anon_sym_LBRACK] = ACTIONS(3265), - [anon_sym_LPAREN] = ACTIONS(3267), - [anon_sym_DOLLAR] = ACTIONS(3313), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(3271), - [anon_sym_DOT_DOT] = ACTIONS(3273), - [aux_sym_expr_unary_token1] = ACTIONS(3315), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), - [anon_sym_DOT_DOT_LT] = ACTIONS(3277), - [aux_sym__val_number_decimal_token1] = ACTIONS(3369), - [aux_sym__val_number_decimal_token2] = ACTIONS(3371), - [aux_sym__val_number_decimal_token3] = ACTIONS(3373), - [aux_sym__val_number_decimal_token4] = ACTIONS(3375), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3377), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3289), - [anon_sym_POUND] = ACTIONS(247), - }, - [996] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2432), - [sym_expr_binary] = STATE(2438), - [sym__expr_binary_expression] = STATE(2453), - [sym_expr_parenthesized] = STATE(2438), - [sym__val_range] = STATE(7480), - [sym__val_range_with_end] = STATE(7292), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2399), - [sym_val_bool] = STATE(2149), - [sym_val_variable] = STATE(2399), - [sym_val_number] = STATE(2399), - [sym__val_number_decimal] = STATE(1386), - [sym__val_number] = STATE(2385), - [sym_val_duration] = STATE(2399), - [sym_val_filesize] = STATE(2399), - [sym_val_binary] = STATE(2399), - [sym_val_string] = STATE(2399), - [sym__str_double_quotes] = STATE(1975), - [sym_val_interpolated] = STATE(2399), - [sym__inter_single_quotes] = STATE(2384), - [sym__inter_double_quotes] = STATE(2390), - [sym_val_list] = STATE(2399), - [sym_val_record] = STATE(2399), - [sym_val_table] = STATE(2399), - [sym_val_closure] = STATE(2399), - [sym_unquoted] = STATE(2154), - [sym__unquoted_with_expr] = STATE(2383), - [sym__unquoted_anonymous_prefix] = STATE(6622), - [sym_comment] = STATE(996), - [anon_sym_true] = ACTIONS(3291), - [anon_sym_false] = ACTIONS(3291), - [anon_sym_null] = ACTIONS(3293), - [aux_sym_cmd_identifier_token38] = ACTIONS(3295), - [aux_sym_cmd_identifier_token39] = ACTIONS(3295), - [aux_sym_cmd_identifier_token40] = ACTIONS(3295), + [990] = { + [sym_expr_unary] = STATE(2512), + [sym__expr_unary_minus] = STATE(2510), + [sym_expr_binary] = STATE(2512), + [sym__expr_binary_expression] = STATE(2532), + [sym_expr_parenthesized] = STATE(2512), + [sym__val_range] = STATE(7869), + [sym__val_range_with_end] = STATE(7524), + [sym__value] = STATE(2512), + [sym_val_nothing] = STATE(2441), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(2441), + [sym_val_number] = STATE(2441), + [sym__val_number_decimal] = STATE(1430), + [sym__val_number] = STATE(2488), + [sym_val_duration] = STATE(2441), + [sym_val_filesize] = STATE(2441), + [sym_val_binary] = STATE(2441), + [sym_val_string] = STATE(2441), + [sym__raw_str] = STATE(2065), + [sym__str_double_quotes] = STATE(2065), + [sym_val_interpolated] = STATE(2441), + [sym__inter_single_quotes] = STATE(2563), + [sym__inter_double_quotes] = STATE(2436), + [sym_val_list] = STATE(2441), + [sym_val_record] = STATE(2441), + [sym_val_table] = STATE(2441), + [sym_val_closure] = STATE(2441), + [sym_unquoted] = STATE(2223), + [sym__unquoted_with_expr] = STATE(2533), + [sym__unquoted_anonymous_prefix] = STATE(6886), + [sym_comment] = STATE(990), + [anon_sym_true] = ACTIONS(3376), + [anon_sym_false] = ACTIONS(3376), + [anon_sym_null] = ACTIONS(3378), + [aux_sym_cmd_identifier_token38] = ACTIONS(3380), + [aux_sym_cmd_identifier_token39] = ACTIONS(3380), + [aux_sym_cmd_identifier_token40] = ACTIONS(3380), [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3239), - [anon_sym_DOLLAR] = ACTIONS(3241), + [anon_sym_LPAREN] = ACTIONS(3304), + [anon_sym_DOLLAR] = ACTIONS(3306), [anon_sym_DASH] = ACTIONS(53), [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3243), + [anon_sym_DOT_DOT] = ACTIONS(3308), [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3245), - [anon_sym_DOT_DOT_LT] = ACTIONS(3245), - [aux_sym__val_number_decimal_token1] = ACTIONS(3297), - [aux_sym__val_number_decimal_token2] = ACTIONS(3299), - [aux_sym__val_number_decimal_token3] = ACTIONS(3301), - [aux_sym__val_number_decimal_token4] = ACTIONS(3303), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3310), + [anon_sym_DOT_DOT_LT] = ACTIONS(3310), + [aux_sym__val_number_decimal_token1] = ACTIONS(3382), + [aux_sym__val_number_decimal_token2] = ACTIONS(3384), + [aux_sym__val_number_decimal_token3] = ACTIONS(3386), + [aux_sym__val_number_decimal_token4] = ACTIONS(3388), [aux_sym__val_number_token1] = ACTIONS(103), [aux_sym__val_number_token2] = ACTIONS(103), [aux_sym__val_number_token3] = ACTIONS(103), [anon_sym_0b] = ACTIONS(105), [anon_sym_0o] = ACTIONS(107), [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3305), + [sym_val_date] = ACTIONS(3390), [anon_sym_DQUOTE] = ACTIONS(111), [sym__str_single_quotes] = ACTIONS(113), [sym__str_back_ticks] = ACTIONS(113), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3257), - [anon_sym_POUND] = ACTIONS(247), - }, - [997] = { - [sym_expr_unary] = STATE(1738), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1738), - [sym__expr_binary_expression] = STATE(3803), - [sym_expr_parenthesized] = STATE(1738), - [sym__val_range] = STATE(7580), - [sym__val_range_with_end] = STATE(7312), - [sym__value] = STATE(1738), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(3707), - [sym_val_variable] = STATE(1643), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(3383), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_unquoted] = STATE(1501), - [sym__unquoted_with_expr] = STATE(1784), - [sym__unquoted_anonymous_prefix] = STATE(6990), - [sym_comment] = STATE(997), - [anon_sym_true] = ACTIONS(3259), - [anon_sym_false] = ACTIONS(3259), - [anon_sym_null] = ACTIONS(3261), - [aux_sym_cmd_identifier_token38] = ACTIONS(3263), - [aux_sym_cmd_identifier_token39] = ACTIONS(3263), - [aux_sym_cmd_identifier_token40] = ACTIONS(3263), - [anon_sym_LBRACK] = ACTIONS(3265), - [anon_sym_LPAREN] = ACTIONS(3267), - [anon_sym_DOLLAR] = ACTIONS(3269), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(3271), - [anon_sym_DOT_DOT] = ACTIONS(3273), - [aux_sym_expr_unary_token1] = ACTIONS(3275), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), - [anon_sym_DOT_DOT_LT] = ACTIONS(3277), - [aux_sym__val_number_decimal_token1] = ACTIONS(3279), - [aux_sym__val_number_decimal_token2] = ACTIONS(3281), - [aux_sym__val_number_decimal_token3] = ACTIONS(3283), - [aux_sym__val_number_decimal_token4] = ACTIONS(3285), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3287), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3289), - [anon_sym_POUND] = ACTIONS(247), - }, - [998] = { - [sym_expr_unary] = STATE(1738), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1738), - [sym__expr_binary_expression] = STATE(3302), - [sym_expr_parenthesized] = STATE(1738), - [sym__val_range] = STATE(7580), - [sym__val_range_with_end] = STATE(7312), - [sym__value] = STATE(1738), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(3129), - [sym_val_variable] = STATE(1643), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(2873), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_unquoted] = STATE(1489), - [sym__unquoted_with_expr] = STATE(1744), - [sym__unquoted_anonymous_prefix] = STATE(6990), - [sym_comment] = STATE(998), - [anon_sym_true] = ACTIONS(3347), - [anon_sym_false] = ACTIONS(3347), - [anon_sym_null] = ACTIONS(3349), - [aux_sym_cmd_identifier_token38] = ACTIONS(3351), - [aux_sym_cmd_identifier_token39] = ACTIONS(3351), - [aux_sym_cmd_identifier_token40] = ACTIONS(3351), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3333), - [anon_sym_DOLLAR] = ACTIONS(3335), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3273), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), - [anon_sym_DOT_DOT_LT] = ACTIONS(3277), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3361), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3289), - [anon_sym_POUND] = ACTIONS(247), - }, - [999] = { - [sym_expr_unary] = STATE(1738), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1738), - [sym__expr_binary_expression] = STATE(3179), - [sym_expr_parenthesized] = STATE(1738), - [sym__val_range] = STATE(7580), - [sym__val_range_with_end] = STATE(7312), - [sym__value] = STATE(1738), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(3129), - [sym_val_variable] = STATE(1643), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(2873), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_unquoted] = STATE(1490), - [sym__unquoted_with_expr] = STATE(1747), - [sym__unquoted_anonymous_prefix] = STATE(6990), - [sym_comment] = STATE(999), - [anon_sym_true] = ACTIONS(3347), - [anon_sym_false] = ACTIONS(3347), - [anon_sym_null] = ACTIONS(3349), - [aux_sym_cmd_identifier_token38] = ACTIONS(3351), - [aux_sym_cmd_identifier_token39] = ACTIONS(3351), - [aux_sym_cmd_identifier_token40] = ACTIONS(3351), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3333), - [anon_sym_DOLLAR] = ACTIONS(3335), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3273), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), - [anon_sym_DOT_DOT_LT] = ACTIONS(3277), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3361), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3289), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3322), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(123), }, - [1000] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2432), - [sym_expr_binary] = STATE(2438), - [sym__expr_binary_expression] = STATE(2439), - [sym_expr_parenthesized] = STATE(2438), - [sym__val_range] = STATE(7480), - [sym__val_range_with_end] = STATE(7292), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2399), - [sym_val_bool] = STATE(2149), - [sym_val_variable] = STATE(2399), - [sym_val_number] = STATE(2399), - [sym__val_number_decimal] = STATE(1386), - [sym__val_number] = STATE(2385), - [sym_val_duration] = STATE(2399), - [sym_val_filesize] = STATE(2399), - [sym_val_binary] = STATE(2399), - [sym_val_string] = STATE(2399), - [sym__str_double_quotes] = STATE(1975), - [sym_val_interpolated] = STATE(2399), - [sym__inter_single_quotes] = STATE(2384), - [sym__inter_double_quotes] = STATE(2390), - [sym_val_list] = STATE(2399), - [sym_val_record] = STATE(2399), - [sym_val_table] = STATE(2399), - [sym_val_closure] = STATE(2399), - [sym_unquoted] = STATE(2130), - [sym__unquoted_with_expr] = STATE(2440), - [sym__unquoted_anonymous_prefix] = STATE(6622), - [sym_comment] = STATE(1000), - [anon_sym_true] = ACTIONS(3291), - [anon_sym_false] = ACTIONS(3291), - [anon_sym_null] = ACTIONS(3293), - [aux_sym_cmd_identifier_token38] = ACTIONS(3295), - [aux_sym_cmd_identifier_token39] = ACTIONS(3295), - [aux_sym_cmd_identifier_token40] = ACTIONS(3295), + [991] = { + [sym_ctrl_do] = STATE(5074), + [sym_ctrl_if] = STATE(5074), + [sym_ctrl_match] = STATE(5074), + [sym_ctrl_try] = STATE(5074), + [sym__expression] = STATE(5074), + [sym_expr_unary] = STATE(2509), + [sym__expr_unary_minus] = STATE(2510), + [sym_expr_binary] = STATE(2509), + [sym__expr_binary_expression] = STATE(3877), + [sym_expr_parenthesized] = STATE(2042), + [sym_val_range] = STATE(3900), + [sym__value] = STATE(2509), + [sym_val_nothing] = STATE(2441), + [sym_val_bool] = STATE(2441), + [sym_val_variable] = STATE(2055), + [sym_val_number] = STATE(2441), + [sym__val_number_decimal] = STATE(3144), + [sym__val_number] = STATE(2488), + [sym_val_duration] = STATE(2441), + [sym_val_filesize] = STATE(2441), + [sym_val_binary] = STATE(2441), + [sym_val_string] = STATE(2441), + [sym__raw_str] = STATE(2065), + [sym__str_double_quotes] = STATE(2065), + [sym_val_interpolated] = STATE(2441), + [sym__inter_single_quotes] = STATE(2563), + [sym__inter_double_quotes] = STATE(2436), + [sym_val_list] = STATE(2441), + [sym_val_record] = STATE(2441), + [sym_val_table] = STATE(2441), + [sym_val_closure] = STATE(2441), + [sym_comment] = STATE(991), + [ts_builtin_sym_end] = ACTIONS(3284), + [anon_sym_true] = ACTIONS(3392), + [anon_sym_false] = ACTIONS(3392), + [anon_sym_null] = ACTIONS(3394), + [aux_sym_cmd_identifier_token38] = ACTIONS(103), + [aux_sym_cmd_identifier_token39] = ACTIONS(103), + [aux_sym_cmd_identifier_token40] = ACTIONS(103), + [sym__newline] = ACTIONS(3284), + [anon_sym_SEMI] = ACTIONS(3284), + [anon_sym_PIPE] = ACTIONS(3284), + [anon_sym_err_GT_PIPE] = ACTIONS(3284), + [anon_sym_out_GT_PIPE] = ACTIONS(3284), + [anon_sym_e_GT_PIPE] = ACTIONS(3284), + [anon_sym_o_GT_PIPE] = ACTIONS(3284), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3284), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3284), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3284), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3284), [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3239), - [anon_sym_DOLLAR] = ACTIONS(3241), + [anon_sym_LPAREN] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), [anon_sym_DASH] = ACTIONS(53), + [anon_sym_do] = ACTIONS(3396), + [anon_sym_if] = ACTIONS(3398), + [anon_sym_match] = ACTIONS(3400), [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3243), + [anon_sym_DOT_DOT] = ACTIONS(73), + [anon_sym_try] = ACTIONS(3402), [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3245), - [anon_sym_DOT_DOT_LT] = ACTIONS(3245), - [aux_sym__val_number_decimal_token1] = ACTIONS(3297), - [aux_sym__val_number_decimal_token2] = ACTIONS(3299), - [aux_sym__val_number_decimal_token3] = ACTIONS(3301), - [aux_sym__val_number_decimal_token4] = ACTIONS(3303), + [anon_sym_DOT_DOT_EQ] = ACTIONS(93), + [anon_sym_DOT_DOT_LT] = ACTIONS(93), + [aux_sym__val_number_decimal_token1] = ACTIONS(95), + [aux_sym__val_number_decimal_token2] = ACTIONS(97), + [aux_sym__val_number_decimal_token3] = ACTIONS(99), + [aux_sym__val_number_decimal_token4] = ACTIONS(101), [aux_sym__val_number_token1] = ACTIONS(103), [aux_sym__val_number_token2] = ACTIONS(103), [aux_sym__val_number_token3] = ACTIONS(103), [anon_sym_0b] = ACTIONS(105), [anon_sym_0o] = ACTIONS(107), [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3305), + [sym_val_date] = ACTIONS(109), [anon_sym_DQUOTE] = ACTIONS(111), [sym__str_single_quotes] = ACTIONS(113), [sym__str_back_ticks] = ACTIONS(113), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3257), - [anon_sym_POUND] = ACTIONS(247), - }, - [1001] = { - [sym_expr_unary] = STATE(1738), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1738), - [sym__expr_binary_expression] = STATE(3183), - [sym_expr_parenthesized] = STATE(1738), - [sym__val_range] = STATE(7580), - [sym__val_range_with_end] = STATE(7312), - [sym__value] = STATE(1738), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(3129), - [sym_val_variable] = STATE(1643), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(2873), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_unquoted] = STATE(1495), - [sym__unquoted_with_expr] = STATE(1774), - [sym__unquoted_anonymous_prefix] = STATE(6990), - [sym_comment] = STATE(1001), - [anon_sym_true] = ACTIONS(3347), - [anon_sym_false] = ACTIONS(3347), - [anon_sym_null] = ACTIONS(3349), - [aux_sym_cmd_identifier_token38] = ACTIONS(3351), - [aux_sym_cmd_identifier_token39] = ACTIONS(3351), - [aux_sym_cmd_identifier_token40] = ACTIONS(3351), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3333), - [anon_sym_DOLLAR] = ACTIONS(3335), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3273), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), - [anon_sym_DOT_DOT_LT] = ACTIONS(3277), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3361), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3289), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(123), }, - [1002] = { - [sym_expr_unary] = STATE(1738), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1738), - [sym__expr_binary_expression] = STATE(3185), - [sym_expr_parenthesized] = STATE(1738), - [sym__val_range] = STATE(7580), - [sym__val_range_with_end] = STATE(7312), - [sym__value] = STATE(1738), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(3129), - [sym_val_variable] = STATE(1643), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(2873), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_unquoted] = STATE(1496), - [sym__unquoted_with_expr] = STATE(1776), - [sym__unquoted_anonymous_prefix] = STATE(6990), - [sym_comment] = STATE(1002), - [anon_sym_true] = ACTIONS(3347), - [anon_sym_false] = ACTIONS(3347), - [anon_sym_null] = ACTIONS(3349), - [aux_sym_cmd_identifier_token38] = ACTIONS(3351), - [aux_sym_cmd_identifier_token39] = ACTIONS(3351), - [aux_sym_cmd_identifier_token40] = ACTIONS(3351), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3333), - [anon_sym_DOLLAR] = ACTIONS(3335), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3273), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), - [anon_sym_DOT_DOT_LT] = ACTIONS(3277), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3361), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3289), - [anon_sym_POUND] = ACTIONS(247), - }, - [1003] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2432), - [sym_expr_binary] = STATE(2438), - [sym__expr_binary_expression] = STATE(2447), - [sym_expr_parenthesized] = STATE(2438), - [sym__val_range] = STATE(7480), - [sym__val_range_with_end] = STATE(7292), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2399), - [sym_val_bool] = STATE(2149), - [sym_val_variable] = STATE(2399), - [sym_val_number] = STATE(2399), - [sym__val_number_decimal] = STATE(1386), - [sym__val_number] = STATE(2385), - [sym_val_duration] = STATE(2399), - [sym_val_filesize] = STATE(2399), - [sym_val_binary] = STATE(2399), - [sym_val_string] = STATE(2399), - [sym__str_double_quotes] = STATE(1975), - [sym_val_interpolated] = STATE(2399), - [sym__inter_single_quotes] = STATE(2384), - [sym__inter_double_quotes] = STATE(2390), - [sym_val_list] = STATE(2399), - [sym_val_record] = STATE(2399), - [sym_val_table] = STATE(2399), - [sym_val_closure] = STATE(2399), - [sym_unquoted] = STATE(2136), - [sym__unquoted_with_expr] = STATE(2448), - [sym__unquoted_anonymous_prefix] = STATE(6622), - [sym_comment] = STATE(1003), - [anon_sym_true] = ACTIONS(3291), - [anon_sym_false] = ACTIONS(3291), - [anon_sym_null] = ACTIONS(3293), - [aux_sym_cmd_identifier_token38] = ACTIONS(3295), - [aux_sym_cmd_identifier_token39] = ACTIONS(3295), - [aux_sym_cmd_identifier_token40] = ACTIONS(3295), + [992] = { + [sym_expr_unary] = STATE(2512), + [sym__expr_unary_minus] = STATE(2510), + [sym_expr_binary] = STATE(2512), + [sym__expr_binary_expression] = STATE(2513), + [sym_expr_parenthesized] = STATE(2512), + [sym__val_range] = STATE(7869), + [sym__val_range_with_end] = STATE(7524), + [sym__value] = STATE(2512), + [sym_val_nothing] = STATE(2441), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(2441), + [sym_val_number] = STATE(2441), + [sym__val_number_decimal] = STATE(1430), + [sym__val_number] = STATE(2488), + [sym_val_duration] = STATE(2441), + [sym_val_filesize] = STATE(2441), + [sym_val_binary] = STATE(2441), + [sym_val_string] = STATE(2441), + [sym__raw_str] = STATE(2065), + [sym__str_double_quotes] = STATE(2065), + [sym_val_interpolated] = STATE(2441), + [sym__inter_single_quotes] = STATE(2563), + [sym__inter_double_quotes] = STATE(2436), + [sym_val_list] = STATE(2441), + [sym_val_record] = STATE(2441), + [sym_val_table] = STATE(2441), + [sym_val_closure] = STATE(2441), + [sym_unquoted] = STATE(2215), + [sym__unquoted_with_expr] = STATE(2514), + [sym__unquoted_anonymous_prefix] = STATE(6886), + [sym_comment] = STATE(992), + [anon_sym_true] = ACTIONS(3376), + [anon_sym_false] = ACTIONS(3376), + [anon_sym_null] = ACTIONS(3378), + [aux_sym_cmd_identifier_token38] = ACTIONS(3380), + [aux_sym_cmd_identifier_token39] = ACTIONS(3380), + [aux_sym_cmd_identifier_token40] = ACTIONS(3380), [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3239), - [anon_sym_DOLLAR] = ACTIONS(3241), + [anon_sym_LPAREN] = ACTIONS(3304), + [anon_sym_DOLLAR] = ACTIONS(3306), [anon_sym_DASH] = ACTIONS(53), [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3243), + [anon_sym_DOT_DOT] = ACTIONS(3308), [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3245), - [anon_sym_DOT_DOT_LT] = ACTIONS(3245), - [aux_sym__val_number_decimal_token1] = ACTIONS(3297), - [aux_sym__val_number_decimal_token2] = ACTIONS(3299), - [aux_sym__val_number_decimal_token3] = ACTIONS(3301), - [aux_sym__val_number_decimal_token4] = ACTIONS(3303), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3310), + [anon_sym_DOT_DOT_LT] = ACTIONS(3310), + [aux_sym__val_number_decimal_token1] = ACTIONS(3382), + [aux_sym__val_number_decimal_token2] = ACTIONS(3384), + [aux_sym__val_number_decimal_token3] = ACTIONS(3386), + [aux_sym__val_number_decimal_token4] = ACTIONS(3388), [aux_sym__val_number_token1] = ACTIONS(103), [aux_sym__val_number_token2] = ACTIONS(103), [aux_sym__val_number_token3] = ACTIONS(103), [anon_sym_0b] = ACTIONS(105), [anon_sym_0o] = ACTIONS(107), [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3305), + [sym_val_date] = ACTIONS(3390), [anon_sym_DQUOTE] = ACTIONS(111), [sym__str_single_quotes] = ACTIONS(113), [sym__str_back_ticks] = ACTIONS(113), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3257), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3322), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(123), }, - [1004] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2432), - [sym_expr_binary] = STATE(2438), - [sym__expr_binary_expression] = STATE(2465), - [sym_expr_parenthesized] = STATE(2438), - [sym__val_range] = STATE(7480), - [sym__val_range_with_end] = STATE(7292), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2399), - [sym_val_bool] = STATE(2149), - [sym_val_variable] = STATE(2399), - [sym_val_number] = STATE(2399), - [sym__val_number_decimal] = STATE(1386), - [sym__val_number] = STATE(2385), - [sym_val_duration] = STATE(2399), - [sym_val_filesize] = STATE(2399), - [sym_val_binary] = STATE(2399), - [sym_val_string] = STATE(2399), - [sym__str_double_quotes] = STATE(1975), - [sym_val_interpolated] = STATE(2399), - [sym__inter_single_quotes] = STATE(2384), - [sym__inter_double_quotes] = STATE(2390), - [sym_val_list] = STATE(2399), - [sym_val_record] = STATE(2399), - [sym_val_table] = STATE(2399), - [sym_val_closure] = STATE(2399), - [sym_unquoted] = STATE(2194), - [sym__unquoted_with_expr] = STATE(2388), - [sym__unquoted_anonymous_prefix] = STATE(6622), - [sym_comment] = STATE(1004), - [anon_sym_true] = ACTIONS(3291), - [anon_sym_false] = ACTIONS(3291), - [anon_sym_null] = ACTIONS(3293), - [aux_sym_cmd_identifier_token38] = ACTIONS(3295), - [aux_sym_cmd_identifier_token39] = ACTIONS(3295), - [aux_sym_cmd_identifier_token40] = ACTIONS(3295), + [993] = { + [sym_expr_unary] = STATE(2512), + [sym__expr_unary_minus] = STATE(2510), + [sym_expr_binary] = STATE(2512), + [sym__expr_binary_expression] = STATE(2534), + [sym_expr_parenthesized] = STATE(2512), + [sym__val_range] = STATE(7869), + [sym__val_range_with_end] = STATE(7524), + [sym__value] = STATE(2512), + [sym_val_nothing] = STATE(2441), + [sym_val_bool] = STATE(2221), + [sym_val_variable] = STATE(2441), + [sym_val_number] = STATE(2441), + [sym__val_number_decimal] = STATE(1430), + [sym__val_number] = STATE(2488), + [sym_val_duration] = STATE(2441), + [sym_val_filesize] = STATE(2441), + [sym_val_binary] = STATE(2441), + [sym_val_string] = STATE(2441), + [sym__raw_str] = STATE(2065), + [sym__str_double_quotes] = STATE(2065), + [sym_val_interpolated] = STATE(2441), + [sym__inter_single_quotes] = STATE(2563), + [sym__inter_double_quotes] = STATE(2436), + [sym_val_list] = STATE(2441), + [sym_val_record] = STATE(2441), + [sym_val_table] = STATE(2441), + [sym_val_closure] = STATE(2441), + [sym_unquoted] = STATE(2079), + [sym__unquoted_with_expr] = STATE(2539), + [sym__unquoted_anonymous_prefix] = STATE(6886), + [sym_comment] = STATE(993), + [anon_sym_true] = ACTIONS(3376), + [anon_sym_false] = ACTIONS(3376), + [anon_sym_null] = ACTIONS(3378), + [aux_sym_cmd_identifier_token38] = ACTIONS(3380), + [aux_sym_cmd_identifier_token39] = ACTIONS(3380), + [aux_sym_cmd_identifier_token40] = ACTIONS(3380), [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3239), - [anon_sym_DOLLAR] = ACTIONS(3241), + [anon_sym_LPAREN] = ACTIONS(3304), + [anon_sym_DOLLAR] = ACTIONS(3306), [anon_sym_DASH] = ACTIONS(53), [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3243), + [anon_sym_DOT_DOT] = ACTIONS(3308), [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3245), - [anon_sym_DOT_DOT_LT] = ACTIONS(3245), - [aux_sym__val_number_decimal_token1] = ACTIONS(3297), - [aux_sym__val_number_decimal_token2] = ACTIONS(3299), - [aux_sym__val_number_decimal_token3] = ACTIONS(3301), - [aux_sym__val_number_decimal_token4] = ACTIONS(3303), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3310), + [anon_sym_DOT_DOT_LT] = ACTIONS(3310), + [aux_sym__val_number_decimal_token1] = ACTIONS(3382), + [aux_sym__val_number_decimal_token2] = ACTIONS(3384), + [aux_sym__val_number_decimal_token3] = ACTIONS(3386), + [aux_sym__val_number_decimal_token4] = ACTIONS(3388), [aux_sym__val_number_token1] = ACTIONS(103), [aux_sym__val_number_token2] = ACTIONS(103), [aux_sym__val_number_token3] = ACTIONS(103), [anon_sym_0b] = ACTIONS(105), [anon_sym_0o] = ACTIONS(107), [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3305), + [sym_val_date] = ACTIONS(3390), [anon_sym_DQUOTE] = ACTIONS(111), [sym__str_single_quotes] = ACTIONS(113), [sym__str_back_ticks] = ACTIONS(113), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3257), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3322), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(123), }, - [1005] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2432), - [sym_expr_binary] = STATE(2438), - [sym__expr_binary_expression] = STATE(2441), - [sym_expr_parenthesized] = STATE(2438), - [sym__val_range] = STATE(7480), - [sym__val_range_with_end] = STATE(7292), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2399), - [sym_val_bool] = STATE(2149), - [sym_val_variable] = STATE(2399), - [sym_val_number] = STATE(2399), - [sym__val_number_decimal] = STATE(1386), - [sym__val_number] = STATE(2385), - [sym_val_duration] = STATE(2399), - [sym_val_filesize] = STATE(2399), - [sym_val_binary] = STATE(2399), - [sym_val_string] = STATE(2399), - [sym__str_double_quotes] = STATE(1975), - [sym_val_interpolated] = STATE(2399), - [sym__inter_single_quotes] = STATE(2384), - [sym__inter_double_quotes] = STATE(2390), - [sym_val_list] = STATE(2399), - [sym_val_record] = STATE(2399), - [sym_val_table] = STATE(2399), - [sym_val_closure] = STATE(2399), - [sym_unquoted] = STATE(2133), - [sym__unquoted_with_expr] = STATE(2442), - [sym__unquoted_anonymous_prefix] = STATE(6622), - [sym_comment] = STATE(1005), - [anon_sym_true] = ACTIONS(3291), - [anon_sym_false] = ACTIONS(3291), - [anon_sym_null] = ACTIONS(3293), - [aux_sym_cmd_identifier_token38] = ACTIONS(3295), - [aux_sym_cmd_identifier_token39] = ACTIONS(3295), - [aux_sym_cmd_identifier_token40] = ACTIONS(3295), + [994] = { + [sym_expr_unary] = STATE(2512), + [sym__expr_unary_minus] = STATE(2510), + [sym_expr_binary] = STATE(2512), + [sym__expr_binary_expression] = STATE(2513), + [sym_expr_parenthesized] = STATE(2512), + [sym__val_range] = STATE(7869), + [sym__val_range_with_end] = STATE(7524), + [sym__value] = STATE(2512), + [sym_val_nothing] = STATE(2441), + [sym_val_bool] = STATE(3183), + [sym_val_variable] = STATE(2441), + [sym_val_number] = STATE(2441), + [sym__val_number_decimal] = STATE(3024), + [sym__val_number] = STATE(2488), + [sym_val_duration] = STATE(2441), + [sym_val_filesize] = STATE(2441), + [sym_val_binary] = STATE(2441), + [sym_val_string] = STATE(2441), + [sym__raw_str] = STATE(2065), + [sym__str_double_quotes] = STATE(2065), + [sym_val_interpolated] = STATE(2441), + [sym__inter_single_quotes] = STATE(2563), + [sym__inter_double_quotes] = STATE(2436), + [sym_val_list] = STATE(2441), + [sym_val_record] = STATE(2441), + [sym_val_table] = STATE(2441), + [sym_val_closure] = STATE(2441), + [sym_unquoted] = STATE(2215), + [sym__unquoted_with_expr] = STATE(2514), + [sym__unquoted_anonymous_prefix] = STATE(6886), + [sym_comment] = STATE(994), + [anon_sym_true] = ACTIONS(3298), + [anon_sym_false] = ACTIONS(3298), + [anon_sym_null] = ACTIONS(3300), + [aux_sym_cmd_identifier_token38] = ACTIONS(3302), + [aux_sym_cmd_identifier_token39] = ACTIONS(3302), + [aux_sym_cmd_identifier_token40] = ACTIONS(3302), [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3239), - [anon_sym_DOLLAR] = ACTIONS(3241), + [anon_sym_LPAREN] = ACTIONS(3304), + [anon_sym_DOLLAR] = ACTIONS(3306), [anon_sym_DASH] = ACTIONS(53), [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3243), + [anon_sym_DOT_DOT] = ACTIONS(3308), [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3245), - [anon_sym_DOT_DOT_LT] = ACTIONS(3245), - [aux_sym__val_number_decimal_token1] = ACTIONS(3297), - [aux_sym__val_number_decimal_token2] = ACTIONS(3299), - [aux_sym__val_number_decimal_token3] = ACTIONS(3301), - [aux_sym__val_number_decimal_token4] = ACTIONS(3303), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3310), + [anon_sym_DOT_DOT_LT] = ACTIONS(3310), + [aux_sym__val_number_decimal_token1] = ACTIONS(3312), + [aux_sym__val_number_decimal_token2] = ACTIONS(3314), + [aux_sym__val_number_decimal_token3] = ACTIONS(3316), + [aux_sym__val_number_decimal_token4] = ACTIONS(3318), [aux_sym__val_number_token1] = ACTIONS(103), [aux_sym__val_number_token2] = ACTIONS(103), [aux_sym__val_number_token3] = ACTIONS(103), [anon_sym_0b] = ACTIONS(105), [anon_sym_0o] = ACTIONS(107), [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3305), + [sym_val_date] = ACTIONS(3320), [anon_sym_DQUOTE] = ACTIONS(111), [sym__str_single_quotes] = ACTIONS(113), [sym__str_back_ticks] = ACTIONS(113), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3257), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3322), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(123), + }, + [995] = { + [sym_expr_unary] = STATE(1701), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1701), + [sym__expr_binary_expression] = STATE(1702), + [sym_expr_parenthesized] = STATE(1701), + [sym__val_range] = STATE(7780), + [sym__val_range_with_end] = STATE(7546), + [sym__value] = STATE(1701), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(3561), + [sym_val_variable] = STATE(1881), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(3384), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_unquoted] = STATE(1548), + [sym__unquoted_with_expr] = STATE(1707), + [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_comment] = STATE(995), + [anon_sym_true] = ACTIONS(3404), + [anon_sym_false] = ACTIONS(3404), + [anon_sym_null] = ACTIONS(3406), + [aux_sym_cmd_identifier_token38] = ACTIONS(3408), + [aux_sym_cmd_identifier_token39] = ACTIONS(3408), + [aux_sym_cmd_identifier_token40] = ACTIONS(3408), + [anon_sym_LBRACK] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym_DOLLAR] = ACTIONS(3410), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(3412), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [aux_sym__val_number_decimal_token1] = ACTIONS(3414), + [aux_sym__val_number_decimal_token2] = ACTIONS(3416), + [aux_sym__val_number_decimal_token3] = ACTIONS(3418), + [aux_sym__val_number_decimal_token4] = ACTIONS(3420), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3422), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3348), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), + }, + [996] = { + [sym_expr_unary] = STATE(1701), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1701), + [sym__expr_binary_expression] = STATE(3662), + [sym_expr_parenthesized] = STATE(1701), + [sym__val_range] = STATE(7780), + [sym__val_range_with_end] = STATE(7546), + [sym__value] = STATE(1701), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(3561), + [sym_val_variable] = STATE(1881), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(3384), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_unquoted] = STATE(1554), + [sym__unquoted_with_expr] = STATE(1709), + [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_comment] = STATE(996), + [anon_sym_true] = ACTIONS(3404), + [anon_sym_false] = ACTIONS(3404), + [anon_sym_null] = ACTIONS(3406), + [aux_sym_cmd_identifier_token38] = ACTIONS(3408), + [aux_sym_cmd_identifier_token39] = ACTIONS(3408), + [aux_sym_cmd_identifier_token40] = ACTIONS(3408), + [anon_sym_LBRACK] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym_DOLLAR] = ACTIONS(3410), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(3412), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [aux_sym__val_number_decimal_token1] = ACTIONS(3414), + [aux_sym__val_number_decimal_token2] = ACTIONS(3416), + [aux_sym__val_number_decimal_token3] = ACTIONS(3418), + [aux_sym__val_number_decimal_token4] = ACTIONS(3420), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3422), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3348), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), + }, + [997] = { + [sym_expr_unary] = STATE(1701), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1701), + [sym__expr_binary_expression] = STATE(3718), + [sym_expr_parenthesized] = STATE(1701), + [sym__val_range] = STATE(7780), + [sym__val_range_with_end] = STATE(7546), + [sym__value] = STATE(1701), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(3561), + [sym_val_variable] = STATE(1881), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(3384), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_unquoted] = STATE(1556), + [sym__unquoted_with_expr] = STATE(1710), + [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_comment] = STATE(997), + [anon_sym_true] = ACTIONS(3404), + [anon_sym_false] = ACTIONS(3404), + [anon_sym_null] = ACTIONS(3406), + [aux_sym_cmd_identifier_token38] = ACTIONS(3408), + [aux_sym_cmd_identifier_token39] = ACTIONS(3408), + [aux_sym_cmd_identifier_token40] = ACTIONS(3408), + [anon_sym_LBRACK] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym_DOLLAR] = ACTIONS(3410), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(3412), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [aux_sym__val_number_decimal_token1] = ACTIONS(3414), + [aux_sym__val_number_decimal_token2] = ACTIONS(3416), + [aux_sym__val_number_decimal_token3] = ACTIONS(3418), + [aux_sym__val_number_decimal_token4] = ACTIONS(3420), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3422), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3348), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), + }, + [998] = { + [sym_expr_unary] = STATE(1701), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1701), + [sym__expr_binary_expression] = STATE(3719), + [sym_expr_parenthesized] = STATE(1701), + [sym__val_range] = STATE(7780), + [sym__val_range_with_end] = STATE(7546), + [sym__value] = STATE(1701), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(3561), + [sym_val_variable] = STATE(1881), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(3384), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_unquoted] = STATE(1565), + [sym__unquoted_with_expr] = STATE(1714), + [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_comment] = STATE(998), + [anon_sym_true] = ACTIONS(3404), + [anon_sym_false] = ACTIONS(3404), + [anon_sym_null] = ACTIONS(3406), + [aux_sym_cmd_identifier_token38] = ACTIONS(3408), + [aux_sym_cmd_identifier_token39] = ACTIONS(3408), + [aux_sym_cmd_identifier_token40] = ACTIONS(3408), + [anon_sym_LBRACK] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym_DOLLAR] = ACTIONS(3410), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(3412), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [aux_sym__val_number_decimal_token1] = ACTIONS(3414), + [aux_sym__val_number_decimal_token2] = ACTIONS(3416), + [aux_sym__val_number_decimal_token3] = ACTIONS(3418), + [aux_sym__val_number_decimal_token4] = ACTIONS(3420), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3422), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3348), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), + }, + [999] = { + [sym_expr_unary] = STATE(1701), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1701), + [sym__expr_binary_expression] = STATE(3720), + [sym_expr_parenthesized] = STATE(1701), + [sym__val_range] = STATE(7780), + [sym__val_range_with_end] = STATE(7546), + [sym__value] = STATE(1701), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(3561), + [sym_val_variable] = STATE(1881), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(3384), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_unquoted] = STATE(1567), + [sym__unquoted_with_expr] = STATE(1718), + [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_comment] = STATE(999), + [anon_sym_true] = ACTIONS(3404), + [anon_sym_false] = ACTIONS(3404), + [anon_sym_null] = ACTIONS(3406), + [aux_sym_cmd_identifier_token38] = ACTIONS(3408), + [aux_sym_cmd_identifier_token39] = ACTIONS(3408), + [aux_sym_cmd_identifier_token40] = ACTIONS(3408), + [anon_sym_LBRACK] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym_DOLLAR] = ACTIONS(3410), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(3412), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [aux_sym__val_number_decimal_token1] = ACTIONS(3414), + [aux_sym__val_number_decimal_token2] = ACTIONS(3416), + [aux_sym__val_number_decimal_token3] = ACTIONS(3418), + [aux_sym__val_number_decimal_token4] = ACTIONS(3420), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3422), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3348), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), + }, + [1000] = { + [sym_expr_unary] = STATE(1701), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1701), + [sym__expr_binary_expression] = STATE(3721), + [sym_expr_parenthesized] = STATE(1701), + [sym__val_range] = STATE(7780), + [sym__val_range_with_end] = STATE(7546), + [sym__value] = STATE(1701), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(3561), + [sym_val_variable] = STATE(1881), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(3384), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_unquoted] = STATE(1568), + [sym__unquoted_with_expr] = STATE(1719), + [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_comment] = STATE(1000), + [anon_sym_true] = ACTIONS(3404), + [anon_sym_false] = ACTIONS(3404), + [anon_sym_null] = ACTIONS(3406), + [aux_sym_cmd_identifier_token38] = ACTIONS(3408), + [aux_sym_cmd_identifier_token39] = ACTIONS(3408), + [aux_sym_cmd_identifier_token40] = ACTIONS(3408), + [anon_sym_LBRACK] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym_DOLLAR] = ACTIONS(3410), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(3412), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [aux_sym__val_number_decimal_token1] = ACTIONS(3414), + [aux_sym__val_number_decimal_token2] = ACTIONS(3416), + [aux_sym__val_number_decimal_token3] = ACTIONS(3418), + [aux_sym__val_number_decimal_token4] = ACTIONS(3420), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3422), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3348), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), + }, + [1001] = { + [sym_expr_unary] = STATE(1701), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1701), + [sym__expr_binary_expression] = STATE(3722), + [sym_expr_parenthesized] = STATE(1701), + [sym__val_range] = STATE(7780), + [sym__val_range_with_end] = STATE(7546), + [sym__value] = STATE(1701), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(3561), + [sym_val_variable] = STATE(1881), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(3384), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_unquoted] = STATE(1570), + [sym__unquoted_with_expr] = STATE(1721), + [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_comment] = STATE(1001), + [anon_sym_true] = ACTIONS(3404), + [anon_sym_false] = ACTIONS(3404), + [anon_sym_null] = ACTIONS(3406), + [aux_sym_cmd_identifier_token38] = ACTIONS(3408), + [aux_sym_cmd_identifier_token39] = ACTIONS(3408), + [aux_sym_cmd_identifier_token40] = ACTIONS(3408), + [anon_sym_LBRACK] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym_DOLLAR] = ACTIONS(3410), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(3412), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [aux_sym__val_number_decimal_token1] = ACTIONS(3414), + [aux_sym__val_number_decimal_token2] = ACTIONS(3416), + [aux_sym__val_number_decimal_token3] = ACTIONS(3418), + [aux_sym__val_number_decimal_token4] = ACTIONS(3420), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3422), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3348), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), + }, + [1002] = { + [sym_expr_unary] = STATE(1701), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1701), + [sym__expr_binary_expression] = STATE(3723), + [sym_expr_parenthesized] = STATE(1701), + [sym__val_range] = STATE(7780), + [sym__val_range_with_end] = STATE(7546), + [sym__value] = STATE(1701), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(3561), + [sym_val_variable] = STATE(1881), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(3384), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_unquoted] = STATE(1572), + [sym__unquoted_with_expr] = STATE(1731), + [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_comment] = STATE(1002), + [anon_sym_true] = ACTIONS(3404), + [anon_sym_false] = ACTIONS(3404), + [anon_sym_null] = ACTIONS(3406), + [aux_sym_cmd_identifier_token38] = ACTIONS(3408), + [aux_sym_cmd_identifier_token39] = ACTIONS(3408), + [aux_sym_cmd_identifier_token40] = ACTIONS(3408), + [anon_sym_LBRACK] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym_DOLLAR] = ACTIONS(3410), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(3412), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [aux_sym__val_number_decimal_token1] = ACTIONS(3414), + [aux_sym__val_number_decimal_token2] = ACTIONS(3416), + [aux_sym__val_number_decimal_token3] = ACTIONS(3418), + [aux_sym__val_number_decimal_token4] = ACTIONS(3420), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3422), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3348), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), + }, + [1003] = { + [sym_expr_unary] = STATE(1701), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1701), + [sym__expr_binary_expression] = STATE(3724), + [sym_expr_parenthesized] = STATE(1701), + [sym__val_range] = STATE(7780), + [sym__val_range_with_end] = STATE(7546), + [sym__value] = STATE(1701), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(3561), + [sym_val_variable] = STATE(1881), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(3384), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_unquoted] = STATE(1574), + [sym__unquoted_with_expr] = STATE(1732), + [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_comment] = STATE(1003), + [anon_sym_true] = ACTIONS(3404), + [anon_sym_false] = ACTIONS(3404), + [anon_sym_null] = ACTIONS(3406), + [aux_sym_cmd_identifier_token38] = ACTIONS(3408), + [aux_sym_cmd_identifier_token39] = ACTIONS(3408), + [aux_sym_cmd_identifier_token40] = ACTIONS(3408), + [anon_sym_LBRACK] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym_DOLLAR] = ACTIONS(3410), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(3412), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [aux_sym__val_number_decimal_token1] = ACTIONS(3414), + [aux_sym__val_number_decimal_token2] = ACTIONS(3416), + [aux_sym__val_number_decimal_token3] = ACTIONS(3418), + [aux_sym__val_number_decimal_token4] = ACTIONS(3420), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3422), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3348), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), + }, + [1004] = { + [sym_expr_unary] = STATE(1701), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1701), + [sym__expr_binary_expression] = STATE(3725), + [sym_expr_parenthesized] = STATE(1701), + [sym__val_range] = STATE(7780), + [sym__val_range_with_end] = STATE(7546), + [sym__value] = STATE(1701), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(3561), + [sym_val_variable] = STATE(1881), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(3384), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_unquoted] = STATE(1575), + [sym__unquoted_with_expr] = STATE(1735), + [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_comment] = STATE(1004), + [anon_sym_true] = ACTIONS(3404), + [anon_sym_false] = ACTIONS(3404), + [anon_sym_null] = ACTIONS(3406), + [aux_sym_cmd_identifier_token38] = ACTIONS(3408), + [aux_sym_cmd_identifier_token39] = ACTIONS(3408), + [aux_sym_cmd_identifier_token40] = ACTIONS(3408), + [anon_sym_LBRACK] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym_DOLLAR] = ACTIONS(3410), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(3412), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [aux_sym__val_number_decimal_token1] = ACTIONS(3414), + [aux_sym__val_number_decimal_token2] = ACTIONS(3416), + [aux_sym__val_number_decimal_token3] = ACTIONS(3418), + [aux_sym__val_number_decimal_token4] = ACTIONS(3420), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3422), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3348), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), + }, + [1005] = { + [sym_expr_unary] = STATE(1701), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1701), + [sym__expr_binary_expression] = STATE(3726), + [sym_expr_parenthesized] = STATE(1701), + [sym__val_range] = STATE(7780), + [sym__val_range_with_end] = STATE(7546), + [sym__value] = STATE(1701), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(3561), + [sym_val_variable] = STATE(1881), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(3384), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_unquoted] = STATE(1576), + [sym__unquoted_with_expr] = STATE(1738), + [sym__unquoted_anonymous_prefix] = STATE(7212), + [sym_comment] = STATE(1005), + [anon_sym_true] = ACTIONS(3404), + [anon_sym_false] = ACTIONS(3404), + [anon_sym_null] = ACTIONS(3406), + [aux_sym_cmd_identifier_token38] = ACTIONS(3408), + [aux_sym_cmd_identifier_token39] = ACTIONS(3408), + [aux_sym_cmd_identifier_token40] = ACTIONS(3408), + [anon_sym_LBRACK] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym_DOLLAR] = ACTIONS(3410), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(3412), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [aux_sym__val_number_decimal_token1] = ACTIONS(3414), + [aux_sym__val_number_decimal_token2] = ACTIONS(3416), + [aux_sym__val_number_decimal_token3] = ACTIONS(3418), + [aux_sym__val_number_decimal_token4] = ACTIONS(3420), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3422), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3348), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [1006] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2432), - [sym_expr_binary] = STATE(2438), - [sym__expr_binary_expression] = STATE(2449), - [sym_expr_parenthesized] = STATE(2438), - [sym__val_range] = STATE(7480), - [sym__val_range_with_end] = STATE(7292), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2399), - [sym_val_bool] = STATE(2149), - [sym_val_variable] = STATE(2399), - [sym_val_number] = STATE(2399), - [sym__val_number_decimal] = STATE(1386), - [sym__val_number] = STATE(2385), - [sym_val_duration] = STATE(2399), - [sym_val_filesize] = STATE(2399), - [sym_val_binary] = STATE(2399), - [sym_val_string] = STATE(2399), - [sym__str_double_quotes] = STATE(1975), - [sym_val_interpolated] = STATE(2399), - [sym__inter_single_quotes] = STATE(2384), - [sym__inter_double_quotes] = STATE(2390), - [sym_val_list] = STATE(2399), - [sym_val_record] = STATE(2399), - [sym_val_table] = STATE(2399), - [sym_val_closure] = STATE(2399), - [sym_unquoted] = STATE(2145), - [sym__unquoted_with_expr] = STATE(2450), - [sym__unquoted_anonymous_prefix] = STATE(6622), + [sym_expr_unary] = STATE(1701), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1701), + [sym__expr_binary_expression] = STATE(3727), + [sym_expr_parenthesized] = STATE(1701), + [sym__val_range] = STATE(7780), + [sym__val_range_with_end] = STATE(7546), + [sym__value] = STATE(1701), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(3561), + [sym_val_variable] = STATE(1881), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(3384), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_unquoted] = STATE(1577), + [sym__unquoted_with_expr] = STATE(1740), + [sym__unquoted_anonymous_prefix] = STATE(7212), [sym_comment] = STATE(1006), - [anon_sym_true] = ACTIONS(3291), - [anon_sym_false] = ACTIONS(3291), - [anon_sym_null] = ACTIONS(3293), - [aux_sym_cmd_identifier_token38] = ACTIONS(3295), - [aux_sym_cmd_identifier_token39] = ACTIONS(3295), - [aux_sym_cmd_identifier_token40] = ACTIONS(3295), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3239), - [anon_sym_DOLLAR] = ACTIONS(3241), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3243), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3245), - [anon_sym_DOT_DOT_LT] = ACTIONS(3245), - [aux_sym__val_number_decimal_token1] = ACTIONS(3297), - [aux_sym__val_number_decimal_token2] = ACTIONS(3299), - [aux_sym__val_number_decimal_token3] = ACTIONS(3301), - [aux_sym__val_number_decimal_token4] = ACTIONS(3303), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3305), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3257), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(3404), + [anon_sym_false] = ACTIONS(3404), + [anon_sym_null] = ACTIONS(3406), + [aux_sym_cmd_identifier_token38] = ACTIONS(3408), + [aux_sym_cmd_identifier_token39] = ACTIONS(3408), + [aux_sym_cmd_identifier_token40] = ACTIONS(3408), + [anon_sym_LBRACK] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym_DOLLAR] = ACTIONS(3410), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(3412), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [aux_sym__val_number_decimal_token1] = ACTIONS(3414), + [aux_sym__val_number_decimal_token2] = ACTIONS(3416), + [aux_sym__val_number_decimal_token3] = ACTIONS(3418), + [aux_sym__val_number_decimal_token4] = ACTIONS(3420), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3422), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3348), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [1007] = { - [sym_expr_unary] = STATE(1738), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1738), - [sym__expr_binary_expression] = STATE(3234), - [sym_expr_parenthesized] = STATE(1738), - [sym__val_range] = STATE(7580), - [sym__val_range_with_end] = STATE(7312), - [sym__value] = STATE(1738), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(3129), - [sym_val_variable] = STATE(1643), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(2873), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_unquoted] = STATE(1497), - [sym__unquoted_with_expr] = STATE(1778), - [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_expr_unary] = STATE(1701), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1701), + [sym__expr_binary_expression] = STATE(3728), + [sym_expr_parenthesized] = STATE(1701), + [sym__val_range] = STATE(7780), + [sym__val_range_with_end] = STATE(7546), + [sym__value] = STATE(1701), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(3561), + [sym_val_variable] = STATE(1881), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(3384), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_unquoted] = STATE(1578), + [sym__unquoted_with_expr] = STATE(1743), + [sym__unquoted_anonymous_prefix] = STATE(7212), [sym_comment] = STATE(1007), - [anon_sym_true] = ACTIONS(3347), - [anon_sym_false] = ACTIONS(3347), - [anon_sym_null] = ACTIONS(3349), - [aux_sym_cmd_identifier_token38] = ACTIONS(3351), - [aux_sym_cmd_identifier_token39] = ACTIONS(3351), - [aux_sym_cmd_identifier_token40] = ACTIONS(3351), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3333), - [anon_sym_DOLLAR] = ACTIONS(3335), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3273), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), - [anon_sym_DOT_DOT_LT] = ACTIONS(3277), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3361), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3289), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(3404), + [anon_sym_false] = ACTIONS(3404), + [anon_sym_null] = ACTIONS(3406), + [aux_sym_cmd_identifier_token38] = ACTIONS(3408), + [aux_sym_cmd_identifier_token39] = ACTIONS(3408), + [aux_sym_cmd_identifier_token40] = ACTIONS(3408), + [anon_sym_LBRACK] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym_DOLLAR] = ACTIONS(3410), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(3412), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [aux_sym__val_number_decimal_token1] = ACTIONS(3414), + [aux_sym__val_number_decimal_token2] = ACTIONS(3416), + [aux_sym__val_number_decimal_token3] = ACTIONS(3418), + [aux_sym__val_number_decimal_token4] = ACTIONS(3420), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3422), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3348), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [1008] = { - [sym_expr_unary] = STATE(1738), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1738), - [sym__expr_binary_expression] = STATE(3235), - [sym_expr_parenthesized] = STATE(1738), - [sym__val_range] = STATE(7580), - [sym__val_range_with_end] = STATE(7312), - [sym__value] = STATE(1738), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(3129), - [sym_val_variable] = STATE(1643), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(2873), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_unquoted] = STATE(1498), - [sym__unquoted_with_expr] = STATE(1780), - [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_expr_unary] = STATE(1701), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1701), + [sym__expr_binary_expression] = STATE(1702), + [sym_expr_parenthesized] = STATE(1701), + [sym__val_range] = STATE(7780), + [sym__val_range_with_end] = STATE(7546), + [sym__value] = STATE(1701), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(3789), + [sym_val_variable] = STATE(1881), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_unquoted] = STATE(1548), + [sym__unquoted_with_expr] = STATE(1707), + [sym__unquoted_anonymous_prefix] = STATE(7212), [sym_comment] = STATE(1008), - [anon_sym_true] = ACTIONS(3347), - [anon_sym_false] = ACTIONS(3347), - [anon_sym_null] = ACTIONS(3349), - [aux_sym_cmd_identifier_token38] = ACTIONS(3351), - [aux_sym_cmd_identifier_token39] = ACTIONS(3351), - [aux_sym_cmd_identifier_token40] = ACTIONS(3351), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3333), - [anon_sym_DOLLAR] = ACTIONS(3335), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3273), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), - [anon_sym_DOT_DOT_LT] = ACTIONS(3277), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3361), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3289), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(3424), + [anon_sym_false] = ACTIONS(3424), + [anon_sym_null] = ACTIONS(3426), + [aux_sym_cmd_identifier_token38] = ACTIONS(3428), + [aux_sym_cmd_identifier_token39] = ACTIONS(3428), + [aux_sym_cmd_identifier_token40] = ACTIONS(3428), + [anon_sym_LBRACK] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym_DOLLAR] = ACTIONS(3410), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(3412), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [aux_sym__val_number_decimal_token1] = ACTIONS(3430), + [aux_sym__val_number_decimal_token2] = ACTIONS(3432), + [aux_sym__val_number_decimal_token3] = ACTIONS(3434), + [aux_sym__val_number_decimal_token4] = ACTIONS(3436), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3438), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3348), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [1009] = { - [sym_expr_unary] = STATE(1738), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1738), - [sym__expr_binary_expression] = STATE(3236), - [sym_expr_parenthesized] = STATE(1738), - [sym__val_range] = STATE(7580), - [sym__val_range_with_end] = STATE(7312), - [sym__value] = STATE(1738), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(3129), - [sym_val_variable] = STATE(1643), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(2873), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_unquoted] = STATE(1499), - [sym__unquoted_with_expr] = STATE(1781), - [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_expr_unary] = STATE(1701), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1701), + [sym__expr_binary_expression] = STATE(3857), + [sym_expr_parenthesized] = STATE(1701), + [sym__val_range] = STATE(7780), + [sym__val_range_with_end] = STATE(7546), + [sym__value] = STATE(1701), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(3789), + [sym_val_variable] = STATE(1881), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_unquoted] = STATE(1554), + [sym__unquoted_with_expr] = STATE(1709), + [sym__unquoted_anonymous_prefix] = STATE(7212), [sym_comment] = STATE(1009), - [anon_sym_true] = ACTIONS(3347), - [anon_sym_false] = ACTIONS(3347), - [anon_sym_null] = ACTIONS(3349), - [aux_sym_cmd_identifier_token38] = ACTIONS(3351), - [aux_sym_cmd_identifier_token39] = ACTIONS(3351), - [aux_sym_cmd_identifier_token40] = ACTIONS(3351), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3333), - [anon_sym_DOLLAR] = ACTIONS(3335), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3273), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), - [anon_sym_DOT_DOT_LT] = ACTIONS(3277), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3361), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3289), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(3424), + [anon_sym_false] = ACTIONS(3424), + [anon_sym_null] = ACTIONS(3426), + [aux_sym_cmd_identifier_token38] = ACTIONS(3428), + [aux_sym_cmd_identifier_token39] = ACTIONS(3428), + [aux_sym_cmd_identifier_token40] = ACTIONS(3428), + [anon_sym_LBRACK] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym_DOLLAR] = ACTIONS(3410), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(3412), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [aux_sym__val_number_decimal_token1] = ACTIONS(3430), + [aux_sym__val_number_decimal_token2] = ACTIONS(3432), + [aux_sym__val_number_decimal_token3] = ACTIONS(3434), + [aux_sym__val_number_decimal_token4] = ACTIONS(3436), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3438), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3348), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [1010] = { - [sym_expr_unary] = STATE(1738), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1738), - [sym__expr_binary_expression] = STATE(3237), - [sym_expr_parenthesized] = STATE(1738), - [sym__val_range] = STATE(7580), - [sym__val_range_with_end] = STATE(7312), - [sym__value] = STATE(1738), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(3129), - [sym_val_variable] = STATE(1643), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(2873), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_unquoted] = STATE(1500), - [sym__unquoted_with_expr] = STATE(1783), - [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_expr_unary] = STATE(1701), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1701), + [sym__expr_binary_expression] = STATE(3860), + [sym_expr_parenthesized] = STATE(1701), + [sym__val_range] = STATE(7780), + [sym__val_range_with_end] = STATE(7546), + [sym__value] = STATE(1701), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(3789), + [sym_val_variable] = STATE(1881), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_unquoted] = STATE(1556), + [sym__unquoted_with_expr] = STATE(1710), + [sym__unquoted_anonymous_prefix] = STATE(7212), [sym_comment] = STATE(1010), - [anon_sym_true] = ACTIONS(3347), - [anon_sym_false] = ACTIONS(3347), - [anon_sym_null] = ACTIONS(3349), - [aux_sym_cmd_identifier_token38] = ACTIONS(3351), - [aux_sym_cmd_identifier_token39] = ACTIONS(3351), - [aux_sym_cmd_identifier_token40] = ACTIONS(3351), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3333), - [anon_sym_DOLLAR] = ACTIONS(3335), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3273), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), - [anon_sym_DOT_DOT_LT] = ACTIONS(3277), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3361), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3289), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(3424), + [anon_sym_false] = ACTIONS(3424), + [anon_sym_null] = ACTIONS(3426), + [aux_sym_cmd_identifier_token38] = ACTIONS(3428), + [aux_sym_cmd_identifier_token39] = ACTIONS(3428), + [aux_sym_cmd_identifier_token40] = ACTIONS(3428), + [anon_sym_LBRACK] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym_DOLLAR] = ACTIONS(3410), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(3412), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [aux_sym__val_number_decimal_token1] = ACTIONS(3430), + [aux_sym__val_number_decimal_token2] = ACTIONS(3432), + [aux_sym__val_number_decimal_token3] = ACTIONS(3434), + [aux_sym__val_number_decimal_token4] = ACTIONS(3436), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3438), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3348), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [1011] = { - [sym_expr_unary] = STATE(1738), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1738), - [sym__expr_binary_expression] = STATE(3238), - [sym_expr_parenthesized] = STATE(1738), - [sym__val_range] = STATE(7580), - [sym__val_range_with_end] = STATE(7312), - [sym__value] = STATE(1738), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(3129), - [sym_val_variable] = STATE(1643), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(2873), - [sym__val_number] = STATE(2242), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1972), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_unquoted] = STATE(1501), - [sym__unquoted_with_expr] = STATE(1784), - [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_expr_unary] = STATE(1701), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1701), + [sym__expr_binary_expression] = STATE(3862), + [sym_expr_parenthesized] = STATE(1701), + [sym__val_range] = STATE(7780), + [sym__val_range_with_end] = STATE(7546), + [sym__value] = STATE(1701), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(3789), + [sym_val_variable] = STATE(1881), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_unquoted] = STATE(1565), + [sym__unquoted_with_expr] = STATE(1714), + [sym__unquoted_anonymous_prefix] = STATE(7212), [sym_comment] = STATE(1011), - [anon_sym_true] = ACTIONS(3347), - [anon_sym_false] = ACTIONS(3347), - [anon_sym_null] = ACTIONS(3349), - [aux_sym_cmd_identifier_token38] = ACTIONS(3351), - [aux_sym_cmd_identifier_token39] = ACTIONS(3351), - [aux_sym_cmd_identifier_token40] = ACTIONS(3351), - [anon_sym_LBRACK] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(3333), - [anon_sym_DOLLAR] = ACTIONS(3335), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(3273), - [aux_sym_expr_unary_token1] = ACTIONS(209), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), - [anon_sym_DOT_DOT_LT] = ACTIONS(3277), - [aux_sym__val_number_decimal_token1] = ACTIONS(3353), - [aux_sym__val_number_decimal_token2] = ACTIONS(3355), - [aux_sym__val_number_decimal_token3] = ACTIONS(3357), - [aux_sym__val_number_decimal_token4] = ACTIONS(3359), - [aux_sym__val_number_token1] = ACTIONS(439), - [aux_sym__val_number_token2] = ACTIONS(439), - [aux_sym__val_number_token3] = ACTIONS(439), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3361), - [anon_sym_DQUOTE] = ACTIONS(441), - [sym__str_single_quotes] = ACTIONS(443), - [sym__str_back_ticks] = ACTIONS(443), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3289), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(3424), + [anon_sym_false] = ACTIONS(3424), + [anon_sym_null] = ACTIONS(3426), + [aux_sym_cmd_identifier_token38] = ACTIONS(3428), + [aux_sym_cmd_identifier_token39] = ACTIONS(3428), + [aux_sym_cmd_identifier_token40] = ACTIONS(3428), + [anon_sym_LBRACK] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym_DOLLAR] = ACTIONS(3410), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(3412), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [aux_sym__val_number_decimal_token1] = ACTIONS(3430), + [aux_sym__val_number_decimal_token2] = ACTIONS(3432), + [aux_sym__val_number_decimal_token3] = ACTIONS(3434), + [aux_sym__val_number_decimal_token4] = ACTIONS(3436), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3438), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3348), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [1012] = { - [sym_expr_unary] = STATE(1738), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1738), - [sym__expr_binary_expression] = STATE(1739), - [sym_expr_parenthesized] = STATE(1738), - [sym__val_range] = STATE(7580), - [sym__val_range_with_end] = STATE(7312), - [sym__value] = STATE(1738), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(3522), - [sym_val_variable] = STATE(1643), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(3346), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_unquoted] = STATE(1485), - [sym__unquoted_with_expr] = STATE(1740), - [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_expr_unary] = STATE(1701), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1701), + [sym__expr_binary_expression] = STATE(3863), + [sym_expr_parenthesized] = STATE(1701), + [sym__val_range] = STATE(7780), + [sym__val_range_with_end] = STATE(7546), + [sym__value] = STATE(1701), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(3789), + [sym_val_variable] = STATE(1881), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_unquoted] = STATE(1567), + [sym__unquoted_with_expr] = STATE(1718), + [sym__unquoted_anonymous_prefix] = STATE(7212), [sym_comment] = STATE(1012), - [anon_sym_true] = ACTIONS(3307), - [anon_sym_false] = ACTIONS(3307), - [anon_sym_null] = ACTIONS(3309), - [aux_sym_cmd_identifier_token38] = ACTIONS(3311), - [aux_sym_cmd_identifier_token39] = ACTIONS(3311), - [aux_sym_cmd_identifier_token40] = ACTIONS(3311), - [anon_sym_LBRACK] = ACTIONS(3265), - [anon_sym_LPAREN] = ACTIONS(3267), - [anon_sym_DOLLAR] = ACTIONS(3313), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(3271), - [anon_sym_DOT_DOT] = ACTIONS(3273), - [aux_sym_expr_unary_token1] = ACTIONS(3315), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), - [anon_sym_DOT_DOT_LT] = ACTIONS(3277), - [aux_sym__val_number_decimal_token1] = ACTIONS(3317), - [aux_sym__val_number_decimal_token2] = ACTIONS(3319), - [aux_sym__val_number_decimal_token3] = ACTIONS(3321), - [aux_sym__val_number_decimal_token4] = ACTIONS(3323), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3325), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3289), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(3424), + [anon_sym_false] = ACTIONS(3424), + [anon_sym_null] = ACTIONS(3426), + [aux_sym_cmd_identifier_token38] = ACTIONS(3428), + [aux_sym_cmd_identifier_token39] = ACTIONS(3428), + [aux_sym_cmd_identifier_token40] = ACTIONS(3428), + [anon_sym_LBRACK] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym_DOLLAR] = ACTIONS(3410), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(3412), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [aux_sym__val_number_decimal_token1] = ACTIONS(3430), + [aux_sym__val_number_decimal_token2] = ACTIONS(3432), + [aux_sym__val_number_decimal_token3] = ACTIONS(3434), + [aux_sym__val_number_decimal_token4] = ACTIONS(3436), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3438), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3348), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [1013] = { - [sym_expr_unary] = STATE(1738), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1738), - [sym__expr_binary_expression] = STATE(3695), - [sym_expr_parenthesized] = STATE(1738), - [sym__val_range] = STATE(7580), - [sym__val_range_with_end] = STATE(7312), - [sym__value] = STATE(1738), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(3522), - [sym_val_variable] = STATE(1643), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(3346), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_unquoted] = STATE(1486), - [sym__unquoted_with_expr] = STATE(1742), - [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_expr_unary] = STATE(1701), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1701), + [sym__expr_binary_expression] = STATE(3864), + [sym_expr_parenthesized] = STATE(1701), + [sym__val_range] = STATE(7780), + [sym__val_range_with_end] = STATE(7546), + [sym__value] = STATE(1701), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(3789), + [sym_val_variable] = STATE(1881), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_unquoted] = STATE(1568), + [sym__unquoted_with_expr] = STATE(1719), + [sym__unquoted_anonymous_prefix] = STATE(7212), [sym_comment] = STATE(1013), - [anon_sym_true] = ACTIONS(3307), - [anon_sym_false] = ACTIONS(3307), - [anon_sym_null] = ACTIONS(3309), - [aux_sym_cmd_identifier_token38] = ACTIONS(3311), - [aux_sym_cmd_identifier_token39] = ACTIONS(3311), - [aux_sym_cmd_identifier_token40] = ACTIONS(3311), - [anon_sym_LBRACK] = ACTIONS(3265), - [anon_sym_LPAREN] = ACTIONS(3267), - [anon_sym_DOLLAR] = ACTIONS(3313), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(3271), - [anon_sym_DOT_DOT] = ACTIONS(3273), - [aux_sym_expr_unary_token1] = ACTIONS(3315), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), - [anon_sym_DOT_DOT_LT] = ACTIONS(3277), - [aux_sym__val_number_decimal_token1] = ACTIONS(3317), - [aux_sym__val_number_decimal_token2] = ACTIONS(3319), - [aux_sym__val_number_decimal_token3] = ACTIONS(3321), - [aux_sym__val_number_decimal_token4] = ACTIONS(3323), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3325), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3289), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(3424), + [anon_sym_false] = ACTIONS(3424), + [anon_sym_null] = ACTIONS(3426), + [aux_sym_cmd_identifier_token38] = ACTIONS(3428), + [aux_sym_cmd_identifier_token39] = ACTIONS(3428), + [aux_sym_cmd_identifier_token40] = ACTIONS(3428), + [anon_sym_LBRACK] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym_DOLLAR] = ACTIONS(3410), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(3412), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [aux_sym__val_number_decimal_token1] = ACTIONS(3430), + [aux_sym__val_number_decimal_token2] = ACTIONS(3432), + [aux_sym__val_number_decimal_token3] = ACTIONS(3434), + [aux_sym__val_number_decimal_token4] = ACTIONS(3436), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3438), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3348), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [1014] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2432), - [sym_expr_binary] = STATE(2438), - [sym__expr_binary_expression] = STATE(2459), - [sym_expr_parenthesized] = STATE(2438), - [sym__val_range] = STATE(7480), - [sym__val_range_with_end] = STATE(7292), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2399), - [sym_val_bool] = STATE(2149), - [sym_val_variable] = STATE(2399), - [sym_val_number] = STATE(2399), - [sym__val_number_decimal] = STATE(1386), - [sym__val_number] = STATE(2385), - [sym_val_duration] = STATE(2399), - [sym_val_filesize] = STATE(2399), - [sym_val_binary] = STATE(2399), - [sym_val_string] = STATE(2399), - [sym__str_double_quotes] = STATE(1975), - [sym_val_interpolated] = STATE(2399), - [sym__inter_single_quotes] = STATE(2384), - [sym__inter_double_quotes] = STATE(2390), - [sym_val_list] = STATE(2399), - [sym_val_record] = STATE(2399), - [sym_val_table] = STATE(2399), - [sym_val_closure] = STATE(2399), - [sym_unquoted] = STATE(2187), - [sym__unquoted_with_expr] = STATE(2460), - [sym__unquoted_anonymous_prefix] = STATE(6622), + [sym_expr_unary] = STATE(1701), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1701), + [sym__expr_binary_expression] = STATE(3865), + [sym_expr_parenthesized] = STATE(1701), + [sym__val_range] = STATE(7780), + [sym__val_range_with_end] = STATE(7546), + [sym__value] = STATE(1701), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(3789), + [sym_val_variable] = STATE(1881), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_unquoted] = STATE(1570), + [sym__unquoted_with_expr] = STATE(1721), + [sym__unquoted_anonymous_prefix] = STATE(7212), [sym_comment] = STATE(1014), - [anon_sym_true] = ACTIONS(3291), - [anon_sym_false] = ACTIONS(3291), - [anon_sym_null] = ACTIONS(3293), - [aux_sym_cmd_identifier_token38] = ACTIONS(3295), - [aux_sym_cmd_identifier_token39] = ACTIONS(3295), - [aux_sym_cmd_identifier_token40] = ACTIONS(3295), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3239), - [anon_sym_DOLLAR] = ACTIONS(3241), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3243), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3245), - [anon_sym_DOT_DOT_LT] = ACTIONS(3245), - [aux_sym__val_number_decimal_token1] = ACTIONS(3297), - [aux_sym__val_number_decimal_token2] = ACTIONS(3299), - [aux_sym__val_number_decimal_token3] = ACTIONS(3301), - [aux_sym__val_number_decimal_token4] = ACTIONS(3303), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3305), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3257), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(3424), + [anon_sym_false] = ACTIONS(3424), + [anon_sym_null] = ACTIONS(3426), + [aux_sym_cmd_identifier_token38] = ACTIONS(3428), + [aux_sym_cmd_identifier_token39] = ACTIONS(3428), + [aux_sym_cmd_identifier_token40] = ACTIONS(3428), + [anon_sym_LBRACK] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym_DOLLAR] = ACTIONS(3410), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(3412), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [aux_sym__val_number_decimal_token1] = ACTIONS(3430), + [aux_sym__val_number_decimal_token2] = ACTIONS(3432), + [aux_sym__val_number_decimal_token3] = ACTIONS(3434), + [aux_sym__val_number_decimal_token4] = ACTIONS(3436), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3438), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3348), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [1015] = { - [sym_expr_unary] = STATE(1738), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1738), - [sym__expr_binary_expression] = STATE(1739), - [sym_expr_parenthesized] = STATE(1738), - [sym__val_range] = STATE(7580), - [sym__val_range_with_end] = STATE(7312), - [sym__value] = STATE(1738), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(3707), - [sym_val_variable] = STATE(1643), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(3383), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_unquoted] = STATE(1485), - [sym__unquoted_with_expr] = STATE(1740), - [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_expr_unary] = STATE(1701), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1701), + [sym__expr_binary_expression] = STATE(3866), + [sym_expr_parenthesized] = STATE(1701), + [sym__val_range] = STATE(7780), + [sym__val_range_with_end] = STATE(7546), + [sym__value] = STATE(1701), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(3789), + [sym_val_variable] = STATE(1881), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_unquoted] = STATE(1572), + [sym__unquoted_with_expr] = STATE(1731), + [sym__unquoted_anonymous_prefix] = STATE(7212), [sym_comment] = STATE(1015), - [anon_sym_true] = ACTIONS(3259), - [anon_sym_false] = ACTIONS(3259), - [anon_sym_null] = ACTIONS(3261), - [aux_sym_cmd_identifier_token38] = ACTIONS(3263), - [aux_sym_cmd_identifier_token39] = ACTIONS(3263), - [aux_sym_cmd_identifier_token40] = ACTIONS(3263), - [anon_sym_LBRACK] = ACTIONS(3265), - [anon_sym_LPAREN] = ACTIONS(3267), - [anon_sym_DOLLAR] = ACTIONS(3269), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(3271), - [anon_sym_DOT_DOT] = ACTIONS(3273), - [aux_sym_expr_unary_token1] = ACTIONS(3275), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), - [anon_sym_DOT_DOT_LT] = ACTIONS(3277), - [aux_sym__val_number_decimal_token1] = ACTIONS(3279), - [aux_sym__val_number_decimal_token2] = ACTIONS(3281), - [aux_sym__val_number_decimal_token3] = ACTIONS(3283), - [aux_sym__val_number_decimal_token4] = ACTIONS(3285), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3287), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3289), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(3424), + [anon_sym_false] = ACTIONS(3424), + [anon_sym_null] = ACTIONS(3426), + [aux_sym_cmd_identifier_token38] = ACTIONS(3428), + [aux_sym_cmd_identifier_token39] = ACTIONS(3428), + [aux_sym_cmd_identifier_token40] = ACTIONS(3428), + [anon_sym_LBRACK] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym_DOLLAR] = ACTIONS(3410), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(3412), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [aux_sym__val_number_decimal_token1] = ACTIONS(3430), + [aux_sym__val_number_decimal_token2] = ACTIONS(3432), + [aux_sym__val_number_decimal_token3] = ACTIONS(3434), + [aux_sym__val_number_decimal_token4] = ACTIONS(3436), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3438), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3348), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [1016] = { - [sym_expr_unary] = STATE(1738), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1738), - [sym__expr_binary_expression] = STATE(3798), - [sym_expr_parenthesized] = STATE(1738), - [sym__val_range] = STATE(7580), - [sym__val_range_with_end] = STATE(7312), - [sym__value] = STATE(1738), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(3707), - [sym_val_variable] = STATE(1643), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(3383), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_unquoted] = STATE(1486), - [sym__unquoted_with_expr] = STATE(1742), - [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_expr_unary] = STATE(1701), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1701), + [sym__expr_binary_expression] = STATE(3867), + [sym_expr_parenthesized] = STATE(1701), + [sym__val_range] = STATE(7780), + [sym__val_range_with_end] = STATE(7546), + [sym__value] = STATE(1701), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(3789), + [sym_val_variable] = STATE(1881), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_unquoted] = STATE(1574), + [sym__unquoted_with_expr] = STATE(1732), + [sym__unquoted_anonymous_prefix] = STATE(7212), [sym_comment] = STATE(1016), - [anon_sym_true] = ACTIONS(3259), - [anon_sym_false] = ACTIONS(3259), - [anon_sym_null] = ACTIONS(3261), - [aux_sym_cmd_identifier_token38] = ACTIONS(3263), - [aux_sym_cmd_identifier_token39] = ACTIONS(3263), - [aux_sym_cmd_identifier_token40] = ACTIONS(3263), - [anon_sym_LBRACK] = ACTIONS(3265), - [anon_sym_LPAREN] = ACTIONS(3267), - [anon_sym_DOLLAR] = ACTIONS(3269), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(3271), - [anon_sym_DOT_DOT] = ACTIONS(3273), - [aux_sym_expr_unary_token1] = ACTIONS(3275), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), - [anon_sym_DOT_DOT_LT] = ACTIONS(3277), - [aux_sym__val_number_decimal_token1] = ACTIONS(3279), - [aux_sym__val_number_decimal_token2] = ACTIONS(3281), - [aux_sym__val_number_decimal_token3] = ACTIONS(3283), - [aux_sym__val_number_decimal_token4] = ACTIONS(3285), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3287), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3289), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(3424), + [anon_sym_false] = ACTIONS(3424), + [anon_sym_null] = ACTIONS(3426), + [aux_sym_cmd_identifier_token38] = ACTIONS(3428), + [aux_sym_cmd_identifier_token39] = ACTIONS(3428), + [aux_sym_cmd_identifier_token40] = ACTIONS(3428), + [anon_sym_LBRACK] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym_DOLLAR] = ACTIONS(3410), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(3412), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [aux_sym__val_number_decimal_token1] = ACTIONS(3430), + [aux_sym__val_number_decimal_token2] = ACTIONS(3432), + [aux_sym__val_number_decimal_token3] = ACTIONS(3434), + [aux_sym__val_number_decimal_token4] = ACTIONS(3436), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3438), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3348), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [1017] = { - [sym_expr_unary] = STATE(1738), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1738), - [sym__expr_binary_expression] = STATE(3812), - [sym_expr_parenthesized] = STATE(1738), - [sym__val_range] = STATE(7580), - [sym__val_range_with_end] = STATE(7312), - [sym__value] = STATE(1738), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(3707), - [sym_val_variable] = STATE(1643), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(3383), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_unquoted] = STATE(1488), - [sym__unquoted_with_expr] = STATE(1743), - [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_expr_unary] = STATE(1701), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1701), + [sym__expr_binary_expression] = STATE(3869), + [sym_expr_parenthesized] = STATE(1701), + [sym__val_range] = STATE(7780), + [sym__val_range_with_end] = STATE(7546), + [sym__value] = STATE(1701), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(3789), + [sym_val_variable] = STATE(1881), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_unquoted] = STATE(1575), + [sym__unquoted_with_expr] = STATE(1735), + [sym__unquoted_anonymous_prefix] = STATE(7212), [sym_comment] = STATE(1017), - [anon_sym_true] = ACTIONS(3259), - [anon_sym_false] = ACTIONS(3259), - [anon_sym_null] = ACTIONS(3261), - [aux_sym_cmd_identifier_token38] = ACTIONS(3263), - [aux_sym_cmd_identifier_token39] = ACTIONS(3263), - [aux_sym_cmd_identifier_token40] = ACTIONS(3263), - [anon_sym_LBRACK] = ACTIONS(3265), - [anon_sym_LPAREN] = ACTIONS(3267), - [anon_sym_DOLLAR] = ACTIONS(3269), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(3271), - [anon_sym_DOT_DOT] = ACTIONS(3273), - [aux_sym_expr_unary_token1] = ACTIONS(3275), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), - [anon_sym_DOT_DOT_LT] = ACTIONS(3277), - [aux_sym__val_number_decimal_token1] = ACTIONS(3279), - [aux_sym__val_number_decimal_token2] = ACTIONS(3281), - [aux_sym__val_number_decimal_token3] = ACTIONS(3283), - [aux_sym__val_number_decimal_token4] = ACTIONS(3285), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3287), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3289), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(3424), + [anon_sym_false] = ACTIONS(3424), + [anon_sym_null] = ACTIONS(3426), + [aux_sym_cmd_identifier_token38] = ACTIONS(3428), + [aux_sym_cmd_identifier_token39] = ACTIONS(3428), + [aux_sym_cmd_identifier_token40] = ACTIONS(3428), + [anon_sym_LBRACK] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym_DOLLAR] = ACTIONS(3410), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(3412), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [aux_sym__val_number_decimal_token1] = ACTIONS(3430), + [aux_sym__val_number_decimal_token2] = ACTIONS(3432), + [aux_sym__val_number_decimal_token3] = ACTIONS(3434), + [aux_sym__val_number_decimal_token4] = ACTIONS(3436), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3438), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3348), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [1018] = { - [sym_expr_unary] = STATE(1738), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1738), - [sym__expr_binary_expression] = STATE(3786), - [sym_expr_parenthesized] = STATE(1738), - [sym__val_range] = STATE(7580), - [sym__val_range_with_end] = STATE(7312), - [sym__value] = STATE(1738), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(3707), - [sym_val_variable] = STATE(1643), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(3383), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_unquoted] = STATE(1489), - [sym__unquoted_with_expr] = STATE(1744), - [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_expr_unary] = STATE(1701), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1701), + [sym__expr_binary_expression] = STATE(3870), + [sym_expr_parenthesized] = STATE(1701), + [sym__val_range] = STATE(7780), + [sym__val_range_with_end] = STATE(7546), + [sym__value] = STATE(1701), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(3789), + [sym_val_variable] = STATE(1881), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_unquoted] = STATE(1576), + [sym__unquoted_with_expr] = STATE(1738), + [sym__unquoted_anonymous_prefix] = STATE(7212), [sym_comment] = STATE(1018), - [anon_sym_true] = ACTIONS(3259), - [anon_sym_false] = ACTIONS(3259), - [anon_sym_null] = ACTIONS(3261), - [aux_sym_cmd_identifier_token38] = ACTIONS(3263), - [aux_sym_cmd_identifier_token39] = ACTIONS(3263), - [aux_sym_cmd_identifier_token40] = ACTIONS(3263), - [anon_sym_LBRACK] = ACTIONS(3265), - [anon_sym_LPAREN] = ACTIONS(3267), - [anon_sym_DOLLAR] = ACTIONS(3269), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(3271), - [anon_sym_DOT_DOT] = ACTIONS(3273), - [aux_sym_expr_unary_token1] = ACTIONS(3275), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), - [anon_sym_DOT_DOT_LT] = ACTIONS(3277), - [aux_sym__val_number_decimal_token1] = ACTIONS(3279), - [aux_sym__val_number_decimal_token2] = ACTIONS(3281), - [aux_sym__val_number_decimal_token3] = ACTIONS(3283), - [aux_sym__val_number_decimal_token4] = ACTIONS(3285), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3287), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3289), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(3424), + [anon_sym_false] = ACTIONS(3424), + [anon_sym_null] = ACTIONS(3426), + [aux_sym_cmd_identifier_token38] = ACTIONS(3428), + [aux_sym_cmd_identifier_token39] = ACTIONS(3428), + [aux_sym_cmd_identifier_token40] = ACTIONS(3428), + [anon_sym_LBRACK] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym_DOLLAR] = ACTIONS(3410), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(3412), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [aux_sym__val_number_decimal_token1] = ACTIONS(3430), + [aux_sym__val_number_decimal_token2] = ACTIONS(3432), + [aux_sym__val_number_decimal_token3] = ACTIONS(3434), + [aux_sym__val_number_decimal_token4] = ACTIONS(3436), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3438), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3348), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [1019] = { - [sym_expr_unary] = STATE(1738), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1738), - [sym__expr_binary_expression] = STATE(3813), - [sym_expr_parenthesized] = STATE(1738), - [sym__val_range] = STATE(7580), - [sym__val_range_with_end] = STATE(7312), - [sym__value] = STATE(1738), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(3707), - [sym_val_variable] = STATE(1643), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(3383), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_unquoted] = STATE(1490), - [sym__unquoted_with_expr] = STATE(1747), - [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_expr_unary] = STATE(1701), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1701), + [sym__expr_binary_expression] = STATE(3871), + [sym_expr_parenthesized] = STATE(1701), + [sym__val_range] = STATE(7780), + [sym__val_range_with_end] = STATE(7546), + [sym__value] = STATE(1701), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(3789), + [sym_val_variable] = STATE(1881), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_unquoted] = STATE(1577), + [sym__unquoted_with_expr] = STATE(1740), + [sym__unquoted_anonymous_prefix] = STATE(7212), [sym_comment] = STATE(1019), - [anon_sym_true] = ACTIONS(3259), - [anon_sym_false] = ACTIONS(3259), - [anon_sym_null] = ACTIONS(3261), - [aux_sym_cmd_identifier_token38] = ACTIONS(3263), - [aux_sym_cmd_identifier_token39] = ACTIONS(3263), - [aux_sym_cmd_identifier_token40] = ACTIONS(3263), - [anon_sym_LBRACK] = ACTIONS(3265), - [anon_sym_LPAREN] = ACTIONS(3267), - [anon_sym_DOLLAR] = ACTIONS(3269), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(3271), - [anon_sym_DOT_DOT] = ACTIONS(3273), - [aux_sym_expr_unary_token1] = ACTIONS(3275), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), - [anon_sym_DOT_DOT_LT] = ACTIONS(3277), - [aux_sym__val_number_decimal_token1] = ACTIONS(3279), - [aux_sym__val_number_decimal_token2] = ACTIONS(3281), - [aux_sym__val_number_decimal_token3] = ACTIONS(3283), - [aux_sym__val_number_decimal_token4] = ACTIONS(3285), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3287), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3289), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(3424), + [anon_sym_false] = ACTIONS(3424), + [anon_sym_null] = ACTIONS(3426), + [aux_sym_cmd_identifier_token38] = ACTIONS(3428), + [aux_sym_cmd_identifier_token39] = ACTIONS(3428), + [aux_sym_cmd_identifier_token40] = ACTIONS(3428), + [anon_sym_LBRACK] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym_DOLLAR] = ACTIONS(3410), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(3412), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [aux_sym__val_number_decimal_token1] = ACTIONS(3430), + [aux_sym__val_number_decimal_token2] = ACTIONS(3432), + [aux_sym__val_number_decimal_token3] = ACTIONS(3434), + [aux_sym__val_number_decimal_token4] = ACTIONS(3436), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3438), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3348), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [1020] = { - [sym_expr_unary] = STATE(1738), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1738), - [sym__expr_binary_expression] = STATE(3696), - [sym_expr_parenthesized] = STATE(1738), - [sym__val_range] = STATE(7580), - [sym__val_range_with_end] = STATE(7312), - [sym__value] = STATE(1738), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(3522), - [sym_val_variable] = STATE(1643), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(3346), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_unquoted] = STATE(1488), + [sym_expr_unary] = STATE(1701), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1701), + [sym__expr_binary_expression] = STATE(3872), + [sym_expr_parenthesized] = STATE(1701), + [sym__val_range] = STATE(7780), + [sym__val_range_with_end] = STATE(7546), + [sym__value] = STATE(1701), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(3789), + [sym_val_variable] = STATE(1881), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(3445), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_unquoted] = STATE(1578), [sym__unquoted_with_expr] = STATE(1743), - [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym__unquoted_anonymous_prefix] = STATE(7212), [sym_comment] = STATE(1020), - [anon_sym_true] = ACTIONS(3307), - [anon_sym_false] = ACTIONS(3307), - [anon_sym_null] = ACTIONS(3309), - [aux_sym_cmd_identifier_token38] = ACTIONS(3311), - [aux_sym_cmd_identifier_token39] = ACTIONS(3311), - [aux_sym_cmd_identifier_token40] = ACTIONS(3311), - [anon_sym_LBRACK] = ACTIONS(3265), - [anon_sym_LPAREN] = ACTIONS(3267), - [anon_sym_DOLLAR] = ACTIONS(3313), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(3271), - [anon_sym_DOT_DOT] = ACTIONS(3273), - [aux_sym_expr_unary_token1] = ACTIONS(3315), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), - [anon_sym_DOT_DOT_LT] = ACTIONS(3277), - [aux_sym__val_number_decimal_token1] = ACTIONS(3317), - [aux_sym__val_number_decimal_token2] = ACTIONS(3319), - [aux_sym__val_number_decimal_token3] = ACTIONS(3321), - [aux_sym__val_number_decimal_token4] = ACTIONS(3323), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3325), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3289), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(3424), + [anon_sym_false] = ACTIONS(3424), + [anon_sym_null] = ACTIONS(3426), + [aux_sym_cmd_identifier_token38] = ACTIONS(3428), + [aux_sym_cmd_identifier_token39] = ACTIONS(3428), + [aux_sym_cmd_identifier_token40] = ACTIONS(3428), + [anon_sym_LBRACK] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym_DOLLAR] = ACTIONS(3410), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(3412), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [aux_sym__val_number_decimal_token1] = ACTIONS(3430), + [aux_sym__val_number_decimal_token2] = ACTIONS(3432), + [aux_sym__val_number_decimal_token3] = ACTIONS(3434), + [aux_sym__val_number_decimal_token4] = ACTIONS(3436), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3438), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3348), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), }, [1021] = { - [sym_expr_unary] = STATE(1738), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1738), - [sym__expr_binary_expression] = STATE(3697), - [sym_expr_parenthesized] = STATE(1738), - [sym__val_range] = STATE(7580), - [sym__val_range_with_end] = STATE(7312), - [sym__value] = STATE(1738), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(3522), - [sym_val_variable] = STATE(1643), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(3346), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_unquoted] = STATE(1489), - [sym__unquoted_with_expr] = STATE(1744), - [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_expr_unary] = STATE(1701), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1701), + [sym__expr_binary_expression] = STATE(1702), + [sym_expr_parenthesized] = STATE(1701), + [sym__val_range] = STATE(7780), + [sym__val_range_with_end] = STATE(7546), + [sym__value] = STATE(1701), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(2075), + [sym_val_variable] = STATE(1881), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1363), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_unquoted] = STATE(1548), + [sym__unquoted_with_expr] = STATE(1707), + [sym__unquoted_anonymous_prefix] = STATE(7212), [sym_comment] = STATE(1021), - [anon_sym_true] = ACTIONS(3307), - [anon_sym_false] = ACTIONS(3307), - [anon_sym_null] = ACTIONS(3309), - [aux_sym_cmd_identifier_token38] = ACTIONS(3311), - [aux_sym_cmd_identifier_token39] = ACTIONS(3311), - [aux_sym_cmd_identifier_token40] = ACTIONS(3311), - [anon_sym_LBRACK] = ACTIONS(3265), - [anon_sym_LPAREN] = ACTIONS(3267), - [anon_sym_DOLLAR] = ACTIONS(3313), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(3271), - [anon_sym_DOT_DOT] = ACTIONS(3273), - [aux_sym_expr_unary_token1] = ACTIONS(3315), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), - [anon_sym_DOT_DOT_LT] = ACTIONS(3277), - [aux_sym__val_number_decimal_token1] = ACTIONS(3317), - [aux_sym__val_number_decimal_token2] = ACTIONS(3319), - [aux_sym__val_number_decimal_token3] = ACTIONS(3321), - [aux_sym__val_number_decimal_token4] = ACTIONS(3323), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3325), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3289), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(3440), + [anon_sym_false] = ACTIONS(3440), + [anon_sym_null] = ACTIONS(3442), + [aux_sym_cmd_identifier_token38] = ACTIONS(3444), + [aux_sym_cmd_identifier_token39] = ACTIONS(3444), + [aux_sym_cmd_identifier_token40] = ACTIONS(3444), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(3330), + [anon_sym_DOLLAR] = ACTIONS(3332), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [aux_sym__val_number_decimal_token1] = ACTIONS(3446), + [aux_sym__val_number_decimal_token2] = ACTIONS(3448), + [aux_sym__val_number_decimal_token3] = ACTIONS(3450), + [aux_sym__val_number_decimal_token4] = ACTIONS(3452), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3454), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3348), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [1022] = { - [sym_expr_unary] = STATE(1738), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1738), - [sym__expr_binary_expression] = STATE(3698), - [sym_expr_parenthesized] = STATE(1738), - [sym__val_range] = STATE(7580), - [sym__val_range_with_end] = STATE(7312), - [sym__value] = STATE(1738), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(3522), - [sym_val_variable] = STATE(1643), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(3346), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_unquoted] = STATE(1490), - [sym__unquoted_with_expr] = STATE(1747), - [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_expr_unary] = STATE(1701), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1701), + [sym__expr_binary_expression] = STATE(2413), + [sym_expr_parenthesized] = STATE(1701), + [sym__val_range] = STATE(7780), + [sym__val_range_with_end] = STATE(7546), + [sym__value] = STATE(1701), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(2075), + [sym_val_variable] = STATE(1881), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1363), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_unquoted] = STATE(1554), + [sym__unquoted_with_expr] = STATE(1709), + [sym__unquoted_anonymous_prefix] = STATE(7212), [sym_comment] = STATE(1022), - [anon_sym_true] = ACTIONS(3307), - [anon_sym_false] = ACTIONS(3307), - [anon_sym_null] = ACTIONS(3309), - [aux_sym_cmd_identifier_token38] = ACTIONS(3311), - [aux_sym_cmd_identifier_token39] = ACTIONS(3311), - [aux_sym_cmd_identifier_token40] = ACTIONS(3311), - [anon_sym_LBRACK] = ACTIONS(3265), - [anon_sym_LPAREN] = ACTIONS(3267), - [anon_sym_DOLLAR] = ACTIONS(3313), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(3271), - [anon_sym_DOT_DOT] = ACTIONS(3273), - [aux_sym_expr_unary_token1] = ACTIONS(3315), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), - [anon_sym_DOT_DOT_LT] = ACTIONS(3277), - [aux_sym__val_number_decimal_token1] = ACTIONS(3317), - [aux_sym__val_number_decimal_token2] = ACTIONS(3319), - [aux_sym__val_number_decimal_token3] = ACTIONS(3321), - [aux_sym__val_number_decimal_token4] = ACTIONS(3323), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3325), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3289), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(3440), + [anon_sym_false] = ACTIONS(3440), + [anon_sym_null] = ACTIONS(3442), + [aux_sym_cmd_identifier_token38] = ACTIONS(3444), + [aux_sym_cmd_identifier_token39] = ACTIONS(3444), + [aux_sym_cmd_identifier_token40] = ACTIONS(3444), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(3330), + [anon_sym_DOLLAR] = ACTIONS(3332), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [aux_sym__val_number_decimal_token1] = ACTIONS(3446), + [aux_sym__val_number_decimal_token2] = ACTIONS(3448), + [aux_sym__val_number_decimal_token3] = ACTIONS(3450), + [aux_sym__val_number_decimal_token4] = ACTIONS(3452), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3454), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3348), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [1023] = { - [sym_expr_unary] = STATE(1738), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1738), - [sym__expr_binary_expression] = STATE(3809), - [sym_expr_parenthesized] = STATE(1738), - [sym__val_range] = STATE(7580), - [sym__val_range_with_end] = STATE(7312), - [sym__value] = STATE(1738), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(3707), - [sym_val_variable] = STATE(1643), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(3383), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_unquoted] = STATE(1495), - [sym__unquoted_with_expr] = STATE(1774), - [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_expr_unary] = STATE(1701), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1701), + [sym__expr_binary_expression] = STATE(2415), + [sym_expr_parenthesized] = STATE(1701), + [sym__val_range] = STATE(7780), + [sym__val_range_with_end] = STATE(7546), + [sym__value] = STATE(1701), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(2075), + [sym_val_variable] = STATE(1881), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1363), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_unquoted] = STATE(1556), + [sym__unquoted_with_expr] = STATE(1710), + [sym__unquoted_anonymous_prefix] = STATE(7212), [sym_comment] = STATE(1023), - [anon_sym_true] = ACTIONS(3259), - [anon_sym_false] = ACTIONS(3259), - [anon_sym_null] = ACTIONS(3261), - [aux_sym_cmd_identifier_token38] = ACTIONS(3263), - [aux_sym_cmd_identifier_token39] = ACTIONS(3263), - [aux_sym_cmd_identifier_token40] = ACTIONS(3263), - [anon_sym_LBRACK] = ACTIONS(3265), - [anon_sym_LPAREN] = ACTIONS(3267), - [anon_sym_DOLLAR] = ACTIONS(3269), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(3271), - [anon_sym_DOT_DOT] = ACTIONS(3273), - [aux_sym_expr_unary_token1] = ACTIONS(3275), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), - [anon_sym_DOT_DOT_LT] = ACTIONS(3277), - [aux_sym__val_number_decimal_token1] = ACTIONS(3279), - [aux_sym__val_number_decimal_token2] = ACTIONS(3281), - [aux_sym__val_number_decimal_token3] = ACTIONS(3283), - [aux_sym__val_number_decimal_token4] = ACTIONS(3285), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3287), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3289), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(3440), + [anon_sym_false] = ACTIONS(3440), + [anon_sym_null] = ACTIONS(3442), + [aux_sym_cmd_identifier_token38] = ACTIONS(3444), + [aux_sym_cmd_identifier_token39] = ACTIONS(3444), + [aux_sym_cmd_identifier_token40] = ACTIONS(3444), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(3330), + [anon_sym_DOLLAR] = ACTIONS(3332), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [aux_sym__val_number_decimal_token1] = ACTIONS(3446), + [aux_sym__val_number_decimal_token2] = ACTIONS(3448), + [aux_sym__val_number_decimal_token3] = ACTIONS(3450), + [aux_sym__val_number_decimal_token4] = ACTIONS(3452), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3454), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3348), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [1024] = { - [sym_expr_unary] = STATE(1738), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1738), - [sym__expr_binary_expression] = STATE(3797), - [sym_expr_parenthesized] = STATE(1738), - [sym__val_range] = STATE(7580), - [sym__val_range_with_end] = STATE(7312), - [sym__value] = STATE(1738), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(3707), - [sym_val_variable] = STATE(1643), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(3383), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_unquoted] = STATE(1496), - [sym__unquoted_with_expr] = STATE(1776), - [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_expr_unary] = STATE(1701), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1701), + [sym__expr_binary_expression] = STATE(2418), + [sym_expr_parenthesized] = STATE(1701), + [sym__val_range] = STATE(7780), + [sym__val_range_with_end] = STATE(7546), + [sym__value] = STATE(1701), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(2075), + [sym_val_variable] = STATE(1881), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1363), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_unquoted] = STATE(1565), + [sym__unquoted_with_expr] = STATE(1714), + [sym__unquoted_anonymous_prefix] = STATE(7212), [sym_comment] = STATE(1024), - [anon_sym_true] = ACTIONS(3259), - [anon_sym_false] = ACTIONS(3259), - [anon_sym_null] = ACTIONS(3261), - [aux_sym_cmd_identifier_token38] = ACTIONS(3263), - [aux_sym_cmd_identifier_token39] = ACTIONS(3263), - [aux_sym_cmd_identifier_token40] = ACTIONS(3263), - [anon_sym_LBRACK] = ACTIONS(3265), - [anon_sym_LPAREN] = ACTIONS(3267), - [anon_sym_DOLLAR] = ACTIONS(3269), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(3271), - [anon_sym_DOT_DOT] = ACTIONS(3273), - [aux_sym_expr_unary_token1] = ACTIONS(3275), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), - [anon_sym_DOT_DOT_LT] = ACTIONS(3277), - [aux_sym__val_number_decimal_token1] = ACTIONS(3279), - [aux_sym__val_number_decimal_token2] = ACTIONS(3281), - [aux_sym__val_number_decimal_token3] = ACTIONS(3283), - [aux_sym__val_number_decimal_token4] = ACTIONS(3285), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3287), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3289), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(3440), + [anon_sym_false] = ACTIONS(3440), + [anon_sym_null] = ACTIONS(3442), + [aux_sym_cmd_identifier_token38] = ACTIONS(3444), + [aux_sym_cmd_identifier_token39] = ACTIONS(3444), + [aux_sym_cmd_identifier_token40] = ACTIONS(3444), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(3330), + [anon_sym_DOLLAR] = ACTIONS(3332), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [aux_sym__val_number_decimal_token1] = ACTIONS(3446), + [aux_sym__val_number_decimal_token2] = ACTIONS(3448), + [aux_sym__val_number_decimal_token3] = ACTIONS(3450), + [aux_sym__val_number_decimal_token4] = ACTIONS(3452), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3454), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3348), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [1025] = { - [sym_expr_unary] = STATE(1738), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1738), - [sym__expr_binary_expression] = STATE(3699), - [sym_expr_parenthesized] = STATE(1738), - [sym__val_range] = STATE(7580), - [sym__val_range_with_end] = STATE(7312), - [sym__value] = STATE(1738), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(3522), - [sym_val_variable] = STATE(1643), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(3346), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_unquoted] = STATE(1495), - [sym__unquoted_with_expr] = STATE(1774), - [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_expr_unary] = STATE(1701), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1701), + [sym__expr_binary_expression] = STATE(2420), + [sym_expr_parenthesized] = STATE(1701), + [sym__val_range] = STATE(7780), + [sym__val_range_with_end] = STATE(7546), + [sym__value] = STATE(1701), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(2075), + [sym_val_variable] = STATE(1881), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1363), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_unquoted] = STATE(1567), + [sym__unquoted_with_expr] = STATE(1718), + [sym__unquoted_anonymous_prefix] = STATE(7212), [sym_comment] = STATE(1025), - [anon_sym_true] = ACTIONS(3307), - [anon_sym_false] = ACTIONS(3307), - [anon_sym_null] = ACTIONS(3309), - [aux_sym_cmd_identifier_token38] = ACTIONS(3311), - [aux_sym_cmd_identifier_token39] = ACTIONS(3311), - [aux_sym_cmd_identifier_token40] = ACTIONS(3311), - [anon_sym_LBRACK] = ACTIONS(3265), - [anon_sym_LPAREN] = ACTIONS(3267), - [anon_sym_DOLLAR] = ACTIONS(3313), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(3271), - [anon_sym_DOT_DOT] = ACTIONS(3273), - [aux_sym_expr_unary_token1] = ACTIONS(3315), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), - [anon_sym_DOT_DOT_LT] = ACTIONS(3277), - [aux_sym__val_number_decimal_token1] = ACTIONS(3317), - [aux_sym__val_number_decimal_token2] = ACTIONS(3319), - [aux_sym__val_number_decimal_token3] = ACTIONS(3321), - [aux_sym__val_number_decimal_token4] = ACTIONS(3323), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3325), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3289), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(3440), + [anon_sym_false] = ACTIONS(3440), + [anon_sym_null] = ACTIONS(3442), + [aux_sym_cmd_identifier_token38] = ACTIONS(3444), + [aux_sym_cmd_identifier_token39] = ACTIONS(3444), + [aux_sym_cmd_identifier_token40] = ACTIONS(3444), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(3330), + [anon_sym_DOLLAR] = ACTIONS(3332), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [aux_sym__val_number_decimal_token1] = ACTIONS(3446), + [aux_sym__val_number_decimal_token2] = ACTIONS(3448), + [aux_sym__val_number_decimal_token3] = ACTIONS(3450), + [aux_sym__val_number_decimal_token4] = ACTIONS(3452), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3454), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3348), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [1026] = { - [sym_expr_unary] = STATE(1738), - [sym__expr_unary_minus] = STATE(1646), - [sym_expr_binary] = STATE(1738), - [sym__expr_binary_expression] = STATE(3814), - [sym_expr_parenthesized] = STATE(1738), - [sym__val_range] = STATE(7580), - [sym__val_range_with_end] = STATE(7312), - [sym__value] = STATE(1738), - [sym_val_nothing] = STATE(1643), - [sym_val_bool] = STATE(3707), - [sym_val_variable] = STATE(1643), - [sym_val_number] = STATE(1643), - [sym__val_number_decimal] = STATE(3383), - [sym__val_number] = STATE(1647), - [sym_val_duration] = STATE(1643), - [sym_val_filesize] = STATE(1643), - [sym_val_binary] = STATE(1643), - [sym_val_string] = STATE(1643), - [sym__str_double_quotes] = STATE(1418), - [sym_val_interpolated] = STATE(1643), - [sym__inter_single_quotes] = STATE(1729), - [sym__inter_double_quotes] = STATE(1732), - [sym_val_list] = STATE(1643), - [sym_val_record] = STATE(1643), - [sym_val_table] = STATE(1643), - [sym_val_closure] = STATE(1643), - [sym_unquoted] = STATE(1497), - [sym__unquoted_with_expr] = STATE(1778), - [sym__unquoted_anonymous_prefix] = STATE(6990), + [sym_expr_unary] = STATE(1701), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1701), + [sym__expr_binary_expression] = STATE(2422), + [sym_expr_parenthesized] = STATE(1701), + [sym__val_range] = STATE(7780), + [sym__val_range_with_end] = STATE(7546), + [sym__value] = STATE(1701), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(2075), + [sym_val_variable] = STATE(1881), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1363), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_unquoted] = STATE(1568), + [sym__unquoted_with_expr] = STATE(1719), + [sym__unquoted_anonymous_prefix] = STATE(7212), [sym_comment] = STATE(1026), - [anon_sym_true] = ACTIONS(3259), - [anon_sym_false] = ACTIONS(3259), - [anon_sym_null] = ACTIONS(3261), - [aux_sym_cmd_identifier_token38] = ACTIONS(3263), - [aux_sym_cmd_identifier_token39] = ACTIONS(3263), - [aux_sym_cmd_identifier_token40] = ACTIONS(3263), - [anon_sym_LBRACK] = ACTIONS(3265), - [anon_sym_LPAREN] = ACTIONS(3267), - [anon_sym_DOLLAR] = ACTIONS(3269), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(3271), - [anon_sym_DOT_DOT] = ACTIONS(3273), - [aux_sym_expr_unary_token1] = ACTIONS(3275), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3277), - [anon_sym_DOT_DOT_LT] = ACTIONS(3277), - [aux_sym__val_number_decimal_token1] = ACTIONS(3279), - [aux_sym__val_number_decimal_token2] = ACTIONS(3281), - [aux_sym__val_number_decimal_token3] = ACTIONS(3283), - [aux_sym__val_number_decimal_token4] = ACTIONS(3285), - [aux_sym__val_number_token1] = ACTIONS(225), - [aux_sym__val_number_token2] = ACTIONS(225), - [aux_sym__val_number_token3] = ACTIONS(225), - [anon_sym_0b] = ACTIONS(227), - [anon_sym_0o] = ACTIONS(229), - [anon_sym_0x] = ACTIONS(229), - [sym_val_date] = ACTIONS(3287), - [anon_sym_DQUOTE] = ACTIONS(233), - [sym__str_single_quotes] = ACTIONS(235), - [sym__str_back_ticks] = ACTIONS(235), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(237), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3289), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(3440), + [anon_sym_false] = ACTIONS(3440), + [anon_sym_null] = ACTIONS(3442), + [aux_sym_cmd_identifier_token38] = ACTIONS(3444), + [aux_sym_cmd_identifier_token39] = ACTIONS(3444), + [aux_sym_cmd_identifier_token40] = ACTIONS(3444), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(3330), + [anon_sym_DOLLAR] = ACTIONS(3332), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [aux_sym__val_number_decimal_token1] = ACTIONS(3446), + [aux_sym__val_number_decimal_token2] = ACTIONS(3448), + [aux_sym__val_number_decimal_token3] = ACTIONS(3450), + [aux_sym__val_number_decimal_token4] = ACTIONS(3452), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3454), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3348), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [1027] = { - [sym_expr_unary] = STATE(2438), - [sym__expr_unary_minus] = STATE(2432), - [sym_expr_binary] = STATE(2438), - [sym__expr_binary_expression] = STATE(3330), - [sym_expr_parenthesized] = STATE(2438), - [sym__val_range] = STATE(7480), - [sym__val_range_with_end] = STATE(7292), - [sym__value] = STATE(2438), - [sym_val_nothing] = STATE(2399), - [sym_val_bool] = STATE(3156), - [sym_val_variable] = STATE(2399), - [sym_val_number] = STATE(2399), - [sym__val_number_decimal] = STATE(2937), - [sym__val_number] = STATE(2385), - [sym_val_duration] = STATE(2399), - [sym_val_filesize] = STATE(2399), - [sym_val_binary] = STATE(2399), - [sym_val_string] = STATE(2399), - [sym__str_double_quotes] = STATE(1975), - [sym_val_interpolated] = STATE(2399), - [sym__inter_single_quotes] = STATE(2384), - [sym__inter_double_quotes] = STATE(2390), - [sym_val_list] = STATE(2399), - [sym_val_record] = STATE(2399), - [sym_val_table] = STATE(2399), - [sym_val_closure] = STATE(2399), - [sym_unquoted] = STATE(2190), - [sym__unquoted_with_expr] = STATE(2464), - [sym__unquoted_anonymous_prefix] = STATE(6622), + [sym_expr_unary] = STATE(1701), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1701), + [sym__expr_binary_expression] = STATE(2423), + [sym_expr_parenthesized] = STATE(1701), + [sym__val_range] = STATE(7780), + [sym__val_range_with_end] = STATE(7546), + [sym__value] = STATE(1701), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(2075), + [sym_val_variable] = STATE(1881), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1363), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_unquoted] = STATE(1570), + [sym__unquoted_with_expr] = STATE(1721), + [sym__unquoted_anonymous_prefix] = STATE(7212), [sym_comment] = STATE(1027), - [anon_sym_true] = ACTIONS(3233), - [anon_sym_false] = ACTIONS(3233), - [anon_sym_null] = ACTIONS(3235), - [aux_sym_cmd_identifier_token38] = ACTIONS(3237), - [aux_sym_cmd_identifier_token39] = ACTIONS(3237), - [aux_sym_cmd_identifier_token40] = ACTIONS(3237), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_LPAREN] = ACTIONS(3239), - [anon_sym_DOLLAR] = ACTIONS(3241), - [anon_sym_DASH] = ACTIONS(53), - [anon_sym_LBRACE] = ACTIONS(71), - [anon_sym_DOT_DOT] = ACTIONS(3243), - [aux_sym_expr_unary_token1] = ACTIONS(91), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3245), - [anon_sym_DOT_DOT_LT] = ACTIONS(3245), - [aux_sym__val_number_decimal_token1] = ACTIONS(3247), - [aux_sym__val_number_decimal_token2] = ACTIONS(3249), - [aux_sym__val_number_decimal_token3] = ACTIONS(3251), - [aux_sym__val_number_decimal_token4] = ACTIONS(3253), - [aux_sym__val_number_token1] = ACTIONS(103), - [aux_sym__val_number_token2] = ACTIONS(103), - [aux_sym__val_number_token3] = ACTIONS(103), - [anon_sym_0b] = ACTIONS(105), - [anon_sym_0o] = ACTIONS(107), - [anon_sym_0x] = ACTIONS(107), - [sym_val_date] = ACTIONS(3255), - [anon_sym_DQUOTE] = ACTIONS(111), - [sym__str_single_quotes] = ACTIONS(113), - [sym__str_back_ticks] = ACTIONS(113), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3257), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(3440), + [anon_sym_false] = ACTIONS(3440), + [anon_sym_null] = ACTIONS(3442), + [aux_sym_cmd_identifier_token38] = ACTIONS(3444), + [aux_sym_cmd_identifier_token39] = ACTIONS(3444), + [aux_sym_cmd_identifier_token40] = ACTIONS(3444), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(3330), + [anon_sym_DOLLAR] = ACTIONS(3332), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [aux_sym__val_number_decimal_token1] = ACTIONS(3446), + [aux_sym__val_number_decimal_token2] = ACTIONS(3448), + [aux_sym__val_number_decimal_token3] = ACTIONS(3450), + [aux_sym__val_number_decimal_token4] = ACTIONS(3452), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3454), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3348), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [1028] = { - [sym_expr_unary] = STATE(4360), - [sym__expr_unary_minus] = STATE(4358), - [sym_expr_parenthesized] = STATE(4061), - [sym_val_range] = STATE(4360), - [sym__val_range] = STATE(7629), - [sym__val_range_with_end] = STATE(7328), - [sym__value] = STATE(4360), - [sym_val_nothing] = STATE(4042), - [sym_val_bool] = STATE(4158), - [sym_val_variable] = STATE(4055), - [sym_val_number] = STATE(4042), - [sym__val_number_decimal] = STATE(3877), - [sym__val_number] = STATE(3465), - [sym_val_duration] = STATE(4042), - [sym_val_filesize] = STATE(4042), - [sym_val_binary] = STATE(4042), - [sym_val_string] = STATE(4042), - [sym__str_double_quotes] = STATE(2725), - [sym_val_interpolated] = STATE(4042), - [sym__inter_single_quotes] = STATE(4011), - [sym__inter_double_quotes] = STATE(4052), - [sym_val_list] = STATE(4042), - [sym_val_record] = STATE(4042), - [sym_val_table] = STATE(4042), - [sym_val_closure] = STATE(4042), - [sym_unquoted] = STATE(4176), - [sym__unquoted_with_expr] = STATE(4363), - [sym__unquoted_anonymous_prefix] = STATE(6642), + [sym_expr_unary] = STATE(1701), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1701), + [sym__expr_binary_expression] = STATE(2424), + [sym_expr_parenthesized] = STATE(1701), + [sym__val_range] = STATE(7780), + [sym__val_range_with_end] = STATE(7546), + [sym__value] = STATE(1701), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(2075), + [sym_val_variable] = STATE(1881), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1363), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_unquoted] = STATE(1572), + [sym__unquoted_with_expr] = STATE(1731), + [sym__unquoted_anonymous_prefix] = STATE(7212), [sym_comment] = STATE(1028), - [anon_sym_true] = ACTIONS(3391), - [anon_sym_false] = ACTIONS(3391), - [anon_sym_null] = ACTIONS(3393), - [aux_sym_cmd_identifier_token38] = ACTIONS(3395), - [aux_sym_cmd_identifier_token39] = ACTIONS(3395), - [aux_sym_cmd_identifier_token40] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3397), - [anon_sym_LPAREN] = ACTIONS(3399), - [anon_sym_DOLLAR] = ACTIONS(3401), - [anon_sym_DASH] = ACTIONS(3403), - [anon_sym_LBRACE] = ACTIONS(3405), - [anon_sym_DOT_DOT] = ACTIONS(3407), - [aux_sym_expr_unary_token1] = ACTIONS(3409), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3411), - [anon_sym_DOT_DOT_LT] = ACTIONS(3411), - [aux_sym__val_number_decimal_token1] = ACTIONS(3413), - [aux_sym__val_number_decimal_token2] = ACTIONS(3415), - [aux_sym__val_number_decimal_token3] = ACTIONS(3417), - [aux_sym__val_number_decimal_token4] = ACTIONS(3419), - [aux_sym__val_number_token1] = ACTIONS(3421), - [aux_sym__val_number_token2] = ACTIONS(3421), - [aux_sym__val_number_token3] = ACTIONS(3421), - [anon_sym_0b] = ACTIONS(3423), - [anon_sym_0o] = ACTIONS(3425), - [anon_sym_0x] = ACTIONS(3425), - [sym_val_date] = ACTIONS(3427), - [anon_sym_DQUOTE] = ACTIONS(3429), - [sym__str_single_quotes] = ACTIONS(3431), - [sym__str_back_ticks] = ACTIONS(3431), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3433), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3435), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3437), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(3440), + [anon_sym_false] = ACTIONS(3440), + [anon_sym_null] = ACTIONS(3442), + [aux_sym_cmd_identifier_token38] = ACTIONS(3444), + [aux_sym_cmd_identifier_token39] = ACTIONS(3444), + [aux_sym_cmd_identifier_token40] = ACTIONS(3444), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(3330), + [anon_sym_DOLLAR] = ACTIONS(3332), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [aux_sym__val_number_decimal_token1] = ACTIONS(3446), + [aux_sym__val_number_decimal_token2] = ACTIONS(3448), + [aux_sym__val_number_decimal_token3] = ACTIONS(3450), + [aux_sym__val_number_decimal_token4] = ACTIONS(3452), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3454), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3348), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [1029] = { - [sym_expr_unary] = STATE(4364), - [sym__expr_unary_minus] = STATE(4358), - [sym_expr_parenthesized] = STATE(4053), - [sym_val_range] = STATE(4364), - [sym__val_range] = STATE(7629), - [sym__val_range_with_end] = STATE(7328), - [sym__value] = STATE(4364), - [sym_val_nothing] = STATE(4042), - [sym_val_bool] = STATE(4158), - [sym_val_variable] = STATE(4055), - [sym_val_number] = STATE(4042), - [sym__val_number_decimal] = STATE(3877), - [sym__val_number] = STATE(3465), - [sym_val_duration] = STATE(4042), - [sym_val_filesize] = STATE(4042), - [sym_val_binary] = STATE(4042), - [sym_val_string] = STATE(4042), - [sym__str_double_quotes] = STATE(2725), - [sym_val_interpolated] = STATE(4042), - [sym__inter_single_quotes] = STATE(4011), - [sym__inter_double_quotes] = STATE(4052), - [sym_val_list] = STATE(4042), - [sym_val_record] = STATE(4042), - [sym_val_table] = STATE(4042), - [sym_val_closure] = STATE(4042), - [sym_unquoted] = STATE(4096), - [sym__unquoted_with_expr] = STATE(4365), - [sym__unquoted_anonymous_prefix] = STATE(6642), + [sym_expr_unary] = STATE(1701), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1701), + [sym__expr_binary_expression] = STATE(2426), + [sym_expr_parenthesized] = STATE(1701), + [sym__val_range] = STATE(7780), + [sym__val_range_with_end] = STATE(7546), + [sym__value] = STATE(1701), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(2075), + [sym_val_variable] = STATE(1881), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1363), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_unquoted] = STATE(1574), + [sym__unquoted_with_expr] = STATE(1732), + [sym__unquoted_anonymous_prefix] = STATE(7212), [sym_comment] = STATE(1029), - [anon_sym_true] = ACTIONS(3391), - [anon_sym_false] = ACTIONS(3391), - [anon_sym_null] = ACTIONS(3393), - [aux_sym_cmd_identifier_token38] = ACTIONS(3395), - [aux_sym_cmd_identifier_token39] = ACTIONS(3395), - [aux_sym_cmd_identifier_token40] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3397), - [anon_sym_LPAREN] = ACTIONS(3399), - [anon_sym_DOLLAR] = ACTIONS(3401), - [anon_sym_DASH] = ACTIONS(3403), - [anon_sym_LBRACE] = ACTIONS(3405), - [anon_sym_DOT_DOT] = ACTIONS(3407), - [aux_sym_expr_unary_token1] = ACTIONS(3409), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3411), - [anon_sym_DOT_DOT_LT] = ACTIONS(3411), - [aux_sym__val_number_decimal_token1] = ACTIONS(3413), - [aux_sym__val_number_decimal_token2] = ACTIONS(3415), - [aux_sym__val_number_decimal_token3] = ACTIONS(3417), - [aux_sym__val_number_decimal_token4] = ACTIONS(3419), - [aux_sym__val_number_token1] = ACTIONS(3421), - [aux_sym__val_number_token2] = ACTIONS(3421), - [aux_sym__val_number_token3] = ACTIONS(3421), - [anon_sym_0b] = ACTIONS(3423), - [anon_sym_0o] = ACTIONS(3425), - [anon_sym_0x] = ACTIONS(3425), - [sym_val_date] = ACTIONS(3427), - [anon_sym_DQUOTE] = ACTIONS(3429), - [sym__str_single_quotes] = ACTIONS(3431), - [sym__str_back_ticks] = ACTIONS(3431), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3433), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3435), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3437), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(3440), + [anon_sym_false] = ACTIONS(3440), + [anon_sym_null] = ACTIONS(3442), + [aux_sym_cmd_identifier_token38] = ACTIONS(3444), + [aux_sym_cmd_identifier_token39] = ACTIONS(3444), + [aux_sym_cmd_identifier_token40] = ACTIONS(3444), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(3330), + [anon_sym_DOLLAR] = ACTIONS(3332), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [aux_sym__val_number_decimal_token1] = ACTIONS(3446), + [aux_sym__val_number_decimal_token2] = ACTIONS(3448), + [aux_sym__val_number_decimal_token3] = ACTIONS(3450), + [aux_sym__val_number_decimal_token4] = ACTIONS(3452), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3454), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3348), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [1030] = { - [sym_expr_unary] = STATE(4366), - [sym__expr_unary_minus] = STATE(4358), - [sym_expr_parenthesized] = STATE(4062), - [sym_val_range] = STATE(4366), - [sym__val_range] = STATE(7629), - [sym__val_range_with_end] = STATE(7328), - [sym__value] = STATE(4366), - [sym_val_nothing] = STATE(4042), - [sym_val_bool] = STATE(4158), - [sym_val_variable] = STATE(4055), - [sym_val_number] = STATE(4042), - [sym__val_number_decimal] = STATE(3877), - [sym__val_number] = STATE(3465), - [sym_val_duration] = STATE(4042), - [sym_val_filesize] = STATE(4042), - [sym_val_binary] = STATE(4042), - [sym_val_string] = STATE(4042), - [sym__str_double_quotes] = STATE(2725), - [sym_val_interpolated] = STATE(4042), - [sym__inter_single_quotes] = STATE(4011), - [sym__inter_double_quotes] = STATE(4052), - [sym_val_list] = STATE(4042), - [sym_val_record] = STATE(4042), - [sym_val_table] = STATE(4042), - [sym_val_closure] = STATE(4042), - [sym_unquoted] = STATE(4103), - [sym__unquoted_with_expr] = STATE(4379), - [sym__unquoted_anonymous_prefix] = STATE(6642), + [sym_expr_unary] = STATE(1701), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1701), + [sym__expr_binary_expression] = STATE(2341), + [sym_expr_parenthesized] = STATE(1701), + [sym__val_range] = STATE(7780), + [sym__val_range_with_end] = STATE(7546), + [sym__value] = STATE(1701), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(2075), + [sym_val_variable] = STATE(1881), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1363), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_unquoted] = STATE(1575), + [sym__unquoted_with_expr] = STATE(1735), + [sym__unquoted_anonymous_prefix] = STATE(7212), [sym_comment] = STATE(1030), - [anon_sym_true] = ACTIONS(3391), - [anon_sym_false] = ACTIONS(3391), - [anon_sym_null] = ACTIONS(3393), - [aux_sym_cmd_identifier_token38] = ACTIONS(3395), - [aux_sym_cmd_identifier_token39] = ACTIONS(3395), - [aux_sym_cmd_identifier_token40] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3397), - [anon_sym_LPAREN] = ACTIONS(3399), - [anon_sym_DOLLAR] = ACTIONS(3401), - [anon_sym_DASH] = ACTIONS(3403), - [anon_sym_LBRACE] = ACTIONS(3405), - [anon_sym_DOT_DOT] = ACTIONS(3407), - [aux_sym_expr_unary_token1] = ACTIONS(3409), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3411), - [anon_sym_DOT_DOT_LT] = ACTIONS(3411), - [aux_sym__val_number_decimal_token1] = ACTIONS(3413), - [aux_sym__val_number_decimal_token2] = ACTIONS(3415), - [aux_sym__val_number_decimal_token3] = ACTIONS(3417), - [aux_sym__val_number_decimal_token4] = ACTIONS(3419), - [aux_sym__val_number_token1] = ACTIONS(3421), - [aux_sym__val_number_token2] = ACTIONS(3421), - [aux_sym__val_number_token3] = ACTIONS(3421), - [anon_sym_0b] = ACTIONS(3423), - [anon_sym_0o] = ACTIONS(3425), - [anon_sym_0x] = ACTIONS(3425), - [sym_val_date] = ACTIONS(3427), - [anon_sym_DQUOTE] = ACTIONS(3429), - [sym__str_single_quotes] = ACTIONS(3431), - [sym__str_back_ticks] = ACTIONS(3431), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3433), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3435), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3437), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(3440), + [anon_sym_false] = ACTIONS(3440), + [anon_sym_null] = ACTIONS(3442), + [aux_sym_cmd_identifier_token38] = ACTIONS(3444), + [aux_sym_cmd_identifier_token39] = ACTIONS(3444), + [aux_sym_cmd_identifier_token40] = ACTIONS(3444), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(3330), + [anon_sym_DOLLAR] = ACTIONS(3332), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [aux_sym__val_number_decimal_token1] = ACTIONS(3446), + [aux_sym__val_number_decimal_token2] = ACTIONS(3448), + [aux_sym__val_number_decimal_token3] = ACTIONS(3450), + [aux_sym__val_number_decimal_token4] = ACTIONS(3452), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3454), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3348), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [1031] = { - [sym_expr_unary] = STATE(4605), - [sym__expr_unary_minus] = STATE(4553), - [sym_expr_parenthesized] = STATE(4194), - [sym_val_range] = STATE(4605), - [sym__val_range] = STATE(7499), - [sym__val_range_with_end] = STATE(7320), - [sym__value] = STATE(4605), - [sym_val_nothing] = STATE(4130), - [sym_val_bool] = STATE(4249), - [sym_val_variable] = STATE(4166), - [sym_val_number] = STATE(4130), - [sym__val_number_decimal] = STATE(3906), - [sym__val_number] = STATE(4118), - [sym_val_duration] = STATE(4130), - [sym_val_filesize] = STATE(4130), - [sym_val_binary] = STATE(4130), - [sym_val_string] = STATE(4130), - [sym__str_double_quotes] = STATE(3551), - [sym_val_interpolated] = STATE(4130), - [sym__inter_single_quotes] = STATE(4213), - [sym__inter_double_quotes] = STATE(4156), - [sym_val_list] = STATE(4130), - [sym_val_record] = STATE(4130), - [sym_val_table] = STATE(4130), - [sym_val_closure] = STATE(4130), - [sym_unquoted] = STATE(4273), - [sym__unquoted_with_expr] = STATE(4610), - [sym__unquoted_anonymous_prefix] = STATE(6618), + [sym_expr_unary] = STATE(1701), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1701), + [sym__expr_binary_expression] = STATE(2246), + [sym_expr_parenthesized] = STATE(1701), + [sym__val_range] = STATE(7780), + [sym__val_range_with_end] = STATE(7546), + [sym__value] = STATE(1701), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(2075), + [sym_val_variable] = STATE(1881), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1363), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_unquoted] = STATE(1576), + [sym__unquoted_with_expr] = STATE(1738), + [sym__unquoted_anonymous_prefix] = STATE(7212), [sym_comment] = STATE(1031), - [anon_sym_true] = ACTIONS(3439), - [anon_sym_false] = ACTIONS(3439), - [anon_sym_null] = ACTIONS(3441), - [aux_sym_cmd_identifier_token38] = ACTIONS(3443), - [aux_sym_cmd_identifier_token39] = ACTIONS(3443), - [aux_sym_cmd_identifier_token40] = ACTIONS(3443), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3447), - [anon_sym_DOLLAR] = ACTIONS(3449), - [anon_sym_DASH] = ACTIONS(3451), - [anon_sym_LBRACE] = ACTIONS(3453), - [anon_sym_DOT_DOT] = ACTIONS(3455), - [aux_sym_expr_unary_token1] = ACTIONS(3457), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3459), - [anon_sym_DOT_DOT_LT] = ACTIONS(3459), - [aux_sym__val_number_decimal_token1] = ACTIONS(3461), - [aux_sym__val_number_decimal_token2] = ACTIONS(3463), - [aux_sym__val_number_decimal_token3] = ACTIONS(3465), - [aux_sym__val_number_decimal_token4] = ACTIONS(3467), - [aux_sym__val_number_token1] = ACTIONS(3469), - [aux_sym__val_number_token2] = ACTIONS(3469), - [aux_sym__val_number_token3] = ACTIONS(3469), - [anon_sym_0b] = ACTIONS(3471), - [anon_sym_0o] = ACTIONS(3473), - [anon_sym_0x] = ACTIONS(3473), - [sym_val_date] = ACTIONS(3475), - [anon_sym_DQUOTE] = ACTIONS(3477), - [sym__str_single_quotes] = ACTIONS(3479), - [sym__str_back_ticks] = ACTIONS(3479), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3481), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3483), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3485), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(3440), + [anon_sym_false] = ACTIONS(3440), + [anon_sym_null] = ACTIONS(3442), + [aux_sym_cmd_identifier_token38] = ACTIONS(3444), + [aux_sym_cmd_identifier_token39] = ACTIONS(3444), + [aux_sym_cmd_identifier_token40] = ACTIONS(3444), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(3330), + [anon_sym_DOLLAR] = ACTIONS(3332), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [aux_sym__val_number_decimal_token1] = ACTIONS(3446), + [aux_sym__val_number_decimal_token2] = ACTIONS(3448), + [aux_sym__val_number_decimal_token3] = ACTIONS(3450), + [aux_sym__val_number_decimal_token4] = ACTIONS(3452), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3454), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3348), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [1032] = { - [sym_expr_unary] = STATE(4512), - [sym__expr_unary_minus] = STATE(4553), - [sym_expr_parenthesized] = STATE(4195), - [sym_val_range] = STATE(4512), - [sym__val_range] = STATE(7499), - [sym__val_range_with_end] = STATE(7320), - [sym__value] = STATE(4512), - [sym_val_nothing] = STATE(4130), - [sym_val_bool] = STATE(4249), - [sym_val_variable] = STATE(4166), - [sym_val_number] = STATE(4130), - [sym__val_number_decimal] = STATE(3906), - [sym__val_number] = STATE(4118), - [sym_val_duration] = STATE(4130), - [sym_val_filesize] = STATE(4130), - [sym_val_binary] = STATE(4130), - [sym_val_string] = STATE(4130), - [sym__str_double_quotes] = STATE(3551), - [sym_val_interpolated] = STATE(4130), - [sym__inter_single_quotes] = STATE(4213), - [sym__inter_double_quotes] = STATE(4156), - [sym_val_list] = STATE(4130), - [sym_val_record] = STATE(4130), - [sym_val_table] = STATE(4130), - [sym_val_closure] = STATE(4130), - [sym_unquoted] = STATE(4275), - [sym__unquoted_with_expr] = STATE(4617), - [sym__unquoted_anonymous_prefix] = STATE(6618), + [sym_expr_unary] = STATE(1701), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1701), + [sym__expr_binary_expression] = STATE(2247), + [sym_expr_parenthesized] = STATE(1701), + [sym__val_range] = STATE(7780), + [sym__val_range_with_end] = STATE(7546), + [sym__value] = STATE(1701), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(2075), + [sym_val_variable] = STATE(1881), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1363), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_unquoted] = STATE(1577), + [sym__unquoted_with_expr] = STATE(1740), + [sym__unquoted_anonymous_prefix] = STATE(7212), [sym_comment] = STATE(1032), - [anon_sym_true] = ACTIONS(3439), - [anon_sym_false] = ACTIONS(3439), - [anon_sym_null] = ACTIONS(3441), - [aux_sym_cmd_identifier_token38] = ACTIONS(3443), - [aux_sym_cmd_identifier_token39] = ACTIONS(3443), - [aux_sym_cmd_identifier_token40] = ACTIONS(3443), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3447), - [anon_sym_DOLLAR] = ACTIONS(3449), - [anon_sym_DASH] = ACTIONS(3451), - [anon_sym_LBRACE] = ACTIONS(3453), - [anon_sym_DOT_DOT] = ACTIONS(3455), - [aux_sym_expr_unary_token1] = ACTIONS(3457), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3459), - [anon_sym_DOT_DOT_LT] = ACTIONS(3459), - [aux_sym__val_number_decimal_token1] = ACTIONS(3461), - [aux_sym__val_number_decimal_token2] = ACTIONS(3463), - [aux_sym__val_number_decimal_token3] = ACTIONS(3465), - [aux_sym__val_number_decimal_token4] = ACTIONS(3467), - [aux_sym__val_number_token1] = ACTIONS(3469), - [aux_sym__val_number_token2] = ACTIONS(3469), - [aux_sym__val_number_token3] = ACTIONS(3469), - [anon_sym_0b] = ACTIONS(3471), - [anon_sym_0o] = ACTIONS(3473), - [anon_sym_0x] = ACTIONS(3473), - [sym_val_date] = ACTIONS(3475), - [anon_sym_DQUOTE] = ACTIONS(3477), - [sym__str_single_quotes] = ACTIONS(3479), - [sym__str_back_ticks] = ACTIONS(3479), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3481), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3483), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3485), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(3440), + [anon_sym_false] = ACTIONS(3440), + [anon_sym_null] = ACTIONS(3442), + [aux_sym_cmd_identifier_token38] = ACTIONS(3444), + [aux_sym_cmd_identifier_token39] = ACTIONS(3444), + [aux_sym_cmd_identifier_token40] = ACTIONS(3444), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(3330), + [anon_sym_DOLLAR] = ACTIONS(3332), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [aux_sym__val_number_decimal_token1] = ACTIONS(3446), + [aux_sym__val_number_decimal_token2] = ACTIONS(3448), + [aux_sym__val_number_decimal_token3] = ACTIONS(3450), + [aux_sym__val_number_decimal_token4] = ACTIONS(3452), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3454), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3348), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [1033] = { - [sym_expr_unary] = STATE(4599), - [sym__expr_unary_minus] = STATE(4553), - [sym_expr_parenthesized] = STATE(4189), - [sym_val_range] = STATE(4599), - [sym__val_range] = STATE(7499), - [sym__val_range_with_end] = STATE(7320), - [sym__value] = STATE(4599), - [sym_val_nothing] = STATE(4130), - [sym_val_bool] = STATE(4249), - [sym_val_variable] = STATE(4166), - [sym_val_number] = STATE(4130), - [sym__val_number_decimal] = STATE(3906), - [sym__val_number] = STATE(4118), - [sym_val_duration] = STATE(4130), - [sym_val_filesize] = STATE(4130), - [sym_val_binary] = STATE(4130), - [sym_val_string] = STATE(4130), - [sym__str_double_quotes] = STATE(3551), - [sym_val_interpolated] = STATE(4130), - [sym__inter_single_quotes] = STATE(4213), - [sym__inter_double_quotes] = STATE(4156), - [sym_val_list] = STATE(4130), - [sym_val_record] = STATE(4130), - [sym_val_table] = STATE(4130), - [sym_val_closure] = STATE(4130), - [sym_unquoted] = STATE(4260), - [sym__unquoted_with_expr] = STATE(4604), - [sym__unquoted_anonymous_prefix] = STATE(6618), + [sym_expr_unary] = STATE(1701), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1701), + [sym__expr_binary_expression] = STATE(2248), + [sym_expr_parenthesized] = STATE(1701), + [sym__val_range] = STATE(7780), + [sym__val_range_with_end] = STATE(7546), + [sym__value] = STATE(1701), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(2075), + [sym_val_variable] = STATE(1881), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(1363), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_unquoted] = STATE(1578), + [sym__unquoted_with_expr] = STATE(1743), + [sym__unquoted_anonymous_prefix] = STATE(7212), [sym_comment] = STATE(1033), - [anon_sym_true] = ACTIONS(3439), - [anon_sym_false] = ACTIONS(3439), - [anon_sym_null] = ACTIONS(3441), - [aux_sym_cmd_identifier_token38] = ACTIONS(3443), - [aux_sym_cmd_identifier_token39] = ACTIONS(3443), - [aux_sym_cmd_identifier_token40] = ACTIONS(3443), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3447), - [anon_sym_DOLLAR] = ACTIONS(3449), - [anon_sym_DASH] = ACTIONS(3451), - [anon_sym_LBRACE] = ACTIONS(3453), - [anon_sym_DOT_DOT] = ACTIONS(3455), - [aux_sym_expr_unary_token1] = ACTIONS(3457), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3459), - [anon_sym_DOT_DOT_LT] = ACTIONS(3459), - [aux_sym__val_number_decimal_token1] = ACTIONS(3461), - [aux_sym__val_number_decimal_token2] = ACTIONS(3463), - [aux_sym__val_number_decimal_token3] = ACTIONS(3465), - [aux_sym__val_number_decimal_token4] = ACTIONS(3467), - [aux_sym__val_number_token1] = ACTIONS(3469), - [aux_sym__val_number_token2] = ACTIONS(3469), - [aux_sym__val_number_token3] = ACTIONS(3469), - [anon_sym_0b] = ACTIONS(3471), - [anon_sym_0o] = ACTIONS(3473), - [anon_sym_0x] = ACTIONS(3473), - [sym_val_date] = ACTIONS(3475), - [anon_sym_DQUOTE] = ACTIONS(3477), - [sym__str_single_quotes] = ACTIONS(3479), - [sym__str_back_ticks] = ACTIONS(3479), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3481), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3483), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3485), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(3440), + [anon_sym_false] = ACTIONS(3440), + [anon_sym_null] = ACTIONS(3442), + [aux_sym_cmd_identifier_token38] = ACTIONS(3444), + [aux_sym_cmd_identifier_token39] = ACTIONS(3444), + [aux_sym_cmd_identifier_token40] = ACTIONS(3444), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(3330), + [anon_sym_DOLLAR] = ACTIONS(3332), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [aux_sym__val_number_decimal_token1] = ACTIONS(3446), + [aux_sym__val_number_decimal_token2] = ACTIONS(3448), + [aux_sym__val_number_decimal_token3] = ACTIONS(3450), + [aux_sym__val_number_decimal_token4] = ACTIONS(3452), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3454), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3348), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [1034] = { - [sym_expr_parenthesized] = STATE(4573), - [sym_val_range] = STATE(5129), - [sym__val_range] = STATE(7500), - [sym__val_range_with_end] = STATE(7223), - [sym__value] = STATE(5129), - [sym_val_nothing] = STATE(4953), - [sym_val_bool] = STATE(4787), - [sym_val_variable] = STATE(4522), - [sym_val_number] = STATE(4953), - [sym__val_number_decimal] = STATE(3999), - [sym__val_number] = STATE(5152), - [sym_val_duration] = STATE(4953), - [sym_val_filesize] = STATE(4953), - [sym_val_binary] = STATE(4953), - [sym_val_string] = STATE(4953), - [sym__str_double_quotes] = STATE(4680), - [sym_val_interpolated] = STATE(4953), - [sym__inter_single_quotes] = STATE(4860), - [sym__inter_double_quotes] = STATE(4909), - [sym_val_list] = STATE(4953), - [sym_val_record] = STATE(4953), - [sym_val_table] = STATE(4953), - [sym_val_closure] = STATE(4953), - [sym__unquoted_in_list] = STATE(4741), - [sym__unquoted_in_list_with_expr] = STATE(5129), - [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym_expr_unary] = STATE(2512), + [sym__expr_unary_minus] = STATE(2510), + [sym_expr_binary] = STATE(2512), + [sym__expr_binary_expression] = STATE(3354), + [sym_expr_parenthesized] = STATE(2512), + [sym__val_range] = STATE(7869), + [sym__val_range_with_end] = STATE(7524), + [sym__value] = STATE(2512), + [sym_val_nothing] = STATE(2441), + [sym_val_bool] = STATE(3183), + [sym_val_variable] = STATE(2441), + [sym_val_number] = STATE(2441), + [sym__val_number_decimal] = STATE(3024), + [sym__val_number] = STATE(2488), + [sym_val_duration] = STATE(2441), + [sym_val_filesize] = STATE(2441), + [sym_val_binary] = STATE(2441), + [sym_val_string] = STATE(2441), + [sym__raw_str] = STATE(2065), + [sym__str_double_quotes] = STATE(2065), + [sym_val_interpolated] = STATE(2441), + [sym__inter_single_quotes] = STATE(2563), + [sym__inter_double_quotes] = STATE(2436), + [sym_val_list] = STATE(2441), + [sym_val_record] = STATE(2441), + [sym_val_table] = STATE(2441), + [sym_val_closure] = STATE(2441), + [sym_unquoted] = STATE(2079), + [sym__unquoted_with_expr] = STATE(2539), + [sym__unquoted_anonymous_prefix] = STATE(6886), [sym_comment] = STATE(1034), - [aux_sym_shebang_repeat1] = STATE(1035), - [anon_sym_true] = ACTIONS(3487), - [anon_sym_false] = ACTIONS(3487), - [anon_sym_null] = ACTIONS(3489), - [aux_sym_cmd_identifier_token38] = ACTIONS(3491), - [aux_sym_cmd_identifier_token39] = ACTIONS(3491), - [aux_sym_cmd_identifier_token40] = ACTIONS(3491), - [sym__newline] = ACTIONS(3493), - [anon_sym_LBRACK] = ACTIONS(3495), - [anon_sym_LPAREN] = ACTIONS(3497), - [anon_sym_DOLLAR] = ACTIONS(3499), - [anon_sym_LBRACE] = ACTIONS(3501), - [anon_sym_DOT_DOT] = ACTIONS(3503), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3505), - [anon_sym_DOT_DOT_LT] = ACTIONS(3505), - [aux_sym__val_number_decimal_token1] = ACTIONS(3507), - [aux_sym__val_number_decimal_token2] = ACTIONS(3509), - [aux_sym__val_number_decimal_token3] = ACTIONS(3511), - [aux_sym__val_number_decimal_token4] = ACTIONS(3513), - [aux_sym__val_number_token1] = ACTIONS(3515), - [aux_sym__val_number_token2] = ACTIONS(3515), - [aux_sym__val_number_token3] = ACTIONS(3515), - [anon_sym_0b] = ACTIONS(3517), - [anon_sym_0o] = ACTIONS(3519), - [anon_sym_0x] = ACTIONS(3519), - [sym_val_date] = ACTIONS(3521), - [anon_sym_DQUOTE] = ACTIONS(3523), - [sym__str_single_quotes] = ACTIONS(3525), - [sym__str_back_ticks] = ACTIONS(3525), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3527), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3529), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [anon_sym_err_GT_GT] = ACTIONS(2589), - [anon_sym_out_GT_GT] = ACTIONS(2589), - [anon_sym_e_GT_GT] = ACTIONS(2589), - [anon_sym_o_GT_GT] = ACTIONS(2589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3531), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(3298), + [anon_sym_false] = ACTIONS(3298), + [anon_sym_null] = ACTIONS(3300), + [aux_sym_cmd_identifier_token38] = ACTIONS(3302), + [aux_sym_cmd_identifier_token39] = ACTIONS(3302), + [aux_sym_cmd_identifier_token40] = ACTIONS(3302), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_LPAREN] = ACTIONS(3304), + [anon_sym_DOLLAR] = ACTIONS(3306), + [anon_sym_DASH] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(71), + [anon_sym_DOT_DOT] = ACTIONS(3308), + [aux_sym_expr_unary_token1] = ACTIONS(91), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3310), + [anon_sym_DOT_DOT_LT] = ACTIONS(3310), + [aux_sym__val_number_decimal_token1] = ACTIONS(3312), + [aux_sym__val_number_decimal_token2] = ACTIONS(3314), + [aux_sym__val_number_decimal_token3] = ACTIONS(3316), + [aux_sym__val_number_decimal_token4] = ACTIONS(3318), + [aux_sym__val_number_token1] = ACTIONS(103), + [aux_sym__val_number_token2] = ACTIONS(103), + [aux_sym__val_number_token3] = ACTIONS(103), + [anon_sym_0b] = ACTIONS(105), + [anon_sym_0o] = ACTIONS(107), + [anon_sym_0x] = ACTIONS(107), + [sym_val_date] = ACTIONS(3320), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(115), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(117), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3322), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(123), }, [1035] = { - [sym_expr_parenthesized] = STATE(4615), - [sym_val_range] = STATE(5009), - [sym__val_range] = STATE(7500), - [sym__val_range_with_end] = STATE(7223), - [sym__value] = STATE(5009), - [sym_val_nothing] = STATE(4953), - [sym_val_bool] = STATE(4787), - [sym_val_variable] = STATE(4522), - [sym_val_number] = STATE(4953), - [sym__val_number_decimal] = STATE(3999), - [sym__val_number] = STATE(5152), - [sym_val_duration] = STATE(4953), - [sym_val_filesize] = STATE(4953), - [sym_val_binary] = STATE(4953), - [sym_val_string] = STATE(4953), - [sym__str_double_quotes] = STATE(4680), - [sym_val_interpolated] = STATE(4953), - [sym__inter_single_quotes] = STATE(4860), - [sym__inter_double_quotes] = STATE(4909), - [sym_val_list] = STATE(4953), - [sym_val_record] = STATE(4953), - [sym_val_table] = STATE(4953), - [sym_val_closure] = STATE(4953), - [sym__unquoted_in_list] = STATE(4788), - [sym__unquoted_in_list_with_expr] = STATE(5009), - [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym_expr_unary] = STATE(1701), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1701), + [sym__expr_binary_expression] = STATE(3224), + [sym_expr_parenthesized] = STATE(1701), + [sym__val_range] = STATE(7780), + [sym__val_range_with_end] = STATE(7546), + [sym__value] = STATE(1701), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(3169), + [sym_val_variable] = STATE(1881), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(2926), + [sym__val_number] = STATE(2271), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(2074), + [sym__str_double_quotes] = STATE(2074), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym_unquoted] = STATE(1556), + [sym__unquoted_with_expr] = STATE(1710), + [sym__unquoted_anonymous_prefix] = STATE(7212), [sym_comment] = STATE(1035), - [aux_sym_shebang_repeat1] = STATE(2901), - [anon_sym_true] = ACTIONS(3487), - [anon_sym_false] = ACTIONS(3487), - [anon_sym_null] = ACTIONS(3489), - [aux_sym_cmd_identifier_token38] = ACTIONS(3491), - [aux_sym_cmd_identifier_token39] = ACTIONS(3491), - [aux_sym_cmd_identifier_token40] = ACTIONS(3491), - [sym__newline] = ACTIONS(3493), - [anon_sym_LBRACK] = ACTIONS(3495), - [anon_sym_LPAREN] = ACTIONS(3497), - [anon_sym_DOLLAR] = ACTIONS(3499), - [anon_sym_LBRACE] = ACTIONS(3501), - [anon_sym_DOT_DOT] = ACTIONS(3503), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3505), - [anon_sym_DOT_DOT_LT] = ACTIONS(3505), - [aux_sym__val_number_decimal_token1] = ACTIONS(3507), - [aux_sym__val_number_decimal_token2] = ACTIONS(3509), - [aux_sym__val_number_decimal_token3] = ACTIONS(3511), - [aux_sym__val_number_decimal_token4] = ACTIONS(3513), - [aux_sym__val_number_token1] = ACTIONS(3515), - [aux_sym__val_number_token2] = ACTIONS(3515), - [aux_sym__val_number_token3] = ACTIONS(3515), - [anon_sym_0b] = ACTIONS(3517), - [anon_sym_0o] = ACTIONS(3519), - [anon_sym_0x] = ACTIONS(3519), - [sym_val_date] = ACTIONS(3521), - [anon_sym_DQUOTE] = ACTIONS(3523), - [sym__str_single_quotes] = ACTIONS(3525), - [sym__str_back_ticks] = ACTIONS(3525), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3527), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3529), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [anon_sym_err_GT_GT] = ACTIONS(2589), - [anon_sym_out_GT_GT] = ACTIONS(2589), - [anon_sym_e_GT_GT] = ACTIONS(2589), - [anon_sym_o_GT_GT] = ACTIONS(2589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3531), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(3324), + [anon_sym_false] = ACTIONS(3324), + [anon_sym_null] = ACTIONS(3326), + [aux_sym_cmd_identifier_token38] = ACTIONS(3328), + [aux_sym_cmd_identifier_token39] = ACTIONS(3328), + [aux_sym_cmd_identifier_token40] = ACTIONS(3328), + [anon_sym_LBRACK] = ACTIONS(161), + [anon_sym_LPAREN] = ACTIONS(3330), + [anon_sym_DOLLAR] = ACTIONS(3332), + [anon_sym_DASH] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(189), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [aux_sym__val_number_decimal_token1] = ACTIONS(3338), + [aux_sym__val_number_decimal_token2] = ACTIONS(3340), + [aux_sym__val_number_decimal_token3] = ACTIONS(3342), + [aux_sym__val_number_decimal_token4] = ACTIONS(3344), + [aux_sym__val_number_token1] = ACTIONS(443), + [aux_sym__val_number_token2] = ACTIONS(443), + [aux_sym__val_number_token3] = ACTIONS(443), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(3346), + [anon_sym_DQUOTE] = ACTIONS(445), + [sym__str_single_quotes] = ACTIONS(447), + [sym__str_back_ticks] = ACTIONS(447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3348), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(449), }, [1036] = { - [sym_expr_parenthesized] = STATE(4517), - [sym_val_range] = STATE(5065), - [sym__val_range] = STATE(7500), - [sym__val_range_with_end] = STATE(7223), - [sym__value] = STATE(5065), - [sym_val_nothing] = STATE(4953), - [sym_val_bool] = STATE(4787), - [sym_val_variable] = STATE(4522), - [sym_val_number] = STATE(4953), - [sym__val_number_decimal] = STATE(3999), - [sym__val_number] = STATE(5152), - [sym_val_duration] = STATE(4953), - [sym_val_filesize] = STATE(4953), - [sym_val_binary] = STATE(4953), - [sym_val_string] = STATE(4953), - [sym__str_double_quotes] = STATE(4680), - [sym_val_interpolated] = STATE(4953), - [sym__inter_single_quotes] = STATE(4860), - [sym__inter_double_quotes] = STATE(4909), - [sym_val_list] = STATE(4953), - [sym_val_record] = STATE(4953), - [sym_val_table] = STATE(4953), - [sym_val_closure] = STATE(4953), - [sym__unquoted_in_list] = STATE(4697), - [sym__unquoted_in_list_with_expr] = STATE(5065), - [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym_expr_unary] = STATE(4553), + [sym__expr_unary_minus] = STATE(4482), + [sym_expr_parenthesized] = STATE(4149), + [sym_val_range] = STATE(4553), + [sym__val_range] = STATE(7632), + [sym__val_range_with_end] = STATE(7557), + [sym__value] = STATE(4553), + [sym_val_nothing] = STATE(4047), + [sym_val_bool] = STATE(4169), + [sym_val_variable] = STATE(4155), + [sym_val_number] = STATE(4047), + [sym__val_number_decimal] = STATE(3921), + [sym__val_number] = STATE(3529), + [sym_val_duration] = STATE(4047), + [sym_val_filesize] = STATE(4047), + [sym_val_binary] = STATE(4047), + [sym_val_string] = STATE(4047), + [sym__raw_str] = STATE(2932), + [sym__str_double_quotes] = STATE(2932), + [sym_val_interpolated] = STATE(4047), + [sym__inter_single_quotes] = STATE(4101), + [sym__inter_double_quotes] = STATE(4102), + [sym_val_list] = STATE(4047), + [sym_val_record] = STATE(4047), + [sym_val_table] = STATE(4047), + [sym_val_closure] = STATE(4047), + [sym_unquoted] = STATE(4258), + [sym__unquoted_with_expr] = STATE(4560), + [sym__unquoted_anonymous_prefix] = STATE(6805), [sym_comment] = STATE(1036), - [aux_sym_shebang_repeat1] = STATE(1039), - [anon_sym_true] = ACTIONS(3487), - [anon_sym_false] = ACTIONS(3487), - [anon_sym_null] = ACTIONS(3489), - [aux_sym_cmd_identifier_token38] = ACTIONS(3491), - [aux_sym_cmd_identifier_token39] = ACTIONS(3491), - [aux_sym_cmd_identifier_token40] = ACTIONS(3491), - [sym__newline] = ACTIONS(3493), - [anon_sym_LBRACK] = ACTIONS(3495), - [anon_sym_LPAREN] = ACTIONS(3497), - [anon_sym_DOLLAR] = ACTIONS(3499), - [anon_sym_LBRACE] = ACTIONS(3501), - [anon_sym_DOT_DOT] = ACTIONS(3503), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3505), - [anon_sym_DOT_DOT_LT] = ACTIONS(3505), - [aux_sym__val_number_decimal_token1] = ACTIONS(3507), - [aux_sym__val_number_decimal_token2] = ACTIONS(3509), - [aux_sym__val_number_decimal_token3] = ACTIONS(3511), - [aux_sym__val_number_decimal_token4] = ACTIONS(3513), - [aux_sym__val_number_token1] = ACTIONS(3515), - [aux_sym__val_number_token2] = ACTIONS(3515), - [aux_sym__val_number_token3] = ACTIONS(3515), - [anon_sym_0b] = ACTIONS(3517), - [anon_sym_0o] = ACTIONS(3519), - [anon_sym_0x] = ACTIONS(3519), - [sym_val_date] = ACTIONS(3521), - [anon_sym_DQUOTE] = ACTIONS(3523), - [sym__str_single_quotes] = ACTIONS(3525), - [sym__str_back_ticks] = ACTIONS(3525), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3527), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3529), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [anon_sym_err_GT_GT] = ACTIONS(2589), - [anon_sym_out_GT_GT] = ACTIONS(2589), - [anon_sym_e_GT_GT] = ACTIONS(2589), - [anon_sym_o_GT_GT] = ACTIONS(2589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3531), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(3456), + [anon_sym_false] = ACTIONS(3456), + [anon_sym_null] = ACTIONS(3458), + [aux_sym_cmd_identifier_token38] = ACTIONS(3460), + [aux_sym_cmd_identifier_token39] = ACTIONS(3460), + [aux_sym_cmd_identifier_token40] = ACTIONS(3460), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3464), + [anon_sym_DOLLAR] = ACTIONS(3466), + [anon_sym_DASH] = ACTIONS(3468), + [anon_sym_LBRACE] = ACTIONS(3470), + [anon_sym_DOT_DOT] = ACTIONS(3472), + [aux_sym_expr_unary_token1] = ACTIONS(3474), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3476), + [anon_sym_DOT_DOT_LT] = ACTIONS(3476), + [aux_sym__val_number_decimal_token1] = ACTIONS(3478), + [aux_sym__val_number_decimal_token2] = ACTIONS(3480), + [aux_sym__val_number_decimal_token3] = ACTIONS(3482), + [aux_sym__val_number_decimal_token4] = ACTIONS(3484), + [aux_sym__val_number_token1] = ACTIONS(3486), + [aux_sym__val_number_token2] = ACTIONS(3486), + [aux_sym__val_number_token3] = ACTIONS(3486), + [anon_sym_0b] = ACTIONS(3488), + [anon_sym_0o] = ACTIONS(3490), + [anon_sym_0x] = ACTIONS(3490), + [sym_val_date] = ACTIONS(3492), + [anon_sym_DQUOTE] = ACTIONS(3494), + [sym__str_single_quotes] = ACTIONS(3496), + [sym__str_back_ticks] = ACTIONS(3496), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3498), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3500), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3502), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3504), }, [1037] = { - [sym_match_arm] = STATE(6727), - [sym_default_arm] = STATE(6727), - [sym_match_pattern] = STATE(7650), - [sym__match_pattern] = STATE(5895), - [sym__match_pattern_expression] = STATE(6770), - [sym__match_pattern_value] = STATE(6771), - [sym__match_pattern_list] = STATE(6772), - [sym__match_pattern_record] = STATE(6774), - [sym_expr_parenthesized] = STATE(5667), - [sym_val_range] = STATE(6771), - [sym__val_range] = STATE(7706), - [sym_val_nothing] = STATE(6776), - [sym_val_bool] = STATE(6086), - [sym_val_variable] = STATE(5668), - [sym_val_number] = STATE(6776), - [sym__val_number_decimal] = STATE(5362), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(6776), - [sym_val_filesize] = STATE(6776), - [sym_val_binary] = STATE(6776), - [sym_val_string] = STATE(6776), - [sym__str_double_quotes] = STATE(1725), - [sym_val_table] = STATE(6776), - [sym_unquoted] = STATE(6780), - [sym__unquoted_anonymous_prefix] = STATE(7496), + [sym_expr_unary] = STATE(4561), + [sym__expr_unary_minus] = STATE(4482), + [sym_expr_parenthesized] = STATE(4151), + [sym_val_range] = STATE(4561), + [sym__val_range] = STATE(7632), + [sym__val_range_with_end] = STATE(7557), + [sym__value] = STATE(4561), + [sym_val_nothing] = STATE(4047), + [sym_val_bool] = STATE(4169), + [sym_val_variable] = STATE(4155), + [sym_val_number] = STATE(4047), + [sym__val_number_decimal] = STATE(3921), + [sym__val_number] = STATE(3529), + [sym_val_duration] = STATE(4047), + [sym_val_filesize] = STATE(4047), + [sym_val_binary] = STATE(4047), + [sym_val_string] = STATE(4047), + [sym__raw_str] = STATE(2932), + [sym__str_double_quotes] = STATE(2932), + [sym_val_interpolated] = STATE(4047), + [sym__inter_single_quotes] = STATE(4101), + [sym__inter_double_quotes] = STATE(4102), + [sym_val_list] = STATE(4047), + [sym_val_record] = STATE(4047), + [sym_val_table] = STATE(4047), + [sym_val_closure] = STATE(4047), + [sym_unquoted] = STATE(4267), + [sym__unquoted_with_expr] = STATE(4564), + [sym__unquoted_anonymous_prefix] = STATE(6805), [sym_comment] = STATE(1037), - [aux_sym_shebang_repeat1] = STATE(1042), - [aux_sym_ctrl_match_repeat1] = STATE(1058), - [anon_sym_true] = ACTIONS(3533), - [anon_sym_false] = ACTIONS(3533), - [anon_sym_null] = ACTIONS(3535), - [aux_sym_cmd_identifier_token38] = ACTIONS(3537), - [aux_sym_cmd_identifier_token39] = ACTIONS(3537), - [aux_sym_cmd_identifier_token40] = ACTIONS(3537), - [sym__newline] = ACTIONS(3539), - [anon_sym_LBRACK] = ACTIONS(3541), - [anon_sym_LPAREN] = ACTIONS(3543), - [anon_sym_DOLLAR] = ACTIONS(3545), - [anon_sym_LBRACE] = ACTIONS(3547), - [anon_sym_RBRACE] = ACTIONS(3549), - [anon_sym__] = ACTIONS(3551), - [anon_sym_DOT_DOT] = ACTIONS(3553), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3555), - [anon_sym_DOT_DOT_LT] = ACTIONS(3555), - [aux_sym__val_number_decimal_token1] = ACTIONS(3557), - [aux_sym__val_number_decimal_token2] = ACTIONS(3559), - [aux_sym__val_number_decimal_token3] = ACTIONS(3561), - [aux_sym__val_number_decimal_token4] = ACTIONS(3563), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3565), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(3456), + [anon_sym_false] = ACTIONS(3456), + [anon_sym_null] = ACTIONS(3458), + [aux_sym_cmd_identifier_token38] = ACTIONS(3460), + [aux_sym_cmd_identifier_token39] = ACTIONS(3460), + [aux_sym_cmd_identifier_token40] = ACTIONS(3460), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3464), + [anon_sym_DOLLAR] = ACTIONS(3466), + [anon_sym_DASH] = ACTIONS(3468), + [anon_sym_LBRACE] = ACTIONS(3470), + [anon_sym_DOT_DOT] = ACTIONS(3472), + [aux_sym_expr_unary_token1] = ACTIONS(3474), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3476), + [anon_sym_DOT_DOT_LT] = ACTIONS(3476), + [aux_sym__val_number_decimal_token1] = ACTIONS(3478), + [aux_sym__val_number_decimal_token2] = ACTIONS(3480), + [aux_sym__val_number_decimal_token3] = ACTIONS(3482), + [aux_sym__val_number_decimal_token4] = ACTIONS(3484), + [aux_sym__val_number_token1] = ACTIONS(3486), + [aux_sym__val_number_token2] = ACTIONS(3486), + [aux_sym__val_number_token3] = ACTIONS(3486), + [anon_sym_0b] = ACTIONS(3488), + [anon_sym_0o] = ACTIONS(3490), + [anon_sym_0x] = ACTIONS(3490), + [sym_val_date] = ACTIONS(3492), + [anon_sym_DQUOTE] = ACTIONS(3494), + [sym__str_single_quotes] = ACTIONS(3496), + [sym__str_back_ticks] = ACTIONS(3496), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3498), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3500), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3502), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3504), }, [1038] = { - [sym_match_arm] = STATE(6824), - [sym_default_arm] = STATE(6824), - [sym_match_pattern] = STATE(7650), - [sym__match_pattern] = STATE(5895), - [sym__match_pattern_expression] = STATE(6770), - [sym__match_pattern_value] = STATE(6771), - [sym__match_pattern_list] = STATE(6772), - [sym__match_pattern_record] = STATE(6774), - [sym_expr_parenthesized] = STATE(5667), - [sym_val_range] = STATE(6771), - [sym__val_range] = STATE(7706), - [sym_val_nothing] = STATE(6776), - [sym_val_bool] = STATE(6086), - [sym_val_variable] = STATE(5668), - [sym_val_number] = STATE(6776), - [sym__val_number_decimal] = STATE(5362), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(6776), - [sym_val_filesize] = STATE(6776), - [sym_val_binary] = STATE(6776), - [sym_val_string] = STATE(6776), - [sym__str_double_quotes] = STATE(1725), - [sym_val_table] = STATE(6776), - [sym_unquoted] = STATE(6780), - [sym__unquoted_anonymous_prefix] = STATE(7496), + [sym_expr_unary] = STATE(4545), + [sym__expr_unary_minus] = STATE(4482), + [sym_expr_parenthesized] = STATE(4148), + [sym_val_range] = STATE(4545), + [sym__val_range] = STATE(7632), + [sym__val_range_with_end] = STATE(7557), + [sym__value] = STATE(4545), + [sym_val_nothing] = STATE(4047), + [sym_val_bool] = STATE(4169), + [sym_val_variable] = STATE(4155), + [sym_val_number] = STATE(4047), + [sym__val_number_decimal] = STATE(3921), + [sym__val_number] = STATE(3529), + [sym_val_duration] = STATE(4047), + [sym_val_filesize] = STATE(4047), + [sym_val_binary] = STATE(4047), + [sym_val_string] = STATE(4047), + [sym__raw_str] = STATE(2932), + [sym__str_double_quotes] = STATE(2932), + [sym_val_interpolated] = STATE(4047), + [sym__inter_single_quotes] = STATE(4101), + [sym__inter_double_quotes] = STATE(4102), + [sym_val_list] = STATE(4047), + [sym_val_record] = STATE(4047), + [sym_val_table] = STATE(4047), + [sym_val_closure] = STATE(4047), + [sym_unquoted] = STATE(4246), + [sym__unquoted_with_expr] = STATE(4551), + [sym__unquoted_anonymous_prefix] = STATE(6805), [sym_comment] = STATE(1038), - [aux_sym_shebang_repeat1] = STATE(1044), - [aux_sym_ctrl_match_repeat1] = STATE(1059), - [anon_sym_true] = ACTIONS(3533), - [anon_sym_false] = ACTIONS(3533), - [anon_sym_null] = ACTIONS(3535), - [aux_sym_cmd_identifier_token38] = ACTIONS(3537), - [aux_sym_cmd_identifier_token39] = ACTIONS(3537), - [aux_sym_cmd_identifier_token40] = ACTIONS(3537), - [sym__newline] = ACTIONS(3539), - [anon_sym_LBRACK] = ACTIONS(3541), - [anon_sym_LPAREN] = ACTIONS(3543), - [anon_sym_DOLLAR] = ACTIONS(3545), - [anon_sym_LBRACE] = ACTIONS(3547), - [anon_sym_RBRACE] = ACTIONS(3567), - [anon_sym__] = ACTIONS(3551), - [anon_sym_DOT_DOT] = ACTIONS(3553), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3555), - [anon_sym_DOT_DOT_LT] = ACTIONS(3555), - [aux_sym__val_number_decimal_token1] = ACTIONS(3557), - [aux_sym__val_number_decimal_token2] = ACTIONS(3559), - [aux_sym__val_number_decimal_token3] = ACTIONS(3561), - [aux_sym__val_number_decimal_token4] = ACTIONS(3563), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3565), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(3456), + [anon_sym_false] = ACTIONS(3456), + [anon_sym_null] = ACTIONS(3458), + [aux_sym_cmd_identifier_token38] = ACTIONS(3460), + [aux_sym_cmd_identifier_token39] = ACTIONS(3460), + [aux_sym_cmd_identifier_token40] = ACTIONS(3460), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3464), + [anon_sym_DOLLAR] = ACTIONS(3466), + [anon_sym_DASH] = ACTIONS(3468), + [anon_sym_LBRACE] = ACTIONS(3470), + [anon_sym_DOT_DOT] = ACTIONS(3472), + [aux_sym_expr_unary_token1] = ACTIONS(3474), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3476), + [anon_sym_DOT_DOT_LT] = ACTIONS(3476), + [aux_sym__val_number_decimal_token1] = ACTIONS(3478), + [aux_sym__val_number_decimal_token2] = ACTIONS(3480), + [aux_sym__val_number_decimal_token3] = ACTIONS(3482), + [aux_sym__val_number_decimal_token4] = ACTIONS(3484), + [aux_sym__val_number_token1] = ACTIONS(3486), + [aux_sym__val_number_token2] = ACTIONS(3486), + [aux_sym__val_number_token3] = ACTIONS(3486), + [anon_sym_0b] = ACTIONS(3488), + [anon_sym_0o] = ACTIONS(3490), + [anon_sym_0x] = ACTIONS(3490), + [sym_val_date] = ACTIONS(3492), + [anon_sym_DQUOTE] = ACTIONS(3494), + [sym__str_single_quotes] = ACTIONS(3496), + [sym__str_back_ticks] = ACTIONS(3496), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3498), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3500), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3502), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3504), }, [1039] = { - [sym_expr_parenthesized] = STATE(4573), - [sym_val_range] = STATE(5129), - [sym__val_range] = STATE(7500), - [sym__val_range_with_end] = STATE(7223), - [sym__value] = STATE(5129), - [sym_val_nothing] = STATE(4953), - [sym_val_bool] = STATE(4787), - [sym_val_variable] = STATE(4522), - [sym_val_number] = STATE(4953), - [sym__val_number_decimal] = STATE(3999), - [sym__val_number] = STATE(5152), - [sym_val_duration] = STATE(4953), - [sym_val_filesize] = STATE(4953), - [sym_val_binary] = STATE(4953), - [sym_val_string] = STATE(4953), - [sym__str_double_quotes] = STATE(4680), - [sym_val_interpolated] = STATE(4953), - [sym__inter_single_quotes] = STATE(4860), - [sym__inter_double_quotes] = STATE(4909), - [sym_val_list] = STATE(4953), - [sym_val_record] = STATE(4953), - [sym_val_table] = STATE(4953), - [sym_val_closure] = STATE(4953), - [sym__unquoted_in_list] = STATE(4741), - [sym__unquoted_in_list_with_expr] = STATE(5129), - [sym__unquoted_anonymous_prefix] = STATE(6978), + [sym_expr_unary] = STATE(4665), + [sym__expr_unary_minus] = STATE(4619), + [sym_expr_parenthesized] = STATE(4247), + [sym_val_range] = STATE(4665), + [sym__val_range] = STATE(7929), + [sym__val_range_with_end] = STATE(7552), + [sym__value] = STATE(4665), + [sym_val_nothing] = STATE(4196), + [sym_val_bool] = STATE(4348), + [sym_val_variable] = STATE(4261), + [sym_val_number] = STATE(4196), + [sym__val_number_decimal] = STATE(3961), + [sym__val_number] = STATE(4279), + [sym_val_duration] = STATE(4196), + [sym_val_filesize] = STATE(4196), + [sym_val_binary] = STATE(4196), + [sym_val_string] = STATE(4196), + [sym__raw_str] = STATE(3606), + [sym__str_double_quotes] = STATE(3606), + [sym_val_interpolated] = STATE(4196), + [sym__inter_single_quotes] = STATE(4216), + [sym__inter_double_quotes] = STATE(4218), + [sym_val_list] = STATE(4196), + [sym_val_record] = STATE(4196), + [sym_val_table] = STATE(4196), + [sym_val_closure] = STATE(4196), + [sym_unquoted] = STATE(4304), + [sym__unquoted_with_expr] = STATE(4631), + [sym__unquoted_anonymous_prefix] = STATE(6781), [sym_comment] = STATE(1039), - [aux_sym_shebang_repeat1] = STATE(2901), - [anon_sym_true] = ACTIONS(3487), - [anon_sym_false] = ACTIONS(3487), - [anon_sym_null] = ACTIONS(3489), - [aux_sym_cmd_identifier_token38] = ACTIONS(3491), - [aux_sym_cmd_identifier_token39] = ACTIONS(3491), - [aux_sym_cmd_identifier_token40] = ACTIONS(3491), - [sym__newline] = ACTIONS(3493), - [anon_sym_LBRACK] = ACTIONS(3495), - [anon_sym_LPAREN] = ACTIONS(3497), - [anon_sym_DOLLAR] = ACTIONS(3499), - [anon_sym_LBRACE] = ACTIONS(3501), - [anon_sym_DOT_DOT] = ACTIONS(3503), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3505), - [anon_sym_DOT_DOT_LT] = ACTIONS(3505), - [aux_sym__val_number_decimal_token1] = ACTIONS(3507), - [aux_sym__val_number_decimal_token2] = ACTIONS(3509), - [aux_sym__val_number_decimal_token3] = ACTIONS(3511), - [aux_sym__val_number_decimal_token4] = ACTIONS(3513), - [aux_sym__val_number_token1] = ACTIONS(3515), - [aux_sym__val_number_token2] = ACTIONS(3515), - [aux_sym__val_number_token3] = ACTIONS(3515), - [anon_sym_0b] = ACTIONS(3517), - [anon_sym_0o] = ACTIONS(3519), - [anon_sym_0x] = ACTIONS(3519), - [sym_val_date] = ACTIONS(3521), - [anon_sym_DQUOTE] = ACTIONS(3523), - [sym__str_single_quotes] = ACTIONS(3525), - [sym__str_back_ticks] = ACTIONS(3525), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3527), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3529), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [anon_sym_err_GT_GT] = ACTIONS(2589), - [anon_sym_out_GT_GT] = ACTIONS(2589), - [anon_sym_e_GT_GT] = ACTIONS(2589), - [anon_sym_o_GT_GT] = ACTIONS(2589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3531), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(3506), + [anon_sym_false] = ACTIONS(3506), + [anon_sym_null] = ACTIONS(3508), + [aux_sym_cmd_identifier_token38] = ACTIONS(3510), + [aux_sym_cmd_identifier_token39] = ACTIONS(3510), + [aux_sym_cmd_identifier_token40] = ACTIONS(3510), + [anon_sym_LBRACK] = ACTIONS(3512), + [anon_sym_LPAREN] = ACTIONS(3514), + [anon_sym_DOLLAR] = ACTIONS(3516), + [anon_sym_DASH] = ACTIONS(3518), + [anon_sym_LBRACE] = ACTIONS(3520), + [anon_sym_DOT_DOT] = ACTIONS(3522), + [aux_sym_expr_unary_token1] = ACTIONS(3524), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3526), + [anon_sym_DOT_DOT_LT] = ACTIONS(3526), + [aux_sym__val_number_decimal_token1] = ACTIONS(3528), + [aux_sym__val_number_decimal_token2] = ACTIONS(3530), + [aux_sym__val_number_decimal_token3] = ACTIONS(3532), + [aux_sym__val_number_decimal_token4] = ACTIONS(3534), + [aux_sym__val_number_token1] = ACTIONS(3536), + [aux_sym__val_number_token2] = ACTIONS(3536), + [aux_sym__val_number_token3] = ACTIONS(3536), + [anon_sym_0b] = ACTIONS(3538), + [anon_sym_0o] = ACTIONS(3540), + [anon_sym_0x] = ACTIONS(3540), + [sym_val_date] = ACTIONS(3542), + [anon_sym_DQUOTE] = ACTIONS(3544), + [sym__str_single_quotes] = ACTIONS(3546), + [sym__str_back_ticks] = ACTIONS(3546), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3548), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3550), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3552), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3554), }, [1040] = { - [sym_match_arm] = STATE(6807), - [sym_default_arm] = STATE(6807), - [sym_match_pattern] = STATE(7650), - [sym__match_pattern] = STATE(5895), - [sym__match_pattern_expression] = STATE(6770), - [sym__match_pattern_value] = STATE(6771), - [sym__match_pattern_list] = STATE(6772), - [sym__match_pattern_record] = STATE(6774), - [sym_expr_parenthesized] = STATE(5667), - [sym_val_range] = STATE(6771), - [sym__val_range] = STATE(7706), - [sym_val_nothing] = STATE(6776), - [sym_val_bool] = STATE(6086), - [sym_val_variable] = STATE(5668), - [sym_val_number] = STATE(6776), - [sym__val_number_decimal] = STATE(5362), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(6776), - [sym_val_filesize] = STATE(6776), - [sym_val_binary] = STATE(6776), - [sym_val_string] = STATE(6776), - [sym__str_double_quotes] = STATE(1725), - [sym_val_table] = STATE(6776), - [sym_unquoted] = STATE(6780), - [sym__unquoted_anonymous_prefix] = STATE(7496), + [sym_expr_unary] = STATE(4623), + [sym__expr_unary_minus] = STATE(4619), + [sym_expr_parenthesized] = STATE(4209), + [sym_val_range] = STATE(4623), + [sym__val_range] = STATE(7929), + [sym__val_range_with_end] = STATE(7552), + [sym__value] = STATE(4623), + [sym_val_nothing] = STATE(4196), + [sym_val_bool] = STATE(4348), + [sym_val_variable] = STATE(4261), + [sym_val_number] = STATE(4196), + [sym__val_number_decimal] = STATE(3961), + [sym__val_number] = STATE(4279), + [sym_val_duration] = STATE(4196), + [sym_val_filesize] = STATE(4196), + [sym_val_binary] = STATE(4196), + [sym_val_string] = STATE(4196), + [sym__raw_str] = STATE(3606), + [sym__str_double_quotes] = STATE(3606), + [sym_val_interpolated] = STATE(4196), + [sym__inter_single_quotes] = STATE(4216), + [sym__inter_double_quotes] = STATE(4218), + [sym_val_list] = STATE(4196), + [sym_val_record] = STATE(4196), + [sym_val_table] = STATE(4196), + [sym_val_closure] = STATE(4196), + [sym_unquoted] = STATE(4284), + [sym__unquoted_with_expr] = STATE(4675), + [sym__unquoted_anonymous_prefix] = STATE(6781), [sym_comment] = STATE(1040), - [aux_sym_shebang_repeat1] = STATE(1045), - [aux_sym_ctrl_match_repeat1] = STATE(1072), - [anon_sym_true] = ACTIONS(3533), - [anon_sym_false] = ACTIONS(3533), - [anon_sym_null] = ACTIONS(3535), - [aux_sym_cmd_identifier_token38] = ACTIONS(3537), - [aux_sym_cmd_identifier_token39] = ACTIONS(3537), - [aux_sym_cmd_identifier_token40] = ACTIONS(3537), - [sym__newline] = ACTIONS(3539), - [anon_sym_LBRACK] = ACTIONS(3541), - [anon_sym_LPAREN] = ACTIONS(3543), - [anon_sym_DOLLAR] = ACTIONS(3545), - [anon_sym_LBRACE] = ACTIONS(3547), - [anon_sym_RBRACE] = ACTIONS(3569), - [anon_sym__] = ACTIONS(3551), - [anon_sym_DOT_DOT] = ACTIONS(3553), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3555), - [anon_sym_DOT_DOT_LT] = ACTIONS(3555), - [aux_sym__val_number_decimal_token1] = ACTIONS(3557), - [aux_sym__val_number_decimal_token2] = ACTIONS(3559), - [aux_sym__val_number_decimal_token3] = ACTIONS(3561), - [aux_sym__val_number_decimal_token4] = ACTIONS(3563), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3565), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(3506), + [anon_sym_false] = ACTIONS(3506), + [anon_sym_null] = ACTIONS(3508), + [aux_sym_cmd_identifier_token38] = ACTIONS(3510), + [aux_sym_cmd_identifier_token39] = ACTIONS(3510), + [aux_sym_cmd_identifier_token40] = ACTIONS(3510), + [anon_sym_LBRACK] = ACTIONS(3512), + [anon_sym_LPAREN] = ACTIONS(3514), + [anon_sym_DOLLAR] = ACTIONS(3516), + [anon_sym_DASH] = ACTIONS(3518), + [anon_sym_LBRACE] = ACTIONS(3520), + [anon_sym_DOT_DOT] = ACTIONS(3522), + [aux_sym_expr_unary_token1] = ACTIONS(3524), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3526), + [anon_sym_DOT_DOT_LT] = ACTIONS(3526), + [aux_sym__val_number_decimal_token1] = ACTIONS(3528), + [aux_sym__val_number_decimal_token2] = ACTIONS(3530), + [aux_sym__val_number_decimal_token3] = ACTIONS(3532), + [aux_sym__val_number_decimal_token4] = ACTIONS(3534), + [aux_sym__val_number_token1] = ACTIONS(3536), + [aux_sym__val_number_token2] = ACTIONS(3536), + [aux_sym__val_number_token3] = ACTIONS(3536), + [anon_sym_0b] = ACTIONS(3538), + [anon_sym_0o] = ACTIONS(3540), + [anon_sym_0x] = ACTIONS(3540), + [sym_val_date] = ACTIONS(3542), + [anon_sym_DQUOTE] = ACTIONS(3544), + [sym__str_single_quotes] = ACTIONS(3546), + [sym__str_back_ticks] = ACTIONS(3546), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3548), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3550), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3552), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3554), }, [1041] = { - [sym_match_arm] = STATE(6811), - [sym_default_arm] = STATE(6811), - [sym_match_pattern] = STATE(7650), - [sym__match_pattern] = STATE(5895), - [sym__match_pattern_expression] = STATE(6770), - [sym__match_pattern_value] = STATE(6771), - [sym__match_pattern_list] = STATE(6772), - [sym__match_pattern_record] = STATE(6774), - [sym_expr_parenthesized] = STATE(5667), - [sym_val_range] = STATE(6771), - [sym__val_range] = STATE(7706), - [sym_val_nothing] = STATE(6776), - [sym_val_bool] = STATE(6086), - [sym_val_variable] = STATE(5668), - [sym_val_number] = STATE(6776), - [sym__val_number_decimal] = STATE(5362), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(6776), - [sym_val_filesize] = STATE(6776), - [sym_val_binary] = STATE(6776), - [sym_val_string] = STATE(6776), - [sym__str_double_quotes] = STATE(1725), - [sym_val_table] = STATE(6776), - [sym_unquoted] = STATE(6780), - [sym__unquoted_anonymous_prefix] = STATE(7496), + [sym_expr_unary] = STATE(4601), + [sym__expr_unary_minus] = STATE(4619), + [sym_expr_parenthesized] = STATE(4220), + [sym_val_range] = STATE(4601), + [sym__val_range] = STATE(7929), + [sym__val_range_with_end] = STATE(7552), + [sym__value] = STATE(4601), + [sym_val_nothing] = STATE(4196), + [sym_val_bool] = STATE(4348), + [sym_val_variable] = STATE(4261), + [sym_val_number] = STATE(4196), + [sym__val_number_decimal] = STATE(3961), + [sym__val_number] = STATE(4279), + [sym_val_duration] = STATE(4196), + [sym_val_filesize] = STATE(4196), + [sym_val_binary] = STATE(4196), + [sym_val_string] = STATE(4196), + [sym__raw_str] = STATE(3606), + [sym__str_double_quotes] = STATE(3606), + [sym_val_interpolated] = STATE(4196), + [sym__inter_single_quotes] = STATE(4216), + [sym__inter_double_quotes] = STATE(4218), + [sym_val_list] = STATE(4196), + [sym_val_record] = STATE(4196), + [sym_val_table] = STATE(4196), + [sym_val_closure] = STATE(4196), + [sym_unquoted] = STATE(4292), + [sym__unquoted_with_expr] = STATE(4607), + [sym__unquoted_anonymous_prefix] = STATE(6781), [sym_comment] = STATE(1041), - [aux_sym_shebang_repeat1] = STATE(1043), - [aux_sym_ctrl_match_repeat1] = STATE(1073), - [anon_sym_true] = ACTIONS(3533), - [anon_sym_false] = ACTIONS(3533), - [anon_sym_null] = ACTIONS(3535), - [aux_sym_cmd_identifier_token38] = ACTIONS(3537), - [aux_sym_cmd_identifier_token39] = ACTIONS(3537), - [aux_sym_cmd_identifier_token40] = ACTIONS(3537), - [sym__newline] = ACTIONS(3539), - [anon_sym_LBRACK] = ACTIONS(3541), - [anon_sym_LPAREN] = ACTIONS(3543), - [anon_sym_DOLLAR] = ACTIONS(3545), - [anon_sym_LBRACE] = ACTIONS(3547), - [anon_sym_RBRACE] = ACTIONS(3571), - [anon_sym__] = ACTIONS(3551), - [anon_sym_DOT_DOT] = ACTIONS(3553), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3555), - [anon_sym_DOT_DOT_LT] = ACTIONS(3555), - [aux_sym__val_number_decimal_token1] = ACTIONS(3557), - [aux_sym__val_number_decimal_token2] = ACTIONS(3559), - [aux_sym__val_number_decimal_token3] = ACTIONS(3561), - [aux_sym__val_number_decimal_token4] = ACTIONS(3563), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3565), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(3506), + [anon_sym_false] = ACTIONS(3506), + [anon_sym_null] = ACTIONS(3508), + [aux_sym_cmd_identifier_token38] = ACTIONS(3510), + [aux_sym_cmd_identifier_token39] = ACTIONS(3510), + [aux_sym_cmd_identifier_token40] = ACTIONS(3510), + [anon_sym_LBRACK] = ACTIONS(3512), + [anon_sym_LPAREN] = ACTIONS(3514), + [anon_sym_DOLLAR] = ACTIONS(3516), + [anon_sym_DASH] = ACTIONS(3518), + [anon_sym_LBRACE] = ACTIONS(3520), + [anon_sym_DOT_DOT] = ACTIONS(3522), + [aux_sym_expr_unary_token1] = ACTIONS(3524), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3526), + [anon_sym_DOT_DOT_LT] = ACTIONS(3526), + [aux_sym__val_number_decimal_token1] = ACTIONS(3528), + [aux_sym__val_number_decimal_token2] = ACTIONS(3530), + [aux_sym__val_number_decimal_token3] = ACTIONS(3532), + [aux_sym__val_number_decimal_token4] = ACTIONS(3534), + [aux_sym__val_number_token1] = ACTIONS(3536), + [aux_sym__val_number_token2] = ACTIONS(3536), + [aux_sym__val_number_token3] = ACTIONS(3536), + [anon_sym_0b] = ACTIONS(3538), + [anon_sym_0o] = ACTIONS(3540), + [anon_sym_0x] = ACTIONS(3540), + [sym_val_date] = ACTIONS(3542), + [anon_sym_DQUOTE] = ACTIONS(3544), + [sym__str_single_quotes] = ACTIONS(3546), + [sym__str_back_ticks] = ACTIONS(3546), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3548), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3550), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3552), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3554), }, [1042] = { - [sym_match_arm] = STATE(7167), - [sym_default_arm] = STATE(7167), - [sym_match_pattern] = STATE(7650), - [sym__match_pattern] = STATE(5895), - [sym__match_pattern_expression] = STATE(6770), - [sym__match_pattern_value] = STATE(6771), - [sym__match_pattern_list] = STATE(6772), - [sym__match_pattern_record] = STATE(6774), - [sym_expr_parenthesized] = STATE(5667), - [sym_val_range] = STATE(6771), - [sym__val_range] = STATE(7706), - [sym_val_nothing] = STATE(6776), - [sym_val_bool] = STATE(6086), - [sym_val_variable] = STATE(5668), - [sym_val_number] = STATE(6776), - [sym__val_number_decimal] = STATE(5362), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(6776), - [sym_val_filesize] = STATE(6776), - [sym_val_binary] = STATE(6776), - [sym_val_string] = STATE(6776), - [sym__str_double_quotes] = STATE(1725), - [sym_val_table] = STATE(6776), - [sym_unquoted] = STATE(6780), - [sym__unquoted_anonymous_prefix] = STATE(7496), + [sym_expr_parenthesized] = STATE(4638), + [sym_val_range] = STATE(5197), + [sym__val_range] = STATE(7970), + [sym__val_range_with_end] = STATE(7443), + [sym__value] = STATE(5197), + [sym_val_nothing] = STATE(4884), + [sym_val_bool] = STATE(4764), + [sym_val_variable] = STATE(4686), + [sym_val_number] = STATE(4884), + [sym__val_number_decimal] = STATE(4098), + [sym__val_number] = STATE(5078), + [sym_val_duration] = STATE(4884), + [sym_val_filesize] = STATE(4884), + [sym_val_binary] = STATE(4884), + [sym_val_string] = STATE(4884), + [sym__raw_str] = STATE(4768), + [sym__str_double_quotes] = STATE(4768), + [sym_val_interpolated] = STATE(4884), + [sym__inter_single_quotes] = STATE(4936), + [sym__inter_double_quotes] = STATE(4937), + [sym_val_list] = STATE(4884), + [sym_val_record] = STATE(4884), + [sym_val_table] = STATE(4884), + [sym_val_closure] = STATE(4884), + [sym__unquoted_in_list] = STATE(4859), + [sym__unquoted_in_list_with_expr] = STATE(5197), + [sym__unquoted_anonymous_prefix] = STATE(7037), [sym_comment] = STATE(1042), - [aux_sym_shebang_repeat1] = STATE(2973), - [aux_sym_ctrl_match_repeat1] = STATE(1062), - [anon_sym_true] = ACTIONS(3533), - [anon_sym_false] = ACTIONS(3533), - [anon_sym_null] = ACTIONS(3535), - [aux_sym_cmd_identifier_token38] = ACTIONS(3537), - [aux_sym_cmd_identifier_token39] = ACTIONS(3537), - [aux_sym_cmd_identifier_token40] = ACTIONS(3537), - [sym__newline] = ACTIONS(3539), - [anon_sym_LBRACK] = ACTIONS(3541), - [anon_sym_LPAREN] = ACTIONS(3543), - [anon_sym_DOLLAR] = ACTIONS(3545), - [anon_sym_LBRACE] = ACTIONS(3547), - [anon_sym__] = ACTIONS(3551), - [anon_sym_DOT_DOT] = ACTIONS(3553), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3555), - [anon_sym_DOT_DOT_LT] = ACTIONS(3555), - [aux_sym__val_number_decimal_token1] = ACTIONS(3557), - [aux_sym__val_number_decimal_token2] = ACTIONS(3559), - [aux_sym__val_number_decimal_token3] = ACTIONS(3561), - [aux_sym__val_number_decimal_token4] = ACTIONS(3563), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3565), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(1044), + [anon_sym_true] = ACTIONS(3556), + [anon_sym_false] = ACTIONS(3556), + [anon_sym_null] = ACTIONS(3558), + [aux_sym_cmd_identifier_token38] = ACTIONS(3560), + [aux_sym_cmd_identifier_token39] = ACTIONS(3560), + [aux_sym_cmd_identifier_token40] = ACTIONS(3560), + [sym__newline] = ACTIONS(3562), + [anon_sym_LBRACK] = ACTIONS(3564), + [anon_sym_LPAREN] = ACTIONS(3566), + [anon_sym_DOLLAR] = ACTIONS(3568), + [anon_sym_LBRACE] = ACTIONS(3570), + [anon_sym_DOT_DOT] = ACTIONS(3572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3574), + [anon_sym_DOT_DOT_LT] = ACTIONS(3574), + [aux_sym__val_number_decimal_token1] = ACTIONS(3576), + [aux_sym__val_number_decimal_token2] = ACTIONS(3578), + [aux_sym__val_number_decimal_token3] = ACTIONS(3580), + [aux_sym__val_number_decimal_token4] = ACTIONS(3582), + [aux_sym__val_number_token1] = ACTIONS(3584), + [aux_sym__val_number_token2] = ACTIONS(3584), + [aux_sym__val_number_token3] = ACTIONS(3584), + [anon_sym_0b] = ACTIONS(3586), + [anon_sym_0o] = ACTIONS(3588), + [anon_sym_0x] = ACTIONS(3588), + [sym_val_date] = ACTIONS(3590), + [anon_sym_DQUOTE] = ACTIONS(3592), + [sym__str_single_quotes] = ACTIONS(3594), + [sym__str_back_ticks] = ACTIONS(3594), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3596), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3598), + [anon_sym_err_GT] = ACTIONS(2627), + [anon_sym_out_GT] = ACTIONS(2627), + [anon_sym_e_GT] = ACTIONS(2627), + [anon_sym_o_GT] = ACTIONS(2627), + [anon_sym_err_PLUSout_GT] = ACTIONS(2627), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), + [anon_sym_o_PLUSe_GT] = ACTIONS(2627), + [anon_sym_e_PLUSo_GT] = ACTIONS(2627), + [anon_sym_err_GT_GT] = ACTIONS(2629), + [anon_sym_out_GT_GT] = ACTIONS(2629), + [anon_sym_e_GT_GT] = ACTIONS(2629), + [anon_sym_o_GT_GT] = ACTIONS(2629), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3600), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3602), }, [1043] = { - [sym_match_arm] = STATE(6632), - [sym_default_arm] = STATE(6632), - [sym_match_pattern] = STATE(7650), - [sym__match_pattern] = STATE(5895), - [sym__match_pattern_expression] = STATE(6770), - [sym__match_pattern_value] = STATE(6771), - [sym__match_pattern_list] = STATE(6772), - [sym__match_pattern_record] = STATE(6774), - [sym_expr_parenthesized] = STATE(5667), - [sym_val_range] = STATE(6771), - [sym__val_range] = STATE(7706), - [sym_val_nothing] = STATE(6776), - [sym_val_bool] = STATE(6086), - [sym_val_variable] = STATE(5668), - [sym_val_number] = STATE(6776), - [sym__val_number_decimal] = STATE(5362), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(6776), - [sym_val_filesize] = STATE(6776), - [sym_val_binary] = STATE(6776), - [sym_val_string] = STATE(6776), - [sym__str_double_quotes] = STATE(1725), - [sym_val_table] = STATE(6776), - [sym_unquoted] = STATE(6780), - [sym__unquoted_anonymous_prefix] = STATE(7496), + [sym_expr_parenthesized] = STATE(4638), + [sym_val_range] = STATE(5197), + [sym__val_range] = STATE(7970), + [sym__val_range_with_end] = STATE(7443), + [sym__value] = STATE(5197), + [sym_val_nothing] = STATE(4884), + [sym_val_bool] = STATE(4764), + [sym_val_variable] = STATE(4686), + [sym_val_number] = STATE(4884), + [sym__val_number_decimal] = STATE(4098), + [sym__val_number] = STATE(5078), + [sym_val_duration] = STATE(4884), + [sym_val_filesize] = STATE(4884), + [sym_val_binary] = STATE(4884), + [sym_val_string] = STATE(4884), + [sym__raw_str] = STATE(4768), + [sym__str_double_quotes] = STATE(4768), + [sym_val_interpolated] = STATE(4884), + [sym__inter_single_quotes] = STATE(4936), + [sym__inter_double_quotes] = STATE(4937), + [sym_val_list] = STATE(4884), + [sym_val_record] = STATE(4884), + [sym_val_table] = STATE(4884), + [sym_val_closure] = STATE(4884), + [sym__unquoted_in_list] = STATE(4859), + [sym__unquoted_in_list_with_expr] = STATE(5197), + [sym__unquoted_anonymous_prefix] = STATE(7037), [sym_comment] = STATE(1043), - [aux_sym_shebang_repeat1] = STATE(2973), - [aux_sym_ctrl_match_repeat1] = STATE(1064), - [anon_sym_true] = ACTIONS(3533), - [anon_sym_false] = ACTIONS(3533), - [anon_sym_null] = ACTIONS(3535), - [aux_sym_cmd_identifier_token38] = ACTIONS(3537), - [aux_sym_cmd_identifier_token39] = ACTIONS(3537), - [aux_sym_cmd_identifier_token40] = ACTIONS(3537), - [sym__newline] = ACTIONS(3539), - [anon_sym_LBRACK] = ACTIONS(3541), - [anon_sym_LPAREN] = ACTIONS(3543), - [anon_sym_DOLLAR] = ACTIONS(3545), - [anon_sym_LBRACE] = ACTIONS(3547), - [anon_sym__] = ACTIONS(3551), - [anon_sym_DOT_DOT] = ACTIONS(3553), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3555), - [anon_sym_DOT_DOT_LT] = ACTIONS(3555), - [aux_sym__val_number_decimal_token1] = ACTIONS(3557), - [aux_sym__val_number_decimal_token2] = ACTIONS(3559), - [aux_sym__val_number_decimal_token3] = ACTIONS(3561), - [aux_sym__val_number_decimal_token4] = ACTIONS(3563), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3565), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2918), + [anon_sym_true] = ACTIONS(3556), + [anon_sym_false] = ACTIONS(3556), + [anon_sym_null] = ACTIONS(3558), + [aux_sym_cmd_identifier_token38] = ACTIONS(3560), + [aux_sym_cmd_identifier_token39] = ACTIONS(3560), + [aux_sym_cmd_identifier_token40] = ACTIONS(3560), + [sym__newline] = ACTIONS(3562), + [anon_sym_LBRACK] = ACTIONS(3564), + [anon_sym_LPAREN] = ACTIONS(3566), + [anon_sym_DOLLAR] = ACTIONS(3568), + [anon_sym_LBRACE] = ACTIONS(3570), + [anon_sym_DOT_DOT] = ACTIONS(3572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3574), + [anon_sym_DOT_DOT_LT] = ACTIONS(3574), + [aux_sym__val_number_decimal_token1] = ACTIONS(3576), + [aux_sym__val_number_decimal_token2] = ACTIONS(3578), + [aux_sym__val_number_decimal_token3] = ACTIONS(3580), + [aux_sym__val_number_decimal_token4] = ACTIONS(3582), + [aux_sym__val_number_token1] = ACTIONS(3584), + [aux_sym__val_number_token2] = ACTIONS(3584), + [aux_sym__val_number_token3] = ACTIONS(3584), + [anon_sym_0b] = ACTIONS(3586), + [anon_sym_0o] = ACTIONS(3588), + [anon_sym_0x] = ACTIONS(3588), + [sym_val_date] = ACTIONS(3590), + [anon_sym_DQUOTE] = ACTIONS(3592), + [sym__str_single_quotes] = ACTIONS(3594), + [sym__str_back_ticks] = ACTIONS(3594), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3596), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3598), + [anon_sym_err_GT] = ACTIONS(2627), + [anon_sym_out_GT] = ACTIONS(2627), + [anon_sym_e_GT] = ACTIONS(2627), + [anon_sym_o_GT] = ACTIONS(2627), + [anon_sym_err_PLUSout_GT] = ACTIONS(2627), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), + [anon_sym_o_PLUSe_GT] = ACTIONS(2627), + [anon_sym_e_PLUSo_GT] = ACTIONS(2627), + [anon_sym_err_GT_GT] = ACTIONS(2629), + [anon_sym_out_GT_GT] = ACTIONS(2629), + [anon_sym_e_GT_GT] = ACTIONS(2629), + [anon_sym_o_GT_GT] = ACTIONS(2629), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3600), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3602), }, [1044] = { - [sym_match_arm] = STATE(6694), - [sym_default_arm] = STATE(6694), - [sym_match_pattern] = STATE(7650), - [sym__match_pattern] = STATE(5895), - [sym__match_pattern_expression] = STATE(6770), - [sym__match_pattern_value] = STATE(6771), - [sym__match_pattern_list] = STATE(6772), - [sym__match_pattern_record] = STATE(6774), - [sym_expr_parenthesized] = STATE(5667), - [sym_val_range] = STATE(6771), - [sym__val_range] = STATE(7706), - [sym_val_nothing] = STATE(6776), - [sym_val_bool] = STATE(6086), - [sym_val_variable] = STATE(5668), - [sym_val_number] = STATE(6776), - [sym__val_number_decimal] = STATE(5362), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(6776), - [sym_val_filesize] = STATE(6776), - [sym_val_binary] = STATE(6776), - [sym_val_string] = STATE(6776), - [sym__str_double_quotes] = STATE(1725), - [sym_val_table] = STATE(6776), - [sym_unquoted] = STATE(6780), - [sym__unquoted_anonymous_prefix] = STATE(7496), + [sym_expr_parenthesized] = STATE(4640), + [sym_val_range] = STATE(5095), + [sym__val_range] = STATE(7970), + [sym__val_range_with_end] = STATE(7443), + [sym__value] = STATE(5095), + [sym_val_nothing] = STATE(4884), + [sym_val_bool] = STATE(4764), + [sym_val_variable] = STATE(4686), + [sym_val_number] = STATE(4884), + [sym__val_number_decimal] = STATE(4098), + [sym__val_number] = STATE(5078), + [sym_val_duration] = STATE(4884), + [sym_val_filesize] = STATE(4884), + [sym_val_binary] = STATE(4884), + [sym_val_string] = STATE(4884), + [sym__raw_str] = STATE(4768), + [sym__str_double_quotes] = STATE(4768), + [sym_val_interpolated] = STATE(4884), + [sym__inter_single_quotes] = STATE(4936), + [sym__inter_double_quotes] = STATE(4937), + [sym_val_list] = STATE(4884), + [sym_val_record] = STATE(4884), + [sym_val_table] = STATE(4884), + [sym_val_closure] = STATE(4884), + [sym__unquoted_in_list] = STATE(4809), + [sym__unquoted_in_list_with_expr] = STATE(5095), + [sym__unquoted_anonymous_prefix] = STATE(7037), [sym_comment] = STATE(1044), - [aux_sym_shebang_repeat1] = STATE(2973), - [aux_sym_ctrl_match_repeat1] = STATE(1074), - [anon_sym_true] = ACTIONS(3533), - [anon_sym_false] = ACTIONS(3533), - [anon_sym_null] = ACTIONS(3535), - [aux_sym_cmd_identifier_token38] = ACTIONS(3537), - [aux_sym_cmd_identifier_token39] = ACTIONS(3537), - [aux_sym_cmd_identifier_token40] = ACTIONS(3537), - [sym__newline] = ACTIONS(3539), - [anon_sym_LBRACK] = ACTIONS(3541), - [anon_sym_LPAREN] = ACTIONS(3543), - [anon_sym_DOLLAR] = ACTIONS(3545), - [anon_sym_LBRACE] = ACTIONS(3547), - [anon_sym__] = ACTIONS(3551), - [anon_sym_DOT_DOT] = ACTIONS(3553), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3555), - [anon_sym_DOT_DOT_LT] = ACTIONS(3555), - [aux_sym__val_number_decimal_token1] = ACTIONS(3557), - [aux_sym__val_number_decimal_token2] = ACTIONS(3559), - [aux_sym__val_number_decimal_token3] = ACTIONS(3561), - [aux_sym__val_number_decimal_token4] = ACTIONS(3563), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3565), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(2918), + [anon_sym_true] = ACTIONS(3556), + [anon_sym_false] = ACTIONS(3556), + [anon_sym_null] = ACTIONS(3558), + [aux_sym_cmd_identifier_token38] = ACTIONS(3560), + [aux_sym_cmd_identifier_token39] = ACTIONS(3560), + [aux_sym_cmd_identifier_token40] = ACTIONS(3560), + [sym__newline] = ACTIONS(3562), + [anon_sym_LBRACK] = ACTIONS(3564), + [anon_sym_LPAREN] = ACTIONS(3566), + [anon_sym_DOLLAR] = ACTIONS(3568), + [anon_sym_LBRACE] = ACTIONS(3570), + [anon_sym_DOT_DOT] = ACTIONS(3572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3574), + [anon_sym_DOT_DOT_LT] = ACTIONS(3574), + [aux_sym__val_number_decimal_token1] = ACTIONS(3576), + [aux_sym__val_number_decimal_token2] = ACTIONS(3578), + [aux_sym__val_number_decimal_token3] = ACTIONS(3580), + [aux_sym__val_number_decimal_token4] = ACTIONS(3582), + [aux_sym__val_number_token1] = ACTIONS(3584), + [aux_sym__val_number_token2] = ACTIONS(3584), + [aux_sym__val_number_token3] = ACTIONS(3584), + [anon_sym_0b] = ACTIONS(3586), + [anon_sym_0o] = ACTIONS(3588), + [anon_sym_0x] = ACTIONS(3588), + [sym_val_date] = ACTIONS(3590), + [anon_sym_DQUOTE] = ACTIONS(3592), + [sym__str_single_quotes] = ACTIONS(3594), + [sym__str_back_ticks] = ACTIONS(3594), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3596), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3598), + [anon_sym_err_GT] = ACTIONS(2627), + [anon_sym_out_GT] = ACTIONS(2627), + [anon_sym_e_GT] = ACTIONS(2627), + [anon_sym_o_GT] = ACTIONS(2627), + [anon_sym_err_PLUSout_GT] = ACTIONS(2627), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), + [anon_sym_o_PLUSe_GT] = ACTIONS(2627), + [anon_sym_e_PLUSo_GT] = ACTIONS(2627), + [anon_sym_err_GT_GT] = ACTIONS(2629), + [anon_sym_out_GT_GT] = ACTIONS(2629), + [anon_sym_e_GT_GT] = ACTIONS(2629), + [anon_sym_o_GT_GT] = ACTIONS(2629), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3600), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3602), }, [1045] = { - [sym_match_arm] = STATE(6616), - [sym_default_arm] = STATE(6616), - [sym_match_pattern] = STATE(7650), - [sym__match_pattern] = STATE(5895), - [sym__match_pattern_expression] = STATE(6770), - [sym__match_pattern_value] = STATE(6771), - [sym__match_pattern_list] = STATE(6772), - [sym__match_pattern_record] = STATE(6774), - [sym_expr_parenthesized] = STATE(5667), - [sym_val_range] = STATE(6771), - [sym__val_range] = STATE(7706), - [sym_val_nothing] = STATE(6776), - [sym_val_bool] = STATE(6086), - [sym_val_variable] = STATE(5668), - [sym_val_number] = STATE(6776), - [sym__val_number_decimal] = STATE(5362), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(6776), - [sym_val_filesize] = STATE(6776), - [sym_val_binary] = STATE(6776), - [sym_val_string] = STATE(6776), - [sym__str_double_quotes] = STATE(1725), - [sym_val_table] = STATE(6776), - [sym_unquoted] = STATE(6780), - [sym__unquoted_anonymous_prefix] = STATE(7496), + [sym_match_arm] = STATE(6927), + [sym_default_arm] = STATE(6927), + [sym_match_pattern] = STATE(7768), + [sym__match_pattern] = STATE(5996), + [sym__match_pattern_expression] = STATE(6925), + [sym__match_pattern_value] = STATE(6926), + [sym__match_pattern_list] = STATE(6929), + [sym__match_pattern_record] = STATE(6939), + [sym_expr_parenthesized] = STATE(5899), + [sym_val_range] = STATE(6926), + [sym__val_range] = STATE(7854), + [sym_val_nothing] = STATE(6967), + [sym_val_bool] = STATE(6204), + [sym_val_variable] = STATE(5900), + [sym_val_number] = STATE(6967), + [sym__val_number_decimal] = STATE(5395), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(6967), + [sym_val_filesize] = STATE(6967), + [sym_val_binary] = STATE(6967), + [sym_val_string] = STATE(6967), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_table] = STATE(6967), + [sym_unquoted] = STATE(7021), + [sym__unquoted_anonymous_prefix] = STATE(7685), [sym_comment] = STATE(1045), - [aux_sym_shebang_repeat1] = STATE(2973), - [aux_sym_ctrl_match_repeat1] = STATE(1055), - [anon_sym_true] = ACTIONS(3533), - [anon_sym_false] = ACTIONS(3533), - [anon_sym_null] = ACTIONS(3535), - [aux_sym_cmd_identifier_token38] = ACTIONS(3537), - [aux_sym_cmd_identifier_token39] = ACTIONS(3537), - [aux_sym_cmd_identifier_token40] = ACTIONS(3537), - [sym__newline] = ACTIONS(3539), - [anon_sym_LBRACK] = ACTIONS(3541), - [anon_sym_LPAREN] = ACTIONS(3543), - [anon_sym_DOLLAR] = ACTIONS(3545), - [anon_sym_LBRACE] = ACTIONS(3547), - [anon_sym__] = ACTIONS(3551), - [anon_sym_DOT_DOT] = ACTIONS(3553), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3555), - [anon_sym_DOT_DOT_LT] = ACTIONS(3555), - [aux_sym__val_number_decimal_token1] = ACTIONS(3557), - [aux_sym__val_number_decimal_token2] = ACTIONS(3559), - [aux_sym__val_number_decimal_token3] = ACTIONS(3561), - [aux_sym__val_number_decimal_token4] = ACTIONS(3563), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3565), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(1053), + [aux_sym_ctrl_match_repeat1] = STATE(1069), + [anon_sym_true] = ACTIONS(3604), + [anon_sym_false] = ACTIONS(3604), + [anon_sym_null] = ACTIONS(3606), + [aux_sym_cmd_identifier_token38] = ACTIONS(3608), + [aux_sym_cmd_identifier_token39] = ACTIONS(3608), + [aux_sym_cmd_identifier_token40] = ACTIONS(3608), + [sym__newline] = ACTIONS(3610), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_LPAREN] = ACTIONS(3614), + [anon_sym_DOLLAR] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(3618), + [anon_sym_RBRACE] = ACTIONS(3620), + [anon_sym__] = ACTIONS(3622), + [anon_sym_DOT_DOT] = ACTIONS(3624), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3626), + [anon_sym_DOT_DOT_LT] = ACTIONS(3626), + [aux_sym__val_number_decimal_token1] = ACTIONS(3628), + [aux_sym__val_number_decimal_token2] = ACTIONS(3630), + [aux_sym__val_number_decimal_token3] = ACTIONS(3632), + [aux_sym__val_number_decimal_token4] = ACTIONS(3634), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3636), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [1046] = { + [sym_match_arm] = STATE(6928), + [sym_default_arm] = STATE(6928), + [sym_match_pattern] = STATE(7768), + [sym__match_pattern] = STATE(5996), + [sym__match_pattern_expression] = STATE(6925), + [sym__match_pattern_value] = STATE(6926), + [sym__match_pattern_list] = STATE(6929), + [sym__match_pattern_record] = STATE(6939), + [sym_expr_parenthesized] = STATE(5899), + [sym_val_range] = STATE(6926), + [sym__val_range] = STATE(7854), + [sym_val_nothing] = STATE(6967), + [sym_val_bool] = STATE(6204), + [sym_val_variable] = STATE(5900), + [sym_val_number] = STATE(6967), + [sym__val_number_decimal] = STATE(5395), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(6967), + [sym_val_filesize] = STATE(6967), + [sym_val_binary] = STATE(6967), + [sym_val_string] = STATE(6967), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_table] = STATE(6967), + [sym_unquoted] = STATE(7021), + [sym__unquoted_anonymous_prefix] = STATE(7685), [sym_comment] = STATE(1046), - [aux_sym_ctrl_do_parenthesized_repeat2] = STATE(1046), - [aux_sym_cmd_identifier_token1] = ACTIONS(3573), - [aux_sym_cmd_identifier_token2] = ACTIONS(3573), - [aux_sym_cmd_identifier_token3] = ACTIONS(3573), - [aux_sym_cmd_identifier_token4] = ACTIONS(3573), - [aux_sym_cmd_identifier_token5] = ACTIONS(3573), - [aux_sym_cmd_identifier_token6] = ACTIONS(3573), - [aux_sym_cmd_identifier_token7] = ACTIONS(3573), - [aux_sym_cmd_identifier_token8] = ACTIONS(3573), - [aux_sym_cmd_identifier_token9] = ACTIONS(3573), - [aux_sym_cmd_identifier_token10] = ACTIONS(3573), - [aux_sym_cmd_identifier_token11] = ACTIONS(3573), - [aux_sym_cmd_identifier_token12] = ACTIONS(3573), - [aux_sym_cmd_identifier_token13] = ACTIONS(3573), - [aux_sym_cmd_identifier_token14] = ACTIONS(3573), - [aux_sym_cmd_identifier_token15] = ACTIONS(3573), - [aux_sym_cmd_identifier_token16] = ACTIONS(3573), - [aux_sym_cmd_identifier_token17] = ACTIONS(3573), - [aux_sym_cmd_identifier_token18] = ACTIONS(3573), - [aux_sym_cmd_identifier_token19] = ACTIONS(3573), - [aux_sym_cmd_identifier_token20] = ACTIONS(3573), - [aux_sym_cmd_identifier_token21] = ACTIONS(3573), - [aux_sym_cmd_identifier_token22] = ACTIONS(3573), - [aux_sym_cmd_identifier_token23] = ACTIONS(3573), - [aux_sym_cmd_identifier_token24] = ACTIONS(3573), - [aux_sym_cmd_identifier_token25] = ACTIONS(3573), - [aux_sym_cmd_identifier_token26] = ACTIONS(3573), - [aux_sym_cmd_identifier_token27] = ACTIONS(3573), - [aux_sym_cmd_identifier_token28] = ACTIONS(3573), - [aux_sym_cmd_identifier_token29] = ACTIONS(3573), - [aux_sym_cmd_identifier_token30] = ACTIONS(3573), - [aux_sym_cmd_identifier_token31] = ACTIONS(3573), - [aux_sym_cmd_identifier_token32] = ACTIONS(3573), - [aux_sym_cmd_identifier_token33] = ACTIONS(3573), - [aux_sym_cmd_identifier_token34] = ACTIONS(3573), - [aux_sym_cmd_identifier_token35] = ACTIONS(3573), - [aux_sym_cmd_identifier_token36] = ACTIONS(3573), - [anon_sym_true] = ACTIONS(3573), - [anon_sym_false] = ACTIONS(3573), - [anon_sym_null] = ACTIONS(3573), - [aux_sym_cmd_identifier_token38] = ACTIONS(3573), - [aux_sym_cmd_identifier_token39] = ACTIONS(3573), - [aux_sym_cmd_identifier_token40] = ACTIONS(3573), - [sym__newline] = ACTIONS(3575), - [sym__space] = ACTIONS(3578), - [anon_sym_LBRACK] = ACTIONS(3573), - [anon_sym_LPAREN] = ACTIONS(3573), - [anon_sym_DOLLAR] = ACTIONS(3573), - [anon_sym_DASH] = ACTIONS(3573), - [anon_sym_LBRACE] = ACTIONS(3573), - [anon_sym_DOT_DOT] = ACTIONS(3573), - [aux_sym_expr_unary_token1] = ACTIONS(3573), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3573), - [anon_sym_DOT_DOT_LT] = ACTIONS(3573), - [aux_sym__val_number_decimal_token1] = ACTIONS(3573), - [aux_sym__val_number_decimal_token2] = ACTIONS(3573), - [aux_sym__val_number_decimal_token3] = ACTIONS(3573), - [aux_sym__val_number_decimal_token4] = ACTIONS(3573), - [aux_sym__val_number_token1] = ACTIONS(3573), - [aux_sym__val_number_token2] = ACTIONS(3573), - [aux_sym__val_number_token3] = ACTIONS(3573), - [anon_sym_0b] = ACTIONS(3573), - [anon_sym_0o] = ACTIONS(3573), - [anon_sym_0x] = ACTIONS(3573), - [sym_val_date] = ACTIONS(3573), - [anon_sym_DQUOTE] = ACTIONS(3573), - [sym__str_single_quotes] = ACTIONS(3573), - [sym__str_back_ticks] = ACTIONS(3573), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3573), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3573), - [aux_sym_env_var_token1] = ACTIONS(3573), - [anon_sym_CARET] = ACTIONS(3573), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(1050), + [aux_sym_ctrl_match_repeat1] = STATE(1071), + [anon_sym_true] = ACTIONS(3604), + [anon_sym_false] = ACTIONS(3604), + [anon_sym_null] = ACTIONS(3606), + [aux_sym_cmd_identifier_token38] = ACTIONS(3608), + [aux_sym_cmd_identifier_token39] = ACTIONS(3608), + [aux_sym_cmd_identifier_token40] = ACTIONS(3608), + [sym__newline] = ACTIONS(3610), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_LPAREN] = ACTIONS(3614), + [anon_sym_DOLLAR] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(3618), + [anon_sym_RBRACE] = ACTIONS(3638), + [anon_sym__] = ACTIONS(3622), + [anon_sym_DOT_DOT] = ACTIONS(3624), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3626), + [anon_sym_DOT_DOT_LT] = ACTIONS(3626), + [aux_sym__val_number_decimal_token1] = ACTIONS(3628), + [aux_sym__val_number_decimal_token2] = ACTIONS(3630), + [aux_sym__val_number_decimal_token3] = ACTIONS(3632), + [aux_sym__val_number_decimal_token4] = ACTIONS(3634), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3636), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [1047] = { + [sym_expr_parenthesized] = STATE(4605), + [sym_val_range] = STATE(5164), + [sym__val_range] = STATE(7970), + [sym__val_range_with_end] = STATE(7443), + [sym__value] = STATE(5164), + [sym_val_nothing] = STATE(4884), + [sym_val_bool] = STATE(4764), + [sym_val_variable] = STATE(4686), + [sym_val_number] = STATE(4884), + [sym__val_number_decimal] = STATE(4098), + [sym__val_number] = STATE(5078), + [sym_val_duration] = STATE(4884), + [sym_val_filesize] = STATE(4884), + [sym_val_binary] = STATE(4884), + [sym_val_string] = STATE(4884), + [sym__raw_str] = STATE(4768), + [sym__str_double_quotes] = STATE(4768), + [sym_val_interpolated] = STATE(4884), + [sym__inter_single_quotes] = STATE(4936), + [sym__inter_double_quotes] = STATE(4937), + [sym_val_list] = STATE(4884), + [sym_val_record] = STATE(4884), + [sym_val_table] = STATE(4884), + [sym_val_closure] = STATE(4884), + [sym__unquoted_in_list] = STATE(4699), + [sym__unquoted_in_list_with_expr] = STATE(5164), + [sym__unquoted_anonymous_prefix] = STATE(7037), [sym_comment] = STATE(1047), - [aux_sym_ctrl_do_parenthesized_repeat2] = STATE(1046), - [aux_sym_cmd_identifier_token1] = ACTIONS(3581), - [aux_sym_cmd_identifier_token2] = ACTIONS(3581), - [aux_sym_cmd_identifier_token3] = ACTIONS(3581), - [aux_sym_cmd_identifier_token4] = ACTIONS(3581), - [aux_sym_cmd_identifier_token5] = ACTIONS(3581), - [aux_sym_cmd_identifier_token6] = ACTIONS(3581), - [aux_sym_cmd_identifier_token7] = ACTIONS(3581), - [aux_sym_cmd_identifier_token8] = ACTIONS(3581), - [aux_sym_cmd_identifier_token9] = ACTIONS(3581), - [aux_sym_cmd_identifier_token10] = ACTIONS(3581), - [aux_sym_cmd_identifier_token11] = ACTIONS(3581), - [aux_sym_cmd_identifier_token12] = ACTIONS(3581), - [aux_sym_cmd_identifier_token13] = ACTIONS(3581), - [aux_sym_cmd_identifier_token14] = ACTIONS(3581), - [aux_sym_cmd_identifier_token15] = ACTIONS(3581), - [aux_sym_cmd_identifier_token16] = ACTIONS(3581), - [aux_sym_cmd_identifier_token17] = ACTIONS(3581), - [aux_sym_cmd_identifier_token18] = ACTIONS(3581), - [aux_sym_cmd_identifier_token19] = ACTIONS(3581), - [aux_sym_cmd_identifier_token20] = ACTIONS(3581), - [aux_sym_cmd_identifier_token21] = ACTIONS(3581), - [aux_sym_cmd_identifier_token22] = ACTIONS(3581), - [aux_sym_cmd_identifier_token23] = ACTIONS(3581), - [aux_sym_cmd_identifier_token24] = ACTIONS(3581), - [aux_sym_cmd_identifier_token25] = ACTIONS(3581), - [aux_sym_cmd_identifier_token26] = ACTIONS(3581), - [aux_sym_cmd_identifier_token27] = ACTIONS(3581), - [aux_sym_cmd_identifier_token28] = ACTIONS(3581), - [aux_sym_cmd_identifier_token29] = ACTIONS(3581), - [aux_sym_cmd_identifier_token30] = ACTIONS(3581), - [aux_sym_cmd_identifier_token31] = ACTIONS(3581), - [aux_sym_cmd_identifier_token32] = ACTIONS(3581), - [aux_sym_cmd_identifier_token33] = ACTIONS(3581), - [aux_sym_cmd_identifier_token34] = ACTIONS(3581), - [aux_sym_cmd_identifier_token35] = ACTIONS(3581), - [aux_sym_cmd_identifier_token36] = ACTIONS(3581), - [anon_sym_true] = ACTIONS(3581), - [anon_sym_false] = ACTIONS(3581), - [anon_sym_null] = ACTIONS(3581), - [aux_sym_cmd_identifier_token38] = ACTIONS(3581), - [aux_sym_cmd_identifier_token39] = ACTIONS(3581), - [aux_sym_cmd_identifier_token40] = ACTIONS(3581), - [sym__newline] = ACTIONS(3583), - [sym__space] = ACTIONS(3585), - [anon_sym_LBRACK] = ACTIONS(3581), - [anon_sym_LPAREN] = ACTIONS(3581), - [anon_sym_DOLLAR] = ACTIONS(3581), - [anon_sym_DASH] = ACTIONS(3581), - [anon_sym_LBRACE] = ACTIONS(3581), - [anon_sym_DOT_DOT] = ACTIONS(3581), - [aux_sym_expr_unary_token1] = ACTIONS(3581), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3581), - [anon_sym_DOT_DOT_LT] = ACTIONS(3581), - [aux_sym__val_number_decimal_token1] = ACTIONS(3581), - [aux_sym__val_number_decimal_token2] = ACTIONS(3581), - [aux_sym__val_number_decimal_token3] = ACTIONS(3581), - [aux_sym__val_number_decimal_token4] = ACTIONS(3581), - [aux_sym__val_number_token1] = ACTIONS(3581), - [aux_sym__val_number_token2] = ACTIONS(3581), - [aux_sym__val_number_token3] = ACTIONS(3581), - [anon_sym_0b] = ACTIONS(3581), - [anon_sym_0o] = ACTIONS(3581), - [anon_sym_0x] = ACTIONS(3581), - [sym_val_date] = ACTIONS(3581), - [anon_sym_DQUOTE] = ACTIONS(3581), - [sym__str_single_quotes] = ACTIONS(3581), - [sym__str_back_ticks] = ACTIONS(3581), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3581), - [aux_sym_env_var_token1] = ACTIONS(3581), - [anon_sym_CARET] = ACTIONS(3581), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(1043), + [anon_sym_true] = ACTIONS(3556), + [anon_sym_false] = ACTIONS(3556), + [anon_sym_null] = ACTIONS(3558), + [aux_sym_cmd_identifier_token38] = ACTIONS(3560), + [aux_sym_cmd_identifier_token39] = ACTIONS(3560), + [aux_sym_cmd_identifier_token40] = ACTIONS(3560), + [sym__newline] = ACTIONS(3562), + [anon_sym_LBRACK] = ACTIONS(3564), + [anon_sym_LPAREN] = ACTIONS(3566), + [anon_sym_DOLLAR] = ACTIONS(3568), + [anon_sym_LBRACE] = ACTIONS(3570), + [anon_sym_DOT_DOT] = ACTIONS(3572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3574), + [anon_sym_DOT_DOT_LT] = ACTIONS(3574), + [aux_sym__val_number_decimal_token1] = ACTIONS(3576), + [aux_sym__val_number_decimal_token2] = ACTIONS(3578), + [aux_sym__val_number_decimal_token3] = ACTIONS(3580), + [aux_sym__val_number_decimal_token4] = ACTIONS(3582), + [aux_sym__val_number_token1] = ACTIONS(3584), + [aux_sym__val_number_token2] = ACTIONS(3584), + [aux_sym__val_number_token3] = ACTIONS(3584), + [anon_sym_0b] = ACTIONS(3586), + [anon_sym_0o] = ACTIONS(3588), + [anon_sym_0x] = ACTIONS(3588), + [sym_val_date] = ACTIONS(3590), + [anon_sym_DQUOTE] = ACTIONS(3592), + [sym__str_single_quotes] = ACTIONS(3594), + [sym__str_back_ticks] = ACTIONS(3594), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3596), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3598), + [anon_sym_err_GT] = ACTIONS(2627), + [anon_sym_out_GT] = ACTIONS(2627), + [anon_sym_e_GT] = ACTIONS(2627), + [anon_sym_o_GT] = ACTIONS(2627), + [anon_sym_err_PLUSout_GT] = ACTIONS(2627), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), + [anon_sym_o_PLUSe_GT] = ACTIONS(2627), + [anon_sym_e_PLUSo_GT] = ACTIONS(2627), + [anon_sym_err_GT_GT] = ACTIONS(2629), + [anon_sym_out_GT_GT] = ACTIONS(2629), + [anon_sym_e_GT_GT] = ACTIONS(2629), + [anon_sym_o_GT_GT] = ACTIONS(2629), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3600), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3602), }, [1048] = { - [sym_expr_parenthesized] = STATE(475), - [sym_val_range] = STATE(672), - [sym__val_range] = STATE(7377), - [sym__val_range_with_end] = STATE(7252), - [sym__value] = STATE(672), - [sym_val_nothing] = STATE(663), - [sym_val_bool] = STATE(551), - [sym_val_variable] = STATE(493), - [sym_val_number] = STATE(663), - [sym__val_number_decimal] = STATE(247), - [sym__val_number] = STATE(660), - [sym_val_duration] = STATE(663), - [sym_val_filesize] = STATE(663), - [sym_val_binary] = STATE(663), - [sym_val_string] = STATE(663), - [sym__str_double_quotes] = STATE(650), - [sym_val_interpolated] = STATE(663), - [sym__inter_single_quotes] = STATE(647), - [sym__inter_double_quotes] = STATE(662), - [sym_val_list] = STATE(663), - [sym_val_record] = STATE(663), - [sym_val_table] = STATE(663), - [sym_val_closure] = STATE(663), - [sym__unquoted_in_record] = STATE(507), - [sym__unquoted_in_record_with_expr] = STATE(672), - [sym__unquoted_anonymous_prefix] = STATE(6820), + [sym_match_arm] = STATE(6854), + [sym_default_arm] = STATE(6854), + [sym_match_pattern] = STATE(7768), + [sym__match_pattern] = STATE(5996), + [sym__match_pattern_expression] = STATE(6925), + [sym__match_pattern_value] = STATE(6926), + [sym__match_pattern_list] = STATE(6929), + [sym__match_pattern_record] = STATE(6939), + [sym_expr_parenthesized] = STATE(5899), + [sym_val_range] = STATE(6926), + [sym__val_range] = STATE(7854), + [sym_val_nothing] = STATE(6967), + [sym_val_bool] = STATE(6204), + [sym_val_variable] = STATE(5900), + [sym_val_number] = STATE(6967), + [sym__val_number_decimal] = STATE(5395), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(6967), + [sym_val_filesize] = STATE(6967), + [sym_val_binary] = STATE(6967), + [sym_val_string] = STATE(6967), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_table] = STATE(6967), + [sym_unquoted] = STATE(7021), + [sym__unquoted_anonymous_prefix] = STATE(7685), [sym_comment] = STATE(1048), - [anon_sym_true] = ACTIONS(3587), - [anon_sym_false] = ACTIONS(3587), - [anon_sym_null] = ACTIONS(3589), - [aux_sym_cmd_identifier_token38] = ACTIONS(3591), - [aux_sym_cmd_identifier_token39] = ACTIONS(3591), - [aux_sym_cmd_identifier_token40] = ACTIONS(3591), - [anon_sym_LBRACK] = ACTIONS(3593), - [anon_sym_LPAREN] = ACTIONS(3595), - [anon_sym_DOLLAR] = ACTIONS(3597), - [anon_sym_LBRACE] = ACTIONS(3599), - [anon_sym_DOT_DOT] = ACTIONS(3601), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3603), - [anon_sym_DOT_DOT_LT] = ACTIONS(3603), - [aux_sym__val_number_decimal_token1] = ACTIONS(3605), - [aux_sym__val_number_decimal_token2] = ACTIONS(3607), - [aux_sym__val_number_decimal_token3] = ACTIONS(3609), - [aux_sym__val_number_decimal_token4] = ACTIONS(3611), - [aux_sym__val_number_token1] = ACTIONS(3613), - [aux_sym__val_number_token2] = ACTIONS(3613), - [aux_sym__val_number_token3] = ACTIONS(3613), - [anon_sym_0b] = ACTIONS(3615), - [anon_sym_0o] = ACTIONS(3617), - [anon_sym_0x] = ACTIONS(3617), - [sym_val_date] = ACTIONS(3619), - [anon_sym_DQUOTE] = ACTIONS(3621), - [sym__str_single_quotes] = ACTIONS(3623), - [sym__str_back_ticks] = ACTIONS(3623), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3625), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3627), - [anon_sym_err_GT] = ACTIONS(3629), - [anon_sym_out_GT] = ACTIONS(3629), - [anon_sym_e_GT] = ACTIONS(3629), - [anon_sym_o_GT] = ACTIONS(3629), - [anon_sym_err_PLUSout_GT] = ACTIONS(3629), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3629), - [anon_sym_o_PLUSe_GT] = ACTIONS(3629), - [anon_sym_e_PLUSo_GT] = ACTIONS(3629), - [anon_sym_err_GT_GT] = ACTIONS(3631), - [anon_sym_out_GT_GT] = ACTIONS(3631), - [anon_sym_e_GT_GT] = ACTIONS(3631), - [anon_sym_o_GT_GT] = ACTIONS(3631), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3631), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3631), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3631), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3631), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3633), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(1052), + [aux_sym_ctrl_match_repeat1] = STATE(1067), + [anon_sym_true] = ACTIONS(3604), + [anon_sym_false] = ACTIONS(3604), + [anon_sym_null] = ACTIONS(3606), + [aux_sym_cmd_identifier_token38] = ACTIONS(3608), + [aux_sym_cmd_identifier_token39] = ACTIONS(3608), + [aux_sym_cmd_identifier_token40] = ACTIONS(3608), + [sym__newline] = ACTIONS(3610), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_LPAREN] = ACTIONS(3614), + [anon_sym_DOLLAR] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(3618), + [anon_sym_RBRACE] = ACTIONS(3640), + [anon_sym__] = ACTIONS(3622), + [anon_sym_DOT_DOT] = ACTIONS(3624), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3626), + [anon_sym_DOT_DOT_LT] = ACTIONS(3626), + [aux_sym__val_number_decimal_token1] = ACTIONS(3628), + [aux_sym__val_number_decimal_token2] = ACTIONS(3630), + [aux_sym__val_number_decimal_token3] = ACTIONS(3632), + [aux_sym__val_number_decimal_token4] = ACTIONS(3634), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3636), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [1049] = { - [sym_expr_parenthesized] = STATE(476), - [sym_val_range] = STATE(645), - [sym__val_range] = STATE(7377), - [sym__val_range_with_end] = STATE(7252), - [sym__value] = STATE(645), - [sym_val_nothing] = STATE(663), - [sym_val_bool] = STATE(551), - [sym_val_variable] = STATE(493), - [sym_val_number] = STATE(663), - [sym__val_number_decimal] = STATE(247), - [sym__val_number] = STATE(660), - [sym_val_duration] = STATE(663), - [sym_val_filesize] = STATE(663), - [sym_val_binary] = STATE(663), - [sym_val_string] = STATE(663), - [sym__str_double_quotes] = STATE(650), - [sym_val_interpolated] = STATE(663), - [sym__inter_single_quotes] = STATE(647), - [sym__inter_double_quotes] = STATE(662), - [sym_val_list] = STATE(663), - [sym_val_record] = STATE(663), - [sym_val_table] = STATE(663), - [sym_val_closure] = STATE(663), - [sym__unquoted_in_record] = STATE(510), - [sym__unquoted_in_record_with_expr] = STATE(645), - [sym__unquoted_anonymous_prefix] = STATE(6820), + [sym_match_arm] = STATE(7096), + [sym_default_arm] = STATE(7096), + [sym_match_pattern] = STATE(7768), + [sym__match_pattern] = STATE(5996), + [sym__match_pattern_expression] = STATE(6925), + [sym__match_pattern_value] = STATE(6926), + [sym__match_pattern_list] = STATE(6929), + [sym__match_pattern_record] = STATE(6939), + [sym_expr_parenthesized] = STATE(5899), + [sym_val_range] = STATE(6926), + [sym__val_range] = STATE(7854), + [sym_val_nothing] = STATE(6967), + [sym_val_bool] = STATE(6204), + [sym_val_variable] = STATE(5900), + [sym_val_number] = STATE(6967), + [sym__val_number_decimal] = STATE(5395), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(6967), + [sym_val_filesize] = STATE(6967), + [sym_val_binary] = STATE(6967), + [sym_val_string] = STATE(6967), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_table] = STATE(6967), + [sym_unquoted] = STATE(7021), + [sym__unquoted_anonymous_prefix] = STATE(7685), [sym_comment] = STATE(1049), - [anon_sym_true] = ACTIONS(3587), - [anon_sym_false] = ACTIONS(3587), - [anon_sym_null] = ACTIONS(3589), - [aux_sym_cmd_identifier_token38] = ACTIONS(3591), - [aux_sym_cmd_identifier_token39] = ACTIONS(3591), - [aux_sym_cmd_identifier_token40] = ACTIONS(3591), - [anon_sym_LBRACK] = ACTIONS(3593), - [anon_sym_LPAREN] = ACTIONS(3595), - [anon_sym_DOLLAR] = ACTIONS(3597), - [anon_sym_LBRACE] = ACTIONS(3599), - [anon_sym_DOT_DOT] = ACTIONS(3601), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3603), - [anon_sym_DOT_DOT_LT] = ACTIONS(3603), - [aux_sym__val_number_decimal_token1] = ACTIONS(3605), - [aux_sym__val_number_decimal_token2] = ACTIONS(3607), - [aux_sym__val_number_decimal_token3] = ACTIONS(3609), - [aux_sym__val_number_decimal_token4] = ACTIONS(3611), - [aux_sym__val_number_token1] = ACTIONS(3613), - [aux_sym__val_number_token2] = ACTIONS(3613), - [aux_sym__val_number_token3] = ACTIONS(3613), - [anon_sym_0b] = ACTIONS(3615), - [anon_sym_0o] = ACTIONS(3617), - [anon_sym_0x] = ACTIONS(3617), - [sym_val_date] = ACTIONS(3619), - [anon_sym_DQUOTE] = ACTIONS(3621), - [sym__str_single_quotes] = ACTIONS(3623), - [sym__str_back_ticks] = ACTIONS(3623), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3625), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3627), - [anon_sym_err_GT] = ACTIONS(3629), - [anon_sym_out_GT] = ACTIONS(3629), - [anon_sym_e_GT] = ACTIONS(3629), - [anon_sym_o_GT] = ACTIONS(3629), - [anon_sym_err_PLUSout_GT] = ACTIONS(3629), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3629), - [anon_sym_o_PLUSe_GT] = ACTIONS(3629), - [anon_sym_e_PLUSo_GT] = ACTIONS(3629), - [anon_sym_err_GT_GT] = ACTIONS(3631), - [anon_sym_out_GT_GT] = ACTIONS(3631), - [anon_sym_e_GT_GT] = ACTIONS(3631), - [anon_sym_o_GT_GT] = ACTIONS(3631), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3631), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3631), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3631), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3631), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3633), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(1051), + [aux_sym_ctrl_match_repeat1] = STATE(1070), + [anon_sym_true] = ACTIONS(3604), + [anon_sym_false] = ACTIONS(3604), + [anon_sym_null] = ACTIONS(3606), + [aux_sym_cmd_identifier_token38] = ACTIONS(3608), + [aux_sym_cmd_identifier_token39] = ACTIONS(3608), + [aux_sym_cmd_identifier_token40] = ACTIONS(3608), + [sym__newline] = ACTIONS(3610), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_LPAREN] = ACTIONS(3614), + [anon_sym_DOLLAR] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(3618), + [anon_sym_RBRACE] = ACTIONS(3642), + [anon_sym__] = ACTIONS(3622), + [anon_sym_DOT_DOT] = ACTIONS(3624), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3626), + [anon_sym_DOT_DOT_LT] = ACTIONS(3626), + [aux_sym__val_number_decimal_token1] = ACTIONS(3628), + [aux_sym__val_number_decimal_token2] = ACTIONS(3630), + [aux_sym__val_number_decimal_token3] = ACTIONS(3632), + [aux_sym__val_number_decimal_token4] = ACTIONS(3634), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3636), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [1050] = { - [sym_expr_parenthesized] = STATE(381), - [sym_val_range] = STATE(614), - [sym__val_range] = STATE(7508), - [sym__val_range_with_end] = STATE(7323), - [sym__value] = STATE(614), - [sym_val_nothing] = STATE(521), - [sym_val_bool] = STATE(461), - [sym_val_variable] = STATE(405), - [sym_val_number] = STATE(521), - [sym__val_number_decimal] = STATE(219), - [sym__val_number] = STATE(588), - [sym_val_duration] = STATE(521), - [sym_val_filesize] = STATE(521), - [sym_val_binary] = STATE(521), - [sym_val_string] = STATE(521), - [sym__str_double_quotes] = STATE(610), - [sym_val_interpolated] = STATE(521), - [sym__inter_single_quotes] = STATE(495), - [sym__inter_double_quotes] = STATE(556), - [sym_val_list] = STATE(521), - [sym_val_record] = STATE(521), - [sym_val_table] = STATE(521), - [sym_val_closure] = STATE(521), - [sym__unquoted_in_record] = STATE(490), - [sym__unquoted_in_record_with_expr] = STATE(614), - [sym__unquoted_anonymous_prefix] = STATE(7172), + [sym_match_arm] = STATE(7134), + [sym_default_arm] = STATE(7134), + [sym_match_pattern] = STATE(7768), + [sym__match_pattern] = STATE(5996), + [sym__match_pattern_expression] = STATE(6925), + [sym__match_pattern_value] = STATE(6926), + [sym__match_pattern_list] = STATE(6929), + [sym__match_pattern_record] = STATE(6939), + [sym_expr_parenthesized] = STATE(5899), + [sym_val_range] = STATE(6926), + [sym__val_range] = STATE(7854), + [sym_val_nothing] = STATE(6967), + [sym_val_bool] = STATE(6204), + [sym_val_variable] = STATE(5900), + [sym_val_number] = STATE(6967), + [sym__val_number_decimal] = STATE(5395), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(6967), + [sym_val_filesize] = STATE(6967), + [sym_val_binary] = STATE(6967), + [sym_val_string] = STATE(6967), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_table] = STATE(6967), + [sym_unquoted] = STATE(7021), + [sym__unquoted_anonymous_prefix] = STATE(7685), [sym_comment] = STATE(1050), - [anon_sym_true] = ACTIONS(3635), - [anon_sym_false] = ACTIONS(3635), - [anon_sym_null] = ACTIONS(3637), - [aux_sym_cmd_identifier_token38] = ACTIONS(3639), - [aux_sym_cmd_identifier_token39] = ACTIONS(3639), - [aux_sym_cmd_identifier_token40] = ACTIONS(3639), - [anon_sym_LBRACK] = ACTIONS(3641), - [anon_sym_LPAREN] = ACTIONS(3643), - [anon_sym_DOLLAR] = ACTIONS(1480), - [anon_sym_LBRACE] = ACTIONS(3645), - [anon_sym_DOT_DOT] = ACTIONS(3647), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3649), - [anon_sym_DOT_DOT_LT] = ACTIONS(3649), - [aux_sym__val_number_decimal_token1] = ACTIONS(3651), - [aux_sym__val_number_decimal_token2] = ACTIONS(3653), - [aux_sym__val_number_decimal_token3] = ACTIONS(3655), - [aux_sym__val_number_decimal_token4] = ACTIONS(3657), - [aux_sym__val_number_token1] = ACTIONS(3659), - [aux_sym__val_number_token2] = ACTIONS(3659), - [aux_sym__val_number_token3] = ACTIONS(3659), - [anon_sym_0b] = ACTIONS(3661), - [anon_sym_0o] = ACTIONS(3663), - [anon_sym_0x] = ACTIONS(3663), - [sym_val_date] = ACTIONS(3665), - [anon_sym_DQUOTE] = ACTIONS(3667), - [sym__str_single_quotes] = ACTIONS(3669), - [sym__str_back_ticks] = ACTIONS(3669), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_err_GT] = ACTIONS(3629), - [anon_sym_out_GT] = ACTIONS(3629), - [anon_sym_e_GT] = ACTIONS(3629), - [anon_sym_o_GT] = ACTIONS(3629), - [anon_sym_err_PLUSout_GT] = ACTIONS(3629), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3629), - [anon_sym_o_PLUSe_GT] = ACTIONS(3629), - [anon_sym_e_PLUSo_GT] = ACTIONS(3629), - [anon_sym_err_GT_GT] = ACTIONS(3631), - [anon_sym_out_GT_GT] = ACTIONS(3631), - [anon_sym_e_GT_GT] = ACTIONS(3631), - [anon_sym_o_GT_GT] = ACTIONS(3631), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3631), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3631), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3631), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3631), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3671), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(3007), + [aux_sym_ctrl_match_repeat1] = STATE(1073), + [anon_sym_true] = ACTIONS(3604), + [anon_sym_false] = ACTIONS(3604), + [anon_sym_null] = ACTIONS(3606), + [aux_sym_cmd_identifier_token38] = ACTIONS(3608), + [aux_sym_cmd_identifier_token39] = ACTIONS(3608), + [aux_sym_cmd_identifier_token40] = ACTIONS(3608), + [sym__newline] = ACTIONS(3610), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_LPAREN] = ACTIONS(3614), + [anon_sym_DOLLAR] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(3618), + [anon_sym__] = ACTIONS(3622), + [anon_sym_DOT_DOT] = ACTIONS(3624), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3626), + [anon_sym_DOT_DOT_LT] = ACTIONS(3626), + [aux_sym__val_number_decimal_token1] = ACTIONS(3628), + [aux_sym__val_number_decimal_token2] = ACTIONS(3630), + [aux_sym__val_number_decimal_token3] = ACTIONS(3632), + [aux_sym__val_number_decimal_token4] = ACTIONS(3634), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3636), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [1051] = { - [sym_expr_parenthesized] = STATE(387), - [sym_val_range] = STATE(618), - [sym__val_range] = STATE(7508), - [sym__val_range_with_end] = STATE(7323), - [sym__value] = STATE(618), - [sym_val_nothing] = STATE(521), - [sym_val_bool] = STATE(461), - [sym_val_variable] = STATE(405), - [sym_val_number] = STATE(521), - [sym__val_number_decimal] = STATE(219), - [sym__val_number] = STATE(588), - [sym_val_duration] = STATE(521), - [sym_val_filesize] = STATE(521), - [sym_val_binary] = STATE(521), - [sym_val_string] = STATE(521), - [sym__str_double_quotes] = STATE(610), - [sym_val_interpolated] = STATE(521), - [sym__inter_single_quotes] = STATE(495), - [sym__inter_double_quotes] = STATE(556), - [sym_val_list] = STATE(521), - [sym_val_record] = STATE(521), - [sym_val_table] = STATE(521), - [sym_val_closure] = STATE(521), - [sym__unquoted_in_record] = STATE(444), - [sym__unquoted_in_record_with_expr] = STATE(618), - [sym__unquoted_anonymous_prefix] = STATE(7172), + [sym_match_arm] = STATE(6907), + [sym_default_arm] = STATE(6907), + [sym_match_pattern] = STATE(7768), + [sym__match_pattern] = STATE(5996), + [sym__match_pattern_expression] = STATE(6925), + [sym__match_pattern_value] = STATE(6926), + [sym__match_pattern_list] = STATE(6929), + [sym__match_pattern_record] = STATE(6939), + [sym_expr_parenthesized] = STATE(5899), + [sym_val_range] = STATE(6926), + [sym__val_range] = STATE(7854), + [sym_val_nothing] = STATE(6967), + [sym_val_bool] = STATE(6204), + [sym_val_variable] = STATE(5900), + [sym_val_number] = STATE(6967), + [sym__val_number_decimal] = STATE(5395), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(6967), + [sym_val_filesize] = STATE(6967), + [sym_val_binary] = STATE(6967), + [sym_val_string] = STATE(6967), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_table] = STATE(6967), + [sym_unquoted] = STATE(7021), + [sym__unquoted_anonymous_prefix] = STATE(7685), [sym_comment] = STATE(1051), - [anon_sym_true] = ACTIONS(3635), - [anon_sym_false] = ACTIONS(3635), - [anon_sym_null] = ACTIONS(3637), - [aux_sym_cmd_identifier_token38] = ACTIONS(3639), - [aux_sym_cmd_identifier_token39] = ACTIONS(3639), - [aux_sym_cmd_identifier_token40] = ACTIONS(3639), - [anon_sym_LBRACK] = ACTIONS(3641), - [anon_sym_LPAREN] = ACTIONS(3643), - [anon_sym_DOLLAR] = ACTIONS(1480), - [anon_sym_LBRACE] = ACTIONS(3645), - [anon_sym_DOT_DOT] = ACTIONS(3647), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3649), - [anon_sym_DOT_DOT_LT] = ACTIONS(3649), - [aux_sym__val_number_decimal_token1] = ACTIONS(3651), - [aux_sym__val_number_decimal_token2] = ACTIONS(3653), - [aux_sym__val_number_decimal_token3] = ACTIONS(3655), - [aux_sym__val_number_decimal_token4] = ACTIONS(3657), - [aux_sym__val_number_token1] = ACTIONS(3659), - [aux_sym__val_number_token2] = ACTIONS(3659), - [aux_sym__val_number_token3] = ACTIONS(3659), - [anon_sym_0b] = ACTIONS(3661), - [anon_sym_0o] = ACTIONS(3663), - [anon_sym_0x] = ACTIONS(3663), - [sym_val_date] = ACTIONS(3665), - [anon_sym_DQUOTE] = ACTIONS(3667), - [sym__str_single_quotes] = ACTIONS(3669), - [sym__str_back_ticks] = ACTIONS(3669), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_err_GT] = ACTIONS(3629), - [anon_sym_out_GT] = ACTIONS(3629), - [anon_sym_e_GT] = ACTIONS(3629), - [anon_sym_o_GT] = ACTIONS(3629), - [anon_sym_err_PLUSout_GT] = ACTIONS(3629), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3629), - [anon_sym_o_PLUSe_GT] = ACTIONS(3629), - [anon_sym_e_PLUSo_GT] = ACTIONS(3629), - [anon_sym_err_GT_GT] = ACTIONS(3631), - [anon_sym_out_GT_GT] = ACTIONS(3631), - [anon_sym_e_GT_GT] = ACTIONS(3631), - [anon_sym_o_GT_GT] = ACTIONS(3631), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3631), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3631), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3631), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3631), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3671), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(3007), + [aux_sym_ctrl_match_repeat1] = STATE(1068), + [anon_sym_true] = ACTIONS(3604), + [anon_sym_false] = ACTIONS(3604), + [anon_sym_null] = ACTIONS(3606), + [aux_sym_cmd_identifier_token38] = ACTIONS(3608), + [aux_sym_cmd_identifier_token39] = ACTIONS(3608), + [aux_sym_cmd_identifier_token40] = ACTIONS(3608), + [sym__newline] = ACTIONS(3610), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_LPAREN] = ACTIONS(3614), + [anon_sym_DOLLAR] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(3618), + [anon_sym__] = ACTIONS(3622), + [anon_sym_DOT_DOT] = ACTIONS(3624), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3626), + [anon_sym_DOT_DOT_LT] = ACTIONS(3626), + [aux_sym__val_number_decimal_token1] = ACTIONS(3628), + [aux_sym__val_number_decimal_token2] = ACTIONS(3630), + [aux_sym__val_number_decimal_token3] = ACTIONS(3632), + [aux_sym__val_number_decimal_token4] = ACTIONS(3634), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3636), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [1052] = { - [sym_expr_parenthesized] = STATE(6045), - [sym_val_range] = STATE(614), - [sym__val_range] = STATE(7508), - [sym__val_range_with_end] = STATE(7323), - [sym__value] = STATE(614), - [sym_val_nothing] = STATE(521), - [sym_val_bool] = STATE(6478), - [sym_val_variable] = STATE(5719), - [sym_val_number] = STATE(521), - [sym__val_number_decimal] = STATE(5237), - [sym__val_number] = STATE(2915), - [sym_val_duration] = STATE(521), - [sym_val_filesize] = STATE(521), - [sym_val_binary] = STATE(521), - [sym_val_string] = STATE(521), - [sym__str_double_quotes] = STATE(5413), - [sym_val_interpolated] = STATE(521), - [sym__inter_single_quotes] = STATE(495), - [sym__inter_double_quotes] = STATE(556), - [sym_val_list] = STATE(521), - [sym_val_record] = STATE(521), - [sym_val_table] = STATE(521), - [sym_val_closure] = STATE(521), - [sym__unquoted_in_record] = STATE(490), - [sym__unquoted_in_record_with_expr] = STATE(614), - [sym__unquoted_anonymous_prefix] = STATE(7172), + [sym_match_arm] = STATE(6793), + [sym_default_arm] = STATE(6793), + [sym_match_pattern] = STATE(7768), + [sym__match_pattern] = STATE(5996), + [sym__match_pattern_expression] = STATE(6925), + [sym__match_pattern_value] = STATE(6926), + [sym__match_pattern_list] = STATE(6929), + [sym__match_pattern_record] = STATE(6939), + [sym_expr_parenthesized] = STATE(5899), + [sym_val_range] = STATE(6926), + [sym__val_range] = STATE(7854), + [sym_val_nothing] = STATE(6967), + [sym_val_bool] = STATE(6204), + [sym_val_variable] = STATE(5900), + [sym_val_number] = STATE(6967), + [sym__val_number_decimal] = STATE(5395), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(6967), + [sym_val_filesize] = STATE(6967), + [sym_val_binary] = STATE(6967), + [sym_val_string] = STATE(6967), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_table] = STATE(6967), + [sym_unquoted] = STATE(7021), + [sym__unquoted_anonymous_prefix] = STATE(7685), [sym_comment] = STATE(1052), - [anon_sym_true] = ACTIONS(3673), - [anon_sym_false] = ACTIONS(3673), - [anon_sym_null] = ACTIONS(3675), - [aux_sym_cmd_identifier_token38] = ACTIONS(3677), - [aux_sym_cmd_identifier_token39] = ACTIONS(3677), - [aux_sym_cmd_identifier_token40] = ACTIONS(3677), - [anon_sym_LBRACK] = ACTIONS(3023), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_DOLLAR] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_DOT_DOT] = ACTIONS(3679), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3681), - [anon_sym_DOT_DOT_LT] = ACTIONS(3681), - [aux_sym__val_number_decimal_token1] = ACTIONS(3683), - [aux_sym__val_number_decimal_token2] = ACTIONS(3685), - [aux_sym__val_number_decimal_token3] = ACTIONS(3687), - [aux_sym__val_number_decimal_token4] = ACTIONS(3689), - [aux_sym__val_number_token1] = ACTIONS(2569), - [aux_sym__val_number_token2] = ACTIONS(2569), - [aux_sym__val_number_token3] = ACTIONS(2569), - [anon_sym_0b] = ACTIONS(2571), - [anon_sym_0o] = ACTIONS(2573), - [anon_sym_0x] = ACTIONS(2573), - [sym_val_date] = ACTIONS(3691), - [anon_sym_DQUOTE] = ACTIONS(3015), - [sym__str_single_quotes] = ACTIONS(3017), - [sym__str_back_ticks] = ACTIONS(3017), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_err_GT] = ACTIONS(3629), - [anon_sym_out_GT] = ACTIONS(3629), - [anon_sym_e_GT] = ACTIONS(3629), - [anon_sym_o_GT] = ACTIONS(3629), - [anon_sym_err_PLUSout_GT] = ACTIONS(3629), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3629), - [anon_sym_o_PLUSe_GT] = ACTIONS(3629), - [anon_sym_e_PLUSo_GT] = ACTIONS(3629), - [anon_sym_err_GT_GT] = ACTIONS(3631), - [anon_sym_out_GT_GT] = ACTIONS(3631), - [anon_sym_e_GT_GT] = ACTIONS(3631), - [anon_sym_o_GT_GT] = ACTIONS(3631), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3631), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3631), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3631), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3631), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3671), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(3007), + [aux_sym_ctrl_match_repeat1] = STATE(1065), + [anon_sym_true] = ACTIONS(3604), + [anon_sym_false] = ACTIONS(3604), + [anon_sym_null] = ACTIONS(3606), + [aux_sym_cmd_identifier_token38] = ACTIONS(3608), + [aux_sym_cmd_identifier_token39] = ACTIONS(3608), + [aux_sym_cmd_identifier_token40] = ACTIONS(3608), + [sym__newline] = ACTIONS(3610), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_LPAREN] = ACTIONS(3614), + [anon_sym_DOLLAR] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(3618), + [anon_sym__] = ACTIONS(3622), + [anon_sym_DOT_DOT] = ACTIONS(3624), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3626), + [anon_sym_DOT_DOT_LT] = ACTIONS(3626), + [aux_sym__val_number_decimal_token1] = ACTIONS(3628), + [aux_sym__val_number_decimal_token2] = ACTIONS(3630), + [aux_sym__val_number_decimal_token3] = ACTIONS(3632), + [aux_sym__val_number_decimal_token4] = ACTIONS(3634), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3636), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [1053] = { - [sym_expr_parenthesized] = STATE(5918), - [sym_val_range] = STATE(618), - [sym__val_range] = STATE(7508), - [sym__val_range_with_end] = STATE(7323), - [sym__value] = STATE(618), - [sym_val_nothing] = STATE(521), - [sym_val_bool] = STATE(6478), - [sym_val_variable] = STATE(5719), - [sym_val_number] = STATE(521), - [sym__val_number_decimal] = STATE(5237), - [sym__val_number] = STATE(2915), - [sym_val_duration] = STATE(521), - [sym_val_filesize] = STATE(521), - [sym_val_binary] = STATE(521), - [sym_val_string] = STATE(521), - [sym__str_double_quotes] = STATE(5413), - [sym_val_interpolated] = STATE(521), - [sym__inter_single_quotes] = STATE(495), - [sym__inter_double_quotes] = STATE(556), - [sym_val_list] = STATE(521), - [sym_val_record] = STATE(521), - [sym_val_table] = STATE(521), - [sym_val_closure] = STATE(521), - [sym__unquoted_in_record] = STATE(444), - [sym__unquoted_in_record_with_expr] = STATE(618), - [sym__unquoted_anonymous_prefix] = STATE(7172), + [sym_match_arm] = STATE(7133), + [sym_default_arm] = STATE(7133), + [sym_match_pattern] = STATE(7768), + [sym__match_pattern] = STATE(5996), + [sym__match_pattern_expression] = STATE(6925), + [sym__match_pattern_value] = STATE(6926), + [sym__match_pattern_list] = STATE(6929), + [sym__match_pattern_record] = STATE(6939), + [sym_expr_parenthesized] = STATE(5899), + [sym_val_range] = STATE(6926), + [sym__val_range] = STATE(7854), + [sym_val_nothing] = STATE(6967), + [sym_val_bool] = STATE(6204), + [sym_val_variable] = STATE(5900), + [sym_val_number] = STATE(6967), + [sym__val_number_decimal] = STATE(5395), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(6967), + [sym_val_filesize] = STATE(6967), + [sym_val_binary] = STATE(6967), + [sym_val_string] = STATE(6967), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_table] = STATE(6967), + [sym_unquoted] = STATE(7021), + [sym__unquoted_anonymous_prefix] = STATE(7685), [sym_comment] = STATE(1053), - [anon_sym_true] = ACTIONS(3673), - [anon_sym_false] = ACTIONS(3673), - [anon_sym_null] = ACTIONS(3675), - [aux_sym_cmd_identifier_token38] = ACTIONS(3677), - [aux_sym_cmd_identifier_token39] = ACTIONS(3677), - [aux_sym_cmd_identifier_token40] = ACTIONS(3677), - [anon_sym_LBRACK] = ACTIONS(3023), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_DOLLAR] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_DOT_DOT] = ACTIONS(3679), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3681), - [anon_sym_DOT_DOT_LT] = ACTIONS(3681), - [aux_sym__val_number_decimal_token1] = ACTIONS(3683), - [aux_sym__val_number_decimal_token2] = ACTIONS(3685), - [aux_sym__val_number_decimal_token3] = ACTIONS(3687), - [aux_sym__val_number_decimal_token4] = ACTIONS(3689), - [aux_sym__val_number_token1] = ACTIONS(2569), - [aux_sym__val_number_token2] = ACTIONS(2569), - [aux_sym__val_number_token3] = ACTIONS(2569), - [anon_sym_0b] = ACTIONS(2571), - [anon_sym_0o] = ACTIONS(2573), - [anon_sym_0x] = ACTIONS(2573), - [sym_val_date] = ACTIONS(3691), - [anon_sym_DQUOTE] = ACTIONS(3015), - [sym__str_single_quotes] = ACTIONS(3017), - [sym__str_back_ticks] = ACTIONS(3017), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_err_GT] = ACTIONS(3629), - [anon_sym_out_GT] = ACTIONS(3629), - [anon_sym_e_GT] = ACTIONS(3629), - [anon_sym_o_GT] = ACTIONS(3629), - [anon_sym_err_PLUSout_GT] = ACTIONS(3629), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3629), - [anon_sym_o_PLUSe_GT] = ACTIONS(3629), - [anon_sym_e_PLUSo_GT] = ACTIONS(3629), - [anon_sym_err_GT_GT] = ACTIONS(3631), - [anon_sym_out_GT_GT] = ACTIONS(3631), - [anon_sym_e_GT_GT] = ACTIONS(3631), - [anon_sym_o_GT_GT] = ACTIONS(3631), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3631), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3631), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3631), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3631), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3671), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(3007), + [aux_sym_ctrl_match_repeat1] = STATE(1072), + [anon_sym_true] = ACTIONS(3604), + [anon_sym_false] = ACTIONS(3604), + [anon_sym_null] = ACTIONS(3606), + [aux_sym_cmd_identifier_token38] = ACTIONS(3608), + [aux_sym_cmd_identifier_token39] = ACTIONS(3608), + [aux_sym_cmd_identifier_token40] = ACTIONS(3608), + [sym__newline] = ACTIONS(3610), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_LPAREN] = ACTIONS(3614), + [anon_sym_DOLLAR] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(3618), + [anon_sym__] = ACTIONS(3622), + [anon_sym_DOT_DOT] = ACTIONS(3624), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3626), + [anon_sym_DOT_DOT_LT] = ACTIONS(3626), + [aux_sym__val_number_decimal_token1] = ACTIONS(3628), + [aux_sym__val_number_decimal_token2] = ACTIONS(3630), + [aux_sym__val_number_decimal_token3] = ACTIONS(3632), + [aux_sym__val_number_decimal_token4] = ACTIONS(3634), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3636), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [1054] = { - [sym_cell_path] = STATE(1217), - [sym_path] = STATE(1135), + [sym_expr_parenthesized] = STATE(433), + [sym_val_range] = STATE(585), + [sym__val_range] = STATE(7689), + [sym__val_range_with_end] = STATE(7526), + [sym__value] = STATE(585), + [sym_val_nothing] = STATE(611), + [sym_val_bool] = STATE(469), + [sym_val_variable] = STATE(389), + [sym_val_number] = STATE(611), + [sym__val_number_decimal] = STATE(230), + [sym__val_number] = STATE(555), + [sym_val_duration] = STATE(611), + [sym_val_filesize] = STATE(611), + [sym_val_binary] = STATE(611), + [sym_val_string] = STATE(611), + [sym__raw_str] = STATE(623), + [sym__str_double_quotes] = STATE(623), + [sym_val_interpolated] = STATE(611), + [sym__inter_single_quotes] = STATE(593), + [sym__inter_double_quotes] = STATE(596), + [sym_val_list] = STATE(611), + [sym_val_record] = STATE(611), + [sym_val_table] = STATE(611), + [sym_val_closure] = STATE(611), + [sym__unquoted_in_record] = STATE(483), + [sym__unquoted_in_record_with_expr] = STATE(585), + [sym__unquoted_anonymous_prefix] = STATE(7112), [sym_comment] = STATE(1054), - [aux_sym_cell_path_repeat1] = STATE(1078), - [anon_sym_EQ] = ACTIONS(1005), - [anon_sym_PLUS_EQ] = ACTIONS(1007), - [anon_sym_DASH_EQ] = ACTIONS(1007), - [anon_sym_STAR_EQ] = ACTIONS(1007), - [anon_sym_SLASH_EQ] = ACTIONS(1007), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1007), - [sym__newline] = ACTIONS(1005), - [anon_sym_SEMI] = ACTIONS(1007), - [anon_sym_PIPE] = ACTIONS(1007), - [anon_sym_err_GT_PIPE] = ACTIONS(1007), - [anon_sym_out_GT_PIPE] = ACTIONS(1007), - [anon_sym_e_GT_PIPE] = ACTIONS(1007), - [anon_sym_o_GT_PIPE] = ACTIONS(1007), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1007), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1007), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1007), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1007), - [anon_sym_LBRACE] = ACTIONS(1007), - [anon_sym_RBRACE] = ACTIONS(1007), - [aux_sym_expr_binary_token1] = ACTIONS(1007), - [aux_sym_expr_binary_token2] = ACTIONS(1007), - [aux_sym_expr_binary_token3] = ACTIONS(1007), - [aux_sym_expr_binary_token4] = ACTIONS(1007), - [aux_sym_expr_binary_token5] = ACTIONS(1007), - [aux_sym_expr_binary_token6] = ACTIONS(1007), - [aux_sym_expr_binary_token7] = ACTIONS(1007), - [aux_sym_expr_binary_token8] = ACTIONS(1007), - [aux_sym_expr_binary_token9] = ACTIONS(1007), - [aux_sym_expr_binary_token10] = ACTIONS(1007), - [aux_sym_expr_binary_token11] = ACTIONS(1007), - [aux_sym_expr_binary_token12] = ACTIONS(1007), - [aux_sym_expr_binary_token13] = ACTIONS(1007), - [aux_sym_expr_binary_token14] = ACTIONS(1007), - [aux_sym_expr_binary_token15] = ACTIONS(1007), - [aux_sym_expr_binary_token16] = ACTIONS(1007), - [aux_sym_expr_binary_token17] = ACTIONS(1007), - [aux_sym_expr_binary_token18] = ACTIONS(1007), - [aux_sym_expr_binary_token19] = ACTIONS(1007), - [aux_sym_expr_binary_token20] = ACTIONS(1007), - [aux_sym_expr_binary_token21] = ACTIONS(1007), - [aux_sym_expr_binary_token22] = ACTIONS(1007), - [aux_sym_expr_binary_token23] = ACTIONS(1007), - [aux_sym_expr_binary_token24] = ACTIONS(1007), - [aux_sym_expr_binary_token25] = ACTIONS(1007), - [aux_sym_expr_binary_token26] = ACTIONS(1007), - [aux_sym_expr_binary_token27] = ACTIONS(1007), - [aux_sym_expr_binary_token28] = ACTIONS(1007), - [anon_sym_DOT_DOT2] = ACTIONS(1005), - [anon_sym_DOT] = ACTIONS(3693), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1007), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1007), - [aux_sym_record_entry_token1] = ACTIONS(1007), - [anon_sym_err_GT] = ACTIONS(1005), - [anon_sym_out_GT] = ACTIONS(1005), - [anon_sym_e_GT] = ACTIONS(1005), - [anon_sym_o_GT] = ACTIONS(1005), - [anon_sym_err_PLUSout_GT] = ACTIONS(1005), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1005), - [anon_sym_o_PLUSe_GT] = ACTIONS(1005), - [anon_sym_e_PLUSo_GT] = ACTIONS(1005), - [anon_sym_err_GT_GT] = ACTIONS(1007), - [anon_sym_out_GT_GT] = ACTIONS(1007), - [anon_sym_e_GT_GT] = ACTIONS(1007), - [anon_sym_o_GT_GT] = ACTIONS(1007), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1007), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1007), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1007), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1007), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(3644), + [anon_sym_false] = ACTIONS(3644), + [anon_sym_null] = ACTIONS(3646), + [aux_sym_cmd_identifier_token38] = ACTIONS(3648), + [aux_sym_cmd_identifier_token39] = ACTIONS(3648), + [aux_sym_cmd_identifier_token40] = ACTIONS(3648), + [anon_sym_LBRACK] = ACTIONS(3650), + [anon_sym_LPAREN] = ACTIONS(3652), + [anon_sym_DOLLAR] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(3654), + [anon_sym_DOT_DOT] = ACTIONS(3656), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3658), + [anon_sym_DOT_DOT_LT] = ACTIONS(3658), + [aux_sym__val_number_decimal_token1] = ACTIONS(3660), + [aux_sym__val_number_decimal_token2] = ACTIONS(3662), + [aux_sym__val_number_decimal_token3] = ACTIONS(3664), + [aux_sym__val_number_decimal_token4] = ACTIONS(3666), + [aux_sym__val_number_token1] = ACTIONS(3668), + [aux_sym__val_number_token2] = ACTIONS(3668), + [aux_sym__val_number_token3] = ACTIONS(3668), + [anon_sym_0b] = ACTIONS(3670), + [anon_sym_0o] = ACTIONS(3672), + [anon_sym_0x] = ACTIONS(3672), + [sym_val_date] = ACTIONS(3674), + [anon_sym_DQUOTE] = ACTIONS(3676), + [sym__str_single_quotes] = ACTIONS(3678), + [sym__str_back_ticks] = ACTIONS(3678), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3680), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3682), + [anon_sym_err_GT] = ACTIONS(3684), + [anon_sym_out_GT] = ACTIONS(3684), + [anon_sym_e_GT] = ACTIONS(3684), + [anon_sym_o_GT] = ACTIONS(3684), + [anon_sym_err_PLUSout_GT] = ACTIONS(3684), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3684), + [anon_sym_o_PLUSe_GT] = ACTIONS(3684), + [anon_sym_e_PLUSo_GT] = ACTIONS(3684), + [anon_sym_err_GT_GT] = ACTIONS(3686), + [anon_sym_out_GT_GT] = ACTIONS(3686), + [anon_sym_e_GT_GT] = ACTIONS(3686), + [anon_sym_o_GT_GT] = ACTIONS(3686), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3686), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3686), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3686), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3686), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3688), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3690), }, [1055] = { - [sym_match_arm] = STATE(6752), - [sym_default_arm] = STATE(6752), - [sym_match_pattern] = STATE(7650), - [sym__match_pattern] = STATE(5895), - [sym__match_pattern_expression] = STATE(6770), - [sym__match_pattern_value] = STATE(6771), - [sym__match_pattern_list] = STATE(6772), - [sym__match_pattern_record] = STATE(6774), - [sym_expr_parenthesized] = STATE(5667), - [sym_val_range] = STATE(6771), - [sym__val_range] = STATE(7706), - [sym_val_nothing] = STATE(6776), - [sym_val_bool] = STATE(6086), - [sym_val_variable] = STATE(5668), - [sym_val_number] = STATE(6776), - [sym__val_number_decimal] = STATE(5362), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(6776), - [sym_val_filesize] = STATE(6776), - [sym_val_binary] = STATE(6776), - [sym_val_string] = STATE(6776), - [sym__str_double_quotes] = STATE(1725), - [sym_val_table] = STATE(6776), - [sym_unquoted] = STATE(6780), - [sym__unquoted_anonymous_prefix] = STATE(7496), + [sym_expr_parenthesized] = STATE(478), + [sym_val_range] = STATE(705), + [sym__val_range] = STATE(7913), + [sym__val_range_with_end] = STATE(7469), + [sym__value] = STATE(705), + [sym_val_nothing] = STATE(651), + [sym_val_bool] = STATE(522), + [sym_val_variable] = STATE(454), + [sym_val_number] = STATE(651), + [sym__val_number_decimal] = STATE(244), + [sym__val_number] = STATE(660), + [sym_val_duration] = STATE(651), + [sym_val_filesize] = STATE(651), + [sym_val_binary] = STATE(651), + [sym_val_string] = STATE(651), + [sym__raw_str] = STATE(692), + [sym__str_double_quotes] = STATE(692), + [sym_val_interpolated] = STATE(651), + [sym__inter_single_quotes] = STATE(661), + [sym__inter_double_quotes] = STATE(662), + [sym_val_list] = STATE(651), + [sym_val_record] = STATE(651), + [sym_val_table] = STATE(651), + [sym_val_closure] = STATE(651), + [sym__unquoted_in_record] = STATE(521), + [sym__unquoted_in_record_with_expr] = STATE(705), + [sym__unquoted_anonymous_prefix] = STATE(6932), [sym_comment] = STATE(1055), - [aux_sym_ctrl_match_repeat1] = STATE(1063), - [anon_sym_true] = ACTIONS(3533), - [anon_sym_false] = ACTIONS(3533), - [anon_sym_null] = ACTIONS(3535), - [aux_sym_cmd_identifier_token38] = ACTIONS(3537), - [aux_sym_cmd_identifier_token39] = ACTIONS(3537), - [aux_sym_cmd_identifier_token40] = ACTIONS(3537), - [anon_sym_LBRACK] = ACTIONS(3541), - [anon_sym_LPAREN] = ACTIONS(3543), - [anon_sym_DOLLAR] = ACTIONS(3545), - [anon_sym_LBRACE] = ACTIONS(3547), - [anon_sym__] = ACTIONS(3551), - [anon_sym_DOT_DOT] = ACTIONS(3553), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3555), - [anon_sym_DOT_DOT_LT] = ACTIONS(3555), - [aux_sym__val_number_decimal_token1] = ACTIONS(3557), - [aux_sym__val_number_decimal_token2] = ACTIONS(3559), - [aux_sym__val_number_decimal_token3] = ACTIONS(3561), - [aux_sym__val_number_decimal_token4] = ACTIONS(3563), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3565), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(3692), + [anon_sym_false] = ACTIONS(3692), + [anon_sym_null] = ACTIONS(3694), + [aux_sym_cmd_identifier_token38] = ACTIONS(3696), + [aux_sym_cmd_identifier_token39] = ACTIONS(3696), + [aux_sym_cmd_identifier_token40] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3698), + [anon_sym_LPAREN] = ACTIONS(3700), + [anon_sym_DOLLAR] = ACTIONS(3702), + [anon_sym_LBRACE] = ACTIONS(3704), + [anon_sym_DOT_DOT] = ACTIONS(3706), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3708), + [anon_sym_DOT_DOT_LT] = ACTIONS(3708), + [aux_sym__val_number_decimal_token1] = ACTIONS(3710), + [aux_sym__val_number_decimal_token2] = ACTIONS(3712), + [aux_sym__val_number_decimal_token3] = ACTIONS(3714), + [aux_sym__val_number_decimal_token4] = ACTIONS(3716), + [aux_sym__val_number_token1] = ACTIONS(3718), + [aux_sym__val_number_token2] = ACTIONS(3718), + [aux_sym__val_number_token3] = ACTIONS(3718), + [anon_sym_0b] = ACTIONS(3720), + [anon_sym_0o] = ACTIONS(3722), + [anon_sym_0x] = ACTIONS(3722), + [sym_val_date] = ACTIONS(3724), + [anon_sym_DQUOTE] = ACTIONS(3726), + [sym__str_single_quotes] = ACTIONS(3728), + [sym__str_back_ticks] = ACTIONS(3728), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3730), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3732), + [anon_sym_err_GT] = ACTIONS(3684), + [anon_sym_out_GT] = ACTIONS(3684), + [anon_sym_e_GT] = ACTIONS(3684), + [anon_sym_o_GT] = ACTIONS(3684), + [anon_sym_err_PLUSout_GT] = ACTIONS(3684), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3684), + [anon_sym_o_PLUSe_GT] = ACTIONS(3684), + [anon_sym_e_PLUSo_GT] = ACTIONS(3684), + [anon_sym_err_GT_GT] = ACTIONS(3686), + [anon_sym_out_GT_GT] = ACTIONS(3686), + [anon_sym_e_GT_GT] = ACTIONS(3686), + [anon_sym_o_GT_GT] = ACTIONS(3686), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3686), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3686), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3686), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3686), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3734), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3736), }, [1056] = { + [sym_expr_parenthesized] = STATE(430), + [sym_val_range] = STATE(579), + [sym__val_range] = STATE(7689), + [sym__val_range_with_end] = STATE(7526), + [sym__value] = STATE(579), + [sym_val_nothing] = STATE(611), + [sym_val_bool] = STATE(469), + [sym_val_variable] = STATE(389), + [sym_val_number] = STATE(611), + [sym__val_number_decimal] = STATE(230), + [sym__val_number] = STATE(555), + [sym_val_duration] = STATE(611), + [sym_val_filesize] = STATE(611), + [sym_val_binary] = STATE(611), + [sym_val_string] = STATE(611), + [sym__raw_str] = STATE(623), + [sym__str_double_quotes] = STATE(623), + [sym_val_interpolated] = STATE(611), + [sym__inter_single_quotes] = STATE(593), + [sym__inter_double_quotes] = STATE(596), + [sym_val_list] = STATE(611), + [sym_val_record] = STATE(611), + [sym_val_table] = STATE(611), + [sym_val_closure] = STATE(611), + [sym__unquoted_in_record] = STATE(481), + [sym__unquoted_in_record_with_expr] = STATE(579), + [sym__unquoted_anonymous_prefix] = STATE(7112), [sym_comment] = STATE(1056), - [aux_sym_pipe_element_repeat1] = STATE(1067), - [aux_sym_cmd_identifier_token1] = ACTIONS(3695), - [aux_sym_cmd_identifier_token2] = ACTIONS(3695), - [aux_sym_cmd_identifier_token3] = ACTIONS(3695), - [aux_sym_cmd_identifier_token4] = ACTIONS(3695), - [aux_sym_cmd_identifier_token5] = ACTIONS(3695), - [aux_sym_cmd_identifier_token6] = ACTIONS(3695), - [aux_sym_cmd_identifier_token7] = ACTIONS(3695), - [aux_sym_cmd_identifier_token8] = ACTIONS(3695), - [aux_sym_cmd_identifier_token9] = ACTIONS(3695), - [aux_sym_cmd_identifier_token10] = ACTIONS(3695), - [aux_sym_cmd_identifier_token11] = ACTIONS(3695), - [aux_sym_cmd_identifier_token12] = ACTIONS(3695), - [aux_sym_cmd_identifier_token13] = ACTIONS(3695), - [aux_sym_cmd_identifier_token14] = ACTIONS(3695), - [aux_sym_cmd_identifier_token15] = ACTIONS(3695), - [aux_sym_cmd_identifier_token16] = ACTIONS(3695), - [aux_sym_cmd_identifier_token17] = ACTIONS(3695), - [aux_sym_cmd_identifier_token18] = ACTIONS(3695), - [aux_sym_cmd_identifier_token19] = ACTIONS(3695), - [aux_sym_cmd_identifier_token20] = ACTIONS(3695), - [aux_sym_cmd_identifier_token21] = ACTIONS(3695), - [aux_sym_cmd_identifier_token22] = ACTIONS(3695), - [aux_sym_cmd_identifier_token23] = ACTIONS(3695), - [aux_sym_cmd_identifier_token24] = ACTIONS(3695), - [aux_sym_cmd_identifier_token25] = ACTIONS(3695), - [aux_sym_cmd_identifier_token26] = ACTIONS(3695), - [aux_sym_cmd_identifier_token27] = ACTIONS(3695), - [aux_sym_cmd_identifier_token28] = ACTIONS(3695), - [aux_sym_cmd_identifier_token29] = ACTIONS(3695), - [aux_sym_cmd_identifier_token30] = ACTIONS(3695), - [aux_sym_cmd_identifier_token31] = ACTIONS(3695), - [aux_sym_cmd_identifier_token32] = ACTIONS(3695), - [aux_sym_cmd_identifier_token33] = ACTIONS(3695), - [aux_sym_cmd_identifier_token34] = ACTIONS(3695), - [aux_sym_cmd_identifier_token35] = ACTIONS(3695), - [aux_sym_cmd_identifier_token36] = ACTIONS(3695), - [anon_sym_true] = ACTIONS(3695), - [anon_sym_false] = ACTIONS(3695), - [anon_sym_null] = ACTIONS(3695), - [aux_sym_cmd_identifier_token38] = ACTIONS(3695), - [aux_sym_cmd_identifier_token39] = ACTIONS(3695), - [aux_sym_cmd_identifier_token40] = ACTIONS(3695), - [sym__space] = ACTIONS(3697), - [anon_sym_LBRACK] = ACTIONS(3695), - [anon_sym_LPAREN] = ACTIONS(3695), - [anon_sym_DOLLAR] = ACTIONS(3695), - [anon_sym_DASH] = ACTIONS(3695), - [anon_sym_LBRACE] = ACTIONS(3695), - [anon_sym_DOT_DOT] = ACTIONS(3695), - [aux_sym_expr_unary_token1] = ACTIONS(3695), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3695), - [anon_sym_DOT_DOT_LT] = ACTIONS(3695), - [aux_sym__val_number_decimal_token1] = ACTIONS(3695), - [aux_sym__val_number_decimal_token2] = ACTIONS(3695), - [aux_sym__val_number_decimal_token3] = ACTIONS(3695), - [aux_sym__val_number_decimal_token4] = ACTIONS(3695), - [aux_sym__val_number_token1] = ACTIONS(3695), - [aux_sym__val_number_token2] = ACTIONS(3695), - [aux_sym__val_number_token3] = ACTIONS(3695), - [anon_sym_0b] = ACTIONS(3695), - [anon_sym_0o] = ACTIONS(3695), - [anon_sym_0x] = ACTIONS(3695), - [sym_val_date] = ACTIONS(3695), - [anon_sym_DQUOTE] = ACTIONS(3695), - [sym__str_single_quotes] = ACTIONS(3695), - [sym__str_back_ticks] = ACTIONS(3695), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3695), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3695), - [aux_sym_env_var_token1] = ACTIONS(3695), - [anon_sym_CARET] = ACTIONS(3695), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(3644), + [anon_sym_false] = ACTIONS(3644), + [anon_sym_null] = ACTIONS(3646), + [aux_sym_cmd_identifier_token38] = ACTIONS(3648), + [aux_sym_cmd_identifier_token39] = ACTIONS(3648), + [aux_sym_cmd_identifier_token40] = ACTIONS(3648), + [anon_sym_LBRACK] = ACTIONS(3650), + [anon_sym_LPAREN] = ACTIONS(3652), + [anon_sym_DOLLAR] = ACTIONS(1512), + [anon_sym_LBRACE] = ACTIONS(3654), + [anon_sym_DOT_DOT] = ACTIONS(3656), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3658), + [anon_sym_DOT_DOT_LT] = ACTIONS(3658), + [aux_sym__val_number_decimal_token1] = ACTIONS(3660), + [aux_sym__val_number_decimal_token2] = ACTIONS(3662), + [aux_sym__val_number_decimal_token3] = ACTIONS(3664), + [aux_sym__val_number_decimal_token4] = ACTIONS(3666), + [aux_sym__val_number_token1] = ACTIONS(3668), + [aux_sym__val_number_token2] = ACTIONS(3668), + [aux_sym__val_number_token3] = ACTIONS(3668), + [anon_sym_0b] = ACTIONS(3670), + [anon_sym_0o] = ACTIONS(3672), + [anon_sym_0x] = ACTIONS(3672), + [sym_val_date] = ACTIONS(3674), + [anon_sym_DQUOTE] = ACTIONS(3676), + [sym__str_single_quotes] = ACTIONS(3678), + [sym__str_back_ticks] = ACTIONS(3678), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3680), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3682), + [anon_sym_err_GT] = ACTIONS(3684), + [anon_sym_out_GT] = ACTIONS(3684), + [anon_sym_e_GT] = ACTIONS(3684), + [anon_sym_o_GT] = ACTIONS(3684), + [anon_sym_err_PLUSout_GT] = ACTIONS(3684), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3684), + [anon_sym_o_PLUSe_GT] = ACTIONS(3684), + [anon_sym_e_PLUSo_GT] = ACTIONS(3684), + [anon_sym_err_GT_GT] = ACTIONS(3686), + [anon_sym_out_GT_GT] = ACTIONS(3686), + [anon_sym_e_GT_GT] = ACTIONS(3686), + [anon_sym_o_GT_GT] = ACTIONS(3686), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3686), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3686), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3686), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3686), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3688), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3690), }, [1057] = { - [sym__match_pattern_expression] = STATE(3060), - [sym__match_pattern_value] = STATE(3093), - [sym__match_pattern_list] = STATE(3094), - [sym__match_pattern_rest] = STATE(7654), - [sym__match_pattern_record] = STATE(3095), - [sym_expr_parenthesized] = STATE(2884), - [sym_val_range] = STATE(3093), - [sym__val_range] = STATE(7378), - [sym_val_nothing] = STATE(3096), - [sym_val_bool] = STATE(3015), - [sym_val_variable] = STATE(2885), - [sym_val_number] = STATE(3096), - [sym__val_number_decimal] = STATE(2627), - [sym__val_number] = STATE(3088), - [sym_val_duration] = STATE(3096), - [sym_val_filesize] = STATE(3096), - [sym_val_binary] = STATE(3096), - [sym_val_string] = STATE(3096), - [sym__str_double_quotes] = STATE(3056), - [sym_val_list] = STATE(7604), - [sym_val_table] = STATE(3096), - [sym__unquoted_in_list] = STATE(3060), - [sym__unquoted_anonymous_prefix] = STATE(7454), + [sym_expr_parenthesized] = STATE(6097), + [sym_val_range] = STATE(7542), + [sym__val_range] = STATE(7803), + [sym__val_range_with_end] = STATE(7568), + [sym__value] = STATE(7542), + [sym_val_nothing] = STATE(6921), + [sym_val_bool] = STATE(6747), + [sym_val_variable] = STATE(5774), + [sym_val_number] = STATE(6921), + [sym__val_number_decimal] = STATE(5355), + [sym__val_number] = STATE(7088), + [sym_val_duration] = STATE(6921), + [sym_val_filesize] = STATE(6921), + [sym_val_binary] = STATE(6921), + [sym_val_string] = STATE(6921), + [sym__raw_str] = STATE(5521), + [sym__str_double_quotes] = STATE(5521), + [sym_val_interpolated] = STATE(6921), + [sym__inter_single_quotes] = STATE(7044), + [sym__inter_double_quotes] = STATE(7055), + [sym_val_list] = STATE(6921), + [sym_val_record] = STATE(6921), + [sym_val_table] = STATE(6921), + [sym_val_closure] = STATE(6921), + [sym__unquoted_in_record] = STATE(6233), + [sym__unquoted_in_record_with_expr] = STATE(7542), + [sym__unquoted_anonymous_prefix] = STATE(7349), [sym_comment] = STATE(1057), - [aux_sym_shebang_repeat1] = STATE(6550), - [aux_sym__match_pattern_list_repeat1] = STATE(1125), - [anon_sym_true] = ACTIONS(3699), - [anon_sym_false] = ACTIONS(3699), - [anon_sym_null] = ACTIONS(3701), - [aux_sym_cmd_identifier_token38] = ACTIONS(3703), - [aux_sym_cmd_identifier_token39] = ACTIONS(3703), - [aux_sym_cmd_identifier_token40] = ACTIONS(3703), - [sym__newline] = ACTIONS(3705), - [anon_sym_LBRACK] = ACTIONS(3707), - [anon_sym_RBRACK] = ACTIONS(3709), - [anon_sym_LPAREN] = ACTIONS(3711), - [anon_sym_DOLLAR] = ACTIONS(3713), - [anon_sym_LBRACE] = ACTIONS(3715), - [anon_sym_DOT_DOT] = ACTIONS(3717), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3719), - [anon_sym_DOT_DOT_LT] = ACTIONS(3719), - [aux_sym__val_number_decimal_token1] = ACTIONS(3721), - [aux_sym__val_number_decimal_token2] = ACTIONS(3723), - [aux_sym__val_number_decimal_token3] = ACTIONS(3725), - [aux_sym__val_number_decimal_token4] = ACTIONS(3727), - [aux_sym__val_number_token1] = ACTIONS(3729), - [aux_sym__val_number_token2] = ACTIONS(3729), - [aux_sym__val_number_token3] = ACTIONS(3729), - [anon_sym_0b] = ACTIONS(3731), - [anon_sym_0o] = ACTIONS(3733), - [anon_sym_0x] = ACTIONS(3733), - [sym_val_date] = ACTIONS(3735), - [anon_sym_DQUOTE] = ACTIONS(3737), - [sym__str_single_quotes] = ACTIONS(3739), - [sym__str_back_ticks] = ACTIONS(3739), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [anon_sym_err_GT_GT] = ACTIONS(2589), - [anon_sym_out_GT_GT] = ACTIONS(2589), - [anon_sym_e_GT_GT] = ACTIONS(2589), - [anon_sym_o_GT_GT] = ACTIONS(2589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3741), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(3738), + [anon_sym_false] = ACTIONS(3738), + [anon_sym_null] = ACTIONS(3740), + [aux_sym_cmd_identifier_token38] = ACTIONS(3742), + [aux_sym_cmd_identifier_token39] = ACTIONS(3742), + [aux_sym_cmd_identifier_token40] = ACTIONS(3742), + [anon_sym_LBRACK] = ACTIONS(3078), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym_DOLLAR] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_DOT_DOT] = ACTIONS(3744), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3746), + [anon_sym_DOT_DOT_LT] = ACTIONS(3746), + [aux_sym__val_number_decimal_token1] = ACTIONS(3748), + [aux_sym__val_number_decimal_token2] = ACTIONS(3750), + [aux_sym__val_number_decimal_token3] = ACTIONS(3752), + [aux_sym__val_number_decimal_token4] = ACTIONS(3754), + [aux_sym__val_number_token1] = ACTIONS(3060), + [aux_sym__val_number_token2] = ACTIONS(3060), + [aux_sym__val_number_token3] = ACTIONS(3060), + [anon_sym_0b] = ACTIONS(3062), + [anon_sym_0o] = ACTIONS(3064), + [anon_sym_0x] = ACTIONS(3064), + [sym_val_date] = ACTIONS(3756), + [anon_sym_DQUOTE] = ACTIONS(3068), + [sym__str_single_quotes] = ACTIONS(3070), + [sym__str_back_ticks] = ACTIONS(3070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), + [anon_sym_err_GT] = ACTIONS(3684), + [anon_sym_out_GT] = ACTIONS(3684), + [anon_sym_e_GT] = ACTIONS(3684), + [anon_sym_o_GT] = ACTIONS(3684), + [anon_sym_err_PLUSout_GT] = ACTIONS(3684), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3684), + [anon_sym_o_PLUSe_GT] = ACTIONS(3684), + [anon_sym_e_PLUSo_GT] = ACTIONS(3684), + [anon_sym_err_GT_GT] = ACTIONS(3686), + [anon_sym_out_GT_GT] = ACTIONS(3686), + [anon_sym_e_GT_GT] = ACTIONS(3686), + [anon_sym_o_GT_GT] = ACTIONS(3686), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3686), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3686), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3686), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3686), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3758), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3074), }, [1058] = { - [sym_match_arm] = STATE(7167), - [sym_default_arm] = STATE(7167), - [sym_match_pattern] = STATE(7650), - [sym__match_pattern] = STATE(5895), - [sym__match_pattern_expression] = STATE(6770), - [sym__match_pattern_value] = STATE(6771), - [sym__match_pattern_list] = STATE(6772), - [sym__match_pattern_record] = STATE(6774), - [sym_expr_parenthesized] = STATE(5667), - [sym_val_range] = STATE(6771), - [sym__val_range] = STATE(7706), - [sym_val_nothing] = STATE(6776), - [sym_val_bool] = STATE(6086), - [sym_val_variable] = STATE(5668), - [sym_val_number] = STATE(6776), - [sym__val_number_decimal] = STATE(5362), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(6776), - [sym_val_filesize] = STATE(6776), - [sym_val_binary] = STATE(6776), - [sym_val_string] = STATE(6776), - [sym__str_double_quotes] = STATE(1725), - [sym_val_table] = STATE(6776), - [sym_unquoted] = STATE(6780), - [sym__unquoted_anonymous_prefix] = STATE(7496), + [sym_expr_parenthesized] = STATE(6046), + [sym_val_range] = STATE(7519), + [sym__val_range] = STATE(7803), + [sym__val_range_with_end] = STATE(7568), + [sym__value] = STATE(7519), + [sym_val_nothing] = STATE(6921), + [sym_val_bool] = STATE(6747), + [sym_val_variable] = STATE(5774), + [sym_val_number] = STATE(6921), + [sym__val_number_decimal] = STATE(5355), + [sym__val_number] = STATE(7088), + [sym_val_duration] = STATE(6921), + [sym_val_filesize] = STATE(6921), + [sym_val_binary] = STATE(6921), + [sym_val_string] = STATE(6921), + [sym__raw_str] = STATE(5521), + [sym__str_double_quotes] = STATE(5521), + [sym_val_interpolated] = STATE(6921), + [sym__inter_single_quotes] = STATE(7044), + [sym__inter_double_quotes] = STATE(7055), + [sym_val_list] = STATE(6921), + [sym_val_record] = STATE(6921), + [sym_val_table] = STATE(6921), + [sym_val_closure] = STATE(6921), + [sym__unquoted_in_record] = STATE(6224), + [sym__unquoted_in_record_with_expr] = STATE(7519), + [sym__unquoted_anonymous_prefix] = STATE(7349), [sym_comment] = STATE(1058), - [aux_sym_ctrl_match_repeat1] = STATE(1063), - [anon_sym_true] = ACTIONS(3533), - [anon_sym_false] = ACTIONS(3533), - [anon_sym_null] = ACTIONS(3535), - [aux_sym_cmd_identifier_token38] = ACTIONS(3537), - [aux_sym_cmd_identifier_token39] = ACTIONS(3537), - [aux_sym_cmd_identifier_token40] = ACTIONS(3537), - [anon_sym_LBRACK] = ACTIONS(3541), - [anon_sym_LPAREN] = ACTIONS(3543), - [anon_sym_DOLLAR] = ACTIONS(3545), - [anon_sym_LBRACE] = ACTIONS(3547), - [anon_sym__] = ACTIONS(3551), - [anon_sym_DOT_DOT] = ACTIONS(3553), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3555), - [anon_sym_DOT_DOT_LT] = ACTIONS(3555), - [aux_sym__val_number_decimal_token1] = ACTIONS(3557), - [aux_sym__val_number_decimal_token2] = ACTIONS(3559), - [aux_sym__val_number_decimal_token3] = ACTIONS(3561), - [aux_sym__val_number_decimal_token4] = ACTIONS(3563), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3565), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(3738), + [anon_sym_false] = ACTIONS(3738), + [anon_sym_null] = ACTIONS(3740), + [aux_sym_cmd_identifier_token38] = ACTIONS(3742), + [aux_sym_cmd_identifier_token39] = ACTIONS(3742), + [aux_sym_cmd_identifier_token40] = ACTIONS(3742), + [anon_sym_LBRACK] = ACTIONS(3078), + [anon_sym_LPAREN] = ACTIONS(3042), + [anon_sym_DOLLAR] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_DOT_DOT] = ACTIONS(3744), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3746), + [anon_sym_DOT_DOT_LT] = ACTIONS(3746), + [aux_sym__val_number_decimal_token1] = ACTIONS(3748), + [aux_sym__val_number_decimal_token2] = ACTIONS(3750), + [aux_sym__val_number_decimal_token3] = ACTIONS(3752), + [aux_sym__val_number_decimal_token4] = ACTIONS(3754), + [aux_sym__val_number_token1] = ACTIONS(3060), + [aux_sym__val_number_token2] = ACTIONS(3060), + [aux_sym__val_number_token3] = ACTIONS(3060), + [anon_sym_0b] = ACTIONS(3062), + [anon_sym_0o] = ACTIONS(3064), + [anon_sym_0x] = ACTIONS(3064), + [sym_val_date] = ACTIONS(3756), + [anon_sym_DQUOTE] = ACTIONS(3068), + [sym__str_single_quotes] = ACTIONS(3070), + [sym__str_back_ticks] = ACTIONS(3070), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2621), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2623), + [anon_sym_err_GT] = ACTIONS(3684), + [anon_sym_out_GT] = ACTIONS(3684), + [anon_sym_e_GT] = ACTIONS(3684), + [anon_sym_o_GT] = ACTIONS(3684), + [anon_sym_err_PLUSout_GT] = ACTIONS(3684), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3684), + [anon_sym_o_PLUSe_GT] = ACTIONS(3684), + [anon_sym_e_PLUSo_GT] = ACTIONS(3684), + [anon_sym_err_GT_GT] = ACTIONS(3686), + [anon_sym_out_GT_GT] = ACTIONS(3686), + [anon_sym_e_GT_GT] = ACTIONS(3686), + [anon_sym_o_GT_GT] = ACTIONS(3686), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3686), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3686), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3686), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3686), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3758), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3074), }, [1059] = { - [sym_match_arm] = STATE(6694), - [sym_default_arm] = STATE(6694), - [sym_match_pattern] = STATE(7650), - [sym__match_pattern] = STATE(5895), - [sym__match_pattern_expression] = STATE(6770), - [sym__match_pattern_value] = STATE(6771), - [sym__match_pattern_list] = STATE(6772), - [sym__match_pattern_record] = STATE(6774), - [sym_expr_parenthesized] = STATE(5667), - [sym_val_range] = STATE(6771), - [sym__val_range] = STATE(7706), - [sym_val_nothing] = STATE(6776), - [sym_val_bool] = STATE(6086), - [sym_val_variable] = STATE(5668), - [sym_val_number] = STATE(6776), - [sym__val_number_decimal] = STATE(5362), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(6776), - [sym_val_filesize] = STATE(6776), - [sym_val_binary] = STATE(6776), - [sym_val_string] = STATE(6776), - [sym__str_double_quotes] = STATE(1725), - [sym_val_table] = STATE(6776), - [sym_unquoted] = STATE(6780), - [sym__unquoted_anonymous_prefix] = STATE(7496), + [sym_expr_parenthesized] = STATE(501), + [sym_val_range] = STATE(703), + [sym__val_range] = STATE(7913), + [sym__val_range_with_end] = STATE(7469), + [sym__value] = STATE(703), + [sym_val_nothing] = STATE(651), + [sym_val_bool] = STATE(522), + [sym_val_variable] = STATE(454), + [sym_val_number] = STATE(651), + [sym__val_number_decimal] = STATE(244), + [sym__val_number] = STATE(660), + [sym_val_duration] = STATE(651), + [sym_val_filesize] = STATE(651), + [sym_val_binary] = STATE(651), + [sym_val_string] = STATE(651), + [sym__raw_str] = STATE(692), + [sym__str_double_quotes] = STATE(692), + [sym_val_interpolated] = STATE(651), + [sym__inter_single_quotes] = STATE(661), + [sym__inter_double_quotes] = STATE(662), + [sym_val_list] = STATE(651), + [sym_val_record] = STATE(651), + [sym_val_table] = STATE(651), + [sym_val_closure] = STATE(651), + [sym__unquoted_in_record] = STATE(519), + [sym__unquoted_in_record_with_expr] = STATE(703), + [sym__unquoted_anonymous_prefix] = STATE(6932), [sym_comment] = STATE(1059), - [aux_sym_ctrl_match_repeat1] = STATE(1063), - [anon_sym_true] = ACTIONS(3533), - [anon_sym_false] = ACTIONS(3533), - [anon_sym_null] = ACTIONS(3535), - [aux_sym_cmd_identifier_token38] = ACTIONS(3537), - [aux_sym_cmd_identifier_token39] = ACTIONS(3537), - [aux_sym_cmd_identifier_token40] = ACTIONS(3537), - [anon_sym_LBRACK] = ACTIONS(3541), - [anon_sym_LPAREN] = ACTIONS(3543), - [anon_sym_DOLLAR] = ACTIONS(3545), - [anon_sym_LBRACE] = ACTIONS(3547), - [anon_sym__] = ACTIONS(3551), - [anon_sym_DOT_DOT] = ACTIONS(3553), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3555), - [anon_sym_DOT_DOT_LT] = ACTIONS(3555), - [aux_sym__val_number_decimal_token1] = ACTIONS(3557), - [aux_sym__val_number_decimal_token2] = ACTIONS(3559), - [aux_sym__val_number_decimal_token3] = ACTIONS(3561), - [aux_sym__val_number_decimal_token4] = ACTIONS(3563), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3565), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(3692), + [anon_sym_false] = ACTIONS(3692), + [anon_sym_null] = ACTIONS(3694), + [aux_sym_cmd_identifier_token38] = ACTIONS(3696), + [aux_sym_cmd_identifier_token39] = ACTIONS(3696), + [aux_sym_cmd_identifier_token40] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3698), + [anon_sym_LPAREN] = ACTIONS(3700), + [anon_sym_DOLLAR] = ACTIONS(3702), + [anon_sym_LBRACE] = ACTIONS(3704), + [anon_sym_DOT_DOT] = ACTIONS(3706), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3708), + [anon_sym_DOT_DOT_LT] = ACTIONS(3708), + [aux_sym__val_number_decimal_token1] = ACTIONS(3710), + [aux_sym__val_number_decimal_token2] = ACTIONS(3712), + [aux_sym__val_number_decimal_token3] = ACTIONS(3714), + [aux_sym__val_number_decimal_token4] = ACTIONS(3716), + [aux_sym__val_number_token1] = ACTIONS(3718), + [aux_sym__val_number_token2] = ACTIONS(3718), + [aux_sym__val_number_token3] = ACTIONS(3718), + [anon_sym_0b] = ACTIONS(3720), + [anon_sym_0o] = ACTIONS(3722), + [anon_sym_0x] = ACTIONS(3722), + [sym_val_date] = ACTIONS(3724), + [anon_sym_DQUOTE] = ACTIONS(3726), + [sym__str_single_quotes] = ACTIONS(3728), + [sym__str_back_ticks] = ACTIONS(3728), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3730), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3732), + [anon_sym_err_GT] = ACTIONS(3684), + [anon_sym_out_GT] = ACTIONS(3684), + [anon_sym_e_GT] = ACTIONS(3684), + [anon_sym_o_GT] = ACTIONS(3684), + [anon_sym_err_PLUSout_GT] = ACTIONS(3684), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3684), + [anon_sym_o_PLUSe_GT] = ACTIONS(3684), + [anon_sym_e_PLUSo_GT] = ACTIONS(3684), + [anon_sym_err_GT_GT] = ACTIONS(3686), + [anon_sym_out_GT_GT] = ACTIONS(3686), + [anon_sym_e_GT_GT] = ACTIONS(3686), + [anon_sym_o_GT_GT] = ACTIONS(3686), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3686), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3686), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3686), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3686), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3734), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3736), }, [1060] = { - [sym_env_var] = STATE(7340), + [sym__match_pattern_expression] = STATE(3083), + [sym__match_pattern_value] = STATE(3079), + [sym__match_pattern_list] = STATE(3092), + [sym__match_pattern_rest] = STATE(7898), + [sym__match_pattern_record] = STATE(3125), + [sym_expr_parenthesized] = STATE(2897), + [sym_val_range] = STATE(3079), + [sym__val_range] = STATE(7928), + [sym_val_nothing] = STATE(3054), + [sym_val_bool] = STATE(3042), + [sym_val_variable] = STATE(2873), + [sym_val_number] = STATE(3054), + [sym__val_number_decimal] = STATE(2687), + [sym__val_number] = STATE(3094), + [sym_val_duration] = STATE(3054), + [sym_val_filesize] = STATE(3054), + [sym_val_binary] = STATE(3054), + [sym_val_string] = STATE(3054), + [sym__raw_str] = STATE(3122), + [sym__str_double_quotes] = STATE(3122), + [sym_val_list] = STATE(7637), + [sym_val_table] = STATE(3054), + [sym__unquoted_in_list] = STATE(3083), + [sym__unquoted_anonymous_prefix] = STATE(7845), [sym_comment] = STATE(1060), - [aux_sym_pipe_element_repeat2] = STATE(1060), - [aux_sym_cmd_identifier_token1] = ACTIONS(3695), - [aux_sym_cmd_identifier_token2] = ACTIONS(3743), - [aux_sym_cmd_identifier_token3] = ACTIONS(3743), - [aux_sym_cmd_identifier_token4] = ACTIONS(3743), - [aux_sym_cmd_identifier_token5] = ACTIONS(3743), - [aux_sym_cmd_identifier_token6] = ACTIONS(3743), - [aux_sym_cmd_identifier_token7] = ACTIONS(3743), - [aux_sym_cmd_identifier_token8] = ACTIONS(3743), - [aux_sym_cmd_identifier_token9] = ACTIONS(3695), - [aux_sym_cmd_identifier_token10] = ACTIONS(3743), - [aux_sym_cmd_identifier_token11] = ACTIONS(3743), - [aux_sym_cmd_identifier_token12] = ACTIONS(3743), - [aux_sym_cmd_identifier_token13] = ACTIONS(3695), - [aux_sym_cmd_identifier_token14] = ACTIONS(3743), - [aux_sym_cmd_identifier_token15] = ACTIONS(3695), - [aux_sym_cmd_identifier_token16] = ACTIONS(3743), - [aux_sym_cmd_identifier_token17] = ACTIONS(3743), - [aux_sym_cmd_identifier_token18] = ACTIONS(3743), - [aux_sym_cmd_identifier_token19] = ACTIONS(3743), - [aux_sym_cmd_identifier_token20] = ACTIONS(3743), - [aux_sym_cmd_identifier_token21] = ACTIONS(3743), - [aux_sym_cmd_identifier_token22] = ACTIONS(3743), - [aux_sym_cmd_identifier_token23] = ACTIONS(3743), - [aux_sym_cmd_identifier_token24] = ACTIONS(3743), - [aux_sym_cmd_identifier_token25] = ACTIONS(3743), - [aux_sym_cmd_identifier_token26] = ACTIONS(3743), - [aux_sym_cmd_identifier_token27] = ACTIONS(3743), - [aux_sym_cmd_identifier_token28] = ACTIONS(3743), - [aux_sym_cmd_identifier_token29] = ACTIONS(3743), - [aux_sym_cmd_identifier_token30] = ACTIONS(3743), - [aux_sym_cmd_identifier_token31] = ACTIONS(3743), - [aux_sym_cmd_identifier_token32] = ACTIONS(3743), - [aux_sym_cmd_identifier_token33] = ACTIONS(3743), - [aux_sym_cmd_identifier_token34] = ACTIONS(3743), - [aux_sym_cmd_identifier_token35] = ACTIONS(3743), - [aux_sym_cmd_identifier_token36] = ACTIONS(3695), - [anon_sym_true] = ACTIONS(3743), - [anon_sym_false] = ACTIONS(3743), - [anon_sym_null] = ACTIONS(3743), - [aux_sym_cmd_identifier_token38] = ACTIONS(3695), - [aux_sym_cmd_identifier_token39] = ACTIONS(3743), - [aux_sym_cmd_identifier_token40] = ACTIONS(3743), - [anon_sym_LBRACK] = ACTIONS(3743), - [anon_sym_LPAREN] = ACTIONS(3743), - [anon_sym_DOLLAR] = ACTIONS(3695), - [anon_sym_DASH] = ACTIONS(3695), - [anon_sym_LBRACE] = ACTIONS(3743), - [anon_sym_DOT_DOT] = ACTIONS(3695), - [aux_sym_expr_unary_token1] = ACTIONS(3743), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3743), - [anon_sym_DOT_DOT_LT] = ACTIONS(3743), - [aux_sym__val_number_decimal_token1] = ACTIONS(3695), - [aux_sym__val_number_decimal_token2] = ACTIONS(3743), - [aux_sym__val_number_decimal_token3] = ACTIONS(3743), - [aux_sym__val_number_decimal_token4] = ACTIONS(3743), - [aux_sym__val_number_token1] = ACTIONS(3743), - [aux_sym__val_number_token2] = ACTIONS(3743), - [aux_sym__val_number_token3] = ACTIONS(3743), - [anon_sym_0b] = ACTIONS(3695), - [anon_sym_0o] = ACTIONS(3695), - [anon_sym_0x] = ACTIONS(3695), - [sym_val_date] = ACTIONS(3743), - [anon_sym_DQUOTE] = ACTIONS(3743), - [sym__str_single_quotes] = ACTIONS(3743), - [sym__str_back_ticks] = ACTIONS(3743), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3743), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3743), - [aux_sym_env_var_token1] = ACTIONS(3745), - [anon_sym_CARET] = ACTIONS(3743), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(6733), + [aux_sym__match_pattern_list_repeat1] = STATE(1148), + [anon_sym_true] = ACTIONS(3760), + [anon_sym_false] = ACTIONS(3760), + [anon_sym_null] = ACTIONS(3762), + [aux_sym_cmd_identifier_token38] = ACTIONS(3764), + [aux_sym_cmd_identifier_token39] = ACTIONS(3764), + [aux_sym_cmd_identifier_token40] = ACTIONS(3764), + [sym__newline] = ACTIONS(3766), + [anon_sym_LBRACK] = ACTIONS(3768), + [anon_sym_RBRACK] = ACTIONS(3770), + [anon_sym_LPAREN] = ACTIONS(3772), + [anon_sym_DOLLAR] = ACTIONS(3774), + [anon_sym_LBRACE] = ACTIONS(3776), + [anon_sym_DOT_DOT] = ACTIONS(3778), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3780), + [anon_sym_DOT_DOT_LT] = ACTIONS(3780), + [aux_sym__val_number_decimal_token1] = ACTIONS(3782), + [aux_sym__val_number_decimal_token2] = ACTIONS(3784), + [aux_sym__val_number_decimal_token3] = ACTIONS(3786), + [aux_sym__val_number_decimal_token4] = ACTIONS(3788), + [aux_sym__val_number_token1] = ACTIONS(3790), + [aux_sym__val_number_token2] = ACTIONS(3790), + [aux_sym__val_number_token3] = ACTIONS(3790), + [anon_sym_0b] = ACTIONS(3792), + [anon_sym_0o] = ACTIONS(3794), + [anon_sym_0x] = ACTIONS(3794), + [sym_val_date] = ACTIONS(3796), + [anon_sym_DQUOTE] = ACTIONS(3798), + [sym__str_single_quotes] = ACTIONS(3800), + [sym__str_back_ticks] = ACTIONS(3800), + [anon_sym_err_GT] = ACTIONS(2627), + [anon_sym_out_GT] = ACTIONS(2627), + [anon_sym_e_GT] = ACTIONS(2627), + [anon_sym_o_GT] = ACTIONS(2627), + [anon_sym_err_PLUSout_GT] = ACTIONS(2627), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), + [anon_sym_o_PLUSe_GT] = ACTIONS(2627), + [anon_sym_e_PLUSo_GT] = ACTIONS(2627), + [anon_sym_err_GT_GT] = ACTIONS(2629), + [anon_sym_out_GT_GT] = ACTIONS(2629), + [anon_sym_e_GT_GT] = ACTIONS(2629), + [anon_sym_o_GT_GT] = ACTIONS(2629), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3802), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3804), }, [1061] = { + [sym__match_pattern_expression] = STATE(3083), + [sym__match_pattern_value] = STATE(3079), + [sym__match_pattern_list] = STATE(3092), + [sym__match_pattern_rest] = STATE(7626), + [sym__match_pattern_record] = STATE(3125), + [sym_expr_parenthesized] = STATE(2897), + [sym_val_range] = STATE(3079), + [sym__val_range] = STATE(7928), + [sym_val_nothing] = STATE(3054), + [sym_val_bool] = STATE(3042), + [sym_val_variable] = STATE(2873), + [sym_val_number] = STATE(3054), + [sym__val_number_decimal] = STATE(2687), + [sym__val_number] = STATE(3094), + [sym_val_duration] = STATE(3054), + [sym_val_filesize] = STATE(3054), + [sym_val_binary] = STATE(3054), + [sym_val_string] = STATE(3054), + [sym__raw_str] = STATE(3122), + [sym__str_double_quotes] = STATE(3122), + [sym_val_list] = STATE(7611), + [sym_val_table] = STATE(3054), + [sym__unquoted_in_list] = STATE(3083), + [sym__unquoted_anonymous_prefix] = STATE(7845), [sym_comment] = STATE(1061), - [aux_sym_shebang_repeat1] = STATE(1061), - [aux_sym_cmd_identifier_token1] = ACTIONS(1313), - [aux_sym_cmd_identifier_token2] = ACTIONS(1315), - [aux_sym_cmd_identifier_token3] = ACTIONS(1315), - [aux_sym_cmd_identifier_token4] = ACTIONS(1315), - [aux_sym_cmd_identifier_token5] = ACTIONS(1315), - [aux_sym_cmd_identifier_token6] = ACTIONS(1315), - [aux_sym_cmd_identifier_token7] = ACTIONS(1315), - [aux_sym_cmd_identifier_token8] = ACTIONS(1315), - [aux_sym_cmd_identifier_token9] = ACTIONS(1313), - [aux_sym_cmd_identifier_token10] = ACTIONS(1315), - [aux_sym_cmd_identifier_token11] = ACTIONS(1315), - [aux_sym_cmd_identifier_token12] = ACTIONS(1315), - [aux_sym_cmd_identifier_token13] = ACTIONS(1313), - [aux_sym_cmd_identifier_token14] = ACTIONS(1315), - [aux_sym_cmd_identifier_token15] = ACTIONS(1313), - [aux_sym_cmd_identifier_token16] = ACTIONS(1315), - [aux_sym_cmd_identifier_token17] = ACTIONS(1315), - [aux_sym_cmd_identifier_token18] = ACTIONS(1315), - [aux_sym_cmd_identifier_token19] = ACTIONS(1315), - [aux_sym_cmd_identifier_token20] = ACTIONS(1315), - [aux_sym_cmd_identifier_token21] = ACTIONS(1315), - [aux_sym_cmd_identifier_token22] = ACTIONS(1315), - [aux_sym_cmd_identifier_token23] = ACTIONS(1313), - [aux_sym_cmd_identifier_token24] = ACTIONS(1315), - [aux_sym_cmd_identifier_token25] = ACTIONS(1315), - [aux_sym_cmd_identifier_token26] = ACTIONS(1315), - [aux_sym_cmd_identifier_token27] = ACTIONS(1315), - [aux_sym_cmd_identifier_token28] = ACTIONS(1315), - [aux_sym_cmd_identifier_token29] = ACTIONS(1315), - [aux_sym_cmd_identifier_token30] = ACTIONS(1315), - [aux_sym_cmd_identifier_token31] = ACTIONS(1315), - [aux_sym_cmd_identifier_token32] = ACTIONS(1315), - [aux_sym_cmd_identifier_token33] = ACTIONS(1315), - [aux_sym_cmd_identifier_token34] = ACTIONS(1315), - [aux_sym_cmd_identifier_token35] = ACTIONS(1315), - [aux_sym_cmd_identifier_token36] = ACTIONS(1313), - [anon_sym_true] = ACTIONS(1315), - [anon_sym_false] = ACTIONS(1315), - [anon_sym_null] = ACTIONS(1315), - [aux_sym_cmd_identifier_token38] = ACTIONS(1313), - [aux_sym_cmd_identifier_token39] = ACTIONS(1315), - [aux_sym_cmd_identifier_token40] = ACTIONS(1315), - [sym__newline] = ACTIONS(3748), - [anon_sym_LBRACK] = ACTIONS(1315), - [anon_sym_LPAREN] = ACTIONS(1315), - [anon_sym_DOLLAR] = ACTIONS(1313), - [anon_sym_DASH] = ACTIONS(1313), - [anon_sym_if] = ACTIONS(1313), - [anon_sym_LBRACE] = ACTIONS(1315), - [anon_sym_DOT_DOT] = ACTIONS(1313), - [aux_sym_expr_unary_token1] = ACTIONS(1315), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1315), - [anon_sym_DOT_DOT_LT] = ACTIONS(1315), - [aux_sym__val_number_decimal_token1] = ACTIONS(1313), - [aux_sym__val_number_decimal_token2] = ACTIONS(1315), - [aux_sym__val_number_decimal_token3] = ACTIONS(1315), - [aux_sym__val_number_decimal_token4] = ACTIONS(1315), - [aux_sym__val_number_token1] = ACTIONS(1315), - [aux_sym__val_number_token2] = ACTIONS(1315), - [aux_sym__val_number_token3] = ACTIONS(1315), - [anon_sym_0b] = ACTIONS(1313), - [anon_sym_0o] = ACTIONS(1313), - [anon_sym_0x] = ACTIONS(1313), - [sym_val_date] = ACTIONS(1315), - [anon_sym_DQUOTE] = ACTIONS(1315), - [sym__str_single_quotes] = ACTIONS(1315), - [sym__str_back_ticks] = ACTIONS(1315), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1315), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1315), - [anon_sym_CARET] = ACTIONS(1315), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(6469), + [aux_sym__match_pattern_list_repeat1] = STATE(1102), + [anon_sym_true] = ACTIONS(3760), + [anon_sym_false] = ACTIONS(3760), + [anon_sym_null] = ACTIONS(3762), + [aux_sym_cmd_identifier_token38] = ACTIONS(3764), + [aux_sym_cmd_identifier_token39] = ACTIONS(3764), + [aux_sym_cmd_identifier_token40] = ACTIONS(3764), + [sym__newline] = ACTIONS(3766), + [anon_sym_LBRACK] = ACTIONS(3768), + [anon_sym_RBRACK] = ACTIONS(3806), + [anon_sym_LPAREN] = ACTIONS(3772), + [anon_sym_DOLLAR] = ACTIONS(3774), + [anon_sym_LBRACE] = ACTIONS(3776), + [anon_sym_DOT_DOT] = ACTIONS(3808), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3780), + [anon_sym_DOT_DOT_LT] = ACTIONS(3780), + [aux_sym__val_number_decimal_token1] = ACTIONS(3782), + [aux_sym__val_number_decimal_token2] = ACTIONS(3784), + [aux_sym__val_number_decimal_token3] = ACTIONS(3786), + [aux_sym__val_number_decimal_token4] = ACTIONS(3788), + [aux_sym__val_number_token1] = ACTIONS(3790), + [aux_sym__val_number_token2] = ACTIONS(3790), + [aux_sym__val_number_token3] = ACTIONS(3790), + [anon_sym_0b] = ACTIONS(3792), + [anon_sym_0o] = ACTIONS(3794), + [anon_sym_0x] = ACTIONS(3794), + [sym_val_date] = ACTIONS(3796), + [anon_sym_DQUOTE] = ACTIONS(3798), + [sym__str_single_quotes] = ACTIONS(3800), + [sym__str_back_ticks] = ACTIONS(3800), + [anon_sym_err_GT] = ACTIONS(2627), + [anon_sym_out_GT] = ACTIONS(2627), + [anon_sym_e_GT] = ACTIONS(2627), + [anon_sym_o_GT] = ACTIONS(2627), + [anon_sym_err_PLUSout_GT] = ACTIONS(2627), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), + [anon_sym_o_PLUSe_GT] = ACTIONS(2627), + [anon_sym_e_PLUSo_GT] = ACTIONS(2627), + [anon_sym_err_GT_GT] = ACTIONS(2629), + [anon_sym_out_GT_GT] = ACTIONS(2629), + [anon_sym_e_GT_GT] = ACTIONS(2629), + [anon_sym_o_GT_GT] = ACTIONS(2629), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3802), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3804), }, [1062] = { - [sym_match_arm] = STATE(6696), - [sym_default_arm] = STATE(6696), - [sym_match_pattern] = STATE(7650), - [sym__match_pattern] = STATE(5895), - [sym__match_pattern_expression] = STATE(6770), - [sym__match_pattern_value] = STATE(6771), - [sym__match_pattern_list] = STATE(6772), - [sym__match_pattern_record] = STATE(6774), - [sym_expr_parenthesized] = STATE(5667), - [sym_val_range] = STATE(6771), - [sym__val_range] = STATE(7706), - [sym_val_nothing] = STATE(6776), - [sym_val_bool] = STATE(6086), - [sym_val_variable] = STATE(5668), - [sym_val_number] = STATE(6776), - [sym__val_number_decimal] = STATE(5362), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(6776), - [sym_val_filesize] = STATE(6776), - [sym_val_binary] = STATE(6776), - [sym_val_string] = STATE(6776), - [sym__str_double_quotes] = STATE(1725), - [sym_val_table] = STATE(6776), - [sym_unquoted] = STATE(6780), - [sym__unquoted_anonymous_prefix] = STATE(7496), [sym_comment] = STATE(1062), - [aux_sym_ctrl_match_repeat1] = STATE(1063), - [anon_sym_true] = ACTIONS(3533), - [anon_sym_false] = ACTIONS(3533), - [anon_sym_null] = ACTIONS(3535), - [aux_sym_cmd_identifier_token38] = ACTIONS(3537), - [aux_sym_cmd_identifier_token39] = ACTIONS(3537), - [aux_sym_cmd_identifier_token40] = ACTIONS(3537), - [anon_sym_LBRACK] = ACTIONS(3541), - [anon_sym_LPAREN] = ACTIONS(3543), - [anon_sym_DOLLAR] = ACTIONS(3545), - [anon_sym_LBRACE] = ACTIONS(3547), - [anon_sym__] = ACTIONS(3551), - [anon_sym_DOT_DOT] = ACTIONS(3553), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3555), - [anon_sym_DOT_DOT_LT] = ACTIONS(3555), - [aux_sym__val_number_decimal_token1] = ACTIONS(3557), - [aux_sym__val_number_decimal_token2] = ACTIONS(3559), - [aux_sym__val_number_decimal_token3] = ACTIONS(3561), - [aux_sym__val_number_decimal_token4] = ACTIONS(3563), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3565), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_ctrl_do_parenthesized_repeat2] = STATE(1062), + [aux_sym_cmd_identifier_token1] = ACTIONS(3810), + [aux_sym_cmd_identifier_token2] = ACTIONS(3810), + [aux_sym_cmd_identifier_token3] = ACTIONS(3810), + [aux_sym_cmd_identifier_token4] = ACTIONS(3810), + [aux_sym_cmd_identifier_token5] = ACTIONS(3810), + [aux_sym_cmd_identifier_token6] = ACTIONS(3810), + [aux_sym_cmd_identifier_token7] = ACTIONS(3810), + [aux_sym_cmd_identifier_token8] = ACTIONS(3810), + [aux_sym_cmd_identifier_token9] = ACTIONS(3810), + [aux_sym_cmd_identifier_token10] = ACTIONS(3810), + [aux_sym_cmd_identifier_token11] = ACTIONS(3810), + [aux_sym_cmd_identifier_token12] = ACTIONS(3810), + [aux_sym_cmd_identifier_token13] = ACTIONS(3810), + [aux_sym_cmd_identifier_token14] = ACTIONS(3810), + [aux_sym_cmd_identifier_token15] = ACTIONS(3810), + [aux_sym_cmd_identifier_token16] = ACTIONS(3810), + [aux_sym_cmd_identifier_token17] = ACTIONS(3810), + [aux_sym_cmd_identifier_token18] = ACTIONS(3810), + [aux_sym_cmd_identifier_token19] = ACTIONS(3810), + [aux_sym_cmd_identifier_token20] = ACTIONS(3810), + [aux_sym_cmd_identifier_token21] = ACTIONS(3810), + [aux_sym_cmd_identifier_token22] = ACTIONS(3810), + [aux_sym_cmd_identifier_token23] = ACTIONS(3810), + [aux_sym_cmd_identifier_token24] = ACTIONS(3810), + [aux_sym_cmd_identifier_token25] = ACTIONS(3810), + [aux_sym_cmd_identifier_token26] = ACTIONS(3810), + [aux_sym_cmd_identifier_token27] = ACTIONS(3810), + [aux_sym_cmd_identifier_token28] = ACTIONS(3810), + [aux_sym_cmd_identifier_token29] = ACTIONS(3810), + [aux_sym_cmd_identifier_token30] = ACTIONS(3810), + [aux_sym_cmd_identifier_token31] = ACTIONS(3810), + [aux_sym_cmd_identifier_token32] = ACTIONS(3810), + [aux_sym_cmd_identifier_token33] = ACTIONS(3810), + [aux_sym_cmd_identifier_token34] = ACTIONS(3810), + [aux_sym_cmd_identifier_token35] = ACTIONS(3810), + [aux_sym_cmd_identifier_token36] = ACTIONS(3810), + [anon_sym_true] = ACTIONS(3810), + [anon_sym_false] = ACTIONS(3810), + [anon_sym_null] = ACTIONS(3810), + [aux_sym_cmd_identifier_token38] = ACTIONS(3810), + [aux_sym_cmd_identifier_token39] = ACTIONS(3810), + [aux_sym_cmd_identifier_token40] = ACTIONS(3810), + [sym__newline] = ACTIONS(3812), + [sym__space] = ACTIONS(3815), + [anon_sym_LBRACK] = ACTIONS(3810), + [anon_sym_LPAREN] = ACTIONS(3810), + [anon_sym_DOLLAR] = ACTIONS(3810), + [anon_sym_DASH] = ACTIONS(3810), + [anon_sym_LBRACE] = ACTIONS(3810), + [anon_sym_DOT_DOT] = ACTIONS(3810), + [aux_sym_expr_unary_token1] = ACTIONS(3810), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3810), + [anon_sym_DOT_DOT_LT] = ACTIONS(3810), + [aux_sym__val_number_decimal_token1] = ACTIONS(3810), + [aux_sym__val_number_decimal_token2] = ACTIONS(3810), + [aux_sym__val_number_decimal_token3] = ACTIONS(3810), + [aux_sym__val_number_decimal_token4] = ACTIONS(3810), + [aux_sym__val_number_token1] = ACTIONS(3810), + [aux_sym__val_number_token2] = ACTIONS(3810), + [aux_sym__val_number_token3] = ACTIONS(3810), + [anon_sym_0b] = ACTIONS(3810), + [anon_sym_0o] = ACTIONS(3810), + [anon_sym_0x] = ACTIONS(3810), + [sym_val_date] = ACTIONS(3810), + [anon_sym_DQUOTE] = ACTIONS(3810), + [sym__str_single_quotes] = ACTIONS(3810), + [sym__str_back_ticks] = ACTIONS(3810), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3810), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3810), + [aux_sym_env_var_token1] = ACTIONS(3810), + [anon_sym_CARET] = ACTIONS(3810), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(3818), }, [1063] = { - [sym_match_arm] = STATE(7305), - [sym_default_arm] = STATE(7305), - [sym_match_pattern] = STATE(7650), - [sym__match_pattern] = STATE(5895), - [sym__match_pattern_expression] = STATE(6770), - [sym__match_pattern_value] = STATE(6771), - [sym__match_pattern_list] = STATE(6772), - [sym__match_pattern_record] = STATE(6774), - [sym_expr_parenthesized] = STATE(5667), - [sym_val_range] = STATE(6771), - [sym__val_range] = STATE(7706), - [sym_val_nothing] = STATE(6776), - [sym_val_bool] = STATE(6086), - [sym_val_variable] = STATE(5668), - [sym_val_number] = STATE(6776), - [sym__val_number_decimal] = STATE(5362), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(6776), - [sym_val_filesize] = STATE(6776), - [sym_val_binary] = STATE(6776), - [sym_val_string] = STATE(6776), - [sym__str_double_quotes] = STATE(1725), - [sym_val_table] = STATE(6776), - [sym_unquoted] = STATE(6780), - [sym__unquoted_anonymous_prefix] = STATE(7496), [sym_comment] = STATE(1063), - [aux_sym_ctrl_match_repeat1] = STATE(1063), - [anon_sym_true] = ACTIONS(3751), - [anon_sym_false] = ACTIONS(3751), - [anon_sym_null] = ACTIONS(3754), - [aux_sym_cmd_identifier_token38] = ACTIONS(3757), - [aux_sym_cmd_identifier_token39] = ACTIONS(3757), - [aux_sym_cmd_identifier_token40] = ACTIONS(3757), - [anon_sym_LBRACK] = ACTIONS(3760), - [anon_sym_LPAREN] = ACTIONS(3763), - [anon_sym_DOLLAR] = ACTIONS(3766), - [anon_sym_LBRACE] = ACTIONS(3769), - [anon_sym__] = ACTIONS(3772), - [anon_sym_DOT_DOT] = ACTIONS(3775), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3778), - [anon_sym_DOT_DOT_LT] = ACTIONS(3778), - [aux_sym__val_number_decimal_token1] = ACTIONS(3781), - [aux_sym__val_number_decimal_token2] = ACTIONS(3784), - [aux_sym__val_number_decimal_token3] = ACTIONS(3787), - [aux_sym__val_number_decimal_token4] = ACTIONS(3790), - [aux_sym__val_number_token1] = ACTIONS(3793), - [aux_sym__val_number_token2] = ACTIONS(3793), - [aux_sym__val_number_token3] = ACTIONS(3793), - [anon_sym_0b] = ACTIONS(3796), - [anon_sym_0o] = ACTIONS(3799), - [anon_sym_0x] = ACTIONS(3799), - [sym_val_date] = ACTIONS(3802), - [anon_sym_DQUOTE] = ACTIONS(3805), - [sym__str_single_quotes] = ACTIONS(3808), - [sym__str_back_ticks] = ACTIONS(3808), - [anon_sym_err_GT] = ACTIONS(3811), - [anon_sym_out_GT] = ACTIONS(3811), - [anon_sym_e_GT] = ACTIONS(3811), - [anon_sym_o_GT] = ACTIONS(3811), - [anon_sym_err_PLUSout_GT] = ACTIONS(3811), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3811), - [anon_sym_o_PLUSe_GT] = ACTIONS(3811), - [anon_sym_e_PLUSo_GT] = ACTIONS(3811), - [anon_sym_err_GT_GT] = ACTIONS(3814), - [anon_sym_out_GT_GT] = ACTIONS(3814), - [anon_sym_e_GT_GT] = ACTIONS(3814), - [anon_sym_o_GT_GT] = ACTIONS(3814), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3814), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3814), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3814), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3814), - [aux_sym_unquoted_token1] = ACTIONS(3817), - [anon_sym_POUND] = ACTIONS(247), - }, - [1064] = { - [sym_match_arm] = STATE(6757), - [sym_default_arm] = STATE(6757), - [sym_match_pattern] = STATE(7650), - [sym__match_pattern] = STATE(5895), - [sym__match_pattern_expression] = STATE(6770), - [sym__match_pattern_value] = STATE(6771), - [sym__match_pattern_list] = STATE(6772), - [sym__match_pattern_record] = STATE(6774), - [sym_expr_parenthesized] = STATE(5667), - [sym_val_range] = STATE(6771), - [sym__val_range] = STATE(7706), - [sym_val_nothing] = STATE(6776), - [sym_val_bool] = STATE(6086), - [sym_val_variable] = STATE(5668), - [sym_val_number] = STATE(6776), - [sym__val_number_decimal] = STATE(5362), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(6776), - [sym_val_filesize] = STATE(6776), - [sym_val_binary] = STATE(6776), - [sym_val_string] = STATE(6776), - [sym__str_double_quotes] = STATE(1725), - [sym_val_table] = STATE(6776), - [sym_unquoted] = STATE(6780), - [sym__unquoted_anonymous_prefix] = STATE(7496), - [sym_comment] = STATE(1064), - [aux_sym_ctrl_match_repeat1] = STATE(1063), - [anon_sym_true] = ACTIONS(3533), - [anon_sym_false] = ACTIONS(3533), - [anon_sym_null] = ACTIONS(3535), - [aux_sym_cmd_identifier_token38] = ACTIONS(3537), - [aux_sym_cmd_identifier_token39] = ACTIONS(3537), - [aux_sym_cmd_identifier_token40] = ACTIONS(3537), - [anon_sym_LBRACK] = ACTIONS(3541), - [anon_sym_LPAREN] = ACTIONS(3543), - [anon_sym_DOLLAR] = ACTIONS(3545), - [anon_sym_LBRACE] = ACTIONS(3547), - [anon_sym__] = ACTIONS(3551), - [anon_sym_DOT_DOT] = ACTIONS(3553), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3555), - [anon_sym_DOT_DOT_LT] = ACTIONS(3555), - [aux_sym__val_number_decimal_token1] = ACTIONS(3557), - [aux_sym__val_number_decimal_token2] = ACTIONS(3559), - [aux_sym__val_number_decimal_token3] = ACTIONS(3561), - [aux_sym__val_number_decimal_token4] = ACTIONS(3563), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3565), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), - }, - [1065] = { - [sym_env_var] = STATE(7165), - [sym_comment] = STATE(1065), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1065), - [aux_sym_cmd_identifier_token1] = ACTIONS(3581), + [aux_sym_ctrl_do_parenthesized_repeat2] = STATE(1062), + [aux_sym_cmd_identifier_token1] = ACTIONS(3820), [aux_sym_cmd_identifier_token2] = ACTIONS(3820), [aux_sym_cmd_identifier_token3] = ACTIONS(3820), [aux_sym_cmd_identifier_token4] = ACTIONS(3820), @@ -181959,13 +184447,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token6] = ACTIONS(3820), [aux_sym_cmd_identifier_token7] = ACTIONS(3820), [aux_sym_cmd_identifier_token8] = ACTIONS(3820), - [aux_sym_cmd_identifier_token9] = ACTIONS(3581), + [aux_sym_cmd_identifier_token9] = ACTIONS(3820), [aux_sym_cmd_identifier_token10] = ACTIONS(3820), [aux_sym_cmd_identifier_token11] = ACTIONS(3820), [aux_sym_cmd_identifier_token12] = ACTIONS(3820), - [aux_sym_cmd_identifier_token13] = ACTIONS(3581), + [aux_sym_cmd_identifier_token13] = ACTIONS(3820), [aux_sym_cmd_identifier_token14] = ACTIONS(3820), - [aux_sym_cmd_identifier_token15] = ACTIONS(3581), + [aux_sym_cmd_identifier_token15] = ACTIONS(3820), [aux_sym_cmd_identifier_token16] = ACTIONS(3820), [aux_sym_cmd_identifier_token17] = ACTIONS(3820), [aux_sym_cmd_identifier_token18] = ACTIONS(3820), @@ -181986,2558 +184474,2106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token33] = ACTIONS(3820), [aux_sym_cmd_identifier_token34] = ACTIONS(3820), [aux_sym_cmd_identifier_token35] = ACTIONS(3820), - [aux_sym_cmd_identifier_token36] = ACTIONS(3581), + [aux_sym_cmd_identifier_token36] = ACTIONS(3820), [anon_sym_true] = ACTIONS(3820), [anon_sym_false] = ACTIONS(3820), [anon_sym_null] = ACTIONS(3820), - [aux_sym_cmd_identifier_token38] = ACTIONS(3581), + [aux_sym_cmd_identifier_token38] = ACTIONS(3820), [aux_sym_cmd_identifier_token39] = ACTIONS(3820), [aux_sym_cmd_identifier_token40] = ACTIONS(3820), + [sym__newline] = ACTIONS(3822), + [sym__space] = ACTIONS(3824), [anon_sym_LBRACK] = ACTIONS(3820), [anon_sym_LPAREN] = ACTIONS(3820), - [anon_sym_DOLLAR] = ACTIONS(3581), - [anon_sym_DASH] = ACTIONS(3581), + [anon_sym_DOLLAR] = ACTIONS(3820), + [anon_sym_DASH] = ACTIONS(3820), [anon_sym_LBRACE] = ACTIONS(3820), - [anon_sym_DOT_DOT] = ACTIONS(3581), + [anon_sym_DOT_DOT] = ACTIONS(3820), [aux_sym_expr_unary_token1] = ACTIONS(3820), [anon_sym_DOT_DOT_EQ] = ACTIONS(3820), [anon_sym_DOT_DOT_LT] = ACTIONS(3820), - [aux_sym__val_number_decimal_token1] = ACTIONS(3581), + [aux_sym__val_number_decimal_token1] = ACTIONS(3820), [aux_sym__val_number_decimal_token2] = ACTIONS(3820), [aux_sym__val_number_decimal_token3] = ACTIONS(3820), [aux_sym__val_number_decimal_token4] = ACTIONS(3820), [aux_sym__val_number_token1] = ACTIONS(3820), [aux_sym__val_number_token2] = ACTIONS(3820), [aux_sym__val_number_token3] = ACTIONS(3820), - [anon_sym_0b] = ACTIONS(3581), - [anon_sym_0o] = ACTIONS(3581), - [anon_sym_0x] = ACTIONS(3581), + [anon_sym_0b] = ACTIONS(3820), + [anon_sym_0o] = ACTIONS(3820), + [anon_sym_0x] = ACTIONS(3820), [sym_val_date] = ACTIONS(3820), [anon_sym_DQUOTE] = ACTIONS(3820), [sym__str_single_quotes] = ACTIONS(3820), [sym__str_back_ticks] = ACTIONS(3820), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3820), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3820), - [aux_sym_env_var_token1] = ACTIONS(3822), + [aux_sym_env_var_token1] = ACTIONS(3820), [anon_sym_CARET] = ACTIONS(3820), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(3826), + }, + [1064] = { + [sym_expr_parenthesized] = STATE(6655), + [sym_val_range] = STATE(7881), + [sym__val_range] = STATE(7794), + [sym__value] = STATE(7881), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3688), + [sym_val_variable] = STATE(3649), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(5638), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(4434), + [sym__str_double_quotes] = STATE(4434), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(7885), + [sym__unquoted_anonymous_prefix] = STATE(7859), + [sym_comment] = STATE(1064), + [anon_sym_true] = ACTIONS(3350), + [anon_sym_false] = ACTIONS(3350), + [anon_sym_null] = ACTIONS(3352), + [aux_sym_cmd_identifier_token38] = ACTIONS(3828), + [aux_sym_cmd_identifier_token39] = ACTIONS(3828), + [aux_sym_cmd_identifier_token40] = ACTIONS(3828), + [anon_sym_LBRACK] = ACTIONS(3830), + [anon_sym_LPAREN] = ACTIONS(3832), + [anon_sym_DOLLAR] = ACTIONS(3834), + [anon_sym_LBRACE] = ACTIONS(3836), + [anon_sym_DOT_DOT] = ACTIONS(3838), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3840), + [anon_sym_DOT_DOT_LT] = ACTIONS(3840), + [aux_sym__val_number_decimal_token1] = ACTIONS(3366), + [aux_sym__val_number_decimal_token2] = ACTIONS(3368), + [aux_sym__val_number_decimal_token3] = ACTIONS(3370), + [aux_sym__val_number_decimal_token4] = ACTIONS(3372), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3374), + [anon_sym_DQUOTE] = ACTIONS(3842), + [sym__str_single_quotes] = ACTIONS(3844), + [sym__str_back_ticks] = ACTIONS(3844), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [aux_sym_record_entry_token1] = ACTIONS(3294), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3846), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3848), + }, + [1065] = { + [sym_match_arm] = STATE(7083), + [sym_default_arm] = STATE(7083), + [sym_match_pattern] = STATE(7768), + [sym__match_pattern] = STATE(5996), + [sym__match_pattern_expression] = STATE(6925), + [sym__match_pattern_value] = STATE(6926), + [sym__match_pattern_list] = STATE(6929), + [sym__match_pattern_record] = STATE(6939), + [sym_expr_parenthesized] = STATE(5899), + [sym_val_range] = STATE(6926), + [sym__val_range] = STATE(7854), + [sym_val_nothing] = STATE(6967), + [sym_val_bool] = STATE(6204), + [sym_val_variable] = STATE(5900), + [sym_val_number] = STATE(6967), + [sym__val_number_decimal] = STATE(5395), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(6967), + [sym_val_filesize] = STATE(6967), + [sym_val_binary] = STATE(6967), + [sym_val_string] = STATE(6967), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_table] = STATE(6967), + [sym_unquoted] = STATE(7021), + [sym__unquoted_anonymous_prefix] = STATE(7685), + [sym_comment] = STATE(1065), + [aux_sym_ctrl_match_repeat1] = STATE(1066), + [anon_sym_true] = ACTIONS(3604), + [anon_sym_false] = ACTIONS(3604), + [anon_sym_null] = ACTIONS(3606), + [aux_sym_cmd_identifier_token38] = ACTIONS(3608), + [aux_sym_cmd_identifier_token39] = ACTIONS(3608), + [aux_sym_cmd_identifier_token40] = ACTIONS(3608), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_LPAREN] = ACTIONS(3614), + [anon_sym_DOLLAR] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(3618), + [anon_sym__] = ACTIONS(3622), + [anon_sym_DOT_DOT] = ACTIONS(3624), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3626), + [anon_sym_DOT_DOT_LT] = ACTIONS(3626), + [aux_sym__val_number_decimal_token1] = ACTIONS(3628), + [aux_sym__val_number_decimal_token2] = ACTIONS(3630), + [aux_sym__val_number_decimal_token3] = ACTIONS(3632), + [aux_sym__val_number_decimal_token4] = ACTIONS(3634), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3636), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [1066] = { - [sym__match_pattern_expression] = STATE(3060), - [sym__match_pattern_value] = STATE(3093), - [sym__match_pattern_list] = STATE(3094), - [sym__match_pattern_rest] = STATE(7698), - [sym__match_pattern_record] = STATE(3095), - [sym_expr_parenthesized] = STATE(2884), - [sym_val_range] = STATE(3093), - [sym__val_range] = STATE(7378), - [sym_val_nothing] = STATE(3096), - [sym_val_bool] = STATE(3015), - [sym_val_variable] = STATE(2885), - [sym_val_number] = STATE(3096), - [sym__val_number_decimal] = STATE(2627), - [sym__val_number] = STATE(3088), - [sym_val_duration] = STATE(3096), - [sym_val_filesize] = STATE(3096), - [sym_val_binary] = STATE(3096), - [sym_val_string] = STATE(3096), - [sym__str_double_quotes] = STATE(3056), - [sym_val_list] = STATE(7644), - [sym_val_table] = STATE(3096), - [sym__unquoted_in_list] = STATE(3060), - [sym__unquoted_anonymous_prefix] = STATE(7454), + [sym_match_arm] = STATE(7407), + [sym_default_arm] = STATE(7407), + [sym_match_pattern] = STATE(7768), + [sym__match_pattern] = STATE(5996), + [sym__match_pattern_expression] = STATE(6925), + [sym__match_pattern_value] = STATE(6926), + [sym__match_pattern_list] = STATE(6929), + [sym__match_pattern_record] = STATE(6939), + [sym_expr_parenthesized] = STATE(5899), + [sym_val_range] = STATE(6926), + [sym__val_range] = STATE(7854), + [sym_val_nothing] = STATE(6967), + [sym_val_bool] = STATE(6204), + [sym_val_variable] = STATE(5900), + [sym_val_number] = STATE(6967), + [sym__val_number_decimal] = STATE(5395), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(6967), + [sym_val_filesize] = STATE(6967), + [sym_val_binary] = STATE(6967), + [sym_val_string] = STATE(6967), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_table] = STATE(6967), + [sym_unquoted] = STATE(7021), + [sym__unquoted_anonymous_prefix] = STATE(7685), [sym_comment] = STATE(1066), - [aux_sym_shebang_repeat1] = STATE(6585), - [aux_sym__match_pattern_list_repeat1] = STATE(1147), - [anon_sym_true] = ACTIONS(3699), - [anon_sym_false] = ACTIONS(3699), - [anon_sym_null] = ACTIONS(3701), - [aux_sym_cmd_identifier_token38] = ACTIONS(3703), - [aux_sym_cmd_identifier_token39] = ACTIONS(3703), - [aux_sym_cmd_identifier_token40] = ACTIONS(3703), - [sym__newline] = ACTIONS(3705), - [anon_sym_LBRACK] = ACTIONS(3707), - [anon_sym_RBRACK] = ACTIONS(3825), - [anon_sym_LPAREN] = ACTIONS(3711), - [anon_sym_DOLLAR] = ACTIONS(3713), - [anon_sym_LBRACE] = ACTIONS(3715), - [anon_sym_DOT_DOT] = ACTIONS(3827), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3719), - [anon_sym_DOT_DOT_LT] = ACTIONS(3719), - [aux_sym__val_number_decimal_token1] = ACTIONS(3721), - [aux_sym__val_number_decimal_token2] = ACTIONS(3723), - [aux_sym__val_number_decimal_token3] = ACTIONS(3725), - [aux_sym__val_number_decimal_token4] = ACTIONS(3727), - [aux_sym__val_number_token1] = ACTIONS(3729), - [aux_sym__val_number_token2] = ACTIONS(3729), - [aux_sym__val_number_token3] = ACTIONS(3729), - [anon_sym_0b] = ACTIONS(3731), - [anon_sym_0o] = ACTIONS(3733), - [anon_sym_0x] = ACTIONS(3733), - [sym_val_date] = ACTIONS(3735), - [anon_sym_DQUOTE] = ACTIONS(3737), - [sym__str_single_quotes] = ACTIONS(3739), - [sym__str_back_ticks] = ACTIONS(3739), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [anon_sym_err_GT_GT] = ACTIONS(2589), - [anon_sym_out_GT_GT] = ACTIONS(2589), - [anon_sym_e_GT_GT] = ACTIONS(2589), - [anon_sym_o_GT_GT] = ACTIONS(2589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3741), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_ctrl_match_repeat1] = STATE(1066), + [anon_sym_true] = ACTIONS(3850), + [anon_sym_false] = ACTIONS(3850), + [anon_sym_null] = ACTIONS(3853), + [aux_sym_cmd_identifier_token38] = ACTIONS(3856), + [aux_sym_cmd_identifier_token39] = ACTIONS(3856), + [aux_sym_cmd_identifier_token40] = ACTIONS(3856), + [anon_sym_LBRACK] = ACTIONS(3859), + [anon_sym_LPAREN] = ACTIONS(3862), + [anon_sym_DOLLAR] = ACTIONS(3865), + [anon_sym_LBRACE] = ACTIONS(3868), + [anon_sym__] = ACTIONS(3871), + [anon_sym_DOT_DOT] = ACTIONS(3874), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3877), + [anon_sym_DOT_DOT_LT] = ACTIONS(3877), + [aux_sym__val_number_decimal_token1] = ACTIONS(3880), + [aux_sym__val_number_decimal_token2] = ACTIONS(3883), + [aux_sym__val_number_decimal_token3] = ACTIONS(3886), + [aux_sym__val_number_decimal_token4] = ACTIONS(3889), + [aux_sym__val_number_token1] = ACTIONS(3892), + [aux_sym__val_number_token2] = ACTIONS(3892), + [aux_sym__val_number_token3] = ACTIONS(3892), + [anon_sym_0b] = ACTIONS(3895), + [anon_sym_0o] = ACTIONS(3898), + [anon_sym_0x] = ACTIONS(3898), + [sym_val_date] = ACTIONS(3901), + [anon_sym_DQUOTE] = ACTIONS(3904), + [sym__str_single_quotes] = ACTIONS(3907), + [sym__str_back_ticks] = ACTIONS(3907), + [anon_sym_err_GT] = ACTIONS(3910), + [anon_sym_out_GT] = ACTIONS(3910), + [anon_sym_e_GT] = ACTIONS(3910), + [anon_sym_o_GT] = ACTIONS(3910), + [anon_sym_err_PLUSout_GT] = ACTIONS(3910), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3910), + [anon_sym_o_PLUSe_GT] = ACTIONS(3910), + [anon_sym_e_PLUSo_GT] = ACTIONS(3910), + [anon_sym_err_GT_GT] = ACTIONS(3913), + [anon_sym_out_GT_GT] = ACTIONS(3913), + [anon_sym_e_GT_GT] = ACTIONS(3913), + [anon_sym_o_GT_GT] = ACTIONS(3913), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3913), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3913), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3913), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3913), + [aux_sym_unquoted_token1] = ACTIONS(3916), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3919), }, [1067] = { + [sym_match_arm] = STATE(6793), + [sym_default_arm] = STATE(6793), + [sym_match_pattern] = STATE(7768), + [sym__match_pattern] = STATE(5996), + [sym__match_pattern_expression] = STATE(6925), + [sym__match_pattern_value] = STATE(6926), + [sym__match_pattern_list] = STATE(6929), + [sym__match_pattern_record] = STATE(6939), + [sym_expr_parenthesized] = STATE(5899), + [sym_val_range] = STATE(6926), + [sym__val_range] = STATE(7854), + [sym_val_nothing] = STATE(6967), + [sym_val_bool] = STATE(6204), + [sym_val_variable] = STATE(5900), + [sym_val_number] = STATE(6967), + [sym__val_number_decimal] = STATE(5395), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(6967), + [sym_val_filesize] = STATE(6967), + [sym_val_binary] = STATE(6967), + [sym_val_string] = STATE(6967), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_table] = STATE(6967), + [sym_unquoted] = STATE(7021), + [sym__unquoted_anonymous_prefix] = STATE(7685), [sym_comment] = STATE(1067), - [aux_sym_pipe_element_repeat1] = STATE(1067), - [aux_sym_cmd_identifier_token1] = ACTIONS(3829), - [aux_sym_cmd_identifier_token2] = ACTIONS(3829), - [aux_sym_cmd_identifier_token3] = ACTIONS(3829), - [aux_sym_cmd_identifier_token4] = ACTIONS(3829), - [aux_sym_cmd_identifier_token5] = ACTIONS(3829), - [aux_sym_cmd_identifier_token6] = ACTIONS(3829), - [aux_sym_cmd_identifier_token7] = ACTIONS(3829), - [aux_sym_cmd_identifier_token8] = ACTIONS(3829), - [aux_sym_cmd_identifier_token9] = ACTIONS(3829), - [aux_sym_cmd_identifier_token10] = ACTIONS(3829), - [aux_sym_cmd_identifier_token11] = ACTIONS(3829), - [aux_sym_cmd_identifier_token12] = ACTIONS(3829), - [aux_sym_cmd_identifier_token13] = ACTIONS(3829), - [aux_sym_cmd_identifier_token14] = ACTIONS(3829), - [aux_sym_cmd_identifier_token15] = ACTIONS(3829), - [aux_sym_cmd_identifier_token16] = ACTIONS(3829), - [aux_sym_cmd_identifier_token17] = ACTIONS(3829), - [aux_sym_cmd_identifier_token18] = ACTIONS(3829), - [aux_sym_cmd_identifier_token19] = ACTIONS(3829), - [aux_sym_cmd_identifier_token20] = ACTIONS(3829), - [aux_sym_cmd_identifier_token21] = ACTIONS(3829), - [aux_sym_cmd_identifier_token22] = ACTIONS(3829), - [aux_sym_cmd_identifier_token23] = ACTIONS(3829), - [aux_sym_cmd_identifier_token24] = ACTIONS(3829), - [aux_sym_cmd_identifier_token25] = ACTIONS(3829), - [aux_sym_cmd_identifier_token26] = ACTIONS(3829), - [aux_sym_cmd_identifier_token27] = ACTIONS(3829), - [aux_sym_cmd_identifier_token28] = ACTIONS(3829), - [aux_sym_cmd_identifier_token29] = ACTIONS(3829), - [aux_sym_cmd_identifier_token30] = ACTIONS(3829), - [aux_sym_cmd_identifier_token31] = ACTIONS(3829), - [aux_sym_cmd_identifier_token32] = ACTIONS(3829), - [aux_sym_cmd_identifier_token33] = ACTIONS(3829), - [aux_sym_cmd_identifier_token34] = ACTIONS(3829), - [aux_sym_cmd_identifier_token35] = ACTIONS(3829), - [aux_sym_cmd_identifier_token36] = ACTIONS(3829), - [anon_sym_true] = ACTIONS(3829), - [anon_sym_false] = ACTIONS(3829), - [anon_sym_null] = ACTIONS(3829), - [aux_sym_cmd_identifier_token38] = ACTIONS(3829), - [aux_sym_cmd_identifier_token39] = ACTIONS(3829), - [aux_sym_cmd_identifier_token40] = ACTIONS(3829), - [sym__space] = ACTIONS(3831), - [anon_sym_LBRACK] = ACTIONS(3829), - [anon_sym_LPAREN] = ACTIONS(3829), - [anon_sym_DOLLAR] = ACTIONS(3829), - [anon_sym_DASH] = ACTIONS(3829), - [anon_sym_LBRACE] = ACTIONS(3829), - [anon_sym_DOT_DOT] = ACTIONS(3829), - [aux_sym_expr_unary_token1] = ACTIONS(3829), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3829), - [anon_sym_DOT_DOT_LT] = ACTIONS(3829), - [aux_sym__val_number_decimal_token1] = ACTIONS(3829), - [aux_sym__val_number_decimal_token2] = ACTIONS(3829), - [aux_sym__val_number_decimal_token3] = ACTIONS(3829), - [aux_sym__val_number_decimal_token4] = ACTIONS(3829), - [aux_sym__val_number_token1] = ACTIONS(3829), - [aux_sym__val_number_token2] = ACTIONS(3829), - [aux_sym__val_number_token3] = ACTIONS(3829), - [anon_sym_0b] = ACTIONS(3829), - [anon_sym_0o] = ACTIONS(3829), - [anon_sym_0x] = ACTIONS(3829), - [sym_val_date] = ACTIONS(3829), - [anon_sym_DQUOTE] = ACTIONS(3829), - [sym__str_single_quotes] = ACTIONS(3829), - [sym__str_back_ticks] = ACTIONS(3829), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3829), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3829), - [aux_sym_env_var_token1] = ACTIONS(3829), - [anon_sym_CARET] = ACTIONS(3829), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_ctrl_match_repeat1] = STATE(1066), + [anon_sym_true] = ACTIONS(3604), + [anon_sym_false] = ACTIONS(3604), + [anon_sym_null] = ACTIONS(3606), + [aux_sym_cmd_identifier_token38] = ACTIONS(3608), + [aux_sym_cmd_identifier_token39] = ACTIONS(3608), + [aux_sym_cmd_identifier_token40] = ACTIONS(3608), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_LPAREN] = ACTIONS(3614), + [anon_sym_DOLLAR] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(3618), + [anon_sym__] = ACTIONS(3622), + [anon_sym_DOT_DOT] = ACTIONS(3624), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3626), + [anon_sym_DOT_DOT_LT] = ACTIONS(3626), + [aux_sym__val_number_decimal_token1] = ACTIONS(3628), + [aux_sym__val_number_decimal_token2] = ACTIONS(3630), + [aux_sym__val_number_decimal_token3] = ACTIONS(3632), + [aux_sym__val_number_decimal_token4] = ACTIONS(3634), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3636), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [1068] = { - [sym__expr_parenthesized_immediate] = STATE(1354), - [sym__immediate_decimal] = STATE(1270), - [sym_val_variable] = STATE(1354), + [sym_match_arm] = STATE(7105), + [sym_default_arm] = STATE(7105), + [sym_match_pattern] = STATE(7768), + [sym__match_pattern] = STATE(5996), + [sym__match_pattern_expression] = STATE(6925), + [sym__match_pattern_value] = STATE(6926), + [sym__match_pattern_list] = STATE(6929), + [sym__match_pattern_record] = STATE(6939), + [sym_expr_parenthesized] = STATE(5899), + [sym_val_range] = STATE(6926), + [sym__val_range] = STATE(7854), + [sym_val_nothing] = STATE(6967), + [sym_val_bool] = STATE(6204), + [sym_val_variable] = STATE(5900), + [sym_val_number] = STATE(6967), + [sym__val_number_decimal] = STATE(5395), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(6967), + [sym_val_filesize] = STATE(6967), + [sym_val_binary] = STATE(6967), + [sym_val_string] = STATE(6967), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_table] = STATE(6967), + [sym_unquoted] = STATE(7021), + [sym__unquoted_anonymous_prefix] = STATE(7685), [sym_comment] = STATE(1068), - [anon_sym_true] = ACTIONS(1492), - [anon_sym_false] = ACTIONS(1492), - [anon_sym_null] = ACTIONS(1492), - [aux_sym_cmd_identifier_token38] = ACTIONS(1492), - [aux_sym_cmd_identifier_token39] = ACTIONS(1492), - [aux_sym_cmd_identifier_token40] = ACTIONS(1492), - [sym__newline] = ACTIONS(1492), - [anon_sym_SEMI] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(1492), - [anon_sym_err_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_GT_PIPE] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1492), - [anon_sym_LBRACK] = ACTIONS(1492), - [anon_sym_LPAREN] = ACTIONS(1478), - [anon_sym_RPAREN] = ACTIONS(1492), - [anon_sym_DOLLAR] = ACTIONS(2607), - [anon_sym_DASH_DASH] = ACTIONS(1492), - [anon_sym_DASH] = ACTIONS(1478), - [anon_sym_LBRACE] = ACTIONS(1492), - [anon_sym_RBRACE] = ACTIONS(1492), - [anon_sym_DOT_DOT] = ACTIONS(1478), - [anon_sym_LPAREN2] = ACTIONS(3834), - [anon_sym_DOT] = ACTIONS(3836), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1492), - [anon_sym_DOT_DOT_LT] = ACTIONS(1492), - [aux_sym__immediate_decimal_token1] = ACTIONS(3838), - [aux_sym__immediate_decimal_token3] = ACTIONS(3840), - [aux_sym__immediate_decimal_token4] = ACTIONS(3842), - [aux_sym__immediate_decimal_token5] = ACTIONS(3844), - [aux_sym__val_number_decimal_token1] = ACTIONS(1478), - [aux_sym__val_number_decimal_token2] = ACTIONS(1478), - [aux_sym__val_number_decimal_token3] = ACTIONS(1478), - [aux_sym__val_number_decimal_token4] = ACTIONS(1478), - [aux_sym__val_number_token1] = ACTIONS(1492), - [aux_sym__val_number_token2] = ACTIONS(1492), - [aux_sym__val_number_token3] = ACTIONS(1492), - [anon_sym_0b] = ACTIONS(1478), - [anon_sym_0o] = ACTIONS(1478), - [anon_sym_0x] = ACTIONS(1478), - [sym_val_date] = ACTIONS(1492), - [anon_sym_DQUOTE] = ACTIONS(1492), - [sym__str_single_quotes] = ACTIONS(1492), - [sym__str_back_ticks] = ACTIONS(1492), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1492), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1492), - [anon_sym_err_GT] = ACTIONS(1478), - [anon_sym_out_GT] = ACTIONS(1478), - [anon_sym_e_GT] = ACTIONS(1478), - [anon_sym_o_GT] = ACTIONS(1478), - [anon_sym_err_PLUSout_GT] = ACTIONS(1478), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1478), - [anon_sym_o_PLUSe_GT] = ACTIONS(1478), - [anon_sym_e_PLUSo_GT] = ACTIONS(1478), - [anon_sym_err_GT_GT] = ACTIONS(1492), - [anon_sym_out_GT_GT] = ACTIONS(1492), - [anon_sym_e_GT_GT] = ACTIONS(1492), - [anon_sym_o_GT_GT] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1492), - [aux_sym_unquoted_token1] = ACTIONS(1478), - [aux_sym_unquoted_token2] = ACTIONS(1494), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_ctrl_match_repeat1] = STATE(1066), + [anon_sym_true] = ACTIONS(3604), + [anon_sym_false] = ACTIONS(3604), + [anon_sym_null] = ACTIONS(3606), + [aux_sym_cmd_identifier_token38] = ACTIONS(3608), + [aux_sym_cmd_identifier_token39] = ACTIONS(3608), + [aux_sym_cmd_identifier_token40] = ACTIONS(3608), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_LPAREN] = ACTIONS(3614), + [anon_sym_DOLLAR] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(3618), + [anon_sym__] = ACTIONS(3622), + [anon_sym_DOT_DOT] = ACTIONS(3624), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3626), + [anon_sym_DOT_DOT_LT] = ACTIONS(3626), + [aux_sym__val_number_decimal_token1] = ACTIONS(3628), + [aux_sym__val_number_decimal_token2] = ACTIONS(3630), + [aux_sym__val_number_decimal_token3] = ACTIONS(3632), + [aux_sym__val_number_decimal_token4] = ACTIONS(3634), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3636), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [1069] = { - [sym_expr_parenthesized] = STATE(6448), - [sym_val_range] = STATE(7431), - [sym__val_range] = STATE(7681), - [sym__value] = STATE(7431), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3707), - [sym_val_variable] = STATE(3559), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(5629), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(2002), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(7432), - [sym__unquoted_anonymous_prefix] = STATE(7695), + [sym_match_arm] = STATE(7133), + [sym_default_arm] = STATE(7133), + [sym_match_pattern] = STATE(7768), + [sym__match_pattern] = STATE(5996), + [sym__match_pattern_expression] = STATE(6925), + [sym__match_pattern_value] = STATE(6926), + [sym__match_pattern_list] = STATE(6929), + [sym__match_pattern_record] = STATE(6939), + [sym_expr_parenthesized] = STATE(5899), + [sym_val_range] = STATE(6926), + [sym__val_range] = STATE(7854), + [sym_val_nothing] = STATE(6967), + [sym_val_bool] = STATE(6204), + [sym_val_variable] = STATE(5900), + [sym_val_number] = STATE(6967), + [sym__val_number_decimal] = STATE(5395), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(6967), + [sym_val_filesize] = STATE(6967), + [sym_val_binary] = STATE(6967), + [sym_val_string] = STATE(6967), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_table] = STATE(6967), + [sym_unquoted] = STATE(7021), + [sym__unquoted_anonymous_prefix] = STATE(7685), [sym_comment] = STATE(1069), - [anon_sym_true] = ACTIONS(3259), - [anon_sym_false] = ACTIONS(3259), - [anon_sym_null] = ACTIONS(3261), - [aux_sym_cmd_identifier_token38] = ACTIONS(3846), - [aux_sym_cmd_identifier_token39] = ACTIONS(3846), - [aux_sym_cmd_identifier_token40] = ACTIONS(3846), - [anon_sym_LBRACK] = ACTIONS(3848), - [anon_sym_LPAREN] = ACTIONS(3850), - [anon_sym_DOLLAR] = ACTIONS(3852), - [anon_sym_LBRACE] = ACTIONS(3854), - [anon_sym_DOT_DOT] = ACTIONS(3856), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3858), - [anon_sym_DOT_DOT_LT] = ACTIONS(3858), - [aux_sym__val_number_decimal_token1] = ACTIONS(3279), - [aux_sym__val_number_decimal_token2] = ACTIONS(3281), - [aux_sym__val_number_decimal_token3] = ACTIONS(3283), - [aux_sym__val_number_decimal_token4] = ACTIONS(3285), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3287), - [anon_sym_DQUOTE] = ACTIONS(3860), - [sym__str_single_quotes] = ACTIONS(3862), - [sym__str_back_ticks] = ACTIONS(3862), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [aux_sym_record_entry_token1] = ACTIONS(3229), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3864), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_ctrl_match_repeat1] = STATE(1066), + [anon_sym_true] = ACTIONS(3604), + [anon_sym_false] = ACTIONS(3604), + [anon_sym_null] = ACTIONS(3606), + [aux_sym_cmd_identifier_token38] = ACTIONS(3608), + [aux_sym_cmd_identifier_token39] = ACTIONS(3608), + [aux_sym_cmd_identifier_token40] = ACTIONS(3608), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_LPAREN] = ACTIONS(3614), + [anon_sym_DOLLAR] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(3618), + [anon_sym__] = ACTIONS(3622), + [anon_sym_DOT_DOT] = ACTIONS(3624), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3626), + [anon_sym_DOT_DOT_LT] = ACTIONS(3626), + [aux_sym__val_number_decimal_token1] = ACTIONS(3628), + [aux_sym__val_number_decimal_token2] = ACTIONS(3630), + [aux_sym__val_number_decimal_token3] = ACTIONS(3632), + [aux_sym__val_number_decimal_token4] = ACTIONS(3634), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3636), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [1070] = { + [sym_match_arm] = STATE(6907), + [sym_default_arm] = STATE(6907), + [sym_match_pattern] = STATE(7768), + [sym__match_pattern] = STATE(5996), + [sym__match_pattern_expression] = STATE(6925), + [sym__match_pattern_value] = STATE(6926), + [sym__match_pattern_list] = STATE(6929), + [sym__match_pattern_record] = STATE(6939), + [sym_expr_parenthesized] = STATE(5899), + [sym_val_range] = STATE(6926), + [sym__val_range] = STATE(7854), + [sym_val_nothing] = STATE(6967), + [sym_val_bool] = STATE(6204), + [sym_val_variable] = STATE(5900), + [sym_val_number] = STATE(6967), + [sym__val_number_decimal] = STATE(5395), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(6967), + [sym_val_filesize] = STATE(6967), + [sym_val_binary] = STATE(6967), + [sym_val_string] = STATE(6967), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_table] = STATE(6967), + [sym_unquoted] = STATE(7021), + [sym__unquoted_anonymous_prefix] = STATE(7685), [sym_comment] = STATE(1070), - [aux_sym_cmd_identifier_token1] = ACTIONS(3866), - [aux_sym_cmd_identifier_token2] = ACTIONS(3866), - [aux_sym_cmd_identifier_token3] = ACTIONS(3866), - [aux_sym_cmd_identifier_token4] = ACTIONS(3866), - [aux_sym_cmd_identifier_token5] = ACTIONS(3866), - [aux_sym_cmd_identifier_token6] = ACTIONS(3866), - [aux_sym_cmd_identifier_token7] = ACTIONS(3866), - [aux_sym_cmd_identifier_token8] = ACTIONS(3866), - [aux_sym_cmd_identifier_token9] = ACTIONS(3866), - [aux_sym_cmd_identifier_token10] = ACTIONS(3866), - [aux_sym_cmd_identifier_token11] = ACTIONS(3866), - [aux_sym_cmd_identifier_token12] = ACTIONS(3866), - [aux_sym_cmd_identifier_token13] = ACTIONS(3866), - [aux_sym_cmd_identifier_token14] = ACTIONS(3866), - [aux_sym_cmd_identifier_token15] = ACTIONS(3866), - [aux_sym_cmd_identifier_token16] = ACTIONS(3866), - [aux_sym_cmd_identifier_token17] = ACTIONS(3866), - [aux_sym_cmd_identifier_token18] = ACTIONS(3866), - [aux_sym_cmd_identifier_token19] = ACTIONS(3866), - [aux_sym_cmd_identifier_token20] = ACTIONS(3866), - [aux_sym_cmd_identifier_token21] = ACTIONS(3866), - [aux_sym_cmd_identifier_token22] = ACTIONS(3866), - [aux_sym_cmd_identifier_token23] = ACTIONS(3866), - [aux_sym_cmd_identifier_token24] = ACTIONS(3866), - [aux_sym_cmd_identifier_token25] = ACTIONS(3866), - [aux_sym_cmd_identifier_token26] = ACTIONS(3866), - [aux_sym_cmd_identifier_token27] = ACTIONS(3866), - [aux_sym_cmd_identifier_token28] = ACTIONS(3866), - [aux_sym_cmd_identifier_token29] = ACTIONS(3866), - [aux_sym_cmd_identifier_token30] = ACTIONS(3866), - [aux_sym_cmd_identifier_token31] = ACTIONS(3866), - [aux_sym_cmd_identifier_token32] = ACTIONS(3866), - [aux_sym_cmd_identifier_token33] = ACTIONS(3866), - [aux_sym_cmd_identifier_token34] = ACTIONS(3866), - [aux_sym_cmd_identifier_token35] = ACTIONS(3866), - [aux_sym_cmd_identifier_token36] = ACTIONS(3866), - [anon_sym_true] = ACTIONS(3866), - [anon_sym_false] = ACTIONS(3866), - [anon_sym_null] = ACTIONS(3866), - [aux_sym_cmd_identifier_token38] = ACTIONS(3866), - [aux_sym_cmd_identifier_token39] = ACTIONS(3866), - [aux_sym_cmd_identifier_token40] = ACTIONS(3866), - [sym__newline] = ACTIONS(3866), - [sym__space] = ACTIONS(3868), - [anon_sym_LBRACK] = ACTIONS(3866), - [anon_sym_LPAREN] = ACTIONS(3866), - [anon_sym_DOLLAR] = ACTIONS(3866), - [anon_sym_DASH] = ACTIONS(3866), - [anon_sym_LBRACE] = ACTIONS(3866), - [anon_sym_DOT_DOT] = ACTIONS(3866), - [aux_sym_expr_unary_token1] = ACTIONS(3866), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3866), - [anon_sym_DOT_DOT_LT] = ACTIONS(3866), - [aux_sym__val_number_decimal_token1] = ACTIONS(3866), - [aux_sym__val_number_decimal_token2] = ACTIONS(3866), - [aux_sym__val_number_decimal_token3] = ACTIONS(3866), - [aux_sym__val_number_decimal_token4] = ACTIONS(3866), - [aux_sym__val_number_token1] = ACTIONS(3866), - [aux_sym__val_number_token2] = ACTIONS(3866), - [aux_sym__val_number_token3] = ACTIONS(3866), - [anon_sym_0b] = ACTIONS(3866), - [anon_sym_0o] = ACTIONS(3866), - [anon_sym_0x] = ACTIONS(3866), - [sym_val_date] = ACTIONS(3866), - [anon_sym_DQUOTE] = ACTIONS(3866), - [sym__str_single_quotes] = ACTIONS(3866), - [sym__str_back_ticks] = ACTIONS(3866), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3866), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3866), - [aux_sym_env_var_token1] = ACTIONS(3866), - [anon_sym_CARET] = ACTIONS(3866), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_ctrl_match_repeat1] = STATE(1066), + [anon_sym_true] = ACTIONS(3604), + [anon_sym_false] = ACTIONS(3604), + [anon_sym_null] = ACTIONS(3606), + [aux_sym_cmd_identifier_token38] = ACTIONS(3608), + [aux_sym_cmd_identifier_token39] = ACTIONS(3608), + [aux_sym_cmd_identifier_token40] = ACTIONS(3608), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_LPAREN] = ACTIONS(3614), + [anon_sym_DOLLAR] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(3618), + [anon_sym__] = ACTIONS(3622), + [anon_sym_DOT_DOT] = ACTIONS(3624), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3626), + [anon_sym_DOT_DOT_LT] = ACTIONS(3626), + [aux_sym__val_number_decimal_token1] = ACTIONS(3628), + [aux_sym__val_number_decimal_token2] = ACTIONS(3630), + [aux_sym__val_number_decimal_token3] = ACTIONS(3632), + [aux_sym__val_number_decimal_token4] = ACTIONS(3634), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3636), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [1071] = { - [sym_expr_parenthesized] = STATE(6448), - [sym_val_range] = STATE(7431), - [sym__val_range] = STATE(7681), - [sym__value] = STATE(7431), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3707), - [sym_val_variable] = STATE(3559), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(5629), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(2002), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(7432), - [sym__unquoted_anonymous_prefix] = STATE(7695), + [sym_match_arm] = STATE(7134), + [sym_default_arm] = STATE(7134), + [sym_match_pattern] = STATE(7768), + [sym__match_pattern] = STATE(5996), + [sym__match_pattern_expression] = STATE(6925), + [sym__match_pattern_value] = STATE(6926), + [sym__match_pattern_list] = STATE(6929), + [sym__match_pattern_record] = STATE(6939), + [sym_expr_parenthesized] = STATE(5899), + [sym_val_range] = STATE(6926), + [sym__val_range] = STATE(7854), + [sym_val_nothing] = STATE(6967), + [sym_val_bool] = STATE(6204), + [sym_val_variable] = STATE(5900), + [sym_val_number] = STATE(6967), + [sym__val_number_decimal] = STATE(5395), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(6967), + [sym_val_filesize] = STATE(6967), + [sym_val_binary] = STATE(6967), + [sym_val_string] = STATE(6967), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_table] = STATE(6967), + [sym_unquoted] = STATE(7021), + [sym__unquoted_anonymous_prefix] = STATE(7685), [sym_comment] = STATE(1071), - [anon_sym_true] = ACTIONS(3259), - [anon_sym_false] = ACTIONS(3259), - [anon_sym_null] = ACTIONS(3261), - [aux_sym_cmd_identifier_token38] = ACTIONS(3846), - [aux_sym_cmd_identifier_token39] = ACTIONS(3846), - [aux_sym_cmd_identifier_token40] = ACTIONS(3846), - [anon_sym_LBRACK] = ACTIONS(3848), - [anon_sym_LPAREN] = ACTIONS(3850), - [anon_sym_DOLLAR] = ACTIONS(3852), - [anon_sym_LBRACE] = ACTIONS(3854), - [anon_sym_DOT_DOT] = ACTIONS(3856), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3858), - [anon_sym_DOT_DOT_LT] = ACTIONS(3858), - [aux_sym__val_number_decimal_token1] = ACTIONS(3279), - [aux_sym__val_number_decimal_token2] = ACTIONS(3281), - [aux_sym__val_number_decimal_token3] = ACTIONS(3283), - [aux_sym__val_number_decimal_token4] = ACTIONS(3285), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3287), - [anon_sym_DQUOTE] = ACTIONS(3860), - [sym__str_single_quotes] = ACTIONS(3862), - [sym__str_back_ticks] = ACTIONS(3862), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [aux_sym_record_entry_token1] = ACTIONS(3231), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3864), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_ctrl_match_repeat1] = STATE(1066), + [anon_sym_true] = ACTIONS(3604), + [anon_sym_false] = ACTIONS(3604), + [anon_sym_null] = ACTIONS(3606), + [aux_sym_cmd_identifier_token38] = ACTIONS(3608), + [aux_sym_cmd_identifier_token39] = ACTIONS(3608), + [aux_sym_cmd_identifier_token40] = ACTIONS(3608), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_LPAREN] = ACTIONS(3614), + [anon_sym_DOLLAR] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(3618), + [anon_sym__] = ACTIONS(3622), + [anon_sym_DOT_DOT] = ACTIONS(3624), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3626), + [anon_sym_DOT_DOT_LT] = ACTIONS(3626), + [aux_sym__val_number_decimal_token1] = ACTIONS(3628), + [aux_sym__val_number_decimal_token2] = ACTIONS(3630), + [aux_sym__val_number_decimal_token3] = ACTIONS(3632), + [aux_sym__val_number_decimal_token4] = ACTIONS(3634), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3636), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [1072] = { - [sym_match_arm] = STATE(6616), - [sym_default_arm] = STATE(6616), - [sym_match_pattern] = STATE(7650), - [sym__match_pattern] = STATE(5895), - [sym__match_pattern_expression] = STATE(6770), - [sym__match_pattern_value] = STATE(6771), - [sym__match_pattern_list] = STATE(6772), - [sym__match_pattern_record] = STATE(6774), - [sym_expr_parenthesized] = STATE(5667), - [sym_val_range] = STATE(6771), - [sym__val_range] = STATE(7706), - [sym_val_nothing] = STATE(6776), - [sym_val_bool] = STATE(6086), - [sym_val_variable] = STATE(5668), - [sym_val_number] = STATE(6776), - [sym__val_number_decimal] = STATE(5362), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(6776), - [sym_val_filesize] = STATE(6776), - [sym_val_binary] = STATE(6776), - [sym_val_string] = STATE(6776), - [sym__str_double_quotes] = STATE(1725), - [sym_val_table] = STATE(6776), - [sym_unquoted] = STATE(6780), - [sym__unquoted_anonymous_prefix] = STATE(7496), + [sym_match_arm] = STATE(7187), + [sym_default_arm] = STATE(7187), + [sym_match_pattern] = STATE(7768), + [sym__match_pattern] = STATE(5996), + [sym__match_pattern_expression] = STATE(6925), + [sym__match_pattern_value] = STATE(6926), + [sym__match_pattern_list] = STATE(6929), + [sym__match_pattern_record] = STATE(6939), + [sym_expr_parenthesized] = STATE(5899), + [sym_val_range] = STATE(6926), + [sym__val_range] = STATE(7854), + [sym_val_nothing] = STATE(6967), + [sym_val_bool] = STATE(6204), + [sym_val_variable] = STATE(5900), + [sym_val_number] = STATE(6967), + [sym__val_number_decimal] = STATE(5395), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(6967), + [sym_val_filesize] = STATE(6967), + [sym_val_binary] = STATE(6967), + [sym_val_string] = STATE(6967), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_table] = STATE(6967), + [sym_unquoted] = STATE(7021), + [sym__unquoted_anonymous_prefix] = STATE(7685), [sym_comment] = STATE(1072), - [aux_sym_ctrl_match_repeat1] = STATE(1063), - [anon_sym_true] = ACTIONS(3533), - [anon_sym_false] = ACTIONS(3533), - [anon_sym_null] = ACTIONS(3535), - [aux_sym_cmd_identifier_token38] = ACTIONS(3537), - [aux_sym_cmd_identifier_token39] = ACTIONS(3537), - [aux_sym_cmd_identifier_token40] = ACTIONS(3537), - [anon_sym_LBRACK] = ACTIONS(3541), - [anon_sym_LPAREN] = ACTIONS(3543), - [anon_sym_DOLLAR] = ACTIONS(3545), - [anon_sym_LBRACE] = ACTIONS(3547), - [anon_sym__] = ACTIONS(3551), - [anon_sym_DOT_DOT] = ACTIONS(3553), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3555), - [anon_sym_DOT_DOT_LT] = ACTIONS(3555), - [aux_sym__val_number_decimal_token1] = ACTIONS(3557), - [aux_sym__val_number_decimal_token2] = ACTIONS(3559), - [aux_sym__val_number_decimal_token3] = ACTIONS(3561), - [aux_sym__val_number_decimal_token4] = ACTIONS(3563), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3565), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_ctrl_match_repeat1] = STATE(1066), + [anon_sym_true] = ACTIONS(3604), + [anon_sym_false] = ACTIONS(3604), + [anon_sym_null] = ACTIONS(3606), + [aux_sym_cmd_identifier_token38] = ACTIONS(3608), + [aux_sym_cmd_identifier_token39] = ACTIONS(3608), + [aux_sym_cmd_identifier_token40] = ACTIONS(3608), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_LPAREN] = ACTIONS(3614), + [anon_sym_DOLLAR] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(3618), + [anon_sym__] = ACTIONS(3622), + [anon_sym_DOT_DOT] = ACTIONS(3624), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3626), + [anon_sym_DOT_DOT_LT] = ACTIONS(3626), + [aux_sym__val_number_decimal_token1] = ACTIONS(3628), + [aux_sym__val_number_decimal_token2] = ACTIONS(3630), + [aux_sym__val_number_decimal_token3] = ACTIONS(3632), + [aux_sym__val_number_decimal_token4] = ACTIONS(3634), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3636), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [1073] = { - [sym_match_arm] = STATE(6632), - [sym_default_arm] = STATE(6632), - [sym_match_pattern] = STATE(7650), - [sym__match_pattern] = STATE(5895), - [sym__match_pattern_expression] = STATE(6770), - [sym__match_pattern_value] = STATE(6771), - [sym__match_pattern_list] = STATE(6772), - [sym__match_pattern_record] = STATE(6774), - [sym_expr_parenthesized] = STATE(5667), - [sym_val_range] = STATE(6771), - [sym__val_range] = STATE(7706), - [sym_val_nothing] = STATE(6776), - [sym_val_bool] = STATE(6086), - [sym_val_variable] = STATE(5668), - [sym_val_number] = STATE(6776), - [sym__val_number_decimal] = STATE(5362), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(6776), - [sym_val_filesize] = STATE(6776), - [sym_val_binary] = STATE(6776), - [sym_val_string] = STATE(6776), - [sym__str_double_quotes] = STATE(1725), - [sym_val_table] = STATE(6776), - [sym_unquoted] = STATE(6780), - [sym__unquoted_anonymous_prefix] = STATE(7496), + [sym_match_arm] = STATE(7189), + [sym_default_arm] = STATE(7189), + [sym_match_pattern] = STATE(7768), + [sym__match_pattern] = STATE(5996), + [sym__match_pattern_expression] = STATE(6925), + [sym__match_pattern_value] = STATE(6926), + [sym__match_pattern_list] = STATE(6929), + [sym__match_pattern_record] = STATE(6939), + [sym_expr_parenthesized] = STATE(5899), + [sym_val_range] = STATE(6926), + [sym__val_range] = STATE(7854), + [sym_val_nothing] = STATE(6967), + [sym_val_bool] = STATE(6204), + [sym_val_variable] = STATE(5900), + [sym_val_number] = STATE(6967), + [sym__val_number_decimal] = STATE(5395), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(6967), + [sym_val_filesize] = STATE(6967), + [sym_val_binary] = STATE(6967), + [sym_val_string] = STATE(6967), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_table] = STATE(6967), + [sym_unquoted] = STATE(7021), + [sym__unquoted_anonymous_prefix] = STATE(7685), [sym_comment] = STATE(1073), - [aux_sym_ctrl_match_repeat1] = STATE(1063), - [anon_sym_true] = ACTIONS(3533), - [anon_sym_false] = ACTIONS(3533), - [anon_sym_null] = ACTIONS(3535), - [aux_sym_cmd_identifier_token38] = ACTIONS(3537), - [aux_sym_cmd_identifier_token39] = ACTIONS(3537), - [aux_sym_cmd_identifier_token40] = ACTIONS(3537), - [anon_sym_LBRACK] = ACTIONS(3541), - [anon_sym_LPAREN] = ACTIONS(3543), - [anon_sym_DOLLAR] = ACTIONS(3545), - [anon_sym_LBRACE] = ACTIONS(3547), - [anon_sym__] = ACTIONS(3551), - [anon_sym_DOT_DOT] = ACTIONS(3553), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3555), - [anon_sym_DOT_DOT_LT] = ACTIONS(3555), - [aux_sym__val_number_decimal_token1] = ACTIONS(3557), - [aux_sym__val_number_decimal_token2] = ACTIONS(3559), - [aux_sym__val_number_decimal_token3] = ACTIONS(3561), - [aux_sym__val_number_decimal_token4] = ACTIONS(3563), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3565), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_ctrl_match_repeat1] = STATE(1066), + [anon_sym_true] = ACTIONS(3604), + [anon_sym_false] = ACTIONS(3604), + [anon_sym_null] = ACTIONS(3606), + [aux_sym_cmd_identifier_token38] = ACTIONS(3608), + [aux_sym_cmd_identifier_token39] = ACTIONS(3608), + [aux_sym_cmd_identifier_token40] = ACTIONS(3608), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_LPAREN] = ACTIONS(3614), + [anon_sym_DOLLAR] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(3618), + [anon_sym__] = ACTIONS(3622), + [anon_sym_DOT_DOT] = ACTIONS(3624), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3626), + [anon_sym_DOT_DOT_LT] = ACTIONS(3626), + [aux_sym__val_number_decimal_token1] = ACTIONS(3628), + [aux_sym__val_number_decimal_token2] = ACTIONS(3630), + [aux_sym__val_number_decimal_token3] = ACTIONS(3632), + [aux_sym__val_number_decimal_token4] = ACTIONS(3634), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3636), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3244), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [1074] = { - [sym_match_arm] = STATE(6726), - [sym_default_arm] = STATE(6726), - [sym_match_pattern] = STATE(7650), - [sym__match_pattern] = STATE(5895), - [sym__match_pattern_expression] = STATE(6770), - [sym__match_pattern_value] = STATE(6771), - [sym__match_pattern_list] = STATE(6772), - [sym__match_pattern_record] = STATE(6774), - [sym_expr_parenthesized] = STATE(5667), - [sym_val_range] = STATE(6771), - [sym__val_range] = STATE(7706), - [sym_val_nothing] = STATE(6776), - [sym_val_bool] = STATE(6086), - [sym_val_variable] = STATE(5668), - [sym_val_number] = STATE(6776), - [sym__val_number_decimal] = STATE(5362), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(6776), - [sym_val_filesize] = STATE(6776), - [sym_val_binary] = STATE(6776), - [sym_val_string] = STATE(6776), - [sym__str_double_quotes] = STATE(1725), - [sym_val_table] = STATE(6776), - [sym_unquoted] = STATE(6780), - [sym__unquoted_anonymous_prefix] = STATE(7496), + [sym_expr_parenthesized] = STATE(6655), + [sym_val_range] = STATE(7881), + [sym__val_range] = STATE(7794), + [sym__value] = STATE(7881), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3688), + [sym_val_variable] = STATE(3649), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(5638), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(4434), + [sym__str_double_quotes] = STATE(4434), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(7885), + [sym__unquoted_anonymous_prefix] = STATE(7859), [sym_comment] = STATE(1074), - [aux_sym_ctrl_match_repeat1] = STATE(1063), - [anon_sym_true] = ACTIONS(3533), - [anon_sym_false] = ACTIONS(3533), - [anon_sym_null] = ACTIONS(3535), - [aux_sym_cmd_identifier_token38] = ACTIONS(3537), - [aux_sym_cmd_identifier_token39] = ACTIONS(3537), - [aux_sym_cmd_identifier_token40] = ACTIONS(3537), - [anon_sym_LBRACK] = ACTIONS(3541), - [anon_sym_LPAREN] = ACTIONS(3543), - [anon_sym_DOLLAR] = ACTIONS(3545), - [anon_sym_LBRACE] = ACTIONS(3547), - [anon_sym__] = ACTIONS(3551), - [anon_sym_DOT_DOT] = ACTIONS(3553), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3555), - [anon_sym_DOT_DOT_LT] = ACTIONS(3555), - [aux_sym__val_number_decimal_token1] = ACTIONS(3557), - [aux_sym__val_number_decimal_token2] = ACTIONS(3559), - [aux_sym__val_number_decimal_token3] = ACTIONS(3561), - [aux_sym__val_number_decimal_token4] = ACTIONS(3563), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3565), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3179), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(3350), + [anon_sym_false] = ACTIONS(3350), + [anon_sym_null] = ACTIONS(3352), + [aux_sym_cmd_identifier_token38] = ACTIONS(3828), + [aux_sym_cmd_identifier_token39] = ACTIONS(3828), + [aux_sym_cmd_identifier_token40] = ACTIONS(3828), + [anon_sym_LBRACK] = ACTIONS(3830), + [anon_sym_LPAREN] = ACTIONS(3832), + [anon_sym_DOLLAR] = ACTIONS(3834), + [anon_sym_LBRACE] = ACTIONS(3836), + [anon_sym_DOT_DOT] = ACTIONS(3838), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3840), + [anon_sym_DOT_DOT_LT] = ACTIONS(3840), + [aux_sym__val_number_decimal_token1] = ACTIONS(3366), + [aux_sym__val_number_decimal_token2] = ACTIONS(3368), + [aux_sym__val_number_decimal_token3] = ACTIONS(3370), + [aux_sym__val_number_decimal_token4] = ACTIONS(3372), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3374), + [anon_sym_DQUOTE] = ACTIONS(3842), + [sym__str_single_quotes] = ACTIONS(3844), + [sym__str_back_ticks] = ACTIONS(3844), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [aux_sym_record_entry_token1] = ACTIONS(3296), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3846), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3848), }, [1075] = { - [sym_expr_parenthesized] = STATE(6254), - [sym_val_range] = STATE(7466), - [sym__val_range] = STATE(7681), - [sym__value] = STATE(7466), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3707), - [sym_val_variable] = STATE(3559), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(5629), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(2002), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(7551), - [sym__unquoted_anonymous_prefix] = STATE(7695), + [sym_env_var] = STATE(7513), [sym_comment] = STATE(1075), - [anon_sym_true] = ACTIONS(3259), - [anon_sym_false] = ACTIONS(3259), - [anon_sym_null] = ACTIONS(3261), - [aux_sym_cmd_identifier_token38] = ACTIONS(3846), - [aux_sym_cmd_identifier_token39] = ACTIONS(3846), - [aux_sym_cmd_identifier_token40] = ACTIONS(3846), - [anon_sym_LBRACK] = ACTIONS(3848), - [anon_sym_LPAREN] = ACTIONS(3850), - [anon_sym_DOLLAR] = ACTIONS(3852), - [anon_sym_LBRACE] = ACTIONS(3854), - [anon_sym_DOT_DOT] = ACTIONS(3856), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3858), - [anon_sym_DOT_DOT_LT] = ACTIONS(3858), - [aux_sym__val_number_decimal_token1] = ACTIONS(3279), - [aux_sym__val_number_decimal_token2] = ACTIONS(3281), - [aux_sym__val_number_decimal_token3] = ACTIONS(3283), - [aux_sym__val_number_decimal_token4] = ACTIONS(3285), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3287), - [anon_sym_DQUOTE] = ACTIONS(3860), - [sym__str_single_quotes] = ACTIONS(3862), - [sym__str_back_ticks] = ACTIONS(3862), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3864), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_pipe_element_repeat2] = STATE(1075), + [aux_sym_cmd_identifier_token1] = ACTIONS(3922), + [aux_sym_cmd_identifier_token2] = ACTIONS(3924), + [aux_sym_cmd_identifier_token3] = ACTIONS(3924), + [aux_sym_cmd_identifier_token4] = ACTIONS(3924), + [aux_sym_cmd_identifier_token5] = ACTIONS(3924), + [aux_sym_cmd_identifier_token6] = ACTIONS(3924), + [aux_sym_cmd_identifier_token7] = ACTIONS(3924), + [aux_sym_cmd_identifier_token8] = ACTIONS(3924), + [aux_sym_cmd_identifier_token9] = ACTIONS(3922), + [aux_sym_cmd_identifier_token10] = ACTIONS(3924), + [aux_sym_cmd_identifier_token11] = ACTIONS(3924), + [aux_sym_cmd_identifier_token12] = ACTIONS(3924), + [aux_sym_cmd_identifier_token13] = ACTIONS(3922), + [aux_sym_cmd_identifier_token14] = ACTIONS(3924), + [aux_sym_cmd_identifier_token15] = ACTIONS(3922), + [aux_sym_cmd_identifier_token16] = ACTIONS(3924), + [aux_sym_cmd_identifier_token17] = ACTIONS(3924), + [aux_sym_cmd_identifier_token18] = ACTIONS(3924), + [aux_sym_cmd_identifier_token19] = ACTIONS(3924), + [aux_sym_cmd_identifier_token20] = ACTIONS(3924), + [aux_sym_cmd_identifier_token21] = ACTIONS(3924), + [aux_sym_cmd_identifier_token22] = ACTIONS(3924), + [aux_sym_cmd_identifier_token23] = ACTIONS(3924), + [aux_sym_cmd_identifier_token24] = ACTIONS(3924), + [aux_sym_cmd_identifier_token25] = ACTIONS(3924), + [aux_sym_cmd_identifier_token26] = ACTIONS(3924), + [aux_sym_cmd_identifier_token27] = ACTIONS(3924), + [aux_sym_cmd_identifier_token28] = ACTIONS(3924), + [aux_sym_cmd_identifier_token29] = ACTIONS(3924), + [aux_sym_cmd_identifier_token30] = ACTIONS(3924), + [aux_sym_cmd_identifier_token31] = ACTIONS(3924), + [aux_sym_cmd_identifier_token32] = ACTIONS(3924), + [aux_sym_cmd_identifier_token33] = ACTIONS(3924), + [aux_sym_cmd_identifier_token34] = ACTIONS(3924), + [aux_sym_cmd_identifier_token35] = ACTIONS(3924), + [aux_sym_cmd_identifier_token36] = ACTIONS(3922), + [anon_sym_true] = ACTIONS(3924), + [anon_sym_false] = ACTIONS(3924), + [anon_sym_null] = ACTIONS(3924), + [aux_sym_cmd_identifier_token38] = ACTIONS(3922), + [aux_sym_cmd_identifier_token39] = ACTIONS(3924), + [aux_sym_cmd_identifier_token40] = ACTIONS(3924), + [anon_sym_LBRACK] = ACTIONS(3924), + [anon_sym_LPAREN] = ACTIONS(3924), + [anon_sym_DOLLAR] = ACTIONS(3922), + [anon_sym_DASH] = ACTIONS(3922), + [anon_sym_LBRACE] = ACTIONS(3924), + [anon_sym_DOT_DOT] = ACTIONS(3922), + [aux_sym_expr_unary_token1] = ACTIONS(3924), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3924), + [anon_sym_DOT_DOT_LT] = ACTIONS(3924), + [aux_sym__val_number_decimal_token1] = ACTIONS(3922), + [aux_sym__val_number_decimal_token2] = ACTIONS(3924), + [aux_sym__val_number_decimal_token3] = ACTIONS(3924), + [aux_sym__val_number_decimal_token4] = ACTIONS(3924), + [aux_sym__val_number_token1] = ACTIONS(3924), + [aux_sym__val_number_token2] = ACTIONS(3924), + [aux_sym__val_number_token3] = ACTIONS(3924), + [anon_sym_0b] = ACTIONS(3922), + [anon_sym_0o] = ACTIONS(3922), + [anon_sym_0x] = ACTIONS(3922), + [sym_val_date] = ACTIONS(3924), + [anon_sym_DQUOTE] = ACTIONS(3924), + [sym__str_single_quotes] = ACTIONS(3924), + [sym__str_back_ticks] = ACTIONS(3924), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3924), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3924), + [aux_sym_env_var_token1] = ACTIONS(3926), + [anon_sym_CARET] = ACTIONS(3924), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3924), }, [1076] = { [sym_comment] = STATE(1076), - [anon_sym_true] = ACTIONS(1520), - [anon_sym_false] = ACTIONS(1520), - [anon_sym_null] = ACTIONS(1520), - [aux_sym_cmd_identifier_token38] = ACTIONS(1520), - [aux_sym_cmd_identifier_token39] = ACTIONS(1520), - [aux_sym_cmd_identifier_token40] = ACTIONS(1520), - [sym__newline] = ACTIONS(1520), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_err_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_GT_PIPE] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1520), - [anon_sym_LPAREN] = ACTIONS(1518), - [anon_sym_RPAREN] = ACTIONS(1520), - [anon_sym_DOLLAR] = ACTIONS(1518), - [anon_sym_DASH_DASH] = ACTIONS(1520), - [anon_sym_DASH] = ACTIONS(1518), - [anon_sym_LBRACE] = ACTIONS(1520), - [anon_sym_RBRACE] = ACTIONS(1520), - [anon_sym_DOT_DOT] = ACTIONS(1518), - [anon_sym_LPAREN2] = ACTIONS(1520), - [anon_sym_DOT_DOT2] = ACTIONS(1518), - [anon_sym_DOT] = ACTIONS(3870), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1518), - [anon_sym_DOT_DOT_LT] = ACTIONS(1518), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), - [aux_sym__immediate_decimal_token2] = ACTIONS(3872), - [aux_sym__val_number_decimal_token1] = ACTIONS(1518), - [aux_sym__val_number_decimal_token2] = ACTIONS(1520), - [aux_sym__val_number_decimal_token3] = ACTIONS(1520), - [aux_sym__val_number_decimal_token4] = ACTIONS(1520), - [aux_sym__val_number_token1] = ACTIONS(1520), - [aux_sym__val_number_token2] = ACTIONS(1520), - [aux_sym__val_number_token3] = ACTIONS(1520), - [anon_sym_0b] = ACTIONS(1518), - [sym_filesize_unit] = ACTIONS(1520), - [sym_duration_unit] = ACTIONS(1520), - [anon_sym_0o] = ACTIONS(1518), - [anon_sym_0x] = ACTIONS(1518), - [sym_val_date] = ACTIONS(1520), - [anon_sym_DQUOTE] = ACTIONS(1520), - [sym__str_single_quotes] = ACTIONS(1520), - [sym__str_back_ticks] = ACTIONS(1520), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1520), - [anon_sym_err_GT] = ACTIONS(1518), - [anon_sym_out_GT] = ACTIONS(1518), - [anon_sym_e_GT] = ACTIONS(1518), - [anon_sym_o_GT] = ACTIONS(1518), - [anon_sym_err_PLUSout_GT] = ACTIONS(1518), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), - [anon_sym_o_PLUSe_GT] = ACTIONS(1518), - [anon_sym_e_PLUSo_GT] = ACTIONS(1518), - [anon_sym_err_GT_GT] = ACTIONS(1520), - [anon_sym_out_GT_GT] = ACTIONS(1520), - [anon_sym_e_GT_GT] = ACTIONS(1520), - [anon_sym_o_GT_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1520), - [aux_sym_unquoted_token1] = ACTIONS(1518), - [aux_sym_unquoted_token2] = ACTIONS(1518), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cmd_identifier_token1] = ACTIONS(3929), + [aux_sym_cmd_identifier_token2] = ACTIONS(3929), + [aux_sym_cmd_identifier_token3] = ACTIONS(3929), + [aux_sym_cmd_identifier_token4] = ACTIONS(3929), + [aux_sym_cmd_identifier_token5] = ACTIONS(3929), + [aux_sym_cmd_identifier_token6] = ACTIONS(3929), + [aux_sym_cmd_identifier_token7] = ACTIONS(3929), + [aux_sym_cmd_identifier_token8] = ACTIONS(3929), + [aux_sym_cmd_identifier_token9] = ACTIONS(3929), + [aux_sym_cmd_identifier_token10] = ACTIONS(3929), + [aux_sym_cmd_identifier_token11] = ACTIONS(3929), + [aux_sym_cmd_identifier_token12] = ACTIONS(3929), + [aux_sym_cmd_identifier_token13] = ACTIONS(3929), + [aux_sym_cmd_identifier_token14] = ACTIONS(3929), + [aux_sym_cmd_identifier_token15] = ACTIONS(3929), + [aux_sym_cmd_identifier_token16] = ACTIONS(3929), + [aux_sym_cmd_identifier_token17] = ACTIONS(3929), + [aux_sym_cmd_identifier_token18] = ACTIONS(3929), + [aux_sym_cmd_identifier_token19] = ACTIONS(3929), + [aux_sym_cmd_identifier_token20] = ACTIONS(3929), + [aux_sym_cmd_identifier_token21] = ACTIONS(3929), + [aux_sym_cmd_identifier_token22] = ACTIONS(3929), + [aux_sym_cmd_identifier_token23] = ACTIONS(3929), + [aux_sym_cmd_identifier_token24] = ACTIONS(3929), + [aux_sym_cmd_identifier_token25] = ACTIONS(3929), + [aux_sym_cmd_identifier_token26] = ACTIONS(3929), + [aux_sym_cmd_identifier_token27] = ACTIONS(3929), + [aux_sym_cmd_identifier_token28] = ACTIONS(3929), + [aux_sym_cmd_identifier_token29] = ACTIONS(3929), + [aux_sym_cmd_identifier_token30] = ACTIONS(3929), + [aux_sym_cmd_identifier_token31] = ACTIONS(3929), + [aux_sym_cmd_identifier_token32] = ACTIONS(3929), + [aux_sym_cmd_identifier_token33] = ACTIONS(3929), + [aux_sym_cmd_identifier_token34] = ACTIONS(3929), + [aux_sym_cmd_identifier_token35] = ACTIONS(3929), + [aux_sym_cmd_identifier_token36] = ACTIONS(3929), + [anon_sym_true] = ACTIONS(3929), + [anon_sym_false] = ACTIONS(3929), + [anon_sym_null] = ACTIONS(3929), + [aux_sym_cmd_identifier_token38] = ACTIONS(3929), + [aux_sym_cmd_identifier_token39] = ACTIONS(3929), + [aux_sym_cmd_identifier_token40] = ACTIONS(3929), + [sym__newline] = ACTIONS(3929), + [sym__space] = ACTIONS(3931), + [anon_sym_LBRACK] = ACTIONS(3929), + [anon_sym_LPAREN] = ACTIONS(3929), + [anon_sym_DOLLAR] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3929), + [anon_sym_LBRACE] = ACTIONS(3929), + [anon_sym_DOT_DOT] = ACTIONS(3929), + [aux_sym_expr_unary_token1] = ACTIONS(3929), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3929), + [anon_sym_DOT_DOT_LT] = ACTIONS(3929), + [aux_sym__val_number_decimal_token1] = ACTIONS(3929), + [aux_sym__val_number_decimal_token2] = ACTIONS(3929), + [aux_sym__val_number_decimal_token3] = ACTIONS(3929), + [aux_sym__val_number_decimal_token4] = ACTIONS(3929), + [aux_sym__val_number_token1] = ACTIONS(3929), + [aux_sym__val_number_token2] = ACTIONS(3929), + [aux_sym__val_number_token3] = ACTIONS(3929), + [anon_sym_0b] = ACTIONS(3929), + [anon_sym_0o] = ACTIONS(3929), + [anon_sym_0x] = ACTIONS(3929), + [sym_val_date] = ACTIONS(3929), + [anon_sym_DQUOTE] = ACTIONS(3929), + [sym__str_single_quotes] = ACTIONS(3929), + [sym__str_back_ticks] = ACTIONS(3929), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3929), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3929), + [aux_sym_env_var_token1] = ACTIONS(3929), + [anon_sym_CARET] = ACTIONS(3929), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(3931), }, [1077] = { [sym_comment] = STATE(1077), - [anon_sym_true] = ACTIONS(1542), - [anon_sym_false] = ACTIONS(1542), - [anon_sym_null] = ACTIONS(1542), - [aux_sym_cmd_identifier_token38] = ACTIONS(1542), - [aux_sym_cmd_identifier_token39] = ACTIONS(1542), - [aux_sym_cmd_identifier_token40] = ACTIONS(1542), - [sym__newline] = ACTIONS(1542), - [anon_sym_SEMI] = ACTIONS(1542), - [anon_sym_PIPE] = ACTIONS(1542), - [anon_sym_err_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_GT_PIPE] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1542), - [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_LPAREN] = ACTIONS(1540), - [anon_sym_RPAREN] = ACTIONS(1542), - [anon_sym_DOLLAR] = ACTIONS(1540), - [anon_sym_DASH_DASH] = ACTIONS(1542), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_LBRACE] = ACTIONS(1542), - [anon_sym_RBRACE] = ACTIONS(1542), - [anon_sym_DOT_DOT] = ACTIONS(1540), - [anon_sym_LPAREN2] = ACTIONS(1542), - [anon_sym_DOT_DOT2] = ACTIONS(1540), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1540), - [anon_sym_DOT_DOT_LT] = ACTIONS(1540), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1542), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1542), - [aux_sym__immediate_decimal_token1] = ACTIONS(3874), - [aux_sym__immediate_decimal_token2] = ACTIONS(3876), - [aux_sym__val_number_decimal_token1] = ACTIONS(1540), - [aux_sym__val_number_decimal_token2] = ACTIONS(1542), - [aux_sym__val_number_decimal_token3] = ACTIONS(1542), - [aux_sym__val_number_decimal_token4] = ACTIONS(1542), - [aux_sym__val_number_token1] = ACTIONS(1542), - [aux_sym__val_number_token2] = ACTIONS(1542), - [aux_sym__val_number_token3] = ACTIONS(1542), - [anon_sym_0b] = ACTIONS(1540), - [sym_filesize_unit] = ACTIONS(1542), - [sym_duration_unit] = ACTIONS(1542), - [anon_sym_0o] = ACTIONS(1540), - [anon_sym_0x] = ACTIONS(1540), - [sym_val_date] = ACTIONS(1542), - [anon_sym_DQUOTE] = ACTIONS(1542), - [sym__str_single_quotes] = ACTIONS(1542), - [sym__str_back_ticks] = ACTIONS(1542), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1542), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1542), - [anon_sym_err_GT] = ACTIONS(1540), - [anon_sym_out_GT] = ACTIONS(1540), - [anon_sym_e_GT] = ACTIONS(1540), - [anon_sym_o_GT] = ACTIONS(1540), - [anon_sym_err_PLUSout_GT] = ACTIONS(1540), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1540), - [anon_sym_o_PLUSe_GT] = ACTIONS(1540), - [anon_sym_e_PLUSo_GT] = ACTIONS(1540), - [anon_sym_err_GT_GT] = ACTIONS(1542), - [anon_sym_out_GT_GT] = ACTIONS(1542), - [anon_sym_e_GT_GT] = ACTIONS(1542), - [anon_sym_o_GT_GT] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1542), - [aux_sym_unquoted_token1] = ACTIONS(1540), - [aux_sym_unquoted_token2] = ACTIONS(1540), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_pipe_element_repeat1] = STATE(1081), + [aux_sym_cmd_identifier_token1] = ACTIONS(3922), + [aux_sym_cmd_identifier_token2] = ACTIONS(3922), + [aux_sym_cmd_identifier_token3] = ACTIONS(3922), + [aux_sym_cmd_identifier_token4] = ACTIONS(3922), + [aux_sym_cmd_identifier_token5] = ACTIONS(3922), + [aux_sym_cmd_identifier_token6] = ACTIONS(3922), + [aux_sym_cmd_identifier_token7] = ACTIONS(3922), + [aux_sym_cmd_identifier_token8] = ACTIONS(3922), + [aux_sym_cmd_identifier_token9] = ACTIONS(3922), + [aux_sym_cmd_identifier_token10] = ACTIONS(3922), + [aux_sym_cmd_identifier_token11] = ACTIONS(3922), + [aux_sym_cmd_identifier_token12] = ACTIONS(3922), + [aux_sym_cmd_identifier_token13] = ACTIONS(3922), + [aux_sym_cmd_identifier_token14] = ACTIONS(3922), + [aux_sym_cmd_identifier_token15] = ACTIONS(3922), + [aux_sym_cmd_identifier_token16] = ACTIONS(3922), + [aux_sym_cmd_identifier_token17] = ACTIONS(3922), + [aux_sym_cmd_identifier_token18] = ACTIONS(3922), + [aux_sym_cmd_identifier_token19] = ACTIONS(3922), + [aux_sym_cmd_identifier_token20] = ACTIONS(3922), + [aux_sym_cmd_identifier_token21] = ACTIONS(3922), + [aux_sym_cmd_identifier_token22] = ACTIONS(3922), + [aux_sym_cmd_identifier_token23] = ACTIONS(3922), + [aux_sym_cmd_identifier_token24] = ACTIONS(3922), + [aux_sym_cmd_identifier_token25] = ACTIONS(3922), + [aux_sym_cmd_identifier_token26] = ACTIONS(3922), + [aux_sym_cmd_identifier_token27] = ACTIONS(3922), + [aux_sym_cmd_identifier_token28] = ACTIONS(3922), + [aux_sym_cmd_identifier_token29] = ACTIONS(3922), + [aux_sym_cmd_identifier_token30] = ACTIONS(3922), + [aux_sym_cmd_identifier_token31] = ACTIONS(3922), + [aux_sym_cmd_identifier_token32] = ACTIONS(3922), + [aux_sym_cmd_identifier_token33] = ACTIONS(3922), + [aux_sym_cmd_identifier_token34] = ACTIONS(3922), + [aux_sym_cmd_identifier_token35] = ACTIONS(3922), + [aux_sym_cmd_identifier_token36] = ACTIONS(3922), + [anon_sym_true] = ACTIONS(3922), + [anon_sym_false] = ACTIONS(3922), + [anon_sym_null] = ACTIONS(3922), + [aux_sym_cmd_identifier_token38] = ACTIONS(3922), + [aux_sym_cmd_identifier_token39] = ACTIONS(3922), + [aux_sym_cmd_identifier_token40] = ACTIONS(3922), + [sym__space] = ACTIONS(3933), + [anon_sym_LBRACK] = ACTIONS(3922), + [anon_sym_LPAREN] = ACTIONS(3922), + [anon_sym_DOLLAR] = ACTIONS(3922), + [anon_sym_DASH] = ACTIONS(3922), + [anon_sym_LBRACE] = ACTIONS(3922), + [anon_sym_DOT_DOT] = ACTIONS(3922), + [aux_sym_expr_unary_token1] = ACTIONS(3922), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3922), + [anon_sym_DOT_DOT_LT] = ACTIONS(3922), + [aux_sym__val_number_decimal_token1] = ACTIONS(3922), + [aux_sym__val_number_decimal_token2] = ACTIONS(3922), + [aux_sym__val_number_decimal_token3] = ACTIONS(3922), + [aux_sym__val_number_decimal_token4] = ACTIONS(3922), + [aux_sym__val_number_token1] = ACTIONS(3922), + [aux_sym__val_number_token2] = ACTIONS(3922), + [aux_sym__val_number_token3] = ACTIONS(3922), + [anon_sym_0b] = ACTIONS(3922), + [anon_sym_0o] = ACTIONS(3922), + [anon_sym_0x] = ACTIONS(3922), + [sym_val_date] = ACTIONS(3922), + [anon_sym_DQUOTE] = ACTIONS(3922), + [sym__str_single_quotes] = ACTIONS(3922), + [sym__str_back_ticks] = ACTIONS(3922), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3922), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3922), + [aux_sym_env_var_token1] = ACTIONS(3922), + [anon_sym_CARET] = ACTIONS(3922), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(3924), }, [1078] = { - [sym_path] = STATE(1135), + [sym_env_var] = STATE(7384), [sym_comment] = STATE(1078), - [aux_sym_cell_path_repeat1] = STATE(1079), - [anon_sym_EQ] = ACTIONS(1011), - [anon_sym_PLUS_EQ] = ACTIONS(1013), - [anon_sym_DASH_EQ] = ACTIONS(1013), - [anon_sym_STAR_EQ] = ACTIONS(1013), - [anon_sym_SLASH_EQ] = ACTIONS(1013), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1013), - [sym__newline] = ACTIONS(1011), - [anon_sym_SEMI] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1013), - [anon_sym_err_GT_PIPE] = ACTIONS(1013), - [anon_sym_out_GT_PIPE] = ACTIONS(1013), - [anon_sym_e_GT_PIPE] = ACTIONS(1013), - [anon_sym_o_GT_PIPE] = ACTIONS(1013), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1013), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1013), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1013), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1013), - [anon_sym_LBRACE] = ACTIONS(1013), - [anon_sym_RBRACE] = ACTIONS(1013), - [aux_sym_expr_binary_token1] = ACTIONS(1013), - [aux_sym_expr_binary_token2] = ACTIONS(1013), - [aux_sym_expr_binary_token3] = ACTIONS(1013), - [aux_sym_expr_binary_token4] = ACTIONS(1013), - [aux_sym_expr_binary_token5] = ACTIONS(1013), - [aux_sym_expr_binary_token6] = ACTIONS(1013), - [aux_sym_expr_binary_token7] = ACTIONS(1013), - [aux_sym_expr_binary_token8] = ACTIONS(1013), - [aux_sym_expr_binary_token9] = ACTIONS(1013), - [aux_sym_expr_binary_token10] = ACTIONS(1013), - [aux_sym_expr_binary_token11] = ACTIONS(1013), - [aux_sym_expr_binary_token12] = ACTIONS(1013), - [aux_sym_expr_binary_token13] = ACTIONS(1013), - [aux_sym_expr_binary_token14] = ACTIONS(1013), - [aux_sym_expr_binary_token15] = ACTIONS(1013), - [aux_sym_expr_binary_token16] = ACTIONS(1013), - [aux_sym_expr_binary_token17] = ACTIONS(1013), - [aux_sym_expr_binary_token18] = ACTIONS(1013), - [aux_sym_expr_binary_token19] = ACTIONS(1013), - [aux_sym_expr_binary_token20] = ACTIONS(1013), - [aux_sym_expr_binary_token21] = ACTIONS(1013), - [aux_sym_expr_binary_token22] = ACTIONS(1013), - [aux_sym_expr_binary_token23] = ACTIONS(1013), - [aux_sym_expr_binary_token24] = ACTIONS(1013), - [aux_sym_expr_binary_token25] = ACTIONS(1013), - [aux_sym_expr_binary_token26] = ACTIONS(1013), - [aux_sym_expr_binary_token27] = ACTIONS(1013), - [aux_sym_expr_binary_token28] = ACTIONS(1013), - [anon_sym_DOT_DOT2] = ACTIONS(1011), - [anon_sym_DOT] = ACTIONS(3693), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1013), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1013), - [aux_sym_record_entry_token1] = ACTIONS(1013), - [anon_sym_err_GT] = ACTIONS(1011), - [anon_sym_out_GT] = ACTIONS(1011), - [anon_sym_e_GT] = ACTIONS(1011), - [anon_sym_o_GT] = ACTIONS(1011), - [anon_sym_err_PLUSout_GT] = ACTIONS(1011), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1011), - [anon_sym_o_PLUSe_GT] = ACTIONS(1011), - [anon_sym_e_PLUSo_GT] = ACTIONS(1011), - [anon_sym_err_GT_GT] = ACTIONS(1013), - [anon_sym_out_GT_GT] = ACTIONS(1013), - [anon_sym_e_GT_GT] = ACTIONS(1013), - [anon_sym_o_GT_GT] = ACTIONS(1013), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1013), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1013), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1013), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1013), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1078), + [aux_sym_cmd_identifier_token1] = ACTIONS(3820), + [aux_sym_cmd_identifier_token2] = ACTIONS(3826), + [aux_sym_cmd_identifier_token3] = ACTIONS(3826), + [aux_sym_cmd_identifier_token4] = ACTIONS(3826), + [aux_sym_cmd_identifier_token5] = ACTIONS(3826), + [aux_sym_cmd_identifier_token6] = ACTIONS(3826), + [aux_sym_cmd_identifier_token7] = ACTIONS(3826), + [aux_sym_cmd_identifier_token8] = ACTIONS(3826), + [aux_sym_cmd_identifier_token9] = ACTIONS(3820), + [aux_sym_cmd_identifier_token10] = ACTIONS(3826), + [aux_sym_cmd_identifier_token11] = ACTIONS(3826), + [aux_sym_cmd_identifier_token12] = ACTIONS(3826), + [aux_sym_cmd_identifier_token13] = ACTIONS(3820), + [aux_sym_cmd_identifier_token14] = ACTIONS(3826), + [aux_sym_cmd_identifier_token15] = ACTIONS(3820), + [aux_sym_cmd_identifier_token16] = ACTIONS(3826), + [aux_sym_cmd_identifier_token17] = ACTIONS(3826), + [aux_sym_cmd_identifier_token18] = ACTIONS(3826), + [aux_sym_cmd_identifier_token19] = ACTIONS(3826), + [aux_sym_cmd_identifier_token20] = ACTIONS(3826), + [aux_sym_cmd_identifier_token21] = ACTIONS(3826), + [aux_sym_cmd_identifier_token22] = ACTIONS(3826), + [aux_sym_cmd_identifier_token23] = ACTIONS(3826), + [aux_sym_cmd_identifier_token24] = ACTIONS(3826), + [aux_sym_cmd_identifier_token25] = ACTIONS(3826), + [aux_sym_cmd_identifier_token26] = ACTIONS(3826), + [aux_sym_cmd_identifier_token27] = ACTIONS(3826), + [aux_sym_cmd_identifier_token28] = ACTIONS(3826), + [aux_sym_cmd_identifier_token29] = ACTIONS(3826), + [aux_sym_cmd_identifier_token30] = ACTIONS(3826), + [aux_sym_cmd_identifier_token31] = ACTIONS(3826), + [aux_sym_cmd_identifier_token32] = ACTIONS(3826), + [aux_sym_cmd_identifier_token33] = ACTIONS(3826), + [aux_sym_cmd_identifier_token34] = ACTIONS(3826), + [aux_sym_cmd_identifier_token35] = ACTIONS(3826), + [aux_sym_cmd_identifier_token36] = ACTIONS(3820), + [anon_sym_true] = ACTIONS(3826), + [anon_sym_false] = ACTIONS(3826), + [anon_sym_null] = ACTIONS(3826), + [aux_sym_cmd_identifier_token38] = ACTIONS(3820), + [aux_sym_cmd_identifier_token39] = ACTIONS(3826), + [aux_sym_cmd_identifier_token40] = ACTIONS(3826), + [anon_sym_LBRACK] = ACTIONS(3826), + [anon_sym_LPAREN] = ACTIONS(3826), + [anon_sym_DOLLAR] = ACTIONS(3820), + [anon_sym_DASH] = ACTIONS(3820), + [anon_sym_LBRACE] = ACTIONS(3826), + [anon_sym_DOT_DOT] = ACTIONS(3820), + [aux_sym_expr_unary_token1] = ACTIONS(3826), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3826), + [anon_sym_DOT_DOT_LT] = ACTIONS(3826), + [aux_sym__val_number_decimal_token1] = ACTIONS(3820), + [aux_sym__val_number_decimal_token2] = ACTIONS(3826), + [aux_sym__val_number_decimal_token3] = ACTIONS(3826), + [aux_sym__val_number_decimal_token4] = ACTIONS(3826), + [aux_sym__val_number_token1] = ACTIONS(3826), + [aux_sym__val_number_token2] = ACTIONS(3826), + [aux_sym__val_number_token3] = ACTIONS(3826), + [anon_sym_0b] = ACTIONS(3820), + [anon_sym_0o] = ACTIONS(3820), + [anon_sym_0x] = ACTIONS(3820), + [sym_val_date] = ACTIONS(3826), + [anon_sym_DQUOTE] = ACTIONS(3826), + [sym__str_single_quotes] = ACTIONS(3826), + [sym__str_back_ticks] = ACTIONS(3826), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3826), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3826), + [aux_sym_env_var_token1] = ACTIONS(3935), + [anon_sym_CARET] = ACTIONS(3826), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3826), }, [1079] = { - [sym_path] = STATE(1135), [sym_comment] = STATE(1079), - [aux_sym_cell_path_repeat1] = STATE(1079), - [anon_sym_EQ] = ACTIONS(1015), - [anon_sym_PLUS_EQ] = ACTIONS(1017), - [anon_sym_DASH_EQ] = ACTIONS(1017), - [anon_sym_STAR_EQ] = ACTIONS(1017), - [anon_sym_SLASH_EQ] = ACTIONS(1017), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1017), - [sym__newline] = ACTIONS(1015), - [anon_sym_SEMI] = ACTIONS(1017), - [anon_sym_PIPE] = ACTIONS(1017), - [anon_sym_err_GT_PIPE] = ACTIONS(1017), - [anon_sym_out_GT_PIPE] = ACTIONS(1017), - [anon_sym_e_GT_PIPE] = ACTIONS(1017), - [anon_sym_o_GT_PIPE] = ACTIONS(1017), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1017), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1017), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1017), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1017), - [anon_sym_LBRACE] = ACTIONS(1017), - [anon_sym_RBRACE] = ACTIONS(1017), - [aux_sym_expr_binary_token1] = ACTIONS(1017), - [aux_sym_expr_binary_token2] = ACTIONS(1017), - [aux_sym_expr_binary_token3] = ACTIONS(1017), - [aux_sym_expr_binary_token4] = ACTIONS(1017), - [aux_sym_expr_binary_token5] = ACTIONS(1017), - [aux_sym_expr_binary_token6] = ACTIONS(1017), - [aux_sym_expr_binary_token7] = ACTIONS(1017), - [aux_sym_expr_binary_token8] = ACTIONS(1017), - [aux_sym_expr_binary_token9] = ACTIONS(1017), - [aux_sym_expr_binary_token10] = ACTIONS(1017), - [aux_sym_expr_binary_token11] = ACTIONS(1017), - [aux_sym_expr_binary_token12] = ACTIONS(1017), - [aux_sym_expr_binary_token13] = ACTIONS(1017), - [aux_sym_expr_binary_token14] = ACTIONS(1017), - [aux_sym_expr_binary_token15] = ACTIONS(1017), - [aux_sym_expr_binary_token16] = ACTIONS(1017), - [aux_sym_expr_binary_token17] = ACTIONS(1017), - [aux_sym_expr_binary_token18] = ACTIONS(1017), - [aux_sym_expr_binary_token19] = ACTIONS(1017), - [aux_sym_expr_binary_token20] = ACTIONS(1017), - [aux_sym_expr_binary_token21] = ACTIONS(1017), - [aux_sym_expr_binary_token22] = ACTIONS(1017), - [aux_sym_expr_binary_token23] = ACTIONS(1017), - [aux_sym_expr_binary_token24] = ACTIONS(1017), - [aux_sym_expr_binary_token25] = ACTIONS(1017), - [aux_sym_expr_binary_token26] = ACTIONS(1017), - [aux_sym_expr_binary_token27] = ACTIONS(1017), - [aux_sym_expr_binary_token28] = ACTIONS(1017), - [anon_sym_DOT_DOT2] = ACTIONS(1015), - [anon_sym_DOT] = ACTIONS(3878), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1017), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1017), - [aux_sym_record_entry_token1] = ACTIONS(1017), - [anon_sym_err_GT] = ACTIONS(1015), - [anon_sym_out_GT] = ACTIONS(1015), - [anon_sym_e_GT] = ACTIONS(1015), - [anon_sym_o_GT] = ACTIONS(1015), - [anon_sym_err_PLUSout_GT] = ACTIONS(1015), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1015), - [anon_sym_o_PLUSe_GT] = ACTIONS(1015), - [anon_sym_e_PLUSo_GT] = ACTIONS(1015), - [anon_sym_err_GT_GT] = ACTIONS(1017), - [anon_sym_out_GT_GT] = ACTIONS(1017), - [anon_sym_e_GT_GT] = ACTIONS(1017), - [anon_sym_o_GT_GT] = ACTIONS(1017), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1017), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1017), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1017), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1017), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_shebang_repeat1] = STATE(1079), + [aux_sym_cmd_identifier_token1] = ACTIONS(1349), + [aux_sym_cmd_identifier_token2] = ACTIONS(1351), + [aux_sym_cmd_identifier_token3] = ACTIONS(1351), + [aux_sym_cmd_identifier_token4] = ACTIONS(1351), + [aux_sym_cmd_identifier_token5] = ACTIONS(1351), + [aux_sym_cmd_identifier_token6] = ACTIONS(1351), + [aux_sym_cmd_identifier_token7] = ACTIONS(1351), + [aux_sym_cmd_identifier_token8] = ACTIONS(1351), + [aux_sym_cmd_identifier_token9] = ACTIONS(1349), + [aux_sym_cmd_identifier_token10] = ACTIONS(1351), + [aux_sym_cmd_identifier_token11] = ACTIONS(1351), + [aux_sym_cmd_identifier_token12] = ACTIONS(1351), + [aux_sym_cmd_identifier_token13] = ACTIONS(1349), + [aux_sym_cmd_identifier_token14] = ACTIONS(1351), + [aux_sym_cmd_identifier_token15] = ACTIONS(1349), + [aux_sym_cmd_identifier_token16] = ACTIONS(1351), + [aux_sym_cmd_identifier_token17] = ACTIONS(1351), + [aux_sym_cmd_identifier_token18] = ACTIONS(1351), + [aux_sym_cmd_identifier_token19] = ACTIONS(1351), + [aux_sym_cmd_identifier_token20] = ACTIONS(1351), + [aux_sym_cmd_identifier_token21] = ACTIONS(1351), + [aux_sym_cmd_identifier_token22] = ACTIONS(1351), + [aux_sym_cmd_identifier_token23] = ACTIONS(1349), + [aux_sym_cmd_identifier_token24] = ACTIONS(1351), + [aux_sym_cmd_identifier_token25] = ACTIONS(1351), + [aux_sym_cmd_identifier_token26] = ACTIONS(1351), + [aux_sym_cmd_identifier_token27] = ACTIONS(1351), + [aux_sym_cmd_identifier_token28] = ACTIONS(1351), + [aux_sym_cmd_identifier_token29] = ACTIONS(1351), + [aux_sym_cmd_identifier_token30] = ACTIONS(1351), + [aux_sym_cmd_identifier_token31] = ACTIONS(1351), + [aux_sym_cmd_identifier_token32] = ACTIONS(1351), + [aux_sym_cmd_identifier_token33] = ACTIONS(1351), + [aux_sym_cmd_identifier_token34] = ACTIONS(1351), + [aux_sym_cmd_identifier_token35] = ACTIONS(1351), + [aux_sym_cmd_identifier_token36] = ACTIONS(1349), + [anon_sym_true] = ACTIONS(1351), + [anon_sym_false] = ACTIONS(1351), + [anon_sym_null] = ACTIONS(1351), + [aux_sym_cmd_identifier_token38] = ACTIONS(1349), + [aux_sym_cmd_identifier_token39] = ACTIONS(1351), + [aux_sym_cmd_identifier_token40] = ACTIONS(1351), + [sym__newline] = ACTIONS(3938), + [anon_sym_LBRACK] = ACTIONS(1351), + [anon_sym_LPAREN] = ACTIONS(1351), + [anon_sym_DOLLAR] = ACTIONS(1349), + [anon_sym_DASH] = ACTIONS(1349), + [anon_sym_if] = ACTIONS(1349), + [anon_sym_LBRACE] = ACTIONS(1351), + [anon_sym_DOT_DOT] = ACTIONS(1349), + [aux_sym_expr_unary_token1] = ACTIONS(1351), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1351), + [anon_sym_DOT_DOT_LT] = ACTIONS(1351), + [aux_sym__val_number_decimal_token1] = ACTIONS(1349), + [aux_sym__val_number_decimal_token2] = ACTIONS(1351), + [aux_sym__val_number_decimal_token3] = ACTIONS(1351), + [aux_sym__val_number_decimal_token4] = ACTIONS(1351), + [aux_sym__val_number_token1] = ACTIONS(1351), + [aux_sym__val_number_token2] = ACTIONS(1351), + [aux_sym__val_number_token3] = ACTIONS(1351), + [anon_sym_0b] = ACTIONS(1349), + [anon_sym_0o] = ACTIONS(1349), + [anon_sym_0x] = ACTIONS(1349), + [sym_val_date] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1351), + [sym__str_single_quotes] = ACTIONS(1351), + [sym__str_back_ticks] = ACTIONS(1351), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1351), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1351), + [anon_sym_CARET] = ACTIONS(1351), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1351), }, [1080] = { - [sym__expr_parenthesized_immediate] = STATE(1788), - [sym__immediate_decimal] = STATE(1456), - [sym_val_variable] = STATE(1788), + [sym_expr_parenthesized] = STATE(6655), + [sym_val_range] = STATE(7881), + [sym__val_range] = STATE(7794), + [sym__value] = STATE(7881), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3688), + [sym_val_variable] = STATE(3649), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(5638), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(4434), + [sym__str_double_quotes] = STATE(4434), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(7885), + [sym__unquoted_anonymous_prefix] = STATE(7859), [sym_comment] = STATE(1080), - [anon_sym_true] = ACTIONS(1492), - [anon_sym_false] = ACTIONS(1492), - [anon_sym_null] = ACTIONS(1492), - [aux_sym_cmd_identifier_token38] = ACTIONS(1492), - [aux_sym_cmd_identifier_token39] = ACTIONS(1492), - [aux_sym_cmd_identifier_token40] = ACTIONS(1492), - [sym__newline] = ACTIONS(1492), - [anon_sym_SEMI] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(1492), - [anon_sym_err_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_GT_PIPE] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1492), - [anon_sym_LBRACK] = ACTIONS(1492), - [anon_sym_LPAREN] = ACTIONS(1478), - [anon_sym_RPAREN] = ACTIONS(1492), - [anon_sym_DOLLAR] = ACTIONS(3881), - [anon_sym_DASH_DASH] = ACTIONS(1492), - [anon_sym_DASH] = ACTIONS(1478), - [anon_sym_LBRACE] = ACTIONS(1492), - [anon_sym_RBRACE] = ACTIONS(1492), - [anon_sym_DOT_DOT] = ACTIONS(1478), - [anon_sym_LPAREN2] = ACTIONS(3883), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1492), - [anon_sym_DOT_DOT_LT] = ACTIONS(1492), - [aux_sym__immediate_decimal_token1] = ACTIONS(3885), - [aux_sym__immediate_decimal_token3] = ACTIONS(3887), - [aux_sym__immediate_decimal_token4] = ACTIONS(3889), - [aux_sym__immediate_decimal_token5] = ACTIONS(3891), - [aux_sym__val_number_decimal_token1] = ACTIONS(1478), - [aux_sym__val_number_decimal_token2] = ACTIONS(1478), - [aux_sym__val_number_decimal_token3] = ACTIONS(1478), - [aux_sym__val_number_decimal_token4] = ACTIONS(1478), - [aux_sym__val_number_token1] = ACTIONS(1492), - [aux_sym__val_number_token2] = ACTIONS(1492), - [aux_sym__val_number_token3] = ACTIONS(1492), - [anon_sym_0b] = ACTIONS(1478), - [anon_sym_0o] = ACTIONS(1478), - [anon_sym_0x] = ACTIONS(1478), - [sym_val_date] = ACTIONS(1492), - [anon_sym_DQUOTE] = ACTIONS(1492), - [sym__str_single_quotes] = ACTIONS(1492), - [sym__str_back_ticks] = ACTIONS(1492), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1492), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1492), - [anon_sym_err_GT] = ACTIONS(1478), - [anon_sym_out_GT] = ACTIONS(1478), - [anon_sym_e_GT] = ACTIONS(1478), - [anon_sym_o_GT] = ACTIONS(1478), - [anon_sym_err_PLUSout_GT] = ACTIONS(1478), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1478), - [anon_sym_o_PLUSe_GT] = ACTIONS(1478), - [anon_sym_e_PLUSo_GT] = ACTIONS(1478), - [anon_sym_err_GT_GT] = ACTIONS(1492), - [anon_sym_out_GT_GT] = ACTIONS(1492), - [anon_sym_e_GT_GT] = ACTIONS(1492), - [anon_sym_o_GT_GT] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1492), - [aux_sym_unquoted_token1] = ACTIONS(1478), - [aux_sym_unquoted_token2] = ACTIONS(1494), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(3350), + [anon_sym_false] = ACTIONS(3350), + [anon_sym_null] = ACTIONS(3352), + [aux_sym_cmd_identifier_token38] = ACTIONS(3828), + [aux_sym_cmd_identifier_token39] = ACTIONS(3828), + [aux_sym_cmd_identifier_token40] = ACTIONS(3828), + [anon_sym_LBRACK] = ACTIONS(3830), + [anon_sym_LPAREN] = ACTIONS(3832), + [anon_sym_DOLLAR] = ACTIONS(3834), + [anon_sym_LBRACE] = ACTIONS(3836), + [anon_sym_DOT_DOT] = ACTIONS(3838), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3840), + [anon_sym_DOT_DOT_LT] = ACTIONS(3840), + [aux_sym__val_number_decimal_token1] = ACTIONS(3366), + [aux_sym__val_number_decimal_token2] = ACTIONS(3368), + [aux_sym__val_number_decimal_token3] = ACTIONS(3370), + [aux_sym__val_number_decimal_token4] = ACTIONS(3372), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3374), + [anon_sym_DQUOTE] = ACTIONS(3842), + [sym__str_single_quotes] = ACTIONS(3844), + [sym__str_back_ticks] = ACTIONS(3844), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3846), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3848), }, [1081] = { - [sym__expr_parenthesized_immediate] = STATE(1582), - [sym__immediate_decimal] = STATE(1423), - [sym_val_variable] = STATE(1582), [sym_comment] = STATE(1081), - [anon_sym_true] = ACTIONS(1550), - [anon_sym_false] = ACTIONS(1550), - [anon_sym_null] = ACTIONS(1550), - [aux_sym_cmd_identifier_token38] = ACTIONS(1550), - [aux_sym_cmd_identifier_token39] = ACTIONS(1550), - [aux_sym_cmd_identifier_token40] = ACTIONS(1550), - [sym__newline] = ACTIONS(1550), - [anon_sym_SEMI] = ACTIONS(1550), - [anon_sym_PIPE] = ACTIONS(1550), - [anon_sym_err_GT_PIPE] = ACTIONS(1550), - [anon_sym_out_GT_PIPE] = ACTIONS(1550), - [anon_sym_e_GT_PIPE] = ACTIONS(1550), - [anon_sym_o_GT_PIPE] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1550), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_RPAREN] = ACTIONS(1550), - [anon_sym_DOLLAR] = ACTIONS(3881), - [anon_sym_DASH_DASH] = ACTIONS(1550), - [anon_sym_DASH] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(1550), - [anon_sym_RBRACE] = ACTIONS(1550), - [anon_sym_DOT_DOT] = ACTIONS(1548), - [anon_sym_LPAREN2] = ACTIONS(3883), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1550), - [anon_sym_DOT_DOT_LT] = ACTIONS(1550), - [aux_sym__immediate_decimal_token1] = ACTIONS(3885), - [aux_sym__immediate_decimal_token3] = ACTIONS(3887), - [aux_sym__immediate_decimal_token4] = ACTIONS(3889), - [aux_sym__immediate_decimal_token5] = ACTIONS(3891), - [aux_sym__val_number_decimal_token1] = ACTIONS(1548), - [aux_sym__val_number_decimal_token2] = ACTIONS(1548), - [aux_sym__val_number_decimal_token3] = ACTIONS(1548), - [aux_sym__val_number_decimal_token4] = ACTIONS(1548), - [aux_sym__val_number_token1] = ACTIONS(1550), - [aux_sym__val_number_token2] = ACTIONS(1550), - [aux_sym__val_number_token3] = ACTIONS(1550), - [anon_sym_0b] = ACTIONS(1548), - [anon_sym_0o] = ACTIONS(1548), - [anon_sym_0x] = ACTIONS(1548), - [sym_val_date] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1550), - [sym__str_single_quotes] = ACTIONS(1550), - [sym__str_back_ticks] = ACTIONS(1550), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1550), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1550), - [anon_sym_err_GT] = ACTIONS(1548), - [anon_sym_out_GT] = ACTIONS(1548), - [anon_sym_e_GT] = ACTIONS(1548), - [anon_sym_o_GT] = ACTIONS(1548), - [anon_sym_err_PLUSout_GT] = ACTIONS(1548), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1548), - [anon_sym_o_PLUSe_GT] = ACTIONS(1548), - [anon_sym_e_PLUSo_GT] = ACTIONS(1548), - [anon_sym_err_GT_GT] = ACTIONS(1550), - [anon_sym_out_GT_GT] = ACTIONS(1550), - [anon_sym_e_GT_GT] = ACTIONS(1550), - [anon_sym_o_GT_GT] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1550), - [aux_sym_unquoted_token1] = ACTIONS(1548), - [aux_sym_unquoted_token2] = ACTIONS(1552), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_pipe_element_repeat1] = STATE(1081), + [aux_sym_cmd_identifier_token1] = ACTIONS(3941), + [aux_sym_cmd_identifier_token2] = ACTIONS(3941), + [aux_sym_cmd_identifier_token3] = ACTIONS(3941), + [aux_sym_cmd_identifier_token4] = ACTIONS(3941), + [aux_sym_cmd_identifier_token5] = ACTIONS(3941), + [aux_sym_cmd_identifier_token6] = ACTIONS(3941), + [aux_sym_cmd_identifier_token7] = ACTIONS(3941), + [aux_sym_cmd_identifier_token8] = ACTIONS(3941), + [aux_sym_cmd_identifier_token9] = ACTIONS(3941), + [aux_sym_cmd_identifier_token10] = ACTIONS(3941), + [aux_sym_cmd_identifier_token11] = ACTIONS(3941), + [aux_sym_cmd_identifier_token12] = ACTIONS(3941), + [aux_sym_cmd_identifier_token13] = ACTIONS(3941), + [aux_sym_cmd_identifier_token14] = ACTIONS(3941), + [aux_sym_cmd_identifier_token15] = ACTIONS(3941), + [aux_sym_cmd_identifier_token16] = ACTIONS(3941), + [aux_sym_cmd_identifier_token17] = ACTIONS(3941), + [aux_sym_cmd_identifier_token18] = ACTIONS(3941), + [aux_sym_cmd_identifier_token19] = ACTIONS(3941), + [aux_sym_cmd_identifier_token20] = ACTIONS(3941), + [aux_sym_cmd_identifier_token21] = ACTIONS(3941), + [aux_sym_cmd_identifier_token22] = ACTIONS(3941), + [aux_sym_cmd_identifier_token23] = ACTIONS(3941), + [aux_sym_cmd_identifier_token24] = ACTIONS(3941), + [aux_sym_cmd_identifier_token25] = ACTIONS(3941), + [aux_sym_cmd_identifier_token26] = ACTIONS(3941), + [aux_sym_cmd_identifier_token27] = ACTIONS(3941), + [aux_sym_cmd_identifier_token28] = ACTIONS(3941), + [aux_sym_cmd_identifier_token29] = ACTIONS(3941), + [aux_sym_cmd_identifier_token30] = ACTIONS(3941), + [aux_sym_cmd_identifier_token31] = ACTIONS(3941), + [aux_sym_cmd_identifier_token32] = ACTIONS(3941), + [aux_sym_cmd_identifier_token33] = ACTIONS(3941), + [aux_sym_cmd_identifier_token34] = ACTIONS(3941), + [aux_sym_cmd_identifier_token35] = ACTIONS(3941), + [aux_sym_cmd_identifier_token36] = ACTIONS(3941), + [anon_sym_true] = ACTIONS(3941), + [anon_sym_false] = ACTIONS(3941), + [anon_sym_null] = ACTIONS(3941), + [aux_sym_cmd_identifier_token38] = ACTIONS(3941), + [aux_sym_cmd_identifier_token39] = ACTIONS(3941), + [aux_sym_cmd_identifier_token40] = ACTIONS(3941), + [sym__space] = ACTIONS(3943), + [anon_sym_LBRACK] = ACTIONS(3941), + [anon_sym_LPAREN] = ACTIONS(3941), + [anon_sym_DOLLAR] = ACTIONS(3941), + [anon_sym_DASH] = ACTIONS(3941), + [anon_sym_LBRACE] = ACTIONS(3941), + [anon_sym_DOT_DOT] = ACTIONS(3941), + [aux_sym_expr_unary_token1] = ACTIONS(3941), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3941), + [anon_sym_DOT_DOT_LT] = ACTIONS(3941), + [aux_sym__val_number_decimal_token1] = ACTIONS(3941), + [aux_sym__val_number_decimal_token2] = ACTIONS(3941), + [aux_sym__val_number_decimal_token3] = ACTIONS(3941), + [aux_sym__val_number_decimal_token4] = ACTIONS(3941), + [aux_sym__val_number_token1] = ACTIONS(3941), + [aux_sym__val_number_token2] = ACTIONS(3941), + [aux_sym__val_number_token3] = ACTIONS(3941), + [anon_sym_0b] = ACTIONS(3941), + [anon_sym_0o] = ACTIONS(3941), + [anon_sym_0x] = ACTIONS(3941), + [sym_val_date] = ACTIONS(3941), + [anon_sym_DQUOTE] = ACTIONS(3941), + [sym__str_single_quotes] = ACTIONS(3941), + [sym__str_back_ticks] = ACTIONS(3941), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3941), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3941), + [aux_sym_env_var_token1] = ACTIONS(3941), + [anon_sym_CARET] = ACTIONS(3941), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(3946), }, [1082] = { - [sym__expr_parenthesized_immediate] = STATE(1491), - [sym__immediate_decimal] = STATE(1304), - [sym_val_variable] = STATE(1491), + [sym_expr_parenthesized] = STATE(6692), + [sym_val_range] = STATE(7704), + [sym__val_range] = STATE(7794), + [sym__value] = STATE(7704), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3688), + [sym_val_variable] = STATE(3649), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(5638), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(4434), + [sym__str_double_quotes] = STATE(4434), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(7754), + [sym__unquoted_anonymous_prefix] = STATE(7859), [sym_comment] = STATE(1082), - [ts_builtin_sym_end] = ACTIONS(1492), - [anon_sym_true] = ACTIONS(1492), - [anon_sym_false] = ACTIONS(1492), - [anon_sym_null] = ACTIONS(1492), - [aux_sym_cmd_identifier_token38] = ACTIONS(1492), - [aux_sym_cmd_identifier_token39] = ACTIONS(1492), - [aux_sym_cmd_identifier_token40] = ACTIONS(1492), - [sym__newline] = ACTIONS(1492), - [anon_sym_SEMI] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(1492), - [anon_sym_err_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_GT_PIPE] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1492), - [anon_sym_LBRACK] = ACTIONS(1492), - [anon_sym_LPAREN] = ACTIONS(1478), - [anon_sym_DOLLAR] = ACTIONS(2834), - [anon_sym_DASH_DASH] = ACTIONS(1492), - [anon_sym_DASH] = ACTIONS(1478), - [anon_sym_LBRACE] = ACTIONS(1492), - [anon_sym_DOT_DOT] = ACTIONS(1478), - [anon_sym_LPAREN2] = ACTIONS(3893), - [anon_sym_DOT] = ACTIONS(3895), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1492), - [anon_sym_DOT_DOT_LT] = ACTIONS(1492), - [aux_sym__immediate_decimal_token1] = ACTIONS(3897), - [aux_sym__immediate_decimal_token3] = ACTIONS(3899), - [aux_sym__immediate_decimal_token4] = ACTIONS(3901), - [aux_sym__immediate_decimal_token5] = ACTIONS(3903), - [aux_sym__val_number_decimal_token1] = ACTIONS(1478), - [aux_sym__val_number_decimal_token2] = ACTIONS(1478), - [aux_sym__val_number_decimal_token3] = ACTIONS(1478), - [aux_sym__val_number_decimal_token4] = ACTIONS(1478), - [aux_sym__val_number_token1] = ACTIONS(1492), - [aux_sym__val_number_token2] = ACTIONS(1492), - [aux_sym__val_number_token3] = ACTIONS(1492), - [anon_sym_0b] = ACTIONS(1478), - [anon_sym_0o] = ACTIONS(1478), - [anon_sym_0x] = ACTIONS(1478), - [sym_val_date] = ACTIONS(1492), - [anon_sym_DQUOTE] = ACTIONS(1492), - [sym__str_single_quotes] = ACTIONS(1492), - [sym__str_back_ticks] = ACTIONS(1492), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1492), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1492), - [anon_sym_err_GT] = ACTIONS(1478), - [anon_sym_out_GT] = ACTIONS(1478), - [anon_sym_e_GT] = ACTIONS(1478), - [anon_sym_o_GT] = ACTIONS(1478), - [anon_sym_err_PLUSout_GT] = ACTIONS(1478), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1478), - [anon_sym_o_PLUSe_GT] = ACTIONS(1478), - [anon_sym_e_PLUSo_GT] = ACTIONS(1478), - [anon_sym_err_GT_GT] = ACTIONS(1492), - [anon_sym_out_GT_GT] = ACTIONS(1492), - [anon_sym_e_GT_GT] = ACTIONS(1492), - [anon_sym_o_GT_GT] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1492), - [aux_sym_unquoted_token1] = ACTIONS(1478), - [aux_sym_unquoted_token2] = ACTIONS(1494), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(3350), + [anon_sym_false] = ACTIONS(3350), + [anon_sym_null] = ACTIONS(3352), + [aux_sym_cmd_identifier_token38] = ACTIONS(3828), + [aux_sym_cmd_identifier_token39] = ACTIONS(3828), + [aux_sym_cmd_identifier_token40] = ACTIONS(3828), + [anon_sym_LBRACK] = ACTIONS(3830), + [anon_sym_LPAREN] = ACTIONS(3832), + [anon_sym_DOLLAR] = ACTIONS(3834), + [anon_sym_LBRACE] = ACTIONS(3836), + [anon_sym_DOT_DOT] = ACTIONS(3838), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3840), + [anon_sym_DOT_DOT_LT] = ACTIONS(3840), + [aux_sym__val_number_decimal_token1] = ACTIONS(3366), + [aux_sym__val_number_decimal_token2] = ACTIONS(3368), + [aux_sym__val_number_decimal_token3] = ACTIONS(3370), + [aux_sym__val_number_decimal_token4] = ACTIONS(3372), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3374), + [anon_sym_DQUOTE] = ACTIONS(3842), + [sym__str_single_quotes] = ACTIONS(3844), + [sym__str_back_ticks] = ACTIONS(3844), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3846), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3848), }, [1083] = { + [sym__expr_parenthesized_immediate] = STATE(1351), + [sym__immediate_decimal] = STATE(1255), + [sym_val_variable] = STATE(1351), [sym_comment] = STATE(1083), - [aux_sym_cmd_identifier_token1] = ACTIONS(1311), - [aux_sym_cmd_identifier_token2] = ACTIONS(1307), - [aux_sym_cmd_identifier_token3] = ACTIONS(1307), - [aux_sym_cmd_identifier_token4] = ACTIONS(1307), - [aux_sym_cmd_identifier_token5] = ACTIONS(1307), - [aux_sym_cmd_identifier_token6] = ACTIONS(1307), - [aux_sym_cmd_identifier_token7] = ACTIONS(1307), - [aux_sym_cmd_identifier_token8] = ACTIONS(1307), - [aux_sym_cmd_identifier_token9] = ACTIONS(1311), - [aux_sym_cmd_identifier_token10] = ACTIONS(1307), - [aux_sym_cmd_identifier_token11] = ACTIONS(1307), - [aux_sym_cmd_identifier_token12] = ACTIONS(1307), - [aux_sym_cmd_identifier_token13] = ACTIONS(1311), - [aux_sym_cmd_identifier_token14] = ACTIONS(1307), - [aux_sym_cmd_identifier_token15] = ACTIONS(1311), - [aux_sym_cmd_identifier_token16] = ACTIONS(1307), - [aux_sym_cmd_identifier_token17] = ACTIONS(1307), - [aux_sym_cmd_identifier_token18] = ACTIONS(1307), - [aux_sym_cmd_identifier_token19] = ACTIONS(1307), - [aux_sym_cmd_identifier_token20] = ACTIONS(1307), - [aux_sym_cmd_identifier_token21] = ACTIONS(1307), - [aux_sym_cmd_identifier_token22] = ACTIONS(1307), - [aux_sym_cmd_identifier_token23] = ACTIONS(1311), - [aux_sym_cmd_identifier_token24] = ACTIONS(1307), - [aux_sym_cmd_identifier_token25] = ACTIONS(1307), - [aux_sym_cmd_identifier_token26] = ACTIONS(1307), - [aux_sym_cmd_identifier_token27] = ACTIONS(1307), - [aux_sym_cmd_identifier_token28] = ACTIONS(1307), - [aux_sym_cmd_identifier_token29] = ACTIONS(1307), - [aux_sym_cmd_identifier_token30] = ACTIONS(1307), - [aux_sym_cmd_identifier_token31] = ACTIONS(1307), - [aux_sym_cmd_identifier_token32] = ACTIONS(1307), - [aux_sym_cmd_identifier_token33] = ACTIONS(1307), - [aux_sym_cmd_identifier_token34] = ACTIONS(1307), - [aux_sym_cmd_identifier_token35] = ACTIONS(1307), - [aux_sym_cmd_identifier_token36] = ACTIONS(1311), - [anon_sym_true] = ACTIONS(1307), - [anon_sym_false] = ACTIONS(1307), - [anon_sym_null] = ACTIONS(1307), - [aux_sym_cmd_identifier_token38] = ACTIONS(1311), - [aux_sym_cmd_identifier_token39] = ACTIONS(1307), - [aux_sym_cmd_identifier_token40] = ACTIONS(1307), - [sym__newline] = ACTIONS(1307), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1307), - [anon_sym_DOLLAR] = ACTIONS(1311), - [anon_sym_DASH] = ACTIONS(1311), - [anon_sym_if] = ACTIONS(1311), - [anon_sym_LBRACE] = ACTIONS(1307), - [anon_sym_DOT_DOT] = ACTIONS(1311), - [aux_sym_expr_unary_token1] = ACTIONS(1307), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1307), - [anon_sym_DOT_DOT_LT] = ACTIONS(1307), - [aux_sym__val_number_decimal_token1] = ACTIONS(1311), - [aux_sym__val_number_decimal_token2] = ACTIONS(1307), - [aux_sym__val_number_decimal_token3] = ACTIONS(1307), - [aux_sym__val_number_decimal_token4] = ACTIONS(1307), - [aux_sym__val_number_token1] = ACTIONS(1307), - [aux_sym__val_number_token2] = ACTIONS(1307), - [aux_sym__val_number_token3] = ACTIONS(1307), - [anon_sym_0b] = ACTIONS(1311), - [anon_sym_0o] = ACTIONS(1311), - [anon_sym_0x] = ACTIONS(1311), - [sym_val_date] = ACTIONS(1307), - [anon_sym_DQUOTE] = ACTIONS(1307), - [sym__str_single_quotes] = ACTIONS(1307), - [sym__str_back_ticks] = ACTIONS(1307), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1307), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1307), - [anon_sym_CARET] = ACTIONS(1307), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(1524), + [anon_sym_false] = ACTIONS(1524), + [anon_sym_null] = ACTIONS(1524), + [aux_sym_cmd_identifier_token38] = ACTIONS(1524), + [aux_sym_cmd_identifier_token39] = ACTIONS(1524), + [aux_sym_cmd_identifier_token40] = ACTIONS(1524), + [sym__newline] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(1524), + [anon_sym_PIPE] = ACTIONS(1524), + [anon_sym_err_GT_PIPE] = ACTIONS(1524), + [anon_sym_out_GT_PIPE] = ACTIONS(1524), + [anon_sym_e_GT_PIPE] = ACTIONS(1524), + [anon_sym_o_GT_PIPE] = ACTIONS(1524), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1524), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1524), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1524), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1524), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_LPAREN] = ACTIONS(1510), + [anon_sym_RPAREN] = ACTIONS(1524), + [anon_sym_DOLLAR] = ACTIONS(2649), + [anon_sym_DASH_DASH] = ACTIONS(1524), + [anon_sym_DASH] = ACTIONS(1510), + [anon_sym_LBRACE] = ACTIONS(1524), + [anon_sym_RBRACE] = ACTIONS(1524), + [anon_sym_DOT_DOT] = ACTIONS(1510), + [anon_sym_LPAREN2] = ACTIONS(3948), + [anon_sym_DOT] = ACTIONS(3950), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1524), + [anon_sym_DOT_DOT_LT] = ACTIONS(1524), + [aux_sym__immediate_decimal_token1] = ACTIONS(3952), + [aux_sym__immediate_decimal_token3] = ACTIONS(3954), + [aux_sym__immediate_decimal_token4] = ACTIONS(3956), + [aux_sym__immediate_decimal_token5] = ACTIONS(3958), + [aux_sym__val_number_decimal_token1] = ACTIONS(1510), + [aux_sym__val_number_decimal_token2] = ACTIONS(1510), + [aux_sym__val_number_decimal_token3] = ACTIONS(1510), + [aux_sym__val_number_decimal_token4] = ACTIONS(1510), + [aux_sym__val_number_token1] = ACTIONS(1524), + [aux_sym__val_number_token2] = ACTIONS(1524), + [aux_sym__val_number_token3] = ACTIONS(1524), + [anon_sym_0b] = ACTIONS(1510), + [anon_sym_0o] = ACTIONS(1510), + [anon_sym_0x] = ACTIONS(1510), + [sym_val_date] = ACTIONS(1524), + [anon_sym_DQUOTE] = ACTIONS(1524), + [sym__str_single_quotes] = ACTIONS(1524), + [sym__str_back_ticks] = ACTIONS(1524), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1524), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1524), + [anon_sym_err_GT] = ACTIONS(1510), + [anon_sym_out_GT] = ACTIONS(1510), + [anon_sym_e_GT] = ACTIONS(1510), + [anon_sym_o_GT] = ACTIONS(1510), + [anon_sym_err_PLUSout_GT] = ACTIONS(1510), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1510), + [anon_sym_o_PLUSe_GT] = ACTIONS(1510), + [anon_sym_e_PLUSo_GT] = ACTIONS(1510), + [anon_sym_err_GT_GT] = ACTIONS(1524), + [anon_sym_out_GT_GT] = ACTIONS(1524), + [anon_sym_e_GT_GT] = ACTIONS(1524), + [anon_sym_o_GT_GT] = ACTIONS(1524), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1524), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1524), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1524), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1524), + [aux_sym_unquoted_token1] = ACTIONS(1510), + [aux_sym_unquoted_token2] = ACTIONS(1526), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1524), }, [1084] = { - [sym_cell_path] = STATE(1257), - [sym_path] = STATE(1219), + [sym__expr_parenthesized_immediate] = STATE(1349), + [sym__immediate_decimal] = STATE(1350), + [sym_val_variable] = STATE(1349), [sym_comment] = STATE(1084), - [aux_sym_cell_path_repeat1] = STATE(1110), - [anon_sym_EQ] = ACTIONS(1005), - [anon_sym_PLUS_EQ] = ACTIONS(1007), - [anon_sym_DASH_EQ] = ACTIONS(1007), - [anon_sym_STAR_EQ] = ACTIONS(1007), - [anon_sym_SLASH_EQ] = ACTIONS(1007), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1007), - [sym__newline] = ACTIONS(1007), - [anon_sym_SEMI] = ACTIONS(1007), - [anon_sym_PIPE] = ACTIONS(1007), - [anon_sym_err_GT_PIPE] = ACTIONS(1007), - [anon_sym_out_GT_PIPE] = ACTIONS(1007), - [anon_sym_e_GT_PIPE] = ACTIONS(1007), - [anon_sym_o_GT_PIPE] = ACTIONS(1007), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1007), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1007), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1007), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1007), - [anon_sym_RPAREN] = ACTIONS(1007), - [anon_sym_RBRACE] = ACTIONS(1007), - [aux_sym_expr_binary_token1] = ACTIONS(1007), - [aux_sym_expr_binary_token2] = ACTIONS(1007), - [aux_sym_expr_binary_token3] = ACTIONS(1007), - [aux_sym_expr_binary_token4] = ACTIONS(1007), - [aux_sym_expr_binary_token5] = ACTIONS(1007), - [aux_sym_expr_binary_token6] = ACTIONS(1007), - [aux_sym_expr_binary_token7] = ACTIONS(1007), - [aux_sym_expr_binary_token8] = ACTIONS(1007), - [aux_sym_expr_binary_token9] = ACTIONS(1007), - [aux_sym_expr_binary_token10] = ACTIONS(1007), - [aux_sym_expr_binary_token11] = ACTIONS(1007), - [aux_sym_expr_binary_token12] = ACTIONS(1007), - [aux_sym_expr_binary_token13] = ACTIONS(1007), - [aux_sym_expr_binary_token14] = ACTIONS(1007), - [aux_sym_expr_binary_token15] = ACTIONS(1007), - [aux_sym_expr_binary_token16] = ACTIONS(1007), - [aux_sym_expr_binary_token17] = ACTIONS(1007), - [aux_sym_expr_binary_token18] = ACTIONS(1007), - [aux_sym_expr_binary_token19] = ACTIONS(1007), - [aux_sym_expr_binary_token20] = ACTIONS(1007), - [aux_sym_expr_binary_token21] = ACTIONS(1007), - [aux_sym_expr_binary_token22] = ACTIONS(1007), - [aux_sym_expr_binary_token23] = ACTIONS(1007), - [aux_sym_expr_binary_token24] = ACTIONS(1007), - [aux_sym_expr_binary_token25] = ACTIONS(1007), - [aux_sym_expr_binary_token26] = ACTIONS(1007), - [aux_sym_expr_binary_token27] = ACTIONS(1007), - [aux_sym_expr_binary_token28] = ACTIONS(1007), - [anon_sym_DOT_DOT2] = ACTIONS(1005), - [anon_sym_DOT] = ACTIONS(3905), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1007), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1007), - [anon_sym_err_GT] = ACTIONS(1005), - [anon_sym_out_GT] = ACTIONS(1005), - [anon_sym_e_GT] = ACTIONS(1005), - [anon_sym_o_GT] = ACTIONS(1005), - [anon_sym_err_PLUSout_GT] = ACTIONS(1005), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1005), - [anon_sym_o_PLUSe_GT] = ACTIONS(1005), - [anon_sym_e_PLUSo_GT] = ACTIONS(1005), - [anon_sym_err_GT_GT] = ACTIONS(1007), - [anon_sym_out_GT_GT] = ACTIONS(1007), - [anon_sym_e_GT_GT] = ACTIONS(1007), - [anon_sym_o_GT_GT] = ACTIONS(1007), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1007), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1007), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1007), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1007), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(1570), + [anon_sym_false] = ACTIONS(1570), + [anon_sym_null] = ACTIONS(1570), + [aux_sym_cmd_identifier_token38] = ACTIONS(1570), + [aux_sym_cmd_identifier_token39] = ACTIONS(1570), + [aux_sym_cmd_identifier_token40] = ACTIONS(1570), + [sym__newline] = ACTIONS(1570), + [anon_sym_SEMI] = ACTIONS(1570), + [anon_sym_PIPE] = ACTIONS(1570), + [anon_sym_err_GT_PIPE] = ACTIONS(1570), + [anon_sym_out_GT_PIPE] = ACTIONS(1570), + [anon_sym_e_GT_PIPE] = ACTIONS(1570), + [anon_sym_o_GT_PIPE] = ACTIONS(1570), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1570), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1570), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1570), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1570), + [anon_sym_LBRACK] = ACTIONS(1570), + [anon_sym_LPAREN] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(1570), + [anon_sym_DOLLAR] = ACTIONS(2649), + [anon_sym_DASH_DASH] = ACTIONS(1570), + [anon_sym_DASH] = ACTIONS(1560), + [anon_sym_LBRACE] = ACTIONS(1570), + [anon_sym_RBRACE] = ACTIONS(1570), + [anon_sym_DOT_DOT] = ACTIONS(1560), + [anon_sym_LPAREN2] = ACTIONS(3948), + [anon_sym_DOT] = ACTIONS(3960), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1570), + [anon_sym_DOT_DOT_LT] = ACTIONS(1570), + [aux_sym__immediate_decimal_token1] = ACTIONS(3962), + [aux_sym__immediate_decimal_token3] = ACTIONS(3964), + [aux_sym__immediate_decimal_token4] = ACTIONS(3966), + [aux_sym__immediate_decimal_token5] = ACTIONS(3968), + [aux_sym__val_number_decimal_token1] = ACTIONS(1560), + [aux_sym__val_number_decimal_token2] = ACTIONS(1560), + [aux_sym__val_number_decimal_token3] = ACTIONS(1560), + [aux_sym__val_number_decimal_token4] = ACTIONS(1560), + [aux_sym__val_number_token1] = ACTIONS(1570), + [aux_sym__val_number_token2] = ACTIONS(1570), + [aux_sym__val_number_token3] = ACTIONS(1570), + [anon_sym_0b] = ACTIONS(1560), + [anon_sym_0o] = ACTIONS(1560), + [anon_sym_0x] = ACTIONS(1560), + [sym_val_date] = ACTIONS(1570), + [anon_sym_DQUOTE] = ACTIONS(1570), + [sym__str_single_quotes] = ACTIONS(1570), + [sym__str_back_ticks] = ACTIONS(1570), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1570), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1570), + [anon_sym_err_GT] = ACTIONS(1560), + [anon_sym_out_GT] = ACTIONS(1560), + [anon_sym_e_GT] = ACTIONS(1560), + [anon_sym_o_GT] = ACTIONS(1560), + [anon_sym_err_PLUSout_GT] = ACTIONS(1560), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1560), + [anon_sym_o_PLUSe_GT] = ACTIONS(1560), + [anon_sym_e_PLUSo_GT] = ACTIONS(1560), + [anon_sym_err_GT_GT] = ACTIONS(1570), + [anon_sym_out_GT_GT] = ACTIONS(1570), + [anon_sym_e_GT_GT] = ACTIONS(1570), + [anon_sym_o_GT_GT] = ACTIONS(1570), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1570), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1570), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1570), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1570), + [aux_sym_unquoted_token1] = ACTIONS(1560), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1570), }, [1085] = { - [sym__expr_parenthesized_immediate] = STATE(1352), - [sym__immediate_decimal] = STATE(1353), - [sym_val_variable] = STATE(1352), + [sym__expr_parenthesized_immediate] = STATE(1691), + [sym__immediate_decimal] = STATE(1462), + [sym_val_variable] = STATE(1691), [sym_comment] = STATE(1085), - [anon_sym_true] = ACTIONS(1506), - [anon_sym_false] = ACTIONS(1506), - [anon_sym_null] = ACTIONS(1506), - [aux_sym_cmd_identifier_token38] = ACTIONS(1506), - [aux_sym_cmd_identifier_token39] = ACTIONS(1506), - [aux_sym_cmd_identifier_token40] = ACTIONS(1506), - [sym__newline] = ACTIONS(1506), - [anon_sym_SEMI] = ACTIONS(1506), - [anon_sym_PIPE] = ACTIONS(1506), - [anon_sym_err_GT_PIPE] = ACTIONS(1506), - [anon_sym_out_GT_PIPE] = ACTIONS(1506), - [anon_sym_e_GT_PIPE] = ACTIONS(1506), - [anon_sym_o_GT_PIPE] = ACTIONS(1506), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1506), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1506), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1506), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(1496), - [anon_sym_RPAREN] = ACTIONS(1506), - [anon_sym_DOLLAR] = ACTIONS(2607), - [anon_sym_DASH_DASH] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1496), - [anon_sym_LBRACE] = ACTIONS(1506), - [anon_sym_RBRACE] = ACTIONS(1506), - [anon_sym_DOT_DOT] = ACTIONS(1496), - [anon_sym_LPAREN2] = ACTIONS(3834), - [anon_sym_DOT] = ACTIONS(3907), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1506), - [anon_sym_DOT_DOT_LT] = ACTIONS(1506), - [aux_sym__immediate_decimal_token1] = ACTIONS(3909), - [aux_sym__immediate_decimal_token3] = ACTIONS(3911), - [aux_sym__immediate_decimal_token4] = ACTIONS(3913), - [aux_sym__immediate_decimal_token5] = ACTIONS(3915), - [aux_sym__val_number_decimal_token1] = ACTIONS(1496), - [aux_sym__val_number_decimal_token2] = ACTIONS(1496), - [aux_sym__val_number_decimal_token3] = ACTIONS(1496), - [aux_sym__val_number_decimal_token4] = ACTIONS(1496), - [aux_sym__val_number_token1] = ACTIONS(1506), - [aux_sym__val_number_token2] = ACTIONS(1506), - [aux_sym__val_number_token3] = ACTIONS(1506), - [anon_sym_0b] = ACTIONS(1496), - [anon_sym_0o] = ACTIONS(1496), - [anon_sym_0x] = ACTIONS(1496), - [sym_val_date] = ACTIONS(1506), - [anon_sym_DQUOTE] = ACTIONS(1506), - [sym__str_single_quotes] = ACTIONS(1506), - [sym__str_back_ticks] = ACTIONS(1506), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1506), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1506), - [anon_sym_err_GT] = ACTIONS(1496), - [anon_sym_out_GT] = ACTIONS(1496), - [anon_sym_e_GT] = ACTIONS(1496), - [anon_sym_o_GT] = ACTIONS(1496), - [anon_sym_err_PLUSout_GT] = ACTIONS(1496), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1496), - [anon_sym_o_PLUSe_GT] = ACTIONS(1496), - [anon_sym_e_PLUSo_GT] = ACTIONS(1496), - [anon_sym_err_GT_GT] = ACTIONS(1506), - [anon_sym_out_GT_GT] = ACTIONS(1506), - [anon_sym_e_GT_GT] = ACTIONS(1506), - [anon_sym_o_GT_GT] = ACTIONS(1506), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1506), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1506), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1506), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1506), - [aux_sym_unquoted_token1] = ACTIONS(1496), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(1524), + [anon_sym_false] = ACTIONS(1524), + [anon_sym_null] = ACTIONS(1524), + [aux_sym_cmd_identifier_token38] = ACTIONS(1524), + [aux_sym_cmd_identifier_token39] = ACTIONS(1524), + [aux_sym_cmd_identifier_token40] = ACTIONS(1524), + [sym__newline] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(1524), + [anon_sym_PIPE] = ACTIONS(1524), + [anon_sym_err_GT_PIPE] = ACTIONS(1524), + [anon_sym_out_GT_PIPE] = ACTIONS(1524), + [anon_sym_e_GT_PIPE] = ACTIONS(1524), + [anon_sym_o_GT_PIPE] = ACTIONS(1524), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1524), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1524), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1524), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1524), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_LPAREN] = ACTIONS(1510), + [anon_sym_RPAREN] = ACTIONS(1524), + [anon_sym_DOLLAR] = ACTIONS(3970), + [anon_sym_DASH_DASH] = ACTIONS(1524), + [anon_sym_DASH] = ACTIONS(1510), + [anon_sym_LBRACE] = ACTIONS(1524), + [anon_sym_RBRACE] = ACTIONS(1524), + [anon_sym_DOT_DOT] = ACTIONS(1510), + [anon_sym_LPAREN2] = ACTIONS(3972), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1524), + [anon_sym_DOT_DOT_LT] = ACTIONS(1524), + [aux_sym__immediate_decimal_token1] = ACTIONS(3974), + [aux_sym__immediate_decimal_token3] = ACTIONS(3976), + [aux_sym__immediate_decimal_token4] = ACTIONS(3978), + [aux_sym__immediate_decimal_token5] = ACTIONS(3980), + [aux_sym__val_number_decimal_token1] = ACTIONS(1510), + [aux_sym__val_number_decimal_token2] = ACTIONS(1510), + [aux_sym__val_number_decimal_token3] = ACTIONS(1510), + [aux_sym__val_number_decimal_token4] = ACTIONS(1510), + [aux_sym__val_number_token1] = ACTIONS(1524), + [aux_sym__val_number_token2] = ACTIONS(1524), + [aux_sym__val_number_token3] = ACTIONS(1524), + [anon_sym_0b] = ACTIONS(1510), + [anon_sym_0o] = ACTIONS(1510), + [anon_sym_0x] = ACTIONS(1510), + [sym_val_date] = ACTIONS(1524), + [anon_sym_DQUOTE] = ACTIONS(1524), + [sym__str_single_quotes] = ACTIONS(1524), + [sym__str_back_ticks] = ACTIONS(1524), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1524), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1524), + [anon_sym_err_GT] = ACTIONS(1510), + [anon_sym_out_GT] = ACTIONS(1510), + [anon_sym_e_GT] = ACTIONS(1510), + [anon_sym_o_GT] = ACTIONS(1510), + [anon_sym_err_PLUSout_GT] = ACTIONS(1510), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1510), + [anon_sym_o_PLUSe_GT] = ACTIONS(1510), + [anon_sym_e_PLUSo_GT] = ACTIONS(1510), + [anon_sym_err_GT_GT] = ACTIONS(1524), + [anon_sym_out_GT_GT] = ACTIONS(1524), + [anon_sym_e_GT_GT] = ACTIONS(1524), + [anon_sym_o_GT_GT] = ACTIONS(1524), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1524), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1524), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1524), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1524), + [aux_sym_unquoted_token1] = ACTIONS(1510), + [aux_sym_unquoted_token2] = ACTIONS(1526), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1524), }, [1086] = { - [sym_cell_path] = STATE(1254), - [sym_path] = STATE(1212), [sym_comment] = STATE(1086), - [aux_sym_cell_path_repeat1] = STATE(1099), - [anon_sym_EQ] = ACTIONS(1005), - [anon_sym_PLUS_EQ] = ACTIONS(1007), - [anon_sym_DASH_EQ] = ACTIONS(1007), - [anon_sym_STAR_EQ] = ACTIONS(1007), - [anon_sym_SLASH_EQ] = ACTIONS(1007), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1007), - [sym__newline] = ACTIONS(1005), - [anon_sym_SEMI] = ACTIONS(1007), - [anon_sym_PIPE] = ACTIONS(1007), - [anon_sym_err_GT_PIPE] = ACTIONS(1007), - [anon_sym_out_GT_PIPE] = ACTIONS(1007), - [anon_sym_e_GT_PIPE] = ACTIONS(1007), - [anon_sym_o_GT_PIPE] = ACTIONS(1007), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1007), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1007), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1007), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1007), - [anon_sym_RPAREN] = ACTIONS(1007), - [anon_sym_LBRACE] = ACTIONS(1007), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1007), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1007), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1007), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1007), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1007), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1007), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1007), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1007), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1007), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1007), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1007), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1007), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1007), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1007), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1007), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1007), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1007), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1007), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1007), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1007), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1007), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1007), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1007), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1007), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1007), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1007), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1007), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1007), - [anon_sym_DOT_DOT2] = ACTIONS(1005), - [anon_sym_DOT] = ACTIONS(3917), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1007), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1007), - [anon_sym_err_GT] = ACTIONS(1005), - [anon_sym_out_GT] = ACTIONS(1005), - [anon_sym_e_GT] = ACTIONS(1005), - [anon_sym_o_GT] = ACTIONS(1005), - [anon_sym_err_PLUSout_GT] = ACTIONS(1005), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1005), - [anon_sym_o_PLUSe_GT] = ACTIONS(1005), - [anon_sym_e_PLUSo_GT] = ACTIONS(1005), - [anon_sym_err_GT_GT] = ACTIONS(1007), - [anon_sym_out_GT_GT] = ACTIONS(1007), - [anon_sym_e_GT_GT] = ACTIONS(1007), - [anon_sym_o_GT_GT] = ACTIONS(1007), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1007), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1007), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1007), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1007), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cmd_identifier_token1] = ACTIONS(3982), + [aux_sym_cmd_identifier_token2] = ACTIONS(3982), + [aux_sym_cmd_identifier_token3] = ACTIONS(3982), + [aux_sym_cmd_identifier_token4] = ACTIONS(3982), + [aux_sym_cmd_identifier_token5] = ACTIONS(3982), + [aux_sym_cmd_identifier_token6] = ACTIONS(3982), + [aux_sym_cmd_identifier_token7] = ACTIONS(3982), + [aux_sym_cmd_identifier_token8] = ACTIONS(3982), + [aux_sym_cmd_identifier_token9] = ACTIONS(3982), + [aux_sym_cmd_identifier_token10] = ACTIONS(3982), + [aux_sym_cmd_identifier_token11] = ACTIONS(3982), + [aux_sym_cmd_identifier_token12] = ACTIONS(3982), + [aux_sym_cmd_identifier_token13] = ACTIONS(3982), + [aux_sym_cmd_identifier_token14] = ACTIONS(3982), + [aux_sym_cmd_identifier_token15] = ACTIONS(3982), + [aux_sym_cmd_identifier_token16] = ACTIONS(3982), + [aux_sym_cmd_identifier_token17] = ACTIONS(3982), + [aux_sym_cmd_identifier_token18] = ACTIONS(3982), + [aux_sym_cmd_identifier_token19] = ACTIONS(3982), + [aux_sym_cmd_identifier_token20] = ACTIONS(3982), + [aux_sym_cmd_identifier_token21] = ACTIONS(3982), + [aux_sym_cmd_identifier_token22] = ACTIONS(3982), + [aux_sym_cmd_identifier_token23] = ACTIONS(3982), + [aux_sym_cmd_identifier_token24] = ACTIONS(3982), + [aux_sym_cmd_identifier_token25] = ACTIONS(3982), + [aux_sym_cmd_identifier_token26] = ACTIONS(3982), + [aux_sym_cmd_identifier_token27] = ACTIONS(3982), + [aux_sym_cmd_identifier_token28] = ACTIONS(3982), + [aux_sym_cmd_identifier_token29] = ACTIONS(3982), + [aux_sym_cmd_identifier_token30] = ACTIONS(3982), + [aux_sym_cmd_identifier_token31] = ACTIONS(3982), + [aux_sym_cmd_identifier_token32] = ACTIONS(3982), + [aux_sym_cmd_identifier_token33] = ACTIONS(3982), + [aux_sym_cmd_identifier_token34] = ACTIONS(3982), + [aux_sym_cmd_identifier_token35] = ACTIONS(3982), + [aux_sym_cmd_identifier_token36] = ACTIONS(3982), + [anon_sym_true] = ACTIONS(3982), + [anon_sym_false] = ACTIONS(3982), + [anon_sym_null] = ACTIONS(3982), + [aux_sym_cmd_identifier_token38] = ACTIONS(3982), + [aux_sym_cmd_identifier_token39] = ACTIONS(3982), + [aux_sym_cmd_identifier_token40] = ACTIONS(3982), + [sym__space] = ACTIONS(3984), + [anon_sym_LBRACK] = ACTIONS(3982), + [anon_sym_LPAREN] = ACTIONS(3982), + [anon_sym_DOLLAR] = ACTIONS(3982), + [anon_sym_DASH] = ACTIONS(3982), + [anon_sym_LBRACE] = ACTIONS(3982), + [anon_sym_DOT_DOT] = ACTIONS(3982), + [aux_sym_expr_unary_token1] = ACTIONS(3982), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3982), + [anon_sym_DOT_DOT_LT] = ACTIONS(3982), + [aux_sym__val_number_decimal_token1] = ACTIONS(3982), + [aux_sym__val_number_decimal_token2] = ACTIONS(3982), + [aux_sym__val_number_decimal_token3] = ACTIONS(3982), + [aux_sym__val_number_decimal_token4] = ACTIONS(3982), + [aux_sym__val_number_token1] = ACTIONS(3982), + [aux_sym__val_number_token2] = ACTIONS(3982), + [aux_sym__val_number_token3] = ACTIONS(3982), + [anon_sym_0b] = ACTIONS(3982), + [anon_sym_0o] = ACTIONS(3982), + [anon_sym_0x] = ACTIONS(3982), + [sym_val_date] = ACTIONS(3982), + [anon_sym_DQUOTE] = ACTIONS(3982), + [sym__str_single_quotes] = ACTIONS(3982), + [sym__str_back_ticks] = ACTIONS(3982), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3982), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3982), + [aux_sym_env_var_token1] = ACTIONS(3982), + [anon_sym_CARET] = ACTIONS(3982), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(3984), }, [1087] = { - [sym_expr_parenthesized] = STATE(6448), - [sym_val_range] = STATE(7431), - [sym__val_range] = STATE(7681), - [sym__value] = STATE(7431), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3707), - [sym_val_variable] = STATE(3559), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(5629), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(2002), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(7432), - [sym__unquoted_anonymous_prefix] = STATE(7695), [sym_comment] = STATE(1087), - [anon_sym_true] = ACTIONS(3259), - [anon_sym_false] = ACTIONS(3259), - [anon_sym_null] = ACTIONS(3261), - [aux_sym_cmd_identifier_token38] = ACTIONS(3846), - [aux_sym_cmd_identifier_token39] = ACTIONS(3846), - [aux_sym_cmd_identifier_token40] = ACTIONS(3846), - [anon_sym_LBRACK] = ACTIONS(3848), - [anon_sym_LPAREN] = ACTIONS(3850), - [anon_sym_DOLLAR] = ACTIONS(3852), - [anon_sym_LBRACE] = ACTIONS(3854), - [anon_sym_DOT_DOT] = ACTIONS(3856), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3858), - [anon_sym_DOT_DOT_LT] = ACTIONS(3858), - [aux_sym__val_number_decimal_token1] = ACTIONS(3279), - [aux_sym__val_number_decimal_token2] = ACTIONS(3281), - [aux_sym__val_number_decimal_token3] = ACTIONS(3283), - [aux_sym__val_number_decimal_token4] = ACTIONS(3285), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3287), - [anon_sym_DQUOTE] = ACTIONS(3860), - [sym__str_single_quotes] = ACTIONS(3862), - [sym__str_back_ticks] = ACTIONS(3862), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3864), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(1538), + [anon_sym_false] = ACTIONS(1538), + [anon_sym_null] = ACTIONS(1538), + [aux_sym_cmd_identifier_token38] = ACTIONS(1538), + [aux_sym_cmd_identifier_token39] = ACTIONS(1538), + [aux_sym_cmd_identifier_token40] = ACTIONS(1538), + [sym__newline] = ACTIONS(1538), + [anon_sym_SEMI] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_err_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_GT_PIPE] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), + [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_LPAREN] = ACTIONS(1536), + [anon_sym_RPAREN] = ACTIONS(1538), + [anon_sym_DOLLAR] = ACTIONS(1536), + [anon_sym_DASH_DASH] = ACTIONS(1538), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1538), + [anon_sym_RBRACE] = ACTIONS(1538), + [anon_sym_DOT_DOT] = ACTIONS(1536), + [anon_sym_LPAREN2] = ACTIONS(1538), + [anon_sym_DOT_DOT2] = ACTIONS(1536), + [anon_sym_DOT] = ACTIONS(3986), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1536), + [anon_sym_DOT_DOT_LT] = ACTIONS(1536), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), + [aux_sym__immediate_decimal_token2] = ACTIONS(3988), + [aux_sym__val_number_decimal_token1] = ACTIONS(1536), + [aux_sym__val_number_decimal_token2] = ACTIONS(1538), + [aux_sym__val_number_decimal_token3] = ACTIONS(1538), + [aux_sym__val_number_decimal_token4] = ACTIONS(1538), + [aux_sym__val_number_token1] = ACTIONS(1538), + [aux_sym__val_number_token2] = ACTIONS(1538), + [aux_sym__val_number_token3] = ACTIONS(1538), + [anon_sym_0b] = ACTIONS(1536), + [sym_filesize_unit] = ACTIONS(1538), + [sym_duration_unit] = ACTIONS(1538), + [anon_sym_0o] = ACTIONS(1536), + [anon_sym_0x] = ACTIONS(1536), + [sym_val_date] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1538), + [sym__str_single_quotes] = ACTIONS(1538), + [sym__str_back_ticks] = ACTIONS(1538), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1538), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1538), + [anon_sym_err_GT] = ACTIONS(1536), + [anon_sym_out_GT] = ACTIONS(1536), + [anon_sym_e_GT] = ACTIONS(1536), + [anon_sym_o_GT] = ACTIONS(1536), + [anon_sym_err_PLUSout_GT] = ACTIONS(1536), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), + [anon_sym_o_PLUSe_GT] = ACTIONS(1536), + [anon_sym_e_PLUSo_GT] = ACTIONS(1536), + [anon_sym_err_GT_GT] = ACTIONS(1538), + [anon_sym_out_GT_GT] = ACTIONS(1538), + [anon_sym_e_GT_GT] = ACTIONS(1538), + [anon_sym_o_GT_GT] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), + [aux_sym_unquoted_token1] = ACTIONS(1536), + [aux_sym_unquoted_token2] = ACTIONS(1536), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1538), }, [1088] = { [sym_comment] = STATE(1088), - [aux_sym_cmd_identifier_token1] = ACTIONS(3919), - [aux_sym_cmd_identifier_token2] = ACTIONS(3919), - [aux_sym_cmd_identifier_token3] = ACTIONS(3919), - [aux_sym_cmd_identifier_token4] = ACTIONS(3919), - [aux_sym_cmd_identifier_token5] = ACTIONS(3919), - [aux_sym_cmd_identifier_token6] = ACTIONS(3919), - [aux_sym_cmd_identifier_token7] = ACTIONS(3919), - [aux_sym_cmd_identifier_token8] = ACTIONS(3919), - [aux_sym_cmd_identifier_token9] = ACTIONS(3919), - [aux_sym_cmd_identifier_token10] = ACTIONS(3919), - [aux_sym_cmd_identifier_token11] = ACTIONS(3919), - [aux_sym_cmd_identifier_token12] = ACTIONS(3919), - [aux_sym_cmd_identifier_token13] = ACTIONS(3919), - [aux_sym_cmd_identifier_token14] = ACTIONS(3919), - [aux_sym_cmd_identifier_token15] = ACTIONS(3919), - [aux_sym_cmd_identifier_token16] = ACTIONS(3919), - [aux_sym_cmd_identifier_token17] = ACTIONS(3919), - [aux_sym_cmd_identifier_token18] = ACTIONS(3919), - [aux_sym_cmd_identifier_token19] = ACTIONS(3919), - [aux_sym_cmd_identifier_token20] = ACTIONS(3919), - [aux_sym_cmd_identifier_token21] = ACTIONS(3919), - [aux_sym_cmd_identifier_token22] = ACTIONS(3919), - [aux_sym_cmd_identifier_token23] = ACTIONS(3919), - [aux_sym_cmd_identifier_token24] = ACTIONS(3919), - [aux_sym_cmd_identifier_token25] = ACTIONS(3919), - [aux_sym_cmd_identifier_token26] = ACTIONS(3919), - [aux_sym_cmd_identifier_token27] = ACTIONS(3919), - [aux_sym_cmd_identifier_token28] = ACTIONS(3919), - [aux_sym_cmd_identifier_token29] = ACTIONS(3919), - [aux_sym_cmd_identifier_token30] = ACTIONS(3919), - [aux_sym_cmd_identifier_token31] = ACTIONS(3919), - [aux_sym_cmd_identifier_token32] = ACTIONS(3919), - [aux_sym_cmd_identifier_token33] = ACTIONS(3919), - [aux_sym_cmd_identifier_token34] = ACTIONS(3919), - [aux_sym_cmd_identifier_token35] = ACTIONS(3919), - [aux_sym_cmd_identifier_token36] = ACTIONS(3919), - [anon_sym_true] = ACTIONS(3919), - [anon_sym_false] = ACTIONS(3919), - [anon_sym_null] = ACTIONS(3919), - [aux_sym_cmd_identifier_token38] = ACTIONS(3919), - [aux_sym_cmd_identifier_token39] = ACTIONS(3919), - [aux_sym_cmd_identifier_token40] = ACTIONS(3919), - [sym__space] = ACTIONS(3921), - [anon_sym_LBRACK] = ACTIONS(3919), - [anon_sym_LPAREN] = ACTIONS(3919), - [anon_sym_DOLLAR] = ACTIONS(3919), - [anon_sym_DASH] = ACTIONS(3919), - [anon_sym_LBRACE] = ACTIONS(3919), - [anon_sym_DOT_DOT] = ACTIONS(3919), - [aux_sym_expr_unary_token1] = ACTIONS(3919), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3919), - [anon_sym_DOT_DOT_LT] = ACTIONS(3919), - [aux_sym__val_number_decimal_token1] = ACTIONS(3919), - [aux_sym__val_number_decimal_token2] = ACTIONS(3919), - [aux_sym__val_number_decimal_token3] = ACTIONS(3919), - [aux_sym__val_number_decimal_token4] = ACTIONS(3919), - [aux_sym__val_number_token1] = ACTIONS(3919), - [aux_sym__val_number_token2] = ACTIONS(3919), - [aux_sym__val_number_token3] = ACTIONS(3919), - [anon_sym_0b] = ACTIONS(3919), - [anon_sym_0o] = ACTIONS(3919), - [anon_sym_0x] = ACTIONS(3919), - [sym_val_date] = ACTIONS(3919), - [anon_sym_DQUOTE] = ACTIONS(3919), - [sym__str_single_quotes] = ACTIONS(3919), - [sym__str_back_ticks] = ACTIONS(3919), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3919), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3919), - [aux_sym_env_var_token1] = ACTIONS(3919), - [anon_sym_CARET] = ACTIONS(3919), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(1530), + [anon_sym_false] = ACTIONS(1530), + [anon_sym_null] = ACTIONS(1530), + [aux_sym_cmd_identifier_token38] = ACTIONS(1530), + [aux_sym_cmd_identifier_token39] = ACTIONS(1530), + [aux_sym_cmd_identifier_token40] = ACTIONS(1530), + [sym__newline] = ACTIONS(1530), + [anon_sym_SEMI] = ACTIONS(1530), + [anon_sym_PIPE] = ACTIONS(1530), + [anon_sym_err_GT_PIPE] = ACTIONS(1530), + [anon_sym_out_GT_PIPE] = ACTIONS(1530), + [anon_sym_e_GT_PIPE] = ACTIONS(1530), + [anon_sym_o_GT_PIPE] = ACTIONS(1530), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1530), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1530), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1530), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1530), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_RPAREN] = ACTIONS(1530), + [anon_sym_DOLLAR] = ACTIONS(1528), + [anon_sym_DASH_DASH] = ACTIONS(1530), + [anon_sym_DASH] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(1530), + [anon_sym_RBRACE] = ACTIONS(1530), + [anon_sym_DOT_DOT] = ACTIONS(1528), + [anon_sym_LPAREN2] = ACTIONS(1530), + [anon_sym_DOT_DOT2] = ACTIONS(1528), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1528), + [anon_sym_DOT_DOT_LT] = ACTIONS(1528), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1530), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1530), + [aux_sym__immediate_decimal_token1] = ACTIONS(3990), + [aux_sym__immediate_decimal_token2] = ACTIONS(3992), + [aux_sym__val_number_decimal_token1] = ACTIONS(1528), + [aux_sym__val_number_decimal_token2] = ACTIONS(1530), + [aux_sym__val_number_decimal_token3] = ACTIONS(1530), + [aux_sym__val_number_decimal_token4] = ACTIONS(1530), + [aux_sym__val_number_token1] = ACTIONS(1530), + [aux_sym__val_number_token2] = ACTIONS(1530), + [aux_sym__val_number_token3] = ACTIONS(1530), + [anon_sym_0b] = ACTIONS(1528), + [sym_filesize_unit] = ACTIONS(1530), + [sym_duration_unit] = ACTIONS(1530), + [anon_sym_0o] = ACTIONS(1528), + [anon_sym_0x] = ACTIONS(1528), + [sym_val_date] = ACTIONS(1530), + [anon_sym_DQUOTE] = ACTIONS(1530), + [sym__str_single_quotes] = ACTIONS(1530), + [sym__str_back_ticks] = ACTIONS(1530), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1530), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1530), + [anon_sym_err_GT] = ACTIONS(1528), + [anon_sym_out_GT] = ACTIONS(1528), + [anon_sym_e_GT] = ACTIONS(1528), + [anon_sym_o_GT] = ACTIONS(1528), + [anon_sym_err_PLUSout_GT] = ACTIONS(1528), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), + [anon_sym_o_PLUSe_GT] = ACTIONS(1528), + [anon_sym_e_PLUSo_GT] = ACTIONS(1528), + [anon_sym_err_GT_GT] = ACTIONS(1530), + [anon_sym_out_GT_GT] = ACTIONS(1530), + [anon_sym_e_GT_GT] = ACTIONS(1530), + [anon_sym_o_GT_GT] = ACTIONS(1530), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1530), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1530), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1530), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1530), + [aux_sym_unquoted_token1] = ACTIONS(1528), + [aux_sym_unquoted_token2] = ACTIONS(1528), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1530), }, [1089] = { - [sym__expr_parenthesized_immediate] = STATE(1889), - [sym__immediate_decimal] = STATE(1569), - [sym_val_variable] = STATE(1889), + [sym__expr_parenthesized_immediate] = STATE(1414), + [sym__immediate_decimal] = STATE(1315), + [sym_val_variable] = STATE(1414), [sym_comment] = STATE(1089), - [ts_builtin_sym_end] = ACTIONS(1492), - [anon_sym_true] = ACTIONS(1492), - [anon_sym_false] = ACTIONS(1492), - [anon_sym_null] = ACTIONS(1492), - [aux_sym_cmd_identifier_token38] = ACTIONS(1492), - [aux_sym_cmd_identifier_token39] = ACTIONS(1492), - [aux_sym_cmd_identifier_token40] = ACTIONS(1492), - [sym__newline] = ACTIONS(1492), - [anon_sym_SEMI] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(1492), - [anon_sym_err_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_GT_PIPE] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1492), - [anon_sym_LBRACK] = ACTIONS(1492), - [anon_sym_LPAREN] = ACTIONS(1478), - [anon_sym_DOLLAR] = ACTIONS(3923), - [anon_sym_DASH_DASH] = ACTIONS(1492), - [anon_sym_DASH] = ACTIONS(1478), - [anon_sym_LBRACE] = ACTIONS(1492), - [anon_sym_DOT_DOT] = ACTIONS(1478), - [anon_sym_LPAREN2] = ACTIONS(3925), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1492), - [anon_sym_DOT_DOT_LT] = ACTIONS(1492), - [aux_sym__immediate_decimal_token1] = ACTIONS(3927), - [aux_sym__immediate_decimal_token3] = ACTIONS(3929), - [aux_sym__immediate_decimal_token4] = ACTIONS(3931), - [aux_sym__immediate_decimal_token5] = ACTIONS(3933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1478), - [aux_sym__val_number_decimal_token2] = ACTIONS(1478), - [aux_sym__val_number_decimal_token3] = ACTIONS(1478), - [aux_sym__val_number_decimal_token4] = ACTIONS(1478), - [aux_sym__val_number_token1] = ACTIONS(1492), - [aux_sym__val_number_token2] = ACTIONS(1492), - [aux_sym__val_number_token3] = ACTIONS(1492), - [anon_sym_0b] = ACTIONS(1478), - [anon_sym_0o] = ACTIONS(1478), - [anon_sym_0x] = ACTIONS(1478), - [sym_val_date] = ACTIONS(1492), - [anon_sym_DQUOTE] = ACTIONS(1492), - [sym__str_single_quotes] = ACTIONS(1492), - [sym__str_back_ticks] = ACTIONS(1492), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1492), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1492), - [anon_sym_err_GT] = ACTIONS(1478), - [anon_sym_out_GT] = ACTIONS(1478), - [anon_sym_e_GT] = ACTIONS(1478), - [anon_sym_o_GT] = ACTIONS(1478), - [anon_sym_err_PLUSout_GT] = ACTIONS(1478), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1478), - [anon_sym_o_PLUSe_GT] = ACTIONS(1478), - [anon_sym_e_PLUSo_GT] = ACTIONS(1478), - [anon_sym_err_GT_GT] = ACTIONS(1492), - [anon_sym_out_GT_GT] = ACTIONS(1492), - [anon_sym_e_GT_GT] = ACTIONS(1492), - [anon_sym_o_GT_GT] = ACTIONS(1492), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1492), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1492), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1492), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1492), - [aux_sym_unquoted_token1] = ACTIONS(1478), - [aux_sym_unquoted_token2] = ACTIONS(1494), - [anon_sym_POUND] = ACTIONS(247), + [ts_builtin_sym_end] = ACTIONS(1524), + [anon_sym_true] = ACTIONS(1524), + [anon_sym_false] = ACTIONS(1524), + [anon_sym_null] = ACTIONS(1524), + [aux_sym_cmd_identifier_token38] = ACTIONS(1524), + [aux_sym_cmd_identifier_token39] = ACTIONS(1524), + [aux_sym_cmd_identifier_token40] = ACTIONS(1524), + [sym__newline] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(1524), + [anon_sym_PIPE] = ACTIONS(1524), + [anon_sym_err_GT_PIPE] = ACTIONS(1524), + [anon_sym_out_GT_PIPE] = ACTIONS(1524), + [anon_sym_e_GT_PIPE] = ACTIONS(1524), + [anon_sym_o_GT_PIPE] = ACTIONS(1524), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1524), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1524), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1524), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1524), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_LPAREN] = ACTIONS(1510), + [anon_sym_DOLLAR] = ACTIONS(2884), + [anon_sym_DASH_DASH] = ACTIONS(1524), + [anon_sym_DASH] = ACTIONS(1510), + [anon_sym_LBRACE] = ACTIONS(1524), + [anon_sym_DOT_DOT] = ACTIONS(1510), + [anon_sym_LPAREN2] = ACTIONS(3994), + [anon_sym_DOT] = ACTIONS(3996), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1524), + [anon_sym_DOT_DOT_LT] = ACTIONS(1524), + [aux_sym__immediate_decimal_token1] = ACTIONS(3998), + [aux_sym__immediate_decimal_token3] = ACTIONS(4000), + [aux_sym__immediate_decimal_token4] = ACTIONS(4002), + [aux_sym__immediate_decimal_token5] = ACTIONS(4004), + [aux_sym__val_number_decimal_token1] = ACTIONS(1510), + [aux_sym__val_number_decimal_token2] = ACTIONS(1510), + [aux_sym__val_number_decimal_token3] = ACTIONS(1510), + [aux_sym__val_number_decimal_token4] = ACTIONS(1510), + [aux_sym__val_number_token1] = ACTIONS(1524), + [aux_sym__val_number_token2] = ACTIONS(1524), + [aux_sym__val_number_token3] = ACTIONS(1524), + [anon_sym_0b] = ACTIONS(1510), + [anon_sym_0o] = ACTIONS(1510), + [anon_sym_0x] = ACTIONS(1510), + [sym_val_date] = ACTIONS(1524), + [anon_sym_DQUOTE] = ACTIONS(1524), + [sym__str_single_quotes] = ACTIONS(1524), + [sym__str_back_ticks] = ACTIONS(1524), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1524), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1524), + [anon_sym_err_GT] = ACTIONS(1510), + [anon_sym_out_GT] = ACTIONS(1510), + [anon_sym_e_GT] = ACTIONS(1510), + [anon_sym_o_GT] = ACTIONS(1510), + [anon_sym_err_PLUSout_GT] = ACTIONS(1510), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1510), + [anon_sym_o_PLUSe_GT] = ACTIONS(1510), + [anon_sym_e_PLUSo_GT] = ACTIONS(1510), + [anon_sym_err_GT_GT] = ACTIONS(1524), + [anon_sym_out_GT_GT] = ACTIONS(1524), + [anon_sym_e_GT_GT] = ACTIONS(1524), + [anon_sym_o_GT_GT] = ACTIONS(1524), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1524), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1524), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1524), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1524), + [aux_sym_unquoted_token1] = ACTIONS(1510), + [aux_sym_unquoted_token2] = ACTIONS(1526), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1524), }, [1090] = { - [sym__expr_parenthesized_immediate] = STATE(1576), - [sym__immediate_decimal] = STATE(1577), - [sym_val_variable] = STATE(1576), [sym_comment] = STATE(1090), - [anon_sym_true] = ACTIONS(1604), - [anon_sym_false] = ACTIONS(1604), - [anon_sym_null] = ACTIONS(1604), - [aux_sym_cmd_identifier_token38] = ACTIONS(1604), - [aux_sym_cmd_identifier_token39] = ACTIONS(1604), - [aux_sym_cmd_identifier_token40] = ACTIONS(1604), - [sym__newline] = ACTIONS(1604), - [anon_sym_SEMI] = ACTIONS(1604), - [anon_sym_PIPE] = ACTIONS(1604), - [anon_sym_err_GT_PIPE] = ACTIONS(1604), - [anon_sym_out_GT_PIPE] = ACTIONS(1604), - [anon_sym_e_GT_PIPE] = ACTIONS(1604), - [anon_sym_o_GT_PIPE] = ACTIONS(1604), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1604), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1604), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1604), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1604), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_RPAREN] = ACTIONS(1604), - [anon_sym_DOLLAR] = ACTIONS(3881), - [anon_sym_DASH_DASH] = ACTIONS(1604), - [anon_sym_DASH] = ACTIONS(1602), - [anon_sym_LBRACE] = ACTIONS(1604), - [anon_sym_RBRACE] = ACTIONS(1604), - [anon_sym_DOT_DOT] = ACTIONS(1602), - [anon_sym_LPAREN2] = ACTIONS(3883), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1604), - [anon_sym_DOT_DOT_LT] = ACTIONS(1604), - [aux_sym__immediate_decimal_token1] = ACTIONS(3935), - [aux_sym__immediate_decimal_token3] = ACTIONS(3937), - [aux_sym__immediate_decimal_token4] = ACTIONS(3939), - [aux_sym__immediate_decimal_token5] = ACTIONS(3941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1602), - [aux_sym__val_number_decimal_token2] = ACTIONS(1602), - [aux_sym__val_number_decimal_token3] = ACTIONS(1602), - [aux_sym__val_number_decimal_token4] = ACTIONS(1602), - [aux_sym__val_number_token1] = ACTIONS(1604), - [aux_sym__val_number_token2] = ACTIONS(1604), - [aux_sym__val_number_token3] = ACTIONS(1604), - [anon_sym_0b] = ACTIONS(1602), - [anon_sym_0o] = ACTIONS(1602), - [anon_sym_0x] = ACTIONS(1602), - [sym_val_date] = ACTIONS(1604), - [anon_sym_DQUOTE] = ACTIONS(1604), - [sym__str_single_quotes] = ACTIONS(1604), - [sym__str_back_ticks] = ACTIONS(1604), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1604), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1604), - [anon_sym_err_GT] = ACTIONS(1602), - [anon_sym_out_GT] = ACTIONS(1602), - [anon_sym_e_GT] = ACTIONS(1602), - [anon_sym_o_GT] = ACTIONS(1602), - [anon_sym_err_PLUSout_GT] = ACTIONS(1602), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1602), - [anon_sym_o_PLUSe_GT] = ACTIONS(1602), - [anon_sym_e_PLUSo_GT] = ACTIONS(1602), - [anon_sym_err_GT_GT] = ACTIONS(1604), - [anon_sym_out_GT_GT] = ACTIONS(1604), - [anon_sym_e_GT_GT] = ACTIONS(1604), - [anon_sym_o_GT_GT] = ACTIONS(1604), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1604), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1604), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1604), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1604), - [aux_sym_unquoted_token1] = ACTIONS(1602), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cmd_identifier_token1] = ACTIONS(1364), + [aux_sym_cmd_identifier_token2] = ACTIONS(1362), + [aux_sym_cmd_identifier_token3] = ACTIONS(1362), + [aux_sym_cmd_identifier_token4] = ACTIONS(1362), + [aux_sym_cmd_identifier_token5] = ACTIONS(1362), + [aux_sym_cmd_identifier_token6] = ACTIONS(1362), + [aux_sym_cmd_identifier_token7] = ACTIONS(1362), + [aux_sym_cmd_identifier_token8] = ACTIONS(1362), + [aux_sym_cmd_identifier_token9] = ACTIONS(1364), + [aux_sym_cmd_identifier_token10] = ACTIONS(1362), + [aux_sym_cmd_identifier_token11] = ACTIONS(1362), + [aux_sym_cmd_identifier_token12] = ACTIONS(1362), + [aux_sym_cmd_identifier_token13] = ACTIONS(1364), + [aux_sym_cmd_identifier_token14] = ACTIONS(1362), + [aux_sym_cmd_identifier_token15] = ACTIONS(1364), + [aux_sym_cmd_identifier_token16] = ACTIONS(1362), + [aux_sym_cmd_identifier_token17] = ACTIONS(1362), + [aux_sym_cmd_identifier_token18] = ACTIONS(1362), + [aux_sym_cmd_identifier_token19] = ACTIONS(1362), + [aux_sym_cmd_identifier_token20] = ACTIONS(1362), + [aux_sym_cmd_identifier_token21] = ACTIONS(1362), + [aux_sym_cmd_identifier_token22] = ACTIONS(1362), + [aux_sym_cmd_identifier_token23] = ACTIONS(1364), + [aux_sym_cmd_identifier_token24] = ACTIONS(1362), + [aux_sym_cmd_identifier_token25] = ACTIONS(1362), + [aux_sym_cmd_identifier_token26] = ACTIONS(1362), + [aux_sym_cmd_identifier_token27] = ACTIONS(1362), + [aux_sym_cmd_identifier_token28] = ACTIONS(1362), + [aux_sym_cmd_identifier_token29] = ACTIONS(1362), + [aux_sym_cmd_identifier_token30] = ACTIONS(1362), + [aux_sym_cmd_identifier_token31] = ACTIONS(1362), + [aux_sym_cmd_identifier_token32] = ACTIONS(1362), + [aux_sym_cmd_identifier_token33] = ACTIONS(1362), + [aux_sym_cmd_identifier_token34] = ACTIONS(1362), + [aux_sym_cmd_identifier_token35] = ACTIONS(1362), + [aux_sym_cmd_identifier_token36] = ACTIONS(1364), + [anon_sym_true] = ACTIONS(1362), + [anon_sym_false] = ACTIONS(1362), + [anon_sym_null] = ACTIONS(1362), + [aux_sym_cmd_identifier_token38] = ACTIONS(1364), + [aux_sym_cmd_identifier_token39] = ACTIONS(1362), + [aux_sym_cmd_identifier_token40] = ACTIONS(1362), + [sym__newline] = ACTIONS(1362), + [anon_sym_LBRACK] = ACTIONS(1362), + [anon_sym_LPAREN] = ACTIONS(1362), + [anon_sym_DOLLAR] = ACTIONS(1364), + [anon_sym_DASH] = ACTIONS(1364), + [anon_sym_if] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1362), + [anon_sym_DOT_DOT] = ACTIONS(1364), + [aux_sym_expr_unary_token1] = ACTIONS(1362), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1362), + [anon_sym_DOT_DOT_LT] = ACTIONS(1362), + [aux_sym__val_number_decimal_token1] = ACTIONS(1364), + [aux_sym__val_number_decimal_token2] = ACTIONS(1362), + [aux_sym__val_number_decimal_token3] = ACTIONS(1362), + [aux_sym__val_number_decimal_token4] = ACTIONS(1362), + [aux_sym__val_number_token1] = ACTIONS(1362), + [aux_sym__val_number_token2] = ACTIONS(1362), + [aux_sym__val_number_token3] = ACTIONS(1362), + [anon_sym_0b] = ACTIONS(1364), + [anon_sym_0o] = ACTIONS(1364), + [anon_sym_0x] = ACTIONS(1364), + [sym_val_date] = ACTIONS(1362), + [anon_sym_DQUOTE] = ACTIONS(1362), + [sym__str_single_quotes] = ACTIONS(1362), + [sym__str_back_ticks] = ACTIONS(1362), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1362), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1362), + [anon_sym_CARET] = ACTIONS(1362), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1362), }, [1091] = { + [sym__expr_parenthesized_immediate] = STATE(1624), + [sym__immediate_decimal] = STATE(1473), + [sym_val_variable] = STATE(1624), [sym_comment] = STATE(1091), - [anon_sym_EQ] = ACTIONS(1038), - [anon_sym_PLUS_EQ] = ACTIONS(1040), - [anon_sym_DASH_EQ] = ACTIONS(1040), - [anon_sym_STAR_EQ] = ACTIONS(1040), - [anon_sym_SLASH_EQ] = ACTIONS(1040), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1040), - [sym__newline] = ACTIONS(1038), - [anon_sym_SEMI] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1040), - [anon_sym_err_GT_PIPE] = ACTIONS(1040), - [anon_sym_out_GT_PIPE] = ACTIONS(1040), - [anon_sym_e_GT_PIPE] = ACTIONS(1040), - [anon_sym_o_GT_PIPE] = ACTIONS(1040), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1040), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1040), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1040), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(1040), - [anon_sym_RBRACE] = ACTIONS(1040), - [anon_sym_QMARK2] = ACTIONS(1040), - [aux_sym_expr_binary_token1] = ACTIONS(1040), - [aux_sym_expr_binary_token2] = ACTIONS(1040), - [aux_sym_expr_binary_token3] = ACTIONS(1040), - [aux_sym_expr_binary_token4] = ACTIONS(1040), - [aux_sym_expr_binary_token5] = ACTIONS(1040), - [aux_sym_expr_binary_token6] = ACTIONS(1040), - [aux_sym_expr_binary_token7] = ACTIONS(1040), - [aux_sym_expr_binary_token8] = ACTIONS(1040), - [aux_sym_expr_binary_token9] = ACTIONS(1040), - [aux_sym_expr_binary_token10] = ACTIONS(1040), - [aux_sym_expr_binary_token11] = ACTIONS(1040), - [aux_sym_expr_binary_token12] = ACTIONS(1040), - [aux_sym_expr_binary_token13] = ACTIONS(1040), - [aux_sym_expr_binary_token14] = ACTIONS(1040), - [aux_sym_expr_binary_token15] = ACTIONS(1040), - [aux_sym_expr_binary_token16] = ACTIONS(1040), - [aux_sym_expr_binary_token17] = ACTIONS(1040), - [aux_sym_expr_binary_token18] = ACTIONS(1040), - [aux_sym_expr_binary_token19] = ACTIONS(1040), - [aux_sym_expr_binary_token20] = ACTIONS(1040), - [aux_sym_expr_binary_token21] = ACTIONS(1040), - [aux_sym_expr_binary_token22] = ACTIONS(1040), - [aux_sym_expr_binary_token23] = ACTIONS(1040), - [aux_sym_expr_binary_token24] = ACTIONS(1040), - [aux_sym_expr_binary_token25] = ACTIONS(1040), - [aux_sym_expr_binary_token26] = ACTIONS(1040), - [aux_sym_expr_binary_token27] = ACTIONS(1040), - [aux_sym_expr_binary_token28] = ACTIONS(1040), - [anon_sym_DOT_DOT2] = ACTIONS(1038), - [anon_sym_DOT] = ACTIONS(1038), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1040), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1040), - [aux_sym_record_entry_token1] = ACTIONS(1040), - [anon_sym_err_GT] = ACTIONS(1038), - [anon_sym_out_GT] = ACTIONS(1038), - [anon_sym_e_GT] = ACTIONS(1038), - [anon_sym_o_GT] = ACTIONS(1038), - [anon_sym_err_PLUSout_GT] = ACTIONS(1038), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1038), - [anon_sym_o_PLUSe_GT] = ACTIONS(1038), - [anon_sym_e_PLUSo_GT] = ACTIONS(1038), - [anon_sym_err_GT_GT] = ACTIONS(1040), - [anon_sym_out_GT_GT] = ACTIONS(1040), - [anon_sym_e_GT_GT] = ACTIONS(1040), - [anon_sym_o_GT_GT] = ACTIONS(1040), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1040), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1040), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1040), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1040), - [anon_sym_POUND] = ACTIONS(247), - }, - [1092] = { - [sym_comment] = STATE(1092), - [anon_sym_EQ] = ACTIONS(1034), - [anon_sym_PLUS_EQ] = ACTIONS(1036), - [anon_sym_DASH_EQ] = ACTIONS(1036), - [anon_sym_STAR_EQ] = ACTIONS(1036), - [anon_sym_SLASH_EQ] = ACTIONS(1036), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1036), - [sym__newline] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1036), - [anon_sym_PIPE] = ACTIONS(1036), - [anon_sym_err_GT_PIPE] = ACTIONS(1036), - [anon_sym_out_GT_PIPE] = ACTIONS(1036), - [anon_sym_e_GT_PIPE] = ACTIONS(1036), - [anon_sym_o_GT_PIPE] = ACTIONS(1036), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1036), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1036), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1036), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1036), - [anon_sym_LBRACE] = ACTIONS(1036), - [anon_sym_RBRACE] = ACTIONS(1036), - [anon_sym_QMARK2] = ACTIONS(1036), - [aux_sym_expr_binary_token1] = ACTIONS(1036), - [aux_sym_expr_binary_token2] = ACTIONS(1036), - [aux_sym_expr_binary_token3] = ACTIONS(1036), - [aux_sym_expr_binary_token4] = ACTIONS(1036), - [aux_sym_expr_binary_token5] = ACTIONS(1036), - [aux_sym_expr_binary_token6] = ACTIONS(1036), - [aux_sym_expr_binary_token7] = ACTIONS(1036), - [aux_sym_expr_binary_token8] = ACTIONS(1036), - [aux_sym_expr_binary_token9] = ACTIONS(1036), - [aux_sym_expr_binary_token10] = ACTIONS(1036), - [aux_sym_expr_binary_token11] = ACTIONS(1036), - [aux_sym_expr_binary_token12] = ACTIONS(1036), - [aux_sym_expr_binary_token13] = ACTIONS(1036), - [aux_sym_expr_binary_token14] = ACTIONS(1036), - [aux_sym_expr_binary_token15] = ACTIONS(1036), - [aux_sym_expr_binary_token16] = ACTIONS(1036), - [aux_sym_expr_binary_token17] = ACTIONS(1036), - [aux_sym_expr_binary_token18] = ACTIONS(1036), - [aux_sym_expr_binary_token19] = ACTIONS(1036), - [aux_sym_expr_binary_token20] = ACTIONS(1036), - [aux_sym_expr_binary_token21] = ACTIONS(1036), - [aux_sym_expr_binary_token22] = ACTIONS(1036), - [aux_sym_expr_binary_token23] = ACTIONS(1036), - [aux_sym_expr_binary_token24] = ACTIONS(1036), - [aux_sym_expr_binary_token25] = ACTIONS(1036), - [aux_sym_expr_binary_token26] = ACTIONS(1036), - [aux_sym_expr_binary_token27] = ACTIONS(1036), - [aux_sym_expr_binary_token28] = ACTIONS(1036), - [anon_sym_DOT_DOT2] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(1034), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1036), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1036), - [aux_sym_record_entry_token1] = ACTIONS(1036), - [anon_sym_err_GT] = ACTIONS(1034), - [anon_sym_out_GT] = ACTIONS(1034), - [anon_sym_e_GT] = ACTIONS(1034), - [anon_sym_o_GT] = ACTIONS(1034), - [anon_sym_err_PLUSout_GT] = ACTIONS(1034), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1034), - [anon_sym_o_PLUSe_GT] = ACTIONS(1034), - [anon_sym_e_PLUSo_GT] = ACTIONS(1034), - [anon_sym_err_GT_GT] = ACTIONS(1036), - [anon_sym_out_GT_GT] = ACTIONS(1036), - [anon_sym_e_GT_GT] = ACTIONS(1036), - [anon_sym_o_GT_GT] = ACTIONS(1036), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1036), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1036), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1036), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1036), - [anon_sym_POUND] = ACTIONS(247), - }, - [1093] = { - [sym_comment] = STATE(1093), - [anon_sym_EQ] = ACTIONS(1022), - [anon_sym_PLUS_EQ] = ACTIONS(1024), - [anon_sym_DASH_EQ] = ACTIONS(1024), - [anon_sym_STAR_EQ] = ACTIONS(1024), - [anon_sym_SLASH_EQ] = ACTIONS(1024), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1024), - [sym__newline] = ACTIONS(1022), - [anon_sym_SEMI] = ACTIONS(1024), - [anon_sym_PIPE] = ACTIONS(1024), - [anon_sym_err_GT_PIPE] = ACTIONS(1024), - [anon_sym_out_GT_PIPE] = ACTIONS(1024), - [anon_sym_e_GT_PIPE] = ACTIONS(1024), - [anon_sym_o_GT_PIPE] = ACTIONS(1024), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1024), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1024), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1024), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1024), - [anon_sym_LBRACE] = ACTIONS(1024), - [anon_sym_RBRACE] = ACTIONS(1024), - [anon_sym_QMARK2] = ACTIONS(3943), - [aux_sym_expr_binary_token1] = ACTIONS(1024), - [aux_sym_expr_binary_token2] = ACTIONS(1024), - [aux_sym_expr_binary_token3] = ACTIONS(1024), - [aux_sym_expr_binary_token4] = ACTIONS(1024), - [aux_sym_expr_binary_token5] = ACTIONS(1024), - [aux_sym_expr_binary_token6] = ACTIONS(1024), - [aux_sym_expr_binary_token7] = ACTIONS(1024), - [aux_sym_expr_binary_token8] = ACTIONS(1024), - [aux_sym_expr_binary_token9] = ACTIONS(1024), - [aux_sym_expr_binary_token10] = ACTIONS(1024), - [aux_sym_expr_binary_token11] = ACTIONS(1024), - [aux_sym_expr_binary_token12] = ACTIONS(1024), - [aux_sym_expr_binary_token13] = ACTIONS(1024), - [aux_sym_expr_binary_token14] = ACTIONS(1024), - [aux_sym_expr_binary_token15] = ACTIONS(1024), - [aux_sym_expr_binary_token16] = ACTIONS(1024), - [aux_sym_expr_binary_token17] = ACTIONS(1024), - [aux_sym_expr_binary_token18] = ACTIONS(1024), - [aux_sym_expr_binary_token19] = ACTIONS(1024), - [aux_sym_expr_binary_token20] = ACTIONS(1024), - [aux_sym_expr_binary_token21] = ACTIONS(1024), - [aux_sym_expr_binary_token22] = ACTIONS(1024), - [aux_sym_expr_binary_token23] = ACTIONS(1024), - [aux_sym_expr_binary_token24] = ACTIONS(1024), - [aux_sym_expr_binary_token25] = ACTIONS(1024), - [aux_sym_expr_binary_token26] = ACTIONS(1024), - [aux_sym_expr_binary_token27] = ACTIONS(1024), - [aux_sym_expr_binary_token28] = ACTIONS(1024), - [anon_sym_DOT_DOT2] = ACTIONS(1022), - [anon_sym_DOT] = ACTIONS(1022), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1024), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1024), - [aux_sym_record_entry_token1] = ACTIONS(1024), - [anon_sym_err_GT] = ACTIONS(1022), - [anon_sym_out_GT] = ACTIONS(1022), - [anon_sym_e_GT] = ACTIONS(1022), - [anon_sym_o_GT] = ACTIONS(1022), - [anon_sym_err_PLUSout_GT] = ACTIONS(1022), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1022), - [anon_sym_o_PLUSe_GT] = ACTIONS(1022), - [anon_sym_e_PLUSo_GT] = ACTIONS(1022), - [anon_sym_err_GT_GT] = ACTIONS(1024), - [anon_sym_out_GT_GT] = ACTIONS(1024), - [anon_sym_e_GT_GT] = ACTIONS(1024), - [anon_sym_o_GT_GT] = ACTIONS(1024), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1024), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1024), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1024), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1024), - [anon_sym_POUND] = ACTIONS(247), - }, - [1094] = { - [sym__expr_parenthesized_immediate] = STATE(1505), - [sym__immediate_decimal] = STATE(1453), - [sym_val_variable] = STATE(1505), - [sym_comment] = STATE(1094), - [ts_builtin_sym_end] = ACTIONS(1506), - [anon_sym_true] = ACTIONS(1506), - [anon_sym_false] = ACTIONS(1506), - [anon_sym_null] = ACTIONS(1506), - [aux_sym_cmd_identifier_token38] = ACTIONS(1506), - [aux_sym_cmd_identifier_token39] = ACTIONS(1506), - [aux_sym_cmd_identifier_token40] = ACTIONS(1506), - [sym__newline] = ACTIONS(1506), - [anon_sym_SEMI] = ACTIONS(1506), - [anon_sym_PIPE] = ACTIONS(1506), - [anon_sym_err_GT_PIPE] = ACTIONS(1506), - [anon_sym_out_GT_PIPE] = ACTIONS(1506), - [anon_sym_e_GT_PIPE] = ACTIONS(1506), - [anon_sym_o_GT_PIPE] = ACTIONS(1506), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1506), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1506), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1506), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(1496), - [anon_sym_DOLLAR] = ACTIONS(2834), - [anon_sym_DASH_DASH] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1496), - [anon_sym_LBRACE] = ACTIONS(1506), - [anon_sym_DOT_DOT] = ACTIONS(1496), - [anon_sym_LPAREN2] = ACTIONS(3893), - [anon_sym_DOT] = ACTIONS(3945), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1506), - [anon_sym_DOT_DOT_LT] = ACTIONS(1506), - [aux_sym__immediate_decimal_token1] = ACTIONS(3947), - [aux_sym__immediate_decimal_token3] = ACTIONS(3949), - [aux_sym__immediate_decimal_token4] = ACTIONS(3951), - [aux_sym__immediate_decimal_token5] = ACTIONS(3953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1496), - [aux_sym__val_number_decimal_token2] = ACTIONS(1496), - [aux_sym__val_number_decimal_token3] = ACTIONS(1496), - [aux_sym__val_number_decimal_token4] = ACTIONS(1496), - [aux_sym__val_number_token1] = ACTIONS(1506), - [aux_sym__val_number_token2] = ACTIONS(1506), - [aux_sym__val_number_token3] = ACTIONS(1506), - [anon_sym_0b] = ACTIONS(1496), - [anon_sym_0o] = ACTIONS(1496), - [anon_sym_0x] = ACTIONS(1496), - [sym_val_date] = ACTIONS(1506), - [anon_sym_DQUOTE] = ACTIONS(1506), - [sym__str_single_quotes] = ACTIONS(1506), - [sym__str_back_ticks] = ACTIONS(1506), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1506), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1506), - [anon_sym_err_GT] = ACTIONS(1496), - [anon_sym_out_GT] = ACTIONS(1496), - [anon_sym_e_GT] = ACTIONS(1496), - [anon_sym_o_GT] = ACTIONS(1496), - [anon_sym_err_PLUSout_GT] = ACTIONS(1496), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1496), - [anon_sym_o_PLUSe_GT] = ACTIONS(1496), - [anon_sym_e_PLUSo_GT] = ACTIONS(1496), - [anon_sym_err_GT_GT] = ACTIONS(1506), - [anon_sym_out_GT_GT] = ACTIONS(1506), - [anon_sym_e_GT_GT] = ACTIONS(1506), - [anon_sym_o_GT_GT] = ACTIONS(1506), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1506), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1506), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1506), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1506), - [aux_sym_unquoted_token1] = ACTIONS(1496), - [anon_sym_POUND] = ACTIONS(247), - }, - [1095] = { - [sym_comment] = STATE(1095), - [anon_sym_EQ] = ACTIONS(1028), - [anon_sym_PLUS_EQ] = ACTIONS(1030), - [anon_sym_DASH_EQ] = ACTIONS(1030), - [anon_sym_STAR_EQ] = ACTIONS(1030), - [anon_sym_SLASH_EQ] = ACTIONS(1030), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1030), - [sym__newline] = ACTIONS(1028), - [anon_sym_SEMI] = ACTIONS(1030), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_err_GT_PIPE] = ACTIONS(1030), - [anon_sym_out_GT_PIPE] = ACTIONS(1030), - [anon_sym_e_GT_PIPE] = ACTIONS(1030), - [anon_sym_o_GT_PIPE] = ACTIONS(1030), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1030), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1030), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1030), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1030), - [anon_sym_LBRACE] = ACTIONS(1030), - [anon_sym_RBRACE] = ACTIONS(1030), - [anon_sym_QMARK2] = ACTIONS(3955), - [aux_sym_expr_binary_token1] = ACTIONS(1030), - [aux_sym_expr_binary_token2] = ACTIONS(1030), - [aux_sym_expr_binary_token3] = ACTIONS(1030), - [aux_sym_expr_binary_token4] = ACTIONS(1030), - [aux_sym_expr_binary_token5] = ACTIONS(1030), - [aux_sym_expr_binary_token6] = ACTIONS(1030), - [aux_sym_expr_binary_token7] = ACTIONS(1030), - [aux_sym_expr_binary_token8] = ACTIONS(1030), - [aux_sym_expr_binary_token9] = ACTIONS(1030), - [aux_sym_expr_binary_token10] = ACTIONS(1030), - [aux_sym_expr_binary_token11] = ACTIONS(1030), - [aux_sym_expr_binary_token12] = ACTIONS(1030), - [aux_sym_expr_binary_token13] = ACTIONS(1030), - [aux_sym_expr_binary_token14] = ACTIONS(1030), - [aux_sym_expr_binary_token15] = ACTIONS(1030), - [aux_sym_expr_binary_token16] = ACTIONS(1030), - [aux_sym_expr_binary_token17] = ACTIONS(1030), - [aux_sym_expr_binary_token18] = ACTIONS(1030), - [aux_sym_expr_binary_token19] = ACTIONS(1030), - [aux_sym_expr_binary_token20] = ACTIONS(1030), - [aux_sym_expr_binary_token21] = ACTIONS(1030), - [aux_sym_expr_binary_token22] = ACTIONS(1030), - [aux_sym_expr_binary_token23] = ACTIONS(1030), - [aux_sym_expr_binary_token24] = ACTIONS(1030), - [aux_sym_expr_binary_token25] = ACTIONS(1030), - [aux_sym_expr_binary_token26] = ACTIONS(1030), - [aux_sym_expr_binary_token27] = ACTIONS(1030), - [aux_sym_expr_binary_token28] = ACTIONS(1030), - [anon_sym_DOT_DOT2] = ACTIONS(1028), - [anon_sym_DOT] = ACTIONS(1028), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1030), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1030), - [aux_sym_record_entry_token1] = ACTIONS(1030), - [anon_sym_err_GT] = ACTIONS(1028), - [anon_sym_out_GT] = ACTIONS(1028), - [anon_sym_e_GT] = ACTIONS(1028), - [anon_sym_o_GT] = ACTIONS(1028), - [anon_sym_err_PLUSout_GT] = ACTIONS(1028), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1028), - [anon_sym_o_PLUSe_GT] = ACTIONS(1028), - [anon_sym_e_PLUSo_GT] = ACTIONS(1028), - [anon_sym_err_GT_GT] = ACTIONS(1030), - [anon_sym_out_GT_GT] = ACTIONS(1030), - [anon_sym_e_GT_GT] = ACTIONS(1030), - [anon_sym_o_GT_GT] = ACTIONS(1030), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1030), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1030), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1030), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1030), - [anon_sym_POUND] = ACTIONS(247), - }, - [1096] = { - [sym_comment] = STATE(1096), - [ts_builtin_sym_end] = ACTIONS(1520), - [anon_sym_true] = ACTIONS(1520), - [anon_sym_false] = ACTIONS(1520), - [anon_sym_null] = ACTIONS(1520), - [aux_sym_cmd_identifier_token38] = ACTIONS(1520), - [aux_sym_cmd_identifier_token39] = ACTIONS(1520), - [aux_sym_cmd_identifier_token40] = ACTIONS(1520), - [sym__newline] = ACTIONS(1520), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_err_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_GT_PIPE] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1520), - [anon_sym_LPAREN] = ACTIONS(1518), - [anon_sym_DOLLAR] = ACTIONS(1518), - [anon_sym_DASH_DASH] = ACTIONS(1520), - [anon_sym_DASH] = ACTIONS(1518), - [anon_sym_LBRACE] = ACTIONS(1520), - [anon_sym_DOT_DOT] = ACTIONS(1518), - [anon_sym_LPAREN2] = ACTIONS(1520), - [anon_sym_DOT_DOT2] = ACTIONS(1518), - [anon_sym_DOT] = ACTIONS(3957), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1518), - [anon_sym_DOT_DOT_LT] = ACTIONS(1518), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), - [aux_sym__immediate_decimal_token2] = ACTIONS(3959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1518), - [aux_sym__val_number_decimal_token2] = ACTIONS(1520), - [aux_sym__val_number_decimal_token3] = ACTIONS(1520), - [aux_sym__val_number_decimal_token4] = ACTIONS(1520), - [aux_sym__val_number_token1] = ACTIONS(1520), - [aux_sym__val_number_token2] = ACTIONS(1520), - [aux_sym__val_number_token3] = ACTIONS(1520), - [anon_sym_0b] = ACTIONS(1518), - [sym_filesize_unit] = ACTIONS(1520), - [sym_duration_unit] = ACTIONS(1520), - [anon_sym_0o] = ACTIONS(1518), - [anon_sym_0x] = ACTIONS(1518), - [sym_val_date] = ACTIONS(1520), - [anon_sym_DQUOTE] = ACTIONS(1520), - [sym__str_single_quotes] = ACTIONS(1520), - [sym__str_back_ticks] = ACTIONS(1520), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1520), - [anon_sym_err_GT] = ACTIONS(1518), - [anon_sym_out_GT] = ACTIONS(1518), - [anon_sym_e_GT] = ACTIONS(1518), - [anon_sym_o_GT] = ACTIONS(1518), - [anon_sym_err_PLUSout_GT] = ACTIONS(1518), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), - [anon_sym_o_PLUSe_GT] = ACTIONS(1518), - [anon_sym_e_PLUSo_GT] = ACTIONS(1518), - [anon_sym_err_GT_GT] = ACTIONS(1520), - [anon_sym_out_GT_GT] = ACTIONS(1520), - [anon_sym_e_GT_GT] = ACTIONS(1520), - [anon_sym_o_GT_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1520), - [aux_sym_unquoted_token1] = ACTIONS(1518), - [aux_sym_unquoted_token2] = ACTIONS(1518), - [anon_sym_POUND] = ACTIONS(247), - }, - [1097] = { - [sym_comment] = STATE(1097), - [ts_builtin_sym_end] = ACTIONS(1542), - [anon_sym_true] = ACTIONS(1542), - [anon_sym_false] = ACTIONS(1542), - [anon_sym_null] = ACTIONS(1542), - [aux_sym_cmd_identifier_token38] = ACTIONS(1542), - [aux_sym_cmd_identifier_token39] = ACTIONS(1542), - [aux_sym_cmd_identifier_token40] = ACTIONS(1542), - [sym__newline] = ACTIONS(1542), - [anon_sym_SEMI] = ACTIONS(1542), - [anon_sym_PIPE] = ACTIONS(1542), - [anon_sym_err_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_GT_PIPE] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1542), - [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_LPAREN] = ACTIONS(1540), - [anon_sym_DOLLAR] = ACTIONS(1540), - [anon_sym_DASH_DASH] = ACTIONS(1542), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_LBRACE] = ACTIONS(1542), - [anon_sym_DOT_DOT] = ACTIONS(1540), - [anon_sym_LPAREN2] = ACTIONS(1542), - [anon_sym_DOT_DOT2] = ACTIONS(1540), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1540), - [anon_sym_DOT_DOT_LT] = ACTIONS(1540), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1542), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1542), - [aux_sym__immediate_decimal_token1] = ACTIONS(3961), - [aux_sym__immediate_decimal_token2] = ACTIONS(3963), - [aux_sym__val_number_decimal_token1] = ACTIONS(1540), - [aux_sym__val_number_decimal_token2] = ACTIONS(1542), - [aux_sym__val_number_decimal_token3] = ACTIONS(1542), - [aux_sym__val_number_decimal_token4] = ACTIONS(1542), - [aux_sym__val_number_token1] = ACTIONS(1542), - [aux_sym__val_number_token2] = ACTIONS(1542), - [aux_sym__val_number_token3] = ACTIONS(1542), - [anon_sym_0b] = ACTIONS(1540), - [sym_filesize_unit] = ACTIONS(1542), - [sym_duration_unit] = ACTIONS(1542), - [anon_sym_0o] = ACTIONS(1540), - [anon_sym_0x] = ACTIONS(1540), - [sym_val_date] = ACTIONS(1542), - [anon_sym_DQUOTE] = ACTIONS(1542), - [sym__str_single_quotes] = ACTIONS(1542), - [sym__str_back_ticks] = ACTIONS(1542), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1542), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1542), - [anon_sym_err_GT] = ACTIONS(1540), - [anon_sym_out_GT] = ACTIONS(1540), - [anon_sym_e_GT] = ACTIONS(1540), - [anon_sym_o_GT] = ACTIONS(1540), - [anon_sym_err_PLUSout_GT] = ACTIONS(1540), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1540), - [anon_sym_o_PLUSe_GT] = ACTIONS(1540), - [anon_sym_e_PLUSo_GT] = ACTIONS(1540), - [anon_sym_err_GT_GT] = ACTIONS(1542), - [anon_sym_out_GT_GT] = ACTIONS(1542), - [anon_sym_e_GT_GT] = ACTIONS(1542), - [anon_sym_o_GT_GT] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1542), - [aux_sym_unquoted_token1] = ACTIONS(1540), - [aux_sym_unquoted_token2] = ACTIONS(1540), - [anon_sym_POUND] = ACTIONS(247), - }, - [1098] = { - [sym_comment] = STATE(1098), - [anon_sym_true] = ACTIONS(1520), - [anon_sym_false] = ACTIONS(1520), - [anon_sym_null] = ACTIONS(1520), - [aux_sym_cmd_identifier_token38] = ACTIONS(1520), - [aux_sym_cmd_identifier_token39] = ACTIONS(1520), - [aux_sym_cmd_identifier_token40] = ACTIONS(1520), - [sym__newline] = ACTIONS(1520), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_err_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_GT_PIPE] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1520), - [anon_sym_LPAREN] = ACTIONS(1518), - [anon_sym_RPAREN] = ACTIONS(1520), - [anon_sym_DOLLAR] = ACTIONS(1518), - [anon_sym_DASH_DASH] = ACTIONS(1520), - [anon_sym_DASH] = ACTIONS(1518), - [anon_sym_LBRACE] = ACTIONS(1520), - [anon_sym_RBRACE] = ACTIONS(1520), - [anon_sym_DOT_DOT] = ACTIONS(1518), - [anon_sym_LPAREN2] = ACTIONS(1520), - [anon_sym_DOT_DOT2] = ACTIONS(1518), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1518), - [anon_sym_DOT_DOT_LT] = ACTIONS(1518), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), - [aux_sym__immediate_decimal_token2] = ACTIONS(3872), - [aux_sym__val_number_decimal_token1] = ACTIONS(1518), - [aux_sym__val_number_decimal_token2] = ACTIONS(1520), - [aux_sym__val_number_decimal_token3] = ACTIONS(1520), - [aux_sym__val_number_decimal_token4] = ACTIONS(1520), - [aux_sym__val_number_token1] = ACTIONS(1520), - [aux_sym__val_number_token2] = ACTIONS(1520), - [aux_sym__val_number_token3] = ACTIONS(1520), - [anon_sym_0b] = ACTIONS(1518), - [sym_filesize_unit] = ACTIONS(1520), - [sym_duration_unit] = ACTIONS(1520), - [anon_sym_0o] = ACTIONS(1518), - [anon_sym_0x] = ACTIONS(1518), - [sym_val_date] = ACTIONS(1520), - [anon_sym_DQUOTE] = ACTIONS(1520), - [sym__str_single_quotes] = ACTIONS(1520), - [sym__str_back_ticks] = ACTIONS(1520), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1520), - [anon_sym_err_GT] = ACTIONS(1518), - [anon_sym_out_GT] = ACTIONS(1518), - [anon_sym_e_GT] = ACTIONS(1518), - [anon_sym_o_GT] = ACTIONS(1518), - [anon_sym_err_PLUSout_GT] = ACTIONS(1518), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), - [anon_sym_o_PLUSe_GT] = ACTIONS(1518), - [anon_sym_e_PLUSo_GT] = ACTIONS(1518), - [anon_sym_err_GT_GT] = ACTIONS(1520), - [anon_sym_out_GT_GT] = ACTIONS(1520), - [anon_sym_e_GT_GT] = ACTIONS(1520), - [anon_sym_o_GT_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1520), - [aux_sym_unquoted_token1] = ACTIONS(1518), - [aux_sym_unquoted_token2] = ACTIONS(1518), - [anon_sym_POUND] = ACTIONS(247), - }, - [1099] = { - [sym_path] = STATE(1212), - [sym_comment] = STATE(1099), - [aux_sym_cell_path_repeat1] = STATE(1103), - [anon_sym_EQ] = ACTIONS(1011), - [anon_sym_PLUS_EQ] = ACTIONS(1013), - [anon_sym_DASH_EQ] = ACTIONS(1013), - [anon_sym_STAR_EQ] = ACTIONS(1013), - [anon_sym_SLASH_EQ] = ACTIONS(1013), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1013), - [sym__newline] = ACTIONS(1011), - [anon_sym_SEMI] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1013), - [anon_sym_err_GT_PIPE] = ACTIONS(1013), - [anon_sym_out_GT_PIPE] = ACTIONS(1013), - [anon_sym_e_GT_PIPE] = ACTIONS(1013), - [anon_sym_o_GT_PIPE] = ACTIONS(1013), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1013), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1013), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1013), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1013), - [anon_sym_RPAREN] = ACTIONS(1013), - [anon_sym_LBRACE] = ACTIONS(1013), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1013), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1013), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1013), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1013), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1013), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1013), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1013), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1013), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1013), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1013), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1013), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1013), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1013), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1013), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1013), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1013), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1013), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1013), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1013), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1013), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1013), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1013), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1013), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1013), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1013), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1013), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1013), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1013), - [anon_sym_DOT_DOT2] = ACTIONS(1011), - [anon_sym_DOT] = ACTIONS(3917), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1013), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1013), - [anon_sym_err_GT] = ACTIONS(1011), - [anon_sym_out_GT] = ACTIONS(1011), - [anon_sym_e_GT] = ACTIONS(1011), - [anon_sym_o_GT] = ACTIONS(1011), - [anon_sym_err_PLUSout_GT] = ACTIONS(1011), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1011), - [anon_sym_o_PLUSe_GT] = ACTIONS(1011), - [anon_sym_e_PLUSo_GT] = ACTIONS(1011), - [anon_sym_err_GT_GT] = ACTIONS(1013), - [anon_sym_out_GT_GT] = ACTIONS(1013), - [anon_sym_e_GT_GT] = ACTIONS(1013), - [anon_sym_o_GT_GT] = ACTIONS(1013), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1013), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1013), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1013), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1013), - [anon_sym_POUND] = ACTIONS(247), - }, - [1100] = { - [sym_comment] = STATE(1100), [anon_sym_true] = ACTIONS(1556), [anon_sym_false] = ACTIONS(1556), [anon_sym_null] = ACTIONS(1556), @@ -184556,47 +186592,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1556), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1556), [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1554), + [anon_sym_LPAREN] = ACTIONS(1544), [anon_sym_RPAREN] = ACTIONS(1556), - [anon_sym_DOLLAR] = ACTIONS(1554), + [anon_sym_DOLLAR] = ACTIONS(3970), [anon_sym_DASH_DASH] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1554), + [anon_sym_DASH] = ACTIONS(1544), [anon_sym_LBRACE] = ACTIONS(1556), [anon_sym_RBRACE] = ACTIONS(1556), - [anon_sym_DOT_DOT] = ACTIONS(1554), - [anon_sym_LPAREN2] = ACTIONS(1556), - [anon_sym_DOT_DOT2] = ACTIONS(1554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1554), - [anon_sym_DOT_DOT_LT] = ACTIONS(1554), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1556), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1556), - [aux_sym__immediate_decimal_token2] = ACTIONS(3965), - [aux_sym__val_number_decimal_token1] = ACTIONS(1554), - [aux_sym__val_number_decimal_token2] = ACTIONS(1556), - [aux_sym__val_number_decimal_token3] = ACTIONS(1556), - [aux_sym__val_number_decimal_token4] = ACTIONS(1556), + [anon_sym_DOT_DOT] = ACTIONS(1544), + [anon_sym_LPAREN2] = ACTIONS(3972), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1556), + [anon_sym_DOT_DOT_LT] = ACTIONS(1556), + [aux_sym__immediate_decimal_token1] = ACTIONS(3974), + [aux_sym__immediate_decimal_token3] = ACTIONS(3976), + [aux_sym__immediate_decimal_token4] = ACTIONS(3978), + [aux_sym__immediate_decimal_token5] = ACTIONS(3980), + [aux_sym__val_number_decimal_token1] = ACTIONS(1544), + [aux_sym__val_number_decimal_token2] = ACTIONS(1544), + [aux_sym__val_number_decimal_token3] = ACTIONS(1544), + [aux_sym__val_number_decimal_token4] = ACTIONS(1544), [aux_sym__val_number_token1] = ACTIONS(1556), [aux_sym__val_number_token2] = ACTIONS(1556), [aux_sym__val_number_token3] = ACTIONS(1556), - [anon_sym_0b] = ACTIONS(1554), - [sym_filesize_unit] = ACTIONS(1556), - [sym_duration_unit] = ACTIONS(1556), - [anon_sym_0o] = ACTIONS(1554), - [anon_sym_0x] = ACTIONS(1554), + [anon_sym_0b] = ACTIONS(1544), + [anon_sym_0o] = ACTIONS(1544), + [anon_sym_0x] = ACTIONS(1544), [sym_val_date] = ACTIONS(1556), [anon_sym_DQUOTE] = ACTIONS(1556), [sym__str_single_quotes] = ACTIONS(1556), [sym__str_back_ticks] = ACTIONS(1556), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1556), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1556), - [anon_sym_err_GT] = ACTIONS(1554), - [anon_sym_out_GT] = ACTIONS(1554), - [anon_sym_e_GT] = ACTIONS(1554), - [anon_sym_o_GT] = ACTIONS(1554), - [anon_sym_err_PLUSout_GT] = ACTIONS(1554), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1554), - [anon_sym_o_PLUSe_GT] = ACTIONS(1554), - [anon_sym_e_PLUSo_GT] = ACTIONS(1554), + [anon_sym_err_GT] = ACTIONS(1544), + [anon_sym_out_GT] = ACTIONS(1544), + [anon_sym_e_GT] = ACTIONS(1544), + [anon_sym_o_GT] = ACTIONS(1544), + [anon_sym_err_PLUSout_GT] = ACTIONS(1544), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1544), + [anon_sym_o_PLUSe_GT] = ACTIONS(1544), + [anon_sym_e_PLUSo_GT] = ACTIONS(1544), [anon_sym_err_GT_GT] = ACTIONS(1556), [anon_sym_out_GT_GT] = ACTIONS(1556), [anon_sym_e_GT_GT] = ACTIONS(1556), @@ -184605,428 +186639,732 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1556), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1556), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1556), - [aux_sym_unquoted_token1] = ACTIONS(1554), - [aux_sym_unquoted_token2] = ACTIONS(1554), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_unquoted_token1] = ACTIONS(1544), + [aux_sym_unquoted_token2] = ACTIONS(1558), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1556), }, - [1101] = { - [sym_comment] = STATE(1101), - [anon_sym_true] = ACTIONS(1520), - [anon_sym_false] = ACTIONS(1520), - [anon_sym_null] = ACTIONS(1520), - [aux_sym_cmd_identifier_token38] = ACTIONS(1520), - [aux_sym_cmd_identifier_token39] = ACTIONS(1520), - [aux_sym_cmd_identifier_token40] = ACTIONS(1520), - [sym__newline] = ACTIONS(1520), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_err_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_GT_PIPE] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1520), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_RPAREN] = ACTIONS(1520), - [anon_sym_DOLLAR] = ACTIONS(1518), - [anon_sym_DASH_DASH] = ACTIONS(1520), - [anon_sym_DASH] = ACTIONS(1518), - [anon_sym_LBRACE] = ACTIONS(1520), - [anon_sym_RBRACE] = ACTIONS(1520), - [anon_sym_DOT_DOT] = ACTIONS(1518), - [anon_sym_DOT_DOT2] = ACTIONS(1518), - [anon_sym_DOT] = ACTIONS(3967), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1518), - [anon_sym_DOT_DOT_LT] = ACTIONS(1518), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), - [aux_sym__immediate_decimal_token2] = ACTIONS(3969), - [aux_sym__val_number_decimal_token1] = ACTIONS(1518), - [aux_sym__val_number_decimal_token2] = ACTIONS(1520), - [aux_sym__val_number_decimal_token3] = ACTIONS(1520), - [aux_sym__val_number_decimal_token4] = ACTIONS(1520), - [aux_sym__val_number_token1] = ACTIONS(1520), - [aux_sym__val_number_token2] = ACTIONS(1520), - [aux_sym__val_number_token3] = ACTIONS(1520), - [anon_sym_0b] = ACTIONS(1518), - [sym_filesize_unit] = ACTIONS(1520), - [sym_duration_unit] = ACTIONS(1520), - [anon_sym_0o] = ACTIONS(1518), - [anon_sym_0x] = ACTIONS(1518), - [sym_val_date] = ACTIONS(1520), - [anon_sym_DQUOTE] = ACTIONS(1520), - [sym__str_single_quotes] = ACTIONS(1520), - [sym__str_back_ticks] = ACTIONS(1520), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1520), - [anon_sym_err_GT] = ACTIONS(1518), - [anon_sym_out_GT] = ACTIONS(1518), - [anon_sym_e_GT] = ACTIONS(1518), - [anon_sym_o_GT] = ACTIONS(1518), - [anon_sym_err_PLUSout_GT] = ACTIONS(1518), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), - [anon_sym_o_PLUSe_GT] = ACTIONS(1518), - [anon_sym_e_PLUSo_GT] = ACTIONS(1518), - [anon_sym_err_GT_GT] = ACTIONS(1520), - [anon_sym_out_GT_GT] = ACTIONS(1520), - [anon_sym_e_GT_GT] = ACTIONS(1520), - [anon_sym_o_GT_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1520), - [aux_sym_unquoted_token1] = ACTIONS(1518), - [aux_sym_unquoted_token2] = ACTIONS(1518), - [anon_sym_POUND] = ACTIONS(247), + [1092] = { + [sym_cell_path] = STATE(1275), + [sym_path] = STATE(1233), + [sym_comment] = STATE(1092), + [aux_sym_cell_path_repeat1] = STATE(1096), + [anon_sym_EQ] = ACTIONS(1021), + [anon_sym_PLUS_EQ] = ACTIONS(1023), + [anon_sym_DASH_EQ] = ACTIONS(1023), + [anon_sym_STAR_EQ] = ACTIONS(1023), + [anon_sym_SLASH_EQ] = ACTIONS(1023), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1023), + [sym__newline] = ACTIONS(1021), + [anon_sym_SEMI] = ACTIONS(1023), + [anon_sym_PIPE] = ACTIONS(1023), + [anon_sym_err_GT_PIPE] = ACTIONS(1023), + [anon_sym_out_GT_PIPE] = ACTIONS(1023), + [anon_sym_e_GT_PIPE] = ACTIONS(1023), + [anon_sym_o_GT_PIPE] = ACTIONS(1023), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1023), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1023), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1023), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1023), + [anon_sym_LBRACE] = ACTIONS(1023), + [anon_sym_RBRACE] = ACTIONS(1023), + [aux_sym_expr_binary_token1] = ACTIONS(1023), + [aux_sym_expr_binary_token2] = ACTIONS(1023), + [aux_sym_expr_binary_token3] = ACTIONS(1023), + [aux_sym_expr_binary_token4] = ACTIONS(1023), + [aux_sym_expr_binary_token5] = ACTIONS(1023), + [aux_sym_expr_binary_token6] = ACTIONS(1023), + [aux_sym_expr_binary_token7] = ACTIONS(1023), + [aux_sym_expr_binary_token8] = ACTIONS(1023), + [aux_sym_expr_binary_token9] = ACTIONS(1023), + [aux_sym_expr_binary_token10] = ACTIONS(1023), + [aux_sym_expr_binary_token11] = ACTIONS(1023), + [aux_sym_expr_binary_token12] = ACTIONS(1023), + [aux_sym_expr_binary_token13] = ACTIONS(1023), + [aux_sym_expr_binary_token14] = ACTIONS(1023), + [aux_sym_expr_binary_token15] = ACTIONS(1023), + [aux_sym_expr_binary_token16] = ACTIONS(1023), + [aux_sym_expr_binary_token17] = ACTIONS(1023), + [aux_sym_expr_binary_token18] = ACTIONS(1023), + [aux_sym_expr_binary_token19] = ACTIONS(1023), + [aux_sym_expr_binary_token20] = ACTIONS(1023), + [aux_sym_expr_binary_token21] = ACTIONS(1023), + [aux_sym_expr_binary_token22] = ACTIONS(1023), + [aux_sym_expr_binary_token23] = ACTIONS(1023), + [aux_sym_expr_binary_token24] = ACTIONS(1023), + [aux_sym_expr_binary_token25] = ACTIONS(1023), + [aux_sym_expr_binary_token26] = ACTIONS(1023), + [aux_sym_expr_binary_token27] = ACTIONS(1023), + [aux_sym_expr_binary_token28] = ACTIONS(1023), + [anon_sym_DOT_DOT2] = ACTIONS(1021), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1023), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1023), + [aux_sym_record_entry_token1] = ACTIONS(1023), + [anon_sym_err_GT] = ACTIONS(1021), + [anon_sym_out_GT] = ACTIONS(1021), + [anon_sym_e_GT] = ACTIONS(1021), + [anon_sym_o_GT] = ACTIONS(1021), + [anon_sym_err_PLUSout_GT] = ACTIONS(1021), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1021), + [anon_sym_o_PLUSe_GT] = ACTIONS(1021), + [anon_sym_e_PLUSo_GT] = ACTIONS(1021), + [anon_sym_err_GT_GT] = ACTIONS(1023), + [anon_sym_out_GT_GT] = ACTIONS(1023), + [anon_sym_e_GT_GT] = ACTIONS(1023), + [anon_sym_o_GT_GT] = ACTIONS(1023), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1023), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1023), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1023), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1023), + [anon_sym_POUND] = ACTIONS(249), }, - [1102] = { - [sym_comment] = STATE(1102), - [anon_sym_true] = ACTIONS(1542), - [anon_sym_false] = ACTIONS(1542), - [anon_sym_null] = ACTIONS(1542), - [aux_sym_cmd_identifier_token38] = ACTIONS(1542), - [aux_sym_cmd_identifier_token39] = ACTIONS(1542), - [aux_sym_cmd_identifier_token40] = ACTIONS(1542), - [sym__newline] = ACTIONS(1542), - [anon_sym_SEMI] = ACTIONS(1542), - [anon_sym_PIPE] = ACTIONS(1542), - [anon_sym_err_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_GT_PIPE] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1542), - [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_LPAREN] = ACTIONS(1542), - [anon_sym_RPAREN] = ACTIONS(1542), - [anon_sym_DOLLAR] = ACTIONS(1540), - [anon_sym_DASH_DASH] = ACTIONS(1542), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_LBRACE] = ACTIONS(1542), - [anon_sym_RBRACE] = ACTIONS(1542), - [anon_sym_DOT_DOT] = ACTIONS(1540), - [anon_sym_DOT_DOT2] = ACTIONS(1540), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1540), - [anon_sym_DOT_DOT_LT] = ACTIONS(1540), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1542), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1542), - [aux_sym__immediate_decimal_token1] = ACTIONS(3971), - [aux_sym__immediate_decimal_token2] = ACTIONS(3973), - [aux_sym__val_number_decimal_token1] = ACTIONS(1540), - [aux_sym__val_number_decimal_token2] = ACTIONS(1542), - [aux_sym__val_number_decimal_token3] = ACTIONS(1542), - [aux_sym__val_number_decimal_token4] = ACTIONS(1542), - [aux_sym__val_number_token1] = ACTIONS(1542), - [aux_sym__val_number_token2] = ACTIONS(1542), - [aux_sym__val_number_token3] = ACTIONS(1542), - [anon_sym_0b] = ACTIONS(1540), - [sym_filesize_unit] = ACTIONS(1542), - [sym_duration_unit] = ACTIONS(1542), - [anon_sym_0o] = ACTIONS(1540), - [anon_sym_0x] = ACTIONS(1540), - [sym_val_date] = ACTIONS(1542), - [anon_sym_DQUOTE] = ACTIONS(1542), - [sym__str_single_quotes] = ACTIONS(1542), - [sym__str_back_ticks] = ACTIONS(1542), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1542), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1542), - [anon_sym_err_GT] = ACTIONS(1540), - [anon_sym_out_GT] = ACTIONS(1540), - [anon_sym_e_GT] = ACTIONS(1540), - [anon_sym_o_GT] = ACTIONS(1540), - [anon_sym_err_PLUSout_GT] = ACTIONS(1540), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1540), - [anon_sym_o_PLUSe_GT] = ACTIONS(1540), - [anon_sym_e_PLUSo_GT] = ACTIONS(1540), - [anon_sym_err_GT_GT] = ACTIONS(1542), - [anon_sym_out_GT_GT] = ACTIONS(1542), - [anon_sym_e_GT_GT] = ACTIONS(1542), - [anon_sym_o_GT_GT] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1542), - [aux_sym_unquoted_token1] = ACTIONS(1540), - [aux_sym_unquoted_token2] = ACTIONS(1540), - [anon_sym_POUND] = ACTIONS(247), + [1093] = { + [sym_cell_path] = STATE(1326), + [sym_path] = STATE(1268), + [sym_comment] = STATE(1093), + [aux_sym_cell_path_repeat1] = STATE(1192), + [anon_sym_EQ] = ACTIONS(1021), + [anon_sym_PLUS_EQ] = ACTIONS(1023), + [anon_sym_DASH_EQ] = ACTIONS(1023), + [anon_sym_STAR_EQ] = ACTIONS(1023), + [anon_sym_SLASH_EQ] = ACTIONS(1023), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1023), + [sym__newline] = ACTIONS(1021), + [anon_sym_SEMI] = ACTIONS(1023), + [anon_sym_PIPE] = ACTIONS(1023), + [anon_sym_err_GT_PIPE] = ACTIONS(1023), + [anon_sym_out_GT_PIPE] = ACTIONS(1023), + [anon_sym_e_GT_PIPE] = ACTIONS(1023), + [anon_sym_o_GT_PIPE] = ACTIONS(1023), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1023), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1023), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1023), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1023), + [anon_sym_RPAREN] = ACTIONS(1023), + [anon_sym_LBRACE] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1023), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1023), + [anon_sym_DOT_DOT2] = ACTIONS(1021), + [anon_sym_DOT] = ACTIONS(4008), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1023), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1023), + [anon_sym_err_GT] = ACTIONS(1021), + [anon_sym_out_GT] = ACTIONS(1021), + [anon_sym_e_GT] = ACTIONS(1021), + [anon_sym_o_GT] = ACTIONS(1021), + [anon_sym_err_PLUSout_GT] = ACTIONS(1021), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1021), + [anon_sym_o_PLUSe_GT] = ACTIONS(1021), + [anon_sym_e_PLUSo_GT] = ACTIONS(1021), + [anon_sym_err_GT_GT] = ACTIONS(1023), + [anon_sym_out_GT_GT] = ACTIONS(1023), + [anon_sym_e_GT_GT] = ACTIONS(1023), + [anon_sym_o_GT_GT] = ACTIONS(1023), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1023), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1023), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1023), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1023), + [anon_sym_POUND] = ACTIONS(249), }, - [1103] = { - [sym_path] = STATE(1212), - [sym_comment] = STATE(1103), - [aux_sym_cell_path_repeat1] = STATE(1103), - [anon_sym_EQ] = ACTIONS(1015), - [anon_sym_PLUS_EQ] = ACTIONS(1017), - [anon_sym_DASH_EQ] = ACTIONS(1017), - [anon_sym_STAR_EQ] = ACTIONS(1017), - [anon_sym_SLASH_EQ] = ACTIONS(1017), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1017), - [sym__newline] = ACTIONS(1015), - [anon_sym_SEMI] = ACTIONS(1017), - [anon_sym_PIPE] = ACTIONS(1017), - [anon_sym_err_GT_PIPE] = ACTIONS(1017), - [anon_sym_out_GT_PIPE] = ACTIONS(1017), - [anon_sym_e_GT_PIPE] = ACTIONS(1017), - [anon_sym_o_GT_PIPE] = ACTIONS(1017), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1017), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1017), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1017), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1017), - [anon_sym_RPAREN] = ACTIONS(1017), - [anon_sym_LBRACE] = ACTIONS(1017), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1017), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1017), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1017), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1017), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1017), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1017), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1017), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1017), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1017), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1017), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1017), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1017), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1017), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1017), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1017), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1017), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1017), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1017), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1017), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1017), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1017), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1017), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1017), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1017), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1017), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1017), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1017), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1017), - [anon_sym_DOT_DOT2] = ACTIONS(1015), - [anon_sym_DOT] = ACTIONS(3975), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1017), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1017), - [anon_sym_err_GT] = ACTIONS(1015), - [anon_sym_out_GT] = ACTIONS(1015), - [anon_sym_e_GT] = ACTIONS(1015), - [anon_sym_o_GT] = ACTIONS(1015), - [anon_sym_err_PLUSout_GT] = ACTIONS(1015), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1015), - [anon_sym_o_PLUSe_GT] = ACTIONS(1015), - [anon_sym_e_PLUSo_GT] = ACTIONS(1015), - [anon_sym_err_GT_GT] = ACTIONS(1017), - [anon_sym_out_GT_GT] = ACTIONS(1017), - [anon_sym_e_GT_GT] = ACTIONS(1017), - [anon_sym_o_GT_GT] = ACTIONS(1017), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1017), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1017), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1017), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1017), - [anon_sym_POUND] = ACTIONS(247), + [1094] = { + [sym__val_range] = STATE(7794), + [sym__value] = STATE(6044), + [sym_val_nothing] = STATE(4884), + [sym_val_bool] = STATE(5849), + [sym_val_variable] = STATE(4884), + [sym_val_number] = STATE(4884), + [sym__val_number_decimal] = STATE(5354), + [sym__val_number] = STATE(3529), + [sym_val_duration] = STATE(4884), + [sym_val_filesize] = STATE(4884), + [sym_val_binary] = STATE(4884), + [sym_val_string] = STATE(4884), + [sym__raw_str] = STATE(4434), + [sym__str_double_quotes] = STATE(4434), + [sym_val_interpolated] = STATE(4884), + [sym__inter_single_quotes] = STATE(4936), + [sym__inter_double_quotes] = STATE(4937), + [sym_val_list] = STATE(4884), + [sym_val_record] = STATE(4884), + [sym_val_table] = STATE(4884), + [sym_val_closure] = STATE(4884), + [sym_unquoted] = STATE(6070), + [sym__unquoted_anonymous_prefix] = STATE(7859), + [sym_comment] = STATE(1094), + [anon_sym_true] = ACTIONS(4010), + [anon_sym_false] = ACTIONS(4010), + [anon_sym_null] = ACTIONS(4012), + [aux_sym_cmd_identifier_token38] = ACTIONS(4014), + [aux_sym_cmd_identifier_token39] = ACTIONS(4014), + [aux_sym_cmd_identifier_token40] = ACTIONS(4014), + [anon_sym_LBRACK] = ACTIONS(4016), + [anon_sym_LPAREN] = ACTIONS(4018), + [anon_sym_DOLLAR] = ACTIONS(4020), + [anon_sym_LBRACE] = ACTIONS(4022), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4026), + [anon_sym_DOT_DOT_LT] = ACTIONS(4026), + [aux_sym__val_number_decimal_token1] = ACTIONS(4028), + [aux_sym__val_number_decimal_token2] = ACTIONS(4030), + [aux_sym__val_number_decimal_token3] = ACTIONS(4032), + [aux_sym__val_number_decimal_token4] = ACTIONS(4034), + [aux_sym__val_number_token1] = ACTIONS(3486), + [aux_sym__val_number_token2] = ACTIONS(3486), + [aux_sym__val_number_token3] = ACTIONS(3486), + [anon_sym_0b] = ACTIONS(3586), + [anon_sym_0o] = ACTIONS(3588), + [anon_sym_0x] = ACTIONS(3588), + [sym_val_date] = ACTIONS(4036), + [anon_sym_DQUOTE] = ACTIONS(3842), + [sym__str_single_quotes] = ACTIONS(3844), + [sym__str_back_ticks] = ACTIONS(3844), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3596), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3598), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3846), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3848), }, - [1104] = { - [sym__expr_parenthesized_immediate] = STATE(1941), - [sym__immediate_decimal] = STATE(1560), - [sym_val_variable] = STATE(1941), - [sym_comment] = STATE(1104), - [ts_builtin_sym_end] = ACTIONS(1550), - [anon_sym_true] = ACTIONS(1550), - [anon_sym_false] = ACTIONS(1550), - [anon_sym_null] = ACTIONS(1550), - [aux_sym_cmd_identifier_token38] = ACTIONS(1550), - [aux_sym_cmd_identifier_token39] = ACTIONS(1550), - [aux_sym_cmd_identifier_token40] = ACTIONS(1550), - [sym__newline] = ACTIONS(1550), - [anon_sym_SEMI] = ACTIONS(1550), - [anon_sym_PIPE] = ACTIONS(1550), - [anon_sym_err_GT_PIPE] = ACTIONS(1550), - [anon_sym_out_GT_PIPE] = ACTIONS(1550), - [anon_sym_e_GT_PIPE] = ACTIONS(1550), - [anon_sym_o_GT_PIPE] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1550), - [anon_sym_LBRACK] = ACTIONS(1550), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_DOLLAR] = ACTIONS(3923), - [anon_sym_DASH_DASH] = ACTIONS(1550), - [anon_sym_DASH] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(1550), - [anon_sym_DOT_DOT] = ACTIONS(1548), - [anon_sym_LPAREN2] = ACTIONS(3925), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1550), - [anon_sym_DOT_DOT_LT] = ACTIONS(1550), - [aux_sym__immediate_decimal_token1] = ACTIONS(3927), - [aux_sym__immediate_decimal_token3] = ACTIONS(3929), - [aux_sym__immediate_decimal_token4] = ACTIONS(3931), - [aux_sym__immediate_decimal_token5] = ACTIONS(3933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1548), - [aux_sym__val_number_decimal_token2] = ACTIONS(1548), - [aux_sym__val_number_decimal_token3] = ACTIONS(1548), - [aux_sym__val_number_decimal_token4] = ACTIONS(1548), - [aux_sym__val_number_token1] = ACTIONS(1550), - [aux_sym__val_number_token2] = ACTIONS(1550), - [aux_sym__val_number_token3] = ACTIONS(1550), - [anon_sym_0b] = ACTIONS(1548), - [anon_sym_0o] = ACTIONS(1548), - [anon_sym_0x] = ACTIONS(1548), - [sym_val_date] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1550), - [sym__str_single_quotes] = ACTIONS(1550), - [sym__str_back_ticks] = ACTIONS(1550), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1550), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1550), - [anon_sym_err_GT] = ACTIONS(1548), - [anon_sym_out_GT] = ACTIONS(1548), - [anon_sym_e_GT] = ACTIONS(1548), - [anon_sym_o_GT] = ACTIONS(1548), - [anon_sym_err_PLUSout_GT] = ACTIONS(1548), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1548), - [anon_sym_o_PLUSe_GT] = ACTIONS(1548), - [anon_sym_e_PLUSo_GT] = ACTIONS(1548), - [anon_sym_err_GT_GT] = ACTIONS(1550), - [anon_sym_out_GT_GT] = ACTIONS(1550), - [anon_sym_e_GT_GT] = ACTIONS(1550), - [anon_sym_o_GT_GT] = ACTIONS(1550), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1550), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1550), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1550), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1550), - [aux_sym_unquoted_token1] = ACTIONS(1548), - [aux_sym_unquoted_token2] = ACTIONS(1552), - [anon_sym_POUND] = ACTIONS(247), + [1095] = { + [sym_path] = STATE(1233), + [sym_comment] = STATE(1095), + [aux_sym_cell_path_repeat1] = STATE(1095), + [anon_sym_EQ] = ACTIONS(1031), + [anon_sym_PLUS_EQ] = ACTIONS(1033), + [anon_sym_DASH_EQ] = ACTIONS(1033), + [anon_sym_STAR_EQ] = ACTIONS(1033), + [anon_sym_SLASH_EQ] = ACTIONS(1033), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1033), + [sym__newline] = ACTIONS(1031), + [anon_sym_SEMI] = ACTIONS(1033), + [anon_sym_PIPE] = ACTIONS(1033), + [anon_sym_err_GT_PIPE] = ACTIONS(1033), + [anon_sym_out_GT_PIPE] = ACTIONS(1033), + [anon_sym_e_GT_PIPE] = ACTIONS(1033), + [anon_sym_o_GT_PIPE] = ACTIONS(1033), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1033), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1033), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1033), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1033), + [aux_sym_expr_binary_token1] = ACTIONS(1033), + [aux_sym_expr_binary_token2] = ACTIONS(1033), + [aux_sym_expr_binary_token3] = ACTIONS(1033), + [aux_sym_expr_binary_token4] = ACTIONS(1033), + [aux_sym_expr_binary_token5] = ACTIONS(1033), + [aux_sym_expr_binary_token6] = ACTIONS(1033), + [aux_sym_expr_binary_token7] = ACTIONS(1033), + [aux_sym_expr_binary_token8] = ACTIONS(1033), + [aux_sym_expr_binary_token9] = ACTIONS(1033), + [aux_sym_expr_binary_token10] = ACTIONS(1033), + [aux_sym_expr_binary_token11] = ACTIONS(1033), + [aux_sym_expr_binary_token12] = ACTIONS(1033), + [aux_sym_expr_binary_token13] = ACTIONS(1033), + [aux_sym_expr_binary_token14] = ACTIONS(1033), + [aux_sym_expr_binary_token15] = ACTIONS(1033), + [aux_sym_expr_binary_token16] = ACTIONS(1033), + [aux_sym_expr_binary_token17] = ACTIONS(1033), + [aux_sym_expr_binary_token18] = ACTIONS(1033), + [aux_sym_expr_binary_token19] = ACTIONS(1033), + [aux_sym_expr_binary_token20] = ACTIONS(1033), + [aux_sym_expr_binary_token21] = ACTIONS(1033), + [aux_sym_expr_binary_token22] = ACTIONS(1033), + [aux_sym_expr_binary_token23] = ACTIONS(1033), + [aux_sym_expr_binary_token24] = ACTIONS(1033), + [aux_sym_expr_binary_token25] = ACTIONS(1033), + [aux_sym_expr_binary_token26] = ACTIONS(1033), + [aux_sym_expr_binary_token27] = ACTIONS(1033), + [aux_sym_expr_binary_token28] = ACTIONS(1033), + [anon_sym_DOT_DOT2] = ACTIONS(1031), + [anon_sym_DOT] = ACTIONS(4038), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1033), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1033), + [aux_sym_record_entry_token1] = ACTIONS(1033), + [anon_sym_err_GT] = ACTIONS(1031), + [anon_sym_out_GT] = ACTIONS(1031), + [anon_sym_e_GT] = ACTIONS(1031), + [anon_sym_o_GT] = ACTIONS(1031), + [anon_sym_err_PLUSout_GT] = ACTIONS(1031), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1031), + [anon_sym_o_PLUSe_GT] = ACTIONS(1031), + [anon_sym_e_PLUSo_GT] = ACTIONS(1031), + [anon_sym_err_GT_GT] = ACTIONS(1033), + [anon_sym_out_GT_GT] = ACTIONS(1033), + [anon_sym_e_GT_GT] = ACTIONS(1033), + [anon_sym_o_GT_GT] = ACTIONS(1033), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1033), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1033), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1033), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1033), + [anon_sym_POUND] = ACTIONS(249), }, - [1105] = { - [sym__expr_parenthesized_immediate] = STATE(1578), - [sym__immediate_decimal] = STATE(1579), - [sym_val_variable] = STATE(1578), - [sym_comment] = STATE(1105), - [anon_sym_true] = ACTIONS(1588), - [anon_sym_false] = ACTIONS(1588), - [anon_sym_null] = ACTIONS(1588), - [aux_sym_cmd_identifier_token38] = ACTIONS(1588), - [aux_sym_cmd_identifier_token39] = ACTIONS(1588), - [aux_sym_cmd_identifier_token40] = ACTIONS(1588), - [sym__newline] = ACTIONS(1588), - [anon_sym_SEMI] = ACTIONS(1588), - [anon_sym_PIPE] = ACTIONS(1588), - [anon_sym_err_GT_PIPE] = ACTIONS(1588), - [anon_sym_out_GT_PIPE] = ACTIONS(1588), - [anon_sym_e_GT_PIPE] = ACTIONS(1588), - [anon_sym_o_GT_PIPE] = ACTIONS(1588), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1588), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1588), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1588), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1588), - [anon_sym_LBRACK] = ACTIONS(1588), - [anon_sym_LPAREN] = ACTIONS(1586), - [anon_sym_RPAREN] = ACTIONS(1588), - [anon_sym_DOLLAR] = ACTIONS(3881), - [anon_sym_DASH_DASH] = ACTIONS(1588), - [anon_sym_DASH] = ACTIONS(1586), - [anon_sym_LBRACE] = ACTIONS(1588), - [anon_sym_RBRACE] = ACTIONS(1588), - [anon_sym_DOT_DOT] = ACTIONS(1586), - [anon_sym_LPAREN2] = ACTIONS(3883), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1588), - [anon_sym_DOT_DOT_LT] = ACTIONS(1588), - [aux_sym__immediate_decimal_token1] = ACTIONS(3935), - [aux_sym__immediate_decimal_token3] = ACTIONS(3937), - [aux_sym__immediate_decimal_token4] = ACTIONS(3939), - [aux_sym__immediate_decimal_token5] = ACTIONS(3941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1586), - [aux_sym__val_number_decimal_token2] = ACTIONS(1586), - [aux_sym__val_number_decimal_token3] = ACTIONS(1586), - [aux_sym__val_number_decimal_token4] = ACTIONS(1586), - [aux_sym__val_number_token1] = ACTIONS(1588), - [aux_sym__val_number_token2] = ACTIONS(1588), - [aux_sym__val_number_token3] = ACTIONS(1588), - [anon_sym_0b] = ACTIONS(1586), - [anon_sym_0o] = ACTIONS(1586), - [anon_sym_0x] = ACTIONS(1586), - [sym_val_date] = ACTIONS(1588), - [anon_sym_DQUOTE] = ACTIONS(1588), - [sym__str_single_quotes] = ACTIONS(1588), - [sym__str_back_ticks] = ACTIONS(1588), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1588), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1588), - [anon_sym_err_GT] = ACTIONS(1586), - [anon_sym_out_GT] = ACTIONS(1586), - [anon_sym_e_GT] = ACTIONS(1586), - [anon_sym_o_GT] = ACTIONS(1586), - [anon_sym_err_PLUSout_GT] = ACTIONS(1586), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1586), - [anon_sym_o_PLUSe_GT] = ACTIONS(1586), - [anon_sym_e_PLUSo_GT] = ACTIONS(1586), - [anon_sym_err_GT_GT] = ACTIONS(1588), - [anon_sym_out_GT_GT] = ACTIONS(1588), - [anon_sym_e_GT_GT] = ACTIONS(1588), - [anon_sym_o_GT_GT] = ACTIONS(1588), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1588), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1588), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1588), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1588), - [aux_sym_unquoted_token1] = ACTIONS(1586), - [anon_sym_POUND] = ACTIONS(247), + [1096] = { + [sym_path] = STATE(1233), + [sym_comment] = STATE(1096), + [aux_sym_cell_path_repeat1] = STATE(1095), + [anon_sym_EQ] = ACTIONS(1027), + [anon_sym_PLUS_EQ] = ACTIONS(1029), + [anon_sym_DASH_EQ] = ACTIONS(1029), + [anon_sym_STAR_EQ] = ACTIONS(1029), + [anon_sym_SLASH_EQ] = ACTIONS(1029), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1029), + [sym__newline] = ACTIONS(1027), + [anon_sym_SEMI] = ACTIONS(1029), + [anon_sym_PIPE] = ACTIONS(1029), + [anon_sym_err_GT_PIPE] = ACTIONS(1029), + [anon_sym_out_GT_PIPE] = ACTIONS(1029), + [anon_sym_e_GT_PIPE] = ACTIONS(1029), + [anon_sym_o_GT_PIPE] = ACTIONS(1029), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1029), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1029), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1029), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1029), + [anon_sym_LBRACE] = ACTIONS(1029), + [anon_sym_RBRACE] = ACTIONS(1029), + [aux_sym_expr_binary_token1] = ACTIONS(1029), + [aux_sym_expr_binary_token2] = ACTIONS(1029), + [aux_sym_expr_binary_token3] = ACTIONS(1029), + [aux_sym_expr_binary_token4] = ACTIONS(1029), + [aux_sym_expr_binary_token5] = ACTIONS(1029), + [aux_sym_expr_binary_token6] = ACTIONS(1029), + [aux_sym_expr_binary_token7] = ACTIONS(1029), + [aux_sym_expr_binary_token8] = ACTIONS(1029), + [aux_sym_expr_binary_token9] = ACTIONS(1029), + [aux_sym_expr_binary_token10] = ACTIONS(1029), + [aux_sym_expr_binary_token11] = ACTIONS(1029), + [aux_sym_expr_binary_token12] = ACTIONS(1029), + [aux_sym_expr_binary_token13] = ACTIONS(1029), + [aux_sym_expr_binary_token14] = ACTIONS(1029), + [aux_sym_expr_binary_token15] = ACTIONS(1029), + [aux_sym_expr_binary_token16] = ACTIONS(1029), + [aux_sym_expr_binary_token17] = ACTIONS(1029), + [aux_sym_expr_binary_token18] = ACTIONS(1029), + [aux_sym_expr_binary_token19] = ACTIONS(1029), + [aux_sym_expr_binary_token20] = ACTIONS(1029), + [aux_sym_expr_binary_token21] = ACTIONS(1029), + [aux_sym_expr_binary_token22] = ACTIONS(1029), + [aux_sym_expr_binary_token23] = ACTIONS(1029), + [aux_sym_expr_binary_token24] = ACTIONS(1029), + [aux_sym_expr_binary_token25] = ACTIONS(1029), + [aux_sym_expr_binary_token26] = ACTIONS(1029), + [aux_sym_expr_binary_token27] = ACTIONS(1029), + [aux_sym_expr_binary_token28] = ACTIONS(1029), + [anon_sym_DOT_DOT2] = ACTIONS(1027), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1029), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1029), + [aux_sym_record_entry_token1] = ACTIONS(1029), + [anon_sym_err_GT] = ACTIONS(1027), + [anon_sym_out_GT] = ACTIONS(1027), + [anon_sym_e_GT] = ACTIONS(1027), + [anon_sym_o_GT] = ACTIONS(1027), + [anon_sym_err_PLUSout_GT] = ACTIONS(1027), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1027), + [anon_sym_o_PLUSe_GT] = ACTIONS(1027), + [anon_sym_e_PLUSo_GT] = ACTIONS(1027), + [anon_sym_err_GT_GT] = ACTIONS(1029), + [anon_sym_out_GT_GT] = ACTIONS(1029), + [anon_sym_e_GT_GT] = ACTIONS(1029), + [anon_sym_o_GT_GT] = ACTIONS(1029), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1029), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1029), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1029), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1029), + [anon_sym_POUND] = ACTIONS(249), }, - [1106] = { - [sym__expr_parenthesized_immediate] = STATE(7347), - [sym_comment] = STATE(1106), - [anon_sym_true] = ACTIONS(1572), - [anon_sym_false] = ACTIONS(1572), - [anon_sym_null] = ACTIONS(1572), - [aux_sym_cmd_identifier_token38] = ACTIONS(1572), - [aux_sym_cmd_identifier_token39] = ACTIONS(1572), - [aux_sym_cmd_identifier_token40] = ACTIONS(1572), - [sym__newline] = ACTIONS(1572), - [anon_sym_SEMI] = ACTIONS(1572), - [anon_sym_PIPE] = ACTIONS(1572), - [anon_sym_err_GT_PIPE] = ACTIONS(1572), - [anon_sym_out_GT_PIPE] = ACTIONS(1572), - [anon_sym_e_GT_PIPE] = ACTIONS(1572), - [anon_sym_o_GT_PIPE] = ACTIONS(1572), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1572), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1572), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1572), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1572), - [anon_sym_LBRACK] = ACTIONS(1572), + [1097] = { + [sym__val_range] = STATE(8067), + [sym__value] = STATE(2853), + [sym_val_nothing] = STATE(2761), + [sym_val_bool] = STATE(2743), + [sym_val_variable] = STATE(2761), + [sym_val_number] = STATE(2761), + [sym__val_number_decimal] = STATE(2320), + [sym__val_number] = STATE(2818), + [sym_val_duration] = STATE(2761), + [sym_val_filesize] = STATE(2761), + [sym_val_binary] = STATE(2761), + [sym_val_string] = STATE(2761), + [sym__raw_str] = STATE(2850), + [sym__str_double_quotes] = STATE(2850), + [sym_val_interpolated] = STATE(2761), + [sym__inter_single_quotes] = STATE(2763), + [sym__inter_double_quotes] = STATE(2767), + [sym_val_list] = STATE(2761), + [sym_val_record] = STATE(2761), + [sym_val_table] = STATE(2761), + [sym_val_closure] = STATE(2761), + [sym_unquoted] = STATE(2764), + [sym__unquoted_anonymous_prefix] = STATE(7670), + [sym_comment] = STATE(1097), + [anon_sym_true] = ACTIONS(4041), + [anon_sym_false] = ACTIONS(4041), + [anon_sym_null] = ACTIONS(4043), + [aux_sym_cmd_identifier_token38] = ACTIONS(4045), + [aux_sym_cmd_identifier_token39] = ACTIONS(4045), + [aux_sym_cmd_identifier_token40] = ACTIONS(4045), + [anon_sym_LBRACK] = ACTIONS(4047), + [anon_sym_LPAREN] = ACTIONS(4049), + [anon_sym_DOLLAR] = ACTIONS(4051), + [anon_sym_LBRACE] = ACTIONS(4053), + [anon_sym_DOT_DOT] = ACTIONS(4055), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4057), + [anon_sym_DOT_DOT_LT] = ACTIONS(4057), + [aux_sym__val_number_decimal_token1] = ACTIONS(4059), + [aux_sym__val_number_decimal_token2] = ACTIONS(4061), + [aux_sym__val_number_decimal_token3] = ACTIONS(4063), + [aux_sym__val_number_decimal_token4] = ACTIONS(4065), + [aux_sym__val_number_token1] = ACTIONS(4067), + [aux_sym__val_number_token2] = ACTIONS(4067), + [aux_sym__val_number_token3] = ACTIONS(4067), + [anon_sym_0b] = ACTIONS(4069), + [anon_sym_0o] = ACTIONS(4071), + [anon_sym_0x] = ACTIONS(4071), + [sym_val_date] = ACTIONS(4073), + [anon_sym_DQUOTE] = ACTIONS(4075), + [sym__str_single_quotes] = ACTIONS(4077), + [sym__str_back_ticks] = ACTIONS(4077), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4079), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4081), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(4083), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(4085), + }, + [1098] = { + [sym__val_range] = STATE(7794), + [sym__value] = STATE(5997), + [sym_val_nothing] = STATE(4884), + [sym_val_bool] = STATE(7202), + [sym_val_variable] = STATE(4884), + [sym_val_number] = STATE(4884), + [sym__val_number_decimal] = STATE(5569), + [sym__val_number] = STATE(5078), + [sym_val_duration] = STATE(4884), + [sym_val_filesize] = STATE(4884), + [sym_val_binary] = STATE(4884), + [sym_val_string] = STATE(4884), + [sym__raw_str] = STATE(4434), + [sym__str_double_quotes] = STATE(4434), + [sym_val_interpolated] = STATE(4884), + [sym__inter_single_quotes] = STATE(4936), + [sym__inter_double_quotes] = STATE(4937), + [sym_val_list] = STATE(4884), + [sym_val_record] = STATE(4884), + [sym_val_table] = STATE(4884), + [sym_val_closure] = STATE(4884), + [sym_unquoted] = STATE(6052), + [sym__unquoted_anonymous_prefix] = STATE(7859), + [sym_comment] = STATE(1098), + [anon_sym_true] = ACTIONS(4087), + [anon_sym_false] = ACTIONS(4087), + [anon_sym_null] = ACTIONS(4089), + [aux_sym_cmd_identifier_token38] = ACTIONS(4091), + [aux_sym_cmd_identifier_token39] = ACTIONS(4091), + [aux_sym_cmd_identifier_token40] = ACTIONS(4091), + [anon_sym_LBRACK] = ACTIONS(4093), + [anon_sym_LPAREN] = ACTIONS(4018), + [anon_sym_DOLLAR] = ACTIONS(4095), + [anon_sym_LBRACE] = ACTIONS(4097), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4026), + [anon_sym_DOT_DOT_LT] = ACTIONS(4026), + [aux_sym__val_number_decimal_token1] = ACTIONS(4099), + [aux_sym__val_number_decimal_token2] = ACTIONS(4101), + [aux_sym__val_number_decimal_token3] = ACTIONS(4103), + [aux_sym__val_number_decimal_token4] = ACTIONS(4105), + [aux_sym__val_number_token1] = ACTIONS(3584), + [aux_sym__val_number_token2] = ACTIONS(3584), + [aux_sym__val_number_token3] = ACTIONS(3584), + [anon_sym_0b] = ACTIONS(3586), + [anon_sym_0o] = ACTIONS(3588), + [anon_sym_0x] = ACTIONS(3588), + [sym_val_date] = ACTIONS(4107), + [anon_sym_DQUOTE] = ACTIONS(3842), + [sym__str_single_quotes] = ACTIONS(3844), + [sym__str_back_ticks] = ACTIONS(3844), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3596), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3598), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3846), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3848), + }, + [1099] = { + [sym_comment] = STATE(1099), + [anon_sym_true] = ACTIONS(1538), + [anon_sym_false] = ACTIONS(1538), + [anon_sym_null] = ACTIONS(1538), + [aux_sym_cmd_identifier_token38] = ACTIONS(1538), + [aux_sym_cmd_identifier_token39] = ACTIONS(1538), + [aux_sym_cmd_identifier_token40] = ACTIONS(1538), + [sym__newline] = ACTIONS(1538), + [anon_sym_SEMI] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_err_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_GT_PIPE] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), + [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_LPAREN] = ACTIONS(1536), + [anon_sym_RPAREN] = ACTIONS(1538), + [anon_sym_DOLLAR] = ACTIONS(1536), + [anon_sym_DASH_DASH] = ACTIONS(1538), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1538), + [anon_sym_RBRACE] = ACTIONS(1538), + [anon_sym_DOT_DOT] = ACTIONS(1536), + [anon_sym_LPAREN2] = ACTIONS(1538), + [anon_sym_DOT_DOT2] = ACTIONS(1536), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1536), + [anon_sym_DOT_DOT_LT] = ACTIONS(1536), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), + [aux_sym__immediate_decimal_token2] = ACTIONS(3988), + [aux_sym__val_number_decimal_token1] = ACTIONS(1536), + [aux_sym__val_number_decimal_token2] = ACTIONS(1538), + [aux_sym__val_number_decimal_token3] = ACTIONS(1538), + [aux_sym__val_number_decimal_token4] = ACTIONS(1538), + [aux_sym__val_number_token1] = ACTIONS(1538), + [aux_sym__val_number_token2] = ACTIONS(1538), + [aux_sym__val_number_token3] = ACTIONS(1538), + [anon_sym_0b] = ACTIONS(1536), + [sym_filesize_unit] = ACTIONS(1538), + [sym_duration_unit] = ACTIONS(1538), + [anon_sym_0o] = ACTIONS(1536), + [anon_sym_0x] = ACTIONS(1536), + [sym_val_date] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1538), + [sym__str_single_quotes] = ACTIONS(1538), + [sym__str_back_ticks] = ACTIONS(1538), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1538), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1538), + [anon_sym_err_GT] = ACTIONS(1536), + [anon_sym_out_GT] = ACTIONS(1536), + [anon_sym_e_GT] = ACTIONS(1536), + [anon_sym_o_GT] = ACTIONS(1536), + [anon_sym_err_PLUSout_GT] = ACTIONS(1536), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), + [anon_sym_o_PLUSe_GT] = ACTIONS(1536), + [anon_sym_e_PLUSo_GT] = ACTIONS(1536), + [anon_sym_err_GT_GT] = ACTIONS(1538), + [anon_sym_out_GT_GT] = ACTIONS(1538), + [anon_sym_e_GT_GT] = ACTIONS(1538), + [anon_sym_o_GT_GT] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), + [aux_sym_unquoted_token1] = ACTIONS(1536), + [aux_sym_unquoted_token2] = ACTIONS(1536), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1538), + }, + [1100] = { + [sym_comment] = STATE(1100), + [anon_sym_true] = ACTIONS(1538), + [anon_sym_false] = ACTIONS(1538), + [anon_sym_null] = ACTIONS(1538), + [aux_sym_cmd_identifier_token38] = ACTIONS(1538), + [aux_sym_cmd_identifier_token39] = ACTIONS(1538), + [aux_sym_cmd_identifier_token40] = ACTIONS(1538), + [sym__newline] = ACTIONS(1538), + [anon_sym_SEMI] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_err_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_GT_PIPE] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), + [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_LPAREN] = ACTIONS(1538), + [anon_sym_RPAREN] = ACTIONS(1538), + [anon_sym_DOLLAR] = ACTIONS(1536), + [anon_sym_DASH_DASH] = ACTIONS(1538), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1538), + [anon_sym_RBRACE] = ACTIONS(1538), + [anon_sym_DOT_DOT] = ACTIONS(1536), + [anon_sym_DOT_DOT2] = ACTIONS(1536), + [anon_sym_DOT] = ACTIONS(4109), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1536), + [anon_sym_DOT_DOT_LT] = ACTIONS(1536), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), + [aux_sym__immediate_decimal_token2] = ACTIONS(4111), + [aux_sym__val_number_decimal_token1] = ACTIONS(1536), + [aux_sym__val_number_decimal_token2] = ACTIONS(1538), + [aux_sym__val_number_decimal_token3] = ACTIONS(1538), + [aux_sym__val_number_decimal_token4] = ACTIONS(1538), + [aux_sym__val_number_token1] = ACTIONS(1538), + [aux_sym__val_number_token2] = ACTIONS(1538), + [aux_sym__val_number_token3] = ACTIONS(1538), + [anon_sym_0b] = ACTIONS(1536), + [sym_filesize_unit] = ACTIONS(1538), + [sym_duration_unit] = ACTIONS(1538), + [anon_sym_0o] = ACTIONS(1536), + [anon_sym_0x] = ACTIONS(1536), + [sym_val_date] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1538), + [sym__str_single_quotes] = ACTIONS(1538), + [sym__str_back_ticks] = ACTIONS(1538), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1538), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1538), + [anon_sym_err_GT] = ACTIONS(1536), + [anon_sym_out_GT] = ACTIONS(1536), + [anon_sym_e_GT] = ACTIONS(1536), + [anon_sym_o_GT] = ACTIONS(1536), + [anon_sym_err_PLUSout_GT] = ACTIONS(1536), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), + [anon_sym_o_PLUSe_GT] = ACTIONS(1536), + [anon_sym_e_PLUSo_GT] = ACTIONS(1536), + [anon_sym_err_GT_GT] = ACTIONS(1538), + [anon_sym_out_GT_GT] = ACTIONS(1538), + [anon_sym_e_GT_GT] = ACTIONS(1538), + [anon_sym_o_GT_GT] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), + [aux_sym_unquoted_token1] = ACTIONS(1536), + [aux_sym_unquoted_token2] = ACTIONS(1536), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1538), + }, + [1101] = { + [sym__expr_parenthesized_immediate] = STATE(1627), + [sym__immediate_decimal] = STATE(1596), + [sym_val_variable] = STATE(1627), + [sym_comment] = STATE(1101), + [anon_sym_true] = ACTIONS(1570), + [anon_sym_false] = ACTIONS(1570), + [anon_sym_null] = ACTIONS(1570), + [aux_sym_cmd_identifier_token38] = ACTIONS(1570), + [aux_sym_cmd_identifier_token39] = ACTIONS(1570), + [aux_sym_cmd_identifier_token40] = ACTIONS(1570), + [sym__newline] = ACTIONS(1570), + [anon_sym_SEMI] = ACTIONS(1570), + [anon_sym_PIPE] = ACTIONS(1570), + [anon_sym_err_GT_PIPE] = ACTIONS(1570), + [anon_sym_out_GT_PIPE] = ACTIONS(1570), + [anon_sym_e_GT_PIPE] = ACTIONS(1570), + [anon_sym_o_GT_PIPE] = ACTIONS(1570), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1570), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1570), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1570), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1570), + [anon_sym_LBRACK] = ACTIONS(1570), [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(1572), - [anon_sym_DOLLAR] = ACTIONS(1560), - [anon_sym_DASH_DASH] = ACTIONS(1572), + [anon_sym_RPAREN] = ACTIONS(1570), + [anon_sym_DOLLAR] = ACTIONS(3970), + [anon_sym_DASH_DASH] = ACTIONS(1570), [anon_sym_DASH] = ACTIONS(1560), - [anon_sym_LBRACE] = ACTIONS(1572), - [anon_sym_RBRACE] = ACTIONS(1572), + [anon_sym_LBRACE] = ACTIONS(1570), + [anon_sym_RBRACE] = ACTIONS(1570), [anon_sym_DOT_DOT] = ACTIONS(1560), - [anon_sym_LPAREN2] = ACTIONS(3978), - [anon_sym_DOT_DOT2] = ACTIONS(3980), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1560), - [anon_sym_DOT_DOT_LT] = ACTIONS(1560), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3982), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3982), + [anon_sym_LPAREN2] = ACTIONS(3972), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1570), + [anon_sym_DOT_DOT_LT] = ACTIONS(1570), + [aux_sym__immediate_decimal_token1] = ACTIONS(4113), + [aux_sym__immediate_decimal_token3] = ACTIONS(4115), + [aux_sym__immediate_decimal_token4] = ACTIONS(4117), + [aux_sym__immediate_decimal_token5] = ACTIONS(4119), [aux_sym__val_number_decimal_token1] = ACTIONS(1560), - [aux_sym__val_number_decimal_token2] = ACTIONS(1572), - [aux_sym__val_number_decimal_token3] = ACTIONS(1572), - [aux_sym__val_number_decimal_token4] = ACTIONS(1572), - [aux_sym__val_number_token1] = ACTIONS(1572), - [aux_sym__val_number_token2] = ACTIONS(1572), - [aux_sym__val_number_token3] = ACTIONS(1572), + [aux_sym__val_number_decimal_token2] = ACTIONS(1560), + [aux_sym__val_number_decimal_token3] = ACTIONS(1560), + [aux_sym__val_number_decimal_token4] = ACTIONS(1560), + [aux_sym__val_number_token1] = ACTIONS(1570), + [aux_sym__val_number_token2] = ACTIONS(1570), + [aux_sym__val_number_token3] = ACTIONS(1570), [anon_sym_0b] = ACTIONS(1560), - [sym_filesize_unit] = ACTIONS(3984), - [sym_duration_unit] = ACTIONS(3986), [anon_sym_0o] = ACTIONS(1560), [anon_sym_0x] = ACTIONS(1560), - [sym_val_date] = ACTIONS(1572), - [anon_sym_DQUOTE] = ACTIONS(1572), - [sym__str_single_quotes] = ACTIONS(1572), - [sym__str_back_ticks] = ACTIONS(1572), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1572), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1572), + [sym_val_date] = ACTIONS(1570), + [anon_sym_DQUOTE] = ACTIONS(1570), + [sym__str_single_quotes] = ACTIONS(1570), + [sym__str_back_ticks] = ACTIONS(1570), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1570), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1570), [anon_sym_err_GT] = ACTIONS(1560), [anon_sym_out_GT] = ACTIONS(1560), [anon_sym_e_GT] = ACTIONS(1560), @@ -185035,1466 +187373,4390 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT] = ACTIONS(1560), [anon_sym_o_PLUSe_GT] = ACTIONS(1560), [anon_sym_e_PLUSo_GT] = ACTIONS(1560), - [anon_sym_err_GT_GT] = ACTIONS(1572), - [anon_sym_out_GT_GT] = ACTIONS(1572), - [anon_sym_e_GT_GT] = ACTIONS(1572), - [anon_sym_o_GT_GT] = ACTIONS(1572), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1572), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1572), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1572), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1572), + [anon_sym_err_GT_GT] = ACTIONS(1570), + [anon_sym_out_GT_GT] = ACTIONS(1570), + [anon_sym_e_GT_GT] = ACTIONS(1570), + [anon_sym_o_GT_GT] = ACTIONS(1570), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1570), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1570), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1570), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1570), [aux_sym_unquoted_token1] = ACTIONS(1560), - [aux_sym_unquoted_token2] = ACTIONS(3988), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1570), + }, + [1102] = { + [sym__match_pattern_expression] = STATE(3083), + [sym__match_pattern_value] = STATE(3079), + [sym__match_pattern_list] = STATE(3092), + [sym__match_pattern_rest] = STATE(7786), + [sym__match_pattern_record] = STATE(3125), + [sym_expr_parenthesized] = STATE(2897), + [sym_val_range] = STATE(3079), + [sym__val_range] = STATE(7928), + [sym_val_nothing] = STATE(3054), + [sym_val_bool] = STATE(3042), + [sym_val_variable] = STATE(2873), + [sym_val_number] = STATE(3054), + [sym__val_number_decimal] = STATE(2687), + [sym__val_number] = STATE(3094), + [sym_val_duration] = STATE(3054), + [sym_val_filesize] = STATE(3054), + [sym_val_binary] = STATE(3054), + [sym_val_string] = STATE(3054), + [sym__raw_str] = STATE(3122), + [sym__str_double_quotes] = STATE(3122), + [sym_val_table] = STATE(3054), + [sym__unquoted_in_list] = STATE(3083), + [sym__unquoted_anonymous_prefix] = STATE(7845), + [sym_comment] = STATE(1102), + [aux_sym__match_pattern_list_repeat1] = STATE(1198), + [anon_sym_true] = ACTIONS(3760), + [anon_sym_false] = ACTIONS(3760), + [anon_sym_null] = ACTIONS(3762), + [aux_sym_cmd_identifier_token38] = ACTIONS(3764), + [aux_sym_cmd_identifier_token39] = ACTIONS(3764), + [aux_sym_cmd_identifier_token40] = ACTIONS(3764), + [anon_sym_LBRACK] = ACTIONS(4121), + [anon_sym_RBRACK] = ACTIONS(4123), + [anon_sym_LPAREN] = ACTIONS(3772), + [anon_sym_DOLLAR] = ACTIONS(3774), + [anon_sym_LBRACE] = ACTIONS(3776), + [anon_sym_DOT_DOT] = ACTIONS(4125), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3780), + [anon_sym_DOT_DOT_LT] = ACTIONS(3780), + [aux_sym__val_number_decimal_token1] = ACTIONS(3782), + [aux_sym__val_number_decimal_token2] = ACTIONS(3784), + [aux_sym__val_number_decimal_token3] = ACTIONS(3786), + [aux_sym__val_number_decimal_token4] = ACTIONS(3788), + [aux_sym__val_number_token1] = ACTIONS(3790), + [aux_sym__val_number_token2] = ACTIONS(3790), + [aux_sym__val_number_token3] = ACTIONS(3790), + [anon_sym_0b] = ACTIONS(3792), + [anon_sym_0o] = ACTIONS(3794), + [anon_sym_0x] = ACTIONS(3794), + [sym_val_date] = ACTIONS(3796), + [anon_sym_DQUOTE] = ACTIONS(3798), + [sym__str_single_quotes] = ACTIONS(3800), + [sym__str_back_ticks] = ACTIONS(3800), + [anon_sym_err_GT] = ACTIONS(2627), + [anon_sym_out_GT] = ACTIONS(2627), + [anon_sym_e_GT] = ACTIONS(2627), + [anon_sym_o_GT] = ACTIONS(2627), + [anon_sym_err_PLUSout_GT] = ACTIONS(2627), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), + [anon_sym_o_PLUSe_GT] = ACTIONS(2627), + [anon_sym_e_PLUSo_GT] = ACTIONS(2627), + [anon_sym_err_GT_GT] = ACTIONS(2629), + [anon_sym_out_GT_GT] = ACTIONS(2629), + [anon_sym_e_GT_GT] = ACTIONS(2629), + [anon_sym_o_GT_GT] = ACTIONS(2629), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3802), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3804), + }, + [1103] = { + [sym_comment] = STATE(1103), + [anon_sym_true] = ACTIONS(1530), + [anon_sym_false] = ACTIONS(1530), + [anon_sym_null] = ACTIONS(1530), + [aux_sym_cmd_identifier_token38] = ACTIONS(1530), + [aux_sym_cmd_identifier_token39] = ACTIONS(1530), + [aux_sym_cmd_identifier_token40] = ACTIONS(1530), + [sym__newline] = ACTIONS(1530), + [anon_sym_SEMI] = ACTIONS(1530), + [anon_sym_PIPE] = ACTIONS(1530), + [anon_sym_err_GT_PIPE] = ACTIONS(1530), + [anon_sym_out_GT_PIPE] = ACTIONS(1530), + [anon_sym_e_GT_PIPE] = ACTIONS(1530), + [anon_sym_o_GT_PIPE] = ACTIONS(1530), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1530), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1530), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1530), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1530), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_LPAREN] = ACTIONS(1530), + [anon_sym_RPAREN] = ACTIONS(1530), + [anon_sym_DOLLAR] = ACTIONS(1528), + [anon_sym_DASH_DASH] = ACTIONS(1530), + [anon_sym_DASH] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(1530), + [anon_sym_RBRACE] = ACTIONS(1530), + [anon_sym_DOT_DOT] = ACTIONS(1528), + [anon_sym_DOT_DOT2] = ACTIONS(1528), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1528), + [anon_sym_DOT_DOT_LT] = ACTIONS(1528), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1530), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1530), + [aux_sym__immediate_decimal_token1] = ACTIONS(4127), + [aux_sym__immediate_decimal_token2] = ACTIONS(4129), + [aux_sym__val_number_decimal_token1] = ACTIONS(1528), + [aux_sym__val_number_decimal_token2] = ACTIONS(1530), + [aux_sym__val_number_decimal_token3] = ACTIONS(1530), + [aux_sym__val_number_decimal_token4] = ACTIONS(1530), + [aux_sym__val_number_token1] = ACTIONS(1530), + [aux_sym__val_number_token2] = ACTIONS(1530), + [aux_sym__val_number_token3] = ACTIONS(1530), + [anon_sym_0b] = ACTIONS(1528), + [sym_filesize_unit] = ACTIONS(1530), + [sym_duration_unit] = ACTIONS(1530), + [anon_sym_0o] = ACTIONS(1528), + [anon_sym_0x] = ACTIONS(1528), + [sym_val_date] = ACTIONS(1530), + [anon_sym_DQUOTE] = ACTIONS(1530), + [sym__str_single_quotes] = ACTIONS(1530), + [sym__str_back_ticks] = ACTIONS(1530), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1530), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1530), + [anon_sym_err_GT] = ACTIONS(1528), + [anon_sym_out_GT] = ACTIONS(1528), + [anon_sym_e_GT] = ACTIONS(1528), + [anon_sym_o_GT] = ACTIONS(1528), + [anon_sym_err_PLUSout_GT] = ACTIONS(1528), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), + [anon_sym_o_PLUSe_GT] = ACTIONS(1528), + [anon_sym_e_PLUSo_GT] = ACTIONS(1528), + [anon_sym_err_GT_GT] = ACTIONS(1530), + [anon_sym_out_GT_GT] = ACTIONS(1530), + [anon_sym_e_GT_GT] = ACTIONS(1530), + [anon_sym_o_GT_GT] = ACTIONS(1530), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1530), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1530), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1530), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1530), + [aux_sym_unquoted_token1] = ACTIONS(1528), + [aux_sym_unquoted_token2] = ACTIONS(1528), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1530), + }, + [1104] = { + [sym_comment] = STATE(1104), + [anon_sym_true] = ACTIONS(1598), + [anon_sym_false] = ACTIONS(1598), + [anon_sym_null] = ACTIONS(1598), + [aux_sym_cmd_identifier_token38] = ACTIONS(1598), + [aux_sym_cmd_identifier_token39] = ACTIONS(1598), + [aux_sym_cmd_identifier_token40] = ACTIONS(1598), + [sym__newline] = ACTIONS(1598), + [anon_sym_SEMI] = ACTIONS(1598), + [anon_sym_PIPE] = ACTIONS(1598), + [anon_sym_err_GT_PIPE] = ACTIONS(1598), + [anon_sym_out_GT_PIPE] = ACTIONS(1598), + [anon_sym_e_GT_PIPE] = ACTIONS(1598), + [anon_sym_o_GT_PIPE] = ACTIONS(1598), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1598), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1598), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1598), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(1596), + [anon_sym_RPAREN] = ACTIONS(1598), + [anon_sym_DOLLAR] = ACTIONS(1596), + [anon_sym_DASH_DASH] = ACTIONS(1598), + [anon_sym_DASH] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1598), + [anon_sym_DOT_DOT] = ACTIONS(1596), + [anon_sym_LPAREN2] = ACTIONS(1598), + [anon_sym_DOT_DOT2] = ACTIONS(1596), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1596), + [anon_sym_DOT_DOT_LT] = ACTIONS(1596), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1598), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1598), + [aux_sym__immediate_decimal_token2] = ACTIONS(4131), + [aux_sym__val_number_decimal_token1] = ACTIONS(1596), + [aux_sym__val_number_decimal_token2] = ACTIONS(1598), + [aux_sym__val_number_decimal_token3] = ACTIONS(1598), + [aux_sym__val_number_decimal_token4] = ACTIONS(1598), + [aux_sym__val_number_token1] = ACTIONS(1598), + [aux_sym__val_number_token2] = ACTIONS(1598), + [aux_sym__val_number_token3] = ACTIONS(1598), + [anon_sym_0b] = ACTIONS(1596), + [sym_filesize_unit] = ACTIONS(1598), + [sym_duration_unit] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1596), + [sym_val_date] = ACTIONS(1598), + [anon_sym_DQUOTE] = ACTIONS(1598), + [sym__str_single_quotes] = ACTIONS(1598), + [sym__str_back_ticks] = ACTIONS(1598), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1598), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1598), + [anon_sym_err_GT] = ACTIONS(1596), + [anon_sym_out_GT] = ACTIONS(1596), + [anon_sym_e_GT] = ACTIONS(1596), + [anon_sym_o_GT] = ACTIONS(1596), + [anon_sym_err_PLUSout_GT] = ACTIONS(1596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1596), + [anon_sym_o_PLUSe_GT] = ACTIONS(1596), + [anon_sym_e_PLUSo_GT] = ACTIONS(1596), + [anon_sym_err_GT_GT] = ACTIONS(1598), + [anon_sym_out_GT_GT] = ACTIONS(1598), + [anon_sym_e_GT_GT] = ACTIONS(1598), + [anon_sym_o_GT_GT] = ACTIONS(1598), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1598), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1598), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1598), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1598), + [aux_sym_unquoted_token1] = ACTIONS(1596), + [aux_sym_unquoted_token2] = ACTIONS(1596), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1598), + }, + [1105] = { + [sym__val_range] = STATE(7794), + [sym__value] = STATE(6013), + [sym_val_nothing] = STATE(4884), + [sym_val_bool] = STATE(5849), + [sym_val_variable] = STATE(4884), + [sym_val_number] = STATE(4884), + [sym__val_number_decimal] = STATE(5299), + [sym__val_number] = STATE(5078), + [sym_val_duration] = STATE(4884), + [sym_val_filesize] = STATE(4884), + [sym_val_binary] = STATE(4884), + [sym_val_string] = STATE(4884), + [sym__raw_str] = STATE(4434), + [sym__str_double_quotes] = STATE(4434), + [sym_val_interpolated] = STATE(4884), + [sym__inter_single_quotes] = STATE(4936), + [sym__inter_double_quotes] = STATE(4937), + [sym_val_list] = STATE(4884), + [sym_val_record] = STATE(4884), + [sym_val_table] = STATE(4884), + [sym_val_closure] = STATE(4884), + [sym_unquoted] = STATE(6128), + [sym__unquoted_anonymous_prefix] = STATE(7859), + [sym_comment] = STATE(1105), + [anon_sym_true] = ACTIONS(4010), + [anon_sym_false] = ACTIONS(4010), + [anon_sym_null] = ACTIONS(4012), + [aux_sym_cmd_identifier_token38] = ACTIONS(4133), + [aux_sym_cmd_identifier_token39] = ACTIONS(4133), + [aux_sym_cmd_identifier_token40] = ACTIONS(4133), + [anon_sym_LBRACK] = ACTIONS(4093), + [anon_sym_LPAREN] = ACTIONS(4018), + [anon_sym_DOLLAR] = ACTIONS(4095), + [anon_sym_LBRACE] = ACTIONS(4097), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4026), + [anon_sym_DOT_DOT_LT] = ACTIONS(4026), + [aux_sym__val_number_decimal_token1] = ACTIONS(4135), + [aux_sym__val_number_decimal_token2] = ACTIONS(4137), + [aux_sym__val_number_decimal_token3] = ACTIONS(4139), + [aux_sym__val_number_decimal_token4] = ACTIONS(4141), + [aux_sym__val_number_token1] = ACTIONS(3584), + [aux_sym__val_number_token2] = ACTIONS(3584), + [aux_sym__val_number_token3] = ACTIONS(3584), + [anon_sym_0b] = ACTIONS(3586), + [anon_sym_0o] = ACTIONS(3588), + [anon_sym_0x] = ACTIONS(3588), + [sym_val_date] = ACTIONS(4036), + [anon_sym_DQUOTE] = ACTIONS(3842), + [sym__str_single_quotes] = ACTIONS(3844), + [sym__str_back_ticks] = ACTIONS(3844), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3596), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3598), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3846), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3848), + }, + [1106] = { + [sym__val_range] = STATE(7794), + [sym__value] = STATE(6062), + [sym_val_nothing] = STATE(4884), + [sym_val_bool] = STATE(5849), + [sym_val_variable] = STATE(4884), + [sym_val_number] = STATE(4884), + [sym__val_number_decimal] = STATE(5354), + [sym__val_number] = STATE(3529), + [sym_val_duration] = STATE(4884), + [sym_val_filesize] = STATE(4884), + [sym_val_binary] = STATE(4884), + [sym_val_string] = STATE(4884), + [sym__raw_str] = STATE(4434), + [sym__str_double_quotes] = STATE(4434), + [sym_val_interpolated] = STATE(4884), + [sym__inter_single_quotes] = STATE(4936), + [sym__inter_double_quotes] = STATE(4937), + [sym_val_list] = STATE(4884), + [sym_val_record] = STATE(4884), + [sym_val_table] = STATE(4884), + [sym_val_closure] = STATE(4884), + [sym_unquoted] = STATE(6089), + [sym__unquoted_anonymous_prefix] = STATE(7859), + [sym_comment] = STATE(1106), + [anon_sym_true] = ACTIONS(4010), + [anon_sym_false] = ACTIONS(4010), + [anon_sym_null] = ACTIONS(4012), + [aux_sym_cmd_identifier_token38] = ACTIONS(4014), + [aux_sym_cmd_identifier_token39] = ACTIONS(4014), + [aux_sym_cmd_identifier_token40] = ACTIONS(4014), + [anon_sym_LBRACK] = ACTIONS(4016), + [anon_sym_LPAREN] = ACTIONS(4018), + [anon_sym_DOLLAR] = ACTIONS(4020), + [anon_sym_LBRACE] = ACTIONS(4022), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4026), + [anon_sym_DOT_DOT_LT] = ACTIONS(4026), + [aux_sym__val_number_decimal_token1] = ACTIONS(4028), + [aux_sym__val_number_decimal_token2] = ACTIONS(4030), + [aux_sym__val_number_decimal_token3] = ACTIONS(4032), + [aux_sym__val_number_decimal_token4] = ACTIONS(4034), + [aux_sym__val_number_token1] = ACTIONS(3486), + [aux_sym__val_number_token2] = ACTIONS(3486), + [aux_sym__val_number_token3] = ACTIONS(3486), + [anon_sym_0b] = ACTIONS(3586), + [anon_sym_0o] = ACTIONS(3588), + [anon_sym_0x] = ACTIONS(3588), + [sym_val_date] = ACTIONS(4036), + [anon_sym_DQUOTE] = ACTIONS(3842), + [sym__str_single_quotes] = ACTIONS(3844), + [sym__str_back_ticks] = ACTIONS(3844), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3596), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3598), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3846), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3848), }, [1107] = { - [sym_cell_path] = STATE(1256), - [sym_path] = STATE(1246), + [sym__val_range] = STATE(7794), + [sym__value] = STATE(6044), + [sym_val_nothing] = STATE(4884), + [sym_val_bool] = STATE(7202), + [sym_val_variable] = STATE(4884), + [sym_val_number] = STATE(4884), + [sym__val_number_decimal] = STATE(5569), + [sym__val_number] = STATE(5078), + [sym_val_duration] = STATE(4884), + [sym_val_filesize] = STATE(4884), + [sym_val_binary] = STATE(4884), + [sym_val_string] = STATE(4884), + [sym__raw_str] = STATE(4434), + [sym__str_double_quotes] = STATE(4434), + [sym_val_interpolated] = STATE(4884), + [sym__inter_single_quotes] = STATE(4936), + [sym__inter_double_quotes] = STATE(4937), + [sym_val_list] = STATE(4884), + [sym_val_record] = STATE(4884), + [sym_val_table] = STATE(4884), + [sym_val_closure] = STATE(4884), + [sym_unquoted] = STATE(6070), + [sym__unquoted_anonymous_prefix] = STATE(7859), [sym_comment] = STATE(1107), - [aux_sym_cell_path_repeat1] = STATE(1189), - [ts_builtin_sym_end] = ACTIONS(1007), - [anon_sym_EQ] = ACTIONS(1005), - [anon_sym_PLUS_EQ] = ACTIONS(1007), - [anon_sym_DASH_EQ] = ACTIONS(1007), - [anon_sym_STAR_EQ] = ACTIONS(1007), - [anon_sym_SLASH_EQ] = ACTIONS(1007), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1007), - [sym__newline] = ACTIONS(1007), - [anon_sym_SEMI] = ACTIONS(1007), - [anon_sym_PIPE] = ACTIONS(1007), - [anon_sym_err_GT_PIPE] = ACTIONS(1007), - [anon_sym_out_GT_PIPE] = ACTIONS(1007), - [anon_sym_e_GT_PIPE] = ACTIONS(1007), - [anon_sym_o_GT_PIPE] = ACTIONS(1007), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1007), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1007), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1007), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1007), - [aux_sym_expr_binary_token1] = ACTIONS(1007), - [aux_sym_expr_binary_token2] = ACTIONS(1007), - [aux_sym_expr_binary_token3] = ACTIONS(1007), - [aux_sym_expr_binary_token4] = ACTIONS(1007), - [aux_sym_expr_binary_token5] = ACTIONS(1007), - [aux_sym_expr_binary_token6] = ACTIONS(1007), - [aux_sym_expr_binary_token7] = ACTIONS(1007), - [aux_sym_expr_binary_token8] = ACTIONS(1007), - [aux_sym_expr_binary_token9] = ACTIONS(1007), - [aux_sym_expr_binary_token10] = ACTIONS(1007), - [aux_sym_expr_binary_token11] = ACTIONS(1007), - [aux_sym_expr_binary_token12] = ACTIONS(1007), - [aux_sym_expr_binary_token13] = ACTIONS(1007), - [aux_sym_expr_binary_token14] = ACTIONS(1007), - [aux_sym_expr_binary_token15] = ACTIONS(1007), - [aux_sym_expr_binary_token16] = ACTIONS(1007), - [aux_sym_expr_binary_token17] = ACTIONS(1007), - [aux_sym_expr_binary_token18] = ACTIONS(1007), - [aux_sym_expr_binary_token19] = ACTIONS(1007), - [aux_sym_expr_binary_token20] = ACTIONS(1007), - [aux_sym_expr_binary_token21] = ACTIONS(1007), - [aux_sym_expr_binary_token22] = ACTIONS(1007), - [aux_sym_expr_binary_token23] = ACTIONS(1007), - [aux_sym_expr_binary_token24] = ACTIONS(1007), - [aux_sym_expr_binary_token25] = ACTIONS(1007), - [aux_sym_expr_binary_token26] = ACTIONS(1007), - [aux_sym_expr_binary_token27] = ACTIONS(1007), - [aux_sym_expr_binary_token28] = ACTIONS(1007), - [anon_sym_DOT_DOT2] = ACTIONS(1005), - [anon_sym_DOT] = ACTIONS(3990), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1007), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1007), - [anon_sym_err_GT] = ACTIONS(1005), - [anon_sym_out_GT] = ACTIONS(1005), - [anon_sym_e_GT] = ACTIONS(1005), - [anon_sym_o_GT] = ACTIONS(1005), - [anon_sym_err_PLUSout_GT] = ACTIONS(1005), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1005), - [anon_sym_o_PLUSe_GT] = ACTIONS(1005), - [anon_sym_e_PLUSo_GT] = ACTIONS(1005), - [anon_sym_err_GT_GT] = ACTIONS(1007), - [anon_sym_out_GT_GT] = ACTIONS(1007), - [anon_sym_e_GT_GT] = ACTIONS(1007), - [anon_sym_o_GT_GT] = ACTIONS(1007), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1007), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1007), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1007), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1007), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(4087), + [anon_sym_false] = ACTIONS(4087), + [anon_sym_null] = ACTIONS(4089), + [aux_sym_cmd_identifier_token38] = ACTIONS(4091), + [aux_sym_cmd_identifier_token39] = ACTIONS(4091), + [aux_sym_cmd_identifier_token40] = ACTIONS(4091), + [anon_sym_LBRACK] = ACTIONS(4093), + [anon_sym_LPAREN] = ACTIONS(4018), + [anon_sym_DOLLAR] = ACTIONS(4095), + [anon_sym_LBRACE] = ACTIONS(4097), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4026), + [anon_sym_DOT_DOT_LT] = ACTIONS(4026), + [aux_sym__val_number_decimal_token1] = ACTIONS(4099), + [aux_sym__val_number_decimal_token2] = ACTIONS(4101), + [aux_sym__val_number_decimal_token3] = ACTIONS(4103), + [aux_sym__val_number_decimal_token4] = ACTIONS(4105), + [aux_sym__val_number_token1] = ACTIONS(3584), + [aux_sym__val_number_token2] = ACTIONS(3584), + [aux_sym__val_number_token3] = ACTIONS(3584), + [anon_sym_0b] = ACTIONS(3586), + [anon_sym_0o] = ACTIONS(3588), + [anon_sym_0x] = ACTIONS(3588), + [sym_val_date] = ACTIONS(4107), + [anon_sym_DQUOTE] = ACTIONS(3842), + [sym__str_single_quotes] = ACTIONS(3844), + [sym__str_back_ticks] = ACTIONS(3844), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3596), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3598), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3846), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3848), }, [1108] = { - [sym__expr_parenthesized_immediate] = STATE(1580), - [sym__immediate_decimal] = STATE(1581), - [sym_val_variable] = STATE(1580), + [sym_cell_path] = STATE(1294), + [sym_path] = STATE(1247), [sym_comment] = STATE(1108), - [anon_sym_true] = ACTIONS(1584), - [anon_sym_false] = ACTIONS(1584), - [anon_sym_null] = ACTIONS(1584), - [aux_sym_cmd_identifier_token38] = ACTIONS(1584), - [aux_sym_cmd_identifier_token39] = ACTIONS(1584), - [aux_sym_cmd_identifier_token40] = ACTIONS(1584), - [sym__newline] = ACTIONS(1584), - [anon_sym_SEMI] = ACTIONS(1584), - [anon_sym_PIPE] = ACTIONS(1584), - [anon_sym_err_GT_PIPE] = ACTIONS(1584), - [anon_sym_out_GT_PIPE] = ACTIONS(1584), - [anon_sym_e_GT_PIPE] = ACTIONS(1584), - [anon_sym_o_GT_PIPE] = ACTIONS(1584), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1584), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1584), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1584), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(1576), - [anon_sym_RPAREN] = ACTIONS(1584), - [anon_sym_DOLLAR] = ACTIONS(3881), - [anon_sym_DASH_DASH] = ACTIONS(1584), - [anon_sym_DASH] = ACTIONS(1576), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1584), - [anon_sym_DOT_DOT] = ACTIONS(1576), - [anon_sym_LPAREN2] = ACTIONS(3883), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1584), - [anon_sym_DOT_DOT_LT] = ACTIONS(1584), - [aux_sym__immediate_decimal_token1] = ACTIONS(3935), - [aux_sym__immediate_decimal_token3] = ACTIONS(3937), - [aux_sym__immediate_decimal_token4] = ACTIONS(3939), - [aux_sym__immediate_decimal_token5] = ACTIONS(3941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1576), - [aux_sym__val_number_decimal_token2] = ACTIONS(1576), - [aux_sym__val_number_decimal_token3] = ACTIONS(1576), - [aux_sym__val_number_decimal_token4] = ACTIONS(1576), - [aux_sym__val_number_token1] = ACTIONS(1584), - [aux_sym__val_number_token2] = ACTIONS(1584), - [aux_sym__val_number_token3] = ACTIONS(1584), - [anon_sym_0b] = ACTIONS(1576), - [anon_sym_0o] = ACTIONS(1576), - [anon_sym_0x] = ACTIONS(1576), - [sym_val_date] = ACTIONS(1584), - [anon_sym_DQUOTE] = ACTIONS(1584), - [sym__str_single_quotes] = ACTIONS(1584), - [sym__str_back_ticks] = ACTIONS(1584), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1584), - [anon_sym_err_GT] = ACTIONS(1576), - [anon_sym_out_GT] = ACTIONS(1576), - [anon_sym_e_GT] = ACTIONS(1576), - [anon_sym_o_GT] = ACTIONS(1576), - [anon_sym_err_PLUSout_GT] = ACTIONS(1576), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1576), - [anon_sym_o_PLUSe_GT] = ACTIONS(1576), - [anon_sym_e_PLUSo_GT] = ACTIONS(1576), - [anon_sym_err_GT_GT] = ACTIONS(1584), - [anon_sym_out_GT_GT] = ACTIONS(1584), - [anon_sym_e_GT_GT] = ACTIONS(1584), - [anon_sym_o_GT_GT] = ACTIONS(1584), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1584), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1584), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1584), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1584), - [aux_sym_unquoted_token1] = ACTIONS(1576), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(1202), + [anon_sym_EQ] = ACTIONS(1021), + [anon_sym_PLUS_EQ] = ACTIONS(1023), + [anon_sym_DASH_EQ] = ACTIONS(1023), + [anon_sym_STAR_EQ] = ACTIONS(1023), + [anon_sym_SLASH_EQ] = ACTIONS(1023), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1023), + [sym__newline] = ACTIONS(1023), + [anon_sym_SEMI] = ACTIONS(1023), + [anon_sym_PIPE] = ACTIONS(1023), + [anon_sym_err_GT_PIPE] = ACTIONS(1023), + [anon_sym_out_GT_PIPE] = ACTIONS(1023), + [anon_sym_e_GT_PIPE] = ACTIONS(1023), + [anon_sym_o_GT_PIPE] = ACTIONS(1023), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1023), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1023), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1023), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1023), + [anon_sym_RPAREN] = ACTIONS(1023), + [anon_sym_RBRACE] = ACTIONS(1023), + [aux_sym_expr_binary_token1] = ACTIONS(1023), + [aux_sym_expr_binary_token2] = ACTIONS(1023), + [aux_sym_expr_binary_token3] = ACTIONS(1023), + [aux_sym_expr_binary_token4] = ACTIONS(1023), + [aux_sym_expr_binary_token5] = ACTIONS(1023), + [aux_sym_expr_binary_token6] = ACTIONS(1023), + [aux_sym_expr_binary_token7] = ACTIONS(1023), + [aux_sym_expr_binary_token8] = ACTIONS(1023), + [aux_sym_expr_binary_token9] = ACTIONS(1023), + [aux_sym_expr_binary_token10] = ACTIONS(1023), + [aux_sym_expr_binary_token11] = ACTIONS(1023), + [aux_sym_expr_binary_token12] = ACTIONS(1023), + [aux_sym_expr_binary_token13] = ACTIONS(1023), + [aux_sym_expr_binary_token14] = ACTIONS(1023), + [aux_sym_expr_binary_token15] = ACTIONS(1023), + [aux_sym_expr_binary_token16] = ACTIONS(1023), + [aux_sym_expr_binary_token17] = ACTIONS(1023), + [aux_sym_expr_binary_token18] = ACTIONS(1023), + [aux_sym_expr_binary_token19] = ACTIONS(1023), + [aux_sym_expr_binary_token20] = ACTIONS(1023), + [aux_sym_expr_binary_token21] = ACTIONS(1023), + [aux_sym_expr_binary_token22] = ACTIONS(1023), + [aux_sym_expr_binary_token23] = ACTIONS(1023), + [aux_sym_expr_binary_token24] = ACTIONS(1023), + [aux_sym_expr_binary_token25] = ACTIONS(1023), + [aux_sym_expr_binary_token26] = ACTIONS(1023), + [aux_sym_expr_binary_token27] = ACTIONS(1023), + [aux_sym_expr_binary_token28] = ACTIONS(1023), + [anon_sym_DOT_DOT2] = ACTIONS(1021), + [anon_sym_DOT] = ACTIONS(4143), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1023), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1023), + [anon_sym_err_GT] = ACTIONS(1021), + [anon_sym_out_GT] = ACTIONS(1021), + [anon_sym_e_GT] = ACTIONS(1021), + [anon_sym_o_GT] = ACTIONS(1021), + [anon_sym_err_PLUSout_GT] = ACTIONS(1021), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1021), + [anon_sym_o_PLUSe_GT] = ACTIONS(1021), + [anon_sym_e_PLUSo_GT] = ACTIONS(1021), + [anon_sym_err_GT_GT] = ACTIONS(1023), + [anon_sym_out_GT_GT] = ACTIONS(1023), + [anon_sym_e_GT_GT] = ACTIONS(1023), + [anon_sym_o_GT_GT] = ACTIONS(1023), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1023), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1023), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1023), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1023), + [anon_sym_POUND] = ACTIONS(249), }, [1109] = { - [sym__expr_parenthesized_immediate] = STATE(1785), - [sym__immediate_decimal] = STATE(1787), - [sym_val_variable] = STATE(1785), + [sym__val_range] = STATE(7794), + [sym__value] = STATE(5997), + [sym_val_nothing] = STATE(4884), + [sym_val_bool] = STATE(5849), + [sym_val_variable] = STATE(4884), + [sym_val_number] = STATE(4884), + [sym__val_number_decimal] = STATE(5299), + [sym__val_number] = STATE(5078), + [sym_val_duration] = STATE(4884), + [sym_val_filesize] = STATE(4884), + [sym_val_binary] = STATE(4884), + [sym_val_string] = STATE(4884), + [sym__raw_str] = STATE(4434), + [sym__str_double_quotes] = STATE(4434), + [sym_val_interpolated] = STATE(4884), + [sym__inter_single_quotes] = STATE(4936), + [sym__inter_double_quotes] = STATE(4937), + [sym_val_list] = STATE(4884), + [sym_val_record] = STATE(4884), + [sym_val_table] = STATE(4884), + [sym_val_closure] = STATE(4884), + [sym_unquoted] = STATE(6052), + [sym__unquoted_anonymous_prefix] = STATE(7859), [sym_comment] = STATE(1109), - [anon_sym_true] = ACTIONS(1506), - [anon_sym_false] = ACTIONS(1506), - [anon_sym_null] = ACTIONS(1506), - [aux_sym_cmd_identifier_token38] = ACTIONS(1506), - [aux_sym_cmd_identifier_token39] = ACTIONS(1506), - [aux_sym_cmd_identifier_token40] = ACTIONS(1506), - [sym__newline] = ACTIONS(1506), - [anon_sym_SEMI] = ACTIONS(1506), - [anon_sym_PIPE] = ACTIONS(1506), - [anon_sym_err_GT_PIPE] = ACTIONS(1506), - [anon_sym_out_GT_PIPE] = ACTIONS(1506), - [anon_sym_e_GT_PIPE] = ACTIONS(1506), - [anon_sym_o_GT_PIPE] = ACTIONS(1506), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1506), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1506), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1506), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(1496), - [anon_sym_RPAREN] = ACTIONS(1506), - [anon_sym_DOLLAR] = ACTIONS(3881), - [anon_sym_DASH_DASH] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1496), - [anon_sym_LBRACE] = ACTIONS(1506), - [anon_sym_RBRACE] = ACTIONS(1506), - [anon_sym_DOT_DOT] = ACTIONS(1496), - [anon_sym_LPAREN2] = ACTIONS(3883), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1506), - [anon_sym_DOT_DOT_LT] = ACTIONS(1506), - [aux_sym__immediate_decimal_token1] = ACTIONS(3935), - [aux_sym__immediate_decimal_token3] = ACTIONS(3937), - [aux_sym__immediate_decimal_token4] = ACTIONS(3939), - [aux_sym__immediate_decimal_token5] = ACTIONS(3941), - [aux_sym__val_number_decimal_token1] = ACTIONS(1496), - [aux_sym__val_number_decimal_token2] = ACTIONS(1496), - [aux_sym__val_number_decimal_token3] = ACTIONS(1496), - [aux_sym__val_number_decimal_token4] = ACTIONS(1496), - [aux_sym__val_number_token1] = ACTIONS(1506), - [aux_sym__val_number_token2] = ACTIONS(1506), - [aux_sym__val_number_token3] = ACTIONS(1506), - [anon_sym_0b] = ACTIONS(1496), - [anon_sym_0o] = ACTIONS(1496), - [anon_sym_0x] = ACTIONS(1496), - [sym_val_date] = ACTIONS(1506), - [anon_sym_DQUOTE] = ACTIONS(1506), - [sym__str_single_quotes] = ACTIONS(1506), - [sym__str_back_ticks] = ACTIONS(1506), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1506), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1506), - [anon_sym_err_GT] = ACTIONS(1496), - [anon_sym_out_GT] = ACTIONS(1496), - [anon_sym_e_GT] = ACTIONS(1496), - [anon_sym_o_GT] = ACTIONS(1496), - [anon_sym_err_PLUSout_GT] = ACTIONS(1496), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1496), - [anon_sym_o_PLUSe_GT] = ACTIONS(1496), - [anon_sym_e_PLUSo_GT] = ACTIONS(1496), - [anon_sym_err_GT_GT] = ACTIONS(1506), - [anon_sym_out_GT_GT] = ACTIONS(1506), - [anon_sym_e_GT_GT] = ACTIONS(1506), - [anon_sym_o_GT_GT] = ACTIONS(1506), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1506), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1506), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1506), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1506), - [aux_sym_unquoted_token1] = ACTIONS(1496), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(4010), + [anon_sym_false] = ACTIONS(4010), + [anon_sym_null] = ACTIONS(4012), + [aux_sym_cmd_identifier_token38] = ACTIONS(4133), + [aux_sym_cmd_identifier_token39] = ACTIONS(4133), + [aux_sym_cmd_identifier_token40] = ACTIONS(4133), + [anon_sym_LBRACK] = ACTIONS(4093), + [anon_sym_LPAREN] = ACTIONS(4018), + [anon_sym_DOLLAR] = ACTIONS(4095), + [anon_sym_LBRACE] = ACTIONS(4097), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4026), + [anon_sym_DOT_DOT_LT] = ACTIONS(4026), + [aux_sym__val_number_decimal_token1] = ACTIONS(4135), + [aux_sym__val_number_decimal_token2] = ACTIONS(4137), + [aux_sym__val_number_decimal_token3] = ACTIONS(4139), + [aux_sym__val_number_decimal_token4] = ACTIONS(4141), + [aux_sym__val_number_token1] = ACTIONS(3584), + [aux_sym__val_number_token2] = ACTIONS(3584), + [aux_sym__val_number_token3] = ACTIONS(3584), + [anon_sym_0b] = ACTIONS(3586), + [anon_sym_0o] = ACTIONS(3588), + [anon_sym_0x] = ACTIONS(3588), + [sym_val_date] = ACTIONS(4036), + [anon_sym_DQUOTE] = ACTIONS(3842), + [sym__str_single_quotes] = ACTIONS(3844), + [sym__str_back_ticks] = ACTIONS(3844), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3596), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3598), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3846), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3848), }, [1110] = { - [sym_path] = STATE(1219), + [sym__val_range] = STATE(7632), + [sym__value] = STATE(5510), + [sym_val_nothing] = STATE(4047), + [sym_val_bool] = STATE(7459), + [sym_val_variable] = STATE(4047), + [sym_val_number] = STATE(4047), + [sym__val_number_decimal] = STATE(5689), + [sym__val_number] = STATE(3529), + [sym_val_duration] = STATE(4047), + [sym_val_filesize] = STATE(4047), + [sym_val_binary] = STATE(4047), + [sym_val_string] = STATE(4047), + [sym__raw_str] = STATE(2932), + [sym__str_double_quotes] = STATE(2932), + [sym_val_interpolated] = STATE(4047), + [sym__inter_single_quotes] = STATE(4101), + [sym__inter_double_quotes] = STATE(4102), + [sym_val_list] = STATE(4047), + [sym_val_record] = STATE(4047), + [sym_val_table] = STATE(4047), + [sym_val_closure] = STATE(4047), + [sym_unquoted] = STATE(5532), + [sym__unquoted_anonymous_prefix] = STATE(8071), [sym_comment] = STATE(1110), - [aux_sym_cell_path_repeat1] = STATE(1111), - [anon_sym_EQ] = ACTIONS(1011), - [anon_sym_PLUS_EQ] = ACTIONS(1013), - [anon_sym_DASH_EQ] = ACTIONS(1013), - [anon_sym_STAR_EQ] = ACTIONS(1013), - [anon_sym_SLASH_EQ] = ACTIONS(1013), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1013), - [sym__newline] = ACTIONS(1013), - [anon_sym_SEMI] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1013), - [anon_sym_err_GT_PIPE] = ACTIONS(1013), - [anon_sym_out_GT_PIPE] = ACTIONS(1013), - [anon_sym_e_GT_PIPE] = ACTIONS(1013), - [anon_sym_o_GT_PIPE] = ACTIONS(1013), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1013), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1013), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1013), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1013), - [anon_sym_RPAREN] = ACTIONS(1013), - [anon_sym_RBRACE] = ACTIONS(1013), - [aux_sym_expr_binary_token1] = ACTIONS(1013), - [aux_sym_expr_binary_token2] = ACTIONS(1013), - [aux_sym_expr_binary_token3] = ACTIONS(1013), - [aux_sym_expr_binary_token4] = ACTIONS(1013), - [aux_sym_expr_binary_token5] = ACTIONS(1013), - [aux_sym_expr_binary_token6] = ACTIONS(1013), - [aux_sym_expr_binary_token7] = ACTIONS(1013), - [aux_sym_expr_binary_token8] = ACTIONS(1013), - [aux_sym_expr_binary_token9] = ACTIONS(1013), - [aux_sym_expr_binary_token10] = ACTIONS(1013), - [aux_sym_expr_binary_token11] = ACTIONS(1013), - [aux_sym_expr_binary_token12] = ACTIONS(1013), - [aux_sym_expr_binary_token13] = ACTIONS(1013), - [aux_sym_expr_binary_token14] = ACTIONS(1013), - [aux_sym_expr_binary_token15] = ACTIONS(1013), - [aux_sym_expr_binary_token16] = ACTIONS(1013), - [aux_sym_expr_binary_token17] = ACTIONS(1013), - [aux_sym_expr_binary_token18] = ACTIONS(1013), - [aux_sym_expr_binary_token19] = ACTIONS(1013), - [aux_sym_expr_binary_token20] = ACTIONS(1013), - [aux_sym_expr_binary_token21] = ACTIONS(1013), - [aux_sym_expr_binary_token22] = ACTIONS(1013), - [aux_sym_expr_binary_token23] = ACTIONS(1013), - [aux_sym_expr_binary_token24] = ACTIONS(1013), - [aux_sym_expr_binary_token25] = ACTIONS(1013), - [aux_sym_expr_binary_token26] = ACTIONS(1013), - [aux_sym_expr_binary_token27] = ACTIONS(1013), - [aux_sym_expr_binary_token28] = ACTIONS(1013), - [anon_sym_DOT_DOT2] = ACTIONS(1011), - [anon_sym_DOT] = ACTIONS(3905), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1013), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1013), - [anon_sym_err_GT] = ACTIONS(1011), - [anon_sym_out_GT] = ACTIONS(1011), - [anon_sym_e_GT] = ACTIONS(1011), - [anon_sym_o_GT] = ACTIONS(1011), - [anon_sym_err_PLUSout_GT] = ACTIONS(1011), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1011), - [anon_sym_o_PLUSe_GT] = ACTIONS(1011), - [anon_sym_e_PLUSo_GT] = ACTIONS(1011), - [anon_sym_err_GT_GT] = ACTIONS(1013), - [anon_sym_out_GT_GT] = ACTIONS(1013), - [anon_sym_e_GT_GT] = ACTIONS(1013), - [anon_sym_o_GT_GT] = ACTIONS(1013), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1013), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1013), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1013), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1013), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(4145), + [anon_sym_false] = ACTIONS(4145), + [anon_sym_null] = ACTIONS(4147), + [aux_sym_cmd_identifier_token38] = ACTIONS(4149), + [aux_sym_cmd_identifier_token39] = ACTIONS(4149), + [aux_sym_cmd_identifier_token40] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(4151), + [anon_sym_DOLLAR] = ACTIONS(4153), + [anon_sym_LBRACE] = ACTIONS(3470), + [anon_sym_DOT_DOT] = ACTIONS(4155), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4157), + [anon_sym_DOT_DOT_LT] = ACTIONS(4157), + [aux_sym__val_number_decimal_token1] = ACTIONS(4159), + [aux_sym__val_number_decimal_token2] = ACTIONS(4161), + [aux_sym__val_number_decimal_token3] = ACTIONS(4163), + [aux_sym__val_number_decimal_token4] = ACTIONS(4165), + [aux_sym__val_number_token1] = ACTIONS(3486), + [aux_sym__val_number_token2] = ACTIONS(3486), + [aux_sym__val_number_token3] = ACTIONS(3486), + [anon_sym_0b] = ACTIONS(3488), + [anon_sym_0o] = ACTIONS(3490), + [anon_sym_0x] = ACTIONS(3490), + [sym_val_date] = ACTIONS(4167), + [anon_sym_DQUOTE] = ACTIONS(3494), + [sym__str_single_quotes] = ACTIONS(3496), + [sym__str_back_ticks] = ACTIONS(3496), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3498), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3500), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3502), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3504), }, [1111] = { - [sym_path] = STATE(1219), + [sym__val_range] = STATE(7794), + [sym__value] = STATE(6044), + [sym_val_nothing] = STATE(4884), + [sym_val_bool] = STATE(5849), + [sym_val_variable] = STATE(4884), + [sym_val_number] = STATE(4884), + [sym__val_number_decimal] = STATE(5299), + [sym__val_number] = STATE(5078), + [sym_val_duration] = STATE(4884), + [sym_val_filesize] = STATE(4884), + [sym_val_binary] = STATE(4884), + [sym_val_string] = STATE(4884), + [sym__raw_str] = STATE(4434), + [sym__str_double_quotes] = STATE(4434), + [sym_val_interpolated] = STATE(4884), + [sym__inter_single_quotes] = STATE(4936), + [sym__inter_double_quotes] = STATE(4937), + [sym_val_list] = STATE(4884), + [sym_val_record] = STATE(4884), + [sym_val_table] = STATE(4884), + [sym_val_closure] = STATE(4884), + [sym_unquoted] = STATE(6070), + [sym__unquoted_anonymous_prefix] = STATE(7859), [sym_comment] = STATE(1111), - [aux_sym_cell_path_repeat1] = STATE(1111), - [anon_sym_EQ] = ACTIONS(1015), - [anon_sym_PLUS_EQ] = ACTIONS(1017), - [anon_sym_DASH_EQ] = ACTIONS(1017), - [anon_sym_STAR_EQ] = ACTIONS(1017), - [anon_sym_SLASH_EQ] = ACTIONS(1017), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1017), - [sym__newline] = ACTIONS(1017), - [anon_sym_SEMI] = ACTIONS(1017), - [anon_sym_PIPE] = ACTIONS(1017), - [anon_sym_err_GT_PIPE] = ACTIONS(1017), - [anon_sym_out_GT_PIPE] = ACTIONS(1017), - [anon_sym_e_GT_PIPE] = ACTIONS(1017), - [anon_sym_o_GT_PIPE] = ACTIONS(1017), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1017), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1017), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1017), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1017), - [anon_sym_RPAREN] = ACTIONS(1017), - [anon_sym_RBRACE] = ACTIONS(1017), - [aux_sym_expr_binary_token1] = ACTIONS(1017), - [aux_sym_expr_binary_token2] = ACTIONS(1017), - [aux_sym_expr_binary_token3] = ACTIONS(1017), - [aux_sym_expr_binary_token4] = ACTIONS(1017), - [aux_sym_expr_binary_token5] = ACTIONS(1017), - [aux_sym_expr_binary_token6] = ACTIONS(1017), - [aux_sym_expr_binary_token7] = ACTIONS(1017), - [aux_sym_expr_binary_token8] = ACTIONS(1017), - [aux_sym_expr_binary_token9] = ACTIONS(1017), - [aux_sym_expr_binary_token10] = ACTIONS(1017), - [aux_sym_expr_binary_token11] = ACTIONS(1017), - [aux_sym_expr_binary_token12] = ACTIONS(1017), - [aux_sym_expr_binary_token13] = ACTIONS(1017), - [aux_sym_expr_binary_token14] = ACTIONS(1017), - [aux_sym_expr_binary_token15] = ACTIONS(1017), - [aux_sym_expr_binary_token16] = ACTIONS(1017), - [aux_sym_expr_binary_token17] = ACTIONS(1017), - [aux_sym_expr_binary_token18] = ACTIONS(1017), - [aux_sym_expr_binary_token19] = ACTIONS(1017), - [aux_sym_expr_binary_token20] = ACTIONS(1017), - [aux_sym_expr_binary_token21] = ACTIONS(1017), - [aux_sym_expr_binary_token22] = ACTIONS(1017), - [aux_sym_expr_binary_token23] = ACTIONS(1017), - [aux_sym_expr_binary_token24] = ACTIONS(1017), - [aux_sym_expr_binary_token25] = ACTIONS(1017), - [aux_sym_expr_binary_token26] = ACTIONS(1017), - [aux_sym_expr_binary_token27] = ACTIONS(1017), - [aux_sym_expr_binary_token28] = ACTIONS(1017), - [anon_sym_DOT_DOT2] = ACTIONS(1015), - [anon_sym_DOT] = ACTIONS(3992), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1017), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1017), - [anon_sym_err_GT] = ACTIONS(1015), - [anon_sym_out_GT] = ACTIONS(1015), - [anon_sym_e_GT] = ACTIONS(1015), - [anon_sym_o_GT] = ACTIONS(1015), - [anon_sym_err_PLUSout_GT] = ACTIONS(1015), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1015), - [anon_sym_o_PLUSe_GT] = ACTIONS(1015), - [anon_sym_e_PLUSo_GT] = ACTIONS(1015), - [anon_sym_err_GT_GT] = ACTIONS(1017), - [anon_sym_out_GT_GT] = ACTIONS(1017), - [anon_sym_e_GT_GT] = ACTIONS(1017), - [anon_sym_o_GT_GT] = ACTIONS(1017), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1017), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1017), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1017), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1017), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(4010), + [anon_sym_false] = ACTIONS(4010), + [anon_sym_null] = ACTIONS(4012), + [aux_sym_cmd_identifier_token38] = ACTIONS(4133), + [aux_sym_cmd_identifier_token39] = ACTIONS(4133), + [aux_sym_cmd_identifier_token40] = ACTIONS(4133), + [anon_sym_LBRACK] = ACTIONS(4093), + [anon_sym_LPAREN] = ACTIONS(4018), + [anon_sym_DOLLAR] = ACTIONS(4095), + [anon_sym_LBRACE] = ACTIONS(4097), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4026), + [anon_sym_DOT_DOT_LT] = ACTIONS(4026), + [aux_sym__val_number_decimal_token1] = ACTIONS(4135), + [aux_sym__val_number_decimal_token2] = ACTIONS(4137), + [aux_sym__val_number_decimal_token3] = ACTIONS(4139), + [aux_sym__val_number_decimal_token4] = ACTIONS(4141), + [aux_sym__val_number_token1] = ACTIONS(3584), + [aux_sym__val_number_token2] = ACTIONS(3584), + [aux_sym__val_number_token3] = ACTIONS(3584), + [anon_sym_0b] = ACTIONS(3586), + [anon_sym_0o] = ACTIONS(3588), + [anon_sym_0x] = ACTIONS(3588), + [sym_val_date] = ACTIONS(4036), + [anon_sym_DQUOTE] = ACTIONS(3842), + [sym__str_single_quotes] = ACTIONS(3844), + [sym__str_back_ticks] = ACTIONS(3844), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3596), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3598), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3846), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3848), }, [1112] = { + [sym__val_range] = STATE(7632), + [sym__value] = STATE(5502), + [sym_val_nothing] = STATE(4047), + [sym_val_bool] = STATE(7459), + [sym_val_variable] = STATE(4047), + [sym_val_number] = STATE(4047), + [sym__val_number_decimal] = STATE(5689), + [sym__val_number] = STATE(3529), + [sym_val_duration] = STATE(4047), + [sym_val_filesize] = STATE(4047), + [sym_val_binary] = STATE(4047), + [sym_val_string] = STATE(4047), + [sym__raw_str] = STATE(2932), + [sym__str_double_quotes] = STATE(2932), + [sym_val_interpolated] = STATE(4047), + [sym__inter_single_quotes] = STATE(4101), + [sym__inter_double_quotes] = STATE(4102), + [sym_val_list] = STATE(4047), + [sym_val_record] = STATE(4047), + [sym_val_table] = STATE(4047), + [sym_val_closure] = STATE(4047), + [sym_unquoted] = STATE(5504), + [sym__unquoted_anonymous_prefix] = STATE(8071), [sym_comment] = STATE(1112), - [anon_sym_EQ] = ACTIONS(1042), - [anon_sym_PLUS_EQ] = ACTIONS(1044), - [anon_sym_DASH_EQ] = ACTIONS(1044), - [anon_sym_STAR_EQ] = ACTIONS(1044), - [anon_sym_SLASH_EQ] = ACTIONS(1044), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1044), - [sym__newline] = ACTIONS(1042), - [anon_sym_SEMI] = ACTIONS(1044), - [anon_sym_PIPE] = ACTIONS(1044), - [anon_sym_err_GT_PIPE] = ACTIONS(1044), - [anon_sym_out_GT_PIPE] = ACTIONS(1044), - [anon_sym_e_GT_PIPE] = ACTIONS(1044), - [anon_sym_o_GT_PIPE] = ACTIONS(1044), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1044), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1044), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1044), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1044), - [anon_sym_LBRACE] = ACTIONS(1044), - [anon_sym_RBRACE] = ACTIONS(1044), - [anon_sym_QMARK2] = ACTIONS(1044), - [aux_sym_expr_binary_token1] = ACTIONS(1044), - [aux_sym_expr_binary_token2] = ACTIONS(1044), - [aux_sym_expr_binary_token3] = ACTIONS(1044), - [aux_sym_expr_binary_token4] = ACTIONS(1044), - [aux_sym_expr_binary_token5] = ACTIONS(1044), - [aux_sym_expr_binary_token6] = ACTIONS(1044), - [aux_sym_expr_binary_token7] = ACTIONS(1044), - [aux_sym_expr_binary_token8] = ACTIONS(1044), - [aux_sym_expr_binary_token9] = ACTIONS(1044), - [aux_sym_expr_binary_token10] = ACTIONS(1044), - [aux_sym_expr_binary_token11] = ACTIONS(1044), - [aux_sym_expr_binary_token12] = ACTIONS(1044), - [aux_sym_expr_binary_token13] = ACTIONS(1044), - [aux_sym_expr_binary_token14] = ACTIONS(1044), - [aux_sym_expr_binary_token15] = ACTIONS(1044), - [aux_sym_expr_binary_token16] = ACTIONS(1044), - [aux_sym_expr_binary_token17] = ACTIONS(1044), - [aux_sym_expr_binary_token18] = ACTIONS(1044), - [aux_sym_expr_binary_token19] = ACTIONS(1044), - [aux_sym_expr_binary_token20] = ACTIONS(1044), - [aux_sym_expr_binary_token21] = ACTIONS(1044), - [aux_sym_expr_binary_token22] = ACTIONS(1044), - [aux_sym_expr_binary_token23] = ACTIONS(1044), - [aux_sym_expr_binary_token24] = ACTIONS(1044), - [aux_sym_expr_binary_token25] = ACTIONS(1044), - [aux_sym_expr_binary_token26] = ACTIONS(1044), - [aux_sym_expr_binary_token27] = ACTIONS(1044), - [aux_sym_expr_binary_token28] = ACTIONS(1044), - [anon_sym_DOT_DOT2] = ACTIONS(1042), - [anon_sym_DOT] = ACTIONS(1042), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1044), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1044), - [aux_sym_record_entry_token1] = ACTIONS(1044), - [anon_sym_err_GT] = ACTIONS(1042), - [anon_sym_out_GT] = ACTIONS(1042), - [anon_sym_e_GT] = ACTIONS(1042), - [anon_sym_o_GT] = ACTIONS(1042), - [anon_sym_err_PLUSout_GT] = ACTIONS(1042), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1042), - [anon_sym_o_PLUSe_GT] = ACTIONS(1042), - [anon_sym_e_PLUSo_GT] = ACTIONS(1042), - [anon_sym_err_GT_GT] = ACTIONS(1044), - [anon_sym_out_GT_GT] = ACTIONS(1044), - [anon_sym_e_GT_GT] = ACTIONS(1044), - [anon_sym_o_GT_GT] = ACTIONS(1044), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1044), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1044), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1044), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1044), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(4145), + [anon_sym_false] = ACTIONS(4145), + [anon_sym_null] = ACTIONS(4147), + [aux_sym_cmd_identifier_token38] = ACTIONS(4149), + [aux_sym_cmd_identifier_token39] = ACTIONS(4149), + [aux_sym_cmd_identifier_token40] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(4151), + [anon_sym_DOLLAR] = ACTIONS(4153), + [anon_sym_LBRACE] = ACTIONS(3470), + [anon_sym_DOT_DOT] = ACTIONS(4155), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4157), + [anon_sym_DOT_DOT_LT] = ACTIONS(4157), + [aux_sym__val_number_decimal_token1] = ACTIONS(4159), + [aux_sym__val_number_decimal_token2] = ACTIONS(4161), + [aux_sym__val_number_decimal_token3] = ACTIONS(4163), + [aux_sym__val_number_decimal_token4] = ACTIONS(4165), + [aux_sym__val_number_token1] = ACTIONS(3486), + [aux_sym__val_number_token2] = ACTIONS(3486), + [aux_sym__val_number_token3] = ACTIONS(3486), + [anon_sym_0b] = ACTIONS(3488), + [anon_sym_0o] = ACTIONS(3490), + [anon_sym_0x] = ACTIONS(3490), + [sym_val_date] = ACTIONS(4167), + [anon_sym_DQUOTE] = ACTIONS(3494), + [sym__str_single_quotes] = ACTIONS(3496), + [sym__str_back_ticks] = ACTIONS(3496), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3498), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3500), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3502), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3504), }, [1113] = { - [sym__val_range] = STATE(7629), - [sym__value] = STATE(5495), - [sym_val_nothing] = STATE(4042), - [sym_val_bool] = STATE(5510), - [sym_val_variable] = STATE(4042), - [sym_val_number] = STATE(4042), - [sym__val_number_decimal] = STATE(4917), - [sym__val_number] = STATE(3465), - [sym_val_duration] = STATE(4042), - [sym_val_filesize] = STATE(4042), - [sym_val_binary] = STATE(4042), - [sym_val_string] = STATE(4042), - [sym__str_double_quotes] = STATE(2725), - [sym_val_interpolated] = STATE(4042), - [sym__inter_single_quotes] = STATE(4011), - [sym__inter_double_quotes] = STATE(4052), - [sym_val_list] = STATE(4042), - [sym_val_record] = STATE(4042), - [sym_val_table] = STATE(4042), - [sym_val_closure] = STATE(4042), - [sym_unquoted] = STATE(5496), - [sym__unquoted_anonymous_prefix] = STATE(7720), + [sym__val_range] = STATE(7794), + [sym__value] = STATE(5997), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3688), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(5733), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(4434), + [sym__str_double_quotes] = STATE(4434), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(6052), + [sym__unquoted_anonymous_prefix] = STATE(7859), [sym_comment] = STATE(1113), - [anon_sym_true] = ACTIONS(3995), - [anon_sym_false] = ACTIONS(3995), - [anon_sym_null] = ACTIONS(3997), - [aux_sym_cmd_identifier_token38] = ACTIONS(3999), - [aux_sym_cmd_identifier_token39] = ACTIONS(3999), - [aux_sym_cmd_identifier_token40] = ACTIONS(3999), - [anon_sym_LBRACK] = ACTIONS(3397), - [anon_sym_LPAREN] = ACTIONS(4001), - [anon_sym_DOLLAR] = ACTIONS(4003), - [anon_sym_LBRACE] = ACTIONS(3405), - [anon_sym_DOT_DOT] = ACTIONS(4005), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4007), - [anon_sym_DOT_DOT_LT] = ACTIONS(4007), - [aux_sym__val_number_decimal_token1] = ACTIONS(4009), - [aux_sym__val_number_decimal_token2] = ACTIONS(4011), - [aux_sym__val_number_decimal_token3] = ACTIONS(4013), - [aux_sym__val_number_decimal_token4] = ACTIONS(4015), - [aux_sym__val_number_token1] = ACTIONS(3421), - [aux_sym__val_number_token2] = ACTIONS(3421), - [aux_sym__val_number_token3] = ACTIONS(3421), - [anon_sym_0b] = ACTIONS(3423), - [anon_sym_0o] = ACTIONS(3425), - [anon_sym_0x] = ACTIONS(3425), - [sym_val_date] = ACTIONS(4017), - [anon_sym_DQUOTE] = ACTIONS(3429), - [sym__str_single_quotes] = ACTIONS(3431), - [sym__str_back_ticks] = ACTIONS(3431), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3433), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3435), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3437), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(3350), + [anon_sym_false] = ACTIONS(3350), + [anon_sym_null] = ACTIONS(3352), + [aux_sym_cmd_identifier_token38] = ACTIONS(3828), + [aux_sym_cmd_identifier_token39] = ACTIONS(3828), + [aux_sym_cmd_identifier_token40] = ACTIONS(3828), + [anon_sym_LBRACK] = ACTIONS(3830), + [anon_sym_LPAREN] = ACTIONS(4169), + [anon_sym_DOLLAR] = ACTIONS(4020), + [anon_sym_LBRACE] = ACTIONS(3836), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4026), + [anon_sym_DOT_DOT_LT] = ACTIONS(4026), + [aux_sym__val_number_decimal_token1] = ACTIONS(3366), + [aux_sym__val_number_decimal_token2] = ACTIONS(3368), + [aux_sym__val_number_decimal_token3] = ACTIONS(3370), + [aux_sym__val_number_decimal_token4] = ACTIONS(3372), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3374), + [anon_sym_DQUOTE] = ACTIONS(3842), + [sym__str_single_quotes] = ACTIONS(3844), + [sym__str_back_ticks] = ACTIONS(3844), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3846), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3848), }, [1114] = { - [sym_cell_path] = STATE(1395), - [sym_path] = STATE(1292), + [sym__expr_parenthesized_immediate] = STATE(1699), + [sym__immediate_decimal] = STATE(1485), + [sym_val_variable] = STATE(1699), [sym_comment] = STATE(1114), - [aux_sym_cell_path_repeat1] = STATE(1230), - [anon_sym_true] = ACTIONS(1677), - [anon_sym_false] = ACTIONS(1677), - [anon_sym_null] = ACTIONS(1677), - [aux_sym_cmd_identifier_token38] = ACTIONS(1677), - [aux_sym_cmd_identifier_token39] = ACTIONS(1677), - [aux_sym_cmd_identifier_token40] = ACTIONS(1677), - [sym__newline] = ACTIONS(1677), - [anon_sym_SEMI] = ACTIONS(1677), - [anon_sym_PIPE] = ACTIONS(1677), - [anon_sym_err_GT_PIPE] = ACTIONS(1677), - [anon_sym_out_GT_PIPE] = ACTIONS(1677), - [anon_sym_e_GT_PIPE] = ACTIONS(1677), - [anon_sym_o_GT_PIPE] = ACTIONS(1677), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1677), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1677), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1677), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1677), - [anon_sym_LBRACK] = ACTIONS(1677), - [anon_sym_LPAREN] = ACTIONS(1677), - [anon_sym_RPAREN] = ACTIONS(1677), - [anon_sym_DOLLAR] = ACTIONS(1675), - [anon_sym_DASH_DASH] = ACTIONS(1677), - [anon_sym_DASH] = ACTIONS(1675), - [anon_sym_LBRACE] = ACTIONS(1677), - [anon_sym_RBRACE] = ACTIONS(1677), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT2] = ACTIONS(1675), - [anon_sym_DOT] = ACTIONS(4019), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1675), - [anon_sym_DOT_DOT_LT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1677), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1677), - [aux_sym__val_number_decimal_token1] = ACTIONS(1675), - [aux_sym__val_number_decimal_token2] = ACTIONS(1677), - [aux_sym__val_number_decimal_token3] = ACTIONS(1677), - [aux_sym__val_number_decimal_token4] = ACTIONS(1677), - [aux_sym__val_number_token1] = ACTIONS(1677), - [aux_sym__val_number_token2] = ACTIONS(1677), - [aux_sym__val_number_token3] = ACTIONS(1677), - [anon_sym_0b] = ACTIONS(1675), - [anon_sym_0o] = ACTIONS(1675), - [anon_sym_0x] = ACTIONS(1675), - [sym_val_date] = ACTIONS(1677), - [anon_sym_DQUOTE] = ACTIONS(1677), - [sym__str_single_quotes] = ACTIONS(1677), - [sym__str_back_ticks] = ACTIONS(1677), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1677), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1677), - [anon_sym_err_GT] = ACTIONS(1675), - [anon_sym_out_GT] = ACTIONS(1675), - [anon_sym_e_GT] = ACTIONS(1675), - [anon_sym_o_GT] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT] = ACTIONS(1675), - [anon_sym_err_GT_GT] = ACTIONS(1677), - [anon_sym_out_GT_GT] = ACTIONS(1677), - [anon_sym_e_GT_GT] = ACTIONS(1677), - [anon_sym_o_GT_GT] = ACTIONS(1677), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1677), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1677), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1677), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1677), - [aux_sym_unquoted_token1] = ACTIONS(1675), - [anon_sym_POUND] = ACTIONS(247), + [ts_builtin_sym_end] = ACTIONS(1524), + [anon_sym_true] = ACTIONS(1524), + [anon_sym_false] = ACTIONS(1524), + [anon_sym_null] = ACTIONS(1524), + [aux_sym_cmd_identifier_token38] = ACTIONS(1524), + [aux_sym_cmd_identifier_token39] = ACTIONS(1524), + [aux_sym_cmd_identifier_token40] = ACTIONS(1524), + [sym__newline] = ACTIONS(1524), + [anon_sym_SEMI] = ACTIONS(1524), + [anon_sym_PIPE] = ACTIONS(1524), + [anon_sym_err_GT_PIPE] = ACTIONS(1524), + [anon_sym_out_GT_PIPE] = ACTIONS(1524), + [anon_sym_e_GT_PIPE] = ACTIONS(1524), + [anon_sym_o_GT_PIPE] = ACTIONS(1524), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1524), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1524), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1524), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1524), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_LPAREN] = ACTIONS(1510), + [anon_sym_DOLLAR] = ACTIONS(4171), + [anon_sym_DASH_DASH] = ACTIONS(1524), + [anon_sym_DASH] = ACTIONS(1510), + [anon_sym_LBRACE] = ACTIONS(1524), + [anon_sym_DOT_DOT] = ACTIONS(1510), + [anon_sym_LPAREN2] = ACTIONS(4173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1524), + [anon_sym_DOT_DOT_LT] = ACTIONS(1524), + [aux_sym__immediate_decimal_token1] = ACTIONS(4175), + [aux_sym__immediate_decimal_token3] = ACTIONS(4177), + [aux_sym__immediate_decimal_token4] = ACTIONS(4179), + [aux_sym__immediate_decimal_token5] = ACTIONS(4181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1510), + [aux_sym__val_number_decimal_token2] = ACTIONS(1510), + [aux_sym__val_number_decimal_token3] = ACTIONS(1510), + [aux_sym__val_number_decimal_token4] = ACTIONS(1510), + [aux_sym__val_number_token1] = ACTIONS(1524), + [aux_sym__val_number_token2] = ACTIONS(1524), + [aux_sym__val_number_token3] = ACTIONS(1524), + [anon_sym_0b] = ACTIONS(1510), + [anon_sym_0o] = ACTIONS(1510), + [anon_sym_0x] = ACTIONS(1510), + [sym_val_date] = ACTIONS(1524), + [anon_sym_DQUOTE] = ACTIONS(1524), + [sym__str_single_quotes] = ACTIONS(1524), + [sym__str_back_ticks] = ACTIONS(1524), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1524), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1524), + [anon_sym_err_GT] = ACTIONS(1510), + [anon_sym_out_GT] = ACTIONS(1510), + [anon_sym_e_GT] = ACTIONS(1510), + [anon_sym_o_GT] = ACTIONS(1510), + [anon_sym_err_PLUSout_GT] = ACTIONS(1510), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1510), + [anon_sym_o_PLUSe_GT] = ACTIONS(1510), + [anon_sym_e_PLUSo_GT] = ACTIONS(1510), + [anon_sym_err_GT_GT] = ACTIONS(1524), + [anon_sym_out_GT_GT] = ACTIONS(1524), + [anon_sym_e_GT_GT] = ACTIONS(1524), + [anon_sym_o_GT_GT] = ACTIONS(1524), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1524), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1524), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1524), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1524), + [aux_sym_unquoted_token1] = ACTIONS(1510), + [aux_sym_unquoted_token2] = ACTIONS(1526), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1524), }, [1115] = { - [sym__val_range] = STATE(7687), - [sym__value] = STATE(2720), - [sym_val_nothing] = STATE(2777), - [sym_val_bool] = STATE(2662), - [sym_val_variable] = STATE(2777), - [sym_val_number] = STATE(2777), - [sym__val_number_decimal] = STATE(2457), - [sym__val_number] = STATE(2758), - [sym_val_duration] = STATE(2777), - [sym_val_filesize] = STATE(2777), - [sym_val_binary] = STATE(2777), - [sym_val_string] = STATE(2777), - [sym__str_double_quotes] = STATE(2731), - [sym_val_interpolated] = STATE(2777), - [sym__inter_single_quotes] = STATE(2787), - [sym__inter_double_quotes] = STATE(2788), - [sym_val_list] = STATE(2777), - [sym_val_record] = STATE(2777), - [sym_val_table] = STATE(2777), - [sym_val_closure] = STATE(2777), - [sym_unquoted] = STATE(2724), - [sym__unquoted_anonymous_prefix] = STATE(7483), + [sym__val_range] = STATE(7794), + [sym__value] = STATE(6013), + [sym_val_nothing] = STATE(4884), + [sym_val_bool] = STATE(5849), + [sym_val_variable] = STATE(4884), + [sym_val_number] = STATE(4884), + [sym__val_number_decimal] = STATE(5354), + [sym__val_number] = STATE(3529), + [sym_val_duration] = STATE(4884), + [sym_val_filesize] = STATE(4884), + [sym_val_binary] = STATE(4884), + [sym_val_string] = STATE(4884), + [sym__raw_str] = STATE(4434), + [sym__str_double_quotes] = STATE(4434), + [sym_val_interpolated] = STATE(4884), + [sym__inter_single_quotes] = STATE(4936), + [sym__inter_double_quotes] = STATE(4937), + [sym_val_list] = STATE(4884), + [sym_val_record] = STATE(4884), + [sym_val_table] = STATE(4884), + [sym_val_closure] = STATE(4884), + [sym_unquoted] = STATE(6128), + [sym__unquoted_anonymous_prefix] = STATE(7859), [sym_comment] = STATE(1115), - [anon_sym_true] = ACTIONS(4021), - [anon_sym_false] = ACTIONS(4021), - [anon_sym_null] = ACTIONS(4023), - [aux_sym_cmd_identifier_token38] = ACTIONS(4025), - [aux_sym_cmd_identifier_token39] = ACTIONS(4025), - [aux_sym_cmd_identifier_token40] = ACTIONS(4025), - [anon_sym_LBRACK] = ACTIONS(4027), - [anon_sym_LPAREN] = ACTIONS(4029), - [anon_sym_DOLLAR] = ACTIONS(4031), - [anon_sym_LBRACE] = ACTIONS(4033), - [anon_sym_DOT_DOT] = ACTIONS(4035), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4037), - [anon_sym_DOT_DOT_LT] = ACTIONS(4037), - [aux_sym__val_number_decimal_token1] = ACTIONS(4039), - [aux_sym__val_number_decimal_token2] = ACTIONS(4041), - [aux_sym__val_number_decimal_token3] = ACTIONS(4043), - [aux_sym__val_number_decimal_token4] = ACTIONS(4045), - [aux_sym__val_number_token1] = ACTIONS(4047), - [aux_sym__val_number_token2] = ACTIONS(4047), - [aux_sym__val_number_token3] = ACTIONS(4047), - [anon_sym_0b] = ACTIONS(4049), - [anon_sym_0o] = ACTIONS(4051), - [anon_sym_0x] = ACTIONS(4051), - [sym_val_date] = ACTIONS(4053), - [anon_sym_DQUOTE] = ACTIONS(4055), - [sym__str_single_quotes] = ACTIONS(4057), - [sym__str_back_ticks] = ACTIONS(4057), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4059), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4061), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(4063), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(4010), + [anon_sym_false] = ACTIONS(4010), + [anon_sym_null] = ACTIONS(4012), + [aux_sym_cmd_identifier_token38] = ACTIONS(4014), + [aux_sym_cmd_identifier_token39] = ACTIONS(4014), + [aux_sym_cmd_identifier_token40] = ACTIONS(4014), + [anon_sym_LBRACK] = ACTIONS(4016), + [anon_sym_LPAREN] = ACTIONS(4018), + [anon_sym_DOLLAR] = ACTIONS(4020), + [anon_sym_LBRACE] = ACTIONS(4022), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4026), + [anon_sym_DOT_DOT_LT] = ACTIONS(4026), + [aux_sym__val_number_decimal_token1] = ACTIONS(4028), + [aux_sym__val_number_decimal_token2] = ACTIONS(4030), + [aux_sym__val_number_decimal_token3] = ACTIONS(4032), + [aux_sym__val_number_decimal_token4] = ACTIONS(4034), + [aux_sym__val_number_token1] = ACTIONS(3486), + [aux_sym__val_number_token2] = ACTIONS(3486), + [aux_sym__val_number_token3] = ACTIONS(3486), + [anon_sym_0b] = ACTIONS(3586), + [anon_sym_0o] = ACTIONS(3588), + [anon_sym_0x] = ACTIONS(3588), + [sym_val_date] = ACTIONS(4036), + [anon_sym_DQUOTE] = ACTIONS(3842), + [sym__str_single_quotes] = ACTIONS(3844), + [sym__str_back_ticks] = ACTIONS(3844), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3596), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3598), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3846), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3848), }, [1116] = { + [sym__val_range] = STATE(7632), + [sym__value] = STATE(5581), + [sym_val_nothing] = STATE(4047), + [sym_val_bool] = STATE(7459), + [sym_val_variable] = STATE(4047), + [sym_val_number] = STATE(4047), + [sym__val_number_decimal] = STATE(5689), + [sym__val_number] = STATE(3529), + [sym_val_duration] = STATE(4047), + [sym_val_filesize] = STATE(4047), + [sym_val_binary] = STATE(4047), + [sym_val_string] = STATE(4047), + [sym__raw_str] = STATE(2932), + [sym__str_double_quotes] = STATE(2932), + [sym_val_interpolated] = STATE(4047), + [sym__inter_single_quotes] = STATE(4101), + [sym__inter_double_quotes] = STATE(4102), + [sym_val_list] = STATE(4047), + [sym_val_record] = STATE(4047), + [sym_val_table] = STATE(4047), + [sym_val_closure] = STATE(4047), + [sym_unquoted] = STATE(5583), + [sym__unquoted_anonymous_prefix] = STATE(8071), [sym_comment] = STATE(1116), - [anon_sym_true] = ACTIONS(1520), - [anon_sym_false] = ACTIONS(1520), - [anon_sym_null] = ACTIONS(1520), - [aux_sym_cmd_identifier_token38] = ACTIONS(1520), - [aux_sym_cmd_identifier_token39] = ACTIONS(1520), - [aux_sym_cmd_identifier_token40] = ACTIONS(1520), - [sym__newline] = ACTIONS(1520), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_err_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_GT_PIPE] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1520), - [anon_sym_LPAREN] = ACTIONS(1518), - [anon_sym_RPAREN] = ACTIONS(1520), - [anon_sym_DOLLAR] = ACTIONS(1518), - [anon_sym_DASH_DASH] = ACTIONS(1520), - [anon_sym_DASH] = ACTIONS(1518), - [anon_sym_LBRACE] = ACTIONS(1520), - [anon_sym_RBRACE] = ACTIONS(1520), - [anon_sym_DOT_DOT] = ACTIONS(1518), - [anon_sym_LPAREN2] = ACTIONS(1520), - [anon_sym_DOT_DOT2] = ACTIONS(1518), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1518), - [anon_sym_DOT_DOT_LT] = ACTIONS(1518), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), - [aux_sym__val_number_decimal_token1] = ACTIONS(1518), - [aux_sym__val_number_decimal_token2] = ACTIONS(1520), - [aux_sym__val_number_decimal_token3] = ACTIONS(1520), - [aux_sym__val_number_decimal_token4] = ACTIONS(1520), - [aux_sym__val_number_token1] = ACTIONS(1520), - [aux_sym__val_number_token2] = ACTIONS(1520), - [aux_sym__val_number_token3] = ACTIONS(1520), - [anon_sym_0b] = ACTIONS(1518), - [sym_filesize_unit] = ACTIONS(1520), - [sym_duration_unit] = ACTIONS(1520), - [anon_sym_0o] = ACTIONS(1518), - [anon_sym_0x] = ACTIONS(1518), - [sym_val_date] = ACTIONS(1520), - [anon_sym_DQUOTE] = ACTIONS(1520), - [sym__str_single_quotes] = ACTIONS(1520), - [sym__str_back_ticks] = ACTIONS(1520), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1520), - [anon_sym_err_GT] = ACTIONS(1518), - [anon_sym_out_GT] = ACTIONS(1518), - [anon_sym_e_GT] = ACTIONS(1518), - [anon_sym_o_GT] = ACTIONS(1518), - [anon_sym_err_PLUSout_GT] = ACTIONS(1518), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), - [anon_sym_o_PLUSe_GT] = ACTIONS(1518), - [anon_sym_e_PLUSo_GT] = ACTIONS(1518), - [anon_sym_err_GT_GT] = ACTIONS(1520), - [anon_sym_out_GT_GT] = ACTIONS(1520), - [anon_sym_e_GT_GT] = ACTIONS(1520), - [anon_sym_o_GT_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1520), - [aux_sym_unquoted_token1] = ACTIONS(1518), - [aux_sym_unquoted_token2] = ACTIONS(1518), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(4145), + [anon_sym_false] = ACTIONS(4145), + [anon_sym_null] = ACTIONS(4147), + [aux_sym_cmd_identifier_token38] = ACTIONS(4149), + [aux_sym_cmd_identifier_token39] = ACTIONS(4149), + [aux_sym_cmd_identifier_token40] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(4151), + [anon_sym_DOLLAR] = ACTIONS(4153), + [anon_sym_LBRACE] = ACTIONS(3470), + [anon_sym_DOT_DOT] = ACTIONS(4155), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4157), + [anon_sym_DOT_DOT_LT] = ACTIONS(4157), + [aux_sym__val_number_decimal_token1] = ACTIONS(4159), + [aux_sym__val_number_decimal_token2] = ACTIONS(4161), + [aux_sym__val_number_decimal_token3] = ACTIONS(4163), + [aux_sym__val_number_decimal_token4] = ACTIONS(4165), + [aux_sym__val_number_token1] = ACTIONS(3486), + [aux_sym__val_number_token2] = ACTIONS(3486), + [aux_sym__val_number_token3] = ACTIONS(3486), + [anon_sym_0b] = ACTIONS(3488), + [anon_sym_0o] = ACTIONS(3490), + [anon_sym_0x] = ACTIONS(3490), + [sym_val_date] = ACTIONS(4167), + [anon_sym_DQUOTE] = ACTIONS(3494), + [sym__str_single_quotes] = ACTIONS(3496), + [sym__str_back_ticks] = ACTIONS(3496), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3498), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3500), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3502), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3504), }, [1117] = { + [sym__val_range] = STATE(7843), + [sym__value] = STATE(1824), + [sym_val_nothing] = STATE(1819), + [sym_val_bool] = STATE(1620), + [sym_val_variable] = STATE(1819), + [sym_val_number] = STATE(1819), + [sym__val_number_decimal] = STATE(1269), + [sym__val_number] = STATE(1792), + [sym_val_duration] = STATE(1819), + [sym_val_filesize] = STATE(1819), + [sym_val_binary] = STATE(1819), + [sym_val_string] = STATE(1819), + [sym__raw_str] = STATE(1795), + [sym__str_double_quotes] = STATE(1795), + [sym_val_interpolated] = STATE(1819), + [sym__inter_single_quotes] = STATE(1749), + [sym__inter_double_quotes] = STATE(1750), + [sym_val_list] = STATE(1819), + [sym_val_record] = STATE(1819), + [sym_val_table] = STATE(1819), + [sym_val_closure] = STATE(1819), + [sym_unquoted] = STATE(1825), + [sym__unquoted_anonymous_prefix] = STATE(7992), [sym_comment] = STATE(1117), - [ts_builtin_sym_end] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [anon_sym_null] = ACTIONS(1556), - [aux_sym_cmd_identifier_token38] = ACTIONS(1556), - [aux_sym_cmd_identifier_token39] = ACTIONS(1556), - [aux_sym_cmd_identifier_token40] = ACTIONS(1556), - [sym__newline] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1556), - [anon_sym_PIPE] = ACTIONS(1556), - [anon_sym_err_GT_PIPE] = ACTIONS(1556), - [anon_sym_out_GT_PIPE] = ACTIONS(1556), - [anon_sym_e_GT_PIPE] = ACTIONS(1556), - [anon_sym_o_GT_PIPE] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1556), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1554), - [anon_sym_DOLLAR] = ACTIONS(1554), - [anon_sym_DASH_DASH] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1554), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_DOT_DOT] = ACTIONS(1554), - [anon_sym_LPAREN2] = ACTIONS(1556), - [anon_sym_DOT_DOT2] = ACTIONS(1554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1554), - [anon_sym_DOT_DOT_LT] = ACTIONS(1554), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1556), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1556), - [aux_sym__immediate_decimal_token2] = ACTIONS(4065), - [aux_sym__val_number_decimal_token1] = ACTIONS(1554), - [aux_sym__val_number_decimal_token2] = ACTIONS(1556), - [aux_sym__val_number_decimal_token3] = ACTIONS(1556), - [aux_sym__val_number_decimal_token4] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1556), - [aux_sym__val_number_token2] = ACTIONS(1556), - [aux_sym__val_number_token3] = ACTIONS(1556), - [anon_sym_0b] = ACTIONS(1554), - [sym_filesize_unit] = ACTIONS(1556), - [sym_duration_unit] = ACTIONS(1556), - [anon_sym_0o] = ACTIONS(1554), - [anon_sym_0x] = ACTIONS(1554), - [sym_val_date] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1556), - [sym__str_single_quotes] = ACTIONS(1556), - [sym__str_back_ticks] = ACTIONS(1556), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1556), - [anon_sym_err_GT] = ACTIONS(1554), - [anon_sym_out_GT] = ACTIONS(1554), - [anon_sym_e_GT] = ACTIONS(1554), - [anon_sym_o_GT] = ACTIONS(1554), - [anon_sym_err_PLUSout_GT] = ACTIONS(1554), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1554), - [anon_sym_o_PLUSe_GT] = ACTIONS(1554), - [anon_sym_e_PLUSo_GT] = ACTIONS(1554), - [anon_sym_err_GT_GT] = ACTIONS(1556), - [anon_sym_out_GT_GT] = ACTIONS(1556), - [anon_sym_e_GT_GT] = ACTIONS(1556), - [anon_sym_o_GT_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1556), - [aux_sym_unquoted_token1] = ACTIONS(1554), - [aux_sym_unquoted_token2] = ACTIONS(1554), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(4183), + [anon_sym_false] = ACTIONS(4183), + [anon_sym_null] = ACTIONS(4185), + [aux_sym_cmd_identifier_token38] = ACTIONS(4187), + [aux_sym_cmd_identifier_token39] = ACTIONS(4187), + [aux_sym_cmd_identifier_token40] = ACTIONS(4187), + [anon_sym_LBRACK] = ACTIONS(2880), + [anon_sym_LPAREN] = ACTIONS(4189), + [anon_sym_DOLLAR] = ACTIONS(4171), + [anon_sym_LBRACE] = ACTIONS(2890), + [anon_sym_DOT_DOT] = ACTIONS(4191), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4193), + [anon_sym_DOT_DOT_LT] = ACTIONS(4193), + [aux_sym__val_number_decimal_token1] = ACTIONS(4195), + [aux_sym__val_number_decimal_token2] = ACTIONS(4197), + [aux_sym__val_number_decimal_token3] = ACTIONS(4199), + [aux_sym__val_number_decimal_token4] = ACTIONS(4201), + [aux_sym__val_number_token1] = ACTIONS(2904), + [aux_sym__val_number_token2] = ACTIONS(2904), + [aux_sym__val_number_token3] = ACTIONS(2904), + [anon_sym_0b] = ACTIONS(2906), + [anon_sym_0o] = ACTIONS(2908), + [anon_sym_0x] = ACTIONS(2908), + [sym_val_date] = ACTIONS(4203), + [anon_sym_DQUOTE] = ACTIONS(2912), + [sym__str_single_quotes] = ACTIONS(2914), + [sym__str_back_ticks] = ACTIONS(2914), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2916), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2918), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(4205), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2922), }, [1118] = { + [sym__val_range] = STATE(7632), + [sym__value] = STATE(5611), + [sym_val_nothing] = STATE(4047), + [sym_val_bool] = STATE(7459), + [sym_val_variable] = STATE(4047), + [sym_val_number] = STATE(4047), + [sym__val_number_decimal] = STATE(5689), + [sym__val_number] = STATE(3529), + [sym_val_duration] = STATE(4047), + [sym_val_filesize] = STATE(4047), + [sym_val_binary] = STATE(4047), + [sym_val_string] = STATE(4047), + [sym__raw_str] = STATE(2932), + [sym__str_double_quotes] = STATE(2932), + [sym_val_interpolated] = STATE(4047), + [sym__inter_single_quotes] = STATE(4101), + [sym__inter_double_quotes] = STATE(4102), + [sym_val_list] = STATE(4047), + [sym_val_record] = STATE(4047), + [sym_val_table] = STATE(4047), + [sym_val_closure] = STATE(4047), + [sym_unquoted] = STATE(5613), + [sym__unquoted_anonymous_prefix] = STATE(8071), [sym_comment] = STATE(1118), - [anon_sym_true] = ACTIONS(1542), - [anon_sym_false] = ACTIONS(1542), - [anon_sym_null] = ACTIONS(1542), - [aux_sym_cmd_identifier_token38] = ACTIONS(1542), - [aux_sym_cmd_identifier_token39] = ACTIONS(1542), - [aux_sym_cmd_identifier_token40] = ACTIONS(1542), - [sym__newline] = ACTIONS(1542), - [anon_sym_SEMI] = ACTIONS(1542), - [anon_sym_PIPE] = ACTIONS(1542), - [anon_sym_err_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_GT_PIPE] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1542), - [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_LPAREN] = ACTIONS(1540), - [anon_sym_RPAREN] = ACTIONS(1542), - [anon_sym_DOLLAR] = ACTIONS(1540), - [anon_sym_DASH_DASH] = ACTIONS(1542), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_LBRACE] = ACTIONS(1542), - [anon_sym_RBRACE] = ACTIONS(1542), - [anon_sym_DOT_DOT] = ACTIONS(1540), - [anon_sym_LPAREN2] = ACTIONS(1542), - [anon_sym_DOT_DOT2] = ACTIONS(1540), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1540), - [anon_sym_DOT_DOT_LT] = ACTIONS(1540), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1542), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1542), - [aux_sym__val_number_decimal_token1] = ACTIONS(1540), - [aux_sym__val_number_decimal_token2] = ACTIONS(1542), - [aux_sym__val_number_decimal_token3] = ACTIONS(1542), - [aux_sym__val_number_decimal_token4] = ACTIONS(1542), - [aux_sym__val_number_token1] = ACTIONS(1542), - [aux_sym__val_number_token2] = ACTIONS(1542), - [aux_sym__val_number_token3] = ACTIONS(1542), - [anon_sym_0b] = ACTIONS(1540), - [sym_filesize_unit] = ACTIONS(1542), - [sym_duration_unit] = ACTIONS(1542), - [anon_sym_0o] = ACTIONS(1540), - [anon_sym_0x] = ACTIONS(1540), - [sym_val_date] = ACTIONS(1542), - [anon_sym_DQUOTE] = ACTIONS(1542), - [sym__str_single_quotes] = ACTIONS(1542), - [sym__str_back_ticks] = ACTIONS(1542), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1542), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1542), - [anon_sym_err_GT] = ACTIONS(1540), - [anon_sym_out_GT] = ACTIONS(1540), - [anon_sym_e_GT] = ACTIONS(1540), - [anon_sym_o_GT] = ACTIONS(1540), - [anon_sym_err_PLUSout_GT] = ACTIONS(1540), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1540), - [anon_sym_o_PLUSe_GT] = ACTIONS(1540), - [anon_sym_e_PLUSo_GT] = ACTIONS(1540), - [anon_sym_err_GT_GT] = ACTIONS(1542), - [anon_sym_out_GT_GT] = ACTIONS(1542), - [anon_sym_e_GT_GT] = ACTIONS(1542), - [anon_sym_o_GT_GT] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1542), - [aux_sym_unquoted_token1] = ACTIONS(1540), - [aux_sym_unquoted_token2] = ACTIONS(1540), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(4145), + [anon_sym_false] = ACTIONS(4145), + [anon_sym_null] = ACTIONS(4147), + [aux_sym_cmd_identifier_token38] = ACTIONS(4149), + [aux_sym_cmd_identifier_token39] = ACTIONS(4149), + [aux_sym_cmd_identifier_token40] = ACTIONS(4149), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(4151), + [anon_sym_DOLLAR] = ACTIONS(4153), + [anon_sym_LBRACE] = ACTIONS(3470), + [anon_sym_DOT_DOT] = ACTIONS(4155), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4157), + [anon_sym_DOT_DOT_LT] = ACTIONS(4157), + [aux_sym__val_number_decimal_token1] = ACTIONS(4159), + [aux_sym__val_number_decimal_token2] = ACTIONS(4161), + [aux_sym__val_number_decimal_token3] = ACTIONS(4163), + [aux_sym__val_number_decimal_token4] = ACTIONS(4165), + [aux_sym__val_number_token1] = ACTIONS(3486), + [aux_sym__val_number_token2] = ACTIONS(3486), + [aux_sym__val_number_token3] = ACTIONS(3486), + [anon_sym_0b] = ACTIONS(3488), + [anon_sym_0o] = ACTIONS(3490), + [anon_sym_0x] = ACTIONS(3490), + [sym_val_date] = ACTIONS(4167), + [anon_sym_DQUOTE] = ACTIONS(3494), + [sym__str_single_quotes] = ACTIONS(3496), + [sym__str_back_ticks] = ACTIONS(3496), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3498), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3500), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3502), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3504), }, [1119] = { + [sym__val_range] = STATE(7843), + [sym__value] = STATE(1833), + [sym_val_nothing] = STATE(1819), + [sym_val_bool] = STATE(1620), + [sym_val_variable] = STATE(1819), + [sym_val_number] = STATE(1819), + [sym__val_number_decimal] = STATE(1269), + [sym__val_number] = STATE(1792), + [sym_val_duration] = STATE(1819), + [sym_val_filesize] = STATE(1819), + [sym_val_binary] = STATE(1819), + [sym_val_string] = STATE(1819), + [sym__raw_str] = STATE(1795), + [sym__str_double_quotes] = STATE(1795), + [sym_val_interpolated] = STATE(1819), + [sym__inter_single_quotes] = STATE(1749), + [sym__inter_double_quotes] = STATE(1750), + [sym_val_list] = STATE(1819), + [sym_val_record] = STATE(1819), + [sym_val_table] = STATE(1819), + [sym_val_closure] = STATE(1819), + [sym_unquoted] = STATE(1834), + [sym__unquoted_anonymous_prefix] = STATE(7992), [sym_comment] = STATE(1119), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [anon_sym_null] = ACTIONS(1556), - [aux_sym_cmd_identifier_token38] = ACTIONS(1556), - [aux_sym_cmd_identifier_token39] = ACTIONS(1556), - [aux_sym_cmd_identifier_token40] = ACTIONS(1556), - [sym__newline] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1556), - [anon_sym_PIPE] = ACTIONS(1556), - [anon_sym_err_GT_PIPE] = ACTIONS(1556), - [anon_sym_out_GT_PIPE] = ACTIONS(1556), - [anon_sym_e_GT_PIPE] = ACTIONS(1556), - [anon_sym_o_GT_PIPE] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1556), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1554), - [anon_sym_RPAREN] = ACTIONS(1556), - [anon_sym_DOLLAR] = ACTIONS(1554), - [anon_sym_DASH_DASH] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1554), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1556), - [anon_sym_DOT_DOT] = ACTIONS(1554), - [anon_sym_LPAREN2] = ACTIONS(1556), - [anon_sym_DOT_DOT2] = ACTIONS(1554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1554), - [anon_sym_DOT_DOT_LT] = ACTIONS(1554), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1556), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1554), - [aux_sym__val_number_decimal_token2] = ACTIONS(1556), - [aux_sym__val_number_decimal_token3] = ACTIONS(1556), - [aux_sym__val_number_decimal_token4] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1556), - [aux_sym__val_number_token2] = ACTIONS(1556), - [aux_sym__val_number_token3] = ACTIONS(1556), - [anon_sym_0b] = ACTIONS(1554), - [sym_filesize_unit] = ACTIONS(1556), - [sym_duration_unit] = ACTIONS(1556), - [anon_sym_0o] = ACTIONS(1554), - [anon_sym_0x] = ACTIONS(1554), - [sym_val_date] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1556), - [sym__str_single_quotes] = ACTIONS(1556), - [sym__str_back_ticks] = ACTIONS(1556), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1556), - [anon_sym_err_GT] = ACTIONS(1554), - [anon_sym_out_GT] = ACTIONS(1554), - [anon_sym_e_GT] = ACTIONS(1554), - [anon_sym_o_GT] = ACTIONS(1554), - [anon_sym_err_PLUSout_GT] = ACTIONS(1554), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1554), - [anon_sym_o_PLUSe_GT] = ACTIONS(1554), - [anon_sym_e_PLUSo_GT] = ACTIONS(1554), - [anon_sym_err_GT_GT] = ACTIONS(1556), - [anon_sym_out_GT_GT] = ACTIONS(1556), - [anon_sym_e_GT_GT] = ACTIONS(1556), - [anon_sym_o_GT_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1556), - [aux_sym_unquoted_token1] = ACTIONS(1554), - [aux_sym_unquoted_token2] = ACTIONS(1554), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(4183), + [anon_sym_false] = ACTIONS(4183), + [anon_sym_null] = ACTIONS(4185), + [aux_sym_cmd_identifier_token38] = ACTIONS(4187), + [aux_sym_cmd_identifier_token39] = ACTIONS(4187), + [aux_sym_cmd_identifier_token40] = ACTIONS(4187), + [anon_sym_LBRACK] = ACTIONS(2880), + [anon_sym_LPAREN] = ACTIONS(4189), + [anon_sym_DOLLAR] = ACTIONS(4171), + [anon_sym_LBRACE] = ACTIONS(2890), + [anon_sym_DOT_DOT] = ACTIONS(4191), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4193), + [anon_sym_DOT_DOT_LT] = ACTIONS(4193), + [aux_sym__val_number_decimal_token1] = ACTIONS(4195), + [aux_sym__val_number_decimal_token2] = ACTIONS(4197), + [aux_sym__val_number_decimal_token3] = ACTIONS(4199), + [aux_sym__val_number_decimal_token4] = ACTIONS(4201), + [aux_sym__val_number_token1] = ACTIONS(2904), + [aux_sym__val_number_token2] = ACTIONS(2904), + [aux_sym__val_number_token3] = ACTIONS(2904), + [anon_sym_0b] = ACTIONS(2906), + [anon_sym_0o] = ACTIONS(2908), + [anon_sym_0x] = ACTIONS(2908), + [sym_val_date] = ACTIONS(4203), + [anon_sym_DQUOTE] = ACTIONS(2912), + [sym__str_single_quotes] = ACTIONS(2914), + [sym__str_back_ticks] = ACTIONS(2914), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2916), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2918), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(4205), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2922), }, [1120] = { + [sym__val_range] = STATE(7843), + [sym__value] = STATE(1704), + [sym_val_nothing] = STATE(1819), + [sym_val_bool] = STATE(1620), + [sym_val_variable] = STATE(1819), + [sym_val_number] = STATE(1819), + [sym__val_number_decimal] = STATE(1269), + [sym__val_number] = STATE(1792), + [sym_val_duration] = STATE(1819), + [sym_val_filesize] = STATE(1819), + [sym_val_binary] = STATE(1819), + [sym_val_string] = STATE(1819), + [sym__raw_str] = STATE(1795), + [sym__str_double_quotes] = STATE(1795), + [sym_val_interpolated] = STATE(1819), + [sym__inter_single_quotes] = STATE(1749), + [sym__inter_double_quotes] = STATE(1750), + [sym_val_list] = STATE(1819), + [sym_val_record] = STATE(1819), + [sym_val_table] = STATE(1819), + [sym_val_closure] = STATE(1819), + [sym_unquoted] = STATE(1725), + [sym__unquoted_anonymous_prefix] = STATE(7992), [sym_comment] = STATE(1120), - [anon_sym_true] = ACTIONS(1655), - [anon_sym_false] = ACTIONS(1655), - [anon_sym_null] = ACTIONS(1655), - [aux_sym_cmd_identifier_token38] = ACTIONS(1655), - [aux_sym_cmd_identifier_token39] = ACTIONS(1655), - [aux_sym_cmd_identifier_token40] = ACTIONS(1655), - [sym__newline] = ACTIONS(1655), - [anon_sym_SEMI] = ACTIONS(1655), - [anon_sym_PIPE] = ACTIONS(1655), - [anon_sym_err_GT_PIPE] = ACTIONS(1655), - [anon_sym_out_GT_PIPE] = ACTIONS(1655), - [anon_sym_e_GT_PIPE] = ACTIONS(1655), - [anon_sym_o_GT_PIPE] = ACTIONS(1655), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1655), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1655), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1655), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1655), - [anon_sym_LBRACK] = ACTIONS(1655), - [anon_sym_LPAREN] = ACTIONS(1653), - [anon_sym_RPAREN] = ACTIONS(1655), - [anon_sym_DOLLAR] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1655), - [anon_sym_DASH] = ACTIONS(1653), - [anon_sym_LBRACE] = ACTIONS(1655), - [anon_sym_RBRACE] = ACTIONS(1655), - [anon_sym_DOT_DOT] = ACTIONS(1653), - [anon_sym_LPAREN2] = ACTIONS(1655), - [anon_sym_DOT_DOT2] = ACTIONS(1653), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1653), - [anon_sym_DOT_DOT_LT] = ACTIONS(1653), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1655), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1655), - [aux_sym__val_number_decimal_token1] = ACTIONS(1653), - [aux_sym__val_number_decimal_token2] = ACTIONS(1655), - [aux_sym__val_number_decimal_token3] = ACTIONS(1655), - [aux_sym__val_number_decimal_token4] = ACTIONS(1655), - [aux_sym__val_number_token1] = ACTIONS(1655), - [aux_sym__val_number_token2] = ACTIONS(1655), - [aux_sym__val_number_token3] = ACTIONS(1655), - [anon_sym_0b] = ACTIONS(1653), - [sym_filesize_unit] = ACTIONS(1655), - [sym_duration_unit] = ACTIONS(1655), - [anon_sym_0o] = ACTIONS(1653), - [anon_sym_0x] = ACTIONS(1653), - [sym_val_date] = ACTIONS(1655), - [anon_sym_DQUOTE] = ACTIONS(1655), - [sym__str_single_quotes] = ACTIONS(1655), - [sym__str_back_ticks] = ACTIONS(1655), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1655), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1655), - [anon_sym_err_GT] = ACTIONS(1653), - [anon_sym_out_GT] = ACTIONS(1653), - [anon_sym_e_GT] = ACTIONS(1653), - [anon_sym_o_GT] = ACTIONS(1653), - [anon_sym_err_PLUSout_GT] = ACTIONS(1653), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1653), - [anon_sym_o_PLUSe_GT] = ACTIONS(1653), - [anon_sym_e_PLUSo_GT] = ACTIONS(1653), - [anon_sym_err_GT_GT] = ACTIONS(1655), - [anon_sym_out_GT_GT] = ACTIONS(1655), - [anon_sym_e_GT_GT] = ACTIONS(1655), - [anon_sym_o_GT_GT] = ACTIONS(1655), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1655), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1655), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1655), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1655), - [aux_sym_unquoted_token1] = ACTIONS(1653), - [aux_sym_unquoted_token2] = ACTIONS(1653), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(4183), + [anon_sym_false] = ACTIONS(4183), + [anon_sym_null] = ACTIONS(4185), + [aux_sym_cmd_identifier_token38] = ACTIONS(4187), + [aux_sym_cmd_identifier_token39] = ACTIONS(4187), + [aux_sym_cmd_identifier_token40] = ACTIONS(4187), + [anon_sym_LBRACK] = ACTIONS(2880), + [anon_sym_LPAREN] = ACTIONS(4189), + [anon_sym_DOLLAR] = ACTIONS(4171), + [anon_sym_LBRACE] = ACTIONS(2890), + [anon_sym_DOT_DOT] = ACTIONS(4191), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4193), + [anon_sym_DOT_DOT_LT] = ACTIONS(4193), + [aux_sym__val_number_decimal_token1] = ACTIONS(4195), + [aux_sym__val_number_decimal_token2] = ACTIONS(4197), + [aux_sym__val_number_decimal_token3] = ACTIONS(4199), + [aux_sym__val_number_decimal_token4] = ACTIONS(4201), + [aux_sym__val_number_token1] = ACTIONS(2904), + [aux_sym__val_number_token2] = ACTIONS(2904), + [aux_sym__val_number_token3] = ACTIONS(2904), + [anon_sym_0b] = ACTIONS(2906), + [anon_sym_0o] = ACTIONS(2908), + [anon_sym_0x] = ACTIONS(2908), + [sym_val_date] = ACTIONS(4203), + [anon_sym_DQUOTE] = ACTIONS(2912), + [sym__str_single_quotes] = ACTIONS(2914), + [sym__str_back_ticks] = ACTIONS(2914), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2916), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2918), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(4205), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2922), }, [1121] = { - [sym_cell_path] = STATE(1410), - [sym_path] = STATE(1292), + [sym__val_range] = STATE(7794), + [sym__value] = STATE(6062), + [sym_val_nothing] = STATE(4884), + [sym_val_bool] = STATE(6707), + [sym_val_variable] = STATE(4884), + [sym_val_number] = STATE(4884), + [sym__val_number_decimal] = STATE(5378), + [sym__val_number] = STATE(5078), + [sym_val_duration] = STATE(4884), + [sym_val_filesize] = STATE(4884), + [sym_val_binary] = STATE(4884), + [sym_val_string] = STATE(4884), + [sym__raw_str] = STATE(4434), + [sym__str_double_quotes] = STATE(4434), + [sym_val_interpolated] = STATE(4884), + [sym__inter_single_quotes] = STATE(4936), + [sym__inter_double_quotes] = STATE(4937), + [sym_val_list] = STATE(4884), + [sym_val_record] = STATE(4884), + [sym_val_table] = STATE(4884), + [sym_val_closure] = STATE(4884), + [sym_unquoted] = STATE(6089), + [sym__unquoted_anonymous_prefix] = STATE(7859), [sym_comment] = STATE(1121), - [aux_sym_cell_path_repeat1] = STATE(1230), - [anon_sym_true] = ACTIONS(1007), - [anon_sym_false] = ACTIONS(1007), - [anon_sym_null] = ACTIONS(1007), - [aux_sym_cmd_identifier_token38] = ACTIONS(1007), - [aux_sym_cmd_identifier_token39] = ACTIONS(1007), - [aux_sym_cmd_identifier_token40] = ACTIONS(1007), - [sym__newline] = ACTIONS(1007), - [anon_sym_SEMI] = ACTIONS(1007), - [anon_sym_PIPE] = ACTIONS(1007), - [anon_sym_err_GT_PIPE] = ACTIONS(1007), - [anon_sym_out_GT_PIPE] = ACTIONS(1007), - [anon_sym_e_GT_PIPE] = ACTIONS(1007), - [anon_sym_o_GT_PIPE] = ACTIONS(1007), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1007), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1007), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1007), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1007), - [anon_sym_LBRACK] = ACTIONS(1007), - [anon_sym_LPAREN] = ACTIONS(1007), - [anon_sym_RPAREN] = ACTIONS(1007), - [anon_sym_DOLLAR] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1007), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_LBRACE] = ACTIONS(1007), - [anon_sym_RBRACE] = ACTIONS(1007), - [anon_sym_DOT_DOT] = ACTIONS(1005), - [anon_sym_DOT_DOT2] = ACTIONS(1005), - [anon_sym_DOT] = ACTIONS(4019), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1005), - [anon_sym_DOT_DOT_LT] = ACTIONS(1005), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1007), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1007), - [aux_sym__val_number_decimal_token1] = ACTIONS(1005), - [aux_sym__val_number_decimal_token2] = ACTIONS(1007), - [aux_sym__val_number_decimal_token3] = ACTIONS(1007), - [aux_sym__val_number_decimal_token4] = ACTIONS(1007), - [aux_sym__val_number_token1] = ACTIONS(1007), - [aux_sym__val_number_token2] = ACTIONS(1007), - [aux_sym__val_number_token3] = ACTIONS(1007), - [anon_sym_0b] = ACTIONS(1005), - [anon_sym_0o] = ACTIONS(1005), - [anon_sym_0x] = ACTIONS(1005), - [sym_val_date] = ACTIONS(1007), - [anon_sym_DQUOTE] = ACTIONS(1007), - [sym__str_single_quotes] = ACTIONS(1007), - [sym__str_back_ticks] = ACTIONS(1007), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1007), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1007), - [anon_sym_err_GT] = ACTIONS(1005), - [anon_sym_out_GT] = ACTIONS(1005), - [anon_sym_e_GT] = ACTIONS(1005), - [anon_sym_o_GT] = ACTIONS(1005), - [anon_sym_err_PLUSout_GT] = ACTIONS(1005), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1005), - [anon_sym_o_PLUSe_GT] = ACTIONS(1005), - [anon_sym_e_PLUSo_GT] = ACTIONS(1005), - [anon_sym_err_GT_GT] = ACTIONS(1007), - [anon_sym_out_GT_GT] = ACTIONS(1007), - [anon_sym_e_GT_GT] = ACTIONS(1007), - [anon_sym_o_GT_GT] = ACTIONS(1007), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1007), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1007), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1007), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1007), - [aux_sym_unquoted_token1] = ACTIONS(1005), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(4207), + [anon_sym_false] = ACTIONS(4207), + [anon_sym_null] = ACTIONS(4209), + [aux_sym_cmd_identifier_token38] = ACTIONS(4211), + [aux_sym_cmd_identifier_token39] = ACTIONS(4211), + [aux_sym_cmd_identifier_token40] = ACTIONS(4211), + [anon_sym_LBRACK] = ACTIONS(4093), + [anon_sym_LPAREN] = ACTIONS(4018), + [anon_sym_DOLLAR] = ACTIONS(4095), + [anon_sym_LBRACE] = ACTIONS(4097), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4026), + [anon_sym_DOT_DOT_LT] = ACTIONS(4026), + [aux_sym__val_number_decimal_token1] = ACTIONS(4213), + [aux_sym__val_number_decimal_token2] = ACTIONS(4215), + [aux_sym__val_number_decimal_token3] = ACTIONS(4217), + [aux_sym__val_number_decimal_token4] = ACTIONS(4219), + [aux_sym__val_number_token1] = ACTIONS(3584), + [aux_sym__val_number_token2] = ACTIONS(3584), + [aux_sym__val_number_token3] = ACTIONS(3584), + [anon_sym_0b] = ACTIONS(3586), + [anon_sym_0o] = ACTIONS(3588), + [anon_sym_0x] = ACTIONS(3588), + [sym_val_date] = ACTIONS(4221), + [anon_sym_DQUOTE] = ACTIONS(3842), + [sym__str_single_quotes] = ACTIONS(3844), + [sym__str_back_ticks] = ACTIONS(3844), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3596), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3598), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3846), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3848), }, [1122] = { + [sym__val_range] = STATE(7843), + [sym__value] = STATE(1744), + [sym_val_nothing] = STATE(1819), + [sym_val_bool] = STATE(1620), + [sym_val_variable] = STATE(1819), + [sym_val_number] = STATE(1819), + [sym__val_number_decimal] = STATE(1269), + [sym__val_number] = STATE(1792), + [sym_val_duration] = STATE(1819), + [sym_val_filesize] = STATE(1819), + [sym_val_binary] = STATE(1819), + [sym_val_string] = STATE(1819), + [sym__raw_str] = STATE(1795), + [sym__str_double_quotes] = STATE(1795), + [sym_val_interpolated] = STATE(1819), + [sym__inter_single_quotes] = STATE(1749), + [sym__inter_double_quotes] = STATE(1750), + [sym_val_list] = STATE(1819), + [sym_val_record] = STATE(1819), + [sym_val_table] = STATE(1819), + [sym_val_closure] = STATE(1819), + [sym_unquoted] = STATE(1752), + [sym__unquoted_anonymous_prefix] = STATE(7992), [sym_comment] = STATE(1122), - [anon_sym_true] = ACTIONS(1669), - [anon_sym_false] = ACTIONS(1669), - [anon_sym_null] = ACTIONS(1669), - [aux_sym_cmd_identifier_token38] = ACTIONS(1669), - [aux_sym_cmd_identifier_token39] = ACTIONS(1669), - [aux_sym_cmd_identifier_token40] = ACTIONS(1669), - [sym__newline] = ACTIONS(1669), - [anon_sym_SEMI] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1669), - [anon_sym_err_GT_PIPE] = ACTIONS(1669), - [anon_sym_out_GT_PIPE] = ACTIONS(1669), - [anon_sym_e_GT_PIPE] = ACTIONS(1669), - [anon_sym_o_GT_PIPE] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), - [anon_sym_LBRACK] = ACTIONS(1669), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_RPAREN] = ACTIONS(1669), - [anon_sym_DOLLAR] = ACTIONS(1667), - [anon_sym_DASH_DASH] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_LBRACE] = ACTIONS(1669), - [anon_sym_RBRACE] = ACTIONS(1669), - [anon_sym_DOT_DOT] = ACTIONS(1667), - [anon_sym_LPAREN2] = ACTIONS(1669), - [anon_sym_DOT_DOT2] = ACTIONS(1667), - [anon_sym_DOT] = ACTIONS(4067), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1667), - [anon_sym_DOT_DOT_LT] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [aux_sym__immediate_decimal_token2] = ACTIONS(4069), - [aux_sym__val_number_decimal_token1] = ACTIONS(1667), - [aux_sym__val_number_decimal_token2] = ACTIONS(1669), - [aux_sym__val_number_decimal_token3] = ACTIONS(1669), - [aux_sym__val_number_decimal_token4] = ACTIONS(1669), - [aux_sym__val_number_token1] = ACTIONS(1669), - [aux_sym__val_number_token2] = ACTIONS(1669), - [aux_sym__val_number_token3] = ACTIONS(1669), - [anon_sym_0b] = ACTIONS(1667), - [anon_sym_0o] = ACTIONS(1667), - [anon_sym_0x] = ACTIONS(1667), - [sym_val_date] = ACTIONS(1669), - [anon_sym_DQUOTE] = ACTIONS(1669), - [sym__str_single_quotes] = ACTIONS(1669), - [sym__str_back_ticks] = ACTIONS(1669), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1669), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1669), - [anon_sym_err_GT] = ACTIONS(1667), - [anon_sym_out_GT] = ACTIONS(1667), - [anon_sym_e_GT] = ACTIONS(1667), - [anon_sym_o_GT] = ACTIONS(1667), - [anon_sym_err_PLUSout_GT] = ACTIONS(1667), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1667), - [anon_sym_o_PLUSe_GT] = ACTIONS(1667), - [anon_sym_e_PLUSo_GT] = ACTIONS(1667), - [anon_sym_err_GT_GT] = ACTIONS(1669), - [anon_sym_out_GT_GT] = ACTIONS(1669), - [anon_sym_e_GT_GT] = ACTIONS(1669), - [anon_sym_o_GT_GT] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1669), - [aux_sym_unquoted_token1] = ACTIONS(1667), - [aux_sym_unquoted_token2] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(4183), + [anon_sym_false] = ACTIONS(4183), + [anon_sym_null] = ACTIONS(4185), + [aux_sym_cmd_identifier_token38] = ACTIONS(4187), + [aux_sym_cmd_identifier_token39] = ACTIONS(4187), + [aux_sym_cmd_identifier_token40] = ACTIONS(4187), + [anon_sym_LBRACK] = ACTIONS(2880), + [anon_sym_LPAREN] = ACTIONS(4189), + [anon_sym_DOLLAR] = ACTIONS(4171), + [anon_sym_LBRACE] = ACTIONS(2890), + [anon_sym_DOT_DOT] = ACTIONS(4191), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4193), + [anon_sym_DOT_DOT_LT] = ACTIONS(4193), + [aux_sym__val_number_decimal_token1] = ACTIONS(4195), + [aux_sym__val_number_decimal_token2] = ACTIONS(4197), + [aux_sym__val_number_decimal_token3] = ACTIONS(4199), + [aux_sym__val_number_decimal_token4] = ACTIONS(4201), + [aux_sym__val_number_token1] = ACTIONS(2904), + [aux_sym__val_number_token2] = ACTIONS(2904), + [aux_sym__val_number_token3] = ACTIONS(2904), + [anon_sym_0b] = ACTIONS(2906), + [anon_sym_0o] = ACTIONS(2908), + [anon_sym_0x] = ACTIONS(2908), + [sym_val_date] = ACTIONS(4203), + [anon_sym_DQUOTE] = ACTIONS(2912), + [sym__str_single_quotes] = ACTIONS(2914), + [sym__str_back_ticks] = ACTIONS(2914), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2916), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2918), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(4205), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2922), }, [1123] = { + [sym__val_range] = STATE(7794), + [sym__value] = STATE(6013), + [sym_val_nothing] = STATE(4884), + [sym_val_bool] = STATE(6707), + [sym_val_variable] = STATE(4884), + [sym_val_number] = STATE(4884), + [sym__val_number_decimal] = STATE(5378), + [sym__val_number] = STATE(5078), + [sym_val_duration] = STATE(4884), + [sym_val_filesize] = STATE(4884), + [sym_val_binary] = STATE(4884), + [sym_val_string] = STATE(4884), + [sym__raw_str] = STATE(4434), + [sym__str_double_quotes] = STATE(4434), + [sym_val_interpolated] = STATE(4884), + [sym__inter_single_quotes] = STATE(4936), + [sym__inter_double_quotes] = STATE(4937), + [sym_val_list] = STATE(4884), + [sym_val_record] = STATE(4884), + [sym_val_table] = STATE(4884), + [sym_val_closure] = STATE(4884), + [sym_unquoted] = STATE(6128), + [sym__unquoted_anonymous_prefix] = STATE(7859), [sym_comment] = STATE(1123), - [ts_builtin_sym_end] = ACTIONS(1520), - [anon_sym_true] = ACTIONS(1520), - [anon_sym_false] = ACTIONS(1520), - [anon_sym_null] = ACTIONS(1520), - [aux_sym_cmd_identifier_token38] = ACTIONS(1520), - [aux_sym_cmd_identifier_token39] = ACTIONS(1520), - [aux_sym_cmd_identifier_token40] = ACTIONS(1520), - [sym__newline] = ACTIONS(1520), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_err_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_GT_PIPE] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1520), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_DOLLAR] = ACTIONS(1518), - [anon_sym_DASH_DASH] = ACTIONS(1520), - [anon_sym_DASH] = ACTIONS(1518), - [anon_sym_LBRACE] = ACTIONS(1520), - [anon_sym_DOT_DOT] = ACTIONS(1518), - [anon_sym_DOT_DOT2] = ACTIONS(1518), - [anon_sym_DOT] = ACTIONS(4071), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1518), - [anon_sym_DOT_DOT_LT] = ACTIONS(1518), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), - [aux_sym__immediate_decimal_token2] = ACTIONS(4073), - [aux_sym__val_number_decimal_token1] = ACTIONS(1518), - [aux_sym__val_number_decimal_token2] = ACTIONS(1520), - [aux_sym__val_number_decimal_token3] = ACTIONS(1520), - [aux_sym__val_number_decimal_token4] = ACTIONS(1520), - [aux_sym__val_number_token1] = ACTIONS(1520), - [aux_sym__val_number_token2] = ACTIONS(1520), - [aux_sym__val_number_token3] = ACTIONS(1520), - [anon_sym_0b] = ACTIONS(1518), - [sym_filesize_unit] = ACTIONS(1520), - [sym_duration_unit] = ACTIONS(1520), - [anon_sym_0o] = ACTIONS(1518), - [anon_sym_0x] = ACTIONS(1518), - [sym_val_date] = ACTIONS(1520), - [anon_sym_DQUOTE] = ACTIONS(1520), - [sym__str_single_quotes] = ACTIONS(1520), - [sym__str_back_ticks] = ACTIONS(1520), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1520), - [anon_sym_err_GT] = ACTIONS(1518), - [anon_sym_out_GT] = ACTIONS(1518), - [anon_sym_e_GT] = ACTIONS(1518), - [anon_sym_o_GT] = ACTIONS(1518), - [anon_sym_err_PLUSout_GT] = ACTIONS(1518), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), - [anon_sym_o_PLUSe_GT] = ACTIONS(1518), - [anon_sym_e_PLUSo_GT] = ACTIONS(1518), - [anon_sym_err_GT_GT] = ACTIONS(1520), - [anon_sym_out_GT_GT] = ACTIONS(1520), - [anon_sym_e_GT_GT] = ACTIONS(1520), - [anon_sym_o_GT_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1520), - [aux_sym_unquoted_token1] = ACTIONS(1518), - [aux_sym_unquoted_token2] = ACTIONS(1518), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(4207), + [anon_sym_false] = ACTIONS(4207), + [anon_sym_null] = ACTIONS(4209), + [aux_sym_cmd_identifier_token38] = ACTIONS(4211), + [aux_sym_cmd_identifier_token39] = ACTIONS(4211), + [aux_sym_cmd_identifier_token40] = ACTIONS(4211), + [anon_sym_LBRACK] = ACTIONS(4093), + [anon_sym_LPAREN] = ACTIONS(4018), + [anon_sym_DOLLAR] = ACTIONS(4095), + [anon_sym_LBRACE] = ACTIONS(4097), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4026), + [anon_sym_DOT_DOT_LT] = ACTIONS(4026), + [aux_sym__val_number_decimal_token1] = ACTIONS(4213), + [aux_sym__val_number_decimal_token2] = ACTIONS(4215), + [aux_sym__val_number_decimal_token3] = ACTIONS(4217), + [aux_sym__val_number_decimal_token4] = ACTIONS(4219), + [aux_sym__val_number_token1] = ACTIONS(3584), + [aux_sym__val_number_token2] = ACTIONS(3584), + [aux_sym__val_number_token3] = ACTIONS(3584), + [anon_sym_0b] = ACTIONS(3586), + [anon_sym_0o] = ACTIONS(3588), + [anon_sym_0x] = ACTIONS(3588), + [sym_val_date] = ACTIONS(4221), + [anon_sym_DQUOTE] = ACTIONS(3842), + [sym__str_single_quotes] = ACTIONS(3844), + [sym__str_back_ticks] = ACTIONS(3844), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3596), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3598), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3846), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3848), }, [1124] = { [sym_comment] = STATE(1124), - [ts_builtin_sym_end] = ACTIONS(1542), - [anon_sym_true] = ACTIONS(1542), - [anon_sym_false] = ACTIONS(1542), - [anon_sym_null] = ACTIONS(1542), - [aux_sym_cmd_identifier_token38] = ACTIONS(1542), - [aux_sym_cmd_identifier_token39] = ACTIONS(1542), - [aux_sym_cmd_identifier_token40] = ACTIONS(1542), - [sym__newline] = ACTIONS(1542), - [anon_sym_SEMI] = ACTIONS(1542), - [anon_sym_PIPE] = ACTIONS(1542), - [anon_sym_err_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_GT_PIPE] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1542), - [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_LPAREN] = ACTIONS(1542), - [anon_sym_DOLLAR] = ACTIONS(1540), - [anon_sym_DASH_DASH] = ACTIONS(1542), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_LBRACE] = ACTIONS(1542), - [anon_sym_DOT_DOT] = ACTIONS(1540), - [anon_sym_DOT_DOT2] = ACTIONS(1540), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1540), - [anon_sym_DOT_DOT_LT] = ACTIONS(1540), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1542), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1542), - [aux_sym__immediate_decimal_token1] = ACTIONS(4075), - [aux_sym__immediate_decimal_token2] = ACTIONS(4077), - [aux_sym__val_number_decimal_token1] = ACTIONS(1540), - [aux_sym__val_number_decimal_token2] = ACTIONS(1542), - [aux_sym__val_number_decimal_token3] = ACTIONS(1542), - [aux_sym__val_number_decimal_token4] = ACTIONS(1542), - [aux_sym__val_number_token1] = ACTIONS(1542), - [aux_sym__val_number_token2] = ACTIONS(1542), - [aux_sym__val_number_token3] = ACTIONS(1542), - [anon_sym_0b] = ACTIONS(1540), - [sym_filesize_unit] = ACTIONS(1542), - [sym_duration_unit] = ACTIONS(1542), - [anon_sym_0o] = ACTIONS(1540), - [anon_sym_0x] = ACTIONS(1540), - [sym_val_date] = ACTIONS(1542), - [anon_sym_DQUOTE] = ACTIONS(1542), - [sym__str_single_quotes] = ACTIONS(1542), - [sym__str_back_ticks] = ACTIONS(1542), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1542), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1542), - [anon_sym_err_GT] = ACTIONS(1540), - [anon_sym_out_GT] = ACTIONS(1540), - [anon_sym_e_GT] = ACTIONS(1540), - [anon_sym_o_GT] = ACTIONS(1540), - [anon_sym_err_PLUSout_GT] = ACTIONS(1540), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1540), - [anon_sym_o_PLUSe_GT] = ACTIONS(1540), - [anon_sym_e_PLUSo_GT] = ACTIONS(1540), - [anon_sym_err_GT_GT] = ACTIONS(1542), - [anon_sym_out_GT_GT] = ACTIONS(1542), - [anon_sym_e_GT_GT] = ACTIONS(1542), - [anon_sym_o_GT_GT] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1542), - [aux_sym_unquoted_token1] = ACTIONS(1540), - [aux_sym_unquoted_token2] = ACTIONS(1540), - [anon_sym_POUND] = ACTIONS(247), + [ts_builtin_sym_end] = ACTIONS(1530), + [anon_sym_true] = ACTIONS(1530), + [anon_sym_false] = ACTIONS(1530), + [anon_sym_null] = ACTIONS(1530), + [aux_sym_cmd_identifier_token38] = ACTIONS(1530), + [aux_sym_cmd_identifier_token39] = ACTIONS(1530), + [aux_sym_cmd_identifier_token40] = ACTIONS(1530), + [sym__newline] = ACTIONS(1530), + [anon_sym_SEMI] = ACTIONS(1530), + [anon_sym_PIPE] = ACTIONS(1530), + [anon_sym_err_GT_PIPE] = ACTIONS(1530), + [anon_sym_out_GT_PIPE] = ACTIONS(1530), + [anon_sym_e_GT_PIPE] = ACTIONS(1530), + [anon_sym_o_GT_PIPE] = ACTIONS(1530), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1530), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1530), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1530), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1530), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_DOLLAR] = ACTIONS(1528), + [anon_sym_DASH_DASH] = ACTIONS(1530), + [anon_sym_DASH] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(1530), + [anon_sym_DOT_DOT] = ACTIONS(1528), + [anon_sym_LPAREN2] = ACTIONS(1530), + [anon_sym_DOT_DOT2] = ACTIONS(1528), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1528), + [anon_sym_DOT_DOT_LT] = ACTIONS(1528), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1530), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1530), + [aux_sym__immediate_decimal_token1] = ACTIONS(4223), + [aux_sym__immediate_decimal_token2] = ACTIONS(4225), + [aux_sym__val_number_decimal_token1] = ACTIONS(1528), + [aux_sym__val_number_decimal_token2] = ACTIONS(1530), + [aux_sym__val_number_decimal_token3] = ACTIONS(1530), + [aux_sym__val_number_decimal_token4] = ACTIONS(1530), + [aux_sym__val_number_token1] = ACTIONS(1530), + [aux_sym__val_number_token2] = ACTIONS(1530), + [aux_sym__val_number_token3] = ACTIONS(1530), + [anon_sym_0b] = ACTIONS(1528), + [sym_filesize_unit] = ACTIONS(1530), + [sym_duration_unit] = ACTIONS(1530), + [anon_sym_0o] = ACTIONS(1528), + [anon_sym_0x] = ACTIONS(1528), + [sym_val_date] = ACTIONS(1530), + [anon_sym_DQUOTE] = ACTIONS(1530), + [sym__str_single_quotes] = ACTIONS(1530), + [sym__str_back_ticks] = ACTIONS(1530), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1530), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1530), + [anon_sym_err_GT] = ACTIONS(1528), + [anon_sym_out_GT] = ACTIONS(1528), + [anon_sym_e_GT] = ACTIONS(1528), + [anon_sym_o_GT] = ACTIONS(1528), + [anon_sym_err_PLUSout_GT] = ACTIONS(1528), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), + [anon_sym_o_PLUSe_GT] = ACTIONS(1528), + [anon_sym_e_PLUSo_GT] = ACTIONS(1528), + [anon_sym_err_GT_GT] = ACTIONS(1530), + [anon_sym_out_GT_GT] = ACTIONS(1530), + [anon_sym_e_GT_GT] = ACTIONS(1530), + [anon_sym_o_GT_GT] = ACTIONS(1530), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1530), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1530), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1530), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1530), + [aux_sym_unquoted_token1] = ACTIONS(1528), + [aux_sym_unquoted_token2] = ACTIONS(1528), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1530), }, [1125] = { - [sym__match_pattern_expression] = STATE(3060), - [sym__match_pattern_value] = STATE(3093), - [sym__match_pattern_list] = STATE(3094), - [sym__match_pattern_rest] = STATE(7626), - [sym__match_pattern_record] = STATE(3095), - [sym_expr_parenthesized] = STATE(2884), - [sym_val_range] = STATE(3093), - [sym__val_range] = STATE(7378), - [sym_val_nothing] = STATE(3096), - [sym_val_bool] = STATE(3015), - [sym_val_variable] = STATE(2885), - [sym_val_number] = STATE(3096), - [sym__val_number_decimal] = STATE(2627), - [sym__val_number] = STATE(3088), - [sym_val_duration] = STATE(3096), - [sym_val_filesize] = STATE(3096), - [sym_val_binary] = STATE(3096), - [sym_val_string] = STATE(3096), - [sym__str_double_quotes] = STATE(3056), - [sym_val_table] = STATE(3096), - [sym__unquoted_in_list] = STATE(3060), - [sym__unquoted_anonymous_prefix] = STATE(7454), + [sym__val_range] = STATE(7794), + [sym__value] = STATE(6062), + [sym_val_nothing] = STATE(4884), + [sym_val_bool] = STATE(7202), + [sym_val_variable] = STATE(4884), + [sym_val_number] = STATE(4884), + [sym__val_number_decimal] = STATE(5569), + [sym__val_number] = STATE(5078), + [sym_val_duration] = STATE(4884), + [sym_val_filesize] = STATE(4884), + [sym_val_binary] = STATE(4884), + [sym_val_string] = STATE(4884), + [sym__raw_str] = STATE(4434), + [sym__str_double_quotes] = STATE(4434), + [sym_val_interpolated] = STATE(4884), + [sym__inter_single_quotes] = STATE(4936), + [sym__inter_double_quotes] = STATE(4937), + [sym_val_list] = STATE(4884), + [sym_val_record] = STATE(4884), + [sym_val_table] = STATE(4884), + [sym_val_closure] = STATE(4884), + [sym_unquoted] = STATE(6089), + [sym__unquoted_anonymous_prefix] = STATE(7859), [sym_comment] = STATE(1125), - [aux_sym__match_pattern_list_repeat1] = STATE(1232), - [anon_sym_true] = ACTIONS(3699), - [anon_sym_false] = ACTIONS(3699), - [anon_sym_null] = ACTIONS(3701), - [aux_sym_cmd_identifier_token38] = ACTIONS(3703), - [aux_sym_cmd_identifier_token39] = ACTIONS(3703), - [aux_sym_cmd_identifier_token40] = ACTIONS(3703), - [anon_sym_LBRACK] = ACTIONS(4079), - [anon_sym_RBRACK] = ACTIONS(4081), - [anon_sym_LPAREN] = ACTIONS(3711), - [anon_sym_DOLLAR] = ACTIONS(3713), - [anon_sym_LBRACE] = ACTIONS(3715), - [anon_sym_DOT_DOT] = ACTIONS(4083), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3719), - [anon_sym_DOT_DOT_LT] = ACTIONS(3719), - [aux_sym__val_number_decimal_token1] = ACTIONS(3721), - [aux_sym__val_number_decimal_token2] = ACTIONS(3723), - [aux_sym__val_number_decimal_token3] = ACTIONS(3725), - [aux_sym__val_number_decimal_token4] = ACTIONS(3727), - [aux_sym__val_number_token1] = ACTIONS(3729), - [aux_sym__val_number_token2] = ACTIONS(3729), - [aux_sym__val_number_token3] = ACTIONS(3729), - [anon_sym_0b] = ACTIONS(3731), - [anon_sym_0o] = ACTIONS(3733), - [anon_sym_0x] = ACTIONS(3733), - [sym_val_date] = ACTIONS(3735), - [anon_sym_DQUOTE] = ACTIONS(3737), - [sym__str_single_quotes] = ACTIONS(3739), - [sym__str_back_ticks] = ACTIONS(3739), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [anon_sym_err_GT_GT] = ACTIONS(2589), - [anon_sym_out_GT_GT] = ACTIONS(2589), - [anon_sym_e_GT_GT] = ACTIONS(2589), - [anon_sym_o_GT_GT] = ACTIONS(2589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3741), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(4087), + [anon_sym_false] = ACTIONS(4087), + [anon_sym_null] = ACTIONS(4089), + [aux_sym_cmd_identifier_token38] = ACTIONS(4091), + [aux_sym_cmd_identifier_token39] = ACTIONS(4091), + [aux_sym_cmd_identifier_token40] = ACTIONS(4091), + [anon_sym_LBRACK] = ACTIONS(4093), + [anon_sym_LPAREN] = ACTIONS(4018), + [anon_sym_DOLLAR] = ACTIONS(4095), + [anon_sym_LBRACE] = ACTIONS(4097), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4026), + [anon_sym_DOT_DOT_LT] = ACTIONS(4026), + [aux_sym__val_number_decimal_token1] = ACTIONS(4099), + [aux_sym__val_number_decimal_token2] = ACTIONS(4101), + [aux_sym__val_number_decimal_token3] = ACTIONS(4103), + [aux_sym__val_number_decimal_token4] = ACTIONS(4105), + [aux_sym__val_number_token1] = ACTIONS(3584), + [aux_sym__val_number_token2] = ACTIONS(3584), + [aux_sym__val_number_token3] = ACTIONS(3584), + [anon_sym_0b] = ACTIONS(3586), + [anon_sym_0o] = ACTIONS(3588), + [anon_sym_0x] = ACTIONS(3588), + [sym_val_date] = ACTIONS(4107), + [anon_sym_DQUOTE] = ACTIONS(3842), + [sym__str_single_quotes] = ACTIONS(3844), + [sym__str_back_ticks] = ACTIONS(3844), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3596), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3598), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3846), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3848), }, [1126] = { + [sym__val_range] = STATE(7794), + [sym__value] = STATE(5997), + [sym_val_nothing] = STATE(4884), + [sym_val_bool] = STATE(6707), + [sym_val_variable] = STATE(4884), + [sym_val_number] = STATE(4884), + [sym__val_number_decimal] = STATE(5378), + [sym__val_number] = STATE(5078), + [sym_val_duration] = STATE(4884), + [sym_val_filesize] = STATE(4884), + [sym_val_binary] = STATE(4884), + [sym_val_string] = STATE(4884), + [sym__raw_str] = STATE(4434), + [sym__str_double_quotes] = STATE(4434), + [sym_val_interpolated] = STATE(4884), + [sym__inter_single_quotes] = STATE(4936), + [sym__inter_double_quotes] = STATE(4937), + [sym_val_list] = STATE(4884), + [sym_val_record] = STATE(4884), + [sym_val_table] = STATE(4884), + [sym_val_closure] = STATE(4884), + [sym_unquoted] = STATE(6052), + [sym__unquoted_anonymous_prefix] = STATE(7859), [sym_comment] = STATE(1126), - [anon_sym_true] = ACTIONS(1520), - [anon_sym_false] = ACTIONS(1520), - [anon_sym_null] = ACTIONS(1520), - [aux_sym_cmd_identifier_token38] = ACTIONS(1520), - [aux_sym_cmd_identifier_token39] = ACTIONS(1520), - [aux_sym_cmd_identifier_token40] = ACTIONS(1520), - [sym__newline] = ACTIONS(1520), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_err_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_GT_PIPE] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1520), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_RPAREN] = ACTIONS(1520), - [anon_sym_DOLLAR] = ACTIONS(1518), - [anon_sym_DASH_DASH] = ACTIONS(1520), - [anon_sym_DASH] = ACTIONS(1518), - [anon_sym_LBRACE] = ACTIONS(1520), - [anon_sym_RBRACE] = ACTIONS(1520), - [anon_sym_DOT_DOT] = ACTIONS(1518), - [anon_sym_DOT_DOT2] = ACTIONS(1518), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1518), - [anon_sym_DOT_DOT_LT] = ACTIONS(1518), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), - [aux_sym__immediate_decimal_token2] = ACTIONS(3969), - [aux_sym__val_number_decimal_token1] = ACTIONS(1518), - [aux_sym__val_number_decimal_token2] = ACTIONS(1520), - [aux_sym__val_number_decimal_token3] = ACTIONS(1520), - [aux_sym__val_number_decimal_token4] = ACTIONS(1520), - [aux_sym__val_number_token1] = ACTIONS(1520), - [aux_sym__val_number_token2] = ACTIONS(1520), - [aux_sym__val_number_token3] = ACTIONS(1520), - [anon_sym_0b] = ACTIONS(1518), - [sym_filesize_unit] = ACTIONS(1520), - [sym_duration_unit] = ACTIONS(1520), - [anon_sym_0o] = ACTIONS(1518), - [anon_sym_0x] = ACTIONS(1518), - [sym_val_date] = ACTIONS(1520), - [anon_sym_DQUOTE] = ACTIONS(1520), - [sym__str_single_quotes] = ACTIONS(1520), - [sym__str_back_ticks] = ACTIONS(1520), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1520), - [anon_sym_err_GT] = ACTIONS(1518), - [anon_sym_out_GT] = ACTIONS(1518), - [anon_sym_e_GT] = ACTIONS(1518), - [anon_sym_o_GT] = ACTIONS(1518), - [anon_sym_err_PLUSout_GT] = ACTIONS(1518), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), - [anon_sym_o_PLUSe_GT] = ACTIONS(1518), - [anon_sym_e_PLUSo_GT] = ACTIONS(1518), - [anon_sym_err_GT_GT] = ACTIONS(1520), - [anon_sym_out_GT_GT] = ACTIONS(1520), - [anon_sym_e_GT_GT] = ACTIONS(1520), - [anon_sym_o_GT_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1520), - [aux_sym_unquoted_token1] = ACTIONS(1518), - [aux_sym_unquoted_token2] = ACTIONS(1518), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(4207), + [anon_sym_false] = ACTIONS(4207), + [anon_sym_null] = ACTIONS(4209), + [aux_sym_cmd_identifier_token38] = ACTIONS(4211), + [aux_sym_cmd_identifier_token39] = ACTIONS(4211), + [aux_sym_cmd_identifier_token40] = ACTIONS(4211), + [anon_sym_LBRACK] = ACTIONS(4093), + [anon_sym_LPAREN] = ACTIONS(4018), + [anon_sym_DOLLAR] = ACTIONS(4095), + [anon_sym_LBRACE] = ACTIONS(4097), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4026), + [anon_sym_DOT_DOT_LT] = ACTIONS(4026), + [aux_sym__val_number_decimal_token1] = ACTIONS(4213), + [aux_sym__val_number_decimal_token2] = ACTIONS(4215), + [aux_sym__val_number_decimal_token3] = ACTIONS(4217), + [aux_sym__val_number_decimal_token4] = ACTIONS(4219), + [aux_sym__val_number_token1] = ACTIONS(3584), + [aux_sym__val_number_token2] = ACTIONS(3584), + [aux_sym__val_number_token3] = ACTIONS(3584), + [anon_sym_0b] = ACTIONS(3586), + [anon_sym_0o] = ACTIONS(3588), + [anon_sym_0x] = ACTIONS(3588), + [sym_val_date] = ACTIONS(4221), + [anon_sym_DQUOTE] = ACTIONS(3842), + [sym__str_single_quotes] = ACTIONS(3844), + [sym__str_back_ticks] = ACTIONS(3844), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3596), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3598), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3846), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3848), }, [1127] = { + [sym__val_range] = STATE(7676), + [sym__value] = STATE(4964), + [sym_val_nothing] = STATE(5010), + [sym_val_bool] = STATE(4627), + [sym_val_variable] = STATE(5010), + [sym_val_number] = STATE(5010), + [sym__val_number_decimal] = STATE(4122), + [sym__val_number] = STATE(5054), + [sym_val_duration] = STATE(5010), + [sym_val_filesize] = STATE(5010), + [sym_val_binary] = STATE(5010), + [sym_val_string] = STATE(5010), + [sym__raw_str] = STATE(4660), + [sym__str_double_quotes] = STATE(4660), + [sym_val_interpolated] = STATE(5010), + [sym__inter_single_quotes] = STATE(5011), + [sym__inter_double_quotes] = STATE(5012), + [sym_val_list] = STATE(5010), + [sym_val_record] = STATE(5010), + [sym_val_table] = STATE(5010), + [sym_val_closure] = STATE(5010), + [sym_unquoted] = STATE(4965), + [sym__unquoted_anonymous_prefix] = STATE(7883), [sym_comment] = STATE(1127), + [anon_sym_true] = ACTIONS(4227), + [anon_sym_false] = ACTIONS(4227), + [anon_sym_null] = ACTIONS(4229), + [aux_sym_cmd_identifier_token38] = ACTIONS(4231), + [aux_sym_cmd_identifier_token39] = ACTIONS(4231), + [aux_sym_cmd_identifier_token40] = ACTIONS(4231), + [anon_sym_LBRACK] = ACTIONS(4233), + [anon_sym_LPAREN] = ACTIONS(4235), + [anon_sym_DOLLAR] = ACTIONS(4237), + [anon_sym_LBRACE] = ACTIONS(4239), + [anon_sym_DOT_DOT] = ACTIONS(4241), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4243), + [anon_sym_DOT_DOT_LT] = ACTIONS(4243), + [aux_sym__val_number_decimal_token1] = ACTIONS(2147), + [aux_sym__val_number_decimal_token2] = ACTIONS(4245), + [aux_sym__val_number_decimal_token3] = ACTIONS(4247), + [aux_sym__val_number_decimal_token4] = ACTIONS(4249), + [aux_sym__val_number_token1] = ACTIONS(4251), + [aux_sym__val_number_token2] = ACTIONS(4251), + [aux_sym__val_number_token3] = ACTIONS(4251), + [anon_sym_0b] = ACTIONS(2155), + [anon_sym_0o] = ACTIONS(2157), + [anon_sym_0x] = ACTIONS(2157), + [sym_val_date] = ACTIONS(4253), + [anon_sym_DQUOTE] = ACTIONS(4255), + [sym__str_single_quotes] = ACTIONS(4257), + [sym__str_back_ticks] = ACTIONS(4257), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4259), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4261), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(2173), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2175), + }, + [1128] = { + [sym__val_range] = STATE(7794), + [sym__value] = STATE(6044), + [sym_val_nothing] = STATE(4884), + [sym_val_bool] = STATE(6707), + [sym_val_variable] = STATE(4884), + [sym_val_number] = STATE(4884), + [sym__val_number_decimal] = STATE(5378), + [sym__val_number] = STATE(5078), + [sym_val_duration] = STATE(4884), + [sym_val_filesize] = STATE(4884), + [sym_val_binary] = STATE(4884), + [sym_val_string] = STATE(4884), + [sym__raw_str] = STATE(4434), + [sym__str_double_quotes] = STATE(4434), + [sym_val_interpolated] = STATE(4884), + [sym__inter_single_quotes] = STATE(4936), + [sym__inter_double_quotes] = STATE(4937), + [sym_val_list] = STATE(4884), + [sym_val_record] = STATE(4884), + [sym_val_table] = STATE(4884), + [sym_val_closure] = STATE(4884), + [sym_unquoted] = STATE(6070), + [sym__unquoted_anonymous_prefix] = STATE(7859), + [sym_comment] = STATE(1128), + [anon_sym_true] = ACTIONS(4207), + [anon_sym_false] = ACTIONS(4207), + [anon_sym_null] = ACTIONS(4209), + [aux_sym_cmd_identifier_token38] = ACTIONS(4211), + [aux_sym_cmd_identifier_token39] = ACTIONS(4211), + [aux_sym_cmd_identifier_token40] = ACTIONS(4211), + [anon_sym_LBRACK] = ACTIONS(4093), + [anon_sym_LPAREN] = ACTIONS(4018), + [anon_sym_DOLLAR] = ACTIONS(4095), + [anon_sym_LBRACE] = ACTIONS(4097), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4026), + [anon_sym_DOT_DOT_LT] = ACTIONS(4026), + [aux_sym__val_number_decimal_token1] = ACTIONS(4213), + [aux_sym__val_number_decimal_token2] = ACTIONS(4215), + [aux_sym__val_number_decimal_token3] = ACTIONS(4217), + [aux_sym__val_number_decimal_token4] = ACTIONS(4219), + [aux_sym__val_number_token1] = ACTIONS(3584), + [aux_sym__val_number_token2] = ACTIONS(3584), + [aux_sym__val_number_token3] = ACTIONS(3584), + [anon_sym_0b] = ACTIONS(3586), + [anon_sym_0o] = ACTIONS(3588), + [anon_sym_0x] = ACTIONS(3588), + [sym_val_date] = ACTIONS(4221), + [anon_sym_DQUOTE] = ACTIONS(3842), + [sym__str_single_quotes] = ACTIONS(3844), + [sym__str_back_ticks] = ACTIONS(3844), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3596), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3598), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3846), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3848), + }, + [1129] = { + [sym__val_range] = STATE(7676), + [sym__value] = STATE(4968), + [sym_val_nothing] = STATE(5010), + [sym_val_bool] = STATE(4627), + [sym_val_variable] = STATE(5010), + [sym_val_number] = STATE(5010), + [sym__val_number_decimal] = STATE(4122), + [sym__val_number] = STATE(5054), + [sym_val_duration] = STATE(5010), + [sym_val_filesize] = STATE(5010), + [sym_val_binary] = STATE(5010), + [sym_val_string] = STATE(5010), + [sym__raw_str] = STATE(4660), + [sym__str_double_quotes] = STATE(4660), + [sym_val_interpolated] = STATE(5010), + [sym__inter_single_quotes] = STATE(5011), + [sym__inter_double_quotes] = STATE(5012), + [sym_val_list] = STATE(5010), + [sym_val_record] = STATE(5010), + [sym_val_table] = STATE(5010), + [sym_val_closure] = STATE(5010), + [sym_unquoted] = STATE(4969), + [sym__unquoted_anonymous_prefix] = STATE(7883), + [sym_comment] = STATE(1129), + [anon_sym_true] = ACTIONS(4227), + [anon_sym_false] = ACTIONS(4227), + [anon_sym_null] = ACTIONS(4229), + [aux_sym_cmd_identifier_token38] = ACTIONS(4231), + [aux_sym_cmd_identifier_token39] = ACTIONS(4231), + [aux_sym_cmd_identifier_token40] = ACTIONS(4231), + [anon_sym_LBRACK] = ACTIONS(4233), + [anon_sym_LPAREN] = ACTIONS(4235), + [anon_sym_DOLLAR] = ACTIONS(4237), + [anon_sym_LBRACE] = ACTIONS(4239), + [anon_sym_DOT_DOT] = ACTIONS(4241), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4243), + [anon_sym_DOT_DOT_LT] = ACTIONS(4243), + [aux_sym__val_number_decimal_token1] = ACTIONS(2147), + [aux_sym__val_number_decimal_token2] = ACTIONS(4245), + [aux_sym__val_number_decimal_token3] = ACTIONS(4247), + [aux_sym__val_number_decimal_token4] = ACTIONS(4249), + [aux_sym__val_number_token1] = ACTIONS(4251), + [aux_sym__val_number_token2] = ACTIONS(4251), + [aux_sym__val_number_token3] = ACTIONS(4251), + [anon_sym_0b] = ACTIONS(2155), + [anon_sym_0o] = ACTIONS(2157), + [anon_sym_0x] = ACTIONS(2157), + [sym_val_date] = ACTIONS(4253), + [anon_sym_DQUOTE] = ACTIONS(4255), + [sym__str_single_quotes] = ACTIONS(4257), + [sym__str_back_ticks] = ACTIONS(4257), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4259), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4261), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(2173), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2175), + }, + [1130] = { + [sym__val_range] = STATE(7794), + [sym__value] = STATE(6062), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3688), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(5733), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(4434), + [sym__str_double_quotes] = STATE(4434), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(6089), + [sym__unquoted_anonymous_prefix] = STATE(7859), + [sym_comment] = STATE(1130), + [anon_sym_true] = ACTIONS(3350), + [anon_sym_false] = ACTIONS(3350), + [anon_sym_null] = ACTIONS(3352), + [aux_sym_cmd_identifier_token38] = ACTIONS(3828), + [aux_sym_cmd_identifier_token39] = ACTIONS(3828), + [aux_sym_cmd_identifier_token40] = ACTIONS(3828), + [anon_sym_LBRACK] = ACTIONS(3830), + [anon_sym_LPAREN] = ACTIONS(4169), + [anon_sym_DOLLAR] = ACTIONS(4020), + [anon_sym_LBRACE] = ACTIONS(3836), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4026), + [anon_sym_DOT_DOT_LT] = ACTIONS(4026), + [aux_sym__val_number_decimal_token1] = ACTIONS(3366), + [aux_sym__val_number_decimal_token2] = ACTIONS(3368), + [aux_sym__val_number_decimal_token3] = ACTIONS(3370), + [aux_sym__val_number_decimal_token4] = ACTIONS(3372), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3374), + [anon_sym_DQUOTE] = ACTIONS(3842), + [sym__str_single_quotes] = ACTIONS(3844), + [sym__str_back_ticks] = ACTIONS(3844), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3846), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3848), + }, + [1131] = { + [sym__val_range] = STATE(7676), + [sym__value] = STATE(4983), + [sym_val_nothing] = STATE(5010), + [sym_val_bool] = STATE(4627), + [sym_val_variable] = STATE(5010), + [sym_val_number] = STATE(5010), + [sym__val_number_decimal] = STATE(4122), + [sym__val_number] = STATE(5054), + [sym_val_duration] = STATE(5010), + [sym_val_filesize] = STATE(5010), + [sym_val_binary] = STATE(5010), + [sym_val_string] = STATE(5010), + [sym__raw_str] = STATE(4660), + [sym__str_double_quotes] = STATE(4660), + [sym_val_interpolated] = STATE(5010), + [sym__inter_single_quotes] = STATE(5011), + [sym__inter_double_quotes] = STATE(5012), + [sym_val_list] = STATE(5010), + [sym_val_record] = STATE(5010), + [sym_val_table] = STATE(5010), + [sym_val_closure] = STATE(5010), + [sym_unquoted] = STATE(4984), + [sym__unquoted_anonymous_prefix] = STATE(7883), + [sym_comment] = STATE(1131), + [anon_sym_true] = ACTIONS(4227), + [anon_sym_false] = ACTIONS(4227), + [anon_sym_null] = ACTIONS(4229), + [aux_sym_cmd_identifier_token38] = ACTIONS(4231), + [aux_sym_cmd_identifier_token39] = ACTIONS(4231), + [aux_sym_cmd_identifier_token40] = ACTIONS(4231), + [anon_sym_LBRACK] = ACTIONS(4233), + [anon_sym_LPAREN] = ACTIONS(4235), + [anon_sym_DOLLAR] = ACTIONS(4237), + [anon_sym_LBRACE] = ACTIONS(4239), + [anon_sym_DOT_DOT] = ACTIONS(4241), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4243), + [anon_sym_DOT_DOT_LT] = ACTIONS(4243), + [aux_sym__val_number_decimal_token1] = ACTIONS(2147), + [aux_sym__val_number_decimal_token2] = ACTIONS(4245), + [aux_sym__val_number_decimal_token3] = ACTIONS(4247), + [aux_sym__val_number_decimal_token4] = ACTIONS(4249), + [aux_sym__val_number_token1] = ACTIONS(4251), + [aux_sym__val_number_token2] = ACTIONS(4251), + [aux_sym__val_number_token3] = ACTIONS(4251), + [anon_sym_0b] = ACTIONS(2155), + [anon_sym_0o] = ACTIONS(2157), + [anon_sym_0x] = ACTIONS(2157), + [sym_val_date] = ACTIONS(4253), + [anon_sym_DQUOTE] = ACTIONS(4255), + [sym__str_single_quotes] = ACTIONS(4257), + [sym__str_back_ticks] = ACTIONS(4257), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4259), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4261), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(2173), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2175), + }, + [1132] = { + [sym__val_range] = STATE(7973), + [sym__value] = STATE(4822), + [sym_val_nothing] = STATE(4718), + [sym_val_bool] = STATE(6790), + [sym_val_variable] = STATE(4718), + [sym_val_number] = STATE(4718), + [sym__val_number_decimal] = STATE(5577), + [sym__val_number] = STATE(4796), + [sym_val_duration] = STATE(4718), + [sym_val_filesize] = STATE(4718), + [sym_val_binary] = STATE(4718), + [sym_val_string] = STATE(4718), + [sym__raw_str] = STATE(4414), + [sym__str_double_quotes] = STATE(4414), + [sym_val_interpolated] = STATE(4718), + [sym__inter_single_quotes] = STATE(4787), + [sym__inter_double_quotes] = STATE(4810), + [sym_val_list] = STATE(4718), + [sym_val_record] = STATE(4718), + [sym_val_table] = STATE(4718), + [sym_val_closure] = STATE(4718), + [sym_unquoted] = STATE(4848), + [sym__unquoted_anonymous_prefix] = STATE(7802), + [sym_comment] = STATE(1132), + [anon_sym_true] = ACTIONS(4263), + [anon_sym_false] = ACTIONS(4263), + [anon_sym_null] = ACTIONS(4265), + [aux_sym_cmd_identifier_token38] = ACTIONS(4267), + [aux_sym_cmd_identifier_token39] = ACTIONS(4267), + [aux_sym_cmd_identifier_token40] = ACTIONS(4267), + [anon_sym_LBRACK] = ACTIONS(4269), + [anon_sym_LPAREN] = ACTIONS(4271), + [anon_sym_DOLLAR] = ACTIONS(4273), + [anon_sym_LBRACE] = ACTIONS(4275), + [anon_sym_DOT_DOT] = ACTIONS(4277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4279), + [anon_sym_DOT_DOT_LT] = ACTIONS(4279), + [aux_sym__val_number_decimal_token1] = ACTIONS(4281), + [aux_sym__val_number_decimal_token2] = ACTIONS(4283), + [aux_sym__val_number_decimal_token3] = ACTIONS(4285), + [aux_sym__val_number_decimal_token4] = ACTIONS(4287), + [aux_sym__val_number_token1] = ACTIONS(4289), + [aux_sym__val_number_token2] = ACTIONS(4289), + [aux_sym__val_number_token3] = ACTIONS(4289), + [anon_sym_0b] = ACTIONS(1971), + [anon_sym_0o] = ACTIONS(1973), + [anon_sym_0x] = ACTIONS(1973), + [sym_val_date] = ACTIONS(4291), + [anon_sym_DQUOTE] = ACTIONS(4293), + [sym__str_single_quotes] = ACTIONS(4295), + [sym__str_back_ticks] = ACTIONS(4295), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4297), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4299), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(1989), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1991), + }, + [1133] = { + [sym__val_range] = STATE(7794), + [sym__value] = STATE(6013), + [sym_val_nothing] = STATE(4884), + [sym_val_bool] = STATE(7202), + [sym_val_variable] = STATE(4884), + [sym_val_number] = STATE(4884), + [sym__val_number_decimal] = STATE(5569), + [sym__val_number] = STATE(5078), + [sym_val_duration] = STATE(4884), + [sym_val_filesize] = STATE(4884), + [sym_val_binary] = STATE(4884), + [sym_val_string] = STATE(4884), + [sym__raw_str] = STATE(4434), + [sym__str_double_quotes] = STATE(4434), + [sym_val_interpolated] = STATE(4884), + [sym__inter_single_quotes] = STATE(4936), + [sym__inter_double_quotes] = STATE(4937), + [sym_val_list] = STATE(4884), + [sym_val_record] = STATE(4884), + [sym_val_table] = STATE(4884), + [sym_val_closure] = STATE(4884), + [sym_unquoted] = STATE(6128), + [sym__unquoted_anonymous_prefix] = STATE(7859), + [sym_comment] = STATE(1133), + [anon_sym_true] = ACTIONS(4087), + [anon_sym_false] = ACTIONS(4087), + [anon_sym_null] = ACTIONS(4089), + [aux_sym_cmd_identifier_token38] = ACTIONS(4091), + [aux_sym_cmd_identifier_token39] = ACTIONS(4091), + [aux_sym_cmd_identifier_token40] = ACTIONS(4091), + [anon_sym_LBRACK] = ACTIONS(4093), + [anon_sym_LPAREN] = ACTIONS(4018), + [anon_sym_DOLLAR] = ACTIONS(4095), + [anon_sym_LBRACE] = ACTIONS(4097), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4026), + [anon_sym_DOT_DOT_LT] = ACTIONS(4026), + [aux_sym__val_number_decimal_token1] = ACTIONS(4099), + [aux_sym__val_number_decimal_token2] = ACTIONS(4101), + [aux_sym__val_number_decimal_token3] = ACTIONS(4103), + [aux_sym__val_number_decimal_token4] = ACTIONS(4105), + [aux_sym__val_number_token1] = ACTIONS(3584), + [aux_sym__val_number_token2] = ACTIONS(3584), + [aux_sym__val_number_token3] = ACTIONS(3584), + [anon_sym_0b] = ACTIONS(3586), + [anon_sym_0o] = ACTIONS(3588), + [anon_sym_0x] = ACTIONS(3588), + [sym_val_date] = ACTIONS(4107), + [anon_sym_DQUOTE] = ACTIONS(3842), + [sym__str_single_quotes] = ACTIONS(3844), + [sym__str_back_ticks] = ACTIONS(3844), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3596), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3598), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3846), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3848), + }, + [1134] = { + [sym__val_range] = STATE(7973), + [sym__value] = STATE(4706), + [sym_val_nothing] = STATE(4718), + [sym_val_bool] = STATE(6790), + [sym_val_variable] = STATE(4718), + [sym_val_number] = STATE(4718), + [sym__val_number_decimal] = STATE(5577), + [sym__val_number] = STATE(4796), + [sym_val_duration] = STATE(4718), + [sym_val_filesize] = STATE(4718), + [sym_val_binary] = STATE(4718), + [sym_val_string] = STATE(4718), + [sym__raw_str] = STATE(4414), + [sym__str_double_quotes] = STATE(4414), + [sym_val_interpolated] = STATE(4718), + [sym__inter_single_quotes] = STATE(4787), + [sym__inter_double_quotes] = STATE(4810), + [sym_val_list] = STATE(4718), + [sym_val_record] = STATE(4718), + [sym_val_table] = STATE(4718), + [sym_val_closure] = STATE(4718), + [sym_unquoted] = STATE(4707), + [sym__unquoted_anonymous_prefix] = STATE(7802), + [sym_comment] = STATE(1134), + [anon_sym_true] = ACTIONS(4263), + [anon_sym_false] = ACTIONS(4263), + [anon_sym_null] = ACTIONS(4265), + [aux_sym_cmd_identifier_token38] = ACTIONS(4267), + [aux_sym_cmd_identifier_token39] = ACTIONS(4267), + [aux_sym_cmd_identifier_token40] = ACTIONS(4267), + [anon_sym_LBRACK] = ACTIONS(4269), + [anon_sym_LPAREN] = ACTIONS(4271), + [anon_sym_DOLLAR] = ACTIONS(4273), + [anon_sym_LBRACE] = ACTIONS(4275), + [anon_sym_DOT_DOT] = ACTIONS(4277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4279), + [anon_sym_DOT_DOT_LT] = ACTIONS(4279), + [aux_sym__val_number_decimal_token1] = ACTIONS(4281), + [aux_sym__val_number_decimal_token2] = ACTIONS(4283), + [aux_sym__val_number_decimal_token3] = ACTIONS(4285), + [aux_sym__val_number_decimal_token4] = ACTIONS(4287), + [aux_sym__val_number_token1] = ACTIONS(4289), + [aux_sym__val_number_token2] = ACTIONS(4289), + [aux_sym__val_number_token3] = ACTIONS(4289), + [anon_sym_0b] = ACTIONS(1971), + [anon_sym_0o] = ACTIONS(1973), + [anon_sym_0x] = ACTIONS(1973), + [sym_val_date] = ACTIONS(4291), + [anon_sym_DQUOTE] = ACTIONS(4293), + [sym__str_single_quotes] = ACTIONS(4295), + [sym__str_back_ticks] = ACTIONS(4295), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4297), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4299), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(1989), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1991), + }, + [1135] = { + [sym__val_range] = STATE(7973), + [sym__value] = STATE(4757), + [sym_val_nothing] = STATE(4718), + [sym_val_bool] = STATE(6790), + [sym_val_variable] = STATE(4718), + [sym_val_number] = STATE(4718), + [sym__val_number_decimal] = STATE(5577), + [sym__val_number] = STATE(4796), + [sym_val_duration] = STATE(4718), + [sym_val_filesize] = STATE(4718), + [sym_val_binary] = STATE(4718), + [sym_val_string] = STATE(4718), + [sym__raw_str] = STATE(4414), + [sym__str_double_quotes] = STATE(4414), + [sym_val_interpolated] = STATE(4718), + [sym__inter_single_quotes] = STATE(4787), + [sym__inter_double_quotes] = STATE(4810), + [sym_val_list] = STATE(4718), + [sym_val_record] = STATE(4718), + [sym_val_table] = STATE(4718), + [sym_val_closure] = STATE(4718), + [sym_unquoted] = STATE(4759), + [sym__unquoted_anonymous_prefix] = STATE(7802), + [sym_comment] = STATE(1135), + [anon_sym_true] = ACTIONS(4263), + [anon_sym_false] = ACTIONS(4263), + [anon_sym_null] = ACTIONS(4265), + [aux_sym_cmd_identifier_token38] = ACTIONS(4267), + [aux_sym_cmd_identifier_token39] = ACTIONS(4267), + [aux_sym_cmd_identifier_token40] = ACTIONS(4267), + [anon_sym_LBRACK] = ACTIONS(4269), + [anon_sym_LPAREN] = ACTIONS(4271), + [anon_sym_DOLLAR] = ACTIONS(4273), + [anon_sym_LBRACE] = ACTIONS(4275), + [anon_sym_DOT_DOT] = ACTIONS(4277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4279), + [anon_sym_DOT_DOT_LT] = ACTIONS(4279), + [aux_sym__val_number_decimal_token1] = ACTIONS(4281), + [aux_sym__val_number_decimal_token2] = ACTIONS(4283), + [aux_sym__val_number_decimal_token3] = ACTIONS(4285), + [aux_sym__val_number_decimal_token4] = ACTIONS(4287), + [aux_sym__val_number_token1] = ACTIONS(4289), + [aux_sym__val_number_token2] = ACTIONS(4289), + [aux_sym__val_number_token3] = ACTIONS(4289), + [anon_sym_0b] = ACTIONS(1971), + [anon_sym_0o] = ACTIONS(1973), + [anon_sym_0x] = ACTIONS(1973), + [sym_val_date] = ACTIONS(4291), + [anon_sym_DQUOTE] = ACTIONS(4293), + [sym__str_single_quotes] = ACTIONS(4295), + [sym__str_back_ticks] = ACTIONS(4295), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4297), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4299), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(1989), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1991), + }, + [1136] = { + [sym__val_range] = STATE(7973), + [sym__value] = STATE(4822), + [sym_val_nothing] = STATE(4718), + [sym_val_bool] = STATE(4461), + [sym_val_variable] = STATE(4718), + [sym_val_number] = STATE(4718), + [sym__val_number_decimal] = STATE(4108), + [sym__val_number] = STATE(4796), + [sym_val_duration] = STATE(4718), + [sym_val_filesize] = STATE(4718), + [sym_val_binary] = STATE(4718), + [sym_val_string] = STATE(4718), + [sym__raw_str] = STATE(4414), + [sym__str_double_quotes] = STATE(4414), + [sym_val_interpolated] = STATE(4718), + [sym__inter_single_quotes] = STATE(4787), + [sym__inter_double_quotes] = STATE(4810), + [sym_val_list] = STATE(4718), + [sym_val_record] = STATE(4718), + [sym_val_table] = STATE(4718), + [sym_val_closure] = STATE(4718), + [sym_unquoted] = STATE(4848), + [sym__unquoted_anonymous_prefix] = STATE(7802), + [sym_comment] = STATE(1136), + [anon_sym_true] = ACTIONS(4301), + [anon_sym_false] = ACTIONS(4301), + [anon_sym_null] = ACTIONS(4303), + [aux_sym_cmd_identifier_token38] = ACTIONS(4305), + [aux_sym_cmd_identifier_token39] = ACTIONS(4305), + [aux_sym_cmd_identifier_token40] = ACTIONS(4305), + [anon_sym_LBRACK] = ACTIONS(4269), + [anon_sym_LPAREN] = ACTIONS(4271), + [anon_sym_DOLLAR] = ACTIONS(4273), + [anon_sym_LBRACE] = ACTIONS(4275), + [anon_sym_DOT_DOT] = ACTIONS(4277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4279), + [anon_sym_DOT_DOT_LT] = ACTIONS(4279), + [aux_sym__val_number_decimal_token1] = ACTIONS(1963), + [aux_sym__val_number_decimal_token2] = ACTIONS(4307), + [aux_sym__val_number_decimal_token3] = ACTIONS(4309), + [aux_sym__val_number_decimal_token4] = ACTIONS(4311), + [aux_sym__val_number_token1] = ACTIONS(4289), + [aux_sym__val_number_token2] = ACTIONS(4289), + [aux_sym__val_number_token3] = ACTIONS(4289), + [anon_sym_0b] = ACTIONS(1971), + [anon_sym_0o] = ACTIONS(1973), + [anon_sym_0x] = ACTIONS(1973), + [sym_val_date] = ACTIONS(4313), + [anon_sym_DQUOTE] = ACTIONS(4293), + [sym__str_single_quotes] = ACTIONS(4295), + [sym__str_back_ticks] = ACTIONS(4295), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4297), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4299), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(1989), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1991), + }, + [1137] = { + [sym__val_range] = STATE(7973), + [sym__value] = STATE(4812), + [sym_val_nothing] = STATE(4718), + [sym_val_bool] = STATE(6790), + [sym_val_variable] = STATE(4718), + [sym_val_number] = STATE(4718), + [sym__val_number_decimal] = STATE(5577), + [sym__val_number] = STATE(4796), + [sym_val_duration] = STATE(4718), + [sym_val_filesize] = STATE(4718), + [sym_val_binary] = STATE(4718), + [sym_val_string] = STATE(4718), + [sym__raw_str] = STATE(4414), + [sym__str_double_quotes] = STATE(4414), + [sym_val_interpolated] = STATE(4718), + [sym__inter_single_quotes] = STATE(4787), + [sym__inter_double_quotes] = STATE(4810), + [sym_val_list] = STATE(4718), + [sym_val_record] = STATE(4718), + [sym_val_table] = STATE(4718), + [sym_val_closure] = STATE(4718), + [sym_unquoted] = STATE(4813), + [sym__unquoted_anonymous_prefix] = STATE(7802), + [sym_comment] = STATE(1137), + [anon_sym_true] = ACTIONS(4263), + [anon_sym_false] = ACTIONS(4263), + [anon_sym_null] = ACTIONS(4265), + [aux_sym_cmd_identifier_token38] = ACTIONS(4267), + [aux_sym_cmd_identifier_token39] = ACTIONS(4267), + [aux_sym_cmd_identifier_token40] = ACTIONS(4267), + [anon_sym_LBRACK] = ACTIONS(4269), + [anon_sym_LPAREN] = ACTIONS(4271), + [anon_sym_DOLLAR] = ACTIONS(4273), + [anon_sym_LBRACE] = ACTIONS(4275), + [anon_sym_DOT_DOT] = ACTIONS(4277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4279), + [anon_sym_DOT_DOT_LT] = ACTIONS(4279), + [aux_sym__val_number_decimal_token1] = ACTIONS(4281), + [aux_sym__val_number_decimal_token2] = ACTIONS(4283), + [aux_sym__val_number_decimal_token3] = ACTIONS(4285), + [aux_sym__val_number_decimal_token4] = ACTIONS(4287), + [aux_sym__val_number_token1] = ACTIONS(4289), + [aux_sym__val_number_token2] = ACTIONS(4289), + [aux_sym__val_number_token3] = ACTIONS(4289), + [anon_sym_0b] = ACTIONS(1971), + [anon_sym_0o] = ACTIONS(1973), + [anon_sym_0x] = ACTIONS(1973), + [sym_val_date] = ACTIONS(4291), + [anon_sym_DQUOTE] = ACTIONS(4293), + [sym__str_single_quotes] = ACTIONS(4295), + [sym__str_back_ticks] = ACTIONS(4295), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4297), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4299), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(1989), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1991), + }, + [1138] = { + [sym__val_range] = STATE(7973), + [sym__value] = STATE(4706), + [sym_val_nothing] = STATE(4718), + [sym_val_bool] = STATE(4461), + [sym_val_variable] = STATE(4718), + [sym_val_number] = STATE(4718), + [sym__val_number_decimal] = STATE(4108), + [sym__val_number] = STATE(4796), + [sym_val_duration] = STATE(4718), + [sym_val_filesize] = STATE(4718), + [sym_val_binary] = STATE(4718), + [sym_val_string] = STATE(4718), + [sym__raw_str] = STATE(4414), + [sym__str_double_quotes] = STATE(4414), + [sym_val_interpolated] = STATE(4718), + [sym__inter_single_quotes] = STATE(4787), + [sym__inter_double_quotes] = STATE(4810), + [sym_val_list] = STATE(4718), + [sym_val_record] = STATE(4718), + [sym_val_table] = STATE(4718), + [sym_val_closure] = STATE(4718), + [sym_unquoted] = STATE(4707), + [sym__unquoted_anonymous_prefix] = STATE(7802), + [sym_comment] = STATE(1138), + [anon_sym_true] = ACTIONS(4301), + [anon_sym_false] = ACTIONS(4301), + [anon_sym_null] = ACTIONS(4303), + [aux_sym_cmd_identifier_token38] = ACTIONS(4305), + [aux_sym_cmd_identifier_token39] = ACTIONS(4305), + [aux_sym_cmd_identifier_token40] = ACTIONS(4305), + [anon_sym_LBRACK] = ACTIONS(4269), + [anon_sym_LPAREN] = ACTIONS(4271), + [anon_sym_DOLLAR] = ACTIONS(4273), + [anon_sym_LBRACE] = ACTIONS(4275), + [anon_sym_DOT_DOT] = ACTIONS(4277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4279), + [anon_sym_DOT_DOT_LT] = ACTIONS(4279), + [aux_sym__val_number_decimal_token1] = ACTIONS(1963), + [aux_sym__val_number_decimal_token2] = ACTIONS(4307), + [aux_sym__val_number_decimal_token3] = ACTIONS(4309), + [aux_sym__val_number_decimal_token4] = ACTIONS(4311), + [aux_sym__val_number_token1] = ACTIONS(4289), + [aux_sym__val_number_token2] = ACTIONS(4289), + [aux_sym__val_number_token3] = ACTIONS(4289), + [anon_sym_0b] = ACTIONS(1971), + [anon_sym_0o] = ACTIONS(1973), + [anon_sym_0x] = ACTIONS(1973), + [sym_val_date] = ACTIONS(4313), + [anon_sym_DQUOTE] = ACTIONS(4293), + [sym__str_single_quotes] = ACTIONS(4295), + [sym__str_back_ticks] = ACTIONS(4295), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4297), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4299), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(1989), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1991), + }, + [1139] = { + [sym__val_range] = STATE(7973), + [sym__value] = STATE(4757), + [sym_val_nothing] = STATE(4718), + [sym_val_bool] = STATE(4461), + [sym_val_variable] = STATE(4718), + [sym_val_number] = STATE(4718), + [sym__val_number_decimal] = STATE(4108), + [sym__val_number] = STATE(4796), + [sym_val_duration] = STATE(4718), + [sym_val_filesize] = STATE(4718), + [sym_val_binary] = STATE(4718), + [sym_val_string] = STATE(4718), + [sym__raw_str] = STATE(4414), + [sym__str_double_quotes] = STATE(4414), + [sym_val_interpolated] = STATE(4718), + [sym__inter_single_quotes] = STATE(4787), + [sym__inter_double_quotes] = STATE(4810), + [sym_val_list] = STATE(4718), + [sym_val_record] = STATE(4718), + [sym_val_table] = STATE(4718), + [sym_val_closure] = STATE(4718), + [sym_unquoted] = STATE(4759), + [sym__unquoted_anonymous_prefix] = STATE(7802), + [sym_comment] = STATE(1139), + [anon_sym_true] = ACTIONS(4301), + [anon_sym_false] = ACTIONS(4301), + [anon_sym_null] = ACTIONS(4303), + [aux_sym_cmd_identifier_token38] = ACTIONS(4305), + [aux_sym_cmd_identifier_token39] = ACTIONS(4305), + [aux_sym_cmd_identifier_token40] = ACTIONS(4305), + [anon_sym_LBRACK] = ACTIONS(4269), + [anon_sym_LPAREN] = ACTIONS(4271), + [anon_sym_DOLLAR] = ACTIONS(4273), + [anon_sym_LBRACE] = ACTIONS(4275), + [anon_sym_DOT_DOT] = ACTIONS(4277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4279), + [anon_sym_DOT_DOT_LT] = ACTIONS(4279), + [aux_sym__val_number_decimal_token1] = ACTIONS(1963), + [aux_sym__val_number_decimal_token2] = ACTIONS(4307), + [aux_sym__val_number_decimal_token3] = ACTIONS(4309), + [aux_sym__val_number_decimal_token4] = ACTIONS(4311), + [aux_sym__val_number_token1] = ACTIONS(4289), + [aux_sym__val_number_token2] = ACTIONS(4289), + [aux_sym__val_number_token3] = ACTIONS(4289), + [anon_sym_0b] = ACTIONS(1971), + [anon_sym_0o] = ACTIONS(1973), + [anon_sym_0x] = ACTIONS(1973), + [sym_val_date] = ACTIONS(4313), + [anon_sym_DQUOTE] = ACTIONS(4293), + [sym__str_single_quotes] = ACTIONS(4295), + [sym__str_back_ticks] = ACTIONS(4295), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4297), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4299), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(1989), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1991), + }, + [1140] = { + [sym__val_range] = STATE(7645), + [sym__value] = STATE(3652), + [sym_val_nothing] = STATE(3605), + [sym_val_bool] = STATE(3560), + [sym_val_variable] = STATE(3605), + [sym_val_number] = STATE(3605), + [sym__val_number_decimal] = STATE(3407), + [sym__val_number] = STATE(3607), + [sym_val_duration] = STATE(3605), + [sym_val_filesize] = STATE(3605), + [sym_val_binary] = STATE(3605), + [sym_val_string] = STATE(3605), + [sym__raw_str] = STATE(3545), + [sym__str_double_quotes] = STATE(3545), + [sym_val_interpolated] = STATE(3605), + [sym__inter_single_quotes] = STATE(3639), + [sym__inter_double_quotes] = STATE(3640), + [sym_val_list] = STATE(3605), + [sym_val_record] = STATE(3605), + [sym_val_table] = STATE(3605), + [sym_val_closure] = STATE(3605), + [sym_unquoted] = STATE(3653), + [sym__unquoted_anonymous_prefix] = STATE(7770), + [sym_comment] = STATE(1140), + [anon_sym_true] = ACTIONS(4315), + [anon_sym_false] = ACTIONS(4315), + [anon_sym_null] = ACTIONS(4317), + [aux_sym_cmd_identifier_token38] = ACTIONS(4319), + [aux_sym_cmd_identifier_token39] = ACTIONS(4319), + [aux_sym_cmd_identifier_token40] = ACTIONS(4319), + [anon_sym_LBRACK] = ACTIONS(4321), + [anon_sym_LPAREN] = ACTIONS(4323), + [anon_sym_DOLLAR] = ACTIONS(4325), + [anon_sym_LBRACE] = ACTIONS(4327), + [anon_sym_DOT_DOT] = ACTIONS(4329), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4331), + [anon_sym_DOT_DOT_LT] = ACTIONS(4331), + [aux_sym__val_number_decimal_token1] = ACTIONS(4333), + [aux_sym__val_number_decimal_token2] = ACTIONS(4335), + [aux_sym__val_number_decimal_token3] = ACTIONS(4337), + [aux_sym__val_number_decimal_token4] = ACTIONS(4339), + [aux_sym__val_number_token1] = ACTIONS(4341), + [aux_sym__val_number_token2] = ACTIONS(4341), + [aux_sym__val_number_token3] = ACTIONS(4341), + [anon_sym_0b] = ACTIONS(4343), + [anon_sym_0o] = ACTIONS(4345), + [anon_sym_0x] = ACTIONS(4345), + [sym_val_date] = ACTIONS(4347), + [anon_sym_DQUOTE] = ACTIONS(4349), + [sym__str_single_quotes] = ACTIONS(4351), + [sym__str_back_ticks] = ACTIONS(4351), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4353), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4355), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(4357), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(4359), + }, + [1141] = { + [sym__val_range] = STATE(7973), + [sym__value] = STATE(4812), + [sym_val_nothing] = STATE(4718), + [sym_val_bool] = STATE(4461), + [sym_val_variable] = STATE(4718), + [sym_val_number] = STATE(4718), + [sym__val_number_decimal] = STATE(4108), + [sym__val_number] = STATE(4796), + [sym_val_duration] = STATE(4718), + [sym_val_filesize] = STATE(4718), + [sym_val_binary] = STATE(4718), + [sym_val_string] = STATE(4718), + [sym__raw_str] = STATE(4414), + [sym__str_double_quotes] = STATE(4414), + [sym_val_interpolated] = STATE(4718), + [sym__inter_single_quotes] = STATE(4787), + [sym__inter_double_quotes] = STATE(4810), + [sym_val_list] = STATE(4718), + [sym_val_record] = STATE(4718), + [sym_val_table] = STATE(4718), + [sym_val_closure] = STATE(4718), + [sym_unquoted] = STATE(4813), + [sym__unquoted_anonymous_prefix] = STATE(7802), + [sym_comment] = STATE(1141), + [anon_sym_true] = ACTIONS(4301), + [anon_sym_false] = ACTIONS(4301), + [anon_sym_null] = ACTIONS(4303), + [aux_sym_cmd_identifier_token38] = ACTIONS(4305), + [aux_sym_cmd_identifier_token39] = ACTIONS(4305), + [aux_sym_cmd_identifier_token40] = ACTIONS(4305), + [anon_sym_LBRACK] = ACTIONS(4269), + [anon_sym_LPAREN] = ACTIONS(4271), + [anon_sym_DOLLAR] = ACTIONS(4273), + [anon_sym_LBRACE] = ACTIONS(4275), + [anon_sym_DOT_DOT] = ACTIONS(4277), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4279), + [anon_sym_DOT_DOT_LT] = ACTIONS(4279), + [aux_sym__val_number_decimal_token1] = ACTIONS(1963), + [aux_sym__val_number_decimal_token2] = ACTIONS(4307), + [aux_sym__val_number_decimal_token3] = ACTIONS(4309), + [aux_sym__val_number_decimal_token4] = ACTIONS(4311), + [aux_sym__val_number_token1] = ACTIONS(4289), + [aux_sym__val_number_token2] = ACTIONS(4289), + [aux_sym__val_number_token3] = ACTIONS(4289), + [anon_sym_0b] = ACTIONS(1971), + [anon_sym_0o] = ACTIONS(1973), + [anon_sym_0x] = ACTIONS(1973), + [sym_val_date] = ACTIONS(4313), + [anon_sym_DQUOTE] = ACTIONS(4293), + [sym__str_single_quotes] = ACTIONS(4295), + [sym__str_back_ticks] = ACTIONS(4295), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4297), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4299), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(1989), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1991), + }, + [1142] = { + [sym__val_range] = STATE(7645), + [sym__value] = STATE(3657), + [sym_val_nothing] = STATE(3605), + [sym_val_bool] = STATE(3560), + [sym_val_variable] = STATE(3605), + [sym_val_number] = STATE(3605), + [sym__val_number_decimal] = STATE(3407), + [sym__val_number] = STATE(3607), + [sym_val_duration] = STATE(3605), + [sym_val_filesize] = STATE(3605), + [sym_val_binary] = STATE(3605), + [sym_val_string] = STATE(3605), + [sym__raw_str] = STATE(3545), + [sym__str_double_quotes] = STATE(3545), + [sym_val_interpolated] = STATE(3605), + [sym__inter_single_quotes] = STATE(3639), + [sym__inter_double_quotes] = STATE(3640), + [sym_val_list] = STATE(3605), + [sym_val_record] = STATE(3605), + [sym_val_table] = STATE(3605), + [sym_val_closure] = STATE(3605), + [sym_unquoted] = STATE(3658), + [sym__unquoted_anonymous_prefix] = STATE(7770), + [sym_comment] = STATE(1142), + [anon_sym_true] = ACTIONS(4315), + [anon_sym_false] = ACTIONS(4315), + [anon_sym_null] = ACTIONS(4317), + [aux_sym_cmd_identifier_token38] = ACTIONS(4319), + [aux_sym_cmd_identifier_token39] = ACTIONS(4319), + [aux_sym_cmd_identifier_token40] = ACTIONS(4319), + [anon_sym_LBRACK] = ACTIONS(4321), + [anon_sym_LPAREN] = ACTIONS(4323), + [anon_sym_DOLLAR] = ACTIONS(4325), + [anon_sym_LBRACE] = ACTIONS(4327), + [anon_sym_DOT_DOT] = ACTIONS(4329), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4331), + [anon_sym_DOT_DOT_LT] = ACTIONS(4331), + [aux_sym__val_number_decimal_token1] = ACTIONS(4333), + [aux_sym__val_number_decimal_token2] = ACTIONS(4335), + [aux_sym__val_number_decimal_token3] = ACTIONS(4337), + [aux_sym__val_number_decimal_token4] = ACTIONS(4339), + [aux_sym__val_number_token1] = ACTIONS(4341), + [aux_sym__val_number_token2] = ACTIONS(4341), + [aux_sym__val_number_token3] = ACTIONS(4341), + [anon_sym_0b] = ACTIONS(4343), + [anon_sym_0o] = ACTIONS(4345), + [anon_sym_0x] = ACTIONS(4345), + [sym_val_date] = ACTIONS(4347), + [anon_sym_DQUOTE] = ACTIONS(4349), + [sym__str_single_quotes] = ACTIONS(4351), + [sym__str_back_ticks] = ACTIONS(4351), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4353), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4355), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(4357), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(4359), + }, + [1143] = { + [sym__expr_parenthesized_immediate] = STATE(1694), + [sym__immediate_decimal] = STATE(1590), + [sym_val_variable] = STATE(1694), + [sym_comment] = STATE(1143), + [anon_sym_true] = ACTIONS(1610), + [anon_sym_false] = ACTIONS(1610), + [anon_sym_null] = ACTIONS(1610), + [aux_sym_cmd_identifier_token38] = ACTIONS(1610), + [aux_sym_cmd_identifier_token39] = ACTIONS(1610), + [aux_sym_cmd_identifier_token40] = ACTIONS(1610), + [sym__newline] = ACTIONS(1610), + [anon_sym_SEMI] = ACTIONS(1610), + [anon_sym_PIPE] = ACTIONS(1610), + [anon_sym_err_GT_PIPE] = ACTIONS(1610), + [anon_sym_out_GT_PIPE] = ACTIONS(1610), + [anon_sym_e_GT_PIPE] = ACTIONS(1610), + [anon_sym_o_GT_PIPE] = ACTIONS(1610), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1610), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1610), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1610), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1610), + [anon_sym_LPAREN] = ACTIONS(1608), + [anon_sym_RPAREN] = ACTIONS(1610), + [anon_sym_DOLLAR] = ACTIONS(3970), + [anon_sym_DASH_DASH] = ACTIONS(1610), + [anon_sym_DASH] = ACTIONS(1608), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_RBRACE] = ACTIONS(1610), + [anon_sym_DOT_DOT] = ACTIONS(1608), + [anon_sym_LPAREN2] = ACTIONS(3972), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1610), + [anon_sym_DOT_DOT_LT] = ACTIONS(1610), + [aux_sym__immediate_decimal_token1] = ACTIONS(4113), + [aux_sym__immediate_decimal_token3] = ACTIONS(4115), + [aux_sym__immediate_decimal_token4] = ACTIONS(4117), + [aux_sym__immediate_decimal_token5] = ACTIONS(4119), + [aux_sym__val_number_decimal_token1] = ACTIONS(1608), + [aux_sym__val_number_decimal_token2] = ACTIONS(1608), + [aux_sym__val_number_decimal_token3] = ACTIONS(1608), + [aux_sym__val_number_decimal_token4] = ACTIONS(1608), + [aux_sym__val_number_token1] = ACTIONS(1610), + [aux_sym__val_number_token2] = ACTIONS(1610), + [aux_sym__val_number_token3] = ACTIONS(1610), + [anon_sym_0b] = ACTIONS(1608), + [anon_sym_0o] = ACTIONS(1608), + [anon_sym_0x] = ACTIONS(1608), + [sym_val_date] = ACTIONS(1610), + [anon_sym_DQUOTE] = ACTIONS(1610), + [sym__str_single_quotes] = ACTIONS(1610), + [sym__str_back_ticks] = ACTIONS(1610), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1610), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1610), + [anon_sym_err_GT] = ACTIONS(1608), + [anon_sym_out_GT] = ACTIONS(1608), + [anon_sym_e_GT] = ACTIONS(1608), + [anon_sym_o_GT] = ACTIONS(1608), + [anon_sym_err_PLUSout_GT] = ACTIONS(1608), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1608), + [anon_sym_o_PLUSe_GT] = ACTIONS(1608), + [anon_sym_e_PLUSo_GT] = ACTIONS(1608), + [anon_sym_err_GT_GT] = ACTIONS(1610), + [anon_sym_out_GT_GT] = ACTIONS(1610), + [anon_sym_e_GT_GT] = ACTIONS(1610), + [anon_sym_o_GT_GT] = ACTIONS(1610), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1610), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1610), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1610), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1610), + [aux_sym_unquoted_token1] = ACTIONS(1608), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1610), + }, + [1144] = { + [sym__val_range] = STATE(7645), + [sym__value] = STATE(3603), + [sym_val_nothing] = STATE(3605), + [sym_val_bool] = STATE(3560), + [sym_val_variable] = STATE(3605), + [sym_val_number] = STATE(3605), + [sym__val_number_decimal] = STATE(3407), + [sym__val_number] = STATE(3607), + [sym_val_duration] = STATE(3605), + [sym_val_filesize] = STATE(3605), + [sym_val_binary] = STATE(3605), + [sym_val_string] = STATE(3605), + [sym__raw_str] = STATE(3545), + [sym__str_double_quotes] = STATE(3545), + [sym_val_interpolated] = STATE(3605), + [sym__inter_single_quotes] = STATE(3639), + [sym__inter_double_quotes] = STATE(3640), + [sym_val_list] = STATE(3605), + [sym_val_record] = STATE(3605), + [sym_val_table] = STATE(3605), + [sym_val_closure] = STATE(3605), + [sym_unquoted] = STATE(3609), + [sym__unquoted_anonymous_prefix] = STATE(7770), + [sym_comment] = STATE(1144), + [anon_sym_true] = ACTIONS(4315), + [anon_sym_false] = ACTIONS(4315), + [anon_sym_null] = ACTIONS(4317), + [aux_sym_cmd_identifier_token38] = ACTIONS(4319), + [aux_sym_cmd_identifier_token39] = ACTIONS(4319), + [aux_sym_cmd_identifier_token40] = ACTIONS(4319), + [anon_sym_LBRACK] = ACTIONS(4321), + [anon_sym_LPAREN] = ACTIONS(4323), + [anon_sym_DOLLAR] = ACTIONS(4325), + [anon_sym_LBRACE] = ACTIONS(4327), + [anon_sym_DOT_DOT] = ACTIONS(4329), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4331), + [anon_sym_DOT_DOT_LT] = ACTIONS(4331), + [aux_sym__val_number_decimal_token1] = ACTIONS(4333), + [aux_sym__val_number_decimal_token2] = ACTIONS(4335), + [aux_sym__val_number_decimal_token3] = ACTIONS(4337), + [aux_sym__val_number_decimal_token4] = ACTIONS(4339), + [aux_sym__val_number_token1] = ACTIONS(4341), + [aux_sym__val_number_token2] = ACTIONS(4341), + [aux_sym__val_number_token3] = ACTIONS(4341), + [anon_sym_0b] = ACTIONS(4343), + [anon_sym_0o] = ACTIONS(4345), + [anon_sym_0x] = ACTIONS(4345), + [sym_val_date] = ACTIONS(4347), + [anon_sym_DQUOTE] = ACTIONS(4349), + [sym__str_single_quotes] = ACTIONS(4351), + [sym__str_back_ticks] = ACTIONS(4351), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4353), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4355), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(4357), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(4359), + }, + [1145] = { + [sym__val_range] = STATE(7734), + [sym__value] = STATE(1639), + [sym_val_nothing] = STATE(1587), + [sym_val_bool] = STATE(1514), + [sym_val_variable] = STATE(1587), + [sym_val_number] = STATE(1587), + [sym__val_number_decimal] = STATE(1238), + [sym__val_number] = STATE(1646), + [sym_val_duration] = STATE(1587), + [sym_val_filesize] = STATE(1587), + [sym_val_binary] = STATE(1587), + [sym_val_string] = STATE(1587), + [sym__raw_str] = STATE(1640), + [sym__str_double_quotes] = STATE(1640), + [sym_val_interpolated] = STATE(1587), + [sym__inter_single_quotes] = STATE(1696), + [sym__inter_double_quotes] = STATE(1642), + [sym_val_list] = STATE(1587), + [sym_val_record] = STATE(1587), + [sym_val_table] = STATE(1587), + [sym_val_closure] = STATE(1587), + [sym_unquoted] = STATE(1647), + [sym__unquoted_anonymous_prefix] = STATE(7936), + [sym_comment] = STATE(1145), + [anon_sym_true] = ACTIONS(4361), + [anon_sym_false] = ACTIONS(4361), + [anon_sym_null] = ACTIONS(4363), + [aux_sym_cmd_identifier_token38] = ACTIONS(4365), + [aux_sym_cmd_identifier_token39] = ACTIONS(4365), + [aux_sym_cmd_identifier_token40] = ACTIONS(4365), + [anon_sym_LBRACK] = ACTIONS(2645), + [anon_sym_LPAREN] = ACTIONS(4367), + [anon_sym_DOLLAR] = ACTIONS(3970), + [anon_sym_LBRACE] = ACTIONS(2655), + [anon_sym_DOT_DOT] = ACTIONS(4369), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4371), + [anon_sym_DOT_DOT_LT] = ACTIONS(4371), + [aux_sym__val_number_decimal_token1] = ACTIONS(4373), + [aux_sym__val_number_decimal_token2] = ACTIONS(4375), + [aux_sym__val_number_decimal_token3] = ACTIONS(4377), + [aux_sym__val_number_decimal_token4] = ACTIONS(4379), + [aux_sym__val_number_token1] = ACTIONS(2669), + [aux_sym__val_number_token2] = ACTIONS(2669), + [aux_sym__val_number_token3] = ACTIONS(2669), + [anon_sym_0b] = ACTIONS(2671), + [anon_sym_0o] = ACTIONS(2673), + [anon_sym_0x] = ACTIONS(2673), + [sym_val_date] = ACTIONS(4381), + [anon_sym_DQUOTE] = ACTIONS(2677), + [sym__str_single_quotes] = ACTIONS(2679), + [sym__str_back_ticks] = ACTIONS(2679), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2681), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2683), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(4383), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2691), + }, + [1146] = { + [sym__val_range] = STATE(7645), + [sym__value] = STATE(3600), + [sym_val_nothing] = STATE(3605), + [sym_val_bool] = STATE(3560), + [sym_val_variable] = STATE(3605), + [sym_val_number] = STATE(3605), + [sym__val_number_decimal] = STATE(3407), + [sym__val_number] = STATE(3607), + [sym_val_duration] = STATE(3605), + [sym_val_filesize] = STATE(3605), + [sym_val_binary] = STATE(3605), + [sym_val_string] = STATE(3605), + [sym__raw_str] = STATE(3545), + [sym__str_double_quotes] = STATE(3545), + [sym_val_interpolated] = STATE(3605), + [sym__inter_single_quotes] = STATE(3639), + [sym__inter_double_quotes] = STATE(3640), + [sym_val_list] = STATE(3605), + [sym_val_record] = STATE(3605), + [sym_val_table] = STATE(3605), + [sym_val_closure] = STATE(3605), + [sym_unquoted] = STATE(3589), + [sym__unquoted_anonymous_prefix] = STATE(7770), + [sym_comment] = STATE(1146), + [anon_sym_true] = ACTIONS(4315), + [anon_sym_false] = ACTIONS(4315), + [anon_sym_null] = ACTIONS(4317), + [aux_sym_cmd_identifier_token38] = ACTIONS(4319), + [aux_sym_cmd_identifier_token39] = ACTIONS(4319), + [aux_sym_cmd_identifier_token40] = ACTIONS(4319), + [anon_sym_LBRACK] = ACTIONS(4321), + [anon_sym_LPAREN] = ACTIONS(4323), + [anon_sym_DOLLAR] = ACTIONS(4325), + [anon_sym_LBRACE] = ACTIONS(4327), + [anon_sym_DOT_DOT] = ACTIONS(4329), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4331), + [anon_sym_DOT_DOT_LT] = ACTIONS(4331), + [aux_sym__val_number_decimal_token1] = ACTIONS(4333), + [aux_sym__val_number_decimal_token2] = ACTIONS(4335), + [aux_sym__val_number_decimal_token3] = ACTIONS(4337), + [aux_sym__val_number_decimal_token4] = ACTIONS(4339), + [aux_sym__val_number_token1] = ACTIONS(4341), + [aux_sym__val_number_token2] = ACTIONS(4341), + [aux_sym__val_number_token3] = ACTIONS(4341), + [anon_sym_0b] = ACTIONS(4343), + [anon_sym_0o] = ACTIONS(4345), + [anon_sym_0x] = ACTIONS(4345), + [sym_val_date] = ACTIONS(4347), + [anon_sym_DQUOTE] = ACTIONS(4349), + [sym__str_single_quotes] = ACTIONS(4351), + [sym__str_back_ticks] = ACTIONS(4351), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4353), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4355), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(4357), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(4359), + }, + [1147] = { + [sym__val_range] = STATE(7734), + [sym__value] = STATE(1606), + [sym_val_nothing] = STATE(1587), + [sym_val_bool] = STATE(1514), + [sym_val_variable] = STATE(1587), + [sym_val_number] = STATE(1587), + [sym__val_number_decimal] = STATE(1238), + [sym__val_number] = STATE(1646), + [sym_val_duration] = STATE(1587), + [sym_val_filesize] = STATE(1587), + [sym_val_binary] = STATE(1587), + [sym_val_string] = STATE(1587), + [sym__raw_str] = STATE(1640), + [sym__str_double_quotes] = STATE(1640), + [sym_val_interpolated] = STATE(1587), + [sym__inter_single_quotes] = STATE(1696), + [sym__inter_double_quotes] = STATE(1642), + [sym_val_list] = STATE(1587), + [sym_val_record] = STATE(1587), + [sym_val_table] = STATE(1587), + [sym_val_closure] = STATE(1587), + [sym_unquoted] = STATE(1645), + [sym__unquoted_anonymous_prefix] = STATE(7936), + [sym_comment] = STATE(1147), + [anon_sym_true] = ACTIONS(4361), + [anon_sym_false] = ACTIONS(4361), + [anon_sym_null] = ACTIONS(4363), + [aux_sym_cmd_identifier_token38] = ACTIONS(4365), + [aux_sym_cmd_identifier_token39] = ACTIONS(4365), + [aux_sym_cmd_identifier_token40] = ACTIONS(4365), + [anon_sym_LBRACK] = ACTIONS(2645), + [anon_sym_LPAREN] = ACTIONS(4367), + [anon_sym_DOLLAR] = ACTIONS(3970), + [anon_sym_LBRACE] = ACTIONS(2655), + [anon_sym_DOT_DOT] = ACTIONS(4369), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4371), + [anon_sym_DOT_DOT_LT] = ACTIONS(4371), + [aux_sym__val_number_decimal_token1] = ACTIONS(4373), + [aux_sym__val_number_decimal_token2] = ACTIONS(4375), + [aux_sym__val_number_decimal_token3] = ACTIONS(4377), + [aux_sym__val_number_decimal_token4] = ACTIONS(4379), + [aux_sym__val_number_token1] = ACTIONS(2669), + [aux_sym__val_number_token2] = ACTIONS(2669), + [aux_sym__val_number_token3] = ACTIONS(2669), + [anon_sym_0b] = ACTIONS(2671), + [anon_sym_0o] = ACTIONS(2673), + [anon_sym_0x] = ACTIONS(2673), + [sym_val_date] = ACTIONS(4381), + [anon_sym_DQUOTE] = ACTIONS(2677), + [sym__str_single_quotes] = ACTIONS(2679), + [sym__str_back_ticks] = ACTIONS(2679), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2681), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2683), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(4383), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2691), + }, + [1148] = { + [sym__match_pattern_expression] = STATE(3083), + [sym__match_pattern_value] = STATE(3079), + [sym__match_pattern_list] = STATE(3092), + [sym__match_pattern_rest] = STATE(7667), + [sym__match_pattern_record] = STATE(3125), + [sym_expr_parenthesized] = STATE(2897), + [sym_val_range] = STATE(3079), + [sym__val_range] = STATE(7928), + [sym_val_nothing] = STATE(3054), + [sym_val_bool] = STATE(3042), + [sym_val_variable] = STATE(2873), + [sym_val_number] = STATE(3054), + [sym__val_number_decimal] = STATE(2687), + [sym__val_number] = STATE(3094), + [sym_val_duration] = STATE(3054), + [sym_val_filesize] = STATE(3054), + [sym_val_binary] = STATE(3054), + [sym_val_string] = STATE(3054), + [sym__raw_str] = STATE(3122), + [sym__str_double_quotes] = STATE(3122), + [sym_val_table] = STATE(3054), + [sym__unquoted_in_list] = STATE(3083), + [sym__unquoted_anonymous_prefix] = STATE(7845), + [sym_comment] = STATE(1148), + [aux_sym__match_pattern_list_repeat1] = STATE(1198), + [anon_sym_true] = ACTIONS(3760), + [anon_sym_false] = ACTIONS(3760), + [anon_sym_null] = ACTIONS(3762), + [aux_sym_cmd_identifier_token38] = ACTIONS(3764), + [aux_sym_cmd_identifier_token39] = ACTIONS(3764), + [aux_sym_cmd_identifier_token40] = ACTIONS(3764), + [anon_sym_LBRACK] = ACTIONS(4121), + [anon_sym_RBRACK] = ACTIONS(4385), + [anon_sym_LPAREN] = ACTIONS(3772), + [anon_sym_DOLLAR] = ACTIONS(3774), + [anon_sym_LBRACE] = ACTIONS(3776), + [anon_sym_DOT_DOT] = ACTIONS(4387), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3780), + [anon_sym_DOT_DOT_LT] = ACTIONS(3780), + [aux_sym__val_number_decimal_token1] = ACTIONS(3782), + [aux_sym__val_number_decimal_token2] = ACTIONS(3784), + [aux_sym__val_number_decimal_token3] = ACTIONS(3786), + [aux_sym__val_number_decimal_token4] = ACTIONS(3788), + [aux_sym__val_number_token1] = ACTIONS(3790), + [aux_sym__val_number_token2] = ACTIONS(3790), + [aux_sym__val_number_token3] = ACTIONS(3790), + [anon_sym_0b] = ACTIONS(3792), + [anon_sym_0o] = ACTIONS(3794), + [anon_sym_0x] = ACTIONS(3794), + [sym_val_date] = ACTIONS(3796), + [anon_sym_DQUOTE] = ACTIONS(3798), + [sym__str_single_quotes] = ACTIONS(3800), + [sym__str_back_ticks] = ACTIONS(3800), + [anon_sym_err_GT] = ACTIONS(2627), + [anon_sym_out_GT] = ACTIONS(2627), + [anon_sym_e_GT] = ACTIONS(2627), + [anon_sym_o_GT] = ACTIONS(2627), + [anon_sym_err_PLUSout_GT] = ACTIONS(2627), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2627), + [anon_sym_o_PLUSe_GT] = ACTIONS(2627), + [anon_sym_e_PLUSo_GT] = ACTIONS(2627), + [anon_sym_err_GT_GT] = ACTIONS(2629), + [anon_sym_out_GT_GT] = ACTIONS(2629), + [anon_sym_e_GT_GT] = ACTIONS(2629), + [anon_sym_o_GT_GT] = ACTIONS(2629), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2629), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2629), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2629), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2629), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3802), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3804), + }, + [1149] = { + [sym__val_range] = STATE(7734), + [sym__value] = STATE(1607), + [sym_val_nothing] = STATE(1587), + [sym_val_bool] = STATE(1514), + [sym_val_variable] = STATE(1587), + [sym_val_number] = STATE(1587), + [sym__val_number_decimal] = STATE(1238), + [sym__val_number] = STATE(1646), + [sym_val_duration] = STATE(1587), + [sym_val_filesize] = STATE(1587), + [sym_val_binary] = STATE(1587), + [sym_val_string] = STATE(1587), + [sym__raw_str] = STATE(1640), + [sym__str_double_quotes] = STATE(1640), + [sym_val_interpolated] = STATE(1587), + [sym__inter_single_quotes] = STATE(1696), + [sym__inter_double_quotes] = STATE(1642), + [sym_val_list] = STATE(1587), + [sym_val_record] = STATE(1587), + [sym_val_table] = STATE(1587), + [sym_val_closure] = STATE(1587), + [sym_unquoted] = STATE(1619), + [sym__unquoted_anonymous_prefix] = STATE(7936), + [sym_comment] = STATE(1149), + [anon_sym_true] = ACTIONS(4361), + [anon_sym_false] = ACTIONS(4361), + [anon_sym_null] = ACTIONS(4363), + [aux_sym_cmd_identifier_token38] = ACTIONS(4365), + [aux_sym_cmd_identifier_token39] = ACTIONS(4365), + [aux_sym_cmd_identifier_token40] = ACTIONS(4365), + [anon_sym_LBRACK] = ACTIONS(2645), + [anon_sym_LPAREN] = ACTIONS(4367), + [anon_sym_DOLLAR] = ACTIONS(3970), + [anon_sym_LBRACE] = ACTIONS(2655), + [anon_sym_DOT_DOT] = ACTIONS(4369), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4371), + [anon_sym_DOT_DOT_LT] = ACTIONS(4371), + [aux_sym__val_number_decimal_token1] = ACTIONS(4373), + [aux_sym__val_number_decimal_token2] = ACTIONS(4375), + [aux_sym__val_number_decimal_token3] = ACTIONS(4377), + [aux_sym__val_number_decimal_token4] = ACTIONS(4379), + [aux_sym__val_number_token1] = ACTIONS(2669), + [aux_sym__val_number_token2] = ACTIONS(2669), + [aux_sym__val_number_token3] = ACTIONS(2669), + [anon_sym_0b] = ACTIONS(2671), + [anon_sym_0o] = ACTIONS(2673), + [anon_sym_0x] = ACTIONS(2673), + [sym_val_date] = ACTIONS(4381), + [anon_sym_DQUOTE] = ACTIONS(2677), + [sym__str_single_quotes] = ACTIONS(2679), + [sym__str_back_ticks] = ACTIONS(2679), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2681), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2683), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(4383), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2691), + }, + [1150] = { + [sym__val_range] = STATE(7929), + [sym__value] = STATE(5903), + [sym_val_nothing] = STATE(4196), + [sym_val_bool] = STATE(5734), + [sym_val_variable] = STATE(4196), + [sym_val_number] = STATE(4196), + [sym__val_number_decimal] = STATE(5099), + [sym__val_number] = STATE(4279), + [sym_val_duration] = STATE(4196), + [sym_val_filesize] = STATE(4196), + [sym_val_binary] = STATE(4196), + [sym_val_string] = STATE(4196), + [sym__raw_str] = STATE(3606), + [sym__str_double_quotes] = STATE(3606), + [sym_val_interpolated] = STATE(4196), + [sym__inter_single_quotes] = STATE(4216), + [sym__inter_double_quotes] = STATE(4218), + [sym_val_list] = STATE(4196), + [sym_val_record] = STATE(4196), + [sym_val_table] = STATE(4196), + [sym_val_closure] = STATE(4196), + [sym_unquoted] = STATE(5949), + [sym__unquoted_anonymous_prefix] = STATE(7636), + [sym_comment] = STATE(1150), + [anon_sym_true] = ACTIONS(4389), + [anon_sym_false] = ACTIONS(4389), + [anon_sym_null] = ACTIONS(4391), + [aux_sym_cmd_identifier_token38] = ACTIONS(4393), + [aux_sym_cmd_identifier_token39] = ACTIONS(4393), + [aux_sym_cmd_identifier_token40] = ACTIONS(4393), + [anon_sym_LBRACK] = ACTIONS(3512), + [anon_sym_LPAREN] = ACTIONS(4395), + [anon_sym_DOLLAR] = ACTIONS(4397), + [anon_sym_LBRACE] = ACTIONS(3520), + [anon_sym_DOT_DOT] = ACTIONS(4399), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4401), + [anon_sym_DOT_DOT_LT] = ACTIONS(4401), + [aux_sym__val_number_decimal_token1] = ACTIONS(4403), + [aux_sym__val_number_decimal_token2] = ACTIONS(4405), + [aux_sym__val_number_decimal_token3] = ACTIONS(4407), + [aux_sym__val_number_decimal_token4] = ACTIONS(4409), + [aux_sym__val_number_token1] = ACTIONS(3536), + [aux_sym__val_number_token2] = ACTIONS(3536), + [aux_sym__val_number_token3] = ACTIONS(3536), + [anon_sym_0b] = ACTIONS(3538), + [anon_sym_0o] = ACTIONS(3540), + [anon_sym_0x] = ACTIONS(3540), + [sym_val_date] = ACTIONS(4411), + [anon_sym_DQUOTE] = ACTIONS(3544), + [sym__str_single_quotes] = ACTIONS(3546), + [sym__str_back_ticks] = ACTIONS(3546), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3548), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3550), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3552), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3554), + }, + [1151] = { + [sym__val_range] = STATE(7734), + [sym__value] = STATE(1650), + [sym_val_nothing] = STATE(1587), + [sym_val_bool] = STATE(1514), + [sym_val_variable] = STATE(1587), + [sym_val_number] = STATE(1587), + [sym__val_number_decimal] = STATE(1238), + [sym__val_number] = STATE(1646), + [sym_val_duration] = STATE(1587), + [sym_val_filesize] = STATE(1587), + [sym_val_binary] = STATE(1587), + [sym_val_string] = STATE(1587), + [sym__raw_str] = STATE(1640), + [sym__str_double_quotes] = STATE(1640), + [sym_val_interpolated] = STATE(1587), + [sym__inter_single_quotes] = STATE(1696), + [sym__inter_double_quotes] = STATE(1642), + [sym_val_list] = STATE(1587), + [sym_val_record] = STATE(1587), + [sym_val_table] = STATE(1587), + [sym_val_closure] = STATE(1587), + [sym_unquoted] = STATE(1661), + [sym__unquoted_anonymous_prefix] = STATE(7936), + [sym_comment] = STATE(1151), + [anon_sym_true] = ACTIONS(4361), + [anon_sym_false] = ACTIONS(4361), + [anon_sym_null] = ACTIONS(4363), + [aux_sym_cmd_identifier_token38] = ACTIONS(4365), + [aux_sym_cmd_identifier_token39] = ACTIONS(4365), + [aux_sym_cmd_identifier_token40] = ACTIONS(4365), + [anon_sym_LBRACK] = ACTIONS(2645), + [anon_sym_LPAREN] = ACTIONS(4367), + [anon_sym_DOLLAR] = ACTIONS(3970), + [anon_sym_LBRACE] = ACTIONS(2655), + [anon_sym_DOT_DOT] = ACTIONS(4369), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4371), + [anon_sym_DOT_DOT_LT] = ACTIONS(4371), + [aux_sym__val_number_decimal_token1] = ACTIONS(4373), + [aux_sym__val_number_decimal_token2] = ACTIONS(4375), + [aux_sym__val_number_decimal_token3] = ACTIONS(4377), + [aux_sym__val_number_decimal_token4] = ACTIONS(4379), + [aux_sym__val_number_token1] = ACTIONS(2669), + [aux_sym__val_number_token2] = ACTIONS(2669), + [aux_sym__val_number_token3] = ACTIONS(2669), + [anon_sym_0b] = ACTIONS(2671), + [anon_sym_0o] = ACTIONS(2673), + [anon_sym_0x] = ACTIONS(2673), + [sym_val_date] = ACTIONS(4381), + [anon_sym_DQUOTE] = ACTIONS(2677), + [sym__str_single_quotes] = ACTIONS(2679), + [sym__str_back_ticks] = ACTIONS(2679), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2681), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2683), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(4383), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2691), + }, + [1152] = { + [sym__val_range] = STATE(7929), + [sym__value] = STATE(5956), + [sym_val_nothing] = STATE(4196), + [sym_val_bool] = STATE(5734), + [sym_val_variable] = STATE(4196), + [sym_val_number] = STATE(4196), + [sym__val_number_decimal] = STATE(5099), + [sym__val_number] = STATE(4279), + [sym_val_duration] = STATE(4196), + [sym_val_filesize] = STATE(4196), + [sym_val_binary] = STATE(4196), + [sym_val_string] = STATE(4196), + [sym__raw_str] = STATE(3606), + [sym__str_double_quotes] = STATE(3606), + [sym_val_interpolated] = STATE(4196), + [sym__inter_single_quotes] = STATE(4216), + [sym__inter_double_quotes] = STATE(4218), + [sym_val_list] = STATE(4196), + [sym_val_record] = STATE(4196), + [sym_val_table] = STATE(4196), + [sym_val_closure] = STATE(4196), + [sym_unquoted] = STATE(5960), + [sym__unquoted_anonymous_prefix] = STATE(7636), + [sym_comment] = STATE(1152), + [anon_sym_true] = ACTIONS(4389), + [anon_sym_false] = ACTIONS(4389), + [anon_sym_null] = ACTIONS(4391), + [aux_sym_cmd_identifier_token38] = ACTIONS(4393), + [aux_sym_cmd_identifier_token39] = ACTIONS(4393), + [aux_sym_cmd_identifier_token40] = ACTIONS(4393), + [anon_sym_LBRACK] = ACTIONS(3512), + [anon_sym_LPAREN] = ACTIONS(4395), + [anon_sym_DOLLAR] = ACTIONS(4397), + [anon_sym_LBRACE] = ACTIONS(3520), + [anon_sym_DOT_DOT] = ACTIONS(4399), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4401), + [anon_sym_DOT_DOT_LT] = ACTIONS(4401), + [aux_sym__val_number_decimal_token1] = ACTIONS(4403), + [aux_sym__val_number_decimal_token2] = ACTIONS(4405), + [aux_sym__val_number_decimal_token3] = ACTIONS(4407), + [aux_sym__val_number_decimal_token4] = ACTIONS(4409), + [aux_sym__val_number_token1] = ACTIONS(3536), + [aux_sym__val_number_token2] = ACTIONS(3536), + [aux_sym__val_number_token3] = ACTIONS(3536), + [anon_sym_0b] = ACTIONS(3538), + [anon_sym_0o] = ACTIONS(3540), + [anon_sym_0x] = ACTIONS(3540), + [sym_val_date] = ACTIONS(4411), + [anon_sym_DQUOTE] = ACTIONS(3544), + [sym__str_single_quotes] = ACTIONS(3546), + [sym__str_back_ticks] = ACTIONS(3546), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3548), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3550), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3552), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3554), + }, + [1153] = { + [sym__val_range] = STATE(7929), + [sym__value] = STATE(5781), + [sym_val_nothing] = STATE(4196), + [sym_val_bool] = STATE(5734), + [sym_val_variable] = STATE(4196), + [sym_val_number] = STATE(4196), + [sym__val_number_decimal] = STATE(5099), + [sym__val_number] = STATE(4279), + [sym_val_duration] = STATE(4196), + [sym_val_filesize] = STATE(4196), + [sym_val_binary] = STATE(4196), + [sym_val_string] = STATE(4196), + [sym__raw_str] = STATE(3606), + [sym__str_double_quotes] = STATE(3606), + [sym_val_interpolated] = STATE(4196), + [sym__inter_single_quotes] = STATE(4216), + [sym__inter_double_quotes] = STATE(4218), + [sym_val_list] = STATE(4196), + [sym_val_record] = STATE(4196), + [sym_val_table] = STATE(4196), + [sym_val_closure] = STATE(4196), + [sym_unquoted] = STATE(5842), + [sym__unquoted_anonymous_prefix] = STATE(7636), + [sym_comment] = STATE(1153), + [anon_sym_true] = ACTIONS(4389), + [anon_sym_false] = ACTIONS(4389), + [anon_sym_null] = ACTIONS(4391), + [aux_sym_cmd_identifier_token38] = ACTIONS(4393), + [aux_sym_cmd_identifier_token39] = ACTIONS(4393), + [aux_sym_cmd_identifier_token40] = ACTIONS(4393), + [anon_sym_LBRACK] = ACTIONS(3512), + [anon_sym_LPAREN] = ACTIONS(4395), + [anon_sym_DOLLAR] = ACTIONS(4397), + [anon_sym_LBRACE] = ACTIONS(3520), + [anon_sym_DOT_DOT] = ACTIONS(4399), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4401), + [anon_sym_DOT_DOT_LT] = ACTIONS(4401), + [aux_sym__val_number_decimal_token1] = ACTIONS(4403), + [aux_sym__val_number_decimal_token2] = ACTIONS(4405), + [aux_sym__val_number_decimal_token3] = ACTIONS(4407), + [aux_sym__val_number_decimal_token4] = ACTIONS(4409), + [aux_sym__val_number_token1] = ACTIONS(3536), + [aux_sym__val_number_token2] = ACTIONS(3536), + [aux_sym__val_number_token3] = ACTIONS(3536), + [anon_sym_0b] = ACTIONS(3538), + [anon_sym_0o] = ACTIONS(3540), + [anon_sym_0x] = ACTIONS(3540), + [sym_val_date] = ACTIONS(4411), + [anon_sym_DQUOTE] = ACTIONS(3544), + [sym__str_single_quotes] = ACTIONS(3546), + [sym__str_back_ticks] = ACTIONS(3546), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3548), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3550), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3552), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3554), + }, + [1154] = { + [sym__val_range] = STATE(7632), + [sym__value] = STATE(5510), + [sym_val_nothing] = STATE(4047), + [sym_val_bool] = STATE(5570), + [sym_val_variable] = STATE(4047), + [sym_val_number] = STATE(4047), + [sym__val_number_decimal] = STATE(4990), + [sym__val_number] = STATE(3529), + [sym_val_duration] = STATE(4047), + [sym_val_filesize] = STATE(4047), + [sym_val_binary] = STATE(4047), + [sym_val_string] = STATE(4047), + [sym__raw_str] = STATE(2932), + [sym__str_double_quotes] = STATE(2932), + [sym_val_interpolated] = STATE(4047), + [sym__inter_single_quotes] = STATE(4101), + [sym__inter_double_quotes] = STATE(4102), + [sym_val_list] = STATE(4047), + [sym_val_record] = STATE(4047), + [sym_val_table] = STATE(4047), + [sym_val_closure] = STATE(4047), + [sym_unquoted] = STATE(5532), + [sym__unquoted_anonymous_prefix] = STATE(8071), + [sym_comment] = STATE(1154), + [anon_sym_true] = ACTIONS(4413), + [anon_sym_false] = ACTIONS(4413), + [anon_sym_null] = ACTIONS(4415), + [aux_sym_cmd_identifier_token38] = ACTIONS(4417), + [aux_sym_cmd_identifier_token39] = ACTIONS(4417), + [aux_sym_cmd_identifier_token40] = ACTIONS(4417), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(4151), + [anon_sym_DOLLAR] = ACTIONS(4153), + [anon_sym_LBRACE] = ACTIONS(3470), + [anon_sym_DOT_DOT] = ACTIONS(4155), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4157), + [anon_sym_DOT_DOT_LT] = ACTIONS(4157), + [aux_sym__val_number_decimal_token1] = ACTIONS(4419), + [aux_sym__val_number_decimal_token2] = ACTIONS(4421), + [aux_sym__val_number_decimal_token3] = ACTIONS(4423), + [aux_sym__val_number_decimal_token4] = ACTIONS(4425), + [aux_sym__val_number_token1] = ACTIONS(3486), + [aux_sym__val_number_token2] = ACTIONS(3486), + [aux_sym__val_number_token3] = ACTIONS(3486), + [anon_sym_0b] = ACTIONS(3488), + [anon_sym_0o] = ACTIONS(3490), + [anon_sym_0x] = ACTIONS(3490), + [sym_val_date] = ACTIONS(4427), + [anon_sym_DQUOTE] = ACTIONS(3494), + [sym__str_single_quotes] = ACTIONS(3496), + [sym__str_back_ticks] = ACTIONS(3496), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3498), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3500), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3502), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3504), + }, + [1155] = { + [sym__val_range] = STATE(7929), + [sym__value] = STATE(5979), + [sym_val_nothing] = STATE(4196), + [sym_val_bool] = STATE(5734), + [sym_val_variable] = STATE(4196), + [sym_val_number] = STATE(4196), + [sym__val_number_decimal] = STATE(5099), + [sym__val_number] = STATE(4279), + [sym_val_duration] = STATE(4196), + [sym_val_filesize] = STATE(4196), + [sym_val_binary] = STATE(4196), + [sym_val_string] = STATE(4196), + [sym__raw_str] = STATE(3606), + [sym__str_double_quotes] = STATE(3606), + [sym_val_interpolated] = STATE(4196), + [sym__inter_single_quotes] = STATE(4216), + [sym__inter_double_quotes] = STATE(4218), + [sym_val_list] = STATE(4196), + [sym_val_record] = STATE(4196), + [sym_val_table] = STATE(4196), + [sym_val_closure] = STATE(4196), + [sym_unquoted] = STATE(5824), + [sym__unquoted_anonymous_prefix] = STATE(7636), + [sym_comment] = STATE(1155), + [anon_sym_true] = ACTIONS(4389), + [anon_sym_false] = ACTIONS(4389), + [anon_sym_null] = ACTIONS(4391), + [aux_sym_cmd_identifier_token38] = ACTIONS(4393), + [aux_sym_cmd_identifier_token39] = ACTIONS(4393), + [aux_sym_cmd_identifier_token40] = ACTIONS(4393), + [anon_sym_LBRACK] = ACTIONS(3512), + [anon_sym_LPAREN] = ACTIONS(4395), + [anon_sym_DOLLAR] = ACTIONS(4397), + [anon_sym_LBRACE] = ACTIONS(3520), + [anon_sym_DOT_DOT] = ACTIONS(4399), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4401), + [anon_sym_DOT_DOT_LT] = ACTIONS(4401), + [aux_sym__val_number_decimal_token1] = ACTIONS(4403), + [aux_sym__val_number_decimal_token2] = ACTIONS(4405), + [aux_sym__val_number_decimal_token3] = ACTIONS(4407), + [aux_sym__val_number_decimal_token4] = ACTIONS(4409), + [aux_sym__val_number_token1] = ACTIONS(3536), + [aux_sym__val_number_token2] = ACTIONS(3536), + [aux_sym__val_number_token3] = ACTIONS(3536), + [anon_sym_0b] = ACTIONS(3538), + [anon_sym_0o] = ACTIONS(3540), + [anon_sym_0x] = ACTIONS(3540), + [sym_val_date] = ACTIONS(4411), + [anon_sym_DQUOTE] = ACTIONS(3544), + [sym__str_single_quotes] = ACTIONS(3546), + [sym__str_back_ticks] = ACTIONS(3546), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3548), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3550), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3552), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3554), + }, + [1156] = { + [sym__val_range] = STATE(7632), + [sym__value] = STATE(5502), + [sym_val_nothing] = STATE(4047), + [sym_val_bool] = STATE(5570), + [sym_val_variable] = STATE(4047), + [sym_val_number] = STATE(4047), + [sym__val_number_decimal] = STATE(4990), + [sym__val_number] = STATE(3529), + [sym_val_duration] = STATE(4047), + [sym_val_filesize] = STATE(4047), + [sym_val_binary] = STATE(4047), + [sym_val_string] = STATE(4047), + [sym__raw_str] = STATE(2932), + [sym__str_double_quotes] = STATE(2932), + [sym_val_interpolated] = STATE(4047), + [sym__inter_single_quotes] = STATE(4101), + [sym__inter_double_quotes] = STATE(4102), + [sym_val_list] = STATE(4047), + [sym_val_record] = STATE(4047), + [sym_val_table] = STATE(4047), + [sym_val_closure] = STATE(4047), + [sym_unquoted] = STATE(5504), + [sym__unquoted_anonymous_prefix] = STATE(8071), + [sym_comment] = STATE(1156), + [anon_sym_true] = ACTIONS(4413), + [anon_sym_false] = ACTIONS(4413), + [anon_sym_null] = ACTIONS(4415), + [aux_sym_cmd_identifier_token38] = ACTIONS(4417), + [aux_sym_cmd_identifier_token39] = ACTIONS(4417), + [aux_sym_cmd_identifier_token40] = ACTIONS(4417), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(4151), + [anon_sym_DOLLAR] = ACTIONS(4153), + [anon_sym_LBRACE] = ACTIONS(3470), + [anon_sym_DOT_DOT] = ACTIONS(4155), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4157), + [anon_sym_DOT_DOT_LT] = ACTIONS(4157), + [aux_sym__val_number_decimal_token1] = ACTIONS(4419), + [aux_sym__val_number_decimal_token2] = ACTIONS(4421), + [aux_sym__val_number_decimal_token3] = ACTIONS(4423), + [aux_sym__val_number_decimal_token4] = ACTIONS(4425), + [aux_sym__val_number_token1] = ACTIONS(3486), + [aux_sym__val_number_token2] = ACTIONS(3486), + [aux_sym__val_number_token3] = ACTIONS(3486), + [anon_sym_0b] = ACTIONS(3488), + [anon_sym_0o] = ACTIONS(3490), + [anon_sym_0x] = ACTIONS(3490), + [sym_val_date] = ACTIONS(4427), + [anon_sym_DQUOTE] = ACTIONS(3494), + [sym__str_single_quotes] = ACTIONS(3496), + [sym__str_back_ticks] = ACTIONS(3496), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3498), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3500), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3502), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3504), + }, + [1157] = { + [sym__val_range] = STATE(7632), + [sym__value] = STATE(5581), + [sym_val_nothing] = STATE(4047), + [sym_val_bool] = STATE(5570), + [sym_val_variable] = STATE(4047), + [sym_val_number] = STATE(4047), + [sym__val_number_decimal] = STATE(4990), + [sym__val_number] = STATE(3529), + [sym_val_duration] = STATE(4047), + [sym_val_filesize] = STATE(4047), + [sym_val_binary] = STATE(4047), + [sym_val_string] = STATE(4047), + [sym__raw_str] = STATE(2932), + [sym__str_double_quotes] = STATE(2932), + [sym_val_interpolated] = STATE(4047), + [sym__inter_single_quotes] = STATE(4101), + [sym__inter_double_quotes] = STATE(4102), + [sym_val_list] = STATE(4047), + [sym_val_record] = STATE(4047), + [sym_val_table] = STATE(4047), + [sym_val_closure] = STATE(4047), + [sym_unquoted] = STATE(5583), + [sym__unquoted_anonymous_prefix] = STATE(8071), + [sym_comment] = STATE(1157), + [anon_sym_true] = ACTIONS(4413), + [anon_sym_false] = ACTIONS(4413), + [anon_sym_null] = ACTIONS(4415), + [aux_sym_cmd_identifier_token38] = ACTIONS(4417), + [aux_sym_cmd_identifier_token39] = ACTIONS(4417), + [aux_sym_cmd_identifier_token40] = ACTIONS(4417), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(4151), + [anon_sym_DOLLAR] = ACTIONS(4153), + [anon_sym_LBRACE] = ACTIONS(3470), + [anon_sym_DOT_DOT] = ACTIONS(4155), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4157), + [anon_sym_DOT_DOT_LT] = ACTIONS(4157), + [aux_sym__val_number_decimal_token1] = ACTIONS(4419), + [aux_sym__val_number_decimal_token2] = ACTIONS(4421), + [aux_sym__val_number_decimal_token3] = ACTIONS(4423), + [aux_sym__val_number_decimal_token4] = ACTIONS(4425), + [aux_sym__val_number_token1] = ACTIONS(3486), + [aux_sym__val_number_token2] = ACTIONS(3486), + [aux_sym__val_number_token3] = ACTIONS(3486), + [anon_sym_0b] = ACTIONS(3488), + [anon_sym_0o] = ACTIONS(3490), + [anon_sym_0x] = ACTIONS(3490), + [sym_val_date] = ACTIONS(4427), + [anon_sym_DQUOTE] = ACTIONS(3494), + [sym__str_single_quotes] = ACTIONS(3496), + [sym__str_back_ticks] = ACTIONS(3496), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3498), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3500), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3502), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3504), + }, + [1158] = { + [sym__val_range] = STATE(7632), + [sym__value] = STATE(5611), + [sym_val_nothing] = STATE(4047), + [sym_val_bool] = STATE(5570), + [sym_val_variable] = STATE(4047), + [sym_val_number] = STATE(4047), + [sym__val_number_decimal] = STATE(4990), + [sym__val_number] = STATE(3529), + [sym_val_duration] = STATE(4047), + [sym_val_filesize] = STATE(4047), + [sym_val_binary] = STATE(4047), + [sym_val_string] = STATE(4047), + [sym__raw_str] = STATE(2932), + [sym__str_double_quotes] = STATE(2932), + [sym_val_interpolated] = STATE(4047), + [sym__inter_single_quotes] = STATE(4101), + [sym__inter_double_quotes] = STATE(4102), + [sym_val_list] = STATE(4047), + [sym_val_record] = STATE(4047), + [sym_val_table] = STATE(4047), + [sym_val_closure] = STATE(4047), + [sym_unquoted] = STATE(5613), + [sym__unquoted_anonymous_prefix] = STATE(8071), + [sym_comment] = STATE(1158), + [anon_sym_true] = ACTIONS(4413), + [anon_sym_false] = ACTIONS(4413), + [anon_sym_null] = ACTIONS(4415), + [aux_sym_cmd_identifier_token38] = ACTIONS(4417), + [aux_sym_cmd_identifier_token39] = ACTIONS(4417), + [aux_sym_cmd_identifier_token40] = ACTIONS(4417), + [anon_sym_LBRACK] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(4151), + [anon_sym_DOLLAR] = ACTIONS(4153), + [anon_sym_LBRACE] = ACTIONS(3470), + [anon_sym_DOT_DOT] = ACTIONS(4155), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4157), + [anon_sym_DOT_DOT_LT] = ACTIONS(4157), + [aux_sym__val_number_decimal_token1] = ACTIONS(4419), + [aux_sym__val_number_decimal_token2] = ACTIONS(4421), + [aux_sym__val_number_decimal_token3] = ACTIONS(4423), + [aux_sym__val_number_decimal_token4] = ACTIONS(4425), + [aux_sym__val_number_token1] = ACTIONS(3486), + [aux_sym__val_number_token2] = ACTIONS(3486), + [aux_sym__val_number_token3] = ACTIONS(3486), + [anon_sym_0b] = ACTIONS(3488), + [anon_sym_0o] = ACTIONS(3490), + [anon_sym_0x] = ACTIONS(3490), + [sym_val_date] = ACTIONS(4427), + [anon_sym_DQUOTE] = ACTIONS(3494), + [sym__str_single_quotes] = ACTIONS(3496), + [sym__str_back_ticks] = ACTIONS(3496), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3498), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3500), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3502), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3504), + }, + [1159] = { + [sym__val_range] = STATE(7794), + [sym__value] = STATE(6044), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3688), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(5733), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(4434), + [sym__str_double_quotes] = STATE(4434), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(6070), + [sym__unquoted_anonymous_prefix] = STATE(7859), + [sym_comment] = STATE(1159), + [anon_sym_true] = ACTIONS(3350), + [anon_sym_false] = ACTIONS(3350), + [anon_sym_null] = ACTIONS(3352), + [aux_sym_cmd_identifier_token38] = ACTIONS(3828), + [aux_sym_cmd_identifier_token39] = ACTIONS(3828), + [aux_sym_cmd_identifier_token40] = ACTIONS(3828), + [anon_sym_LBRACK] = ACTIONS(3830), + [anon_sym_LPAREN] = ACTIONS(4169), + [anon_sym_DOLLAR] = ACTIONS(4020), + [anon_sym_LBRACE] = ACTIONS(3836), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4026), + [anon_sym_DOT_DOT_LT] = ACTIONS(4026), + [aux_sym__val_number_decimal_token1] = ACTIONS(3366), + [aux_sym__val_number_decimal_token2] = ACTIONS(3368), + [aux_sym__val_number_decimal_token3] = ACTIONS(3370), + [aux_sym__val_number_decimal_token4] = ACTIONS(3372), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3374), + [anon_sym_DQUOTE] = ACTIONS(3842), + [sym__str_single_quotes] = ACTIONS(3844), + [sym__str_back_ticks] = ACTIONS(3844), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3846), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3848), + }, + [1160] = { + [sym__expr_parenthesized_immediate] = STATE(1591), + [sym__immediate_decimal] = STATE(1598), + [sym_val_variable] = STATE(1591), + [sym_comment] = STATE(1160), + [anon_sym_true] = ACTIONS(1614), + [anon_sym_false] = ACTIONS(1614), + [anon_sym_null] = ACTIONS(1614), + [aux_sym_cmd_identifier_token38] = ACTIONS(1614), + [aux_sym_cmd_identifier_token39] = ACTIONS(1614), + [aux_sym_cmd_identifier_token40] = ACTIONS(1614), + [sym__newline] = ACTIONS(1614), + [anon_sym_SEMI] = ACTIONS(1614), + [anon_sym_PIPE] = ACTIONS(1614), + [anon_sym_err_GT_PIPE] = ACTIONS(1614), + [anon_sym_out_GT_PIPE] = ACTIONS(1614), + [anon_sym_e_GT_PIPE] = ACTIONS(1614), + [anon_sym_o_GT_PIPE] = ACTIONS(1614), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1614), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1614), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1614), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1614), + [anon_sym_LPAREN] = ACTIONS(1612), + [anon_sym_RPAREN] = ACTIONS(1614), + [anon_sym_DOLLAR] = ACTIONS(3970), + [anon_sym_DASH_DASH] = ACTIONS(1614), + [anon_sym_DASH] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_RBRACE] = ACTIONS(1614), + [anon_sym_DOT_DOT] = ACTIONS(1612), + [anon_sym_LPAREN2] = ACTIONS(3972), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1614), + [anon_sym_DOT_DOT_LT] = ACTIONS(1614), + [aux_sym__immediate_decimal_token1] = ACTIONS(4113), + [aux_sym__immediate_decimal_token3] = ACTIONS(4115), + [aux_sym__immediate_decimal_token4] = ACTIONS(4117), + [aux_sym__immediate_decimal_token5] = ACTIONS(4119), + [aux_sym__val_number_decimal_token1] = ACTIONS(1612), + [aux_sym__val_number_decimal_token2] = ACTIONS(1612), + [aux_sym__val_number_decimal_token3] = ACTIONS(1612), + [aux_sym__val_number_decimal_token4] = ACTIONS(1612), + [aux_sym__val_number_token1] = ACTIONS(1614), + [aux_sym__val_number_token2] = ACTIONS(1614), + [aux_sym__val_number_token3] = ACTIONS(1614), + [anon_sym_0b] = ACTIONS(1612), + [anon_sym_0o] = ACTIONS(1612), + [anon_sym_0x] = ACTIONS(1612), + [sym_val_date] = ACTIONS(1614), + [anon_sym_DQUOTE] = ACTIONS(1614), + [sym__str_single_quotes] = ACTIONS(1614), + [sym__str_back_ticks] = ACTIONS(1614), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1614), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1614), + [anon_sym_err_GT] = ACTIONS(1612), + [anon_sym_out_GT] = ACTIONS(1612), + [anon_sym_e_GT] = ACTIONS(1612), + [anon_sym_o_GT] = ACTIONS(1612), + [anon_sym_err_PLUSout_GT] = ACTIONS(1612), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1612), + [anon_sym_o_PLUSe_GT] = ACTIONS(1612), + [anon_sym_e_PLUSo_GT] = ACTIONS(1612), + [anon_sym_err_GT_GT] = ACTIONS(1614), + [anon_sym_out_GT_GT] = ACTIONS(1614), + [anon_sym_e_GT_GT] = ACTIONS(1614), + [anon_sym_o_GT_GT] = ACTIONS(1614), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1614), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1614), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1614), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1614), + [aux_sym_unquoted_token1] = ACTIONS(1612), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1614), + }, + [1161] = { + [sym__expr_parenthesized_immediate] = STATE(1734), + [sym__immediate_decimal] = STATE(1518), + [sym_val_variable] = STATE(1734), + [sym_comment] = STATE(1161), + [ts_builtin_sym_end] = ACTIONS(1556), [anon_sym_true] = ACTIONS(1556), [anon_sym_false] = ACTIONS(1556), [anon_sym_null] = ACTIONS(1556), @@ -186513,46 +191775,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1556), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1556), [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_RPAREN] = ACTIONS(1556), - [anon_sym_DOLLAR] = ACTIONS(1554), + [anon_sym_LPAREN] = ACTIONS(1544), + [anon_sym_DOLLAR] = ACTIONS(4171), [anon_sym_DASH_DASH] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1554), + [anon_sym_DASH] = ACTIONS(1544), [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1556), - [anon_sym_DOT_DOT] = ACTIONS(1554), - [anon_sym_DOT_DOT2] = ACTIONS(1554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1554), - [anon_sym_DOT_DOT_LT] = ACTIONS(1554), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1556), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1556), - [aux_sym__immediate_decimal_token2] = ACTIONS(4085), - [aux_sym__val_number_decimal_token1] = ACTIONS(1554), - [aux_sym__val_number_decimal_token2] = ACTIONS(1556), - [aux_sym__val_number_decimal_token3] = ACTIONS(1556), - [aux_sym__val_number_decimal_token4] = ACTIONS(1556), + [anon_sym_DOT_DOT] = ACTIONS(1544), + [anon_sym_LPAREN2] = ACTIONS(4173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1556), + [anon_sym_DOT_DOT_LT] = ACTIONS(1556), + [aux_sym__immediate_decimal_token1] = ACTIONS(4175), + [aux_sym__immediate_decimal_token3] = ACTIONS(4177), + [aux_sym__immediate_decimal_token4] = ACTIONS(4179), + [aux_sym__immediate_decimal_token5] = ACTIONS(4181), + [aux_sym__val_number_decimal_token1] = ACTIONS(1544), + [aux_sym__val_number_decimal_token2] = ACTIONS(1544), + [aux_sym__val_number_decimal_token3] = ACTIONS(1544), + [aux_sym__val_number_decimal_token4] = ACTIONS(1544), [aux_sym__val_number_token1] = ACTIONS(1556), [aux_sym__val_number_token2] = ACTIONS(1556), [aux_sym__val_number_token3] = ACTIONS(1556), - [anon_sym_0b] = ACTIONS(1554), - [sym_filesize_unit] = ACTIONS(1556), - [sym_duration_unit] = ACTIONS(1556), - [anon_sym_0o] = ACTIONS(1554), - [anon_sym_0x] = ACTIONS(1554), + [anon_sym_0b] = ACTIONS(1544), + [anon_sym_0o] = ACTIONS(1544), + [anon_sym_0x] = ACTIONS(1544), [sym_val_date] = ACTIONS(1556), [anon_sym_DQUOTE] = ACTIONS(1556), [sym__str_single_quotes] = ACTIONS(1556), [sym__str_back_ticks] = ACTIONS(1556), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1556), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1556), - [anon_sym_err_GT] = ACTIONS(1554), - [anon_sym_out_GT] = ACTIONS(1554), - [anon_sym_e_GT] = ACTIONS(1554), - [anon_sym_o_GT] = ACTIONS(1554), - [anon_sym_err_PLUSout_GT] = ACTIONS(1554), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1554), - [anon_sym_o_PLUSe_GT] = ACTIONS(1554), - [anon_sym_e_PLUSo_GT] = ACTIONS(1554), + [anon_sym_err_GT] = ACTIONS(1544), + [anon_sym_out_GT] = ACTIONS(1544), + [anon_sym_e_GT] = ACTIONS(1544), + [anon_sym_o_GT] = ACTIONS(1544), + [anon_sym_err_PLUSout_GT] = ACTIONS(1544), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1544), + [anon_sym_o_PLUSe_GT] = ACTIONS(1544), + [anon_sym_e_PLUSo_GT] = ACTIONS(1544), [anon_sym_err_GT_GT] = ACTIONS(1556), [anon_sym_out_GT_GT] = ACTIONS(1556), [anon_sym_e_GT_GT] = ACTIONS(1556), @@ -186561,156 +191820,1117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1556), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1556), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1556), - [aux_sym_unquoted_token1] = ACTIONS(1554), - [aux_sym_unquoted_token2] = ACTIONS(1554), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_unquoted_token1] = ACTIONS(1544), + [aux_sym_unquoted_token2] = ACTIONS(1558), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1556), }, - [1128] = { - [sym_comment] = STATE(1128), - [anon_sym_EQ] = ACTIONS(1022), - [anon_sym_PLUS_EQ] = ACTIONS(1024), - [anon_sym_DASH_EQ] = ACTIONS(1024), - [anon_sym_STAR_EQ] = ACTIONS(1024), - [anon_sym_SLASH_EQ] = ACTIONS(1024), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1024), - [sym__newline] = ACTIONS(1022), - [anon_sym_SEMI] = ACTIONS(1024), - [anon_sym_PIPE] = ACTIONS(1024), - [anon_sym_err_GT_PIPE] = ACTIONS(1024), - [anon_sym_out_GT_PIPE] = ACTIONS(1024), - [anon_sym_e_GT_PIPE] = ACTIONS(1024), - [anon_sym_o_GT_PIPE] = ACTIONS(1024), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1024), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1024), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1024), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1024), - [anon_sym_RPAREN] = ACTIONS(1024), - [anon_sym_LBRACE] = ACTIONS(1024), - [anon_sym_QMARK2] = ACTIONS(4087), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1024), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1024), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1024), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1024), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1024), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1024), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1024), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1024), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1024), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1024), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1024), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1024), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1024), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1024), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1024), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1024), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1024), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1024), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1024), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1024), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1024), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1024), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1024), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1024), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1024), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1024), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1024), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1024), - [anon_sym_DOT_DOT2] = ACTIONS(1022), - [anon_sym_DOT] = ACTIONS(1022), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1024), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1024), - [anon_sym_err_GT] = ACTIONS(1022), - [anon_sym_out_GT] = ACTIONS(1022), - [anon_sym_e_GT] = ACTIONS(1022), - [anon_sym_o_GT] = ACTIONS(1022), - [anon_sym_err_PLUSout_GT] = ACTIONS(1022), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1022), - [anon_sym_o_PLUSe_GT] = ACTIONS(1022), - [anon_sym_e_PLUSo_GT] = ACTIONS(1022), - [anon_sym_err_GT_GT] = ACTIONS(1024), - [anon_sym_out_GT_GT] = ACTIONS(1024), - [anon_sym_e_GT_GT] = ACTIONS(1024), - [anon_sym_o_GT_GT] = ACTIONS(1024), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1024), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1024), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1024), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1024), - [anon_sym_POUND] = ACTIONS(247), + [1162] = { + [sym__expr_parenthesized_immediate] = STATE(1599), + [sym__immediate_decimal] = STATE(1604), + [sym_val_variable] = STATE(1599), + [sym_comment] = STATE(1162), + [anon_sym_true] = ACTIONS(1622), + [anon_sym_false] = ACTIONS(1622), + [anon_sym_null] = ACTIONS(1622), + [aux_sym_cmd_identifier_token38] = ACTIONS(1622), + [aux_sym_cmd_identifier_token39] = ACTIONS(1622), + [aux_sym_cmd_identifier_token40] = ACTIONS(1622), + [sym__newline] = ACTIONS(1622), + [anon_sym_SEMI] = ACTIONS(1622), + [anon_sym_PIPE] = ACTIONS(1622), + [anon_sym_err_GT_PIPE] = ACTIONS(1622), + [anon_sym_out_GT_PIPE] = ACTIONS(1622), + [anon_sym_e_GT_PIPE] = ACTIONS(1622), + [anon_sym_o_GT_PIPE] = ACTIONS(1622), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1622), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1622), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1622), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1622), + [anon_sym_LBRACK] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(1620), + [anon_sym_RPAREN] = ACTIONS(1622), + [anon_sym_DOLLAR] = ACTIONS(3970), + [anon_sym_DASH_DASH] = ACTIONS(1622), + [anon_sym_DASH] = ACTIONS(1620), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_RBRACE] = ACTIONS(1622), + [anon_sym_DOT_DOT] = ACTIONS(1620), + [anon_sym_LPAREN2] = ACTIONS(3972), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1622), + [anon_sym_DOT_DOT_LT] = ACTIONS(1622), + [aux_sym__immediate_decimal_token1] = ACTIONS(4113), + [aux_sym__immediate_decimal_token3] = ACTIONS(4115), + [aux_sym__immediate_decimal_token4] = ACTIONS(4117), + [aux_sym__immediate_decimal_token5] = ACTIONS(4119), + [aux_sym__val_number_decimal_token1] = ACTIONS(1620), + [aux_sym__val_number_decimal_token2] = ACTIONS(1620), + [aux_sym__val_number_decimal_token3] = ACTIONS(1620), + [aux_sym__val_number_decimal_token4] = ACTIONS(1620), + [aux_sym__val_number_token1] = ACTIONS(1622), + [aux_sym__val_number_token2] = ACTIONS(1622), + [aux_sym__val_number_token3] = ACTIONS(1622), + [anon_sym_0b] = ACTIONS(1620), + [anon_sym_0o] = ACTIONS(1620), + [anon_sym_0x] = ACTIONS(1620), + [sym_val_date] = ACTIONS(1622), + [anon_sym_DQUOTE] = ACTIONS(1622), + [sym__str_single_quotes] = ACTIONS(1622), + [sym__str_back_ticks] = ACTIONS(1622), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1622), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1622), + [anon_sym_err_GT] = ACTIONS(1620), + [anon_sym_out_GT] = ACTIONS(1620), + [anon_sym_e_GT] = ACTIONS(1620), + [anon_sym_o_GT] = ACTIONS(1620), + [anon_sym_err_PLUSout_GT] = ACTIONS(1620), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1620), + [anon_sym_o_PLUSe_GT] = ACTIONS(1620), + [anon_sym_e_PLUSo_GT] = ACTIONS(1620), + [anon_sym_err_GT_GT] = ACTIONS(1622), + [anon_sym_out_GT_GT] = ACTIONS(1622), + [anon_sym_e_GT_GT] = ACTIONS(1622), + [anon_sym_o_GT_GT] = ACTIONS(1622), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1622), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1622), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1622), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1622), + [aux_sym_unquoted_token1] = ACTIONS(1620), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1622), }, - [1129] = { - [sym_comment] = STATE(1129), - [anon_sym_EQ] = ACTIONS(1028), - [anon_sym_PLUS_EQ] = ACTIONS(1030), - [anon_sym_DASH_EQ] = ACTIONS(1030), - [anon_sym_STAR_EQ] = ACTIONS(1030), - [anon_sym_SLASH_EQ] = ACTIONS(1030), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1030), - [sym__newline] = ACTIONS(1028), - [anon_sym_SEMI] = ACTIONS(1030), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_err_GT_PIPE] = ACTIONS(1030), - [anon_sym_out_GT_PIPE] = ACTIONS(1030), - [anon_sym_e_GT_PIPE] = ACTIONS(1030), - [anon_sym_o_GT_PIPE] = ACTIONS(1030), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1030), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1030), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1030), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1030), - [anon_sym_RPAREN] = ACTIONS(1030), - [anon_sym_LBRACE] = ACTIONS(1030), - [anon_sym_QMARK2] = ACTIONS(4089), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1030), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1030), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1030), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1030), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1030), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1030), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1030), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1030), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1030), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1030), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1030), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1030), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1030), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1030), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1030), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1030), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1030), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1030), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1030), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1030), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1030), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1030), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1030), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1030), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1030), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1030), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1030), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1030), - [anon_sym_DOT_DOT2] = ACTIONS(1028), - [anon_sym_DOT] = ACTIONS(1028), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1030), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1030), - [anon_sym_err_GT] = ACTIONS(1028), - [anon_sym_out_GT] = ACTIONS(1028), - [anon_sym_e_GT] = ACTIONS(1028), - [anon_sym_o_GT] = ACTIONS(1028), - [anon_sym_err_PLUSout_GT] = ACTIONS(1028), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1028), - [anon_sym_o_PLUSe_GT] = ACTIONS(1028), - [anon_sym_e_PLUSo_GT] = ACTIONS(1028), - [anon_sym_err_GT_GT] = ACTIONS(1030), - [anon_sym_out_GT_GT] = ACTIONS(1030), - [anon_sym_e_GT_GT] = ACTIONS(1030), - [anon_sym_o_GT_GT] = ACTIONS(1030), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1030), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1030), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1030), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1030), - [anon_sym_POUND] = ACTIONS(247), + [1163] = { + [sym_comment] = STATE(1163), + [ts_builtin_sym_end] = ACTIONS(1538), + [anon_sym_true] = ACTIONS(1538), + [anon_sym_false] = ACTIONS(1538), + [anon_sym_null] = ACTIONS(1538), + [aux_sym_cmd_identifier_token38] = ACTIONS(1538), + [aux_sym_cmd_identifier_token39] = ACTIONS(1538), + [aux_sym_cmd_identifier_token40] = ACTIONS(1538), + [sym__newline] = ACTIONS(1538), + [anon_sym_SEMI] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_err_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_GT_PIPE] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), + [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_LPAREN] = ACTIONS(1536), + [anon_sym_DOLLAR] = ACTIONS(1536), + [anon_sym_DASH_DASH] = ACTIONS(1538), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1538), + [anon_sym_DOT_DOT] = ACTIONS(1536), + [anon_sym_LPAREN2] = ACTIONS(1538), + [anon_sym_DOT_DOT2] = ACTIONS(1536), + [anon_sym_DOT] = ACTIONS(4429), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1536), + [anon_sym_DOT_DOT_LT] = ACTIONS(1536), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), + [aux_sym__immediate_decimal_token2] = ACTIONS(4431), + [aux_sym__val_number_decimal_token1] = ACTIONS(1536), + [aux_sym__val_number_decimal_token2] = ACTIONS(1538), + [aux_sym__val_number_decimal_token3] = ACTIONS(1538), + [aux_sym__val_number_decimal_token4] = ACTIONS(1538), + [aux_sym__val_number_token1] = ACTIONS(1538), + [aux_sym__val_number_token2] = ACTIONS(1538), + [aux_sym__val_number_token3] = ACTIONS(1538), + [anon_sym_0b] = ACTIONS(1536), + [sym_filesize_unit] = ACTIONS(1538), + [sym_duration_unit] = ACTIONS(1538), + [anon_sym_0o] = ACTIONS(1536), + [anon_sym_0x] = ACTIONS(1536), + [sym_val_date] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1538), + [sym__str_single_quotes] = ACTIONS(1538), + [sym__str_back_ticks] = ACTIONS(1538), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1538), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1538), + [anon_sym_err_GT] = ACTIONS(1536), + [anon_sym_out_GT] = ACTIONS(1536), + [anon_sym_e_GT] = ACTIONS(1536), + [anon_sym_o_GT] = ACTIONS(1536), + [anon_sym_err_PLUSout_GT] = ACTIONS(1536), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), + [anon_sym_o_PLUSe_GT] = ACTIONS(1536), + [anon_sym_e_PLUSo_GT] = ACTIONS(1536), + [anon_sym_err_GT_GT] = ACTIONS(1538), + [anon_sym_out_GT_GT] = ACTIONS(1538), + [anon_sym_e_GT_GT] = ACTIONS(1538), + [anon_sym_o_GT_GT] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), + [aux_sym_unquoted_token1] = ACTIONS(1536), + [aux_sym_unquoted_token2] = ACTIONS(1536), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1538), }, - [1130] = { - [sym_comment] = STATE(1130), + [1164] = { + [sym__val_range] = STATE(7794), + [sym__value] = STATE(5997), + [sym_val_nothing] = STATE(4884), + [sym_val_bool] = STATE(5849), + [sym_val_variable] = STATE(4884), + [sym_val_number] = STATE(4884), + [sym__val_number_decimal] = STATE(5354), + [sym__val_number] = STATE(3529), + [sym_val_duration] = STATE(4884), + [sym_val_filesize] = STATE(4884), + [sym_val_binary] = STATE(4884), + [sym_val_string] = STATE(4884), + [sym__raw_str] = STATE(4434), + [sym__str_double_quotes] = STATE(4434), + [sym_val_interpolated] = STATE(4884), + [sym__inter_single_quotes] = STATE(4936), + [sym__inter_double_quotes] = STATE(4937), + [sym_val_list] = STATE(4884), + [sym_val_record] = STATE(4884), + [sym_val_table] = STATE(4884), + [sym_val_closure] = STATE(4884), + [sym_unquoted] = STATE(6052), + [sym__unquoted_anonymous_prefix] = STATE(7859), + [sym_comment] = STATE(1164), + [anon_sym_true] = ACTIONS(4010), + [anon_sym_false] = ACTIONS(4010), + [anon_sym_null] = ACTIONS(4012), + [aux_sym_cmd_identifier_token38] = ACTIONS(4014), + [aux_sym_cmd_identifier_token39] = ACTIONS(4014), + [aux_sym_cmd_identifier_token40] = ACTIONS(4014), + [anon_sym_LBRACK] = ACTIONS(4016), + [anon_sym_LPAREN] = ACTIONS(4018), + [anon_sym_DOLLAR] = ACTIONS(4020), + [anon_sym_LBRACE] = ACTIONS(4022), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4026), + [anon_sym_DOT_DOT_LT] = ACTIONS(4026), + [aux_sym__val_number_decimal_token1] = ACTIONS(4028), + [aux_sym__val_number_decimal_token2] = ACTIONS(4030), + [aux_sym__val_number_decimal_token3] = ACTIONS(4032), + [aux_sym__val_number_decimal_token4] = ACTIONS(4034), + [aux_sym__val_number_token1] = ACTIONS(3486), + [aux_sym__val_number_token2] = ACTIONS(3486), + [aux_sym__val_number_token3] = ACTIONS(3486), + [anon_sym_0b] = ACTIONS(3586), + [anon_sym_0o] = ACTIONS(3588), + [anon_sym_0x] = ACTIONS(3588), + [sym_val_date] = ACTIONS(4036), + [anon_sym_DQUOTE] = ACTIONS(3842), + [sym__str_single_quotes] = ACTIONS(3844), + [sym__str_back_ticks] = ACTIONS(3844), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3596), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3598), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3846), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3848), + }, + [1165] = { + [sym__expr_parenthesized_immediate] = STATE(7567), + [sym_comment] = STATE(1165), + [anon_sym_true] = ACTIONS(1640), + [anon_sym_false] = ACTIONS(1640), + [anon_sym_null] = ACTIONS(1640), + [aux_sym_cmd_identifier_token38] = ACTIONS(1640), + [aux_sym_cmd_identifier_token39] = ACTIONS(1640), + [aux_sym_cmd_identifier_token40] = ACTIONS(1640), + [sym__newline] = ACTIONS(1640), + [anon_sym_SEMI] = ACTIONS(1640), + [anon_sym_PIPE] = ACTIONS(1640), + [anon_sym_err_GT_PIPE] = ACTIONS(1640), + [anon_sym_out_GT_PIPE] = ACTIONS(1640), + [anon_sym_e_GT_PIPE] = ACTIONS(1640), + [anon_sym_o_GT_PIPE] = ACTIONS(1640), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1640), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1640), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1640), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_LPAREN] = ACTIONS(1628), + [anon_sym_RPAREN] = ACTIONS(1640), + [anon_sym_DOLLAR] = ACTIONS(1628), + [anon_sym_DASH_DASH] = ACTIONS(1640), + [anon_sym_DASH] = ACTIONS(1628), + [anon_sym_LBRACE] = ACTIONS(1640), + [anon_sym_RBRACE] = ACTIONS(1640), + [anon_sym_DOT_DOT] = ACTIONS(1628), + [anon_sym_LPAREN2] = ACTIONS(4433), + [anon_sym_DOT_DOT2] = ACTIONS(4435), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1628), + [anon_sym_DOT_DOT_LT] = ACTIONS(1628), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4437), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4437), + [aux_sym__val_number_decimal_token1] = ACTIONS(1628), + [aux_sym__val_number_decimal_token2] = ACTIONS(1640), + [aux_sym__val_number_decimal_token3] = ACTIONS(1640), + [aux_sym__val_number_decimal_token4] = ACTIONS(1640), + [aux_sym__val_number_token1] = ACTIONS(1640), + [aux_sym__val_number_token2] = ACTIONS(1640), + [aux_sym__val_number_token3] = ACTIONS(1640), + [anon_sym_0b] = ACTIONS(1628), + [sym_filesize_unit] = ACTIONS(4439), + [sym_duration_unit] = ACTIONS(4441), + [anon_sym_0o] = ACTIONS(1628), + [anon_sym_0x] = ACTIONS(1628), + [sym_val_date] = ACTIONS(1640), + [anon_sym_DQUOTE] = ACTIONS(1640), + [sym__str_single_quotes] = ACTIONS(1640), + [sym__str_back_ticks] = ACTIONS(1640), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1640), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1640), + [anon_sym_err_GT] = ACTIONS(1628), + [anon_sym_out_GT] = ACTIONS(1628), + [anon_sym_e_GT] = ACTIONS(1628), + [anon_sym_o_GT] = ACTIONS(1628), + [anon_sym_err_PLUSout_GT] = ACTIONS(1628), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1628), + [anon_sym_o_PLUSe_GT] = ACTIONS(1628), + [anon_sym_e_PLUSo_GT] = ACTIONS(1628), + [anon_sym_err_GT_GT] = ACTIONS(1640), + [anon_sym_out_GT_GT] = ACTIONS(1640), + [anon_sym_e_GT_GT] = ACTIONS(1640), + [anon_sym_o_GT_GT] = ACTIONS(1640), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1640), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1640), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1640), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1640), + [aux_sym_unquoted_token1] = ACTIONS(1628), + [aux_sym_unquoted_token2] = ACTIONS(4443), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1640), + }, + [1166] = { + [sym__expr_parenthesized_immediate] = STATE(1428), + [sym__immediate_decimal] = STATE(1433), + [sym_val_variable] = STATE(1428), + [sym_comment] = STATE(1166), + [ts_builtin_sym_end] = ACTIONS(1570), + [anon_sym_true] = ACTIONS(1570), + [anon_sym_false] = ACTIONS(1570), + [anon_sym_null] = ACTIONS(1570), + [aux_sym_cmd_identifier_token38] = ACTIONS(1570), + [aux_sym_cmd_identifier_token39] = ACTIONS(1570), + [aux_sym_cmd_identifier_token40] = ACTIONS(1570), + [sym__newline] = ACTIONS(1570), + [anon_sym_SEMI] = ACTIONS(1570), + [anon_sym_PIPE] = ACTIONS(1570), + [anon_sym_err_GT_PIPE] = ACTIONS(1570), + [anon_sym_out_GT_PIPE] = ACTIONS(1570), + [anon_sym_e_GT_PIPE] = ACTIONS(1570), + [anon_sym_o_GT_PIPE] = ACTIONS(1570), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1570), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1570), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1570), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1570), + [anon_sym_LBRACK] = ACTIONS(1570), + [anon_sym_LPAREN] = ACTIONS(1560), + [anon_sym_DOLLAR] = ACTIONS(2884), + [anon_sym_DASH_DASH] = ACTIONS(1570), + [anon_sym_DASH] = ACTIONS(1560), + [anon_sym_LBRACE] = ACTIONS(1570), + [anon_sym_DOT_DOT] = ACTIONS(1560), + [anon_sym_LPAREN2] = ACTIONS(3994), + [anon_sym_DOT] = ACTIONS(4445), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1570), + [anon_sym_DOT_DOT_LT] = ACTIONS(1570), + [aux_sym__immediate_decimal_token1] = ACTIONS(4447), + [aux_sym__immediate_decimal_token3] = ACTIONS(4449), + [aux_sym__immediate_decimal_token4] = ACTIONS(4451), + [aux_sym__immediate_decimal_token5] = ACTIONS(4453), + [aux_sym__val_number_decimal_token1] = ACTIONS(1560), + [aux_sym__val_number_decimal_token2] = ACTIONS(1560), + [aux_sym__val_number_decimal_token3] = ACTIONS(1560), + [aux_sym__val_number_decimal_token4] = ACTIONS(1560), + [aux_sym__val_number_token1] = ACTIONS(1570), + [aux_sym__val_number_token2] = ACTIONS(1570), + [aux_sym__val_number_token3] = ACTIONS(1570), + [anon_sym_0b] = ACTIONS(1560), + [anon_sym_0o] = ACTIONS(1560), + [anon_sym_0x] = ACTIONS(1560), + [sym_val_date] = ACTIONS(1570), + [anon_sym_DQUOTE] = ACTIONS(1570), + [sym__str_single_quotes] = ACTIONS(1570), + [sym__str_back_ticks] = ACTIONS(1570), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1570), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1570), + [anon_sym_err_GT] = ACTIONS(1560), + [anon_sym_out_GT] = ACTIONS(1560), + [anon_sym_e_GT] = ACTIONS(1560), + [anon_sym_o_GT] = ACTIONS(1560), + [anon_sym_err_PLUSout_GT] = ACTIONS(1560), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1560), + [anon_sym_o_PLUSe_GT] = ACTIONS(1560), + [anon_sym_e_PLUSo_GT] = ACTIONS(1560), + [anon_sym_err_GT_GT] = ACTIONS(1570), + [anon_sym_out_GT_GT] = ACTIONS(1570), + [anon_sym_e_GT_GT] = ACTIONS(1570), + [anon_sym_o_GT_GT] = ACTIONS(1570), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1570), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1570), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1570), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1570), + [aux_sym_unquoted_token1] = ACTIONS(1560), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1570), + }, + [1167] = { + [sym__val_range] = STATE(7794), + [sym__value] = STATE(6013), + [sym_val_nothing] = STATE(2358), + [sym_val_bool] = STATE(3688), + [sym_val_variable] = STATE(2358), + [sym_val_number] = STATE(2358), + [sym__val_number_decimal] = STATE(5733), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(2358), + [sym_val_filesize] = STATE(2358), + [sym_val_binary] = STATE(2358), + [sym_val_string] = STATE(2358), + [sym__raw_str] = STATE(4434), + [sym__str_double_quotes] = STATE(4434), + [sym_val_interpolated] = STATE(2358), + [sym__inter_single_quotes] = STATE(2325), + [sym__inter_double_quotes] = STATE(2326), + [sym_val_list] = STATE(2358), + [sym_val_record] = STATE(2358), + [sym_val_table] = STATE(2358), + [sym_val_closure] = STATE(2358), + [sym_unquoted] = STATE(6128), + [sym__unquoted_anonymous_prefix] = STATE(7859), + [sym_comment] = STATE(1167), + [anon_sym_true] = ACTIONS(3350), + [anon_sym_false] = ACTIONS(3350), + [anon_sym_null] = ACTIONS(3352), + [aux_sym_cmd_identifier_token38] = ACTIONS(3828), + [aux_sym_cmd_identifier_token39] = ACTIONS(3828), + [aux_sym_cmd_identifier_token40] = ACTIONS(3828), + [anon_sym_LBRACK] = ACTIONS(3830), + [anon_sym_LPAREN] = ACTIONS(4169), + [anon_sym_DOLLAR] = ACTIONS(4020), + [anon_sym_LBRACE] = ACTIONS(3836), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4026), + [anon_sym_DOT_DOT_LT] = ACTIONS(4026), + [aux_sym__val_number_decimal_token1] = ACTIONS(3366), + [aux_sym__val_number_decimal_token2] = ACTIONS(3368), + [aux_sym__val_number_decimal_token3] = ACTIONS(3370), + [aux_sym__val_number_decimal_token4] = ACTIONS(3372), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(3374), + [anon_sym_DQUOTE] = ACTIONS(3842), + [sym__str_single_quotes] = ACTIONS(3844), + [sym__str_back_ticks] = ACTIONS(3844), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(523), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(525), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3846), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3848), + }, + [1168] = { + [sym__val_range] = STATE(8067), + [sym__value] = STATE(2754), + [sym_val_nothing] = STATE(2761), + [sym_val_bool] = STATE(2743), + [sym_val_variable] = STATE(2761), + [sym_val_number] = STATE(2761), + [sym__val_number_decimal] = STATE(2320), + [sym__val_number] = STATE(2818), + [sym_val_duration] = STATE(2761), + [sym_val_filesize] = STATE(2761), + [sym_val_binary] = STATE(2761), + [sym_val_string] = STATE(2761), + [sym__raw_str] = STATE(2850), + [sym__str_double_quotes] = STATE(2850), + [sym_val_interpolated] = STATE(2761), + [sym__inter_single_quotes] = STATE(2763), + [sym__inter_double_quotes] = STATE(2767), + [sym_val_list] = STATE(2761), + [sym_val_record] = STATE(2761), + [sym_val_table] = STATE(2761), + [sym_val_closure] = STATE(2761), + [sym_unquoted] = STATE(2851), + [sym__unquoted_anonymous_prefix] = STATE(7670), + [sym_comment] = STATE(1168), + [anon_sym_true] = ACTIONS(4041), + [anon_sym_false] = ACTIONS(4041), + [anon_sym_null] = ACTIONS(4043), + [aux_sym_cmd_identifier_token38] = ACTIONS(4045), + [aux_sym_cmd_identifier_token39] = ACTIONS(4045), + [aux_sym_cmd_identifier_token40] = ACTIONS(4045), + [anon_sym_LBRACK] = ACTIONS(4047), + [anon_sym_LPAREN] = ACTIONS(4049), + [anon_sym_DOLLAR] = ACTIONS(4051), + [anon_sym_LBRACE] = ACTIONS(4053), + [anon_sym_DOT_DOT] = ACTIONS(4055), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4057), + [anon_sym_DOT_DOT_LT] = ACTIONS(4057), + [aux_sym__val_number_decimal_token1] = ACTIONS(4059), + [aux_sym__val_number_decimal_token2] = ACTIONS(4061), + [aux_sym__val_number_decimal_token3] = ACTIONS(4063), + [aux_sym__val_number_decimal_token4] = ACTIONS(4065), + [aux_sym__val_number_token1] = ACTIONS(4067), + [aux_sym__val_number_token2] = ACTIONS(4067), + [aux_sym__val_number_token3] = ACTIONS(4067), + [anon_sym_0b] = ACTIONS(4069), + [anon_sym_0o] = ACTIONS(4071), + [anon_sym_0x] = ACTIONS(4071), + [sym_val_date] = ACTIONS(4073), + [anon_sym_DQUOTE] = ACTIONS(4075), + [sym__str_single_quotes] = ACTIONS(4077), + [sym__str_back_ticks] = ACTIONS(4077), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4079), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4081), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(4083), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(4085), + }, + [1169] = { + [sym__val_range] = STATE(7794), + [sym__value] = STATE(6062), + [sym_val_nothing] = STATE(4884), + [sym_val_bool] = STATE(5849), + [sym_val_variable] = STATE(4884), + [sym_val_number] = STATE(4884), + [sym__val_number_decimal] = STATE(5299), + [sym__val_number] = STATE(5078), + [sym_val_duration] = STATE(4884), + [sym_val_filesize] = STATE(4884), + [sym_val_binary] = STATE(4884), + [sym_val_string] = STATE(4884), + [sym__raw_str] = STATE(4434), + [sym__str_double_quotes] = STATE(4434), + [sym_val_interpolated] = STATE(4884), + [sym__inter_single_quotes] = STATE(4936), + [sym__inter_double_quotes] = STATE(4937), + [sym_val_list] = STATE(4884), + [sym_val_record] = STATE(4884), + [sym_val_table] = STATE(4884), + [sym_val_closure] = STATE(4884), + [sym_unquoted] = STATE(6089), + [sym__unquoted_anonymous_prefix] = STATE(7859), + [sym_comment] = STATE(1169), + [anon_sym_true] = ACTIONS(4010), + [anon_sym_false] = ACTIONS(4010), + [anon_sym_null] = ACTIONS(4012), + [aux_sym_cmd_identifier_token38] = ACTIONS(4133), + [aux_sym_cmd_identifier_token39] = ACTIONS(4133), + [aux_sym_cmd_identifier_token40] = ACTIONS(4133), + [anon_sym_LBRACK] = ACTIONS(4093), + [anon_sym_LPAREN] = ACTIONS(4018), + [anon_sym_DOLLAR] = ACTIONS(4095), + [anon_sym_LBRACE] = ACTIONS(4097), + [anon_sym_DOT_DOT] = ACTIONS(4024), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4026), + [anon_sym_DOT_DOT_LT] = ACTIONS(4026), + [aux_sym__val_number_decimal_token1] = ACTIONS(4135), + [aux_sym__val_number_decimal_token2] = ACTIONS(4137), + [aux_sym__val_number_decimal_token3] = ACTIONS(4139), + [aux_sym__val_number_decimal_token4] = ACTIONS(4141), + [aux_sym__val_number_token1] = ACTIONS(3584), + [aux_sym__val_number_token2] = ACTIONS(3584), + [aux_sym__val_number_token3] = ACTIONS(3584), + [anon_sym_0b] = ACTIONS(3586), + [anon_sym_0o] = ACTIONS(3588), + [anon_sym_0x] = ACTIONS(3588), + [sym_val_date] = ACTIONS(4036), + [anon_sym_DQUOTE] = ACTIONS(3842), + [sym__str_single_quotes] = ACTIONS(3844), + [sym__str_back_ticks] = ACTIONS(3844), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3596), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3598), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3846), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3848), + }, + [1170] = { + [sym__val_range] = STATE(7676), + [sym__value] = STATE(4993), + [sym_val_nothing] = STATE(5010), + [sym_val_bool] = STATE(4627), + [sym_val_variable] = STATE(5010), + [sym_val_number] = STATE(5010), + [sym__val_number_decimal] = STATE(4122), + [sym__val_number] = STATE(5054), + [sym_val_duration] = STATE(5010), + [sym_val_filesize] = STATE(5010), + [sym_val_binary] = STATE(5010), + [sym_val_string] = STATE(5010), + [sym__raw_str] = STATE(4660), + [sym__str_double_quotes] = STATE(4660), + [sym_val_interpolated] = STATE(5010), + [sym__inter_single_quotes] = STATE(5011), + [sym__inter_double_quotes] = STATE(5012), + [sym_val_list] = STATE(5010), + [sym_val_record] = STATE(5010), + [sym_val_table] = STATE(5010), + [sym_val_closure] = STATE(5010), + [sym_unquoted] = STATE(4994), + [sym__unquoted_anonymous_prefix] = STATE(7883), + [sym_comment] = STATE(1170), + [anon_sym_true] = ACTIONS(4227), + [anon_sym_false] = ACTIONS(4227), + [anon_sym_null] = ACTIONS(4229), + [aux_sym_cmd_identifier_token38] = ACTIONS(4231), + [aux_sym_cmd_identifier_token39] = ACTIONS(4231), + [aux_sym_cmd_identifier_token40] = ACTIONS(4231), + [anon_sym_LBRACK] = ACTIONS(4233), + [anon_sym_LPAREN] = ACTIONS(4235), + [anon_sym_DOLLAR] = ACTIONS(4237), + [anon_sym_LBRACE] = ACTIONS(4239), + [anon_sym_DOT_DOT] = ACTIONS(4241), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4243), + [anon_sym_DOT_DOT_LT] = ACTIONS(4243), + [aux_sym__val_number_decimal_token1] = ACTIONS(2147), + [aux_sym__val_number_decimal_token2] = ACTIONS(4245), + [aux_sym__val_number_decimal_token3] = ACTIONS(4247), + [aux_sym__val_number_decimal_token4] = ACTIONS(4249), + [aux_sym__val_number_token1] = ACTIONS(4251), + [aux_sym__val_number_token2] = ACTIONS(4251), + [aux_sym__val_number_token3] = ACTIONS(4251), + [anon_sym_0b] = ACTIONS(2155), + [anon_sym_0o] = ACTIONS(2157), + [anon_sym_0x] = ACTIONS(2157), + [sym_val_date] = ACTIONS(4253), + [anon_sym_DQUOTE] = ACTIONS(4255), + [sym__str_single_quotes] = ACTIONS(4257), + [sym__str_back_ticks] = ACTIONS(4257), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4259), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4261), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(2173), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2175), + }, + [1171] = { + [sym_comment] = STATE(1171), + [anon_sym_EQ] = ACTIONS(1048), + [anon_sym_PLUS_EQ] = ACTIONS(1050), + [anon_sym_DASH_EQ] = ACTIONS(1050), + [anon_sym_STAR_EQ] = ACTIONS(1050), + [anon_sym_SLASH_EQ] = ACTIONS(1050), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1050), + [sym__newline] = ACTIONS(1048), + [anon_sym_SEMI] = ACTIONS(1050), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_err_GT_PIPE] = ACTIONS(1050), + [anon_sym_out_GT_PIPE] = ACTIONS(1050), + [anon_sym_e_GT_PIPE] = ACTIONS(1050), + [anon_sym_o_GT_PIPE] = ACTIONS(1050), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1050), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1050), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1050), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(1050), + [anon_sym_QMARK2] = ACTIONS(4455), + [aux_sym_expr_binary_token1] = ACTIONS(1050), + [aux_sym_expr_binary_token2] = ACTIONS(1050), + [aux_sym_expr_binary_token3] = ACTIONS(1050), + [aux_sym_expr_binary_token4] = ACTIONS(1050), + [aux_sym_expr_binary_token5] = ACTIONS(1050), + [aux_sym_expr_binary_token6] = ACTIONS(1050), + [aux_sym_expr_binary_token7] = ACTIONS(1050), + [aux_sym_expr_binary_token8] = ACTIONS(1050), + [aux_sym_expr_binary_token9] = ACTIONS(1050), + [aux_sym_expr_binary_token10] = ACTIONS(1050), + [aux_sym_expr_binary_token11] = ACTIONS(1050), + [aux_sym_expr_binary_token12] = ACTIONS(1050), + [aux_sym_expr_binary_token13] = ACTIONS(1050), + [aux_sym_expr_binary_token14] = ACTIONS(1050), + [aux_sym_expr_binary_token15] = ACTIONS(1050), + [aux_sym_expr_binary_token16] = ACTIONS(1050), + [aux_sym_expr_binary_token17] = ACTIONS(1050), + [aux_sym_expr_binary_token18] = ACTIONS(1050), + [aux_sym_expr_binary_token19] = ACTIONS(1050), + [aux_sym_expr_binary_token20] = ACTIONS(1050), + [aux_sym_expr_binary_token21] = ACTIONS(1050), + [aux_sym_expr_binary_token22] = ACTIONS(1050), + [aux_sym_expr_binary_token23] = ACTIONS(1050), + [aux_sym_expr_binary_token24] = ACTIONS(1050), + [aux_sym_expr_binary_token25] = ACTIONS(1050), + [aux_sym_expr_binary_token26] = ACTIONS(1050), + [aux_sym_expr_binary_token27] = ACTIONS(1050), + [aux_sym_expr_binary_token28] = ACTIONS(1050), + [anon_sym_DOT_DOT2] = ACTIONS(1048), + [anon_sym_DOT] = ACTIONS(1048), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1050), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1050), + [aux_sym_record_entry_token1] = ACTIONS(1050), + [anon_sym_err_GT] = ACTIONS(1048), + [anon_sym_out_GT] = ACTIONS(1048), + [anon_sym_e_GT] = ACTIONS(1048), + [anon_sym_o_GT] = ACTIONS(1048), + [anon_sym_err_PLUSout_GT] = ACTIONS(1048), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1048), + [anon_sym_o_PLUSe_GT] = ACTIONS(1048), + [anon_sym_e_PLUSo_GT] = ACTIONS(1048), + [anon_sym_err_GT_GT] = ACTIONS(1050), + [anon_sym_out_GT_GT] = ACTIONS(1050), + [anon_sym_e_GT_GT] = ACTIONS(1050), + [anon_sym_o_GT_GT] = ACTIONS(1050), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1050), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1050), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1050), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(249), + }, + [1172] = { + [sym_comment] = STATE(1172), + [anon_sym_true] = ACTIONS(1530), + [anon_sym_false] = ACTIONS(1530), + [anon_sym_null] = ACTIONS(1530), + [aux_sym_cmd_identifier_token38] = ACTIONS(1530), + [aux_sym_cmd_identifier_token39] = ACTIONS(1530), + [aux_sym_cmd_identifier_token40] = ACTIONS(1530), + [sym__newline] = ACTIONS(1530), + [anon_sym_SEMI] = ACTIONS(1530), + [anon_sym_PIPE] = ACTIONS(1530), + [anon_sym_err_GT_PIPE] = ACTIONS(1530), + [anon_sym_out_GT_PIPE] = ACTIONS(1530), + [anon_sym_e_GT_PIPE] = ACTIONS(1530), + [anon_sym_o_GT_PIPE] = ACTIONS(1530), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1530), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1530), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1530), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1530), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_RPAREN] = ACTIONS(1530), + [anon_sym_DOLLAR] = ACTIONS(1528), + [anon_sym_DASH_DASH] = ACTIONS(1530), + [anon_sym_DASH] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(1530), + [anon_sym_RBRACE] = ACTIONS(1530), + [anon_sym_DOT_DOT] = ACTIONS(1528), + [anon_sym_LPAREN2] = ACTIONS(1530), + [anon_sym_DOT_DOT2] = ACTIONS(1528), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1528), + [anon_sym_DOT_DOT_LT] = ACTIONS(1528), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1530), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1530), + [aux_sym__val_number_decimal_token1] = ACTIONS(1528), + [aux_sym__val_number_decimal_token2] = ACTIONS(1530), + [aux_sym__val_number_decimal_token3] = ACTIONS(1530), + [aux_sym__val_number_decimal_token4] = ACTIONS(1530), + [aux_sym__val_number_token1] = ACTIONS(1530), + [aux_sym__val_number_token2] = ACTIONS(1530), + [aux_sym__val_number_token3] = ACTIONS(1530), + [anon_sym_0b] = ACTIONS(1528), + [sym_filesize_unit] = ACTIONS(1530), + [sym_duration_unit] = ACTIONS(1530), + [anon_sym_0o] = ACTIONS(1528), + [anon_sym_0x] = ACTIONS(1528), + [sym_val_date] = ACTIONS(1530), + [anon_sym_DQUOTE] = ACTIONS(1530), + [sym__str_single_quotes] = ACTIONS(1530), + [sym__str_back_ticks] = ACTIONS(1530), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1530), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1530), + [anon_sym_err_GT] = ACTIONS(1528), + [anon_sym_out_GT] = ACTIONS(1528), + [anon_sym_e_GT] = ACTIONS(1528), + [anon_sym_o_GT] = ACTIONS(1528), + [anon_sym_err_PLUSout_GT] = ACTIONS(1528), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), + [anon_sym_o_PLUSe_GT] = ACTIONS(1528), + [anon_sym_e_PLUSo_GT] = ACTIONS(1528), + [anon_sym_err_GT_GT] = ACTIONS(1530), + [anon_sym_out_GT_GT] = ACTIONS(1530), + [anon_sym_e_GT_GT] = ACTIONS(1530), + [anon_sym_o_GT_GT] = ACTIONS(1530), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1530), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1530), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1530), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1530), + [aux_sym_unquoted_token1] = ACTIONS(1528), + [aux_sym_unquoted_token2] = ACTIONS(1528), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1530), + }, + [1173] = { + [sym_comment] = STATE(1173), + [ts_builtin_sym_end] = ACTIONS(1538), + [anon_sym_true] = ACTIONS(1538), + [anon_sym_false] = ACTIONS(1538), + [anon_sym_null] = ACTIONS(1538), + [aux_sym_cmd_identifier_token38] = ACTIONS(1538), + [aux_sym_cmd_identifier_token39] = ACTIONS(1538), + [aux_sym_cmd_identifier_token40] = ACTIONS(1538), + [sym__newline] = ACTIONS(1538), + [anon_sym_SEMI] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_err_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_GT_PIPE] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), + [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_LPAREN] = ACTIONS(1536), + [anon_sym_DOLLAR] = ACTIONS(1536), + [anon_sym_DASH_DASH] = ACTIONS(1538), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1538), + [anon_sym_DOT_DOT] = ACTIONS(1536), + [anon_sym_LPAREN2] = ACTIONS(1538), + [anon_sym_DOT_DOT2] = ACTIONS(1536), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1536), + [anon_sym_DOT_DOT_LT] = ACTIONS(1536), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), + [aux_sym__immediate_decimal_token2] = ACTIONS(4431), + [aux_sym__val_number_decimal_token1] = ACTIONS(1536), + [aux_sym__val_number_decimal_token2] = ACTIONS(1538), + [aux_sym__val_number_decimal_token3] = ACTIONS(1538), + [aux_sym__val_number_decimal_token4] = ACTIONS(1538), + [aux_sym__val_number_token1] = ACTIONS(1538), + [aux_sym__val_number_token2] = ACTIONS(1538), + [aux_sym__val_number_token3] = ACTIONS(1538), + [anon_sym_0b] = ACTIONS(1536), + [sym_filesize_unit] = ACTIONS(1538), + [sym_duration_unit] = ACTIONS(1538), + [anon_sym_0o] = ACTIONS(1536), + [anon_sym_0x] = ACTIONS(1536), + [sym_val_date] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1538), + [sym__str_single_quotes] = ACTIONS(1538), + [sym__str_back_ticks] = ACTIONS(1538), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1538), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1538), + [anon_sym_err_GT] = ACTIONS(1536), + [anon_sym_out_GT] = ACTIONS(1536), + [anon_sym_e_GT] = ACTIONS(1536), + [anon_sym_o_GT] = ACTIONS(1536), + [anon_sym_err_PLUSout_GT] = ACTIONS(1536), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), + [anon_sym_o_PLUSe_GT] = ACTIONS(1536), + [anon_sym_e_PLUSo_GT] = ACTIONS(1536), + [anon_sym_err_GT_GT] = ACTIONS(1538), + [anon_sym_out_GT_GT] = ACTIONS(1538), + [anon_sym_e_GT_GT] = ACTIONS(1538), + [anon_sym_o_GT_GT] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), + [aux_sym_unquoted_token1] = ACTIONS(1536), + [aux_sym_unquoted_token2] = ACTIONS(1536), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1538), + }, + [1174] = { + [sym_comment] = STATE(1174), + [anon_sym_true] = ACTIONS(1598), + [anon_sym_false] = ACTIONS(1598), + [anon_sym_null] = ACTIONS(1598), + [aux_sym_cmd_identifier_token38] = ACTIONS(1598), + [aux_sym_cmd_identifier_token39] = ACTIONS(1598), + [aux_sym_cmd_identifier_token40] = ACTIONS(1598), + [sym__newline] = ACTIONS(1598), + [anon_sym_SEMI] = ACTIONS(1598), + [anon_sym_PIPE] = ACTIONS(1598), + [anon_sym_err_GT_PIPE] = ACTIONS(1598), + [anon_sym_out_GT_PIPE] = ACTIONS(1598), + [anon_sym_e_GT_PIPE] = ACTIONS(1598), + [anon_sym_o_GT_PIPE] = ACTIONS(1598), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1598), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1598), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1598), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(1596), + [anon_sym_RPAREN] = ACTIONS(1598), + [anon_sym_DOLLAR] = ACTIONS(1596), + [anon_sym_DASH_DASH] = ACTIONS(1598), + [anon_sym_DASH] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1598), + [anon_sym_DOT_DOT] = ACTIONS(1596), + [anon_sym_LPAREN2] = ACTIONS(1598), + [anon_sym_DOT_DOT2] = ACTIONS(1596), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1596), + [anon_sym_DOT_DOT_LT] = ACTIONS(1596), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1598), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1598), + [aux_sym__val_number_decimal_token1] = ACTIONS(1596), + [aux_sym__val_number_decimal_token2] = ACTIONS(1598), + [aux_sym__val_number_decimal_token3] = ACTIONS(1598), + [aux_sym__val_number_decimal_token4] = ACTIONS(1598), + [aux_sym__val_number_token1] = ACTIONS(1598), + [aux_sym__val_number_token2] = ACTIONS(1598), + [aux_sym__val_number_token3] = ACTIONS(1598), + [anon_sym_0b] = ACTIONS(1596), + [sym_filesize_unit] = ACTIONS(1598), + [sym_duration_unit] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1596), + [sym_val_date] = ACTIONS(1598), + [anon_sym_DQUOTE] = ACTIONS(1598), + [sym__str_single_quotes] = ACTIONS(1598), + [sym__str_back_ticks] = ACTIONS(1598), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1598), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1598), + [anon_sym_err_GT] = ACTIONS(1596), + [anon_sym_out_GT] = ACTIONS(1596), + [anon_sym_e_GT] = ACTIONS(1596), + [anon_sym_o_GT] = ACTIONS(1596), + [anon_sym_err_PLUSout_GT] = ACTIONS(1596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1596), + [anon_sym_o_PLUSe_GT] = ACTIONS(1596), + [anon_sym_e_PLUSo_GT] = ACTIONS(1596), + [anon_sym_err_GT_GT] = ACTIONS(1598), + [anon_sym_out_GT_GT] = ACTIONS(1598), + [anon_sym_e_GT_GT] = ACTIONS(1598), + [anon_sym_o_GT_GT] = ACTIONS(1598), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1598), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1598), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1598), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1598), + [aux_sym_unquoted_token1] = ACTIONS(1596), + [aux_sym_unquoted_token2] = ACTIONS(1596), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1598), + }, + [1175] = { + [sym_comment] = STATE(1175), + [anon_sym_true] = ACTIONS(1713), + [anon_sym_false] = ACTIONS(1713), + [anon_sym_null] = ACTIONS(1713), + [aux_sym_cmd_identifier_token38] = ACTIONS(1713), + [aux_sym_cmd_identifier_token39] = ACTIONS(1713), + [aux_sym_cmd_identifier_token40] = ACTIONS(1713), + [sym__newline] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_err_GT_PIPE] = ACTIONS(1713), + [anon_sym_out_GT_PIPE] = ACTIONS(1713), + [anon_sym_e_GT_PIPE] = ACTIONS(1713), + [anon_sym_o_GT_PIPE] = ACTIONS(1713), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(1711), + [anon_sym_RPAREN] = ACTIONS(1713), + [anon_sym_DOLLAR] = ACTIONS(1711), + [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1711), + [anon_sym_LBRACE] = ACTIONS(1713), + [anon_sym_RBRACE] = ACTIONS(1713), + [anon_sym_DOT_DOT] = ACTIONS(1711), + [anon_sym_LPAREN2] = ACTIONS(1713), + [anon_sym_DOT_DOT2] = ACTIONS(1711), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1711), + [anon_sym_DOT_DOT_LT] = ACTIONS(1711), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), + [aux_sym__val_number_decimal_token1] = ACTIONS(1711), + [aux_sym__val_number_decimal_token2] = ACTIONS(1713), + [aux_sym__val_number_decimal_token3] = ACTIONS(1713), + [aux_sym__val_number_decimal_token4] = ACTIONS(1713), + [aux_sym__val_number_token1] = ACTIONS(1713), + [aux_sym__val_number_token2] = ACTIONS(1713), + [aux_sym__val_number_token3] = ACTIONS(1713), + [anon_sym_0b] = ACTIONS(1711), + [sym_filesize_unit] = ACTIONS(1713), + [sym_duration_unit] = ACTIONS(1713), + [anon_sym_0o] = ACTIONS(1711), + [anon_sym_0x] = ACTIONS(1711), + [sym_val_date] = ACTIONS(1713), + [anon_sym_DQUOTE] = ACTIONS(1713), + [sym__str_single_quotes] = ACTIONS(1713), + [sym__str_back_ticks] = ACTIONS(1713), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1713), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1713), + [anon_sym_err_GT] = ACTIONS(1711), + [anon_sym_out_GT] = ACTIONS(1711), + [anon_sym_e_GT] = ACTIONS(1711), + [anon_sym_o_GT] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT] = ACTIONS(1711), + [anon_sym_err_GT_GT] = ACTIONS(1713), + [anon_sym_out_GT_GT] = ACTIONS(1713), + [anon_sym_e_GT_GT] = ACTIONS(1713), + [anon_sym_o_GT_GT] = ACTIONS(1713), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), + [aux_sym_unquoted_token1] = ACTIONS(1711), + [aux_sym_unquoted_token2] = ACTIONS(1711), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1713), + }, + [1176] = { + [sym_comment] = STATE(1176), + [anon_sym_true] = ACTIONS(1598), + [anon_sym_false] = ACTIONS(1598), + [anon_sym_null] = ACTIONS(1598), + [aux_sym_cmd_identifier_token38] = ACTIONS(1598), + [aux_sym_cmd_identifier_token39] = ACTIONS(1598), + [aux_sym_cmd_identifier_token40] = ACTIONS(1598), + [sym__newline] = ACTIONS(1598), + [anon_sym_SEMI] = ACTIONS(1598), + [anon_sym_PIPE] = ACTIONS(1598), + [anon_sym_err_GT_PIPE] = ACTIONS(1598), + [anon_sym_out_GT_PIPE] = ACTIONS(1598), + [anon_sym_e_GT_PIPE] = ACTIONS(1598), + [anon_sym_o_GT_PIPE] = ACTIONS(1598), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1598), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1598), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1598), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_RPAREN] = ACTIONS(1598), + [anon_sym_DOLLAR] = ACTIONS(1596), + [anon_sym_DASH_DASH] = ACTIONS(1598), + [anon_sym_DASH] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1598), + [anon_sym_DOT_DOT] = ACTIONS(1596), + [anon_sym_DOT_DOT2] = ACTIONS(1596), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1596), + [anon_sym_DOT_DOT_LT] = ACTIONS(1596), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1598), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1598), + [aux_sym__immediate_decimal_token2] = ACTIONS(4457), + [aux_sym__val_number_decimal_token1] = ACTIONS(1596), + [aux_sym__val_number_decimal_token2] = ACTIONS(1598), + [aux_sym__val_number_decimal_token3] = ACTIONS(1598), + [aux_sym__val_number_decimal_token4] = ACTIONS(1598), + [aux_sym__val_number_token1] = ACTIONS(1598), + [aux_sym__val_number_token2] = ACTIONS(1598), + [aux_sym__val_number_token3] = ACTIONS(1598), + [anon_sym_0b] = ACTIONS(1596), + [sym_filesize_unit] = ACTIONS(1598), + [sym_duration_unit] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1596), + [sym_val_date] = ACTIONS(1598), + [anon_sym_DQUOTE] = ACTIONS(1598), + [sym__str_single_quotes] = ACTIONS(1598), + [sym__str_back_ticks] = ACTIONS(1598), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1598), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1598), + [anon_sym_err_GT] = ACTIONS(1596), + [anon_sym_out_GT] = ACTIONS(1596), + [anon_sym_e_GT] = ACTIONS(1596), + [anon_sym_o_GT] = ACTIONS(1596), + [anon_sym_err_PLUSout_GT] = ACTIONS(1596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1596), + [anon_sym_o_PLUSe_GT] = ACTIONS(1596), + [anon_sym_e_PLUSo_GT] = ACTIONS(1596), + [anon_sym_err_GT_GT] = ACTIONS(1598), + [anon_sym_out_GT_GT] = ACTIONS(1598), + [anon_sym_e_GT_GT] = ACTIONS(1598), + [anon_sym_o_GT_GT] = ACTIONS(1598), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1598), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1598), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1598), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1598), + [aux_sym_unquoted_token1] = ACTIONS(1596), + [aux_sym_unquoted_token2] = ACTIONS(1596), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1598), + }, + [1177] = { + [sym_comment] = STATE(1177), [anon_sym_EQ] = ACTIONS(1042), [anon_sym_PLUS_EQ] = ACTIONS(1044), [anon_sym_DASH_EQ] = ACTIONS(1044), @@ -186728,513 +192948,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1044), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1044), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1044), - [anon_sym_RPAREN] = ACTIONS(1044), [anon_sym_LBRACE] = ACTIONS(1044), - [anon_sym_QMARK2] = ACTIONS(1044), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1044), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1044), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1044), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1044), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1044), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1044), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1044), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1044), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1044), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1044), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1044), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1044), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1044), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1044), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1044), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1044), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1044), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1044), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1044), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1044), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1044), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1044), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1044), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1044), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1044), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1044), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1044), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1044), - [anon_sym_DOT_DOT2] = ACTIONS(1042), - [anon_sym_DOT] = ACTIONS(1042), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1044), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1044), - [anon_sym_err_GT] = ACTIONS(1042), - [anon_sym_out_GT] = ACTIONS(1042), - [anon_sym_e_GT] = ACTIONS(1042), - [anon_sym_o_GT] = ACTIONS(1042), - [anon_sym_err_PLUSout_GT] = ACTIONS(1042), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1042), - [anon_sym_o_PLUSe_GT] = ACTIONS(1042), - [anon_sym_e_PLUSo_GT] = ACTIONS(1042), - [anon_sym_err_GT_GT] = ACTIONS(1044), - [anon_sym_out_GT_GT] = ACTIONS(1044), - [anon_sym_e_GT_GT] = ACTIONS(1044), - [anon_sym_o_GT_GT] = ACTIONS(1044), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1044), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1044), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1044), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1044), - [anon_sym_POUND] = ACTIONS(247), - }, - [1131] = { - [sym_comment] = STATE(1131), - [anon_sym_EQ] = ACTIONS(1038), - [anon_sym_PLUS_EQ] = ACTIONS(1040), - [anon_sym_DASH_EQ] = ACTIONS(1040), - [anon_sym_STAR_EQ] = ACTIONS(1040), - [anon_sym_SLASH_EQ] = ACTIONS(1040), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1040), - [sym__newline] = ACTIONS(1038), - [anon_sym_SEMI] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1040), - [anon_sym_err_GT_PIPE] = ACTIONS(1040), - [anon_sym_out_GT_PIPE] = ACTIONS(1040), - [anon_sym_e_GT_PIPE] = ACTIONS(1040), - [anon_sym_o_GT_PIPE] = ACTIONS(1040), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1040), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1040), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1040), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1040), - [anon_sym_RPAREN] = ACTIONS(1040), - [anon_sym_LBRACE] = ACTIONS(1040), - [anon_sym_QMARK2] = ACTIONS(1040), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1040), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1040), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1040), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1040), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1040), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1040), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1040), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1040), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1040), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1040), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1040), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1040), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1040), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1040), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1040), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1040), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1040), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1040), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1040), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1040), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1040), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1040), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1040), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1040), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1040), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1040), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1040), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1040), - [anon_sym_DOT_DOT2] = ACTIONS(1038), - [anon_sym_DOT] = ACTIONS(1038), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1040), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1040), - [anon_sym_err_GT] = ACTIONS(1038), - [anon_sym_out_GT] = ACTIONS(1038), - [anon_sym_e_GT] = ACTIONS(1038), - [anon_sym_o_GT] = ACTIONS(1038), - [anon_sym_err_PLUSout_GT] = ACTIONS(1038), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1038), - [anon_sym_o_PLUSe_GT] = ACTIONS(1038), - [anon_sym_e_PLUSo_GT] = ACTIONS(1038), - [anon_sym_err_GT_GT] = ACTIONS(1040), - [anon_sym_out_GT_GT] = ACTIONS(1040), - [anon_sym_e_GT_GT] = ACTIONS(1040), - [anon_sym_o_GT_GT] = ACTIONS(1040), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1040), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1040), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1040), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1040), - [anon_sym_POUND] = ACTIONS(247), - }, - [1132] = { - [sym_comment] = STATE(1132), - [anon_sym_EQ] = ACTIONS(1034), - [anon_sym_PLUS_EQ] = ACTIONS(1036), - [anon_sym_DASH_EQ] = ACTIONS(1036), - [anon_sym_STAR_EQ] = ACTIONS(1036), - [anon_sym_SLASH_EQ] = ACTIONS(1036), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1036), - [sym__newline] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1036), - [anon_sym_PIPE] = ACTIONS(1036), - [anon_sym_err_GT_PIPE] = ACTIONS(1036), - [anon_sym_out_GT_PIPE] = ACTIONS(1036), - [anon_sym_e_GT_PIPE] = ACTIONS(1036), - [anon_sym_o_GT_PIPE] = ACTIONS(1036), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1036), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1036), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1036), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1036), - [anon_sym_RPAREN] = ACTIONS(1036), - [anon_sym_LBRACE] = ACTIONS(1036), - [anon_sym_QMARK2] = ACTIONS(1036), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1036), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1036), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1036), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1036), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1036), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1036), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1036), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1036), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1036), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1036), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1036), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1036), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1036), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1036), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1036), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1036), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1036), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1036), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1036), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1036), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1036), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1036), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1036), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1036), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1036), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1036), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1036), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1036), - [anon_sym_DOT_DOT2] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(1034), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1036), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1036), - [anon_sym_err_GT] = ACTIONS(1034), - [anon_sym_out_GT] = ACTIONS(1034), - [anon_sym_e_GT] = ACTIONS(1034), - [anon_sym_o_GT] = ACTIONS(1034), - [anon_sym_err_PLUSout_GT] = ACTIONS(1034), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1034), - [anon_sym_o_PLUSe_GT] = ACTIONS(1034), - [anon_sym_e_PLUSo_GT] = ACTIONS(1034), - [anon_sym_err_GT_GT] = ACTIONS(1036), - [anon_sym_out_GT_GT] = ACTIONS(1036), - [anon_sym_e_GT_GT] = ACTIONS(1036), - [anon_sym_o_GT_GT] = ACTIONS(1036), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1036), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1036), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1036), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1036), - [anon_sym_POUND] = ACTIONS(247), - }, - [1133] = { - [sym_comment] = STATE(1133), - [anon_sym_EQ] = ACTIONS(1022), - [anon_sym_PLUS_EQ] = ACTIONS(1024), - [anon_sym_DASH_EQ] = ACTIONS(1024), - [anon_sym_STAR_EQ] = ACTIONS(1024), - [anon_sym_SLASH_EQ] = ACTIONS(1024), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1024), - [sym__newline] = ACTIONS(1024), - [anon_sym_SEMI] = ACTIONS(1024), - [anon_sym_PIPE] = ACTIONS(1024), - [anon_sym_err_GT_PIPE] = ACTIONS(1024), - [anon_sym_out_GT_PIPE] = ACTIONS(1024), - [anon_sym_e_GT_PIPE] = ACTIONS(1024), - [anon_sym_o_GT_PIPE] = ACTIONS(1024), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1024), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1024), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1024), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1024), - [anon_sym_RPAREN] = ACTIONS(1024), - [anon_sym_RBRACE] = ACTIONS(1024), - [anon_sym_QMARK2] = ACTIONS(4091), - [aux_sym_expr_binary_token1] = ACTIONS(1024), - [aux_sym_expr_binary_token2] = ACTIONS(1024), - [aux_sym_expr_binary_token3] = ACTIONS(1024), - [aux_sym_expr_binary_token4] = ACTIONS(1024), - [aux_sym_expr_binary_token5] = ACTIONS(1024), - [aux_sym_expr_binary_token6] = ACTIONS(1024), - [aux_sym_expr_binary_token7] = ACTIONS(1024), - [aux_sym_expr_binary_token8] = ACTIONS(1024), - [aux_sym_expr_binary_token9] = ACTIONS(1024), - [aux_sym_expr_binary_token10] = ACTIONS(1024), - [aux_sym_expr_binary_token11] = ACTIONS(1024), - [aux_sym_expr_binary_token12] = ACTIONS(1024), - [aux_sym_expr_binary_token13] = ACTIONS(1024), - [aux_sym_expr_binary_token14] = ACTIONS(1024), - [aux_sym_expr_binary_token15] = ACTIONS(1024), - [aux_sym_expr_binary_token16] = ACTIONS(1024), - [aux_sym_expr_binary_token17] = ACTIONS(1024), - [aux_sym_expr_binary_token18] = ACTIONS(1024), - [aux_sym_expr_binary_token19] = ACTIONS(1024), - [aux_sym_expr_binary_token20] = ACTIONS(1024), - [aux_sym_expr_binary_token21] = ACTIONS(1024), - [aux_sym_expr_binary_token22] = ACTIONS(1024), - [aux_sym_expr_binary_token23] = ACTIONS(1024), - [aux_sym_expr_binary_token24] = ACTIONS(1024), - [aux_sym_expr_binary_token25] = ACTIONS(1024), - [aux_sym_expr_binary_token26] = ACTIONS(1024), - [aux_sym_expr_binary_token27] = ACTIONS(1024), - [aux_sym_expr_binary_token28] = ACTIONS(1024), - [anon_sym_DOT_DOT2] = ACTIONS(1022), - [anon_sym_DOT] = ACTIONS(1022), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1024), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1024), - [anon_sym_err_GT] = ACTIONS(1022), - [anon_sym_out_GT] = ACTIONS(1022), - [anon_sym_e_GT] = ACTIONS(1022), - [anon_sym_o_GT] = ACTIONS(1022), - [anon_sym_err_PLUSout_GT] = ACTIONS(1022), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1022), - [anon_sym_o_PLUSe_GT] = ACTIONS(1022), - [anon_sym_e_PLUSo_GT] = ACTIONS(1022), - [anon_sym_err_GT_GT] = ACTIONS(1024), - [anon_sym_out_GT_GT] = ACTIONS(1024), - [anon_sym_e_GT_GT] = ACTIONS(1024), - [anon_sym_o_GT_GT] = ACTIONS(1024), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1024), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1024), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1024), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1024), - [anon_sym_POUND] = ACTIONS(247), - }, - [1134] = { - [sym_comment] = STATE(1134), - [anon_sym_EQ] = ACTIONS(1028), - [anon_sym_PLUS_EQ] = ACTIONS(1030), - [anon_sym_DASH_EQ] = ACTIONS(1030), - [anon_sym_STAR_EQ] = ACTIONS(1030), - [anon_sym_SLASH_EQ] = ACTIONS(1030), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1030), - [sym__newline] = ACTIONS(1030), - [anon_sym_SEMI] = ACTIONS(1030), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_err_GT_PIPE] = ACTIONS(1030), - [anon_sym_out_GT_PIPE] = ACTIONS(1030), - [anon_sym_e_GT_PIPE] = ACTIONS(1030), - [anon_sym_o_GT_PIPE] = ACTIONS(1030), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1030), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1030), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1030), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1030), - [anon_sym_RPAREN] = ACTIONS(1030), - [anon_sym_RBRACE] = ACTIONS(1030), - [anon_sym_QMARK2] = ACTIONS(4093), - [aux_sym_expr_binary_token1] = ACTIONS(1030), - [aux_sym_expr_binary_token2] = ACTIONS(1030), - [aux_sym_expr_binary_token3] = ACTIONS(1030), - [aux_sym_expr_binary_token4] = ACTIONS(1030), - [aux_sym_expr_binary_token5] = ACTIONS(1030), - [aux_sym_expr_binary_token6] = ACTIONS(1030), - [aux_sym_expr_binary_token7] = ACTIONS(1030), - [aux_sym_expr_binary_token8] = ACTIONS(1030), - [aux_sym_expr_binary_token9] = ACTIONS(1030), - [aux_sym_expr_binary_token10] = ACTIONS(1030), - [aux_sym_expr_binary_token11] = ACTIONS(1030), - [aux_sym_expr_binary_token12] = ACTIONS(1030), - [aux_sym_expr_binary_token13] = ACTIONS(1030), - [aux_sym_expr_binary_token14] = ACTIONS(1030), - [aux_sym_expr_binary_token15] = ACTIONS(1030), - [aux_sym_expr_binary_token16] = ACTIONS(1030), - [aux_sym_expr_binary_token17] = ACTIONS(1030), - [aux_sym_expr_binary_token18] = ACTIONS(1030), - [aux_sym_expr_binary_token19] = ACTIONS(1030), - [aux_sym_expr_binary_token20] = ACTIONS(1030), - [aux_sym_expr_binary_token21] = ACTIONS(1030), - [aux_sym_expr_binary_token22] = ACTIONS(1030), - [aux_sym_expr_binary_token23] = ACTIONS(1030), - [aux_sym_expr_binary_token24] = ACTIONS(1030), - [aux_sym_expr_binary_token25] = ACTIONS(1030), - [aux_sym_expr_binary_token26] = ACTIONS(1030), - [aux_sym_expr_binary_token27] = ACTIONS(1030), - [aux_sym_expr_binary_token28] = ACTIONS(1030), - [anon_sym_DOT_DOT2] = ACTIONS(1028), - [anon_sym_DOT] = ACTIONS(1028), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1030), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1030), - [anon_sym_err_GT] = ACTIONS(1028), - [anon_sym_out_GT] = ACTIONS(1028), - [anon_sym_e_GT] = ACTIONS(1028), - [anon_sym_o_GT] = ACTIONS(1028), - [anon_sym_err_PLUSout_GT] = ACTIONS(1028), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1028), - [anon_sym_o_PLUSe_GT] = ACTIONS(1028), - [anon_sym_e_PLUSo_GT] = ACTIONS(1028), - [anon_sym_err_GT_GT] = ACTIONS(1030), - [anon_sym_out_GT_GT] = ACTIONS(1030), - [anon_sym_e_GT_GT] = ACTIONS(1030), - [anon_sym_o_GT_GT] = ACTIONS(1030), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1030), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1030), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1030), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1030), - [anon_sym_POUND] = ACTIONS(247), - }, - [1135] = { - [sym_comment] = STATE(1135), - [anon_sym_EQ] = ACTIONS(1046), - [anon_sym_PLUS_EQ] = ACTIONS(1048), - [anon_sym_DASH_EQ] = ACTIONS(1048), - [anon_sym_STAR_EQ] = ACTIONS(1048), - [anon_sym_SLASH_EQ] = ACTIONS(1048), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1048), - [sym__newline] = ACTIONS(1046), - [anon_sym_SEMI] = ACTIONS(1048), - [anon_sym_PIPE] = ACTIONS(1048), - [anon_sym_err_GT_PIPE] = ACTIONS(1048), - [anon_sym_out_GT_PIPE] = ACTIONS(1048), - [anon_sym_e_GT_PIPE] = ACTIONS(1048), - [anon_sym_o_GT_PIPE] = ACTIONS(1048), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1048), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1048), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1048), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1048), - [anon_sym_RBRACE] = ACTIONS(1048), - [aux_sym_expr_binary_token1] = ACTIONS(1048), - [aux_sym_expr_binary_token2] = ACTIONS(1048), - [aux_sym_expr_binary_token3] = ACTIONS(1048), - [aux_sym_expr_binary_token4] = ACTIONS(1048), - [aux_sym_expr_binary_token5] = ACTIONS(1048), - [aux_sym_expr_binary_token6] = ACTIONS(1048), - [aux_sym_expr_binary_token7] = ACTIONS(1048), - [aux_sym_expr_binary_token8] = ACTIONS(1048), - [aux_sym_expr_binary_token9] = ACTIONS(1048), - [aux_sym_expr_binary_token10] = ACTIONS(1048), - [aux_sym_expr_binary_token11] = ACTIONS(1048), - [aux_sym_expr_binary_token12] = ACTIONS(1048), - [aux_sym_expr_binary_token13] = ACTIONS(1048), - [aux_sym_expr_binary_token14] = ACTIONS(1048), - [aux_sym_expr_binary_token15] = ACTIONS(1048), - [aux_sym_expr_binary_token16] = ACTIONS(1048), - [aux_sym_expr_binary_token17] = ACTIONS(1048), - [aux_sym_expr_binary_token18] = ACTIONS(1048), - [aux_sym_expr_binary_token19] = ACTIONS(1048), - [aux_sym_expr_binary_token20] = ACTIONS(1048), - [aux_sym_expr_binary_token21] = ACTIONS(1048), - [aux_sym_expr_binary_token22] = ACTIONS(1048), - [aux_sym_expr_binary_token23] = ACTIONS(1048), - [aux_sym_expr_binary_token24] = ACTIONS(1048), - [aux_sym_expr_binary_token25] = ACTIONS(1048), - [aux_sym_expr_binary_token26] = ACTIONS(1048), - [aux_sym_expr_binary_token27] = ACTIONS(1048), - [aux_sym_expr_binary_token28] = ACTIONS(1048), - [anon_sym_DOT_DOT2] = ACTIONS(1046), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1048), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1048), - [aux_sym_record_entry_token1] = ACTIONS(1048), - [anon_sym_err_GT] = ACTIONS(1046), - [anon_sym_out_GT] = ACTIONS(1046), - [anon_sym_e_GT] = ACTIONS(1046), - [anon_sym_o_GT] = ACTIONS(1046), - [anon_sym_err_PLUSout_GT] = ACTIONS(1046), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1046), - [anon_sym_o_PLUSe_GT] = ACTIONS(1046), - [anon_sym_e_PLUSo_GT] = ACTIONS(1046), - [anon_sym_err_GT_GT] = ACTIONS(1048), - [anon_sym_out_GT_GT] = ACTIONS(1048), - [anon_sym_e_GT_GT] = ACTIONS(1048), - [anon_sym_o_GT_GT] = ACTIONS(1048), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1048), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1048), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1048), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1048), - [anon_sym_POUND] = ACTIONS(247), - }, - [1136] = { - [sym__expr_parenthesized_immediate] = STATE(1934), - [sym__immediate_decimal] = STATE(1935), - [sym_val_variable] = STATE(1934), - [sym_comment] = STATE(1136), - [ts_builtin_sym_end] = ACTIONS(1604), - [anon_sym_true] = ACTIONS(1604), - [anon_sym_false] = ACTIONS(1604), - [anon_sym_null] = ACTIONS(1604), - [aux_sym_cmd_identifier_token38] = ACTIONS(1604), - [aux_sym_cmd_identifier_token39] = ACTIONS(1604), - [aux_sym_cmd_identifier_token40] = ACTIONS(1604), - [sym__newline] = ACTIONS(1604), - [anon_sym_SEMI] = ACTIONS(1604), - [anon_sym_PIPE] = ACTIONS(1604), - [anon_sym_err_GT_PIPE] = ACTIONS(1604), - [anon_sym_out_GT_PIPE] = ACTIONS(1604), - [anon_sym_e_GT_PIPE] = ACTIONS(1604), - [anon_sym_o_GT_PIPE] = ACTIONS(1604), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1604), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1604), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1604), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1604), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_DOLLAR] = ACTIONS(3923), - [anon_sym_DASH_DASH] = ACTIONS(1604), - [anon_sym_DASH] = ACTIONS(1602), - [anon_sym_LBRACE] = ACTIONS(1604), - [anon_sym_DOT_DOT] = ACTIONS(1602), - [anon_sym_LPAREN2] = ACTIONS(3925), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1604), - [anon_sym_DOT_DOT_LT] = ACTIONS(1604), - [aux_sym__immediate_decimal_token1] = ACTIONS(4095), - [aux_sym__immediate_decimal_token3] = ACTIONS(4097), - [aux_sym__immediate_decimal_token4] = ACTIONS(4099), - [aux_sym__immediate_decimal_token5] = ACTIONS(4101), - [aux_sym__val_number_decimal_token1] = ACTIONS(1602), - [aux_sym__val_number_decimal_token2] = ACTIONS(1602), - [aux_sym__val_number_decimal_token3] = ACTIONS(1602), - [aux_sym__val_number_decimal_token4] = ACTIONS(1602), - [aux_sym__val_number_token1] = ACTIONS(1604), - [aux_sym__val_number_token2] = ACTIONS(1604), - [aux_sym__val_number_token3] = ACTIONS(1604), - [anon_sym_0b] = ACTIONS(1602), - [anon_sym_0o] = ACTIONS(1602), - [anon_sym_0x] = ACTIONS(1602), - [sym_val_date] = ACTIONS(1604), - [anon_sym_DQUOTE] = ACTIONS(1604), - [sym__str_single_quotes] = ACTIONS(1604), - [sym__str_back_ticks] = ACTIONS(1604), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1604), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1604), - [anon_sym_err_GT] = ACTIONS(1602), - [anon_sym_out_GT] = ACTIONS(1602), - [anon_sym_e_GT] = ACTIONS(1602), - [anon_sym_o_GT] = ACTIONS(1602), - [anon_sym_err_PLUSout_GT] = ACTIONS(1602), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1602), - [anon_sym_o_PLUSe_GT] = ACTIONS(1602), - [anon_sym_e_PLUSo_GT] = ACTIONS(1602), - [anon_sym_err_GT_GT] = ACTIONS(1604), - [anon_sym_out_GT_GT] = ACTIONS(1604), - [anon_sym_e_GT_GT] = ACTIONS(1604), - [anon_sym_o_GT_GT] = ACTIONS(1604), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1604), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1604), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1604), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1604), - [aux_sym_unquoted_token1] = ACTIONS(1602), - [anon_sym_POUND] = ACTIONS(247), - }, - [1137] = { - [sym_comment] = STATE(1137), - [anon_sym_EQ] = ACTIONS(1042), - [anon_sym_PLUS_EQ] = ACTIONS(1044), - [anon_sym_DASH_EQ] = ACTIONS(1044), - [anon_sym_STAR_EQ] = ACTIONS(1044), - [anon_sym_SLASH_EQ] = ACTIONS(1044), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1044), - [sym__newline] = ACTIONS(1044), - [anon_sym_SEMI] = ACTIONS(1044), - [anon_sym_PIPE] = ACTIONS(1044), - [anon_sym_err_GT_PIPE] = ACTIONS(1044), - [anon_sym_out_GT_PIPE] = ACTIONS(1044), - [anon_sym_e_GT_PIPE] = ACTIONS(1044), - [anon_sym_o_GT_PIPE] = ACTIONS(1044), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1044), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1044), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1044), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1044), - [anon_sym_RPAREN] = ACTIONS(1044), [anon_sym_RBRACE] = ACTIONS(1044), - [anon_sym_QMARK2] = ACTIONS(1044), + [anon_sym_QMARK2] = ACTIONS(4459), [aux_sym_expr_binary_token1] = ACTIONS(1044), [aux_sym_expr_binary_token2] = ACTIONS(1044), [aux_sym_expr_binary_token3] = ACTIONS(1044), @@ -187267,6 +192983,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1042), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1044), [anon_sym_DOT_DOT_LT2] = ACTIONS(1044), + [aux_sym_record_entry_token1] = ACTIONS(1044), [anon_sym_err_GT] = ACTIONS(1042), [anon_sym_out_GT] = ACTIONS(1042), [anon_sym_e_GT] = ACTIONS(1042), @@ -187283,17 +193000,893 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1044), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1044), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1044), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), }, - [1138] = { - [sym_comment] = STATE(1138), + [1178] = { + [sym_cell_path] = STATE(1386), + [sym_path] = STATE(1288), + [sym_comment] = STATE(1178), + [aux_sym_cell_path_repeat1] = STATE(1208), + [anon_sym_true] = ACTIONS(1023), + [anon_sym_false] = ACTIONS(1023), + [anon_sym_null] = ACTIONS(1023), + [aux_sym_cmd_identifier_token38] = ACTIONS(1023), + [aux_sym_cmd_identifier_token39] = ACTIONS(1023), + [aux_sym_cmd_identifier_token40] = ACTIONS(1023), + [sym__newline] = ACTIONS(1023), + [anon_sym_SEMI] = ACTIONS(1023), + [anon_sym_PIPE] = ACTIONS(1023), + [anon_sym_err_GT_PIPE] = ACTIONS(1023), + [anon_sym_out_GT_PIPE] = ACTIONS(1023), + [anon_sym_e_GT_PIPE] = ACTIONS(1023), + [anon_sym_o_GT_PIPE] = ACTIONS(1023), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1023), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1023), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1023), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1023), + [anon_sym_LBRACK] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1023), + [anon_sym_RPAREN] = ACTIONS(1023), + [anon_sym_DOLLAR] = ACTIONS(1021), + [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_LBRACE] = ACTIONS(1023), + [anon_sym_RBRACE] = ACTIONS(1023), + [anon_sym_DOT_DOT] = ACTIONS(1021), + [anon_sym_DOT_DOT2] = ACTIONS(1021), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1021), + [anon_sym_DOT_DOT_LT] = ACTIONS(1021), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1023), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1023), + [aux_sym__val_number_decimal_token1] = ACTIONS(1021), + [aux_sym__val_number_decimal_token2] = ACTIONS(1023), + [aux_sym__val_number_decimal_token3] = ACTIONS(1023), + [aux_sym__val_number_decimal_token4] = ACTIONS(1023), + [aux_sym__val_number_token1] = ACTIONS(1023), + [aux_sym__val_number_token2] = ACTIONS(1023), + [aux_sym__val_number_token3] = ACTIONS(1023), + [anon_sym_0b] = ACTIONS(1021), + [anon_sym_0o] = ACTIONS(1021), + [anon_sym_0x] = ACTIONS(1021), + [sym_val_date] = ACTIONS(1023), + [anon_sym_DQUOTE] = ACTIONS(1023), + [sym__str_single_quotes] = ACTIONS(1023), + [sym__str_back_ticks] = ACTIONS(1023), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1023), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1023), + [anon_sym_err_GT] = ACTIONS(1021), + [anon_sym_out_GT] = ACTIONS(1021), + [anon_sym_e_GT] = ACTIONS(1021), + [anon_sym_o_GT] = ACTIONS(1021), + [anon_sym_err_PLUSout_GT] = ACTIONS(1021), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1021), + [anon_sym_o_PLUSe_GT] = ACTIONS(1021), + [anon_sym_e_PLUSo_GT] = ACTIONS(1021), + [anon_sym_err_GT_GT] = ACTIONS(1023), + [anon_sym_out_GT_GT] = ACTIONS(1023), + [anon_sym_e_GT_GT] = ACTIONS(1023), + [anon_sym_o_GT_GT] = ACTIONS(1023), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1023), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1023), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1023), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1023), + [aux_sym_unquoted_token1] = ACTIONS(1021), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1023), + }, + [1179] = { + [sym_comment] = STATE(1179), + [anon_sym_true] = ACTIONS(1717), + [anon_sym_false] = ACTIONS(1717), + [anon_sym_null] = ACTIONS(1717), + [aux_sym_cmd_identifier_token38] = ACTIONS(1717), + [aux_sym_cmd_identifier_token39] = ACTIONS(1717), + [aux_sym_cmd_identifier_token40] = ACTIONS(1717), + [sym__newline] = ACTIONS(1717), + [anon_sym_SEMI] = ACTIONS(1717), + [anon_sym_PIPE] = ACTIONS(1717), + [anon_sym_err_GT_PIPE] = ACTIONS(1717), + [anon_sym_out_GT_PIPE] = ACTIONS(1717), + [anon_sym_e_GT_PIPE] = ACTIONS(1717), + [anon_sym_o_GT_PIPE] = ACTIONS(1717), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1717), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1717), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1717), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1717), + [anon_sym_LBRACK] = ACTIONS(1717), + [anon_sym_LPAREN] = ACTIONS(1715), + [anon_sym_RPAREN] = ACTIONS(1717), + [anon_sym_DOLLAR] = ACTIONS(1715), + [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_LBRACE] = ACTIONS(1717), + [anon_sym_RBRACE] = ACTIONS(1717), + [anon_sym_DOT_DOT] = ACTIONS(1715), + [anon_sym_LPAREN2] = ACTIONS(1717), + [anon_sym_DOT_DOT2] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(4463), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1715), + [anon_sym_DOT_DOT_LT] = ACTIONS(1715), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1717), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1717), + [aux_sym__immediate_decimal_token2] = ACTIONS(4465), + [aux_sym__val_number_decimal_token1] = ACTIONS(1715), + [aux_sym__val_number_decimal_token2] = ACTIONS(1717), + [aux_sym__val_number_decimal_token3] = ACTIONS(1717), + [aux_sym__val_number_decimal_token4] = ACTIONS(1717), + [aux_sym__val_number_token1] = ACTIONS(1717), + [aux_sym__val_number_token2] = ACTIONS(1717), + [aux_sym__val_number_token3] = ACTIONS(1717), + [anon_sym_0b] = ACTIONS(1715), + [anon_sym_0o] = ACTIONS(1715), + [anon_sym_0x] = ACTIONS(1715), + [sym_val_date] = ACTIONS(1717), + [anon_sym_DQUOTE] = ACTIONS(1717), + [sym__str_single_quotes] = ACTIONS(1717), + [sym__str_back_ticks] = ACTIONS(1717), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1717), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1717), + [anon_sym_err_GT] = ACTIONS(1715), + [anon_sym_out_GT] = ACTIONS(1715), + [anon_sym_e_GT] = ACTIONS(1715), + [anon_sym_o_GT] = ACTIONS(1715), + [anon_sym_err_PLUSout_GT] = ACTIONS(1715), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1715), + [anon_sym_o_PLUSe_GT] = ACTIONS(1715), + [anon_sym_e_PLUSo_GT] = ACTIONS(1715), + [anon_sym_err_GT_GT] = ACTIONS(1717), + [anon_sym_out_GT_GT] = ACTIONS(1717), + [anon_sym_e_GT_GT] = ACTIONS(1717), + [anon_sym_o_GT_GT] = ACTIONS(1717), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1717), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1717), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1717), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1717), + [aux_sym_unquoted_token1] = ACTIONS(1715), + [aux_sym_unquoted_token2] = ACTIONS(1715), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1717), + }, + [1180] = { + [sym_comment] = STATE(1180), + [ts_builtin_sym_end] = ACTIONS(1538), + [anon_sym_true] = ACTIONS(1538), + [anon_sym_false] = ACTIONS(1538), + [anon_sym_null] = ACTIONS(1538), + [aux_sym_cmd_identifier_token38] = ACTIONS(1538), + [aux_sym_cmd_identifier_token39] = ACTIONS(1538), + [aux_sym_cmd_identifier_token40] = ACTIONS(1538), + [sym__newline] = ACTIONS(1538), + [anon_sym_SEMI] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_err_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_GT_PIPE] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), + [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_LPAREN] = ACTIONS(1538), + [anon_sym_DOLLAR] = ACTIONS(1536), + [anon_sym_DASH_DASH] = ACTIONS(1538), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1538), + [anon_sym_DOT_DOT] = ACTIONS(1536), + [anon_sym_DOT_DOT2] = ACTIONS(1536), + [anon_sym_DOT] = ACTIONS(4467), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1536), + [anon_sym_DOT_DOT_LT] = ACTIONS(1536), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), + [aux_sym__immediate_decimal_token2] = ACTIONS(4469), + [aux_sym__val_number_decimal_token1] = ACTIONS(1536), + [aux_sym__val_number_decimal_token2] = ACTIONS(1538), + [aux_sym__val_number_decimal_token3] = ACTIONS(1538), + [aux_sym__val_number_decimal_token4] = ACTIONS(1538), + [aux_sym__val_number_token1] = ACTIONS(1538), + [aux_sym__val_number_token2] = ACTIONS(1538), + [aux_sym__val_number_token3] = ACTIONS(1538), + [anon_sym_0b] = ACTIONS(1536), + [sym_filesize_unit] = ACTIONS(1538), + [sym_duration_unit] = ACTIONS(1538), + [anon_sym_0o] = ACTIONS(1536), + [anon_sym_0x] = ACTIONS(1536), + [sym_val_date] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1538), + [sym__str_single_quotes] = ACTIONS(1538), + [sym__str_back_ticks] = ACTIONS(1538), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1538), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1538), + [anon_sym_err_GT] = ACTIONS(1536), + [anon_sym_out_GT] = ACTIONS(1536), + [anon_sym_e_GT] = ACTIONS(1536), + [anon_sym_o_GT] = ACTIONS(1536), + [anon_sym_err_PLUSout_GT] = ACTIONS(1536), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), + [anon_sym_o_PLUSe_GT] = ACTIONS(1536), + [anon_sym_e_PLUSo_GT] = ACTIONS(1536), + [anon_sym_err_GT_GT] = ACTIONS(1538), + [anon_sym_out_GT_GT] = ACTIONS(1538), + [anon_sym_e_GT_GT] = ACTIONS(1538), + [anon_sym_o_GT_GT] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), + [aux_sym_unquoted_token1] = ACTIONS(1536), + [aux_sym_unquoted_token2] = ACTIONS(1536), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1538), + }, + [1181] = { + [sym_comment] = STATE(1181), + [ts_builtin_sym_end] = ACTIONS(1530), + [anon_sym_true] = ACTIONS(1530), + [anon_sym_false] = ACTIONS(1530), + [anon_sym_null] = ACTIONS(1530), + [aux_sym_cmd_identifier_token38] = ACTIONS(1530), + [aux_sym_cmd_identifier_token39] = ACTIONS(1530), + [aux_sym_cmd_identifier_token40] = ACTIONS(1530), + [sym__newline] = ACTIONS(1530), + [anon_sym_SEMI] = ACTIONS(1530), + [anon_sym_PIPE] = ACTIONS(1530), + [anon_sym_err_GT_PIPE] = ACTIONS(1530), + [anon_sym_out_GT_PIPE] = ACTIONS(1530), + [anon_sym_e_GT_PIPE] = ACTIONS(1530), + [anon_sym_o_GT_PIPE] = ACTIONS(1530), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1530), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1530), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1530), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1530), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_LPAREN] = ACTIONS(1530), + [anon_sym_DOLLAR] = ACTIONS(1528), + [anon_sym_DASH_DASH] = ACTIONS(1530), + [anon_sym_DASH] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(1530), + [anon_sym_DOT_DOT] = ACTIONS(1528), + [anon_sym_DOT_DOT2] = ACTIONS(1528), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1528), + [anon_sym_DOT_DOT_LT] = ACTIONS(1528), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1530), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1530), + [aux_sym__immediate_decimal_token1] = ACTIONS(4471), + [aux_sym__immediate_decimal_token2] = ACTIONS(4473), + [aux_sym__val_number_decimal_token1] = ACTIONS(1528), + [aux_sym__val_number_decimal_token2] = ACTIONS(1530), + [aux_sym__val_number_decimal_token3] = ACTIONS(1530), + [aux_sym__val_number_decimal_token4] = ACTIONS(1530), + [aux_sym__val_number_token1] = ACTIONS(1530), + [aux_sym__val_number_token2] = ACTIONS(1530), + [aux_sym__val_number_token3] = ACTIONS(1530), + [anon_sym_0b] = ACTIONS(1528), + [sym_filesize_unit] = ACTIONS(1530), + [sym_duration_unit] = ACTIONS(1530), + [anon_sym_0o] = ACTIONS(1528), + [anon_sym_0x] = ACTIONS(1528), + [sym_val_date] = ACTIONS(1530), + [anon_sym_DQUOTE] = ACTIONS(1530), + [sym__str_single_quotes] = ACTIONS(1530), + [sym__str_back_ticks] = ACTIONS(1530), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1530), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1530), + [anon_sym_err_GT] = ACTIONS(1528), + [anon_sym_out_GT] = ACTIONS(1528), + [anon_sym_e_GT] = ACTIONS(1528), + [anon_sym_o_GT] = ACTIONS(1528), + [anon_sym_err_PLUSout_GT] = ACTIONS(1528), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), + [anon_sym_o_PLUSe_GT] = ACTIONS(1528), + [anon_sym_e_PLUSo_GT] = ACTIONS(1528), + [anon_sym_err_GT_GT] = ACTIONS(1530), + [anon_sym_out_GT_GT] = ACTIONS(1530), + [anon_sym_e_GT_GT] = ACTIONS(1530), + [anon_sym_o_GT_GT] = ACTIONS(1530), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1530), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1530), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1530), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1530), + [aux_sym_unquoted_token1] = ACTIONS(1528), + [aux_sym_unquoted_token2] = ACTIONS(1528), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1530), + }, + [1182] = { + [sym_comment] = STATE(1182), + [ts_builtin_sym_end] = ACTIONS(1598), + [anon_sym_true] = ACTIONS(1598), + [anon_sym_false] = ACTIONS(1598), + [anon_sym_null] = ACTIONS(1598), + [aux_sym_cmd_identifier_token38] = ACTIONS(1598), + [aux_sym_cmd_identifier_token39] = ACTIONS(1598), + [aux_sym_cmd_identifier_token40] = ACTIONS(1598), + [sym__newline] = ACTIONS(1598), + [anon_sym_SEMI] = ACTIONS(1598), + [anon_sym_PIPE] = ACTIONS(1598), + [anon_sym_err_GT_PIPE] = ACTIONS(1598), + [anon_sym_out_GT_PIPE] = ACTIONS(1598), + [anon_sym_e_GT_PIPE] = ACTIONS(1598), + [anon_sym_o_GT_PIPE] = ACTIONS(1598), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1598), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1598), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1598), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(1596), + [anon_sym_DOLLAR] = ACTIONS(1596), + [anon_sym_DASH_DASH] = ACTIONS(1598), + [anon_sym_DASH] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_DOT_DOT] = ACTIONS(1596), + [anon_sym_LPAREN2] = ACTIONS(1598), + [anon_sym_DOT_DOT2] = ACTIONS(1596), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1596), + [anon_sym_DOT_DOT_LT] = ACTIONS(1596), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1598), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1598), + [aux_sym__immediate_decimal_token2] = ACTIONS(4475), + [aux_sym__val_number_decimal_token1] = ACTIONS(1596), + [aux_sym__val_number_decimal_token2] = ACTIONS(1598), + [aux_sym__val_number_decimal_token3] = ACTIONS(1598), + [aux_sym__val_number_decimal_token4] = ACTIONS(1598), + [aux_sym__val_number_token1] = ACTIONS(1598), + [aux_sym__val_number_token2] = ACTIONS(1598), + [aux_sym__val_number_token3] = ACTIONS(1598), + [anon_sym_0b] = ACTIONS(1596), + [sym_filesize_unit] = ACTIONS(1598), + [sym_duration_unit] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1596), + [sym_val_date] = ACTIONS(1598), + [anon_sym_DQUOTE] = ACTIONS(1598), + [sym__str_single_quotes] = ACTIONS(1598), + [sym__str_back_ticks] = ACTIONS(1598), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1598), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1598), + [anon_sym_err_GT] = ACTIONS(1596), + [anon_sym_out_GT] = ACTIONS(1596), + [anon_sym_e_GT] = ACTIONS(1596), + [anon_sym_o_GT] = ACTIONS(1596), + [anon_sym_err_PLUSout_GT] = ACTIONS(1596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1596), + [anon_sym_o_PLUSe_GT] = ACTIONS(1596), + [anon_sym_e_PLUSo_GT] = ACTIONS(1596), + [anon_sym_err_GT_GT] = ACTIONS(1598), + [anon_sym_out_GT_GT] = ACTIONS(1598), + [anon_sym_e_GT_GT] = ACTIONS(1598), + [anon_sym_o_GT_GT] = ACTIONS(1598), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1598), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1598), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1598), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1598), + [aux_sym_unquoted_token1] = ACTIONS(1596), + [aux_sym_unquoted_token2] = ACTIONS(1596), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1598), + }, + [1183] = { + [sym_cell_path] = STATE(1375), + [sym_path] = STATE(1288), + [sym_comment] = STATE(1183), + [aux_sym_cell_path_repeat1] = STATE(1208), + [anon_sym_true] = ACTIONS(1668), + [anon_sym_false] = ACTIONS(1668), + [anon_sym_null] = ACTIONS(1668), + [aux_sym_cmd_identifier_token38] = ACTIONS(1668), + [aux_sym_cmd_identifier_token39] = ACTIONS(1668), + [aux_sym_cmd_identifier_token40] = ACTIONS(1668), + [sym__newline] = ACTIONS(1668), + [anon_sym_SEMI] = ACTIONS(1668), + [anon_sym_PIPE] = ACTIONS(1668), + [anon_sym_err_GT_PIPE] = ACTIONS(1668), + [anon_sym_out_GT_PIPE] = ACTIONS(1668), + [anon_sym_e_GT_PIPE] = ACTIONS(1668), + [anon_sym_o_GT_PIPE] = ACTIONS(1668), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1668), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1668), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1668), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1668), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_LPAREN] = ACTIONS(1668), + [anon_sym_RPAREN] = ACTIONS(1668), + [anon_sym_DOLLAR] = ACTIONS(1664), + [anon_sym_DASH_DASH] = ACTIONS(1668), + [anon_sym_DASH] = ACTIONS(1664), + [anon_sym_LBRACE] = ACTIONS(1668), + [anon_sym_RBRACE] = ACTIONS(1668), + [anon_sym_DOT_DOT] = ACTIONS(1664), + [anon_sym_DOT_DOT2] = ACTIONS(1664), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1664), + [anon_sym_DOT_DOT_LT] = ACTIONS(1664), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1668), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1668), + [aux_sym__val_number_decimal_token1] = ACTIONS(1664), + [aux_sym__val_number_decimal_token2] = ACTIONS(1668), + [aux_sym__val_number_decimal_token3] = ACTIONS(1668), + [aux_sym__val_number_decimal_token4] = ACTIONS(1668), + [aux_sym__val_number_token1] = ACTIONS(1668), + [aux_sym__val_number_token2] = ACTIONS(1668), + [aux_sym__val_number_token3] = ACTIONS(1668), + [anon_sym_0b] = ACTIONS(1664), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0x] = ACTIONS(1664), + [sym_val_date] = ACTIONS(1668), + [anon_sym_DQUOTE] = ACTIONS(1668), + [sym__str_single_quotes] = ACTIONS(1668), + [sym__str_back_ticks] = ACTIONS(1668), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1668), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1668), + [anon_sym_err_GT] = ACTIONS(1664), + [anon_sym_out_GT] = ACTIONS(1664), + [anon_sym_e_GT] = ACTIONS(1664), + [anon_sym_o_GT] = ACTIONS(1664), + [anon_sym_err_PLUSout_GT] = ACTIONS(1664), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1664), + [anon_sym_o_PLUSe_GT] = ACTIONS(1664), + [anon_sym_e_PLUSo_GT] = ACTIONS(1664), + [anon_sym_err_GT_GT] = ACTIONS(1668), + [anon_sym_out_GT_GT] = ACTIONS(1668), + [anon_sym_e_GT_GT] = ACTIONS(1668), + [anon_sym_o_GT_GT] = ACTIONS(1668), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1668), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1668), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1668), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1668), + [aux_sym_unquoted_token1] = ACTIONS(1664), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1668), + }, + [1184] = { + [sym_cell_path] = STATE(1379), + [sym_path] = STATE(1288), + [sym_comment] = STATE(1184), + [aux_sym_cell_path_repeat1] = STATE(1208), + [anon_sym_true] = ACTIONS(1672), + [anon_sym_false] = ACTIONS(1672), + [anon_sym_null] = ACTIONS(1672), + [aux_sym_cmd_identifier_token38] = ACTIONS(1672), + [aux_sym_cmd_identifier_token39] = ACTIONS(1672), + [aux_sym_cmd_identifier_token40] = ACTIONS(1672), + [sym__newline] = ACTIONS(1672), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_PIPE] = ACTIONS(1672), + [anon_sym_err_GT_PIPE] = ACTIONS(1672), + [anon_sym_out_GT_PIPE] = ACTIONS(1672), + [anon_sym_e_GT_PIPE] = ACTIONS(1672), + [anon_sym_o_GT_PIPE] = ACTIONS(1672), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1672), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1672), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1672), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1672), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LPAREN] = ACTIONS(1672), + [anon_sym_RPAREN] = ACTIONS(1672), + [anon_sym_DOLLAR] = ACTIONS(1670), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DASH] = ACTIONS(1670), + [anon_sym_LBRACE] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(1672), + [anon_sym_DOT_DOT] = ACTIONS(1670), + [anon_sym_DOT_DOT2] = ACTIONS(1670), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1670), + [anon_sym_DOT_DOT_LT] = ACTIONS(1670), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1672), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1672), + [aux_sym__val_number_decimal_token1] = ACTIONS(1670), + [aux_sym__val_number_decimal_token2] = ACTIONS(1672), + [aux_sym__val_number_decimal_token3] = ACTIONS(1672), + [aux_sym__val_number_decimal_token4] = ACTIONS(1672), + [aux_sym__val_number_token1] = ACTIONS(1672), + [aux_sym__val_number_token2] = ACTIONS(1672), + [aux_sym__val_number_token3] = ACTIONS(1672), + [anon_sym_0b] = ACTIONS(1670), + [anon_sym_0o] = ACTIONS(1670), + [anon_sym_0x] = ACTIONS(1670), + [sym_val_date] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1672), + [sym__str_single_quotes] = ACTIONS(1672), + [sym__str_back_ticks] = ACTIONS(1672), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1672), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1672), + [anon_sym_err_GT] = ACTIONS(1670), + [anon_sym_out_GT] = ACTIONS(1670), + [anon_sym_e_GT] = ACTIONS(1670), + [anon_sym_o_GT] = ACTIONS(1670), + [anon_sym_err_PLUSout_GT] = ACTIONS(1670), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1670), + [anon_sym_o_PLUSe_GT] = ACTIONS(1670), + [anon_sym_e_PLUSo_GT] = ACTIONS(1670), + [anon_sym_err_GT_GT] = ACTIONS(1672), + [anon_sym_out_GT_GT] = ACTIONS(1672), + [anon_sym_e_GT_GT] = ACTIONS(1672), + [anon_sym_o_GT_GT] = ACTIONS(1672), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1672), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1672), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1672), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1672), + [aux_sym_unquoted_token1] = ACTIONS(1670), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1672), + }, + [1185] = { + [sym__expr_parenthesized_immediate] = STATE(7603), + [sym_comment] = STATE(1185), + [ts_builtin_sym_end] = ACTIONS(1640), + [anon_sym_true] = ACTIONS(1640), + [anon_sym_false] = ACTIONS(1640), + [anon_sym_null] = ACTIONS(1640), + [aux_sym_cmd_identifier_token38] = ACTIONS(1640), + [aux_sym_cmd_identifier_token39] = ACTIONS(1640), + [aux_sym_cmd_identifier_token40] = ACTIONS(1640), + [sym__newline] = ACTIONS(1640), + [anon_sym_SEMI] = ACTIONS(1640), + [anon_sym_PIPE] = ACTIONS(1640), + [anon_sym_err_GT_PIPE] = ACTIONS(1640), + [anon_sym_out_GT_PIPE] = ACTIONS(1640), + [anon_sym_e_GT_PIPE] = ACTIONS(1640), + [anon_sym_o_GT_PIPE] = ACTIONS(1640), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1640), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1640), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1640), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_LPAREN] = ACTIONS(1628), + [anon_sym_DOLLAR] = ACTIONS(1628), + [anon_sym_DASH_DASH] = ACTIONS(1640), + [anon_sym_DASH] = ACTIONS(1628), + [anon_sym_LBRACE] = ACTIONS(1640), + [anon_sym_DOT_DOT] = ACTIONS(1628), + [anon_sym_LPAREN2] = ACTIONS(4433), + [anon_sym_DOT_DOT2] = ACTIONS(4477), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1628), + [anon_sym_DOT_DOT_LT] = ACTIONS(1628), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4479), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4479), + [aux_sym__val_number_decimal_token1] = ACTIONS(1628), + [aux_sym__val_number_decimal_token2] = ACTIONS(1640), + [aux_sym__val_number_decimal_token3] = ACTIONS(1640), + [aux_sym__val_number_decimal_token4] = ACTIONS(1640), + [aux_sym__val_number_token1] = ACTIONS(1640), + [aux_sym__val_number_token2] = ACTIONS(1640), + [aux_sym__val_number_token3] = ACTIONS(1640), + [anon_sym_0b] = ACTIONS(1628), + [sym_filesize_unit] = ACTIONS(4481), + [sym_duration_unit] = ACTIONS(4483), + [anon_sym_0o] = ACTIONS(1628), + [anon_sym_0x] = ACTIONS(1628), + [sym_val_date] = ACTIONS(1640), + [anon_sym_DQUOTE] = ACTIONS(1640), + [sym__str_single_quotes] = ACTIONS(1640), + [sym__str_back_ticks] = ACTIONS(1640), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1640), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1640), + [anon_sym_err_GT] = ACTIONS(1628), + [anon_sym_out_GT] = ACTIONS(1628), + [anon_sym_e_GT] = ACTIONS(1628), + [anon_sym_o_GT] = ACTIONS(1628), + [anon_sym_err_PLUSout_GT] = ACTIONS(1628), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1628), + [anon_sym_o_PLUSe_GT] = ACTIONS(1628), + [anon_sym_e_PLUSo_GT] = ACTIONS(1628), + [anon_sym_err_GT_GT] = ACTIONS(1640), + [anon_sym_out_GT_GT] = ACTIONS(1640), + [anon_sym_e_GT_GT] = ACTIONS(1640), + [anon_sym_o_GT_GT] = ACTIONS(1640), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1640), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1640), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1640), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1640), + [aux_sym_unquoted_token1] = ACTIONS(1628), + [aux_sym_unquoted_token2] = ACTIONS(4485), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1640), + }, + [1186] = { + [sym_comment] = STATE(1186), + [anon_sym_true] = ACTIONS(1538), + [anon_sym_false] = ACTIONS(1538), + [anon_sym_null] = ACTIONS(1538), + [aux_sym_cmd_identifier_token38] = ACTIONS(1538), + [aux_sym_cmd_identifier_token39] = ACTIONS(1538), + [aux_sym_cmd_identifier_token40] = ACTIONS(1538), + [sym__newline] = ACTIONS(1538), + [anon_sym_SEMI] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_err_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_GT_PIPE] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), + [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_LPAREN] = ACTIONS(1536), + [anon_sym_RPAREN] = ACTIONS(1538), + [anon_sym_DOLLAR] = ACTIONS(1536), + [anon_sym_DASH_DASH] = ACTIONS(1538), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1538), + [anon_sym_RBRACE] = ACTIONS(1538), + [anon_sym_DOT_DOT] = ACTIONS(1536), + [anon_sym_LPAREN2] = ACTIONS(1538), + [anon_sym_DOT_DOT2] = ACTIONS(1536), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1536), + [anon_sym_DOT_DOT_LT] = ACTIONS(1536), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), + [aux_sym__val_number_decimal_token1] = ACTIONS(1536), + [aux_sym__val_number_decimal_token2] = ACTIONS(1538), + [aux_sym__val_number_decimal_token3] = ACTIONS(1538), + [aux_sym__val_number_decimal_token4] = ACTIONS(1538), + [aux_sym__val_number_token1] = ACTIONS(1538), + [aux_sym__val_number_token2] = ACTIONS(1538), + [aux_sym__val_number_token3] = ACTIONS(1538), + [anon_sym_0b] = ACTIONS(1536), + [sym_filesize_unit] = ACTIONS(1538), + [sym_duration_unit] = ACTIONS(1538), + [anon_sym_0o] = ACTIONS(1536), + [anon_sym_0x] = ACTIONS(1536), + [sym_val_date] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1538), + [sym__str_single_quotes] = ACTIONS(1538), + [sym__str_back_ticks] = ACTIONS(1538), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1538), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1538), + [anon_sym_err_GT] = ACTIONS(1536), + [anon_sym_out_GT] = ACTIONS(1536), + [anon_sym_e_GT] = ACTIONS(1536), + [anon_sym_o_GT] = ACTIONS(1536), + [anon_sym_err_PLUSout_GT] = ACTIONS(1536), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), + [anon_sym_o_PLUSe_GT] = ACTIONS(1536), + [anon_sym_e_PLUSo_GT] = ACTIONS(1536), + [anon_sym_err_GT_GT] = ACTIONS(1538), + [anon_sym_out_GT_GT] = ACTIONS(1538), + [anon_sym_e_GT_GT] = ACTIONS(1538), + [anon_sym_o_GT_GT] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), + [aux_sym_unquoted_token1] = ACTIONS(1536), + [aux_sym_unquoted_token2] = ACTIONS(1536), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1538), + }, + [1187] = { + [sym_comment] = STATE(1187), + [anon_sym_true] = ACTIONS(1705), + [anon_sym_false] = ACTIONS(1705), + [anon_sym_null] = ACTIONS(1705), + [aux_sym_cmd_identifier_token38] = ACTIONS(1705), + [aux_sym_cmd_identifier_token39] = ACTIONS(1705), + [aux_sym_cmd_identifier_token40] = ACTIONS(1705), + [sym__newline] = ACTIONS(1705), + [anon_sym_SEMI] = ACTIONS(1705), + [anon_sym_PIPE] = ACTIONS(1705), + [anon_sym_err_GT_PIPE] = ACTIONS(1705), + [anon_sym_out_GT_PIPE] = ACTIONS(1705), + [anon_sym_e_GT_PIPE] = ACTIONS(1705), + [anon_sym_o_GT_PIPE] = ACTIONS(1705), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1705), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1705), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1705), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1705), + [anon_sym_LBRACK] = ACTIONS(1705), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_RPAREN] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1703), + [anon_sym_DASH_DASH] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_LBRACE] = ACTIONS(1705), + [anon_sym_RBRACE] = ACTIONS(1705), + [anon_sym_DOT_DOT] = ACTIONS(1703), + [anon_sym_LPAREN2] = ACTIONS(1705), + [anon_sym_DOT_DOT2] = ACTIONS(1703), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT] = ACTIONS(1703), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1705), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1705), + [aux_sym__immediate_decimal_token1] = ACTIONS(4487), + [aux_sym__immediate_decimal_token2] = ACTIONS(4489), + [aux_sym__val_number_decimal_token1] = ACTIONS(1703), + [aux_sym__val_number_decimal_token2] = ACTIONS(1705), + [aux_sym__val_number_decimal_token3] = ACTIONS(1705), + [aux_sym__val_number_decimal_token4] = ACTIONS(1705), + [aux_sym__val_number_token1] = ACTIONS(1705), + [aux_sym__val_number_token2] = ACTIONS(1705), + [aux_sym__val_number_token3] = ACTIONS(1705), + [anon_sym_0b] = ACTIONS(1703), + [anon_sym_0o] = ACTIONS(1703), + [anon_sym_0x] = ACTIONS(1703), + [sym_val_date] = ACTIONS(1705), + [anon_sym_DQUOTE] = ACTIONS(1705), + [sym__str_single_quotes] = ACTIONS(1705), + [sym__str_back_ticks] = ACTIONS(1705), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1705), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1705), + [anon_sym_err_GT] = ACTIONS(1703), + [anon_sym_out_GT] = ACTIONS(1703), + [anon_sym_e_GT] = ACTIONS(1703), + [anon_sym_o_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT] = ACTIONS(1703), + [anon_sym_err_GT_GT] = ACTIONS(1705), + [anon_sym_out_GT_GT] = ACTIONS(1705), + [anon_sym_e_GT_GT] = ACTIONS(1705), + [anon_sym_o_GT_GT] = ACTIONS(1705), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1705), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1705), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1705), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1705), + [aux_sym_unquoted_token1] = ACTIONS(1703), + [aux_sym_unquoted_token2] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1705), + }, + [1188] = { + [sym_comment] = STATE(1188), + [anon_sym_EQ] = ACTIONS(1058), + [anon_sym_PLUS_EQ] = ACTIONS(1060), + [anon_sym_DASH_EQ] = ACTIONS(1060), + [anon_sym_STAR_EQ] = ACTIONS(1060), + [anon_sym_SLASH_EQ] = ACTIONS(1060), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1060), + [sym__newline] = ACTIONS(1058), + [anon_sym_SEMI] = ACTIONS(1060), + [anon_sym_PIPE] = ACTIONS(1060), + [anon_sym_err_GT_PIPE] = ACTIONS(1060), + [anon_sym_out_GT_PIPE] = ACTIONS(1060), + [anon_sym_e_GT_PIPE] = ACTIONS(1060), + [anon_sym_o_GT_PIPE] = ACTIONS(1060), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1060), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1060), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1060), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1060), + [anon_sym_LBRACE] = ACTIONS(1060), + [anon_sym_RBRACE] = ACTIONS(1060), + [anon_sym_QMARK2] = ACTIONS(1060), + [aux_sym_expr_binary_token1] = ACTIONS(1060), + [aux_sym_expr_binary_token2] = ACTIONS(1060), + [aux_sym_expr_binary_token3] = ACTIONS(1060), + [aux_sym_expr_binary_token4] = ACTIONS(1060), + [aux_sym_expr_binary_token5] = ACTIONS(1060), + [aux_sym_expr_binary_token6] = ACTIONS(1060), + [aux_sym_expr_binary_token7] = ACTIONS(1060), + [aux_sym_expr_binary_token8] = ACTIONS(1060), + [aux_sym_expr_binary_token9] = ACTIONS(1060), + [aux_sym_expr_binary_token10] = ACTIONS(1060), + [aux_sym_expr_binary_token11] = ACTIONS(1060), + [aux_sym_expr_binary_token12] = ACTIONS(1060), + [aux_sym_expr_binary_token13] = ACTIONS(1060), + [aux_sym_expr_binary_token14] = ACTIONS(1060), + [aux_sym_expr_binary_token15] = ACTIONS(1060), + [aux_sym_expr_binary_token16] = ACTIONS(1060), + [aux_sym_expr_binary_token17] = ACTIONS(1060), + [aux_sym_expr_binary_token18] = ACTIONS(1060), + [aux_sym_expr_binary_token19] = ACTIONS(1060), + [aux_sym_expr_binary_token20] = ACTIONS(1060), + [aux_sym_expr_binary_token21] = ACTIONS(1060), + [aux_sym_expr_binary_token22] = ACTIONS(1060), + [aux_sym_expr_binary_token23] = ACTIONS(1060), + [aux_sym_expr_binary_token24] = ACTIONS(1060), + [aux_sym_expr_binary_token25] = ACTIONS(1060), + [aux_sym_expr_binary_token26] = ACTIONS(1060), + [aux_sym_expr_binary_token27] = ACTIONS(1060), + [aux_sym_expr_binary_token28] = ACTIONS(1060), + [anon_sym_DOT_DOT2] = ACTIONS(1058), + [anon_sym_DOT] = ACTIONS(1058), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1060), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1060), + [aux_sym_record_entry_token1] = ACTIONS(1060), + [anon_sym_err_GT] = ACTIONS(1058), + [anon_sym_out_GT] = ACTIONS(1058), + [anon_sym_e_GT] = ACTIONS(1058), + [anon_sym_o_GT] = ACTIONS(1058), + [anon_sym_err_PLUSout_GT] = ACTIONS(1058), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1058), + [anon_sym_o_PLUSe_GT] = ACTIONS(1058), + [anon_sym_e_PLUSo_GT] = ACTIONS(1058), + [anon_sym_err_GT_GT] = ACTIONS(1060), + [anon_sym_out_GT_GT] = ACTIONS(1060), + [anon_sym_e_GT_GT] = ACTIONS(1060), + [anon_sym_o_GT_GT] = ACTIONS(1060), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1060), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1060), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1060), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1060), + [anon_sym_POUND] = ACTIONS(249), + }, + [1189] = { + [sym_comment] = STATE(1189), + [anon_sym_EQ] = ACTIONS(1062), + [anon_sym_PLUS_EQ] = ACTIONS(1064), + [anon_sym_DASH_EQ] = ACTIONS(1064), + [anon_sym_STAR_EQ] = ACTIONS(1064), + [anon_sym_SLASH_EQ] = ACTIONS(1064), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1064), + [sym__newline] = ACTIONS(1062), + [anon_sym_SEMI] = ACTIONS(1064), + [anon_sym_PIPE] = ACTIONS(1064), + [anon_sym_err_GT_PIPE] = ACTIONS(1064), + [anon_sym_out_GT_PIPE] = ACTIONS(1064), + [anon_sym_e_GT_PIPE] = ACTIONS(1064), + [anon_sym_o_GT_PIPE] = ACTIONS(1064), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1064), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1064), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1064), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1064), + [anon_sym_LBRACE] = ACTIONS(1064), + [anon_sym_RBRACE] = ACTIONS(1064), + [anon_sym_QMARK2] = ACTIONS(1064), + [aux_sym_expr_binary_token1] = ACTIONS(1064), + [aux_sym_expr_binary_token2] = ACTIONS(1064), + [aux_sym_expr_binary_token3] = ACTIONS(1064), + [aux_sym_expr_binary_token4] = ACTIONS(1064), + [aux_sym_expr_binary_token5] = ACTIONS(1064), + [aux_sym_expr_binary_token6] = ACTIONS(1064), + [aux_sym_expr_binary_token7] = ACTIONS(1064), + [aux_sym_expr_binary_token8] = ACTIONS(1064), + [aux_sym_expr_binary_token9] = ACTIONS(1064), + [aux_sym_expr_binary_token10] = ACTIONS(1064), + [aux_sym_expr_binary_token11] = ACTIONS(1064), + [aux_sym_expr_binary_token12] = ACTIONS(1064), + [aux_sym_expr_binary_token13] = ACTIONS(1064), + [aux_sym_expr_binary_token14] = ACTIONS(1064), + [aux_sym_expr_binary_token15] = ACTIONS(1064), + [aux_sym_expr_binary_token16] = ACTIONS(1064), + [aux_sym_expr_binary_token17] = ACTIONS(1064), + [aux_sym_expr_binary_token18] = ACTIONS(1064), + [aux_sym_expr_binary_token19] = ACTIONS(1064), + [aux_sym_expr_binary_token20] = ACTIONS(1064), + [aux_sym_expr_binary_token21] = ACTIONS(1064), + [aux_sym_expr_binary_token22] = ACTIONS(1064), + [aux_sym_expr_binary_token23] = ACTIONS(1064), + [aux_sym_expr_binary_token24] = ACTIONS(1064), + [aux_sym_expr_binary_token25] = ACTIONS(1064), + [aux_sym_expr_binary_token26] = ACTIONS(1064), + [aux_sym_expr_binary_token27] = ACTIONS(1064), + [aux_sym_expr_binary_token28] = ACTIONS(1064), + [anon_sym_DOT_DOT2] = ACTIONS(1062), + [anon_sym_DOT] = ACTIONS(1062), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1064), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1064), + [aux_sym_record_entry_token1] = ACTIONS(1064), + [anon_sym_err_GT] = ACTIONS(1062), + [anon_sym_out_GT] = ACTIONS(1062), + [anon_sym_e_GT] = ACTIONS(1062), + [anon_sym_o_GT] = ACTIONS(1062), + [anon_sym_err_PLUSout_GT] = ACTIONS(1062), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1062), + [anon_sym_o_PLUSe_GT] = ACTIONS(1062), + [anon_sym_e_PLUSo_GT] = ACTIONS(1062), + [anon_sym_err_GT_GT] = ACTIONS(1064), + [anon_sym_out_GT_GT] = ACTIONS(1064), + [anon_sym_e_GT_GT] = ACTIONS(1064), + [anon_sym_o_GT_GT] = ACTIONS(1064), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1064), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1064), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1064), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1064), + [anon_sym_POUND] = ACTIONS(249), + }, + [1190] = { + [sym_comment] = STATE(1190), [anon_sym_EQ] = ACTIONS(1038), [anon_sym_PLUS_EQ] = ACTIONS(1040), [anon_sym_DASH_EQ] = ACTIONS(1040), [anon_sym_STAR_EQ] = ACTIONS(1040), [anon_sym_SLASH_EQ] = ACTIONS(1040), [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1040), - [sym__newline] = ACTIONS(1040), + [sym__newline] = ACTIONS(1038), [anon_sym_SEMI] = ACTIONS(1040), [anon_sym_PIPE] = ACTIONS(1040), [anon_sym_err_GT_PIPE] = ACTIONS(1040), @@ -187304,7 +193897,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1040), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1040), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1040), - [anon_sym_RPAREN] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1040), [anon_sym_RBRACE] = ACTIONS(1040), [anon_sym_QMARK2] = ACTIONS(1040), [aux_sym_expr_binary_token1] = ACTIONS(1040), @@ -187339,6 +193932,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1038), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1040), [anon_sym_DOT_DOT_LT2] = ACTIONS(1040), + [aux_sym_record_entry_token1] = ACTIONS(1040), [anon_sym_err_GT] = ACTIONS(1038), [anon_sym_out_GT] = ACTIONS(1038), [anon_sym_e_GT] = ACTIONS(1038), @@ -187355,874 +193949,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1040), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1040), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1040), - [anon_sym_POUND] = ACTIONS(247), - }, - [1139] = { - [sym_comment] = STATE(1139), - [anon_sym_EQ] = ACTIONS(1034), - [anon_sym_PLUS_EQ] = ACTIONS(1036), - [anon_sym_DASH_EQ] = ACTIONS(1036), - [anon_sym_STAR_EQ] = ACTIONS(1036), - [anon_sym_SLASH_EQ] = ACTIONS(1036), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1036), - [sym__newline] = ACTIONS(1036), - [anon_sym_SEMI] = ACTIONS(1036), - [anon_sym_PIPE] = ACTIONS(1036), - [anon_sym_err_GT_PIPE] = ACTIONS(1036), - [anon_sym_out_GT_PIPE] = ACTIONS(1036), - [anon_sym_e_GT_PIPE] = ACTIONS(1036), - [anon_sym_o_GT_PIPE] = ACTIONS(1036), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1036), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1036), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1036), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1036), - [anon_sym_RPAREN] = ACTIONS(1036), - [anon_sym_RBRACE] = ACTIONS(1036), - [anon_sym_QMARK2] = ACTIONS(1036), - [aux_sym_expr_binary_token1] = ACTIONS(1036), - [aux_sym_expr_binary_token2] = ACTIONS(1036), - [aux_sym_expr_binary_token3] = ACTIONS(1036), - [aux_sym_expr_binary_token4] = ACTIONS(1036), - [aux_sym_expr_binary_token5] = ACTIONS(1036), - [aux_sym_expr_binary_token6] = ACTIONS(1036), - [aux_sym_expr_binary_token7] = ACTIONS(1036), - [aux_sym_expr_binary_token8] = ACTIONS(1036), - [aux_sym_expr_binary_token9] = ACTIONS(1036), - [aux_sym_expr_binary_token10] = ACTIONS(1036), - [aux_sym_expr_binary_token11] = ACTIONS(1036), - [aux_sym_expr_binary_token12] = ACTIONS(1036), - [aux_sym_expr_binary_token13] = ACTIONS(1036), - [aux_sym_expr_binary_token14] = ACTIONS(1036), - [aux_sym_expr_binary_token15] = ACTIONS(1036), - [aux_sym_expr_binary_token16] = ACTIONS(1036), - [aux_sym_expr_binary_token17] = ACTIONS(1036), - [aux_sym_expr_binary_token18] = ACTIONS(1036), - [aux_sym_expr_binary_token19] = ACTIONS(1036), - [aux_sym_expr_binary_token20] = ACTIONS(1036), - [aux_sym_expr_binary_token21] = ACTIONS(1036), - [aux_sym_expr_binary_token22] = ACTIONS(1036), - [aux_sym_expr_binary_token23] = ACTIONS(1036), - [aux_sym_expr_binary_token24] = ACTIONS(1036), - [aux_sym_expr_binary_token25] = ACTIONS(1036), - [aux_sym_expr_binary_token26] = ACTIONS(1036), - [aux_sym_expr_binary_token27] = ACTIONS(1036), - [aux_sym_expr_binary_token28] = ACTIONS(1036), - [anon_sym_DOT_DOT2] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(1034), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1036), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1036), - [anon_sym_err_GT] = ACTIONS(1034), - [anon_sym_out_GT] = ACTIONS(1034), - [anon_sym_e_GT] = ACTIONS(1034), - [anon_sym_o_GT] = ACTIONS(1034), - [anon_sym_err_PLUSout_GT] = ACTIONS(1034), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1034), - [anon_sym_o_PLUSe_GT] = ACTIONS(1034), - [anon_sym_e_PLUSo_GT] = ACTIONS(1034), - [anon_sym_err_GT_GT] = ACTIONS(1036), - [anon_sym_out_GT_GT] = ACTIONS(1036), - [anon_sym_e_GT_GT] = ACTIONS(1036), - [anon_sym_o_GT_GT] = ACTIONS(1036), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1036), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1036), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1036), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1036), - [anon_sym_POUND] = ACTIONS(247), - }, - [1140] = { - [sym__val_range] = STATE(7468), - [sym__value] = STATE(5948), - [sym_val_nothing] = STATE(4953), - [sym_val_bool] = STATE(6709), - [sym_val_variable] = STATE(4953), - [sym_val_number] = STATE(4953), - [sym__val_number_decimal] = STATE(5391), - [sym__val_number] = STATE(5152), - [sym_val_duration] = STATE(4953), - [sym_val_filesize] = STATE(4953), - [sym_val_binary] = STATE(4953), - [sym_val_string] = STATE(4953), - [sym__str_double_quotes] = STATE(4744), - [sym_val_interpolated] = STATE(4953), - [sym__inter_single_quotes] = STATE(4860), - [sym__inter_double_quotes] = STATE(4909), - [sym_val_list] = STATE(4953), - [sym_val_record] = STATE(4953), - [sym_val_table] = STATE(4953), - [sym_val_closure] = STATE(4953), - [sym_unquoted] = STATE(5953), - [sym__unquoted_anonymous_prefix] = STATE(7625), - [sym_comment] = STATE(1140), - [anon_sym_true] = ACTIONS(4103), - [anon_sym_false] = ACTIONS(4103), - [anon_sym_null] = ACTIONS(4105), - [aux_sym_cmd_identifier_token38] = ACTIONS(4107), - [aux_sym_cmd_identifier_token39] = ACTIONS(4107), - [aux_sym_cmd_identifier_token40] = ACTIONS(4107), - [anon_sym_LBRACK] = ACTIONS(4109), - [anon_sym_LPAREN] = ACTIONS(4111), - [anon_sym_DOLLAR] = ACTIONS(4113), - [anon_sym_LBRACE] = ACTIONS(4115), - [anon_sym_DOT_DOT] = ACTIONS(4117), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4119), - [anon_sym_DOT_DOT_LT] = ACTIONS(4119), - [aux_sym__val_number_decimal_token1] = ACTIONS(4121), - [aux_sym__val_number_decimal_token2] = ACTIONS(4123), - [aux_sym__val_number_decimal_token3] = ACTIONS(4125), - [aux_sym__val_number_decimal_token4] = ACTIONS(4127), - [aux_sym__val_number_token1] = ACTIONS(3515), - [aux_sym__val_number_token2] = ACTIONS(3515), - [aux_sym__val_number_token3] = ACTIONS(3515), - [anon_sym_0b] = ACTIONS(3517), - [anon_sym_0o] = ACTIONS(3519), - [anon_sym_0x] = ACTIONS(3519), - [sym_val_date] = ACTIONS(4129), - [anon_sym_DQUOTE] = ACTIONS(4131), - [sym__str_single_quotes] = ACTIONS(4133), - [sym__str_back_ticks] = ACTIONS(4133), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3527), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3529), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(4135), - [anon_sym_POUND] = ACTIONS(247), - }, - [1141] = { - [sym__val_range] = STATE(7468), - [sym__value] = STATE(6006), - [sym_val_nothing] = STATE(4953), - [sym_val_bool] = STATE(5877), - [sym_val_variable] = STATE(4953), - [sym_val_number] = STATE(4953), - [sym__val_number_decimal] = STATE(5290), - [sym__val_number] = STATE(3465), - [sym_val_duration] = STATE(4953), - [sym_val_filesize] = STATE(4953), - [sym_val_binary] = STATE(4953), - [sym_val_string] = STATE(4953), - [sym__str_double_quotes] = STATE(2725), - [sym_val_interpolated] = STATE(4953), - [sym__inter_single_quotes] = STATE(4860), - [sym__inter_double_quotes] = STATE(4909), - [sym_val_list] = STATE(4953), - [sym_val_record] = STATE(4953), - [sym_val_table] = STATE(4953), - [sym_val_closure] = STATE(4953), - [sym_unquoted] = STATE(6008), - [sym__unquoted_anonymous_prefix] = STATE(7625), - [sym_comment] = STATE(1141), - [anon_sym_true] = ACTIONS(4137), - [anon_sym_false] = ACTIONS(4137), - [anon_sym_null] = ACTIONS(4139), - [aux_sym_cmd_identifier_token38] = ACTIONS(4141), - [aux_sym_cmd_identifier_token39] = ACTIONS(4141), - [aux_sym_cmd_identifier_token40] = ACTIONS(4141), - [anon_sym_LBRACK] = ACTIONS(4143), - [anon_sym_LPAREN] = ACTIONS(4111), - [anon_sym_DOLLAR] = ACTIONS(4003), - [anon_sym_LBRACE] = ACTIONS(4145), - [anon_sym_DOT_DOT] = ACTIONS(4117), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4119), - [anon_sym_DOT_DOT_LT] = ACTIONS(4119), - [aux_sym__val_number_decimal_token1] = ACTIONS(4147), - [aux_sym__val_number_decimal_token2] = ACTIONS(4149), - [aux_sym__val_number_decimal_token3] = ACTIONS(4151), - [aux_sym__val_number_decimal_token4] = ACTIONS(4153), - [aux_sym__val_number_token1] = ACTIONS(3421), - [aux_sym__val_number_token2] = ACTIONS(3421), - [aux_sym__val_number_token3] = ACTIONS(3421), - [anon_sym_0b] = ACTIONS(3517), - [anon_sym_0o] = ACTIONS(3519), - [anon_sym_0x] = ACTIONS(3519), - [sym_val_date] = ACTIONS(4155), - [anon_sym_DQUOTE] = ACTIONS(3429), - [sym__str_single_quotes] = ACTIONS(3431), - [sym__str_back_ticks] = ACTIONS(3431), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3527), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3529), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(4135), - [anon_sym_POUND] = ACTIONS(247), - }, - [1142] = { - [sym__val_range] = STATE(7468), - [sym__value] = STATE(5932), - [sym_val_nothing] = STATE(4953), - [sym_val_bool] = STATE(6709), - [sym_val_variable] = STATE(4953), - [sym_val_number] = STATE(4953), - [sym__val_number_decimal] = STATE(5391), - [sym__val_number] = STATE(5152), - [sym_val_duration] = STATE(4953), - [sym_val_filesize] = STATE(4953), - [sym_val_binary] = STATE(4953), - [sym_val_string] = STATE(4953), - [sym__str_double_quotes] = STATE(4744), - [sym_val_interpolated] = STATE(4953), - [sym__inter_single_quotes] = STATE(4860), - [sym__inter_double_quotes] = STATE(4909), - [sym_val_list] = STATE(4953), - [sym_val_record] = STATE(4953), - [sym_val_table] = STATE(4953), - [sym_val_closure] = STATE(4953), - [sym_unquoted] = STATE(5941), - [sym__unquoted_anonymous_prefix] = STATE(7625), - [sym_comment] = STATE(1142), - [anon_sym_true] = ACTIONS(4103), - [anon_sym_false] = ACTIONS(4103), - [anon_sym_null] = ACTIONS(4105), - [aux_sym_cmd_identifier_token38] = ACTIONS(4107), - [aux_sym_cmd_identifier_token39] = ACTIONS(4107), - [aux_sym_cmd_identifier_token40] = ACTIONS(4107), - [anon_sym_LBRACK] = ACTIONS(4109), - [anon_sym_LPAREN] = ACTIONS(4111), - [anon_sym_DOLLAR] = ACTIONS(4113), - [anon_sym_LBRACE] = ACTIONS(4115), - [anon_sym_DOT_DOT] = ACTIONS(4117), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4119), - [anon_sym_DOT_DOT_LT] = ACTIONS(4119), - [aux_sym__val_number_decimal_token1] = ACTIONS(4121), - [aux_sym__val_number_decimal_token2] = ACTIONS(4123), - [aux_sym__val_number_decimal_token3] = ACTIONS(4125), - [aux_sym__val_number_decimal_token4] = ACTIONS(4127), - [aux_sym__val_number_token1] = ACTIONS(3515), - [aux_sym__val_number_token2] = ACTIONS(3515), - [aux_sym__val_number_token3] = ACTIONS(3515), - [anon_sym_0b] = ACTIONS(3517), - [anon_sym_0o] = ACTIONS(3519), - [anon_sym_0x] = ACTIONS(3519), - [sym_val_date] = ACTIONS(4129), - [anon_sym_DQUOTE] = ACTIONS(4131), - [sym__str_single_quotes] = ACTIONS(4133), - [sym__str_back_ticks] = ACTIONS(4133), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3527), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3529), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(4135), - [anon_sym_POUND] = ACTIONS(247), - }, - [1143] = { - [sym__val_range] = STATE(7468), - [sym__value] = STATE(5935), - [sym_val_nothing] = STATE(4953), - [sym_val_bool] = STATE(6709), - [sym_val_variable] = STATE(4953), - [sym_val_number] = STATE(4953), - [sym__val_number_decimal] = STATE(5391), - [sym__val_number] = STATE(5152), - [sym_val_duration] = STATE(4953), - [sym_val_filesize] = STATE(4953), - [sym_val_binary] = STATE(4953), - [sym_val_string] = STATE(4953), - [sym__str_double_quotes] = STATE(4744), - [sym_val_interpolated] = STATE(4953), - [sym__inter_single_quotes] = STATE(4860), - [sym__inter_double_quotes] = STATE(4909), - [sym_val_list] = STATE(4953), - [sym_val_record] = STATE(4953), - [sym_val_table] = STATE(4953), - [sym_val_closure] = STATE(4953), - [sym_unquoted] = STATE(5939), - [sym__unquoted_anonymous_prefix] = STATE(7625), - [sym_comment] = STATE(1143), - [anon_sym_true] = ACTIONS(4103), - [anon_sym_false] = ACTIONS(4103), - [anon_sym_null] = ACTIONS(4105), - [aux_sym_cmd_identifier_token38] = ACTIONS(4107), - [aux_sym_cmd_identifier_token39] = ACTIONS(4107), - [aux_sym_cmd_identifier_token40] = ACTIONS(4107), - [anon_sym_LBRACK] = ACTIONS(4109), - [anon_sym_LPAREN] = ACTIONS(4111), - [anon_sym_DOLLAR] = ACTIONS(4113), - [anon_sym_LBRACE] = ACTIONS(4115), - [anon_sym_DOT_DOT] = ACTIONS(4117), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4119), - [anon_sym_DOT_DOT_LT] = ACTIONS(4119), - [aux_sym__val_number_decimal_token1] = ACTIONS(4121), - [aux_sym__val_number_decimal_token2] = ACTIONS(4123), - [aux_sym__val_number_decimal_token3] = ACTIONS(4125), - [aux_sym__val_number_decimal_token4] = ACTIONS(4127), - [aux_sym__val_number_token1] = ACTIONS(3515), - [aux_sym__val_number_token2] = ACTIONS(3515), - [aux_sym__val_number_token3] = ACTIONS(3515), - [anon_sym_0b] = ACTIONS(3517), - [anon_sym_0o] = ACTIONS(3519), - [anon_sym_0x] = ACTIONS(3519), - [sym_val_date] = ACTIONS(4129), - [anon_sym_DQUOTE] = ACTIONS(4131), - [sym__str_single_quotes] = ACTIONS(4133), - [sym__str_back_ticks] = ACTIONS(4133), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3527), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3529), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(4135), - [anon_sym_POUND] = ACTIONS(247), - }, - [1144] = { - [sym__val_range] = STATE(7468), - [sym__value] = STATE(6006), - [sym_val_nothing] = STATE(4953), - [sym_val_bool] = STATE(6709), - [sym_val_variable] = STATE(4953), - [sym_val_number] = STATE(4953), - [sym__val_number_decimal] = STATE(5391), - [sym__val_number] = STATE(5152), - [sym_val_duration] = STATE(4953), - [sym_val_filesize] = STATE(4953), - [sym_val_binary] = STATE(4953), - [sym_val_string] = STATE(4953), - [sym__str_double_quotes] = STATE(4744), - [sym_val_interpolated] = STATE(4953), - [sym__inter_single_quotes] = STATE(4860), - [sym__inter_double_quotes] = STATE(4909), - [sym_val_list] = STATE(4953), - [sym_val_record] = STATE(4953), - [sym_val_table] = STATE(4953), - [sym_val_closure] = STATE(4953), - [sym_unquoted] = STATE(6008), - [sym__unquoted_anonymous_prefix] = STATE(7625), - [sym_comment] = STATE(1144), - [anon_sym_true] = ACTIONS(4103), - [anon_sym_false] = ACTIONS(4103), - [anon_sym_null] = ACTIONS(4105), - [aux_sym_cmd_identifier_token38] = ACTIONS(4107), - [aux_sym_cmd_identifier_token39] = ACTIONS(4107), - [aux_sym_cmd_identifier_token40] = ACTIONS(4107), - [anon_sym_LBRACK] = ACTIONS(4109), - [anon_sym_LPAREN] = ACTIONS(4111), - [anon_sym_DOLLAR] = ACTIONS(4113), - [anon_sym_LBRACE] = ACTIONS(4115), - [anon_sym_DOT_DOT] = ACTIONS(4117), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4119), - [anon_sym_DOT_DOT_LT] = ACTIONS(4119), - [aux_sym__val_number_decimal_token1] = ACTIONS(4121), - [aux_sym__val_number_decimal_token2] = ACTIONS(4123), - [aux_sym__val_number_decimal_token3] = ACTIONS(4125), - [aux_sym__val_number_decimal_token4] = ACTIONS(4127), - [aux_sym__val_number_token1] = ACTIONS(3515), - [aux_sym__val_number_token2] = ACTIONS(3515), - [aux_sym__val_number_token3] = ACTIONS(3515), - [anon_sym_0b] = ACTIONS(3517), - [anon_sym_0o] = ACTIONS(3519), - [anon_sym_0x] = ACTIONS(3519), - [sym_val_date] = ACTIONS(4129), - [anon_sym_DQUOTE] = ACTIONS(4131), - [sym__str_single_quotes] = ACTIONS(4133), - [sym__str_back_ticks] = ACTIONS(4133), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3527), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3529), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(4135), - [anon_sym_POUND] = ACTIONS(247), - }, - [1145] = { - [sym__val_range] = STATE(7468), - [sym__value] = STATE(5935), - [sym_val_nothing] = STATE(4953), - [sym_val_bool] = STATE(5877), - [sym_val_variable] = STATE(4953), - [sym_val_number] = STATE(4953), - [sym__val_number_decimal] = STATE(5290), - [sym__val_number] = STATE(3465), - [sym_val_duration] = STATE(4953), - [sym_val_filesize] = STATE(4953), - [sym_val_binary] = STATE(4953), - [sym_val_string] = STATE(4953), - [sym__str_double_quotes] = STATE(2725), - [sym_val_interpolated] = STATE(4953), - [sym__inter_single_quotes] = STATE(4860), - [sym__inter_double_quotes] = STATE(4909), - [sym_val_list] = STATE(4953), - [sym_val_record] = STATE(4953), - [sym_val_table] = STATE(4953), - [sym_val_closure] = STATE(4953), - [sym_unquoted] = STATE(5939), - [sym__unquoted_anonymous_prefix] = STATE(7625), - [sym_comment] = STATE(1145), - [anon_sym_true] = ACTIONS(4137), - [anon_sym_false] = ACTIONS(4137), - [anon_sym_null] = ACTIONS(4139), - [aux_sym_cmd_identifier_token38] = ACTIONS(4141), - [aux_sym_cmd_identifier_token39] = ACTIONS(4141), - [aux_sym_cmd_identifier_token40] = ACTIONS(4141), - [anon_sym_LBRACK] = ACTIONS(4143), - [anon_sym_LPAREN] = ACTIONS(4111), - [anon_sym_DOLLAR] = ACTIONS(4003), - [anon_sym_LBRACE] = ACTIONS(4145), - [anon_sym_DOT_DOT] = ACTIONS(4117), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4119), - [anon_sym_DOT_DOT_LT] = ACTIONS(4119), - [aux_sym__val_number_decimal_token1] = ACTIONS(4147), - [aux_sym__val_number_decimal_token2] = ACTIONS(4149), - [aux_sym__val_number_decimal_token3] = ACTIONS(4151), - [aux_sym__val_number_decimal_token4] = ACTIONS(4153), - [aux_sym__val_number_token1] = ACTIONS(3421), - [aux_sym__val_number_token2] = ACTIONS(3421), - [aux_sym__val_number_token3] = ACTIONS(3421), - [anon_sym_0b] = ACTIONS(3517), - [anon_sym_0o] = ACTIONS(3519), - [anon_sym_0x] = ACTIONS(3519), - [sym_val_date] = ACTIONS(4155), - [anon_sym_DQUOTE] = ACTIONS(3429), - [sym__str_single_quotes] = ACTIONS(3431), - [sym__str_back_ticks] = ACTIONS(3431), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3527), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3529), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(4135), - [anon_sym_POUND] = ACTIONS(247), - }, - [1146] = { - [sym_comment] = STATE(1146), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_PLUS_EQ] = ACTIONS(1052), - [anon_sym_DASH_EQ] = ACTIONS(1052), - [anon_sym_STAR_EQ] = ACTIONS(1052), - [anon_sym_SLASH_EQ] = ACTIONS(1052), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1052), - [sym__newline] = ACTIONS(1050), - [anon_sym_SEMI] = ACTIONS(1052), - [anon_sym_PIPE] = ACTIONS(1052), - [anon_sym_err_GT_PIPE] = ACTIONS(1052), - [anon_sym_out_GT_PIPE] = ACTIONS(1052), - [anon_sym_e_GT_PIPE] = ACTIONS(1052), - [anon_sym_o_GT_PIPE] = ACTIONS(1052), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1052), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1052), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1052), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1052), - [anon_sym_LBRACE] = ACTIONS(1052), - [anon_sym_RBRACE] = ACTIONS(1052), - [aux_sym_expr_binary_token1] = ACTIONS(1052), - [aux_sym_expr_binary_token2] = ACTIONS(1052), - [aux_sym_expr_binary_token3] = ACTIONS(1052), - [aux_sym_expr_binary_token4] = ACTIONS(1052), - [aux_sym_expr_binary_token5] = ACTIONS(1052), - [aux_sym_expr_binary_token6] = ACTIONS(1052), - [aux_sym_expr_binary_token7] = ACTIONS(1052), - [aux_sym_expr_binary_token8] = ACTIONS(1052), - [aux_sym_expr_binary_token9] = ACTIONS(1052), - [aux_sym_expr_binary_token10] = ACTIONS(1052), - [aux_sym_expr_binary_token11] = ACTIONS(1052), - [aux_sym_expr_binary_token12] = ACTIONS(1052), - [aux_sym_expr_binary_token13] = ACTIONS(1052), - [aux_sym_expr_binary_token14] = ACTIONS(1052), - [aux_sym_expr_binary_token15] = ACTIONS(1052), - [aux_sym_expr_binary_token16] = ACTIONS(1052), - [aux_sym_expr_binary_token17] = ACTIONS(1052), - [aux_sym_expr_binary_token18] = ACTIONS(1052), - [aux_sym_expr_binary_token19] = ACTIONS(1052), - [aux_sym_expr_binary_token20] = ACTIONS(1052), - [aux_sym_expr_binary_token21] = ACTIONS(1052), - [aux_sym_expr_binary_token22] = ACTIONS(1052), - [aux_sym_expr_binary_token23] = ACTIONS(1052), - [aux_sym_expr_binary_token24] = ACTIONS(1052), - [aux_sym_expr_binary_token25] = ACTIONS(1052), - [aux_sym_expr_binary_token26] = ACTIONS(1052), - [aux_sym_expr_binary_token27] = ACTIONS(1052), - [aux_sym_expr_binary_token28] = ACTIONS(1052), - [anon_sym_DOT_DOT2] = ACTIONS(1050), - [anon_sym_DOT] = ACTIONS(1050), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1052), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1052), - [aux_sym_record_entry_token1] = ACTIONS(1052), - [anon_sym_err_GT] = ACTIONS(1050), - [anon_sym_out_GT] = ACTIONS(1050), - [anon_sym_e_GT] = ACTIONS(1050), - [anon_sym_o_GT] = ACTIONS(1050), - [anon_sym_err_PLUSout_GT] = ACTIONS(1050), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1050), - [anon_sym_o_PLUSe_GT] = ACTIONS(1050), - [anon_sym_e_PLUSo_GT] = ACTIONS(1050), - [anon_sym_err_GT_GT] = ACTIONS(1052), - [anon_sym_out_GT_GT] = ACTIONS(1052), - [anon_sym_e_GT_GT] = ACTIONS(1052), - [anon_sym_o_GT_GT] = ACTIONS(1052), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1052), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1052), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1052), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1052), - [anon_sym_POUND] = ACTIONS(247), - }, - [1147] = { - [sym__match_pattern_expression] = STATE(3060), - [sym__match_pattern_value] = STATE(3093), - [sym__match_pattern_list] = STATE(3094), - [sym__match_pattern_rest] = STATE(7447), - [sym__match_pattern_record] = STATE(3095), - [sym_expr_parenthesized] = STATE(2884), - [sym_val_range] = STATE(3093), - [sym__val_range] = STATE(7378), - [sym_val_nothing] = STATE(3096), - [sym_val_bool] = STATE(3015), - [sym_val_variable] = STATE(2885), - [sym_val_number] = STATE(3096), - [sym__val_number_decimal] = STATE(2627), - [sym__val_number] = STATE(3088), - [sym_val_duration] = STATE(3096), - [sym_val_filesize] = STATE(3096), - [sym_val_binary] = STATE(3096), - [sym_val_string] = STATE(3096), - [sym__str_double_quotes] = STATE(3056), - [sym_val_table] = STATE(3096), - [sym__unquoted_in_list] = STATE(3060), - [sym__unquoted_anonymous_prefix] = STATE(7454), - [sym_comment] = STATE(1147), - [aux_sym__match_pattern_list_repeat1] = STATE(1232), - [anon_sym_true] = ACTIONS(3699), - [anon_sym_false] = ACTIONS(3699), - [anon_sym_null] = ACTIONS(3701), - [aux_sym_cmd_identifier_token38] = ACTIONS(3703), - [aux_sym_cmd_identifier_token39] = ACTIONS(3703), - [aux_sym_cmd_identifier_token40] = ACTIONS(3703), - [anon_sym_LBRACK] = ACTIONS(4079), - [anon_sym_RBRACK] = ACTIONS(4157), - [anon_sym_LPAREN] = ACTIONS(3711), - [anon_sym_DOLLAR] = ACTIONS(3713), - [anon_sym_LBRACE] = ACTIONS(3715), - [anon_sym_DOT_DOT] = ACTIONS(4159), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3719), - [anon_sym_DOT_DOT_LT] = ACTIONS(3719), - [aux_sym__val_number_decimal_token1] = ACTIONS(3721), - [aux_sym__val_number_decimal_token2] = ACTIONS(3723), - [aux_sym__val_number_decimal_token3] = ACTIONS(3725), - [aux_sym__val_number_decimal_token4] = ACTIONS(3727), - [aux_sym__val_number_token1] = ACTIONS(3729), - [aux_sym__val_number_token2] = ACTIONS(3729), - [aux_sym__val_number_token3] = ACTIONS(3729), - [anon_sym_0b] = ACTIONS(3731), - [anon_sym_0o] = ACTIONS(3733), - [anon_sym_0x] = ACTIONS(3733), - [sym_val_date] = ACTIONS(3735), - [anon_sym_DQUOTE] = ACTIONS(3737), - [sym__str_single_quotes] = ACTIONS(3739), - [sym__str_back_ticks] = ACTIONS(3739), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [anon_sym_err_GT_GT] = ACTIONS(2589), - [anon_sym_out_GT_GT] = ACTIONS(2589), - [anon_sym_e_GT_GT] = ACTIONS(2589), - [anon_sym_o_GT_GT] = ACTIONS(2589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2589), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3741), - [anon_sym_POUND] = ACTIONS(247), - }, - [1148] = { - [sym__expr_parenthesized_immediate] = STATE(7299), - [sym_comment] = STATE(1148), - [ts_builtin_sym_end] = ACTIONS(1572), - [anon_sym_true] = ACTIONS(1572), - [anon_sym_false] = ACTIONS(1572), - [anon_sym_null] = ACTIONS(1572), - [aux_sym_cmd_identifier_token38] = ACTIONS(1572), - [aux_sym_cmd_identifier_token39] = ACTIONS(1572), - [aux_sym_cmd_identifier_token40] = ACTIONS(1572), - [sym__newline] = ACTIONS(1572), - [anon_sym_SEMI] = ACTIONS(1572), - [anon_sym_PIPE] = ACTIONS(1572), - [anon_sym_err_GT_PIPE] = ACTIONS(1572), - [anon_sym_out_GT_PIPE] = ACTIONS(1572), - [anon_sym_e_GT_PIPE] = ACTIONS(1572), - [anon_sym_o_GT_PIPE] = ACTIONS(1572), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1572), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1572), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1572), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1572), - [anon_sym_LBRACK] = ACTIONS(1572), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_DOLLAR] = ACTIONS(1560), - [anon_sym_DASH_DASH] = ACTIONS(1572), - [anon_sym_DASH] = ACTIONS(1560), - [anon_sym_LBRACE] = ACTIONS(1572), - [anon_sym_DOT_DOT] = ACTIONS(1560), - [anon_sym_LPAREN2] = ACTIONS(3978), - [anon_sym_DOT_DOT2] = ACTIONS(4161), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1560), - [anon_sym_DOT_DOT_LT] = ACTIONS(1560), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4163), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4163), - [aux_sym__val_number_decimal_token1] = ACTIONS(1560), - [aux_sym__val_number_decimal_token2] = ACTIONS(1572), - [aux_sym__val_number_decimal_token3] = ACTIONS(1572), - [aux_sym__val_number_decimal_token4] = ACTIONS(1572), - [aux_sym__val_number_token1] = ACTIONS(1572), - [aux_sym__val_number_token2] = ACTIONS(1572), - [aux_sym__val_number_token3] = ACTIONS(1572), - [anon_sym_0b] = ACTIONS(1560), - [sym_filesize_unit] = ACTIONS(4165), - [sym_duration_unit] = ACTIONS(4167), - [anon_sym_0o] = ACTIONS(1560), - [anon_sym_0x] = ACTIONS(1560), - [sym_val_date] = ACTIONS(1572), - [anon_sym_DQUOTE] = ACTIONS(1572), - [sym__str_single_quotes] = ACTIONS(1572), - [sym__str_back_ticks] = ACTIONS(1572), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1572), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1572), - [anon_sym_err_GT] = ACTIONS(1560), - [anon_sym_out_GT] = ACTIONS(1560), - [anon_sym_e_GT] = ACTIONS(1560), - [anon_sym_o_GT] = ACTIONS(1560), - [anon_sym_err_PLUSout_GT] = ACTIONS(1560), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1560), - [anon_sym_o_PLUSe_GT] = ACTIONS(1560), - [anon_sym_e_PLUSo_GT] = ACTIONS(1560), - [anon_sym_err_GT_GT] = ACTIONS(1572), - [anon_sym_out_GT_GT] = ACTIONS(1572), - [anon_sym_e_GT_GT] = ACTIONS(1572), - [anon_sym_o_GT_GT] = ACTIONS(1572), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1572), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1572), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1572), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1572), - [aux_sym_unquoted_token1] = ACTIONS(1560), - [aux_sym_unquoted_token2] = ACTIONS(4169), - [anon_sym_POUND] = ACTIONS(247), - }, - [1149] = { - [sym__val_range] = STATE(7468), - [sym__value] = STATE(5948), - [sym_val_nothing] = STATE(4953), - [sym_val_bool] = STATE(5877), - [sym_val_variable] = STATE(4953), - [sym_val_number] = STATE(4953), - [sym__val_number_decimal] = STATE(5290), - [sym__val_number] = STATE(3465), - [sym_val_duration] = STATE(4953), - [sym_val_filesize] = STATE(4953), - [sym_val_binary] = STATE(4953), - [sym_val_string] = STATE(4953), - [sym__str_double_quotes] = STATE(2725), - [sym_val_interpolated] = STATE(4953), - [sym__inter_single_quotes] = STATE(4860), - [sym__inter_double_quotes] = STATE(4909), - [sym_val_list] = STATE(4953), - [sym_val_record] = STATE(4953), - [sym_val_table] = STATE(4953), - [sym_val_closure] = STATE(4953), - [sym_unquoted] = STATE(5953), - [sym__unquoted_anonymous_prefix] = STATE(7625), - [sym_comment] = STATE(1149), - [anon_sym_true] = ACTIONS(4137), - [anon_sym_false] = ACTIONS(4137), - [anon_sym_null] = ACTIONS(4139), - [aux_sym_cmd_identifier_token38] = ACTIONS(4141), - [aux_sym_cmd_identifier_token39] = ACTIONS(4141), - [aux_sym_cmd_identifier_token40] = ACTIONS(4141), - [anon_sym_LBRACK] = ACTIONS(4143), - [anon_sym_LPAREN] = ACTIONS(4111), - [anon_sym_DOLLAR] = ACTIONS(4003), - [anon_sym_LBRACE] = ACTIONS(4145), - [anon_sym_DOT_DOT] = ACTIONS(4117), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4119), - [anon_sym_DOT_DOT_LT] = ACTIONS(4119), - [aux_sym__val_number_decimal_token1] = ACTIONS(4147), - [aux_sym__val_number_decimal_token2] = ACTIONS(4149), - [aux_sym__val_number_decimal_token3] = ACTIONS(4151), - [aux_sym__val_number_decimal_token4] = ACTIONS(4153), - [aux_sym__val_number_token1] = ACTIONS(3421), - [aux_sym__val_number_token2] = ACTIONS(3421), - [aux_sym__val_number_token3] = ACTIONS(3421), - [anon_sym_0b] = ACTIONS(3517), - [anon_sym_0o] = ACTIONS(3519), - [anon_sym_0x] = ACTIONS(3519), - [sym_val_date] = ACTIONS(4155), - [anon_sym_DQUOTE] = ACTIONS(3429), - [sym__str_single_quotes] = ACTIONS(3431), - [sym__str_back_ticks] = ACTIONS(3431), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3527), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3529), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(4135), - [anon_sym_POUND] = ACTIONS(247), - }, - [1150] = { - [sym__val_range] = STATE(7468), - [sym__value] = STATE(6006), - [sym_val_nothing] = STATE(4953), - [sym_val_bool] = STATE(5877), - [sym_val_variable] = STATE(4953), - [sym_val_number] = STATE(4953), - [sym__val_number_decimal] = STATE(5212), - [sym__val_number] = STATE(5152), - [sym_val_duration] = STATE(4953), - [sym_val_filesize] = STATE(4953), - [sym_val_binary] = STATE(4953), - [sym_val_string] = STATE(4953), - [sym__str_double_quotes] = STATE(4744), - [sym_val_interpolated] = STATE(4953), - [sym__inter_single_quotes] = STATE(4860), - [sym__inter_double_quotes] = STATE(4909), - [sym_val_list] = STATE(4953), - [sym_val_record] = STATE(4953), - [sym_val_table] = STATE(4953), - [sym_val_closure] = STATE(4953), - [sym_unquoted] = STATE(6008), - [sym__unquoted_anonymous_prefix] = STATE(7625), - [sym_comment] = STATE(1150), - [anon_sym_true] = ACTIONS(4137), - [anon_sym_false] = ACTIONS(4137), - [anon_sym_null] = ACTIONS(4139), - [aux_sym_cmd_identifier_token38] = ACTIONS(4171), - [aux_sym_cmd_identifier_token39] = ACTIONS(4171), - [aux_sym_cmd_identifier_token40] = ACTIONS(4171), - [anon_sym_LBRACK] = ACTIONS(4109), - [anon_sym_LPAREN] = ACTIONS(4111), - [anon_sym_DOLLAR] = ACTIONS(4113), - [anon_sym_LBRACE] = ACTIONS(4115), - [anon_sym_DOT_DOT] = ACTIONS(4117), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4119), - [anon_sym_DOT_DOT_LT] = ACTIONS(4119), - [aux_sym__val_number_decimal_token1] = ACTIONS(4173), - [aux_sym__val_number_decimal_token2] = ACTIONS(4175), - [aux_sym__val_number_decimal_token3] = ACTIONS(4177), - [aux_sym__val_number_decimal_token4] = ACTIONS(4179), - [aux_sym__val_number_token1] = ACTIONS(3515), - [aux_sym__val_number_token2] = ACTIONS(3515), - [aux_sym__val_number_token3] = ACTIONS(3515), - [anon_sym_0b] = ACTIONS(3517), - [anon_sym_0o] = ACTIONS(3519), - [anon_sym_0x] = ACTIONS(3519), - [sym_val_date] = ACTIONS(4155), - [anon_sym_DQUOTE] = ACTIONS(4131), - [sym__str_single_quotes] = ACTIONS(4133), - [sym__str_back_ticks] = ACTIONS(4133), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3527), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3529), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(4135), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), }, - [1151] = { - [sym_comment] = STATE(1151), + [1191] = { + [sym_comment] = STATE(1191), [anon_sym_EQ] = ACTIONS(1054), [anon_sym_PLUS_EQ] = ACTIONS(1056), [anon_sym_DASH_EQ] = ACTIONS(1056), @@ -188242,6 +193972,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1056), [anon_sym_LBRACE] = ACTIONS(1056), [anon_sym_RBRACE] = ACTIONS(1056), + [anon_sym_QMARK2] = ACTIONS(1056), [aux_sym_expr_binary_token1] = ACTIONS(1056), [aux_sym_expr_binary_token2] = ACTIONS(1056), [aux_sym_expr_binary_token3] = ACTIONS(1056), @@ -188291,4894 +194022,1317 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1056), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1056), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1056), - [anon_sym_POUND] = ACTIONS(247), - }, - [1152] = { - [sym__val_range] = STATE(7468), - [sym__value] = STATE(5932), - [sym_val_nothing] = STATE(4953), - [sym_val_bool] = STATE(5877), - [sym_val_variable] = STATE(4953), - [sym_val_number] = STATE(4953), - [sym__val_number_decimal] = STATE(5290), - [sym__val_number] = STATE(3465), - [sym_val_duration] = STATE(4953), - [sym_val_filesize] = STATE(4953), - [sym_val_binary] = STATE(4953), - [sym_val_string] = STATE(4953), - [sym__str_double_quotes] = STATE(2725), - [sym_val_interpolated] = STATE(4953), - [sym__inter_single_quotes] = STATE(4860), - [sym__inter_double_quotes] = STATE(4909), - [sym_val_list] = STATE(4953), - [sym_val_record] = STATE(4953), - [sym_val_table] = STATE(4953), - [sym_val_closure] = STATE(4953), - [sym_unquoted] = STATE(5941), - [sym__unquoted_anonymous_prefix] = STATE(7625), - [sym_comment] = STATE(1152), - [anon_sym_true] = ACTIONS(4137), - [anon_sym_false] = ACTIONS(4137), - [anon_sym_null] = ACTIONS(4139), - [aux_sym_cmd_identifier_token38] = ACTIONS(4141), - [aux_sym_cmd_identifier_token39] = ACTIONS(4141), - [aux_sym_cmd_identifier_token40] = ACTIONS(4141), - [anon_sym_LBRACK] = ACTIONS(4143), - [anon_sym_LPAREN] = ACTIONS(4111), - [anon_sym_DOLLAR] = ACTIONS(4003), - [anon_sym_LBRACE] = ACTIONS(4145), - [anon_sym_DOT_DOT] = ACTIONS(4117), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4119), - [anon_sym_DOT_DOT_LT] = ACTIONS(4119), - [aux_sym__val_number_decimal_token1] = ACTIONS(4147), - [aux_sym__val_number_decimal_token2] = ACTIONS(4149), - [aux_sym__val_number_decimal_token3] = ACTIONS(4151), - [aux_sym__val_number_decimal_token4] = ACTIONS(4153), - [aux_sym__val_number_token1] = ACTIONS(3421), - [aux_sym__val_number_token2] = ACTIONS(3421), - [aux_sym__val_number_token3] = ACTIONS(3421), - [anon_sym_0b] = ACTIONS(3517), - [anon_sym_0o] = ACTIONS(3519), - [anon_sym_0x] = ACTIONS(3519), - [sym_val_date] = ACTIONS(4155), - [anon_sym_DQUOTE] = ACTIONS(3429), - [sym__str_single_quotes] = ACTIONS(3431), - [sym__str_back_ticks] = ACTIONS(3431), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3527), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3529), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(4135), - [anon_sym_POUND] = ACTIONS(247), - }, - [1153] = { - [sym__expr_parenthesized_immediate] = STATE(1936), - [sym__immediate_decimal] = STATE(1937), - [sym_val_variable] = STATE(1936), - [sym_comment] = STATE(1153), - [ts_builtin_sym_end] = ACTIONS(1588), - [anon_sym_true] = ACTIONS(1588), - [anon_sym_false] = ACTIONS(1588), - [anon_sym_null] = ACTIONS(1588), - [aux_sym_cmd_identifier_token38] = ACTIONS(1588), - [aux_sym_cmd_identifier_token39] = ACTIONS(1588), - [aux_sym_cmd_identifier_token40] = ACTIONS(1588), - [sym__newline] = ACTIONS(1588), - [anon_sym_SEMI] = ACTIONS(1588), - [anon_sym_PIPE] = ACTIONS(1588), - [anon_sym_err_GT_PIPE] = ACTIONS(1588), - [anon_sym_out_GT_PIPE] = ACTIONS(1588), - [anon_sym_e_GT_PIPE] = ACTIONS(1588), - [anon_sym_o_GT_PIPE] = ACTIONS(1588), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1588), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1588), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1588), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1588), - [anon_sym_LBRACK] = ACTIONS(1588), - [anon_sym_LPAREN] = ACTIONS(1586), - [anon_sym_DOLLAR] = ACTIONS(3923), - [anon_sym_DASH_DASH] = ACTIONS(1588), - [anon_sym_DASH] = ACTIONS(1586), - [anon_sym_LBRACE] = ACTIONS(1588), - [anon_sym_DOT_DOT] = ACTIONS(1586), - [anon_sym_LPAREN2] = ACTIONS(3925), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1588), - [anon_sym_DOT_DOT_LT] = ACTIONS(1588), - [aux_sym__immediate_decimal_token1] = ACTIONS(4095), - [aux_sym__immediate_decimal_token3] = ACTIONS(4097), - [aux_sym__immediate_decimal_token4] = ACTIONS(4099), - [aux_sym__immediate_decimal_token5] = ACTIONS(4101), - [aux_sym__val_number_decimal_token1] = ACTIONS(1586), - [aux_sym__val_number_decimal_token2] = ACTIONS(1586), - [aux_sym__val_number_decimal_token3] = ACTIONS(1586), - [aux_sym__val_number_decimal_token4] = ACTIONS(1586), - [aux_sym__val_number_token1] = ACTIONS(1588), - [aux_sym__val_number_token2] = ACTIONS(1588), - [aux_sym__val_number_token3] = ACTIONS(1588), - [anon_sym_0b] = ACTIONS(1586), - [anon_sym_0o] = ACTIONS(1586), - [anon_sym_0x] = ACTIONS(1586), - [sym_val_date] = ACTIONS(1588), - [anon_sym_DQUOTE] = ACTIONS(1588), - [sym__str_single_quotes] = ACTIONS(1588), - [sym__str_back_ticks] = ACTIONS(1588), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1588), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1588), - [anon_sym_err_GT] = ACTIONS(1586), - [anon_sym_out_GT] = ACTIONS(1586), - [anon_sym_e_GT] = ACTIONS(1586), - [anon_sym_o_GT] = ACTIONS(1586), - [anon_sym_err_PLUSout_GT] = ACTIONS(1586), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1586), - [anon_sym_o_PLUSe_GT] = ACTIONS(1586), - [anon_sym_e_PLUSo_GT] = ACTIONS(1586), - [anon_sym_err_GT_GT] = ACTIONS(1588), - [anon_sym_out_GT_GT] = ACTIONS(1588), - [anon_sym_e_GT_GT] = ACTIONS(1588), - [anon_sym_o_GT_GT] = ACTIONS(1588), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1588), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1588), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1588), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1588), - [aux_sym_unquoted_token1] = ACTIONS(1586), - [anon_sym_POUND] = ACTIONS(247), - }, - [1154] = { - [sym__expr_parenthesized_immediate] = STATE(1938), - [sym__immediate_decimal] = STATE(1940), - [sym_val_variable] = STATE(1938), - [sym_comment] = STATE(1154), - [ts_builtin_sym_end] = ACTIONS(1584), - [anon_sym_true] = ACTIONS(1584), - [anon_sym_false] = ACTIONS(1584), - [anon_sym_null] = ACTIONS(1584), - [aux_sym_cmd_identifier_token38] = ACTIONS(1584), - [aux_sym_cmd_identifier_token39] = ACTIONS(1584), - [aux_sym_cmd_identifier_token40] = ACTIONS(1584), - [sym__newline] = ACTIONS(1584), - [anon_sym_SEMI] = ACTIONS(1584), - [anon_sym_PIPE] = ACTIONS(1584), - [anon_sym_err_GT_PIPE] = ACTIONS(1584), - [anon_sym_out_GT_PIPE] = ACTIONS(1584), - [anon_sym_e_GT_PIPE] = ACTIONS(1584), - [anon_sym_o_GT_PIPE] = ACTIONS(1584), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1584), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1584), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1584), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(1576), - [anon_sym_DOLLAR] = ACTIONS(3923), - [anon_sym_DASH_DASH] = ACTIONS(1584), - [anon_sym_DASH] = ACTIONS(1576), - [anon_sym_LBRACE] = ACTIONS(1584), - [anon_sym_DOT_DOT] = ACTIONS(1576), - [anon_sym_LPAREN2] = ACTIONS(3925), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1584), - [anon_sym_DOT_DOT_LT] = ACTIONS(1584), - [aux_sym__immediate_decimal_token1] = ACTIONS(4095), - [aux_sym__immediate_decimal_token3] = ACTIONS(4097), - [aux_sym__immediate_decimal_token4] = ACTIONS(4099), - [aux_sym__immediate_decimal_token5] = ACTIONS(4101), - [aux_sym__val_number_decimal_token1] = ACTIONS(1576), - [aux_sym__val_number_decimal_token2] = ACTIONS(1576), - [aux_sym__val_number_decimal_token3] = ACTIONS(1576), - [aux_sym__val_number_decimal_token4] = ACTIONS(1576), - [aux_sym__val_number_token1] = ACTIONS(1584), - [aux_sym__val_number_token2] = ACTIONS(1584), - [aux_sym__val_number_token3] = ACTIONS(1584), - [anon_sym_0b] = ACTIONS(1576), - [anon_sym_0o] = ACTIONS(1576), - [anon_sym_0x] = ACTIONS(1576), - [sym_val_date] = ACTIONS(1584), - [anon_sym_DQUOTE] = ACTIONS(1584), - [sym__str_single_quotes] = ACTIONS(1584), - [sym__str_back_ticks] = ACTIONS(1584), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1584), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1584), - [anon_sym_err_GT] = ACTIONS(1576), - [anon_sym_out_GT] = ACTIONS(1576), - [anon_sym_e_GT] = ACTIONS(1576), - [anon_sym_o_GT] = ACTIONS(1576), - [anon_sym_err_PLUSout_GT] = ACTIONS(1576), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1576), - [anon_sym_o_PLUSe_GT] = ACTIONS(1576), - [anon_sym_e_PLUSo_GT] = ACTIONS(1576), - [anon_sym_err_GT_GT] = ACTIONS(1584), - [anon_sym_out_GT_GT] = ACTIONS(1584), - [anon_sym_e_GT_GT] = ACTIONS(1584), - [anon_sym_o_GT_GT] = ACTIONS(1584), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1584), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1584), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1584), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1584), - [aux_sym_unquoted_token1] = ACTIONS(1576), - [anon_sym_POUND] = ACTIONS(247), - }, - [1155] = { - [sym__val_range] = STATE(7468), - [sym__value] = STATE(5935), - [sym_val_nothing] = STATE(4953), - [sym_val_bool] = STATE(5877), - [sym_val_variable] = STATE(4953), - [sym_val_number] = STATE(4953), - [sym__val_number_decimal] = STATE(5212), - [sym__val_number] = STATE(5152), - [sym_val_duration] = STATE(4953), - [sym_val_filesize] = STATE(4953), - [sym_val_binary] = STATE(4953), - [sym_val_string] = STATE(4953), - [sym__str_double_quotes] = STATE(4744), - [sym_val_interpolated] = STATE(4953), - [sym__inter_single_quotes] = STATE(4860), - [sym__inter_double_quotes] = STATE(4909), - [sym_val_list] = STATE(4953), - [sym_val_record] = STATE(4953), - [sym_val_table] = STATE(4953), - [sym_val_closure] = STATE(4953), - [sym_unquoted] = STATE(5939), - [sym__unquoted_anonymous_prefix] = STATE(7625), - [sym_comment] = STATE(1155), - [anon_sym_true] = ACTIONS(4137), - [anon_sym_false] = ACTIONS(4137), - [anon_sym_null] = ACTIONS(4139), - [aux_sym_cmd_identifier_token38] = ACTIONS(4171), - [aux_sym_cmd_identifier_token39] = ACTIONS(4171), - [aux_sym_cmd_identifier_token40] = ACTIONS(4171), - [anon_sym_LBRACK] = ACTIONS(4109), - [anon_sym_LPAREN] = ACTIONS(4111), - [anon_sym_DOLLAR] = ACTIONS(4113), - [anon_sym_LBRACE] = ACTIONS(4115), - [anon_sym_DOT_DOT] = ACTIONS(4117), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4119), - [anon_sym_DOT_DOT_LT] = ACTIONS(4119), - [aux_sym__val_number_decimal_token1] = ACTIONS(4173), - [aux_sym__val_number_decimal_token2] = ACTIONS(4175), - [aux_sym__val_number_decimal_token3] = ACTIONS(4177), - [aux_sym__val_number_decimal_token4] = ACTIONS(4179), - [aux_sym__val_number_token1] = ACTIONS(3515), - [aux_sym__val_number_token2] = ACTIONS(3515), - [aux_sym__val_number_token3] = ACTIONS(3515), - [anon_sym_0b] = ACTIONS(3517), - [anon_sym_0o] = ACTIONS(3519), - [anon_sym_0x] = ACTIONS(3519), - [sym_val_date] = ACTIONS(4155), - [anon_sym_DQUOTE] = ACTIONS(4131), - [sym__str_single_quotes] = ACTIONS(4133), - [sym__str_back_ticks] = ACTIONS(4133), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3527), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3529), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(4135), - [anon_sym_POUND] = ACTIONS(247), - }, - [1156] = { - [sym__val_range] = STATE(7468), - [sym__value] = STATE(5948), - [sym_val_nothing] = STATE(4953), - [sym_val_bool] = STATE(5877), - [sym_val_variable] = STATE(4953), - [sym_val_number] = STATE(4953), - [sym__val_number_decimal] = STATE(5212), - [sym__val_number] = STATE(5152), - [sym_val_duration] = STATE(4953), - [sym_val_filesize] = STATE(4953), - [sym_val_binary] = STATE(4953), - [sym_val_string] = STATE(4953), - [sym__str_double_quotes] = STATE(4744), - [sym_val_interpolated] = STATE(4953), - [sym__inter_single_quotes] = STATE(4860), - [sym__inter_double_quotes] = STATE(4909), - [sym_val_list] = STATE(4953), - [sym_val_record] = STATE(4953), - [sym_val_table] = STATE(4953), - [sym_val_closure] = STATE(4953), - [sym_unquoted] = STATE(5953), - [sym__unquoted_anonymous_prefix] = STATE(7625), - [sym_comment] = STATE(1156), - [anon_sym_true] = ACTIONS(4137), - [anon_sym_false] = ACTIONS(4137), - [anon_sym_null] = ACTIONS(4139), - [aux_sym_cmd_identifier_token38] = ACTIONS(4171), - [aux_sym_cmd_identifier_token39] = ACTIONS(4171), - [aux_sym_cmd_identifier_token40] = ACTIONS(4171), - [anon_sym_LBRACK] = ACTIONS(4109), - [anon_sym_LPAREN] = ACTIONS(4111), - [anon_sym_DOLLAR] = ACTIONS(4113), - [anon_sym_LBRACE] = ACTIONS(4115), - [anon_sym_DOT_DOT] = ACTIONS(4117), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4119), - [anon_sym_DOT_DOT_LT] = ACTIONS(4119), - [aux_sym__val_number_decimal_token1] = ACTIONS(4173), - [aux_sym__val_number_decimal_token2] = ACTIONS(4175), - [aux_sym__val_number_decimal_token3] = ACTIONS(4177), - [aux_sym__val_number_decimal_token4] = ACTIONS(4179), - [aux_sym__val_number_token1] = ACTIONS(3515), - [aux_sym__val_number_token2] = ACTIONS(3515), - [aux_sym__val_number_token3] = ACTIONS(3515), - [anon_sym_0b] = ACTIONS(3517), - [anon_sym_0o] = ACTIONS(3519), - [anon_sym_0x] = ACTIONS(3519), - [sym_val_date] = ACTIONS(4155), - [anon_sym_DQUOTE] = ACTIONS(4131), - [sym__str_single_quotes] = ACTIONS(4133), - [sym__str_back_ticks] = ACTIONS(4133), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3527), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3529), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(4135), - [anon_sym_POUND] = ACTIONS(247), - }, - [1157] = { - [sym__val_range] = STATE(7629), - [sym__value] = STATE(5389), - [sym_val_nothing] = STATE(4042), - [sym_val_bool] = STATE(7351), - [sym_val_variable] = STATE(4042), - [sym_val_number] = STATE(4042), - [sym__val_number_decimal] = STATE(5530), - [sym__val_number] = STATE(3465), - [sym_val_duration] = STATE(4042), - [sym_val_filesize] = STATE(4042), - [sym_val_binary] = STATE(4042), - [sym_val_string] = STATE(4042), - [sym__str_double_quotes] = STATE(2725), - [sym_val_interpolated] = STATE(4042), - [sym__inter_single_quotes] = STATE(4011), - [sym__inter_double_quotes] = STATE(4052), - [sym_val_list] = STATE(4042), - [sym_val_record] = STATE(4042), - [sym_val_table] = STATE(4042), - [sym_val_closure] = STATE(4042), - [sym_unquoted] = STATE(5440), - [sym__unquoted_anonymous_prefix] = STATE(7720), - [sym_comment] = STATE(1157), - [anon_sym_true] = ACTIONS(4181), - [anon_sym_false] = ACTIONS(4181), - [anon_sym_null] = ACTIONS(4183), - [aux_sym_cmd_identifier_token38] = ACTIONS(4185), - [aux_sym_cmd_identifier_token39] = ACTIONS(4185), - [aux_sym_cmd_identifier_token40] = ACTIONS(4185), - [anon_sym_LBRACK] = ACTIONS(3397), - [anon_sym_LPAREN] = ACTIONS(4001), - [anon_sym_DOLLAR] = ACTIONS(4003), - [anon_sym_LBRACE] = ACTIONS(3405), - [anon_sym_DOT_DOT] = ACTIONS(4005), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4007), - [anon_sym_DOT_DOT_LT] = ACTIONS(4007), - [aux_sym__val_number_decimal_token1] = ACTIONS(4187), - [aux_sym__val_number_decimal_token2] = ACTIONS(4189), - [aux_sym__val_number_decimal_token3] = ACTIONS(4191), - [aux_sym__val_number_decimal_token4] = ACTIONS(4193), - [aux_sym__val_number_token1] = ACTIONS(3421), - [aux_sym__val_number_token2] = ACTIONS(3421), - [aux_sym__val_number_token3] = ACTIONS(3421), - [anon_sym_0b] = ACTIONS(3423), - [anon_sym_0o] = ACTIONS(3425), - [anon_sym_0x] = ACTIONS(3425), - [sym_val_date] = ACTIONS(4195), - [anon_sym_DQUOTE] = ACTIONS(3429), - [sym__str_single_quotes] = ACTIONS(3431), - [sym__str_back_ticks] = ACTIONS(3431), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3433), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3435), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3437), - [anon_sym_POUND] = ACTIONS(247), - }, - [1158] = { - [sym__val_range] = STATE(7468), - [sym__value] = STATE(5932), - [sym_val_nothing] = STATE(4953), - [sym_val_bool] = STATE(5877), - [sym_val_variable] = STATE(4953), - [sym_val_number] = STATE(4953), - [sym__val_number_decimal] = STATE(5212), - [sym__val_number] = STATE(5152), - [sym_val_duration] = STATE(4953), - [sym_val_filesize] = STATE(4953), - [sym_val_binary] = STATE(4953), - [sym_val_string] = STATE(4953), - [sym__str_double_quotes] = STATE(4744), - [sym_val_interpolated] = STATE(4953), - [sym__inter_single_quotes] = STATE(4860), - [sym__inter_double_quotes] = STATE(4909), - [sym_val_list] = STATE(4953), - [sym_val_record] = STATE(4953), - [sym_val_table] = STATE(4953), - [sym_val_closure] = STATE(4953), - [sym_unquoted] = STATE(5941), - [sym__unquoted_anonymous_prefix] = STATE(7625), - [sym_comment] = STATE(1158), - [anon_sym_true] = ACTIONS(4137), - [anon_sym_false] = ACTIONS(4137), - [anon_sym_null] = ACTIONS(4139), - [aux_sym_cmd_identifier_token38] = ACTIONS(4171), - [aux_sym_cmd_identifier_token39] = ACTIONS(4171), - [aux_sym_cmd_identifier_token40] = ACTIONS(4171), - [anon_sym_LBRACK] = ACTIONS(4109), - [anon_sym_LPAREN] = ACTIONS(4111), - [anon_sym_DOLLAR] = ACTIONS(4113), - [anon_sym_LBRACE] = ACTIONS(4115), - [anon_sym_DOT_DOT] = ACTIONS(4117), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4119), - [anon_sym_DOT_DOT_LT] = ACTIONS(4119), - [aux_sym__val_number_decimal_token1] = ACTIONS(4173), - [aux_sym__val_number_decimal_token2] = ACTIONS(4175), - [aux_sym__val_number_decimal_token3] = ACTIONS(4177), - [aux_sym__val_number_decimal_token4] = ACTIONS(4179), - [aux_sym__val_number_token1] = ACTIONS(3515), - [aux_sym__val_number_token2] = ACTIONS(3515), - [aux_sym__val_number_token3] = ACTIONS(3515), - [anon_sym_0b] = ACTIONS(3517), - [anon_sym_0o] = ACTIONS(3519), - [anon_sym_0x] = ACTIONS(3519), - [sym_val_date] = ACTIONS(4155), - [anon_sym_DQUOTE] = ACTIONS(4131), - [sym__str_single_quotes] = ACTIONS(4133), - [sym__str_back_ticks] = ACTIONS(4133), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3527), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3529), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(4135), - [anon_sym_POUND] = ACTIONS(247), - }, - [1159] = { - [sym__val_range] = STATE(7629), - [sym__value] = STATE(5495), - [sym_val_nothing] = STATE(4042), - [sym_val_bool] = STATE(7351), - [sym_val_variable] = STATE(4042), - [sym_val_number] = STATE(4042), - [sym__val_number_decimal] = STATE(5530), - [sym__val_number] = STATE(3465), - [sym_val_duration] = STATE(4042), - [sym_val_filesize] = STATE(4042), - [sym_val_binary] = STATE(4042), - [sym_val_string] = STATE(4042), - [sym__str_double_quotes] = STATE(2725), - [sym_val_interpolated] = STATE(4042), - [sym__inter_single_quotes] = STATE(4011), - [sym__inter_double_quotes] = STATE(4052), - [sym_val_list] = STATE(4042), - [sym_val_record] = STATE(4042), - [sym_val_table] = STATE(4042), - [sym_val_closure] = STATE(4042), - [sym_unquoted] = STATE(5496), - [sym__unquoted_anonymous_prefix] = STATE(7720), - [sym_comment] = STATE(1159), - [anon_sym_true] = ACTIONS(4181), - [anon_sym_false] = ACTIONS(4181), - [anon_sym_null] = ACTIONS(4183), - [aux_sym_cmd_identifier_token38] = ACTIONS(4185), - [aux_sym_cmd_identifier_token39] = ACTIONS(4185), - [aux_sym_cmd_identifier_token40] = ACTIONS(4185), - [anon_sym_LBRACK] = ACTIONS(3397), - [anon_sym_LPAREN] = ACTIONS(4001), - [anon_sym_DOLLAR] = ACTIONS(4003), - [anon_sym_LBRACE] = ACTIONS(3405), - [anon_sym_DOT_DOT] = ACTIONS(4005), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4007), - [anon_sym_DOT_DOT_LT] = ACTIONS(4007), - [aux_sym__val_number_decimal_token1] = ACTIONS(4187), - [aux_sym__val_number_decimal_token2] = ACTIONS(4189), - [aux_sym__val_number_decimal_token3] = ACTIONS(4191), - [aux_sym__val_number_decimal_token4] = ACTIONS(4193), - [aux_sym__val_number_token1] = ACTIONS(3421), - [aux_sym__val_number_token2] = ACTIONS(3421), - [aux_sym__val_number_token3] = ACTIONS(3421), - [anon_sym_0b] = ACTIONS(3423), - [anon_sym_0o] = ACTIONS(3425), - [anon_sym_0x] = ACTIONS(3425), - [sym_val_date] = ACTIONS(4195), - [anon_sym_DQUOTE] = ACTIONS(3429), - [sym__str_single_quotes] = ACTIONS(3431), - [sym__str_back_ticks] = ACTIONS(3431), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3433), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3435), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3437), - [anon_sym_POUND] = ACTIONS(247), - }, - [1160] = { - [sym__val_range] = STATE(7629), - [sym__value] = STATE(5485), - [sym_val_nothing] = STATE(4042), - [sym_val_bool] = STATE(7351), - [sym_val_variable] = STATE(4042), - [sym_val_number] = STATE(4042), - [sym__val_number_decimal] = STATE(5530), - [sym__val_number] = STATE(3465), - [sym_val_duration] = STATE(4042), - [sym_val_filesize] = STATE(4042), - [sym_val_binary] = STATE(4042), - [sym_val_string] = STATE(4042), - [sym__str_double_quotes] = STATE(2725), - [sym_val_interpolated] = STATE(4042), - [sym__inter_single_quotes] = STATE(4011), - [sym__inter_double_quotes] = STATE(4052), - [sym_val_list] = STATE(4042), - [sym_val_record] = STATE(4042), - [sym_val_table] = STATE(4042), - [sym_val_closure] = STATE(4042), - [sym_unquoted] = STATE(5487), - [sym__unquoted_anonymous_prefix] = STATE(7720), - [sym_comment] = STATE(1160), - [anon_sym_true] = ACTIONS(4181), - [anon_sym_false] = ACTIONS(4181), - [anon_sym_null] = ACTIONS(4183), - [aux_sym_cmd_identifier_token38] = ACTIONS(4185), - [aux_sym_cmd_identifier_token39] = ACTIONS(4185), - [aux_sym_cmd_identifier_token40] = ACTIONS(4185), - [anon_sym_LBRACK] = ACTIONS(3397), - [anon_sym_LPAREN] = ACTIONS(4001), - [anon_sym_DOLLAR] = ACTIONS(4003), - [anon_sym_LBRACE] = ACTIONS(3405), - [anon_sym_DOT_DOT] = ACTIONS(4005), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4007), - [anon_sym_DOT_DOT_LT] = ACTIONS(4007), - [aux_sym__val_number_decimal_token1] = ACTIONS(4187), - [aux_sym__val_number_decimal_token2] = ACTIONS(4189), - [aux_sym__val_number_decimal_token3] = ACTIONS(4191), - [aux_sym__val_number_decimal_token4] = ACTIONS(4193), - [aux_sym__val_number_token1] = ACTIONS(3421), - [aux_sym__val_number_token2] = ACTIONS(3421), - [aux_sym__val_number_token3] = ACTIONS(3421), - [anon_sym_0b] = ACTIONS(3423), - [anon_sym_0o] = ACTIONS(3425), - [anon_sym_0x] = ACTIONS(3425), - [sym_val_date] = ACTIONS(4195), - [anon_sym_DQUOTE] = ACTIONS(3429), - [sym__str_single_quotes] = ACTIONS(3431), - [sym__str_back_ticks] = ACTIONS(3431), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3433), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3435), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3437), - [anon_sym_POUND] = ACTIONS(247), - }, - [1161] = { - [sym__val_range] = STATE(7463), - [sym__value] = STATE(1873), - [sym_val_nothing] = STATE(1887), - [sym_val_bool] = STATE(1573), - [sym_val_variable] = STATE(1887), - [sym_val_number] = STATE(1887), - [sym__val_number_decimal] = STATE(1250), - [sym__val_number] = STATE(1800), - [sym_val_duration] = STATE(1887), - [sym_val_filesize] = STATE(1887), - [sym_val_binary] = STATE(1887), - [sym_val_string] = STATE(1887), - [sym__str_double_quotes] = STATE(1944), - [sym_val_interpolated] = STATE(1887), - [sym__inter_single_quotes] = STATE(1945), - [sym__inter_double_quotes] = STATE(1946), - [sym_val_list] = STATE(1887), - [sym_val_record] = STATE(1887), - [sym_val_table] = STATE(1887), - [sym_val_closure] = STATE(1887), - [sym_unquoted] = STATE(1880), - [sym__unquoted_anonymous_prefix] = STATE(7544), - [sym_comment] = STATE(1161), - [anon_sym_true] = ACTIONS(4197), - [anon_sym_false] = ACTIONS(4197), - [anon_sym_null] = ACTIONS(4199), - [aux_sym_cmd_identifier_token38] = ACTIONS(4201), - [aux_sym_cmd_identifier_token39] = ACTIONS(4201), - [aux_sym_cmd_identifier_token40] = ACTIONS(4201), - [anon_sym_LBRACK] = ACTIONS(2830), - [anon_sym_LPAREN] = ACTIONS(4203), - [anon_sym_DOLLAR] = ACTIONS(3923), - [anon_sym_LBRACE] = ACTIONS(2840), - [anon_sym_DOT_DOT] = ACTIONS(4205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4207), - [anon_sym_DOT_DOT_LT] = ACTIONS(4207), - [aux_sym__val_number_decimal_token1] = ACTIONS(4209), - [aux_sym__val_number_decimal_token2] = ACTIONS(4211), - [aux_sym__val_number_decimal_token3] = ACTIONS(4213), - [aux_sym__val_number_decimal_token4] = ACTIONS(4215), - [aux_sym__val_number_token1] = ACTIONS(2854), - [aux_sym__val_number_token2] = ACTIONS(2854), - [aux_sym__val_number_token3] = ACTIONS(2854), - [anon_sym_0b] = ACTIONS(2856), - [anon_sym_0o] = ACTIONS(2858), - [anon_sym_0x] = ACTIONS(2858), - [sym_val_date] = ACTIONS(4217), - [anon_sym_DQUOTE] = ACTIONS(2862), - [sym__str_single_quotes] = ACTIONS(2864), - [sym__str_back_ticks] = ACTIONS(2864), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2866), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2868), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(4219), - [anon_sym_POUND] = ACTIONS(247), - }, - [1162] = { - [sym__val_range] = STATE(7629), - [sym__value] = STATE(5522), - [sym_val_nothing] = STATE(4042), - [sym_val_bool] = STATE(7351), - [sym_val_variable] = STATE(4042), - [sym_val_number] = STATE(4042), - [sym__val_number_decimal] = STATE(5530), - [sym__val_number] = STATE(3465), - [sym_val_duration] = STATE(4042), - [sym_val_filesize] = STATE(4042), - [sym_val_binary] = STATE(4042), - [sym_val_string] = STATE(4042), - [sym__str_double_quotes] = STATE(2725), - [sym_val_interpolated] = STATE(4042), - [sym__inter_single_quotes] = STATE(4011), - [sym__inter_double_quotes] = STATE(4052), - [sym_val_list] = STATE(4042), - [sym_val_record] = STATE(4042), - [sym_val_table] = STATE(4042), - [sym_val_closure] = STATE(4042), - [sym_unquoted] = STATE(5390), - [sym__unquoted_anonymous_prefix] = STATE(7720), - [sym_comment] = STATE(1162), - [anon_sym_true] = ACTIONS(4181), - [anon_sym_false] = ACTIONS(4181), - [anon_sym_null] = ACTIONS(4183), - [aux_sym_cmd_identifier_token38] = ACTIONS(4185), - [aux_sym_cmd_identifier_token39] = ACTIONS(4185), - [aux_sym_cmd_identifier_token40] = ACTIONS(4185), - [anon_sym_LBRACK] = ACTIONS(3397), - [anon_sym_LPAREN] = ACTIONS(4001), - [anon_sym_DOLLAR] = ACTIONS(4003), - [anon_sym_LBRACE] = ACTIONS(3405), - [anon_sym_DOT_DOT] = ACTIONS(4005), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4007), - [anon_sym_DOT_DOT_LT] = ACTIONS(4007), - [aux_sym__val_number_decimal_token1] = ACTIONS(4187), - [aux_sym__val_number_decimal_token2] = ACTIONS(4189), - [aux_sym__val_number_decimal_token3] = ACTIONS(4191), - [aux_sym__val_number_decimal_token4] = ACTIONS(4193), - [aux_sym__val_number_token1] = ACTIONS(3421), - [aux_sym__val_number_token2] = ACTIONS(3421), - [aux_sym__val_number_token3] = ACTIONS(3421), - [anon_sym_0b] = ACTIONS(3423), - [anon_sym_0o] = ACTIONS(3425), - [anon_sym_0x] = ACTIONS(3425), - [sym_val_date] = ACTIONS(4195), - [anon_sym_DQUOTE] = ACTIONS(3429), - [sym__str_single_quotes] = ACTIONS(3431), - [sym__str_back_ticks] = ACTIONS(3431), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3433), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3435), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3437), - [anon_sym_POUND] = ACTIONS(247), - }, - [1163] = { - [sym__val_range] = STATE(7463), - [sym__value] = STATE(1951), - [sym_val_nothing] = STATE(1887), - [sym_val_bool] = STATE(1573), - [sym_val_variable] = STATE(1887), - [sym_val_number] = STATE(1887), - [sym__val_number_decimal] = STATE(1250), - [sym__val_number] = STATE(1800), - [sym_val_duration] = STATE(1887), - [sym_val_filesize] = STATE(1887), - [sym_val_binary] = STATE(1887), - [sym_val_string] = STATE(1887), - [sym__str_double_quotes] = STATE(1944), - [sym_val_interpolated] = STATE(1887), - [sym__inter_single_quotes] = STATE(1945), - [sym__inter_double_quotes] = STATE(1946), - [sym_val_list] = STATE(1887), - [sym_val_record] = STATE(1887), - [sym_val_table] = STATE(1887), - [sym_val_closure] = STATE(1887), - [sym_unquoted] = STATE(1810), - [sym__unquoted_anonymous_prefix] = STATE(7544), - [sym_comment] = STATE(1163), - [anon_sym_true] = ACTIONS(4197), - [anon_sym_false] = ACTIONS(4197), - [anon_sym_null] = ACTIONS(4199), - [aux_sym_cmd_identifier_token38] = ACTIONS(4201), - [aux_sym_cmd_identifier_token39] = ACTIONS(4201), - [aux_sym_cmd_identifier_token40] = ACTIONS(4201), - [anon_sym_LBRACK] = ACTIONS(2830), - [anon_sym_LPAREN] = ACTIONS(4203), - [anon_sym_DOLLAR] = ACTIONS(3923), - [anon_sym_LBRACE] = ACTIONS(2840), - [anon_sym_DOT_DOT] = ACTIONS(4205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4207), - [anon_sym_DOT_DOT_LT] = ACTIONS(4207), - [aux_sym__val_number_decimal_token1] = ACTIONS(4209), - [aux_sym__val_number_decimal_token2] = ACTIONS(4211), - [aux_sym__val_number_decimal_token3] = ACTIONS(4213), - [aux_sym__val_number_decimal_token4] = ACTIONS(4215), - [aux_sym__val_number_token1] = ACTIONS(2854), - [aux_sym__val_number_token2] = ACTIONS(2854), - [aux_sym__val_number_token3] = ACTIONS(2854), - [anon_sym_0b] = ACTIONS(2856), - [anon_sym_0o] = ACTIONS(2858), - [anon_sym_0x] = ACTIONS(2858), - [sym_val_date] = ACTIONS(4217), - [anon_sym_DQUOTE] = ACTIONS(2862), - [sym__str_single_quotes] = ACTIONS(2864), - [sym__str_back_ticks] = ACTIONS(2864), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2866), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2868), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(4219), - [anon_sym_POUND] = ACTIONS(247), - }, - [1164] = { - [sym__val_range] = STATE(7463), - [sym__value] = STATE(1932), - [sym_val_nothing] = STATE(1887), - [sym_val_bool] = STATE(1573), - [sym_val_variable] = STATE(1887), - [sym_val_number] = STATE(1887), - [sym__val_number_decimal] = STATE(1250), - [sym__val_number] = STATE(1800), - [sym_val_duration] = STATE(1887), - [sym_val_filesize] = STATE(1887), - [sym_val_binary] = STATE(1887), - [sym_val_string] = STATE(1887), - [sym__str_double_quotes] = STATE(1944), - [sym_val_interpolated] = STATE(1887), - [sym__inter_single_quotes] = STATE(1945), - [sym__inter_double_quotes] = STATE(1946), - [sym_val_list] = STATE(1887), - [sym_val_record] = STATE(1887), - [sym_val_table] = STATE(1887), - [sym_val_closure] = STATE(1887), - [sym_unquoted] = STATE(1939), - [sym__unquoted_anonymous_prefix] = STATE(7544), - [sym_comment] = STATE(1164), - [anon_sym_true] = ACTIONS(4197), - [anon_sym_false] = ACTIONS(4197), - [anon_sym_null] = ACTIONS(4199), - [aux_sym_cmd_identifier_token38] = ACTIONS(4201), - [aux_sym_cmd_identifier_token39] = ACTIONS(4201), - [aux_sym_cmd_identifier_token40] = ACTIONS(4201), - [anon_sym_LBRACK] = ACTIONS(2830), - [anon_sym_LPAREN] = ACTIONS(4203), - [anon_sym_DOLLAR] = ACTIONS(3923), - [anon_sym_LBRACE] = ACTIONS(2840), - [anon_sym_DOT_DOT] = ACTIONS(4205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4207), - [anon_sym_DOT_DOT_LT] = ACTIONS(4207), - [aux_sym__val_number_decimal_token1] = ACTIONS(4209), - [aux_sym__val_number_decimal_token2] = ACTIONS(4211), - [aux_sym__val_number_decimal_token3] = ACTIONS(4213), - [aux_sym__val_number_decimal_token4] = ACTIONS(4215), - [aux_sym__val_number_token1] = ACTIONS(2854), - [aux_sym__val_number_token2] = ACTIONS(2854), - [aux_sym__val_number_token3] = ACTIONS(2854), - [anon_sym_0b] = ACTIONS(2856), - [anon_sym_0o] = ACTIONS(2858), - [anon_sym_0x] = ACTIONS(2858), - [sym_val_date] = ACTIONS(4217), - [anon_sym_DQUOTE] = ACTIONS(2862), - [sym__str_single_quotes] = ACTIONS(2864), - [sym__str_back_ticks] = ACTIONS(2864), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2866), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2868), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(4219), - [anon_sym_POUND] = ACTIONS(247), - }, - [1165] = { - [sym__val_range] = STATE(7468), - [sym__value] = STATE(6006), - [sym_val_nothing] = STATE(4953), - [sym_val_bool] = STATE(6545), - [sym_val_variable] = STATE(4953), - [sym_val_number] = STATE(4953), - [sym__val_number_decimal] = STATE(5303), - [sym__val_number] = STATE(5152), - [sym_val_duration] = STATE(4953), - [sym_val_filesize] = STATE(4953), - [sym_val_binary] = STATE(4953), - [sym_val_string] = STATE(4953), - [sym__str_double_quotes] = STATE(4744), - [sym_val_interpolated] = STATE(4953), - [sym__inter_single_quotes] = STATE(4860), - [sym__inter_double_quotes] = STATE(4909), - [sym_val_list] = STATE(4953), - [sym_val_record] = STATE(4953), - [sym_val_table] = STATE(4953), - [sym_val_closure] = STATE(4953), - [sym_unquoted] = STATE(6008), - [sym__unquoted_anonymous_prefix] = STATE(7625), - [sym_comment] = STATE(1165), - [anon_sym_true] = ACTIONS(4221), - [anon_sym_false] = ACTIONS(4221), - [anon_sym_null] = ACTIONS(4223), - [aux_sym_cmd_identifier_token38] = ACTIONS(4225), - [aux_sym_cmd_identifier_token39] = ACTIONS(4225), - [aux_sym_cmd_identifier_token40] = ACTIONS(4225), - [anon_sym_LBRACK] = ACTIONS(4109), - [anon_sym_LPAREN] = ACTIONS(4111), - [anon_sym_DOLLAR] = ACTIONS(4113), - [anon_sym_LBRACE] = ACTIONS(4115), - [anon_sym_DOT_DOT] = ACTIONS(4117), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4119), - [anon_sym_DOT_DOT_LT] = ACTIONS(4119), - [aux_sym__val_number_decimal_token1] = ACTIONS(4227), - [aux_sym__val_number_decimal_token2] = ACTIONS(4229), - [aux_sym__val_number_decimal_token3] = ACTIONS(4231), - [aux_sym__val_number_decimal_token4] = ACTIONS(4233), - [aux_sym__val_number_token1] = ACTIONS(3515), - [aux_sym__val_number_token2] = ACTIONS(3515), - [aux_sym__val_number_token3] = ACTIONS(3515), - [anon_sym_0b] = ACTIONS(3517), - [anon_sym_0o] = ACTIONS(3519), - [anon_sym_0x] = ACTIONS(3519), - [sym_val_date] = ACTIONS(4235), - [anon_sym_DQUOTE] = ACTIONS(4131), - [sym__str_single_quotes] = ACTIONS(4133), - [sym__str_back_ticks] = ACTIONS(4133), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3527), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3529), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(4135), - [anon_sym_POUND] = ACTIONS(247), - }, - [1166] = { - [sym__val_range] = STATE(7463), - [sym__value] = STATE(1825), - [sym_val_nothing] = STATE(1887), - [sym_val_bool] = STATE(1573), - [sym_val_variable] = STATE(1887), - [sym_val_number] = STATE(1887), - [sym__val_number_decimal] = STATE(1250), - [sym__val_number] = STATE(1800), - [sym_val_duration] = STATE(1887), - [sym_val_filesize] = STATE(1887), - [sym_val_binary] = STATE(1887), - [sym_val_string] = STATE(1887), - [sym__str_double_quotes] = STATE(1944), - [sym_val_interpolated] = STATE(1887), - [sym__inter_single_quotes] = STATE(1945), - [sym__inter_double_quotes] = STATE(1946), - [sym_val_list] = STATE(1887), - [sym_val_record] = STATE(1887), - [sym_val_table] = STATE(1887), - [sym_val_closure] = STATE(1887), - [sym_unquoted] = STATE(1826), - [sym__unquoted_anonymous_prefix] = STATE(7544), - [sym_comment] = STATE(1166), - [anon_sym_true] = ACTIONS(4197), - [anon_sym_false] = ACTIONS(4197), - [anon_sym_null] = ACTIONS(4199), - [aux_sym_cmd_identifier_token38] = ACTIONS(4201), - [aux_sym_cmd_identifier_token39] = ACTIONS(4201), - [aux_sym_cmd_identifier_token40] = ACTIONS(4201), - [anon_sym_LBRACK] = ACTIONS(2830), - [anon_sym_LPAREN] = ACTIONS(4203), - [anon_sym_DOLLAR] = ACTIONS(3923), - [anon_sym_LBRACE] = ACTIONS(2840), - [anon_sym_DOT_DOT] = ACTIONS(4205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4207), - [anon_sym_DOT_DOT_LT] = ACTIONS(4207), - [aux_sym__val_number_decimal_token1] = ACTIONS(4209), - [aux_sym__val_number_decimal_token2] = ACTIONS(4211), - [aux_sym__val_number_decimal_token3] = ACTIONS(4213), - [aux_sym__val_number_decimal_token4] = ACTIONS(4215), - [aux_sym__val_number_token1] = ACTIONS(2854), - [aux_sym__val_number_token2] = ACTIONS(2854), - [aux_sym__val_number_token3] = ACTIONS(2854), - [anon_sym_0b] = ACTIONS(2856), - [anon_sym_0o] = ACTIONS(2858), - [anon_sym_0x] = ACTIONS(2858), - [sym_val_date] = ACTIONS(4217), - [anon_sym_DQUOTE] = ACTIONS(2862), - [sym__str_single_quotes] = ACTIONS(2864), - [sym__str_back_ticks] = ACTIONS(2864), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2866), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2868), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(4219), - [anon_sym_POUND] = ACTIONS(247), - }, - [1167] = { - [sym__val_range] = STATE(7468), - [sym__value] = STATE(5935), - [sym_val_nothing] = STATE(4953), - [sym_val_bool] = STATE(6545), - [sym_val_variable] = STATE(4953), - [sym_val_number] = STATE(4953), - [sym__val_number_decimal] = STATE(5303), - [sym__val_number] = STATE(5152), - [sym_val_duration] = STATE(4953), - [sym_val_filesize] = STATE(4953), - [sym_val_binary] = STATE(4953), - [sym_val_string] = STATE(4953), - [sym__str_double_quotes] = STATE(4744), - [sym_val_interpolated] = STATE(4953), - [sym__inter_single_quotes] = STATE(4860), - [sym__inter_double_quotes] = STATE(4909), - [sym_val_list] = STATE(4953), - [sym_val_record] = STATE(4953), - [sym_val_table] = STATE(4953), - [sym_val_closure] = STATE(4953), - [sym_unquoted] = STATE(5939), - [sym__unquoted_anonymous_prefix] = STATE(7625), - [sym_comment] = STATE(1167), - [anon_sym_true] = ACTIONS(4221), - [anon_sym_false] = ACTIONS(4221), - [anon_sym_null] = ACTIONS(4223), - [aux_sym_cmd_identifier_token38] = ACTIONS(4225), - [aux_sym_cmd_identifier_token39] = ACTIONS(4225), - [aux_sym_cmd_identifier_token40] = ACTIONS(4225), - [anon_sym_LBRACK] = ACTIONS(4109), - [anon_sym_LPAREN] = ACTIONS(4111), - [anon_sym_DOLLAR] = ACTIONS(4113), - [anon_sym_LBRACE] = ACTIONS(4115), - [anon_sym_DOT_DOT] = ACTIONS(4117), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4119), - [anon_sym_DOT_DOT_LT] = ACTIONS(4119), - [aux_sym__val_number_decimal_token1] = ACTIONS(4227), - [aux_sym__val_number_decimal_token2] = ACTIONS(4229), - [aux_sym__val_number_decimal_token3] = ACTIONS(4231), - [aux_sym__val_number_decimal_token4] = ACTIONS(4233), - [aux_sym__val_number_token1] = ACTIONS(3515), - [aux_sym__val_number_token2] = ACTIONS(3515), - [aux_sym__val_number_token3] = ACTIONS(3515), - [anon_sym_0b] = ACTIONS(3517), - [anon_sym_0o] = ACTIONS(3519), - [anon_sym_0x] = ACTIONS(3519), - [sym_val_date] = ACTIONS(4235), - [anon_sym_DQUOTE] = ACTIONS(4131), - [sym__str_single_quotes] = ACTIONS(4133), - [sym__str_back_ticks] = ACTIONS(4133), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3527), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3529), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(4135), - [anon_sym_POUND] = ACTIONS(247), - }, - [1168] = { - [sym__val_range] = STATE(7468), - [sym__value] = STATE(5948), - [sym_val_nothing] = STATE(4953), - [sym_val_bool] = STATE(6545), - [sym_val_variable] = STATE(4953), - [sym_val_number] = STATE(4953), - [sym__val_number_decimal] = STATE(5303), - [sym__val_number] = STATE(5152), - [sym_val_duration] = STATE(4953), - [sym_val_filesize] = STATE(4953), - [sym_val_binary] = STATE(4953), - [sym_val_string] = STATE(4953), - [sym__str_double_quotes] = STATE(4744), - [sym_val_interpolated] = STATE(4953), - [sym__inter_single_quotes] = STATE(4860), - [sym__inter_double_quotes] = STATE(4909), - [sym_val_list] = STATE(4953), - [sym_val_record] = STATE(4953), - [sym_val_table] = STATE(4953), - [sym_val_closure] = STATE(4953), - [sym_unquoted] = STATE(5953), - [sym__unquoted_anonymous_prefix] = STATE(7625), - [sym_comment] = STATE(1168), - [anon_sym_true] = ACTIONS(4221), - [anon_sym_false] = ACTIONS(4221), - [anon_sym_null] = ACTIONS(4223), - [aux_sym_cmd_identifier_token38] = ACTIONS(4225), - [aux_sym_cmd_identifier_token39] = ACTIONS(4225), - [aux_sym_cmd_identifier_token40] = ACTIONS(4225), - [anon_sym_LBRACK] = ACTIONS(4109), - [anon_sym_LPAREN] = ACTIONS(4111), - [anon_sym_DOLLAR] = ACTIONS(4113), - [anon_sym_LBRACE] = ACTIONS(4115), - [anon_sym_DOT_DOT] = ACTIONS(4117), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4119), - [anon_sym_DOT_DOT_LT] = ACTIONS(4119), - [aux_sym__val_number_decimal_token1] = ACTIONS(4227), - [aux_sym__val_number_decimal_token2] = ACTIONS(4229), - [aux_sym__val_number_decimal_token3] = ACTIONS(4231), - [aux_sym__val_number_decimal_token4] = ACTIONS(4233), - [aux_sym__val_number_token1] = ACTIONS(3515), - [aux_sym__val_number_token2] = ACTIONS(3515), - [aux_sym__val_number_token3] = ACTIONS(3515), - [anon_sym_0b] = ACTIONS(3517), - [anon_sym_0o] = ACTIONS(3519), - [anon_sym_0x] = ACTIONS(3519), - [sym_val_date] = ACTIONS(4235), - [anon_sym_DQUOTE] = ACTIONS(4131), - [sym__str_single_quotes] = ACTIONS(4133), - [sym__str_back_ticks] = ACTIONS(4133), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3527), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3529), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(4135), - [anon_sym_POUND] = ACTIONS(247), - }, - [1169] = { - [sym__val_range] = STATE(7614), - [sym__value] = STATE(4957), - [sym_val_nothing] = STATE(4843), - [sym_val_bool] = STATE(4562), - [sym_val_variable] = STATE(4843), - [sym_val_number] = STATE(4843), - [sym__val_number_decimal] = STATE(4068), - [sym__val_number] = STATE(4928), - [sym_val_duration] = STATE(4843), - [sym_val_filesize] = STATE(4843), - [sym_val_binary] = STATE(4843), - [sym_val_string] = STATE(4843), - [sym__str_double_quotes] = STATE(4626), - [sym_val_interpolated] = STATE(4843), - [sym__inter_single_quotes] = STATE(4866), - [sym__inter_double_quotes] = STATE(4872), - [sym_val_list] = STATE(4843), - [sym_val_record] = STATE(4843), - [sym_val_table] = STATE(4843), - [sym_val_closure] = STATE(4843), - [sym_unquoted] = STATE(4965), - [sym__unquoted_anonymous_prefix] = STATE(7713), - [sym_comment] = STATE(1169), - [anon_sym_true] = ACTIONS(4237), - [anon_sym_false] = ACTIONS(4237), - [anon_sym_null] = ACTIONS(4239), - [aux_sym_cmd_identifier_token38] = ACTIONS(4241), - [aux_sym_cmd_identifier_token39] = ACTIONS(4241), - [aux_sym_cmd_identifier_token40] = ACTIONS(4241), - [anon_sym_LBRACK] = ACTIONS(4243), - [anon_sym_LPAREN] = ACTIONS(4245), - [anon_sym_DOLLAR] = ACTIONS(4247), - [anon_sym_LBRACE] = ACTIONS(4249), - [anon_sym_DOT_DOT] = ACTIONS(4251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4253), - [anon_sym_DOT_DOT_LT] = ACTIONS(4253), - [aux_sym__val_number_decimal_token1] = ACTIONS(2186), - [aux_sym__val_number_decimal_token2] = ACTIONS(4255), - [aux_sym__val_number_decimal_token3] = ACTIONS(4257), - [aux_sym__val_number_decimal_token4] = ACTIONS(4259), - [aux_sym__val_number_token1] = ACTIONS(4261), - [aux_sym__val_number_token2] = ACTIONS(4261), - [aux_sym__val_number_token3] = ACTIONS(4261), - [anon_sym_0b] = ACTIONS(2194), - [anon_sym_0o] = ACTIONS(2196), - [anon_sym_0x] = ACTIONS(2196), - [sym_val_date] = ACTIONS(4263), - [anon_sym_DQUOTE] = ACTIONS(4265), - [sym__str_single_quotes] = ACTIONS(4267), - [sym__str_back_ticks] = ACTIONS(4267), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4269), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4271), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(2212), - [anon_sym_POUND] = ACTIONS(247), - }, - [1170] = { - [sym__val_range] = STATE(7468), - [sym__value] = STATE(5932), - [sym_val_nothing] = STATE(4953), - [sym_val_bool] = STATE(6545), - [sym_val_variable] = STATE(4953), - [sym_val_number] = STATE(4953), - [sym__val_number_decimal] = STATE(5303), - [sym__val_number] = STATE(5152), - [sym_val_duration] = STATE(4953), - [sym_val_filesize] = STATE(4953), - [sym_val_binary] = STATE(4953), - [sym_val_string] = STATE(4953), - [sym__str_double_quotes] = STATE(4744), - [sym_val_interpolated] = STATE(4953), - [sym__inter_single_quotes] = STATE(4860), - [sym__inter_double_quotes] = STATE(4909), - [sym_val_list] = STATE(4953), - [sym_val_record] = STATE(4953), - [sym_val_table] = STATE(4953), - [sym_val_closure] = STATE(4953), - [sym_unquoted] = STATE(5941), - [sym__unquoted_anonymous_prefix] = STATE(7625), - [sym_comment] = STATE(1170), - [anon_sym_true] = ACTIONS(4221), - [anon_sym_false] = ACTIONS(4221), - [anon_sym_null] = ACTIONS(4223), - [aux_sym_cmd_identifier_token38] = ACTIONS(4225), - [aux_sym_cmd_identifier_token39] = ACTIONS(4225), - [aux_sym_cmd_identifier_token40] = ACTIONS(4225), - [anon_sym_LBRACK] = ACTIONS(4109), - [anon_sym_LPAREN] = ACTIONS(4111), - [anon_sym_DOLLAR] = ACTIONS(4113), - [anon_sym_LBRACE] = ACTIONS(4115), - [anon_sym_DOT_DOT] = ACTIONS(4117), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4119), - [anon_sym_DOT_DOT_LT] = ACTIONS(4119), - [aux_sym__val_number_decimal_token1] = ACTIONS(4227), - [aux_sym__val_number_decimal_token2] = ACTIONS(4229), - [aux_sym__val_number_decimal_token3] = ACTIONS(4231), - [aux_sym__val_number_decimal_token4] = ACTIONS(4233), - [aux_sym__val_number_token1] = ACTIONS(3515), - [aux_sym__val_number_token2] = ACTIONS(3515), - [aux_sym__val_number_token3] = ACTIONS(3515), - [anon_sym_0b] = ACTIONS(3517), - [anon_sym_0o] = ACTIONS(3519), - [anon_sym_0x] = ACTIONS(3519), - [sym_val_date] = ACTIONS(4235), - [anon_sym_DQUOTE] = ACTIONS(4131), - [sym__str_single_quotes] = ACTIONS(4133), - [sym__str_back_ticks] = ACTIONS(4133), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3527), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3529), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(4135), - [anon_sym_POUND] = ACTIONS(247), - }, - [1171] = { - [sym__val_range] = STATE(7614), - [sym__value] = STATE(4935), - [sym_val_nothing] = STATE(4843), - [sym_val_bool] = STATE(4562), - [sym_val_variable] = STATE(4843), - [sym_val_number] = STATE(4843), - [sym__val_number_decimal] = STATE(4068), - [sym__val_number] = STATE(4928), - [sym_val_duration] = STATE(4843), - [sym_val_filesize] = STATE(4843), - [sym_val_binary] = STATE(4843), - [sym_val_string] = STATE(4843), - [sym__str_double_quotes] = STATE(4626), - [sym_val_interpolated] = STATE(4843), - [sym__inter_single_quotes] = STATE(4866), - [sym__inter_double_quotes] = STATE(4872), - [sym_val_list] = STATE(4843), - [sym_val_record] = STATE(4843), - [sym_val_table] = STATE(4843), - [sym_val_closure] = STATE(4843), - [sym_unquoted] = STATE(4937), - [sym__unquoted_anonymous_prefix] = STATE(7713), - [sym_comment] = STATE(1171), - [anon_sym_true] = ACTIONS(4237), - [anon_sym_false] = ACTIONS(4237), - [anon_sym_null] = ACTIONS(4239), - [aux_sym_cmd_identifier_token38] = ACTIONS(4241), - [aux_sym_cmd_identifier_token39] = ACTIONS(4241), - [aux_sym_cmd_identifier_token40] = ACTIONS(4241), - [anon_sym_LBRACK] = ACTIONS(4243), - [anon_sym_LPAREN] = ACTIONS(4245), - [anon_sym_DOLLAR] = ACTIONS(4247), - [anon_sym_LBRACE] = ACTIONS(4249), - [anon_sym_DOT_DOT] = ACTIONS(4251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4253), - [anon_sym_DOT_DOT_LT] = ACTIONS(4253), - [aux_sym__val_number_decimal_token1] = ACTIONS(2186), - [aux_sym__val_number_decimal_token2] = ACTIONS(4255), - [aux_sym__val_number_decimal_token3] = ACTIONS(4257), - [aux_sym__val_number_decimal_token4] = ACTIONS(4259), - [aux_sym__val_number_token1] = ACTIONS(4261), - [aux_sym__val_number_token2] = ACTIONS(4261), - [aux_sym__val_number_token3] = ACTIONS(4261), - [anon_sym_0b] = ACTIONS(2194), - [anon_sym_0o] = ACTIONS(2196), - [anon_sym_0x] = ACTIONS(2196), - [sym_val_date] = ACTIONS(4263), - [anon_sym_DQUOTE] = ACTIONS(4265), - [sym__str_single_quotes] = ACTIONS(4267), - [sym__str_back_ticks] = ACTIONS(4267), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4269), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4271), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(2212), - [anon_sym_POUND] = ACTIONS(247), - }, - [1172] = { - [sym__val_range] = STATE(7614), - [sym__value] = STATE(4837), - [sym_val_nothing] = STATE(4843), - [sym_val_bool] = STATE(4562), - [sym_val_variable] = STATE(4843), - [sym_val_number] = STATE(4843), - [sym__val_number_decimal] = STATE(4068), - [sym__val_number] = STATE(4928), - [sym_val_duration] = STATE(4843), - [sym_val_filesize] = STATE(4843), - [sym_val_binary] = STATE(4843), - [sym_val_string] = STATE(4843), - [sym__str_double_quotes] = STATE(4626), - [sym_val_interpolated] = STATE(4843), - [sym__inter_single_quotes] = STATE(4866), - [sym__inter_double_quotes] = STATE(4872), - [sym_val_list] = STATE(4843), - [sym_val_record] = STATE(4843), - [sym_val_table] = STATE(4843), - [sym_val_closure] = STATE(4843), - [sym_unquoted] = STATE(4846), - [sym__unquoted_anonymous_prefix] = STATE(7713), - [sym_comment] = STATE(1172), - [anon_sym_true] = ACTIONS(4237), - [anon_sym_false] = ACTIONS(4237), - [anon_sym_null] = ACTIONS(4239), - [aux_sym_cmd_identifier_token38] = ACTIONS(4241), - [aux_sym_cmd_identifier_token39] = ACTIONS(4241), - [aux_sym_cmd_identifier_token40] = ACTIONS(4241), - [anon_sym_LBRACK] = ACTIONS(4243), - [anon_sym_LPAREN] = ACTIONS(4245), - [anon_sym_DOLLAR] = ACTIONS(4247), - [anon_sym_LBRACE] = ACTIONS(4249), - [anon_sym_DOT_DOT] = ACTIONS(4251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4253), - [anon_sym_DOT_DOT_LT] = ACTIONS(4253), - [aux_sym__val_number_decimal_token1] = ACTIONS(2186), - [aux_sym__val_number_decimal_token2] = ACTIONS(4255), - [aux_sym__val_number_decimal_token3] = ACTIONS(4257), - [aux_sym__val_number_decimal_token4] = ACTIONS(4259), - [aux_sym__val_number_token1] = ACTIONS(4261), - [aux_sym__val_number_token2] = ACTIONS(4261), - [aux_sym__val_number_token3] = ACTIONS(4261), - [anon_sym_0b] = ACTIONS(2194), - [anon_sym_0o] = ACTIONS(2196), - [anon_sym_0x] = ACTIONS(2196), - [sym_val_date] = ACTIONS(4263), - [anon_sym_DQUOTE] = ACTIONS(4265), - [sym__str_single_quotes] = ACTIONS(4267), - [sym__str_back_ticks] = ACTIONS(4267), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4269), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4271), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(2212), - [anon_sym_POUND] = ACTIONS(247), - }, - [1173] = { - [sym__val_range] = STATE(7527), - [sym__value] = STATE(4679), - [sym_val_nothing] = STATE(4764), - [sym_val_bool] = STATE(6644), - [sym_val_variable] = STATE(4764), - [sym_val_number] = STATE(4764), - [sym__val_number_decimal] = STATE(5398), - [sym__val_number] = STATE(4795), - [sym_val_duration] = STATE(4764), - [sym_val_filesize] = STATE(4764), - [sym_val_binary] = STATE(4764), - [sym_val_string] = STATE(4764), - [sym__str_double_quotes] = STATE(4501), - [sym_val_interpolated] = STATE(4764), - [sym__inter_single_quotes] = STATE(4767), - [sym__inter_double_quotes] = STATE(4768), - [sym_val_list] = STATE(4764), - [sym_val_record] = STATE(4764), - [sym_val_table] = STATE(4764), - [sym_val_closure] = STATE(4764), - [sym_unquoted] = STATE(4681), - [sym__unquoted_anonymous_prefix] = STATE(7549), - [sym_comment] = STATE(1173), - [anon_sym_true] = ACTIONS(4273), - [anon_sym_false] = ACTIONS(4273), - [anon_sym_null] = ACTIONS(4275), - [aux_sym_cmd_identifier_token38] = ACTIONS(4277), - [aux_sym_cmd_identifier_token39] = ACTIONS(4277), - [aux_sym_cmd_identifier_token40] = ACTIONS(4277), - [anon_sym_LBRACK] = ACTIONS(4279), - [anon_sym_LPAREN] = ACTIONS(4281), - [anon_sym_DOLLAR] = ACTIONS(4283), - [anon_sym_LBRACE] = ACTIONS(4285), - [anon_sym_DOT_DOT] = ACTIONS(4287), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4289), - [anon_sym_DOT_DOT_LT] = ACTIONS(4289), - [aux_sym__val_number_decimal_token1] = ACTIONS(4291), - [aux_sym__val_number_decimal_token2] = ACTIONS(4293), - [aux_sym__val_number_decimal_token3] = ACTIONS(4295), - [aux_sym__val_number_decimal_token4] = ACTIONS(4297), - [aux_sym__val_number_token1] = ACTIONS(4299), - [aux_sym__val_number_token2] = ACTIONS(4299), - [aux_sym__val_number_token3] = ACTIONS(4299), - [anon_sym_0b] = ACTIONS(2075), - [anon_sym_0o] = ACTIONS(2077), - [anon_sym_0x] = ACTIONS(2077), - [sym_val_date] = ACTIONS(4301), - [anon_sym_DQUOTE] = ACTIONS(4303), - [sym__str_single_quotes] = ACTIONS(4305), - [sym__str_back_ticks] = ACTIONS(4305), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4307), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4309), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(2093), - [anon_sym_POUND] = ACTIONS(247), - }, - [1174] = { - [sym__val_range] = STATE(7614), - [sym__value] = STATE(4982), - [sym_val_nothing] = STATE(4843), - [sym_val_bool] = STATE(4562), - [sym_val_variable] = STATE(4843), - [sym_val_number] = STATE(4843), - [sym__val_number_decimal] = STATE(4068), - [sym__val_number] = STATE(4928), - [sym_val_duration] = STATE(4843), - [sym_val_filesize] = STATE(4843), - [sym_val_binary] = STATE(4843), - [sym_val_string] = STATE(4843), - [sym__str_double_quotes] = STATE(4626), - [sym_val_interpolated] = STATE(4843), - [sym__inter_single_quotes] = STATE(4866), - [sym__inter_double_quotes] = STATE(4872), - [sym_val_list] = STATE(4843), - [sym_val_record] = STATE(4843), - [sym_val_table] = STATE(4843), - [sym_val_closure] = STATE(4843), - [sym_unquoted] = STATE(4984), - [sym__unquoted_anonymous_prefix] = STATE(7713), - [sym_comment] = STATE(1174), - [anon_sym_true] = ACTIONS(4237), - [anon_sym_false] = ACTIONS(4237), - [anon_sym_null] = ACTIONS(4239), - [aux_sym_cmd_identifier_token38] = ACTIONS(4241), - [aux_sym_cmd_identifier_token39] = ACTIONS(4241), - [aux_sym_cmd_identifier_token40] = ACTIONS(4241), - [anon_sym_LBRACK] = ACTIONS(4243), - [anon_sym_LPAREN] = ACTIONS(4245), - [anon_sym_DOLLAR] = ACTIONS(4247), - [anon_sym_LBRACE] = ACTIONS(4249), - [anon_sym_DOT_DOT] = ACTIONS(4251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4253), - [anon_sym_DOT_DOT_LT] = ACTIONS(4253), - [aux_sym__val_number_decimal_token1] = ACTIONS(2186), - [aux_sym__val_number_decimal_token2] = ACTIONS(4255), - [aux_sym__val_number_decimal_token3] = ACTIONS(4257), - [aux_sym__val_number_decimal_token4] = ACTIONS(4259), - [aux_sym__val_number_token1] = ACTIONS(4261), - [aux_sym__val_number_token2] = ACTIONS(4261), - [aux_sym__val_number_token3] = ACTIONS(4261), - [anon_sym_0b] = ACTIONS(2194), - [anon_sym_0o] = ACTIONS(2196), - [anon_sym_0x] = ACTIONS(2196), - [sym_val_date] = ACTIONS(4263), - [anon_sym_DQUOTE] = ACTIONS(4265), - [sym__str_single_quotes] = ACTIONS(4267), - [sym__str_back_ticks] = ACTIONS(4267), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4269), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4271), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(2212), - [anon_sym_POUND] = ACTIONS(247), - }, - [1175] = { - [sym__val_range] = STATE(7527), - [sym__value] = STATE(4722), - [sym_val_nothing] = STATE(4764), - [sym_val_bool] = STATE(6644), - [sym_val_variable] = STATE(4764), - [sym_val_number] = STATE(4764), - [sym__val_number_decimal] = STATE(5398), - [sym__val_number] = STATE(4795), - [sym_val_duration] = STATE(4764), - [sym_val_filesize] = STATE(4764), - [sym_val_binary] = STATE(4764), - [sym_val_string] = STATE(4764), - [sym__str_double_quotes] = STATE(4501), - [sym_val_interpolated] = STATE(4764), - [sym__inter_single_quotes] = STATE(4767), - [sym__inter_double_quotes] = STATE(4768), - [sym_val_list] = STATE(4764), - [sym_val_record] = STATE(4764), - [sym_val_table] = STATE(4764), - [sym_val_closure] = STATE(4764), - [sym_unquoted] = STATE(4726), - [sym__unquoted_anonymous_prefix] = STATE(7549), - [sym_comment] = STATE(1175), - [anon_sym_true] = ACTIONS(4273), - [anon_sym_false] = ACTIONS(4273), - [anon_sym_null] = ACTIONS(4275), - [aux_sym_cmd_identifier_token38] = ACTIONS(4277), - [aux_sym_cmd_identifier_token39] = ACTIONS(4277), - [aux_sym_cmd_identifier_token40] = ACTIONS(4277), - [anon_sym_LBRACK] = ACTIONS(4279), - [anon_sym_LPAREN] = ACTIONS(4281), - [anon_sym_DOLLAR] = ACTIONS(4283), - [anon_sym_LBRACE] = ACTIONS(4285), - [anon_sym_DOT_DOT] = ACTIONS(4287), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4289), - [anon_sym_DOT_DOT_LT] = ACTIONS(4289), - [aux_sym__val_number_decimal_token1] = ACTIONS(4291), - [aux_sym__val_number_decimal_token2] = ACTIONS(4293), - [aux_sym__val_number_decimal_token3] = ACTIONS(4295), - [aux_sym__val_number_decimal_token4] = ACTIONS(4297), - [aux_sym__val_number_token1] = ACTIONS(4299), - [aux_sym__val_number_token2] = ACTIONS(4299), - [aux_sym__val_number_token3] = ACTIONS(4299), - [anon_sym_0b] = ACTIONS(2075), - [anon_sym_0o] = ACTIONS(2077), - [anon_sym_0x] = ACTIONS(2077), - [sym_val_date] = ACTIONS(4301), - [anon_sym_DQUOTE] = ACTIONS(4303), - [sym__str_single_quotes] = ACTIONS(4305), - [sym__str_back_ticks] = ACTIONS(4305), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4307), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4309), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(2093), - [anon_sym_POUND] = ACTIONS(247), - }, - [1176] = { - [sym__val_range] = STATE(7527), - [sym__value] = STATE(4692), - [sym_val_nothing] = STATE(4764), - [sym_val_bool] = STATE(6644), - [sym_val_variable] = STATE(4764), - [sym_val_number] = STATE(4764), - [sym__val_number_decimal] = STATE(5398), - [sym__val_number] = STATE(4795), - [sym_val_duration] = STATE(4764), - [sym_val_filesize] = STATE(4764), - [sym_val_binary] = STATE(4764), - [sym_val_string] = STATE(4764), - [sym__str_double_quotes] = STATE(4501), - [sym_val_interpolated] = STATE(4764), - [sym__inter_single_quotes] = STATE(4767), - [sym__inter_double_quotes] = STATE(4768), - [sym_val_list] = STATE(4764), - [sym_val_record] = STATE(4764), - [sym_val_table] = STATE(4764), - [sym_val_closure] = STATE(4764), - [sym_unquoted] = STATE(4693), - [sym__unquoted_anonymous_prefix] = STATE(7549), - [sym_comment] = STATE(1176), - [anon_sym_true] = ACTIONS(4273), - [anon_sym_false] = ACTIONS(4273), - [anon_sym_null] = ACTIONS(4275), - [aux_sym_cmd_identifier_token38] = ACTIONS(4277), - [aux_sym_cmd_identifier_token39] = ACTIONS(4277), - [aux_sym_cmd_identifier_token40] = ACTIONS(4277), - [anon_sym_LBRACK] = ACTIONS(4279), - [anon_sym_LPAREN] = ACTIONS(4281), - [anon_sym_DOLLAR] = ACTIONS(4283), - [anon_sym_LBRACE] = ACTIONS(4285), - [anon_sym_DOT_DOT] = ACTIONS(4287), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4289), - [anon_sym_DOT_DOT_LT] = ACTIONS(4289), - [aux_sym__val_number_decimal_token1] = ACTIONS(4291), - [aux_sym__val_number_decimal_token2] = ACTIONS(4293), - [aux_sym__val_number_decimal_token3] = ACTIONS(4295), - [aux_sym__val_number_decimal_token4] = ACTIONS(4297), - [aux_sym__val_number_token1] = ACTIONS(4299), - [aux_sym__val_number_token2] = ACTIONS(4299), - [aux_sym__val_number_token3] = ACTIONS(4299), - [anon_sym_0b] = ACTIONS(2075), - [anon_sym_0o] = ACTIONS(2077), - [anon_sym_0x] = ACTIONS(2077), - [sym_val_date] = ACTIONS(4301), - [anon_sym_DQUOTE] = ACTIONS(4303), - [sym__str_single_quotes] = ACTIONS(4305), - [sym__str_back_ticks] = ACTIONS(4305), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4307), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4309), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(2093), - [anon_sym_POUND] = ACTIONS(247), - }, - [1177] = { - [sym__val_range] = STATE(7527), - [sym__value] = STATE(4679), - [sym_val_nothing] = STATE(4764), - [sym_val_bool] = STATE(4456), - [sym_val_variable] = STATE(4764), - [sym_val_number] = STATE(4764), - [sym__val_number_decimal] = STATE(4038), - [sym__val_number] = STATE(4795), - [sym_val_duration] = STATE(4764), - [sym_val_filesize] = STATE(4764), - [sym_val_binary] = STATE(4764), - [sym_val_string] = STATE(4764), - [sym__str_double_quotes] = STATE(4501), - [sym_val_interpolated] = STATE(4764), - [sym__inter_single_quotes] = STATE(4767), - [sym__inter_double_quotes] = STATE(4768), - [sym_val_list] = STATE(4764), - [sym_val_record] = STATE(4764), - [sym_val_table] = STATE(4764), - [sym_val_closure] = STATE(4764), - [sym_unquoted] = STATE(4681), - [sym__unquoted_anonymous_prefix] = STATE(7549), - [sym_comment] = STATE(1177), - [anon_sym_true] = ACTIONS(4311), - [anon_sym_false] = ACTIONS(4311), - [anon_sym_null] = ACTIONS(4313), - [aux_sym_cmd_identifier_token38] = ACTIONS(4315), - [aux_sym_cmd_identifier_token39] = ACTIONS(4315), - [aux_sym_cmd_identifier_token40] = ACTIONS(4315), - [anon_sym_LBRACK] = ACTIONS(4279), - [anon_sym_LPAREN] = ACTIONS(4281), - [anon_sym_DOLLAR] = ACTIONS(4283), - [anon_sym_LBRACE] = ACTIONS(4285), - [anon_sym_DOT_DOT] = ACTIONS(4287), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4289), - [anon_sym_DOT_DOT_LT] = ACTIONS(4289), - [aux_sym__val_number_decimal_token1] = ACTIONS(2067), - [aux_sym__val_number_decimal_token2] = ACTIONS(4317), - [aux_sym__val_number_decimal_token3] = ACTIONS(4319), - [aux_sym__val_number_decimal_token4] = ACTIONS(4321), - [aux_sym__val_number_token1] = ACTIONS(4299), - [aux_sym__val_number_token2] = ACTIONS(4299), - [aux_sym__val_number_token3] = ACTIONS(4299), - [anon_sym_0b] = ACTIONS(2075), - [anon_sym_0o] = ACTIONS(2077), - [anon_sym_0x] = ACTIONS(2077), - [sym_val_date] = ACTIONS(4323), - [anon_sym_DQUOTE] = ACTIONS(4303), - [sym__str_single_quotes] = ACTIONS(4305), - [sym__str_back_ticks] = ACTIONS(4305), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4307), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4309), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(2093), - [anon_sym_POUND] = ACTIONS(247), - }, - [1178] = { - [sym__val_range] = STATE(7527), - [sym__value] = STATE(4759), - [sym_val_nothing] = STATE(4764), - [sym_val_bool] = STATE(6644), - [sym_val_variable] = STATE(4764), - [sym_val_number] = STATE(4764), - [sym__val_number_decimal] = STATE(5398), - [sym__val_number] = STATE(4795), - [sym_val_duration] = STATE(4764), - [sym_val_filesize] = STATE(4764), - [sym_val_binary] = STATE(4764), - [sym_val_string] = STATE(4764), - [sym__str_double_quotes] = STATE(4501), - [sym_val_interpolated] = STATE(4764), - [sym__inter_single_quotes] = STATE(4767), - [sym__inter_double_quotes] = STATE(4768), - [sym_val_list] = STATE(4764), - [sym_val_record] = STATE(4764), - [sym_val_table] = STATE(4764), - [sym_val_closure] = STATE(4764), - [sym_unquoted] = STATE(4762), - [sym__unquoted_anonymous_prefix] = STATE(7549), - [sym_comment] = STATE(1178), - [anon_sym_true] = ACTIONS(4273), - [anon_sym_false] = ACTIONS(4273), - [anon_sym_null] = ACTIONS(4275), - [aux_sym_cmd_identifier_token38] = ACTIONS(4277), - [aux_sym_cmd_identifier_token39] = ACTIONS(4277), - [aux_sym_cmd_identifier_token40] = ACTIONS(4277), - [anon_sym_LBRACK] = ACTIONS(4279), - [anon_sym_LPAREN] = ACTIONS(4281), - [anon_sym_DOLLAR] = ACTIONS(4283), - [anon_sym_LBRACE] = ACTIONS(4285), - [anon_sym_DOT_DOT] = ACTIONS(4287), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4289), - [anon_sym_DOT_DOT_LT] = ACTIONS(4289), - [aux_sym__val_number_decimal_token1] = ACTIONS(4291), - [aux_sym__val_number_decimal_token2] = ACTIONS(4293), - [aux_sym__val_number_decimal_token3] = ACTIONS(4295), - [aux_sym__val_number_decimal_token4] = ACTIONS(4297), - [aux_sym__val_number_token1] = ACTIONS(4299), - [aux_sym__val_number_token2] = ACTIONS(4299), - [aux_sym__val_number_token3] = ACTIONS(4299), - [anon_sym_0b] = ACTIONS(2075), - [anon_sym_0o] = ACTIONS(2077), - [anon_sym_0x] = ACTIONS(2077), - [sym_val_date] = ACTIONS(4301), - [anon_sym_DQUOTE] = ACTIONS(4303), - [sym__str_single_quotes] = ACTIONS(4305), - [sym__str_back_ticks] = ACTIONS(4305), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4307), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4309), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(2093), - [anon_sym_POUND] = ACTIONS(247), - }, - [1179] = { - [sym__val_range] = STATE(7527), - [sym__value] = STATE(4722), - [sym_val_nothing] = STATE(4764), - [sym_val_bool] = STATE(4456), - [sym_val_variable] = STATE(4764), - [sym_val_number] = STATE(4764), - [sym__val_number_decimal] = STATE(4038), - [sym__val_number] = STATE(4795), - [sym_val_duration] = STATE(4764), - [sym_val_filesize] = STATE(4764), - [sym_val_binary] = STATE(4764), - [sym_val_string] = STATE(4764), - [sym__str_double_quotes] = STATE(4501), - [sym_val_interpolated] = STATE(4764), - [sym__inter_single_quotes] = STATE(4767), - [sym__inter_double_quotes] = STATE(4768), - [sym_val_list] = STATE(4764), - [sym_val_record] = STATE(4764), - [sym_val_table] = STATE(4764), - [sym_val_closure] = STATE(4764), - [sym_unquoted] = STATE(4726), - [sym__unquoted_anonymous_prefix] = STATE(7549), - [sym_comment] = STATE(1179), - [anon_sym_true] = ACTIONS(4311), - [anon_sym_false] = ACTIONS(4311), - [anon_sym_null] = ACTIONS(4313), - [aux_sym_cmd_identifier_token38] = ACTIONS(4315), - [aux_sym_cmd_identifier_token39] = ACTIONS(4315), - [aux_sym_cmd_identifier_token40] = ACTIONS(4315), - [anon_sym_LBRACK] = ACTIONS(4279), - [anon_sym_LPAREN] = ACTIONS(4281), - [anon_sym_DOLLAR] = ACTIONS(4283), - [anon_sym_LBRACE] = ACTIONS(4285), - [anon_sym_DOT_DOT] = ACTIONS(4287), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4289), - [anon_sym_DOT_DOT_LT] = ACTIONS(4289), - [aux_sym__val_number_decimal_token1] = ACTIONS(2067), - [aux_sym__val_number_decimal_token2] = ACTIONS(4317), - [aux_sym__val_number_decimal_token3] = ACTIONS(4319), - [aux_sym__val_number_decimal_token4] = ACTIONS(4321), - [aux_sym__val_number_token1] = ACTIONS(4299), - [aux_sym__val_number_token2] = ACTIONS(4299), - [aux_sym__val_number_token3] = ACTIONS(4299), - [anon_sym_0b] = ACTIONS(2075), - [anon_sym_0o] = ACTIONS(2077), - [anon_sym_0x] = ACTIONS(2077), - [sym_val_date] = ACTIONS(4323), - [anon_sym_DQUOTE] = ACTIONS(4303), - [sym__str_single_quotes] = ACTIONS(4305), - [sym__str_back_ticks] = ACTIONS(4305), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4307), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4309), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(2093), - [anon_sym_POUND] = ACTIONS(247), - }, - [1180] = { - [sym__val_range] = STATE(7527), - [sym__value] = STATE(4692), - [sym_val_nothing] = STATE(4764), - [sym_val_bool] = STATE(4456), - [sym_val_variable] = STATE(4764), - [sym_val_number] = STATE(4764), - [sym__val_number_decimal] = STATE(4038), - [sym__val_number] = STATE(4795), - [sym_val_duration] = STATE(4764), - [sym_val_filesize] = STATE(4764), - [sym_val_binary] = STATE(4764), - [sym_val_string] = STATE(4764), - [sym__str_double_quotes] = STATE(4501), - [sym_val_interpolated] = STATE(4764), - [sym__inter_single_quotes] = STATE(4767), - [sym__inter_double_quotes] = STATE(4768), - [sym_val_list] = STATE(4764), - [sym_val_record] = STATE(4764), - [sym_val_table] = STATE(4764), - [sym_val_closure] = STATE(4764), - [sym_unquoted] = STATE(4693), - [sym__unquoted_anonymous_prefix] = STATE(7549), - [sym_comment] = STATE(1180), - [anon_sym_true] = ACTIONS(4311), - [anon_sym_false] = ACTIONS(4311), - [anon_sym_null] = ACTIONS(4313), - [aux_sym_cmd_identifier_token38] = ACTIONS(4315), - [aux_sym_cmd_identifier_token39] = ACTIONS(4315), - [aux_sym_cmd_identifier_token40] = ACTIONS(4315), - [anon_sym_LBRACK] = ACTIONS(4279), - [anon_sym_LPAREN] = ACTIONS(4281), - [anon_sym_DOLLAR] = ACTIONS(4283), - [anon_sym_LBRACE] = ACTIONS(4285), - [anon_sym_DOT_DOT] = ACTIONS(4287), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4289), - [anon_sym_DOT_DOT_LT] = ACTIONS(4289), - [aux_sym__val_number_decimal_token1] = ACTIONS(2067), - [aux_sym__val_number_decimal_token2] = ACTIONS(4317), - [aux_sym__val_number_decimal_token3] = ACTIONS(4319), - [aux_sym__val_number_decimal_token4] = ACTIONS(4321), - [aux_sym__val_number_token1] = ACTIONS(4299), - [aux_sym__val_number_token2] = ACTIONS(4299), - [aux_sym__val_number_token3] = ACTIONS(4299), - [anon_sym_0b] = ACTIONS(2075), - [anon_sym_0o] = ACTIONS(2077), - [anon_sym_0x] = ACTIONS(2077), - [sym_val_date] = ACTIONS(4323), - [anon_sym_DQUOTE] = ACTIONS(4303), - [sym__str_single_quotes] = ACTIONS(4305), - [sym__str_back_ticks] = ACTIONS(4305), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4307), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4309), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(2093), - [anon_sym_POUND] = ACTIONS(247), - }, - [1181] = { - [sym__val_range] = STATE(7539), - [sym__value] = STATE(3680), - [sym_val_nothing] = STATE(3675), - [sym_val_bool] = STATE(3533), - [sym_val_variable] = STATE(3675), - [sym_val_number] = STATE(3675), - [sym__val_number_decimal] = STATE(3391), - [sym__val_number] = STATE(3676), - [sym_val_duration] = STATE(3675), - [sym_val_filesize] = STATE(3675), - [sym_val_binary] = STATE(3675), - [sym_val_string] = STATE(3675), - [sym__str_double_quotes] = STATE(3512), - [sym_val_interpolated] = STATE(3675), - [sym__inter_single_quotes] = STATE(3709), - [sym__inter_double_quotes] = STATE(3710), - [sym_val_list] = STATE(3675), - [sym_val_record] = STATE(3675), - [sym_val_table] = STATE(3675), - [sym_val_closure] = STATE(3675), - [sym_unquoted] = STATE(3684), - [sym__unquoted_anonymous_prefix] = STATE(7592), - [sym_comment] = STATE(1181), - [anon_sym_true] = ACTIONS(4325), - [anon_sym_false] = ACTIONS(4325), - [anon_sym_null] = ACTIONS(4327), - [aux_sym_cmd_identifier_token38] = ACTIONS(4329), - [aux_sym_cmd_identifier_token39] = ACTIONS(4329), - [aux_sym_cmd_identifier_token40] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4331), - [anon_sym_LPAREN] = ACTIONS(4333), - [anon_sym_DOLLAR] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4337), - [anon_sym_DOT_DOT] = ACTIONS(4339), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4341), - [anon_sym_DOT_DOT_LT] = ACTIONS(4341), - [aux_sym__val_number_decimal_token1] = ACTIONS(4343), - [aux_sym__val_number_decimal_token2] = ACTIONS(4345), - [aux_sym__val_number_decimal_token3] = ACTIONS(4347), - [aux_sym__val_number_decimal_token4] = ACTIONS(4349), - [aux_sym__val_number_token1] = ACTIONS(4351), - [aux_sym__val_number_token2] = ACTIONS(4351), - [aux_sym__val_number_token3] = ACTIONS(4351), - [anon_sym_0b] = ACTIONS(4353), - [anon_sym_0o] = ACTIONS(4355), - [anon_sym_0x] = ACTIONS(4355), - [sym_val_date] = ACTIONS(4357), - [anon_sym_DQUOTE] = ACTIONS(4359), - [sym__str_single_quotes] = ACTIONS(4361), - [sym__str_back_ticks] = ACTIONS(4361), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4363), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4365), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(4367), - [anon_sym_POUND] = ACTIONS(247), - }, - [1182] = { - [sym__val_range] = STATE(7527), - [sym__value] = STATE(4759), - [sym_val_nothing] = STATE(4764), - [sym_val_bool] = STATE(4456), - [sym_val_variable] = STATE(4764), - [sym_val_number] = STATE(4764), - [sym__val_number_decimal] = STATE(4038), - [sym__val_number] = STATE(4795), - [sym_val_duration] = STATE(4764), - [sym_val_filesize] = STATE(4764), - [sym_val_binary] = STATE(4764), - [sym_val_string] = STATE(4764), - [sym__str_double_quotes] = STATE(4501), - [sym_val_interpolated] = STATE(4764), - [sym__inter_single_quotes] = STATE(4767), - [sym__inter_double_quotes] = STATE(4768), - [sym_val_list] = STATE(4764), - [sym_val_record] = STATE(4764), - [sym_val_table] = STATE(4764), - [sym_val_closure] = STATE(4764), - [sym_unquoted] = STATE(4762), - [sym__unquoted_anonymous_prefix] = STATE(7549), - [sym_comment] = STATE(1182), - [anon_sym_true] = ACTIONS(4311), - [anon_sym_false] = ACTIONS(4311), - [anon_sym_null] = ACTIONS(4313), - [aux_sym_cmd_identifier_token38] = ACTIONS(4315), - [aux_sym_cmd_identifier_token39] = ACTIONS(4315), - [aux_sym_cmd_identifier_token40] = ACTIONS(4315), - [anon_sym_LBRACK] = ACTIONS(4279), - [anon_sym_LPAREN] = ACTIONS(4281), - [anon_sym_DOLLAR] = ACTIONS(4283), - [anon_sym_LBRACE] = ACTIONS(4285), - [anon_sym_DOT_DOT] = ACTIONS(4287), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4289), - [anon_sym_DOT_DOT_LT] = ACTIONS(4289), - [aux_sym__val_number_decimal_token1] = ACTIONS(2067), - [aux_sym__val_number_decimal_token2] = ACTIONS(4317), - [aux_sym__val_number_decimal_token3] = ACTIONS(4319), - [aux_sym__val_number_decimal_token4] = ACTIONS(4321), - [aux_sym__val_number_token1] = ACTIONS(4299), - [aux_sym__val_number_token2] = ACTIONS(4299), - [aux_sym__val_number_token3] = ACTIONS(4299), - [anon_sym_0b] = ACTIONS(2075), - [anon_sym_0o] = ACTIONS(2077), - [anon_sym_0x] = ACTIONS(2077), - [sym_val_date] = ACTIONS(4323), - [anon_sym_DQUOTE] = ACTIONS(4303), - [sym__str_single_quotes] = ACTIONS(4305), - [sym__str_back_ticks] = ACTIONS(4305), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4307), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4309), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(2093), - [anon_sym_POUND] = ACTIONS(247), - }, - [1183] = { - [sym__val_range] = STATE(7539), - [sym__value] = STATE(3688), - [sym_val_nothing] = STATE(3675), - [sym_val_bool] = STATE(3533), - [sym_val_variable] = STATE(3675), - [sym_val_number] = STATE(3675), - [sym__val_number_decimal] = STATE(3391), - [sym__val_number] = STATE(3676), - [sym_val_duration] = STATE(3675), - [sym_val_filesize] = STATE(3675), - [sym_val_binary] = STATE(3675), - [sym_val_string] = STATE(3675), - [sym__str_double_quotes] = STATE(3512), - [sym_val_interpolated] = STATE(3675), - [sym__inter_single_quotes] = STATE(3709), - [sym__inter_double_quotes] = STATE(3710), - [sym_val_list] = STATE(3675), - [sym_val_record] = STATE(3675), - [sym_val_table] = STATE(3675), - [sym_val_closure] = STATE(3675), - [sym_unquoted] = STATE(3689), - [sym__unquoted_anonymous_prefix] = STATE(7592), - [sym_comment] = STATE(1183), - [anon_sym_true] = ACTIONS(4325), - [anon_sym_false] = ACTIONS(4325), - [anon_sym_null] = ACTIONS(4327), - [aux_sym_cmd_identifier_token38] = ACTIONS(4329), - [aux_sym_cmd_identifier_token39] = ACTIONS(4329), - [aux_sym_cmd_identifier_token40] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4331), - [anon_sym_LPAREN] = ACTIONS(4333), - [anon_sym_DOLLAR] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4337), - [anon_sym_DOT_DOT] = ACTIONS(4339), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4341), - [anon_sym_DOT_DOT_LT] = ACTIONS(4341), - [aux_sym__val_number_decimal_token1] = ACTIONS(4343), - [aux_sym__val_number_decimal_token2] = ACTIONS(4345), - [aux_sym__val_number_decimal_token3] = ACTIONS(4347), - [aux_sym__val_number_decimal_token4] = ACTIONS(4349), - [aux_sym__val_number_token1] = ACTIONS(4351), - [aux_sym__val_number_token2] = ACTIONS(4351), - [aux_sym__val_number_token3] = ACTIONS(4351), - [anon_sym_0b] = ACTIONS(4353), - [anon_sym_0o] = ACTIONS(4355), - [anon_sym_0x] = ACTIONS(4355), - [sym_val_date] = ACTIONS(4357), - [anon_sym_DQUOTE] = ACTIONS(4359), - [sym__str_single_quotes] = ACTIONS(4361), - [sym__str_back_ticks] = ACTIONS(4361), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4363), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4365), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(4367), - [anon_sym_POUND] = ACTIONS(247), - }, - [1184] = { - [sym__val_range] = STATE(7539), - [sym__value] = STATE(3733), - [sym_val_nothing] = STATE(3675), - [sym_val_bool] = STATE(3533), - [sym_val_variable] = STATE(3675), - [sym_val_number] = STATE(3675), - [sym__val_number_decimal] = STATE(3391), - [sym__val_number] = STATE(3676), - [sym_val_duration] = STATE(3675), - [sym_val_filesize] = STATE(3675), - [sym_val_binary] = STATE(3675), - [sym_val_string] = STATE(3675), - [sym__str_double_quotes] = STATE(3512), - [sym_val_interpolated] = STATE(3675), - [sym__inter_single_quotes] = STATE(3709), - [sym__inter_double_quotes] = STATE(3710), - [sym_val_list] = STATE(3675), - [sym_val_record] = STATE(3675), - [sym_val_table] = STATE(3675), - [sym_val_closure] = STATE(3675), - [sym_unquoted] = STATE(3738), - [sym__unquoted_anonymous_prefix] = STATE(7592), - [sym_comment] = STATE(1184), - [anon_sym_true] = ACTIONS(4325), - [anon_sym_false] = ACTIONS(4325), - [anon_sym_null] = ACTIONS(4327), - [aux_sym_cmd_identifier_token38] = ACTIONS(4329), - [aux_sym_cmd_identifier_token39] = ACTIONS(4329), - [aux_sym_cmd_identifier_token40] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4331), - [anon_sym_LPAREN] = ACTIONS(4333), - [anon_sym_DOLLAR] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4337), - [anon_sym_DOT_DOT] = ACTIONS(4339), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4341), - [anon_sym_DOT_DOT_LT] = ACTIONS(4341), - [aux_sym__val_number_decimal_token1] = ACTIONS(4343), - [aux_sym__val_number_decimal_token2] = ACTIONS(4345), - [aux_sym__val_number_decimal_token3] = ACTIONS(4347), - [aux_sym__val_number_decimal_token4] = ACTIONS(4349), - [aux_sym__val_number_token1] = ACTIONS(4351), - [aux_sym__val_number_token2] = ACTIONS(4351), - [aux_sym__val_number_token3] = ACTIONS(4351), - [anon_sym_0b] = ACTIONS(4353), - [anon_sym_0o] = ACTIONS(4355), - [anon_sym_0x] = ACTIONS(4355), - [sym_val_date] = ACTIONS(4357), - [anon_sym_DQUOTE] = ACTIONS(4359), - [sym__str_single_quotes] = ACTIONS(4361), - [sym__str_back_ticks] = ACTIONS(4361), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4363), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4365), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(4367), - [anon_sym_POUND] = ACTIONS(247), - }, - [1185] = { - [sym__val_range] = STATE(7420), - [sym__value] = STATE(1637), - [sym_val_nothing] = STATE(1673), - [sym_val_bool] = STATE(1515), - [sym_val_variable] = STATE(1673), - [sym_val_number] = STATE(1673), - [sym__val_number_decimal] = STATE(1233), - [sym__val_number] = STATE(1734), - [sym_val_duration] = STATE(1673), - [sym_val_filesize] = STATE(1673), - [sym_val_binary] = STATE(1673), - [sym_val_string] = STATE(1673), - [sym__str_double_quotes] = STATE(1675), - [sym_val_interpolated] = STATE(1673), - [sym__inter_single_quotes] = STATE(1583), - [sym__inter_double_quotes] = STATE(1584), - [sym_val_list] = STATE(1673), - [sym_val_record] = STATE(1673), - [sym_val_table] = STATE(1673), - [sym_val_closure] = STATE(1673), - [sym_unquoted] = STATE(1638), - [sym__unquoted_anonymous_prefix] = STATE(7560), - [sym_comment] = STATE(1185), - [anon_sym_true] = ACTIONS(4369), - [anon_sym_false] = ACTIONS(4369), - [anon_sym_null] = ACTIONS(4371), - [aux_sym_cmd_identifier_token38] = ACTIONS(4373), - [aux_sym_cmd_identifier_token39] = ACTIONS(4373), - [aux_sym_cmd_identifier_token40] = ACTIONS(4373), - [anon_sym_LBRACK] = ACTIONS(2603), - [anon_sym_LPAREN] = ACTIONS(4375), - [anon_sym_DOLLAR] = ACTIONS(3881), - [anon_sym_LBRACE] = ACTIONS(2613), - [anon_sym_DOT_DOT] = ACTIONS(4377), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4379), - [anon_sym_DOT_DOT_LT] = ACTIONS(4379), - [aux_sym__val_number_decimal_token1] = ACTIONS(4381), - [aux_sym__val_number_decimal_token2] = ACTIONS(4383), - [aux_sym__val_number_decimal_token3] = ACTIONS(4385), - [aux_sym__val_number_decimal_token4] = ACTIONS(4387), - [aux_sym__val_number_token1] = ACTIONS(2627), - [aux_sym__val_number_token2] = ACTIONS(2627), - [aux_sym__val_number_token3] = ACTIONS(2627), - [anon_sym_0b] = ACTIONS(2629), - [anon_sym_0o] = ACTIONS(2631), - [anon_sym_0x] = ACTIONS(2631), - [sym_val_date] = ACTIONS(4389), - [anon_sym_DQUOTE] = ACTIONS(2635), - [sym__str_single_quotes] = ACTIONS(2637), - [sym__str_back_ticks] = ACTIONS(2637), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2639), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2641), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(4391), - [anon_sym_POUND] = ACTIONS(247), - }, - [1186] = { - [sym__val_range] = STATE(7539), - [sym__value] = STATE(3741), - [sym_val_nothing] = STATE(3675), - [sym_val_bool] = STATE(3533), - [sym_val_variable] = STATE(3675), - [sym_val_number] = STATE(3675), - [sym__val_number_decimal] = STATE(3391), - [sym__val_number] = STATE(3676), - [sym_val_duration] = STATE(3675), - [sym_val_filesize] = STATE(3675), - [sym_val_binary] = STATE(3675), - [sym_val_string] = STATE(3675), - [sym__str_double_quotes] = STATE(3512), - [sym_val_interpolated] = STATE(3675), - [sym__inter_single_quotes] = STATE(3709), - [sym__inter_double_quotes] = STATE(3710), - [sym_val_list] = STATE(3675), - [sym_val_record] = STATE(3675), - [sym_val_table] = STATE(3675), - [sym_val_closure] = STATE(3675), - [sym_unquoted] = STATE(3742), - [sym__unquoted_anonymous_prefix] = STATE(7592), - [sym_comment] = STATE(1186), - [anon_sym_true] = ACTIONS(4325), - [anon_sym_false] = ACTIONS(4325), - [anon_sym_null] = ACTIONS(4327), - [aux_sym_cmd_identifier_token38] = ACTIONS(4329), - [aux_sym_cmd_identifier_token39] = ACTIONS(4329), - [aux_sym_cmd_identifier_token40] = ACTIONS(4329), - [anon_sym_LBRACK] = ACTIONS(4331), - [anon_sym_LPAREN] = ACTIONS(4333), - [anon_sym_DOLLAR] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4337), - [anon_sym_DOT_DOT] = ACTIONS(4339), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4341), - [anon_sym_DOT_DOT_LT] = ACTIONS(4341), - [aux_sym__val_number_decimal_token1] = ACTIONS(4343), - [aux_sym__val_number_decimal_token2] = ACTIONS(4345), - [aux_sym__val_number_decimal_token3] = ACTIONS(4347), - [aux_sym__val_number_decimal_token4] = ACTIONS(4349), - [aux_sym__val_number_token1] = ACTIONS(4351), - [aux_sym__val_number_token2] = ACTIONS(4351), - [aux_sym__val_number_token3] = ACTIONS(4351), - [anon_sym_0b] = ACTIONS(4353), - [anon_sym_0o] = ACTIONS(4355), - [anon_sym_0x] = ACTIONS(4355), - [sym_val_date] = ACTIONS(4357), - [anon_sym_DQUOTE] = ACTIONS(4359), - [sym__str_single_quotes] = ACTIONS(4361), - [sym__str_back_ticks] = ACTIONS(4361), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4363), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4365), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(4367), - [anon_sym_POUND] = ACTIONS(247), - }, - [1187] = { - [sym__val_range] = STATE(7420), - [sym__value] = STATE(1640), - [sym_val_nothing] = STATE(1673), - [sym_val_bool] = STATE(1515), - [sym_val_variable] = STATE(1673), - [sym_val_number] = STATE(1673), - [sym__val_number_decimal] = STATE(1233), - [sym__val_number] = STATE(1734), - [sym_val_duration] = STATE(1673), - [sym_val_filesize] = STATE(1673), - [sym_val_binary] = STATE(1673), - [sym_val_string] = STATE(1673), - [sym__str_double_quotes] = STATE(1675), - [sym_val_interpolated] = STATE(1673), - [sym__inter_single_quotes] = STATE(1583), - [sym__inter_double_quotes] = STATE(1584), - [sym_val_list] = STATE(1673), - [sym_val_record] = STATE(1673), - [sym_val_table] = STATE(1673), - [sym_val_closure] = STATE(1673), - [sym_unquoted] = STATE(1642), - [sym__unquoted_anonymous_prefix] = STATE(7560), - [sym_comment] = STATE(1187), - [anon_sym_true] = ACTIONS(4369), - [anon_sym_false] = ACTIONS(4369), - [anon_sym_null] = ACTIONS(4371), - [aux_sym_cmd_identifier_token38] = ACTIONS(4373), - [aux_sym_cmd_identifier_token39] = ACTIONS(4373), - [aux_sym_cmd_identifier_token40] = ACTIONS(4373), - [anon_sym_LBRACK] = ACTIONS(2603), - [anon_sym_LPAREN] = ACTIONS(4375), - [anon_sym_DOLLAR] = ACTIONS(3881), - [anon_sym_LBRACE] = ACTIONS(2613), - [anon_sym_DOT_DOT] = ACTIONS(4377), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4379), - [anon_sym_DOT_DOT_LT] = ACTIONS(4379), - [aux_sym__val_number_decimal_token1] = ACTIONS(4381), - [aux_sym__val_number_decimal_token2] = ACTIONS(4383), - [aux_sym__val_number_decimal_token3] = ACTIONS(4385), - [aux_sym__val_number_decimal_token4] = ACTIONS(4387), - [aux_sym__val_number_token1] = ACTIONS(2627), - [aux_sym__val_number_token2] = ACTIONS(2627), - [aux_sym__val_number_token3] = ACTIONS(2627), - [anon_sym_0b] = ACTIONS(2629), - [anon_sym_0o] = ACTIONS(2631), - [anon_sym_0x] = ACTIONS(2631), - [sym_val_date] = ACTIONS(4389), - [anon_sym_DQUOTE] = ACTIONS(2635), - [sym__str_single_quotes] = ACTIONS(2637), - [sym__str_back_ticks] = ACTIONS(2637), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2639), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2641), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(4391), - [anon_sym_POUND] = ACTIONS(247), - }, - [1188] = { - [sym__val_range] = STATE(7681), - [sym__value] = STATE(2715), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3707), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(5604), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(2002), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(2717), - [sym__unquoted_anonymous_prefix] = STATE(7695), - [sym_comment] = STATE(1188), - [anon_sym_true] = ACTIONS(3259), - [anon_sym_false] = ACTIONS(3259), - [anon_sym_null] = ACTIONS(3261), - [aux_sym_cmd_identifier_token38] = ACTIONS(3846), - [aux_sym_cmd_identifier_token39] = ACTIONS(3846), - [aux_sym_cmd_identifier_token40] = ACTIONS(3846), - [anon_sym_LBRACK] = ACTIONS(3848), - [anon_sym_LPAREN] = ACTIONS(4393), - [anon_sym_DOLLAR] = ACTIONS(4395), - [anon_sym_LBRACE] = ACTIONS(3854), - [anon_sym_DOT_DOT] = ACTIONS(4397), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4399), - [anon_sym_DOT_DOT_LT] = ACTIONS(4399), - [aux_sym__val_number_decimal_token1] = ACTIONS(3279), - [aux_sym__val_number_decimal_token2] = ACTIONS(3281), - [aux_sym__val_number_decimal_token3] = ACTIONS(3283), - [aux_sym__val_number_decimal_token4] = ACTIONS(3285), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3287), - [anon_sym_DQUOTE] = ACTIONS(3860), - [sym__str_single_quotes] = ACTIONS(3862), - [sym__str_back_ticks] = ACTIONS(3862), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3864), - [anon_sym_POUND] = ACTIONS(247), - }, - [1189] = { - [sym_path] = STATE(1246), - [sym_comment] = STATE(1189), - [aux_sym_cell_path_repeat1] = STATE(1204), - [ts_builtin_sym_end] = ACTIONS(1013), - [anon_sym_EQ] = ACTIONS(1011), - [anon_sym_PLUS_EQ] = ACTIONS(1013), - [anon_sym_DASH_EQ] = ACTIONS(1013), - [anon_sym_STAR_EQ] = ACTIONS(1013), - [anon_sym_SLASH_EQ] = ACTIONS(1013), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1013), - [sym__newline] = ACTIONS(1013), - [anon_sym_SEMI] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1013), - [anon_sym_err_GT_PIPE] = ACTIONS(1013), - [anon_sym_out_GT_PIPE] = ACTIONS(1013), - [anon_sym_e_GT_PIPE] = ACTIONS(1013), - [anon_sym_o_GT_PIPE] = ACTIONS(1013), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1013), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1013), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1013), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1013), - [aux_sym_expr_binary_token1] = ACTIONS(1013), - [aux_sym_expr_binary_token2] = ACTIONS(1013), - [aux_sym_expr_binary_token3] = ACTIONS(1013), - [aux_sym_expr_binary_token4] = ACTIONS(1013), - [aux_sym_expr_binary_token5] = ACTIONS(1013), - [aux_sym_expr_binary_token6] = ACTIONS(1013), - [aux_sym_expr_binary_token7] = ACTIONS(1013), - [aux_sym_expr_binary_token8] = ACTIONS(1013), - [aux_sym_expr_binary_token9] = ACTIONS(1013), - [aux_sym_expr_binary_token10] = ACTIONS(1013), - [aux_sym_expr_binary_token11] = ACTIONS(1013), - [aux_sym_expr_binary_token12] = ACTIONS(1013), - [aux_sym_expr_binary_token13] = ACTIONS(1013), - [aux_sym_expr_binary_token14] = ACTIONS(1013), - [aux_sym_expr_binary_token15] = ACTIONS(1013), - [aux_sym_expr_binary_token16] = ACTIONS(1013), - [aux_sym_expr_binary_token17] = ACTIONS(1013), - [aux_sym_expr_binary_token18] = ACTIONS(1013), - [aux_sym_expr_binary_token19] = ACTIONS(1013), - [aux_sym_expr_binary_token20] = ACTIONS(1013), - [aux_sym_expr_binary_token21] = ACTIONS(1013), - [aux_sym_expr_binary_token22] = ACTIONS(1013), - [aux_sym_expr_binary_token23] = ACTIONS(1013), - [aux_sym_expr_binary_token24] = ACTIONS(1013), - [aux_sym_expr_binary_token25] = ACTIONS(1013), - [aux_sym_expr_binary_token26] = ACTIONS(1013), - [aux_sym_expr_binary_token27] = ACTIONS(1013), - [aux_sym_expr_binary_token28] = ACTIONS(1013), - [anon_sym_DOT_DOT2] = ACTIONS(1011), - [anon_sym_DOT] = ACTIONS(3990), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1013), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1013), - [anon_sym_err_GT] = ACTIONS(1011), - [anon_sym_out_GT] = ACTIONS(1011), - [anon_sym_e_GT] = ACTIONS(1011), - [anon_sym_o_GT] = ACTIONS(1011), - [anon_sym_err_PLUSout_GT] = ACTIONS(1011), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1011), - [anon_sym_o_PLUSe_GT] = ACTIONS(1011), - [anon_sym_e_PLUSo_GT] = ACTIONS(1011), - [anon_sym_err_GT_GT] = ACTIONS(1013), - [anon_sym_out_GT_GT] = ACTIONS(1013), - [anon_sym_e_GT_GT] = ACTIONS(1013), - [anon_sym_o_GT_GT] = ACTIONS(1013), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1013), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1013), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1013), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1013), - [anon_sym_POUND] = ACTIONS(247), - }, - [1190] = { - [sym__val_range] = STATE(7420), - [sym__value] = STATE(1663), - [sym_val_nothing] = STATE(1673), - [sym_val_bool] = STATE(1515), - [sym_val_variable] = STATE(1673), - [sym_val_number] = STATE(1673), - [sym__val_number_decimal] = STATE(1233), - [sym__val_number] = STATE(1734), - [sym_val_duration] = STATE(1673), - [sym_val_filesize] = STATE(1673), - [sym_val_binary] = STATE(1673), - [sym_val_string] = STATE(1673), - [sym__str_double_quotes] = STATE(1675), - [sym_val_interpolated] = STATE(1673), - [sym__inter_single_quotes] = STATE(1583), - [sym__inter_double_quotes] = STATE(1584), - [sym_val_list] = STATE(1673), - [sym_val_record] = STATE(1673), - [sym_val_table] = STATE(1673), - [sym_val_closure] = STATE(1673), - [sym_unquoted] = STATE(1664), - [sym__unquoted_anonymous_prefix] = STATE(7560), - [sym_comment] = STATE(1190), - [anon_sym_true] = ACTIONS(4369), - [anon_sym_false] = ACTIONS(4369), - [anon_sym_null] = ACTIONS(4371), - [aux_sym_cmd_identifier_token38] = ACTIONS(4373), - [aux_sym_cmd_identifier_token39] = ACTIONS(4373), - [aux_sym_cmd_identifier_token40] = ACTIONS(4373), - [anon_sym_LBRACK] = ACTIONS(2603), - [anon_sym_LPAREN] = ACTIONS(4375), - [anon_sym_DOLLAR] = ACTIONS(3881), - [anon_sym_LBRACE] = ACTIONS(2613), - [anon_sym_DOT_DOT] = ACTIONS(4377), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4379), - [anon_sym_DOT_DOT_LT] = ACTIONS(4379), - [aux_sym__val_number_decimal_token1] = ACTIONS(4381), - [aux_sym__val_number_decimal_token2] = ACTIONS(4383), - [aux_sym__val_number_decimal_token3] = ACTIONS(4385), - [aux_sym__val_number_decimal_token4] = ACTIONS(4387), - [aux_sym__val_number_token1] = ACTIONS(2627), - [aux_sym__val_number_token2] = ACTIONS(2627), - [aux_sym__val_number_token3] = ACTIONS(2627), - [anon_sym_0b] = ACTIONS(2629), - [anon_sym_0o] = ACTIONS(2631), - [anon_sym_0x] = ACTIONS(2631), - [sym_val_date] = ACTIONS(4389), - [anon_sym_DQUOTE] = ACTIONS(2635), - [sym__str_single_quotes] = ACTIONS(2637), - [sym__str_back_ticks] = ACTIONS(2637), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2639), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2641), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(4391), - [anon_sym_POUND] = ACTIONS(247), - }, - [1191] = { - [sym__val_range] = STATE(7499), - [sym__value] = STATE(5713), - [sym_val_nothing] = STATE(4130), - [sym_val_bool] = STATE(5575), - [sym_val_variable] = STATE(4130), - [sym_val_number] = STATE(4130), - [sym__val_number_decimal] = STATE(5071), - [sym__val_number] = STATE(4118), - [sym_val_duration] = STATE(4130), - [sym_val_filesize] = STATE(4130), - [sym_val_binary] = STATE(4130), - [sym_val_string] = STATE(4130), - [sym__str_double_quotes] = STATE(3551), - [sym_val_interpolated] = STATE(4130), - [sym__inter_single_quotes] = STATE(4213), - [sym__inter_double_quotes] = STATE(4156), - [sym_val_list] = STATE(4130), - [sym_val_record] = STATE(4130), - [sym_val_table] = STATE(4130), - [sym_val_closure] = STATE(4130), - [sym_unquoted] = STATE(5718), - [sym__unquoted_anonymous_prefix] = STATE(7504), - [sym_comment] = STATE(1191), - [anon_sym_true] = ACTIONS(4401), - [anon_sym_false] = ACTIONS(4401), - [anon_sym_null] = ACTIONS(4403), - [aux_sym_cmd_identifier_token38] = ACTIONS(4405), - [aux_sym_cmd_identifier_token39] = ACTIONS(4405), - [aux_sym_cmd_identifier_token40] = ACTIONS(4405), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(4407), - [anon_sym_DOLLAR] = ACTIONS(4409), - [anon_sym_LBRACE] = ACTIONS(3453), - [anon_sym_DOT_DOT] = ACTIONS(4411), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4413), - [anon_sym_DOT_DOT_LT] = ACTIONS(4413), - [aux_sym__val_number_decimal_token1] = ACTIONS(4415), - [aux_sym__val_number_decimal_token2] = ACTIONS(4417), - [aux_sym__val_number_decimal_token3] = ACTIONS(4419), - [aux_sym__val_number_decimal_token4] = ACTIONS(4421), - [aux_sym__val_number_token1] = ACTIONS(3469), - [aux_sym__val_number_token2] = ACTIONS(3469), - [aux_sym__val_number_token3] = ACTIONS(3469), - [anon_sym_0b] = ACTIONS(3471), - [anon_sym_0o] = ACTIONS(3473), - [anon_sym_0x] = ACTIONS(3473), - [sym_val_date] = ACTIONS(4423), - [anon_sym_DQUOTE] = ACTIONS(3477), - [sym__str_single_quotes] = ACTIONS(3479), - [sym__str_back_ticks] = ACTIONS(3479), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3481), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3483), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3485), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), }, [1192] = { - [sym__val_range] = STATE(7420), - [sym__value] = STATE(1666), - [sym_val_nothing] = STATE(1673), - [sym_val_bool] = STATE(1515), - [sym_val_variable] = STATE(1673), - [sym_val_number] = STATE(1673), - [sym__val_number_decimal] = STATE(1233), - [sym__val_number] = STATE(1734), - [sym_val_duration] = STATE(1673), - [sym_val_filesize] = STATE(1673), - [sym_val_binary] = STATE(1673), - [sym_val_string] = STATE(1673), - [sym__str_double_quotes] = STATE(1675), - [sym_val_interpolated] = STATE(1673), - [sym__inter_single_quotes] = STATE(1583), - [sym__inter_double_quotes] = STATE(1584), - [sym_val_list] = STATE(1673), - [sym_val_record] = STATE(1673), - [sym_val_table] = STATE(1673), - [sym_val_closure] = STATE(1673), - [sym_unquoted] = STATE(1667), - [sym__unquoted_anonymous_prefix] = STATE(7560), + [sym_path] = STATE(1268), [sym_comment] = STATE(1192), - [anon_sym_true] = ACTIONS(4369), - [anon_sym_false] = ACTIONS(4369), - [anon_sym_null] = ACTIONS(4371), - [aux_sym_cmd_identifier_token38] = ACTIONS(4373), - [aux_sym_cmd_identifier_token39] = ACTIONS(4373), - [aux_sym_cmd_identifier_token40] = ACTIONS(4373), - [anon_sym_LBRACK] = ACTIONS(2603), - [anon_sym_LPAREN] = ACTIONS(4375), - [anon_sym_DOLLAR] = ACTIONS(3881), - [anon_sym_LBRACE] = ACTIONS(2613), - [anon_sym_DOT_DOT] = ACTIONS(4377), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4379), - [anon_sym_DOT_DOT_LT] = ACTIONS(4379), - [aux_sym__val_number_decimal_token1] = ACTIONS(4381), - [aux_sym__val_number_decimal_token2] = ACTIONS(4383), - [aux_sym__val_number_decimal_token3] = ACTIONS(4385), - [aux_sym__val_number_decimal_token4] = ACTIONS(4387), - [aux_sym__val_number_token1] = ACTIONS(2627), - [aux_sym__val_number_token2] = ACTIONS(2627), - [aux_sym__val_number_token3] = ACTIONS(2627), - [anon_sym_0b] = ACTIONS(2629), - [anon_sym_0o] = ACTIONS(2631), - [anon_sym_0x] = ACTIONS(2631), - [sym_val_date] = ACTIONS(4389), - [anon_sym_DQUOTE] = ACTIONS(2635), - [sym__str_single_quotes] = ACTIONS(2637), - [sym__str_back_ticks] = ACTIONS(2637), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2639), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2641), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(4391), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(1195), + [anon_sym_EQ] = ACTIONS(1027), + [anon_sym_PLUS_EQ] = ACTIONS(1029), + [anon_sym_DASH_EQ] = ACTIONS(1029), + [anon_sym_STAR_EQ] = ACTIONS(1029), + [anon_sym_SLASH_EQ] = ACTIONS(1029), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1029), + [sym__newline] = ACTIONS(1027), + [anon_sym_SEMI] = ACTIONS(1029), + [anon_sym_PIPE] = ACTIONS(1029), + [anon_sym_err_GT_PIPE] = ACTIONS(1029), + [anon_sym_out_GT_PIPE] = ACTIONS(1029), + [anon_sym_e_GT_PIPE] = ACTIONS(1029), + [anon_sym_o_GT_PIPE] = ACTIONS(1029), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1029), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1029), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1029), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1029), + [anon_sym_RPAREN] = ACTIONS(1029), + [anon_sym_LBRACE] = ACTIONS(1029), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1029), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1029), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1029), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1029), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1029), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1029), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1029), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1029), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1029), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1029), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1029), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1029), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1029), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1029), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1029), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1029), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1029), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1029), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1029), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1029), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1029), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1029), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1029), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1029), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1029), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1029), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1029), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1029), + [anon_sym_DOT_DOT2] = ACTIONS(1027), + [anon_sym_DOT] = ACTIONS(4008), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1029), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1029), + [anon_sym_err_GT] = ACTIONS(1027), + [anon_sym_out_GT] = ACTIONS(1027), + [anon_sym_e_GT] = ACTIONS(1027), + [anon_sym_o_GT] = ACTIONS(1027), + [anon_sym_err_PLUSout_GT] = ACTIONS(1027), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1027), + [anon_sym_o_PLUSe_GT] = ACTIONS(1027), + [anon_sym_e_PLUSo_GT] = ACTIONS(1027), + [anon_sym_err_GT_GT] = ACTIONS(1029), + [anon_sym_out_GT_GT] = ACTIONS(1029), + [anon_sym_e_GT_GT] = ACTIONS(1029), + [anon_sym_o_GT_GT] = ACTIONS(1029), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1029), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1029), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1029), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1029), + [anon_sym_POUND] = ACTIONS(249), }, [1193] = { - [sym__val_range] = STATE(7499), - [sym__value] = STATE(5720), - [sym_val_nothing] = STATE(4130), - [sym_val_bool] = STATE(5575), - [sym_val_variable] = STATE(4130), - [sym_val_number] = STATE(4130), - [sym__val_number_decimal] = STATE(5071), - [sym__val_number] = STATE(4118), - [sym_val_duration] = STATE(4130), - [sym_val_filesize] = STATE(4130), - [sym_val_binary] = STATE(4130), - [sym_val_string] = STATE(4130), - [sym__str_double_quotes] = STATE(3551), - [sym_val_interpolated] = STATE(4130), - [sym__inter_single_quotes] = STATE(4213), - [sym__inter_double_quotes] = STATE(4156), - [sym_val_list] = STATE(4130), - [sym_val_record] = STATE(4130), - [sym_val_table] = STATE(4130), - [sym_val_closure] = STATE(4130), - [sym_unquoted] = STATE(5721), - [sym__unquoted_anonymous_prefix] = STATE(7504), + [sym_path] = STATE(1247), [sym_comment] = STATE(1193), - [anon_sym_true] = ACTIONS(4401), - [anon_sym_false] = ACTIONS(4401), - [anon_sym_null] = ACTIONS(4403), - [aux_sym_cmd_identifier_token38] = ACTIONS(4405), - [aux_sym_cmd_identifier_token39] = ACTIONS(4405), - [aux_sym_cmd_identifier_token40] = ACTIONS(4405), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(4407), - [anon_sym_DOLLAR] = ACTIONS(4409), - [anon_sym_LBRACE] = ACTIONS(3453), - [anon_sym_DOT_DOT] = ACTIONS(4411), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4413), - [anon_sym_DOT_DOT_LT] = ACTIONS(4413), - [aux_sym__val_number_decimal_token1] = ACTIONS(4415), - [aux_sym__val_number_decimal_token2] = ACTIONS(4417), - [aux_sym__val_number_decimal_token3] = ACTIONS(4419), - [aux_sym__val_number_decimal_token4] = ACTIONS(4421), - [aux_sym__val_number_token1] = ACTIONS(3469), - [aux_sym__val_number_token2] = ACTIONS(3469), - [aux_sym__val_number_token3] = ACTIONS(3469), - [anon_sym_0b] = ACTIONS(3471), - [anon_sym_0o] = ACTIONS(3473), - [anon_sym_0x] = ACTIONS(3473), - [sym_val_date] = ACTIONS(4423), - [anon_sym_DQUOTE] = ACTIONS(3477), - [sym__str_single_quotes] = ACTIONS(3479), - [sym__str_back_ticks] = ACTIONS(3479), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3481), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3483), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3485), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(1193), + [anon_sym_EQ] = ACTIONS(1031), + [anon_sym_PLUS_EQ] = ACTIONS(1033), + [anon_sym_DASH_EQ] = ACTIONS(1033), + [anon_sym_STAR_EQ] = ACTIONS(1033), + [anon_sym_SLASH_EQ] = ACTIONS(1033), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1033), + [sym__newline] = ACTIONS(1033), + [anon_sym_SEMI] = ACTIONS(1033), + [anon_sym_PIPE] = ACTIONS(1033), + [anon_sym_err_GT_PIPE] = ACTIONS(1033), + [anon_sym_out_GT_PIPE] = ACTIONS(1033), + [anon_sym_e_GT_PIPE] = ACTIONS(1033), + [anon_sym_o_GT_PIPE] = ACTIONS(1033), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1033), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1033), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1033), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1033), + [anon_sym_RPAREN] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1033), + [aux_sym_expr_binary_token1] = ACTIONS(1033), + [aux_sym_expr_binary_token2] = ACTIONS(1033), + [aux_sym_expr_binary_token3] = ACTIONS(1033), + [aux_sym_expr_binary_token4] = ACTIONS(1033), + [aux_sym_expr_binary_token5] = ACTIONS(1033), + [aux_sym_expr_binary_token6] = ACTIONS(1033), + [aux_sym_expr_binary_token7] = ACTIONS(1033), + [aux_sym_expr_binary_token8] = ACTIONS(1033), + [aux_sym_expr_binary_token9] = ACTIONS(1033), + [aux_sym_expr_binary_token10] = ACTIONS(1033), + [aux_sym_expr_binary_token11] = ACTIONS(1033), + [aux_sym_expr_binary_token12] = ACTIONS(1033), + [aux_sym_expr_binary_token13] = ACTIONS(1033), + [aux_sym_expr_binary_token14] = ACTIONS(1033), + [aux_sym_expr_binary_token15] = ACTIONS(1033), + [aux_sym_expr_binary_token16] = ACTIONS(1033), + [aux_sym_expr_binary_token17] = ACTIONS(1033), + [aux_sym_expr_binary_token18] = ACTIONS(1033), + [aux_sym_expr_binary_token19] = ACTIONS(1033), + [aux_sym_expr_binary_token20] = ACTIONS(1033), + [aux_sym_expr_binary_token21] = ACTIONS(1033), + [aux_sym_expr_binary_token22] = ACTIONS(1033), + [aux_sym_expr_binary_token23] = ACTIONS(1033), + [aux_sym_expr_binary_token24] = ACTIONS(1033), + [aux_sym_expr_binary_token25] = ACTIONS(1033), + [aux_sym_expr_binary_token26] = ACTIONS(1033), + [aux_sym_expr_binary_token27] = ACTIONS(1033), + [aux_sym_expr_binary_token28] = ACTIONS(1033), + [anon_sym_DOT_DOT2] = ACTIONS(1031), + [anon_sym_DOT] = ACTIONS(4491), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1033), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1033), + [anon_sym_err_GT] = ACTIONS(1031), + [anon_sym_out_GT] = ACTIONS(1031), + [anon_sym_e_GT] = ACTIONS(1031), + [anon_sym_o_GT] = ACTIONS(1031), + [anon_sym_err_PLUSout_GT] = ACTIONS(1031), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1031), + [anon_sym_o_PLUSe_GT] = ACTIONS(1031), + [anon_sym_e_PLUSo_GT] = ACTIONS(1031), + [anon_sym_err_GT_GT] = ACTIONS(1033), + [anon_sym_out_GT_GT] = ACTIONS(1033), + [anon_sym_e_GT_GT] = ACTIONS(1033), + [anon_sym_o_GT_GT] = ACTIONS(1033), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1033), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1033), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1033), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1033), + [anon_sym_POUND] = ACTIONS(249), }, [1194] = { - [sym__val_range] = STATE(7499), - [sym__value] = STATE(5849), - [sym_val_nothing] = STATE(4130), - [sym_val_bool] = STATE(5575), - [sym_val_variable] = STATE(4130), - [sym_val_number] = STATE(4130), - [sym__val_number_decimal] = STATE(5071), - [sym__val_number] = STATE(4118), - [sym_val_duration] = STATE(4130), - [sym_val_filesize] = STATE(4130), - [sym_val_binary] = STATE(4130), - [sym_val_string] = STATE(4130), - [sym__str_double_quotes] = STATE(3551), - [sym_val_interpolated] = STATE(4130), - [sym__inter_single_quotes] = STATE(4213), - [sym__inter_double_quotes] = STATE(4156), - [sym_val_list] = STATE(4130), - [sym_val_record] = STATE(4130), - [sym_val_table] = STATE(4130), - [sym_val_closure] = STATE(4130), - [sym_unquoted] = STATE(5850), - [sym__unquoted_anonymous_prefix] = STATE(7504), + [sym_cell_path] = STATE(1320), + [sym_path] = STATE(1299), [sym_comment] = STATE(1194), - [anon_sym_true] = ACTIONS(4401), - [anon_sym_false] = ACTIONS(4401), - [anon_sym_null] = ACTIONS(4403), - [aux_sym_cmd_identifier_token38] = ACTIONS(4405), - [aux_sym_cmd_identifier_token39] = ACTIONS(4405), - [aux_sym_cmd_identifier_token40] = ACTIONS(4405), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(4407), - [anon_sym_DOLLAR] = ACTIONS(4409), - [anon_sym_LBRACE] = ACTIONS(3453), - [anon_sym_DOT_DOT] = ACTIONS(4411), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4413), - [anon_sym_DOT_DOT_LT] = ACTIONS(4413), - [aux_sym__val_number_decimal_token1] = ACTIONS(4415), - [aux_sym__val_number_decimal_token2] = ACTIONS(4417), - [aux_sym__val_number_decimal_token3] = ACTIONS(4419), - [aux_sym__val_number_decimal_token4] = ACTIONS(4421), - [aux_sym__val_number_token1] = ACTIONS(3469), - [aux_sym__val_number_token2] = ACTIONS(3469), - [aux_sym__val_number_token3] = ACTIONS(3469), - [anon_sym_0b] = ACTIONS(3471), - [anon_sym_0o] = ACTIONS(3473), - [anon_sym_0x] = ACTIONS(3473), - [sym_val_date] = ACTIONS(4423), - [anon_sym_DQUOTE] = ACTIONS(3477), - [sym__str_single_quotes] = ACTIONS(3479), - [sym__str_back_ticks] = ACTIONS(3479), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3481), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3483), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3485), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(1225), + [ts_builtin_sym_end] = ACTIONS(1023), + [anon_sym_EQ] = ACTIONS(1021), + [anon_sym_PLUS_EQ] = ACTIONS(1023), + [anon_sym_DASH_EQ] = ACTIONS(1023), + [anon_sym_STAR_EQ] = ACTIONS(1023), + [anon_sym_SLASH_EQ] = ACTIONS(1023), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1023), + [sym__newline] = ACTIONS(1023), + [anon_sym_SEMI] = ACTIONS(1023), + [anon_sym_PIPE] = ACTIONS(1023), + [anon_sym_err_GT_PIPE] = ACTIONS(1023), + [anon_sym_out_GT_PIPE] = ACTIONS(1023), + [anon_sym_e_GT_PIPE] = ACTIONS(1023), + [anon_sym_o_GT_PIPE] = ACTIONS(1023), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1023), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1023), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1023), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1023), + [aux_sym_expr_binary_token1] = ACTIONS(1023), + [aux_sym_expr_binary_token2] = ACTIONS(1023), + [aux_sym_expr_binary_token3] = ACTIONS(1023), + [aux_sym_expr_binary_token4] = ACTIONS(1023), + [aux_sym_expr_binary_token5] = ACTIONS(1023), + [aux_sym_expr_binary_token6] = ACTIONS(1023), + [aux_sym_expr_binary_token7] = ACTIONS(1023), + [aux_sym_expr_binary_token8] = ACTIONS(1023), + [aux_sym_expr_binary_token9] = ACTIONS(1023), + [aux_sym_expr_binary_token10] = ACTIONS(1023), + [aux_sym_expr_binary_token11] = ACTIONS(1023), + [aux_sym_expr_binary_token12] = ACTIONS(1023), + [aux_sym_expr_binary_token13] = ACTIONS(1023), + [aux_sym_expr_binary_token14] = ACTIONS(1023), + [aux_sym_expr_binary_token15] = ACTIONS(1023), + [aux_sym_expr_binary_token16] = ACTIONS(1023), + [aux_sym_expr_binary_token17] = ACTIONS(1023), + [aux_sym_expr_binary_token18] = ACTIONS(1023), + [aux_sym_expr_binary_token19] = ACTIONS(1023), + [aux_sym_expr_binary_token20] = ACTIONS(1023), + [aux_sym_expr_binary_token21] = ACTIONS(1023), + [aux_sym_expr_binary_token22] = ACTIONS(1023), + [aux_sym_expr_binary_token23] = ACTIONS(1023), + [aux_sym_expr_binary_token24] = ACTIONS(1023), + [aux_sym_expr_binary_token25] = ACTIONS(1023), + [aux_sym_expr_binary_token26] = ACTIONS(1023), + [aux_sym_expr_binary_token27] = ACTIONS(1023), + [aux_sym_expr_binary_token28] = ACTIONS(1023), + [anon_sym_DOT_DOT2] = ACTIONS(1021), + [anon_sym_DOT] = ACTIONS(4494), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1023), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1023), + [anon_sym_err_GT] = ACTIONS(1021), + [anon_sym_out_GT] = ACTIONS(1021), + [anon_sym_e_GT] = ACTIONS(1021), + [anon_sym_o_GT] = ACTIONS(1021), + [anon_sym_err_PLUSout_GT] = ACTIONS(1021), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1021), + [anon_sym_o_PLUSe_GT] = ACTIONS(1021), + [anon_sym_e_PLUSo_GT] = ACTIONS(1021), + [anon_sym_err_GT_GT] = ACTIONS(1023), + [anon_sym_out_GT_GT] = ACTIONS(1023), + [anon_sym_e_GT_GT] = ACTIONS(1023), + [anon_sym_o_GT_GT] = ACTIONS(1023), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1023), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1023), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1023), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1023), + [anon_sym_POUND] = ACTIONS(249), }, [1195] = { - [sym__val_range] = STATE(7629), - [sym__value] = STATE(5389), - [sym_val_nothing] = STATE(4042), - [sym_val_bool] = STATE(5510), - [sym_val_variable] = STATE(4042), - [sym_val_number] = STATE(4042), - [sym__val_number_decimal] = STATE(4917), - [sym__val_number] = STATE(3465), - [sym_val_duration] = STATE(4042), - [sym_val_filesize] = STATE(4042), - [sym_val_binary] = STATE(4042), - [sym_val_string] = STATE(4042), - [sym__str_double_quotes] = STATE(2725), - [sym_val_interpolated] = STATE(4042), - [sym__inter_single_quotes] = STATE(4011), - [sym__inter_double_quotes] = STATE(4052), - [sym_val_list] = STATE(4042), - [sym_val_record] = STATE(4042), - [sym_val_table] = STATE(4042), - [sym_val_closure] = STATE(4042), - [sym_unquoted] = STATE(5440), - [sym__unquoted_anonymous_prefix] = STATE(7720), + [sym_path] = STATE(1268), [sym_comment] = STATE(1195), - [anon_sym_true] = ACTIONS(3995), - [anon_sym_false] = ACTIONS(3995), - [anon_sym_null] = ACTIONS(3997), - [aux_sym_cmd_identifier_token38] = ACTIONS(3999), - [aux_sym_cmd_identifier_token39] = ACTIONS(3999), - [aux_sym_cmd_identifier_token40] = ACTIONS(3999), - [anon_sym_LBRACK] = ACTIONS(3397), - [anon_sym_LPAREN] = ACTIONS(4001), - [anon_sym_DOLLAR] = ACTIONS(4003), - [anon_sym_LBRACE] = ACTIONS(3405), - [anon_sym_DOT_DOT] = ACTIONS(4005), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4007), - [anon_sym_DOT_DOT_LT] = ACTIONS(4007), - [aux_sym__val_number_decimal_token1] = ACTIONS(4009), - [aux_sym__val_number_decimal_token2] = ACTIONS(4011), - [aux_sym__val_number_decimal_token3] = ACTIONS(4013), - [aux_sym__val_number_decimal_token4] = ACTIONS(4015), - [aux_sym__val_number_token1] = ACTIONS(3421), - [aux_sym__val_number_token2] = ACTIONS(3421), - [aux_sym__val_number_token3] = ACTIONS(3421), - [anon_sym_0b] = ACTIONS(3423), - [anon_sym_0o] = ACTIONS(3425), - [anon_sym_0x] = ACTIONS(3425), - [sym_val_date] = ACTIONS(4017), - [anon_sym_DQUOTE] = ACTIONS(3429), - [sym__str_single_quotes] = ACTIONS(3431), - [sym__str_back_ticks] = ACTIONS(3431), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3433), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3435), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3437), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(1195), + [anon_sym_EQ] = ACTIONS(1031), + [anon_sym_PLUS_EQ] = ACTIONS(1033), + [anon_sym_DASH_EQ] = ACTIONS(1033), + [anon_sym_STAR_EQ] = ACTIONS(1033), + [anon_sym_SLASH_EQ] = ACTIONS(1033), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1033), + [sym__newline] = ACTIONS(1031), + [anon_sym_SEMI] = ACTIONS(1033), + [anon_sym_PIPE] = ACTIONS(1033), + [anon_sym_err_GT_PIPE] = ACTIONS(1033), + [anon_sym_out_GT_PIPE] = ACTIONS(1033), + [anon_sym_e_GT_PIPE] = ACTIONS(1033), + [anon_sym_o_GT_PIPE] = ACTIONS(1033), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1033), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1033), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1033), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1033), + [anon_sym_RPAREN] = ACTIONS(1033), + [anon_sym_LBRACE] = ACTIONS(1033), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1033), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1033), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1033), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1033), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1033), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1033), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1033), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1033), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1033), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1033), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1033), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1033), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1033), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1033), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1033), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1033), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1033), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1033), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1033), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1033), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1033), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1033), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1033), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1033), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1033), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1033), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1033), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1033), + [anon_sym_DOT_DOT2] = ACTIONS(1031), + [anon_sym_DOT] = ACTIONS(4496), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1033), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1033), + [anon_sym_err_GT] = ACTIONS(1031), + [anon_sym_out_GT] = ACTIONS(1031), + [anon_sym_e_GT] = ACTIONS(1031), + [anon_sym_o_GT] = ACTIONS(1031), + [anon_sym_err_PLUSout_GT] = ACTIONS(1031), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1031), + [anon_sym_o_PLUSe_GT] = ACTIONS(1031), + [anon_sym_e_PLUSo_GT] = ACTIONS(1031), + [anon_sym_err_GT_GT] = ACTIONS(1033), + [anon_sym_out_GT_GT] = ACTIONS(1033), + [anon_sym_e_GT_GT] = ACTIONS(1033), + [anon_sym_o_GT_GT] = ACTIONS(1033), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1033), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1033), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1033), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1033), + [anon_sym_POUND] = ACTIONS(249), }, [1196] = { - [sym__val_range] = STATE(7499), - [sym__value] = STATE(5852), - [sym_val_nothing] = STATE(4130), - [sym_val_bool] = STATE(5575), - [sym_val_variable] = STATE(4130), - [sym_val_number] = STATE(4130), - [sym__val_number_decimal] = STATE(5071), - [sym__val_number] = STATE(4118), - [sym_val_duration] = STATE(4130), - [sym_val_filesize] = STATE(4130), - [sym_val_binary] = STATE(4130), - [sym_val_string] = STATE(4130), - [sym__str_double_quotes] = STATE(3551), - [sym_val_interpolated] = STATE(4130), - [sym__inter_single_quotes] = STATE(4213), - [sym__inter_double_quotes] = STATE(4156), - [sym_val_list] = STATE(4130), - [sym_val_record] = STATE(4130), - [sym_val_table] = STATE(4130), - [sym_val_closure] = STATE(4130), - [sym_unquoted] = STATE(5854), - [sym__unquoted_anonymous_prefix] = STATE(7504), [sym_comment] = STATE(1196), - [anon_sym_true] = ACTIONS(4401), - [anon_sym_false] = ACTIONS(4401), - [anon_sym_null] = ACTIONS(4403), - [aux_sym_cmd_identifier_token38] = ACTIONS(4405), - [aux_sym_cmd_identifier_token39] = ACTIONS(4405), - [aux_sym_cmd_identifier_token40] = ACTIONS(4405), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(4407), - [anon_sym_DOLLAR] = ACTIONS(4409), - [anon_sym_LBRACE] = ACTIONS(3453), - [anon_sym_DOT_DOT] = ACTIONS(4411), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4413), - [anon_sym_DOT_DOT_LT] = ACTIONS(4413), - [aux_sym__val_number_decimal_token1] = ACTIONS(4415), - [aux_sym__val_number_decimal_token2] = ACTIONS(4417), - [aux_sym__val_number_decimal_token3] = ACTIONS(4419), - [aux_sym__val_number_decimal_token4] = ACTIONS(4421), - [aux_sym__val_number_token1] = ACTIONS(3469), - [aux_sym__val_number_token2] = ACTIONS(3469), - [aux_sym__val_number_token3] = ACTIONS(3469), - [anon_sym_0b] = ACTIONS(3471), - [anon_sym_0o] = ACTIONS(3473), - [anon_sym_0x] = ACTIONS(3473), - [sym_val_date] = ACTIONS(4423), - [anon_sym_DQUOTE] = ACTIONS(3477), - [sym__str_single_quotes] = ACTIONS(3479), - [sym__str_back_ticks] = ACTIONS(3479), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3481), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3483), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3485), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(1538), + [anon_sym_false] = ACTIONS(1538), + [anon_sym_null] = ACTIONS(1538), + [aux_sym_cmd_identifier_token38] = ACTIONS(1538), + [aux_sym_cmd_identifier_token39] = ACTIONS(1538), + [aux_sym_cmd_identifier_token40] = ACTIONS(1538), + [sym__newline] = ACTIONS(1538), + [anon_sym_SEMI] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_err_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_GT_PIPE] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), + [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_LPAREN] = ACTIONS(1538), + [anon_sym_RPAREN] = ACTIONS(1538), + [anon_sym_DOLLAR] = ACTIONS(1536), + [anon_sym_DASH_DASH] = ACTIONS(1538), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1538), + [anon_sym_RBRACE] = ACTIONS(1538), + [anon_sym_DOT_DOT] = ACTIONS(1536), + [anon_sym_DOT_DOT2] = ACTIONS(1536), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1536), + [anon_sym_DOT_DOT_LT] = ACTIONS(1536), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), + [aux_sym__immediate_decimal_token2] = ACTIONS(4111), + [aux_sym__val_number_decimal_token1] = ACTIONS(1536), + [aux_sym__val_number_decimal_token2] = ACTIONS(1538), + [aux_sym__val_number_decimal_token3] = ACTIONS(1538), + [aux_sym__val_number_decimal_token4] = ACTIONS(1538), + [aux_sym__val_number_token1] = ACTIONS(1538), + [aux_sym__val_number_token2] = ACTIONS(1538), + [aux_sym__val_number_token3] = ACTIONS(1538), + [anon_sym_0b] = ACTIONS(1536), + [sym_filesize_unit] = ACTIONS(1538), + [sym_duration_unit] = ACTIONS(1538), + [anon_sym_0o] = ACTIONS(1536), + [anon_sym_0x] = ACTIONS(1536), + [sym_val_date] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1538), + [sym__str_single_quotes] = ACTIONS(1538), + [sym__str_back_ticks] = ACTIONS(1538), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1538), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1538), + [anon_sym_err_GT] = ACTIONS(1536), + [anon_sym_out_GT] = ACTIONS(1536), + [anon_sym_e_GT] = ACTIONS(1536), + [anon_sym_o_GT] = ACTIONS(1536), + [anon_sym_err_PLUSout_GT] = ACTIONS(1536), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), + [anon_sym_o_PLUSe_GT] = ACTIONS(1536), + [anon_sym_e_PLUSo_GT] = ACTIONS(1536), + [anon_sym_err_GT_GT] = ACTIONS(1538), + [anon_sym_out_GT_GT] = ACTIONS(1538), + [anon_sym_e_GT_GT] = ACTIONS(1538), + [anon_sym_o_GT_GT] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), + [aux_sym_unquoted_token1] = ACTIONS(1536), + [aux_sym_unquoted_token2] = ACTIONS(1536), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1538), }, [1197] = { - [sym__val_range] = STATE(7629), - [sym__value] = STATE(5485), - [sym_val_nothing] = STATE(4042), - [sym_val_bool] = STATE(5510), - [sym_val_variable] = STATE(4042), - [sym_val_number] = STATE(4042), - [sym__val_number_decimal] = STATE(4917), - [sym__val_number] = STATE(3465), - [sym_val_duration] = STATE(4042), - [sym_val_filesize] = STATE(4042), - [sym_val_binary] = STATE(4042), - [sym_val_string] = STATE(4042), - [sym__str_double_quotes] = STATE(2725), - [sym_val_interpolated] = STATE(4042), - [sym__inter_single_quotes] = STATE(4011), - [sym__inter_double_quotes] = STATE(4052), - [sym_val_list] = STATE(4042), - [sym_val_record] = STATE(4042), - [sym_val_table] = STATE(4042), - [sym_val_closure] = STATE(4042), - [sym_unquoted] = STATE(5487), - [sym__unquoted_anonymous_prefix] = STATE(7720), + [sym__expr_parenthesized_immediate] = STATE(1747), + [sym__immediate_decimal] = STATE(1880), + [sym_val_variable] = STATE(1747), [sym_comment] = STATE(1197), - [anon_sym_true] = ACTIONS(3995), - [anon_sym_false] = ACTIONS(3995), - [anon_sym_null] = ACTIONS(3997), - [aux_sym_cmd_identifier_token38] = ACTIONS(3999), - [aux_sym_cmd_identifier_token39] = ACTIONS(3999), - [aux_sym_cmd_identifier_token40] = ACTIONS(3999), - [anon_sym_LBRACK] = ACTIONS(3397), - [anon_sym_LPAREN] = ACTIONS(4001), - [anon_sym_DOLLAR] = ACTIONS(4003), - [anon_sym_LBRACE] = ACTIONS(3405), - [anon_sym_DOT_DOT] = ACTIONS(4005), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4007), - [anon_sym_DOT_DOT_LT] = ACTIONS(4007), - [aux_sym__val_number_decimal_token1] = ACTIONS(4009), - [aux_sym__val_number_decimal_token2] = ACTIONS(4011), - [aux_sym__val_number_decimal_token3] = ACTIONS(4013), - [aux_sym__val_number_decimal_token4] = ACTIONS(4015), - [aux_sym__val_number_token1] = ACTIONS(3421), - [aux_sym__val_number_token2] = ACTIONS(3421), - [aux_sym__val_number_token3] = ACTIONS(3421), - [anon_sym_0b] = ACTIONS(3423), - [anon_sym_0o] = ACTIONS(3425), - [anon_sym_0x] = ACTIONS(3425), - [sym_val_date] = ACTIONS(4017), - [anon_sym_DQUOTE] = ACTIONS(3429), - [sym__str_single_quotes] = ACTIONS(3431), - [sym__str_back_ticks] = ACTIONS(3431), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3433), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3435), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3437), - [anon_sym_POUND] = ACTIONS(247), + [ts_builtin_sym_end] = ACTIONS(1570), + [anon_sym_true] = ACTIONS(1570), + [anon_sym_false] = ACTIONS(1570), + [anon_sym_null] = ACTIONS(1570), + [aux_sym_cmd_identifier_token38] = ACTIONS(1570), + [aux_sym_cmd_identifier_token39] = ACTIONS(1570), + [aux_sym_cmd_identifier_token40] = ACTIONS(1570), + [sym__newline] = ACTIONS(1570), + [anon_sym_SEMI] = ACTIONS(1570), + [anon_sym_PIPE] = ACTIONS(1570), + [anon_sym_err_GT_PIPE] = ACTIONS(1570), + [anon_sym_out_GT_PIPE] = ACTIONS(1570), + [anon_sym_e_GT_PIPE] = ACTIONS(1570), + [anon_sym_o_GT_PIPE] = ACTIONS(1570), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1570), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1570), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1570), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1570), + [anon_sym_LBRACK] = ACTIONS(1570), + [anon_sym_LPAREN] = ACTIONS(1560), + [anon_sym_DOLLAR] = ACTIONS(4171), + [anon_sym_DASH_DASH] = ACTIONS(1570), + [anon_sym_DASH] = ACTIONS(1560), + [anon_sym_LBRACE] = ACTIONS(1570), + [anon_sym_DOT_DOT] = ACTIONS(1560), + [anon_sym_LPAREN2] = ACTIONS(4173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1570), + [anon_sym_DOT_DOT_LT] = ACTIONS(1570), + [aux_sym__immediate_decimal_token1] = ACTIONS(4499), + [aux_sym__immediate_decimal_token3] = ACTIONS(4501), + [aux_sym__immediate_decimal_token4] = ACTIONS(4503), + [aux_sym__immediate_decimal_token5] = ACTIONS(4505), + [aux_sym__val_number_decimal_token1] = ACTIONS(1560), + [aux_sym__val_number_decimal_token2] = ACTIONS(1560), + [aux_sym__val_number_decimal_token3] = ACTIONS(1560), + [aux_sym__val_number_decimal_token4] = ACTIONS(1560), + [aux_sym__val_number_token1] = ACTIONS(1570), + [aux_sym__val_number_token2] = ACTIONS(1570), + [aux_sym__val_number_token3] = ACTIONS(1570), + [anon_sym_0b] = ACTIONS(1560), + [anon_sym_0o] = ACTIONS(1560), + [anon_sym_0x] = ACTIONS(1560), + [sym_val_date] = ACTIONS(1570), + [anon_sym_DQUOTE] = ACTIONS(1570), + [sym__str_single_quotes] = ACTIONS(1570), + [sym__str_back_ticks] = ACTIONS(1570), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1570), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1570), + [anon_sym_err_GT] = ACTIONS(1560), + [anon_sym_out_GT] = ACTIONS(1560), + [anon_sym_e_GT] = ACTIONS(1560), + [anon_sym_o_GT] = ACTIONS(1560), + [anon_sym_err_PLUSout_GT] = ACTIONS(1560), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1560), + [anon_sym_o_PLUSe_GT] = ACTIONS(1560), + [anon_sym_e_PLUSo_GT] = ACTIONS(1560), + [anon_sym_err_GT_GT] = ACTIONS(1570), + [anon_sym_out_GT_GT] = ACTIONS(1570), + [anon_sym_e_GT_GT] = ACTIONS(1570), + [anon_sym_o_GT_GT] = ACTIONS(1570), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1570), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1570), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1570), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1570), + [aux_sym_unquoted_token1] = ACTIONS(1560), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1570), }, [1198] = { - [sym__val_range] = STATE(7629), - [sym__value] = STATE(5522), - [sym_val_nothing] = STATE(4042), - [sym_val_bool] = STATE(5510), - [sym_val_variable] = STATE(4042), - [sym_val_number] = STATE(4042), - [sym__val_number_decimal] = STATE(4917), - [sym__val_number] = STATE(3465), - [sym_val_duration] = STATE(4042), - [sym_val_filesize] = STATE(4042), - [sym_val_binary] = STATE(4042), - [sym_val_string] = STATE(4042), - [sym__str_double_quotes] = STATE(2725), - [sym_val_interpolated] = STATE(4042), - [sym__inter_single_quotes] = STATE(4011), - [sym__inter_double_quotes] = STATE(4052), - [sym_val_list] = STATE(4042), - [sym_val_record] = STATE(4042), - [sym_val_table] = STATE(4042), - [sym_val_closure] = STATE(4042), - [sym_unquoted] = STATE(5390), - [sym__unquoted_anonymous_prefix] = STATE(7720), + [sym__match_pattern_expression] = STATE(3083), + [sym__match_pattern_value] = STATE(3079), + [sym__match_pattern_list] = STATE(3092), + [sym__match_pattern_record] = STATE(3125), + [sym_expr_parenthesized] = STATE(2897), + [sym_val_range] = STATE(3079), + [sym__val_range] = STATE(7928), + [sym_val_nothing] = STATE(3054), + [sym_val_bool] = STATE(3042), + [sym_val_variable] = STATE(2873), + [sym_val_number] = STATE(3054), + [sym__val_number_decimal] = STATE(2687), + [sym__val_number] = STATE(3094), + [sym_val_duration] = STATE(3054), + [sym_val_filesize] = STATE(3054), + [sym_val_binary] = STATE(3054), + [sym_val_string] = STATE(3054), + [sym__raw_str] = STATE(3122), + [sym__str_double_quotes] = STATE(3122), + [sym_val_table] = STATE(3054), + [sym__unquoted_in_list] = STATE(3083), + [sym__unquoted_anonymous_prefix] = STATE(7845), [sym_comment] = STATE(1198), - [anon_sym_true] = ACTIONS(3995), - [anon_sym_false] = ACTIONS(3995), - [anon_sym_null] = ACTIONS(3997), - [aux_sym_cmd_identifier_token38] = ACTIONS(3999), - [aux_sym_cmd_identifier_token39] = ACTIONS(3999), - [aux_sym_cmd_identifier_token40] = ACTIONS(3999), - [anon_sym_LBRACK] = ACTIONS(3397), - [anon_sym_LPAREN] = ACTIONS(4001), - [anon_sym_DOLLAR] = ACTIONS(4003), - [anon_sym_LBRACE] = ACTIONS(3405), - [anon_sym_DOT_DOT] = ACTIONS(4005), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4007), - [anon_sym_DOT_DOT_LT] = ACTIONS(4007), - [aux_sym__val_number_decimal_token1] = ACTIONS(4009), - [aux_sym__val_number_decimal_token2] = ACTIONS(4011), - [aux_sym__val_number_decimal_token3] = ACTIONS(4013), - [aux_sym__val_number_decimal_token4] = ACTIONS(4015), - [aux_sym__val_number_token1] = ACTIONS(3421), - [aux_sym__val_number_token2] = ACTIONS(3421), - [aux_sym__val_number_token3] = ACTIONS(3421), - [anon_sym_0b] = ACTIONS(3423), - [anon_sym_0o] = ACTIONS(3425), - [anon_sym_0x] = ACTIONS(3425), - [sym_val_date] = ACTIONS(4017), - [anon_sym_DQUOTE] = ACTIONS(3429), - [sym__str_single_quotes] = ACTIONS(3431), - [sym__str_back_ticks] = ACTIONS(3431), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3433), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3435), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3437), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym__match_pattern_list_repeat1] = STATE(1198), + [anon_sym_true] = ACTIONS(4507), + [anon_sym_false] = ACTIONS(4507), + [anon_sym_null] = ACTIONS(4510), + [aux_sym_cmd_identifier_token38] = ACTIONS(4513), + [aux_sym_cmd_identifier_token39] = ACTIONS(4513), + [aux_sym_cmd_identifier_token40] = ACTIONS(4513), + [anon_sym_LBRACK] = ACTIONS(4516), + [anon_sym_RBRACK] = ACTIONS(4519), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_DOLLAR] = ACTIONS(4524), + [anon_sym_LBRACE] = ACTIONS(4527), + [anon_sym_DOT_DOT] = ACTIONS(4530), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4533), + [anon_sym_DOT_DOT_LT] = ACTIONS(4533), + [aux_sym__val_number_decimal_token1] = ACTIONS(4536), + [aux_sym__val_number_decimal_token2] = ACTIONS(4539), + [aux_sym__val_number_decimal_token3] = ACTIONS(4542), + [aux_sym__val_number_decimal_token4] = ACTIONS(4545), + [aux_sym__val_number_token1] = ACTIONS(4548), + [aux_sym__val_number_token2] = ACTIONS(4548), + [aux_sym__val_number_token3] = ACTIONS(4548), + [anon_sym_0b] = ACTIONS(4551), + [anon_sym_0o] = ACTIONS(4554), + [anon_sym_0x] = ACTIONS(4554), + [sym_val_date] = ACTIONS(4557), + [anon_sym_DQUOTE] = ACTIONS(4560), + [sym__str_single_quotes] = ACTIONS(4563), + [sym__str_back_ticks] = ACTIONS(4563), + [anon_sym_err_GT] = ACTIONS(4566), + [anon_sym_out_GT] = ACTIONS(4566), + [anon_sym_e_GT] = ACTIONS(4566), + [anon_sym_o_GT] = ACTIONS(4566), + [anon_sym_err_PLUSout_GT] = ACTIONS(4566), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4566), + [anon_sym_o_PLUSe_GT] = ACTIONS(4566), + [anon_sym_e_PLUSo_GT] = ACTIONS(4566), + [anon_sym_err_GT_GT] = ACTIONS(4569), + [anon_sym_out_GT_GT] = ACTIONS(4569), + [anon_sym_e_GT_GT] = ACTIONS(4569), + [anon_sym_o_GT_GT] = ACTIONS(4569), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4569), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4569), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4569), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4569), + [aux_sym__unquoted_in_list_token1] = ACTIONS(4572), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(4575), }, [1199] = { - [sym__val_range] = STATE(7681), - [sym__value] = STATE(6006), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3707), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(5604), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(2002), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(6008), - [sym__unquoted_anonymous_prefix] = STATE(7695), + [sym__expr_parenthesized_immediate] = STATE(1748), + [sym__immediate_decimal] = STATE(1754), + [sym_val_variable] = STATE(1748), [sym_comment] = STATE(1199), - [anon_sym_true] = ACTIONS(3259), - [anon_sym_false] = ACTIONS(3259), - [anon_sym_null] = ACTIONS(3261), - [aux_sym_cmd_identifier_token38] = ACTIONS(3846), - [aux_sym_cmd_identifier_token39] = ACTIONS(3846), - [aux_sym_cmd_identifier_token40] = ACTIONS(3846), - [anon_sym_LBRACK] = ACTIONS(3848), - [anon_sym_LPAREN] = ACTIONS(4393), - [anon_sym_DOLLAR] = ACTIONS(4395), - [anon_sym_LBRACE] = ACTIONS(3854), - [anon_sym_DOT_DOT] = ACTIONS(4397), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4399), - [anon_sym_DOT_DOT_LT] = ACTIONS(4399), - [aux_sym__val_number_decimal_token1] = ACTIONS(3279), - [aux_sym__val_number_decimal_token2] = ACTIONS(3281), - [aux_sym__val_number_decimal_token3] = ACTIONS(3283), - [aux_sym__val_number_decimal_token4] = ACTIONS(3285), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3287), - [anon_sym_DQUOTE] = ACTIONS(3860), - [sym__str_single_quotes] = ACTIONS(3862), - [sym__str_back_ticks] = ACTIONS(3862), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3864), - [anon_sym_POUND] = ACTIONS(247), + [ts_builtin_sym_end] = ACTIONS(1610), + [anon_sym_true] = ACTIONS(1610), + [anon_sym_false] = ACTIONS(1610), + [anon_sym_null] = ACTIONS(1610), + [aux_sym_cmd_identifier_token38] = ACTIONS(1610), + [aux_sym_cmd_identifier_token39] = ACTIONS(1610), + [aux_sym_cmd_identifier_token40] = ACTIONS(1610), + [sym__newline] = ACTIONS(1610), + [anon_sym_SEMI] = ACTIONS(1610), + [anon_sym_PIPE] = ACTIONS(1610), + [anon_sym_err_GT_PIPE] = ACTIONS(1610), + [anon_sym_out_GT_PIPE] = ACTIONS(1610), + [anon_sym_e_GT_PIPE] = ACTIONS(1610), + [anon_sym_o_GT_PIPE] = ACTIONS(1610), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1610), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1610), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1610), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1610), + [anon_sym_LBRACK] = ACTIONS(1610), + [anon_sym_LPAREN] = ACTIONS(1608), + [anon_sym_DOLLAR] = ACTIONS(4171), + [anon_sym_DASH_DASH] = ACTIONS(1610), + [anon_sym_DASH] = ACTIONS(1608), + [anon_sym_LBRACE] = ACTIONS(1610), + [anon_sym_DOT_DOT] = ACTIONS(1608), + [anon_sym_LPAREN2] = ACTIONS(4173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1610), + [anon_sym_DOT_DOT_LT] = ACTIONS(1610), + [aux_sym__immediate_decimal_token1] = ACTIONS(4499), + [aux_sym__immediate_decimal_token3] = ACTIONS(4501), + [aux_sym__immediate_decimal_token4] = ACTIONS(4503), + [aux_sym__immediate_decimal_token5] = ACTIONS(4505), + [aux_sym__val_number_decimal_token1] = ACTIONS(1608), + [aux_sym__val_number_decimal_token2] = ACTIONS(1608), + [aux_sym__val_number_decimal_token3] = ACTIONS(1608), + [aux_sym__val_number_decimal_token4] = ACTIONS(1608), + [aux_sym__val_number_token1] = ACTIONS(1610), + [aux_sym__val_number_token2] = ACTIONS(1610), + [aux_sym__val_number_token3] = ACTIONS(1610), + [anon_sym_0b] = ACTIONS(1608), + [anon_sym_0o] = ACTIONS(1608), + [anon_sym_0x] = ACTIONS(1608), + [sym_val_date] = ACTIONS(1610), + [anon_sym_DQUOTE] = ACTIONS(1610), + [sym__str_single_quotes] = ACTIONS(1610), + [sym__str_back_ticks] = ACTIONS(1610), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1610), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1610), + [anon_sym_err_GT] = ACTIONS(1608), + [anon_sym_out_GT] = ACTIONS(1608), + [anon_sym_e_GT] = ACTIONS(1608), + [anon_sym_o_GT] = ACTIONS(1608), + [anon_sym_err_PLUSout_GT] = ACTIONS(1608), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1608), + [anon_sym_o_PLUSe_GT] = ACTIONS(1608), + [anon_sym_e_PLUSo_GT] = ACTIONS(1608), + [anon_sym_err_GT_GT] = ACTIONS(1610), + [anon_sym_out_GT_GT] = ACTIONS(1610), + [anon_sym_e_GT_GT] = ACTIONS(1610), + [anon_sym_o_GT_GT] = ACTIONS(1610), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1610), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1610), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1610), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1610), + [aux_sym_unquoted_token1] = ACTIONS(1608), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1610), }, [1200] = { - [sym__expr_parenthesized_immediate] = STATE(1827), - [sym__immediate_decimal] = STATE(1902), - [sym_val_variable] = STATE(1827), + [sym__expr_parenthesized_immediate] = STATE(1698), + [sym__immediate_decimal] = STATE(1703), + [sym_val_variable] = STATE(1698), [sym_comment] = STATE(1200), - [ts_builtin_sym_end] = ACTIONS(1506), - [anon_sym_true] = ACTIONS(1506), - [anon_sym_false] = ACTIONS(1506), - [anon_sym_null] = ACTIONS(1506), - [aux_sym_cmd_identifier_token38] = ACTIONS(1506), - [aux_sym_cmd_identifier_token39] = ACTIONS(1506), - [aux_sym_cmd_identifier_token40] = ACTIONS(1506), - [sym__newline] = ACTIONS(1506), - [anon_sym_SEMI] = ACTIONS(1506), - [anon_sym_PIPE] = ACTIONS(1506), - [anon_sym_err_GT_PIPE] = ACTIONS(1506), - [anon_sym_out_GT_PIPE] = ACTIONS(1506), - [anon_sym_e_GT_PIPE] = ACTIONS(1506), - [anon_sym_o_GT_PIPE] = ACTIONS(1506), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1506), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1506), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1506), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1506), - [anon_sym_LPAREN] = ACTIONS(1496), - [anon_sym_DOLLAR] = ACTIONS(3923), - [anon_sym_DASH_DASH] = ACTIONS(1506), - [anon_sym_DASH] = ACTIONS(1496), - [anon_sym_LBRACE] = ACTIONS(1506), - [anon_sym_DOT_DOT] = ACTIONS(1496), - [anon_sym_LPAREN2] = ACTIONS(3925), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1506), - [anon_sym_DOT_DOT_LT] = ACTIONS(1506), - [aux_sym__immediate_decimal_token1] = ACTIONS(4095), - [aux_sym__immediate_decimal_token3] = ACTIONS(4097), - [aux_sym__immediate_decimal_token4] = ACTIONS(4099), - [aux_sym__immediate_decimal_token5] = ACTIONS(4101), - [aux_sym__val_number_decimal_token1] = ACTIONS(1496), - [aux_sym__val_number_decimal_token2] = ACTIONS(1496), - [aux_sym__val_number_decimal_token3] = ACTIONS(1496), - [aux_sym__val_number_decimal_token4] = ACTIONS(1496), - [aux_sym__val_number_token1] = ACTIONS(1506), - [aux_sym__val_number_token2] = ACTIONS(1506), - [aux_sym__val_number_token3] = ACTIONS(1506), - [anon_sym_0b] = ACTIONS(1496), - [anon_sym_0o] = ACTIONS(1496), - [anon_sym_0x] = ACTIONS(1496), - [sym_val_date] = ACTIONS(1506), - [anon_sym_DQUOTE] = ACTIONS(1506), - [sym__str_single_quotes] = ACTIONS(1506), - [sym__str_back_ticks] = ACTIONS(1506), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1506), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1506), - [anon_sym_err_GT] = ACTIONS(1496), - [anon_sym_out_GT] = ACTIONS(1496), - [anon_sym_e_GT] = ACTIONS(1496), - [anon_sym_o_GT] = ACTIONS(1496), - [anon_sym_err_PLUSout_GT] = ACTIONS(1496), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1496), - [anon_sym_o_PLUSe_GT] = ACTIONS(1496), - [anon_sym_e_PLUSo_GT] = ACTIONS(1496), - [anon_sym_err_GT_GT] = ACTIONS(1506), - [anon_sym_out_GT_GT] = ACTIONS(1506), - [anon_sym_e_GT_GT] = ACTIONS(1506), - [anon_sym_o_GT_GT] = ACTIONS(1506), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1506), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1506), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1506), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1506), - [aux_sym_unquoted_token1] = ACTIONS(1496), - [anon_sym_POUND] = ACTIONS(247), + [ts_builtin_sym_end] = ACTIONS(1614), + [anon_sym_true] = ACTIONS(1614), + [anon_sym_false] = ACTIONS(1614), + [anon_sym_null] = ACTIONS(1614), + [aux_sym_cmd_identifier_token38] = ACTIONS(1614), + [aux_sym_cmd_identifier_token39] = ACTIONS(1614), + [aux_sym_cmd_identifier_token40] = ACTIONS(1614), + [sym__newline] = ACTIONS(1614), + [anon_sym_SEMI] = ACTIONS(1614), + [anon_sym_PIPE] = ACTIONS(1614), + [anon_sym_err_GT_PIPE] = ACTIONS(1614), + [anon_sym_out_GT_PIPE] = ACTIONS(1614), + [anon_sym_e_GT_PIPE] = ACTIONS(1614), + [anon_sym_o_GT_PIPE] = ACTIONS(1614), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1614), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1614), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1614), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1614), + [anon_sym_LPAREN] = ACTIONS(1612), + [anon_sym_DOLLAR] = ACTIONS(4171), + [anon_sym_DASH_DASH] = ACTIONS(1614), + [anon_sym_DASH] = ACTIONS(1612), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_DOT_DOT] = ACTIONS(1612), + [anon_sym_LPAREN2] = ACTIONS(4173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1614), + [anon_sym_DOT_DOT_LT] = ACTIONS(1614), + [aux_sym__immediate_decimal_token1] = ACTIONS(4499), + [aux_sym__immediate_decimal_token3] = ACTIONS(4501), + [aux_sym__immediate_decimal_token4] = ACTIONS(4503), + [aux_sym__immediate_decimal_token5] = ACTIONS(4505), + [aux_sym__val_number_decimal_token1] = ACTIONS(1612), + [aux_sym__val_number_decimal_token2] = ACTIONS(1612), + [aux_sym__val_number_decimal_token3] = ACTIONS(1612), + [aux_sym__val_number_decimal_token4] = ACTIONS(1612), + [aux_sym__val_number_token1] = ACTIONS(1614), + [aux_sym__val_number_token2] = ACTIONS(1614), + [aux_sym__val_number_token3] = ACTIONS(1614), + [anon_sym_0b] = ACTIONS(1612), + [anon_sym_0o] = ACTIONS(1612), + [anon_sym_0x] = ACTIONS(1612), + [sym_val_date] = ACTIONS(1614), + [anon_sym_DQUOTE] = ACTIONS(1614), + [sym__str_single_quotes] = ACTIONS(1614), + [sym__str_back_ticks] = ACTIONS(1614), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1614), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1614), + [anon_sym_err_GT] = ACTIONS(1612), + [anon_sym_out_GT] = ACTIONS(1612), + [anon_sym_e_GT] = ACTIONS(1612), + [anon_sym_o_GT] = ACTIONS(1612), + [anon_sym_err_PLUSout_GT] = ACTIONS(1612), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1612), + [anon_sym_o_PLUSe_GT] = ACTIONS(1612), + [anon_sym_e_PLUSo_GT] = ACTIONS(1612), + [anon_sym_err_GT_GT] = ACTIONS(1614), + [anon_sym_out_GT_GT] = ACTIONS(1614), + [anon_sym_e_GT_GT] = ACTIONS(1614), + [anon_sym_o_GT_GT] = ACTIONS(1614), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1614), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1614), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1614), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1614), + [aux_sym_unquoted_token1] = ACTIONS(1612), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1614), }, [1201] = { - [sym__val_range] = STATE(7687), - [sym__value] = STATE(2715), - [sym_val_nothing] = STATE(2777), - [sym_val_bool] = STATE(2662), - [sym_val_variable] = STATE(2777), - [sym_val_number] = STATE(2777), - [sym__val_number_decimal] = STATE(2457), - [sym__val_number] = STATE(2758), - [sym_val_duration] = STATE(2777), - [sym_val_filesize] = STATE(2777), - [sym_val_binary] = STATE(2777), - [sym_val_string] = STATE(2777), - [sym__str_double_quotes] = STATE(2731), - [sym_val_interpolated] = STATE(2777), - [sym__inter_single_quotes] = STATE(2787), - [sym__inter_double_quotes] = STATE(2788), - [sym_val_list] = STATE(2777), - [sym_val_record] = STATE(2777), - [sym_val_table] = STATE(2777), - [sym_val_closure] = STATE(2777), - [sym_unquoted] = STATE(2717), - [sym__unquoted_anonymous_prefix] = STATE(7483), + [sym__expr_parenthesized_immediate] = STATE(1706), + [sym__immediate_decimal] = STATE(1726), + [sym_val_variable] = STATE(1706), [sym_comment] = STATE(1201), - [anon_sym_true] = ACTIONS(4021), - [anon_sym_false] = ACTIONS(4021), - [anon_sym_null] = ACTIONS(4023), - [aux_sym_cmd_identifier_token38] = ACTIONS(4025), - [aux_sym_cmd_identifier_token39] = ACTIONS(4025), - [aux_sym_cmd_identifier_token40] = ACTIONS(4025), - [anon_sym_LBRACK] = ACTIONS(4027), - [anon_sym_LPAREN] = ACTIONS(4029), - [anon_sym_DOLLAR] = ACTIONS(4031), - [anon_sym_LBRACE] = ACTIONS(4033), - [anon_sym_DOT_DOT] = ACTIONS(4035), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4037), - [anon_sym_DOT_DOT_LT] = ACTIONS(4037), - [aux_sym__val_number_decimal_token1] = ACTIONS(4039), - [aux_sym__val_number_decimal_token2] = ACTIONS(4041), - [aux_sym__val_number_decimal_token3] = ACTIONS(4043), - [aux_sym__val_number_decimal_token4] = ACTIONS(4045), - [aux_sym__val_number_token1] = ACTIONS(4047), - [aux_sym__val_number_token2] = ACTIONS(4047), - [aux_sym__val_number_token3] = ACTIONS(4047), - [anon_sym_0b] = ACTIONS(4049), - [anon_sym_0o] = ACTIONS(4051), - [anon_sym_0x] = ACTIONS(4051), - [sym_val_date] = ACTIONS(4053), - [anon_sym_DQUOTE] = ACTIONS(4055), - [sym__str_single_quotes] = ACTIONS(4057), - [sym__str_back_ticks] = ACTIONS(4057), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4059), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4061), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(4063), - [anon_sym_POUND] = ACTIONS(247), + [ts_builtin_sym_end] = ACTIONS(1622), + [anon_sym_true] = ACTIONS(1622), + [anon_sym_false] = ACTIONS(1622), + [anon_sym_null] = ACTIONS(1622), + [aux_sym_cmd_identifier_token38] = ACTIONS(1622), + [aux_sym_cmd_identifier_token39] = ACTIONS(1622), + [aux_sym_cmd_identifier_token40] = ACTIONS(1622), + [sym__newline] = ACTIONS(1622), + [anon_sym_SEMI] = ACTIONS(1622), + [anon_sym_PIPE] = ACTIONS(1622), + [anon_sym_err_GT_PIPE] = ACTIONS(1622), + [anon_sym_out_GT_PIPE] = ACTIONS(1622), + [anon_sym_e_GT_PIPE] = ACTIONS(1622), + [anon_sym_o_GT_PIPE] = ACTIONS(1622), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1622), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1622), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1622), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1622), + [anon_sym_LBRACK] = ACTIONS(1622), + [anon_sym_LPAREN] = ACTIONS(1620), + [anon_sym_DOLLAR] = ACTIONS(4171), + [anon_sym_DASH_DASH] = ACTIONS(1622), + [anon_sym_DASH] = ACTIONS(1620), + [anon_sym_LBRACE] = ACTIONS(1622), + [anon_sym_DOT_DOT] = ACTIONS(1620), + [anon_sym_LPAREN2] = ACTIONS(4173), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1622), + [anon_sym_DOT_DOT_LT] = ACTIONS(1622), + [aux_sym__immediate_decimal_token1] = ACTIONS(4499), + [aux_sym__immediate_decimal_token3] = ACTIONS(4501), + [aux_sym__immediate_decimal_token4] = ACTIONS(4503), + [aux_sym__immediate_decimal_token5] = ACTIONS(4505), + [aux_sym__val_number_decimal_token1] = ACTIONS(1620), + [aux_sym__val_number_decimal_token2] = ACTIONS(1620), + [aux_sym__val_number_decimal_token3] = ACTIONS(1620), + [aux_sym__val_number_decimal_token4] = ACTIONS(1620), + [aux_sym__val_number_token1] = ACTIONS(1622), + [aux_sym__val_number_token2] = ACTIONS(1622), + [aux_sym__val_number_token3] = ACTIONS(1622), + [anon_sym_0b] = ACTIONS(1620), + [anon_sym_0o] = ACTIONS(1620), + [anon_sym_0x] = ACTIONS(1620), + [sym_val_date] = ACTIONS(1622), + [anon_sym_DQUOTE] = ACTIONS(1622), + [sym__str_single_quotes] = ACTIONS(1622), + [sym__str_back_ticks] = ACTIONS(1622), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1622), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1622), + [anon_sym_err_GT] = ACTIONS(1620), + [anon_sym_out_GT] = ACTIONS(1620), + [anon_sym_e_GT] = ACTIONS(1620), + [anon_sym_o_GT] = ACTIONS(1620), + [anon_sym_err_PLUSout_GT] = ACTIONS(1620), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1620), + [anon_sym_o_PLUSe_GT] = ACTIONS(1620), + [anon_sym_e_PLUSo_GT] = ACTIONS(1620), + [anon_sym_err_GT_GT] = ACTIONS(1622), + [anon_sym_out_GT_GT] = ACTIONS(1622), + [anon_sym_e_GT_GT] = ACTIONS(1622), + [anon_sym_o_GT_GT] = ACTIONS(1622), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1622), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1622), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1622), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1622), + [aux_sym_unquoted_token1] = ACTIONS(1620), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1622), }, [1202] = { + [sym_path] = STATE(1247), [sym_comment] = STATE(1202), - [ts_builtin_sym_end] = ACTIONS(1520), - [anon_sym_true] = ACTIONS(1520), - [anon_sym_false] = ACTIONS(1520), - [anon_sym_null] = ACTIONS(1520), - [aux_sym_cmd_identifier_token38] = ACTIONS(1520), - [aux_sym_cmd_identifier_token39] = ACTIONS(1520), - [aux_sym_cmd_identifier_token40] = ACTIONS(1520), - [sym__newline] = ACTIONS(1520), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_err_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_GT_PIPE] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1520), - [anon_sym_LPAREN] = ACTIONS(1518), - [anon_sym_DOLLAR] = ACTIONS(1518), - [anon_sym_DASH_DASH] = ACTIONS(1520), - [anon_sym_DASH] = ACTIONS(1518), - [anon_sym_LBRACE] = ACTIONS(1520), - [anon_sym_DOT_DOT] = ACTIONS(1518), - [anon_sym_LPAREN2] = ACTIONS(1520), - [anon_sym_DOT_DOT2] = ACTIONS(1518), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1518), - [anon_sym_DOT_DOT_LT] = ACTIONS(1518), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), - [aux_sym__immediate_decimal_token2] = ACTIONS(3959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1518), - [aux_sym__val_number_decimal_token2] = ACTIONS(1520), - [aux_sym__val_number_decimal_token3] = ACTIONS(1520), - [aux_sym__val_number_decimal_token4] = ACTIONS(1520), - [aux_sym__val_number_token1] = ACTIONS(1520), - [aux_sym__val_number_token2] = ACTIONS(1520), - [aux_sym__val_number_token3] = ACTIONS(1520), - [anon_sym_0b] = ACTIONS(1518), - [sym_filesize_unit] = ACTIONS(1520), - [sym_duration_unit] = ACTIONS(1520), - [anon_sym_0o] = ACTIONS(1518), - [anon_sym_0x] = ACTIONS(1518), - [sym_val_date] = ACTIONS(1520), - [anon_sym_DQUOTE] = ACTIONS(1520), - [sym__str_single_quotes] = ACTIONS(1520), - [sym__str_back_ticks] = ACTIONS(1520), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1520), - [anon_sym_err_GT] = ACTIONS(1518), - [anon_sym_out_GT] = ACTIONS(1518), - [anon_sym_e_GT] = ACTIONS(1518), - [anon_sym_o_GT] = ACTIONS(1518), - [anon_sym_err_PLUSout_GT] = ACTIONS(1518), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), - [anon_sym_o_PLUSe_GT] = ACTIONS(1518), - [anon_sym_e_PLUSo_GT] = ACTIONS(1518), - [anon_sym_err_GT_GT] = ACTIONS(1520), - [anon_sym_out_GT_GT] = ACTIONS(1520), - [anon_sym_e_GT_GT] = ACTIONS(1520), - [anon_sym_o_GT_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1520), - [aux_sym_unquoted_token1] = ACTIONS(1518), - [aux_sym_unquoted_token2] = ACTIONS(1518), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(1193), + [anon_sym_EQ] = ACTIONS(1027), + [anon_sym_PLUS_EQ] = ACTIONS(1029), + [anon_sym_DASH_EQ] = ACTIONS(1029), + [anon_sym_STAR_EQ] = ACTIONS(1029), + [anon_sym_SLASH_EQ] = ACTIONS(1029), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1029), + [sym__newline] = ACTIONS(1029), + [anon_sym_SEMI] = ACTIONS(1029), + [anon_sym_PIPE] = ACTIONS(1029), + [anon_sym_err_GT_PIPE] = ACTIONS(1029), + [anon_sym_out_GT_PIPE] = ACTIONS(1029), + [anon_sym_e_GT_PIPE] = ACTIONS(1029), + [anon_sym_o_GT_PIPE] = ACTIONS(1029), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1029), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1029), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1029), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1029), + [anon_sym_RPAREN] = ACTIONS(1029), + [anon_sym_RBRACE] = ACTIONS(1029), + [aux_sym_expr_binary_token1] = ACTIONS(1029), + [aux_sym_expr_binary_token2] = ACTIONS(1029), + [aux_sym_expr_binary_token3] = ACTIONS(1029), + [aux_sym_expr_binary_token4] = ACTIONS(1029), + [aux_sym_expr_binary_token5] = ACTIONS(1029), + [aux_sym_expr_binary_token6] = ACTIONS(1029), + [aux_sym_expr_binary_token7] = ACTIONS(1029), + [aux_sym_expr_binary_token8] = ACTIONS(1029), + [aux_sym_expr_binary_token9] = ACTIONS(1029), + [aux_sym_expr_binary_token10] = ACTIONS(1029), + [aux_sym_expr_binary_token11] = ACTIONS(1029), + [aux_sym_expr_binary_token12] = ACTIONS(1029), + [aux_sym_expr_binary_token13] = ACTIONS(1029), + [aux_sym_expr_binary_token14] = ACTIONS(1029), + [aux_sym_expr_binary_token15] = ACTIONS(1029), + [aux_sym_expr_binary_token16] = ACTIONS(1029), + [aux_sym_expr_binary_token17] = ACTIONS(1029), + [aux_sym_expr_binary_token18] = ACTIONS(1029), + [aux_sym_expr_binary_token19] = ACTIONS(1029), + [aux_sym_expr_binary_token20] = ACTIONS(1029), + [aux_sym_expr_binary_token21] = ACTIONS(1029), + [aux_sym_expr_binary_token22] = ACTIONS(1029), + [aux_sym_expr_binary_token23] = ACTIONS(1029), + [aux_sym_expr_binary_token24] = ACTIONS(1029), + [aux_sym_expr_binary_token25] = ACTIONS(1029), + [aux_sym_expr_binary_token26] = ACTIONS(1029), + [aux_sym_expr_binary_token27] = ACTIONS(1029), + [aux_sym_expr_binary_token28] = ACTIONS(1029), + [anon_sym_DOT_DOT2] = ACTIONS(1027), + [anon_sym_DOT] = ACTIONS(4143), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1029), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1029), + [anon_sym_err_GT] = ACTIONS(1027), + [anon_sym_out_GT] = ACTIONS(1027), + [anon_sym_e_GT] = ACTIONS(1027), + [anon_sym_o_GT] = ACTIONS(1027), + [anon_sym_err_PLUSout_GT] = ACTIONS(1027), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1027), + [anon_sym_o_PLUSe_GT] = ACTIONS(1027), + [anon_sym_e_PLUSo_GT] = ACTIONS(1027), + [anon_sym_err_GT_GT] = ACTIONS(1029), + [anon_sym_out_GT_GT] = ACTIONS(1029), + [anon_sym_e_GT_GT] = ACTIONS(1029), + [anon_sym_o_GT_GT] = ACTIONS(1029), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1029), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1029), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1029), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1029), + [anon_sym_POUND] = ACTIONS(249), }, [1203] = { - [sym__val_range] = STATE(7681), - [sym__value] = STATE(2720), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3707), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(5604), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(2002), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(2724), - [sym__unquoted_anonymous_prefix] = STATE(7695), + [sym_path] = STATE(1288), [sym_comment] = STATE(1203), - [anon_sym_true] = ACTIONS(3259), - [anon_sym_false] = ACTIONS(3259), - [anon_sym_null] = ACTIONS(3261), - [aux_sym_cmd_identifier_token38] = ACTIONS(3846), - [aux_sym_cmd_identifier_token39] = ACTIONS(3846), - [aux_sym_cmd_identifier_token40] = ACTIONS(3846), - [anon_sym_LBRACK] = ACTIONS(3848), - [anon_sym_LPAREN] = ACTIONS(4393), - [anon_sym_DOLLAR] = ACTIONS(4395), - [anon_sym_LBRACE] = ACTIONS(3854), - [anon_sym_DOT_DOT] = ACTIONS(4397), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4399), - [anon_sym_DOT_DOT_LT] = ACTIONS(4399), - [aux_sym__val_number_decimal_token1] = ACTIONS(3279), - [aux_sym__val_number_decimal_token2] = ACTIONS(3281), - [aux_sym__val_number_decimal_token3] = ACTIONS(3283), - [aux_sym__val_number_decimal_token4] = ACTIONS(3285), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3287), - [anon_sym_DQUOTE] = ACTIONS(3860), - [sym__str_single_quotes] = ACTIONS(3862), - [sym__str_back_ticks] = ACTIONS(3862), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3864), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(1203), + [anon_sym_true] = ACTIONS(1033), + [anon_sym_false] = ACTIONS(1033), + [anon_sym_null] = ACTIONS(1033), + [aux_sym_cmd_identifier_token38] = ACTIONS(1033), + [aux_sym_cmd_identifier_token39] = ACTIONS(1033), + [aux_sym_cmd_identifier_token40] = ACTIONS(1033), + [sym__newline] = ACTIONS(1033), + [anon_sym_SEMI] = ACTIONS(1033), + [anon_sym_PIPE] = ACTIONS(1033), + [anon_sym_err_GT_PIPE] = ACTIONS(1033), + [anon_sym_out_GT_PIPE] = ACTIONS(1033), + [anon_sym_e_GT_PIPE] = ACTIONS(1033), + [anon_sym_o_GT_PIPE] = ACTIONS(1033), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1033), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1033), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1033), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1033), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_RPAREN] = ACTIONS(1033), + [anon_sym_DOLLAR] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1033), + [anon_sym_DASH] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1033), + [anon_sym_DOT_DOT] = ACTIONS(1031), + [anon_sym_DOT_DOT2] = ACTIONS(1031), + [anon_sym_DOT] = ACTIONS(4578), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1031), + [anon_sym_DOT_DOT_LT] = ACTIONS(1031), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1033), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1033), + [aux_sym__val_number_decimal_token1] = ACTIONS(1031), + [aux_sym__val_number_decimal_token2] = ACTIONS(1033), + [aux_sym__val_number_decimal_token3] = ACTIONS(1033), + [aux_sym__val_number_decimal_token4] = ACTIONS(1033), + [aux_sym__val_number_token1] = ACTIONS(1033), + [aux_sym__val_number_token2] = ACTIONS(1033), + [aux_sym__val_number_token3] = ACTIONS(1033), + [anon_sym_0b] = ACTIONS(1031), + [anon_sym_0o] = ACTIONS(1031), + [anon_sym_0x] = ACTIONS(1031), + [sym_val_date] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(1033), + [sym__str_single_quotes] = ACTIONS(1033), + [sym__str_back_ticks] = ACTIONS(1033), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1033), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1033), + [anon_sym_err_GT] = ACTIONS(1031), + [anon_sym_out_GT] = ACTIONS(1031), + [anon_sym_e_GT] = ACTIONS(1031), + [anon_sym_o_GT] = ACTIONS(1031), + [anon_sym_err_PLUSout_GT] = ACTIONS(1031), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1031), + [anon_sym_o_PLUSe_GT] = ACTIONS(1031), + [anon_sym_e_PLUSo_GT] = ACTIONS(1031), + [anon_sym_err_GT_GT] = ACTIONS(1033), + [anon_sym_out_GT_GT] = ACTIONS(1033), + [anon_sym_e_GT_GT] = ACTIONS(1033), + [anon_sym_o_GT_GT] = ACTIONS(1033), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1033), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1033), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1033), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1033), + [aux_sym_unquoted_token1] = ACTIONS(1031), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1033), }, [1204] = { - [sym_path] = STATE(1246), [sym_comment] = STATE(1204), - [aux_sym_cell_path_repeat1] = STATE(1204), - [ts_builtin_sym_end] = ACTIONS(1017), - [anon_sym_EQ] = ACTIONS(1015), - [anon_sym_PLUS_EQ] = ACTIONS(1017), - [anon_sym_DASH_EQ] = ACTIONS(1017), - [anon_sym_STAR_EQ] = ACTIONS(1017), - [anon_sym_SLASH_EQ] = ACTIONS(1017), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1017), - [sym__newline] = ACTIONS(1017), - [anon_sym_SEMI] = ACTIONS(1017), - [anon_sym_PIPE] = ACTIONS(1017), - [anon_sym_err_GT_PIPE] = ACTIONS(1017), - [anon_sym_out_GT_PIPE] = ACTIONS(1017), - [anon_sym_e_GT_PIPE] = ACTIONS(1017), - [anon_sym_o_GT_PIPE] = ACTIONS(1017), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1017), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1017), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1017), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1017), - [aux_sym_expr_binary_token1] = ACTIONS(1017), - [aux_sym_expr_binary_token2] = ACTIONS(1017), - [aux_sym_expr_binary_token3] = ACTIONS(1017), - [aux_sym_expr_binary_token4] = ACTIONS(1017), - [aux_sym_expr_binary_token5] = ACTIONS(1017), - [aux_sym_expr_binary_token6] = ACTIONS(1017), - [aux_sym_expr_binary_token7] = ACTIONS(1017), - [aux_sym_expr_binary_token8] = ACTIONS(1017), - [aux_sym_expr_binary_token9] = ACTIONS(1017), - [aux_sym_expr_binary_token10] = ACTIONS(1017), - [aux_sym_expr_binary_token11] = ACTIONS(1017), - [aux_sym_expr_binary_token12] = ACTIONS(1017), - [aux_sym_expr_binary_token13] = ACTIONS(1017), - [aux_sym_expr_binary_token14] = ACTIONS(1017), - [aux_sym_expr_binary_token15] = ACTIONS(1017), - [aux_sym_expr_binary_token16] = ACTIONS(1017), - [aux_sym_expr_binary_token17] = ACTIONS(1017), - [aux_sym_expr_binary_token18] = ACTIONS(1017), - [aux_sym_expr_binary_token19] = ACTIONS(1017), - [aux_sym_expr_binary_token20] = ACTIONS(1017), - [aux_sym_expr_binary_token21] = ACTIONS(1017), - [aux_sym_expr_binary_token22] = ACTIONS(1017), - [aux_sym_expr_binary_token23] = ACTIONS(1017), - [aux_sym_expr_binary_token24] = ACTIONS(1017), - [aux_sym_expr_binary_token25] = ACTIONS(1017), - [aux_sym_expr_binary_token26] = ACTIONS(1017), - [aux_sym_expr_binary_token27] = ACTIONS(1017), - [aux_sym_expr_binary_token28] = ACTIONS(1017), - [anon_sym_DOT_DOT2] = ACTIONS(1015), - [anon_sym_DOT] = ACTIONS(4425), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1017), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1017), - [anon_sym_err_GT] = ACTIONS(1015), - [anon_sym_out_GT] = ACTIONS(1015), - [anon_sym_e_GT] = ACTIONS(1015), - [anon_sym_o_GT] = ACTIONS(1015), - [anon_sym_err_PLUSout_GT] = ACTIONS(1015), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1015), - [anon_sym_o_PLUSe_GT] = ACTIONS(1015), - [anon_sym_e_PLUSo_GT] = ACTIONS(1015), - [anon_sym_err_GT_GT] = ACTIONS(1017), - [anon_sym_out_GT_GT] = ACTIONS(1017), - [anon_sym_e_GT_GT] = ACTIONS(1017), - [anon_sym_o_GT_GT] = ACTIONS(1017), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1017), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1017), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1017), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1017), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_EQ] = ACTIONS(1062), + [anon_sym_PLUS_EQ] = ACTIONS(1064), + [anon_sym_DASH_EQ] = ACTIONS(1064), + [anon_sym_STAR_EQ] = ACTIONS(1064), + [anon_sym_SLASH_EQ] = ACTIONS(1064), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1064), + [sym__newline] = ACTIONS(1062), + [anon_sym_SEMI] = ACTIONS(1064), + [anon_sym_PIPE] = ACTIONS(1064), + [anon_sym_err_GT_PIPE] = ACTIONS(1064), + [anon_sym_out_GT_PIPE] = ACTIONS(1064), + [anon_sym_e_GT_PIPE] = ACTIONS(1064), + [anon_sym_o_GT_PIPE] = ACTIONS(1064), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1064), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1064), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1064), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1064), + [anon_sym_RPAREN] = ACTIONS(1064), + [anon_sym_LBRACE] = ACTIONS(1064), + [anon_sym_QMARK2] = ACTIONS(1064), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1064), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1064), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1064), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1064), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1064), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1064), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1064), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1064), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1064), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1064), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1064), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1064), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1064), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1064), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1064), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1064), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1064), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1064), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1064), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1064), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1064), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1064), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1064), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1064), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1064), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1064), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1064), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1064), + [anon_sym_DOT_DOT2] = ACTIONS(1062), + [anon_sym_DOT] = ACTIONS(1062), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1064), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1064), + [anon_sym_err_GT] = ACTIONS(1062), + [anon_sym_out_GT] = ACTIONS(1062), + [anon_sym_e_GT] = ACTIONS(1062), + [anon_sym_o_GT] = ACTIONS(1062), + [anon_sym_err_PLUSout_GT] = ACTIONS(1062), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1062), + [anon_sym_o_PLUSe_GT] = ACTIONS(1062), + [anon_sym_e_PLUSo_GT] = ACTIONS(1062), + [anon_sym_err_GT_GT] = ACTIONS(1064), + [anon_sym_out_GT_GT] = ACTIONS(1064), + [anon_sym_e_GT_GT] = ACTIONS(1064), + [anon_sym_o_GT_GT] = ACTIONS(1064), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1064), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1064), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1064), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1064), + [anon_sym_POUND] = ACTIONS(249), }, [1205] = { - [sym_cell_path] = STATE(1391), - [sym_path] = STATE(1292), [sym_comment] = STATE(1205), - [aux_sym_cell_path_repeat1] = STATE(1230), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_null] = ACTIONS(1645), - [aux_sym_cmd_identifier_token38] = ACTIONS(1645), - [aux_sym_cmd_identifier_token39] = ACTIONS(1645), - [aux_sym_cmd_identifier_token40] = ACTIONS(1645), - [sym__newline] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1645), - [anon_sym_err_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_GT_PIPE] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), - [anon_sym_LBRACK] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1645), - [anon_sym_RPAREN] = ACTIONS(1645), - [anon_sym_DOLLAR] = ACTIONS(1641), - [anon_sym_DASH_DASH] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(1645), - [anon_sym_RBRACE] = ACTIONS(1645), - [anon_sym_DOT_DOT] = ACTIONS(1641), - [anon_sym_DOT_DOT2] = ACTIONS(1641), - [anon_sym_DOT] = ACTIONS(4019), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1641), - [anon_sym_DOT_DOT_LT] = ACTIONS(1641), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1645), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1645), - [aux_sym__val_number_decimal_token1] = ACTIONS(1641), - [aux_sym__val_number_decimal_token2] = ACTIONS(1645), - [aux_sym__val_number_decimal_token3] = ACTIONS(1645), - [aux_sym__val_number_decimal_token4] = ACTIONS(1645), - [aux_sym__val_number_token1] = ACTIONS(1645), - [aux_sym__val_number_token2] = ACTIONS(1645), - [aux_sym__val_number_token3] = ACTIONS(1645), - [anon_sym_0b] = ACTIONS(1641), - [anon_sym_0o] = ACTIONS(1641), - [anon_sym_0x] = ACTIONS(1641), - [sym_val_date] = ACTIONS(1645), - [anon_sym_DQUOTE] = ACTIONS(1645), - [sym__str_single_quotes] = ACTIONS(1645), - [sym__str_back_ticks] = ACTIONS(1645), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1645), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1645), - [anon_sym_err_GT] = ACTIONS(1641), - [anon_sym_out_GT] = ACTIONS(1641), - [anon_sym_e_GT] = ACTIONS(1641), - [anon_sym_o_GT] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT] = ACTIONS(1641), - [anon_sym_err_GT_GT] = ACTIONS(1645), - [anon_sym_out_GT_GT] = ACTIONS(1645), - [anon_sym_e_GT_GT] = ACTIONS(1645), - [anon_sym_o_GT_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), - [aux_sym_unquoted_token1] = ACTIONS(1641), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_EQ] = ACTIONS(1038), + [anon_sym_PLUS_EQ] = ACTIONS(1040), + [anon_sym_DASH_EQ] = ACTIONS(1040), + [anon_sym_STAR_EQ] = ACTIONS(1040), + [anon_sym_SLASH_EQ] = ACTIONS(1040), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1040), + [sym__newline] = ACTIONS(1038), + [anon_sym_SEMI] = ACTIONS(1040), + [anon_sym_PIPE] = ACTIONS(1040), + [anon_sym_err_GT_PIPE] = ACTIONS(1040), + [anon_sym_out_GT_PIPE] = ACTIONS(1040), + [anon_sym_e_GT_PIPE] = ACTIONS(1040), + [anon_sym_o_GT_PIPE] = ACTIONS(1040), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1040), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1040), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1040), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1040), + [anon_sym_RPAREN] = ACTIONS(1040), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_QMARK2] = ACTIONS(1040), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1040), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1040), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1040), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1040), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1040), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1040), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1040), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1040), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1040), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1040), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1040), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1040), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1040), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1040), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1040), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1040), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1040), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1040), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1040), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1040), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1040), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1040), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1040), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1040), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1040), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1040), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1040), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1040), + [anon_sym_DOT_DOT2] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(1038), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1040), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1040), + [anon_sym_err_GT] = ACTIONS(1038), + [anon_sym_out_GT] = ACTIONS(1038), + [anon_sym_e_GT] = ACTIONS(1038), + [anon_sym_o_GT] = ACTIONS(1038), + [anon_sym_err_PLUSout_GT] = ACTIONS(1038), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1038), + [anon_sym_o_PLUSe_GT] = ACTIONS(1038), + [anon_sym_e_PLUSo_GT] = ACTIONS(1038), + [anon_sym_err_GT_GT] = ACTIONS(1040), + [anon_sym_out_GT_GT] = ACTIONS(1040), + [anon_sym_e_GT_GT] = ACTIONS(1040), + [anon_sym_o_GT_GT] = ACTIONS(1040), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1040), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1040), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1040), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1040), + [anon_sym_POUND] = ACTIONS(249), }, [1206] = { - [sym__val_range] = STATE(7681), - [sym__value] = STATE(5935), - [sym_val_nothing] = STATE(2221), - [sym_val_bool] = STATE(3707), - [sym_val_variable] = STATE(2221), - [sym_val_number] = STATE(2221), - [sym__val_number_decimal] = STATE(5604), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(2221), - [sym_val_filesize] = STATE(2221), - [sym_val_binary] = STATE(2221), - [sym_val_string] = STATE(2221), - [sym__str_double_quotes] = STATE(2002), - [sym_val_interpolated] = STATE(2221), - [sym__inter_single_quotes] = STATE(2239), - [sym__inter_double_quotes] = STATE(2243), - [sym_val_list] = STATE(2221), - [sym_val_record] = STATE(2221), - [sym_val_table] = STATE(2221), - [sym_val_closure] = STATE(2221), - [sym_unquoted] = STATE(5939), - [sym__unquoted_anonymous_prefix] = STATE(7695), + [sym__match_pattern] = STATE(7565), + [sym__match_pattern_expression] = STATE(6925), + [sym__match_pattern_value] = STATE(6926), + [sym__match_pattern_list] = STATE(6929), + [sym__match_pattern_record] = STATE(6939), + [sym_expr_parenthesized] = STATE(5899), + [sym_val_range] = STATE(6926), + [sym__val_range] = STATE(7794), + [sym_val_nothing] = STATE(6967), + [sym_val_bool] = STATE(6772), + [sym_val_variable] = STATE(5900), + [sym_val_number] = STATE(6967), + [sym__val_number_decimal] = STATE(5594), + [sym__val_number] = STATE(2078), + [sym_val_duration] = STATE(6967), + [sym_val_filesize] = STATE(6967), + [sym_val_binary] = STATE(6967), + [sym_val_string] = STATE(6967), + [sym__raw_str] = STATE(1820), + [sym__str_double_quotes] = STATE(1820), + [sym_val_table] = STATE(6967), + [sym_unquoted] = STATE(7021), + [sym__unquoted_anonymous_prefix] = STATE(7859), [sym_comment] = STATE(1206), - [anon_sym_true] = ACTIONS(3259), - [anon_sym_false] = ACTIONS(3259), - [anon_sym_null] = ACTIONS(3261), - [aux_sym_cmd_identifier_token38] = ACTIONS(3846), - [aux_sym_cmd_identifier_token39] = ACTIONS(3846), - [aux_sym_cmd_identifier_token40] = ACTIONS(3846), - [anon_sym_LBRACK] = ACTIONS(3848), - [anon_sym_LPAREN] = ACTIONS(4393), - [anon_sym_DOLLAR] = ACTIONS(4395), - [anon_sym_LBRACE] = ACTIONS(3854), - [anon_sym_DOT_DOT] = ACTIONS(4397), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4399), - [anon_sym_DOT_DOT_LT] = ACTIONS(4399), - [aux_sym__val_number_decimal_token1] = ACTIONS(3279), - [aux_sym__val_number_decimal_token2] = ACTIONS(3281), - [aux_sym__val_number_decimal_token3] = ACTIONS(3283), - [aux_sym__val_number_decimal_token4] = ACTIONS(3285), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(3287), - [anon_sym_DQUOTE] = ACTIONS(3860), - [sym__str_single_quotes] = ACTIONS(3862), - [sym__str_back_ticks] = ACTIONS(3862), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(517), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3864), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(3424), + [anon_sym_false] = ACTIONS(3424), + [anon_sym_null] = ACTIONS(3426), + [aux_sym_cmd_identifier_token38] = ACTIONS(4581), + [aux_sym_cmd_identifier_token39] = ACTIONS(4581), + [aux_sym_cmd_identifier_token40] = ACTIONS(4581), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_LPAREN] = ACTIONS(3614), + [anon_sym_DOLLAR] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(3618), + [anon_sym_DOT_DOT] = ACTIONS(4583), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4585), + [anon_sym_DOT_DOT_LT] = ACTIONS(4585), + [aux_sym__val_number_decimal_token1] = ACTIONS(3430), + [aux_sym__val_number_decimal_token2] = ACTIONS(3432), + [aux_sym__val_number_decimal_token3] = ACTIONS(3434), + [aux_sym__val_number_decimal_token4] = ACTIONS(3436), + [aux_sym__val_number_token1] = ACTIONS(511), + [aux_sym__val_number_token2] = ACTIONS(511), + [aux_sym__val_number_token3] = ACTIONS(511), + [anon_sym_0b] = ACTIONS(513), + [anon_sym_0o] = ACTIONS(515), + [anon_sym_0x] = ACTIONS(515), + [sym_val_date] = ACTIONS(4587), + [anon_sym_DQUOTE] = ACTIONS(519), + [sym__str_single_quotes] = ACTIONS(521), + [sym__str_back_ticks] = ACTIONS(521), + [anon_sym_err_GT] = ACTIONS(2685), + [anon_sym_out_GT] = ACTIONS(2685), + [anon_sym_e_GT] = ACTIONS(2685), + [anon_sym_o_GT] = ACTIONS(2685), + [anon_sym_err_PLUSout_GT] = ACTIONS(2685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2685), + [anon_sym_o_PLUSe_GT] = ACTIONS(2685), + [anon_sym_e_PLUSo_GT] = ACTIONS(2685), + [anon_sym_err_GT_GT] = ACTIONS(2687), + [anon_sym_out_GT_GT] = ACTIONS(2687), + [anon_sym_e_GT_GT] = ACTIONS(2687), + [anon_sym_o_GT_GT] = ACTIONS(2687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2687), + [aux_sym_unquoted_token1] = ACTIONS(3846), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(529), }, [1207] = { [sym_comment] = STATE(1207), - [anon_sym_true] = ACTIONS(1661), - [anon_sym_false] = ACTIONS(1661), - [anon_sym_null] = ACTIONS(1661), - [aux_sym_cmd_identifier_token38] = ACTIONS(1661), - [aux_sym_cmd_identifier_token39] = ACTIONS(1661), - [aux_sym_cmd_identifier_token40] = ACTIONS(1661), - [sym__newline] = ACTIONS(1661), - [anon_sym_SEMI] = ACTIONS(1661), - [anon_sym_PIPE] = ACTIONS(1661), - [anon_sym_err_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_GT_PIPE] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_RPAREN] = ACTIONS(1661), - [anon_sym_DOLLAR] = ACTIONS(1659), - [anon_sym_DASH_DASH] = ACTIONS(1661), - [anon_sym_DASH] = ACTIONS(1659), - [anon_sym_LBRACE] = ACTIONS(1661), - [anon_sym_RBRACE] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1659), - [anon_sym_LPAREN2] = ACTIONS(1661), - [anon_sym_DOT_DOT2] = ACTIONS(1659), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1659), - [anon_sym_DOT_DOT_LT] = ACTIONS(1659), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1661), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1661), - [aux_sym__immediate_decimal_token1] = ACTIONS(4428), - [aux_sym__immediate_decimal_token2] = ACTIONS(4430), - [aux_sym__val_number_decimal_token1] = ACTIONS(1659), - [aux_sym__val_number_decimal_token2] = ACTIONS(1661), - [aux_sym__val_number_decimal_token3] = ACTIONS(1661), - [aux_sym__val_number_decimal_token4] = ACTIONS(1661), - [aux_sym__val_number_token1] = ACTIONS(1661), - [aux_sym__val_number_token2] = ACTIONS(1661), - [aux_sym__val_number_token3] = ACTIONS(1661), - [anon_sym_0b] = ACTIONS(1659), - [anon_sym_0o] = ACTIONS(1659), - [anon_sym_0x] = ACTIONS(1659), - [sym_val_date] = ACTIONS(1661), - [anon_sym_DQUOTE] = ACTIONS(1661), - [sym__str_single_quotes] = ACTIONS(1661), - [sym__str_back_ticks] = ACTIONS(1661), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1661), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1661), - [anon_sym_err_GT] = ACTIONS(1659), - [anon_sym_out_GT] = ACTIONS(1659), - [anon_sym_e_GT] = ACTIONS(1659), - [anon_sym_o_GT] = ACTIONS(1659), - [anon_sym_err_PLUSout_GT] = ACTIONS(1659), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1659), - [anon_sym_o_PLUSe_GT] = ACTIONS(1659), - [anon_sym_e_PLUSo_GT] = ACTIONS(1659), - [anon_sym_err_GT_GT] = ACTIONS(1661), - [anon_sym_out_GT_GT] = ACTIONS(1661), - [anon_sym_e_GT_GT] = ACTIONS(1661), - [anon_sym_o_GT_GT] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1661), - [aux_sym_unquoted_token1] = ACTIONS(1659), - [aux_sym_unquoted_token2] = ACTIONS(1659), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_EQ] = ACTIONS(1066), + [anon_sym_PLUS_EQ] = ACTIONS(1068), + [anon_sym_DASH_EQ] = ACTIONS(1068), + [anon_sym_STAR_EQ] = ACTIONS(1068), + [anon_sym_SLASH_EQ] = ACTIONS(1068), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1068), + [sym__newline] = ACTIONS(1066), + [anon_sym_SEMI] = ACTIONS(1068), + [anon_sym_PIPE] = ACTIONS(1068), + [anon_sym_err_GT_PIPE] = ACTIONS(1068), + [anon_sym_out_GT_PIPE] = ACTIONS(1068), + [anon_sym_e_GT_PIPE] = ACTIONS(1068), + [anon_sym_o_GT_PIPE] = ACTIONS(1068), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1068), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1068), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1068), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_RBRACE] = ACTIONS(1068), + [aux_sym_expr_binary_token1] = ACTIONS(1068), + [aux_sym_expr_binary_token2] = ACTIONS(1068), + [aux_sym_expr_binary_token3] = ACTIONS(1068), + [aux_sym_expr_binary_token4] = ACTIONS(1068), + [aux_sym_expr_binary_token5] = ACTIONS(1068), + [aux_sym_expr_binary_token6] = ACTIONS(1068), + [aux_sym_expr_binary_token7] = ACTIONS(1068), + [aux_sym_expr_binary_token8] = ACTIONS(1068), + [aux_sym_expr_binary_token9] = ACTIONS(1068), + [aux_sym_expr_binary_token10] = ACTIONS(1068), + [aux_sym_expr_binary_token11] = ACTIONS(1068), + [aux_sym_expr_binary_token12] = ACTIONS(1068), + [aux_sym_expr_binary_token13] = ACTIONS(1068), + [aux_sym_expr_binary_token14] = ACTIONS(1068), + [aux_sym_expr_binary_token15] = ACTIONS(1068), + [aux_sym_expr_binary_token16] = ACTIONS(1068), + [aux_sym_expr_binary_token17] = ACTIONS(1068), + [aux_sym_expr_binary_token18] = ACTIONS(1068), + [aux_sym_expr_binary_token19] = ACTIONS(1068), + [aux_sym_expr_binary_token20] = ACTIONS(1068), + [aux_sym_expr_binary_token21] = ACTIONS(1068), + [aux_sym_expr_binary_token22] = ACTIONS(1068), + [aux_sym_expr_binary_token23] = ACTIONS(1068), + [aux_sym_expr_binary_token24] = ACTIONS(1068), + [aux_sym_expr_binary_token25] = ACTIONS(1068), + [aux_sym_expr_binary_token26] = ACTIONS(1068), + [aux_sym_expr_binary_token27] = ACTIONS(1068), + [aux_sym_expr_binary_token28] = ACTIONS(1068), + [anon_sym_DOT_DOT2] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(1066), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1068), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1068), + [aux_sym_record_entry_token1] = ACTIONS(1068), + [anon_sym_err_GT] = ACTIONS(1066), + [anon_sym_out_GT] = ACTIONS(1066), + [anon_sym_e_GT] = ACTIONS(1066), + [anon_sym_o_GT] = ACTIONS(1066), + [anon_sym_err_PLUSout_GT] = ACTIONS(1066), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1066), + [anon_sym_o_PLUSe_GT] = ACTIONS(1066), + [anon_sym_e_PLUSo_GT] = ACTIONS(1066), + [anon_sym_err_GT_GT] = ACTIONS(1068), + [anon_sym_out_GT_GT] = ACTIONS(1068), + [anon_sym_e_GT_GT] = ACTIONS(1068), + [anon_sym_o_GT_GT] = ACTIONS(1068), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1068), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1068), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1068), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1068), + [anon_sym_POUND] = ACTIONS(249), }, [1208] = { - [sym_cell_path] = STATE(1467), - [sym_path] = STATE(1376), + [sym_path] = STATE(1288), [sym_comment] = STATE(1208), - [aux_sym_cell_path_repeat1] = STATE(1258), - [ts_builtin_sym_end] = ACTIONS(1645), - [anon_sym_true] = ACTIONS(1645), - [anon_sym_false] = ACTIONS(1645), - [anon_sym_null] = ACTIONS(1645), - [aux_sym_cmd_identifier_token38] = ACTIONS(1645), - [aux_sym_cmd_identifier_token39] = ACTIONS(1645), - [aux_sym_cmd_identifier_token40] = ACTIONS(1645), - [sym__newline] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1645), - [anon_sym_err_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_GT_PIPE] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), - [anon_sym_LBRACK] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1645), - [anon_sym_DOLLAR] = ACTIONS(1641), - [anon_sym_DASH_DASH] = ACTIONS(1645), - [anon_sym_DASH] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(1645), - [anon_sym_DOT_DOT] = ACTIONS(1641), - [anon_sym_DOT_DOT2] = ACTIONS(1641), - [anon_sym_DOT] = ACTIONS(4432), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1641), - [anon_sym_DOT_DOT_LT] = ACTIONS(1641), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1645), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1645), - [aux_sym__val_number_decimal_token1] = ACTIONS(1641), - [aux_sym__val_number_decimal_token2] = ACTIONS(1645), - [aux_sym__val_number_decimal_token3] = ACTIONS(1645), - [aux_sym__val_number_decimal_token4] = ACTIONS(1645), - [aux_sym__val_number_token1] = ACTIONS(1645), - [aux_sym__val_number_token2] = ACTIONS(1645), - [aux_sym__val_number_token3] = ACTIONS(1645), - [anon_sym_0b] = ACTIONS(1641), - [anon_sym_0o] = ACTIONS(1641), - [anon_sym_0x] = ACTIONS(1641), - [sym_val_date] = ACTIONS(1645), - [anon_sym_DQUOTE] = ACTIONS(1645), - [sym__str_single_quotes] = ACTIONS(1645), - [sym__str_back_ticks] = ACTIONS(1645), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1645), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1645), - [anon_sym_err_GT] = ACTIONS(1641), - [anon_sym_out_GT] = ACTIONS(1641), - [anon_sym_e_GT] = ACTIONS(1641), - [anon_sym_o_GT] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT] = ACTIONS(1641), - [anon_sym_err_GT_GT] = ACTIONS(1645), - [anon_sym_out_GT_GT] = ACTIONS(1645), - [anon_sym_e_GT_GT] = ACTIONS(1645), - [anon_sym_o_GT_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), - [aux_sym_unquoted_token1] = ACTIONS(1641), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(1203), + [anon_sym_true] = ACTIONS(1029), + [anon_sym_false] = ACTIONS(1029), + [anon_sym_null] = ACTIONS(1029), + [aux_sym_cmd_identifier_token38] = ACTIONS(1029), + [aux_sym_cmd_identifier_token39] = ACTIONS(1029), + [aux_sym_cmd_identifier_token40] = ACTIONS(1029), + [sym__newline] = ACTIONS(1029), + [anon_sym_SEMI] = ACTIONS(1029), + [anon_sym_PIPE] = ACTIONS(1029), + [anon_sym_err_GT_PIPE] = ACTIONS(1029), + [anon_sym_out_GT_PIPE] = ACTIONS(1029), + [anon_sym_e_GT_PIPE] = ACTIONS(1029), + [anon_sym_o_GT_PIPE] = ACTIONS(1029), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1029), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1029), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1029), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1029), + [anon_sym_LBRACK] = ACTIONS(1029), + [anon_sym_LPAREN] = ACTIONS(1029), + [anon_sym_RPAREN] = ACTIONS(1029), + [anon_sym_DOLLAR] = ACTIONS(1027), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_LBRACE] = ACTIONS(1029), + [anon_sym_RBRACE] = ACTIONS(1029), + [anon_sym_DOT_DOT] = ACTIONS(1027), + [anon_sym_DOT_DOT2] = ACTIONS(1027), + [anon_sym_DOT] = ACTIONS(4461), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1027), + [anon_sym_DOT_DOT_LT] = ACTIONS(1027), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1029), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1029), + [aux_sym__val_number_decimal_token1] = ACTIONS(1027), + [aux_sym__val_number_decimal_token2] = ACTIONS(1029), + [aux_sym__val_number_decimal_token3] = ACTIONS(1029), + [aux_sym__val_number_decimal_token4] = ACTIONS(1029), + [aux_sym__val_number_token1] = ACTIONS(1029), + [aux_sym__val_number_token2] = ACTIONS(1029), + [aux_sym__val_number_token3] = ACTIONS(1029), + [anon_sym_0b] = ACTIONS(1027), + [anon_sym_0o] = ACTIONS(1027), + [anon_sym_0x] = ACTIONS(1027), + [sym_val_date] = ACTIONS(1029), + [anon_sym_DQUOTE] = ACTIONS(1029), + [sym__str_single_quotes] = ACTIONS(1029), + [sym__str_back_ticks] = ACTIONS(1029), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1029), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1029), + [anon_sym_err_GT] = ACTIONS(1027), + [anon_sym_out_GT] = ACTIONS(1027), + [anon_sym_e_GT] = ACTIONS(1027), + [anon_sym_o_GT] = ACTIONS(1027), + [anon_sym_err_PLUSout_GT] = ACTIONS(1027), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1027), + [anon_sym_o_PLUSe_GT] = ACTIONS(1027), + [anon_sym_e_PLUSo_GT] = ACTIONS(1027), + [anon_sym_err_GT_GT] = ACTIONS(1029), + [anon_sym_out_GT_GT] = ACTIONS(1029), + [anon_sym_e_GT_GT] = ACTIONS(1029), + [anon_sym_o_GT_GT] = ACTIONS(1029), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1029), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1029), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1029), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1029), + [aux_sym_unquoted_token1] = ACTIONS(1027), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1029), }, [1209] = { [sym_comment] = STATE(1209), - [ts_builtin_sym_end] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [anon_sym_null] = ACTIONS(1556), - [aux_sym_cmd_identifier_token38] = ACTIONS(1556), - [aux_sym_cmd_identifier_token39] = ACTIONS(1556), - [aux_sym_cmd_identifier_token40] = ACTIONS(1556), - [sym__newline] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1556), - [anon_sym_PIPE] = ACTIONS(1556), - [anon_sym_err_GT_PIPE] = ACTIONS(1556), - [anon_sym_out_GT_PIPE] = ACTIONS(1556), - [anon_sym_e_GT_PIPE] = ACTIONS(1556), - [anon_sym_o_GT_PIPE] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1556), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_DOLLAR] = ACTIONS(1554), - [anon_sym_DASH_DASH] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1554), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_DOT_DOT] = ACTIONS(1554), - [anon_sym_DOT_DOT2] = ACTIONS(1554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1554), - [anon_sym_DOT_DOT_LT] = ACTIONS(1554), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1556), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1556), - [aux_sym__immediate_decimal_token2] = ACTIONS(4434), - [aux_sym__val_number_decimal_token1] = ACTIONS(1554), - [aux_sym__val_number_decimal_token2] = ACTIONS(1556), - [aux_sym__val_number_decimal_token3] = ACTIONS(1556), - [aux_sym__val_number_decimal_token4] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1556), - [aux_sym__val_number_token2] = ACTIONS(1556), - [aux_sym__val_number_token3] = ACTIONS(1556), - [anon_sym_0b] = ACTIONS(1554), - [sym_filesize_unit] = ACTIONS(1556), - [sym_duration_unit] = ACTIONS(1556), - [anon_sym_0o] = ACTIONS(1554), - [anon_sym_0x] = ACTIONS(1554), - [sym_val_date] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1556), - [sym__str_single_quotes] = ACTIONS(1556), - [sym__str_back_ticks] = ACTIONS(1556), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1556), - [anon_sym_err_GT] = ACTIONS(1554), - [anon_sym_out_GT] = ACTIONS(1554), - [anon_sym_e_GT] = ACTIONS(1554), - [anon_sym_o_GT] = ACTIONS(1554), - [anon_sym_err_PLUSout_GT] = ACTIONS(1554), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1554), - [anon_sym_o_PLUSe_GT] = ACTIONS(1554), - [anon_sym_e_PLUSo_GT] = ACTIONS(1554), - [anon_sym_err_GT_GT] = ACTIONS(1556), - [anon_sym_out_GT_GT] = ACTIONS(1556), - [anon_sym_e_GT_GT] = ACTIONS(1556), - [anon_sym_o_GT_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1556), - [aux_sym_unquoted_token1] = ACTIONS(1554), - [aux_sym_unquoted_token2] = ACTIONS(1554), - [anon_sym_POUND] = ACTIONS(247), + [ts_builtin_sym_end] = ACTIONS(1538), + [anon_sym_true] = ACTIONS(1538), + [anon_sym_false] = ACTIONS(1538), + [anon_sym_null] = ACTIONS(1538), + [aux_sym_cmd_identifier_token38] = ACTIONS(1538), + [aux_sym_cmd_identifier_token39] = ACTIONS(1538), + [aux_sym_cmd_identifier_token40] = ACTIONS(1538), + [sym__newline] = ACTIONS(1538), + [anon_sym_SEMI] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_err_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_GT_PIPE] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), + [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_LPAREN] = ACTIONS(1536), + [anon_sym_DOLLAR] = ACTIONS(1536), + [anon_sym_DASH_DASH] = ACTIONS(1538), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1538), + [anon_sym_DOT_DOT] = ACTIONS(1536), + [anon_sym_LPAREN2] = ACTIONS(1538), + [anon_sym_DOT_DOT2] = ACTIONS(1536), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1536), + [anon_sym_DOT_DOT_LT] = ACTIONS(1536), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), + [aux_sym__val_number_decimal_token1] = ACTIONS(1536), + [aux_sym__val_number_decimal_token2] = ACTIONS(1538), + [aux_sym__val_number_decimal_token3] = ACTIONS(1538), + [aux_sym__val_number_decimal_token4] = ACTIONS(1538), + [aux_sym__val_number_token1] = ACTIONS(1538), + [aux_sym__val_number_token2] = ACTIONS(1538), + [aux_sym__val_number_token3] = ACTIONS(1538), + [anon_sym_0b] = ACTIONS(1536), + [sym_filesize_unit] = ACTIONS(1538), + [sym_duration_unit] = ACTIONS(1538), + [anon_sym_0o] = ACTIONS(1536), + [anon_sym_0x] = ACTIONS(1536), + [sym_val_date] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1538), + [sym__str_single_quotes] = ACTIONS(1538), + [sym__str_back_ticks] = ACTIONS(1538), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1538), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1538), + [anon_sym_err_GT] = ACTIONS(1536), + [anon_sym_out_GT] = ACTIONS(1536), + [anon_sym_e_GT] = ACTIONS(1536), + [anon_sym_o_GT] = ACTIONS(1536), + [anon_sym_err_PLUSout_GT] = ACTIONS(1536), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), + [anon_sym_o_PLUSe_GT] = ACTIONS(1536), + [anon_sym_e_PLUSo_GT] = ACTIONS(1536), + [anon_sym_err_GT_GT] = ACTIONS(1538), + [anon_sym_out_GT_GT] = ACTIONS(1538), + [anon_sym_e_GT_GT] = ACTIONS(1538), + [anon_sym_o_GT_GT] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), + [aux_sym_unquoted_token1] = ACTIONS(1536), + [aux_sym_unquoted_token2] = ACTIONS(1536), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1538), }, [1210] = { [sym_comment] = STATE(1210), - [ts_builtin_sym_end] = ACTIONS(1655), - [anon_sym_true] = ACTIONS(1655), - [anon_sym_false] = ACTIONS(1655), - [anon_sym_null] = ACTIONS(1655), - [aux_sym_cmd_identifier_token38] = ACTIONS(1655), - [aux_sym_cmd_identifier_token39] = ACTIONS(1655), - [aux_sym_cmd_identifier_token40] = ACTIONS(1655), - [sym__newline] = ACTIONS(1655), - [anon_sym_SEMI] = ACTIONS(1655), - [anon_sym_PIPE] = ACTIONS(1655), - [anon_sym_err_GT_PIPE] = ACTIONS(1655), - [anon_sym_out_GT_PIPE] = ACTIONS(1655), - [anon_sym_e_GT_PIPE] = ACTIONS(1655), - [anon_sym_o_GT_PIPE] = ACTIONS(1655), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1655), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1655), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1655), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1655), - [anon_sym_LBRACK] = ACTIONS(1655), - [anon_sym_LPAREN] = ACTIONS(1653), - [anon_sym_DOLLAR] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1655), - [anon_sym_DASH] = ACTIONS(1653), - [anon_sym_LBRACE] = ACTIONS(1655), - [anon_sym_DOT_DOT] = ACTIONS(1653), - [anon_sym_LPAREN2] = ACTIONS(1655), - [anon_sym_DOT_DOT2] = ACTIONS(1653), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1653), - [anon_sym_DOT_DOT_LT] = ACTIONS(1653), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1655), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1655), - [aux_sym__val_number_decimal_token1] = ACTIONS(1653), - [aux_sym__val_number_decimal_token2] = ACTIONS(1655), - [aux_sym__val_number_decimal_token3] = ACTIONS(1655), - [aux_sym__val_number_decimal_token4] = ACTIONS(1655), - [aux_sym__val_number_token1] = ACTIONS(1655), - [aux_sym__val_number_token2] = ACTIONS(1655), - [aux_sym__val_number_token3] = ACTIONS(1655), - [anon_sym_0b] = ACTIONS(1653), - [sym_filesize_unit] = ACTIONS(1655), - [sym_duration_unit] = ACTIONS(1655), - [anon_sym_0o] = ACTIONS(1653), - [anon_sym_0x] = ACTIONS(1653), - [sym_val_date] = ACTIONS(1655), - [anon_sym_DQUOTE] = ACTIONS(1655), - [sym__str_single_quotes] = ACTIONS(1655), - [sym__str_back_ticks] = ACTIONS(1655), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1655), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1655), - [anon_sym_err_GT] = ACTIONS(1653), - [anon_sym_out_GT] = ACTIONS(1653), - [anon_sym_e_GT] = ACTIONS(1653), - [anon_sym_o_GT] = ACTIONS(1653), - [anon_sym_err_PLUSout_GT] = ACTIONS(1653), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1653), - [anon_sym_o_PLUSe_GT] = ACTIONS(1653), - [anon_sym_e_PLUSo_GT] = ACTIONS(1653), - [anon_sym_err_GT_GT] = ACTIONS(1655), - [anon_sym_out_GT_GT] = ACTIONS(1655), - [anon_sym_e_GT_GT] = ACTIONS(1655), - [anon_sym_o_GT_GT] = ACTIONS(1655), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1655), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1655), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1655), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1655), - [aux_sym_unquoted_token1] = ACTIONS(1653), - [aux_sym_unquoted_token2] = ACTIONS(1653), - [anon_sym_POUND] = ACTIONS(247), - }, - [1211] = { - [sym_comment] = STATE(1211), - [anon_sym_true] = ACTIONS(1520), - [anon_sym_false] = ACTIONS(1520), - [anon_sym_null] = ACTIONS(1520), - [aux_sym_cmd_identifier_token38] = ACTIONS(1520), - [aux_sym_cmd_identifier_token39] = ACTIONS(1520), - [aux_sym_cmd_identifier_token40] = ACTIONS(1520), - [sym__newline] = ACTIONS(1520), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_err_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_GT_PIPE] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1520), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_RPAREN] = ACTIONS(1520), - [anon_sym_DOLLAR] = ACTIONS(1518), - [anon_sym_DASH_DASH] = ACTIONS(1520), - [anon_sym_DASH] = ACTIONS(1518), - [anon_sym_LBRACE] = ACTIONS(1520), - [anon_sym_RBRACE] = ACTIONS(1520), - [anon_sym_DOT_DOT] = ACTIONS(1518), - [anon_sym_DOT_DOT2] = ACTIONS(1518), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1518), - [anon_sym_DOT_DOT_LT] = ACTIONS(1518), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), - [aux_sym__val_number_decimal_token1] = ACTIONS(1518), - [aux_sym__val_number_decimal_token2] = ACTIONS(1520), - [aux_sym__val_number_decimal_token3] = ACTIONS(1520), - [aux_sym__val_number_decimal_token4] = ACTIONS(1520), - [aux_sym__val_number_token1] = ACTIONS(1520), - [aux_sym__val_number_token2] = ACTIONS(1520), - [aux_sym__val_number_token3] = ACTIONS(1520), - [anon_sym_0b] = ACTIONS(1518), - [sym_filesize_unit] = ACTIONS(1520), - [sym_duration_unit] = ACTIONS(1520), - [anon_sym_0o] = ACTIONS(1518), - [anon_sym_0x] = ACTIONS(1518), - [sym_val_date] = ACTIONS(1520), - [anon_sym_DQUOTE] = ACTIONS(1520), - [sym__str_single_quotes] = ACTIONS(1520), - [sym__str_back_ticks] = ACTIONS(1520), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1520), - [anon_sym_err_GT] = ACTIONS(1518), - [anon_sym_out_GT] = ACTIONS(1518), - [anon_sym_e_GT] = ACTIONS(1518), - [anon_sym_o_GT] = ACTIONS(1518), - [anon_sym_err_PLUSout_GT] = ACTIONS(1518), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), - [anon_sym_o_PLUSe_GT] = ACTIONS(1518), - [anon_sym_e_PLUSo_GT] = ACTIONS(1518), - [anon_sym_err_GT_GT] = ACTIONS(1520), - [anon_sym_out_GT_GT] = ACTIONS(1520), - [anon_sym_e_GT_GT] = ACTIONS(1520), - [anon_sym_o_GT_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1520), - [aux_sym_unquoted_token1] = ACTIONS(1518), - [aux_sym_unquoted_token2] = ACTIONS(1518), - [anon_sym_POUND] = ACTIONS(247), - }, - [1212] = { - [sym_comment] = STATE(1212), - [anon_sym_EQ] = ACTIONS(1046), - [anon_sym_PLUS_EQ] = ACTIONS(1048), - [anon_sym_DASH_EQ] = ACTIONS(1048), - [anon_sym_STAR_EQ] = ACTIONS(1048), - [anon_sym_SLASH_EQ] = ACTIONS(1048), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1048), - [sym__newline] = ACTIONS(1046), - [anon_sym_SEMI] = ACTIONS(1048), - [anon_sym_PIPE] = ACTIONS(1048), - [anon_sym_err_GT_PIPE] = ACTIONS(1048), - [anon_sym_out_GT_PIPE] = ACTIONS(1048), - [anon_sym_e_GT_PIPE] = ACTIONS(1048), - [anon_sym_o_GT_PIPE] = ACTIONS(1048), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1048), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1048), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1048), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1048), - [anon_sym_RPAREN] = ACTIONS(1048), - [anon_sym_LBRACE] = ACTIONS(1048), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1048), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1048), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1048), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1048), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1048), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1048), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1048), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1048), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1048), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1048), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1048), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1048), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1048), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1048), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1048), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1048), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1048), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1048), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1048), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1048), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1048), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1048), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1048), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1048), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1048), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1048), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1048), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1048), - [anon_sym_DOT_DOT2] = ACTIONS(1046), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1048), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1048), - [anon_sym_err_GT] = ACTIONS(1046), - [anon_sym_out_GT] = ACTIONS(1046), - [anon_sym_e_GT] = ACTIONS(1046), - [anon_sym_o_GT] = ACTIONS(1046), - [anon_sym_err_PLUSout_GT] = ACTIONS(1046), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1046), - [anon_sym_o_PLUSe_GT] = ACTIONS(1046), - [anon_sym_e_PLUSo_GT] = ACTIONS(1046), - [anon_sym_err_GT_GT] = ACTIONS(1048), - [anon_sym_out_GT_GT] = ACTIONS(1048), - [anon_sym_e_GT_GT] = ACTIONS(1048), - [anon_sym_o_GT_GT] = ACTIONS(1048), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1048), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1048), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1048), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1048), - [anon_sym_POUND] = ACTIONS(247), - }, - [1213] = { - [sym_comment] = STATE(1213), - [anon_sym_true] = ACTIONS(1542), - [anon_sym_false] = ACTIONS(1542), - [anon_sym_null] = ACTIONS(1542), - [aux_sym_cmd_identifier_token38] = ACTIONS(1542), - [aux_sym_cmd_identifier_token39] = ACTIONS(1542), - [aux_sym_cmd_identifier_token40] = ACTIONS(1542), - [sym__newline] = ACTIONS(1542), - [anon_sym_SEMI] = ACTIONS(1542), - [anon_sym_PIPE] = ACTIONS(1542), - [anon_sym_err_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_GT_PIPE] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1542), - [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_LPAREN] = ACTIONS(1542), - [anon_sym_RPAREN] = ACTIONS(1542), - [anon_sym_DOLLAR] = ACTIONS(1540), - [anon_sym_DASH_DASH] = ACTIONS(1542), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_LBRACE] = ACTIONS(1542), - [anon_sym_RBRACE] = ACTIONS(1542), - [anon_sym_DOT_DOT] = ACTIONS(1540), - [anon_sym_DOT_DOT2] = ACTIONS(1540), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1540), - [anon_sym_DOT_DOT_LT] = ACTIONS(1540), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1542), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1542), - [aux_sym__val_number_decimal_token1] = ACTIONS(1540), - [aux_sym__val_number_decimal_token2] = ACTIONS(1542), - [aux_sym__val_number_decimal_token3] = ACTIONS(1542), - [aux_sym__val_number_decimal_token4] = ACTIONS(1542), - [aux_sym__val_number_token1] = ACTIONS(1542), - [aux_sym__val_number_token2] = ACTIONS(1542), - [aux_sym__val_number_token3] = ACTIONS(1542), - [anon_sym_0b] = ACTIONS(1540), - [sym_filesize_unit] = ACTIONS(1542), - [sym_duration_unit] = ACTIONS(1542), - [anon_sym_0o] = ACTIONS(1540), - [anon_sym_0x] = ACTIONS(1540), - [sym_val_date] = ACTIONS(1542), - [anon_sym_DQUOTE] = ACTIONS(1542), - [sym__str_single_quotes] = ACTIONS(1542), - [sym__str_back_ticks] = ACTIONS(1542), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1542), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1542), - [anon_sym_err_GT] = ACTIONS(1540), - [anon_sym_out_GT] = ACTIONS(1540), - [anon_sym_e_GT] = ACTIONS(1540), - [anon_sym_o_GT] = ACTIONS(1540), - [anon_sym_err_PLUSout_GT] = ACTIONS(1540), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1540), - [anon_sym_o_PLUSe_GT] = ACTIONS(1540), - [anon_sym_e_PLUSo_GT] = ACTIONS(1540), - [anon_sym_err_GT_GT] = ACTIONS(1542), - [anon_sym_out_GT_GT] = ACTIONS(1542), - [anon_sym_e_GT_GT] = ACTIONS(1542), - [anon_sym_o_GT_GT] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1542), - [aux_sym_unquoted_token1] = ACTIONS(1540), - [aux_sym_unquoted_token2] = ACTIONS(1540), - [anon_sym_POUND] = ACTIONS(247), - }, - [1214] = { - [sym_comment] = STATE(1214), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [anon_sym_null] = ACTIONS(1556), - [aux_sym_cmd_identifier_token38] = ACTIONS(1556), - [aux_sym_cmd_identifier_token39] = ACTIONS(1556), - [aux_sym_cmd_identifier_token40] = ACTIONS(1556), - [sym__newline] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1556), - [anon_sym_PIPE] = ACTIONS(1556), - [anon_sym_err_GT_PIPE] = ACTIONS(1556), - [anon_sym_out_GT_PIPE] = ACTIONS(1556), - [anon_sym_e_GT_PIPE] = ACTIONS(1556), - [anon_sym_o_GT_PIPE] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1556), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_RPAREN] = ACTIONS(1556), - [anon_sym_DOLLAR] = ACTIONS(1554), - [anon_sym_DASH_DASH] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1554), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1556), - [anon_sym_DOT_DOT] = ACTIONS(1554), - [anon_sym_DOT_DOT2] = ACTIONS(1554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1554), - [anon_sym_DOT_DOT_LT] = ACTIONS(1554), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1556), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1554), - [aux_sym__val_number_decimal_token2] = ACTIONS(1556), - [aux_sym__val_number_decimal_token3] = ACTIONS(1556), - [aux_sym__val_number_decimal_token4] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1556), - [aux_sym__val_number_token2] = ACTIONS(1556), - [aux_sym__val_number_token3] = ACTIONS(1556), - [anon_sym_0b] = ACTIONS(1554), - [sym_filesize_unit] = ACTIONS(1556), - [sym_duration_unit] = ACTIONS(1556), - [anon_sym_0o] = ACTIONS(1554), - [anon_sym_0x] = ACTIONS(1554), - [sym_val_date] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1556), - [sym__str_single_quotes] = ACTIONS(1556), - [sym__str_back_ticks] = ACTIONS(1556), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1556), - [anon_sym_err_GT] = ACTIONS(1554), - [anon_sym_out_GT] = ACTIONS(1554), - [anon_sym_e_GT] = ACTIONS(1554), - [anon_sym_o_GT] = ACTIONS(1554), - [anon_sym_err_PLUSout_GT] = ACTIONS(1554), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1554), - [anon_sym_o_PLUSe_GT] = ACTIONS(1554), - [anon_sym_e_PLUSo_GT] = ACTIONS(1554), - [anon_sym_err_GT_GT] = ACTIONS(1556), - [anon_sym_out_GT_GT] = ACTIONS(1556), - [anon_sym_e_GT_GT] = ACTIONS(1556), - [anon_sym_o_GT_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1556), - [aux_sym_unquoted_token1] = ACTIONS(1554), - [aux_sym_unquoted_token2] = ACTIONS(1554), - [anon_sym_POUND] = ACTIONS(247), - }, - [1215] = { - [sym_comment] = STATE(1215), - [ts_builtin_sym_end] = ACTIONS(1542), - [anon_sym_true] = ACTIONS(1542), - [anon_sym_false] = ACTIONS(1542), - [anon_sym_null] = ACTIONS(1542), - [aux_sym_cmd_identifier_token38] = ACTIONS(1542), - [aux_sym_cmd_identifier_token39] = ACTIONS(1542), - [aux_sym_cmd_identifier_token40] = ACTIONS(1542), - [sym__newline] = ACTIONS(1542), - [anon_sym_SEMI] = ACTIONS(1542), - [anon_sym_PIPE] = ACTIONS(1542), - [anon_sym_err_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_GT_PIPE] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1542), - [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_LPAREN] = ACTIONS(1540), - [anon_sym_DOLLAR] = ACTIONS(1540), - [anon_sym_DASH_DASH] = ACTIONS(1542), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_LBRACE] = ACTIONS(1542), - [anon_sym_DOT_DOT] = ACTIONS(1540), - [anon_sym_LPAREN2] = ACTIONS(1542), - [anon_sym_DOT_DOT2] = ACTIONS(1540), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1540), - [anon_sym_DOT_DOT_LT] = ACTIONS(1540), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1542), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1542), - [aux_sym__val_number_decimal_token1] = ACTIONS(1540), - [aux_sym__val_number_decimal_token2] = ACTIONS(1542), - [aux_sym__val_number_decimal_token3] = ACTIONS(1542), - [aux_sym__val_number_decimal_token4] = ACTIONS(1542), - [aux_sym__val_number_token1] = ACTIONS(1542), - [aux_sym__val_number_token2] = ACTIONS(1542), - [aux_sym__val_number_token3] = ACTIONS(1542), - [anon_sym_0b] = ACTIONS(1540), - [sym_filesize_unit] = ACTIONS(1542), - [sym_duration_unit] = ACTIONS(1542), - [anon_sym_0o] = ACTIONS(1540), - [anon_sym_0x] = ACTIONS(1540), - [sym_val_date] = ACTIONS(1542), - [anon_sym_DQUOTE] = ACTIONS(1542), - [sym__str_single_quotes] = ACTIONS(1542), - [sym__str_back_ticks] = ACTIONS(1542), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1542), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1542), - [anon_sym_err_GT] = ACTIONS(1540), - [anon_sym_out_GT] = ACTIONS(1540), - [anon_sym_e_GT] = ACTIONS(1540), - [anon_sym_o_GT] = ACTIONS(1540), - [anon_sym_err_PLUSout_GT] = ACTIONS(1540), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1540), - [anon_sym_o_PLUSe_GT] = ACTIONS(1540), - [anon_sym_e_PLUSo_GT] = ACTIONS(1540), - [anon_sym_err_GT_GT] = ACTIONS(1542), - [anon_sym_out_GT_GT] = ACTIONS(1542), - [anon_sym_e_GT_GT] = ACTIONS(1542), - [anon_sym_o_GT_GT] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1542), - [aux_sym_unquoted_token1] = ACTIONS(1540), - [aux_sym_unquoted_token2] = ACTIONS(1540), - [anon_sym_POUND] = ACTIONS(247), - }, - [1216] = { - [sym_comment] = STATE(1216), - [anon_sym_true] = ACTIONS(1655), - [anon_sym_false] = ACTIONS(1655), - [anon_sym_null] = ACTIONS(1655), - [aux_sym_cmd_identifier_token38] = ACTIONS(1655), - [aux_sym_cmd_identifier_token39] = ACTIONS(1655), - [aux_sym_cmd_identifier_token40] = ACTIONS(1655), - [sym__newline] = ACTIONS(1655), - [anon_sym_SEMI] = ACTIONS(1655), - [anon_sym_PIPE] = ACTIONS(1655), - [anon_sym_err_GT_PIPE] = ACTIONS(1655), - [anon_sym_out_GT_PIPE] = ACTIONS(1655), - [anon_sym_e_GT_PIPE] = ACTIONS(1655), - [anon_sym_o_GT_PIPE] = ACTIONS(1655), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1655), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1655), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1655), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1655), - [anon_sym_LBRACK] = ACTIONS(1655), - [anon_sym_LPAREN] = ACTIONS(1655), - [anon_sym_RPAREN] = ACTIONS(1655), - [anon_sym_DOLLAR] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1655), - [anon_sym_DASH] = ACTIONS(1653), - [anon_sym_LBRACE] = ACTIONS(1655), - [anon_sym_RBRACE] = ACTIONS(1655), - [anon_sym_DOT_DOT] = ACTIONS(1653), - [anon_sym_DOT_DOT2] = ACTIONS(1653), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1653), - [anon_sym_DOT_DOT_LT] = ACTIONS(1653), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1655), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1655), - [aux_sym__val_number_decimal_token1] = ACTIONS(1653), - [aux_sym__val_number_decimal_token2] = ACTIONS(1655), - [aux_sym__val_number_decimal_token3] = ACTIONS(1655), - [aux_sym__val_number_decimal_token4] = ACTIONS(1655), - [aux_sym__val_number_token1] = ACTIONS(1655), - [aux_sym__val_number_token2] = ACTIONS(1655), - [aux_sym__val_number_token3] = ACTIONS(1655), - [anon_sym_0b] = ACTIONS(1653), - [sym_filesize_unit] = ACTIONS(1655), - [sym_duration_unit] = ACTIONS(1655), - [anon_sym_0o] = ACTIONS(1653), - [anon_sym_0x] = ACTIONS(1653), - [sym_val_date] = ACTIONS(1655), - [anon_sym_DQUOTE] = ACTIONS(1655), - [sym__str_single_quotes] = ACTIONS(1655), - [sym__str_back_ticks] = ACTIONS(1655), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1655), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1655), - [anon_sym_err_GT] = ACTIONS(1653), - [anon_sym_out_GT] = ACTIONS(1653), - [anon_sym_e_GT] = ACTIONS(1653), - [anon_sym_o_GT] = ACTIONS(1653), - [anon_sym_err_PLUSout_GT] = ACTIONS(1653), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1653), - [anon_sym_o_PLUSe_GT] = ACTIONS(1653), - [anon_sym_e_PLUSo_GT] = ACTIONS(1653), - [anon_sym_err_GT_GT] = ACTIONS(1655), - [anon_sym_out_GT_GT] = ACTIONS(1655), - [anon_sym_e_GT_GT] = ACTIONS(1655), - [anon_sym_o_GT_GT] = ACTIONS(1655), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1655), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1655), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1655), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1655), - [aux_sym_unquoted_token1] = ACTIONS(1653), - [aux_sym_unquoted_token2] = ACTIONS(1653), - [anon_sym_POUND] = ACTIONS(247), - }, - [1217] = { - [sym_comment] = STATE(1217), - [anon_sym_EQ] = ACTIONS(1058), - [anon_sym_PLUS_EQ] = ACTIONS(1060), - [anon_sym_DASH_EQ] = ACTIONS(1060), - [anon_sym_STAR_EQ] = ACTIONS(1060), - [anon_sym_SLASH_EQ] = ACTIONS(1060), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1060), - [sym__newline] = ACTIONS(1058), - [anon_sym_SEMI] = ACTIONS(1060), - [anon_sym_PIPE] = ACTIONS(1060), - [anon_sym_err_GT_PIPE] = ACTIONS(1060), - [anon_sym_out_GT_PIPE] = ACTIONS(1060), - [anon_sym_e_GT_PIPE] = ACTIONS(1060), - [anon_sym_o_GT_PIPE] = ACTIONS(1060), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1060), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1060), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1060), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1060), - [anon_sym_LBRACE] = ACTIONS(1060), - [anon_sym_RBRACE] = ACTIONS(1060), - [aux_sym_expr_binary_token1] = ACTIONS(1060), - [aux_sym_expr_binary_token2] = ACTIONS(1060), - [aux_sym_expr_binary_token3] = ACTIONS(1060), - [aux_sym_expr_binary_token4] = ACTIONS(1060), - [aux_sym_expr_binary_token5] = ACTIONS(1060), - [aux_sym_expr_binary_token6] = ACTIONS(1060), - [aux_sym_expr_binary_token7] = ACTIONS(1060), - [aux_sym_expr_binary_token8] = ACTIONS(1060), - [aux_sym_expr_binary_token9] = ACTIONS(1060), - [aux_sym_expr_binary_token10] = ACTIONS(1060), - [aux_sym_expr_binary_token11] = ACTIONS(1060), - [aux_sym_expr_binary_token12] = ACTIONS(1060), - [aux_sym_expr_binary_token13] = ACTIONS(1060), - [aux_sym_expr_binary_token14] = ACTIONS(1060), - [aux_sym_expr_binary_token15] = ACTIONS(1060), - [aux_sym_expr_binary_token16] = ACTIONS(1060), - [aux_sym_expr_binary_token17] = ACTIONS(1060), - [aux_sym_expr_binary_token18] = ACTIONS(1060), - [aux_sym_expr_binary_token19] = ACTIONS(1060), - [aux_sym_expr_binary_token20] = ACTIONS(1060), - [aux_sym_expr_binary_token21] = ACTIONS(1060), - [aux_sym_expr_binary_token22] = ACTIONS(1060), - [aux_sym_expr_binary_token23] = ACTIONS(1060), - [aux_sym_expr_binary_token24] = ACTIONS(1060), - [aux_sym_expr_binary_token25] = ACTIONS(1060), - [aux_sym_expr_binary_token26] = ACTIONS(1060), - [aux_sym_expr_binary_token27] = ACTIONS(1060), - [aux_sym_expr_binary_token28] = ACTIONS(1060), - [anon_sym_DOT_DOT2] = ACTIONS(1058), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1060), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1060), - [aux_sym_record_entry_token1] = ACTIONS(1060), - [anon_sym_err_GT] = ACTIONS(1058), - [anon_sym_out_GT] = ACTIONS(1058), - [anon_sym_e_GT] = ACTIONS(1058), - [anon_sym_o_GT] = ACTIONS(1058), - [anon_sym_err_PLUSout_GT] = ACTIONS(1058), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1058), - [anon_sym_o_PLUSe_GT] = ACTIONS(1058), - [anon_sym_e_PLUSo_GT] = ACTIONS(1058), - [anon_sym_err_GT_GT] = ACTIONS(1060), - [anon_sym_out_GT_GT] = ACTIONS(1060), - [anon_sym_e_GT_GT] = ACTIONS(1060), - [anon_sym_o_GT_GT] = ACTIONS(1060), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1060), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1060), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1060), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1060), - [anon_sym_POUND] = ACTIONS(247), - }, - [1218] = { - [sym_comment] = STATE(1218), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_PLUS_EQ] = ACTIONS(1052), - [anon_sym_DASH_EQ] = ACTIONS(1052), - [anon_sym_STAR_EQ] = ACTIONS(1052), - [anon_sym_SLASH_EQ] = ACTIONS(1052), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1052), - [sym__newline] = ACTIONS(1050), - [anon_sym_SEMI] = ACTIONS(1052), - [anon_sym_PIPE] = ACTIONS(1052), - [anon_sym_err_GT_PIPE] = ACTIONS(1052), - [anon_sym_out_GT_PIPE] = ACTIONS(1052), - [anon_sym_e_GT_PIPE] = ACTIONS(1052), - [anon_sym_o_GT_PIPE] = ACTIONS(1052), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1052), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1052), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1052), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1052), - [anon_sym_RPAREN] = ACTIONS(1052), - [anon_sym_LBRACE] = ACTIONS(1052), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1052), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1052), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1052), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1052), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1052), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1052), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1052), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1052), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1052), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1052), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1052), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1052), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1052), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1052), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1052), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1052), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1052), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1052), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1052), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1052), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1052), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1052), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1052), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1052), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1052), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1052), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1052), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1052), - [anon_sym_DOT_DOT2] = ACTIONS(1050), - [anon_sym_DOT] = ACTIONS(1050), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1052), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1052), - [anon_sym_err_GT] = ACTIONS(1050), - [anon_sym_out_GT] = ACTIONS(1050), - [anon_sym_e_GT] = ACTIONS(1050), - [anon_sym_o_GT] = ACTIONS(1050), - [anon_sym_err_PLUSout_GT] = ACTIONS(1050), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1050), - [anon_sym_o_PLUSe_GT] = ACTIONS(1050), - [anon_sym_e_PLUSo_GT] = ACTIONS(1050), - [anon_sym_err_GT_GT] = ACTIONS(1052), - [anon_sym_out_GT_GT] = ACTIONS(1052), - [anon_sym_e_GT_GT] = ACTIONS(1052), - [anon_sym_o_GT_GT] = ACTIONS(1052), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1052), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1052), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1052), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1052), - [anon_sym_POUND] = ACTIONS(247), - }, - [1219] = { - [sym_comment] = STATE(1219), - [anon_sym_EQ] = ACTIONS(1046), - [anon_sym_PLUS_EQ] = ACTIONS(1048), - [anon_sym_DASH_EQ] = ACTIONS(1048), - [anon_sym_STAR_EQ] = ACTIONS(1048), - [anon_sym_SLASH_EQ] = ACTIONS(1048), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1048), - [sym__newline] = ACTIONS(1048), - [anon_sym_SEMI] = ACTIONS(1048), - [anon_sym_PIPE] = ACTIONS(1048), - [anon_sym_err_GT_PIPE] = ACTIONS(1048), - [anon_sym_out_GT_PIPE] = ACTIONS(1048), - [anon_sym_e_GT_PIPE] = ACTIONS(1048), - [anon_sym_o_GT_PIPE] = ACTIONS(1048), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1048), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1048), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1048), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1048), - [anon_sym_RPAREN] = ACTIONS(1048), - [anon_sym_RBRACE] = ACTIONS(1048), - [aux_sym_expr_binary_token1] = ACTIONS(1048), - [aux_sym_expr_binary_token2] = ACTIONS(1048), - [aux_sym_expr_binary_token3] = ACTIONS(1048), - [aux_sym_expr_binary_token4] = ACTIONS(1048), - [aux_sym_expr_binary_token5] = ACTIONS(1048), - [aux_sym_expr_binary_token6] = ACTIONS(1048), - [aux_sym_expr_binary_token7] = ACTIONS(1048), - [aux_sym_expr_binary_token8] = ACTIONS(1048), - [aux_sym_expr_binary_token9] = ACTIONS(1048), - [aux_sym_expr_binary_token10] = ACTIONS(1048), - [aux_sym_expr_binary_token11] = ACTIONS(1048), - [aux_sym_expr_binary_token12] = ACTIONS(1048), - [aux_sym_expr_binary_token13] = ACTIONS(1048), - [aux_sym_expr_binary_token14] = ACTIONS(1048), - [aux_sym_expr_binary_token15] = ACTIONS(1048), - [aux_sym_expr_binary_token16] = ACTIONS(1048), - [aux_sym_expr_binary_token17] = ACTIONS(1048), - [aux_sym_expr_binary_token18] = ACTIONS(1048), - [aux_sym_expr_binary_token19] = ACTIONS(1048), - [aux_sym_expr_binary_token20] = ACTIONS(1048), - [aux_sym_expr_binary_token21] = ACTIONS(1048), - [aux_sym_expr_binary_token22] = ACTIONS(1048), - [aux_sym_expr_binary_token23] = ACTIONS(1048), - [aux_sym_expr_binary_token24] = ACTIONS(1048), - [aux_sym_expr_binary_token25] = ACTIONS(1048), - [aux_sym_expr_binary_token26] = ACTIONS(1048), - [aux_sym_expr_binary_token27] = ACTIONS(1048), - [aux_sym_expr_binary_token28] = ACTIONS(1048), - [anon_sym_DOT_DOT2] = ACTIONS(1046), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1048), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1048), - [anon_sym_err_GT] = ACTIONS(1046), - [anon_sym_out_GT] = ACTIONS(1046), - [anon_sym_e_GT] = ACTIONS(1046), - [anon_sym_o_GT] = ACTIONS(1046), - [anon_sym_err_PLUSout_GT] = ACTIONS(1046), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1046), - [anon_sym_o_PLUSe_GT] = ACTIONS(1046), - [anon_sym_e_PLUSo_GT] = ACTIONS(1046), - [anon_sym_err_GT_GT] = ACTIONS(1048), - [anon_sym_out_GT_GT] = ACTIONS(1048), - [anon_sym_e_GT_GT] = ACTIONS(1048), - [anon_sym_o_GT_GT] = ACTIONS(1048), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1048), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1048), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1048), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1048), - [anon_sym_POUND] = ACTIONS(247), - }, - [1220] = { - [sym_comment] = STATE(1220), [anon_sym_EQ] = ACTIONS(1054), [anon_sym_PLUS_EQ] = ACTIONS(1056), [anon_sym_DASH_EQ] = ACTIONS(1056), @@ -193198,6 +195352,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1056), [anon_sym_RPAREN] = ACTIONS(1056), [anon_sym_LBRACE] = ACTIONS(1056), + [anon_sym_QMARK2] = ACTIONS(1056), [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1056), [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1056), [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1056), @@ -193246,366 +195401,442 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1056), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1056), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1056), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), }, - [1221] = { - [sym_comment] = STATE(1221), - [ts_builtin_sym_end] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [anon_sym_null] = ACTIONS(1556), - [aux_sym_cmd_identifier_token38] = ACTIONS(1556), - [aux_sym_cmd_identifier_token39] = ACTIONS(1556), - [aux_sym_cmd_identifier_token40] = ACTIONS(1556), - [sym__newline] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1556), - [anon_sym_PIPE] = ACTIONS(1556), - [anon_sym_err_GT_PIPE] = ACTIONS(1556), - [anon_sym_out_GT_PIPE] = ACTIONS(1556), - [anon_sym_e_GT_PIPE] = ACTIONS(1556), - [anon_sym_o_GT_PIPE] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1556), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1554), - [anon_sym_DOLLAR] = ACTIONS(1554), - [anon_sym_DASH_DASH] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1554), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_DOT_DOT] = ACTIONS(1554), - [anon_sym_LPAREN2] = ACTIONS(1556), - [anon_sym_DOT_DOT2] = ACTIONS(1554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1554), - [anon_sym_DOT_DOT_LT] = ACTIONS(1554), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1556), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1554), - [aux_sym__val_number_decimal_token2] = ACTIONS(1556), - [aux_sym__val_number_decimal_token3] = ACTIONS(1556), - [aux_sym__val_number_decimal_token4] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1556), - [aux_sym__val_number_token2] = ACTIONS(1556), - [aux_sym__val_number_token3] = ACTIONS(1556), - [anon_sym_0b] = ACTIONS(1554), - [sym_filesize_unit] = ACTIONS(1556), - [sym_duration_unit] = ACTIONS(1556), - [anon_sym_0o] = ACTIONS(1554), - [anon_sym_0x] = ACTIONS(1554), - [sym_val_date] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1556), - [sym__str_single_quotes] = ACTIONS(1556), - [sym__str_back_ticks] = ACTIONS(1556), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1556), - [anon_sym_err_GT] = ACTIONS(1554), - [anon_sym_out_GT] = ACTIONS(1554), - [anon_sym_e_GT] = ACTIONS(1554), - [anon_sym_o_GT] = ACTIONS(1554), - [anon_sym_err_PLUSout_GT] = ACTIONS(1554), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1554), - [anon_sym_o_PLUSe_GT] = ACTIONS(1554), - [anon_sym_e_PLUSo_GT] = ACTIONS(1554), - [anon_sym_err_GT_GT] = ACTIONS(1556), - [anon_sym_out_GT_GT] = ACTIONS(1556), - [anon_sym_e_GT_GT] = ACTIONS(1556), - [anon_sym_o_GT_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1556), - [aux_sym_unquoted_token1] = ACTIONS(1554), - [aux_sym_unquoted_token2] = ACTIONS(1554), - [anon_sym_POUND] = ACTIONS(247), + [1211] = { + [sym_cell_path] = STATE(1407), + [sym_path] = STATE(1369), + [sym_comment] = STATE(1211), + [aux_sym_cell_path_repeat1] = STATE(1274), + [ts_builtin_sym_end] = ACTIONS(1672), + [anon_sym_true] = ACTIONS(1672), + [anon_sym_false] = ACTIONS(1672), + [anon_sym_null] = ACTIONS(1672), + [aux_sym_cmd_identifier_token38] = ACTIONS(1672), + [aux_sym_cmd_identifier_token39] = ACTIONS(1672), + [aux_sym_cmd_identifier_token40] = ACTIONS(1672), + [sym__newline] = ACTIONS(1672), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_PIPE] = ACTIONS(1672), + [anon_sym_err_GT_PIPE] = ACTIONS(1672), + [anon_sym_out_GT_PIPE] = ACTIONS(1672), + [anon_sym_e_GT_PIPE] = ACTIONS(1672), + [anon_sym_o_GT_PIPE] = ACTIONS(1672), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1672), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1672), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1672), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1672), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LPAREN] = ACTIONS(1672), + [anon_sym_DOLLAR] = ACTIONS(1670), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DASH] = ACTIONS(1670), + [anon_sym_LBRACE] = ACTIONS(1672), + [anon_sym_DOT_DOT] = ACTIONS(1670), + [anon_sym_DOT_DOT2] = ACTIONS(1670), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1670), + [anon_sym_DOT_DOT_LT] = ACTIONS(1670), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1672), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1672), + [aux_sym__val_number_decimal_token1] = ACTIONS(1670), + [aux_sym__val_number_decimal_token2] = ACTIONS(1672), + [aux_sym__val_number_decimal_token3] = ACTIONS(1672), + [aux_sym__val_number_decimal_token4] = ACTIONS(1672), + [aux_sym__val_number_token1] = ACTIONS(1672), + [aux_sym__val_number_token2] = ACTIONS(1672), + [aux_sym__val_number_token3] = ACTIONS(1672), + [anon_sym_0b] = ACTIONS(1670), + [anon_sym_0o] = ACTIONS(1670), + [anon_sym_0x] = ACTIONS(1670), + [sym_val_date] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1672), + [sym__str_single_quotes] = ACTIONS(1672), + [sym__str_back_ticks] = ACTIONS(1672), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1672), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1672), + [anon_sym_err_GT] = ACTIONS(1670), + [anon_sym_out_GT] = ACTIONS(1670), + [anon_sym_e_GT] = ACTIONS(1670), + [anon_sym_o_GT] = ACTIONS(1670), + [anon_sym_err_PLUSout_GT] = ACTIONS(1670), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1670), + [anon_sym_o_PLUSe_GT] = ACTIONS(1670), + [anon_sym_e_PLUSo_GT] = ACTIONS(1670), + [anon_sym_err_GT_GT] = ACTIONS(1672), + [anon_sym_out_GT_GT] = ACTIONS(1672), + [anon_sym_e_GT_GT] = ACTIONS(1672), + [anon_sym_o_GT_GT] = ACTIONS(1672), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1672), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1672), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1672), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1672), + [aux_sym_unquoted_token1] = ACTIONS(1670), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1672), }, - [1222] = { - [sym_comment] = STATE(1222), - [anon_sym_true] = ACTIONS(1669), - [anon_sym_false] = ACTIONS(1669), - [anon_sym_null] = ACTIONS(1669), - [aux_sym_cmd_identifier_token38] = ACTIONS(1669), - [aux_sym_cmd_identifier_token39] = ACTIONS(1669), - [aux_sym_cmd_identifier_token40] = ACTIONS(1669), - [sym__newline] = ACTIONS(1669), - [anon_sym_SEMI] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1669), - [anon_sym_err_GT_PIPE] = ACTIONS(1669), - [anon_sym_out_GT_PIPE] = ACTIONS(1669), - [anon_sym_e_GT_PIPE] = ACTIONS(1669), - [anon_sym_o_GT_PIPE] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), - [anon_sym_LBRACK] = ACTIONS(1669), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_RPAREN] = ACTIONS(1669), - [anon_sym_DOLLAR] = ACTIONS(1667), - [anon_sym_DASH_DASH] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_LBRACE] = ACTIONS(1669), - [anon_sym_RBRACE] = ACTIONS(1669), - [anon_sym_DOT_DOT] = ACTIONS(1667), - [anon_sym_LPAREN2] = ACTIONS(1669), - [anon_sym_DOT_DOT2] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1667), - [anon_sym_DOT_DOT_LT] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [aux_sym__immediate_decimal_token2] = ACTIONS(4069), - [aux_sym__val_number_decimal_token1] = ACTIONS(1667), - [aux_sym__val_number_decimal_token2] = ACTIONS(1669), - [aux_sym__val_number_decimal_token3] = ACTIONS(1669), - [aux_sym__val_number_decimal_token4] = ACTIONS(1669), - [aux_sym__val_number_token1] = ACTIONS(1669), - [aux_sym__val_number_token2] = ACTIONS(1669), - [aux_sym__val_number_token3] = ACTIONS(1669), - [anon_sym_0b] = ACTIONS(1667), - [anon_sym_0o] = ACTIONS(1667), - [anon_sym_0x] = ACTIONS(1667), - [sym_val_date] = ACTIONS(1669), - [anon_sym_DQUOTE] = ACTIONS(1669), - [sym__str_single_quotes] = ACTIONS(1669), - [sym__str_back_ticks] = ACTIONS(1669), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1669), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1669), - [anon_sym_err_GT] = ACTIONS(1667), - [anon_sym_out_GT] = ACTIONS(1667), - [anon_sym_e_GT] = ACTIONS(1667), - [anon_sym_o_GT] = ACTIONS(1667), - [anon_sym_err_PLUSout_GT] = ACTIONS(1667), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1667), - [anon_sym_o_PLUSe_GT] = ACTIONS(1667), - [anon_sym_e_PLUSo_GT] = ACTIONS(1667), - [anon_sym_err_GT_GT] = ACTIONS(1669), - [anon_sym_out_GT_GT] = ACTIONS(1669), - [anon_sym_e_GT_GT] = ACTIONS(1669), - [anon_sym_o_GT_GT] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1669), - [aux_sym_unquoted_token1] = ACTIONS(1667), - [aux_sym_unquoted_token2] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(247), + [1212] = { + [sym_comment] = STATE(1212), + [ts_builtin_sym_end] = ACTIONS(1598), + [anon_sym_true] = ACTIONS(1598), + [anon_sym_false] = ACTIONS(1598), + [anon_sym_null] = ACTIONS(1598), + [aux_sym_cmd_identifier_token38] = ACTIONS(1598), + [aux_sym_cmd_identifier_token39] = ACTIONS(1598), + [aux_sym_cmd_identifier_token40] = ACTIONS(1598), + [sym__newline] = ACTIONS(1598), + [anon_sym_SEMI] = ACTIONS(1598), + [anon_sym_PIPE] = ACTIONS(1598), + [anon_sym_err_GT_PIPE] = ACTIONS(1598), + [anon_sym_out_GT_PIPE] = ACTIONS(1598), + [anon_sym_e_GT_PIPE] = ACTIONS(1598), + [anon_sym_o_GT_PIPE] = ACTIONS(1598), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1598), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1598), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1598), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(1596), + [anon_sym_DOLLAR] = ACTIONS(1596), + [anon_sym_DASH_DASH] = ACTIONS(1598), + [anon_sym_DASH] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_DOT_DOT] = ACTIONS(1596), + [anon_sym_LPAREN2] = ACTIONS(1598), + [anon_sym_DOT_DOT2] = ACTIONS(1596), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1596), + [anon_sym_DOT_DOT_LT] = ACTIONS(1596), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1598), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1598), + [aux_sym__val_number_decimal_token1] = ACTIONS(1596), + [aux_sym__val_number_decimal_token2] = ACTIONS(1598), + [aux_sym__val_number_decimal_token3] = ACTIONS(1598), + [aux_sym__val_number_decimal_token4] = ACTIONS(1598), + [aux_sym__val_number_token1] = ACTIONS(1598), + [aux_sym__val_number_token2] = ACTIONS(1598), + [aux_sym__val_number_token3] = ACTIONS(1598), + [anon_sym_0b] = ACTIONS(1596), + [sym_filesize_unit] = ACTIONS(1598), + [sym_duration_unit] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1596), + [sym_val_date] = ACTIONS(1598), + [anon_sym_DQUOTE] = ACTIONS(1598), + [sym__str_single_quotes] = ACTIONS(1598), + [sym__str_back_ticks] = ACTIONS(1598), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1598), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1598), + [anon_sym_err_GT] = ACTIONS(1596), + [anon_sym_out_GT] = ACTIONS(1596), + [anon_sym_e_GT] = ACTIONS(1596), + [anon_sym_o_GT] = ACTIONS(1596), + [anon_sym_err_PLUSout_GT] = ACTIONS(1596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1596), + [anon_sym_o_PLUSe_GT] = ACTIONS(1596), + [anon_sym_e_PLUSo_GT] = ACTIONS(1596), + [anon_sym_err_GT_GT] = ACTIONS(1598), + [anon_sym_out_GT_GT] = ACTIONS(1598), + [anon_sym_e_GT_GT] = ACTIONS(1598), + [anon_sym_o_GT_GT] = ACTIONS(1598), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1598), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1598), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1598), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1598), + [aux_sym_unquoted_token1] = ACTIONS(1596), + [aux_sym_unquoted_token2] = ACTIONS(1596), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1598), }, - [1223] = { - [sym_comment] = STATE(1223), - [ts_builtin_sym_end] = ACTIONS(1669), - [anon_sym_true] = ACTIONS(1669), - [anon_sym_false] = ACTIONS(1669), - [anon_sym_null] = ACTIONS(1669), - [aux_sym_cmd_identifier_token38] = ACTIONS(1669), - [aux_sym_cmd_identifier_token39] = ACTIONS(1669), - [aux_sym_cmd_identifier_token40] = ACTIONS(1669), - [sym__newline] = ACTIONS(1669), - [anon_sym_SEMI] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1669), - [anon_sym_err_GT_PIPE] = ACTIONS(1669), - [anon_sym_out_GT_PIPE] = ACTIONS(1669), - [anon_sym_e_GT_PIPE] = ACTIONS(1669), - [anon_sym_o_GT_PIPE] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), - [anon_sym_LBRACK] = ACTIONS(1669), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_DOLLAR] = ACTIONS(1667), - [anon_sym_DASH_DASH] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_LBRACE] = ACTIONS(1669), - [anon_sym_DOT_DOT] = ACTIONS(1667), - [anon_sym_LPAREN2] = ACTIONS(1669), - [anon_sym_DOT_DOT2] = ACTIONS(1667), - [anon_sym_DOT] = ACTIONS(4436), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1667), - [anon_sym_DOT_DOT_LT] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [aux_sym__immediate_decimal_token2] = ACTIONS(4438), - [aux_sym__val_number_decimal_token1] = ACTIONS(1667), - [aux_sym__val_number_decimal_token2] = ACTIONS(1669), - [aux_sym__val_number_decimal_token3] = ACTIONS(1669), - [aux_sym__val_number_decimal_token4] = ACTIONS(1669), - [aux_sym__val_number_token1] = ACTIONS(1669), - [aux_sym__val_number_token2] = ACTIONS(1669), - [aux_sym__val_number_token3] = ACTIONS(1669), - [anon_sym_0b] = ACTIONS(1667), - [anon_sym_0o] = ACTIONS(1667), - [anon_sym_0x] = ACTIONS(1667), - [sym_val_date] = ACTIONS(1669), - [anon_sym_DQUOTE] = ACTIONS(1669), - [sym__str_single_quotes] = ACTIONS(1669), - [sym__str_back_ticks] = ACTIONS(1669), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1669), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1669), - [anon_sym_err_GT] = ACTIONS(1667), - [anon_sym_out_GT] = ACTIONS(1667), - [anon_sym_e_GT] = ACTIONS(1667), - [anon_sym_o_GT] = ACTIONS(1667), - [anon_sym_err_PLUSout_GT] = ACTIONS(1667), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1667), - [anon_sym_o_PLUSe_GT] = ACTIONS(1667), - [anon_sym_e_PLUSo_GT] = ACTIONS(1667), - [anon_sym_err_GT_GT] = ACTIONS(1669), - [anon_sym_out_GT_GT] = ACTIONS(1669), - [anon_sym_e_GT_GT] = ACTIONS(1669), - [anon_sym_o_GT_GT] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1669), - [aux_sym_unquoted_token1] = ACTIONS(1667), - [aux_sym_unquoted_token2] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(247), + [1213] = { + [sym_comment] = STATE(1213), + [anon_sym_true] = ACTIONS(1771), + [anon_sym_false] = ACTIONS(1771), + [anon_sym_null] = ACTIONS(1771), + [aux_sym_cmd_identifier_token38] = ACTIONS(1771), + [aux_sym_cmd_identifier_token39] = ACTIONS(1771), + [aux_sym_cmd_identifier_token40] = ACTIONS(1771), + [sym__newline] = ACTIONS(1771), + [anon_sym_SEMI] = ACTIONS(1771), + [anon_sym_PIPE] = ACTIONS(1771), + [anon_sym_err_GT_PIPE] = ACTIONS(1771), + [anon_sym_out_GT_PIPE] = ACTIONS(1771), + [anon_sym_e_GT_PIPE] = ACTIONS(1771), + [anon_sym_o_GT_PIPE] = ACTIONS(1771), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1771), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1771), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1771), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1771), + [anon_sym_LPAREN] = ACTIONS(1769), + [anon_sym_RPAREN] = ACTIONS(1771), + [anon_sym_DOLLAR] = ACTIONS(1769), + [anon_sym_DASH_DASH] = ACTIONS(1771), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_LBRACE] = ACTIONS(1771), + [anon_sym_RBRACE] = ACTIONS(1771), + [anon_sym_DOT_DOT] = ACTIONS(1769), + [anon_sym_LPAREN2] = ACTIONS(1771), + [anon_sym_DOT_DOT2] = ACTIONS(1769), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1769), + [anon_sym_DOT_DOT_LT] = ACTIONS(1769), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1771), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1771), + [aux_sym__immediate_decimal_token2] = ACTIONS(4591), + [aux_sym__val_number_decimal_token1] = ACTIONS(1769), + [aux_sym__val_number_decimal_token2] = ACTIONS(1771), + [aux_sym__val_number_decimal_token3] = ACTIONS(1771), + [aux_sym__val_number_decimal_token4] = ACTIONS(1771), + [aux_sym__val_number_token1] = ACTIONS(1771), + [aux_sym__val_number_token2] = ACTIONS(1771), + [aux_sym__val_number_token3] = ACTIONS(1771), + [anon_sym_0b] = ACTIONS(1769), + [anon_sym_0o] = ACTIONS(1769), + [anon_sym_0x] = ACTIONS(1769), + [sym_val_date] = ACTIONS(1771), + [anon_sym_DQUOTE] = ACTIONS(1771), + [sym__str_single_quotes] = ACTIONS(1771), + [sym__str_back_ticks] = ACTIONS(1771), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1771), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1771), + [anon_sym_err_GT] = ACTIONS(1769), + [anon_sym_out_GT] = ACTIONS(1769), + [anon_sym_e_GT] = ACTIONS(1769), + [anon_sym_o_GT] = ACTIONS(1769), + [anon_sym_err_PLUSout_GT] = ACTIONS(1769), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1769), + [anon_sym_o_PLUSe_GT] = ACTIONS(1769), + [anon_sym_e_PLUSo_GT] = ACTIONS(1769), + [anon_sym_err_GT_GT] = ACTIONS(1771), + [anon_sym_out_GT_GT] = ACTIONS(1771), + [anon_sym_e_GT_GT] = ACTIONS(1771), + [anon_sym_o_GT_GT] = ACTIONS(1771), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1771), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1771), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1771), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1771), + [aux_sym_unquoted_token1] = ACTIONS(1769), + [aux_sym_unquoted_token2] = ACTIONS(1769), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1771), }, - [1224] = { - [sym_comment] = STATE(1224), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_PLUS_EQ] = ACTIONS(1052), - [anon_sym_DASH_EQ] = ACTIONS(1052), - [anon_sym_STAR_EQ] = ACTIONS(1052), - [anon_sym_SLASH_EQ] = ACTIONS(1052), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1052), - [sym__newline] = ACTIONS(1052), - [anon_sym_SEMI] = ACTIONS(1052), - [anon_sym_PIPE] = ACTIONS(1052), - [anon_sym_err_GT_PIPE] = ACTIONS(1052), - [anon_sym_out_GT_PIPE] = ACTIONS(1052), - [anon_sym_e_GT_PIPE] = ACTIONS(1052), - [anon_sym_o_GT_PIPE] = ACTIONS(1052), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1052), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1052), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1052), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1052), - [anon_sym_RPAREN] = ACTIONS(1052), - [anon_sym_RBRACE] = ACTIONS(1052), - [aux_sym_expr_binary_token1] = ACTIONS(1052), - [aux_sym_expr_binary_token2] = ACTIONS(1052), - [aux_sym_expr_binary_token3] = ACTIONS(1052), - [aux_sym_expr_binary_token4] = ACTIONS(1052), - [aux_sym_expr_binary_token5] = ACTIONS(1052), - [aux_sym_expr_binary_token6] = ACTIONS(1052), - [aux_sym_expr_binary_token7] = ACTIONS(1052), - [aux_sym_expr_binary_token8] = ACTIONS(1052), - [aux_sym_expr_binary_token9] = ACTIONS(1052), - [aux_sym_expr_binary_token10] = ACTIONS(1052), - [aux_sym_expr_binary_token11] = ACTIONS(1052), - [aux_sym_expr_binary_token12] = ACTIONS(1052), - [aux_sym_expr_binary_token13] = ACTIONS(1052), - [aux_sym_expr_binary_token14] = ACTIONS(1052), - [aux_sym_expr_binary_token15] = ACTIONS(1052), - [aux_sym_expr_binary_token16] = ACTIONS(1052), - [aux_sym_expr_binary_token17] = ACTIONS(1052), - [aux_sym_expr_binary_token18] = ACTIONS(1052), - [aux_sym_expr_binary_token19] = ACTIONS(1052), - [aux_sym_expr_binary_token20] = ACTIONS(1052), - [aux_sym_expr_binary_token21] = ACTIONS(1052), - [aux_sym_expr_binary_token22] = ACTIONS(1052), - [aux_sym_expr_binary_token23] = ACTIONS(1052), - [aux_sym_expr_binary_token24] = ACTIONS(1052), - [aux_sym_expr_binary_token25] = ACTIONS(1052), - [aux_sym_expr_binary_token26] = ACTIONS(1052), - [aux_sym_expr_binary_token27] = ACTIONS(1052), - [aux_sym_expr_binary_token28] = ACTIONS(1052), - [anon_sym_DOT_DOT2] = ACTIONS(1050), - [anon_sym_DOT] = ACTIONS(1050), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1052), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1052), - [anon_sym_err_GT] = ACTIONS(1050), - [anon_sym_out_GT] = ACTIONS(1050), - [anon_sym_e_GT] = ACTIONS(1050), - [anon_sym_o_GT] = ACTIONS(1050), - [anon_sym_err_PLUSout_GT] = ACTIONS(1050), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1050), - [anon_sym_o_PLUSe_GT] = ACTIONS(1050), - [anon_sym_e_PLUSo_GT] = ACTIONS(1050), - [anon_sym_err_GT_GT] = ACTIONS(1052), - [anon_sym_out_GT_GT] = ACTIONS(1052), - [anon_sym_e_GT_GT] = ACTIONS(1052), - [anon_sym_o_GT_GT] = ACTIONS(1052), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1052), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1052), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1052), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1052), - [anon_sym_POUND] = ACTIONS(247), + [1214] = { + [sym_comment] = STATE(1214), + [anon_sym_true] = ACTIONS(1538), + [anon_sym_false] = ACTIONS(1538), + [anon_sym_null] = ACTIONS(1538), + [aux_sym_cmd_identifier_token38] = ACTIONS(1538), + [aux_sym_cmd_identifier_token39] = ACTIONS(1538), + [aux_sym_cmd_identifier_token40] = ACTIONS(1538), + [sym__newline] = ACTIONS(1538), + [anon_sym_SEMI] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_err_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_GT_PIPE] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), + [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_LPAREN] = ACTIONS(1538), + [anon_sym_RPAREN] = ACTIONS(1538), + [anon_sym_DOLLAR] = ACTIONS(1536), + [anon_sym_DASH_DASH] = ACTIONS(1538), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1538), + [anon_sym_RBRACE] = ACTIONS(1538), + [anon_sym_DOT_DOT] = ACTIONS(1536), + [anon_sym_DOT_DOT2] = ACTIONS(1536), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1536), + [anon_sym_DOT_DOT_LT] = ACTIONS(1536), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), + [aux_sym__val_number_decimal_token1] = ACTIONS(1536), + [aux_sym__val_number_decimal_token2] = ACTIONS(1538), + [aux_sym__val_number_decimal_token3] = ACTIONS(1538), + [aux_sym__val_number_decimal_token4] = ACTIONS(1538), + [aux_sym__val_number_token1] = ACTIONS(1538), + [aux_sym__val_number_token2] = ACTIONS(1538), + [aux_sym__val_number_token3] = ACTIONS(1538), + [anon_sym_0b] = ACTIONS(1536), + [sym_filesize_unit] = ACTIONS(1538), + [sym_duration_unit] = ACTIONS(1538), + [anon_sym_0o] = ACTIONS(1536), + [anon_sym_0x] = ACTIONS(1536), + [sym_val_date] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1538), + [sym__str_single_quotes] = ACTIONS(1538), + [sym__str_back_ticks] = ACTIONS(1538), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1538), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1538), + [anon_sym_err_GT] = ACTIONS(1536), + [anon_sym_out_GT] = ACTIONS(1536), + [anon_sym_e_GT] = ACTIONS(1536), + [anon_sym_o_GT] = ACTIONS(1536), + [anon_sym_err_PLUSout_GT] = ACTIONS(1536), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), + [anon_sym_o_PLUSe_GT] = ACTIONS(1536), + [anon_sym_e_PLUSo_GT] = ACTIONS(1536), + [anon_sym_err_GT_GT] = ACTIONS(1538), + [anon_sym_out_GT_GT] = ACTIONS(1538), + [anon_sym_e_GT_GT] = ACTIONS(1538), + [anon_sym_o_GT_GT] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), + [aux_sym_unquoted_token1] = ACTIONS(1536), + [aux_sym_unquoted_token2] = ACTIONS(1536), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1538), }, - [1225] = { - [sym_comment] = STATE(1225), - [anon_sym_EQ] = ACTIONS(1054), - [anon_sym_PLUS_EQ] = ACTIONS(1056), - [anon_sym_DASH_EQ] = ACTIONS(1056), - [anon_sym_STAR_EQ] = ACTIONS(1056), - [anon_sym_SLASH_EQ] = ACTIONS(1056), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1056), - [sym__newline] = ACTIONS(1056), - [anon_sym_SEMI] = ACTIONS(1056), - [anon_sym_PIPE] = ACTIONS(1056), - [anon_sym_err_GT_PIPE] = ACTIONS(1056), - [anon_sym_out_GT_PIPE] = ACTIONS(1056), - [anon_sym_e_GT_PIPE] = ACTIONS(1056), - [anon_sym_o_GT_PIPE] = ACTIONS(1056), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1056), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1056), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1056), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1056), - [anon_sym_RPAREN] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1056), - [aux_sym_expr_binary_token1] = ACTIONS(1056), - [aux_sym_expr_binary_token2] = ACTIONS(1056), - [aux_sym_expr_binary_token3] = ACTIONS(1056), - [aux_sym_expr_binary_token4] = ACTIONS(1056), - [aux_sym_expr_binary_token5] = ACTIONS(1056), - [aux_sym_expr_binary_token6] = ACTIONS(1056), - [aux_sym_expr_binary_token7] = ACTIONS(1056), - [aux_sym_expr_binary_token8] = ACTIONS(1056), - [aux_sym_expr_binary_token9] = ACTIONS(1056), - [aux_sym_expr_binary_token10] = ACTIONS(1056), - [aux_sym_expr_binary_token11] = ACTIONS(1056), - [aux_sym_expr_binary_token12] = ACTIONS(1056), - [aux_sym_expr_binary_token13] = ACTIONS(1056), - [aux_sym_expr_binary_token14] = ACTIONS(1056), - [aux_sym_expr_binary_token15] = ACTIONS(1056), - [aux_sym_expr_binary_token16] = ACTIONS(1056), - [aux_sym_expr_binary_token17] = ACTIONS(1056), - [aux_sym_expr_binary_token18] = ACTIONS(1056), - [aux_sym_expr_binary_token19] = ACTIONS(1056), - [aux_sym_expr_binary_token20] = ACTIONS(1056), - [aux_sym_expr_binary_token21] = ACTIONS(1056), - [aux_sym_expr_binary_token22] = ACTIONS(1056), - [aux_sym_expr_binary_token23] = ACTIONS(1056), - [aux_sym_expr_binary_token24] = ACTIONS(1056), - [aux_sym_expr_binary_token25] = ACTIONS(1056), - [aux_sym_expr_binary_token26] = ACTIONS(1056), - [aux_sym_expr_binary_token27] = ACTIONS(1056), - [aux_sym_expr_binary_token28] = ACTIONS(1056), - [anon_sym_DOT_DOT2] = ACTIONS(1054), - [anon_sym_DOT] = ACTIONS(1054), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1056), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1056), - [anon_sym_err_GT] = ACTIONS(1054), - [anon_sym_out_GT] = ACTIONS(1054), - [anon_sym_e_GT] = ACTIONS(1054), - [anon_sym_o_GT] = ACTIONS(1054), - [anon_sym_err_PLUSout_GT] = ACTIONS(1054), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1054), - [anon_sym_o_PLUSe_GT] = ACTIONS(1054), - [anon_sym_e_PLUSo_GT] = ACTIONS(1054), - [anon_sym_err_GT_GT] = ACTIONS(1056), - [anon_sym_out_GT_GT] = ACTIONS(1056), - [anon_sym_e_GT_GT] = ACTIONS(1056), - [anon_sym_o_GT_GT] = ACTIONS(1056), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1056), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1056), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1056), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1056), - [anon_sym_POUND] = ACTIONS(247), + [1215] = { + [sym_comment] = STATE(1215), + [anon_sym_true] = ACTIONS(1530), + [anon_sym_false] = ACTIONS(1530), + [anon_sym_null] = ACTIONS(1530), + [aux_sym_cmd_identifier_token38] = ACTIONS(1530), + [aux_sym_cmd_identifier_token39] = ACTIONS(1530), + [aux_sym_cmd_identifier_token40] = ACTIONS(1530), + [sym__newline] = ACTIONS(1530), + [anon_sym_SEMI] = ACTIONS(1530), + [anon_sym_PIPE] = ACTIONS(1530), + [anon_sym_err_GT_PIPE] = ACTIONS(1530), + [anon_sym_out_GT_PIPE] = ACTIONS(1530), + [anon_sym_e_GT_PIPE] = ACTIONS(1530), + [anon_sym_o_GT_PIPE] = ACTIONS(1530), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1530), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1530), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1530), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1530), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_LPAREN] = ACTIONS(1530), + [anon_sym_RPAREN] = ACTIONS(1530), + [anon_sym_DOLLAR] = ACTIONS(1528), + [anon_sym_DASH_DASH] = ACTIONS(1530), + [anon_sym_DASH] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(1530), + [anon_sym_RBRACE] = ACTIONS(1530), + [anon_sym_DOT_DOT] = ACTIONS(1528), + [anon_sym_DOT_DOT2] = ACTIONS(1528), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1528), + [anon_sym_DOT_DOT_LT] = ACTIONS(1528), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1530), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1530), + [aux_sym__val_number_decimal_token1] = ACTIONS(1528), + [aux_sym__val_number_decimal_token2] = ACTIONS(1530), + [aux_sym__val_number_decimal_token3] = ACTIONS(1530), + [aux_sym__val_number_decimal_token4] = ACTIONS(1530), + [aux_sym__val_number_token1] = ACTIONS(1530), + [aux_sym__val_number_token2] = ACTIONS(1530), + [aux_sym__val_number_token3] = ACTIONS(1530), + [anon_sym_0b] = ACTIONS(1528), + [sym_filesize_unit] = ACTIONS(1530), + [sym_duration_unit] = ACTIONS(1530), + [anon_sym_0o] = ACTIONS(1528), + [anon_sym_0x] = ACTIONS(1528), + [sym_val_date] = ACTIONS(1530), + [anon_sym_DQUOTE] = ACTIONS(1530), + [sym__str_single_quotes] = ACTIONS(1530), + [sym__str_back_ticks] = ACTIONS(1530), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1530), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1530), + [anon_sym_err_GT] = ACTIONS(1528), + [anon_sym_out_GT] = ACTIONS(1528), + [anon_sym_e_GT] = ACTIONS(1528), + [anon_sym_o_GT] = ACTIONS(1528), + [anon_sym_err_PLUSout_GT] = ACTIONS(1528), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), + [anon_sym_o_PLUSe_GT] = ACTIONS(1528), + [anon_sym_e_PLUSo_GT] = ACTIONS(1528), + [anon_sym_err_GT_GT] = ACTIONS(1530), + [anon_sym_out_GT_GT] = ACTIONS(1530), + [anon_sym_e_GT_GT] = ACTIONS(1530), + [anon_sym_o_GT_GT] = ACTIONS(1530), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1530), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1530), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1530), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1530), + [aux_sym_unquoted_token1] = ACTIONS(1528), + [aux_sym_unquoted_token2] = ACTIONS(1528), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1530), }, - [1226] = { - [sym_comment] = STATE(1226), - [ts_builtin_sym_end] = ACTIONS(1044), + [1216] = { + [sym_comment] = STATE(1216), + [anon_sym_EQ] = ACTIONS(1070), + [anon_sym_PLUS_EQ] = ACTIONS(1072), + [anon_sym_DASH_EQ] = ACTIONS(1072), + [anon_sym_STAR_EQ] = ACTIONS(1072), + [anon_sym_SLASH_EQ] = ACTIONS(1072), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1072), + [sym__newline] = ACTIONS(1070), + [anon_sym_SEMI] = ACTIONS(1072), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_err_GT_PIPE] = ACTIONS(1072), + [anon_sym_out_GT_PIPE] = ACTIONS(1072), + [anon_sym_e_GT_PIPE] = ACTIONS(1072), + [anon_sym_o_GT_PIPE] = ACTIONS(1072), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1072), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1072), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1072), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1072), + [aux_sym_expr_binary_token1] = ACTIONS(1072), + [aux_sym_expr_binary_token2] = ACTIONS(1072), + [aux_sym_expr_binary_token3] = ACTIONS(1072), + [aux_sym_expr_binary_token4] = ACTIONS(1072), + [aux_sym_expr_binary_token5] = ACTIONS(1072), + [aux_sym_expr_binary_token6] = ACTIONS(1072), + [aux_sym_expr_binary_token7] = ACTIONS(1072), + [aux_sym_expr_binary_token8] = ACTIONS(1072), + [aux_sym_expr_binary_token9] = ACTIONS(1072), + [aux_sym_expr_binary_token10] = ACTIONS(1072), + [aux_sym_expr_binary_token11] = ACTIONS(1072), + [aux_sym_expr_binary_token12] = ACTIONS(1072), + [aux_sym_expr_binary_token13] = ACTIONS(1072), + [aux_sym_expr_binary_token14] = ACTIONS(1072), + [aux_sym_expr_binary_token15] = ACTIONS(1072), + [aux_sym_expr_binary_token16] = ACTIONS(1072), + [aux_sym_expr_binary_token17] = ACTIONS(1072), + [aux_sym_expr_binary_token18] = ACTIONS(1072), + [aux_sym_expr_binary_token19] = ACTIONS(1072), + [aux_sym_expr_binary_token20] = ACTIONS(1072), + [aux_sym_expr_binary_token21] = ACTIONS(1072), + [aux_sym_expr_binary_token22] = ACTIONS(1072), + [aux_sym_expr_binary_token23] = ACTIONS(1072), + [aux_sym_expr_binary_token24] = ACTIONS(1072), + [aux_sym_expr_binary_token25] = ACTIONS(1072), + [aux_sym_expr_binary_token26] = ACTIONS(1072), + [aux_sym_expr_binary_token27] = ACTIONS(1072), + [aux_sym_expr_binary_token28] = ACTIONS(1072), + [anon_sym_DOT_DOT2] = ACTIONS(1070), + [anon_sym_DOT] = ACTIONS(1070), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1072), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1072), + [aux_sym_record_entry_token1] = ACTIONS(1072), + [anon_sym_err_GT] = ACTIONS(1070), + [anon_sym_out_GT] = ACTIONS(1070), + [anon_sym_e_GT] = ACTIONS(1070), + [anon_sym_o_GT] = ACTIONS(1070), + [anon_sym_err_PLUSout_GT] = ACTIONS(1070), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1070), + [anon_sym_o_PLUSe_GT] = ACTIONS(1070), + [anon_sym_e_PLUSo_GT] = ACTIONS(1070), + [anon_sym_err_GT_GT] = ACTIONS(1072), + [anon_sym_out_GT_GT] = ACTIONS(1072), + [anon_sym_e_GT_GT] = ACTIONS(1072), + [anon_sym_o_GT_GT] = ACTIONS(1072), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1072), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1072), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1072), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1072), + [anon_sym_POUND] = ACTIONS(249), + }, + [1217] = { + [sym_comment] = STATE(1217), [anon_sym_EQ] = ACTIONS(1042), [anon_sym_PLUS_EQ] = ACTIONS(1044), [anon_sym_DASH_EQ] = ACTIONS(1044), @@ -193623,7 +195854,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1044), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1044), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1044), - [anon_sym_QMARK2] = ACTIONS(1044), + [anon_sym_RPAREN] = ACTIONS(1044), + [anon_sym_RBRACE] = ACTIONS(1044), + [anon_sym_QMARK2] = ACTIONS(4593), [aux_sym_expr_binary_token1] = ACTIONS(1044), [aux_sym_expr_binary_token2] = ACTIONS(1044), [aux_sym_expr_binary_token3] = ACTIONS(1044), @@ -193672,1005 +195905,874 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1044), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1044), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1044), - [anon_sym_POUND] = ACTIONS(247), - }, - [1227] = { - [sym_comment] = STATE(1227), - [ts_builtin_sym_end] = ACTIONS(1040), - [anon_sym_EQ] = ACTIONS(1038), - [anon_sym_PLUS_EQ] = ACTIONS(1040), - [anon_sym_DASH_EQ] = ACTIONS(1040), - [anon_sym_STAR_EQ] = ACTIONS(1040), - [anon_sym_SLASH_EQ] = ACTIONS(1040), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1040), - [sym__newline] = ACTIONS(1040), - [anon_sym_SEMI] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1040), - [anon_sym_err_GT_PIPE] = ACTIONS(1040), - [anon_sym_out_GT_PIPE] = ACTIONS(1040), - [anon_sym_e_GT_PIPE] = ACTIONS(1040), - [anon_sym_o_GT_PIPE] = ACTIONS(1040), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1040), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1040), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1040), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1040), - [anon_sym_QMARK2] = ACTIONS(1040), - [aux_sym_expr_binary_token1] = ACTIONS(1040), - [aux_sym_expr_binary_token2] = ACTIONS(1040), - [aux_sym_expr_binary_token3] = ACTIONS(1040), - [aux_sym_expr_binary_token4] = ACTIONS(1040), - [aux_sym_expr_binary_token5] = ACTIONS(1040), - [aux_sym_expr_binary_token6] = ACTIONS(1040), - [aux_sym_expr_binary_token7] = ACTIONS(1040), - [aux_sym_expr_binary_token8] = ACTIONS(1040), - [aux_sym_expr_binary_token9] = ACTIONS(1040), - [aux_sym_expr_binary_token10] = ACTIONS(1040), - [aux_sym_expr_binary_token11] = ACTIONS(1040), - [aux_sym_expr_binary_token12] = ACTIONS(1040), - [aux_sym_expr_binary_token13] = ACTIONS(1040), - [aux_sym_expr_binary_token14] = ACTIONS(1040), - [aux_sym_expr_binary_token15] = ACTIONS(1040), - [aux_sym_expr_binary_token16] = ACTIONS(1040), - [aux_sym_expr_binary_token17] = ACTIONS(1040), - [aux_sym_expr_binary_token18] = ACTIONS(1040), - [aux_sym_expr_binary_token19] = ACTIONS(1040), - [aux_sym_expr_binary_token20] = ACTIONS(1040), - [aux_sym_expr_binary_token21] = ACTIONS(1040), - [aux_sym_expr_binary_token22] = ACTIONS(1040), - [aux_sym_expr_binary_token23] = ACTIONS(1040), - [aux_sym_expr_binary_token24] = ACTIONS(1040), - [aux_sym_expr_binary_token25] = ACTIONS(1040), - [aux_sym_expr_binary_token26] = ACTIONS(1040), - [aux_sym_expr_binary_token27] = ACTIONS(1040), - [aux_sym_expr_binary_token28] = ACTIONS(1040), - [anon_sym_DOT_DOT2] = ACTIONS(1038), - [anon_sym_DOT] = ACTIONS(1038), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1040), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1040), - [anon_sym_err_GT] = ACTIONS(1038), - [anon_sym_out_GT] = ACTIONS(1038), - [anon_sym_e_GT] = ACTIONS(1038), - [anon_sym_o_GT] = ACTIONS(1038), - [anon_sym_err_PLUSout_GT] = ACTIONS(1038), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1038), - [anon_sym_o_PLUSe_GT] = ACTIONS(1038), - [anon_sym_e_PLUSo_GT] = ACTIONS(1038), - [anon_sym_err_GT_GT] = ACTIONS(1040), - [anon_sym_out_GT_GT] = ACTIONS(1040), - [anon_sym_e_GT_GT] = ACTIONS(1040), - [anon_sym_o_GT_GT] = ACTIONS(1040), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1040), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1040), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1040), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1040), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), }, - [1228] = { - [sym_comment] = STATE(1228), - [ts_builtin_sym_end] = ACTIONS(1036), - [anon_sym_EQ] = ACTIONS(1034), - [anon_sym_PLUS_EQ] = ACTIONS(1036), - [anon_sym_DASH_EQ] = ACTIONS(1036), - [anon_sym_STAR_EQ] = ACTIONS(1036), - [anon_sym_SLASH_EQ] = ACTIONS(1036), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1036), - [sym__newline] = ACTIONS(1036), - [anon_sym_SEMI] = ACTIONS(1036), - [anon_sym_PIPE] = ACTIONS(1036), - [anon_sym_err_GT_PIPE] = ACTIONS(1036), - [anon_sym_out_GT_PIPE] = ACTIONS(1036), - [anon_sym_e_GT_PIPE] = ACTIONS(1036), - [anon_sym_o_GT_PIPE] = ACTIONS(1036), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1036), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1036), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1036), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1036), - [anon_sym_QMARK2] = ACTIONS(1036), - [aux_sym_expr_binary_token1] = ACTIONS(1036), - [aux_sym_expr_binary_token2] = ACTIONS(1036), - [aux_sym_expr_binary_token3] = ACTIONS(1036), - [aux_sym_expr_binary_token4] = ACTIONS(1036), - [aux_sym_expr_binary_token5] = ACTIONS(1036), - [aux_sym_expr_binary_token6] = ACTIONS(1036), - [aux_sym_expr_binary_token7] = ACTIONS(1036), - [aux_sym_expr_binary_token8] = ACTIONS(1036), - [aux_sym_expr_binary_token9] = ACTIONS(1036), - [aux_sym_expr_binary_token10] = ACTIONS(1036), - [aux_sym_expr_binary_token11] = ACTIONS(1036), - [aux_sym_expr_binary_token12] = ACTIONS(1036), - [aux_sym_expr_binary_token13] = ACTIONS(1036), - [aux_sym_expr_binary_token14] = ACTIONS(1036), - [aux_sym_expr_binary_token15] = ACTIONS(1036), - [aux_sym_expr_binary_token16] = ACTIONS(1036), - [aux_sym_expr_binary_token17] = ACTIONS(1036), - [aux_sym_expr_binary_token18] = ACTIONS(1036), - [aux_sym_expr_binary_token19] = ACTIONS(1036), - [aux_sym_expr_binary_token20] = ACTIONS(1036), - [aux_sym_expr_binary_token21] = ACTIONS(1036), - [aux_sym_expr_binary_token22] = ACTIONS(1036), - [aux_sym_expr_binary_token23] = ACTIONS(1036), - [aux_sym_expr_binary_token24] = ACTIONS(1036), - [aux_sym_expr_binary_token25] = ACTIONS(1036), - [aux_sym_expr_binary_token26] = ACTIONS(1036), - [aux_sym_expr_binary_token27] = ACTIONS(1036), - [aux_sym_expr_binary_token28] = ACTIONS(1036), - [anon_sym_DOT_DOT2] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(1034), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1036), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1036), - [anon_sym_err_GT] = ACTIONS(1034), - [anon_sym_out_GT] = ACTIONS(1034), - [anon_sym_e_GT] = ACTIONS(1034), - [anon_sym_o_GT] = ACTIONS(1034), - [anon_sym_err_PLUSout_GT] = ACTIONS(1034), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1034), - [anon_sym_o_PLUSe_GT] = ACTIONS(1034), - [anon_sym_e_PLUSo_GT] = ACTIONS(1034), - [anon_sym_err_GT_GT] = ACTIONS(1036), - [anon_sym_out_GT_GT] = ACTIONS(1036), - [anon_sym_e_GT_GT] = ACTIONS(1036), - [anon_sym_o_GT_GT] = ACTIONS(1036), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1036), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1036), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1036), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1036), - [anon_sym_POUND] = ACTIONS(247), - }, - [1229] = { - [sym_comment] = STATE(1229), - [ts_builtin_sym_end] = ACTIONS(1661), - [anon_sym_true] = ACTIONS(1661), - [anon_sym_false] = ACTIONS(1661), - [anon_sym_null] = ACTIONS(1661), - [aux_sym_cmd_identifier_token38] = ACTIONS(1661), - [aux_sym_cmd_identifier_token39] = ACTIONS(1661), - [aux_sym_cmd_identifier_token40] = ACTIONS(1661), - [sym__newline] = ACTIONS(1661), - [anon_sym_SEMI] = ACTIONS(1661), - [anon_sym_PIPE] = ACTIONS(1661), - [anon_sym_err_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_GT_PIPE] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_DOLLAR] = ACTIONS(1659), - [anon_sym_DASH_DASH] = ACTIONS(1661), - [anon_sym_DASH] = ACTIONS(1659), - [anon_sym_LBRACE] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1659), - [anon_sym_LPAREN2] = ACTIONS(1661), - [anon_sym_DOT_DOT2] = ACTIONS(1659), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1659), - [anon_sym_DOT_DOT_LT] = ACTIONS(1659), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1661), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1661), - [aux_sym__immediate_decimal_token1] = ACTIONS(4440), - [aux_sym__immediate_decimal_token2] = ACTIONS(4442), - [aux_sym__val_number_decimal_token1] = ACTIONS(1659), - [aux_sym__val_number_decimal_token2] = ACTIONS(1661), - [aux_sym__val_number_decimal_token3] = ACTIONS(1661), - [aux_sym__val_number_decimal_token4] = ACTIONS(1661), - [aux_sym__val_number_token1] = ACTIONS(1661), - [aux_sym__val_number_token2] = ACTIONS(1661), - [aux_sym__val_number_token3] = ACTIONS(1661), - [anon_sym_0b] = ACTIONS(1659), - [anon_sym_0o] = ACTIONS(1659), - [anon_sym_0x] = ACTIONS(1659), - [sym_val_date] = ACTIONS(1661), - [anon_sym_DQUOTE] = ACTIONS(1661), - [sym__str_single_quotes] = ACTIONS(1661), - [sym__str_back_ticks] = ACTIONS(1661), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1661), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1661), - [anon_sym_err_GT] = ACTIONS(1659), - [anon_sym_out_GT] = ACTIONS(1659), - [anon_sym_e_GT] = ACTIONS(1659), - [anon_sym_o_GT] = ACTIONS(1659), - [anon_sym_err_PLUSout_GT] = ACTIONS(1659), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1659), - [anon_sym_o_PLUSe_GT] = ACTIONS(1659), - [anon_sym_e_PLUSo_GT] = ACTIONS(1659), - [anon_sym_err_GT_GT] = ACTIONS(1661), - [anon_sym_out_GT_GT] = ACTIONS(1661), - [anon_sym_e_GT_GT] = ACTIONS(1661), - [anon_sym_o_GT_GT] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1661), - [aux_sym_unquoted_token1] = ACTIONS(1659), - [aux_sym_unquoted_token2] = ACTIONS(1659), - [anon_sym_POUND] = ACTIONS(247), + [1218] = { + [sym_comment] = STATE(1218), + [anon_sym_EQ] = ACTIONS(1048), + [anon_sym_PLUS_EQ] = ACTIONS(1050), + [anon_sym_DASH_EQ] = ACTIONS(1050), + [anon_sym_STAR_EQ] = ACTIONS(1050), + [anon_sym_SLASH_EQ] = ACTIONS(1050), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1050), + [sym__newline] = ACTIONS(1050), + [anon_sym_SEMI] = ACTIONS(1050), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_err_GT_PIPE] = ACTIONS(1050), + [anon_sym_out_GT_PIPE] = ACTIONS(1050), + [anon_sym_e_GT_PIPE] = ACTIONS(1050), + [anon_sym_o_GT_PIPE] = ACTIONS(1050), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1050), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1050), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1050), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1050), + [anon_sym_RPAREN] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(1050), + [anon_sym_QMARK2] = ACTIONS(4595), + [aux_sym_expr_binary_token1] = ACTIONS(1050), + [aux_sym_expr_binary_token2] = ACTIONS(1050), + [aux_sym_expr_binary_token3] = ACTIONS(1050), + [aux_sym_expr_binary_token4] = ACTIONS(1050), + [aux_sym_expr_binary_token5] = ACTIONS(1050), + [aux_sym_expr_binary_token6] = ACTIONS(1050), + [aux_sym_expr_binary_token7] = ACTIONS(1050), + [aux_sym_expr_binary_token8] = ACTIONS(1050), + [aux_sym_expr_binary_token9] = ACTIONS(1050), + [aux_sym_expr_binary_token10] = ACTIONS(1050), + [aux_sym_expr_binary_token11] = ACTIONS(1050), + [aux_sym_expr_binary_token12] = ACTIONS(1050), + [aux_sym_expr_binary_token13] = ACTIONS(1050), + [aux_sym_expr_binary_token14] = ACTIONS(1050), + [aux_sym_expr_binary_token15] = ACTIONS(1050), + [aux_sym_expr_binary_token16] = ACTIONS(1050), + [aux_sym_expr_binary_token17] = ACTIONS(1050), + [aux_sym_expr_binary_token18] = ACTIONS(1050), + [aux_sym_expr_binary_token19] = ACTIONS(1050), + [aux_sym_expr_binary_token20] = ACTIONS(1050), + [aux_sym_expr_binary_token21] = ACTIONS(1050), + [aux_sym_expr_binary_token22] = ACTIONS(1050), + [aux_sym_expr_binary_token23] = ACTIONS(1050), + [aux_sym_expr_binary_token24] = ACTIONS(1050), + [aux_sym_expr_binary_token25] = ACTIONS(1050), + [aux_sym_expr_binary_token26] = ACTIONS(1050), + [aux_sym_expr_binary_token27] = ACTIONS(1050), + [aux_sym_expr_binary_token28] = ACTIONS(1050), + [anon_sym_DOT_DOT2] = ACTIONS(1048), + [anon_sym_DOT] = ACTIONS(1048), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1050), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1050), + [anon_sym_err_GT] = ACTIONS(1048), + [anon_sym_out_GT] = ACTIONS(1048), + [anon_sym_e_GT] = ACTIONS(1048), + [anon_sym_o_GT] = ACTIONS(1048), + [anon_sym_err_PLUSout_GT] = ACTIONS(1048), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1048), + [anon_sym_o_PLUSe_GT] = ACTIONS(1048), + [anon_sym_e_PLUSo_GT] = ACTIONS(1048), + [anon_sym_err_GT_GT] = ACTIONS(1050), + [anon_sym_out_GT_GT] = ACTIONS(1050), + [anon_sym_e_GT_GT] = ACTIONS(1050), + [anon_sym_o_GT_GT] = ACTIONS(1050), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1050), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1050), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1050), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(249), }, - [1230] = { - [sym_path] = STATE(1292), - [sym_comment] = STATE(1230), - [aux_sym_cell_path_repeat1] = STATE(1234), - [anon_sym_true] = ACTIONS(1013), - [anon_sym_false] = ACTIONS(1013), - [anon_sym_null] = ACTIONS(1013), - [aux_sym_cmd_identifier_token38] = ACTIONS(1013), - [aux_sym_cmd_identifier_token39] = ACTIONS(1013), - [aux_sym_cmd_identifier_token40] = ACTIONS(1013), - [sym__newline] = ACTIONS(1013), - [anon_sym_SEMI] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1013), - [anon_sym_err_GT_PIPE] = ACTIONS(1013), - [anon_sym_out_GT_PIPE] = ACTIONS(1013), - [anon_sym_e_GT_PIPE] = ACTIONS(1013), - [anon_sym_o_GT_PIPE] = ACTIONS(1013), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1013), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1013), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1013), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1013), - [anon_sym_LBRACK] = ACTIONS(1013), - [anon_sym_LPAREN] = ACTIONS(1013), - [anon_sym_RPAREN] = ACTIONS(1013), - [anon_sym_DOLLAR] = ACTIONS(1011), - [anon_sym_DASH_DASH] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1011), - [anon_sym_LBRACE] = ACTIONS(1013), - [anon_sym_RBRACE] = ACTIONS(1013), - [anon_sym_DOT_DOT] = ACTIONS(1011), - [anon_sym_DOT_DOT2] = ACTIONS(1011), - [anon_sym_DOT] = ACTIONS(4019), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1011), - [anon_sym_DOT_DOT_LT] = ACTIONS(1011), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1013), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1013), - [aux_sym__val_number_decimal_token1] = ACTIONS(1011), - [aux_sym__val_number_decimal_token2] = ACTIONS(1013), - [aux_sym__val_number_decimal_token3] = ACTIONS(1013), - [aux_sym__val_number_decimal_token4] = ACTIONS(1013), - [aux_sym__val_number_token1] = ACTIONS(1013), - [aux_sym__val_number_token2] = ACTIONS(1013), - [aux_sym__val_number_token3] = ACTIONS(1013), - [anon_sym_0b] = ACTIONS(1011), - [anon_sym_0o] = ACTIONS(1011), - [anon_sym_0x] = ACTIONS(1011), - [sym_val_date] = ACTIONS(1013), - [anon_sym_DQUOTE] = ACTIONS(1013), - [sym__str_single_quotes] = ACTIONS(1013), - [sym__str_back_ticks] = ACTIONS(1013), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1013), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1013), - [anon_sym_err_GT] = ACTIONS(1011), - [anon_sym_out_GT] = ACTIONS(1011), - [anon_sym_e_GT] = ACTIONS(1011), - [anon_sym_o_GT] = ACTIONS(1011), - [anon_sym_err_PLUSout_GT] = ACTIONS(1011), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1011), - [anon_sym_o_PLUSe_GT] = ACTIONS(1011), - [anon_sym_e_PLUSo_GT] = ACTIONS(1011), - [anon_sym_err_GT_GT] = ACTIONS(1013), - [anon_sym_out_GT_GT] = ACTIONS(1013), - [anon_sym_e_GT_GT] = ACTIONS(1013), - [anon_sym_o_GT_GT] = ACTIONS(1013), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1013), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1013), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1013), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1013), - [aux_sym_unquoted_token1] = ACTIONS(1011), - [anon_sym_POUND] = ACTIONS(247), + [1219] = { + [sym_comment] = STATE(1219), + [anon_sym_EQ] = ACTIONS(1058), + [anon_sym_PLUS_EQ] = ACTIONS(1060), + [anon_sym_DASH_EQ] = ACTIONS(1060), + [anon_sym_STAR_EQ] = ACTIONS(1060), + [anon_sym_SLASH_EQ] = ACTIONS(1060), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1060), + [sym__newline] = ACTIONS(1058), + [anon_sym_SEMI] = ACTIONS(1060), + [anon_sym_PIPE] = ACTIONS(1060), + [anon_sym_err_GT_PIPE] = ACTIONS(1060), + [anon_sym_out_GT_PIPE] = ACTIONS(1060), + [anon_sym_e_GT_PIPE] = ACTIONS(1060), + [anon_sym_o_GT_PIPE] = ACTIONS(1060), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1060), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1060), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1060), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1060), + [anon_sym_RPAREN] = ACTIONS(1060), + [anon_sym_LBRACE] = ACTIONS(1060), + [anon_sym_QMARK2] = ACTIONS(1060), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1060), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1060), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1060), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1060), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1060), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1060), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1060), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1060), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1060), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1060), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1060), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1060), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1060), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1060), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1060), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1060), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1060), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1060), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1060), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1060), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1060), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1060), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1060), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1060), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1060), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1060), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1060), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1060), + [anon_sym_DOT_DOT2] = ACTIONS(1058), + [anon_sym_DOT] = ACTIONS(1058), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1060), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1060), + [anon_sym_err_GT] = ACTIONS(1058), + [anon_sym_out_GT] = ACTIONS(1058), + [anon_sym_e_GT] = ACTIONS(1058), + [anon_sym_o_GT] = ACTIONS(1058), + [anon_sym_err_PLUSout_GT] = ACTIONS(1058), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1058), + [anon_sym_o_PLUSe_GT] = ACTIONS(1058), + [anon_sym_e_PLUSo_GT] = ACTIONS(1058), + [anon_sym_err_GT_GT] = ACTIONS(1060), + [anon_sym_out_GT_GT] = ACTIONS(1060), + [anon_sym_e_GT_GT] = ACTIONS(1060), + [anon_sym_o_GT_GT] = ACTIONS(1060), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1060), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1060), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1060), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1060), + [anon_sym_POUND] = ACTIONS(249), }, - [1231] = { - [sym_cell_path] = STATE(1472), - [sym_path] = STATE(1376), - [sym_comment] = STATE(1231), - [aux_sym_cell_path_repeat1] = STATE(1258), - [ts_builtin_sym_end] = ACTIONS(1677), - [anon_sym_true] = ACTIONS(1677), - [anon_sym_false] = ACTIONS(1677), - [anon_sym_null] = ACTIONS(1677), - [aux_sym_cmd_identifier_token38] = ACTIONS(1677), - [aux_sym_cmd_identifier_token39] = ACTIONS(1677), - [aux_sym_cmd_identifier_token40] = ACTIONS(1677), - [sym__newline] = ACTIONS(1677), - [anon_sym_SEMI] = ACTIONS(1677), - [anon_sym_PIPE] = ACTIONS(1677), - [anon_sym_err_GT_PIPE] = ACTIONS(1677), - [anon_sym_out_GT_PIPE] = ACTIONS(1677), - [anon_sym_e_GT_PIPE] = ACTIONS(1677), - [anon_sym_o_GT_PIPE] = ACTIONS(1677), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1677), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1677), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1677), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1677), - [anon_sym_LBRACK] = ACTIONS(1677), - [anon_sym_LPAREN] = ACTIONS(1677), - [anon_sym_DOLLAR] = ACTIONS(1675), - [anon_sym_DASH_DASH] = ACTIONS(1677), - [anon_sym_DASH] = ACTIONS(1675), - [anon_sym_LBRACE] = ACTIONS(1677), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT2] = ACTIONS(1675), - [anon_sym_DOT] = ACTIONS(4432), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1675), - [anon_sym_DOT_DOT_LT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1677), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1677), - [aux_sym__val_number_decimal_token1] = ACTIONS(1675), - [aux_sym__val_number_decimal_token2] = ACTIONS(1677), - [aux_sym__val_number_decimal_token3] = ACTIONS(1677), - [aux_sym__val_number_decimal_token4] = ACTIONS(1677), - [aux_sym__val_number_token1] = ACTIONS(1677), - [aux_sym__val_number_token2] = ACTIONS(1677), - [aux_sym__val_number_token3] = ACTIONS(1677), - [anon_sym_0b] = ACTIONS(1675), - [anon_sym_0o] = ACTIONS(1675), - [anon_sym_0x] = ACTIONS(1675), - [sym_val_date] = ACTIONS(1677), - [anon_sym_DQUOTE] = ACTIONS(1677), - [sym__str_single_quotes] = ACTIONS(1677), - [sym__str_back_ticks] = ACTIONS(1677), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1677), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1677), - [anon_sym_err_GT] = ACTIONS(1675), - [anon_sym_out_GT] = ACTIONS(1675), - [anon_sym_e_GT] = ACTIONS(1675), - [anon_sym_o_GT] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT] = ACTIONS(1675), - [anon_sym_err_GT_GT] = ACTIONS(1677), - [anon_sym_out_GT_GT] = ACTIONS(1677), - [anon_sym_e_GT_GT] = ACTIONS(1677), - [anon_sym_o_GT_GT] = ACTIONS(1677), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1677), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1677), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1677), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1677), - [aux_sym_unquoted_token1] = ACTIONS(1675), - [anon_sym_POUND] = ACTIONS(247), + [1220] = { + [sym_comment] = STATE(1220), + [anon_sym_true] = ACTIONS(1713), + [anon_sym_false] = ACTIONS(1713), + [anon_sym_null] = ACTIONS(1713), + [aux_sym_cmd_identifier_token38] = ACTIONS(1713), + [aux_sym_cmd_identifier_token39] = ACTIONS(1713), + [aux_sym_cmd_identifier_token40] = ACTIONS(1713), + [sym__newline] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_err_GT_PIPE] = ACTIONS(1713), + [anon_sym_out_GT_PIPE] = ACTIONS(1713), + [anon_sym_e_GT_PIPE] = ACTIONS(1713), + [anon_sym_o_GT_PIPE] = ACTIONS(1713), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(1713), + [anon_sym_RPAREN] = ACTIONS(1713), + [anon_sym_DOLLAR] = ACTIONS(1711), + [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1711), + [anon_sym_LBRACE] = ACTIONS(1713), + [anon_sym_RBRACE] = ACTIONS(1713), + [anon_sym_DOT_DOT] = ACTIONS(1711), + [anon_sym_DOT_DOT2] = ACTIONS(1711), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1711), + [anon_sym_DOT_DOT_LT] = ACTIONS(1711), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), + [aux_sym__val_number_decimal_token1] = ACTIONS(1711), + [aux_sym__val_number_decimal_token2] = ACTIONS(1713), + [aux_sym__val_number_decimal_token3] = ACTIONS(1713), + [aux_sym__val_number_decimal_token4] = ACTIONS(1713), + [aux_sym__val_number_token1] = ACTIONS(1713), + [aux_sym__val_number_token2] = ACTIONS(1713), + [aux_sym__val_number_token3] = ACTIONS(1713), + [anon_sym_0b] = ACTIONS(1711), + [sym_filesize_unit] = ACTIONS(1713), + [sym_duration_unit] = ACTIONS(1713), + [anon_sym_0o] = ACTIONS(1711), + [anon_sym_0x] = ACTIONS(1711), + [sym_val_date] = ACTIONS(1713), + [anon_sym_DQUOTE] = ACTIONS(1713), + [sym__str_single_quotes] = ACTIONS(1713), + [sym__str_back_ticks] = ACTIONS(1713), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1713), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1713), + [anon_sym_err_GT] = ACTIONS(1711), + [anon_sym_out_GT] = ACTIONS(1711), + [anon_sym_e_GT] = ACTIONS(1711), + [anon_sym_o_GT] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT] = ACTIONS(1711), + [anon_sym_err_GT_GT] = ACTIONS(1713), + [anon_sym_out_GT_GT] = ACTIONS(1713), + [anon_sym_e_GT_GT] = ACTIONS(1713), + [anon_sym_o_GT_GT] = ACTIONS(1713), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), + [aux_sym_unquoted_token1] = ACTIONS(1711), + [aux_sym_unquoted_token2] = ACTIONS(1711), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1713), }, - [1232] = { - [sym__match_pattern_expression] = STATE(3060), - [sym__match_pattern_value] = STATE(3093), - [sym__match_pattern_list] = STATE(3094), - [sym__match_pattern_record] = STATE(3095), - [sym_expr_parenthesized] = STATE(2884), - [sym_val_range] = STATE(3093), - [sym__val_range] = STATE(7378), - [sym_val_nothing] = STATE(3096), - [sym_val_bool] = STATE(3015), - [sym_val_variable] = STATE(2885), - [sym_val_number] = STATE(3096), - [sym__val_number_decimal] = STATE(2627), - [sym__val_number] = STATE(3088), - [sym_val_duration] = STATE(3096), - [sym_val_filesize] = STATE(3096), - [sym_val_binary] = STATE(3096), - [sym_val_string] = STATE(3096), - [sym__str_double_quotes] = STATE(3056), - [sym_val_table] = STATE(3096), - [sym__unquoted_in_list] = STATE(3060), - [sym__unquoted_anonymous_prefix] = STATE(7454), - [sym_comment] = STATE(1232), - [aux_sym__match_pattern_list_repeat1] = STATE(1232), - [anon_sym_true] = ACTIONS(4444), - [anon_sym_false] = ACTIONS(4444), - [anon_sym_null] = ACTIONS(4447), - [aux_sym_cmd_identifier_token38] = ACTIONS(4450), - [aux_sym_cmd_identifier_token39] = ACTIONS(4450), - [aux_sym_cmd_identifier_token40] = ACTIONS(4450), - [anon_sym_LBRACK] = ACTIONS(4453), - [anon_sym_RBRACK] = ACTIONS(4456), - [anon_sym_LPAREN] = ACTIONS(4458), - [anon_sym_DOLLAR] = ACTIONS(4461), - [anon_sym_LBRACE] = ACTIONS(4464), - [anon_sym_DOT_DOT] = ACTIONS(4467), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4470), - [anon_sym_DOT_DOT_LT] = ACTIONS(4470), - [aux_sym__val_number_decimal_token1] = ACTIONS(4473), - [aux_sym__val_number_decimal_token2] = ACTIONS(4476), - [aux_sym__val_number_decimal_token3] = ACTIONS(4479), - [aux_sym__val_number_decimal_token4] = ACTIONS(4482), - [aux_sym__val_number_token1] = ACTIONS(4485), - [aux_sym__val_number_token2] = ACTIONS(4485), - [aux_sym__val_number_token3] = ACTIONS(4485), - [anon_sym_0b] = ACTIONS(4488), - [anon_sym_0o] = ACTIONS(4491), - [anon_sym_0x] = ACTIONS(4491), - [sym_val_date] = ACTIONS(4494), - [anon_sym_DQUOTE] = ACTIONS(4497), - [sym__str_single_quotes] = ACTIONS(4500), - [sym__str_back_ticks] = ACTIONS(4500), - [anon_sym_err_GT] = ACTIONS(4503), - [anon_sym_out_GT] = ACTIONS(4503), - [anon_sym_e_GT] = ACTIONS(4503), - [anon_sym_o_GT] = ACTIONS(4503), - [anon_sym_err_PLUSout_GT] = ACTIONS(4503), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4503), - [anon_sym_o_PLUSe_GT] = ACTIONS(4503), - [anon_sym_e_PLUSo_GT] = ACTIONS(4503), - [anon_sym_err_GT_GT] = ACTIONS(4506), - [anon_sym_out_GT_GT] = ACTIONS(4506), - [anon_sym_e_GT_GT] = ACTIONS(4506), - [anon_sym_o_GT_GT] = ACTIONS(4506), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4506), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4506), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4506), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4506), - [aux_sym__unquoted_in_list_token1] = ACTIONS(4509), - [anon_sym_POUND] = ACTIONS(247), + [1221] = { + [sym_comment] = STATE(1221), + [ts_builtin_sym_end] = ACTIONS(1598), + [anon_sym_true] = ACTIONS(1598), + [anon_sym_false] = ACTIONS(1598), + [anon_sym_null] = ACTIONS(1598), + [aux_sym_cmd_identifier_token38] = ACTIONS(1598), + [aux_sym_cmd_identifier_token39] = ACTIONS(1598), + [aux_sym_cmd_identifier_token40] = ACTIONS(1598), + [sym__newline] = ACTIONS(1598), + [anon_sym_SEMI] = ACTIONS(1598), + [anon_sym_PIPE] = ACTIONS(1598), + [anon_sym_err_GT_PIPE] = ACTIONS(1598), + [anon_sym_out_GT_PIPE] = ACTIONS(1598), + [anon_sym_e_GT_PIPE] = ACTIONS(1598), + [anon_sym_o_GT_PIPE] = ACTIONS(1598), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1598), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1598), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1598), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_DOLLAR] = ACTIONS(1596), + [anon_sym_DASH_DASH] = ACTIONS(1598), + [anon_sym_DASH] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_DOT_DOT] = ACTIONS(1596), + [anon_sym_DOT_DOT2] = ACTIONS(1596), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1596), + [anon_sym_DOT_DOT_LT] = ACTIONS(1596), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1598), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1598), + [aux_sym__immediate_decimal_token2] = ACTIONS(4597), + [aux_sym__val_number_decimal_token1] = ACTIONS(1596), + [aux_sym__val_number_decimal_token2] = ACTIONS(1598), + [aux_sym__val_number_decimal_token3] = ACTIONS(1598), + [aux_sym__val_number_decimal_token4] = ACTIONS(1598), + [aux_sym__val_number_token1] = ACTIONS(1598), + [aux_sym__val_number_token2] = ACTIONS(1598), + [aux_sym__val_number_token3] = ACTIONS(1598), + [anon_sym_0b] = ACTIONS(1596), + [sym_filesize_unit] = ACTIONS(1598), + [sym_duration_unit] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1596), + [sym_val_date] = ACTIONS(1598), + [anon_sym_DQUOTE] = ACTIONS(1598), + [sym__str_single_quotes] = ACTIONS(1598), + [sym__str_back_ticks] = ACTIONS(1598), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1598), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1598), + [anon_sym_err_GT] = ACTIONS(1596), + [anon_sym_out_GT] = ACTIONS(1596), + [anon_sym_e_GT] = ACTIONS(1596), + [anon_sym_o_GT] = ACTIONS(1596), + [anon_sym_err_PLUSout_GT] = ACTIONS(1596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1596), + [anon_sym_o_PLUSe_GT] = ACTIONS(1596), + [anon_sym_e_PLUSo_GT] = ACTIONS(1596), + [anon_sym_err_GT_GT] = ACTIONS(1598), + [anon_sym_out_GT_GT] = ACTIONS(1598), + [anon_sym_e_GT_GT] = ACTIONS(1598), + [anon_sym_o_GT_GT] = ACTIONS(1598), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1598), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1598), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1598), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1598), + [aux_sym_unquoted_token1] = ACTIONS(1596), + [aux_sym_unquoted_token2] = ACTIONS(1596), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1598), }, - [1233] = { - [sym_comment] = STATE(1233), - [anon_sym_true] = ACTIONS(1572), - [anon_sym_false] = ACTIONS(1572), - [anon_sym_null] = ACTIONS(1572), - [aux_sym_cmd_identifier_token38] = ACTIONS(1572), - [aux_sym_cmd_identifier_token39] = ACTIONS(1572), - [aux_sym_cmd_identifier_token40] = ACTIONS(1572), - [sym__newline] = ACTIONS(1572), - [anon_sym_SEMI] = ACTIONS(1572), - [anon_sym_PIPE] = ACTIONS(1572), - [anon_sym_err_GT_PIPE] = ACTIONS(1572), - [anon_sym_out_GT_PIPE] = ACTIONS(1572), - [anon_sym_e_GT_PIPE] = ACTIONS(1572), - [anon_sym_o_GT_PIPE] = ACTIONS(1572), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1572), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1572), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1572), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1572), - [anon_sym_LBRACK] = ACTIONS(1572), - [anon_sym_LPAREN] = ACTIONS(1572), - [anon_sym_RPAREN] = ACTIONS(1572), - [anon_sym_DOLLAR] = ACTIONS(1560), - [anon_sym_DASH_DASH] = ACTIONS(1572), - [anon_sym_DASH] = ACTIONS(1560), - [anon_sym_LBRACE] = ACTIONS(1572), - [anon_sym_RBRACE] = ACTIONS(1572), - [anon_sym_DOT_DOT] = ACTIONS(1560), - [anon_sym_DOT_DOT2] = ACTIONS(4512), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1560), - [anon_sym_DOT_DOT_LT] = ACTIONS(1560), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4514), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4514), - [aux_sym__val_number_decimal_token1] = ACTIONS(1560), - [aux_sym__val_number_decimal_token2] = ACTIONS(1572), - [aux_sym__val_number_decimal_token3] = ACTIONS(1572), - [aux_sym__val_number_decimal_token4] = ACTIONS(1572), - [aux_sym__val_number_token1] = ACTIONS(1572), - [aux_sym__val_number_token2] = ACTIONS(1572), - [aux_sym__val_number_token3] = ACTIONS(1572), - [anon_sym_0b] = ACTIONS(1560), - [sym_filesize_unit] = ACTIONS(4516), - [sym_duration_unit] = ACTIONS(4518), - [anon_sym_0o] = ACTIONS(1560), - [anon_sym_0x] = ACTIONS(1560), - [sym_val_date] = ACTIONS(1572), - [anon_sym_DQUOTE] = ACTIONS(1572), - [sym__str_single_quotes] = ACTIONS(1572), - [sym__str_back_ticks] = ACTIONS(1572), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1572), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1572), - [anon_sym_err_GT] = ACTIONS(1560), - [anon_sym_out_GT] = ACTIONS(1560), - [anon_sym_e_GT] = ACTIONS(1560), - [anon_sym_o_GT] = ACTIONS(1560), - [anon_sym_err_PLUSout_GT] = ACTIONS(1560), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1560), - [anon_sym_o_PLUSe_GT] = ACTIONS(1560), - [anon_sym_e_PLUSo_GT] = ACTIONS(1560), - [anon_sym_err_GT_GT] = ACTIONS(1572), - [anon_sym_out_GT_GT] = ACTIONS(1572), - [anon_sym_e_GT_GT] = ACTIONS(1572), - [anon_sym_o_GT_GT] = ACTIONS(1572), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1572), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1572), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1572), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1572), - [aux_sym_unquoted_token1] = ACTIONS(1560), - [aux_sym_unquoted_token2] = ACTIONS(4520), - [anon_sym_POUND] = ACTIONS(247), + [1222] = { + [sym_comment] = STATE(1222), + [anon_sym_EQ] = ACTIONS(1042), + [anon_sym_PLUS_EQ] = ACTIONS(1044), + [anon_sym_DASH_EQ] = ACTIONS(1044), + [anon_sym_STAR_EQ] = ACTIONS(1044), + [anon_sym_SLASH_EQ] = ACTIONS(1044), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1044), + [sym__newline] = ACTIONS(1042), + [anon_sym_SEMI] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1044), + [anon_sym_err_GT_PIPE] = ACTIONS(1044), + [anon_sym_out_GT_PIPE] = ACTIONS(1044), + [anon_sym_e_GT_PIPE] = ACTIONS(1044), + [anon_sym_o_GT_PIPE] = ACTIONS(1044), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1044), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1044), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1044), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1044), + [anon_sym_RPAREN] = ACTIONS(1044), + [anon_sym_LBRACE] = ACTIONS(1044), + [anon_sym_QMARK2] = ACTIONS(4599), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1044), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1044), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1044), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1044), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1044), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1044), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1044), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1044), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1044), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1044), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1044), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1044), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1044), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1044), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1044), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1044), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1044), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1044), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1044), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1044), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1044), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1044), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1044), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1044), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1044), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1044), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1044), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1044), + [anon_sym_DOT_DOT2] = ACTIONS(1042), + [anon_sym_DOT] = ACTIONS(1042), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1044), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1044), + [anon_sym_err_GT] = ACTIONS(1042), + [anon_sym_out_GT] = ACTIONS(1042), + [anon_sym_e_GT] = ACTIONS(1042), + [anon_sym_o_GT] = ACTIONS(1042), + [anon_sym_err_PLUSout_GT] = ACTIONS(1042), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1042), + [anon_sym_o_PLUSe_GT] = ACTIONS(1042), + [anon_sym_e_PLUSo_GT] = ACTIONS(1042), + [anon_sym_err_GT_GT] = ACTIONS(1044), + [anon_sym_out_GT_GT] = ACTIONS(1044), + [anon_sym_e_GT_GT] = ACTIONS(1044), + [anon_sym_o_GT_GT] = ACTIONS(1044), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1044), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1044), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1044), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1044), + [anon_sym_POUND] = ACTIONS(249), }, - [1234] = { - [sym_path] = STATE(1292), - [sym_comment] = STATE(1234), - [aux_sym_cell_path_repeat1] = STATE(1234), - [anon_sym_true] = ACTIONS(1017), - [anon_sym_false] = ACTIONS(1017), - [anon_sym_null] = ACTIONS(1017), - [aux_sym_cmd_identifier_token38] = ACTIONS(1017), - [aux_sym_cmd_identifier_token39] = ACTIONS(1017), - [aux_sym_cmd_identifier_token40] = ACTIONS(1017), - [sym__newline] = ACTIONS(1017), - [anon_sym_SEMI] = ACTIONS(1017), - [anon_sym_PIPE] = ACTIONS(1017), - [anon_sym_err_GT_PIPE] = ACTIONS(1017), - [anon_sym_out_GT_PIPE] = ACTIONS(1017), - [anon_sym_e_GT_PIPE] = ACTIONS(1017), - [anon_sym_o_GT_PIPE] = ACTIONS(1017), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1017), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1017), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1017), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1017), - [anon_sym_LBRACK] = ACTIONS(1017), - [anon_sym_LPAREN] = ACTIONS(1017), - [anon_sym_RPAREN] = ACTIONS(1017), - [anon_sym_DOLLAR] = ACTIONS(1015), - [anon_sym_DASH_DASH] = ACTIONS(1017), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_LBRACE] = ACTIONS(1017), - [anon_sym_RBRACE] = ACTIONS(1017), - [anon_sym_DOT_DOT] = ACTIONS(1015), - [anon_sym_DOT_DOT2] = ACTIONS(1015), - [anon_sym_DOT] = ACTIONS(4522), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1015), - [anon_sym_DOT_DOT_LT] = ACTIONS(1015), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1017), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1017), - [aux_sym__val_number_decimal_token1] = ACTIONS(1015), - [aux_sym__val_number_decimal_token2] = ACTIONS(1017), - [aux_sym__val_number_decimal_token3] = ACTIONS(1017), - [aux_sym__val_number_decimal_token4] = ACTIONS(1017), - [aux_sym__val_number_token1] = ACTIONS(1017), - [aux_sym__val_number_token2] = ACTIONS(1017), - [aux_sym__val_number_token3] = ACTIONS(1017), - [anon_sym_0b] = ACTIONS(1015), - [anon_sym_0o] = ACTIONS(1015), - [anon_sym_0x] = ACTIONS(1015), - [sym_val_date] = ACTIONS(1017), - [anon_sym_DQUOTE] = ACTIONS(1017), - [sym__str_single_quotes] = ACTIONS(1017), - [sym__str_back_ticks] = ACTIONS(1017), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1017), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1017), - [anon_sym_err_GT] = ACTIONS(1015), - [anon_sym_out_GT] = ACTIONS(1015), - [anon_sym_e_GT] = ACTIONS(1015), - [anon_sym_o_GT] = ACTIONS(1015), - [anon_sym_err_PLUSout_GT] = ACTIONS(1015), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1015), - [anon_sym_o_PLUSe_GT] = ACTIONS(1015), - [anon_sym_e_PLUSo_GT] = ACTIONS(1015), - [anon_sym_err_GT_GT] = ACTIONS(1017), - [anon_sym_out_GT_GT] = ACTIONS(1017), - [anon_sym_e_GT_GT] = ACTIONS(1017), - [anon_sym_o_GT_GT] = ACTIONS(1017), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1017), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1017), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1017), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1017), - [aux_sym_unquoted_token1] = ACTIONS(1015), - [anon_sym_POUND] = ACTIONS(247), + [1223] = { + [sym_cell_path] = STATE(1416), + [sym_path] = STATE(1369), + [sym_comment] = STATE(1223), + [aux_sym_cell_path_repeat1] = STATE(1274), + [ts_builtin_sym_end] = ACTIONS(1023), + [anon_sym_true] = ACTIONS(1023), + [anon_sym_false] = ACTIONS(1023), + [anon_sym_null] = ACTIONS(1023), + [aux_sym_cmd_identifier_token38] = ACTIONS(1023), + [aux_sym_cmd_identifier_token39] = ACTIONS(1023), + [aux_sym_cmd_identifier_token40] = ACTIONS(1023), + [sym__newline] = ACTIONS(1023), + [anon_sym_SEMI] = ACTIONS(1023), + [anon_sym_PIPE] = ACTIONS(1023), + [anon_sym_err_GT_PIPE] = ACTIONS(1023), + [anon_sym_out_GT_PIPE] = ACTIONS(1023), + [anon_sym_e_GT_PIPE] = ACTIONS(1023), + [anon_sym_o_GT_PIPE] = ACTIONS(1023), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1023), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1023), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1023), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1023), + [anon_sym_LBRACK] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1023), + [anon_sym_DOLLAR] = ACTIONS(1021), + [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_LBRACE] = ACTIONS(1023), + [anon_sym_DOT_DOT] = ACTIONS(1021), + [anon_sym_DOT_DOT2] = ACTIONS(1021), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1021), + [anon_sym_DOT_DOT_LT] = ACTIONS(1021), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1023), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1023), + [aux_sym__val_number_decimal_token1] = ACTIONS(1021), + [aux_sym__val_number_decimal_token2] = ACTIONS(1023), + [aux_sym__val_number_decimal_token3] = ACTIONS(1023), + [aux_sym__val_number_decimal_token4] = ACTIONS(1023), + [aux_sym__val_number_token1] = ACTIONS(1023), + [aux_sym__val_number_token2] = ACTIONS(1023), + [aux_sym__val_number_token3] = ACTIONS(1023), + [anon_sym_0b] = ACTIONS(1021), + [anon_sym_0o] = ACTIONS(1021), + [anon_sym_0x] = ACTIONS(1021), + [sym_val_date] = ACTIONS(1023), + [anon_sym_DQUOTE] = ACTIONS(1023), + [sym__str_single_quotes] = ACTIONS(1023), + [sym__str_back_ticks] = ACTIONS(1023), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1023), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1023), + [anon_sym_err_GT] = ACTIONS(1021), + [anon_sym_out_GT] = ACTIONS(1021), + [anon_sym_e_GT] = ACTIONS(1021), + [anon_sym_o_GT] = ACTIONS(1021), + [anon_sym_err_PLUSout_GT] = ACTIONS(1021), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1021), + [anon_sym_o_PLUSe_GT] = ACTIONS(1021), + [anon_sym_e_PLUSo_GT] = ACTIONS(1021), + [anon_sym_err_GT_GT] = ACTIONS(1023), + [anon_sym_out_GT_GT] = ACTIONS(1023), + [anon_sym_e_GT_GT] = ACTIONS(1023), + [anon_sym_o_GT_GT] = ACTIONS(1023), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1023), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1023), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1023), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1023), + [aux_sym_unquoted_token1] = ACTIONS(1021), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1023), }, - [1235] = { - [sym_comment] = STATE(1235), - [ts_builtin_sym_end] = ACTIONS(1520), - [anon_sym_true] = ACTIONS(1520), - [anon_sym_false] = ACTIONS(1520), - [anon_sym_null] = ACTIONS(1520), - [aux_sym_cmd_identifier_token38] = ACTIONS(1520), - [aux_sym_cmd_identifier_token39] = ACTIONS(1520), - [aux_sym_cmd_identifier_token40] = ACTIONS(1520), - [sym__newline] = ACTIONS(1520), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_err_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_GT_PIPE] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1520), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_DOLLAR] = ACTIONS(1518), - [anon_sym_DASH_DASH] = ACTIONS(1520), - [anon_sym_DASH] = ACTIONS(1518), - [anon_sym_LBRACE] = ACTIONS(1520), - [anon_sym_DOT_DOT] = ACTIONS(1518), - [anon_sym_DOT_DOT2] = ACTIONS(1518), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1518), - [anon_sym_DOT_DOT_LT] = ACTIONS(1518), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), - [aux_sym__immediate_decimal_token2] = ACTIONS(4073), - [aux_sym__val_number_decimal_token1] = ACTIONS(1518), - [aux_sym__val_number_decimal_token2] = ACTIONS(1520), - [aux_sym__val_number_decimal_token3] = ACTIONS(1520), - [aux_sym__val_number_decimal_token4] = ACTIONS(1520), - [aux_sym__val_number_token1] = ACTIONS(1520), - [aux_sym__val_number_token2] = ACTIONS(1520), - [aux_sym__val_number_token3] = ACTIONS(1520), - [anon_sym_0b] = ACTIONS(1518), - [sym_filesize_unit] = ACTIONS(1520), - [sym_duration_unit] = ACTIONS(1520), - [anon_sym_0o] = ACTIONS(1518), - [anon_sym_0x] = ACTIONS(1518), - [sym_val_date] = ACTIONS(1520), - [anon_sym_DQUOTE] = ACTIONS(1520), - [sym__str_single_quotes] = ACTIONS(1520), - [sym__str_back_ticks] = ACTIONS(1520), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1520), - [anon_sym_err_GT] = ACTIONS(1518), - [anon_sym_out_GT] = ACTIONS(1518), - [anon_sym_e_GT] = ACTIONS(1518), - [anon_sym_o_GT] = ACTIONS(1518), - [anon_sym_err_PLUSout_GT] = ACTIONS(1518), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), - [anon_sym_o_PLUSe_GT] = ACTIONS(1518), - [anon_sym_e_PLUSo_GT] = ACTIONS(1518), - [anon_sym_err_GT_GT] = ACTIONS(1520), - [anon_sym_out_GT_GT] = ACTIONS(1520), - [anon_sym_e_GT_GT] = ACTIONS(1520), - [anon_sym_o_GT_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1520), - [aux_sym_unquoted_token1] = ACTIONS(1518), - [aux_sym_unquoted_token2] = ACTIONS(1518), - [anon_sym_POUND] = ACTIONS(247), + [1224] = { + [sym_path] = STATE(1299), + [sym_comment] = STATE(1224), + [aux_sym_cell_path_repeat1] = STATE(1224), + [ts_builtin_sym_end] = ACTIONS(1033), + [anon_sym_EQ] = ACTIONS(1031), + [anon_sym_PLUS_EQ] = ACTIONS(1033), + [anon_sym_DASH_EQ] = ACTIONS(1033), + [anon_sym_STAR_EQ] = ACTIONS(1033), + [anon_sym_SLASH_EQ] = ACTIONS(1033), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1033), + [sym__newline] = ACTIONS(1033), + [anon_sym_SEMI] = ACTIONS(1033), + [anon_sym_PIPE] = ACTIONS(1033), + [anon_sym_err_GT_PIPE] = ACTIONS(1033), + [anon_sym_out_GT_PIPE] = ACTIONS(1033), + [anon_sym_e_GT_PIPE] = ACTIONS(1033), + [anon_sym_o_GT_PIPE] = ACTIONS(1033), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1033), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1033), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1033), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1033), + [aux_sym_expr_binary_token1] = ACTIONS(1033), + [aux_sym_expr_binary_token2] = ACTIONS(1033), + [aux_sym_expr_binary_token3] = ACTIONS(1033), + [aux_sym_expr_binary_token4] = ACTIONS(1033), + [aux_sym_expr_binary_token5] = ACTIONS(1033), + [aux_sym_expr_binary_token6] = ACTIONS(1033), + [aux_sym_expr_binary_token7] = ACTIONS(1033), + [aux_sym_expr_binary_token8] = ACTIONS(1033), + [aux_sym_expr_binary_token9] = ACTIONS(1033), + [aux_sym_expr_binary_token10] = ACTIONS(1033), + [aux_sym_expr_binary_token11] = ACTIONS(1033), + [aux_sym_expr_binary_token12] = ACTIONS(1033), + [aux_sym_expr_binary_token13] = ACTIONS(1033), + [aux_sym_expr_binary_token14] = ACTIONS(1033), + [aux_sym_expr_binary_token15] = ACTIONS(1033), + [aux_sym_expr_binary_token16] = ACTIONS(1033), + [aux_sym_expr_binary_token17] = ACTIONS(1033), + [aux_sym_expr_binary_token18] = ACTIONS(1033), + [aux_sym_expr_binary_token19] = ACTIONS(1033), + [aux_sym_expr_binary_token20] = ACTIONS(1033), + [aux_sym_expr_binary_token21] = ACTIONS(1033), + [aux_sym_expr_binary_token22] = ACTIONS(1033), + [aux_sym_expr_binary_token23] = ACTIONS(1033), + [aux_sym_expr_binary_token24] = ACTIONS(1033), + [aux_sym_expr_binary_token25] = ACTIONS(1033), + [aux_sym_expr_binary_token26] = ACTIONS(1033), + [aux_sym_expr_binary_token27] = ACTIONS(1033), + [aux_sym_expr_binary_token28] = ACTIONS(1033), + [anon_sym_DOT_DOT2] = ACTIONS(1031), + [anon_sym_DOT] = ACTIONS(4601), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1033), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1033), + [anon_sym_err_GT] = ACTIONS(1031), + [anon_sym_out_GT] = ACTIONS(1031), + [anon_sym_e_GT] = ACTIONS(1031), + [anon_sym_o_GT] = ACTIONS(1031), + [anon_sym_err_PLUSout_GT] = ACTIONS(1031), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1031), + [anon_sym_o_PLUSe_GT] = ACTIONS(1031), + [anon_sym_e_PLUSo_GT] = ACTIONS(1031), + [anon_sym_err_GT_GT] = ACTIONS(1033), + [anon_sym_out_GT_GT] = ACTIONS(1033), + [anon_sym_e_GT_GT] = ACTIONS(1033), + [anon_sym_o_GT_GT] = ACTIONS(1033), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1033), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1033), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1033), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1033), + [anon_sym_POUND] = ACTIONS(249), }, - [1236] = { - [sym_comment] = STATE(1236), - [ts_builtin_sym_end] = ACTIONS(1520), - [anon_sym_true] = ACTIONS(1520), - [anon_sym_false] = ACTIONS(1520), - [anon_sym_null] = ACTIONS(1520), - [aux_sym_cmd_identifier_token38] = ACTIONS(1520), - [aux_sym_cmd_identifier_token39] = ACTIONS(1520), - [aux_sym_cmd_identifier_token40] = ACTIONS(1520), - [sym__newline] = ACTIONS(1520), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_err_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_GT_PIPE] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1520), - [anon_sym_LPAREN] = ACTIONS(1518), - [anon_sym_DOLLAR] = ACTIONS(1518), - [anon_sym_DASH_DASH] = ACTIONS(1520), - [anon_sym_DASH] = ACTIONS(1518), - [anon_sym_LBRACE] = ACTIONS(1520), - [anon_sym_DOT_DOT] = ACTIONS(1518), - [anon_sym_LPAREN2] = ACTIONS(1520), - [anon_sym_DOT_DOT2] = ACTIONS(1518), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1518), - [anon_sym_DOT_DOT_LT] = ACTIONS(1518), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), - [aux_sym__val_number_decimal_token1] = ACTIONS(1518), - [aux_sym__val_number_decimal_token2] = ACTIONS(1520), - [aux_sym__val_number_decimal_token3] = ACTIONS(1520), - [aux_sym__val_number_decimal_token4] = ACTIONS(1520), - [aux_sym__val_number_token1] = ACTIONS(1520), - [aux_sym__val_number_token2] = ACTIONS(1520), - [aux_sym__val_number_token3] = ACTIONS(1520), - [anon_sym_0b] = ACTIONS(1518), - [sym_filesize_unit] = ACTIONS(1520), - [sym_duration_unit] = ACTIONS(1520), - [anon_sym_0o] = ACTIONS(1518), - [anon_sym_0x] = ACTIONS(1518), - [sym_val_date] = ACTIONS(1520), - [anon_sym_DQUOTE] = ACTIONS(1520), - [sym__str_single_quotes] = ACTIONS(1520), - [sym__str_back_ticks] = ACTIONS(1520), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1520), - [anon_sym_err_GT] = ACTIONS(1518), - [anon_sym_out_GT] = ACTIONS(1518), - [anon_sym_e_GT] = ACTIONS(1518), - [anon_sym_o_GT] = ACTIONS(1518), - [anon_sym_err_PLUSout_GT] = ACTIONS(1518), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), - [anon_sym_o_PLUSe_GT] = ACTIONS(1518), - [anon_sym_e_PLUSo_GT] = ACTIONS(1518), - [anon_sym_err_GT_GT] = ACTIONS(1520), - [anon_sym_out_GT_GT] = ACTIONS(1520), - [anon_sym_e_GT_GT] = ACTIONS(1520), - [anon_sym_o_GT_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1520), - [aux_sym_unquoted_token1] = ACTIONS(1518), - [aux_sym_unquoted_token2] = ACTIONS(1518), - [anon_sym_POUND] = ACTIONS(247), + [1225] = { + [sym_path] = STATE(1299), + [sym_comment] = STATE(1225), + [aux_sym_cell_path_repeat1] = STATE(1224), + [ts_builtin_sym_end] = ACTIONS(1029), + [anon_sym_EQ] = ACTIONS(1027), + [anon_sym_PLUS_EQ] = ACTIONS(1029), + [anon_sym_DASH_EQ] = ACTIONS(1029), + [anon_sym_STAR_EQ] = ACTIONS(1029), + [anon_sym_SLASH_EQ] = ACTIONS(1029), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1029), + [sym__newline] = ACTIONS(1029), + [anon_sym_SEMI] = ACTIONS(1029), + [anon_sym_PIPE] = ACTIONS(1029), + [anon_sym_err_GT_PIPE] = ACTIONS(1029), + [anon_sym_out_GT_PIPE] = ACTIONS(1029), + [anon_sym_e_GT_PIPE] = ACTIONS(1029), + [anon_sym_o_GT_PIPE] = ACTIONS(1029), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1029), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1029), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1029), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1029), + [aux_sym_expr_binary_token1] = ACTIONS(1029), + [aux_sym_expr_binary_token2] = ACTIONS(1029), + [aux_sym_expr_binary_token3] = ACTIONS(1029), + [aux_sym_expr_binary_token4] = ACTIONS(1029), + [aux_sym_expr_binary_token5] = ACTIONS(1029), + [aux_sym_expr_binary_token6] = ACTIONS(1029), + [aux_sym_expr_binary_token7] = ACTIONS(1029), + [aux_sym_expr_binary_token8] = ACTIONS(1029), + [aux_sym_expr_binary_token9] = ACTIONS(1029), + [aux_sym_expr_binary_token10] = ACTIONS(1029), + [aux_sym_expr_binary_token11] = ACTIONS(1029), + [aux_sym_expr_binary_token12] = ACTIONS(1029), + [aux_sym_expr_binary_token13] = ACTIONS(1029), + [aux_sym_expr_binary_token14] = ACTIONS(1029), + [aux_sym_expr_binary_token15] = ACTIONS(1029), + [aux_sym_expr_binary_token16] = ACTIONS(1029), + [aux_sym_expr_binary_token17] = ACTIONS(1029), + [aux_sym_expr_binary_token18] = ACTIONS(1029), + [aux_sym_expr_binary_token19] = ACTIONS(1029), + [aux_sym_expr_binary_token20] = ACTIONS(1029), + [aux_sym_expr_binary_token21] = ACTIONS(1029), + [aux_sym_expr_binary_token22] = ACTIONS(1029), + [aux_sym_expr_binary_token23] = ACTIONS(1029), + [aux_sym_expr_binary_token24] = ACTIONS(1029), + [aux_sym_expr_binary_token25] = ACTIONS(1029), + [aux_sym_expr_binary_token26] = ACTIONS(1029), + [aux_sym_expr_binary_token27] = ACTIONS(1029), + [aux_sym_expr_binary_token28] = ACTIONS(1029), + [anon_sym_DOT_DOT2] = ACTIONS(1027), + [anon_sym_DOT] = ACTIONS(4494), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1029), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1029), + [anon_sym_err_GT] = ACTIONS(1027), + [anon_sym_out_GT] = ACTIONS(1027), + [anon_sym_e_GT] = ACTIONS(1027), + [anon_sym_o_GT] = ACTIONS(1027), + [anon_sym_err_PLUSout_GT] = ACTIONS(1027), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1027), + [anon_sym_o_PLUSe_GT] = ACTIONS(1027), + [anon_sym_e_PLUSo_GT] = ACTIONS(1027), + [anon_sym_err_GT_GT] = ACTIONS(1029), + [anon_sym_out_GT_GT] = ACTIONS(1029), + [anon_sym_e_GT_GT] = ACTIONS(1029), + [anon_sym_o_GT_GT] = ACTIONS(1029), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1029), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1029), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1029), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1029), + [anon_sym_POUND] = ACTIONS(249), }, - [1237] = { - [sym_cell_path] = STATE(1468), - [sym_path] = STATE(1376), - [sym_comment] = STATE(1237), - [aux_sym_cell_path_repeat1] = STATE(1258), - [ts_builtin_sym_end] = ACTIONS(1007), - [anon_sym_true] = ACTIONS(1007), - [anon_sym_false] = ACTIONS(1007), - [anon_sym_null] = ACTIONS(1007), - [aux_sym_cmd_identifier_token38] = ACTIONS(1007), - [aux_sym_cmd_identifier_token39] = ACTIONS(1007), - [aux_sym_cmd_identifier_token40] = ACTIONS(1007), - [sym__newline] = ACTIONS(1007), - [anon_sym_SEMI] = ACTIONS(1007), - [anon_sym_PIPE] = ACTIONS(1007), - [anon_sym_err_GT_PIPE] = ACTIONS(1007), - [anon_sym_out_GT_PIPE] = ACTIONS(1007), - [anon_sym_e_GT_PIPE] = ACTIONS(1007), - [anon_sym_o_GT_PIPE] = ACTIONS(1007), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1007), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1007), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1007), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1007), - [anon_sym_LBRACK] = ACTIONS(1007), - [anon_sym_LPAREN] = ACTIONS(1007), - [anon_sym_DOLLAR] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1007), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_LBRACE] = ACTIONS(1007), - [anon_sym_DOT_DOT] = ACTIONS(1005), - [anon_sym_DOT_DOT2] = ACTIONS(1005), - [anon_sym_DOT] = ACTIONS(4432), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1005), - [anon_sym_DOT_DOT_LT] = ACTIONS(1005), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1007), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1007), - [aux_sym__val_number_decimal_token1] = ACTIONS(1005), - [aux_sym__val_number_decimal_token2] = ACTIONS(1007), - [aux_sym__val_number_decimal_token3] = ACTIONS(1007), - [aux_sym__val_number_decimal_token4] = ACTIONS(1007), - [aux_sym__val_number_token1] = ACTIONS(1007), - [aux_sym__val_number_token2] = ACTIONS(1007), - [aux_sym__val_number_token3] = ACTIONS(1007), - [anon_sym_0b] = ACTIONS(1005), - [anon_sym_0o] = ACTIONS(1005), - [anon_sym_0x] = ACTIONS(1005), - [sym_val_date] = ACTIONS(1007), - [anon_sym_DQUOTE] = ACTIONS(1007), - [sym__str_single_quotes] = ACTIONS(1007), - [sym__str_back_ticks] = ACTIONS(1007), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1007), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1007), - [anon_sym_err_GT] = ACTIONS(1005), - [anon_sym_out_GT] = ACTIONS(1005), - [anon_sym_e_GT] = ACTIONS(1005), - [anon_sym_o_GT] = ACTIONS(1005), - [anon_sym_err_PLUSout_GT] = ACTIONS(1005), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1005), - [anon_sym_o_PLUSe_GT] = ACTIONS(1005), - [anon_sym_e_PLUSo_GT] = ACTIONS(1005), - [anon_sym_err_GT_GT] = ACTIONS(1007), - [anon_sym_out_GT_GT] = ACTIONS(1007), - [anon_sym_e_GT_GT] = ACTIONS(1007), - [anon_sym_o_GT_GT] = ACTIONS(1007), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1007), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1007), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1007), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1007), - [aux_sym_unquoted_token1] = ACTIONS(1005), - [anon_sym_POUND] = ACTIONS(247), + [1226] = { + [sym_comment] = STATE(1226), + [ts_builtin_sym_end] = ACTIONS(1530), + [anon_sym_true] = ACTIONS(1530), + [anon_sym_false] = ACTIONS(1530), + [anon_sym_null] = ACTIONS(1530), + [aux_sym_cmd_identifier_token38] = ACTIONS(1530), + [aux_sym_cmd_identifier_token39] = ACTIONS(1530), + [aux_sym_cmd_identifier_token40] = ACTIONS(1530), + [sym__newline] = ACTIONS(1530), + [anon_sym_SEMI] = ACTIONS(1530), + [anon_sym_PIPE] = ACTIONS(1530), + [anon_sym_err_GT_PIPE] = ACTIONS(1530), + [anon_sym_out_GT_PIPE] = ACTIONS(1530), + [anon_sym_e_GT_PIPE] = ACTIONS(1530), + [anon_sym_o_GT_PIPE] = ACTIONS(1530), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1530), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1530), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1530), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1530), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_DOLLAR] = ACTIONS(1528), + [anon_sym_DASH_DASH] = ACTIONS(1530), + [anon_sym_DASH] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(1530), + [anon_sym_DOT_DOT] = ACTIONS(1528), + [anon_sym_LPAREN2] = ACTIONS(1530), + [anon_sym_DOT_DOT2] = ACTIONS(1528), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1528), + [anon_sym_DOT_DOT_LT] = ACTIONS(1528), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1530), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1530), + [aux_sym__val_number_decimal_token1] = ACTIONS(1528), + [aux_sym__val_number_decimal_token2] = ACTIONS(1530), + [aux_sym__val_number_decimal_token3] = ACTIONS(1530), + [aux_sym__val_number_decimal_token4] = ACTIONS(1530), + [aux_sym__val_number_token1] = ACTIONS(1530), + [aux_sym__val_number_token2] = ACTIONS(1530), + [aux_sym__val_number_token3] = ACTIONS(1530), + [anon_sym_0b] = ACTIONS(1528), + [sym_filesize_unit] = ACTIONS(1530), + [sym_duration_unit] = ACTIONS(1530), + [anon_sym_0o] = ACTIONS(1528), + [anon_sym_0x] = ACTIONS(1528), + [sym_val_date] = ACTIONS(1530), + [anon_sym_DQUOTE] = ACTIONS(1530), + [sym__str_single_quotes] = ACTIONS(1530), + [sym__str_back_ticks] = ACTIONS(1530), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1530), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1530), + [anon_sym_err_GT] = ACTIONS(1528), + [anon_sym_out_GT] = ACTIONS(1528), + [anon_sym_e_GT] = ACTIONS(1528), + [anon_sym_o_GT] = ACTIONS(1528), + [anon_sym_err_PLUSout_GT] = ACTIONS(1528), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), + [anon_sym_o_PLUSe_GT] = ACTIONS(1528), + [anon_sym_e_PLUSo_GT] = ACTIONS(1528), + [anon_sym_err_GT_GT] = ACTIONS(1530), + [anon_sym_out_GT_GT] = ACTIONS(1530), + [anon_sym_e_GT_GT] = ACTIONS(1530), + [anon_sym_o_GT_GT] = ACTIONS(1530), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1530), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1530), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1530), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1530), + [aux_sym_unquoted_token1] = ACTIONS(1528), + [aux_sym_unquoted_token2] = ACTIONS(1528), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1530), }, - [1238] = { - [sym_comment] = STATE(1238), - [anon_sym_true] = ACTIONS(1723), - [anon_sym_false] = ACTIONS(1723), - [anon_sym_null] = ACTIONS(1723), - [aux_sym_cmd_identifier_token38] = ACTIONS(1723), - [aux_sym_cmd_identifier_token39] = ACTIONS(1723), - [aux_sym_cmd_identifier_token40] = ACTIONS(1723), - [sym__newline] = ACTIONS(1723), - [anon_sym_SEMI] = ACTIONS(1723), - [anon_sym_PIPE] = ACTIONS(1723), - [anon_sym_err_GT_PIPE] = ACTIONS(1723), - [anon_sym_out_GT_PIPE] = ACTIONS(1723), - [anon_sym_e_GT_PIPE] = ACTIONS(1723), - [anon_sym_o_GT_PIPE] = ACTIONS(1723), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1723), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1723), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1723), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1723), - [anon_sym_LBRACK] = ACTIONS(1723), - [anon_sym_LPAREN] = ACTIONS(1721), - [anon_sym_RPAREN] = ACTIONS(1723), - [anon_sym_DOLLAR] = ACTIONS(1721), - [anon_sym_DASH_DASH] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1723), - [anon_sym_RBRACE] = ACTIONS(1723), - [anon_sym_DOT_DOT] = ACTIONS(1721), - [anon_sym_LPAREN2] = ACTIONS(1723), - [anon_sym_DOT_DOT2] = ACTIONS(1721), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1721), - [anon_sym_DOT_DOT_LT] = ACTIONS(1721), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1723), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1723), - [aux_sym__immediate_decimal_token2] = ACTIONS(4525), - [aux_sym__val_number_decimal_token1] = ACTIONS(1721), - [aux_sym__val_number_decimal_token2] = ACTIONS(1723), - [aux_sym__val_number_decimal_token3] = ACTIONS(1723), - [aux_sym__val_number_decimal_token4] = ACTIONS(1723), - [aux_sym__val_number_token1] = ACTIONS(1723), - [aux_sym__val_number_token2] = ACTIONS(1723), - [aux_sym__val_number_token3] = ACTIONS(1723), - [anon_sym_0b] = ACTIONS(1721), - [anon_sym_0o] = ACTIONS(1721), - [anon_sym_0x] = ACTIONS(1721), - [sym_val_date] = ACTIONS(1723), - [anon_sym_DQUOTE] = ACTIONS(1723), - [sym__str_single_quotes] = ACTIONS(1723), - [sym__str_back_ticks] = ACTIONS(1723), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1723), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1723), - [anon_sym_err_GT] = ACTIONS(1721), - [anon_sym_out_GT] = ACTIONS(1721), - [anon_sym_e_GT] = ACTIONS(1721), - [anon_sym_o_GT] = ACTIONS(1721), - [anon_sym_err_PLUSout_GT] = ACTIONS(1721), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1721), - [anon_sym_o_PLUSe_GT] = ACTIONS(1721), - [anon_sym_e_PLUSo_GT] = ACTIONS(1721), - [anon_sym_err_GT_GT] = ACTIONS(1723), - [anon_sym_out_GT_GT] = ACTIONS(1723), - [anon_sym_e_GT_GT] = ACTIONS(1723), - [anon_sym_o_GT_GT] = ACTIONS(1723), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1723), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1723), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1723), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1723), - [aux_sym_unquoted_token1] = ACTIONS(1721), - [aux_sym_unquoted_token2] = ACTIONS(1721), - [anon_sym_POUND] = ACTIONS(247), + [1227] = { + [sym_comment] = STATE(1227), + [anon_sym_EQ] = ACTIONS(1048), + [anon_sym_PLUS_EQ] = ACTIONS(1050), + [anon_sym_DASH_EQ] = ACTIONS(1050), + [anon_sym_STAR_EQ] = ACTIONS(1050), + [anon_sym_SLASH_EQ] = ACTIONS(1050), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1050), + [sym__newline] = ACTIONS(1048), + [anon_sym_SEMI] = ACTIONS(1050), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_err_GT_PIPE] = ACTIONS(1050), + [anon_sym_out_GT_PIPE] = ACTIONS(1050), + [anon_sym_e_GT_PIPE] = ACTIONS(1050), + [anon_sym_o_GT_PIPE] = ACTIONS(1050), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1050), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1050), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1050), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1050), + [anon_sym_RPAREN] = ACTIONS(1050), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_QMARK2] = ACTIONS(4604), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1050), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1050), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1050), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1050), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1050), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1050), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1050), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1050), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1050), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1050), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1050), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1050), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1050), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1050), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1050), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1050), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1050), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1050), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1050), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1050), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1050), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1050), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1050), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1050), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1050), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1050), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1050), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1050), + [anon_sym_DOT_DOT2] = ACTIONS(1048), + [anon_sym_DOT] = ACTIONS(1048), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1050), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1050), + [anon_sym_err_GT] = ACTIONS(1048), + [anon_sym_out_GT] = ACTIONS(1048), + [anon_sym_e_GT] = ACTIONS(1048), + [anon_sym_o_GT] = ACTIONS(1048), + [anon_sym_err_PLUSout_GT] = ACTIONS(1048), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1048), + [anon_sym_o_PLUSe_GT] = ACTIONS(1048), + [anon_sym_e_PLUSo_GT] = ACTIONS(1048), + [anon_sym_err_GT_GT] = ACTIONS(1050), + [anon_sym_out_GT_GT] = ACTIONS(1050), + [anon_sym_e_GT_GT] = ACTIONS(1050), + [anon_sym_o_GT_GT] = ACTIONS(1050), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1050), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1050), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1050), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(249), }, - [1239] = { - [sym_comment] = STATE(1239), - [ts_builtin_sym_end] = ACTIONS(1024), - [anon_sym_EQ] = ACTIONS(1022), - [anon_sym_PLUS_EQ] = ACTIONS(1024), - [anon_sym_DASH_EQ] = ACTIONS(1024), - [anon_sym_STAR_EQ] = ACTIONS(1024), - [anon_sym_SLASH_EQ] = ACTIONS(1024), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1024), - [sym__newline] = ACTIONS(1024), - [anon_sym_SEMI] = ACTIONS(1024), - [anon_sym_PIPE] = ACTIONS(1024), - [anon_sym_err_GT_PIPE] = ACTIONS(1024), - [anon_sym_out_GT_PIPE] = ACTIONS(1024), - [anon_sym_e_GT_PIPE] = ACTIONS(1024), - [anon_sym_o_GT_PIPE] = ACTIONS(1024), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1024), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1024), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1024), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1024), - [anon_sym_QMARK2] = ACTIONS(4527), - [aux_sym_expr_binary_token1] = ACTIONS(1024), - [aux_sym_expr_binary_token2] = ACTIONS(1024), - [aux_sym_expr_binary_token3] = ACTIONS(1024), - [aux_sym_expr_binary_token4] = ACTIONS(1024), - [aux_sym_expr_binary_token5] = ACTIONS(1024), - [aux_sym_expr_binary_token6] = ACTIONS(1024), - [aux_sym_expr_binary_token7] = ACTIONS(1024), - [aux_sym_expr_binary_token8] = ACTIONS(1024), - [aux_sym_expr_binary_token9] = ACTIONS(1024), - [aux_sym_expr_binary_token10] = ACTIONS(1024), - [aux_sym_expr_binary_token11] = ACTIONS(1024), - [aux_sym_expr_binary_token12] = ACTIONS(1024), - [aux_sym_expr_binary_token13] = ACTIONS(1024), - [aux_sym_expr_binary_token14] = ACTIONS(1024), - [aux_sym_expr_binary_token15] = ACTIONS(1024), - [aux_sym_expr_binary_token16] = ACTIONS(1024), - [aux_sym_expr_binary_token17] = ACTIONS(1024), - [aux_sym_expr_binary_token18] = ACTIONS(1024), - [aux_sym_expr_binary_token19] = ACTIONS(1024), - [aux_sym_expr_binary_token20] = ACTIONS(1024), - [aux_sym_expr_binary_token21] = ACTIONS(1024), - [aux_sym_expr_binary_token22] = ACTIONS(1024), - [aux_sym_expr_binary_token23] = ACTIONS(1024), - [aux_sym_expr_binary_token24] = ACTIONS(1024), - [aux_sym_expr_binary_token25] = ACTIONS(1024), - [aux_sym_expr_binary_token26] = ACTIONS(1024), - [aux_sym_expr_binary_token27] = ACTIONS(1024), - [aux_sym_expr_binary_token28] = ACTIONS(1024), - [anon_sym_DOT_DOT2] = ACTIONS(1022), - [anon_sym_DOT] = ACTIONS(1022), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1024), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1024), - [anon_sym_err_GT] = ACTIONS(1022), - [anon_sym_out_GT] = ACTIONS(1022), - [anon_sym_e_GT] = ACTIONS(1022), - [anon_sym_o_GT] = ACTIONS(1022), - [anon_sym_err_PLUSout_GT] = ACTIONS(1022), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1022), - [anon_sym_o_PLUSe_GT] = ACTIONS(1022), - [anon_sym_e_PLUSo_GT] = ACTIONS(1022), - [anon_sym_err_GT_GT] = ACTIONS(1024), - [anon_sym_out_GT_GT] = ACTIONS(1024), - [anon_sym_e_GT_GT] = ACTIONS(1024), - [anon_sym_o_GT_GT] = ACTIONS(1024), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1024), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1024), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1024), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1024), - [anon_sym_POUND] = ACTIONS(247), + [1228] = { + [sym_comment] = STATE(1228), + [anon_sym_true] = ACTIONS(1717), + [anon_sym_false] = ACTIONS(1717), + [anon_sym_null] = ACTIONS(1717), + [aux_sym_cmd_identifier_token38] = ACTIONS(1717), + [aux_sym_cmd_identifier_token39] = ACTIONS(1717), + [aux_sym_cmd_identifier_token40] = ACTIONS(1717), + [sym__newline] = ACTIONS(1717), + [anon_sym_SEMI] = ACTIONS(1717), + [anon_sym_PIPE] = ACTIONS(1717), + [anon_sym_err_GT_PIPE] = ACTIONS(1717), + [anon_sym_out_GT_PIPE] = ACTIONS(1717), + [anon_sym_e_GT_PIPE] = ACTIONS(1717), + [anon_sym_o_GT_PIPE] = ACTIONS(1717), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1717), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1717), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1717), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1717), + [anon_sym_LBRACK] = ACTIONS(1717), + [anon_sym_LPAREN] = ACTIONS(1715), + [anon_sym_RPAREN] = ACTIONS(1717), + [anon_sym_DOLLAR] = ACTIONS(1715), + [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_LBRACE] = ACTIONS(1717), + [anon_sym_RBRACE] = ACTIONS(1717), + [anon_sym_DOT_DOT] = ACTIONS(1715), + [anon_sym_LPAREN2] = ACTIONS(1717), + [anon_sym_DOT_DOT2] = ACTIONS(1715), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1715), + [anon_sym_DOT_DOT_LT] = ACTIONS(1715), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1717), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1717), + [aux_sym__immediate_decimal_token2] = ACTIONS(4465), + [aux_sym__val_number_decimal_token1] = ACTIONS(1715), + [aux_sym__val_number_decimal_token2] = ACTIONS(1717), + [aux_sym__val_number_decimal_token3] = ACTIONS(1717), + [aux_sym__val_number_decimal_token4] = ACTIONS(1717), + [aux_sym__val_number_token1] = ACTIONS(1717), + [aux_sym__val_number_token2] = ACTIONS(1717), + [aux_sym__val_number_token3] = ACTIONS(1717), + [anon_sym_0b] = ACTIONS(1715), + [anon_sym_0o] = ACTIONS(1715), + [anon_sym_0x] = ACTIONS(1715), + [sym_val_date] = ACTIONS(1717), + [anon_sym_DQUOTE] = ACTIONS(1717), + [sym__str_single_quotes] = ACTIONS(1717), + [sym__str_back_ticks] = ACTIONS(1717), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1717), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1717), + [anon_sym_err_GT] = ACTIONS(1715), + [anon_sym_out_GT] = ACTIONS(1715), + [anon_sym_e_GT] = ACTIONS(1715), + [anon_sym_o_GT] = ACTIONS(1715), + [anon_sym_err_PLUSout_GT] = ACTIONS(1715), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1715), + [anon_sym_o_PLUSe_GT] = ACTIONS(1715), + [anon_sym_e_PLUSo_GT] = ACTIONS(1715), + [anon_sym_err_GT_GT] = ACTIONS(1717), + [anon_sym_out_GT_GT] = ACTIONS(1717), + [anon_sym_e_GT_GT] = ACTIONS(1717), + [anon_sym_o_GT_GT] = ACTIONS(1717), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1717), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1717), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1717), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1717), + [aux_sym_unquoted_token1] = ACTIONS(1715), + [aux_sym_unquoted_token2] = ACTIONS(1715), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1717), }, - [1240] = { - [sym_comment] = STATE(1240), - [ts_builtin_sym_end] = ACTIONS(1030), - [anon_sym_EQ] = ACTIONS(1028), - [anon_sym_PLUS_EQ] = ACTIONS(1030), - [anon_sym_DASH_EQ] = ACTIONS(1030), - [anon_sym_STAR_EQ] = ACTIONS(1030), - [anon_sym_SLASH_EQ] = ACTIONS(1030), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1030), - [sym__newline] = ACTIONS(1030), - [anon_sym_SEMI] = ACTIONS(1030), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_err_GT_PIPE] = ACTIONS(1030), - [anon_sym_out_GT_PIPE] = ACTIONS(1030), - [anon_sym_e_GT_PIPE] = ACTIONS(1030), - [anon_sym_o_GT_PIPE] = ACTIONS(1030), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1030), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1030), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1030), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1030), - [anon_sym_QMARK2] = ACTIONS(4529), - [aux_sym_expr_binary_token1] = ACTIONS(1030), - [aux_sym_expr_binary_token2] = ACTIONS(1030), - [aux_sym_expr_binary_token3] = ACTIONS(1030), - [aux_sym_expr_binary_token4] = ACTIONS(1030), - [aux_sym_expr_binary_token5] = ACTIONS(1030), - [aux_sym_expr_binary_token6] = ACTIONS(1030), - [aux_sym_expr_binary_token7] = ACTIONS(1030), - [aux_sym_expr_binary_token8] = ACTIONS(1030), - [aux_sym_expr_binary_token9] = ACTIONS(1030), - [aux_sym_expr_binary_token10] = ACTIONS(1030), - [aux_sym_expr_binary_token11] = ACTIONS(1030), - [aux_sym_expr_binary_token12] = ACTIONS(1030), - [aux_sym_expr_binary_token13] = ACTIONS(1030), - [aux_sym_expr_binary_token14] = ACTIONS(1030), - [aux_sym_expr_binary_token15] = ACTIONS(1030), - [aux_sym_expr_binary_token16] = ACTIONS(1030), - [aux_sym_expr_binary_token17] = ACTIONS(1030), - [aux_sym_expr_binary_token18] = ACTIONS(1030), - [aux_sym_expr_binary_token19] = ACTIONS(1030), - [aux_sym_expr_binary_token20] = ACTIONS(1030), - [aux_sym_expr_binary_token21] = ACTIONS(1030), - [aux_sym_expr_binary_token22] = ACTIONS(1030), - [aux_sym_expr_binary_token23] = ACTIONS(1030), - [aux_sym_expr_binary_token24] = ACTIONS(1030), - [aux_sym_expr_binary_token25] = ACTIONS(1030), - [aux_sym_expr_binary_token26] = ACTIONS(1030), - [aux_sym_expr_binary_token27] = ACTIONS(1030), - [aux_sym_expr_binary_token28] = ACTIONS(1030), - [anon_sym_DOT_DOT2] = ACTIONS(1028), - [anon_sym_DOT] = ACTIONS(1028), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1030), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1030), - [anon_sym_err_GT] = ACTIONS(1028), - [anon_sym_out_GT] = ACTIONS(1028), - [anon_sym_e_GT] = ACTIONS(1028), - [anon_sym_o_GT] = ACTIONS(1028), - [anon_sym_err_PLUSout_GT] = ACTIONS(1028), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1028), - [anon_sym_o_PLUSe_GT] = ACTIONS(1028), - [anon_sym_e_PLUSo_GT] = ACTIONS(1028), - [anon_sym_err_GT_GT] = ACTIONS(1030), - [anon_sym_out_GT_GT] = ACTIONS(1030), - [anon_sym_e_GT_GT] = ACTIONS(1030), - [anon_sym_o_GT_GT] = ACTIONS(1030), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1030), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1030), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1030), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1030), - [anon_sym_POUND] = ACTIONS(247), + [1229] = { + [sym_comment] = STATE(1229), + [anon_sym_EQ] = ACTIONS(1038), + [anon_sym_PLUS_EQ] = ACTIONS(1040), + [anon_sym_DASH_EQ] = ACTIONS(1040), + [anon_sym_STAR_EQ] = ACTIONS(1040), + [anon_sym_SLASH_EQ] = ACTIONS(1040), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1040), + [sym__newline] = ACTIONS(1040), + [anon_sym_SEMI] = ACTIONS(1040), + [anon_sym_PIPE] = ACTIONS(1040), + [anon_sym_err_GT_PIPE] = ACTIONS(1040), + [anon_sym_out_GT_PIPE] = ACTIONS(1040), + [anon_sym_e_GT_PIPE] = ACTIONS(1040), + [anon_sym_o_GT_PIPE] = ACTIONS(1040), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1040), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1040), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1040), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1040), + [anon_sym_RPAREN] = ACTIONS(1040), + [anon_sym_RBRACE] = ACTIONS(1040), + [anon_sym_QMARK2] = ACTIONS(1040), + [aux_sym_expr_binary_token1] = ACTIONS(1040), + [aux_sym_expr_binary_token2] = ACTIONS(1040), + [aux_sym_expr_binary_token3] = ACTIONS(1040), + [aux_sym_expr_binary_token4] = ACTIONS(1040), + [aux_sym_expr_binary_token5] = ACTIONS(1040), + [aux_sym_expr_binary_token6] = ACTIONS(1040), + [aux_sym_expr_binary_token7] = ACTIONS(1040), + [aux_sym_expr_binary_token8] = ACTIONS(1040), + [aux_sym_expr_binary_token9] = ACTIONS(1040), + [aux_sym_expr_binary_token10] = ACTIONS(1040), + [aux_sym_expr_binary_token11] = ACTIONS(1040), + [aux_sym_expr_binary_token12] = ACTIONS(1040), + [aux_sym_expr_binary_token13] = ACTIONS(1040), + [aux_sym_expr_binary_token14] = ACTIONS(1040), + [aux_sym_expr_binary_token15] = ACTIONS(1040), + [aux_sym_expr_binary_token16] = ACTIONS(1040), + [aux_sym_expr_binary_token17] = ACTIONS(1040), + [aux_sym_expr_binary_token18] = ACTIONS(1040), + [aux_sym_expr_binary_token19] = ACTIONS(1040), + [aux_sym_expr_binary_token20] = ACTIONS(1040), + [aux_sym_expr_binary_token21] = ACTIONS(1040), + [aux_sym_expr_binary_token22] = ACTIONS(1040), + [aux_sym_expr_binary_token23] = ACTIONS(1040), + [aux_sym_expr_binary_token24] = ACTIONS(1040), + [aux_sym_expr_binary_token25] = ACTIONS(1040), + [aux_sym_expr_binary_token26] = ACTIONS(1040), + [aux_sym_expr_binary_token27] = ACTIONS(1040), + [aux_sym_expr_binary_token28] = ACTIONS(1040), + [anon_sym_DOT_DOT2] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(1038), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1040), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1040), + [anon_sym_err_GT] = ACTIONS(1038), + [anon_sym_out_GT] = ACTIONS(1038), + [anon_sym_e_GT] = ACTIONS(1038), + [anon_sym_o_GT] = ACTIONS(1038), + [anon_sym_err_PLUSout_GT] = ACTIONS(1038), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1038), + [anon_sym_o_PLUSe_GT] = ACTIONS(1038), + [anon_sym_e_PLUSo_GT] = ACTIONS(1038), + [anon_sym_err_GT_GT] = ACTIONS(1040), + [anon_sym_out_GT_GT] = ACTIONS(1040), + [anon_sym_e_GT_GT] = ACTIONS(1040), + [anon_sym_o_GT_GT] = ACTIONS(1040), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1040), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1040), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1040), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1040), + [anon_sym_POUND] = ACTIONS(249), }, - [1241] = { - [sym_comment] = STATE(1241), - [ts_builtin_sym_end] = ACTIONS(1056), + [1230] = { + [sym_comment] = STATE(1230), [anon_sym_EQ] = ACTIONS(1054), [anon_sym_PLUS_EQ] = ACTIONS(1056), [anon_sym_DASH_EQ] = ACTIONS(1056), @@ -194688,6 +196790,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1056), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1056), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1056), + [anon_sym_RPAREN] = ACTIONS(1056), + [anon_sym_RBRACE] = ACTIONS(1056), + [anon_sym_QMARK2] = ACTIONS(1056), [aux_sym_expr_binary_token1] = ACTIONS(1056), [aux_sym_expr_binary_token2] = ACTIONS(1056), [aux_sym_expr_binary_token3] = ACTIONS(1056), @@ -194736,1060 +196841,442 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1056), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1056), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1056), - [anon_sym_POUND] = ACTIONS(247), - }, - [1242] = { - [sym_comment] = STATE(1242), - [ts_builtin_sym_end] = ACTIONS(1669), - [anon_sym_true] = ACTIONS(1669), - [anon_sym_false] = ACTIONS(1669), - [anon_sym_null] = ACTIONS(1669), - [aux_sym_cmd_identifier_token38] = ACTIONS(1669), - [aux_sym_cmd_identifier_token39] = ACTIONS(1669), - [aux_sym_cmd_identifier_token40] = ACTIONS(1669), - [sym__newline] = ACTIONS(1669), - [anon_sym_SEMI] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1669), - [anon_sym_err_GT_PIPE] = ACTIONS(1669), - [anon_sym_out_GT_PIPE] = ACTIONS(1669), - [anon_sym_e_GT_PIPE] = ACTIONS(1669), - [anon_sym_o_GT_PIPE] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), - [anon_sym_LBRACK] = ACTIONS(1669), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_DOLLAR] = ACTIONS(1667), - [anon_sym_DASH_DASH] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_LBRACE] = ACTIONS(1669), - [anon_sym_DOT_DOT] = ACTIONS(1667), - [anon_sym_LPAREN2] = ACTIONS(1669), - [anon_sym_DOT_DOT2] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1667), - [anon_sym_DOT_DOT_LT] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [aux_sym__immediate_decimal_token2] = ACTIONS(4438), - [aux_sym__val_number_decimal_token1] = ACTIONS(1667), - [aux_sym__val_number_decimal_token2] = ACTIONS(1669), - [aux_sym__val_number_decimal_token3] = ACTIONS(1669), - [aux_sym__val_number_decimal_token4] = ACTIONS(1669), - [aux_sym__val_number_token1] = ACTIONS(1669), - [aux_sym__val_number_token2] = ACTIONS(1669), - [aux_sym__val_number_token3] = ACTIONS(1669), - [anon_sym_0b] = ACTIONS(1667), - [anon_sym_0o] = ACTIONS(1667), - [anon_sym_0x] = ACTIONS(1667), - [sym_val_date] = ACTIONS(1669), - [anon_sym_DQUOTE] = ACTIONS(1669), - [sym__str_single_quotes] = ACTIONS(1669), - [sym__str_back_ticks] = ACTIONS(1669), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1669), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1669), - [anon_sym_err_GT] = ACTIONS(1667), - [anon_sym_out_GT] = ACTIONS(1667), - [anon_sym_e_GT] = ACTIONS(1667), - [anon_sym_o_GT] = ACTIONS(1667), - [anon_sym_err_PLUSout_GT] = ACTIONS(1667), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1667), - [anon_sym_o_PLUSe_GT] = ACTIONS(1667), - [anon_sym_e_PLUSo_GT] = ACTIONS(1667), - [anon_sym_err_GT_GT] = ACTIONS(1669), - [anon_sym_out_GT_GT] = ACTIONS(1669), - [anon_sym_e_GT_GT] = ACTIONS(1669), - [anon_sym_o_GT_GT] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1669), - [aux_sym_unquoted_token1] = ACTIONS(1667), - [aux_sym_unquoted_token2] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(247), - }, - [1243] = { - [sym_comment] = STATE(1243), - [anon_sym_true] = ACTIONS(1740), - [anon_sym_false] = ACTIONS(1740), - [anon_sym_null] = ACTIONS(1740), - [aux_sym_cmd_identifier_token38] = ACTIONS(1740), - [aux_sym_cmd_identifier_token39] = ACTIONS(1740), - [aux_sym_cmd_identifier_token40] = ACTIONS(1740), - [sym__newline] = ACTIONS(1740), - [anon_sym_SEMI] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1740), - [anon_sym_err_GT_PIPE] = ACTIONS(1740), - [anon_sym_out_GT_PIPE] = ACTIONS(1740), - [anon_sym_e_GT_PIPE] = ACTIONS(1740), - [anon_sym_o_GT_PIPE] = ACTIONS(1740), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1740), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1740), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1740), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1740), - [anon_sym_LBRACK] = ACTIONS(1740), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_RPAREN] = ACTIONS(1740), - [anon_sym_DOLLAR] = ACTIONS(1738), - [anon_sym_DASH_DASH] = ACTIONS(1740), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_LBRACE] = ACTIONS(1740), - [anon_sym_RBRACE] = ACTIONS(1740), - [anon_sym_DOT_DOT] = ACTIONS(1738), - [anon_sym_LPAREN2] = ACTIONS(1740), - [anon_sym_DOT_DOT2] = ACTIONS(1738), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1738), - [anon_sym_DOT_DOT_LT] = ACTIONS(1738), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1740), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1740), - [aux_sym__val_number_decimal_token1] = ACTIONS(1738), - [aux_sym__val_number_decimal_token2] = ACTIONS(1740), - [aux_sym__val_number_decimal_token3] = ACTIONS(1740), - [aux_sym__val_number_decimal_token4] = ACTIONS(1740), - [aux_sym__val_number_token1] = ACTIONS(1740), - [aux_sym__val_number_token2] = ACTIONS(1740), - [aux_sym__val_number_token3] = ACTIONS(1740), - [anon_sym_0b] = ACTIONS(1738), - [anon_sym_0o] = ACTIONS(1738), - [anon_sym_0x] = ACTIONS(1738), - [sym_val_date] = ACTIONS(1740), - [anon_sym_DQUOTE] = ACTIONS(1740), - [sym__str_single_quotes] = ACTIONS(1740), - [sym__str_back_ticks] = ACTIONS(1740), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1740), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1740), - [anon_sym_err_GT] = ACTIONS(1738), - [anon_sym_out_GT] = ACTIONS(1738), - [anon_sym_e_GT] = ACTIONS(1738), - [anon_sym_o_GT] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT] = ACTIONS(1738), - [anon_sym_err_GT_GT] = ACTIONS(1740), - [anon_sym_out_GT_GT] = ACTIONS(1740), - [anon_sym_e_GT_GT] = ACTIONS(1740), - [anon_sym_o_GT_GT] = ACTIONS(1740), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1740), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1740), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1740), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1740), - [aux_sym_unquoted_token1] = ACTIONS(1738), - [aux_sym_unquoted_token2] = ACTIONS(1738), - [anon_sym_POUND] = ACTIONS(247), - }, - [1244] = { - [sym_comment] = STATE(1244), - [ts_builtin_sym_end] = ACTIONS(1655), - [anon_sym_true] = ACTIONS(1655), - [anon_sym_false] = ACTIONS(1655), - [anon_sym_null] = ACTIONS(1655), - [aux_sym_cmd_identifier_token38] = ACTIONS(1655), - [aux_sym_cmd_identifier_token39] = ACTIONS(1655), - [aux_sym_cmd_identifier_token40] = ACTIONS(1655), - [sym__newline] = ACTIONS(1655), - [anon_sym_SEMI] = ACTIONS(1655), - [anon_sym_PIPE] = ACTIONS(1655), - [anon_sym_err_GT_PIPE] = ACTIONS(1655), - [anon_sym_out_GT_PIPE] = ACTIONS(1655), - [anon_sym_e_GT_PIPE] = ACTIONS(1655), - [anon_sym_o_GT_PIPE] = ACTIONS(1655), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1655), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1655), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1655), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1655), - [anon_sym_LBRACK] = ACTIONS(1655), - [anon_sym_LPAREN] = ACTIONS(1655), - [anon_sym_DOLLAR] = ACTIONS(1653), - [anon_sym_DASH_DASH] = ACTIONS(1655), - [anon_sym_DASH] = ACTIONS(1653), - [anon_sym_LBRACE] = ACTIONS(1655), - [anon_sym_DOT_DOT] = ACTIONS(1653), - [anon_sym_DOT_DOT2] = ACTIONS(1653), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1653), - [anon_sym_DOT_DOT_LT] = ACTIONS(1653), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1655), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1655), - [aux_sym__val_number_decimal_token1] = ACTIONS(1653), - [aux_sym__val_number_decimal_token2] = ACTIONS(1655), - [aux_sym__val_number_decimal_token3] = ACTIONS(1655), - [aux_sym__val_number_decimal_token4] = ACTIONS(1655), - [aux_sym__val_number_token1] = ACTIONS(1655), - [aux_sym__val_number_token2] = ACTIONS(1655), - [aux_sym__val_number_token3] = ACTIONS(1655), - [anon_sym_0b] = ACTIONS(1653), - [sym_filesize_unit] = ACTIONS(1655), - [sym_duration_unit] = ACTIONS(1655), - [anon_sym_0o] = ACTIONS(1653), - [anon_sym_0x] = ACTIONS(1653), - [sym_val_date] = ACTIONS(1655), - [anon_sym_DQUOTE] = ACTIONS(1655), - [sym__str_single_quotes] = ACTIONS(1655), - [sym__str_back_ticks] = ACTIONS(1655), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1655), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1655), - [anon_sym_err_GT] = ACTIONS(1653), - [anon_sym_out_GT] = ACTIONS(1653), - [anon_sym_e_GT] = ACTIONS(1653), - [anon_sym_o_GT] = ACTIONS(1653), - [anon_sym_err_PLUSout_GT] = ACTIONS(1653), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1653), - [anon_sym_o_PLUSe_GT] = ACTIONS(1653), - [anon_sym_e_PLUSo_GT] = ACTIONS(1653), - [anon_sym_err_GT_GT] = ACTIONS(1655), - [anon_sym_out_GT_GT] = ACTIONS(1655), - [anon_sym_e_GT_GT] = ACTIONS(1655), - [anon_sym_o_GT_GT] = ACTIONS(1655), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1655), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1655), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1655), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1655), - [aux_sym_unquoted_token1] = ACTIONS(1653), - [aux_sym_unquoted_token2] = ACTIONS(1653), - [anon_sym_POUND] = ACTIONS(247), - }, - [1245] = { - [sym_comment] = STATE(1245), - [anon_sym_true] = ACTIONS(1669), - [anon_sym_false] = ACTIONS(1669), - [anon_sym_null] = ACTIONS(1669), - [aux_sym_cmd_identifier_token38] = ACTIONS(1669), - [aux_sym_cmd_identifier_token39] = ACTIONS(1669), - [aux_sym_cmd_identifier_token40] = ACTIONS(1669), - [sym__newline] = ACTIONS(1669), - [anon_sym_SEMI] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1669), - [anon_sym_err_GT_PIPE] = ACTIONS(1669), - [anon_sym_out_GT_PIPE] = ACTIONS(1669), - [anon_sym_e_GT_PIPE] = ACTIONS(1669), - [anon_sym_o_GT_PIPE] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), - [anon_sym_LBRACK] = ACTIONS(1669), - [anon_sym_LPAREN] = ACTIONS(1669), - [anon_sym_RPAREN] = ACTIONS(1669), - [anon_sym_DOLLAR] = ACTIONS(1667), - [anon_sym_DASH_DASH] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_LBRACE] = ACTIONS(1669), - [anon_sym_RBRACE] = ACTIONS(1669), - [anon_sym_DOT_DOT] = ACTIONS(1667), - [anon_sym_DOT_DOT2] = ACTIONS(1667), - [anon_sym_DOT] = ACTIONS(4531), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1667), - [anon_sym_DOT_DOT_LT] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [aux_sym__immediate_decimal_token2] = ACTIONS(4533), - [aux_sym__val_number_decimal_token1] = ACTIONS(1667), - [aux_sym__val_number_decimal_token2] = ACTIONS(1669), - [aux_sym__val_number_decimal_token3] = ACTIONS(1669), - [aux_sym__val_number_decimal_token4] = ACTIONS(1669), - [aux_sym__val_number_token1] = ACTIONS(1669), - [aux_sym__val_number_token2] = ACTIONS(1669), - [aux_sym__val_number_token3] = ACTIONS(1669), - [anon_sym_0b] = ACTIONS(1667), - [anon_sym_0o] = ACTIONS(1667), - [anon_sym_0x] = ACTIONS(1667), - [sym_val_date] = ACTIONS(1669), - [anon_sym_DQUOTE] = ACTIONS(1669), - [sym__str_single_quotes] = ACTIONS(1669), - [sym__str_back_ticks] = ACTIONS(1669), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1669), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1669), - [anon_sym_err_GT] = ACTIONS(1667), - [anon_sym_out_GT] = ACTIONS(1667), - [anon_sym_e_GT] = ACTIONS(1667), - [anon_sym_o_GT] = ACTIONS(1667), - [anon_sym_err_PLUSout_GT] = ACTIONS(1667), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1667), - [anon_sym_o_PLUSe_GT] = ACTIONS(1667), - [anon_sym_e_PLUSo_GT] = ACTIONS(1667), - [anon_sym_err_GT_GT] = ACTIONS(1669), - [anon_sym_out_GT_GT] = ACTIONS(1669), - [anon_sym_e_GT_GT] = ACTIONS(1669), - [anon_sym_o_GT_GT] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1669), - [aux_sym_unquoted_token1] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(247), - }, - [1246] = { - [sym_comment] = STATE(1246), - [ts_builtin_sym_end] = ACTIONS(1048), - [anon_sym_EQ] = ACTIONS(1046), - [anon_sym_PLUS_EQ] = ACTIONS(1048), - [anon_sym_DASH_EQ] = ACTIONS(1048), - [anon_sym_STAR_EQ] = ACTIONS(1048), - [anon_sym_SLASH_EQ] = ACTIONS(1048), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1048), - [sym__newline] = ACTIONS(1048), - [anon_sym_SEMI] = ACTIONS(1048), - [anon_sym_PIPE] = ACTIONS(1048), - [anon_sym_err_GT_PIPE] = ACTIONS(1048), - [anon_sym_out_GT_PIPE] = ACTIONS(1048), - [anon_sym_e_GT_PIPE] = ACTIONS(1048), - [anon_sym_o_GT_PIPE] = ACTIONS(1048), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1048), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1048), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1048), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1048), - [aux_sym_expr_binary_token1] = ACTIONS(1048), - [aux_sym_expr_binary_token2] = ACTIONS(1048), - [aux_sym_expr_binary_token3] = ACTIONS(1048), - [aux_sym_expr_binary_token4] = ACTIONS(1048), - [aux_sym_expr_binary_token5] = ACTIONS(1048), - [aux_sym_expr_binary_token6] = ACTIONS(1048), - [aux_sym_expr_binary_token7] = ACTIONS(1048), - [aux_sym_expr_binary_token8] = ACTIONS(1048), - [aux_sym_expr_binary_token9] = ACTIONS(1048), - [aux_sym_expr_binary_token10] = ACTIONS(1048), - [aux_sym_expr_binary_token11] = ACTIONS(1048), - [aux_sym_expr_binary_token12] = ACTIONS(1048), - [aux_sym_expr_binary_token13] = ACTIONS(1048), - [aux_sym_expr_binary_token14] = ACTIONS(1048), - [aux_sym_expr_binary_token15] = ACTIONS(1048), - [aux_sym_expr_binary_token16] = ACTIONS(1048), - [aux_sym_expr_binary_token17] = ACTIONS(1048), - [aux_sym_expr_binary_token18] = ACTIONS(1048), - [aux_sym_expr_binary_token19] = ACTIONS(1048), - [aux_sym_expr_binary_token20] = ACTIONS(1048), - [aux_sym_expr_binary_token21] = ACTIONS(1048), - [aux_sym_expr_binary_token22] = ACTIONS(1048), - [aux_sym_expr_binary_token23] = ACTIONS(1048), - [aux_sym_expr_binary_token24] = ACTIONS(1048), - [aux_sym_expr_binary_token25] = ACTIONS(1048), - [aux_sym_expr_binary_token26] = ACTIONS(1048), - [aux_sym_expr_binary_token27] = ACTIONS(1048), - [aux_sym_expr_binary_token28] = ACTIONS(1048), - [anon_sym_DOT_DOT2] = ACTIONS(1046), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1048), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1048), - [anon_sym_err_GT] = ACTIONS(1046), - [anon_sym_out_GT] = ACTIONS(1046), - [anon_sym_e_GT] = ACTIONS(1046), - [anon_sym_o_GT] = ACTIONS(1046), - [anon_sym_err_PLUSout_GT] = ACTIONS(1046), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1046), - [anon_sym_o_PLUSe_GT] = ACTIONS(1046), - [anon_sym_e_PLUSo_GT] = ACTIONS(1046), - [anon_sym_err_GT_GT] = ACTIONS(1048), - [anon_sym_out_GT_GT] = ACTIONS(1048), - [anon_sym_e_GT_GT] = ACTIONS(1048), - [anon_sym_o_GT_GT] = ACTIONS(1048), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1048), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1048), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1048), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1048), - [anon_sym_POUND] = ACTIONS(247), - }, - [1247] = { - [sym_comment] = STATE(1247), - [anon_sym_true] = ACTIONS(1723), - [anon_sym_false] = ACTIONS(1723), - [anon_sym_null] = ACTIONS(1723), - [aux_sym_cmd_identifier_token38] = ACTIONS(1723), - [aux_sym_cmd_identifier_token39] = ACTIONS(1723), - [aux_sym_cmd_identifier_token40] = ACTIONS(1723), - [sym__newline] = ACTIONS(1723), - [anon_sym_SEMI] = ACTIONS(1723), - [anon_sym_PIPE] = ACTIONS(1723), - [anon_sym_err_GT_PIPE] = ACTIONS(1723), - [anon_sym_out_GT_PIPE] = ACTIONS(1723), - [anon_sym_e_GT_PIPE] = ACTIONS(1723), - [anon_sym_o_GT_PIPE] = ACTIONS(1723), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1723), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1723), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1723), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1723), - [anon_sym_LBRACK] = ACTIONS(1723), - [anon_sym_LPAREN] = ACTIONS(1721), - [anon_sym_RPAREN] = ACTIONS(1723), - [anon_sym_DOLLAR] = ACTIONS(1721), - [anon_sym_DASH_DASH] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1723), - [anon_sym_RBRACE] = ACTIONS(1723), - [anon_sym_DOT_DOT] = ACTIONS(1721), - [anon_sym_LPAREN2] = ACTIONS(1723), - [anon_sym_DOT_DOT2] = ACTIONS(1721), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1721), - [anon_sym_DOT_DOT_LT] = ACTIONS(1721), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1723), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1723), - [aux_sym__val_number_decimal_token1] = ACTIONS(1721), - [aux_sym__val_number_decimal_token2] = ACTIONS(1723), - [aux_sym__val_number_decimal_token3] = ACTIONS(1723), - [aux_sym__val_number_decimal_token4] = ACTIONS(1723), - [aux_sym__val_number_token1] = ACTIONS(1723), - [aux_sym__val_number_token2] = ACTIONS(1723), - [aux_sym__val_number_token3] = ACTIONS(1723), - [anon_sym_0b] = ACTIONS(1721), - [anon_sym_0o] = ACTIONS(1721), - [anon_sym_0x] = ACTIONS(1721), - [sym_val_date] = ACTIONS(1723), - [anon_sym_DQUOTE] = ACTIONS(1723), - [sym__str_single_quotes] = ACTIONS(1723), - [sym__str_back_ticks] = ACTIONS(1723), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1723), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1723), - [anon_sym_err_GT] = ACTIONS(1721), - [anon_sym_out_GT] = ACTIONS(1721), - [anon_sym_e_GT] = ACTIONS(1721), - [anon_sym_o_GT] = ACTIONS(1721), - [anon_sym_err_PLUSout_GT] = ACTIONS(1721), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1721), - [anon_sym_o_PLUSe_GT] = ACTIONS(1721), - [anon_sym_e_PLUSo_GT] = ACTIONS(1721), - [anon_sym_err_GT_GT] = ACTIONS(1723), - [anon_sym_out_GT_GT] = ACTIONS(1723), - [anon_sym_e_GT_GT] = ACTIONS(1723), - [anon_sym_o_GT_GT] = ACTIONS(1723), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1723), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1723), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1723), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1723), - [aux_sym_unquoted_token1] = ACTIONS(1721), - [aux_sym_unquoted_token2] = ACTIONS(1721), - [anon_sym_POUND] = ACTIONS(247), - }, - [1248] = { - [sym_comment] = STATE(1248), - [anon_sym_true] = ACTIONS(1661), - [anon_sym_false] = ACTIONS(1661), - [anon_sym_null] = ACTIONS(1661), - [aux_sym_cmd_identifier_token38] = ACTIONS(1661), - [aux_sym_cmd_identifier_token39] = ACTIONS(1661), - [aux_sym_cmd_identifier_token40] = ACTIONS(1661), - [sym__newline] = ACTIONS(1661), - [anon_sym_SEMI] = ACTIONS(1661), - [anon_sym_PIPE] = ACTIONS(1661), - [anon_sym_err_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_GT_PIPE] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_RPAREN] = ACTIONS(1661), - [anon_sym_DOLLAR] = ACTIONS(1659), - [anon_sym_DASH_DASH] = ACTIONS(1661), - [anon_sym_DASH] = ACTIONS(1659), - [anon_sym_LBRACE] = ACTIONS(1661), - [anon_sym_RBRACE] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1659), - [anon_sym_LPAREN2] = ACTIONS(1661), - [anon_sym_DOT_DOT2] = ACTIONS(1659), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1659), - [anon_sym_DOT_DOT_LT] = ACTIONS(1659), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1661), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1661), - [aux_sym__val_number_decimal_token1] = ACTIONS(1659), - [aux_sym__val_number_decimal_token2] = ACTIONS(1661), - [aux_sym__val_number_decimal_token3] = ACTIONS(1661), - [aux_sym__val_number_decimal_token4] = ACTIONS(1661), - [aux_sym__val_number_token1] = ACTIONS(1661), - [aux_sym__val_number_token2] = ACTIONS(1661), - [aux_sym__val_number_token3] = ACTIONS(1661), - [anon_sym_0b] = ACTIONS(1659), - [anon_sym_0o] = ACTIONS(1659), - [anon_sym_0x] = ACTIONS(1659), - [sym_val_date] = ACTIONS(1661), - [anon_sym_DQUOTE] = ACTIONS(1661), - [sym__str_single_quotes] = ACTIONS(1661), - [sym__str_back_ticks] = ACTIONS(1661), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1661), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1661), - [anon_sym_err_GT] = ACTIONS(1659), - [anon_sym_out_GT] = ACTIONS(1659), - [anon_sym_e_GT] = ACTIONS(1659), - [anon_sym_o_GT] = ACTIONS(1659), - [anon_sym_err_PLUSout_GT] = ACTIONS(1659), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1659), - [anon_sym_o_PLUSe_GT] = ACTIONS(1659), - [anon_sym_e_PLUSo_GT] = ACTIONS(1659), - [anon_sym_err_GT_GT] = ACTIONS(1661), - [anon_sym_out_GT_GT] = ACTIONS(1661), - [anon_sym_e_GT_GT] = ACTIONS(1661), - [anon_sym_o_GT_GT] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1661), - [aux_sym_unquoted_token1] = ACTIONS(1659), - [aux_sym_unquoted_token2] = ACTIONS(1659), - [anon_sym_POUND] = ACTIONS(247), - }, - [1249] = { - [sym_comment] = STATE(1249), - [anon_sym_true] = ACTIONS(1044), - [anon_sym_false] = ACTIONS(1044), - [anon_sym_null] = ACTIONS(1044), - [aux_sym_cmd_identifier_token38] = ACTIONS(1044), - [aux_sym_cmd_identifier_token39] = ACTIONS(1044), - [aux_sym_cmd_identifier_token40] = ACTIONS(1044), - [sym__newline] = ACTIONS(1044), - [anon_sym_SEMI] = ACTIONS(1044), - [anon_sym_PIPE] = ACTIONS(1044), - [anon_sym_err_GT_PIPE] = ACTIONS(1044), - [anon_sym_out_GT_PIPE] = ACTIONS(1044), - [anon_sym_e_GT_PIPE] = ACTIONS(1044), - [anon_sym_o_GT_PIPE] = ACTIONS(1044), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1044), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1044), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1044), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1044), - [anon_sym_LBRACK] = ACTIONS(1044), - [anon_sym_LPAREN] = ACTIONS(1044), - [anon_sym_RPAREN] = ACTIONS(1044), - [anon_sym_DOLLAR] = ACTIONS(1042), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_DASH] = ACTIONS(1042), - [anon_sym_LBRACE] = ACTIONS(1044), - [anon_sym_RBRACE] = ACTIONS(1044), - [anon_sym_DOT_DOT] = ACTIONS(1042), - [anon_sym_QMARK2] = ACTIONS(1044), - [anon_sym_DOT_DOT2] = ACTIONS(1042), - [anon_sym_DOT] = ACTIONS(1042), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1042), - [anon_sym_DOT_DOT_LT] = ACTIONS(1042), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1044), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1044), - [aux_sym__val_number_decimal_token1] = ACTIONS(1042), - [aux_sym__val_number_decimal_token2] = ACTIONS(1044), - [aux_sym__val_number_decimal_token3] = ACTIONS(1044), - [aux_sym__val_number_decimal_token4] = ACTIONS(1044), - [aux_sym__val_number_token1] = ACTIONS(1044), - [aux_sym__val_number_token2] = ACTIONS(1044), - [aux_sym__val_number_token3] = ACTIONS(1044), - [anon_sym_0b] = ACTIONS(1042), - [anon_sym_0o] = ACTIONS(1042), - [anon_sym_0x] = ACTIONS(1042), - [sym_val_date] = ACTIONS(1044), - [anon_sym_DQUOTE] = ACTIONS(1044), - [sym__str_single_quotes] = ACTIONS(1044), - [sym__str_back_ticks] = ACTIONS(1044), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1044), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1044), - [anon_sym_err_GT] = ACTIONS(1042), - [anon_sym_out_GT] = ACTIONS(1042), - [anon_sym_e_GT] = ACTIONS(1042), - [anon_sym_o_GT] = ACTIONS(1042), - [anon_sym_err_PLUSout_GT] = ACTIONS(1042), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1042), - [anon_sym_o_PLUSe_GT] = ACTIONS(1042), - [anon_sym_e_PLUSo_GT] = ACTIONS(1042), - [anon_sym_err_GT_GT] = ACTIONS(1044), - [anon_sym_out_GT_GT] = ACTIONS(1044), - [anon_sym_e_GT_GT] = ACTIONS(1044), - [anon_sym_o_GT_GT] = ACTIONS(1044), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1044), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1044), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1044), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1044), - [aux_sym_unquoted_token1] = ACTIONS(1042), - [anon_sym_POUND] = ACTIONS(247), - }, - [1250] = { - [sym_comment] = STATE(1250), - [ts_builtin_sym_end] = ACTIONS(1572), - [anon_sym_true] = ACTIONS(1572), - [anon_sym_false] = ACTIONS(1572), - [anon_sym_null] = ACTIONS(1572), - [aux_sym_cmd_identifier_token38] = ACTIONS(1572), - [aux_sym_cmd_identifier_token39] = ACTIONS(1572), - [aux_sym_cmd_identifier_token40] = ACTIONS(1572), - [sym__newline] = ACTIONS(1572), - [anon_sym_SEMI] = ACTIONS(1572), - [anon_sym_PIPE] = ACTIONS(1572), - [anon_sym_err_GT_PIPE] = ACTIONS(1572), - [anon_sym_out_GT_PIPE] = ACTIONS(1572), - [anon_sym_e_GT_PIPE] = ACTIONS(1572), - [anon_sym_o_GT_PIPE] = ACTIONS(1572), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1572), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1572), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1572), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1572), - [anon_sym_LBRACK] = ACTIONS(1572), - [anon_sym_LPAREN] = ACTIONS(1572), - [anon_sym_DOLLAR] = ACTIONS(1560), - [anon_sym_DASH_DASH] = ACTIONS(1572), - [anon_sym_DASH] = ACTIONS(1560), - [anon_sym_LBRACE] = ACTIONS(1572), - [anon_sym_DOT_DOT] = ACTIONS(1560), - [anon_sym_DOT_DOT2] = ACTIONS(4512), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1560), - [anon_sym_DOT_DOT_LT] = ACTIONS(1560), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4514), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4514), - [aux_sym__val_number_decimal_token1] = ACTIONS(1560), - [aux_sym__val_number_decimal_token2] = ACTIONS(1572), - [aux_sym__val_number_decimal_token3] = ACTIONS(1572), - [aux_sym__val_number_decimal_token4] = ACTIONS(1572), - [aux_sym__val_number_token1] = ACTIONS(1572), - [aux_sym__val_number_token2] = ACTIONS(1572), - [aux_sym__val_number_token3] = ACTIONS(1572), - [anon_sym_0b] = ACTIONS(1560), - [sym_filesize_unit] = ACTIONS(4535), - [sym_duration_unit] = ACTIONS(4537), - [anon_sym_0o] = ACTIONS(1560), - [anon_sym_0x] = ACTIONS(1560), - [sym_val_date] = ACTIONS(1572), - [anon_sym_DQUOTE] = ACTIONS(1572), - [sym__str_single_quotes] = ACTIONS(1572), - [sym__str_back_ticks] = ACTIONS(1572), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1572), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1572), - [anon_sym_err_GT] = ACTIONS(1560), - [anon_sym_out_GT] = ACTIONS(1560), - [anon_sym_e_GT] = ACTIONS(1560), - [anon_sym_o_GT] = ACTIONS(1560), - [anon_sym_err_PLUSout_GT] = ACTIONS(1560), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1560), - [anon_sym_o_PLUSe_GT] = ACTIONS(1560), - [anon_sym_e_PLUSo_GT] = ACTIONS(1560), - [anon_sym_err_GT_GT] = ACTIONS(1572), - [anon_sym_out_GT_GT] = ACTIONS(1572), - [anon_sym_e_GT_GT] = ACTIONS(1572), - [anon_sym_o_GT_GT] = ACTIONS(1572), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1572), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1572), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1572), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1572), - [aux_sym_unquoted_token1] = ACTIONS(1560), - [aux_sym_unquoted_token2] = ACTIONS(4539), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), }, - [1251] = { - [sym_comment] = STATE(1251), - [anon_sym_true] = ACTIONS(1669), - [anon_sym_false] = ACTIONS(1669), - [anon_sym_null] = ACTIONS(1669), - [aux_sym_cmd_identifier_token38] = ACTIONS(1669), - [aux_sym_cmd_identifier_token39] = ACTIONS(1669), - [aux_sym_cmd_identifier_token40] = ACTIONS(1669), - [sym__newline] = ACTIONS(1669), - [anon_sym_SEMI] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1669), - [anon_sym_err_GT_PIPE] = ACTIONS(1669), - [anon_sym_out_GT_PIPE] = ACTIONS(1669), - [anon_sym_e_GT_PIPE] = ACTIONS(1669), - [anon_sym_o_GT_PIPE] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), - [anon_sym_LBRACK] = ACTIONS(1669), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_RPAREN] = ACTIONS(1669), - [anon_sym_DOLLAR] = ACTIONS(1667), - [anon_sym_DASH_DASH] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_LBRACE] = ACTIONS(1669), - [anon_sym_RBRACE] = ACTIONS(1669), - [anon_sym_DOT_DOT] = ACTIONS(1667), - [anon_sym_LPAREN2] = ACTIONS(1669), - [anon_sym_DOT_DOT2] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1667), - [anon_sym_DOT_DOT_LT] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [aux_sym__val_number_decimal_token1] = ACTIONS(1667), - [aux_sym__val_number_decimal_token2] = ACTIONS(1669), - [aux_sym__val_number_decimal_token3] = ACTIONS(1669), - [aux_sym__val_number_decimal_token4] = ACTIONS(1669), - [aux_sym__val_number_token1] = ACTIONS(1669), - [aux_sym__val_number_token2] = ACTIONS(1669), - [aux_sym__val_number_token3] = ACTIONS(1669), - [anon_sym_0b] = ACTIONS(1667), - [anon_sym_0o] = ACTIONS(1667), - [anon_sym_0x] = ACTIONS(1667), - [sym_val_date] = ACTIONS(1669), - [anon_sym_DQUOTE] = ACTIONS(1669), - [sym__str_single_quotes] = ACTIONS(1669), - [sym__str_back_ticks] = ACTIONS(1669), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1669), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1669), - [anon_sym_err_GT] = ACTIONS(1667), - [anon_sym_out_GT] = ACTIONS(1667), - [anon_sym_e_GT] = ACTIONS(1667), - [anon_sym_o_GT] = ACTIONS(1667), - [anon_sym_err_PLUSout_GT] = ACTIONS(1667), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1667), - [anon_sym_o_PLUSe_GT] = ACTIONS(1667), - [anon_sym_e_PLUSo_GT] = ACTIONS(1667), - [anon_sym_err_GT_GT] = ACTIONS(1669), - [anon_sym_out_GT_GT] = ACTIONS(1669), - [anon_sym_e_GT_GT] = ACTIONS(1669), - [anon_sym_o_GT_GT] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1669), - [aux_sym_unquoted_token1] = ACTIONS(1667), - [aux_sym_unquoted_token2] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(247), + [1231] = { + [sym_comment] = STATE(1231), + [ts_builtin_sym_end] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1717), + [anon_sym_false] = ACTIONS(1717), + [anon_sym_null] = ACTIONS(1717), + [aux_sym_cmd_identifier_token38] = ACTIONS(1717), + [aux_sym_cmd_identifier_token39] = ACTIONS(1717), + [aux_sym_cmd_identifier_token40] = ACTIONS(1717), + [sym__newline] = ACTIONS(1717), + [anon_sym_SEMI] = ACTIONS(1717), + [anon_sym_PIPE] = ACTIONS(1717), + [anon_sym_err_GT_PIPE] = ACTIONS(1717), + [anon_sym_out_GT_PIPE] = ACTIONS(1717), + [anon_sym_e_GT_PIPE] = ACTIONS(1717), + [anon_sym_o_GT_PIPE] = ACTIONS(1717), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1717), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1717), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1717), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1717), + [anon_sym_LBRACK] = ACTIONS(1717), + [anon_sym_LPAREN] = ACTIONS(1715), + [anon_sym_DOLLAR] = ACTIONS(1715), + [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_LBRACE] = ACTIONS(1717), + [anon_sym_DOT_DOT] = ACTIONS(1715), + [anon_sym_LPAREN2] = ACTIONS(1717), + [anon_sym_DOT_DOT2] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(4606), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1715), + [anon_sym_DOT_DOT_LT] = ACTIONS(1715), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1717), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1717), + [aux_sym__immediate_decimal_token2] = ACTIONS(4608), + [aux_sym__val_number_decimal_token1] = ACTIONS(1715), + [aux_sym__val_number_decimal_token2] = ACTIONS(1717), + [aux_sym__val_number_decimal_token3] = ACTIONS(1717), + [aux_sym__val_number_decimal_token4] = ACTIONS(1717), + [aux_sym__val_number_token1] = ACTIONS(1717), + [aux_sym__val_number_token2] = ACTIONS(1717), + [aux_sym__val_number_token3] = ACTIONS(1717), + [anon_sym_0b] = ACTIONS(1715), + [anon_sym_0o] = ACTIONS(1715), + [anon_sym_0x] = ACTIONS(1715), + [sym_val_date] = ACTIONS(1717), + [anon_sym_DQUOTE] = ACTIONS(1717), + [sym__str_single_quotes] = ACTIONS(1717), + [sym__str_back_ticks] = ACTIONS(1717), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1717), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1717), + [anon_sym_err_GT] = ACTIONS(1715), + [anon_sym_out_GT] = ACTIONS(1715), + [anon_sym_e_GT] = ACTIONS(1715), + [anon_sym_o_GT] = ACTIONS(1715), + [anon_sym_err_PLUSout_GT] = ACTIONS(1715), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1715), + [anon_sym_o_PLUSe_GT] = ACTIONS(1715), + [anon_sym_e_PLUSo_GT] = ACTIONS(1715), + [anon_sym_err_GT_GT] = ACTIONS(1717), + [anon_sym_out_GT_GT] = ACTIONS(1717), + [anon_sym_e_GT_GT] = ACTIONS(1717), + [anon_sym_o_GT_GT] = ACTIONS(1717), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1717), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1717), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1717), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1717), + [aux_sym_unquoted_token1] = ACTIONS(1715), + [aux_sym_unquoted_token2] = ACTIONS(1715), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1717), }, - [1252] = { - [sym__match_pattern] = STATE(7235), - [sym__match_pattern_expression] = STATE(6770), - [sym__match_pattern_value] = STATE(6771), - [sym__match_pattern_list] = STATE(6772), - [sym__match_pattern_record] = STATE(6774), - [sym_expr_parenthesized] = STATE(5667), - [sym_val_range] = STATE(6771), - [sym__val_range] = STATE(7681), - [sym_val_nothing] = STATE(6776), - [sym_val_bool] = STATE(7007), - [sym_val_variable] = STATE(5668), - [sym_val_number] = STATE(6776), - [sym__val_number_decimal] = STATE(5438), - [sym__val_number] = STATE(2014), - [sym_val_duration] = STATE(6776), - [sym_val_filesize] = STATE(6776), - [sym_val_binary] = STATE(6776), - [sym_val_string] = STATE(6776), - [sym__str_double_quotes] = STATE(1725), - [sym_val_table] = STATE(6776), - [sym_unquoted] = STATE(6780), - [sym__unquoted_anonymous_prefix] = STATE(7695), - [sym_comment] = STATE(1252), - [anon_sym_true] = ACTIONS(3363), - [anon_sym_false] = ACTIONS(3363), - [anon_sym_null] = ACTIONS(3365), - [aux_sym_cmd_identifier_token38] = ACTIONS(4541), - [aux_sym_cmd_identifier_token39] = ACTIONS(4541), - [aux_sym_cmd_identifier_token40] = ACTIONS(4541), - [anon_sym_LBRACK] = ACTIONS(3541), - [anon_sym_LPAREN] = ACTIONS(3543), - [anon_sym_DOLLAR] = ACTIONS(3545), - [anon_sym_LBRACE] = ACTIONS(3547), - [anon_sym_DOT_DOT] = ACTIONS(4543), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4545), - [anon_sym_DOT_DOT_LT] = ACTIONS(4545), - [aux_sym__val_number_decimal_token1] = ACTIONS(3369), - [aux_sym__val_number_decimal_token2] = ACTIONS(3371), - [aux_sym__val_number_decimal_token3] = ACTIONS(3373), - [aux_sym__val_number_decimal_token4] = ACTIONS(3375), - [aux_sym__val_number_token1] = ACTIONS(503), - [aux_sym__val_number_token2] = ACTIONS(503), - [aux_sym__val_number_token3] = ACTIONS(503), - [anon_sym_0b] = ACTIONS(505), - [anon_sym_0o] = ACTIONS(507), - [anon_sym_0x] = ACTIONS(507), - [sym_val_date] = ACTIONS(4547), - [anon_sym_DQUOTE] = ACTIONS(511), - [sym__str_single_quotes] = ACTIONS(513), - [sym__str_back_ticks] = ACTIONS(513), - [anon_sym_err_GT] = ACTIONS(2643), - [anon_sym_out_GT] = ACTIONS(2643), - [anon_sym_e_GT] = ACTIONS(2643), - [anon_sym_o_GT] = ACTIONS(2643), - [anon_sym_err_PLUSout_GT] = ACTIONS(2643), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2643), - [anon_sym_o_PLUSe_GT] = ACTIONS(2643), - [anon_sym_e_PLUSo_GT] = ACTIONS(2643), - [anon_sym_err_GT_GT] = ACTIONS(2645), - [anon_sym_out_GT_GT] = ACTIONS(2645), - [anon_sym_e_GT_GT] = ACTIONS(2645), - [anon_sym_o_GT_GT] = ACTIONS(2645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2645), - [aux_sym_unquoted_token1] = ACTIONS(3864), - [anon_sym_POUND] = ACTIONS(247), + [1232] = { + [sym_cell_path] = STATE(1401), + [sym_path] = STATE(1369), + [sym_comment] = STATE(1232), + [aux_sym_cell_path_repeat1] = STATE(1274), + [ts_builtin_sym_end] = ACTIONS(1668), + [anon_sym_true] = ACTIONS(1668), + [anon_sym_false] = ACTIONS(1668), + [anon_sym_null] = ACTIONS(1668), + [aux_sym_cmd_identifier_token38] = ACTIONS(1668), + [aux_sym_cmd_identifier_token39] = ACTIONS(1668), + [aux_sym_cmd_identifier_token40] = ACTIONS(1668), + [sym__newline] = ACTIONS(1668), + [anon_sym_SEMI] = ACTIONS(1668), + [anon_sym_PIPE] = ACTIONS(1668), + [anon_sym_err_GT_PIPE] = ACTIONS(1668), + [anon_sym_out_GT_PIPE] = ACTIONS(1668), + [anon_sym_e_GT_PIPE] = ACTIONS(1668), + [anon_sym_o_GT_PIPE] = ACTIONS(1668), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1668), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1668), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1668), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1668), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_LPAREN] = ACTIONS(1668), + [anon_sym_DOLLAR] = ACTIONS(1664), + [anon_sym_DASH_DASH] = ACTIONS(1668), + [anon_sym_DASH] = ACTIONS(1664), + [anon_sym_LBRACE] = ACTIONS(1668), + [anon_sym_DOT_DOT] = ACTIONS(1664), + [anon_sym_DOT_DOT2] = ACTIONS(1664), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1664), + [anon_sym_DOT_DOT_LT] = ACTIONS(1664), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1668), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1668), + [aux_sym__val_number_decimal_token1] = ACTIONS(1664), + [aux_sym__val_number_decimal_token2] = ACTIONS(1668), + [aux_sym__val_number_decimal_token3] = ACTIONS(1668), + [aux_sym__val_number_decimal_token4] = ACTIONS(1668), + [aux_sym__val_number_token1] = ACTIONS(1668), + [aux_sym__val_number_token2] = ACTIONS(1668), + [aux_sym__val_number_token3] = ACTIONS(1668), + [anon_sym_0b] = ACTIONS(1664), + [anon_sym_0o] = ACTIONS(1664), + [anon_sym_0x] = ACTIONS(1664), + [sym_val_date] = ACTIONS(1668), + [anon_sym_DQUOTE] = ACTIONS(1668), + [sym__str_single_quotes] = ACTIONS(1668), + [sym__str_back_ticks] = ACTIONS(1668), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1668), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1668), + [anon_sym_err_GT] = ACTIONS(1664), + [anon_sym_out_GT] = ACTIONS(1664), + [anon_sym_e_GT] = ACTIONS(1664), + [anon_sym_o_GT] = ACTIONS(1664), + [anon_sym_err_PLUSout_GT] = ACTIONS(1664), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1664), + [anon_sym_o_PLUSe_GT] = ACTIONS(1664), + [anon_sym_e_PLUSo_GT] = ACTIONS(1664), + [anon_sym_err_GT_GT] = ACTIONS(1668), + [anon_sym_out_GT_GT] = ACTIONS(1668), + [anon_sym_e_GT_GT] = ACTIONS(1668), + [anon_sym_o_GT_GT] = ACTIONS(1668), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1668), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1668), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1668), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1668), + [aux_sym_unquoted_token1] = ACTIONS(1664), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1668), }, - [1253] = { - [sym_comment] = STATE(1253), - [aux_sym_cmd_identifier_token41] = ACTIONS(1518), - [sym__newline] = ACTIONS(1518), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_err_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_GT_PIPE] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1520), - [anon_sym_RBRACE] = ACTIONS(1520), - [anon_sym_EQ_GT] = ACTIONS(1520), - [aux_sym_expr_binary_token1] = ACTIONS(1520), - [aux_sym_expr_binary_token2] = ACTIONS(1520), - [aux_sym_expr_binary_token3] = ACTIONS(1520), - [aux_sym_expr_binary_token4] = ACTIONS(1520), - [aux_sym_expr_binary_token5] = ACTIONS(1520), - [aux_sym_expr_binary_token6] = ACTIONS(1520), - [aux_sym_expr_binary_token7] = ACTIONS(1520), - [aux_sym_expr_binary_token8] = ACTIONS(1520), - [aux_sym_expr_binary_token9] = ACTIONS(1520), - [aux_sym_expr_binary_token10] = ACTIONS(1520), - [aux_sym_expr_binary_token11] = ACTIONS(1520), - [aux_sym_expr_binary_token12] = ACTIONS(1520), - [aux_sym_expr_binary_token13] = ACTIONS(1520), - [aux_sym_expr_binary_token14] = ACTIONS(1520), - [aux_sym_expr_binary_token15] = ACTIONS(1520), - [aux_sym_expr_binary_token16] = ACTIONS(1520), - [aux_sym_expr_binary_token17] = ACTIONS(1520), - [aux_sym_expr_binary_token18] = ACTIONS(1520), - [aux_sym_expr_binary_token19] = ACTIONS(1520), - [aux_sym_expr_binary_token20] = ACTIONS(1520), - [aux_sym_expr_binary_token21] = ACTIONS(1520), - [aux_sym_expr_binary_token22] = ACTIONS(1520), - [aux_sym_expr_binary_token23] = ACTIONS(1520), - [aux_sym_expr_binary_token24] = ACTIONS(1520), - [aux_sym_expr_binary_token25] = ACTIONS(1520), - [aux_sym_expr_binary_token26] = ACTIONS(1520), - [aux_sym_expr_binary_token27] = ACTIONS(1520), - [aux_sym_expr_binary_token28] = ACTIONS(1520), - [anon_sym_DOT_DOT2] = ACTIONS(1518), - [anon_sym_DOT] = ACTIONS(4549), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), - [aux_sym__immediate_decimal_token2] = ACTIONS(4551), - [sym_filesize_unit] = ACTIONS(1520), - [sym_duration_unit] = ACTIONS(1520), - [aux_sym_record_entry_token1] = ACTIONS(1520), - [anon_sym_err_GT] = ACTIONS(1518), - [anon_sym_out_GT] = ACTIONS(1518), - [anon_sym_e_GT] = ACTIONS(1518), - [anon_sym_o_GT] = ACTIONS(1518), - [anon_sym_err_PLUSout_GT] = ACTIONS(1518), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), - [anon_sym_o_PLUSe_GT] = ACTIONS(1518), - [anon_sym_e_PLUSo_GT] = ACTIONS(1518), - [anon_sym_err_GT_GT] = ACTIONS(1520), - [anon_sym_out_GT_GT] = ACTIONS(1520), - [anon_sym_e_GT_GT] = ACTIONS(1520), - [anon_sym_o_GT_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1520), - [anon_sym_POUND] = ACTIONS(247), + [1233] = { + [sym_comment] = STATE(1233), + [anon_sym_EQ] = ACTIONS(1074), + [anon_sym_PLUS_EQ] = ACTIONS(1076), + [anon_sym_DASH_EQ] = ACTIONS(1076), + [anon_sym_STAR_EQ] = ACTIONS(1076), + [anon_sym_SLASH_EQ] = ACTIONS(1076), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1076), + [sym__newline] = ACTIONS(1074), + [anon_sym_SEMI] = ACTIONS(1076), + [anon_sym_PIPE] = ACTIONS(1076), + [anon_sym_err_GT_PIPE] = ACTIONS(1076), + [anon_sym_out_GT_PIPE] = ACTIONS(1076), + [anon_sym_e_GT_PIPE] = ACTIONS(1076), + [anon_sym_o_GT_PIPE] = ACTIONS(1076), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1076), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1076), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1076), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1076), + [anon_sym_RBRACE] = ACTIONS(1076), + [aux_sym_expr_binary_token1] = ACTIONS(1076), + [aux_sym_expr_binary_token2] = ACTIONS(1076), + [aux_sym_expr_binary_token3] = ACTIONS(1076), + [aux_sym_expr_binary_token4] = ACTIONS(1076), + [aux_sym_expr_binary_token5] = ACTIONS(1076), + [aux_sym_expr_binary_token6] = ACTIONS(1076), + [aux_sym_expr_binary_token7] = ACTIONS(1076), + [aux_sym_expr_binary_token8] = ACTIONS(1076), + [aux_sym_expr_binary_token9] = ACTIONS(1076), + [aux_sym_expr_binary_token10] = ACTIONS(1076), + [aux_sym_expr_binary_token11] = ACTIONS(1076), + [aux_sym_expr_binary_token12] = ACTIONS(1076), + [aux_sym_expr_binary_token13] = ACTIONS(1076), + [aux_sym_expr_binary_token14] = ACTIONS(1076), + [aux_sym_expr_binary_token15] = ACTIONS(1076), + [aux_sym_expr_binary_token16] = ACTIONS(1076), + [aux_sym_expr_binary_token17] = ACTIONS(1076), + [aux_sym_expr_binary_token18] = ACTIONS(1076), + [aux_sym_expr_binary_token19] = ACTIONS(1076), + [aux_sym_expr_binary_token20] = ACTIONS(1076), + [aux_sym_expr_binary_token21] = ACTIONS(1076), + [aux_sym_expr_binary_token22] = ACTIONS(1076), + [aux_sym_expr_binary_token23] = ACTIONS(1076), + [aux_sym_expr_binary_token24] = ACTIONS(1076), + [aux_sym_expr_binary_token25] = ACTIONS(1076), + [aux_sym_expr_binary_token26] = ACTIONS(1076), + [aux_sym_expr_binary_token27] = ACTIONS(1076), + [aux_sym_expr_binary_token28] = ACTIONS(1076), + [anon_sym_DOT_DOT2] = ACTIONS(1074), + [anon_sym_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1076), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1076), + [aux_sym_record_entry_token1] = ACTIONS(1076), + [anon_sym_err_GT] = ACTIONS(1074), + [anon_sym_out_GT] = ACTIONS(1074), + [anon_sym_e_GT] = ACTIONS(1074), + [anon_sym_o_GT] = ACTIONS(1074), + [anon_sym_err_PLUSout_GT] = ACTIONS(1074), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1074), + [anon_sym_o_PLUSe_GT] = ACTIONS(1074), + [anon_sym_e_PLUSo_GT] = ACTIONS(1074), + [anon_sym_err_GT_GT] = ACTIONS(1076), + [anon_sym_out_GT_GT] = ACTIONS(1076), + [anon_sym_e_GT_GT] = ACTIONS(1076), + [anon_sym_o_GT_GT] = ACTIONS(1076), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1076), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1076), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1076), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1076), + [anon_sym_POUND] = ACTIONS(249), }, - [1254] = { - [sym_comment] = STATE(1254), - [anon_sym_EQ] = ACTIONS(1058), - [anon_sym_PLUS_EQ] = ACTIONS(1060), - [anon_sym_DASH_EQ] = ACTIONS(1060), - [anon_sym_STAR_EQ] = ACTIONS(1060), - [anon_sym_SLASH_EQ] = ACTIONS(1060), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1060), - [sym__newline] = ACTIONS(1058), - [anon_sym_SEMI] = ACTIONS(1060), - [anon_sym_PIPE] = ACTIONS(1060), - [anon_sym_err_GT_PIPE] = ACTIONS(1060), - [anon_sym_out_GT_PIPE] = ACTIONS(1060), - [anon_sym_e_GT_PIPE] = ACTIONS(1060), - [anon_sym_o_GT_PIPE] = ACTIONS(1060), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1060), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1060), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1060), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1060), - [anon_sym_RPAREN] = ACTIONS(1060), - [anon_sym_LBRACE] = ACTIONS(1060), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1060), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1060), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1060), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1060), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1060), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1060), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1060), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1060), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1060), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1060), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1060), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1060), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1060), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1060), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1060), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1060), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1060), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1060), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1060), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1060), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1060), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1060), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1060), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1060), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1060), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1060), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1060), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1060), - [anon_sym_DOT_DOT2] = ACTIONS(1058), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1060), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1060), - [anon_sym_err_GT] = ACTIONS(1058), - [anon_sym_out_GT] = ACTIONS(1058), - [anon_sym_e_GT] = ACTIONS(1058), - [anon_sym_o_GT] = ACTIONS(1058), - [anon_sym_err_PLUSout_GT] = ACTIONS(1058), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1058), - [anon_sym_o_PLUSe_GT] = ACTIONS(1058), - [anon_sym_e_PLUSo_GT] = ACTIONS(1058), - [anon_sym_err_GT_GT] = ACTIONS(1060), - [anon_sym_out_GT_GT] = ACTIONS(1060), - [anon_sym_e_GT_GT] = ACTIONS(1060), - [anon_sym_o_GT_GT] = ACTIONS(1060), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1060), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1060), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1060), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1060), - [anon_sym_POUND] = ACTIONS(247), + [1234] = { + [sym_comment] = STATE(1234), + [ts_builtin_sym_end] = ACTIONS(1538), + [anon_sym_true] = ACTIONS(1538), + [anon_sym_false] = ACTIONS(1538), + [anon_sym_null] = ACTIONS(1538), + [aux_sym_cmd_identifier_token38] = ACTIONS(1538), + [aux_sym_cmd_identifier_token39] = ACTIONS(1538), + [aux_sym_cmd_identifier_token40] = ACTIONS(1538), + [sym__newline] = ACTIONS(1538), + [anon_sym_SEMI] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_err_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_GT_PIPE] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), + [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_LPAREN] = ACTIONS(1538), + [anon_sym_DOLLAR] = ACTIONS(1536), + [anon_sym_DASH_DASH] = ACTIONS(1538), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1538), + [anon_sym_DOT_DOT] = ACTIONS(1536), + [anon_sym_DOT_DOT2] = ACTIONS(1536), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1536), + [anon_sym_DOT_DOT_LT] = ACTIONS(1536), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), + [aux_sym__immediate_decimal_token2] = ACTIONS(4469), + [aux_sym__val_number_decimal_token1] = ACTIONS(1536), + [aux_sym__val_number_decimal_token2] = ACTIONS(1538), + [aux_sym__val_number_decimal_token3] = ACTIONS(1538), + [aux_sym__val_number_decimal_token4] = ACTIONS(1538), + [aux_sym__val_number_token1] = ACTIONS(1538), + [aux_sym__val_number_token2] = ACTIONS(1538), + [aux_sym__val_number_token3] = ACTIONS(1538), + [anon_sym_0b] = ACTIONS(1536), + [sym_filesize_unit] = ACTIONS(1538), + [sym_duration_unit] = ACTIONS(1538), + [anon_sym_0o] = ACTIONS(1536), + [anon_sym_0x] = ACTIONS(1536), + [sym_val_date] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1538), + [sym__str_single_quotes] = ACTIONS(1538), + [sym__str_back_ticks] = ACTIONS(1538), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1538), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1538), + [anon_sym_err_GT] = ACTIONS(1536), + [anon_sym_out_GT] = ACTIONS(1536), + [anon_sym_e_GT] = ACTIONS(1536), + [anon_sym_o_GT] = ACTIONS(1536), + [anon_sym_err_PLUSout_GT] = ACTIONS(1536), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), + [anon_sym_o_PLUSe_GT] = ACTIONS(1536), + [anon_sym_e_PLUSo_GT] = ACTIONS(1536), + [anon_sym_err_GT_GT] = ACTIONS(1538), + [anon_sym_out_GT_GT] = ACTIONS(1538), + [anon_sym_e_GT_GT] = ACTIONS(1538), + [anon_sym_o_GT_GT] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), + [aux_sym_unquoted_token1] = ACTIONS(1536), + [aux_sym_unquoted_token2] = ACTIONS(1536), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1538), }, - [1255] = { - [sym_comment] = STATE(1255), - [anon_sym_true] = ACTIONS(1024), - [anon_sym_false] = ACTIONS(1024), - [anon_sym_null] = ACTIONS(1024), - [aux_sym_cmd_identifier_token38] = ACTIONS(1024), - [aux_sym_cmd_identifier_token39] = ACTIONS(1024), - [aux_sym_cmd_identifier_token40] = ACTIONS(1024), - [sym__newline] = ACTIONS(1024), - [anon_sym_SEMI] = ACTIONS(1024), - [anon_sym_PIPE] = ACTIONS(1024), - [anon_sym_err_GT_PIPE] = ACTIONS(1024), - [anon_sym_out_GT_PIPE] = ACTIONS(1024), - [anon_sym_e_GT_PIPE] = ACTIONS(1024), - [anon_sym_o_GT_PIPE] = ACTIONS(1024), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1024), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1024), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1024), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1024), - [anon_sym_LBRACK] = ACTIONS(1024), - [anon_sym_LPAREN] = ACTIONS(1024), - [anon_sym_RPAREN] = ACTIONS(1024), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH_DASH] = ACTIONS(1024), - [anon_sym_DASH] = ACTIONS(1022), - [anon_sym_LBRACE] = ACTIONS(1024), - [anon_sym_RBRACE] = ACTIONS(1024), - [anon_sym_DOT_DOT] = ACTIONS(1022), - [anon_sym_QMARK2] = ACTIONS(4553), - [anon_sym_DOT_DOT2] = ACTIONS(1022), - [anon_sym_DOT] = ACTIONS(1022), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1022), - [anon_sym_DOT_DOT_LT] = ACTIONS(1022), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1024), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1024), - [aux_sym__val_number_decimal_token1] = ACTIONS(1022), - [aux_sym__val_number_decimal_token2] = ACTIONS(1024), - [aux_sym__val_number_decimal_token3] = ACTIONS(1024), - [aux_sym__val_number_decimal_token4] = ACTIONS(1024), - [aux_sym__val_number_token1] = ACTIONS(1024), - [aux_sym__val_number_token2] = ACTIONS(1024), - [aux_sym__val_number_token3] = ACTIONS(1024), - [anon_sym_0b] = ACTIONS(1022), - [anon_sym_0o] = ACTIONS(1022), - [anon_sym_0x] = ACTIONS(1022), - [sym_val_date] = ACTIONS(1024), - [anon_sym_DQUOTE] = ACTIONS(1024), - [sym__str_single_quotes] = ACTIONS(1024), - [sym__str_back_ticks] = ACTIONS(1024), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1024), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1024), - [anon_sym_err_GT] = ACTIONS(1022), - [anon_sym_out_GT] = ACTIONS(1022), - [anon_sym_e_GT] = ACTIONS(1022), - [anon_sym_o_GT] = ACTIONS(1022), - [anon_sym_err_PLUSout_GT] = ACTIONS(1022), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1022), - [anon_sym_o_PLUSe_GT] = ACTIONS(1022), - [anon_sym_e_PLUSo_GT] = ACTIONS(1022), - [anon_sym_err_GT_GT] = ACTIONS(1024), - [anon_sym_out_GT_GT] = ACTIONS(1024), - [anon_sym_e_GT_GT] = ACTIONS(1024), - [anon_sym_o_GT_GT] = ACTIONS(1024), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1024), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1024), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1024), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1024), - [aux_sym_unquoted_token1] = ACTIONS(1022), - [anon_sym_POUND] = ACTIONS(247), + [1235] = { + [sym_comment] = STATE(1235), + [ts_builtin_sym_end] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(1705), + [anon_sym_false] = ACTIONS(1705), + [anon_sym_null] = ACTIONS(1705), + [aux_sym_cmd_identifier_token38] = ACTIONS(1705), + [aux_sym_cmd_identifier_token39] = ACTIONS(1705), + [aux_sym_cmd_identifier_token40] = ACTIONS(1705), + [sym__newline] = ACTIONS(1705), + [anon_sym_SEMI] = ACTIONS(1705), + [anon_sym_PIPE] = ACTIONS(1705), + [anon_sym_err_GT_PIPE] = ACTIONS(1705), + [anon_sym_out_GT_PIPE] = ACTIONS(1705), + [anon_sym_e_GT_PIPE] = ACTIONS(1705), + [anon_sym_o_GT_PIPE] = ACTIONS(1705), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1705), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1705), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1705), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1705), + [anon_sym_LBRACK] = ACTIONS(1705), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1703), + [anon_sym_DASH_DASH] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_LBRACE] = ACTIONS(1705), + [anon_sym_DOT_DOT] = ACTIONS(1703), + [anon_sym_LPAREN2] = ACTIONS(1705), + [anon_sym_DOT_DOT2] = ACTIONS(1703), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT] = ACTIONS(1703), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1705), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1705), + [aux_sym__immediate_decimal_token1] = ACTIONS(4610), + [aux_sym__immediate_decimal_token2] = ACTIONS(4612), + [aux_sym__val_number_decimal_token1] = ACTIONS(1703), + [aux_sym__val_number_decimal_token2] = ACTIONS(1705), + [aux_sym__val_number_decimal_token3] = ACTIONS(1705), + [aux_sym__val_number_decimal_token4] = ACTIONS(1705), + [aux_sym__val_number_token1] = ACTIONS(1705), + [aux_sym__val_number_token2] = ACTIONS(1705), + [aux_sym__val_number_token3] = ACTIONS(1705), + [anon_sym_0b] = ACTIONS(1703), + [anon_sym_0o] = ACTIONS(1703), + [anon_sym_0x] = ACTIONS(1703), + [sym_val_date] = ACTIONS(1705), + [anon_sym_DQUOTE] = ACTIONS(1705), + [sym__str_single_quotes] = ACTIONS(1705), + [sym__str_back_ticks] = ACTIONS(1705), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1705), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1705), + [anon_sym_err_GT] = ACTIONS(1703), + [anon_sym_out_GT] = ACTIONS(1703), + [anon_sym_e_GT] = ACTIONS(1703), + [anon_sym_o_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT] = ACTIONS(1703), + [anon_sym_err_GT_GT] = ACTIONS(1705), + [anon_sym_out_GT_GT] = ACTIONS(1705), + [anon_sym_e_GT_GT] = ACTIONS(1705), + [anon_sym_o_GT_GT] = ACTIONS(1705), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1705), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1705), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1705), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1705), + [aux_sym_unquoted_token1] = ACTIONS(1703), + [aux_sym_unquoted_token2] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1705), }, - [1256] = { - [sym_comment] = STATE(1256), - [ts_builtin_sym_end] = ACTIONS(1060), - [anon_sym_EQ] = ACTIONS(1058), - [anon_sym_PLUS_EQ] = ACTIONS(1060), - [anon_sym_DASH_EQ] = ACTIONS(1060), - [anon_sym_STAR_EQ] = ACTIONS(1060), - [anon_sym_SLASH_EQ] = ACTIONS(1060), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1060), - [sym__newline] = ACTIONS(1060), - [anon_sym_SEMI] = ACTIONS(1060), - [anon_sym_PIPE] = ACTIONS(1060), - [anon_sym_err_GT_PIPE] = ACTIONS(1060), - [anon_sym_out_GT_PIPE] = ACTIONS(1060), - [anon_sym_e_GT_PIPE] = ACTIONS(1060), - [anon_sym_o_GT_PIPE] = ACTIONS(1060), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1060), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1060), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1060), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1060), - [anon_sym_LBRACE] = ACTIONS(1060), - [aux_sym_expr_binary_token1] = ACTIONS(1060), - [aux_sym_expr_binary_token2] = ACTIONS(1060), - [aux_sym_expr_binary_token3] = ACTIONS(1060), - [aux_sym_expr_binary_token4] = ACTIONS(1060), - [aux_sym_expr_binary_token5] = ACTIONS(1060), - [aux_sym_expr_binary_token6] = ACTIONS(1060), - [aux_sym_expr_binary_token7] = ACTIONS(1060), - [aux_sym_expr_binary_token8] = ACTIONS(1060), - [aux_sym_expr_binary_token9] = ACTIONS(1060), - [aux_sym_expr_binary_token10] = ACTIONS(1060), - [aux_sym_expr_binary_token11] = ACTIONS(1060), - [aux_sym_expr_binary_token12] = ACTIONS(1060), - [aux_sym_expr_binary_token13] = ACTIONS(1060), - [aux_sym_expr_binary_token14] = ACTIONS(1060), - [aux_sym_expr_binary_token15] = ACTIONS(1060), - [aux_sym_expr_binary_token16] = ACTIONS(1060), - [aux_sym_expr_binary_token17] = ACTIONS(1060), - [aux_sym_expr_binary_token18] = ACTIONS(1060), - [aux_sym_expr_binary_token19] = ACTIONS(1060), - [aux_sym_expr_binary_token20] = ACTIONS(1060), - [aux_sym_expr_binary_token21] = ACTIONS(1060), - [aux_sym_expr_binary_token22] = ACTIONS(1060), - [aux_sym_expr_binary_token23] = ACTIONS(1060), - [aux_sym_expr_binary_token24] = ACTIONS(1060), - [aux_sym_expr_binary_token25] = ACTIONS(1060), - [aux_sym_expr_binary_token26] = ACTIONS(1060), - [aux_sym_expr_binary_token27] = ACTIONS(1060), - [aux_sym_expr_binary_token28] = ACTIONS(1060), - [anon_sym_DOT_DOT2] = ACTIONS(1058), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1060), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1060), - [anon_sym_err_GT] = ACTIONS(1058), - [anon_sym_out_GT] = ACTIONS(1058), - [anon_sym_e_GT] = ACTIONS(1058), - [anon_sym_o_GT] = ACTIONS(1058), - [anon_sym_err_PLUSout_GT] = ACTIONS(1058), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1058), - [anon_sym_o_PLUSe_GT] = ACTIONS(1058), - [anon_sym_e_PLUSo_GT] = ACTIONS(1058), - [anon_sym_err_GT_GT] = ACTIONS(1060), - [anon_sym_out_GT_GT] = ACTIONS(1060), - [anon_sym_e_GT_GT] = ACTIONS(1060), - [anon_sym_o_GT_GT] = ACTIONS(1060), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1060), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1060), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1060), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1060), - [anon_sym_POUND] = ACTIONS(247), + [1236] = { + [sym_comment] = STATE(1236), + [anon_sym_true] = ACTIONS(1598), + [anon_sym_false] = ACTIONS(1598), + [anon_sym_null] = ACTIONS(1598), + [aux_sym_cmd_identifier_token38] = ACTIONS(1598), + [aux_sym_cmd_identifier_token39] = ACTIONS(1598), + [aux_sym_cmd_identifier_token40] = ACTIONS(1598), + [sym__newline] = ACTIONS(1598), + [anon_sym_SEMI] = ACTIONS(1598), + [anon_sym_PIPE] = ACTIONS(1598), + [anon_sym_err_GT_PIPE] = ACTIONS(1598), + [anon_sym_out_GT_PIPE] = ACTIONS(1598), + [anon_sym_e_GT_PIPE] = ACTIONS(1598), + [anon_sym_o_GT_PIPE] = ACTIONS(1598), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1598), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1598), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1598), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_RPAREN] = ACTIONS(1598), + [anon_sym_DOLLAR] = ACTIONS(1596), + [anon_sym_DASH_DASH] = ACTIONS(1598), + [anon_sym_DASH] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1598), + [anon_sym_DOT_DOT] = ACTIONS(1596), + [anon_sym_DOT_DOT2] = ACTIONS(1596), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1596), + [anon_sym_DOT_DOT_LT] = ACTIONS(1596), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1598), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1598), + [aux_sym__val_number_decimal_token1] = ACTIONS(1596), + [aux_sym__val_number_decimal_token2] = ACTIONS(1598), + [aux_sym__val_number_decimal_token3] = ACTIONS(1598), + [aux_sym__val_number_decimal_token4] = ACTIONS(1598), + [aux_sym__val_number_token1] = ACTIONS(1598), + [aux_sym__val_number_token2] = ACTIONS(1598), + [aux_sym__val_number_token3] = ACTIONS(1598), + [anon_sym_0b] = ACTIONS(1596), + [sym_filesize_unit] = ACTIONS(1598), + [sym_duration_unit] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1596), + [sym_val_date] = ACTIONS(1598), + [anon_sym_DQUOTE] = ACTIONS(1598), + [sym__str_single_quotes] = ACTIONS(1598), + [sym__str_back_ticks] = ACTIONS(1598), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1598), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1598), + [anon_sym_err_GT] = ACTIONS(1596), + [anon_sym_out_GT] = ACTIONS(1596), + [anon_sym_e_GT] = ACTIONS(1596), + [anon_sym_o_GT] = ACTIONS(1596), + [anon_sym_err_PLUSout_GT] = ACTIONS(1596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1596), + [anon_sym_o_PLUSe_GT] = ACTIONS(1596), + [anon_sym_e_PLUSo_GT] = ACTIONS(1596), + [anon_sym_err_GT_GT] = ACTIONS(1598), + [anon_sym_out_GT_GT] = ACTIONS(1598), + [anon_sym_e_GT_GT] = ACTIONS(1598), + [anon_sym_o_GT_GT] = ACTIONS(1598), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1598), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1598), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1598), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1598), + [aux_sym_unquoted_token1] = ACTIONS(1596), + [aux_sym_unquoted_token2] = ACTIONS(1596), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1598), }, - [1257] = { - [sym_comment] = STATE(1257), + [1237] = { + [sym_comment] = STATE(1237), [anon_sym_EQ] = ACTIONS(1058), [anon_sym_PLUS_EQ] = ACTIONS(1060), [anon_sym_DASH_EQ] = ACTIONS(1060), @@ -195809,6 +197296,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1060), [anon_sym_RPAREN] = ACTIONS(1060), [anon_sym_RBRACE] = ACTIONS(1060), + [anon_sym_QMARK2] = ACTIONS(1060), [aux_sym_expr_binary_token1] = ACTIONS(1060), [aux_sym_expr_binary_token2] = ACTIONS(1060), [aux_sym_expr_binary_token3] = ACTIONS(1060), @@ -195838,6 +197326,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_binary_token27] = ACTIONS(1060), [aux_sym_expr_binary_token28] = ACTIONS(1060), [anon_sym_DOT_DOT2] = ACTIONS(1058), + [anon_sym_DOT] = ACTIONS(1058), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1060), [anon_sym_DOT_DOT_LT2] = ACTIONS(1060), [anon_sym_err_GT] = ACTIONS(1058), @@ -195856,506 +197345,517 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1060), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1060), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1060), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), }, - [1258] = { - [sym_path] = STATE(1376), - [sym_comment] = STATE(1258), - [aux_sym_cell_path_repeat1] = STATE(1266), - [ts_builtin_sym_end] = ACTIONS(1013), - [anon_sym_true] = ACTIONS(1013), - [anon_sym_false] = ACTIONS(1013), - [anon_sym_null] = ACTIONS(1013), - [aux_sym_cmd_identifier_token38] = ACTIONS(1013), - [aux_sym_cmd_identifier_token39] = ACTIONS(1013), - [aux_sym_cmd_identifier_token40] = ACTIONS(1013), - [sym__newline] = ACTIONS(1013), - [anon_sym_SEMI] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1013), - [anon_sym_err_GT_PIPE] = ACTIONS(1013), - [anon_sym_out_GT_PIPE] = ACTIONS(1013), - [anon_sym_e_GT_PIPE] = ACTIONS(1013), - [anon_sym_o_GT_PIPE] = ACTIONS(1013), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1013), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1013), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1013), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1013), - [anon_sym_LBRACK] = ACTIONS(1013), - [anon_sym_LPAREN] = ACTIONS(1013), - [anon_sym_DOLLAR] = ACTIONS(1011), - [anon_sym_DASH_DASH] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1011), - [anon_sym_LBRACE] = ACTIONS(1013), - [anon_sym_DOT_DOT] = ACTIONS(1011), - [anon_sym_DOT_DOT2] = ACTIONS(1011), - [anon_sym_DOT] = ACTIONS(4432), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1011), - [anon_sym_DOT_DOT_LT] = ACTIONS(1011), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1013), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1013), - [aux_sym__val_number_decimal_token1] = ACTIONS(1011), - [aux_sym__val_number_decimal_token2] = ACTIONS(1013), - [aux_sym__val_number_decimal_token3] = ACTIONS(1013), - [aux_sym__val_number_decimal_token4] = ACTIONS(1013), - [aux_sym__val_number_token1] = ACTIONS(1013), - [aux_sym__val_number_token2] = ACTIONS(1013), - [aux_sym__val_number_token3] = ACTIONS(1013), - [anon_sym_0b] = ACTIONS(1011), - [anon_sym_0o] = ACTIONS(1011), - [anon_sym_0x] = ACTIONS(1011), - [sym_val_date] = ACTIONS(1013), - [anon_sym_DQUOTE] = ACTIONS(1013), - [sym__str_single_quotes] = ACTIONS(1013), - [sym__str_back_ticks] = ACTIONS(1013), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1013), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1013), - [anon_sym_err_GT] = ACTIONS(1011), - [anon_sym_out_GT] = ACTIONS(1011), - [anon_sym_e_GT] = ACTIONS(1011), - [anon_sym_o_GT] = ACTIONS(1011), - [anon_sym_err_PLUSout_GT] = ACTIONS(1011), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1011), - [anon_sym_o_PLUSe_GT] = ACTIONS(1011), - [anon_sym_e_PLUSo_GT] = ACTIONS(1011), - [anon_sym_err_GT_GT] = ACTIONS(1013), - [anon_sym_out_GT_GT] = ACTIONS(1013), - [anon_sym_e_GT_GT] = ACTIONS(1013), - [anon_sym_o_GT_GT] = ACTIONS(1013), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1013), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1013), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1013), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1013), - [aux_sym_unquoted_token1] = ACTIONS(1011), - [anon_sym_POUND] = ACTIONS(247), + [1238] = { + [sym_comment] = STATE(1238), + [anon_sym_true] = ACTIONS(1640), + [anon_sym_false] = ACTIONS(1640), + [anon_sym_null] = ACTIONS(1640), + [aux_sym_cmd_identifier_token38] = ACTIONS(1640), + [aux_sym_cmd_identifier_token39] = ACTIONS(1640), + [aux_sym_cmd_identifier_token40] = ACTIONS(1640), + [sym__newline] = ACTIONS(1640), + [anon_sym_SEMI] = ACTIONS(1640), + [anon_sym_PIPE] = ACTIONS(1640), + [anon_sym_err_GT_PIPE] = ACTIONS(1640), + [anon_sym_out_GT_PIPE] = ACTIONS(1640), + [anon_sym_e_GT_PIPE] = ACTIONS(1640), + [anon_sym_o_GT_PIPE] = ACTIONS(1640), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1640), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1640), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1640), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_LPAREN] = ACTIONS(1640), + [anon_sym_RPAREN] = ACTIONS(1640), + [anon_sym_DOLLAR] = ACTIONS(1628), + [anon_sym_DASH_DASH] = ACTIONS(1640), + [anon_sym_DASH] = ACTIONS(1628), + [anon_sym_LBRACE] = ACTIONS(1640), + [anon_sym_RBRACE] = ACTIONS(1640), + [anon_sym_DOT_DOT] = ACTIONS(1628), + [anon_sym_DOT_DOT2] = ACTIONS(4614), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1628), + [anon_sym_DOT_DOT_LT] = ACTIONS(1628), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4616), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4616), + [aux_sym__val_number_decimal_token1] = ACTIONS(1628), + [aux_sym__val_number_decimal_token2] = ACTIONS(1640), + [aux_sym__val_number_decimal_token3] = ACTIONS(1640), + [aux_sym__val_number_decimal_token4] = ACTIONS(1640), + [aux_sym__val_number_token1] = ACTIONS(1640), + [aux_sym__val_number_token2] = ACTIONS(1640), + [aux_sym__val_number_token3] = ACTIONS(1640), + [anon_sym_0b] = ACTIONS(1628), + [sym_filesize_unit] = ACTIONS(4618), + [sym_duration_unit] = ACTIONS(4620), + [anon_sym_0o] = ACTIONS(1628), + [anon_sym_0x] = ACTIONS(1628), + [sym_val_date] = ACTIONS(1640), + [anon_sym_DQUOTE] = ACTIONS(1640), + [sym__str_single_quotes] = ACTIONS(1640), + [sym__str_back_ticks] = ACTIONS(1640), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1640), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1640), + [anon_sym_err_GT] = ACTIONS(1628), + [anon_sym_out_GT] = ACTIONS(1628), + [anon_sym_e_GT] = ACTIONS(1628), + [anon_sym_o_GT] = ACTIONS(1628), + [anon_sym_err_PLUSout_GT] = ACTIONS(1628), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1628), + [anon_sym_o_PLUSe_GT] = ACTIONS(1628), + [anon_sym_e_PLUSo_GT] = ACTIONS(1628), + [anon_sym_err_GT_GT] = ACTIONS(1640), + [anon_sym_out_GT_GT] = ACTIONS(1640), + [anon_sym_e_GT_GT] = ACTIONS(1640), + [anon_sym_o_GT_GT] = ACTIONS(1640), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1640), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1640), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1640), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1640), + [aux_sym_unquoted_token1] = ACTIONS(1628), + [aux_sym_unquoted_token2] = ACTIONS(4622), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1640), }, - [1259] = { - [sym_comment] = STATE(1259), - [anon_sym_true] = ACTIONS(1030), - [anon_sym_false] = ACTIONS(1030), - [anon_sym_null] = ACTIONS(1030), - [aux_sym_cmd_identifier_token38] = ACTIONS(1030), - [aux_sym_cmd_identifier_token39] = ACTIONS(1030), - [aux_sym_cmd_identifier_token40] = ACTIONS(1030), - [sym__newline] = ACTIONS(1030), - [anon_sym_SEMI] = ACTIONS(1030), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_err_GT_PIPE] = ACTIONS(1030), - [anon_sym_out_GT_PIPE] = ACTIONS(1030), - [anon_sym_e_GT_PIPE] = ACTIONS(1030), - [anon_sym_o_GT_PIPE] = ACTIONS(1030), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1030), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1030), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1030), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1030), - [anon_sym_LBRACK] = ACTIONS(1030), - [anon_sym_LPAREN] = ACTIONS(1030), - [anon_sym_RPAREN] = ACTIONS(1030), - [anon_sym_DOLLAR] = ACTIONS(1028), - [anon_sym_DASH_DASH] = ACTIONS(1030), - [anon_sym_DASH] = ACTIONS(1028), - [anon_sym_LBRACE] = ACTIONS(1030), - [anon_sym_RBRACE] = ACTIONS(1030), - [anon_sym_DOT_DOT] = ACTIONS(1028), - [anon_sym_QMARK2] = ACTIONS(4555), - [anon_sym_DOT_DOT2] = ACTIONS(1028), - [anon_sym_DOT] = ACTIONS(1028), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1028), - [anon_sym_DOT_DOT_LT] = ACTIONS(1028), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1030), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1030), - [aux_sym__val_number_decimal_token1] = ACTIONS(1028), - [aux_sym__val_number_decimal_token2] = ACTIONS(1030), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), - [aux_sym__val_number_token1] = ACTIONS(1030), - [aux_sym__val_number_token2] = ACTIONS(1030), - [aux_sym__val_number_token3] = ACTIONS(1030), - [anon_sym_0b] = ACTIONS(1028), - [anon_sym_0o] = ACTIONS(1028), - [anon_sym_0x] = ACTIONS(1028), - [sym_val_date] = ACTIONS(1030), - [anon_sym_DQUOTE] = ACTIONS(1030), - [sym__str_single_quotes] = ACTIONS(1030), - [sym__str_back_ticks] = ACTIONS(1030), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1030), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1030), - [anon_sym_err_GT] = ACTIONS(1028), - [anon_sym_out_GT] = ACTIONS(1028), - [anon_sym_e_GT] = ACTIONS(1028), - [anon_sym_o_GT] = ACTIONS(1028), - [anon_sym_err_PLUSout_GT] = ACTIONS(1028), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1028), - [anon_sym_o_PLUSe_GT] = ACTIONS(1028), - [anon_sym_e_PLUSo_GT] = ACTIONS(1028), - [anon_sym_err_GT_GT] = ACTIONS(1030), - [anon_sym_out_GT_GT] = ACTIONS(1030), - [anon_sym_e_GT_GT] = ACTIONS(1030), - [anon_sym_o_GT_GT] = ACTIONS(1030), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1030), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1030), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1030), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1030), - [aux_sym_unquoted_token1] = ACTIONS(1028), - [anon_sym_POUND] = ACTIONS(247), + [1239] = { + [sym_comment] = STATE(1239), + [anon_sym_EQ] = ACTIONS(1062), + [anon_sym_PLUS_EQ] = ACTIONS(1064), + [anon_sym_DASH_EQ] = ACTIONS(1064), + [anon_sym_STAR_EQ] = ACTIONS(1064), + [anon_sym_SLASH_EQ] = ACTIONS(1064), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1064), + [sym__newline] = ACTIONS(1064), + [anon_sym_SEMI] = ACTIONS(1064), + [anon_sym_PIPE] = ACTIONS(1064), + [anon_sym_err_GT_PIPE] = ACTIONS(1064), + [anon_sym_out_GT_PIPE] = ACTIONS(1064), + [anon_sym_e_GT_PIPE] = ACTIONS(1064), + [anon_sym_o_GT_PIPE] = ACTIONS(1064), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1064), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1064), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1064), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1064), + [anon_sym_RPAREN] = ACTIONS(1064), + [anon_sym_RBRACE] = ACTIONS(1064), + [anon_sym_QMARK2] = ACTIONS(1064), + [aux_sym_expr_binary_token1] = ACTIONS(1064), + [aux_sym_expr_binary_token2] = ACTIONS(1064), + [aux_sym_expr_binary_token3] = ACTIONS(1064), + [aux_sym_expr_binary_token4] = ACTIONS(1064), + [aux_sym_expr_binary_token5] = ACTIONS(1064), + [aux_sym_expr_binary_token6] = ACTIONS(1064), + [aux_sym_expr_binary_token7] = ACTIONS(1064), + [aux_sym_expr_binary_token8] = ACTIONS(1064), + [aux_sym_expr_binary_token9] = ACTIONS(1064), + [aux_sym_expr_binary_token10] = ACTIONS(1064), + [aux_sym_expr_binary_token11] = ACTIONS(1064), + [aux_sym_expr_binary_token12] = ACTIONS(1064), + [aux_sym_expr_binary_token13] = ACTIONS(1064), + [aux_sym_expr_binary_token14] = ACTIONS(1064), + [aux_sym_expr_binary_token15] = ACTIONS(1064), + [aux_sym_expr_binary_token16] = ACTIONS(1064), + [aux_sym_expr_binary_token17] = ACTIONS(1064), + [aux_sym_expr_binary_token18] = ACTIONS(1064), + [aux_sym_expr_binary_token19] = ACTIONS(1064), + [aux_sym_expr_binary_token20] = ACTIONS(1064), + [aux_sym_expr_binary_token21] = ACTIONS(1064), + [aux_sym_expr_binary_token22] = ACTIONS(1064), + [aux_sym_expr_binary_token23] = ACTIONS(1064), + [aux_sym_expr_binary_token24] = ACTIONS(1064), + [aux_sym_expr_binary_token25] = ACTIONS(1064), + [aux_sym_expr_binary_token26] = ACTIONS(1064), + [aux_sym_expr_binary_token27] = ACTIONS(1064), + [aux_sym_expr_binary_token28] = ACTIONS(1064), + [anon_sym_DOT_DOT2] = ACTIONS(1062), + [anon_sym_DOT] = ACTIONS(1062), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1064), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1064), + [anon_sym_err_GT] = ACTIONS(1062), + [anon_sym_out_GT] = ACTIONS(1062), + [anon_sym_e_GT] = ACTIONS(1062), + [anon_sym_o_GT] = ACTIONS(1062), + [anon_sym_err_PLUSout_GT] = ACTIONS(1062), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1062), + [anon_sym_o_PLUSe_GT] = ACTIONS(1062), + [anon_sym_e_PLUSo_GT] = ACTIONS(1062), + [anon_sym_err_GT_GT] = ACTIONS(1064), + [anon_sym_out_GT_GT] = ACTIONS(1064), + [anon_sym_e_GT_GT] = ACTIONS(1064), + [anon_sym_o_GT_GT] = ACTIONS(1064), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1064), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1064), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1064), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1064), + [anon_sym_POUND] = ACTIONS(249), }, - [1260] = { - [sym_comment] = STATE(1260), - [anon_sym_true] = ACTIONS(1661), - [anon_sym_false] = ACTIONS(1661), - [anon_sym_null] = ACTIONS(1661), - [aux_sym_cmd_identifier_token38] = ACTIONS(1661), - [aux_sym_cmd_identifier_token39] = ACTIONS(1661), - [aux_sym_cmd_identifier_token40] = ACTIONS(1661), - [sym__newline] = ACTIONS(1661), - [anon_sym_SEMI] = ACTIONS(1661), - [anon_sym_PIPE] = ACTIONS(1661), - [anon_sym_err_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_GT_PIPE] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_LPAREN] = ACTIONS(1661), - [anon_sym_RPAREN] = ACTIONS(1661), - [anon_sym_DOLLAR] = ACTIONS(1659), - [anon_sym_DASH_DASH] = ACTIONS(1661), - [anon_sym_DASH] = ACTIONS(1659), - [anon_sym_LBRACE] = ACTIONS(1661), - [anon_sym_RBRACE] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1659), - [anon_sym_DOT_DOT2] = ACTIONS(1659), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1659), - [anon_sym_DOT_DOT_LT] = ACTIONS(1659), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1661), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1661), - [aux_sym__immediate_decimal_token1] = ACTIONS(4557), - [aux_sym__immediate_decimal_token2] = ACTIONS(4559), - [aux_sym__val_number_decimal_token1] = ACTIONS(1659), - [aux_sym__val_number_decimal_token2] = ACTIONS(1661), - [aux_sym__val_number_decimal_token3] = ACTIONS(1661), - [aux_sym__val_number_decimal_token4] = ACTIONS(1661), - [aux_sym__val_number_token1] = ACTIONS(1661), - [aux_sym__val_number_token2] = ACTIONS(1661), - [aux_sym__val_number_token3] = ACTIONS(1661), - [anon_sym_0b] = ACTIONS(1659), - [anon_sym_0o] = ACTIONS(1659), - [anon_sym_0x] = ACTIONS(1659), - [sym_val_date] = ACTIONS(1661), - [anon_sym_DQUOTE] = ACTIONS(1661), - [sym__str_single_quotes] = ACTIONS(1661), - [sym__str_back_ticks] = ACTIONS(1661), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1661), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1661), - [anon_sym_err_GT] = ACTIONS(1659), - [anon_sym_out_GT] = ACTIONS(1659), - [anon_sym_e_GT] = ACTIONS(1659), - [anon_sym_o_GT] = ACTIONS(1659), - [anon_sym_err_PLUSout_GT] = ACTIONS(1659), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1659), - [anon_sym_o_PLUSe_GT] = ACTIONS(1659), - [anon_sym_e_PLUSo_GT] = ACTIONS(1659), - [anon_sym_err_GT_GT] = ACTIONS(1661), - [anon_sym_out_GT_GT] = ACTIONS(1661), - [anon_sym_e_GT_GT] = ACTIONS(1661), - [anon_sym_o_GT_GT] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1661), - [aux_sym_unquoted_token1] = ACTIONS(1659), - [anon_sym_POUND] = ACTIONS(247), + [1240] = { + [sym_comment] = STATE(1240), + [ts_builtin_sym_end] = ACTIONS(1713), + [anon_sym_true] = ACTIONS(1713), + [anon_sym_false] = ACTIONS(1713), + [anon_sym_null] = ACTIONS(1713), + [aux_sym_cmd_identifier_token38] = ACTIONS(1713), + [aux_sym_cmd_identifier_token39] = ACTIONS(1713), + [aux_sym_cmd_identifier_token40] = ACTIONS(1713), + [sym__newline] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_err_GT_PIPE] = ACTIONS(1713), + [anon_sym_out_GT_PIPE] = ACTIONS(1713), + [anon_sym_e_GT_PIPE] = ACTIONS(1713), + [anon_sym_o_GT_PIPE] = ACTIONS(1713), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(1711), + [anon_sym_DOLLAR] = ACTIONS(1711), + [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1711), + [anon_sym_LBRACE] = ACTIONS(1713), + [anon_sym_DOT_DOT] = ACTIONS(1711), + [anon_sym_LPAREN2] = ACTIONS(1713), + [anon_sym_DOT_DOT2] = ACTIONS(1711), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1711), + [anon_sym_DOT_DOT_LT] = ACTIONS(1711), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), + [aux_sym__val_number_decimal_token1] = ACTIONS(1711), + [aux_sym__val_number_decimal_token2] = ACTIONS(1713), + [aux_sym__val_number_decimal_token3] = ACTIONS(1713), + [aux_sym__val_number_decimal_token4] = ACTIONS(1713), + [aux_sym__val_number_token1] = ACTIONS(1713), + [aux_sym__val_number_token2] = ACTIONS(1713), + [aux_sym__val_number_token3] = ACTIONS(1713), + [anon_sym_0b] = ACTIONS(1711), + [sym_filesize_unit] = ACTIONS(1713), + [sym_duration_unit] = ACTIONS(1713), + [anon_sym_0o] = ACTIONS(1711), + [anon_sym_0x] = ACTIONS(1711), + [sym_val_date] = ACTIONS(1713), + [anon_sym_DQUOTE] = ACTIONS(1713), + [sym__str_single_quotes] = ACTIONS(1713), + [sym__str_back_ticks] = ACTIONS(1713), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1713), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1713), + [anon_sym_err_GT] = ACTIONS(1711), + [anon_sym_out_GT] = ACTIONS(1711), + [anon_sym_e_GT] = ACTIONS(1711), + [anon_sym_o_GT] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT] = ACTIONS(1711), + [anon_sym_err_GT_GT] = ACTIONS(1713), + [anon_sym_out_GT_GT] = ACTIONS(1713), + [anon_sym_e_GT_GT] = ACTIONS(1713), + [anon_sym_o_GT_GT] = ACTIONS(1713), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), + [aux_sym_unquoted_token1] = ACTIONS(1711), + [aux_sym_unquoted_token2] = ACTIONS(1711), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1713), }, - [1261] = { - [sym_comment] = STATE(1261), - [anon_sym_true] = ACTIONS(1036), - [anon_sym_false] = ACTIONS(1036), - [anon_sym_null] = ACTIONS(1036), - [aux_sym_cmd_identifier_token38] = ACTIONS(1036), - [aux_sym_cmd_identifier_token39] = ACTIONS(1036), - [aux_sym_cmd_identifier_token40] = ACTIONS(1036), - [sym__newline] = ACTIONS(1036), - [anon_sym_SEMI] = ACTIONS(1036), - [anon_sym_PIPE] = ACTIONS(1036), - [anon_sym_err_GT_PIPE] = ACTIONS(1036), - [anon_sym_out_GT_PIPE] = ACTIONS(1036), - [anon_sym_e_GT_PIPE] = ACTIONS(1036), - [anon_sym_o_GT_PIPE] = ACTIONS(1036), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1036), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1036), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1036), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1036), - [anon_sym_LBRACK] = ACTIONS(1036), - [anon_sym_LPAREN] = ACTIONS(1036), - [anon_sym_RPAREN] = ACTIONS(1036), - [anon_sym_DOLLAR] = ACTIONS(1034), - [anon_sym_DASH_DASH] = ACTIONS(1036), - [anon_sym_DASH] = ACTIONS(1034), - [anon_sym_LBRACE] = ACTIONS(1036), - [anon_sym_RBRACE] = ACTIONS(1036), - [anon_sym_DOT_DOT] = ACTIONS(1034), - [anon_sym_QMARK2] = ACTIONS(1036), - [anon_sym_DOT_DOT2] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(1034), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1034), - [anon_sym_DOT_DOT_LT] = ACTIONS(1034), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1036), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1036), - [aux_sym__val_number_decimal_token1] = ACTIONS(1034), - [aux_sym__val_number_decimal_token2] = ACTIONS(1036), - [aux_sym__val_number_decimal_token3] = ACTIONS(1036), - [aux_sym__val_number_decimal_token4] = ACTIONS(1036), - [aux_sym__val_number_token1] = ACTIONS(1036), - [aux_sym__val_number_token2] = ACTIONS(1036), - [aux_sym__val_number_token3] = ACTIONS(1036), - [anon_sym_0b] = ACTIONS(1034), - [anon_sym_0o] = ACTIONS(1034), - [anon_sym_0x] = ACTIONS(1034), - [sym_val_date] = ACTIONS(1036), - [anon_sym_DQUOTE] = ACTIONS(1036), - [sym__str_single_quotes] = ACTIONS(1036), - [sym__str_back_ticks] = ACTIONS(1036), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1036), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1036), - [anon_sym_err_GT] = ACTIONS(1034), - [anon_sym_out_GT] = ACTIONS(1034), - [anon_sym_e_GT] = ACTIONS(1034), - [anon_sym_o_GT] = ACTIONS(1034), - [anon_sym_err_PLUSout_GT] = ACTIONS(1034), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1034), - [anon_sym_o_PLUSe_GT] = ACTIONS(1034), - [anon_sym_e_PLUSo_GT] = ACTIONS(1034), - [anon_sym_err_GT_GT] = ACTIONS(1036), - [anon_sym_out_GT_GT] = ACTIONS(1036), - [anon_sym_e_GT_GT] = ACTIONS(1036), - [anon_sym_o_GT_GT] = ACTIONS(1036), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1036), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1036), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1036), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1036), - [aux_sym_unquoted_token1] = ACTIONS(1034), - [anon_sym_POUND] = ACTIONS(247), + [1241] = { + [sym_comment] = STATE(1241), + [anon_sym_true] = ACTIONS(1771), + [anon_sym_false] = ACTIONS(1771), + [anon_sym_null] = ACTIONS(1771), + [aux_sym_cmd_identifier_token38] = ACTIONS(1771), + [aux_sym_cmd_identifier_token39] = ACTIONS(1771), + [aux_sym_cmd_identifier_token40] = ACTIONS(1771), + [sym__newline] = ACTIONS(1771), + [anon_sym_SEMI] = ACTIONS(1771), + [anon_sym_PIPE] = ACTIONS(1771), + [anon_sym_err_GT_PIPE] = ACTIONS(1771), + [anon_sym_out_GT_PIPE] = ACTIONS(1771), + [anon_sym_e_GT_PIPE] = ACTIONS(1771), + [anon_sym_o_GT_PIPE] = ACTIONS(1771), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1771), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1771), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1771), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1771), + [anon_sym_LPAREN] = ACTIONS(1769), + [anon_sym_RPAREN] = ACTIONS(1771), + [anon_sym_DOLLAR] = ACTIONS(1769), + [anon_sym_DASH_DASH] = ACTIONS(1771), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_LBRACE] = ACTIONS(1771), + [anon_sym_RBRACE] = ACTIONS(1771), + [anon_sym_DOT_DOT] = ACTIONS(1769), + [anon_sym_LPAREN2] = ACTIONS(1771), + [anon_sym_DOT_DOT2] = ACTIONS(1769), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1769), + [anon_sym_DOT_DOT_LT] = ACTIONS(1769), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1771), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1771), + [aux_sym__val_number_decimal_token1] = ACTIONS(1769), + [aux_sym__val_number_decimal_token2] = ACTIONS(1771), + [aux_sym__val_number_decimal_token3] = ACTIONS(1771), + [aux_sym__val_number_decimal_token4] = ACTIONS(1771), + [aux_sym__val_number_token1] = ACTIONS(1771), + [aux_sym__val_number_token2] = ACTIONS(1771), + [aux_sym__val_number_token3] = ACTIONS(1771), + [anon_sym_0b] = ACTIONS(1769), + [anon_sym_0o] = ACTIONS(1769), + [anon_sym_0x] = ACTIONS(1769), + [sym_val_date] = ACTIONS(1771), + [anon_sym_DQUOTE] = ACTIONS(1771), + [sym__str_single_quotes] = ACTIONS(1771), + [sym__str_back_ticks] = ACTIONS(1771), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1771), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1771), + [anon_sym_err_GT] = ACTIONS(1769), + [anon_sym_out_GT] = ACTIONS(1769), + [anon_sym_e_GT] = ACTIONS(1769), + [anon_sym_o_GT] = ACTIONS(1769), + [anon_sym_err_PLUSout_GT] = ACTIONS(1769), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1769), + [anon_sym_o_PLUSe_GT] = ACTIONS(1769), + [anon_sym_e_PLUSo_GT] = ACTIONS(1769), + [anon_sym_err_GT_GT] = ACTIONS(1771), + [anon_sym_out_GT_GT] = ACTIONS(1771), + [anon_sym_e_GT_GT] = ACTIONS(1771), + [anon_sym_o_GT_GT] = ACTIONS(1771), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1771), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1771), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1771), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1771), + [aux_sym_unquoted_token1] = ACTIONS(1769), + [aux_sym_unquoted_token2] = ACTIONS(1769), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1771), }, - [1262] = { - [sym_comment] = STATE(1262), - [ts_builtin_sym_end] = ACTIONS(1520), - [anon_sym_true] = ACTIONS(1520), - [anon_sym_false] = ACTIONS(1520), - [anon_sym_null] = ACTIONS(1520), - [aux_sym_cmd_identifier_token38] = ACTIONS(1520), - [aux_sym_cmd_identifier_token39] = ACTIONS(1520), - [aux_sym_cmd_identifier_token40] = ACTIONS(1520), - [sym__newline] = ACTIONS(1520), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_err_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_GT_PIPE] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1520), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_DOLLAR] = ACTIONS(1518), - [anon_sym_DASH_DASH] = ACTIONS(1520), - [anon_sym_DASH] = ACTIONS(1518), - [anon_sym_LBRACE] = ACTIONS(1520), - [anon_sym_DOT_DOT] = ACTIONS(1518), - [anon_sym_DOT_DOT2] = ACTIONS(1518), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1518), - [anon_sym_DOT_DOT_LT] = ACTIONS(1518), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), - [aux_sym__val_number_decimal_token1] = ACTIONS(1518), - [aux_sym__val_number_decimal_token2] = ACTIONS(1520), - [aux_sym__val_number_decimal_token3] = ACTIONS(1520), - [aux_sym__val_number_decimal_token4] = ACTIONS(1520), - [aux_sym__val_number_token1] = ACTIONS(1520), - [aux_sym__val_number_token2] = ACTIONS(1520), - [aux_sym__val_number_token3] = ACTIONS(1520), - [anon_sym_0b] = ACTIONS(1518), - [sym_filesize_unit] = ACTIONS(1520), - [sym_duration_unit] = ACTIONS(1520), - [anon_sym_0o] = ACTIONS(1518), - [anon_sym_0x] = ACTIONS(1518), - [sym_val_date] = ACTIONS(1520), - [anon_sym_DQUOTE] = ACTIONS(1520), - [sym__str_single_quotes] = ACTIONS(1520), - [sym__str_back_ticks] = ACTIONS(1520), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1520), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1520), - [anon_sym_err_GT] = ACTIONS(1518), - [anon_sym_out_GT] = ACTIONS(1518), - [anon_sym_e_GT] = ACTIONS(1518), - [anon_sym_o_GT] = ACTIONS(1518), - [anon_sym_err_PLUSout_GT] = ACTIONS(1518), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), - [anon_sym_o_PLUSe_GT] = ACTIONS(1518), - [anon_sym_e_PLUSo_GT] = ACTIONS(1518), - [anon_sym_err_GT_GT] = ACTIONS(1520), - [anon_sym_out_GT_GT] = ACTIONS(1520), - [anon_sym_e_GT_GT] = ACTIONS(1520), - [anon_sym_o_GT_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1520), - [aux_sym_unquoted_token1] = ACTIONS(1518), - [aux_sym_unquoted_token2] = ACTIONS(1518), - [anon_sym_POUND] = ACTIONS(247), + [1242] = { + [sym_comment] = STATE(1242), + [anon_sym_true] = ACTIONS(1828), + [anon_sym_false] = ACTIONS(1828), + [anon_sym_null] = ACTIONS(1828), + [aux_sym_cmd_identifier_token38] = ACTIONS(1828), + [aux_sym_cmd_identifier_token39] = ACTIONS(1828), + [aux_sym_cmd_identifier_token40] = ACTIONS(1828), + [sym__newline] = ACTIONS(1828), + [anon_sym_SEMI] = ACTIONS(1828), + [anon_sym_PIPE] = ACTIONS(1828), + [anon_sym_err_GT_PIPE] = ACTIONS(1828), + [anon_sym_out_GT_PIPE] = ACTIONS(1828), + [anon_sym_e_GT_PIPE] = ACTIONS(1828), + [anon_sym_o_GT_PIPE] = ACTIONS(1828), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1828), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1828), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1828), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1828), + [anon_sym_LBRACK] = ACTIONS(1828), + [anon_sym_LPAREN] = ACTIONS(1826), + [anon_sym_RPAREN] = ACTIONS(1828), + [anon_sym_DOLLAR] = ACTIONS(1826), + [anon_sym_DASH_DASH] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_LBRACE] = ACTIONS(1828), + [anon_sym_RBRACE] = ACTIONS(1828), + [anon_sym_DOT_DOT] = ACTIONS(1826), + [anon_sym_LPAREN2] = ACTIONS(1828), + [anon_sym_DOT_DOT2] = ACTIONS(1826), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1826), + [anon_sym_DOT_DOT_LT] = ACTIONS(1826), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1828), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1828), + [aux_sym__val_number_decimal_token1] = ACTIONS(1826), + [aux_sym__val_number_decimal_token2] = ACTIONS(1828), + [aux_sym__val_number_decimal_token3] = ACTIONS(1828), + [aux_sym__val_number_decimal_token4] = ACTIONS(1828), + [aux_sym__val_number_token1] = ACTIONS(1828), + [aux_sym__val_number_token2] = ACTIONS(1828), + [aux_sym__val_number_token3] = ACTIONS(1828), + [anon_sym_0b] = ACTIONS(1826), + [anon_sym_0o] = ACTIONS(1826), + [anon_sym_0x] = ACTIONS(1826), + [sym_val_date] = ACTIONS(1828), + [anon_sym_DQUOTE] = ACTIONS(1828), + [sym__str_single_quotes] = ACTIONS(1828), + [sym__str_back_ticks] = ACTIONS(1828), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1828), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1828), + [anon_sym_err_GT] = ACTIONS(1826), + [anon_sym_out_GT] = ACTIONS(1826), + [anon_sym_e_GT] = ACTIONS(1826), + [anon_sym_o_GT] = ACTIONS(1826), + [anon_sym_err_PLUSout_GT] = ACTIONS(1826), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1826), + [anon_sym_o_PLUSe_GT] = ACTIONS(1826), + [anon_sym_e_PLUSo_GT] = ACTIONS(1826), + [anon_sym_err_GT_GT] = ACTIONS(1828), + [anon_sym_out_GT_GT] = ACTIONS(1828), + [anon_sym_e_GT_GT] = ACTIONS(1828), + [anon_sym_o_GT_GT] = ACTIONS(1828), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1828), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1828), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1828), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1828), + [aux_sym_unquoted_token1] = ACTIONS(1826), + [aux_sym_unquoted_token2] = ACTIONS(1826), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1828), }, - [1263] = { - [sym_comment] = STATE(1263), - [aux_sym_cmd_identifier_token41] = ACTIONS(1540), - [sym__newline] = ACTIONS(1540), - [anon_sym_SEMI] = ACTIONS(1542), - [anon_sym_PIPE] = ACTIONS(1542), - [anon_sym_err_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_GT_PIPE] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1542), - [anon_sym_RBRACE] = ACTIONS(1542), - [anon_sym_EQ_GT] = ACTIONS(1542), - [aux_sym_expr_binary_token1] = ACTIONS(1542), - [aux_sym_expr_binary_token2] = ACTIONS(1542), - [aux_sym_expr_binary_token3] = ACTIONS(1542), - [aux_sym_expr_binary_token4] = ACTIONS(1542), - [aux_sym_expr_binary_token5] = ACTIONS(1542), - [aux_sym_expr_binary_token6] = ACTIONS(1542), - [aux_sym_expr_binary_token7] = ACTIONS(1542), - [aux_sym_expr_binary_token8] = ACTIONS(1542), - [aux_sym_expr_binary_token9] = ACTIONS(1542), - [aux_sym_expr_binary_token10] = ACTIONS(1542), - [aux_sym_expr_binary_token11] = ACTIONS(1542), - [aux_sym_expr_binary_token12] = ACTIONS(1542), - [aux_sym_expr_binary_token13] = ACTIONS(1542), - [aux_sym_expr_binary_token14] = ACTIONS(1542), - [aux_sym_expr_binary_token15] = ACTIONS(1542), - [aux_sym_expr_binary_token16] = ACTIONS(1542), - [aux_sym_expr_binary_token17] = ACTIONS(1542), - [aux_sym_expr_binary_token18] = ACTIONS(1542), - [aux_sym_expr_binary_token19] = ACTIONS(1542), - [aux_sym_expr_binary_token20] = ACTIONS(1542), - [aux_sym_expr_binary_token21] = ACTIONS(1542), - [aux_sym_expr_binary_token22] = ACTIONS(1542), - [aux_sym_expr_binary_token23] = ACTIONS(1542), - [aux_sym_expr_binary_token24] = ACTIONS(1542), - [aux_sym_expr_binary_token25] = ACTIONS(1542), - [aux_sym_expr_binary_token26] = ACTIONS(1542), - [aux_sym_expr_binary_token27] = ACTIONS(1542), - [aux_sym_expr_binary_token28] = ACTIONS(1542), - [anon_sym_DOT_DOT2] = ACTIONS(1540), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1542), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1542), - [aux_sym__immediate_decimal_token1] = ACTIONS(4561), - [aux_sym__immediate_decimal_token2] = ACTIONS(4563), - [sym_filesize_unit] = ACTIONS(1542), - [sym_duration_unit] = ACTIONS(1542), - [aux_sym_record_entry_token1] = ACTIONS(1542), - [anon_sym_err_GT] = ACTIONS(1540), - [anon_sym_out_GT] = ACTIONS(1540), - [anon_sym_e_GT] = ACTIONS(1540), - [anon_sym_o_GT] = ACTIONS(1540), - [anon_sym_err_PLUSout_GT] = ACTIONS(1540), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1540), - [anon_sym_o_PLUSe_GT] = ACTIONS(1540), - [anon_sym_e_PLUSo_GT] = ACTIONS(1540), - [anon_sym_err_GT_GT] = ACTIONS(1542), - [anon_sym_out_GT_GT] = ACTIONS(1542), - [anon_sym_e_GT_GT] = ACTIONS(1542), - [anon_sym_o_GT_GT] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1542), - [anon_sym_POUND] = ACTIONS(247), + [1243] = { + [sym_comment] = STATE(1243), + [ts_builtin_sym_end] = ACTIONS(1044), + [anon_sym_EQ] = ACTIONS(1042), + [anon_sym_PLUS_EQ] = ACTIONS(1044), + [anon_sym_DASH_EQ] = ACTIONS(1044), + [anon_sym_STAR_EQ] = ACTIONS(1044), + [anon_sym_SLASH_EQ] = ACTIONS(1044), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1044), + [sym__newline] = ACTIONS(1044), + [anon_sym_SEMI] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1044), + [anon_sym_err_GT_PIPE] = ACTIONS(1044), + [anon_sym_out_GT_PIPE] = ACTIONS(1044), + [anon_sym_e_GT_PIPE] = ACTIONS(1044), + [anon_sym_o_GT_PIPE] = ACTIONS(1044), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1044), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1044), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1044), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1044), + [anon_sym_QMARK2] = ACTIONS(4624), + [aux_sym_expr_binary_token1] = ACTIONS(1044), + [aux_sym_expr_binary_token2] = ACTIONS(1044), + [aux_sym_expr_binary_token3] = ACTIONS(1044), + [aux_sym_expr_binary_token4] = ACTIONS(1044), + [aux_sym_expr_binary_token5] = ACTIONS(1044), + [aux_sym_expr_binary_token6] = ACTIONS(1044), + [aux_sym_expr_binary_token7] = ACTIONS(1044), + [aux_sym_expr_binary_token8] = ACTIONS(1044), + [aux_sym_expr_binary_token9] = ACTIONS(1044), + [aux_sym_expr_binary_token10] = ACTIONS(1044), + [aux_sym_expr_binary_token11] = ACTIONS(1044), + [aux_sym_expr_binary_token12] = ACTIONS(1044), + [aux_sym_expr_binary_token13] = ACTIONS(1044), + [aux_sym_expr_binary_token14] = ACTIONS(1044), + [aux_sym_expr_binary_token15] = ACTIONS(1044), + [aux_sym_expr_binary_token16] = ACTIONS(1044), + [aux_sym_expr_binary_token17] = ACTIONS(1044), + [aux_sym_expr_binary_token18] = ACTIONS(1044), + [aux_sym_expr_binary_token19] = ACTIONS(1044), + [aux_sym_expr_binary_token20] = ACTIONS(1044), + [aux_sym_expr_binary_token21] = ACTIONS(1044), + [aux_sym_expr_binary_token22] = ACTIONS(1044), + [aux_sym_expr_binary_token23] = ACTIONS(1044), + [aux_sym_expr_binary_token24] = ACTIONS(1044), + [aux_sym_expr_binary_token25] = ACTIONS(1044), + [aux_sym_expr_binary_token26] = ACTIONS(1044), + [aux_sym_expr_binary_token27] = ACTIONS(1044), + [aux_sym_expr_binary_token28] = ACTIONS(1044), + [anon_sym_DOT_DOT2] = ACTIONS(1042), + [anon_sym_DOT] = ACTIONS(1042), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1044), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1044), + [anon_sym_err_GT] = ACTIONS(1042), + [anon_sym_out_GT] = ACTIONS(1042), + [anon_sym_e_GT] = ACTIONS(1042), + [anon_sym_o_GT] = ACTIONS(1042), + [anon_sym_err_PLUSout_GT] = ACTIONS(1042), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1042), + [anon_sym_o_PLUSe_GT] = ACTIONS(1042), + [anon_sym_e_PLUSo_GT] = ACTIONS(1042), + [anon_sym_err_GT_GT] = ACTIONS(1044), + [anon_sym_out_GT_GT] = ACTIONS(1044), + [anon_sym_e_GT_GT] = ACTIONS(1044), + [anon_sym_o_GT_GT] = ACTIONS(1044), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1044), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1044), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1044), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1044), + [anon_sym_POUND] = ACTIONS(249), }, - [1264] = { - [sym_comment] = STATE(1264), - [anon_sym_true] = ACTIONS(1786), - [anon_sym_false] = ACTIONS(1786), - [anon_sym_null] = ACTIONS(1786), - [aux_sym_cmd_identifier_token38] = ACTIONS(1786), - [aux_sym_cmd_identifier_token39] = ACTIONS(1786), - [aux_sym_cmd_identifier_token40] = ACTIONS(1786), - [sym__newline] = ACTIONS(1786), - [anon_sym_SEMI] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1786), - [anon_sym_err_GT_PIPE] = ACTIONS(1786), - [anon_sym_out_GT_PIPE] = ACTIONS(1786), - [anon_sym_e_GT_PIPE] = ACTIONS(1786), - [anon_sym_o_GT_PIPE] = ACTIONS(1786), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1786), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1786), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1786), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1786), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_RPAREN] = ACTIONS(1786), - [anon_sym_DOLLAR] = ACTIONS(1778), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_DOT_DOT] = ACTIONS(1778), - [anon_sym_LPAREN2] = ACTIONS(1780), - [anon_sym_DOT_DOT2] = ACTIONS(4565), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1778), - [anon_sym_DOT_DOT_LT] = ACTIONS(1778), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4567), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4567), - [aux_sym__val_number_decimal_token1] = ACTIONS(1778), - [aux_sym__val_number_decimal_token2] = ACTIONS(1786), - [aux_sym__val_number_decimal_token3] = ACTIONS(1786), - [aux_sym__val_number_decimal_token4] = ACTIONS(1786), - [aux_sym__val_number_token1] = ACTIONS(1786), - [aux_sym__val_number_token2] = ACTIONS(1786), - [aux_sym__val_number_token3] = ACTIONS(1786), - [anon_sym_0b] = ACTIONS(1778), - [anon_sym_0o] = ACTIONS(1778), - [anon_sym_0x] = ACTIONS(1778), - [sym_val_date] = ACTIONS(1786), - [anon_sym_DQUOTE] = ACTIONS(1786), - [sym__str_single_quotes] = ACTIONS(1786), - [sym__str_back_ticks] = ACTIONS(1786), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1786), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1786), - [anon_sym_err_GT] = ACTIONS(1778), - [anon_sym_out_GT] = ACTIONS(1778), - [anon_sym_e_GT] = ACTIONS(1778), - [anon_sym_o_GT] = ACTIONS(1778), - [anon_sym_err_PLUSout_GT] = ACTIONS(1778), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1778), - [anon_sym_o_PLUSe_GT] = ACTIONS(1778), - [anon_sym_e_PLUSo_GT] = ACTIONS(1778), - [anon_sym_err_GT_GT] = ACTIONS(1786), - [anon_sym_out_GT_GT] = ACTIONS(1786), - [anon_sym_e_GT_GT] = ACTIONS(1786), - [anon_sym_o_GT_GT] = ACTIONS(1786), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1786), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1786), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1786), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1786), - [aux_sym_unquoted_token1] = ACTIONS(1778), - [aux_sym_unquoted_token2] = ACTIONS(1494), - [anon_sym_POUND] = ACTIONS(247), + [1244] = { + [sym_comment] = STATE(1244), + [ts_builtin_sym_end] = ACTIONS(1050), + [anon_sym_EQ] = ACTIONS(1048), + [anon_sym_PLUS_EQ] = ACTIONS(1050), + [anon_sym_DASH_EQ] = ACTIONS(1050), + [anon_sym_STAR_EQ] = ACTIONS(1050), + [anon_sym_SLASH_EQ] = ACTIONS(1050), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1050), + [sym__newline] = ACTIONS(1050), + [anon_sym_SEMI] = ACTIONS(1050), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_err_GT_PIPE] = ACTIONS(1050), + [anon_sym_out_GT_PIPE] = ACTIONS(1050), + [anon_sym_e_GT_PIPE] = ACTIONS(1050), + [anon_sym_o_GT_PIPE] = ACTIONS(1050), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1050), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1050), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1050), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1050), + [anon_sym_QMARK2] = ACTIONS(4626), + [aux_sym_expr_binary_token1] = ACTIONS(1050), + [aux_sym_expr_binary_token2] = ACTIONS(1050), + [aux_sym_expr_binary_token3] = ACTIONS(1050), + [aux_sym_expr_binary_token4] = ACTIONS(1050), + [aux_sym_expr_binary_token5] = ACTIONS(1050), + [aux_sym_expr_binary_token6] = ACTIONS(1050), + [aux_sym_expr_binary_token7] = ACTIONS(1050), + [aux_sym_expr_binary_token8] = ACTIONS(1050), + [aux_sym_expr_binary_token9] = ACTIONS(1050), + [aux_sym_expr_binary_token10] = ACTIONS(1050), + [aux_sym_expr_binary_token11] = ACTIONS(1050), + [aux_sym_expr_binary_token12] = ACTIONS(1050), + [aux_sym_expr_binary_token13] = ACTIONS(1050), + [aux_sym_expr_binary_token14] = ACTIONS(1050), + [aux_sym_expr_binary_token15] = ACTIONS(1050), + [aux_sym_expr_binary_token16] = ACTIONS(1050), + [aux_sym_expr_binary_token17] = ACTIONS(1050), + [aux_sym_expr_binary_token18] = ACTIONS(1050), + [aux_sym_expr_binary_token19] = ACTIONS(1050), + [aux_sym_expr_binary_token20] = ACTIONS(1050), + [aux_sym_expr_binary_token21] = ACTIONS(1050), + [aux_sym_expr_binary_token22] = ACTIONS(1050), + [aux_sym_expr_binary_token23] = ACTIONS(1050), + [aux_sym_expr_binary_token24] = ACTIONS(1050), + [aux_sym_expr_binary_token25] = ACTIONS(1050), + [aux_sym_expr_binary_token26] = ACTIONS(1050), + [aux_sym_expr_binary_token27] = ACTIONS(1050), + [aux_sym_expr_binary_token28] = ACTIONS(1050), + [anon_sym_DOT_DOT2] = ACTIONS(1048), + [anon_sym_DOT] = ACTIONS(1048), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1050), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1050), + [anon_sym_err_GT] = ACTIONS(1048), + [anon_sym_out_GT] = ACTIONS(1048), + [anon_sym_e_GT] = ACTIONS(1048), + [anon_sym_o_GT] = ACTIONS(1048), + [anon_sym_err_PLUSout_GT] = ACTIONS(1048), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1048), + [anon_sym_o_PLUSe_GT] = ACTIONS(1048), + [anon_sym_e_PLUSo_GT] = ACTIONS(1048), + [anon_sym_err_GT_GT] = ACTIONS(1050), + [anon_sym_out_GT_GT] = ACTIONS(1050), + [anon_sym_e_GT_GT] = ACTIONS(1050), + [anon_sym_o_GT_GT] = ACTIONS(1050), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1050), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1050), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1050), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(249), }, - [1265] = { - [sym_comment] = STATE(1265), - [anon_sym_true] = ACTIONS(1040), - [anon_sym_false] = ACTIONS(1040), - [anon_sym_null] = ACTIONS(1040), - [aux_sym_cmd_identifier_token38] = ACTIONS(1040), - [aux_sym_cmd_identifier_token39] = ACTIONS(1040), - [aux_sym_cmd_identifier_token40] = ACTIONS(1040), + [1245] = { + [sym_comment] = STATE(1245), + [ts_builtin_sym_end] = ACTIONS(1040), + [anon_sym_EQ] = ACTIONS(1038), + [anon_sym_PLUS_EQ] = ACTIONS(1040), + [anon_sym_DASH_EQ] = ACTIONS(1040), + [anon_sym_STAR_EQ] = ACTIONS(1040), + [anon_sym_SLASH_EQ] = ACTIONS(1040), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1040), [sym__newline] = ACTIONS(1040), [anon_sym_SEMI] = ACTIONS(1040), [anon_sym_PIPE] = ACTIONS(1040), @@ -196367,38 +197867,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1040), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1040), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1040), - [anon_sym_LBRACK] = ACTIONS(1040), - [anon_sym_LPAREN] = ACTIONS(1040), - [anon_sym_RPAREN] = ACTIONS(1040), - [anon_sym_DOLLAR] = ACTIONS(1038), - [anon_sym_DASH_DASH] = ACTIONS(1040), - [anon_sym_DASH] = ACTIONS(1038), - [anon_sym_LBRACE] = ACTIONS(1040), - [anon_sym_RBRACE] = ACTIONS(1040), - [anon_sym_DOT_DOT] = ACTIONS(1038), [anon_sym_QMARK2] = ACTIONS(1040), + [aux_sym_expr_binary_token1] = ACTIONS(1040), + [aux_sym_expr_binary_token2] = ACTIONS(1040), + [aux_sym_expr_binary_token3] = ACTIONS(1040), + [aux_sym_expr_binary_token4] = ACTIONS(1040), + [aux_sym_expr_binary_token5] = ACTIONS(1040), + [aux_sym_expr_binary_token6] = ACTIONS(1040), + [aux_sym_expr_binary_token7] = ACTIONS(1040), + [aux_sym_expr_binary_token8] = ACTIONS(1040), + [aux_sym_expr_binary_token9] = ACTIONS(1040), + [aux_sym_expr_binary_token10] = ACTIONS(1040), + [aux_sym_expr_binary_token11] = ACTIONS(1040), + [aux_sym_expr_binary_token12] = ACTIONS(1040), + [aux_sym_expr_binary_token13] = ACTIONS(1040), + [aux_sym_expr_binary_token14] = ACTIONS(1040), + [aux_sym_expr_binary_token15] = ACTIONS(1040), + [aux_sym_expr_binary_token16] = ACTIONS(1040), + [aux_sym_expr_binary_token17] = ACTIONS(1040), + [aux_sym_expr_binary_token18] = ACTIONS(1040), + [aux_sym_expr_binary_token19] = ACTIONS(1040), + [aux_sym_expr_binary_token20] = ACTIONS(1040), + [aux_sym_expr_binary_token21] = ACTIONS(1040), + [aux_sym_expr_binary_token22] = ACTIONS(1040), + [aux_sym_expr_binary_token23] = ACTIONS(1040), + [aux_sym_expr_binary_token24] = ACTIONS(1040), + [aux_sym_expr_binary_token25] = ACTIONS(1040), + [aux_sym_expr_binary_token26] = ACTIONS(1040), + [aux_sym_expr_binary_token27] = ACTIONS(1040), + [aux_sym_expr_binary_token28] = ACTIONS(1040), [anon_sym_DOT_DOT2] = ACTIONS(1038), [anon_sym_DOT] = ACTIONS(1038), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1038), - [anon_sym_DOT_DOT_LT] = ACTIONS(1038), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1040), [anon_sym_DOT_DOT_LT2] = ACTIONS(1040), - [aux_sym__val_number_decimal_token1] = ACTIONS(1038), - [aux_sym__val_number_decimal_token2] = ACTIONS(1040), - [aux_sym__val_number_decimal_token3] = ACTIONS(1040), - [aux_sym__val_number_decimal_token4] = ACTIONS(1040), - [aux_sym__val_number_token1] = ACTIONS(1040), - [aux_sym__val_number_token2] = ACTIONS(1040), - [aux_sym__val_number_token3] = ACTIONS(1040), - [anon_sym_0b] = ACTIONS(1038), - [anon_sym_0o] = ACTIONS(1038), - [anon_sym_0x] = ACTIONS(1038), - [sym_val_date] = ACTIONS(1040), - [anon_sym_DQUOTE] = ACTIONS(1040), - [sym__str_single_quotes] = ACTIONS(1040), - [sym__str_back_ticks] = ACTIONS(1040), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1040), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1040), [anon_sym_err_GT] = ACTIONS(1038), [anon_sym_out_GT] = ACTIONS(1038), [anon_sym_e_GT] = ACTIONS(1038), @@ -196415,157 +197916,229 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1040), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1040), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1040), - [aux_sym_unquoted_token1] = ACTIONS(1038), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), }, - [1266] = { - [sym_path] = STATE(1376), - [sym_comment] = STATE(1266), - [aux_sym_cell_path_repeat1] = STATE(1266), - [ts_builtin_sym_end] = ACTIONS(1017), - [anon_sym_true] = ACTIONS(1017), - [anon_sym_false] = ACTIONS(1017), - [anon_sym_null] = ACTIONS(1017), - [aux_sym_cmd_identifier_token38] = ACTIONS(1017), - [aux_sym_cmd_identifier_token39] = ACTIONS(1017), - [aux_sym_cmd_identifier_token40] = ACTIONS(1017), - [sym__newline] = ACTIONS(1017), - [anon_sym_SEMI] = ACTIONS(1017), - [anon_sym_PIPE] = ACTIONS(1017), - [anon_sym_err_GT_PIPE] = ACTIONS(1017), - [anon_sym_out_GT_PIPE] = ACTIONS(1017), - [anon_sym_e_GT_PIPE] = ACTIONS(1017), - [anon_sym_o_GT_PIPE] = ACTIONS(1017), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1017), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1017), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1017), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1017), - [anon_sym_LBRACK] = ACTIONS(1017), - [anon_sym_LPAREN] = ACTIONS(1017), - [anon_sym_DOLLAR] = ACTIONS(1015), - [anon_sym_DASH_DASH] = ACTIONS(1017), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_LBRACE] = ACTIONS(1017), - [anon_sym_DOT_DOT] = ACTIONS(1015), - [anon_sym_DOT_DOT2] = ACTIONS(1015), - [anon_sym_DOT] = ACTIONS(4569), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1015), - [anon_sym_DOT_DOT_LT] = ACTIONS(1015), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1017), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1017), - [aux_sym__val_number_decimal_token1] = ACTIONS(1015), - [aux_sym__val_number_decimal_token2] = ACTIONS(1017), - [aux_sym__val_number_decimal_token3] = ACTIONS(1017), - [aux_sym__val_number_decimal_token4] = ACTIONS(1017), - [aux_sym__val_number_token1] = ACTIONS(1017), - [aux_sym__val_number_token2] = ACTIONS(1017), - [aux_sym__val_number_token3] = ACTIONS(1017), - [anon_sym_0b] = ACTIONS(1015), - [anon_sym_0o] = ACTIONS(1015), - [anon_sym_0x] = ACTIONS(1015), - [sym_val_date] = ACTIONS(1017), - [anon_sym_DQUOTE] = ACTIONS(1017), - [sym__str_single_quotes] = ACTIONS(1017), - [sym__str_back_ticks] = ACTIONS(1017), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1017), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1017), - [anon_sym_err_GT] = ACTIONS(1015), - [anon_sym_out_GT] = ACTIONS(1015), - [anon_sym_e_GT] = ACTIONS(1015), - [anon_sym_o_GT] = ACTIONS(1015), - [anon_sym_err_PLUSout_GT] = ACTIONS(1015), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1015), - [anon_sym_o_PLUSe_GT] = ACTIONS(1015), - [anon_sym_e_PLUSo_GT] = ACTIONS(1015), - [anon_sym_err_GT_GT] = ACTIONS(1017), - [anon_sym_out_GT_GT] = ACTIONS(1017), - [anon_sym_e_GT_GT] = ACTIONS(1017), - [anon_sym_o_GT_GT] = ACTIONS(1017), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1017), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1017), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1017), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1017), - [aux_sym_unquoted_token1] = ACTIONS(1015), - [anon_sym_POUND] = ACTIONS(247), + [1246] = { + [sym_comment] = STATE(1246), + [ts_builtin_sym_end] = ACTIONS(1713), + [anon_sym_true] = ACTIONS(1713), + [anon_sym_false] = ACTIONS(1713), + [anon_sym_null] = ACTIONS(1713), + [aux_sym_cmd_identifier_token38] = ACTIONS(1713), + [aux_sym_cmd_identifier_token39] = ACTIONS(1713), + [aux_sym_cmd_identifier_token40] = ACTIONS(1713), + [sym__newline] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_err_GT_PIPE] = ACTIONS(1713), + [anon_sym_out_GT_PIPE] = ACTIONS(1713), + [anon_sym_e_GT_PIPE] = ACTIONS(1713), + [anon_sym_o_GT_PIPE] = ACTIONS(1713), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(1713), + [anon_sym_DOLLAR] = ACTIONS(1711), + [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1711), + [anon_sym_LBRACE] = ACTIONS(1713), + [anon_sym_DOT_DOT] = ACTIONS(1711), + [anon_sym_DOT_DOT2] = ACTIONS(1711), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1711), + [anon_sym_DOT_DOT_LT] = ACTIONS(1711), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), + [aux_sym__val_number_decimal_token1] = ACTIONS(1711), + [aux_sym__val_number_decimal_token2] = ACTIONS(1713), + [aux_sym__val_number_decimal_token3] = ACTIONS(1713), + [aux_sym__val_number_decimal_token4] = ACTIONS(1713), + [aux_sym__val_number_token1] = ACTIONS(1713), + [aux_sym__val_number_token2] = ACTIONS(1713), + [aux_sym__val_number_token3] = ACTIONS(1713), + [anon_sym_0b] = ACTIONS(1711), + [sym_filesize_unit] = ACTIONS(1713), + [sym_duration_unit] = ACTIONS(1713), + [anon_sym_0o] = ACTIONS(1711), + [anon_sym_0x] = ACTIONS(1711), + [sym_val_date] = ACTIONS(1713), + [anon_sym_DQUOTE] = ACTIONS(1713), + [sym__str_single_quotes] = ACTIONS(1713), + [sym__str_back_ticks] = ACTIONS(1713), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1713), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1713), + [anon_sym_err_GT] = ACTIONS(1711), + [anon_sym_out_GT] = ACTIONS(1711), + [anon_sym_e_GT] = ACTIONS(1711), + [anon_sym_o_GT] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT] = ACTIONS(1711), + [anon_sym_err_GT_GT] = ACTIONS(1713), + [anon_sym_out_GT_GT] = ACTIONS(1713), + [anon_sym_e_GT_GT] = ACTIONS(1713), + [anon_sym_o_GT_GT] = ACTIONS(1713), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), + [aux_sym_unquoted_token1] = ACTIONS(1711), + [aux_sym_unquoted_token2] = ACTIONS(1711), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1713), }, - [1267] = { - [sym_comment] = STATE(1267), - [anon_sym_EQ] = ACTIONS(1064), - [anon_sym_PLUS_EQ] = ACTIONS(1066), - [anon_sym_DASH_EQ] = ACTIONS(1066), - [anon_sym_STAR_EQ] = ACTIONS(1066), - [anon_sym_SLASH_EQ] = ACTIONS(1066), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1066), - [sym__newline] = ACTIONS(1070), - [anon_sym_SEMI] = ACTIONS(1072), - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_err_GT_PIPE] = ACTIONS(1072), - [anon_sym_out_GT_PIPE] = ACTIONS(1072), - [anon_sym_e_GT_PIPE] = ACTIONS(1072), - [anon_sym_o_GT_PIPE] = ACTIONS(1072), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1072), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1072), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1072), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1072), - [anon_sym_RBRACE] = ACTIONS(1072), - [aux_sym_expr_binary_token1] = ACTIONS(1072), - [aux_sym_expr_binary_token2] = ACTIONS(1072), - [aux_sym_expr_binary_token3] = ACTIONS(1072), - [aux_sym_expr_binary_token4] = ACTIONS(1072), - [aux_sym_expr_binary_token5] = ACTIONS(1072), - [aux_sym_expr_binary_token6] = ACTIONS(1072), - [aux_sym_expr_binary_token7] = ACTIONS(1072), - [aux_sym_expr_binary_token8] = ACTIONS(1072), - [aux_sym_expr_binary_token9] = ACTIONS(1072), - [aux_sym_expr_binary_token10] = ACTIONS(1072), - [aux_sym_expr_binary_token11] = ACTIONS(1072), - [aux_sym_expr_binary_token12] = ACTIONS(1072), - [aux_sym_expr_binary_token13] = ACTIONS(1072), - [aux_sym_expr_binary_token14] = ACTIONS(1072), - [aux_sym_expr_binary_token15] = ACTIONS(1072), - [aux_sym_expr_binary_token16] = ACTIONS(1072), - [aux_sym_expr_binary_token17] = ACTIONS(1072), - [aux_sym_expr_binary_token18] = ACTIONS(1072), - [aux_sym_expr_binary_token19] = ACTIONS(1072), - [aux_sym_expr_binary_token20] = ACTIONS(1072), - [aux_sym_expr_binary_token21] = ACTIONS(1072), - [aux_sym_expr_binary_token22] = ACTIONS(1072), - [aux_sym_expr_binary_token23] = ACTIONS(1072), - [aux_sym_expr_binary_token24] = ACTIONS(1072), - [aux_sym_expr_binary_token25] = ACTIONS(1072), - [aux_sym_expr_binary_token26] = ACTIONS(1072), - [aux_sym_expr_binary_token27] = ACTIONS(1072), - [aux_sym_expr_binary_token28] = ACTIONS(1072), - [anon_sym_DOT_DOT2] = ACTIONS(1079), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1081), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1081), - [aux_sym_record_entry_token1] = ACTIONS(4572), - [anon_sym_err_GT] = ACTIONS(1070), - [anon_sym_out_GT] = ACTIONS(1070), - [anon_sym_e_GT] = ACTIONS(1070), - [anon_sym_o_GT] = ACTIONS(1070), - [anon_sym_err_PLUSout_GT] = ACTIONS(1070), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1070), - [anon_sym_o_PLUSe_GT] = ACTIONS(1070), - [anon_sym_e_PLUSo_GT] = ACTIONS(1070), - [anon_sym_err_GT_GT] = ACTIONS(1072), - [anon_sym_out_GT_GT] = ACTIONS(1072), - [anon_sym_e_GT_GT] = ACTIONS(1072), - [anon_sym_o_GT_GT] = ACTIONS(1072), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1072), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1072), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1072), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1072), - [anon_sym_POUND] = ACTIONS(247), + [1247] = { + [sym_comment] = STATE(1247), + [anon_sym_EQ] = ACTIONS(1074), + [anon_sym_PLUS_EQ] = ACTIONS(1076), + [anon_sym_DASH_EQ] = ACTIONS(1076), + [anon_sym_STAR_EQ] = ACTIONS(1076), + [anon_sym_SLASH_EQ] = ACTIONS(1076), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1076), + [sym__newline] = ACTIONS(1076), + [anon_sym_SEMI] = ACTIONS(1076), + [anon_sym_PIPE] = ACTIONS(1076), + [anon_sym_err_GT_PIPE] = ACTIONS(1076), + [anon_sym_out_GT_PIPE] = ACTIONS(1076), + [anon_sym_e_GT_PIPE] = ACTIONS(1076), + [anon_sym_o_GT_PIPE] = ACTIONS(1076), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1076), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1076), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1076), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1076), + [anon_sym_RPAREN] = ACTIONS(1076), + [anon_sym_RBRACE] = ACTIONS(1076), + [aux_sym_expr_binary_token1] = ACTIONS(1076), + [aux_sym_expr_binary_token2] = ACTIONS(1076), + [aux_sym_expr_binary_token3] = ACTIONS(1076), + [aux_sym_expr_binary_token4] = ACTIONS(1076), + [aux_sym_expr_binary_token5] = ACTIONS(1076), + [aux_sym_expr_binary_token6] = ACTIONS(1076), + [aux_sym_expr_binary_token7] = ACTIONS(1076), + [aux_sym_expr_binary_token8] = ACTIONS(1076), + [aux_sym_expr_binary_token9] = ACTIONS(1076), + [aux_sym_expr_binary_token10] = ACTIONS(1076), + [aux_sym_expr_binary_token11] = ACTIONS(1076), + [aux_sym_expr_binary_token12] = ACTIONS(1076), + [aux_sym_expr_binary_token13] = ACTIONS(1076), + [aux_sym_expr_binary_token14] = ACTIONS(1076), + [aux_sym_expr_binary_token15] = ACTIONS(1076), + [aux_sym_expr_binary_token16] = ACTIONS(1076), + [aux_sym_expr_binary_token17] = ACTIONS(1076), + [aux_sym_expr_binary_token18] = ACTIONS(1076), + [aux_sym_expr_binary_token19] = ACTIONS(1076), + [aux_sym_expr_binary_token20] = ACTIONS(1076), + [aux_sym_expr_binary_token21] = ACTIONS(1076), + [aux_sym_expr_binary_token22] = ACTIONS(1076), + [aux_sym_expr_binary_token23] = ACTIONS(1076), + [aux_sym_expr_binary_token24] = ACTIONS(1076), + [aux_sym_expr_binary_token25] = ACTIONS(1076), + [aux_sym_expr_binary_token26] = ACTIONS(1076), + [aux_sym_expr_binary_token27] = ACTIONS(1076), + [aux_sym_expr_binary_token28] = ACTIONS(1076), + [anon_sym_DOT_DOT2] = ACTIONS(1074), + [anon_sym_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1076), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1076), + [anon_sym_err_GT] = ACTIONS(1074), + [anon_sym_out_GT] = ACTIONS(1074), + [anon_sym_e_GT] = ACTIONS(1074), + [anon_sym_o_GT] = ACTIONS(1074), + [anon_sym_err_PLUSout_GT] = ACTIONS(1074), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1074), + [anon_sym_o_PLUSe_GT] = ACTIONS(1074), + [anon_sym_e_PLUSo_GT] = ACTIONS(1074), + [anon_sym_err_GT_GT] = ACTIONS(1076), + [anon_sym_out_GT_GT] = ACTIONS(1076), + [anon_sym_e_GT_GT] = ACTIONS(1076), + [anon_sym_o_GT_GT] = ACTIONS(1076), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1076), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1076), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1076), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1076), + [anon_sym_POUND] = ACTIONS(249), }, - [1268] = { - [sym_comment] = STATE(1268), - [anon_sym_EQ] = ACTIONS(1064), - [anon_sym_PLUS_EQ] = ACTIONS(1066), - [anon_sym_DASH_EQ] = ACTIONS(1066), - [anon_sym_STAR_EQ] = ACTIONS(1066), - [anon_sym_SLASH_EQ] = ACTIONS(1066), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1066), + [1248] = { + [sym_comment] = STATE(1248), + [anon_sym_EQ] = ACTIONS(1066), + [anon_sym_PLUS_EQ] = ACTIONS(1068), + [anon_sym_DASH_EQ] = ACTIONS(1068), + [anon_sym_STAR_EQ] = ACTIONS(1068), + [anon_sym_SLASH_EQ] = ACTIONS(1068), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1068), + [sym__newline] = ACTIONS(1068), + [anon_sym_SEMI] = ACTIONS(1068), + [anon_sym_PIPE] = ACTIONS(1068), + [anon_sym_err_GT_PIPE] = ACTIONS(1068), + [anon_sym_out_GT_PIPE] = ACTIONS(1068), + [anon_sym_e_GT_PIPE] = ACTIONS(1068), + [anon_sym_o_GT_PIPE] = ACTIONS(1068), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1068), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1068), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1068), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1068), + [anon_sym_RPAREN] = ACTIONS(1068), + [anon_sym_RBRACE] = ACTIONS(1068), + [aux_sym_expr_binary_token1] = ACTIONS(1068), + [aux_sym_expr_binary_token2] = ACTIONS(1068), + [aux_sym_expr_binary_token3] = ACTIONS(1068), + [aux_sym_expr_binary_token4] = ACTIONS(1068), + [aux_sym_expr_binary_token5] = ACTIONS(1068), + [aux_sym_expr_binary_token6] = ACTIONS(1068), + [aux_sym_expr_binary_token7] = ACTIONS(1068), + [aux_sym_expr_binary_token8] = ACTIONS(1068), + [aux_sym_expr_binary_token9] = ACTIONS(1068), + [aux_sym_expr_binary_token10] = ACTIONS(1068), + [aux_sym_expr_binary_token11] = ACTIONS(1068), + [aux_sym_expr_binary_token12] = ACTIONS(1068), + [aux_sym_expr_binary_token13] = ACTIONS(1068), + [aux_sym_expr_binary_token14] = ACTIONS(1068), + [aux_sym_expr_binary_token15] = ACTIONS(1068), + [aux_sym_expr_binary_token16] = ACTIONS(1068), + [aux_sym_expr_binary_token17] = ACTIONS(1068), + [aux_sym_expr_binary_token18] = ACTIONS(1068), + [aux_sym_expr_binary_token19] = ACTIONS(1068), + [aux_sym_expr_binary_token20] = ACTIONS(1068), + [aux_sym_expr_binary_token21] = ACTIONS(1068), + [aux_sym_expr_binary_token22] = ACTIONS(1068), + [aux_sym_expr_binary_token23] = ACTIONS(1068), + [aux_sym_expr_binary_token24] = ACTIONS(1068), + [aux_sym_expr_binary_token25] = ACTIONS(1068), + [aux_sym_expr_binary_token26] = ACTIONS(1068), + [aux_sym_expr_binary_token27] = ACTIONS(1068), + [aux_sym_expr_binary_token28] = ACTIONS(1068), + [anon_sym_DOT_DOT2] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(1066), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1068), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1068), + [anon_sym_err_GT] = ACTIONS(1066), + [anon_sym_out_GT] = ACTIONS(1066), + [anon_sym_e_GT] = ACTIONS(1066), + [anon_sym_o_GT] = ACTIONS(1066), + [anon_sym_err_PLUSout_GT] = ACTIONS(1066), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1066), + [anon_sym_o_PLUSe_GT] = ACTIONS(1066), + [anon_sym_e_PLUSo_GT] = ACTIONS(1066), + [anon_sym_err_GT_GT] = ACTIONS(1068), + [anon_sym_out_GT_GT] = ACTIONS(1068), + [anon_sym_e_GT_GT] = ACTIONS(1068), + [anon_sym_o_GT_GT] = ACTIONS(1068), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1068), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1068), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1068), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1068), + [anon_sym_POUND] = ACTIONS(249), + }, + [1249] = { + [sym_comment] = STATE(1249), + [anon_sym_EQ] = ACTIONS(1070), + [anon_sym_PLUS_EQ] = ACTIONS(1072), + [anon_sym_DASH_EQ] = ACTIONS(1072), + [anon_sym_STAR_EQ] = ACTIONS(1072), + [anon_sym_SLASH_EQ] = ACTIONS(1072), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1072), [sym__newline] = ACTIONS(1072), [anon_sym_SEMI] = ACTIONS(1072), [anon_sym_PIPE] = ACTIONS(1072), @@ -196607,9 +198180,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_binary_token26] = ACTIONS(1072), [aux_sym_expr_binary_token27] = ACTIONS(1072), [aux_sym_expr_binary_token28] = ACTIONS(1072), - [anon_sym_DOT_DOT2] = ACTIONS(1079), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1081), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1081), + [anon_sym_DOT_DOT2] = ACTIONS(1070), + [anon_sym_DOT] = ACTIONS(1070), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1072), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1072), [anon_sym_err_GT] = ACTIONS(1070), [anon_sym_out_GT] = ACTIONS(1070), [anon_sym_e_GT] = ACTIONS(1070), @@ -196626,984 +198200,294 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1072), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1072), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1072), - [anon_sym_POUND] = ACTIONS(247), - }, - [1269] = { - [sym_comment] = STATE(1269), - [ts_builtin_sym_end] = ACTIONS(1542), - [anon_sym_true] = ACTIONS(1542), - [anon_sym_false] = ACTIONS(1542), - [anon_sym_null] = ACTIONS(1542), - [aux_sym_cmd_identifier_token38] = ACTIONS(1542), - [aux_sym_cmd_identifier_token39] = ACTIONS(1542), - [aux_sym_cmd_identifier_token40] = ACTIONS(1542), - [sym__newline] = ACTIONS(1542), - [anon_sym_SEMI] = ACTIONS(1542), - [anon_sym_PIPE] = ACTIONS(1542), - [anon_sym_err_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_GT_PIPE] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1542), - [anon_sym_LBRACK] = ACTIONS(1542), - [anon_sym_LPAREN] = ACTIONS(1542), - [anon_sym_DOLLAR] = ACTIONS(1540), - [anon_sym_DASH_DASH] = ACTIONS(1542), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_LBRACE] = ACTIONS(1542), - [anon_sym_DOT_DOT] = ACTIONS(1540), - [anon_sym_DOT_DOT2] = ACTIONS(1540), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1540), - [anon_sym_DOT_DOT_LT] = ACTIONS(1540), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1542), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1542), - [aux_sym__val_number_decimal_token1] = ACTIONS(1540), - [aux_sym__val_number_decimal_token2] = ACTIONS(1542), - [aux_sym__val_number_decimal_token3] = ACTIONS(1542), - [aux_sym__val_number_decimal_token4] = ACTIONS(1542), - [aux_sym__val_number_token1] = ACTIONS(1542), - [aux_sym__val_number_token2] = ACTIONS(1542), - [aux_sym__val_number_token3] = ACTIONS(1542), - [anon_sym_0b] = ACTIONS(1540), - [sym_filesize_unit] = ACTIONS(1542), - [sym_duration_unit] = ACTIONS(1542), - [anon_sym_0o] = ACTIONS(1540), - [anon_sym_0x] = ACTIONS(1540), - [sym_val_date] = ACTIONS(1542), - [anon_sym_DQUOTE] = ACTIONS(1542), - [sym__str_single_quotes] = ACTIONS(1542), - [sym__str_back_ticks] = ACTIONS(1542), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1542), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1542), - [anon_sym_err_GT] = ACTIONS(1540), - [anon_sym_out_GT] = ACTIONS(1540), - [anon_sym_e_GT] = ACTIONS(1540), - [anon_sym_o_GT] = ACTIONS(1540), - [anon_sym_err_PLUSout_GT] = ACTIONS(1540), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1540), - [anon_sym_o_PLUSe_GT] = ACTIONS(1540), - [anon_sym_e_PLUSo_GT] = ACTIONS(1540), - [anon_sym_err_GT_GT] = ACTIONS(1542), - [anon_sym_out_GT_GT] = ACTIONS(1542), - [anon_sym_e_GT_GT] = ACTIONS(1542), - [anon_sym_o_GT_GT] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1542), - [aux_sym_unquoted_token1] = ACTIONS(1540), - [aux_sym_unquoted_token2] = ACTIONS(1540), - [anon_sym_POUND] = ACTIONS(247), - }, - [1270] = { - [sym_comment] = STATE(1270), - [anon_sym_true] = ACTIONS(1796), - [anon_sym_false] = ACTIONS(1796), - [anon_sym_null] = ACTIONS(1796), - [aux_sym_cmd_identifier_token38] = ACTIONS(1796), - [aux_sym_cmd_identifier_token39] = ACTIONS(1796), - [aux_sym_cmd_identifier_token40] = ACTIONS(1796), - [sym__newline] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1796), - [anon_sym_PIPE] = ACTIONS(1796), - [anon_sym_err_GT_PIPE] = ACTIONS(1796), - [anon_sym_out_GT_PIPE] = ACTIONS(1796), - [anon_sym_e_GT_PIPE] = ACTIONS(1796), - [anon_sym_o_GT_PIPE] = ACTIONS(1796), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1796), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1796), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1796), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1796), - [anon_sym_LBRACK] = ACTIONS(1796), - [anon_sym_LPAREN] = ACTIONS(1788), - [anon_sym_RPAREN] = ACTIONS(1796), - [anon_sym_DOLLAR] = ACTIONS(1788), - [anon_sym_DASH_DASH] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_LBRACE] = ACTIONS(1796), - [anon_sym_RBRACE] = ACTIONS(1796), - [anon_sym_DOT_DOT] = ACTIONS(1788), - [anon_sym_LPAREN2] = ACTIONS(1790), - [anon_sym_DOT_DOT2] = ACTIONS(4574), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1788), - [anon_sym_DOT_DOT_LT] = ACTIONS(1788), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4576), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4576), - [aux_sym__val_number_decimal_token1] = ACTIONS(1788), - [aux_sym__val_number_decimal_token2] = ACTIONS(1796), - [aux_sym__val_number_decimal_token3] = ACTIONS(1796), - [aux_sym__val_number_decimal_token4] = ACTIONS(1796), - [aux_sym__val_number_token1] = ACTIONS(1796), - [aux_sym__val_number_token2] = ACTIONS(1796), - [aux_sym__val_number_token3] = ACTIONS(1796), - [anon_sym_0b] = ACTIONS(1788), - [anon_sym_0o] = ACTIONS(1788), - [anon_sym_0x] = ACTIONS(1788), - [sym_val_date] = ACTIONS(1796), - [anon_sym_DQUOTE] = ACTIONS(1796), - [sym__str_single_quotes] = ACTIONS(1796), - [sym__str_back_ticks] = ACTIONS(1796), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1796), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1796), - [anon_sym_err_GT] = ACTIONS(1788), - [anon_sym_out_GT] = ACTIONS(1788), - [anon_sym_e_GT] = ACTIONS(1788), - [anon_sym_o_GT] = ACTIONS(1788), - [anon_sym_err_PLUSout_GT] = ACTIONS(1788), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1788), - [anon_sym_o_PLUSe_GT] = ACTIONS(1788), - [anon_sym_e_PLUSo_GT] = ACTIONS(1788), - [anon_sym_err_GT_GT] = ACTIONS(1796), - [anon_sym_out_GT_GT] = ACTIONS(1796), - [anon_sym_e_GT_GT] = ACTIONS(1796), - [anon_sym_o_GT_GT] = ACTIONS(1796), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1796), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1796), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1796), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1796), - [aux_sym_unquoted_token1] = ACTIONS(1788), - [aux_sym_unquoted_token2] = ACTIONS(1798), - [anon_sym_POUND] = ACTIONS(247), - }, - [1271] = { - [sym_comment] = STATE(1271), - [sym__newline] = ACTIONS(1520), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_err_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_GT_PIPE] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1520), - [anon_sym_RPAREN] = ACTIONS(1520), - [anon_sym_RBRACE] = ACTIONS(1520), - [anon_sym_LPAREN2] = ACTIONS(1520), - [aux_sym_expr_binary_token1] = ACTIONS(1520), - [aux_sym_expr_binary_token2] = ACTIONS(1520), - [aux_sym_expr_binary_token3] = ACTIONS(1520), - [aux_sym_expr_binary_token4] = ACTIONS(1520), - [aux_sym_expr_binary_token5] = ACTIONS(1520), - [aux_sym_expr_binary_token6] = ACTIONS(1520), - [aux_sym_expr_binary_token7] = ACTIONS(1520), - [aux_sym_expr_binary_token8] = ACTIONS(1520), - [aux_sym_expr_binary_token9] = ACTIONS(1520), - [aux_sym_expr_binary_token10] = ACTIONS(1520), - [aux_sym_expr_binary_token11] = ACTIONS(1520), - [aux_sym_expr_binary_token12] = ACTIONS(1520), - [aux_sym_expr_binary_token13] = ACTIONS(1520), - [aux_sym_expr_binary_token14] = ACTIONS(1520), - [aux_sym_expr_binary_token15] = ACTIONS(1520), - [aux_sym_expr_binary_token16] = ACTIONS(1520), - [aux_sym_expr_binary_token17] = ACTIONS(1520), - [aux_sym_expr_binary_token18] = ACTIONS(1520), - [aux_sym_expr_binary_token19] = ACTIONS(1520), - [aux_sym_expr_binary_token20] = ACTIONS(1520), - [aux_sym_expr_binary_token21] = ACTIONS(1520), - [aux_sym_expr_binary_token22] = ACTIONS(1520), - [aux_sym_expr_binary_token23] = ACTIONS(1520), - [aux_sym_expr_binary_token24] = ACTIONS(1520), - [aux_sym_expr_binary_token25] = ACTIONS(1520), - [aux_sym_expr_binary_token26] = ACTIONS(1520), - [aux_sym_expr_binary_token27] = ACTIONS(1520), - [aux_sym_expr_binary_token28] = ACTIONS(1520), - [anon_sym_DOT_DOT2] = ACTIONS(1518), - [anon_sym_DOT] = ACTIONS(4578), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), - [aux_sym__immediate_decimal_token2] = ACTIONS(4580), - [sym_filesize_unit] = ACTIONS(1520), - [sym_duration_unit] = ACTIONS(1520), - [anon_sym_err_GT] = ACTIONS(1518), - [anon_sym_out_GT] = ACTIONS(1518), - [anon_sym_e_GT] = ACTIONS(1518), - [anon_sym_o_GT] = ACTIONS(1518), - [anon_sym_err_PLUSout_GT] = ACTIONS(1518), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), - [anon_sym_o_PLUSe_GT] = ACTIONS(1518), - [anon_sym_e_PLUSo_GT] = ACTIONS(1518), - [anon_sym_err_GT_GT] = ACTIONS(1520), - [anon_sym_out_GT_GT] = ACTIONS(1520), - [anon_sym_e_GT_GT] = ACTIONS(1520), - [anon_sym_o_GT_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1520), - [aux_sym_unquoted_token2] = ACTIONS(1518), - [anon_sym_POUND] = ACTIONS(247), - }, - [1272] = { - [sym_comment] = STATE(1272), - [sym__newline] = ACTIONS(1542), - [anon_sym_SEMI] = ACTIONS(1542), - [anon_sym_PIPE] = ACTIONS(1542), - [anon_sym_err_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_GT_PIPE] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1542), - [anon_sym_RPAREN] = ACTIONS(1542), - [anon_sym_RBRACE] = ACTIONS(1542), - [anon_sym_LPAREN2] = ACTIONS(1542), - [aux_sym_expr_binary_token1] = ACTIONS(1542), - [aux_sym_expr_binary_token2] = ACTIONS(1542), - [aux_sym_expr_binary_token3] = ACTIONS(1542), - [aux_sym_expr_binary_token4] = ACTIONS(1542), - [aux_sym_expr_binary_token5] = ACTIONS(1542), - [aux_sym_expr_binary_token6] = ACTIONS(1542), - [aux_sym_expr_binary_token7] = ACTIONS(1542), - [aux_sym_expr_binary_token8] = ACTIONS(1542), - [aux_sym_expr_binary_token9] = ACTIONS(1542), - [aux_sym_expr_binary_token10] = ACTIONS(1542), - [aux_sym_expr_binary_token11] = ACTIONS(1542), - [aux_sym_expr_binary_token12] = ACTIONS(1542), - [aux_sym_expr_binary_token13] = ACTIONS(1542), - [aux_sym_expr_binary_token14] = ACTIONS(1542), - [aux_sym_expr_binary_token15] = ACTIONS(1542), - [aux_sym_expr_binary_token16] = ACTIONS(1542), - [aux_sym_expr_binary_token17] = ACTIONS(1542), - [aux_sym_expr_binary_token18] = ACTIONS(1542), - [aux_sym_expr_binary_token19] = ACTIONS(1542), - [aux_sym_expr_binary_token20] = ACTIONS(1542), - [aux_sym_expr_binary_token21] = ACTIONS(1542), - [aux_sym_expr_binary_token22] = ACTIONS(1542), - [aux_sym_expr_binary_token23] = ACTIONS(1542), - [aux_sym_expr_binary_token24] = ACTIONS(1542), - [aux_sym_expr_binary_token25] = ACTIONS(1542), - [aux_sym_expr_binary_token26] = ACTIONS(1542), - [aux_sym_expr_binary_token27] = ACTIONS(1542), - [aux_sym_expr_binary_token28] = ACTIONS(1542), - [anon_sym_DOT_DOT2] = ACTIONS(1540), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1542), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1542), - [aux_sym__immediate_decimal_token1] = ACTIONS(4582), - [aux_sym__immediate_decimal_token2] = ACTIONS(4584), - [sym_filesize_unit] = ACTIONS(1542), - [sym_duration_unit] = ACTIONS(1542), - [anon_sym_err_GT] = ACTIONS(1540), - [anon_sym_out_GT] = ACTIONS(1540), - [anon_sym_e_GT] = ACTIONS(1540), - [anon_sym_o_GT] = ACTIONS(1540), - [anon_sym_err_PLUSout_GT] = ACTIONS(1540), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1540), - [anon_sym_o_PLUSe_GT] = ACTIONS(1540), - [anon_sym_e_PLUSo_GT] = ACTIONS(1540), - [anon_sym_err_GT_GT] = ACTIONS(1542), - [anon_sym_out_GT_GT] = ACTIONS(1542), - [anon_sym_e_GT_GT] = ACTIONS(1542), - [anon_sym_o_GT_GT] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1542), - [aux_sym_unquoted_token2] = ACTIONS(1540), - [anon_sym_POUND] = ACTIONS(247), - }, - [1273] = { - [sym_comment] = STATE(1273), - [ts_builtin_sym_end] = ACTIONS(1723), - [anon_sym_true] = ACTIONS(1723), - [anon_sym_false] = ACTIONS(1723), - [anon_sym_null] = ACTIONS(1723), - [aux_sym_cmd_identifier_token38] = ACTIONS(1723), - [aux_sym_cmd_identifier_token39] = ACTIONS(1723), - [aux_sym_cmd_identifier_token40] = ACTIONS(1723), - [sym__newline] = ACTIONS(1723), - [anon_sym_SEMI] = ACTIONS(1723), - [anon_sym_PIPE] = ACTIONS(1723), - [anon_sym_err_GT_PIPE] = ACTIONS(1723), - [anon_sym_out_GT_PIPE] = ACTIONS(1723), - [anon_sym_e_GT_PIPE] = ACTIONS(1723), - [anon_sym_o_GT_PIPE] = ACTIONS(1723), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1723), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1723), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1723), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1723), - [anon_sym_LBRACK] = ACTIONS(1723), - [anon_sym_LPAREN] = ACTIONS(1721), - [anon_sym_DOLLAR] = ACTIONS(1721), - [anon_sym_DASH_DASH] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1723), - [anon_sym_DOT_DOT] = ACTIONS(1721), - [anon_sym_LPAREN2] = ACTIONS(1723), - [anon_sym_DOT_DOT2] = ACTIONS(1721), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1721), - [anon_sym_DOT_DOT_LT] = ACTIONS(1721), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1723), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1723), - [aux_sym__immediate_decimal_token2] = ACTIONS(4586), - [aux_sym__val_number_decimal_token1] = ACTIONS(1721), - [aux_sym__val_number_decimal_token2] = ACTIONS(1723), - [aux_sym__val_number_decimal_token3] = ACTIONS(1723), - [aux_sym__val_number_decimal_token4] = ACTIONS(1723), - [aux_sym__val_number_token1] = ACTIONS(1723), - [aux_sym__val_number_token2] = ACTIONS(1723), - [aux_sym__val_number_token3] = ACTIONS(1723), - [anon_sym_0b] = ACTIONS(1721), - [anon_sym_0o] = ACTIONS(1721), - [anon_sym_0x] = ACTIONS(1721), - [sym_val_date] = ACTIONS(1723), - [anon_sym_DQUOTE] = ACTIONS(1723), - [sym__str_single_quotes] = ACTIONS(1723), - [sym__str_back_ticks] = ACTIONS(1723), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1723), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1723), - [anon_sym_err_GT] = ACTIONS(1721), - [anon_sym_out_GT] = ACTIONS(1721), - [anon_sym_e_GT] = ACTIONS(1721), - [anon_sym_o_GT] = ACTIONS(1721), - [anon_sym_err_PLUSout_GT] = ACTIONS(1721), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1721), - [anon_sym_o_PLUSe_GT] = ACTIONS(1721), - [anon_sym_e_PLUSo_GT] = ACTIONS(1721), - [anon_sym_err_GT_GT] = ACTIONS(1723), - [anon_sym_out_GT_GT] = ACTIONS(1723), - [anon_sym_e_GT_GT] = ACTIONS(1723), - [anon_sym_o_GT_GT] = ACTIONS(1723), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1723), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1723), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1723), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1723), - [aux_sym_unquoted_token1] = ACTIONS(1721), - [aux_sym_unquoted_token2] = ACTIONS(1721), - [anon_sym_POUND] = ACTIONS(247), - }, - [1274] = { - [sym_comment] = STATE(1274), - [ts_builtin_sym_end] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1556), - [anon_sym_false] = ACTIONS(1556), - [anon_sym_null] = ACTIONS(1556), - [aux_sym_cmd_identifier_token38] = ACTIONS(1556), - [aux_sym_cmd_identifier_token39] = ACTIONS(1556), - [aux_sym_cmd_identifier_token40] = ACTIONS(1556), - [sym__newline] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1556), - [anon_sym_PIPE] = ACTIONS(1556), - [anon_sym_err_GT_PIPE] = ACTIONS(1556), - [anon_sym_out_GT_PIPE] = ACTIONS(1556), - [anon_sym_e_GT_PIPE] = ACTIONS(1556), - [anon_sym_o_GT_PIPE] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1556), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_DOLLAR] = ACTIONS(1554), - [anon_sym_DASH_DASH] = ACTIONS(1556), - [anon_sym_DASH] = ACTIONS(1554), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_DOT_DOT] = ACTIONS(1554), - [anon_sym_DOT_DOT2] = ACTIONS(1554), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1554), - [anon_sym_DOT_DOT_LT] = ACTIONS(1554), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1556), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1556), - [aux_sym__val_number_decimal_token1] = ACTIONS(1554), - [aux_sym__val_number_decimal_token2] = ACTIONS(1556), - [aux_sym__val_number_decimal_token3] = ACTIONS(1556), - [aux_sym__val_number_decimal_token4] = ACTIONS(1556), - [aux_sym__val_number_token1] = ACTIONS(1556), - [aux_sym__val_number_token2] = ACTIONS(1556), - [aux_sym__val_number_token3] = ACTIONS(1556), - [anon_sym_0b] = ACTIONS(1554), - [sym_filesize_unit] = ACTIONS(1556), - [sym_duration_unit] = ACTIONS(1556), - [anon_sym_0o] = ACTIONS(1554), - [anon_sym_0x] = ACTIONS(1554), - [sym_val_date] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1556), - [sym__str_single_quotes] = ACTIONS(1556), - [sym__str_back_ticks] = ACTIONS(1556), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1556), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1556), - [anon_sym_err_GT] = ACTIONS(1554), - [anon_sym_out_GT] = ACTIONS(1554), - [anon_sym_e_GT] = ACTIONS(1554), - [anon_sym_o_GT] = ACTIONS(1554), - [anon_sym_err_PLUSout_GT] = ACTIONS(1554), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1554), - [anon_sym_o_PLUSe_GT] = ACTIONS(1554), - [anon_sym_e_PLUSo_GT] = ACTIONS(1554), - [anon_sym_err_GT_GT] = ACTIONS(1556), - [anon_sym_out_GT_GT] = ACTIONS(1556), - [anon_sym_e_GT_GT] = ACTIONS(1556), - [anon_sym_o_GT_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1556), - [aux_sym_unquoted_token1] = ACTIONS(1554), - [aux_sym_unquoted_token2] = ACTIONS(1554), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), }, - [1275] = { - [sym_comment] = STATE(1275), - [ts_builtin_sym_end] = ACTIONS(1052), - [anon_sym_EQ] = ACTIONS(1050), - [anon_sym_PLUS_EQ] = ACTIONS(1052), - [anon_sym_DASH_EQ] = ACTIONS(1052), - [anon_sym_STAR_EQ] = ACTIONS(1052), - [anon_sym_SLASH_EQ] = ACTIONS(1052), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1052), - [sym__newline] = ACTIONS(1052), - [anon_sym_SEMI] = ACTIONS(1052), - [anon_sym_PIPE] = ACTIONS(1052), - [anon_sym_err_GT_PIPE] = ACTIONS(1052), - [anon_sym_out_GT_PIPE] = ACTIONS(1052), - [anon_sym_e_GT_PIPE] = ACTIONS(1052), - [anon_sym_o_GT_PIPE] = ACTIONS(1052), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1052), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1052), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1052), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1052), - [aux_sym_expr_binary_token1] = ACTIONS(1052), - [aux_sym_expr_binary_token2] = ACTIONS(1052), - [aux_sym_expr_binary_token3] = ACTIONS(1052), - [aux_sym_expr_binary_token4] = ACTIONS(1052), - [aux_sym_expr_binary_token5] = ACTIONS(1052), - [aux_sym_expr_binary_token6] = ACTIONS(1052), - [aux_sym_expr_binary_token7] = ACTIONS(1052), - [aux_sym_expr_binary_token8] = ACTIONS(1052), - [aux_sym_expr_binary_token9] = ACTIONS(1052), - [aux_sym_expr_binary_token10] = ACTIONS(1052), - [aux_sym_expr_binary_token11] = ACTIONS(1052), - [aux_sym_expr_binary_token12] = ACTIONS(1052), - [aux_sym_expr_binary_token13] = ACTIONS(1052), - [aux_sym_expr_binary_token14] = ACTIONS(1052), - [aux_sym_expr_binary_token15] = ACTIONS(1052), - [aux_sym_expr_binary_token16] = ACTIONS(1052), - [aux_sym_expr_binary_token17] = ACTIONS(1052), - [aux_sym_expr_binary_token18] = ACTIONS(1052), - [aux_sym_expr_binary_token19] = ACTIONS(1052), - [aux_sym_expr_binary_token20] = ACTIONS(1052), - [aux_sym_expr_binary_token21] = ACTIONS(1052), - [aux_sym_expr_binary_token22] = ACTIONS(1052), - [aux_sym_expr_binary_token23] = ACTIONS(1052), - [aux_sym_expr_binary_token24] = ACTIONS(1052), - [aux_sym_expr_binary_token25] = ACTIONS(1052), - [aux_sym_expr_binary_token26] = ACTIONS(1052), - [aux_sym_expr_binary_token27] = ACTIONS(1052), - [aux_sym_expr_binary_token28] = ACTIONS(1052), - [anon_sym_DOT_DOT2] = ACTIONS(1050), - [anon_sym_DOT] = ACTIONS(1050), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1052), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1052), - [anon_sym_err_GT] = ACTIONS(1050), - [anon_sym_out_GT] = ACTIONS(1050), - [anon_sym_e_GT] = ACTIONS(1050), - [anon_sym_o_GT] = ACTIONS(1050), - [anon_sym_err_PLUSout_GT] = ACTIONS(1050), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1050), - [anon_sym_o_PLUSe_GT] = ACTIONS(1050), - [anon_sym_e_PLUSo_GT] = ACTIONS(1050), - [anon_sym_err_GT_GT] = ACTIONS(1052), - [anon_sym_out_GT_GT] = ACTIONS(1052), - [anon_sym_e_GT_GT] = ACTIONS(1052), - [anon_sym_o_GT_GT] = ACTIONS(1052), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1052), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1052), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1052), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1052), - [anon_sym_POUND] = ACTIONS(247), - }, - [1276] = { - [sym_cell_path] = STATE(1375), - [sym_path] = STATE(1135), - [sym_comment] = STATE(1276), - [aux_sym_cell_path_repeat1] = STATE(1078), - [sym__newline] = ACTIONS(1675), - [anon_sym_SEMI] = ACTIONS(1677), - [anon_sym_PIPE] = ACTIONS(1677), - [anon_sym_err_GT_PIPE] = ACTIONS(1677), - [anon_sym_out_GT_PIPE] = ACTIONS(1677), - [anon_sym_e_GT_PIPE] = ACTIONS(1677), - [anon_sym_o_GT_PIPE] = ACTIONS(1677), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1677), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1677), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1677), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1677), - [anon_sym_RBRACE] = ACTIONS(1677), - [aux_sym_expr_binary_token1] = ACTIONS(1677), - [aux_sym_expr_binary_token2] = ACTIONS(1677), - [aux_sym_expr_binary_token3] = ACTIONS(1677), - [aux_sym_expr_binary_token4] = ACTIONS(1677), - [aux_sym_expr_binary_token5] = ACTIONS(1677), - [aux_sym_expr_binary_token6] = ACTIONS(1677), - [aux_sym_expr_binary_token7] = ACTIONS(1677), - [aux_sym_expr_binary_token8] = ACTIONS(1677), - [aux_sym_expr_binary_token9] = ACTIONS(1677), - [aux_sym_expr_binary_token10] = ACTIONS(1677), - [aux_sym_expr_binary_token11] = ACTIONS(1677), - [aux_sym_expr_binary_token12] = ACTIONS(1677), - [aux_sym_expr_binary_token13] = ACTIONS(1677), - [aux_sym_expr_binary_token14] = ACTIONS(1677), - [aux_sym_expr_binary_token15] = ACTIONS(1677), - [aux_sym_expr_binary_token16] = ACTIONS(1677), - [aux_sym_expr_binary_token17] = ACTIONS(1677), - [aux_sym_expr_binary_token18] = ACTIONS(1677), - [aux_sym_expr_binary_token19] = ACTIONS(1677), - [aux_sym_expr_binary_token20] = ACTIONS(1677), - [aux_sym_expr_binary_token21] = ACTIONS(1677), - [aux_sym_expr_binary_token22] = ACTIONS(1677), - [aux_sym_expr_binary_token23] = ACTIONS(1677), - [aux_sym_expr_binary_token24] = ACTIONS(1677), - [aux_sym_expr_binary_token25] = ACTIONS(1677), - [aux_sym_expr_binary_token26] = ACTIONS(1677), - [aux_sym_expr_binary_token27] = ACTIONS(1677), - [aux_sym_expr_binary_token28] = ACTIONS(1677), - [anon_sym_DOT_DOT2] = ACTIONS(1675), - [anon_sym_DOT] = ACTIONS(3693), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1677), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1677), - [aux_sym_record_entry_token1] = ACTIONS(1677), - [anon_sym_err_GT] = ACTIONS(1675), - [anon_sym_out_GT] = ACTIONS(1675), - [anon_sym_e_GT] = ACTIONS(1675), - [anon_sym_o_GT] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT] = ACTIONS(1675), - [anon_sym_err_GT_GT] = ACTIONS(1677), - [anon_sym_out_GT_GT] = ACTIONS(1677), - [anon_sym_e_GT_GT] = ACTIONS(1677), - [anon_sym_o_GT_GT] = ACTIONS(1677), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1677), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1677), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1677), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1677), - [anon_sym_POUND] = ACTIONS(247), - }, - [1277] = { - [sym_comment] = STATE(1277), - [sym__newline] = ACTIONS(1518), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_err_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_GT_PIPE] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1520), - [anon_sym_RPAREN] = ACTIONS(1520), - [anon_sym_LPAREN2] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1520), - [anon_sym_DOT_DOT2] = ACTIONS(1518), - [anon_sym_DOT] = ACTIONS(4588), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), - [aux_sym__immediate_decimal_token2] = ACTIONS(4590), - [sym_filesize_unit] = ACTIONS(1520), - [sym_duration_unit] = ACTIONS(1520), - [anon_sym_err_GT] = ACTIONS(1518), - [anon_sym_out_GT] = ACTIONS(1518), - [anon_sym_e_GT] = ACTIONS(1518), - [anon_sym_o_GT] = ACTIONS(1518), - [anon_sym_err_PLUSout_GT] = ACTIONS(1518), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), - [anon_sym_o_PLUSe_GT] = ACTIONS(1518), - [anon_sym_e_PLUSo_GT] = ACTIONS(1518), - [anon_sym_err_GT_GT] = ACTIONS(1520), - [anon_sym_out_GT_GT] = ACTIONS(1520), - [anon_sym_e_GT_GT] = ACTIONS(1520), - [anon_sym_o_GT_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1520), - [aux_sym_unquoted_token2] = ACTIONS(1518), - [anon_sym_POUND] = ACTIONS(247), - }, - [1278] = { - [sym_comment] = STATE(1278), - [sym__newline] = ACTIONS(1540), - [anon_sym_SEMI] = ACTIONS(1542), - [anon_sym_PIPE] = ACTIONS(1542), - [anon_sym_err_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_GT_PIPE] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1542), - [anon_sym_RPAREN] = ACTIONS(1542), - [anon_sym_LPAREN2] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1542), - [anon_sym_DOT_DOT2] = ACTIONS(1540), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1542), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1542), - [aux_sym__immediate_decimal_token1] = ACTIONS(4592), - [aux_sym__immediate_decimal_token2] = ACTIONS(4594), - [sym_filesize_unit] = ACTIONS(1542), - [sym_duration_unit] = ACTIONS(1542), - [anon_sym_err_GT] = ACTIONS(1540), - [anon_sym_out_GT] = ACTIONS(1540), - [anon_sym_e_GT] = ACTIONS(1540), - [anon_sym_o_GT] = ACTIONS(1540), - [anon_sym_err_PLUSout_GT] = ACTIONS(1540), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1540), - [anon_sym_o_PLUSe_GT] = ACTIONS(1540), - [anon_sym_e_PLUSo_GT] = ACTIONS(1540), - [anon_sym_err_GT_GT] = ACTIONS(1542), - [anon_sym_out_GT_GT] = ACTIONS(1542), - [anon_sym_e_GT_GT] = ACTIONS(1542), - [anon_sym_o_GT_GT] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1542), - [aux_sym_unquoted_token2] = ACTIONS(1540), - [anon_sym_POUND] = ACTIONS(247), - }, - [1279] = { - [sym_comment] = STATE(1279), - [aux_sym_cmd_identifier_token41] = ACTIONS(1518), - [sym__newline] = ACTIONS(1518), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_err_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_GT_PIPE] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1520), - [anon_sym_RBRACE] = ACTIONS(1520), - [anon_sym_EQ_GT] = ACTIONS(1520), - [aux_sym_expr_binary_token1] = ACTIONS(1520), - [aux_sym_expr_binary_token2] = ACTIONS(1520), - [aux_sym_expr_binary_token3] = ACTIONS(1520), - [aux_sym_expr_binary_token4] = ACTIONS(1520), - [aux_sym_expr_binary_token5] = ACTIONS(1520), - [aux_sym_expr_binary_token6] = ACTIONS(1520), - [aux_sym_expr_binary_token7] = ACTIONS(1520), - [aux_sym_expr_binary_token8] = ACTIONS(1520), - [aux_sym_expr_binary_token9] = ACTIONS(1520), - [aux_sym_expr_binary_token10] = ACTIONS(1520), - [aux_sym_expr_binary_token11] = ACTIONS(1520), - [aux_sym_expr_binary_token12] = ACTIONS(1520), - [aux_sym_expr_binary_token13] = ACTIONS(1520), - [aux_sym_expr_binary_token14] = ACTIONS(1520), - [aux_sym_expr_binary_token15] = ACTIONS(1520), - [aux_sym_expr_binary_token16] = ACTIONS(1520), - [aux_sym_expr_binary_token17] = ACTIONS(1520), - [aux_sym_expr_binary_token18] = ACTIONS(1520), - [aux_sym_expr_binary_token19] = ACTIONS(1520), - [aux_sym_expr_binary_token20] = ACTIONS(1520), - [aux_sym_expr_binary_token21] = ACTIONS(1520), - [aux_sym_expr_binary_token22] = ACTIONS(1520), - [aux_sym_expr_binary_token23] = ACTIONS(1520), - [aux_sym_expr_binary_token24] = ACTIONS(1520), - [aux_sym_expr_binary_token25] = ACTIONS(1520), - [aux_sym_expr_binary_token26] = ACTIONS(1520), - [aux_sym_expr_binary_token27] = ACTIONS(1520), - [aux_sym_expr_binary_token28] = ACTIONS(1520), - [anon_sym_DOT_DOT2] = ACTIONS(1518), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), - [aux_sym__immediate_decimal_token2] = ACTIONS(4551), - [sym_filesize_unit] = ACTIONS(1520), - [sym_duration_unit] = ACTIONS(1520), - [aux_sym_record_entry_token1] = ACTIONS(1520), - [anon_sym_err_GT] = ACTIONS(1518), - [anon_sym_out_GT] = ACTIONS(1518), - [anon_sym_e_GT] = ACTIONS(1518), - [anon_sym_o_GT] = ACTIONS(1518), - [anon_sym_err_PLUSout_GT] = ACTIONS(1518), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), - [anon_sym_o_PLUSe_GT] = ACTIONS(1518), - [anon_sym_e_PLUSo_GT] = ACTIONS(1518), - [anon_sym_err_GT_GT] = ACTIONS(1520), - [anon_sym_out_GT_GT] = ACTIONS(1520), - [anon_sym_e_GT_GT] = ACTIONS(1520), - [anon_sym_o_GT_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1520), - [anon_sym_POUND] = ACTIONS(247), + [1250] = { + [sym_comment] = STATE(1250), + [anon_sym_true] = ACTIONS(1717), + [anon_sym_false] = ACTIONS(1717), + [anon_sym_null] = ACTIONS(1717), + [aux_sym_cmd_identifier_token38] = ACTIONS(1717), + [aux_sym_cmd_identifier_token39] = ACTIONS(1717), + [aux_sym_cmd_identifier_token40] = ACTIONS(1717), + [sym__newline] = ACTIONS(1717), + [anon_sym_SEMI] = ACTIONS(1717), + [anon_sym_PIPE] = ACTIONS(1717), + [anon_sym_err_GT_PIPE] = ACTIONS(1717), + [anon_sym_out_GT_PIPE] = ACTIONS(1717), + [anon_sym_e_GT_PIPE] = ACTIONS(1717), + [anon_sym_o_GT_PIPE] = ACTIONS(1717), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1717), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1717), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1717), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1717), + [anon_sym_LBRACK] = ACTIONS(1717), + [anon_sym_LPAREN] = ACTIONS(1715), + [anon_sym_RPAREN] = ACTIONS(1717), + [anon_sym_DOLLAR] = ACTIONS(1715), + [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_LBRACE] = ACTIONS(1717), + [anon_sym_RBRACE] = ACTIONS(1717), + [anon_sym_DOT_DOT] = ACTIONS(1715), + [anon_sym_LPAREN2] = ACTIONS(1717), + [anon_sym_DOT_DOT2] = ACTIONS(1715), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1715), + [anon_sym_DOT_DOT_LT] = ACTIONS(1715), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1717), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1717), + [aux_sym__val_number_decimal_token1] = ACTIONS(1715), + [aux_sym__val_number_decimal_token2] = ACTIONS(1717), + [aux_sym__val_number_decimal_token3] = ACTIONS(1717), + [aux_sym__val_number_decimal_token4] = ACTIONS(1717), + [aux_sym__val_number_token1] = ACTIONS(1717), + [aux_sym__val_number_token2] = ACTIONS(1717), + [aux_sym__val_number_token3] = ACTIONS(1717), + [anon_sym_0b] = ACTIONS(1715), + [anon_sym_0o] = ACTIONS(1715), + [anon_sym_0x] = ACTIONS(1715), + [sym_val_date] = ACTIONS(1717), + [anon_sym_DQUOTE] = ACTIONS(1717), + [sym__str_single_quotes] = ACTIONS(1717), + [sym__str_back_ticks] = ACTIONS(1717), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1717), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1717), + [anon_sym_err_GT] = ACTIONS(1715), + [anon_sym_out_GT] = ACTIONS(1715), + [anon_sym_e_GT] = ACTIONS(1715), + [anon_sym_o_GT] = ACTIONS(1715), + [anon_sym_err_PLUSout_GT] = ACTIONS(1715), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1715), + [anon_sym_o_PLUSe_GT] = ACTIONS(1715), + [anon_sym_e_PLUSo_GT] = ACTIONS(1715), + [anon_sym_err_GT_GT] = ACTIONS(1717), + [anon_sym_out_GT_GT] = ACTIONS(1717), + [anon_sym_e_GT_GT] = ACTIONS(1717), + [anon_sym_o_GT_GT] = ACTIONS(1717), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1717), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1717), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1717), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1717), + [aux_sym_unquoted_token1] = ACTIONS(1715), + [aux_sym_unquoted_token2] = ACTIONS(1715), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1717), }, - [1280] = { - [sym_comment] = STATE(1280), - [ts_builtin_sym_end] = ACTIONS(1044), - [anon_sym_true] = ACTIONS(1044), - [anon_sym_false] = ACTIONS(1044), - [anon_sym_null] = ACTIONS(1044), - [aux_sym_cmd_identifier_token38] = ACTIONS(1044), - [aux_sym_cmd_identifier_token39] = ACTIONS(1044), - [aux_sym_cmd_identifier_token40] = ACTIONS(1044), - [sym__newline] = ACTIONS(1044), - [anon_sym_SEMI] = ACTIONS(1044), - [anon_sym_PIPE] = ACTIONS(1044), - [anon_sym_err_GT_PIPE] = ACTIONS(1044), - [anon_sym_out_GT_PIPE] = ACTIONS(1044), - [anon_sym_e_GT_PIPE] = ACTIONS(1044), - [anon_sym_o_GT_PIPE] = ACTIONS(1044), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1044), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1044), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1044), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1044), - [anon_sym_LBRACK] = ACTIONS(1044), - [anon_sym_LPAREN] = ACTIONS(1044), - [anon_sym_DOLLAR] = ACTIONS(1042), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_DASH] = ACTIONS(1042), - [anon_sym_LBRACE] = ACTIONS(1044), - [anon_sym_DOT_DOT] = ACTIONS(1042), - [anon_sym_QMARK2] = ACTIONS(1044), - [anon_sym_DOT_DOT2] = ACTIONS(1042), - [anon_sym_DOT] = ACTIONS(1042), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1042), - [anon_sym_DOT_DOT_LT] = ACTIONS(1042), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1044), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1044), - [aux_sym__val_number_decimal_token1] = ACTIONS(1042), - [aux_sym__val_number_decimal_token2] = ACTIONS(1044), - [aux_sym__val_number_decimal_token3] = ACTIONS(1044), - [aux_sym__val_number_decimal_token4] = ACTIONS(1044), - [aux_sym__val_number_token1] = ACTIONS(1044), - [aux_sym__val_number_token2] = ACTIONS(1044), - [aux_sym__val_number_token3] = ACTIONS(1044), - [anon_sym_0b] = ACTIONS(1042), - [anon_sym_0o] = ACTIONS(1042), - [anon_sym_0x] = ACTIONS(1042), - [sym_val_date] = ACTIONS(1044), - [anon_sym_DQUOTE] = ACTIONS(1044), - [sym__str_single_quotes] = ACTIONS(1044), - [sym__str_back_ticks] = ACTIONS(1044), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1044), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1044), - [anon_sym_err_GT] = ACTIONS(1042), - [anon_sym_out_GT] = ACTIONS(1042), - [anon_sym_e_GT] = ACTIONS(1042), - [anon_sym_o_GT] = ACTIONS(1042), - [anon_sym_err_PLUSout_GT] = ACTIONS(1042), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1042), - [anon_sym_o_PLUSe_GT] = ACTIONS(1042), - [anon_sym_e_PLUSo_GT] = ACTIONS(1042), - [anon_sym_err_GT_GT] = ACTIONS(1044), - [anon_sym_out_GT_GT] = ACTIONS(1044), - [anon_sym_e_GT_GT] = ACTIONS(1044), - [anon_sym_o_GT_GT] = ACTIONS(1044), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1044), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1044), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1044), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1044), - [aux_sym_unquoted_token1] = ACTIONS(1042), - [anon_sym_POUND] = ACTIONS(247), + [1251] = { + [sym_path] = STATE(1369), + [sym_comment] = STATE(1251), + [aux_sym_cell_path_repeat1] = STATE(1251), + [ts_builtin_sym_end] = ACTIONS(1033), + [anon_sym_true] = ACTIONS(1033), + [anon_sym_false] = ACTIONS(1033), + [anon_sym_null] = ACTIONS(1033), + [aux_sym_cmd_identifier_token38] = ACTIONS(1033), + [aux_sym_cmd_identifier_token39] = ACTIONS(1033), + [aux_sym_cmd_identifier_token40] = ACTIONS(1033), + [sym__newline] = ACTIONS(1033), + [anon_sym_SEMI] = ACTIONS(1033), + [anon_sym_PIPE] = ACTIONS(1033), + [anon_sym_err_GT_PIPE] = ACTIONS(1033), + [anon_sym_out_GT_PIPE] = ACTIONS(1033), + [anon_sym_e_GT_PIPE] = ACTIONS(1033), + [anon_sym_o_GT_PIPE] = ACTIONS(1033), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1033), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1033), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1033), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1033), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_DOLLAR] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1033), + [anon_sym_DASH] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_DOT_DOT] = ACTIONS(1031), + [anon_sym_DOT_DOT2] = ACTIONS(1031), + [anon_sym_DOT] = ACTIONS(4628), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1031), + [anon_sym_DOT_DOT_LT] = ACTIONS(1031), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1033), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1033), + [aux_sym__val_number_decimal_token1] = ACTIONS(1031), + [aux_sym__val_number_decimal_token2] = ACTIONS(1033), + [aux_sym__val_number_decimal_token3] = ACTIONS(1033), + [aux_sym__val_number_decimal_token4] = ACTIONS(1033), + [aux_sym__val_number_token1] = ACTIONS(1033), + [aux_sym__val_number_token2] = ACTIONS(1033), + [aux_sym__val_number_token3] = ACTIONS(1033), + [anon_sym_0b] = ACTIONS(1031), + [anon_sym_0o] = ACTIONS(1031), + [anon_sym_0x] = ACTIONS(1031), + [sym_val_date] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(1033), + [sym__str_single_quotes] = ACTIONS(1033), + [sym__str_back_ticks] = ACTIONS(1033), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1033), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1033), + [anon_sym_err_GT] = ACTIONS(1031), + [anon_sym_out_GT] = ACTIONS(1031), + [anon_sym_e_GT] = ACTIONS(1031), + [anon_sym_o_GT] = ACTIONS(1031), + [anon_sym_err_PLUSout_GT] = ACTIONS(1031), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1031), + [anon_sym_o_PLUSe_GT] = ACTIONS(1031), + [anon_sym_e_PLUSo_GT] = ACTIONS(1031), + [anon_sym_err_GT_GT] = ACTIONS(1033), + [anon_sym_out_GT_GT] = ACTIONS(1033), + [anon_sym_e_GT_GT] = ACTIONS(1033), + [anon_sym_o_GT_GT] = ACTIONS(1033), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1033), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1033), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1033), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1033), + [aux_sym_unquoted_token1] = ACTIONS(1031), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1033), }, - [1281] = { - [sym_cell_path] = STATE(1589), - [sym_path] = STATE(1551), - [sym_comment] = STATE(1281), - [aux_sym_cell_path_repeat1] = STATE(1383), - [anon_sym_true] = ACTIONS(1007), - [anon_sym_false] = ACTIONS(1007), - [anon_sym_null] = ACTIONS(1007), - [aux_sym_cmd_identifier_token38] = ACTIONS(1007), - [aux_sym_cmd_identifier_token39] = ACTIONS(1007), - [aux_sym_cmd_identifier_token40] = ACTIONS(1007), - [sym__newline] = ACTIONS(1007), - [anon_sym_SEMI] = ACTIONS(1007), - [anon_sym_PIPE] = ACTIONS(1007), - [anon_sym_err_GT_PIPE] = ACTIONS(1007), - [anon_sym_out_GT_PIPE] = ACTIONS(1007), - [anon_sym_e_GT_PIPE] = ACTIONS(1007), - [anon_sym_o_GT_PIPE] = ACTIONS(1007), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1007), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1007), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1007), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1007), - [anon_sym_LBRACK] = ACTIONS(1007), - [anon_sym_LPAREN] = ACTIONS(1007), - [anon_sym_RPAREN] = ACTIONS(1007), - [anon_sym_DOLLAR] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1007), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_LBRACE] = ACTIONS(1007), - [anon_sym_RBRACE] = ACTIONS(1007), - [anon_sym_DOT_DOT] = ACTIONS(1005), - [anon_sym_DOT] = ACTIONS(4596), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1007), - [anon_sym_DOT_DOT_LT] = ACTIONS(1007), - [aux_sym__val_number_decimal_token1] = ACTIONS(1005), - [aux_sym__val_number_decimal_token2] = ACTIONS(1007), - [aux_sym__val_number_decimal_token3] = ACTIONS(1007), - [aux_sym__val_number_decimal_token4] = ACTIONS(1007), - [aux_sym__val_number_token1] = ACTIONS(1007), - [aux_sym__val_number_token2] = ACTIONS(1007), - [aux_sym__val_number_token3] = ACTIONS(1007), - [anon_sym_0b] = ACTIONS(1005), - [anon_sym_0o] = ACTIONS(1005), - [anon_sym_0x] = ACTIONS(1005), - [sym_val_date] = ACTIONS(1007), - [anon_sym_DQUOTE] = ACTIONS(1007), - [sym__str_single_quotes] = ACTIONS(1007), - [sym__str_back_ticks] = ACTIONS(1007), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1007), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1007), - [anon_sym_err_GT] = ACTIONS(1005), - [anon_sym_out_GT] = ACTIONS(1005), - [anon_sym_e_GT] = ACTIONS(1005), - [anon_sym_o_GT] = ACTIONS(1005), - [anon_sym_err_PLUSout_GT] = ACTIONS(1005), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1005), - [anon_sym_o_PLUSe_GT] = ACTIONS(1005), - [anon_sym_e_PLUSo_GT] = ACTIONS(1005), - [anon_sym_err_GT_GT] = ACTIONS(1007), - [anon_sym_out_GT_GT] = ACTIONS(1007), - [anon_sym_e_GT_GT] = ACTIONS(1007), - [anon_sym_o_GT_GT] = ACTIONS(1007), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1007), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1007), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1007), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1007), - [aux_sym_unquoted_token1] = ACTIONS(1005), - [anon_sym_POUND] = ACTIONS(247), + [1252] = { + [sym_comment] = STATE(1252), + [anon_sym_true] = ACTIONS(1064), + [anon_sym_false] = ACTIONS(1064), + [anon_sym_null] = ACTIONS(1064), + [aux_sym_cmd_identifier_token38] = ACTIONS(1064), + [aux_sym_cmd_identifier_token39] = ACTIONS(1064), + [aux_sym_cmd_identifier_token40] = ACTIONS(1064), + [sym__newline] = ACTIONS(1064), + [anon_sym_SEMI] = ACTIONS(1064), + [anon_sym_PIPE] = ACTIONS(1064), + [anon_sym_err_GT_PIPE] = ACTIONS(1064), + [anon_sym_out_GT_PIPE] = ACTIONS(1064), + [anon_sym_e_GT_PIPE] = ACTIONS(1064), + [anon_sym_o_GT_PIPE] = ACTIONS(1064), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1064), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1064), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1064), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1064), + [anon_sym_LBRACK] = ACTIONS(1064), + [anon_sym_LPAREN] = ACTIONS(1064), + [anon_sym_RPAREN] = ACTIONS(1064), + [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DASH_DASH] = ACTIONS(1064), + [anon_sym_DASH] = ACTIONS(1062), + [anon_sym_LBRACE] = ACTIONS(1064), + [anon_sym_RBRACE] = ACTIONS(1064), + [anon_sym_DOT_DOT] = ACTIONS(1062), + [anon_sym_QMARK2] = ACTIONS(1064), + [anon_sym_DOT_DOT2] = ACTIONS(1062), + [anon_sym_DOT] = ACTIONS(1062), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1062), + [anon_sym_DOT_DOT_LT] = ACTIONS(1062), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1064), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1064), + [aux_sym__val_number_decimal_token1] = ACTIONS(1062), + [aux_sym__val_number_decimal_token2] = ACTIONS(1064), + [aux_sym__val_number_decimal_token3] = ACTIONS(1064), + [aux_sym__val_number_decimal_token4] = ACTIONS(1064), + [aux_sym__val_number_token1] = ACTIONS(1064), + [aux_sym__val_number_token2] = ACTIONS(1064), + [aux_sym__val_number_token3] = ACTIONS(1064), + [anon_sym_0b] = ACTIONS(1062), + [anon_sym_0o] = ACTIONS(1062), + [anon_sym_0x] = ACTIONS(1062), + [sym_val_date] = ACTIONS(1064), + [anon_sym_DQUOTE] = ACTIONS(1064), + [sym__str_single_quotes] = ACTIONS(1064), + [sym__str_back_ticks] = ACTIONS(1064), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1064), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1064), + [anon_sym_err_GT] = ACTIONS(1062), + [anon_sym_out_GT] = ACTIONS(1062), + [anon_sym_e_GT] = ACTIONS(1062), + [anon_sym_o_GT] = ACTIONS(1062), + [anon_sym_err_PLUSout_GT] = ACTIONS(1062), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1062), + [anon_sym_o_PLUSe_GT] = ACTIONS(1062), + [anon_sym_e_PLUSo_GT] = ACTIONS(1062), + [anon_sym_err_GT_GT] = ACTIONS(1064), + [anon_sym_out_GT_GT] = ACTIONS(1064), + [anon_sym_e_GT_GT] = ACTIONS(1064), + [anon_sym_o_GT_GT] = ACTIONS(1064), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1064), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1064), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1064), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1064), + [aux_sym_unquoted_token1] = ACTIONS(1062), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1064), }, - [1282] = { - [sym_comment] = STATE(1282), - [ts_builtin_sym_end] = ACTIONS(1669), - [anon_sym_true] = ACTIONS(1669), - [anon_sym_false] = ACTIONS(1669), - [anon_sym_null] = ACTIONS(1669), - [aux_sym_cmd_identifier_token38] = ACTIONS(1669), - [aux_sym_cmd_identifier_token39] = ACTIONS(1669), - [aux_sym_cmd_identifier_token40] = ACTIONS(1669), - [sym__newline] = ACTIONS(1669), - [anon_sym_SEMI] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1669), - [anon_sym_err_GT_PIPE] = ACTIONS(1669), - [anon_sym_out_GT_PIPE] = ACTIONS(1669), - [anon_sym_e_GT_PIPE] = ACTIONS(1669), - [anon_sym_o_GT_PIPE] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), - [anon_sym_LBRACK] = ACTIONS(1669), - [anon_sym_LPAREN] = ACTIONS(1669), - [anon_sym_DOLLAR] = ACTIONS(1667), - [anon_sym_DASH_DASH] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_LBRACE] = ACTIONS(1669), - [anon_sym_DOT_DOT] = ACTIONS(1667), - [anon_sym_DOT_DOT2] = ACTIONS(1667), - [anon_sym_DOT] = ACTIONS(4598), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1667), - [anon_sym_DOT_DOT_LT] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [aux_sym__immediate_decimal_token2] = ACTIONS(4600), - [aux_sym__val_number_decimal_token1] = ACTIONS(1667), - [aux_sym__val_number_decimal_token2] = ACTIONS(1669), - [aux_sym__val_number_decimal_token3] = ACTIONS(1669), - [aux_sym__val_number_decimal_token4] = ACTIONS(1669), - [aux_sym__val_number_token1] = ACTIONS(1669), - [aux_sym__val_number_token2] = ACTIONS(1669), - [aux_sym__val_number_token3] = ACTIONS(1669), - [anon_sym_0b] = ACTIONS(1667), - [anon_sym_0o] = ACTIONS(1667), - [anon_sym_0x] = ACTIONS(1667), - [sym_val_date] = ACTIONS(1669), - [anon_sym_DQUOTE] = ACTIONS(1669), - [sym__str_single_quotes] = ACTIONS(1669), - [sym__str_back_ticks] = ACTIONS(1669), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1669), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1669), - [anon_sym_err_GT] = ACTIONS(1667), - [anon_sym_out_GT] = ACTIONS(1667), - [anon_sym_e_GT] = ACTIONS(1667), - [anon_sym_o_GT] = ACTIONS(1667), - [anon_sym_err_PLUSout_GT] = ACTIONS(1667), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1667), - [anon_sym_o_PLUSe_GT] = ACTIONS(1667), - [anon_sym_e_PLUSo_GT] = ACTIONS(1667), - [anon_sym_err_GT_GT] = ACTIONS(1669), - [anon_sym_out_GT_GT] = ACTIONS(1669), - [anon_sym_e_GT_GT] = ACTIONS(1669), - [anon_sym_o_GT_GT] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1669), - [aux_sym_unquoted_token1] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(247), + [1253] = { + [sym_comment] = STATE(1253), + [anon_sym_true] = ACTIONS(1056), + [anon_sym_false] = ACTIONS(1056), + [anon_sym_null] = ACTIONS(1056), + [aux_sym_cmd_identifier_token38] = ACTIONS(1056), + [aux_sym_cmd_identifier_token39] = ACTIONS(1056), + [aux_sym_cmd_identifier_token40] = ACTIONS(1056), + [sym__newline] = ACTIONS(1056), + [anon_sym_SEMI] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(1056), + [anon_sym_err_GT_PIPE] = ACTIONS(1056), + [anon_sym_out_GT_PIPE] = ACTIONS(1056), + [anon_sym_e_GT_PIPE] = ACTIONS(1056), + [anon_sym_o_GT_PIPE] = ACTIONS(1056), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1056), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1056), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1056), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1056), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_RPAREN] = ACTIONS(1056), + [anon_sym_DOLLAR] = ACTIONS(1054), + [anon_sym_DASH_DASH] = ACTIONS(1056), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_LBRACE] = ACTIONS(1056), + [anon_sym_RBRACE] = ACTIONS(1056), + [anon_sym_DOT_DOT] = ACTIONS(1054), + [anon_sym_QMARK2] = ACTIONS(1056), + [anon_sym_DOT_DOT2] = ACTIONS(1054), + [anon_sym_DOT] = ACTIONS(1054), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1054), + [anon_sym_DOT_DOT_LT] = ACTIONS(1054), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1056), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1056), + [aux_sym__val_number_decimal_token1] = ACTIONS(1054), + [aux_sym__val_number_decimal_token2] = ACTIONS(1056), + [aux_sym__val_number_decimal_token3] = ACTIONS(1056), + [aux_sym__val_number_decimal_token4] = ACTIONS(1056), + [aux_sym__val_number_token1] = ACTIONS(1056), + [aux_sym__val_number_token2] = ACTIONS(1056), + [aux_sym__val_number_token3] = ACTIONS(1056), + [anon_sym_0b] = ACTIONS(1054), + [anon_sym_0o] = ACTIONS(1054), + [anon_sym_0x] = ACTIONS(1054), + [sym_val_date] = ACTIONS(1056), + [anon_sym_DQUOTE] = ACTIONS(1056), + [sym__str_single_quotes] = ACTIONS(1056), + [sym__str_back_ticks] = ACTIONS(1056), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1056), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1056), + [anon_sym_err_GT] = ACTIONS(1054), + [anon_sym_out_GT] = ACTIONS(1054), + [anon_sym_e_GT] = ACTIONS(1054), + [anon_sym_o_GT] = ACTIONS(1054), + [anon_sym_err_PLUSout_GT] = ACTIONS(1054), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1054), + [anon_sym_o_PLUSe_GT] = ACTIONS(1054), + [anon_sym_e_PLUSo_GT] = ACTIONS(1054), + [anon_sym_err_GT_GT] = ACTIONS(1056), + [anon_sym_out_GT_GT] = ACTIONS(1056), + [anon_sym_e_GT_GT] = ACTIONS(1056), + [anon_sym_o_GT_GT] = ACTIONS(1056), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1056), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1056), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1056), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1056), + [aux_sym_unquoted_token1] = ACTIONS(1054), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1056), }, - [1283] = { - [sym_comment] = STATE(1283), - [ts_builtin_sym_end] = ACTIONS(1040), + [1254] = { + [sym_comment] = STATE(1254), [anon_sym_true] = ACTIONS(1040), [anon_sym_false] = ACTIONS(1040), [anon_sym_null] = ACTIONS(1040), @@ -197623,10 +198507,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1040), [anon_sym_LBRACK] = ACTIONS(1040), [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_RPAREN] = ACTIONS(1040), [anon_sym_DOLLAR] = ACTIONS(1038), [anon_sym_DASH_DASH] = ACTIONS(1040), [anon_sym_DASH] = ACTIONS(1038), [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_RBRACE] = ACTIONS(1040), [anon_sym_DOT_DOT] = ACTIONS(1038), [anon_sym_QMARK2] = ACTIONS(1040), [anon_sym_DOT_DOT2] = ACTIONS(1038), @@ -197668,769 +198554,2274 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1040), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1040), [aux_sym_unquoted_token1] = ACTIONS(1038), - [anon_sym_POUND] = ACTIONS(247), - }, - [1284] = { - [sym_comment] = STATE(1284), - [ts_builtin_sym_end] = ACTIONS(1036), - [anon_sym_true] = ACTIONS(1036), - [anon_sym_false] = ACTIONS(1036), - [anon_sym_null] = ACTIONS(1036), - [aux_sym_cmd_identifier_token38] = ACTIONS(1036), - [aux_sym_cmd_identifier_token39] = ACTIONS(1036), - [aux_sym_cmd_identifier_token40] = ACTIONS(1036), - [sym__newline] = ACTIONS(1036), - [anon_sym_SEMI] = ACTIONS(1036), - [anon_sym_PIPE] = ACTIONS(1036), - [anon_sym_err_GT_PIPE] = ACTIONS(1036), - [anon_sym_out_GT_PIPE] = ACTIONS(1036), - [anon_sym_e_GT_PIPE] = ACTIONS(1036), - [anon_sym_o_GT_PIPE] = ACTIONS(1036), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1036), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1036), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1036), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1036), - [anon_sym_LBRACK] = ACTIONS(1036), - [anon_sym_LPAREN] = ACTIONS(1036), - [anon_sym_DOLLAR] = ACTIONS(1034), - [anon_sym_DASH_DASH] = ACTIONS(1036), - [anon_sym_DASH] = ACTIONS(1034), - [anon_sym_LBRACE] = ACTIONS(1036), - [anon_sym_DOT_DOT] = ACTIONS(1034), - [anon_sym_QMARK2] = ACTIONS(1036), - [anon_sym_DOT_DOT2] = ACTIONS(1034), - [anon_sym_DOT] = ACTIONS(1034), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1034), - [anon_sym_DOT_DOT_LT] = ACTIONS(1034), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1036), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1036), - [aux_sym__val_number_decimal_token1] = ACTIONS(1034), - [aux_sym__val_number_decimal_token2] = ACTIONS(1036), - [aux_sym__val_number_decimal_token3] = ACTIONS(1036), - [aux_sym__val_number_decimal_token4] = ACTIONS(1036), - [aux_sym__val_number_token1] = ACTIONS(1036), - [aux_sym__val_number_token2] = ACTIONS(1036), - [aux_sym__val_number_token3] = ACTIONS(1036), - [anon_sym_0b] = ACTIONS(1034), - [anon_sym_0o] = ACTIONS(1034), - [anon_sym_0x] = ACTIONS(1034), - [sym_val_date] = ACTIONS(1036), - [anon_sym_DQUOTE] = ACTIONS(1036), - [sym__str_single_quotes] = ACTIONS(1036), - [sym__str_back_ticks] = ACTIONS(1036), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1036), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1036), - [anon_sym_err_GT] = ACTIONS(1034), - [anon_sym_out_GT] = ACTIONS(1034), - [anon_sym_e_GT] = ACTIONS(1034), - [anon_sym_o_GT] = ACTIONS(1034), - [anon_sym_err_PLUSout_GT] = ACTIONS(1034), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1034), - [anon_sym_o_PLUSe_GT] = ACTIONS(1034), - [anon_sym_e_PLUSo_GT] = ACTIONS(1034), - [anon_sym_err_GT_GT] = ACTIONS(1036), - [anon_sym_out_GT_GT] = ACTIONS(1036), - [anon_sym_e_GT_GT] = ACTIONS(1036), - [anon_sym_o_GT_GT] = ACTIONS(1036), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1036), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1036), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1036), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1036), - [aux_sym_unquoted_token1] = ACTIONS(1034), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1040), }, - [1285] = { - [sym_comment] = STATE(1285), - [ts_builtin_sym_end] = ACTIONS(1024), - [anon_sym_true] = ACTIONS(1024), - [anon_sym_false] = ACTIONS(1024), - [anon_sym_null] = ACTIONS(1024), - [aux_sym_cmd_identifier_token38] = ACTIONS(1024), - [aux_sym_cmd_identifier_token39] = ACTIONS(1024), - [aux_sym_cmd_identifier_token40] = ACTIONS(1024), - [sym__newline] = ACTIONS(1024), - [anon_sym_SEMI] = ACTIONS(1024), - [anon_sym_PIPE] = ACTIONS(1024), - [anon_sym_err_GT_PIPE] = ACTIONS(1024), - [anon_sym_out_GT_PIPE] = ACTIONS(1024), - [anon_sym_e_GT_PIPE] = ACTIONS(1024), - [anon_sym_o_GT_PIPE] = ACTIONS(1024), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1024), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1024), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1024), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1024), - [anon_sym_LBRACK] = ACTIONS(1024), - [anon_sym_LPAREN] = ACTIONS(1024), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH_DASH] = ACTIONS(1024), - [anon_sym_DASH] = ACTIONS(1022), - [anon_sym_LBRACE] = ACTIONS(1024), - [anon_sym_DOT_DOT] = ACTIONS(1022), - [anon_sym_QMARK2] = ACTIONS(4602), - [anon_sym_DOT_DOT2] = ACTIONS(1022), - [anon_sym_DOT] = ACTIONS(1022), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1022), - [anon_sym_DOT_DOT_LT] = ACTIONS(1022), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1024), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1024), - [aux_sym__val_number_decimal_token1] = ACTIONS(1022), - [aux_sym__val_number_decimal_token2] = ACTIONS(1024), - [aux_sym__val_number_decimal_token3] = ACTIONS(1024), - [aux_sym__val_number_decimal_token4] = ACTIONS(1024), - [aux_sym__val_number_token1] = ACTIONS(1024), - [aux_sym__val_number_token2] = ACTIONS(1024), - [aux_sym__val_number_token3] = ACTIONS(1024), - [anon_sym_0b] = ACTIONS(1022), - [anon_sym_0o] = ACTIONS(1022), - [anon_sym_0x] = ACTIONS(1022), - [sym_val_date] = ACTIONS(1024), - [anon_sym_DQUOTE] = ACTIONS(1024), - [sym__str_single_quotes] = ACTIONS(1024), - [sym__str_back_ticks] = ACTIONS(1024), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1024), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1024), - [anon_sym_err_GT] = ACTIONS(1022), - [anon_sym_out_GT] = ACTIONS(1022), - [anon_sym_e_GT] = ACTIONS(1022), - [anon_sym_o_GT] = ACTIONS(1022), - [anon_sym_err_PLUSout_GT] = ACTIONS(1022), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1022), - [anon_sym_o_PLUSe_GT] = ACTIONS(1022), - [anon_sym_e_PLUSo_GT] = ACTIONS(1022), - [anon_sym_err_GT_GT] = ACTIONS(1024), - [anon_sym_out_GT_GT] = ACTIONS(1024), - [anon_sym_e_GT_GT] = ACTIONS(1024), - [anon_sym_o_GT_GT] = ACTIONS(1024), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1024), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1024), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1024), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1024), - [aux_sym_unquoted_token1] = ACTIONS(1022), - [anon_sym_POUND] = ACTIONS(247), - }, - [1286] = { - [sym_comment] = STATE(1286), - [ts_builtin_sym_end] = ACTIONS(1030), - [anon_sym_true] = ACTIONS(1030), - [anon_sym_false] = ACTIONS(1030), - [anon_sym_null] = ACTIONS(1030), - [aux_sym_cmd_identifier_token38] = ACTIONS(1030), - [aux_sym_cmd_identifier_token39] = ACTIONS(1030), - [aux_sym_cmd_identifier_token40] = ACTIONS(1030), - [sym__newline] = ACTIONS(1030), - [anon_sym_SEMI] = ACTIONS(1030), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_err_GT_PIPE] = ACTIONS(1030), - [anon_sym_out_GT_PIPE] = ACTIONS(1030), - [anon_sym_e_GT_PIPE] = ACTIONS(1030), - [anon_sym_o_GT_PIPE] = ACTIONS(1030), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1030), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1030), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1030), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1030), - [anon_sym_LBRACK] = ACTIONS(1030), - [anon_sym_LPAREN] = ACTIONS(1030), - [anon_sym_DOLLAR] = ACTIONS(1028), - [anon_sym_DASH_DASH] = ACTIONS(1030), - [anon_sym_DASH] = ACTIONS(1028), - [anon_sym_LBRACE] = ACTIONS(1030), - [anon_sym_DOT_DOT] = ACTIONS(1028), - [anon_sym_QMARK2] = ACTIONS(4604), - [anon_sym_DOT_DOT2] = ACTIONS(1028), - [anon_sym_DOT] = ACTIONS(1028), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1028), - [anon_sym_DOT_DOT_LT] = ACTIONS(1028), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1030), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1030), - [aux_sym__val_number_decimal_token1] = ACTIONS(1028), - [aux_sym__val_number_decimal_token2] = ACTIONS(1030), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), - [aux_sym__val_number_token1] = ACTIONS(1030), - [aux_sym__val_number_token2] = ACTIONS(1030), - [aux_sym__val_number_token3] = ACTIONS(1030), - [anon_sym_0b] = ACTIONS(1028), - [anon_sym_0o] = ACTIONS(1028), - [anon_sym_0x] = ACTIONS(1028), - [sym_val_date] = ACTIONS(1030), - [anon_sym_DQUOTE] = ACTIONS(1030), - [sym__str_single_quotes] = ACTIONS(1030), - [sym__str_back_ticks] = ACTIONS(1030), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1030), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1030), - [anon_sym_err_GT] = ACTIONS(1028), - [anon_sym_out_GT] = ACTIONS(1028), - [anon_sym_e_GT] = ACTIONS(1028), - [anon_sym_o_GT] = ACTIONS(1028), - [anon_sym_err_PLUSout_GT] = ACTIONS(1028), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1028), - [anon_sym_o_PLUSe_GT] = ACTIONS(1028), - [anon_sym_e_PLUSo_GT] = ACTIONS(1028), - [anon_sym_err_GT_GT] = ACTIONS(1030), - [anon_sym_out_GT_GT] = ACTIONS(1030), - [anon_sym_e_GT_GT] = ACTIONS(1030), - [anon_sym_o_GT_GT] = ACTIONS(1030), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1030), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1030), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1030), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1030), - [aux_sym_unquoted_token1] = ACTIONS(1028), - [anon_sym_POUND] = ACTIONS(247), + [1255] = { + [sym_comment] = STATE(1255), + [anon_sym_true] = ACTIONS(1850), + [anon_sym_false] = ACTIONS(1850), + [anon_sym_null] = ACTIONS(1850), + [aux_sym_cmd_identifier_token38] = ACTIONS(1850), + [aux_sym_cmd_identifier_token39] = ACTIONS(1850), + [aux_sym_cmd_identifier_token40] = ACTIONS(1850), + [sym__newline] = ACTIONS(1850), + [anon_sym_SEMI] = ACTIONS(1850), + [anon_sym_PIPE] = ACTIONS(1850), + [anon_sym_err_GT_PIPE] = ACTIONS(1850), + [anon_sym_out_GT_PIPE] = ACTIONS(1850), + [anon_sym_e_GT_PIPE] = ACTIONS(1850), + [anon_sym_o_GT_PIPE] = ACTIONS(1850), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1850), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1850), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1850), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1850), + [anon_sym_LBRACK] = ACTIONS(1850), + [anon_sym_LPAREN] = ACTIONS(1842), + [anon_sym_RPAREN] = ACTIONS(1850), + [anon_sym_DOLLAR] = ACTIONS(1842), + [anon_sym_DASH_DASH] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1850), + [anon_sym_RBRACE] = ACTIONS(1850), + [anon_sym_DOT_DOT] = ACTIONS(1842), + [anon_sym_LPAREN2] = ACTIONS(1844), + [anon_sym_DOT_DOT2] = ACTIONS(4631), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1842), + [anon_sym_DOT_DOT_LT] = ACTIONS(1842), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4633), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4633), + [aux_sym__val_number_decimal_token1] = ACTIONS(1842), + [aux_sym__val_number_decimal_token2] = ACTIONS(1850), + [aux_sym__val_number_decimal_token3] = ACTIONS(1850), + [aux_sym__val_number_decimal_token4] = ACTIONS(1850), + [aux_sym__val_number_token1] = ACTIONS(1850), + [aux_sym__val_number_token2] = ACTIONS(1850), + [aux_sym__val_number_token3] = ACTIONS(1850), + [anon_sym_0b] = ACTIONS(1842), + [anon_sym_0o] = ACTIONS(1842), + [anon_sym_0x] = ACTIONS(1842), + [sym_val_date] = ACTIONS(1850), + [anon_sym_DQUOTE] = ACTIONS(1850), + [sym__str_single_quotes] = ACTIONS(1850), + [sym__str_back_ticks] = ACTIONS(1850), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1850), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1850), + [anon_sym_err_GT] = ACTIONS(1842), + [anon_sym_out_GT] = ACTIONS(1842), + [anon_sym_e_GT] = ACTIONS(1842), + [anon_sym_o_GT] = ACTIONS(1842), + [anon_sym_err_PLUSout_GT] = ACTIONS(1842), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1842), + [anon_sym_o_PLUSe_GT] = ACTIONS(1842), + [anon_sym_e_PLUSo_GT] = ACTIONS(1842), + [anon_sym_err_GT_GT] = ACTIONS(1850), + [anon_sym_out_GT_GT] = ACTIONS(1850), + [anon_sym_e_GT_GT] = ACTIONS(1850), + [anon_sym_o_GT_GT] = ACTIONS(1850), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1850), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1850), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1850), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1850), + [aux_sym_unquoted_token1] = ACTIONS(1842), + [aux_sym_unquoted_token2] = ACTIONS(1852), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1850), }, - [1287] = { - [sym__expr_parenthesized_immediate] = STATE(7282), - [sym_comment] = STATE(1287), - [sym__newline] = ACTIONS(1572), - [anon_sym_SEMI] = ACTIONS(1572), - [anon_sym_PIPE] = ACTIONS(1572), - [anon_sym_err_GT_PIPE] = ACTIONS(1572), - [anon_sym_out_GT_PIPE] = ACTIONS(1572), - [anon_sym_e_GT_PIPE] = ACTIONS(1572), - [anon_sym_o_GT_PIPE] = ACTIONS(1572), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1572), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1572), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1572), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1572), - [anon_sym_RPAREN] = ACTIONS(1572), - [anon_sym_RBRACE] = ACTIONS(1572), - [anon_sym_LPAREN2] = ACTIONS(3978), - [aux_sym_expr_binary_token1] = ACTIONS(1572), - [aux_sym_expr_binary_token2] = ACTIONS(1572), - [aux_sym_expr_binary_token3] = ACTIONS(1572), - [aux_sym_expr_binary_token4] = ACTIONS(1572), - [aux_sym_expr_binary_token5] = ACTIONS(1572), - [aux_sym_expr_binary_token6] = ACTIONS(1572), - [aux_sym_expr_binary_token7] = ACTIONS(1572), - [aux_sym_expr_binary_token8] = ACTIONS(1572), - [aux_sym_expr_binary_token9] = ACTIONS(1572), - [aux_sym_expr_binary_token10] = ACTIONS(1572), - [aux_sym_expr_binary_token11] = ACTIONS(1572), - [aux_sym_expr_binary_token12] = ACTIONS(1572), - [aux_sym_expr_binary_token13] = ACTIONS(1572), - [aux_sym_expr_binary_token14] = ACTIONS(1572), - [aux_sym_expr_binary_token15] = ACTIONS(1572), - [aux_sym_expr_binary_token16] = ACTIONS(1572), - [aux_sym_expr_binary_token17] = ACTIONS(1572), - [aux_sym_expr_binary_token18] = ACTIONS(1572), - [aux_sym_expr_binary_token19] = ACTIONS(1572), - [aux_sym_expr_binary_token20] = ACTIONS(1572), - [aux_sym_expr_binary_token21] = ACTIONS(1572), - [aux_sym_expr_binary_token22] = ACTIONS(1572), - [aux_sym_expr_binary_token23] = ACTIONS(1572), - [aux_sym_expr_binary_token24] = ACTIONS(1572), - [aux_sym_expr_binary_token25] = ACTIONS(1572), - [aux_sym_expr_binary_token26] = ACTIONS(1572), - [aux_sym_expr_binary_token27] = ACTIONS(1572), - [aux_sym_expr_binary_token28] = ACTIONS(1572), - [anon_sym_DOT_DOT2] = ACTIONS(4606), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4608), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4608), - [sym_filesize_unit] = ACTIONS(4610), - [sym_duration_unit] = ACTIONS(4612), - [anon_sym_err_GT] = ACTIONS(1560), - [anon_sym_out_GT] = ACTIONS(1560), - [anon_sym_e_GT] = ACTIONS(1560), - [anon_sym_o_GT] = ACTIONS(1560), - [anon_sym_err_PLUSout_GT] = ACTIONS(1560), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1560), - [anon_sym_o_PLUSe_GT] = ACTIONS(1560), - [anon_sym_e_PLUSo_GT] = ACTIONS(1560), - [anon_sym_err_GT_GT] = ACTIONS(1572), - [anon_sym_out_GT_GT] = ACTIONS(1572), - [anon_sym_e_GT_GT] = ACTIONS(1572), - [anon_sym_o_GT_GT] = ACTIONS(1572), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1572), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1572), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1572), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1572), - [aux_sym_unquoted_token2] = ACTIONS(4614), - [anon_sym_POUND] = ACTIONS(247), + [1256] = { + [sym_comment] = STATE(1256), + [ts_builtin_sym_end] = ACTIONS(1530), + [anon_sym_true] = ACTIONS(1530), + [anon_sym_false] = ACTIONS(1530), + [anon_sym_null] = ACTIONS(1530), + [aux_sym_cmd_identifier_token38] = ACTIONS(1530), + [aux_sym_cmd_identifier_token39] = ACTIONS(1530), + [aux_sym_cmd_identifier_token40] = ACTIONS(1530), + [sym__newline] = ACTIONS(1530), + [anon_sym_SEMI] = ACTIONS(1530), + [anon_sym_PIPE] = ACTIONS(1530), + [anon_sym_err_GT_PIPE] = ACTIONS(1530), + [anon_sym_out_GT_PIPE] = ACTIONS(1530), + [anon_sym_e_GT_PIPE] = ACTIONS(1530), + [anon_sym_o_GT_PIPE] = ACTIONS(1530), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1530), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1530), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1530), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1530), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_LPAREN] = ACTIONS(1530), + [anon_sym_DOLLAR] = ACTIONS(1528), + [anon_sym_DASH_DASH] = ACTIONS(1530), + [anon_sym_DASH] = ACTIONS(1528), + [anon_sym_LBRACE] = ACTIONS(1530), + [anon_sym_DOT_DOT] = ACTIONS(1528), + [anon_sym_DOT_DOT2] = ACTIONS(1528), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1528), + [anon_sym_DOT_DOT_LT] = ACTIONS(1528), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1530), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1530), + [aux_sym__val_number_decimal_token1] = ACTIONS(1528), + [aux_sym__val_number_decimal_token2] = ACTIONS(1530), + [aux_sym__val_number_decimal_token3] = ACTIONS(1530), + [aux_sym__val_number_decimal_token4] = ACTIONS(1530), + [aux_sym__val_number_token1] = ACTIONS(1530), + [aux_sym__val_number_token2] = ACTIONS(1530), + [aux_sym__val_number_token3] = ACTIONS(1530), + [anon_sym_0b] = ACTIONS(1528), + [sym_filesize_unit] = ACTIONS(1530), + [sym_duration_unit] = ACTIONS(1530), + [anon_sym_0o] = ACTIONS(1528), + [anon_sym_0x] = ACTIONS(1528), + [sym_val_date] = ACTIONS(1530), + [anon_sym_DQUOTE] = ACTIONS(1530), + [sym__str_single_quotes] = ACTIONS(1530), + [sym__str_back_ticks] = ACTIONS(1530), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1530), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1530), + [anon_sym_err_GT] = ACTIONS(1528), + [anon_sym_out_GT] = ACTIONS(1528), + [anon_sym_e_GT] = ACTIONS(1528), + [anon_sym_o_GT] = ACTIONS(1528), + [anon_sym_err_PLUSout_GT] = ACTIONS(1528), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), + [anon_sym_o_PLUSe_GT] = ACTIONS(1528), + [anon_sym_e_PLUSo_GT] = ACTIONS(1528), + [anon_sym_err_GT_GT] = ACTIONS(1530), + [anon_sym_out_GT_GT] = ACTIONS(1530), + [anon_sym_e_GT_GT] = ACTIONS(1530), + [anon_sym_o_GT_GT] = ACTIONS(1530), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1530), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1530), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1530), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1530), + [aux_sym_unquoted_token1] = ACTIONS(1528), + [aux_sym_unquoted_token2] = ACTIONS(1528), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1530), }, - [1288] = { - [sym_comment] = STATE(1288), - [aux_sym_cmd_identifier_token41] = ACTIONS(1554), - [sym__newline] = ACTIONS(1554), - [anon_sym_SEMI] = ACTIONS(1556), - [anon_sym_PIPE] = ACTIONS(1556), - [anon_sym_err_GT_PIPE] = ACTIONS(1556), - [anon_sym_out_GT_PIPE] = ACTIONS(1556), - [anon_sym_e_GT_PIPE] = ACTIONS(1556), - [anon_sym_o_GT_PIPE] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1556), - [anon_sym_EQ_GT] = ACTIONS(1556), - [aux_sym_expr_binary_token1] = ACTIONS(1556), - [aux_sym_expr_binary_token2] = ACTIONS(1556), - [aux_sym_expr_binary_token3] = ACTIONS(1556), - [aux_sym_expr_binary_token4] = ACTIONS(1556), - [aux_sym_expr_binary_token5] = ACTIONS(1556), - [aux_sym_expr_binary_token6] = ACTIONS(1556), - [aux_sym_expr_binary_token7] = ACTIONS(1556), - [aux_sym_expr_binary_token8] = ACTIONS(1556), - [aux_sym_expr_binary_token9] = ACTIONS(1556), - [aux_sym_expr_binary_token10] = ACTIONS(1556), - [aux_sym_expr_binary_token11] = ACTIONS(1556), - [aux_sym_expr_binary_token12] = ACTIONS(1556), - [aux_sym_expr_binary_token13] = ACTIONS(1556), - [aux_sym_expr_binary_token14] = ACTIONS(1556), - [aux_sym_expr_binary_token15] = ACTIONS(1556), - [aux_sym_expr_binary_token16] = ACTIONS(1556), - [aux_sym_expr_binary_token17] = ACTIONS(1556), - [aux_sym_expr_binary_token18] = ACTIONS(1556), - [aux_sym_expr_binary_token19] = ACTIONS(1556), - [aux_sym_expr_binary_token20] = ACTIONS(1556), - [aux_sym_expr_binary_token21] = ACTIONS(1556), - [aux_sym_expr_binary_token22] = ACTIONS(1556), - [aux_sym_expr_binary_token23] = ACTIONS(1556), - [aux_sym_expr_binary_token24] = ACTIONS(1556), - [aux_sym_expr_binary_token25] = ACTIONS(1556), - [aux_sym_expr_binary_token26] = ACTIONS(1556), - [aux_sym_expr_binary_token27] = ACTIONS(1556), - [aux_sym_expr_binary_token28] = ACTIONS(1556), - [anon_sym_DOT_DOT2] = ACTIONS(1554), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1556), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1556), - [aux_sym__immediate_decimal_token2] = ACTIONS(4616), - [sym_filesize_unit] = ACTIONS(1556), - [sym_duration_unit] = ACTIONS(1556), - [aux_sym_record_entry_token1] = ACTIONS(1556), - [anon_sym_err_GT] = ACTIONS(1554), - [anon_sym_out_GT] = ACTIONS(1554), - [anon_sym_e_GT] = ACTIONS(1554), - [anon_sym_o_GT] = ACTIONS(1554), - [anon_sym_err_PLUSout_GT] = ACTIONS(1554), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1554), - [anon_sym_o_PLUSe_GT] = ACTIONS(1554), - [anon_sym_e_PLUSo_GT] = ACTIONS(1554), - [anon_sym_err_GT_GT] = ACTIONS(1556), - [anon_sym_out_GT_GT] = ACTIONS(1556), - [anon_sym_e_GT_GT] = ACTIONS(1556), - [anon_sym_o_GT_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1556), - [anon_sym_POUND] = ACTIONS(247), + [1257] = { + [sym_comment] = STATE(1257), + [ts_builtin_sym_end] = ACTIONS(1598), + [anon_sym_true] = ACTIONS(1598), + [anon_sym_false] = ACTIONS(1598), + [anon_sym_null] = ACTIONS(1598), + [aux_sym_cmd_identifier_token38] = ACTIONS(1598), + [aux_sym_cmd_identifier_token39] = ACTIONS(1598), + [aux_sym_cmd_identifier_token40] = ACTIONS(1598), + [sym__newline] = ACTIONS(1598), + [anon_sym_SEMI] = ACTIONS(1598), + [anon_sym_PIPE] = ACTIONS(1598), + [anon_sym_err_GT_PIPE] = ACTIONS(1598), + [anon_sym_out_GT_PIPE] = ACTIONS(1598), + [anon_sym_e_GT_PIPE] = ACTIONS(1598), + [anon_sym_o_GT_PIPE] = ACTIONS(1598), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1598), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1598), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1598), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1598), + [anon_sym_LBRACK] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(1598), + [anon_sym_DOLLAR] = ACTIONS(1596), + [anon_sym_DASH_DASH] = ACTIONS(1598), + [anon_sym_DASH] = ACTIONS(1596), + [anon_sym_LBRACE] = ACTIONS(1598), + [anon_sym_DOT_DOT] = ACTIONS(1596), + [anon_sym_DOT_DOT2] = ACTIONS(1596), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1596), + [anon_sym_DOT_DOT_LT] = ACTIONS(1596), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1598), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1598), + [aux_sym__val_number_decimal_token1] = ACTIONS(1596), + [aux_sym__val_number_decimal_token2] = ACTIONS(1598), + [aux_sym__val_number_decimal_token3] = ACTIONS(1598), + [aux_sym__val_number_decimal_token4] = ACTIONS(1598), + [aux_sym__val_number_token1] = ACTIONS(1598), + [aux_sym__val_number_token2] = ACTIONS(1598), + [aux_sym__val_number_token3] = ACTIONS(1598), + [anon_sym_0b] = ACTIONS(1596), + [sym_filesize_unit] = ACTIONS(1598), + [sym_duration_unit] = ACTIONS(1598), + [anon_sym_0o] = ACTIONS(1596), + [anon_sym_0x] = ACTIONS(1596), + [sym_val_date] = ACTIONS(1598), + [anon_sym_DQUOTE] = ACTIONS(1598), + [sym__str_single_quotes] = ACTIONS(1598), + [sym__str_back_ticks] = ACTIONS(1598), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1598), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1598), + [anon_sym_err_GT] = ACTIONS(1596), + [anon_sym_out_GT] = ACTIONS(1596), + [anon_sym_e_GT] = ACTIONS(1596), + [anon_sym_o_GT] = ACTIONS(1596), + [anon_sym_err_PLUSout_GT] = ACTIONS(1596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1596), + [anon_sym_o_PLUSe_GT] = ACTIONS(1596), + [anon_sym_e_PLUSo_GT] = ACTIONS(1596), + [anon_sym_err_GT_GT] = ACTIONS(1598), + [anon_sym_out_GT_GT] = ACTIONS(1598), + [anon_sym_e_GT_GT] = ACTIONS(1598), + [anon_sym_o_GT_GT] = ACTIONS(1598), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1598), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1598), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1598), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1598), + [aux_sym_unquoted_token1] = ACTIONS(1596), + [aux_sym_unquoted_token2] = ACTIONS(1596), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1598), }, - [1289] = { - [sym_comment] = STATE(1289), - [anon_sym_true] = ACTIONS(1661), - [anon_sym_false] = ACTIONS(1661), - [anon_sym_null] = ACTIONS(1661), - [aux_sym_cmd_identifier_token38] = ACTIONS(1661), - [aux_sym_cmd_identifier_token39] = ACTIONS(1661), - [aux_sym_cmd_identifier_token40] = ACTIONS(1661), - [sym__newline] = ACTIONS(1661), - [anon_sym_SEMI] = ACTIONS(1661), - [anon_sym_PIPE] = ACTIONS(1661), - [anon_sym_err_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_GT_PIPE] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_RPAREN] = ACTIONS(1661), - [anon_sym_DOLLAR] = ACTIONS(1659), - [anon_sym_DASH_DASH] = ACTIONS(1661), - [anon_sym_DASH] = ACTIONS(1659), - [anon_sym_LBRACE] = ACTIONS(1661), - [anon_sym_RBRACE] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1659), - [anon_sym_LPAREN2] = ACTIONS(1661), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1661), - [anon_sym_DOT_DOT_LT] = ACTIONS(1661), - [aux_sym__immediate_decimal_token1] = ACTIONS(4618), - [aux_sym__immediate_decimal_token2] = ACTIONS(4620), - [aux_sym__val_number_decimal_token1] = ACTIONS(1659), - [aux_sym__val_number_decimal_token2] = ACTIONS(1661), - [aux_sym__val_number_decimal_token3] = ACTIONS(1661), - [aux_sym__val_number_decimal_token4] = ACTIONS(1661), - [aux_sym__val_number_token1] = ACTIONS(1661), - [aux_sym__val_number_token2] = ACTIONS(1661), - [aux_sym__val_number_token3] = ACTIONS(1661), - [anon_sym_0b] = ACTIONS(1659), - [anon_sym_0o] = ACTIONS(1659), - [anon_sym_0x] = ACTIONS(1659), - [sym_val_date] = ACTIONS(1661), - [anon_sym_DQUOTE] = ACTIONS(1661), - [sym__str_single_quotes] = ACTIONS(1661), - [sym__str_back_ticks] = ACTIONS(1661), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1661), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1661), - [anon_sym_err_GT] = ACTIONS(1659), - [anon_sym_out_GT] = ACTIONS(1659), - [anon_sym_e_GT] = ACTIONS(1659), - [anon_sym_o_GT] = ACTIONS(1659), - [anon_sym_err_PLUSout_GT] = ACTIONS(1659), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1659), - [anon_sym_o_PLUSe_GT] = ACTIONS(1659), - [anon_sym_e_PLUSo_GT] = ACTIONS(1659), - [anon_sym_err_GT_GT] = ACTIONS(1661), - [anon_sym_out_GT_GT] = ACTIONS(1661), - [anon_sym_e_GT_GT] = ACTIONS(1661), - [anon_sym_o_GT_GT] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1661), - [aux_sym_unquoted_token1] = ACTIONS(1659), - [aux_sym_unquoted_token2] = ACTIONS(1659), - [anon_sym_POUND] = ACTIONS(247), + [1258] = { + [sym_comment] = STATE(1258), + [anon_sym_EQ] = ACTIONS(1066), + [anon_sym_PLUS_EQ] = ACTIONS(1068), + [anon_sym_DASH_EQ] = ACTIONS(1068), + [anon_sym_STAR_EQ] = ACTIONS(1068), + [anon_sym_SLASH_EQ] = ACTIONS(1068), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1068), + [sym__newline] = ACTIONS(1066), + [anon_sym_SEMI] = ACTIONS(1068), + [anon_sym_PIPE] = ACTIONS(1068), + [anon_sym_err_GT_PIPE] = ACTIONS(1068), + [anon_sym_out_GT_PIPE] = ACTIONS(1068), + [anon_sym_e_GT_PIPE] = ACTIONS(1068), + [anon_sym_o_GT_PIPE] = ACTIONS(1068), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1068), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1068), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1068), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1068), + [anon_sym_RPAREN] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(1068), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1068), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1068), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1068), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1068), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1068), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1068), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1068), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1068), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1068), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1068), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1068), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1068), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1068), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1068), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1068), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1068), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1068), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1068), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1068), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1068), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1068), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1068), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1068), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1068), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1068), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1068), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1068), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1068), + [anon_sym_DOT_DOT2] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(1066), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1068), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1068), + [anon_sym_err_GT] = ACTIONS(1066), + [anon_sym_out_GT] = ACTIONS(1066), + [anon_sym_e_GT] = ACTIONS(1066), + [anon_sym_o_GT] = ACTIONS(1066), + [anon_sym_err_PLUSout_GT] = ACTIONS(1066), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1066), + [anon_sym_o_PLUSe_GT] = ACTIONS(1066), + [anon_sym_e_PLUSo_GT] = ACTIONS(1066), + [anon_sym_err_GT_GT] = ACTIONS(1068), + [anon_sym_out_GT_GT] = ACTIONS(1068), + [anon_sym_e_GT_GT] = ACTIONS(1068), + [anon_sym_o_GT_GT] = ACTIONS(1068), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1068), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1068), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1068), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1068), + [anon_sym_POUND] = ACTIONS(249), }, - [1290] = { - [sym_comment] = STATE(1290), - [sym__newline] = ACTIONS(1520), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_err_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_GT_PIPE] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1520), - [anon_sym_RPAREN] = ACTIONS(1520), - [anon_sym_RBRACE] = ACTIONS(1520), - [anon_sym_LPAREN2] = ACTIONS(1520), - [aux_sym_expr_binary_token1] = ACTIONS(1520), - [aux_sym_expr_binary_token2] = ACTIONS(1520), - [aux_sym_expr_binary_token3] = ACTIONS(1520), - [aux_sym_expr_binary_token4] = ACTIONS(1520), - [aux_sym_expr_binary_token5] = ACTIONS(1520), - [aux_sym_expr_binary_token6] = ACTIONS(1520), - [aux_sym_expr_binary_token7] = ACTIONS(1520), - [aux_sym_expr_binary_token8] = ACTIONS(1520), - [aux_sym_expr_binary_token9] = ACTIONS(1520), - [aux_sym_expr_binary_token10] = ACTIONS(1520), - [aux_sym_expr_binary_token11] = ACTIONS(1520), - [aux_sym_expr_binary_token12] = ACTIONS(1520), - [aux_sym_expr_binary_token13] = ACTIONS(1520), - [aux_sym_expr_binary_token14] = ACTIONS(1520), - [aux_sym_expr_binary_token15] = ACTIONS(1520), - [aux_sym_expr_binary_token16] = ACTIONS(1520), - [aux_sym_expr_binary_token17] = ACTIONS(1520), - [aux_sym_expr_binary_token18] = ACTIONS(1520), - [aux_sym_expr_binary_token19] = ACTIONS(1520), - [aux_sym_expr_binary_token20] = ACTIONS(1520), - [aux_sym_expr_binary_token21] = ACTIONS(1520), - [aux_sym_expr_binary_token22] = ACTIONS(1520), - [aux_sym_expr_binary_token23] = ACTIONS(1520), - [aux_sym_expr_binary_token24] = ACTIONS(1520), - [aux_sym_expr_binary_token25] = ACTIONS(1520), - [aux_sym_expr_binary_token26] = ACTIONS(1520), - [aux_sym_expr_binary_token27] = ACTIONS(1520), - [aux_sym_expr_binary_token28] = ACTIONS(1520), - [anon_sym_DOT_DOT2] = ACTIONS(1518), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), - [aux_sym__immediate_decimal_token2] = ACTIONS(4580), - [sym_filesize_unit] = ACTIONS(1520), - [sym_duration_unit] = ACTIONS(1520), - [anon_sym_err_GT] = ACTIONS(1518), - [anon_sym_out_GT] = ACTIONS(1518), - [anon_sym_e_GT] = ACTIONS(1518), - [anon_sym_o_GT] = ACTIONS(1518), - [anon_sym_err_PLUSout_GT] = ACTIONS(1518), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), - [anon_sym_o_PLUSe_GT] = ACTIONS(1518), - [anon_sym_e_PLUSo_GT] = ACTIONS(1518), - [anon_sym_err_GT_GT] = ACTIONS(1520), - [anon_sym_out_GT_GT] = ACTIONS(1520), - [anon_sym_e_GT_GT] = ACTIONS(1520), - [anon_sym_o_GT_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1520), - [aux_sym_unquoted_token2] = ACTIONS(1518), - [anon_sym_POUND] = ACTIONS(247), + [1259] = { + [sym_comment] = STATE(1259), + [anon_sym_EQ] = ACTIONS(1070), + [anon_sym_PLUS_EQ] = ACTIONS(1072), + [anon_sym_DASH_EQ] = ACTIONS(1072), + [anon_sym_STAR_EQ] = ACTIONS(1072), + [anon_sym_SLASH_EQ] = ACTIONS(1072), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1072), + [sym__newline] = ACTIONS(1070), + [anon_sym_SEMI] = ACTIONS(1072), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_err_GT_PIPE] = ACTIONS(1072), + [anon_sym_out_GT_PIPE] = ACTIONS(1072), + [anon_sym_e_GT_PIPE] = ACTIONS(1072), + [anon_sym_o_GT_PIPE] = ACTIONS(1072), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1072), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1072), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1072), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1072), + [anon_sym_RPAREN] = ACTIONS(1072), + [anon_sym_LBRACE] = ACTIONS(1072), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1072), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1072), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1072), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1072), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1072), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1072), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1072), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1072), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1072), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1072), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1072), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1072), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1072), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1072), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1072), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1072), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1072), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1072), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1072), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1072), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1072), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1072), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1072), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1072), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1072), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1072), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1072), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1072), + [anon_sym_DOT_DOT2] = ACTIONS(1070), + [anon_sym_DOT] = ACTIONS(1070), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1072), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1072), + [anon_sym_err_GT] = ACTIONS(1070), + [anon_sym_out_GT] = ACTIONS(1070), + [anon_sym_e_GT] = ACTIONS(1070), + [anon_sym_o_GT] = ACTIONS(1070), + [anon_sym_err_PLUSout_GT] = ACTIONS(1070), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1070), + [anon_sym_o_PLUSe_GT] = ACTIONS(1070), + [anon_sym_e_PLUSo_GT] = ACTIONS(1070), + [anon_sym_err_GT_GT] = ACTIONS(1072), + [anon_sym_out_GT_GT] = ACTIONS(1072), + [anon_sym_e_GT_GT] = ACTIONS(1072), + [anon_sym_o_GT_GT] = ACTIONS(1072), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1072), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1072), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1072), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1072), + [anon_sym_POUND] = ACTIONS(249), }, - [1291] = { - [sym_comment] = STATE(1291), - [sym__newline] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1556), - [anon_sym_PIPE] = ACTIONS(1556), - [anon_sym_err_GT_PIPE] = ACTIONS(1556), - [anon_sym_out_GT_PIPE] = ACTIONS(1556), - [anon_sym_e_GT_PIPE] = ACTIONS(1556), - [anon_sym_o_GT_PIPE] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1556), - [anon_sym_RPAREN] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1556), - [anon_sym_LPAREN2] = ACTIONS(1556), - [aux_sym_expr_binary_token1] = ACTIONS(1556), - [aux_sym_expr_binary_token2] = ACTIONS(1556), - [aux_sym_expr_binary_token3] = ACTIONS(1556), - [aux_sym_expr_binary_token4] = ACTIONS(1556), - [aux_sym_expr_binary_token5] = ACTIONS(1556), - [aux_sym_expr_binary_token6] = ACTIONS(1556), - [aux_sym_expr_binary_token7] = ACTIONS(1556), - [aux_sym_expr_binary_token8] = ACTIONS(1556), - [aux_sym_expr_binary_token9] = ACTIONS(1556), - [aux_sym_expr_binary_token10] = ACTIONS(1556), - [aux_sym_expr_binary_token11] = ACTIONS(1556), - [aux_sym_expr_binary_token12] = ACTIONS(1556), - [aux_sym_expr_binary_token13] = ACTIONS(1556), - [aux_sym_expr_binary_token14] = ACTIONS(1556), - [aux_sym_expr_binary_token15] = ACTIONS(1556), - [aux_sym_expr_binary_token16] = ACTIONS(1556), - [aux_sym_expr_binary_token17] = ACTIONS(1556), - [aux_sym_expr_binary_token18] = ACTIONS(1556), - [aux_sym_expr_binary_token19] = ACTIONS(1556), - [aux_sym_expr_binary_token20] = ACTIONS(1556), - [aux_sym_expr_binary_token21] = ACTIONS(1556), - [aux_sym_expr_binary_token22] = ACTIONS(1556), - [aux_sym_expr_binary_token23] = ACTIONS(1556), - [aux_sym_expr_binary_token24] = ACTIONS(1556), - [aux_sym_expr_binary_token25] = ACTIONS(1556), - [aux_sym_expr_binary_token26] = ACTIONS(1556), - [aux_sym_expr_binary_token27] = ACTIONS(1556), - [aux_sym_expr_binary_token28] = ACTIONS(1556), - [anon_sym_DOT_DOT2] = ACTIONS(1554), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1556), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1556), - [aux_sym__immediate_decimal_token2] = ACTIONS(4622), - [sym_filesize_unit] = ACTIONS(1556), - [sym_duration_unit] = ACTIONS(1556), - [anon_sym_err_GT] = ACTIONS(1554), - [anon_sym_out_GT] = ACTIONS(1554), - [anon_sym_e_GT] = ACTIONS(1554), - [anon_sym_o_GT] = ACTIONS(1554), - [anon_sym_err_PLUSout_GT] = ACTIONS(1554), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1554), - [anon_sym_o_PLUSe_GT] = ACTIONS(1554), - [anon_sym_e_PLUSo_GT] = ACTIONS(1554), - [anon_sym_err_GT_GT] = ACTIONS(1556), - [anon_sym_out_GT_GT] = ACTIONS(1556), - [anon_sym_e_GT_GT] = ACTIONS(1556), - [anon_sym_o_GT_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1556), - [aux_sym_unquoted_token2] = ACTIONS(1554), - [anon_sym_POUND] = ACTIONS(247), + [1260] = { + [sym_comment] = STATE(1260), + [ts_builtin_sym_end] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1717), + [anon_sym_false] = ACTIONS(1717), + [anon_sym_null] = ACTIONS(1717), + [aux_sym_cmd_identifier_token38] = ACTIONS(1717), + [aux_sym_cmd_identifier_token39] = ACTIONS(1717), + [aux_sym_cmd_identifier_token40] = ACTIONS(1717), + [sym__newline] = ACTIONS(1717), + [anon_sym_SEMI] = ACTIONS(1717), + [anon_sym_PIPE] = ACTIONS(1717), + [anon_sym_err_GT_PIPE] = ACTIONS(1717), + [anon_sym_out_GT_PIPE] = ACTIONS(1717), + [anon_sym_e_GT_PIPE] = ACTIONS(1717), + [anon_sym_o_GT_PIPE] = ACTIONS(1717), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1717), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1717), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1717), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1717), + [anon_sym_LBRACK] = ACTIONS(1717), + [anon_sym_LPAREN] = ACTIONS(1715), + [anon_sym_DOLLAR] = ACTIONS(1715), + [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_LBRACE] = ACTIONS(1717), + [anon_sym_DOT_DOT] = ACTIONS(1715), + [anon_sym_LPAREN2] = ACTIONS(1717), + [anon_sym_DOT_DOT2] = ACTIONS(1715), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1715), + [anon_sym_DOT_DOT_LT] = ACTIONS(1715), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1717), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1717), + [aux_sym__immediate_decimal_token2] = ACTIONS(4608), + [aux_sym__val_number_decimal_token1] = ACTIONS(1715), + [aux_sym__val_number_decimal_token2] = ACTIONS(1717), + [aux_sym__val_number_decimal_token3] = ACTIONS(1717), + [aux_sym__val_number_decimal_token4] = ACTIONS(1717), + [aux_sym__val_number_token1] = ACTIONS(1717), + [aux_sym__val_number_token2] = ACTIONS(1717), + [aux_sym__val_number_token3] = ACTIONS(1717), + [anon_sym_0b] = ACTIONS(1715), + [anon_sym_0o] = ACTIONS(1715), + [anon_sym_0x] = ACTIONS(1715), + [sym_val_date] = ACTIONS(1717), + [anon_sym_DQUOTE] = ACTIONS(1717), + [sym__str_single_quotes] = ACTIONS(1717), + [sym__str_back_ticks] = ACTIONS(1717), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1717), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1717), + [anon_sym_err_GT] = ACTIONS(1715), + [anon_sym_out_GT] = ACTIONS(1715), + [anon_sym_e_GT] = ACTIONS(1715), + [anon_sym_o_GT] = ACTIONS(1715), + [anon_sym_err_PLUSout_GT] = ACTIONS(1715), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1715), + [anon_sym_o_PLUSe_GT] = ACTIONS(1715), + [anon_sym_e_PLUSo_GT] = ACTIONS(1715), + [anon_sym_err_GT_GT] = ACTIONS(1717), + [anon_sym_out_GT_GT] = ACTIONS(1717), + [anon_sym_e_GT_GT] = ACTIONS(1717), + [anon_sym_o_GT_GT] = ACTIONS(1717), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1717), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1717), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1717), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1717), + [aux_sym_unquoted_token1] = ACTIONS(1715), + [aux_sym_unquoted_token2] = ACTIONS(1715), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1717), }, - [1292] = { - [sym_comment] = STATE(1292), - [anon_sym_true] = ACTIONS(1048), - [anon_sym_false] = ACTIONS(1048), - [anon_sym_null] = ACTIONS(1048), - [aux_sym_cmd_identifier_token38] = ACTIONS(1048), - [aux_sym_cmd_identifier_token39] = ACTIONS(1048), - [aux_sym_cmd_identifier_token40] = ACTIONS(1048), - [sym__newline] = ACTIONS(1048), - [anon_sym_SEMI] = ACTIONS(1048), - [anon_sym_PIPE] = ACTIONS(1048), - [anon_sym_err_GT_PIPE] = ACTIONS(1048), - [anon_sym_out_GT_PIPE] = ACTIONS(1048), - [anon_sym_e_GT_PIPE] = ACTIONS(1048), - [anon_sym_o_GT_PIPE] = ACTIONS(1048), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1048), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1048), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1048), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1048), - [anon_sym_LBRACK] = ACTIONS(1048), - [anon_sym_LPAREN] = ACTIONS(1048), - [anon_sym_RPAREN] = ACTIONS(1048), - [anon_sym_DOLLAR] = ACTIONS(1046), - [anon_sym_DASH_DASH] = ACTIONS(1048), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1048), - [anon_sym_RBRACE] = ACTIONS(1048), - [anon_sym_DOT_DOT] = ACTIONS(1046), - [anon_sym_DOT_DOT2] = ACTIONS(1046), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1046), - [anon_sym_DOT_DOT_LT] = ACTIONS(1046), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1048), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1048), - [aux_sym__val_number_decimal_token1] = ACTIONS(1046), - [aux_sym__val_number_decimal_token2] = ACTIONS(1048), - [aux_sym__val_number_decimal_token3] = ACTIONS(1048), - [aux_sym__val_number_decimal_token4] = ACTIONS(1048), - [aux_sym__val_number_token1] = ACTIONS(1048), - [aux_sym__val_number_token2] = ACTIONS(1048), - [aux_sym__val_number_token3] = ACTIONS(1048), - [anon_sym_0b] = ACTIONS(1046), - [anon_sym_0o] = ACTIONS(1046), - [anon_sym_0x] = ACTIONS(1046), - [sym_val_date] = ACTIONS(1048), - [anon_sym_DQUOTE] = ACTIONS(1048), - [sym__str_single_quotes] = ACTIONS(1048), - [sym__str_back_ticks] = ACTIONS(1048), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1048), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1048), - [anon_sym_err_GT] = ACTIONS(1046), - [anon_sym_out_GT] = ACTIONS(1046), - [anon_sym_e_GT] = ACTIONS(1046), - [anon_sym_o_GT] = ACTIONS(1046), - [anon_sym_err_PLUSout_GT] = ACTIONS(1046), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1046), - [anon_sym_o_PLUSe_GT] = ACTIONS(1046), - [anon_sym_e_PLUSo_GT] = ACTIONS(1046), - [anon_sym_err_GT_GT] = ACTIONS(1048), - [anon_sym_out_GT_GT] = ACTIONS(1048), - [anon_sym_e_GT_GT] = ACTIONS(1048), - [anon_sym_o_GT_GT] = ACTIONS(1048), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1048), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1048), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1048), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1048), - [aux_sym_unquoted_token1] = ACTIONS(1046), - [anon_sym_POUND] = ACTIONS(247), + [1261] = { + [sym_comment] = STATE(1261), + [ts_builtin_sym_end] = ACTIONS(1771), + [anon_sym_true] = ACTIONS(1771), + [anon_sym_false] = ACTIONS(1771), + [anon_sym_null] = ACTIONS(1771), + [aux_sym_cmd_identifier_token38] = ACTIONS(1771), + [aux_sym_cmd_identifier_token39] = ACTIONS(1771), + [aux_sym_cmd_identifier_token40] = ACTIONS(1771), + [sym__newline] = ACTIONS(1771), + [anon_sym_SEMI] = ACTIONS(1771), + [anon_sym_PIPE] = ACTIONS(1771), + [anon_sym_err_GT_PIPE] = ACTIONS(1771), + [anon_sym_out_GT_PIPE] = ACTIONS(1771), + [anon_sym_e_GT_PIPE] = ACTIONS(1771), + [anon_sym_o_GT_PIPE] = ACTIONS(1771), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1771), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1771), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1771), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1771), + [anon_sym_LPAREN] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1769), + [anon_sym_DASH_DASH] = ACTIONS(1771), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_LBRACE] = ACTIONS(1771), + [anon_sym_DOT_DOT] = ACTIONS(1769), + [anon_sym_LPAREN2] = ACTIONS(1771), + [anon_sym_DOT_DOT2] = ACTIONS(1769), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1769), + [anon_sym_DOT_DOT_LT] = ACTIONS(1769), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1771), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1771), + [aux_sym__immediate_decimal_token2] = ACTIONS(4635), + [aux_sym__val_number_decimal_token1] = ACTIONS(1769), + [aux_sym__val_number_decimal_token2] = ACTIONS(1771), + [aux_sym__val_number_decimal_token3] = ACTIONS(1771), + [aux_sym__val_number_decimal_token4] = ACTIONS(1771), + [aux_sym__val_number_token1] = ACTIONS(1771), + [aux_sym__val_number_token2] = ACTIONS(1771), + [aux_sym__val_number_token3] = ACTIONS(1771), + [anon_sym_0b] = ACTIONS(1769), + [anon_sym_0o] = ACTIONS(1769), + [anon_sym_0x] = ACTIONS(1769), + [sym_val_date] = ACTIONS(1771), + [anon_sym_DQUOTE] = ACTIONS(1771), + [sym__str_single_quotes] = ACTIONS(1771), + [sym__str_back_ticks] = ACTIONS(1771), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1771), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1771), + [anon_sym_err_GT] = ACTIONS(1769), + [anon_sym_out_GT] = ACTIONS(1769), + [anon_sym_e_GT] = ACTIONS(1769), + [anon_sym_o_GT] = ACTIONS(1769), + [anon_sym_err_PLUSout_GT] = ACTIONS(1769), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1769), + [anon_sym_o_PLUSe_GT] = ACTIONS(1769), + [anon_sym_e_PLUSo_GT] = ACTIONS(1769), + [anon_sym_err_GT_GT] = ACTIONS(1771), + [anon_sym_out_GT_GT] = ACTIONS(1771), + [anon_sym_e_GT_GT] = ACTIONS(1771), + [anon_sym_o_GT_GT] = ACTIONS(1771), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1771), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1771), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1771), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1771), + [aux_sym_unquoted_token1] = ACTIONS(1769), + [aux_sym_unquoted_token2] = ACTIONS(1769), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1771), }, - [1293] = { - [sym_comment] = STATE(1293), - [ts_builtin_sym_end] = ACTIONS(1669), - [anon_sym_true] = ACTIONS(1669), - [anon_sym_false] = ACTIONS(1669), - [anon_sym_null] = ACTIONS(1669), - [aux_sym_cmd_identifier_token38] = ACTIONS(1669), - [aux_sym_cmd_identifier_token39] = ACTIONS(1669), - [aux_sym_cmd_identifier_token40] = ACTIONS(1669), - [sym__newline] = ACTIONS(1669), - [anon_sym_SEMI] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1669), - [anon_sym_err_GT_PIPE] = ACTIONS(1669), - [anon_sym_out_GT_PIPE] = ACTIONS(1669), - [anon_sym_e_GT_PIPE] = ACTIONS(1669), - [anon_sym_o_GT_PIPE] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), - [anon_sym_LBRACK] = ACTIONS(1669), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_DOLLAR] = ACTIONS(1667), - [anon_sym_DASH_DASH] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_LBRACE] = ACTIONS(1669), - [anon_sym_DOT_DOT] = ACTIONS(1667), - [anon_sym_LPAREN2] = ACTIONS(1669), - [anon_sym_DOT_DOT2] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1667), - [anon_sym_DOT_DOT_LT] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [aux_sym__val_number_decimal_token1] = ACTIONS(1667), - [aux_sym__val_number_decimal_token2] = ACTIONS(1669), - [aux_sym__val_number_decimal_token3] = ACTIONS(1669), - [aux_sym__val_number_decimal_token4] = ACTIONS(1669), - [aux_sym__val_number_token1] = ACTIONS(1669), - [aux_sym__val_number_token2] = ACTIONS(1669), - [aux_sym__val_number_token3] = ACTIONS(1669), - [anon_sym_0b] = ACTIONS(1667), - [anon_sym_0o] = ACTIONS(1667), - [anon_sym_0x] = ACTIONS(1667), - [sym_val_date] = ACTIONS(1669), - [anon_sym_DQUOTE] = ACTIONS(1669), - [sym__str_single_quotes] = ACTIONS(1669), - [sym__str_back_ticks] = ACTIONS(1669), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1669), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1669), - [anon_sym_err_GT] = ACTIONS(1667), - [anon_sym_out_GT] = ACTIONS(1667), - [anon_sym_e_GT] = ACTIONS(1667), - [anon_sym_o_GT] = ACTIONS(1667), - [anon_sym_err_PLUSout_GT] = ACTIONS(1667), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1667), - [anon_sym_o_PLUSe_GT] = ACTIONS(1667), - [anon_sym_e_PLUSo_GT] = ACTIONS(1667), - [anon_sym_err_GT_GT] = ACTIONS(1669), - [anon_sym_out_GT_GT] = ACTIONS(1669), - [anon_sym_e_GT_GT] = ACTIONS(1669), - [anon_sym_o_GT_GT] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1669), - [aux_sym_unquoted_token1] = ACTIONS(1667), - [aux_sym_unquoted_token2] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(247), + [1262] = { + [sym_comment] = STATE(1262), + [ts_builtin_sym_end] = ACTIONS(1538), + [anon_sym_true] = ACTIONS(1538), + [anon_sym_false] = ACTIONS(1538), + [anon_sym_null] = ACTIONS(1538), + [aux_sym_cmd_identifier_token38] = ACTIONS(1538), + [aux_sym_cmd_identifier_token39] = ACTIONS(1538), + [aux_sym_cmd_identifier_token40] = ACTIONS(1538), + [sym__newline] = ACTIONS(1538), + [anon_sym_SEMI] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_err_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_GT_PIPE] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), + [anon_sym_LBRACK] = ACTIONS(1538), + [anon_sym_LPAREN] = ACTIONS(1538), + [anon_sym_DOLLAR] = ACTIONS(1536), + [anon_sym_DASH_DASH] = ACTIONS(1538), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1538), + [anon_sym_DOT_DOT] = ACTIONS(1536), + [anon_sym_DOT_DOT2] = ACTIONS(1536), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1536), + [anon_sym_DOT_DOT_LT] = ACTIONS(1536), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), + [aux_sym__val_number_decimal_token1] = ACTIONS(1536), + [aux_sym__val_number_decimal_token2] = ACTIONS(1538), + [aux_sym__val_number_decimal_token3] = ACTIONS(1538), + [aux_sym__val_number_decimal_token4] = ACTIONS(1538), + [aux_sym__val_number_token1] = ACTIONS(1538), + [aux_sym__val_number_token2] = ACTIONS(1538), + [aux_sym__val_number_token3] = ACTIONS(1538), + [anon_sym_0b] = ACTIONS(1536), + [sym_filesize_unit] = ACTIONS(1538), + [sym_duration_unit] = ACTIONS(1538), + [anon_sym_0o] = ACTIONS(1536), + [anon_sym_0x] = ACTIONS(1536), + [sym_val_date] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(1538), + [sym__str_single_quotes] = ACTIONS(1538), + [sym__str_back_ticks] = ACTIONS(1538), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1538), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1538), + [anon_sym_err_GT] = ACTIONS(1536), + [anon_sym_out_GT] = ACTIONS(1536), + [anon_sym_e_GT] = ACTIONS(1536), + [anon_sym_o_GT] = ACTIONS(1536), + [anon_sym_err_PLUSout_GT] = ACTIONS(1536), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), + [anon_sym_o_PLUSe_GT] = ACTIONS(1536), + [anon_sym_e_PLUSo_GT] = ACTIONS(1536), + [anon_sym_err_GT_GT] = ACTIONS(1538), + [anon_sym_out_GT_GT] = ACTIONS(1538), + [anon_sym_e_GT_GT] = ACTIONS(1538), + [anon_sym_o_GT_GT] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), + [aux_sym_unquoted_token1] = ACTIONS(1536), + [aux_sym_unquoted_token2] = ACTIONS(1536), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1538), }, - [1294] = { - [sym_comment] = STATE(1294), - [anon_sym_true] = ACTIONS(1052), - [anon_sym_false] = ACTIONS(1052), - [anon_sym_null] = ACTIONS(1052), - [aux_sym_cmd_identifier_token38] = ACTIONS(1052), - [aux_sym_cmd_identifier_token39] = ACTIONS(1052), - [aux_sym_cmd_identifier_token40] = ACTIONS(1052), - [sym__newline] = ACTIONS(1052), - [anon_sym_SEMI] = ACTIONS(1052), - [anon_sym_PIPE] = ACTIONS(1052), - [anon_sym_err_GT_PIPE] = ACTIONS(1052), - [anon_sym_out_GT_PIPE] = ACTIONS(1052), - [anon_sym_e_GT_PIPE] = ACTIONS(1052), - [anon_sym_o_GT_PIPE] = ACTIONS(1052), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1052), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1052), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1052), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1052), - [anon_sym_LBRACK] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1052), - [anon_sym_RPAREN] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(1050), - [anon_sym_DASH_DASH] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_LBRACE] = ACTIONS(1052), - [anon_sym_RBRACE] = ACTIONS(1052), - [anon_sym_DOT_DOT] = ACTIONS(1050), - [anon_sym_DOT_DOT2] = ACTIONS(1050), - [anon_sym_DOT] = ACTIONS(1050), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1050), - [anon_sym_DOT_DOT_LT] = ACTIONS(1050), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1052), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1052), - [aux_sym__val_number_decimal_token1] = ACTIONS(1050), - [aux_sym__val_number_decimal_token2] = ACTIONS(1052), - [aux_sym__val_number_decimal_token3] = ACTIONS(1052), - [aux_sym__val_number_decimal_token4] = ACTIONS(1052), - [aux_sym__val_number_token1] = ACTIONS(1052), - [aux_sym__val_number_token2] = ACTIONS(1052), - [aux_sym__val_number_token3] = ACTIONS(1052), - [anon_sym_0b] = ACTIONS(1050), - [anon_sym_0o] = ACTIONS(1050), - [anon_sym_0x] = ACTIONS(1050), - [sym_val_date] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(1052), - [sym__str_single_quotes] = ACTIONS(1052), - [sym__str_back_ticks] = ACTIONS(1052), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1052), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1052), - [anon_sym_err_GT] = ACTIONS(1050), - [anon_sym_out_GT] = ACTIONS(1050), - [anon_sym_e_GT] = ACTIONS(1050), - [anon_sym_o_GT] = ACTIONS(1050), - [anon_sym_err_PLUSout_GT] = ACTIONS(1050), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1050), - [anon_sym_o_PLUSe_GT] = ACTIONS(1050), - [anon_sym_e_PLUSo_GT] = ACTIONS(1050), - [anon_sym_err_GT_GT] = ACTIONS(1052), - [anon_sym_out_GT_GT] = ACTIONS(1052), - [anon_sym_e_GT_GT] = ACTIONS(1052), - [anon_sym_o_GT_GT] = ACTIONS(1052), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1052), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1052), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1052), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1052), - [aux_sym_unquoted_token1] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(247), + [1263] = { + [sym_comment] = STATE(1263), + [ts_builtin_sym_end] = ACTIONS(1056), + [anon_sym_EQ] = ACTIONS(1054), + [anon_sym_PLUS_EQ] = ACTIONS(1056), + [anon_sym_DASH_EQ] = ACTIONS(1056), + [anon_sym_STAR_EQ] = ACTIONS(1056), + [anon_sym_SLASH_EQ] = ACTIONS(1056), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1056), + [sym__newline] = ACTIONS(1056), + [anon_sym_SEMI] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(1056), + [anon_sym_err_GT_PIPE] = ACTIONS(1056), + [anon_sym_out_GT_PIPE] = ACTIONS(1056), + [anon_sym_e_GT_PIPE] = ACTIONS(1056), + [anon_sym_o_GT_PIPE] = ACTIONS(1056), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1056), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1056), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1056), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1056), + [anon_sym_QMARK2] = ACTIONS(1056), + [aux_sym_expr_binary_token1] = ACTIONS(1056), + [aux_sym_expr_binary_token2] = ACTIONS(1056), + [aux_sym_expr_binary_token3] = ACTIONS(1056), + [aux_sym_expr_binary_token4] = ACTIONS(1056), + [aux_sym_expr_binary_token5] = ACTIONS(1056), + [aux_sym_expr_binary_token6] = ACTIONS(1056), + [aux_sym_expr_binary_token7] = ACTIONS(1056), + [aux_sym_expr_binary_token8] = ACTIONS(1056), + [aux_sym_expr_binary_token9] = ACTIONS(1056), + [aux_sym_expr_binary_token10] = ACTIONS(1056), + [aux_sym_expr_binary_token11] = ACTIONS(1056), + [aux_sym_expr_binary_token12] = ACTIONS(1056), + [aux_sym_expr_binary_token13] = ACTIONS(1056), + [aux_sym_expr_binary_token14] = ACTIONS(1056), + [aux_sym_expr_binary_token15] = ACTIONS(1056), + [aux_sym_expr_binary_token16] = ACTIONS(1056), + [aux_sym_expr_binary_token17] = ACTIONS(1056), + [aux_sym_expr_binary_token18] = ACTIONS(1056), + [aux_sym_expr_binary_token19] = ACTIONS(1056), + [aux_sym_expr_binary_token20] = ACTIONS(1056), + [aux_sym_expr_binary_token21] = ACTIONS(1056), + [aux_sym_expr_binary_token22] = ACTIONS(1056), + [aux_sym_expr_binary_token23] = ACTIONS(1056), + [aux_sym_expr_binary_token24] = ACTIONS(1056), + [aux_sym_expr_binary_token25] = ACTIONS(1056), + [aux_sym_expr_binary_token26] = ACTIONS(1056), + [aux_sym_expr_binary_token27] = ACTIONS(1056), + [aux_sym_expr_binary_token28] = ACTIONS(1056), + [anon_sym_DOT_DOT2] = ACTIONS(1054), + [anon_sym_DOT] = ACTIONS(1054), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1056), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1056), + [anon_sym_err_GT] = ACTIONS(1054), + [anon_sym_out_GT] = ACTIONS(1054), + [anon_sym_e_GT] = ACTIONS(1054), + [anon_sym_o_GT] = ACTIONS(1054), + [anon_sym_err_PLUSout_GT] = ACTIONS(1054), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1054), + [anon_sym_o_PLUSe_GT] = ACTIONS(1054), + [anon_sym_e_PLUSo_GT] = ACTIONS(1054), + [anon_sym_err_GT_GT] = ACTIONS(1056), + [anon_sym_out_GT_GT] = ACTIONS(1056), + [anon_sym_e_GT_GT] = ACTIONS(1056), + [anon_sym_o_GT_GT] = ACTIONS(1056), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1056), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1056), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1056), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1056), + [anon_sym_POUND] = ACTIONS(249), }, - [1295] = { - [sym_comment] = STATE(1295), + [1264] = { + [sym_comment] = STATE(1264), + [anon_sym_true] = ACTIONS(1060), + [anon_sym_false] = ACTIONS(1060), + [anon_sym_null] = ACTIONS(1060), + [aux_sym_cmd_identifier_token38] = ACTIONS(1060), + [aux_sym_cmd_identifier_token39] = ACTIONS(1060), + [aux_sym_cmd_identifier_token40] = ACTIONS(1060), + [sym__newline] = ACTIONS(1060), + [anon_sym_SEMI] = ACTIONS(1060), + [anon_sym_PIPE] = ACTIONS(1060), + [anon_sym_err_GT_PIPE] = ACTIONS(1060), + [anon_sym_out_GT_PIPE] = ACTIONS(1060), + [anon_sym_e_GT_PIPE] = ACTIONS(1060), + [anon_sym_o_GT_PIPE] = ACTIONS(1060), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1060), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1060), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1060), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1060), + [anon_sym_LBRACK] = ACTIONS(1060), + [anon_sym_LPAREN] = ACTIONS(1060), + [anon_sym_RPAREN] = ACTIONS(1060), + [anon_sym_DOLLAR] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1060), + [anon_sym_DASH] = ACTIONS(1058), + [anon_sym_LBRACE] = ACTIONS(1060), + [anon_sym_RBRACE] = ACTIONS(1060), + [anon_sym_DOT_DOT] = ACTIONS(1058), + [anon_sym_QMARK2] = ACTIONS(1060), + [anon_sym_DOT_DOT2] = ACTIONS(1058), + [anon_sym_DOT] = ACTIONS(1058), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1058), + [anon_sym_DOT_DOT_LT] = ACTIONS(1058), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1060), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1060), + [aux_sym__val_number_decimal_token1] = ACTIONS(1058), + [aux_sym__val_number_decimal_token2] = ACTIONS(1060), + [aux_sym__val_number_decimal_token3] = ACTIONS(1060), + [aux_sym__val_number_decimal_token4] = ACTIONS(1060), + [aux_sym__val_number_token1] = ACTIONS(1060), + [aux_sym__val_number_token2] = ACTIONS(1060), + [aux_sym__val_number_token3] = ACTIONS(1060), + [anon_sym_0b] = ACTIONS(1058), + [anon_sym_0o] = ACTIONS(1058), + [anon_sym_0x] = ACTIONS(1058), + [sym_val_date] = ACTIONS(1060), + [anon_sym_DQUOTE] = ACTIONS(1060), + [sym__str_single_quotes] = ACTIONS(1060), + [sym__str_back_ticks] = ACTIONS(1060), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1060), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1060), + [anon_sym_err_GT] = ACTIONS(1058), + [anon_sym_out_GT] = ACTIONS(1058), + [anon_sym_e_GT] = ACTIONS(1058), + [anon_sym_o_GT] = ACTIONS(1058), + [anon_sym_err_PLUSout_GT] = ACTIONS(1058), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1058), + [anon_sym_o_PLUSe_GT] = ACTIONS(1058), + [anon_sym_e_PLUSo_GT] = ACTIONS(1058), + [anon_sym_err_GT_GT] = ACTIONS(1060), + [anon_sym_out_GT_GT] = ACTIONS(1060), + [anon_sym_e_GT_GT] = ACTIONS(1060), + [anon_sym_o_GT_GT] = ACTIONS(1060), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1060), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1060), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1060), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1060), + [aux_sym_unquoted_token1] = ACTIONS(1058), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1060), + }, + [1265] = { + [sym_comment] = STATE(1265), + [anon_sym_true] = ACTIONS(1717), + [anon_sym_false] = ACTIONS(1717), + [anon_sym_null] = ACTIONS(1717), + [aux_sym_cmd_identifier_token38] = ACTIONS(1717), + [aux_sym_cmd_identifier_token39] = ACTIONS(1717), + [aux_sym_cmd_identifier_token40] = ACTIONS(1717), + [sym__newline] = ACTIONS(1717), + [anon_sym_SEMI] = ACTIONS(1717), + [anon_sym_PIPE] = ACTIONS(1717), + [anon_sym_err_GT_PIPE] = ACTIONS(1717), + [anon_sym_out_GT_PIPE] = ACTIONS(1717), + [anon_sym_e_GT_PIPE] = ACTIONS(1717), + [anon_sym_o_GT_PIPE] = ACTIONS(1717), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1717), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1717), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1717), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1717), + [anon_sym_LBRACK] = ACTIONS(1717), + [anon_sym_LPAREN] = ACTIONS(1717), + [anon_sym_RPAREN] = ACTIONS(1717), + [anon_sym_DOLLAR] = ACTIONS(1715), + [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_LBRACE] = ACTIONS(1717), + [anon_sym_RBRACE] = ACTIONS(1717), + [anon_sym_DOT_DOT] = ACTIONS(1715), + [anon_sym_DOT_DOT2] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(4637), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1715), + [anon_sym_DOT_DOT_LT] = ACTIONS(1715), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1717), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1717), + [aux_sym__immediate_decimal_token2] = ACTIONS(4639), + [aux_sym__val_number_decimal_token1] = ACTIONS(1715), + [aux_sym__val_number_decimal_token2] = ACTIONS(1717), + [aux_sym__val_number_decimal_token3] = ACTIONS(1717), + [aux_sym__val_number_decimal_token4] = ACTIONS(1717), + [aux_sym__val_number_token1] = ACTIONS(1717), + [aux_sym__val_number_token2] = ACTIONS(1717), + [aux_sym__val_number_token3] = ACTIONS(1717), + [anon_sym_0b] = ACTIONS(1715), + [anon_sym_0o] = ACTIONS(1715), + [anon_sym_0x] = ACTIONS(1715), + [sym_val_date] = ACTIONS(1717), + [anon_sym_DQUOTE] = ACTIONS(1717), + [sym__str_single_quotes] = ACTIONS(1717), + [sym__str_back_ticks] = ACTIONS(1717), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1717), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1717), + [anon_sym_err_GT] = ACTIONS(1715), + [anon_sym_out_GT] = ACTIONS(1715), + [anon_sym_e_GT] = ACTIONS(1715), + [anon_sym_o_GT] = ACTIONS(1715), + [anon_sym_err_PLUSout_GT] = ACTIONS(1715), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1715), + [anon_sym_o_PLUSe_GT] = ACTIONS(1715), + [anon_sym_e_PLUSo_GT] = ACTIONS(1715), + [anon_sym_err_GT_GT] = ACTIONS(1717), + [anon_sym_out_GT_GT] = ACTIONS(1717), + [anon_sym_e_GT_GT] = ACTIONS(1717), + [anon_sym_o_GT_GT] = ACTIONS(1717), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1717), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1717), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1717), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1717), + [aux_sym_unquoted_token1] = ACTIONS(1715), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1717), + }, + [1266] = { + [sym_comment] = STATE(1266), + [ts_builtin_sym_end] = ACTIONS(1060), + [anon_sym_EQ] = ACTIONS(1058), + [anon_sym_PLUS_EQ] = ACTIONS(1060), + [anon_sym_DASH_EQ] = ACTIONS(1060), + [anon_sym_STAR_EQ] = ACTIONS(1060), + [anon_sym_SLASH_EQ] = ACTIONS(1060), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1060), + [sym__newline] = ACTIONS(1060), + [anon_sym_SEMI] = ACTIONS(1060), + [anon_sym_PIPE] = ACTIONS(1060), + [anon_sym_err_GT_PIPE] = ACTIONS(1060), + [anon_sym_out_GT_PIPE] = ACTIONS(1060), + [anon_sym_e_GT_PIPE] = ACTIONS(1060), + [anon_sym_o_GT_PIPE] = ACTIONS(1060), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1060), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1060), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1060), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1060), + [anon_sym_QMARK2] = ACTIONS(1060), + [aux_sym_expr_binary_token1] = ACTIONS(1060), + [aux_sym_expr_binary_token2] = ACTIONS(1060), + [aux_sym_expr_binary_token3] = ACTIONS(1060), + [aux_sym_expr_binary_token4] = ACTIONS(1060), + [aux_sym_expr_binary_token5] = ACTIONS(1060), + [aux_sym_expr_binary_token6] = ACTIONS(1060), + [aux_sym_expr_binary_token7] = ACTIONS(1060), + [aux_sym_expr_binary_token8] = ACTIONS(1060), + [aux_sym_expr_binary_token9] = ACTIONS(1060), + [aux_sym_expr_binary_token10] = ACTIONS(1060), + [aux_sym_expr_binary_token11] = ACTIONS(1060), + [aux_sym_expr_binary_token12] = ACTIONS(1060), + [aux_sym_expr_binary_token13] = ACTIONS(1060), + [aux_sym_expr_binary_token14] = ACTIONS(1060), + [aux_sym_expr_binary_token15] = ACTIONS(1060), + [aux_sym_expr_binary_token16] = ACTIONS(1060), + [aux_sym_expr_binary_token17] = ACTIONS(1060), + [aux_sym_expr_binary_token18] = ACTIONS(1060), + [aux_sym_expr_binary_token19] = ACTIONS(1060), + [aux_sym_expr_binary_token20] = ACTIONS(1060), + [aux_sym_expr_binary_token21] = ACTIONS(1060), + [aux_sym_expr_binary_token22] = ACTIONS(1060), + [aux_sym_expr_binary_token23] = ACTIONS(1060), + [aux_sym_expr_binary_token24] = ACTIONS(1060), + [aux_sym_expr_binary_token25] = ACTIONS(1060), + [aux_sym_expr_binary_token26] = ACTIONS(1060), + [aux_sym_expr_binary_token27] = ACTIONS(1060), + [aux_sym_expr_binary_token28] = ACTIONS(1060), + [anon_sym_DOT_DOT2] = ACTIONS(1058), + [anon_sym_DOT] = ACTIONS(1058), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1060), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1060), + [anon_sym_err_GT] = ACTIONS(1058), + [anon_sym_out_GT] = ACTIONS(1058), + [anon_sym_e_GT] = ACTIONS(1058), + [anon_sym_o_GT] = ACTIONS(1058), + [anon_sym_err_PLUSout_GT] = ACTIONS(1058), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1058), + [anon_sym_o_PLUSe_GT] = ACTIONS(1058), + [anon_sym_e_PLUSo_GT] = ACTIONS(1058), + [anon_sym_err_GT_GT] = ACTIONS(1060), + [anon_sym_out_GT_GT] = ACTIONS(1060), + [anon_sym_e_GT_GT] = ACTIONS(1060), + [anon_sym_o_GT_GT] = ACTIONS(1060), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1060), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1060), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1060), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1060), + [anon_sym_POUND] = ACTIONS(249), + }, + [1267] = { + [sym_comment] = STATE(1267), + [anon_sym_true] = ACTIONS(1705), + [anon_sym_false] = ACTIONS(1705), + [anon_sym_null] = ACTIONS(1705), + [aux_sym_cmd_identifier_token38] = ACTIONS(1705), + [aux_sym_cmd_identifier_token39] = ACTIONS(1705), + [aux_sym_cmd_identifier_token40] = ACTIONS(1705), + [sym__newline] = ACTIONS(1705), + [anon_sym_SEMI] = ACTIONS(1705), + [anon_sym_PIPE] = ACTIONS(1705), + [anon_sym_err_GT_PIPE] = ACTIONS(1705), + [anon_sym_out_GT_PIPE] = ACTIONS(1705), + [anon_sym_e_GT_PIPE] = ACTIONS(1705), + [anon_sym_o_GT_PIPE] = ACTIONS(1705), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1705), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1705), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1705), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1705), + [anon_sym_LBRACK] = ACTIONS(1705), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_RPAREN] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1703), + [anon_sym_DASH_DASH] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_LBRACE] = ACTIONS(1705), + [anon_sym_RBRACE] = ACTIONS(1705), + [anon_sym_DOT_DOT] = ACTIONS(1703), + [anon_sym_LPAREN2] = ACTIONS(1705), + [anon_sym_DOT_DOT2] = ACTIONS(1703), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT] = ACTIONS(1703), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1705), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1705), + [aux_sym__val_number_decimal_token1] = ACTIONS(1703), + [aux_sym__val_number_decimal_token2] = ACTIONS(1705), + [aux_sym__val_number_decimal_token3] = ACTIONS(1705), + [aux_sym__val_number_decimal_token4] = ACTIONS(1705), + [aux_sym__val_number_token1] = ACTIONS(1705), + [aux_sym__val_number_token2] = ACTIONS(1705), + [aux_sym__val_number_token3] = ACTIONS(1705), + [anon_sym_0b] = ACTIONS(1703), + [anon_sym_0o] = ACTIONS(1703), + [anon_sym_0x] = ACTIONS(1703), + [sym_val_date] = ACTIONS(1705), + [anon_sym_DQUOTE] = ACTIONS(1705), + [sym__str_single_quotes] = ACTIONS(1705), + [sym__str_back_ticks] = ACTIONS(1705), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1705), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1705), + [anon_sym_err_GT] = ACTIONS(1703), + [anon_sym_out_GT] = ACTIONS(1703), + [anon_sym_e_GT] = ACTIONS(1703), + [anon_sym_o_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT] = ACTIONS(1703), + [anon_sym_err_GT_GT] = ACTIONS(1705), + [anon_sym_out_GT_GT] = ACTIONS(1705), + [anon_sym_e_GT_GT] = ACTIONS(1705), + [anon_sym_o_GT_GT] = ACTIONS(1705), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1705), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1705), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1705), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1705), + [aux_sym_unquoted_token1] = ACTIONS(1703), + [aux_sym_unquoted_token2] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1705), + }, + [1268] = { + [sym_comment] = STATE(1268), + [anon_sym_EQ] = ACTIONS(1074), + [anon_sym_PLUS_EQ] = ACTIONS(1076), + [anon_sym_DASH_EQ] = ACTIONS(1076), + [anon_sym_STAR_EQ] = ACTIONS(1076), + [anon_sym_SLASH_EQ] = ACTIONS(1076), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1076), + [sym__newline] = ACTIONS(1074), + [anon_sym_SEMI] = ACTIONS(1076), + [anon_sym_PIPE] = ACTIONS(1076), + [anon_sym_err_GT_PIPE] = ACTIONS(1076), + [anon_sym_out_GT_PIPE] = ACTIONS(1076), + [anon_sym_e_GT_PIPE] = ACTIONS(1076), + [anon_sym_o_GT_PIPE] = ACTIONS(1076), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1076), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1076), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1076), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1076), + [anon_sym_RPAREN] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1076), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1076), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1076), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1076), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1076), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1076), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1076), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1076), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1076), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1076), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1076), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1076), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1076), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1076), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1076), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1076), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1076), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1076), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1076), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1076), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1076), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1076), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1076), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1076), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1076), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1076), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1076), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1076), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1076), + [anon_sym_DOT_DOT2] = ACTIONS(1074), + [anon_sym_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1076), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1076), + [anon_sym_err_GT] = ACTIONS(1074), + [anon_sym_out_GT] = ACTIONS(1074), + [anon_sym_e_GT] = ACTIONS(1074), + [anon_sym_o_GT] = ACTIONS(1074), + [anon_sym_err_PLUSout_GT] = ACTIONS(1074), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1074), + [anon_sym_o_PLUSe_GT] = ACTIONS(1074), + [anon_sym_e_PLUSo_GT] = ACTIONS(1074), + [anon_sym_err_GT_GT] = ACTIONS(1076), + [anon_sym_out_GT_GT] = ACTIONS(1076), + [anon_sym_e_GT_GT] = ACTIONS(1076), + [anon_sym_o_GT_GT] = ACTIONS(1076), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1076), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1076), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1076), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1076), + [anon_sym_POUND] = ACTIONS(249), + }, + [1269] = { + [sym_comment] = STATE(1269), + [ts_builtin_sym_end] = ACTIONS(1640), + [anon_sym_true] = ACTIONS(1640), + [anon_sym_false] = ACTIONS(1640), + [anon_sym_null] = ACTIONS(1640), + [aux_sym_cmd_identifier_token38] = ACTIONS(1640), + [aux_sym_cmd_identifier_token39] = ACTIONS(1640), + [aux_sym_cmd_identifier_token40] = ACTIONS(1640), + [sym__newline] = ACTIONS(1640), + [anon_sym_SEMI] = ACTIONS(1640), + [anon_sym_PIPE] = ACTIONS(1640), + [anon_sym_err_GT_PIPE] = ACTIONS(1640), + [anon_sym_out_GT_PIPE] = ACTIONS(1640), + [anon_sym_e_GT_PIPE] = ACTIONS(1640), + [anon_sym_o_GT_PIPE] = ACTIONS(1640), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1640), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1640), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1640), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_LPAREN] = ACTIONS(1640), + [anon_sym_DOLLAR] = ACTIONS(1628), + [anon_sym_DASH_DASH] = ACTIONS(1640), + [anon_sym_DASH] = ACTIONS(1628), + [anon_sym_LBRACE] = ACTIONS(1640), + [anon_sym_DOT_DOT] = ACTIONS(1628), + [anon_sym_DOT_DOT2] = ACTIONS(4614), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1628), + [anon_sym_DOT_DOT_LT] = ACTIONS(1628), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4616), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4616), + [aux_sym__val_number_decimal_token1] = ACTIONS(1628), + [aux_sym__val_number_decimal_token2] = ACTIONS(1640), + [aux_sym__val_number_decimal_token3] = ACTIONS(1640), + [aux_sym__val_number_decimal_token4] = ACTIONS(1640), + [aux_sym__val_number_token1] = ACTIONS(1640), + [aux_sym__val_number_token2] = ACTIONS(1640), + [aux_sym__val_number_token3] = ACTIONS(1640), + [anon_sym_0b] = ACTIONS(1628), + [sym_filesize_unit] = ACTIONS(4641), + [sym_duration_unit] = ACTIONS(4643), + [anon_sym_0o] = ACTIONS(1628), + [anon_sym_0x] = ACTIONS(1628), + [sym_val_date] = ACTIONS(1640), + [anon_sym_DQUOTE] = ACTIONS(1640), + [sym__str_single_quotes] = ACTIONS(1640), + [sym__str_back_ticks] = ACTIONS(1640), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1640), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1640), + [anon_sym_err_GT] = ACTIONS(1628), + [anon_sym_out_GT] = ACTIONS(1628), + [anon_sym_e_GT] = ACTIONS(1628), + [anon_sym_o_GT] = ACTIONS(1628), + [anon_sym_err_PLUSout_GT] = ACTIONS(1628), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1628), + [anon_sym_o_PLUSe_GT] = ACTIONS(1628), + [anon_sym_e_PLUSo_GT] = ACTIONS(1628), + [anon_sym_err_GT_GT] = ACTIONS(1640), + [anon_sym_out_GT_GT] = ACTIONS(1640), + [anon_sym_e_GT_GT] = ACTIONS(1640), + [anon_sym_o_GT_GT] = ACTIONS(1640), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1640), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1640), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1640), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1640), + [aux_sym_unquoted_token1] = ACTIONS(1628), + [aux_sym_unquoted_token2] = ACTIONS(4645), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1640), + }, + [1270] = { + [sym_comment] = STATE(1270), + [anon_sym_true] = ACTIONS(1050), + [anon_sym_false] = ACTIONS(1050), + [anon_sym_null] = ACTIONS(1050), + [aux_sym_cmd_identifier_token38] = ACTIONS(1050), + [aux_sym_cmd_identifier_token39] = ACTIONS(1050), + [aux_sym_cmd_identifier_token40] = ACTIONS(1050), + [sym__newline] = ACTIONS(1050), + [anon_sym_SEMI] = ACTIONS(1050), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_err_GT_PIPE] = ACTIONS(1050), + [anon_sym_out_GT_PIPE] = ACTIONS(1050), + [anon_sym_e_GT_PIPE] = ACTIONS(1050), + [anon_sym_o_GT_PIPE] = ACTIONS(1050), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1050), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1050), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1050), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1050), + [anon_sym_LBRACK] = ACTIONS(1050), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_RPAREN] = ACTIONS(1050), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH_DASH] = ACTIONS(1050), + [anon_sym_DASH] = ACTIONS(1048), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(1050), + [anon_sym_DOT_DOT] = ACTIONS(1048), + [anon_sym_QMARK2] = ACTIONS(4647), + [anon_sym_DOT_DOT2] = ACTIONS(1048), + [anon_sym_DOT] = ACTIONS(1048), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1048), + [anon_sym_DOT_DOT_LT] = ACTIONS(1048), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1050), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1050), + [aux_sym__val_number_decimal_token1] = ACTIONS(1048), + [aux_sym__val_number_decimal_token2] = ACTIONS(1050), + [aux_sym__val_number_decimal_token3] = ACTIONS(1050), + [aux_sym__val_number_decimal_token4] = ACTIONS(1050), + [aux_sym__val_number_token1] = ACTIONS(1050), + [aux_sym__val_number_token2] = ACTIONS(1050), + [aux_sym__val_number_token3] = ACTIONS(1050), + [anon_sym_0b] = ACTIONS(1048), + [anon_sym_0o] = ACTIONS(1048), + [anon_sym_0x] = ACTIONS(1048), + [sym_val_date] = ACTIONS(1050), + [anon_sym_DQUOTE] = ACTIONS(1050), + [sym__str_single_quotes] = ACTIONS(1050), + [sym__str_back_ticks] = ACTIONS(1050), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1050), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1050), + [anon_sym_err_GT] = ACTIONS(1048), + [anon_sym_out_GT] = ACTIONS(1048), + [anon_sym_e_GT] = ACTIONS(1048), + [anon_sym_o_GT] = ACTIONS(1048), + [anon_sym_err_PLUSout_GT] = ACTIONS(1048), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1048), + [anon_sym_o_PLUSe_GT] = ACTIONS(1048), + [anon_sym_e_PLUSo_GT] = ACTIONS(1048), + [anon_sym_err_GT_GT] = ACTIONS(1050), + [anon_sym_out_GT_GT] = ACTIONS(1050), + [anon_sym_e_GT_GT] = ACTIONS(1050), + [anon_sym_o_GT_GT] = ACTIONS(1050), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1050), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1050), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1050), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1050), + [aux_sym_unquoted_token1] = ACTIONS(1048), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1050), + }, + [1271] = { + [sym_comment] = STATE(1271), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_null] = ACTIONS(1796), + [aux_sym_cmd_identifier_token38] = ACTIONS(1796), + [aux_sym_cmd_identifier_token39] = ACTIONS(1796), + [aux_sym_cmd_identifier_token40] = ACTIONS(1796), + [sym__newline] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1796), + [anon_sym_PIPE] = ACTIONS(1796), + [anon_sym_err_GT_PIPE] = ACTIONS(1796), + [anon_sym_out_GT_PIPE] = ACTIONS(1796), + [anon_sym_e_GT_PIPE] = ACTIONS(1796), + [anon_sym_o_GT_PIPE] = ACTIONS(1796), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1796), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1796), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1796), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1796), + [anon_sym_LBRACK] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(1788), + [anon_sym_RPAREN] = ACTIONS(1796), + [anon_sym_DOLLAR] = ACTIONS(1788), + [anon_sym_DASH_DASH] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_RBRACE] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1788), + [anon_sym_LPAREN2] = ACTIONS(1790), + [anon_sym_DOT_DOT2] = ACTIONS(4649), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1788), + [anon_sym_DOT_DOT_LT] = ACTIONS(1788), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4651), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4651), + [aux_sym__val_number_decimal_token1] = ACTIONS(1788), + [aux_sym__val_number_decimal_token2] = ACTIONS(1796), + [aux_sym__val_number_decimal_token3] = ACTIONS(1796), + [aux_sym__val_number_decimal_token4] = ACTIONS(1796), + [aux_sym__val_number_token1] = ACTIONS(1796), + [aux_sym__val_number_token2] = ACTIONS(1796), + [aux_sym__val_number_token3] = ACTIONS(1796), + [anon_sym_0b] = ACTIONS(1788), + [anon_sym_0o] = ACTIONS(1788), + [anon_sym_0x] = ACTIONS(1788), + [sym_val_date] = ACTIONS(1796), + [anon_sym_DQUOTE] = ACTIONS(1796), + [sym__str_single_quotes] = ACTIONS(1796), + [sym__str_back_ticks] = ACTIONS(1796), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1796), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1796), + [anon_sym_err_GT] = ACTIONS(1788), + [anon_sym_out_GT] = ACTIONS(1788), + [anon_sym_e_GT] = ACTIONS(1788), + [anon_sym_o_GT] = ACTIONS(1788), + [anon_sym_err_PLUSout_GT] = ACTIONS(1788), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1788), + [anon_sym_o_PLUSe_GT] = ACTIONS(1788), + [anon_sym_e_PLUSo_GT] = ACTIONS(1788), + [anon_sym_err_GT_GT] = ACTIONS(1796), + [anon_sym_out_GT_GT] = ACTIONS(1796), + [anon_sym_e_GT_GT] = ACTIONS(1796), + [anon_sym_o_GT_GT] = ACTIONS(1796), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1796), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1796), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1796), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1796), + [aux_sym_unquoted_token1] = ACTIONS(1788), + [aux_sym_unquoted_token2] = ACTIONS(1526), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1796), + }, + [1272] = { + [sym_comment] = STATE(1272), + [anon_sym_true] = ACTIONS(1044), + [anon_sym_false] = ACTIONS(1044), + [anon_sym_null] = ACTIONS(1044), + [aux_sym_cmd_identifier_token38] = ACTIONS(1044), + [aux_sym_cmd_identifier_token39] = ACTIONS(1044), + [aux_sym_cmd_identifier_token40] = ACTIONS(1044), + [sym__newline] = ACTIONS(1044), + [anon_sym_SEMI] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1044), + [anon_sym_err_GT_PIPE] = ACTIONS(1044), + [anon_sym_out_GT_PIPE] = ACTIONS(1044), + [anon_sym_e_GT_PIPE] = ACTIONS(1044), + [anon_sym_o_GT_PIPE] = ACTIONS(1044), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1044), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1044), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1044), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1044), + [anon_sym_LBRACK] = ACTIONS(1044), + [anon_sym_LPAREN] = ACTIONS(1044), + [anon_sym_RPAREN] = ACTIONS(1044), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH_DASH] = ACTIONS(1044), + [anon_sym_DASH] = ACTIONS(1042), + [anon_sym_LBRACE] = ACTIONS(1044), + [anon_sym_RBRACE] = ACTIONS(1044), + [anon_sym_DOT_DOT] = ACTIONS(1042), + [anon_sym_QMARK2] = ACTIONS(4653), + [anon_sym_DOT_DOT2] = ACTIONS(1042), + [anon_sym_DOT] = ACTIONS(1042), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1042), + [anon_sym_DOT_DOT_LT] = ACTIONS(1042), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1044), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1044), + [aux_sym__val_number_decimal_token1] = ACTIONS(1042), + [aux_sym__val_number_decimal_token2] = ACTIONS(1044), + [aux_sym__val_number_decimal_token3] = ACTIONS(1044), + [aux_sym__val_number_decimal_token4] = ACTIONS(1044), + [aux_sym__val_number_token1] = ACTIONS(1044), + [aux_sym__val_number_token2] = ACTIONS(1044), + [aux_sym__val_number_token3] = ACTIONS(1044), + [anon_sym_0b] = ACTIONS(1042), + [anon_sym_0o] = ACTIONS(1042), + [anon_sym_0x] = ACTIONS(1042), + [sym_val_date] = ACTIONS(1044), + [anon_sym_DQUOTE] = ACTIONS(1044), + [sym__str_single_quotes] = ACTIONS(1044), + [sym__str_back_ticks] = ACTIONS(1044), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1044), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1044), + [anon_sym_err_GT] = ACTIONS(1042), + [anon_sym_out_GT] = ACTIONS(1042), + [anon_sym_e_GT] = ACTIONS(1042), + [anon_sym_o_GT] = ACTIONS(1042), + [anon_sym_err_PLUSout_GT] = ACTIONS(1042), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1042), + [anon_sym_o_PLUSe_GT] = ACTIONS(1042), + [anon_sym_e_PLUSo_GT] = ACTIONS(1042), + [anon_sym_err_GT_GT] = ACTIONS(1044), + [anon_sym_out_GT_GT] = ACTIONS(1044), + [anon_sym_e_GT_GT] = ACTIONS(1044), + [anon_sym_o_GT_GT] = ACTIONS(1044), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1044), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1044), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1044), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1044), + [aux_sym_unquoted_token1] = ACTIONS(1042), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1044), + }, + [1273] = { + [sym_comment] = STATE(1273), + [ts_builtin_sym_end] = ACTIONS(1064), + [anon_sym_EQ] = ACTIONS(1062), + [anon_sym_PLUS_EQ] = ACTIONS(1064), + [anon_sym_DASH_EQ] = ACTIONS(1064), + [anon_sym_STAR_EQ] = ACTIONS(1064), + [anon_sym_SLASH_EQ] = ACTIONS(1064), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1064), + [sym__newline] = ACTIONS(1064), + [anon_sym_SEMI] = ACTIONS(1064), + [anon_sym_PIPE] = ACTIONS(1064), + [anon_sym_err_GT_PIPE] = ACTIONS(1064), + [anon_sym_out_GT_PIPE] = ACTIONS(1064), + [anon_sym_e_GT_PIPE] = ACTIONS(1064), + [anon_sym_o_GT_PIPE] = ACTIONS(1064), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1064), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1064), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1064), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1064), + [anon_sym_QMARK2] = ACTIONS(1064), + [aux_sym_expr_binary_token1] = ACTIONS(1064), + [aux_sym_expr_binary_token2] = ACTIONS(1064), + [aux_sym_expr_binary_token3] = ACTIONS(1064), + [aux_sym_expr_binary_token4] = ACTIONS(1064), + [aux_sym_expr_binary_token5] = ACTIONS(1064), + [aux_sym_expr_binary_token6] = ACTIONS(1064), + [aux_sym_expr_binary_token7] = ACTIONS(1064), + [aux_sym_expr_binary_token8] = ACTIONS(1064), + [aux_sym_expr_binary_token9] = ACTIONS(1064), + [aux_sym_expr_binary_token10] = ACTIONS(1064), + [aux_sym_expr_binary_token11] = ACTIONS(1064), + [aux_sym_expr_binary_token12] = ACTIONS(1064), + [aux_sym_expr_binary_token13] = ACTIONS(1064), + [aux_sym_expr_binary_token14] = ACTIONS(1064), + [aux_sym_expr_binary_token15] = ACTIONS(1064), + [aux_sym_expr_binary_token16] = ACTIONS(1064), + [aux_sym_expr_binary_token17] = ACTIONS(1064), + [aux_sym_expr_binary_token18] = ACTIONS(1064), + [aux_sym_expr_binary_token19] = ACTIONS(1064), + [aux_sym_expr_binary_token20] = ACTIONS(1064), + [aux_sym_expr_binary_token21] = ACTIONS(1064), + [aux_sym_expr_binary_token22] = ACTIONS(1064), + [aux_sym_expr_binary_token23] = ACTIONS(1064), + [aux_sym_expr_binary_token24] = ACTIONS(1064), + [aux_sym_expr_binary_token25] = ACTIONS(1064), + [aux_sym_expr_binary_token26] = ACTIONS(1064), + [aux_sym_expr_binary_token27] = ACTIONS(1064), + [aux_sym_expr_binary_token28] = ACTIONS(1064), + [anon_sym_DOT_DOT2] = ACTIONS(1062), + [anon_sym_DOT] = ACTIONS(1062), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1064), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1064), + [anon_sym_err_GT] = ACTIONS(1062), + [anon_sym_out_GT] = ACTIONS(1062), + [anon_sym_e_GT] = ACTIONS(1062), + [anon_sym_o_GT] = ACTIONS(1062), + [anon_sym_err_PLUSout_GT] = ACTIONS(1062), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1062), + [anon_sym_o_PLUSe_GT] = ACTIONS(1062), + [anon_sym_e_PLUSo_GT] = ACTIONS(1062), + [anon_sym_err_GT_GT] = ACTIONS(1064), + [anon_sym_out_GT_GT] = ACTIONS(1064), + [anon_sym_e_GT_GT] = ACTIONS(1064), + [anon_sym_o_GT_GT] = ACTIONS(1064), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1064), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1064), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1064), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1064), + [anon_sym_POUND] = ACTIONS(249), + }, + [1274] = { + [sym_path] = STATE(1369), + [sym_comment] = STATE(1274), + [aux_sym_cell_path_repeat1] = STATE(1251), + [ts_builtin_sym_end] = ACTIONS(1029), + [anon_sym_true] = ACTIONS(1029), + [anon_sym_false] = ACTIONS(1029), + [anon_sym_null] = ACTIONS(1029), + [aux_sym_cmd_identifier_token38] = ACTIONS(1029), + [aux_sym_cmd_identifier_token39] = ACTIONS(1029), + [aux_sym_cmd_identifier_token40] = ACTIONS(1029), + [sym__newline] = ACTIONS(1029), + [anon_sym_SEMI] = ACTIONS(1029), + [anon_sym_PIPE] = ACTIONS(1029), + [anon_sym_err_GT_PIPE] = ACTIONS(1029), + [anon_sym_out_GT_PIPE] = ACTIONS(1029), + [anon_sym_e_GT_PIPE] = ACTIONS(1029), + [anon_sym_o_GT_PIPE] = ACTIONS(1029), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1029), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1029), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1029), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1029), + [anon_sym_LBRACK] = ACTIONS(1029), + [anon_sym_LPAREN] = ACTIONS(1029), + [anon_sym_DOLLAR] = ACTIONS(1027), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_LBRACE] = ACTIONS(1029), + [anon_sym_DOT_DOT] = ACTIONS(1027), + [anon_sym_DOT_DOT2] = ACTIONS(1027), + [anon_sym_DOT] = ACTIONS(4589), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1027), + [anon_sym_DOT_DOT_LT] = ACTIONS(1027), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1029), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1029), + [aux_sym__val_number_decimal_token1] = ACTIONS(1027), + [aux_sym__val_number_decimal_token2] = ACTIONS(1029), + [aux_sym__val_number_decimal_token3] = ACTIONS(1029), + [aux_sym__val_number_decimal_token4] = ACTIONS(1029), + [aux_sym__val_number_token1] = ACTIONS(1029), + [aux_sym__val_number_token2] = ACTIONS(1029), + [aux_sym__val_number_token3] = ACTIONS(1029), + [anon_sym_0b] = ACTIONS(1027), + [anon_sym_0o] = ACTIONS(1027), + [anon_sym_0x] = ACTIONS(1027), + [sym_val_date] = ACTIONS(1029), + [anon_sym_DQUOTE] = ACTIONS(1029), + [sym__str_single_quotes] = ACTIONS(1029), + [sym__str_back_ticks] = ACTIONS(1029), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1029), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1029), + [anon_sym_err_GT] = ACTIONS(1027), + [anon_sym_out_GT] = ACTIONS(1027), + [anon_sym_e_GT] = ACTIONS(1027), + [anon_sym_o_GT] = ACTIONS(1027), + [anon_sym_err_PLUSout_GT] = ACTIONS(1027), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1027), + [anon_sym_o_PLUSe_GT] = ACTIONS(1027), + [anon_sym_e_PLUSo_GT] = ACTIONS(1027), + [anon_sym_err_GT_GT] = ACTIONS(1029), + [anon_sym_out_GT_GT] = ACTIONS(1029), + [anon_sym_e_GT_GT] = ACTIONS(1029), + [anon_sym_o_GT_GT] = ACTIONS(1029), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1029), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1029), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1029), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1029), + [aux_sym_unquoted_token1] = ACTIONS(1027), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1029), + }, + [1275] = { + [sym_comment] = STATE(1275), + [anon_sym_EQ] = ACTIONS(1078), + [anon_sym_PLUS_EQ] = ACTIONS(1080), + [anon_sym_DASH_EQ] = ACTIONS(1080), + [anon_sym_STAR_EQ] = ACTIONS(1080), + [anon_sym_SLASH_EQ] = ACTIONS(1080), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1080), + [sym__newline] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(1080), + [anon_sym_PIPE] = ACTIONS(1080), + [anon_sym_err_GT_PIPE] = ACTIONS(1080), + [anon_sym_out_GT_PIPE] = ACTIONS(1080), + [anon_sym_e_GT_PIPE] = ACTIONS(1080), + [anon_sym_o_GT_PIPE] = ACTIONS(1080), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1080), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1080), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1080), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1080), + [anon_sym_LBRACE] = ACTIONS(1080), + [anon_sym_RBRACE] = ACTIONS(1080), + [aux_sym_expr_binary_token1] = ACTIONS(1080), + [aux_sym_expr_binary_token2] = ACTIONS(1080), + [aux_sym_expr_binary_token3] = ACTIONS(1080), + [aux_sym_expr_binary_token4] = ACTIONS(1080), + [aux_sym_expr_binary_token5] = ACTIONS(1080), + [aux_sym_expr_binary_token6] = ACTIONS(1080), + [aux_sym_expr_binary_token7] = ACTIONS(1080), + [aux_sym_expr_binary_token8] = ACTIONS(1080), + [aux_sym_expr_binary_token9] = ACTIONS(1080), + [aux_sym_expr_binary_token10] = ACTIONS(1080), + [aux_sym_expr_binary_token11] = ACTIONS(1080), + [aux_sym_expr_binary_token12] = ACTIONS(1080), + [aux_sym_expr_binary_token13] = ACTIONS(1080), + [aux_sym_expr_binary_token14] = ACTIONS(1080), + [aux_sym_expr_binary_token15] = ACTIONS(1080), + [aux_sym_expr_binary_token16] = ACTIONS(1080), + [aux_sym_expr_binary_token17] = ACTIONS(1080), + [aux_sym_expr_binary_token18] = ACTIONS(1080), + [aux_sym_expr_binary_token19] = ACTIONS(1080), + [aux_sym_expr_binary_token20] = ACTIONS(1080), + [aux_sym_expr_binary_token21] = ACTIONS(1080), + [aux_sym_expr_binary_token22] = ACTIONS(1080), + [aux_sym_expr_binary_token23] = ACTIONS(1080), + [aux_sym_expr_binary_token24] = ACTIONS(1080), + [aux_sym_expr_binary_token25] = ACTIONS(1080), + [aux_sym_expr_binary_token26] = ACTIONS(1080), + [aux_sym_expr_binary_token27] = ACTIONS(1080), + [aux_sym_expr_binary_token28] = ACTIONS(1080), + [anon_sym_DOT_DOT2] = ACTIONS(1078), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1080), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1080), + [aux_sym_record_entry_token1] = ACTIONS(1080), + [anon_sym_err_GT] = ACTIONS(1078), + [anon_sym_out_GT] = ACTIONS(1078), + [anon_sym_e_GT] = ACTIONS(1078), + [anon_sym_o_GT] = ACTIONS(1078), + [anon_sym_err_PLUSout_GT] = ACTIONS(1078), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1078), + [anon_sym_o_PLUSe_GT] = ACTIONS(1078), + [anon_sym_e_PLUSo_GT] = ACTIONS(1078), + [anon_sym_err_GT_GT] = ACTIONS(1080), + [anon_sym_out_GT_GT] = ACTIONS(1080), + [anon_sym_e_GT_GT] = ACTIONS(1080), + [anon_sym_o_GT_GT] = ACTIONS(1080), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1080), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1080), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1080), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1080), + [anon_sym_POUND] = ACTIONS(249), + }, + [1276] = { + [sym_comment] = STATE(1276), + [anon_sym_true] = ACTIONS(1705), + [anon_sym_false] = ACTIONS(1705), + [anon_sym_null] = ACTIONS(1705), + [aux_sym_cmd_identifier_token38] = ACTIONS(1705), + [aux_sym_cmd_identifier_token39] = ACTIONS(1705), + [aux_sym_cmd_identifier_token40] = ACTIONS(1705), + [sym__newline] = ACTIONS(1705), + [anon_sym_SEMI] = ACTIONS(1705), + [anon_sym_PIPE] = ACTIONS(1705), + [anon_sym_err_GT_PIPE] = ACTIONS(1705), + [anon_sym_out_GT_PIPE] = ACTIONS(1705), + [anon_sym_e_GT_PIPE] = ACTIONS(1705), + [anon_sym_o_GT_PIPE] = ACTIONS(1705), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1705), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1705), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1705), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1705), + [anon_sym_LBRACK] = ACTIONS(1705), + [anon_sym_LPAREN] = ACTIONS(1705), + [anon_sym_RPAREN] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1703), + [anon_sym_DASH_DASH] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_LBRACE] = ACTIONS(1705), + [anon_sym_RBRACE] = ACTIONS(1705), + [anon_sym_DOT_DOT] = ACTIONS(1703), + [anon_sym_DOT_DOT2] = ACTIONS(1703), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT] = ACTIONS(1703), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1705), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1705), + [aux_sym__immediate_decimal_token1] = ACTIONS(4655), + [aux_sym__immediate_decimal_token2] = ACTIONS(4657), + [aux_sym__val_number_decimal_token1] = ACTIONS(1703), + [aux_sym__val_number_decimal_token2] = ACTIONS(1705), + [aux_sym__val_number_decimal_token3] = ACTIONS(1705), + [aux_sym__val_number_decimal_token4] = ACTIONS(1705), + [aux_sym__val_number_token1] = ACTIONS(1705), + [aux_sym__val_number_token2] = ACTIONS(1705), + [aux_sym__val_number_token3] = ACTIONS(1705), + [anon_sym_0b] = ACTIONS(1703), + [anon_sym_0o] = ACTIONS(1703), + [anon_sym_0x] = ACTIONS(1703), + [sym_val_date] = ACTIONS(1705), + [anon_sym_DQUOTE] = ACTIONS(1705), + [sym__str_single_quotes] = ACTIONS(1705), + [sym__str_back_ticks] = ACTIONS(1705), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1705), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1705), + [anon_sym_err_GT] = ACTIONS(1703), + [anon_sym_out_GT] = ACTIONS(1703), + [anon_sym_e_GT] = ACTIONS(1703), + [anon_sym_o_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT] = ACTIONS(1703), + [anon_sym_err_GT_GT] = ACTIONS(1705), + [anon_sym_out_GT_GT] = ACTIONS(1705), + [anon_sym_e_GT_GT] = ACTIONS(1705), + [anon_sym_o_GT_GT] = ACTIONS(1705), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1705), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1705), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1705), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1705), + [aux_sym_unquoted_token1] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1705), + }, + [1277] = { + [sym_comment] = STATE(1277), + [ts_builtin_sym_end] = ACTIONS(1060), + [anon_sym_true] = ACTIONS(1060), + [anon_sym_false] = ACTIONS(1060), + [anon_sym_null] = ACTIONS(1060), + [aux_sym_cmd_identifier_token38] = ACTIONS(1060), + [aux_sym_cmd_identifier_token39] = ACTIONS(1060), + [aux_sym_cmd_identifier_token40] = ACTIONS(1060), + [sym__newline] = ACTIONS(1060), + [anon_sym_SEMI] = ACTIONS(1060), + [anon_sym_PIPE] = ACTIONS(1060), + [anon_sym_err_GT_PIPE] = ACTIONS(1060), + [anon_sym_out_GT_PIPE] = ACTIONS(1060), + [anon_sym_e_GT_PIPE] = ACTIONS(1060), + [anon_sym_o_GT_PIPE] = ACTIONS(1060), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1060), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1060), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1060), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1060), + [anon_sym_LBRACK] = ACTIONS(1060), + [anon_sym_LPAREN] = ACTIONS(1060), + [anon_sym_DOLLAR] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1060), + [anon_sym_DASH] = ACTIONS(1058), + [anon_sym_LBRACE] = ACTIONS(1060), + [anon_sym_DOT_DOT] = ACTIONS(1058), + [anon_sym_QMARK2] = ACTIONS(1060), + [anon_sym_DOT_DOT2] = ACTIONS(1058), + [anon_sym_DOT] = ACTIONS(1058), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1058), + [anon_sym_DOT_DOT_LT] = ACTIONS(1058), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1060), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1060), + [aux_sym__val_number_decimal_token1] = ACTIONS(1058), + [aux_sym__val_number_decimal_token2] = ACTIONS(1060), + [aux_sym__val_number_decimal_token3] = ACTIONS(1060), + [aux_sym__val_number_decimal_token4] = ACTIONS(1060), + [aux_sym__val_number_token1] = ACTIONS(1060), + [aux_sym__val_number_token2] = ACTIONS(1060), + [aux_sym__val_number_token3] = ACTIONS(1060), + [anon_sym_0b] = ACTIONS(1058), + [anon_sym_0o] = ACTIONS(1058), + [anon_sym_0x] = ACTIONS(1058), + [sym_val_date] = ACTIONS(1060), + [anon_sym_DQUOTE] = ACTIONS(1060), + [sym__str_single_quotes] = ACTIONS(1060), + [sym__str_back_ticks] = ACTIONS(1060), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1060), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1060), + [anon_sym_err_GT] = ACTIONS(1058), + [anon_sym_out_GT] = ACTIONS(1058), + [anon_sym_e_GT] = ACTIONS(1058), + [anon_sym_o_GT] = ACTIONS(1058), + [anon_sym_err_PLUSout_GT] = ACTIONS(1058), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1058), + [anon_sym_o_PLUSe_GT] = ACTIONS(1058), + [anon_sym_e_PLUSo_GT] = ACTIONS(1058), + [anon_sym_err_GT_GT] = ACTIONS(1060), + [anon_sym_out_GT_GT] = ACTIONS(1060), + [anon_sym_e_GT_GT] = ACTIONS(1060), + [anon_sym_o_GT_GT] = ACTIONS(1060), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1060), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1060), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1060), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1060), + [aux_sym_unquoted_token1] = ACTIONS(1058), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1060), + }, + [1278] = { + [sym_comment] = STATE(1278), + [ts_builtin_sym_end] = ACTIONS(1044), + [anon_sym_true] = ACTIONS(1044), + [anon_sym_false] = ACTIONS(1044), + [anon_sym_null] = ACTIONS(1044), + [aux_sym_cmd_identifier_token38] = ACTIONS(1044), + [aux_sym_cmd_identifier_token39] = ACTIONS(1044), + [aux_sym_cmd_identifier_token40] = ACTIONS(1044), + [sym__newline] = ACTIONS(1044), + [anon_sym_SEMI] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1044), + [anon_sym_err_GT_PIPE] = ACTIONS(1044), + [anon_sym_out_GT_PIPE] = ACTIONS(1044), + [anon_sym_e_GT_PIPE] = ACTIONS(1044), + [anon_sym_o_GT_PIPE] = ACTIONS(1044), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1044), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1044), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1044), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1044), + [anon_sym_LBRACK] = ACTIONS(1044), + [anon_sym_LPAREN] = ACTIONS(1044), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH_DASH] = ACTIONS(1044), + [anon_sym_DASH] = ACTIONS(1042), + [anon_sym_LBRACE] = ACTIONS(1044), + [anon_sym_DOT_DOT] = ACTIONS(1042), + [anon_sym_QMARK2] = ACTIONS(4659), + [anon_sym_DOT_DOT2] = ACTIONS(1042), + [anon_sym_DOT] = ACTIONS(1042), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1042), + [anon_sym_DOT_DOT_LT] = ACTIONS(1042), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1044), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1044), + [aux_sym__val_number_decimal_token1] = ACTIONS(1042), + [aux_sym__val_number_decimal_token2] = ACTIONS(1044), + [aux_sym__val_number_decimal_token3] = ACTIONS(1044), + [aux_sym__val_number_decimal_token4] = ACTIONS(1044), + [aux_sym__val_number_token1] = ACTIONS(1044), + [aux_sym__val_number_token2] = ACTIONS(1044), + [aux_sym__val_number_token3] = ACTIONS(1044), + [anon_sym_0b] = ACTIONS(1042), + [anon_sym_0o] = ACTIONS(1042), + [anon_sym_0x] = ACTIONS(1042), + [sym_val_date] = ACTIONS(1044), + [anon_sym_DQUOTE] = ACTIONS(1044), + [sym__str_single_quotes] = ACTIONS(1044), + [sym__str_back_ticks] = ACTIONS(1044), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1044), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1044), + [anon_sym_err_GT] = ACTIONS(1042), + [anon_sym_out_GT] = ACTIONS(1042), + [anon_sym_e_GT] = ACTIONS(1042), + [anon_sym_o_GT] = ACTIONS(1042), + [anon_sym_err_PLUSout_GT] = ACTIONS(1042), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1042), + [anon_sym_o_PLUSe_GT] = ACTIONS(1042), + [anon_sym_e_PLUSo_GT] = ACTIONS(1042), + [anon_sym_err_GT_GT] = ACTIONS(1044), + [anon_sym_out_GT_GT] = ACTIONS(1044), + [anon_sym_e_GT_GT] = ACTIONS(1044), + [anon_sym_o_GT_GT] = ACTIONS(1044), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1044), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1044), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1044), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1044), + [aux_sym_unquoted_token1] = ACTIONS(1042), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1044), + }, + [1279] = { + [sym_comment] = STATE(1279), + [ts_builtin_sym_end] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1717), + [anon_sym_false] = ACTIONS(1717), + [anon_sym_null] = ACTIONS(1717), + [aux_sym_cmd_identifier_token38] = ACTIONS(1717), + [aux_sym_cmd_identifier_token39] = ACTIONS(1717), + [aux_sym_cmd_identifier_token40] = ACTIONS(1717), + [sym__newline] = ACTIONS(1717), + [anon_sym_SEMI] = ACTIONS(1717), + [anon_sym_PIPE] = ACTIONS(1717), + [anon_sym_err_GT_PIPE] = ACTIONS(1717), + [anon_sym_out_GT_PIPE] = ACTIONS(1717), + [anon_sym_e_GT_PIPE] = ACTIONS(1717), + [anon_sym_o_GT_PIPE] = ACTIONS(1717), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1717), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1717), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1717), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1717), + [anon_sym_LBRACK] = ACTIONS(1717), + [anon_sym_LPAREN] = ACTIONS(1715), + [anon_sym_DOLLAR] = ACTIONS(1715), + [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_LBRACE] = ACTIONS(1717), + [anon_sym_DOT_DOT] = ACTIONS(1715), + [anon_sym_LPAREN2] = ACTIONS(1717), + [anon_sym_DOT_DOT2] = ACTIONS(1715), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1715), + [anon_sym_DOT_DOT_LT] = ACTIONS(1715), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1717), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1717), + [aux_sym__val_number_decimal_token1] = ACTIONS(1715), + [aux_sym__val_number_decimal_token2] = ACTIONS(1717), + [aux_sym__val_number_decimal_token3] = ACTIONS(1717), + [aux_sym__val_number_decimal_token4] = ACTIONS(1717), + [aux_sym__val_number_token1] = ACTIONS(1717), + [aux_sym__val_number_token2] = ACTIONS(1717), + [aux_sym__val_number_token3] = ACTIONS(1717), + [anon_sym_0b] = ACTIONS(1715), + [anon_sym_0o] = ACTIONS(1715), + [anon_sym_0x] = ACTIONS(1715), + [sym_val_date] = ACTIONS(1717), + [anon_sym_DQUOTE] = ACTIONS(1717), + [sym__str_single_quotes] = ACTIONS(1717), + [sym__str_back_ticks] = ACTIONS(1717), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1717), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1717), + [anon_sym_err_GT] = ACTIONS(1715), + [anon_sym_out_GT] = ACTIONS(1715), + [anon_sym_e_GT] = ACTIONS(1715), + [anon_sym_o_GT] = ACTIONS(1715), + [anon_sym_err_PLUSout_GT] = ACTIONS(1715), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1715), + [anon_sym_o_PLUSe_GT] = ACTIONS(1715), + [anon_sym_e_PLUSo_GT] = ACTIONS(1715), + [anon_sym_err_GT_GT] = ACTIONS(1717), + [anon_sym_out_GT_GT] = ACTIONS(1717), + [anon_sym_e_GT_GT] = ACTIONS(1717), + [anon_sym_o_GT_GT] = ACTIONS(1717), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1717), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1717), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1717), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1717), + [aux_sym_unquoted_token1] = ACTIONS(1715), + [aux_sym_unquoted_token2] = ACTIONS(1715), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1717), + }, + [1280] = { + [sym_comment] = STATE(1280), + [ts_builtin_sym_end] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(1705), + [anon_sym_false] = ACTIONS(1705), + [anon_sym_null] = ACTIONS(1705), + [aux_sym_cmd_identifier_token38] = ACTIONS(1705), + [aux_sym_cmd_identifier_token39] = ACTIONS(1705), + [aux_sym_cmd_identifier_token40] = ACTIONS(1705), + [sym__newline] = ACTIONS(1705), + [anon_sym_SEMI] = ACTIONS(1705), + [anon_sym_PIPE] = ACTIONS(1705), + [anon_sym_err_GT_PIPE] = ACTIONS(1705), + [anon_sym_out_GT_PIPE] = ACTIONS(1705), + [anon_sym_e_GT_PIPE] = ACTIONS(1705), + [anon_sym_o_GT_PIPE] = ACTIONS(1705), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1705), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1705), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1705), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1705), + [anon_sym_LBRACK] = ACTIONS(1705), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1703), + [anon_sym_DASH_DASH] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_LBRACE] = ACTIONS(1705), + [anon_sym_DOT_DOT] = ACTIONS(1703), + [anon_sym_LPAREN2] = ACTIONS(1705), + [anon_sym_DOT_DOT2] = ACTIONS(1703), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT] = ACTIONS(1703), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1705), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1705), + [aux_sym__val_number_decimal_token1] = ACTIONS(1703), + [aux_sym__val_number_decimal_token2] = ACTIONS(1705), + [aux_sym__val_number_decimal_token3] = ACTIONS(1705), + [aux_sym__val_number_decimal_token4] = ACTIONS(1705), + [aux_sym__val_number_token1] = ACTIONS(1705), + [aux_sym__val_number_token2] = ACTIONS(1705), + [aux_sym__val_number_token3] = ACTIONS(1705), + [anon_sym_0b] = ACTIONS(1703), + [anon_sym_0o] = ACTIONS(1703), + [anon_sym_0x] = ACTIONS(1703), + [sym_val_date] = ACTIONS(1705), + [anon_sym_DQUOTE] = ACTIONS(1705), + [sym__str_single_quotes] = ACTIONS(1705), + [sym__str_back_ticks] = ACTIONS(1705), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1705), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1705), + [anon_sym_err_GT] = ACTIONS(1703), + [anon_sym_out_GT] = ACTIONS(1703), + [anon_sym_e_GT] = ACTIONS(1703), + [anon_sym_o_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT] = ACTIONS(1703), + [anon_sym_err_GT_GT] = ACTIONS(1705), + [anon_sym_out_GT_GT] = ACTIONS(1705), + [anon_sym_e_GT_GT] = ACTIONS(1705), + [anon_sym_o_GT_GT] = ACTIONS(1705), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1705), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1705), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1705), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1705), + [aux_sym_unquoted_token1] = ACTIONS(1703), + [aux_sym_unquoted_token2] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1705), + }, + [1281] = { + [sym_comment] = STATE(1281), + [anon_sym_true] = ACTIONS(1705), + [anon_sym_false] = ACTIONS(1705), + [anon_sym_null] = ACTIONS(1705), + [aux_sym_cmd_identifier_token38] = ACTIONS(1705), + [aux_sym_cmd_identifier_token39] = ACTIONS(1705), + [aux_sym_cmd_identifier_token40] = ACTIONS(1705), + [sym__newline] = ACTIONS(1705), + [anon_sym_SEMI] = ACTIONS(1705), + [anon_sym_PIPE] = ACTIONS(1705), + [anon_sym_err_GT_PIPE] = ACTIONS(1705), + [anon_sym_out_GT_PIPE] = ACTIONS(1705), + [anon_sym_e_GT_PIPE] = ACTIONS(1705), + [anon_sym_o_GT_PIPE] = ACTIONS(1705), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1705), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1705), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1705), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1705), + [anon_sym_LBRACK] = ACTIONS(1705), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_RPAREN] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1703), + [anon_sym_DASH_DASH] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_LBRACE] = ACTIONS(1705), + [anon_sym_RBRACE] = ACTIONS(1705), + [anon_sym_DOT_DOT] = ACTIONS(1703), + [anon_sym_LPAREN2] = ACTIONS(1705), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1705), + [anon_sym_DOT_DOT_LT] = ACTIONS(1705), + [aux_sym__immediate_decimal_token1] = ACTIONS(4661), + [aux_sym__immediate_decimal_token2] = ACTIONS(4663), + [aux_sym__val_number_decimal_token1] = ACTIONS(1703), + [aux_sym__val_number_decimal_token2] = ACTIONS(1705), + [aux_sym__val_number_decimal_token3] = ACTIONS(1705), + [aux_sym__val_number_decimal_token4] = ACTIONS(1705), + [aux_sym__val_number_token1] = ACTIONS(1705), + [aux_sym__val_number_token2] = ACTIONS(1705), + [aux_sym__val_number_token3] = ACTIONS(1705), + [anon_sym_0b] = ACTIONS(1703), + [anon_sym_0o] = ACTIONS(1703), + [anon_sym_0x] = ACTIONS(1703), + [sym_val_date] = ACTIONS(1705), + [anon_sym_DQUOTE] = ACTIONS(1705), + [sym__str_single_quotes] = ACTIONS(1705), + [sym__str_back_ticks] = ACTIONS(1705), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1705), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1705), + [anon_sym_err_GT] = ACTIONS(1703), + [anon_sym_out_GT] = ACTIONS(1703), + [anon_sym_e_GT] = ACTIONS(1703), + [anon_sym_o_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT] = ACTIONS(1703), + [anon_sym_err_GT_GT] = ACTIONS(1705), + [anon_sym_out_GT_GT] = ACTIONS(1705), + [anon_sym_e_GT_GT] = ACTIONS(1705), + [anon_sym_o_GT_GT] = ACTIONS(1705), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1705), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1705), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1705), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1705), + [aux_sym_unquoted_token1] = ACTIONS(1703), + [aux_sym_unquoted_token2] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1705), + }, + [1282] = { + [sym_comment] = STATE(1282), + [sym__newline] = ACTIONS(1538), + [anon_sym_SEMI] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_err_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_GT_PIPE] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), + [anon_sym_RPAREN] = ACTIONS(1538), + [anon_sym_RBRACE] = ACTIONS(1538), + [anon_sym_LPAREN2] = ACTIONS(1538), + [aux_sym_expr_binary_token1] = ACTIONS(1538), + [aux_sym_expr_binary_token2] = ACTIONS(1538), + [aux_sym_expr_binary_token3] = ACTIONS(1538), + [aux_sym_expr_binary_token4] = ACTIONS(1538), + [aux_sym_expr_binary_token5] = ACTIONS(1538), + [aux_sym_expr_binary_token6] = ACTIONS(1538), + [aux_sym_expr_binary_token7] = ACTIONS(1538), + [aux_sym_expr_binary_token8] = ACTIONS(1538), + [aux_sym_expr_binary_token9] = ACTIONS(1538), + [aux_sym_expr_binary_token10] = ACTIONS(1538), + [aux_sym_expr_binary_token11] = ACTIONS(1538), + [aux_sym_expr_binary_token12] = ACTIONS(1538), + [aux_sym_expr_binary_token13] = ACTIONS(1538), + [aux_sym_expr_binary_token14] = ACTIONS(1538), + [aux_sym_expr_binary_token15] = ACTIONS(1538), + [aux_sym_expr_binary_token16] = ACTIONS(1538), + [aux_sym_expr_binary_token17] = ACTIONS(1538), + [aux_sym_expr_binary_token18] = ACTIONS(1538), + [aux_sym_expr_binary_token19] = ACTIONS(1538), + [aux_sym_expr_binary_token20] = ACTIONS(1538), + [aux_sym_expr_binary_token21] = ACTIONS(1538), + [aux_sym_expr_binary_token22] = ACTIONS(1538), + [aux_sym_expr_binary_token23] = ACTIONS(1538), + [aux_sym_expr_binary_token24] = ACTIONS(1538), + [aux_sym_expr_binary_token25] = ACTIONS(1538), + [aux_sym_expr_binary_token26] = ACTIONS(1538), + [aux_sym_expr_binary_token27] = ACTIONS(1538), + [aux_sym_expr_binary_token28] = ACTIONS(1538), + [anon_sym_DOT_DOT2] = ACTIONS(1536), + [anon_sym_DOT] = ACTIONS(4665), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), + [aux_sym__immediate_decimal_token2] = ACTIONS(4667), + [sym_filesize_unit] = ACTIONS(1538), + [sym_duration_unit] = ACTIONS(1538), + [anon_sym_err_GT] = ACTIONS(1536), + [anon_sym_out_GT] = ACTIONS(1536), + [anon_sym_e_GT] = ACTIONS(1536), + [anon_sym_o_GT] = ACTIONS(1536), + [anon_sym_err_PLUSout_GT] = ACTIONS(1536), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), + [anon_sym_o_PLUSe_GT] = ACTIONS(1536), + [anon_sym_e_PLUSo_GT] = ACTIONS(1536), + [anon_sym_err_GT_GT] = ACTIONS(1538), + [anon_sym_out_GT_GT] = ACTIONS(1538), + [anon_sym_e_GT_GT] = ACTIONS(1538), + [anon_sym_o_GT_GT] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), + [aux_sym_unquoted_token2] = ACTIONS(1536), + [anon_sym_POUND] = ACTIONS(249), + }, + [1283] = { + [sym_comment] = STATE(1283), + [sym__newline] = ACTIONS(1530), + [anon_sym_SEMI] = ACTIONS(1530), + [anon_sym_PIPE] = ACTIONS(1530), + [anon_sym_err_GT_PIPE] = ACTIONS(1530), + [anon_sym_out_GT_PIPE] = ACTIONS(1530), + [anon_sym_e_GT_PIPE] = ACTIONS(1530), + [anon_sym_o_GT_PIPE] = ACTIONS(1530), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1530), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1530), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1530), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1530), + [anon_sym_RPAREN] = ACTIONS(1530), + [anon_sym_RBRACE] = ACTIONS(1530), + [anon_sym_LPAREN2] = ACTIONS(1530), + [aux_sym_expr_binary_token1] = ACTIONS(1530), + [aux_sym_expr_binary_token2] = ACTIONS(1530), + [aux_sym_expr_binary_token3] = ACTIONS(1530), + [aux_sym_expr_binary_token4] = ACTIONS(1530), + [aux_sym_expr_binary_token5] = ACTIONS(1530), + [aux_sym_expr_binary_token6] = ACTIONS(1530), + [aux_sym_expr_binary_token7] = ACTIONS(1530), + [aux_sym_expr_binary_token8] = ACTIONS(1530), + [aux_sym_expr_binary_token9] = ACTIONS(1530), + [aux_sym_expr_binary_token10] = ACTIONS(1530), + [aux_sym_expr_binary_token11] = ACTIONS(1530), + [aux_sym_expr_binary_token12] = ACTIONS(1530), + [aux_sym_expr_binary_token13] = ACTIONS(1530), + [aux_sym_expr_binary_token14] = ACTIONS(1530), + [aux_sym_expr_binary_token15] = ACTIONS(1530), + [aux_sym_expr_binary_token16] = ACTIONS(1530), + [aux_sym_expr_binary_token17] = ACTIONS(1530), + [aux_sym_expr_binary_token18] = ACTIONS(1530), + [aux_sym_expr_binary_token19] = ACTIONS(1530), + [aux_sym_expr_binary_token20] = ACTIONS(1530), + [aux_sym_expr_binary_token21] = ACTIONS(1530), + [aux_sym_expr_binary_token22] = ACTIONS(1530), + [aux_sym_expr_binary_token23] = ACTIONS(1530), + [aux_sym_expr_binary_token24] = ACTIONS(1530), + [aux_sym_expr_binary_token25] = ACTIONS(1530), + [aux_sym_expr_binary_token26] = ACTIONS(1530), + [aux_sym_expr_binary_token27] = ACTIONS(1530), + [aux_sym_expr_binary_token28] = ACTIONS(1530), + [anon_sym_DOT_DOT2] = ACTIONS(1528), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1530), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1530), + [aux_sym__immediate_decimal_token1] = ACTIONS(4669), + [aux_sym__immediate_decimal_token2] = ACTIONS(4671), + [sym_filesize_unit] = ACTIONS(1530), + [sym_duration_unit] = ACTIONS(1530), + [anon_sym_err_GT] = ACTIONS(1528), + [anon_sym_out_GT] = ACTIONS(1528), + [anon_sym_e_GT] = ACTIONS(1528), + [anon_sym_o_GT] = ACTIONS(1528), + [anon_sym_err_PLUSout_GT] = ACTIONS(1528), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), + [anon_sym_o_PLUSe_GT] = ACTIONS(1528), + [anon_sym_e_PLUSo_GT] = ACTIONS(1528), + [anon_sym_err_GT_GT] = ACTIONS(1530), + [anon_sym_out_GT_GT] = ACTIONS(1530), + [anon_sym_e_GT_GT] = ACTIONS(1530), + [anon_sym_o_GT_GT] = ACTIONS(1530), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1530), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1530), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1530), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1530), + [aux_sym_unquoted_token2] = ACTIONS(1528), + [anon_sym_POUND] = ACTIONS(249), + }, + [1284] = { + [sym_comment] = STATE(1284), + [ts_builtin_sym_end] = ACTIONS(1771), + [anon_sym_true] = ACTIONS(1771), + [anon_sym_false] = ACTIONS(1771), + [anon_sym_null] = ACTIONS(1771), + [aux_sym_cmd_identifier_token38] = ACTIONS(1771), + [aux_sym_cmd_identifier_token39] = ACTIONS(1771), + [aux_sym_cmd_identifier_token40] = ACTIONS(1771), + [sym__newline] = ACTIONS(1771), + [anon_sym_SEMI] = ACTIONS(1771), + [anon_sym_PIPE] = ACTIONS(1771), + [anon_sym_err_GT_PIPE] = ACTIONS(1771), + [anon_sym_out_GT_PIPE] = ACTIONS(1771), + [anon_sym_e_GT_PIPE] = ACTIONS(1771), + [anon_sym_o_GT_PIPE] = ACTIONS(1771), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1771), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1771), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1771), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1771), + [anon_sym_LPAREN] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1769), + [anon_sym_DASH_DASH] = ACTIONS(1771), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_LBRACE] = ACTIONS(1771), + [anon_sym_DOT_DOT] = ACTIONS(1769), + [anon_sym_LPAREN2] = ACTIONS(1771), + [anon_sym_DOT_DOT2] = ACTIONS(1769), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1769), + [anon_sym_DOT_DOT_LT] = ACTIONS(1769), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1771), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1771), + [aux_sym__val_number_decimal_token1] = ACTIONS(1769), + [aux_sym__val_number_decimal_token2] = ACTIONS(1771), + [aux_sym__val_number_decimal_token3] = ACTIONS(1771), + [aux_sym__val_number_decimal_token4] = ACTIONS(1771), + [aux_sym__val_number_token1] = ACTIONS(1771), + [aux_sym__val_number_token2] = ACTIONS(1771), + [aux_sym__val_number_token3] = ACTIONS(1771), + [anon_sym_0b] = ACTIONS(1769), + [anon_sym_0o] = ACTIONS(1769), + [anon_sym_0x] = ACTIONS(1769), + [sym_val_date] = ACTIONS(1771), + [anon_sym_DQUOTE] = ACTIONS(1771), + [sym__str_single_quotes] = ACTIONS(1771), + [sym__str_back_ticks] = ACTIONS(1771), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1771), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1771), + [anon_sym_err_GT] = ACTIONS(1769), + [anon_sym_out_GT] = ACTIONS(1769), + [anon_sym_e_GT] = ACTIONS(1769), + [anon_sym_o_GT] = ACTIONS(1769), + [anon_sym_err_PLUSout_GT] = ACTIONS(1769), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1769), + [anon_sym_o_PLUSe_GT] = ACTIONS(1769), + [anon_sym_e_PLUSo_GT] = ACTIONS(1769), + [anon_sym_err_GT_GT] = ACTIONS(1771), + [anon_sym_out_GT_GT] = ACTIONS(1771), + [anon_sym_e_GT_GT] = ACTIONS(1771), + [anon_sym_o_GT_GT] = ACTIONS(1771), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1771), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1771), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1771), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1771), + [aux_sym_unquoted_token1] = ACTIONS(1769), + [aux_sym_unquoted_token2] = ACTIONS(1769), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1771), + }, + [1285] = { + [sym_comment] = STATE(1285), + [ts_builtin_sym_end] = ACTIONS(1064), + [anon_sym_true] = ACTIONS(1064), + [anon_sym_false] = ACTIONS(1064), + [anon_sym_null] = ACTIONS(1064), + [aux_sym_cmd_identifier_token38] = ACTIONS(1064), + [aux_sym_cmd_identifier_token39] = ACTIONS(1064), + [aux_sym_cmd_identifier_token40] = ACTIONS(1064), + [sym__newline] = ACTIONS(1064), + [anon_sym_SEMI] = ACTIONS(1064), + [anon_sym_PIPE] = ACTIONS(1064), + [anon_sym_err_GT_PIPE] = ACTIONS(1064), + [anon_sym_out_GT_PIPE] = ACTIONS(1064), + [anon_sym_e_GT_PIPE] = ACTIONS(1064), + [anon_sym_o_GT_PIPE] = ACTIONS(1064), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1064), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1064), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1064), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1064), + [anon_sym_LBRACK] = ACTIONS(1064), + [anon_sym_LPAREN] = ACTIONS(1064), + [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DASH_DASH] = ACTIONS(1064), + [anon_sym_DASH] = ACTIONS(1062), + [anon_sym_LBRACE] = ACTIONS(1064), + [anon_sym_DOT_DOT] = ACTIONS(1062), + [anon_sym_QMARK2] = ACTIONS(1064), + [anon_sym_DOT_DOT2] = ACTIONS(1062), + [anon_sym_DOT] = ACTIONS(1062), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1062), + [anon_sym_DOT_DOT_LT] = ACTIONS(1062), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1064), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1064), + [aux_sym__val_number_decimal_token1] = ACTIONS(1062), + [aux_sym__val_number_decimal_token2] = ACTIONS(1064), + [aux_sym__val_number_decimal_token3] = ACTIONS(1064), + [aux_sym__val_number_decimal_token4] = ACTIONS(1064), + [aux_sym__val_number_token1] = ACTIONS(1064), + [aux_sym__val_number_token2] = ACTIONS(1064), + [aux_sym__val_number_token3] = ACTIONS(1064), + [anon_sym_0b] = ACTIONS(1062), + [anon_sym_0o] = ACTIONS(1062), + [anon_sym_0x] = ACTIONS(1062), + [sym_val_date] = ACTIONS(1064), + [anon_sym_DQUOTE] = ACTIONS(1064), + [sym__str_single_quotes] = ACTIONS(1064), + [sym__str_back_ticks] = ACTIONS(1064), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1064), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1064), + [anon_sym_err_GT] = ACTIONS(1062), + [anon_sym_out_GT] = ACTIONS(1062), + [anon_sym_e_GT] = ACTIONS(1062), + [anon_sym_o_GT] = ACTIONS(1062), + [anon_sym_err_PLUSout_GT] = ACTIONS(1062), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1062), + [anon_sym_o_PLUSe_GT] = ACTIONS(1062), + [anon_sym_e_PLUSo_GT] = ACTIONS(1062), + [anon_sym_err_GT_GT] = ACTIONS(1064), + [anon_sym_out_GT_GT] = ACTIONS(1064), + [anon_sym_e_GT_GT] = ACTIONS(1064), + [anon_sym_o_GT_GT] = ACTIONS(1064), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1064), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1064), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1064), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1064), + [aux_sym_unquoted_token1] = ACTIONS(1062), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1064), + }, + [1286] = { + [sym_comment] = STATE(1286), + [ts_builtin_sym_end] = ACTIONS(1040), + [anon_sym_true] = ACTIONS(1040), + [anon_sym_false] = ACTIONS(1040), + [anon_sym_null] = ACTIONS(1040), + [aux_sym_cmd_identifier_token38] = ACTIONS(1040), + [aux_sym_cmd_identifier_token39] = ACTIONS(1040), + [aux_sym_cmd_identifier_token40] = ACTIONS(1040), + [sym__newline] = ACTIONS(1040), + [anon_sym_SEMI] = ACTIONS(1040), + [anon_sym_PIPE] = ACTIONS(1040), + [anon_sym_err_GT_PIPE] = ACTIONS(1040), + [anon_sym_out_GT_PIPE] = ACTIONS(1040), + [anon_sym_e_GT_PIPE] = ACTIONS(1040), + [anon_sym_o_GT_PIPE] = ACTIONS(1040), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1040), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1040), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1040), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1040), + [anon_sym_LBRACK] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_DOLLAR] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1040), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_DOT_DOT] = ACTIONS(1038), + [anon_sym_QMARK2] = ACTIONS(1040), + [anon_sym_DOT_DOT2] = ACTIONS(1038), + [anon_sym_DOT] = ACTIONS(1038), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1038), + [anon_sym_DOT_DOT_LT] = ACTIONS(1038), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1040), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1040), + [aux_sym__val_number_decimal_token1] = ACTIONS(1038), + [aux_sym__val_number_decimal_token2] = ACTIONS(1040), + [aux_sym__val_number_decimal_token3] = ACTIONS(1040), + [aux_sym__val_number_decimal_token4] = ACTIONS(1040), + [aux_sym__val_number_token1] = ACTIONS(1040), + [aux_sym__val_number_token2] = ACTIONS(1040), + [aux_sym__val_number_token3] = ACTIONS(1040), + [anon_sym_0b] = ACTIONS(1038), + [anon_sym_0o] = ACTIONS(1038), + [anon_sym_0x] = ACTIONS(1038), + [sym_val_date] = ACTIONS(1040), + [anon_sym_DQUOTE] = ACTIONS(1040), + [sym__str_single_quotes] = ACTIONS(1040), + [sym__str_back_ticks] = ACTIONS(1040), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1040), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1040), + [anon_sym_err_GT] = ACTIONS(1038), + [anon_sym_out_GT] = ACTIONS(1038), + [anon_sym_e_GT] = ACTIONS(1038), + [anon_sym_o_GT] = ACTIONS(1038), + [anon_sym_err_PLUSout_GT] = ACTIONS(1038), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1038), + [anon_sym_o_PLUSe_GT] = ACTIONS(1038), + [anon_sym_e_PLUSo_GT] = ACTIONS(1038), + [anon_sym_err_GT_GT] = ACTIONS(1040), + [anon_sym_out_GT_GT] = ACTIONS(1040), + [anon_sym_e_GT_GT] = ACTIONS(1040), + [anon_sym_o_GT_GT] = ACTIONS(1040), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1040), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1040), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1040), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1040), + [aux_sym_unquoted_token1] = ACTIONS(1038), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1040), + }, + [1287] = { + [sym_comment] = STATE(1287), + [ts_builtin_sym_end] = ACTIONS(1056), [anon_sym_true] = ACTIONS(1056), [anon_sym_false] = ACTIONS(1056), [anon_sym_null] = ACTIONS(1056), @@ -198450,13 +200841,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1056), [anon_sym_LBRACK] = ACTIONS(1056), [anon_sym_LPAREN] = ACTIONS(1056), - [anon_sym_RPAREN] = ACTIONS(1056), [anon_sym_DOLLAR] = ACTIONS(1054), [anon_sym_DASH_DASH] = ACTIONS(1056), [anon_sym_DASH] = ACTIONS(1054), [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_RBRACE] = ACTIONS(1056), [anon_sym_DOT_DOT] = ACTIONS(1054), + [anon_sym_QMARK2] = ACTIONS(1056), [anon_sym_DOT_DOT2] = ACTIONS(1054), [anon_sym_DOT] = ACTIONS(1054), [anon_sym_DOT_DOT_EQ] = ACTIONS(1054), @@ -198496,500 +200886,158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1056), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1056), [aux_sym_unquoted_token1] = ACTIONS(1054), - [anon_sym_POUND] = ACTIONS(247), - }, - [1296] = { - [sym_comment] = STATE(1296), - [anon_sym_true] = ACTIONS(1669), - [anon_sym_false] = ACTIONS(1669), - [anon_sym_null] = ACTIONS(1669), - [aux_sym_cmd_identifier_token38] = ACTIONS(1669), - [aux_sym_cmd_identifier_token39] = ACTIONS(1669), - [aux_sym_cmd_identifier_token40] = ACTIONS(1669), - [sym__newline] = ACTIONS(1669), - [anon_sym_SEMI] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1669), - [anon_sym_err_GT_PIPE] = ACTIONS(1669), - [anon_sym_out_GT_PIPE] = ACTIONS(1669), - [anon_sym_e_GT_PIPE] = ACTIONS(1669), - [anon_sym_o_GT_PIPE] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), - [anon_sym_LBRACK] = ACTIONS(1669), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_RPAREN] = ACTIONS(1669), - [anon_sym_DOLLAR] = ACTIONS(1667), - [anon_sym_DASH_DASH] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_LBRACE] = ACTIONS(1669), - [anon_sym_RBRACE] = ACTIONS(1669), - [anon_sym_DOT_DOT] = ACTIONS(1667), - [anon_sym_LPAREN2] = ACTIONS(1669), - [anon_sym_DOT] = ACTIONS(4624), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT] = ACTIONS(1669), - [aux_sym__immediate_decimal_token2] = ACTIONS(4626), - [aux_sym__val_number_decimal_token1] = ACTIONS(1667), - [aux_sym__val_number_decimal_token2] = ACTIONS(1669), - [aux_sym__val_number_decimal_token3] = ACTIONS(1669), - [aux_sym__val_number_decimal_token4] = ACTIONS(1669), - [aux_sym__val_number_token1] = ACTIONS(1669), - [aux_sym__val_number_token2] = ACTIONS(1669), - [aux_sym__val_number_token3] = ACTIONS(1669), - [anon_sym_0b] = ACTIONS(1667), - [anon_sym_0o] = ACTIONS(1667), - [anon_sym_0x] = ACTIONS(1667), - [sym_val_date] = ACTIONS(1669), - [anon_sym_DQUOTE] = ACTIONS(1669), - [sym__str_single_quotes] = ACTIONS(1669), - [sym__str_back_ticks] = ACTIONS(1669), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1669), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1669), - [anon_sym_err_GT] = ACTIONS(1667), - [anon_sym_out_GT] = ACTIONS(1667), - [anon_sym_e_GT] = ACTIONS(1667), - [anon_sym_o_GT] = ACTIONS(1667), - [anon_sym_err_PLUSout_GT] = ACTIONS(1667), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1667), - [anon_sym_o_PLUSe_GT] = ACTIONS(1667), - [anon_sym_e_PLUSo_GT] = ACTIONS(1667), - [anon_sym_err_GT_GT] = ACTIONS(1669), - [anon_sym_out_GT_GT] = ACTIONS(1669), - [anon_sym_e_GT_GT] = ACTIONS(1669), - [anon_sym_o_GT_GT] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1669), - [aux_sym_unquoted_token1] = ACTIONS(1667), - [aux_sym_unquoted_token2] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(247), - }, - [1297] = { - [sym_comment] = STATE(1297), - [ts_builtin_sym_end] = ACTIONS(1661), - [anon_sym_true] = ACTIONS(1661), - [anon_sym_false] = ACTIONS(1661), - [anon_sym_null] = ACTIONS(1661), - [aux_sym_cmd_identifier_token38] = ACTIONS(1661), - [aux_sym_cmd_identifier_token39] = ACTIONS(1661), - [aux_sym_cmd_identifier_token40] = ACTIONS(1661), - [sym__newline] = ACTIONS(1661), - [anon_sym_SEMI] = ACTIONS(1661), - [anon_sym_PIPE] = ACTIONS(1661), - [anon_sym_err_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_GT_PIPE] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_DOLLAR] = ACTIONS(1659), - [anon_sym_DASH_DASH] = ACTIONS(1661), - [anon_sym_DASH] = ACTIONS(1659), - [anon_sym_LBRACE] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1659), - [anon_sym_LPAREN2] = ACTIONS(1661), - [anon_sym_DOT_DOT2] = ACTIONS(1659), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1659), - [anon_sym_DOT_DOT_LT] = ACTIONS(1659), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1661), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1661), - [aux_sym__val_number_decimal_token1] = ACTIONS(1659), - [aux_sym__val_number_decimal_token2] = ACTIONS(1661), - [aux_sym__val_number_decimal_token3] = ACTIONS(1661), - [aux_sym__val_number_decimal_token4] = ACTIONS(1661), - [aux_sym__val_number_token1] = ACTIONS(1661), - [aux_sym__val_number_token2] = ACTIONS(1661), - [aux_sym__val_number_token3] = ACTIONS(1661), - [anon_sym_0b] = ACTIONS(1659), - [anon_sym_0o] = ACTIONS(1659), - [anon_sym_0x] = ACTIONS(1659), - [sym_val_date] = ACTIONS(1661), - [anon_sym_DQUOTE] = ACTIONS(1661), - [sym__str_single_quotes] = ACTIONS(1661), - [sym__str_back_ticks] = ACTIONS(1661), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1661), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1661), - [anon_sym_err_GT] = ACTIONS(1659), - [anon_sym_out_GT] = ACTIONS(1659), - [anon_sym_e_GT] = ACTIONS(1659), - [anon_sym_o_GT] = ACTIONS(1659), - [anon_sym_err_PLUSout_GT] = ACTIONS(1659), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1659), - [anon_sym_o_PLUSe_GT] = ACTIONS(1659), - [anon_sym_e_PLUSo_GT] = ACTIONS(1659), - [anon_sym_err_GT_GT] = ACTIONS(1661), - [anon_sym_out_GT_GT] = ACTIONS(1661), - [anon_sym_e_GT_GT] = ACTIONS(1661), - [anon_sym_o_GT_GT] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1661), - [aux_sym_unquoted_token1] = ACTIONS(1659), - [aux_sym_unquoted_token2] = ACTIONS(1659), - [anon_sym_POUND] = ACTIONS(247), - }, - [1298] = { - [sym_comment] = STATE(1298), - [aux_sym_cmd_identifier_token41] = ACTIONS(1518), - [sym__newline] = ACTIONS(1518), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_err_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_GT_PIPE] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1520), - [anon_sym_RPAREN] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1520), - [anon_sym_DOT_DOT2] = ACTIONS(1518), - [anon_sym_DOT] = ACTIONS(4628), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), - [aux_sym__immediate_decimal_token2] = ACTIONS(4630), - [sym_filesize_unit] = ACTIONS(1520), - [sym_duration_unit] = ACTIONS(1520), - [anon_sym_err_GT] = ACTIONS(1518), - [anon_sym_out_GT] = ACTIONS(1518), - [anon_sym_e_GT] = ACTIONS(1518), - [anon_sym_o_GT] = ACTIONS(1518), - [anon_sym_err_PLUSout_GT] = ACTIONS(1518), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), - [anon_sym_o_PLUSe_GT] = ACTIONS(1518), - [anon_sym_e_PLUSo_GT] = ACTIONS(1518), - [anon_sym_err_GT_GT] = ACTIONS(1520), - [anon_sym_out_GT_GT] = ACTIONS(1520), - [anon_sym_e_GT_GT] = ACTIONS(1520), - [anon_sym_o_GT_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1520), - [anon_sym_POUND] = ACTIONS(247), - }, - [1299] = { - [sym_comment] = STATE(1299), - [ts_builtin_sym_end] = ACTIONS(1723), - [anon_sym_true] = ACTIONS(1723), - [anon_sym_false] = ACTIONS(1723), - [anon_sym_null] = ACTIONS(1723), - [aux_sym_cmd_identifier_token38] = ACTIONS(1723), - [aux_sym_cmd_identifier_token39] = ACTIONS(1723), - [aux_sym_cmd_identifier_token40] = ACTIONS(1723), - [sym__newline] = ACTIONS(1723), - [anon_sym_SEMI] = ACTIONS(1723), - [anon_sym_PIPE] = ACTIONS(1723), - [anon_sym_err_GT_PIPE] = ACTIONS(1723), - [anon_sym_out_GT_PIPE] = ACTIONS(1723), - [anon_sym_e_GT_PIPE] = ACTIONS(1723), - [anon_sym_o_GT_PIPE] = ACTIONS(1723), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1723), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1723), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1723), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1723), - [anon_sym_LBRACK] = ACTIONS(1723), - [anon_sym_LPAREN] = ACTIONS(1721), - [anon_sym_DOLLAR] = ACTIONS(1721), - [anon_sym_DASH_DASH] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1723), - [anon_sym_DOT_DOT] = ACTIONS(1721), - [anon_sym_LPAREN2] = ACTIONS(1723), - [anon_sym_DOT_DOT2] = ACTIONS(1721), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1721), - [anon_sym_DOT_DOT_LT] = ACTIONS(1721), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1723), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1723), - [aux_sym__val_number_decimal_token1] = ACTIONS(1721), - [aux_sym__val_number_decimal_token2] = ACTIONS(1723), - [aux_sym__val_number_decimal_token3] = ACTIONS(1723), - [aux_sym__val_number_decimal_token4] = ACTIONS(1723), - [aux_sym__val_number_token1] = ACTIONS(1723), - [aux_sym__val_number_token2] = ACTIONS(1723), - [aux_sym__val_number_token3] = ACTIONS(1723), - [anon_sym_0b] = ACTIONS(1721), - [anon_sym_0o] = ACTIONS(1721), - [anon_sym_0x] = ACTIONS(1721), - [sym_val_date] = ACTIONS(1723), - [anon_sym_DQUOTE] = ACTIONS(1723), - [sym__str_single_quotes] = ACTIONS(1723), - [sym__str_back_ticks] = ACTIONS(1723), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1723), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1723), - [anon_sym_err_GT] = ACTIONS(1721), - [anon_sym_out_GT] = ACTIONS(1721), - [anon_sym_e_GT] = ACTIONS(1721), - [anon_sym_o_GT] = ACTIONS(1721), - [anon_sym_err_PLUSout_GT] = ACTIONS(1721), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1721), - [anon_sym_o_PLUSe_GT] = ACTIONS(1721), - [anon_sym_e_PLUSo_GT] = ACTIONS(1721), - [anon_sym_err_GT_GT] = ACTIONS(1723), - [anon_sym_out_GT_GT] = ACTIONS(1723), - [anon_sym_e_GT_GT] = ACTIONS(1723), - [anon_sym_o_GT_GT] = ACTIONS(1723), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1723), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1723), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1723), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1723), - [aux_sym_unquoted_token1] = ACTIONS(1721), - [aux_sym_unquoted_token2] = ACTIONS(1721), - [anon_sym_POUND] = ACTIONS(247), - }, - [1300] = { - [sym_comment] = STATE(1300), - [anon_sym_true] = ACTIONS(1669), - [anon_sym_false] = ACTIONS(1669), - [anon_sym_null] = ACTIONS(1669), - [aux_sym_cmd_identifier_token38] = ACTIONS(1669), - [aux_sym_cmd_identifier_token39] = ACTIONS(1669), - [aux_sym_cmd_identifier_token40] = ACTIONS(1669), - [sym__newline] = ACTIONS(1669), - [anon_sym_SEMI] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1669), - [anon_sym_err_GT_PIPE] = ACTIONS(1669), - [anon_sym_out_GT_PIPE] = ACTIONS(1669), - [anon_sym_e_GT_PIPE] = ACTIONS(1669), - [anon_sym_o_GT_PIPE] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), - [anon_sym_LBRACK] = ACTIONS(1669), - [anon_sym_LPAREN] = ACTIONS(1669), - [anon_sym_RPAREN] = ACTIONS(1669), - [anon_sym_DOLLAR] = ACTIONS(1667), - [anon_sym_DASH_DASH] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_LBRACE] = ACTIONS(1669), - [anon_sym_RBRACE] = ACTIONS(1669), - [anon_sym_DOT_DOT] = ACTIONS(1667), - [anon_sym_DOT_DOT2] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1667), - [anon_sym_DOT_DOT_LT] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [aux_sym__immediate_decimal_token2] = ACTIONS(4533), - [aux_sym__val_number_decimal_token1] = ACTIONS(1667), - [aux_sym__val_number_decimal_token2] = ACTIONS(1669), - [aux_sym__val_number_decimal_token3] = ACTIONS(1669), - [aux_sym__val_number_decimal_token4] = ACTIONS(1669), - [aux_sym__val_number_token1] = ACTIONS(1669), - [aux_sym__val_number_token2] = ACTIONS(1669), - [aux_sym__val_number_token3] = ACTIONS(1669), - [anon_sym_0b] = ACTIONS(1667), - [anon_sym_0o] = ACTIONS(1667), - [anon_sym_0x] = ACTIONS(1667), - [sym_val_date] = ACTIONS(1669), - [anon_sym_DQUOTE] = ACTIONS(1669), - [sym__str_single_quotes] = ACTIONS(1669), - [sym__str_back_ticks] = ACTIONS(1669), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1669), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1669), - [anon_sym_err_GT] = ACTIONS(1667), - [anon_sym_out_GT] = ACTIONS(1667), - [anon_sym_e_GT] = ACTIONS(1667), - [anon_sym_o_GT] = ACTIONS(1667), - [anon_sym_err_PLUSout_GT] = ACTIONS(1667), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1667), - [anon_sym_o_PLUSe_GT] = ACTIONS(1667), - [anon_sym_e_PLUSo_GT] = ACTIONS(1667), - [anon_sym_err_GT_GT] = ACTIONS(1669), - [anon_sym_out_GT_GT] = ACTIONS(1669), - [anon_sym_e_GT_GT] = ACTIONS(1669), - [anon_sym_o_GT_GT] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1669), - [aux_sym_unquoted_token1] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1056), }, - [1301] = { - [sym_comment] = STATE(1301), - [anon_sym_true] = ACTIONS(1723), - [anon_sym_false] = ACTIONS(1723), - [anon_sym_null] = ACTIONS(1723), - [aux_sym_cmd_identifier_token38] = ACTIONS(1723), - [aux_sym_cmd_identifier_token39] = ACTIONS(1723), - [aux_sym_cmd_identifier_token40] = ACTIONS(1723), - [sym__newline] = ACTIONS(1723), - [anon_sym_SEMI] = ACTIONS(1723), - [anon_sym_PIPE] = ACTIONS(1723), - [anon_sym_err_GT_PIPE] = ACTIONS(1723), - [anon_sym_out_GT_PIPE] = ACTIONS(1723), - [anon_sym_e_GT_PIPE] = ACTIONS(1723), - [anon_sym_o_GT_PIPE] = ACTIONS(1723), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1723), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1723), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1723), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1723), - [anon_sym_LBRACK] = ACTIONS(1723), - [anon_sym_LPAREN] = ACTIONS(1723), - [anon_sym_RPAREN] = ACTIONS(1723), - [anon_sym_DOLLAR] = ACTIONS(1721), - [anon_sym_DASH_DASH] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1723), - [anon_sym_RBRACE] = ACTIONS(1723), - [anon_sym_DOT_DOT] = ACTIONS(1721), - [anon_sym_DOT_DOT2] = ACTIONS(1721), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1721), - [anon_sym_DOT_DOT_LT] = ACTIONS(1721), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1723), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1723), - [aux_sym__immediate_decimal_token2] = ACTIONS(4632), - [aux_sym__val_number_decimal_token1] = ACTIONS(1721), - [aux_sym__val_number_decimal_token2] = ACTIONS(1723), - [aux_sym__val_number_decimal_token3] = ACTIONS(1723), - [aux_sym__val_number_decimal_token4] = ACTIONS(1723), - [aux_sym__val_number_token1] = ACTIONS(1723), - [aux_sym__val_number_token2] = ACTIONS(1723), - [aux_sym__val_number_token3] = ACTIONS(1723), - [anon_sym_0b] = ACTIONS(1721), - [anon_sym_0o] = ACTIONS(1721), - [anon_sym_0x] = ACTIONS(1721), - [sym_val_date] = ACTIONS(1723), - [anon_sym_DQUOTE] = ACTIONS(1723), - [sym__str_single_quotes] = ACTIONS(1723), - [sym__str_back_ticks] = ACTIONS(1723), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1723), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1723), - [anon_sym_err_GT] = ACTIONS(1721), - [anon_sym_out_GT] = ACTIONS(1721), - [anon_sym_e_GT] = ACTIONS(1721), - [anon_sym_o_GT] = ACTIONS(1721), - [anon_sym_err_PLUSout_GT] = ACTIONS(1721), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1721), - [anon_sym_o_PLUSe_GT] = ACTIONS(1721), - [anon_sym_e_PLUSo_GT] = ACTIONS(1721), - [anon_sym_err_GT_GT] = ACTIONS(1723), - [anon_sym_out_GT_GT] = ACTIONS(1723), - [anon_sym_e_GT_GT] = ACTIONS(1723), - [anon_sym_o_GT_GT] = ACTIONS(1723), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1723), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1723), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1723), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1723), - [aux_sym_unquoted_token1] = ACTIONS(1721), - [anon_sym_POUND] = ACTIONS(247), + [1288] = { + [sym_comment] = STATE(1288), + [anon_sym_true] = ACTIONS(1076), + [anon_sym_false] = ACTIONS(1076), + [anon_sym_null] = ACTIONS(1076), + [aux_sym_cmd_identifier_token38] = ACTIONS(1076), + [aux_sym_cmd_identifier_token39] = ACTIONS(1076), + [aux_sym_cmd_identifier_token40] = ACTIONS(1076), + [sym__newline] = ACTIONS(1076), + [anon_sym_SEMI] = ACTIONS(1076), + [anon_sym_PIPE] = ACTIONS(1076), + [anon_sym_err_GT_PIPE] = ACTIONS(1076), + [anon_sym_out_GT_PIPE] = ACTIONS(1076), + [anon_sym_e_GT_PIPE] = ACTIONS(1076), + [anon_sym_o_GT_PIPE] = ACTIONS(1076), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1076), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1076), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1076), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1076), + [anon_sym_LBRACK] = ACTIONS(1076), + [anon_sym_LPAREN] = ACTIONS(1076), + [anon_sym_RPAREN] = ACTIONS(1076), + [anon_sym_DOLLAR] = ACTIONS(1074), + [anon_sym_DASH_DASH] = ACTIONS(1076), + [anon_sym_DASH] = ACTIONS(1074), + [anon_sym_LBRACE] = ACTIONS(1076), + [anon_sym_RBRACE] = ACTIONS(1076), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT2] = ACTIONS(1074), + [anon_sym_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1074), + [anon_sym_DOT_DOT_LT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1076), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1076), + [aux_sym__val_number_decimal_token1] = ACTIONS(1074), + [aux_sym__val_number_decimal_token2] = ACTIONS(1076), + [aux_sym__val_number_decimal_token3] = ACTIONS(1076), + [aux_sym__val_number_decimal_token4] = ACTIONS(1076), + [aux_sym__val_number_token1] = ACTIONS(1076), + [aux_sym__val_number_token2] = ACTIONS(1076), + [aux_sym__val_number_token3] = ACTIONS(1076), + [anon_sym_0b] = ACTIONS(1074), + [anon_sym_0o] = ACTIONS(1074), + [anon_sym_0x] = ACTIONS(1074), + [sym_val_date] = ACTIONS(1076), + [anon_sym_DQUOTE] = ACTIONS(1076), + [sym__str_single_quotes] = ACTIONS(1076), + [sym__str_back_ticks] = ACTIONS(1076), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1076), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1076), + [anon_sym_err_GT] = ACTIONS(1074), + [anon_sym_out_GT] = ACTIONS(1074), + [anon_sym_e_GT] = ACTIONS(1074), + [anon_sym_o_GT] = ACTIONS(1074), + [anon_sym_err_PLUSout_GT] = ACTIONS(1074), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1074), + [anon_sym_o_PLUSe_GT] = ACTIONS(1074), + [anon_sym_e_PLUSo_GT] = ACTIONS(1074), + [anon_sym_err_GT_GT] = ACTIONS(1076), + [anon_sym_out_GT_GT] = ACTIONS(1076), + [anon_sym_e_GT_GT] = ACTIONS(1076), + [anon_sym_o_GT_GT] = ACTIONS(1076), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1076), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1076), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1076), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1076), + [aux_sym_unquoted_token1] = ACTIONS(1074), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1076), }, - [1302] = { - [sym_comment] = STATE(1302), - [ts_builtin_sym_end] = ACTIONS(1740), - [anon_sym_true] = ACTIONS(1740), - [anon_sym_false] = ACTIONS(1740), - [anon_sym_null] = ACTIONS(1740), - [aux_sym_cmd_identifier_token38] = ACTIONS(1740), - [aux_sym_cmd_identifier_token39] = ACTIONS(1740), - [aux_sym_cmd_identifier_token40] = ACTIONS(1740), - [sym__newline] = ACTIONS(1740), - [anon_sym_SEMI] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1740), - [anon_sym_err_GT_PIPE] = ACTIONS(1740), - [anon_sym_out_GT_PIPE] = ACTIONS(1740), - [anon_sym_e_GT_PIPE] = ACTIONS(1740), - [anon_sym_o_GT_PIPE] = ACTIONS(1740), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1740), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1740), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1740), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1740), - [anon_sym_LBRACK] = ACTIONS(1740), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_DOLLAR] = ACTIONS(1738), - [anon_sym_DASH_DASH] = ACTIONS(1740), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_LBRACE] = ACTIONS(1740), - [anon_sym_DOT_DOT] = ACTIONS(1738), - [anon_sym_LPAREN2] = ACTIONS(1740), - [anon_sym_DOT_DOT2] = ACTIONS(1738), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1738), - [anon_sym_DOT_DOT_LT] = ACTIONS(1738), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1740), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1740), - [aux_sym__val_number_decimal_token1] = ACTIONS(1738), - [aux_sym__val_number_decimal_token2] = ACTIONS(1740), - [aux_sym__val_number_decimal_token3] = ACTIONS(1740), - [aux_sym__val_number_decimal_token4] = ACTIONS(1740), - [aux_sym__val_number_token1] = ACTIONS(1740), - [aux_sym__val_number_token2] = ACTIONS(1740), - [aux_sym__val_number_token3] = ACTIONS(1740), - [anon_sym_0b] = ACTIONS(1738), - [anon_sym_0o] = ACTIONS(1738), - [anon_sym_0x] = ACTIONS(1738), - [sym_val_date] = ACTIONS(1740), - [anon_sym_DQUOTE] = ACTIONS(1740), - [sym__str_single_quotes] = ACTIONS(1740), - [sym__str_back_ticks] = ACTIONS(1740), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1740), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1740), - [anon_sym_err_GT] = ACTIONS(1738), - [anon_sym_out_GT] = ACTIONS(1738), - [anon_sym_e_GT] = ACTIONS(1738), - [anon_sym_o_GT] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT] = ACTIONS(1738), - [anon_sym_err_GT_GT] = ACTIONS(1740), - [anon_sym_out_GT_GT] = ACTIONS(1740), - [anon_sym_e_GT_GT] = ACTIONS(1740), - [anon_sym_o_GT_GT] = ACTIONS(1740), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1740), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1740), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1740), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1740), - [aux_sym_unquoted_token1] = ACTIONS(1738), - [aux_sym_unquoted_token2] = ACTIONS(1738), - [anon_sym_POUND] = ACTIONS(247), + [1289] = { + [sym_comment] = STATE(1289), + [anon_sym_true] = ACTIONS(1068), + [anon_sym_false] = ACTIONS(1068), + [anon_sym_null] = ACTIONS(1068), + [aux_sym_cmd_identifier_token38] = ACTIONS(1068), + [aux_sym_cmd_identifier_token39] = ACTIONS(1068), + [aux_sym_cmd_identifier_token40] = ACTIONS(1068), + [sym__newline] = ACTIONS(1068), + [anon_sym_SEMI] = ACTIONS(1068), + [anon_sym_PIPE] = ACTIONS(1068), + [anon_sym_err_GT_PIPE] = ACTIONS(1068), + [anon_sym_out_GT_PIPE] = ACTIONS(1068), + [anon_sym_e_GT_PIPE] = ACTIONS(1068), + [anon_sym_o_GT_PIPE] = ACTIONS(1068), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1068), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1068), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1068), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1068), + [anon_sym_LBRACK] = ACTIONS(1068), + [anon_sym_LPAREN] = ACTIONS(1068), + [anon_sym_RPAREN] = ACTIONS(1068), + [anon_sym_DOLLAR] = ACTIONS(1066), + [anon_sym_DASH_DASH] = ACTIONS(1068), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_RBRACE] = ACTIONS(1068), + [anon_sym_DOT_DOT] = ACTIONS(1066), + [anon_sym_DOT_DOT2] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(1066), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1066), + [anon_sym_DOT_DOT_LT] = ACTIONS(1066), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1068), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1068), + [aux_sym__val_number_decimal_token1] = ACTIONS(1066), + [aux_sym__val_number_decimal_token2] = ACTIONS(1068), + [aux_sym__val_number_decimal_token3] = ACTIONS(1068), + [aux_sym__val_number_decimal_token4] = ACTIONS(1068), + [aux_sym__val_number_token1] = ACTIONS(1068), + [aux_sym__val_number_token2] = ACTIONS(1068), + [aux_sym__val_number_token3] = ACTIONS(1068), + [anon_sym_0b] = ACTIONS(1066), + [anon_sym_0o] = ACTIONS(1066), + [anon_sym_0x] = ACTIONS(1066), + [sym_val_date] = ACTIONS(1068), + [anon_sym_DQUOTE] = ACTIONS(1068), + [sym__str_single_quotes] = ACTIONS(1068), + [sym__str_back_ticks] = ACTIONS(1068), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1068), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1068), + [anon_sym_err_GT] = ACTIONS(1066), + [anon_sym_out_GT] = ACTIONS(1066), + [anon_sym_e_GT] = ACTIONS(1066), + [anon_sym_o_GT] = ACTIONS(1066), + [anon_sym_err_PLUSout_GT] = ACTIONS(1066), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1066), + [anon_sym_o_PLUSe_GT] = ACTIONS(1066), + [anon_sym_e_PLUSo_GT] = ACTIONS(1066), + [anon_sym_err_GT_GT] = ACTIONS(1068), + [anon_sym_out_GT_GT] = ACTIONS(1068), + [anon_sym_e_GT_GT] = ACTIONS(1068), + [anon_sym_o_GT_GT] = ACTIONS(1068), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1068), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1068), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1068), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1068), + [aux_sym_unquoted_token1] = ACTIONS(1066), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1068), }, - [1303] = { - [sym_comment] = STATE(1303), - [anon_sym_EQ] = ACTIONS(4634), - [anon_sym_PLUS_EQ] = ACTIONS(4636), - [anon_sym_DASH_EQ] = ACTIONS(4636), - [anon_sym_STAR_EQ] = ACTIONS(4636), - [anon_sym_SLASH_EQ] = ACTIONS(4636), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4636), - [sym__newline] = ACTIONS(1070), + [1290] = { + [sym_comment] = STATE(1290), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_null] = ACTIONS(1072), + [aux_sym_cmd_identifier_token38] = ACTIONS(1072), + [aux_sym_cmd_identifier_token39] = ACTIONS(1072), + [aux_sym_cmd_identifier_token40] = ACTIONS(1072), + [sym__newline] = ACTIONS(1072), [anon_sym_SEMI] = ACTIONS(1072), [anon_sym_PIPE] = ACTIONS(1072), [anon_sym_err_GT_PIPE] = ACTIONS(1072), @@ -199000,38 +201048,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1072), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1072), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1072), + [anon_sym_LPAREN] = ACTIONS(1072), [anon_sym_RPAREN] = ACTIONS(1072), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1072), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1072), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1072), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1072), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1072), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1072), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1072), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1072), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1072), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1072), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1072), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1072), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1072), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1072), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1072), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1072), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1072), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1072), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1072), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1072), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1072), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1072), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1072), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1072), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1072), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1072), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1072), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1072), - [anon_sym_DOT_DOT2] = ACTIONS(1079), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1081), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1081), + [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_DASH_DASH] = ACTIONS(1072), + [anon_sym_DASH] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1072), + [anon_sym_DOT_DOT] = ACTIONS(1070), + [anon_sym_DOT_DOT2] = ACTIONS(1070), + [anon_sym_DOT] = ACTIONS(1070), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1070), + [anon_sym_DOT_DOT_LT] = ACTIONS(1070), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1072), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1072), + [aux_sym__val_number_decimal_token1] = ACTIONS(1070), + [aux_sym__val_number_decimal_token2] = ACTIONS(1072), + [aux_sym__val_number_decimal_token3] = ACTIONS(1072), + [aux_sym__val_number_decimal_token4] = ACTIONS(1072), + [aux_sym__val_number_token1] = ACTIONS(1072), + [aux_sym__val_number_token2] = ACTIONS(1072), + [aux_sym__val_number_token3] = ACTIONS(1072), + [anon_sym_0b] = ACTIONS(1070), + [anon_sym_0o] = ACTIONS(1070), + [anon_sym_0x] = ACTIONS(1070), + [sym_val_date] = ACTIONS(1072), + [anon_sym_DQUOTE] = ACTIONS(1072), + [sym__str_single_quotes] = ACTIONS(1072), + [sym__str_back_ticks] = ACTIONS(1072), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1072), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1072), [anon_sym_err_GT] = ACTIONS(1070), [anon_sym_out_GT] = ACTIONS(1070), [anon_sym_e_GT] = ACTIONS(1070), @@ -199048,10 +201095,642 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1072), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1072), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1072), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_unquoted_token1] = ACTIONS(1070), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1072), }, - [1304] = { - [sym_comment] = STATE(1304), + [1291] = { + [sym_comment] = STATE(1291), + [anon_sym_true] = ACTIONS(1717), + [anon_sym_false] = ACTIONS(1717), + [anon_sym_null] = ACTIONS(1717), + [aux_sym_cmd_identifier_token38] = ACTIONS(1717), + [aux_sym_cmd_identifier_token39] = ACTIONS(1717), + [aux_sym_cmd_identifier_token40] = ACTIONS(1717), + [sym__newline] = ACTIONS(1717), + [anon_sym_SEMI] = ACTIONS(1717), + [anon_sym_PIPE] = ACTIONS(1717), + [anon_sym_err_GT_PIPE] = ACTIONS(1717), + [anon_sym_out_GT_PIPE] = ACTIONS(1717), + [anon_sym_e_GT_PIPE] = ACTIONS(1717), + [anon_sym_o_GT_PIPE] = ACTIONS(1717), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1717), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1717), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1717), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1717), + [anon_sym_LBRACK] = ACTIONS(1717), + [anon_sym_LPAREN] = ACTIONS(1715), + [anon_sym_RPAREN] = ACTIONS(1717), + [anon_sym_DOLLAR] = ACTIONS(1715), + [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_LBRACE] = ACTIONS(1717), + [anon_sym_RBRACE] = ACTIONS(1717), + [anon_sym_DOT_DOT] = ACTIONS(1715), + [anon_sym_LPAREN2] = ACTIONS(1717), + [anon_sym_DOT] = ACTIONS(4673), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1717), + [anon_sym_DOT_DOT_LT] = ACTIONS(1717), + [aux_sym__immediate_decimal_token2] = ACTIONS(4675), + [aux_sym__val_number_decimal_token1] = ACTIONS(1715), + [aux_sym__val_number_decimal_token2] = ACTIONS(1717), + [aux_sym__val_number_decimal_token3] = ACTIONS(1717), + [aux_sym__val_number_decimal_token4] = ACTIONS(1717), + [aux_sym__val_number_token1] = ACTIONS(1717), + [aux_sym__val_number_token2] = ACTIONS(1717), + [aux_sym__val_number_token3] = ACTIONS(1717), + [anon_sym_0b] = ACTIONS(1715), + [anon_sym_0o] = ACTIONS(1715), + [anon_sym_0x] = ACTIONS(1715), + [sym_val_date] = ACTIONS(1717), + [anon_sym_DQUOTE] = ACTIONS(1717), + [sym__str_single_quotes] = ACTIONS(1717), + [sym__str_back_ticks] = ACTIONS(1717), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1717), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1717), + [anon_sym_err_GT] = ACTIONS(1715), + [anon_sym_out_GT] = ACTIONS(1715), + [anon_sym_e_GT] = ACTIONS(1715), + [anon_sym_o_GT] = ACTIONS(1715), + [anon_sym_err_PLUSout_GT] = ACTIONS(1715), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1715), + [anon_sym_o_PLUSe_GT] = ACTIONS(1715), + [anon_sym_e_PLUSo_GT] = ACTIONS(1715), + [anon_sym_err_GT_GT] = ACTIONS(1717), + [anon_sym_out_GT_GT] = ACTIONS(1717), + [anon_sym_e_GT_GT] = ACTIONS(1717), + [anon_sym_o_GT_GT] = ACTIONS(1717), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1717), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1717), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1717), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1717), + [aux_sym_unquoted_token1] = ACTIONS(1715), + [aux_sym_unquoted_token2] = ACTIONS(1715), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1717), + }, + [1292] = { + [sym_comment] = STATE(1292), + [ts_builtin_sym_end] = ACTIONS(1828), + [anon_sym_true] = ACTIONS(1828), + [anon_sym_false] = ACTIONS(1828), + [anon_sym_null] = ACTIONS(1828), + [aux_sym_cmd_identifier_token38] = ACTIONS(1828), + [aux_sym_cmd_identifier_token39] = ACTIONS(1828), + [aux_sym_cmd_identifier_token40] = ACTIONS(1828), + [sym__newline] = ACTIONS(1828), + [anon_sym_SEMI] = ACTIONS(1828), + [anon_sym_PIPE] = ACTIONS(1828), + [anon_sym_err_GT_PIPE] = ACTIONS(1828), + [anon_sym_out_GT_PIPE] = ACTIONS(1828), + [anon_sym_e_GT_PIPE] = ACTIONS(1828), + [anon_sym_o_GT_PIPE] = ACTIONS(1828), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1828), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1828), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1828), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1828), + [anon_sym_LBRACK] = ACTIONS(1828), + [anon_sym_LPAREN] = ACTIONS(1826), + [anon_sym_DOLLAR] = ACTIONS(1826), + [anon_sym_DASH_DASH] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_LBRACE] = ACTIONS(1828), + [anon_sym_DOT_DOT] = ACTIONS(1826), + [anon_sym_LPAREN2] = ACTIONS(1828), + [anon_sym_DOT_DOT2] = ACTIONS(1826), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1826), + [anon_sym_DOT_DOT_LT] = ACTIONS(1826), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1828), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1828), + [aux_sym__val_number_decimal_token1] = ACTIONS(1826), + [aux_sym__val_number_decimal_token2] = ACTIONS(1828), + [aux_sym__val_number_decimal_token3] = ACTIONS(1828), + [aux_sym__val_number_decimal_token4] = ACTIONS(1828), + [aux_sym__val_number_token1] = ACTIONS(1828), + [aux_sym__val_number_token2] = ACTIONS(1828), + [aux_sym__val_number_token3] = ACTIONS(1828), + [anon_sym_0b] = ACTIONS(1826), + [anon_sym_0o] = ACTIONS(1826), + [anon_sym_0x] = ACTIONS(1826), + [sym_val_date] = ACTIONS(1828), + [anon_sym_DQUOTE] = ACTIONS(1828), + [sym__str_single_quotes] = ACTIONS(1828), + [sym__str_back_ticks] = ACTIONS(1828), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1828), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1828), + [anon_sym_err_GT] = ACTIONS(1826), + [anon_sym_out_GT] = ACTIONS(1826), + [anon_sym_e_GT] = ACTIONS(1826), + [anon_sym_o_GT] = ACTIONS(1826), + [anon_sym_err_PLUSout_GT] = ACTIONS(1826), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1826), + [anon_sym_o_PLUSe_GT] = ACTIONS(1826), + [anon_sym_e_PLUSo_GT] = ACTIONS(1826), + [anon_sym_err_GT_GT] = ACTIONS(1828), + [anon_sym_out_GT_GT] = ACTIONS(1828), + [anon_sym_e_GT_GT] = ACTIONS(1828), + [anon_sym_o_GT_GT] = ACTIONS(1828), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1828), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1828), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1828), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1828), + [aux_sym_unquoted_token1] = ACTIONS(1826), + [aux_sym_unquoted_token2] = ACTIONS(1826), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1828), + }, + [1293] = { + [sym_comment] = STATE(1293), + [anon_sym_true] = ACTIONS(1717), + [anon_sym_false] = ACTIONS(1717), + [anon_sym_null] = ACTIONS(1717), + [aux_sym_cmd_identifier_token38] = ACTIONS(1717), + [aux_sym_cmd_identifier_token39] = ACTIONS(1717), + [aux_sym_cmd_identifier_token40] = ACTIONS(1717), + [sym__newline] = ACTIONS(1717), + [anon_sym_SEMI] = ACTIONS(1717), + [anon_sym_PIPE] = ACTIONS(1717), + [anon_sym_err_GT_PIPE] = ACTIONS(1717), + [anon_sym_out_GT_PIPE] = ACTIONS(1717), + [anon_sym_e_GT_PIPE] = ACTIONS(1717), + [anon_sym_o_GT_PIPE] = ACTIONS(1717), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1717), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1717), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1717), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1717), + [anon_sym_LBRACK] = ACTIONS(1717), + [anon_sym_LPAREN] = ACTIONS(1717), + [anon_sym_RPAREN] = ACTIONS(1717), + [anon_sym_DOLLAR] = ACTIONS(1715), + [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_LBRACE] = ACTIONS(1717), + [anon_sym_RBRACE] = ACTIONS(1717), + [anon_sym_DOT_DOT] = ACTIONS(1715), + [anon_sym_DOT_DOT2] = ACTIONS(1715), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1715), + [anon_sym_DOT_DOT_LT] = ACTIONS(1715), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1717), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1717), + [aux_sym__immediate_decimal_token2] = ACTIONS(4639), + [aux_sym__val_number_decimal_token1] = ACTIONS(1715), + [aux_sym__val_number_decimal_token2] = ACTIONS(1717), + [aux_sym__val_number_decimal_token3] = ACTIONS(1717), + [aux_sym__val_number_decimal_token4] = ACTIONS(1717), + [aux_sym__val_number_token1] = ACTIONS(1717), + [aux_sym__val_number_token2] = ACTIONS(1717), + [aux_sym__val_number_token3] = ACTIONS(1717), + [anon_sym_0b] = ACTIONS(1715), + [anon_sym_0o] = ACTIONS(1715), + [anon_sym_0x] = ACTIONS(1715), + [sym_val_date] = ACTIONS(1717), + [anon_sym_DQUOTE] = ACTIONS(1717), + [sym__str_single_quotes] = ACTIONS(1717), + [sym__str_back_ticks] = ACTIONS(1717), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1717), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1717), + [anon_sym_err_GT] = ACTIONS(1715), + [anon_sym_out_GT] = ACTIONS(1715), + [anon_sym_e_GT] = ACTIONS(1715), + [anon_sym_o_GT] = ACTIONS(1715), + [anon_sym_err_PLUSout_GT] = ACTIONS(1715), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1715), + [anon_sym_o_PLUSe_GT] = ACTIONS(1715), + [anon_sym_e_PLUSo_GT] = ACTIONS(1715), + [anon_sym_err_GT_GT] = ACTIONS(1717), + [anon_sym_out_GT_GT] = ACTIONS(1717), + [anon_sym_e_GT_GT] = ACTIONS(1717), + [anon_sym_o_GT_GT] = ACTIONS(1717), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1717), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1717), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1717), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1717), + [aux_sym_unquoted_token1] = ACTIONS(1715), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1717), + }, + [1294] = { + [sym_comment] = STATE(1294), + [anon_sym_EQ] = ACTIONS(1078), + [anon_sym_PLUS_EQ] = ACTIONS(1080), + [anon_sym_DASH_EQ] = ACTIONS(1080), + [anon_sym_STAR_EQ] = ACTIONS(1080), + [anon_sym_SLASH_EQ] = ACTIONS(1080), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1080), + [sym__newline] = ACTIONS(1080), + [anon_sym_SEMI] = ACTIONS(1080), + [anon_sym_PIPE] = ACTIONS(1080), + [anon_sym_err_GT_PIPE] = ACTIONS(1080), + [anon_sym_out_GT_PIPE] = ACTIONS(1080), + [anon_sym_e_GT_PIPE] = ACTIONS(1080), + [anon_sym_o_GT_PIPE] = ACTIONS(1080), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1080), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1080), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1080), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1080), + [anon_sym_RPAREN] = ACTIONS(1080), + [anon_sym_RBRACE] = ACTIONS(1080), + [aux_sym_expr_binary_token1] = ACTIONS(1080), + [aux_sym_expr_binary_token2] = ACTIONS(1080), + [aux_sym_expr_binary_token3] = ACTIONS(1080), + [aux_sym_expr_binary_token4] = ACTIONS(1080), + [aux_sym_expr_binary_token5] = ACTIONS(1080), + [aux_sym_expr_binary_token6] = ACTIONS(1080), + [aux_sym_expr_binary_token7] = ACTIONS(1080), + [aux_sym_expr_binary_token8] = ACTIONS(1080), + [aux_sym_expr_binary_token9] = ACTIONS(1080), + [aux_sym_expr_binary_token10] = ACTIONS(1080), + [aux_sym_expr_binary_token11] = ACTIONS(1080), + [aux_sym_expr_binary_token12] = ACTIONS(1080), + [aux_sym_expr_binary_token13] = ACTIONS(1080), + [aux_sym_expr_binary_token14] = ACTIONS(1080), + [aux_sym_expr_binary_token15] = ACTIONS(1080), + [aux_sym_expr_binary_token16] = ACTIONS(1080), + [aux_sym_expr_binary_token17] = ACTIONS(1080), + [aux_sym_expr_binary_token18] = ACTIONS(1080), + [aux_sym_expr_binary_token19] = ACTIONS(1080), + [aux_sym_expr_binary_token20] = ACTIONS(1080), + [aux_sym_expr_binary_token21] = ACTIONS(1080), + [aux_sym_expr_binary_token22] = ACTIONS(1080), + [aux_sym_expr_binary_token23] = ACTIONS(1080), + [aux_sym_expr_binary_token24] = ACTIONS(1080), + [aux_sym_expr_binary_token25] = ACTIONS(1080), + [aux_sym_expr_binary_token26] = ACTIONS(1080), + [aux_sym_expr_binary_token27] = ACTIONS(1080), + [aux_sym_expr_binary_token28] = ACTIONS(1080), + [anon_sym_DOT_DOT2] = ACTIONS(1078), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1080), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1080), + [anon_sym_err_GT] = ACTIONS(1078), + [anon_sym_out_GT] = ACTIONS(1078), + [anon_sym_e_GT] = ACTIONS(1078), + [anon_sym_o_GT] = ACTIONS(1078), + [anon_sym_err_PLUSout_GT] = ACTIONS(1078), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1078), + [anon_sym_o_PLUSe_GT] = ACTIONS(1078), + [anon_sym_e_PLUSo_GT] = ACTIONS(1078), + [anon_sym_err_GT_GT] = ACTIONS(1080), + [anon_sym_out_GT_GT] = ACTIONS(1080), + [anon_sym_e_GT_GT] = ACTIONS(1080), + [anon_sym_o_GT_GT] = ACTIONS(1080), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1080), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1080), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1080), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1080), + [anon_sym_POUND] = ACTIONS(249), + }, + [1295] = { + [sym_comment] = STATE(1295), + [anon_sym_true] = ACTIONS(1771), + [anon_sym_false] = ACTIONS(1771), + [anon_sym_null] = ACTIONS(1771), + [aux_sym_cmd_identifier_token38] = ACTIONS(1771), + [aux_sym_cmd_identifier_token39] = ACTIONS(1771), + [aux_sym_cmd_identifier_token40] = ACTIONS(1771), + [sym__newline] = ACTIONS(1771), + [anon_sym_SEMI] = ACTIONS(1771), + [anon_sym_PIPE] = ACTIONS(1771), + [anon_sym_err_GT_PIPE] = ACTIONS(1771), + [anon_sym_out_GT_PIPE] = ACTIONS(1771), + [anon_sym_e_GT_PIPE] = ACTIONS(1771), + [anon_sym_o_GT_PIPE] = ACTIONS(1771), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1771), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1771), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1771), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1771), + [anon_sym_LPAREN] = ACTIONS(1771), + [anon_sym_RPAREN] = ACTIONS(1771), + [anon_sym_DOLLAR] = ACTIONS(1769), + [anon_sym_DASH_DASH] = ACTIONS(1771), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_LBRACE] = ACTIONS(1771), + [anon_sym_RBRACE] = ACTIONS(1771), + [anon_sym_DOT_DOT] = ACTIONS(1769), + [anon_sym_DOT_DOT2] = ACTIONS(1769), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1769), + [anon_sym_DOT_DOT_LT] = ACTIONS(1769), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1771), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1771), + [aux_sym__immediate_decimal_token2] = ACTIONS(4677), + [aux_sym__val_number_decimal_token1] = ACTIONS(1769), + [aux_sym__val_number_decimal_token2] = ACTIONS(1771), + [aux_sym__val_number_decimal_token3] = ACTIONS(1771), + [aux_sym__val_number_decimal_token4] = ACTIONS(1771), + [aux_sym__val_number_token1] = ACTIONS(1771), + [aux_sym__val_number_token2] = ACTIONS(1771), + [aux_sym__val_number_token3] = ACTIONS(1771), + [anon_sym_0b] = ACTIONS(1769), + [anon_sym_0o] = ACTIONS(1769), + [anon_sym_0x] = ACTIONS(1769), + [sym_val_date] = ACTIONS(1771), + [anon_sym_DQUOTE] = ACTIONS(1771), + [sym__str_single_quotes] = ACTIONS(1771), + [sym__str_back_ticks] = ACTIONS(1771), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1771), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1771), + [anon_sym_err_GT] = ACTIONS(1769), + [anon_sym_out_GT] = ACTIONS(1769), + [anon_sym_e_GT] = ACTIONS(1769), + [anon_sym_o_GT] = ACTIONS(1769), + [anon_sym_err_PLUSout_GT] = ACTIONS(1769), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1769), + [anon_sym_o_PLUSe_GT] = ACTIONS(1769), + [anon_sym_e_PLUSo_GT] = ACTIONS(1769), + [anon_sym_err_GT_GT] = ACTIONS(1771), + [anon_sym_out_GT_GT] = ACTIONS(1771), + [anon_sym_e_GT_GT] = ACTIONS(1771), + [anon_sym_o_GT_GT] = ACTIONS(1771), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1771), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1771), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1771), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1771), + [aux_sym_unquoted_token1] = ACTIONS(1769), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1771), + }, + [1296] = { + [sym_comment] = STATE(1296), + [anon_sym_EQ] = ACTIONS(1084), + [anon_sym_PLUS_EQ] = ACTIONS(1086), + [anon_sym_DASH_EQ] = ACTIONS(1086), + [anon_sym_STAR_EQ] = ACTIONS(1086), + [anon_sym_SLASH_EQ] = ACTIONS(1086), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1086), + [sym__newline] = ACTIONS(1092), + [anon_sym_SEMI] = ACTIONS(1092), + [anon_sym_PIPE] = ACTIONS(1092), + [anon_sym_err_GT_PIPE] = ACTIONS(1092), + [anon_sym_out_GT_PIPE] = ACTIONS(1092), + [anon_sym_e_GT_PIPE] = ACTIONS(1092), + [anon_sym_o_GT_PIPE] = ACTIONS(1092), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1092), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1092), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1092), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1092), + [anon_sym_RPAREN] = ACTIONS(1092), + [anon_sym_RBRACE] = ACTIONS(1092), + [aux_sym_expr_binary_token1] = ACTIONS(1092), + [aux_sym_expr_binary_token2] = ACTIONS(1092), + [aux_sym_expr_binary_token3] = ACTIONS(1092), + [aux_sym_expr_binary_token4] = ACTIONS(1092), + [aux_sym_expr_binary_token5] = ACTIONS(1092), + [aux_sym_expr_binary_token6] = ACTIONS(1092), + [aux_sym_expr_binary_token7] = ACTIONS(1092), + [aux_sym_expr_binary_token8] = ACTIONS(1092), + [aux_sym_expr_binary_token9] = ACTIONS(1092), + [aux_sym_expr_binary_token10] = ACTIONS(1092), + [aux_sym_expr_binary_token11] = ACTIONS(1092), + [aux_sym_expr_binary_token12] = ACTIONS(1092), + [aux_sym_expr_binary_token13] = ACTIONS(1092), + [aux_sym_expr_binary_token14] = ACTIONS(1092), + [aux_sym_expr_binary_token15] = ACTIONS(1092), + [aux_sym_expr_binary_token16] = ACTIONS(1092), + [aux_sym_expr_binary_token17] = ACTIONS(1092), + [aux_sym_expr_binary_token18] = ACTIONS(1092), + [aux_sym_expr_binary_token19] = ACTIONS(1092), + [aux_sym_expr_binary_token20] = ACTIONS(1092), + [aux_sym_expr_binary_token21] = ACTIONS(1092), + [aux_sym_expr_binary_token22] = ACTIONS(1092), + [aux_sym_expr_binary_token23] = ACTIONS(1092), + [aux_sym_expr_binary_token24] = ACTIONS(1092), + [aux_sym_expr_binary_token25] = ACTIONS(1092), + [aux_sym_expr_binary_token26] = ACTIONS(1092), + [aux_sym_expr_binary_token27] = ACTIONS(1092), + [aux_sym_expr_binary_token28] = ACTIONS(1092), + [anon_sym_DOT_DOT2] = ACTIONS(1099), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1101), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1101), + [anon_sym_err_GT] = ACTIONS(1090), + [anon_sym_out_GT] = ACTIONS(1090), + [anon_sym_e_GT] = ACTIONS(1090), + [anon_sym_o_GT] = ACTIONS(1090), + [anon_sym_err_PLUSout_GT] = ACTIONS(1090), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1090), + [anon_sym_o_PLUSe_GT] = ACTIONS(1090), + [anon_sym_e_PLUSo_GT] = ACTIONS(1090), + [anon_sym_err_GT_GT] = ACTIONS(1092), + [anon_sym_out_GT_GT] = ACTIONS(1092), + [anon_sym_e_GT_GT] = ACTIONS(1092), + [anon_sym_o_GT_GT] = ACTIONS(1092), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1092), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1092), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1092), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1092), + [anon_sym_POUND] = ACTIONS(249), + }, + [1297] = { + [sym_cell_path] = STATE(1594), + [sym_path] = STATE(1538), + [sym_comment] = STATE(1297), + [aux_sym_cell_path_repeat1] = STATE(1342), + [anon_sym_true] = ACTIONS(1895), + [anon_sym_false] = ACTIONS(1895), + [anon_sym_null] = ACTIONS(1895), + [aux_sym_cmd_identifier_token38] = ACTIONS(1895), + [aux_sym_cmd_identifier_token39] = ACTIONS(1895), + [aux_sym_cmd_identifier_token40] = ACTIONS(1895), + [sym__newline] = ACTIONS(1895), + [anon_sym_SEMI] = ACTIONS(1895), + [anon_sym_PIPE] = ACTIONS(1895), + [anon_sym_err_GT_PIPE] = ACTIONS(1895), + [anon_sym_out_GT_PIPE] = ACTIONS(1895), + [anon_sym_e_GT_PIPE] = ACTIONS(1895), + [anon_sym_o_GT_PIPE] = ACTIONS(1895), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1895), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1895), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1895), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1895), + [anon_sym_LBRACK] = ACTIONS(1895), + [anon_sym_LPAREN] = ACTIONS(1895), + [anon_sym_RPAREN] = ACTIONS(1895), + [anon_sym_DOLLAR] = ACTIONS(1893), + [anon_sym_DASH_DASH] = ACTIONS(1895), + [anon_sym_DASH] = ACTIONS(1893), + [anon_sym_LBRACE] = ACTIONS(1895), + [anon_sym_RBRACE] = ACTIONS(1895), + [anon_sym_DOT_DOT] = ACTIONS(1893), + [anon_sym_DOT] = ACTIONS(4679), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1895), + [anon_sym_DOT_DOT_LT] = ACTIONS(1895), + [aux_sym__val_number_decimal_token1] = ACTIONS(1893), + [aux_sym__val_number_decimal_token2] = ACTIONS(1895), + [aux_sym__val_number_decimal_token3] = ACTIONS(1895), + [aux_sym__val_number_decimal_token4] = ACTIONS(1895), + [aux_sym__val_number_token1] = ACTIONS(1895), + [aux_sym__val_number_token2] = ACTIONS(1895), + [aux_sym__val_number_token3] = ACTIONS(1895), + [anon_sym_0b] = ACTIONS(1893), + [anon_sym_0o] = ACTIONS(1893), + [anon_sym_0x] = ACTIONS(1893), + [sym_val_date] = ACTIONS(1895), + [anon_sym_DQUOTE] = ACTIONS(1895), + [sym__str_single_quotes] = ACTIONS(1895), + [sym__str_back_ticks] = ACTIONS(1895), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1895), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1895), + [anon_sym_err_GT] = ACTIONS(1893), + [anon_sym_out_GT] = ACTIONS(1893), + [anon_sym_e_GT] = ACTIONS(1893), + [anon_sym_o_GT] = ACTIONS(1893), + [anon_sym_err_PLUSout_GT] = ACTIONS(1893), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1893), + [anon_sym_o_PLUSe_GT] = ACTIONS(1893), + [anon_sym_e_PLUSo_GT] = ACTIONS(1893), + [anon_sym_err_GT_GT] = ACTIONS(1895), + [anon_sym_out_GT_GT] = ACTIONS(1895), + [anon_sym_e_GT_GT] = ACTIONS(1895), + [anon_sym_o_GT_GT] = ACTIONS(1895), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1895), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1895), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1895), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1895), + [aux_sym_unquoted_token1] = ACTIONS(1893), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1895), + }, + [1298] = { + [sym_cell_path] = STATE(1611), + [sym_path] = STATE(1538), + [sym_comment] = STATE(1298), + [aux_sym_cell_path_repeat1] = STATE(1342), + [anon_sym_true] = ACTIONS(1899), + [anon_sym_false] = ACTIONS(1899), + [anon_sym_null] = ACTIONS(1899), + [aux_sym_cmd_identifier_token38] = ACTIONS(1899), + [aux_sym_cmd_identifier_token39] = ACTIONS(1899), + [aux_sym_cmd_identifier_token40] = ACTIONS(1899), + [sym__newline] = ACTIONS(1899), + [anon_sym_SEMI] = ACTIONS(1899), + [anon_sym_PIPE] = ACTIONS(1899), + [anon_sym_err_GT_PIPE] = ACTIONS(1899), + [anon_sym_out_GT_PIPE] = ACTIONS(1899), + [anon_sym_e_GT_PIPE] = ACTIONS(1899), + [anon_sym_o_GT_PIPE] = ACTIONS(1899), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1899), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1899), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1899), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_LPAREN] = ACTIONS(1899), + [anon_sym_RPAREN] = ACTIONS(1899), + [anon_sym_DOLLAR] = ACTIONS(1897), + [anon_sym_DASH_DASH] = ACTIONS(1899), + [anon_sym_DASH] = ACTIONS(1897), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_RBRACE] = ACTIONS(1899), + [anon_sym_DOT_DOT] = ACTIONS(1897), + [anon_sym_DOT] = ACTIONS(4679), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1899), + [anon_sym_DOT_DOT_LT] = ACTIONS(1899), + [aux_sym__val_number_decimal_token1] = ACTIONS(1897), + [aux_sym__val_number_decimal_token2] = ACTIONS(1899), + [aux_sym__val_number_decimal_token3] = ACTIONS(1899), + [aux_sym__val_number_decimal_token4] = ACTIONS(1899), + [aux_sym__val_number_token1] = ACTIONS(1899), + [aux_sym__val_number_token2] = ACTIONS(1899), + [aux_sym__val_number_token3] = ACTIONS(1899), + [anon_sym_0b] = ACTIONS(1897), + [anon_sym_0o] = ACTIONS(1897), + [anon_sym_0x] = ACTIONS(1897), + [sym_val_date] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1899), + [sym__str_single_quotes] = ACTIONS(1899), + [sym__str_back_ticks] = ACTIONS(1899), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1899), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1899), + [anon_sym_err_GT] = ACTIONS(1897), + [anon_sym_out_GT] = ACTIONS(1897), + [anon_sym_e_GT] = ACTIONS(1897), + [anon_sym_o_GT] = ACTIONS(1897), + [anon_sym_err_PLUSout_GT] = ACTIONS(1897), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1897), + [anon_sym_o_PLUSe_GT] = ACTIONS(1897), + [anon_sym_e_PLUSo_GT] = ACTIONS(1897), + [anon_sym_err_GT_GT] = ACTIONS(1899), + [anon_sym_out_GT_GT] = ACTIONS(1899), + [anon_sym_e_GT_GT] = ACTIONS(1899), + [anon_sym_o_GT_GT] = ACTIONS(1899), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1899), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1899), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1899), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1899), + [aux_sym_unquoted_token1] = ACTIONS(1897), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1899), + }, + [1299] = { + [sym_comment] = STATE(1299), + [ts_builtin_sym_end] = ACTIONS(1076), + [anon_sym_EQ] = ACTIONS(1074), + [anon_sym_PLUS_EQ] = ACTIONS(1076), + [anon_sym_DASH_EQ] = ACTIONS(1076), + [anon_sym_STAR_EQ] = ACTIONS(1076), + [anon_sym_SLASH_EQ] = ACTIONS(1076), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1076), + [sym__newline] = ACTIONS(1076), + [anon_sym_SEMI] = ACTIONS(1076), + [anon_sym_PIPE] = ACTIONS(1076), + [anon_sym_err_GT_PIPE] = ACTIONS(1076), + [anon_sym_out_GT_PIPE] = ACTIONS(1076), + [anon_sym_e_GT_PIPE] = ACTIONS(1076), + [anon_sym_o_GT_PIPE] = ACTIONS(1076), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1076), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1076), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1076), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1076), + [aux_sym_expr_binary_token1] = ACTIONS(1076), + [aux_sym_expr_binary_token2] = ACTIONS(1076), + [aux_sym_expr_binary_token3] = ACTIONS(1076), + [aux_sym_expr_binary_token4] = ACTIONS(1076), + [aux_sym_expr_binary_token5] = ACTIONS(1076), + [aux_sym_expr_binary_token6] = ACTIONS(1076), + [aux_sym_expr_binary_token7] = ACTIONS(1076), + [aux_sym_expr_binary_token8] = ACTIONS(1076), + [aux_sym_expr_binary_token9] = ACTIONS(1076), + [aux_sym_expr_binary_token10] = ACTIONS(1076), + [aux_sym_expr_binary_token11] = ACTIONS(1076), + [aux_sym_expr_binary_token12] = ACTIONS(1076), + [aux_sym_expr_binary_token13] = ACTIONS(1076), + [aux_sym_expr_binary_token14] = ACTIONS(1076), + [aux_sym_expr_binary_token15] = ACTIONS(1076), + [aux_sym_expr_binary_token16] = ACTIONS(1076), + [aux_sym_expr_binary_token17] = ACTIONS(1076), + [aux_sym_expr_binary_token18] = ACTIONS(1076), + [aux_sym_expr_binary_token19] = ACTIONS(1076), + [aux_sym_expr_binary_token20] = ACTIONS(1076), + [aux_sym_expr_binary_token21] = ACTIONS(1076), + [aux_sym_expr_binary_token22] = ACTIONS(1076), + [aux_sym_expr_binary_token23] = ACTIONS(1076), + [aux_sym_expr_binary_token24] = ACTIONS(1076), + [aux_sym_expr_binary_token25] = ACTIONS(1076), + [aux_sym_expr_binary_token26] = ACTIONS(1076), + [aux_sym_expr_binary_token27] = ACTIONS(1076), + [aux_sym_expr_binary_token28] = ACTIONS(1076), + [anon_sym_DOT_DOT2] = ACTIONS(1074), + [anon_sym_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1076), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1076), + [anon_sym_err_GT] = ACTIONS(1074), + [anon_sym_out_GT] = ACTIONS(1074), + [anon_sym_e_GT] = ACTIONS(1074), + [anon_sym_o_GT] = ACTIONS(1074), + [anon_sym_err_PLUSout_GT] = ACTIONS(1074), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1074), + [anon_sym_o_PLUSe_GT] = ACTIONS(1074), + [anon_sym_e_PLUSo_GT] = ACTIONS(1074), + [anon_sym_err_GT_GT] = ACTIONS(1076), + [anon_sym_out_GT_GT] = ACTIONS(1076), + [anon_sym_e_GT_GT] = ACTIONS(1076), + [anon_sym_o_GT_GT] = ACTIONS(1076), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1076), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1076), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1076), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1076), + [anon_sym_POUND] = ACTIONS(249), + }, + [1300] = { + [sym_comment] = STATE(1300), [ts_builtin_sym_end] = ACTIONS(1796), [anon_sym_true] = ACTIONS(1796), [anon_sym_false] = ACTIONS(1796), @@ -199078,11 +201757,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1796), [anon_sym_DOT_DOT] = ACTIONS(1788), [anon_sym_LPAREN2] = ACTIONS(1790), - [anon_sym_DOT_DOT2] = ACTIONS(4638), + [anon_sym_DOT_DOT2] = ACTIONS(4681), [anon_sym_DOT_DOT_EQ] = ACTIONS(1788), [anon_sym_DOT_DOT_LT] = ACTIONS(1788), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4640), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4640), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4683), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4683), [aux_sym__val_number_decimal_token1] = ACTIONS(1788), [aux_sym__val_number_decimal_token2] = ACTIONS(1796), [aux_sym__val_number_decimal_token3] = ACTIONS(1796), @@ -199116,566 +201795,993 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1796), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1796), [aux_sym_unquoted_token1] = ACTIONS(1788), - [aux_sym_unquoted_token2] = ACTIONS(1798), - [anon_sym_POUND] = ACTIONS(247), - }, - [1305] = { - [sym_comment] = STATE(1305), - [aux_sym_cmd_identifier_token41] = ACTIONS(1540), - [sym__newline] = ACTIONS(1542), - [anon_sym_SEMI] = ACTIONS(1542), - [anon_sym_PIPE] = ACTIONS(1542), - [anon_sym_err_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_GT_PIPE] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1542), - [anon_sym_RPAREN] = ACTIONS(1542), - [anon_sym_RBRACE] = ACTIONS(1542), - [aux_sym_expr_binary_token1] = ACTIONS(1542), - [aux_sym_expr_binary_token2] = ACTIONS(1542), - [aux_sym_expr_binary_token3] = ACTIONS(1542), - [aux_sym_expr_binary_token4] = ACTIONS(1542), - [aux_sym_expr_binary_token5] = ACTIONS(1542), - [aux_sym_expr_binary_token6] = ACTIONS(1542), - [aux_sym_expr_binary_token7] = ACTIONS(1542), - [aux_sym_expr_binary_token8] = ACTIONS(1542), - [aux_sym_expr_binary_token9] = ACTIONS(1542), - [aux_sym_expr_binary_token10] = ACTIONS(1542), - [aux_sym_expr_binary_token11] = ACTIONS(1542), - [aux_sym_expr_binary_token12] = ACTIONS(1542), - [aux_sym_expr_binary_token13] = ACTIONS(1542), - [aux_sym_expr_binary_token14] = ACTIONS(1542), - [aux_sym_expr_binary_token15] = ACTIONS(1542), - [aux_sym_expr_binary_token16] = ACTIONS(1542), - [aux_sym_expr_binary_token17] = ACTIONS(1542), - [aux_sym_expr_binary_token18] = ACTIONS(1542), - [aux_sym_expr_binary_token19] = ACTIONS(1542), - [aux_sym_expr_binary_token20] = ACTIONS(1542), - [aux_sym_expr_binary_token21] = ACTIONS(1542), - [aux_sym_expr_binary_token22] = ACTIONS(1542), - [aux_sym_expr_binary_token23] = ACTIONS(1542), - [aux_sym_expr_binary_token24] = ACTIONS(1542), - [aux_sym_expr_binary_token25] = ACTIONS(1542), - [aux_sym_expr_binary_token26] = ACTIONS(1542), - [aux_sym_expr_binary_token27] = ACTIONS(1542), - [aux_sym_expr_binary_token28] = ACTIONS(1542), - [anon_sym_DOT_DOT2] = ACTIONS(1540), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1542), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1542), - [aux_sym__immediate_decimal_token1] = ACTIONS(4642), - [aux_sym__immediate_decimal_token2] = ACTIONS(4644), - [sym_filesize_unit] = ACTIONS(1542), - [sym_duration_unit] = ACTIONS(1542), - [anon_sym_err_GT] = ACTIONS(1540), - [anon_sym_out_GT] = ACTIONS(1540), - [anon_sym_e_GT] = ACTIONS(1540), - [anon_sym_o_GT] = ACTIONS(1540), - [anon_sym_err_PLUSout_GT] = ACTIONS(1540), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1540), - [anon_sym_o_PLUSe_GT] = ACTIONS(1540), - [anon_sym_e_PLUSo_GT] = ACTIONS(1540), - [anon_sym_err_GT_GT] = ACTIONS(1542), - [anon_sym_out_GT_GT] = ACTIONS(1542), - [anon_sym_e_GT_GT] = ACTIONS(1542), - [anon_sym_o_GT_GT] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1542), - [anon_sym_POUND] = ACTIONS(247), - }, - [1306] = { - [sym_cell_path] = STATE(1371), - [sym_path] = STATE(1135), - [sym_comment] = STATE(1306), - [aux_sym_cell_path_repeat1] = STATE(1078), - [sym__newline] = ACTIONS(1641), - [anon_sym_SEMI] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1645), - [anon_sym_err_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_GT_PIPE] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), - [anon_sym_LBRACE] = ACTIONS(1645), - [anon_sym_RBRACE] = ACTIONS(1645), - [aux_sym_expr_binary_token1] = ACTIONS(1645), - [aux_sym_expr_binary_token2] = ACTIONS(1645), - [aux_sym_expr_binary_token3] = ACTIONS(1645), - [aux_sym_expr_binary_token4] = ACTIONS(1645), - [aux_sym_expr_binary_token5] = ACTIONS(1645), - [aux_sym_expr_binary_token6] = ACTIONS(1645), - [aux_sym_expr_binary_token7] = ACTIONS(1645), - [aux_sym_expr_binary_token8] = ACTIONS(1645), - [aux_sym_expr_binary_token9] = ACTIONS(1645), - [aux_sym_expr_binary_token10] = ACTIONS(1645), - [aux_sym_expr_binary_token11] = ACTIONS(1645), - [aux_sym_expr_binary_token12] = ACTIONS(1645), - [aux_sym_expr_binary_token13] = ACTIONS(1645), - [aux_sym_expr_binary_token14] = ACTIONS(1645), - [aux_sym_expr_binary_token15] = ACTIONS(1645), - [aux_sym_expr_binary_token16] = ACTIONS(1645), - [aux_sym_expr_binary_token17] = ACTIONS(1645), - [aux_sym_expr_binary_token18] = ACTIONS(1645), - [aux_sym_expr_binary_token19] = ACTIONS(1645), - [aux_sym_expr_binary_token20] = ACTIONS(1645), - [aux_sym_expr_binary_token21] = ACTIONS(1645), - [aux_sym_expr_binary_token22] = ACTIONS(1645), - [aux_sym_expr_binary_token23] = ACTIONS(1645), - [aux_sym_expr_binary_token24] = ACTIONS(1645), - [aux_sym_expr_binary_token25] = ACTIONS(1645), - [aux_sym_expr_binary_token26] = ACTIONS(1645), - [aux_sym_expr_binary_token27] = ACTIONS(1645), - [aux_sym_expr_binary_token28] = ACTIONS(1645), - [anon_sym_DOT_DOT2] = ACTIONS(1641), - [anon_sym_DOT] = ACTIONS(3693), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1645), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1645), - [aux_sym_record_entry_token1] = ACTIONS(1645), - [anon_sym_err_GT] = ACTIONS(1641), - [anon_sym_out_GT] = ACTIONS(1641), - [anon_sym_e_GT] = ACTIONS(1641), - [anon_sym_o_GT] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT] = ACTIONS(1641), - [anon_sym_err_GT_GT] = ACTIONS(1645), - [anon_sym_out_GT_GT] = ACTIONS(1645), - [anon_sym_e_GT_GT] = ACTIONS(1645), - [anon_sym_o_GT_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_unquoted_token2] = ACTIONS(1526), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1796), }, - [1307] = { - [sym_comment] = STATE(1307), - [aux_sym_cmd_identifier_token41] = ACTIONS(1540), - [sym__newline] = ACTIONS(1540), - [anon_sym_SEMI] = ACTIONS(1542), - [anon_sym_PIPE] = ACTIONS(1542), - [anon_sym_err_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_GT_PIPE] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1542), - [anon_sym_RPAREN] = ACTIONS(1542), - [anon_sym_LBRACE] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1542), - [anon_sym_DOT_DOT2] = ACTIONS(1540), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1542), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1542), - [aux_sym__immediate_decimal_token1] = ACTIONS(4646), - [aux_sym__immediate_decimal_token2] = ACTIONS(4648), - [sym_filesize_unit] = ACTIONS(1542), - [sym_duration_unit] = ACTIONS(1542), - [anon_sym_err_GT] = ACTIONS(1540), - [anon_sym_out_GT] = ACTIONS(1540), - [anon_sym_e_GT] = ACTIONS(1540), - [anon_sym_o_GT] = ACTIONS(1540), - [anon_sym_err_PLUSout_GT] = ACTIONS(1540), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1540), - [anon_sym_o_PLUSe_GT] = ACTIONS(1540), - [anon_sym_e_PLUSo_GT] = ACTIONS(1540), - [anon_sym_err_GT_GT] = ACTIONS(1542), - [anon_sym_out_GT_GT] = ACTIONS(1542), - [anon_sym_e_GT_GT] = ACTIONS(1542), - [anon_sym_o_GT_GT] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1542), - [anon_sym_POUND] = ACTIONS(247), + [1301] = { + [sym_comment] = STATE(1301), + [ts_builtin_sym_end] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1050), + [anon_sym_false] = ACTIONS(1050), + [anon_sym_null] = ACTIONS(1050), + [aux_sym_cmd_identifier_token38] = ACTIONS(1050), + [aux_sym_cmd_identifier_token39] = ACTIONS(1050), + [aux_sym_cmd_identifier_token40] = ACTIONS(1050), + [sym__newline] = ACTIONS(1050), + [anon_sym_SEMI] = ACTIONS(1050), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_err_GT_PIPE] = ACTIONS(1050), + [anon_sym_out_GT_PIPE] = ACTIONS(1050), + [anon_sym_e_GT_PIPE] = ACTIONS(1050), + [anon_sym_o_GT_PIPE] = ACTIONS(1050), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1050), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1050), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1050), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1050), + [anon_sym_LBRACK] = ACTIONS(1050), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH_DASH] = ACTIONS(1050), + [anon_sym_DASH] = ACTIONS(1048), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_DOT_DOT] = ACTIONS(1048), + [anon_sym_QMARK2] = ACTIONS(4685), + [anon_sym_DOT_DOT2] = ACTIONS(1048), + [anon_sym_DOT] = ACTIONS(1048), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1048), + [anon_sym_DOT_DOT_LT] = ACTIONS(1048), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1050), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1050), + [aux_sym__val_number_decimal_token1] = ACTIONS(1048), + [aux_sym__val_number_decimal_token2] = ACTIONS(1050), + [aux_sym__val_number_decimal_token3] = ACTIONS(1050), + [aux_sym__val_number_decimal_token4] = ACTIONS(1050), + [aux_sym__val_number_token1] = ACTIONS(1050), + [aux_sym__val_number_token2] = ACTIONS(1050), + [aux_sym__val_number_token3] = ACTIONS(1050), + [anon_sym_0b] = ACTIONS(1048), + [anon_sym_0o] = ACTIONS(1048), + [anon_sym_0x] = ACTIONS(1048), + [sym_val_date] = ACTIONS(1050), + [anon_sym_DQUOTE] = ACTIONS(1050), + [sym__str_single_quotes] = ACTIONS(1050), + [sym__str_back_ticks] = ACTIONS(1050), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1050), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1050), + [anon_sym_err_GT] = ACTIONS(1048), + [anon_sym_out_GT] = ACTIONS(1048), + [anon_sym_e_GT] = ACTIONS(1048), + [anon_sym_o_GT] = ACTIONS(1048), + [anon_sym_err_PLUSout_GT] = ACTIONS(1048), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1048), + [anon_sym_o_PLUSe_GT] = ACTIONS(1048), + [anon_sym_e_PLUSo_GT] = ACTIONS(1048), + [anon_sym_err_GT_GT] = ACTIONS(1050), + [anon_sym_out_GT_GT] = ACTIONS(1050), + [anon_sym_e_GT_GT] = ACTIONS(1050), + [anon_sym_o_GT_GT] = ACTIONS(1050), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1050), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1050), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1050), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1050), + [aux_sym_unquoted_token1] = ACTIONS(1048), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1050), }, - [1308] = { - [sym_cell_path] = STATE(1682), - [sym_path] = STATE(1551), - [sym_comment] = STATE(1308), - [aux_sym_cell_path_repeat1] = STATE(1383), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1914), - [aux_sym_cmd_identifier_token38] = ACTIONS(1914), - [aux_sym_cmd_identifier_token39] = ACTIONS(1914), - [aux_sym_cmd_identifier_token40] = ACTIONS(1914), - [sym__newline] = ACTIONS(1914), - [anon_sym_SEMI] = ACTIONS(1914), - [anon_sym_PIPE] = ACTIONS(1914), - [anon_sym_err_GT_PIPE] = ACTIONS(1914), - [anon_sym_out_GT_PIPE] = ACTIONS(1914), - [anon_sym_e_GT_PIPE] = ACTIONS(1914), - [anon_sym_o_GT_PIPE] = ACTIONS(1914), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1914), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1914), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1914), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1914), - [anon_sym_LBRACK] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(1914), - [anon_sym_RPAREN] = ACTIONS(1914), - [anon_sym_DOLLAR] = ACTIONS(1912), - [anon_sym_DASH_DASH] = ACTIONS(1914), - [anon_sym_DASH] = ACTIONS(1912), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_RBRACE] = ACTIONS(1914), - [anon_sym_DOT_DOT] = ACTIONS(1912), - [anon_sym_DOT] = ACTIONS(4596), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), - [anon_sym_DOT_DOT_LT] = ACTIONS(1914), - [aux_sym__val_number_decimal_token1] = ACTIONS(1912), - [aux_sym__val_number_decimal_token2] = ACTIONS(1914), - [aux_sym__val_number_decimal_token3] = ACTIONS(1914), - [aux_sym__val_number_decimal_token4] = ACTIONS(1914), - [aux_sym__val_number_token1] = ACTIONS(1914), - [aux_sym__val_number_token2] = ACTIONS(1914), - [aux_sym__val_number_token3] = ACTIONS(1914), - [anon_sym_0b] = ACTIONS(1912), - [anon_sym_0o] = ACTIONS(1912), - [anon_sym_0x] = ACTIONS(1912), - [sym_val_date] = ACTIONS(1914), - [anon_sym_DQUOTE] = ACTIONS(1914), - [sym__str_single_quotes] = ACTIONS(1914), - [sym__str_back_ticks] = ACTIONS(1914), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1914), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1914), - [anon_sym_err_GT] = ACTIONS(1912), - [anon_sym_out_GT] = ACTIONS(1912), - [anon_sym_e_GT] = ACTIONS(1912), - [anon_sym_o_GT] = ACTIONS(1912), - [anon_sym_err_PLUSout_GT] = ACTIONS(1912), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1912), - [anon_sym_o_PLUSe_GT] = ACTIONS(1912), - [anon_sym_e_PLUSo_GT] = ACTIONS(1912), - [anon_sym_err_GT_GT] = ACTIONS(1914), - [anon_sym_out_GT_GT] = ACTIONS(1914), - [anon_sym_e_GT_GT] = ACTIONS(1914), - [anon_sym_o_GT_GT] = ACTIONS(1914), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1914), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1914), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1914), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1914), - [aux_sym_unquoted_token1] = ACTIONS(1912), - [anon_sym_POUND] = ACTIONS(247), + [1302] = { + [sym_cell_path] = STATE(1637), + [sym_path] = STATE(1538), + [sym_comment] = STATE(1302), + [aux_sym_cell_path_repeat1] = STATE(1342), + [anon_sym_true] = ACTIONS(1995), + [anon_sym_false] = ACTIONS(1995), + [anon_sym_null] = ACTIONS(1995), + [aux_sym_cmd_identifier_token38] = ACTIONS(1995), + [aux_sym_cmd_identifier_token39] = ACTIONS(1995), + [aux_sym_cmd_identifier_token40] = ACTIONS(1995), + [sym__newline] = ACTIONS(1995), + [anon_sym_SEMI] = ACTIONS(1995), + [anon_sym_PIPE] = ACTIONS(1995), + [anon_sym_err_GT_PIPE] = ACTIONS(1995), + [anon_sym_out_GT_PIPE] = ACTIONS(1995), + [anon_sym_e_GT_PIPE] = ACTIONS(1995), + [anon_sym_o_GT_PIPE] = ACTIONS(1995), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1995), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1995), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1995), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1995), + [anon_sym_LBRACK] = ACTIONS(1995), + [anon_sym_LPAREN] = ACTIONS(1995), + [anon_sym_RPAREN] = ACTIONS(1995), + [anon_sym_DOLLAR] = ACTIONS(1993), + [anon_sym_DASH_DASH] = ACTIONS(1995), + [anon_sym_DASH] = ACTIONS(1993), + [anon_sym_LBRACE] = ACTIONS(1995), + [anon_sym_RBRACE] = ACTIONS(1995), + [anon_sym_DOT_DOT] = ACTIONS(1993), + [anon_sym_DOT] = ACTIONS(4679), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1995), + [anon_sym_DOT_DOT_LT] = ACTIONS(1995), + [aux_sym__val_number_decimal_token1] = ACTIONS(1993), + [aux_sym__val_number_decimal_token2] = ACTIONS(1995), + [aux_sym__val_number_decimal_token3] = ACTIONS(1995), + [aux_sym__val_number_decimal_token4] = ACTIONS(1995), + [aux_sym__val_number_token1] = ACTIONS(1995), + [aux_sym__val_number_token2] = ACTIONS(1995), + [aux_sym__val_number_token3] = ACTIONS(1995), + [anon_sym_0b] = ACTIONS(1993), + [anon_sym_0o] = ACTIONS(1993), + [anon_sym_0x] = ACTIONS(1993), + [sym_val_date] = ACTIONS(1995), + [anon_sym_DQUOTE] = ACTIONS(1995), + [sym__str_single_quotes] = ACTIONS(1995), + [sym__str_back_ticks] = ACTIONS(1995), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1995), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1995), + [anon_sym_err_GT] = ACTIONS(1993), + [anon_sym_out_GT] = ACTIONS(1993), + [anon_sym_e_GT] = ACTIONS(1993), + [anon_sym_o_GT] = ACTIONS(1993), + [anon_sym_err_PLUSout_GT] = ACTIONS(1993), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1993), + [anon_sym_o_PLUSe_GT] = ACTIONS(1993), + [anon_sym_e_PLUSo_GT] = ACTIONS(1993), + [anon_sym_err_GT_GT] = ACTIONS(1995), + [anon_sym_out_GT_GT] = ACTIONS(1995), + [anon_sym_e_GT_GT] = ACTIONS(1995), + [anon_sym_o_GT_GT] = ACTIONS(1995), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1995), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1995), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1995), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1995), + [aux_sym_unquoted_token1] = ACTIONS(1993), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1995), }, - [1309] = { - [sym_cell_path] = STATE(1692), - [sym_path] = STATE(1551), - [sym_comment] = STATE(1309), - [aux_sym_cell_path_repeat1] = STATE(1383), - [anon_sym_true] = ACTIONS(1826), - [anon_sym_false] = ACTIONS(1826), - [anon_sym_null] = ACTIONS(1826), - [aux_sym_cmd_identifier_token38] = ACTIONS(1826), - [aux_sym_cmd_identifier_token39] = ACTIONS(1826), - [aux_sym_cmd_identifier_token40] = ACTIONS(1826), - [sym__newline] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(1826), - [anon_sym_PIPE] = ACTIONS(1826), - [anon_sym_err_GT_PIPE] = ACTIONS(1826), - [anon_sym_out_GT_PIPE] = ACTIONS(1826), - [anon_sym_e_GT_PIPE] = ACTIONS(1826), - [anon_sym_o_GT_PIPE] = ACTIONS(1826), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1826), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1826), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1826), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1826), - [anon_sym_LBRACK] = ACTIONS(1826), - [anon_sym_LPAREN] = ACTIONS(1826), - [anon_sym_RPAREN] = ACTIONS(1826), - [anon_sym_DOLLAR] = ACTIONS(1822), - [anon_sym_DASH_DASH] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1826), - [anon_sym_RBRACE] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1822), - [anon_sym_DOT] = ACTIONS(4596), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1826), - [anon_sym_DOT_DOT_LT] = ACTIONS(1826), - [aux_sym__val_number_decimal_token1] = ACTIONS(1822), - [aux_sym__val_number_decimal_token2] = ACTIONS(1826), - [aux_sym__val_number_decimal_token3] = ACTIONS(1826), - [aux_sym__val_number_decimal_token4] = ACTIONS(1826), - [aux_sym__val_number_token1] = ACTIONS(1826), - [aux_sym__val_number_token2] = ACTIONS(1826), - [aux_sym__val_number_token3] = ACTIONS(1826), - [anon_sym_0b] = ACTIONS(1822), - [anon_sym_0o] = ACTIONS(1822), - [anon_sym_0x] = ACTIONS(1822), - [sym_val_date] = ACTIONS(1826), - [anon_sym_DQUOTE] = ACTIONS(1826), - [sym__str_single_quotes] = ACTIONS(1826), - [sym__str_back_ticks] = ACTIONS(1826), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1826), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1826), - [anon_sym_err_GT] = ACTIONS(1822), - [anon_sym_out_GT] = ACTIONS(1822), - [anon_sym_e_GT] = ACTIONS(1822), - [anon_sym_o_GT] = ACTIONS(1822), - [anon_sym_err_PLUSout_GT] = ACTIONS(1822), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1822), - [anon_sym_o_PLUSe_GT] = ACTIONS(1822), - [anon_sym_e_PLUSo_GT] = ACTIONS(1822), - [anon_sym_err_GT_GT] = ACTIONS(1826), - [anon_sym_out_GT_GT] = ACTIONS(1826), - [anon_sym_e_GT_GT] = ACTIONS(1826), - [anon_sym_o_GT_GT] = ACTIONS(1826), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1826), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1826), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1826), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1826), - [aux_sym_unquoted_token1] = ACTIONS(1822), - [anon_sym_POUND] = ACTIONS(247), + [1303] = { + [sym_cell_path] = STATE(1644), + [sym_path] = STATE(1538), + [sym_comment] = STATE(1303), + [aux_sym_cell_path_repeat1] = STATE(1342), + [anon_sym_true] = ACTIONS(1999), + [anon_sym_false] = ACTIONS(1999), + [anon_sym_null] = ACTIONS(1999), + [aux_sym_cmd_identifier_token38] = ACTIONS(1999), + [aux_sym_cmd_identifier_token39] = ACTIONS(1999), + [aux_sym_cmd_identifier_token40] = ACTIONS(1999), + [sym__newline] = ACTIONS(1999), + [anon_sym_SEMI] = ACTIONS(1999), + [anon_sym_PIPE] = ACTIONS(1999), + [anon_sym_err_GT_PIPE] = ACTIONS(1999), + [anon_sym_out_GT_PIPE] = ACTIONS(1999), + [anon_sym_e_GT_PIPE] = ACTIONS(1999), + [anon_sym_o_GT_PIPE] = ACTIONS(1999), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1999), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1999), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1999), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1999), + [anon_sym_LBRACK] = ACTIONS(1999), + [anon_sym_LPAREN] = ACTIONS(1999), + [anon_sym_RPAREN] = ACTIONS(1999), + [anon_sym_DOLLAR] = ACTIONS(1997), + [anon_sym_DASH_DASH] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(1997), + [anon_sym_LBRACE] = ACTIONS(1999), + [anon_sym_RBRACE] = ACTIONS(1999), + [anon_sym_DOT_DOT] = ACTIONS(1997), + [anon_sym_DOT] = ACTIONS(4679), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1999), + [anon_sym_DOT_DOT_LT] = ACTIONS(1999), + [aux_sym__val_number_decimal_token1] = ACTIONS(1997), + [aux_sym__val_number_decimal_token2] = ACTIONS(1999), + [aux_sym__val_number_decimal_token3] = ACTIONS(1999), + [aux_sym__val_number_decimal_token4] = ACTIONS(1999), + [aux_sym__val_number_token1] = ACTIONS(1999), + [aux_sym__val_number_token2] = ACTIONS(1999), + [aux_sym__val_number_token3] = ACTIONS(1999), + [anon_sym_0b] = ACTIONS(1997), + [anon_sym_0o] = ACTIONS(1997), + [anon_sym_0x] = ACTIONS(1997), + [sym_val_date] = ACTIONS(1999), + [anon_sym_DQUOTE] = ACTIONS(1999), + [sym__str_single_quotes] = ACTIONS(1999), + [sym__str_back_ticks] = ACTIONS(1999), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1999), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1999), + [anon_sym_err_GT] = ACTIONS(1997), + [anon_sym_out_GT] = ACTIONS(1997), + [anon_sym_e_GT] = ACTIONS(1997), + [anon_sym_o_GT] = ACTIONS(1997), + [anon_sym_err_PLUSout_GT] = ACTIONS(1997), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1997), + [anon_sym_o_PLUSe_GT] = ACTIONS(1997), + [anon_sym_e_PLUSo_GT] = ACTIONS(1997), + [anon_sym_err_GT_GT] = ACTIONS(1999), + [anon_sym_out_GT_GT] = ACTIONS(1999), + [anon_sym_e_GT_GT] = ACTIONS(1999), + [anon_sym_o_GT_GT] = ACTIONS(1999), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1999), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1999), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1999), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1999), + [aux_sym_unquoted_token1] = ACTIONS(1997), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1999), + }, + [1304] = { + [sym_cell_path] = STATE(1648), + [sym_path] = STATE(1538), + [sym_comment] = STATE(1304), + [aux_sym_cell_path_repeat1] = STATE(1342), + [anon_sym_true] = ACTIONS(2003), + [anon_sym_false] = ACTIONS(2003), + [anon_sym_null] = ACTIONS(2003), + [aux_sym_cmd_identifier_token38] = ACTIONS(2003), + [aux_sym_cmd_identifier_token39] = ACTIONS(2003), + [aux_sym_cmd_identifier_token40] = ACTIONS(2003), + [sym__newline] = ACTIONS(2003), + [anon_sym_SEMI] = ACTIONS(2003), + [anon_sym_PIPE] = ACTIONS(2003), + [anon_sym_err_GT_PIPE] = ACTIONS(2003), + [anon_sym_out_GT_PIPE] = ACTIONS(2003), + [anon_sym_e_GT_PIPE] = ACTIONS(2003), + [anon_sym_o_GT_PIPE] = ACTIONS(2003), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2003), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2003), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2003), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2003), + [anon_sym_LBRACK] = ACTIONS(2003), + [anon_sym_LPAREN] = ACTIONS(2003), + [anon_sym_RPAREN] = ACTIONS(2003), + [anon_sym_DOLLAR] = ACTIONS(2001), + [anon_sym_DASH_DASH] = ACTIONS(2003), + [anon_sym_DASH] = ACTIONS(2001), + [anon_sym_LBRACE] = ACTIONS(2003), + [anon_sym_RBRACE] = ACTIONS(2003), + [anon_sym_DOT_DOT] = ACTIONS(2001), + [anon_sym_DOT] = ACTIONS(4679), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2003), + [anon_sym_DOT_DOT_LT] = ACTIONS(2003), + [aux_sym__val_number_decimal_token1] = ACTIONS(2001), + [aux_sym__val_number_decimal_token2] = ACTIONS(2003), + [aux_sym__val_number_decimal_token3] = ACTIONS(2003), + [aux_sym__val_number_decimal_token4] = ACTIONS(2003), + [aux_sym__val_number_token1] = ACTIONS(2003), + [aux_sym__val_number_token2] = ACTIONS(2003), + [aux_sym__val_number_token3] = ACTIONS(2003), + [anon_sym_0b] = ACTIONS(2001), + [anon_sym_0o] = ACTIONS(2001), + [anon_sym_0x] = ACTIONS(2001), + [sym_val_date] = ACTIONS(2003), + [anon_sym_DQUOTE] = ACTIONS(2003), + [sym__str_single_quotes] = ACTIONS(2003), + [sym__str_back_ticks] = ACTIONS(2003), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2003), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2003), + [anon_sym_err_GT] = ACTIONS(2001), + [anon_sym_out_GT] = ACTIONS(2001), + [anon_sym_e_GT] = ACTIONS(2001), + [anon_sym_o_GT] = ACTIONS(2001), + [anon_sym_err_PLUSout_GT] = ACTIONS(2001), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2001), + [anon_sym_o_PLUSe_GT] = ACTIONS(2001), + [anon_sym_e_PLUSo_GT] = ACTIONS(2001), + [anon_sym_err_GT_GT] = ACTIONS(2003), + [anon_sym_out_GT_GT] = ACTIONS(2003), + [anon_sym_e_GT_GT] = ACTIONS(2003), + [anon_sym_o_GT_GT] = ACTIONS(2003), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2003), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2003), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2003), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2003), + [aux_sym_unquoted_token1] = ACTIONS(2001), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2003), + }, + [1305] = { + [sym_cell_path] = STATE(1656), + [sym_path] = STATE(1538), + [sym_comment] = STATE(1305), + [aux_sym_cell_path_repeat1] = STATE(1342), + [anon_sym_true] = ACTIONS(2007), + [anon_sym_false] = ACTIONS(2007), + [anon_sym_null] = ACTIONS(2007), + [aux_sym_cmd_identifier_token38] = ACTIONS(2007), + [aux_sym_cmd_identifier_token39] = ACTIONS(2007), + [aux_sym_cmd_identifier_token40] = ACTIONS(2007), + [sym__newline] = ACTIONS(2007), + [anon_sym_SEMI] = ACTIONS(2007), + [anon_sym_PIPE] = ACTIONS(2007), + [anon_sym_err_GT_PIPE] = ACTIONS(2007), + [anon_sym_out_GT_PIPE] = ACTIONS(2007), + [anon_sym_e_GT_PIPE] = ACTIONS(2007), + [anon_sym_o_GT_PIPE] = ACTIONS(2007), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2007), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2007), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2007), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2007), + [anon_sym_LBRACK] = ACTIONS(2007), + [anon_sym_LPAREN] = ACTIONS(2007), + [anon_sym_RPAREN] = ACTIONS(2007), + [anon_sym_DOLLAR] = ACTIONS(2005), + [anon_sym_DASH_DASH] = ACTIONS(2007), + [anon_sym_DASH] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(2007), + [anon_sym_RBRACE] = ACTIONS(2007), + [anon_sym_DOT_DOT] = ACTIONS(2005), + [anon_sym_DOT] = ACTIONS(4679), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2007), + [anon_sym_DOT_DOT_LT] = ACTIONS(2007), + [aux_sym__val_number_decimal_token1] = ACTIONS(2005), + [aux_sym__val_number_decimal_token2] = ACTIONS(2007), + [aux_sym__val_number_decimal_token3] = ACTIONS(2007), + [aux_sym__val_number_decimal_token4] = ACTIONS(2007), + [aux_sym__val_number_token1] = ACTIONS(2007), + [aux_sym__val_number_token2] = ACTIONS(2007), + [aux_sym__val_number_token3] = ACTIONS(2007), + [anon_sym_0b] = ACTIONS(2005), + [anon_sym_0o] = ACTIONS(2005), + [anon_sym_0x] = ACTIONS(2005), + [sym_val_date] = ACTIONS(2007), + [anon_sym_DQUOTE] = ACTIONS(2007), + [sym__str_single_quotes] = ACTIONS(2007), + [sym__str_back_ticks] = ACTIONS(2007), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2007), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2007), + [anon_sym_err_GT] = ACTIONS(2005), + [anon_sym_out_GT] = ACTIONS(2005), + [anon_sym_e_GT] = ACTIONS(2005), + [anon_sym_o_GT] = ACTIONS(2005), + [anon_sym_err_PLUSout_GT] = ACTIONS(2005), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2005), + [anon_sym_o_PLUSe_GT] = ACTIONS(2005), + [anon_sym_e_PLUSo_GT] = ACTIONS(2005), + [anon_sym_err_GT_GT] = ACTIONS(2007), + [anon_sym_out_GT_GT] = ACTIONS(2007), + [anon_sym_e_GT_GT] = ACTIONS(2007), + [anon_sym_o_GT_GT] = ACTIONS(2007), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2007), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2007), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2007), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2007), + [aux_sym_unquoted_token1] = ACTIONS(2005), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2007), + }, + [1306] = { + [sym_cell_path] = STATE(1689), + [sym_path] = STATE(1538), + [sym_comment] = STATE(1306), + [aux_sym_cell_path_repeat1] = STATE(1342), + [anon_sym_true] = ACTIONS(2011), + [anon_sym_false] = ACTIONS(2011), + [anon_sym_null] = ACTIONS(2011), + [aux_sym_cmd_identifier_token38] = ACTIONS(2011), + [aux_sym_cmd_identifier_token39] = ACTIONS(2011), + [aux_sym_cmd_identifier_token40] = ACTIONS(2011), + [sym__newline] = ACTIONS(2011), + [anon_sym_SEMI] = ACTIONS(2011), + [anon_sym_PIPE] = ACTIONS(2011), + [anon_sym_err_GT_PIPE] = ACTIONS(2011), + [anon_sym_out_GT_PIPE] = ACTIONS(2011), + [anon_sym_e_GT_PIPE] = ACTIONS(2011), + [anon_sym_o_GT_PIPE] = ACTIONS(2011), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2011), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2011), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2011), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2011), + [anon_sym_LBRACK] = ACTIONS(2011), + [anon_sym_LPAREN] = ACTIONS(2011), + [anon_sym_RPAREN] = ACTIONS(2011), + [anon_sym_DOLLAR] = ACTIONS(2009), + [anon_sym_DASH_DASH] = ACTIONS(2011), + [anon_sym_DASH] = ACTIONS(2009), + [anon_sym_LBRACE] = ACTIONS(2011), + [anon_sym_RBRACE] = ACTIONS(2011), + [anon_sym_DOT_DOT] = ACTIONS(2009), + [anon_sym_DOT] = ACTIONS(4679), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2011), + [anon_sym_DOT_DOT_LT] = ACTIONS(2011), + [aux_sym__val_number_decimal_token1] = ACTIONS(2009), + [aux_sym__val_number_decimal_token2] = ACTIONS(2011), + [aux_sym__val_number_decimal_token3] = ACTIONS(2011), + [aux_sym__val_number_decimal_token4] = ACTIONS(2011), + [aux_sym__val_number_token1] = ACTIONS(2011), + [aux_sym__val_number_token2] = ACTIONS(2011), + [aux_sym__val_number_token3] = ACTIONS(2011), + [anon_sym_0b] = ACTIONS(2009), + [anon_sym_0o] = ACTIONS(2009), + [anon_sym_0x] = ACTIONS(2009), + [sym_val_date] = ACTIONS(2011), + [anon_sym_DQUOTE] = ACTIONS(2011), + [sym__str_single_quotes] = ACTIONS(2011), + [sym__str_back_ticks] = ACTIONS(2011), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2011), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2011), + [anon_sym_err_GT] = ACTIONS(2009), + [anon_sym_out_GT] = ACTIONS(2009), + [anon_sym_e_GT] = ACTIONS(2009), + [anon_sym_o_GT] = ACTIONS(2009), + [anon_sym_err_PLUSout_GT] = ACTIONS(2009), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2009), + [anon_sym_o_PLUSe_GT] = ACTIONS(2009), + [anon_sym_e_PLUSo_GT] = ACTIONS(2009), + [anon_sym_err_GT_GT] = ACTIONS(2011), + [anon_sym_out_GT_GT] = ACTIONS(2011), + [anon_sym_e_GT_GT] = ACTIONS(2011), + [anon_sym_o_GT_GT] = ACTIONS(2011), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2011), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2011), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2011), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2011), + [aux_sym_unquoted_token1] = ACTIONS(2009), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2011), + }, + [1307] = { + [sym_cell_path] = STATE(1675), + [sym_path] = STATE(1538), + [sym_comment] = STATE(1307), + [aux_sym_cell_path_repeat1] = STATE(1342), + [anon_sym_true] = ACTIONS(2015), + [anon_sym_false] = ACTIONS(2015), + [anon_sym_null] = ACTIONS(2015), + [aux_sym_cmd_identifier_token38] = ACTIONS(2015), + [aux_sym_cmd_identifier_token39] = ACTIONS(2015), + [aux_sym_cmd_identifier_token40] = ACTIONS(2015), + [sym__newline] = ACTIONS(2015), + [anon_sym_SEMI] = ACTIONS(2015), + [anon_sym_PIPE] = ACTIONS(2015), + [anon_sym_err_GT_PIPE] = ACTIONS(2015), + [anon_sym_out_GT_PIPE] = ACTIONS(2015), + [anon_sym_e_GT_PIPE] = ACTIONS(2015), + [anon_sym_o_GT_PIPE] = ACTIONS(2015), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2015), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2015), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2015), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2015), + [anon_sym_LBRACK] = ACTIONS(2015), + [anon_sym_LPAREN] = ACTIONS(2015), + [anon_sym_RPAREN] = ACTIONS(2015), + [anon_sym_DOLLAR] = ACTIONS(2013), + [anon_sym_DASH_DASH] = ACTIONS(2015), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_LBRACE] = ACTIONS(2015), + [anon_sym_RBRACE] = ACTIONS(2015), + [anon_sym_DOT_DOT] = ACTIONS(2013), + [anon_sym_DOT] = ACTIONS(4679), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2015), + [anon_sym_DOT_DOT_LT] = ACTIONS(2015), + [aux_sym__val_number_decimal_token1] = ACTIONS(2013), + [aux_sym__val_number_decimal_token2] = ACTIONS(2015), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), + [aux_sym__val_number_token1] = ACTIONS(2015), + [aux_sym__val_number_token2] = ACTIONS(2015), + [aux_sym__val_number_token3] = ACTIONS(2015), + [anon_sym_0b] = ACTIONS(2013), + [anon_sym_0o] = ACTIONS(2013), + [anon_sym_0x] = ACTIONS(2013), + [sym_val_date] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2015), + [sym__str_single_quotes] = ACTIONS(2015), + [sym__str_back_ticks] = ACTIONS(2015), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2015), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2015), + [anon_sym_err_GT] = ACTIONS(2013), + [anon_sym_out_GT] = ACTIONS(2013), + [anon_sym_e_GT] = ACTIONS(2013), + [anon_sym_o_GT] = ACTIONS(2013), + [anon_sym_err_PLUSout_GT] = ACTIONS(2013), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2013), + [anon_sym_o_PLUSe_GT] = ACTIONS(2013), + [anon_sym_e_PLUSo_GT] = ACTIONS(2013), + [anon_sym_err_GT_GT] = ACTIONS(2015), + [anon_sym_out_GT_GT] = ACTIONS(2015), + [anon_sym_e_GT_GT] = ACTIONS(2015), + [anon_sym_o_GT_GT] = ACTIONS(2015), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2015), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2015), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2015), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2015), + [aux_sym_unquoted_token1] = ACTIONS(2013), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2015), + }, + [1308] = { + [sym_cell_path] = STATE(1612), + [sym_path] = STATE(1538), + [sym_comment] = STATE(1308), + [aux_sym_cell_path_repeat1] = STATE(1342), + [anon_sym_true] = ACTIONS(2019), + [anon_sym_false] = ACTIONS(2019), + [anon_sym_null] = ACTIONS(2019), + [aux_sym_cmd_identifier_token38] = ACTIONS(2019), + [aux_sym_cmd_identifier_token39] = ACTIONS(2019), + [aux_sym_cmd_identifier_token40] = ACTIONS(2019), + [sym__newline] = ACTIONS(2019), + [anon_sym_SEMI] = ACTIONS(2019), + [anon_sym_PIPE] = ACTIONS(2019), + [anon_sym_err_GT_PIPE] = ACTIONS(2019), + [anon_sym_out_GT_PIPE] = ACTIONS(2019), + [anon_sym_e_GT_PIPE] = ACTIONS(2019), + [anon_sym_o_GT_PIPE] = ACTIONS(2019), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2019), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2019), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2019), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2019), + [anon_sym_LBRACK] = ACTIONS(2019), + [anon_sym_LPAREN] = ACTIONS(2019), + [anon_sym_RPAREN] = ACTIONS(2019), + [anon_sym_DOLLAR] = ACTIONS(2017), + [anon_sym_DASH_DASH] = ACTIONS(2019), + [anon_sym_DASH] = ACTIONS(2017), + [anon_sym_LBRACE] = ACTIONS(2019), + [anon_sym_RBRACE] = ACTIONS(2019), + [anon_sym_DOT_DOT] = ACTIONS(2017), + [anon_sym_DOT] = ACTIONS(4679), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2019), + [anon_sym_DOT_DOT_LT] = ACTIONS(2019), + [aux_sym__val_number_decimal_token1] = ACTIONS(2017), + [aux_sym__val_number_decimal_token2] = ACTIONS(2019), + [aux_sym__val_number_decimal_token3] = ACTIONS(2019), + [aux_sym__val_number_decimal_token4] = ACTIONS(2019), + [aux_sym__val_number_token1] = ACTIONS(2019), + [aux_sym__val_number_token2] = ACTIONS(2019), + [aux_sym__val_number_token3] = ACTIONS(2019), + [anon_sym_0b] = ACTIONS(2017), + [anon_sym_0o] = ACTIONS(2017), + [anon_sym_0x] = ACTIONS(2017), + [sym_val_date] = ACTIONS(2019), + [anon_sym_DQUOTE] = ACTIONS(2019), + [sym__str_single_quotes] = ACTIONS(2019), + [sym__str_back_ticks] = ACTIONS(2019), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2019), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2019), + [anon_sym_err_GT] = ACTIONS(2017), + [anon_sym_out_GT] = ACTIONS(2017), + [anon_sym_e_GT] = ACTIONS(2017), + [anon_sym_o_GT] = ACTIONS(2017), + [anon_sym_err_PLUSout_GT] = ACTIONS(2017), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2017), + [anon_sym_o_PLUSe_GT] = ACTIONS(2017), + [anon_sym_e_PLUSo_GT] = ACTIONS(2017), + [anon_sym_err_GT_GT] = ACTIONS(2019), + [anon_sym_out_GT_GT] = ACTIONS(2019), + [anon_sym_e_GT_GT] = ACTIONS(2019), + [anon_sym_o_GT_GT] = ACTIONS(2019), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2019), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2019), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2019), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2019), + [aux_sym_unquoted_token1] = ACTIONS(2017), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2019), + }, + [1309] = { + [sym_cell_path] = STATE(1622), + [sym_path] = STATE(1538), + [sym_comment] = STATE(1309), + [aux_sym_cell_path_repeat1] = STATE(1342), + [anon_sym_true] = ACTIONS(2023), + [anon_sym_false] = ACTIONS(2023), + [anon_sym_null] = ACTIONS(2023), + [aux_sym_cmd_identifier_token38] = ACTIONS(2023), + [aux_sym_cmd_identifier_token39] = ACTIONS(2023), + [aux_sym_cmd_identifier_token40] = ACTIONS(2023), + [sym__newline] = ACTIONS(2023), + [anon_sym_SEMI] = ACTIONS(2023), + [anon_sym_PIPE] = ACTIONS(2023), + [anon_sym_err_GT_PIPE] = ACTIONS(2023), + [anon_sym_out_GT_PIPE] = ACTIONS(2023), + [anon_sym_e_GT_PIPE] = ACTIONS(2023), + [anon_sym_o_GT_PIPE] = ACTIONS(2023), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2023), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2023), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2023), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(2023), + [anon_sym_RPAREN] = ACTIONS(2023), + [anon_sym_DOLLAR] = ACTIONS(2021), + [anon_sym_DASH_DASH] = ACTIONS(2023), + [anon_sym_DASH] = ACTIONS(2021), + [anon_sym_LBRACE] = ACTIONS(2023), + [anon_sym_RBRACE] = ACTIONS(2023), + [anon_sym_DOT_DOT] = ACTIONS(2021), + [anon_sym_DOT] = ACTIONS(4679), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2023), + [anon_sym_DOT_DOT_LT] = ACTIONS(2023), + [aux_sym__val_number_decimal_token1] = ACTIONS(2021), + [aux_sym__val_number_decimal_token2] = ACTIONS(2023), + [aux_sym__val_number_decimal_token3] = ACTIONS(2023), + [aux_sym__val_number_decimal_token4] = ACTIONS(2023), + [aux_sym__val_number_token1] = ACTIONS(2023), + [aux_sym__val_number_token2] = ACTIONS(2023), + [aux_sym__val_number_token3] = ACTIONS(2023), + [anon_sym_0b] = ACTIONS(2021), + [anon_sym_0o] = ACTIONS(2021), + [anon_sym_0x] = ACTIONS(2021), + [sym_val_date] = ACTIONS(2023), + [anon_sym_DQUOTE] = ACTIONS(2023), + [sym__str_single_quotes] = ACTIONS(2023), + [sym__str_back_ticks] = ACTIONS(2023), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2023), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2023), + [anon_sym_err_GT] = ACTIONS(2021), + [anon_sym_out_GT] = ACTIONS(2021), + [anon_sym_e_GT] = ACTIONS(2021), + [anon_sym_o_GT] = ACTIONS(2021), + [anon_sym_err_PLUSout_GT] = ACTIONS(2021), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2021), + [anon_sym_o_PLUSe_GT] = ACTIONS(2021), + [anon_sym_e_PLUSo_GT] = ACTIONS(2021), + [anon_sym_err_GT_GT] = ACTIONS(2023), + [anon_sym_out_GT_GT] = ACTIONS(2023), + [anon_sym_e_GT_GT] = ACTIONS(2023), + [anon_sym_o_GT_GT] = ACTIONS(2023), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2023), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2023), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2023), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2023), + [aux_sym_unquoted_token1] = ACTIONS(2021), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2023), }, [1310] = { - [sym_cell_path] = STATE(1699), - [sym_path] = STATE(1551), + [sym_cell_path] = STATE(1685), + [sym_path] = STATE(1538), [sym_comment] = STATE(1310), - [aux_sym_cell_path_repeat1] = STATE(1383), - [anon_sym_true] = ACTIONS(1838), - [anon_sym_false] = ACTIONS(1838), - [anon_sym_null] = ACTIONS(1838), - [aux_sym_cmd_identifier_token38] = ACTIONS(1838), - [aux_sym_cmd_identifier_token39] = ACTIONS(1838), - [aux_sym_cmd_identifier_token40] = ACTIONS(1838), - [sym__newline] = ACTIONS(1838), - [anon_sym_SEMI] = ACTIONS(1838), - [anon_sym_PIPE] = ACTIONS(1838), - [anon_sym_err_GT_PIPE] = ACTIONS(1838), - [anon_sym_out_GT_PIPE] = ACTIONS(1838), - [anon_sym_e_GT_PIPE] = ACTIONS(1838), - [anon_sym_o_GT_PIPE] = ACTIONS(1838), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1838), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1838), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1838), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1838), - [anon_sym_LBRACK] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(1838), - [anon_sym_RPAREN] = ACTIONS(1838), - [anon_sym_DOLLAR] = ACTIONS(1836), - [anon_sym_DASH_DASH] = ACTIONS(1838), - [anon_sym_DASH] = ACTIONS(1836), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_RBRACE] = ACTIONS(1838), - [anon_sym_DOT_DOT] = ACTIONS(1836), - [anon_sym_DOT] = ACTIONS(4596), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1838), - [anon_sym_DOT_DOT_LT] = ACTIONS(1838), - [aux_sym__val_number_decimal_token1] = ACTIONS(1836), - [aux_sym__val_number_decimal_token2] = ACTIONS(1838), - [aux_sym__val_number_decimal_token3] = ACTIONS(1838), - [aux_sym__val_number_decimal_token4] = ACTIONS(1838), - [aux_sym__val_number_token1] = ACTIONS(1838), - [aux_sym__val_number_token2] = ACTIONS(1838), - [aux_sym__val_number_token3] = ACTIONS(1838), - [anon_sym_0b] = ACTIONS(1836), - [anon_sym_0o] = ACTIONS(1836), - [anon_sym_0x] = ACTIONS(1836), - [sym_val_date] = ACTIONS(1838), - [anon_sym_DQUOTE] = ACTIONS(1838), - [sym__str_single_quotes] = ACTIONS(1838), - [sym__str_back_ticks] = ACTIONS(1838), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1838), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1838), - [anon_sym_err_GT] = ACTIONS(1836), - [anon_sym_out_GT] = ACTIONS(1836), - [anon_sym_e_GT] = ACTIONS(1836), - [anon_sym_o_GT] = ACTIONS(1836), - [anon_sym_err_PLUSout_GT] = ACTIONS(1836), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1836), - [anon_sym_o_PLUSe_GT] = ACTIONS(1836), - [anon_sym_e_PLUSo_GT] = ACTIONS(1836), - [anon_sym_err_GT_GT] = ACTIONS(1838), - [anon_sym_out_GT_GT] = ACTIONS(1838), - [anon_sym_e_GT_GT] = ACTIONS(1838), - [anon_sym_o_GT_GT] = ACTIONS(1838), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1838), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1838), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1838), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1838), - [aux_sym_unquoted_token1] = ACTIONS(1836), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(1342), + [anon_sym_true] = ACTIONS(2045), + [anon_sym_false] = ACTIONS(2045), + [anon_sym_null] = ACTIONS(2045), + [aux_sym_cmd_identifier_token38] = ACTIONS(2045), + [aux_sym_cmd_identifier_token39] = ACTIONS(2045), + [aux_sym_cmd_identifier_token40] = ACTIONS(2045), + [sym__newline] = ACTIONS(2045), + [anon_sym_SEMI] = ACTIONS(2045), + [anon_sym_PIPE] = ACTIONS(2045), + [anon_sym_err_GT_PIPE] = ACTIONS(2045), + [anon_sym_out_GT_PIPE] = ACTIONS(2045), + [anon_sym_e_GT_PIPE] = ACTIONS(2045), + [anon_sym_o_GT_PIPE] = ACTIONS(2045), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2045), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2045), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2045), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2045), + [anon_sym_LBRACK] = ACTIONS(2045), + [anon_sym_LPAREN] = ACTIONS(2045), + [anon_sym_RPAREN] = ACTIONS(2045), + [anon_sym_DOLLAR] = ACTIONS(2043), + [anon_sym_DASH_DASH] = ACTIONS(2045), + [anon_sym_DASH] = ACTIONS(2043), + [anon_sym_LBRACE] = ACTIONS(2045), + [anon_sym_RBRACE] = ACTIONS(2045), + [anon_sym_DOT_DOT] = ACTIONS(2043), + [anon_sym_DOT] = ACTIONS(4679), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2045), + [anon_sym_DOT_DOT_LT] = ACTIONS(2045), + [aux_sym__val_number_decimal_token1] = ACTIONS(2043), + [aux_sym__val_number_decimal_token2] = ACTIONS(2045), + [aux_sym__val_number_decimal_token3] = ACTIONS(2045), + [aux_sym__val_number_decimal_token4] = ACTIONS(2045), + [aux_sym__val_number_token1] = ACTIONS(2045), + [aux_sym__val_number_token2] = ACTIONS(2045), + [aux_sym__val_number_token3] = ACTIONS(2045), + [anon_sym_0b] = ACTIONS(2043), + [anon_sym_0o] = ACTIONS(2043), + [anon_sym_0x] = ACTIONS(2043), + [sym_val_date] = ACTIONS(2045), + [anon_sym_DQUOTE] = ACTIONS(2045), + [sym__str_single_quotes] = ACTIONS(2045), + [sym__str_back_ticks] = ACTIONS(2045), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2045), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2045), + [anon_sym_err_GT] = ACTIONS(2043), + [anon_sym_out_GT] = ACTIONS(2043), + [anon_sym_e_GT] = ACTIONS(2043), + [anon_sym_o_GT] = ACTIONS(2043), + [anon_sym_err_PLUSout_GT] = ACTIONS(2043), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2043), + [anon_sym_o_PLUSe_GT] = ACTIONS(2043), + [anon_sym_e_PLUSo_GT] = ACTIONS(2043), + [anon_sym_err_GT_GT] = ACTIONS(2045), + [anon_sym_out_GT_GT] = ACTIONS(2045), + [anon_sym_e_GT_GT] = ACTIONS(2045), + [anon_sym_o_GT_GT] = ACTIONS(2045), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2045), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2045), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2045), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2045), + [aux_sym_unquoted_token1] = ACTIONS(2043), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2045), }, [1311] = { - [sym_cell_path] = STATE(1702), - [sym_path] = STATE(1551), + [sym_cell_path] = STATE(1695), + [sym_path] = STATE(1538), [sym_comment] = STATE(1311), - [aux_sym_cell_path_repeat1] = STATE(1383), - [anon_sym_true] = ACTIONS(1842), - [anon_sym_false] = ACTIONS(1842), - [anon_sym_null] = ACTIONS(1842), - [aux_sym_cmd_identifier_token38] = ACTIONS(1842), - [aux_sym_cmd_identifier_token39] = ACTIONS(1842), - [aux_sym_cmd_identifier_token40] = ACTIONS(1842), - [sym__newline] = ACTIONS(1842), - [anon_sym_SEMI] = ACTIONS(1842), - [anon_sym_PIPE] = ACTIONS(1842), - [anon_sym_err_GT_PIPE] = ACTIONS(1842), - [anon_sym_out_GT_PIPE] = ACTIONS(1842), - [anon_sym_e_GT_PIPE] = ACTIONS(1842), - [anon_sym_o_GT_PIPE] = ACTIONS(1842), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1842), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1842), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1842), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1842), - [anon_sym_LBRACK] = ACTIONS(1842), - [anon_sym_LPAREN] = ACTIONS(1842), - [anon_sym_RPAREN] = ACTIONS(1842), - [anon_sym_DOLLAR] = ACTIONS(1840), - [anon_sym_DASH_DASH] = ACTIONS(1842), - [anon_sym_DASH] = ACTIONS(1840), - [anon_sym_LBRACE] = ACTIONS(1842), - [anon_sym_RBRACE] = ACTIONS(1842), - [anon_sym_DOT_DOT] = ACTIONS(1840), - [anon_sym_DOT] = ACTIONS(4596), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1842), - [anon_sym_DOT_DOT_LT] = ACTIONS(1842), - [aux_sym__val_number_decimal_token1] = ACTIONS(1840), - [aux_sym__val_number_decimal_token2] = ACTIONS(1842), - [aux_sym__val_number_decimal_token3] = ACTIONS(1842), - [aux_sym__val_number_decimal_token4] = ACTIONS(1842), - [aux_sym__val_number_token1] = ACTIONS(1842), - [aux_sym__val_number_token2] = ACTIONS(1842), - [aux_sym__val_number_token3] = ACTIONS(1842), - [anon_sym_0b] = ACTIONS(1840), - [anon_sym_0o] = ACTIONS(1840), - [anon_sym_0x] = ACTIONS(1840), - [sym_val_date] = ACTIONS(1842), - [anon_sym_DQUOTE] = ACTIONS(1842), - [sym__str_single_quotes] = ACTIONS(1842), - [sym__str_back_ticks] = ACTIONS(1842), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1842), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1842), - [anon_sym_err_GT] = ACTIONS(1840), - [anon_sym_out_GT] = ACTIONS(1840), - [anon_sym_e_GT] = ACTIONS(1840), - [anon_sym_o_GT] = ACTIONS(1840), - [anon_sym_err_PLUSout_GT] = ACTIONS(1840), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1840), - [anon_sym_o_PLUSe_GT] = ACTIONS(1840), - [anon_sym_e_PLUSo_GT] = ACTIONS(1840), - [anon_sym_err_GT_GT] = ACTIONS(1842), - [anon_sym_out_GT_GT] = ACTIONS(1842), - [anon_sym_e_GT_GT] = ACTIONS(1842), - [anon_sym_o_GT_GT] = ACTIONS(1842), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1842), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1842), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1842), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1842), - [aux_sym_unquoted_token1] = ACTIONS(1840), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(1342), + [anon_sym_true] = ACTIONS(2049), + [anon_sym_false] = ACTIONS(2049), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token38] = ACTIONS(2049), + [aux_sym_cmd_identifier_token39] = ACTIONS(2049), + [aux_sym_cmd_identifier_token40] = ACTIONS(2049), + [sym__newline] = ACTIONS(2049), + [anon_sym_SEMI] = ACTIONS(2049), + [anon_sym_PIPE] = ACTIONS(2049), + [anon_sym_err_GT_PIPE] = ACTIONS(2049), + [anon_sym_out_GT_PIPE] = ACTIONS(2049), + [anon_sym_e_GT_PIPE] = ACTIONS(2049), + [anon_sym_o_GT_PIPE] = ACTIONS(2049), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2049), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2049), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2049), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2049), + [anon_sym_LBRACK] = ACTIONS(2049), + [anon_sym_LPAREN] = ACTIONS(2049), + [anon_sym_RPAREN] = ACTIONS(2049), + [anon_sym_DOLLAR] = ACTIONS(2047), + [anon_sym_DASH_DASH] = ACTIONS(2049), + [anon_sym_DASH] = ACTIONS(2047), + [anon_sym_LBRACE] = ACTIONS(2049), + [anon_sym_RBRACE] = ACTIONS(2049), + [anon_sym_DOT_DOT] = ACTIONS(2047), + [anon_sym_DOT] = ACTIONS(4679), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2049), + [anon_sym_DOT_DOT_LT] = ACTIONS(2049), + [aux_sym__val_number_decimal_token1] = ACTIONS(2047), + [aux_sym__val_number_decimal_token2] = ACTIONS(2049), + [aux_sym__val_number_decimal_token3] = ACTIONS(2049), + [aux_sym__val_number_decimal_token4] = ACTIONS(2049), + [aux_sym__val_number_token1] = ACTIONS(2049), + [aux_sym__val_number_token2] = ACTIONS(2049), + [aux_sym__val_number_token3] = ACTIONS(2049), + [anon_sym_0b] = ACTIONS(2047), + [anon_sym_0o] = ACTIONS(2047), + [anon_sym_0x] = ACTIONS(2047), + [sym_val_date] = ACTIONS(2049), + [anon_sym_DQUOTE] = ACTIONS(2049), + [sym__str_single_quotes] = ACTIONS(2049), + [sym__str_back_ticks] = ACTIONS(2049), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2049), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2049), + [anon_sym_err_GT] = ACTIONS(2047), + [anon_sym_out_GT] = ACTIONS(2047), + [anon_sym_e_GT] = ACTIONS(2047), + [anon_sym_o_GT] = ACTIONS(2047), + [anon_sym_err_PLUSout_GT] = ACTIONS(2047), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2047), + [anon_sym_o_PLUSe_GT] = ACTIONS(2047), + [anon_sym_e_PLUSo_GT] = ACTIONS(2047), + [anon_sym_err_GT_GT] = ACTIONS(2049), + [anon_sym_out_GT_GT] = ACTIONS(2049), + [anon_sym_e_GT_GT] = ACTIONS(2049), + [anon_sym_o_GT_GT] = ACTIONS(2049), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2049), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2049), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2049), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2049), + [aux_sym_unquoted_token1] = ACTIONS(2047), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2049), }, [1312] = { - [sym_cell_path] = STATE(1706), - [sym_path] = STATE(1551), + [sym_cell_path] = STATE(1629), + [sym_path] = STATE(1538), [sym_comment] = STATE(1312), - [aux_sym_cell_path_repeat1] = STATE(1383), - [anon_sym_true] = ACTIONS(1846), - [anon_sym_false] = ACTIONS(1846), - [anon_sym_null] = ACTIONS(1846), - [aux_sym_cmd_identifier_token38] = ACTIONS(1846), - [aux_sym_cmd_identifier_token39] = ACTIONS(1846), - [aux_sym_cmd_identifier_token40] = ACTIONS(1846), - [sym__newline] = ACTIONS(1846), - [anon_sym_SEMI] = ACTIONS(1846), - [anon_sym_PIPE] = ACTIONS(1846), - [anon_sym_err_GT_PIPE] = ACTIONS(1846), - [anon_sym_out_GT_PIPE] = ACTIONS(1846), - [anon_sym_e_GT_PIPE] = ACTIONS(1846), - [anon_sym_o_GT_PIPE] = ACTIONS(1846), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1846), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1846), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1846), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1846), - [anon_sym_LBRACK] = ACTIONS(1846), - [anon_sym_LPAREN] = ACTIONS(1846), - [anon_sym_RPAREN] = ACTIONS(1846), - [anon_sym_DOLLAR] = ACTIONS(1844), - [anon_sym_DASH_DASH] = ACTIONS(1846), - [anon_sym_DASH] = ACTIONS(1844), - [anon_sym_LBRACE] = ACTIONS(1846), - [anon_sym_RBRACE] = ACTIONS(1846), - [anon_sym_DOT_DOT] = ACTIONS(1844), - [anon_sym_DOT] = ACTIONS(4596), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1846), - [anon_sym_DOT_DOT_LT] = ACTIONS(1846), - [aux_sym__val_number_decimal_token1] = ACTIONS(1844), - [aux_sym__val_number_decimal_token2] = ACTIONS(1846), - [aux_sym__val_number_decimal_token3] = ACTIONS(1846), - [aux_sym__val_number_decimal_token4] = ACTIONS(1846), - [aux_sym__val_number_token1] = ACTIONS(1846), - [aux_sym__val_number_token2] = ACTIONS(1846), - [aux_sym__val_number_token3] = ACTIONS(1846), - [anon_sym_0b] = ACTIONS(1844), - [anon_sym_0o] = ACTIONS(1844), - [anon_sym_0x] = ACTIONS(1844), - [sym_val_date] = ACTIONS(1846), - [anon_sym_DQUOTE] = ACTIONS(1846), - [sym__str_single_quotes] = ACTIONS(1846), - [sym__str_back_ticks] = ACTIONS(1846), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1846), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1846), - [anon_sym_err_GT] = ACTIONS(1844), - [anon_sym_out_GT] = ACTIONS(1844), - [anon_sym_e_GT] = ACTIONS(1844), - [anon_sym_o_GT] = ACTIONS(1844), - [anon_sym_err_PLUSout_GT] = ACTIONS(1844), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1844), - [anon_sym_o_PLUSe_GT] = ACTIONS(1844), - [anon_sym_e_PLUSo_GT] = ACTIONS(1844), - [anon_sym_err_GT_GT] = ACTIONS(1846), - [anon_sym_out_GT_GT] = ACTIONS(1846), - [anon_sym_e_GT_GT] = ACTIONS(1846), - [anon_sym_o_GT_GT] = ACTIONS(1846), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1846), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1846), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1846), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1846), - [aux_sym_unquoted_token1] = ACTIONS(1844), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(1342), + [anon_sym_true] = ACTIONS(2053), + [anon_sym_false] = ACTIONS(2053), + [anon_sym_null] = ACTIONS(2053), + [aux_sym_cmd_identifier_token38] = ACTIONS(2053), + [aux_sym_cmd_identifier_token39] = ACTIONS(2053), + [aux_sym_cmd_identifier_token40] = ACTIONS(2053), + [sym__newline] = ACTIONS(2053), + [anon_sym_SEMI] = ACTIONS(2053), + [anon_sym_PIPE] = ACTIONS(2053), + [anon_sym_err_GT_PIPE] = ACTIONS(2053), + [anon_sym_out_GT_PIPE] = ACTIONS(2053), + [anon_sym_e_GT_PIPE] = ACTIONS(2053), + [anon_sym_o_GT_PIPE] = ACTIONS(2053), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2053), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2053), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2053), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2053), + [anon_sym_LBRACK] = ACTIONS(2053), + [anon_sym_LPAREN] = ACTIONS(2053), + [anon_sym_RPAREN] = ACTIONS(2053), + [anon_sym_DOLLAR] = ACTIONS(2051), + [anon_sym_DASH_DASH] = ACTIONS(2053), + [anon_sym_DASH] = ACTIONS(2051), + [anon_sym_LBRACE] = ACTIONS(2053), + [anon_sym_RBRACE] = ACTIONS(2053), + [anon_sym_DOT_DOT] = ACTIONS(2051), + [anon_sym_DOT] = ACTIONS(4679), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2053), + [anon_sym_DOT_DOT_LT] = ACTIONS(2053), + [aux_sym__val_number_decimal_token1] = ACTIONS(2051), + [aux_sym__val_number_decimal_token2] = ACTIONS(2053), + [aux_sym__val_number_decimal_token3] = ACTIONS(2053), + [aux_sym__val_number_decimal_token4] = ACTIONS(2053), + [aux_sym__val_number_token1] = ACTIONS(2053), + [aux_sym__val_number_token2] = ACTIONS(2053), + [aux_sym__val_number_token3] = ACTIONS(2053), + [anon_sym_0b] = ACTIONS(2051), + [anon_sym_0o] = ACTIONS(2051), + [anon_sym_0x] = ACTIONS(2051), + [sym_val_date] = ACTIONS(2053), + [anon_sym_DQUOTE] = ACTIONS(2053), + [sym__str_single_quotes] = ACTIONS(2053), + [sym__str_back_ticks] = ACTIONS(2053), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2053), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2053), + [anon_sym_err_GT] = ACTIONS(2051), + [anon_sym_out_GT] = ACTIONS(2051), + [anon_sym_e_GT] = ACTIONS(2051), + [anon_sym_o_GT] = ACTIONS(2051), + [anon_sym_err_PLUSout_GT] = ACTIONS(2051), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2051), + [anon_sym_o_PLUSe_GT] = ACTIONS(2051), + [anon_sym_e_PLUSo_GT] = ACTIONS(2051), + [anon_sym_err_GT_GT] = ACTIONS(2053), + [anon_sym_out_GT_GT] = ACTIONS(2053), + [anon_sym_e_GT_GT] = ACTIONS(2053), + [anon_sym_o_GT_GT] = ACTIONS(2053), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2053), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2053), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2053), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2053), + [aux_sym_unquoted_token1] = ACTIONS(2051), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2053), }, [1313] = { - [sym_cell_path] = STATE(1708), - [sym_path] = STATE(1551), + [sym_cell_path] = STATE(1683), + [sym_path] = STATE(1538), [sym_comment] = STATE(1313), - [aux_sym_cell_path_repeat1] = STATE(1383), + [aux_sym_cell_path_repeat1] = STATE(1342), + [anon_sym_true] = ACTIONS(2057), + [anon_sym_false] = ACTIONS(2057), + [anon_sym_null] = ACTIONS(2057), + [aux_sym_cmd_identifier_token38] = ACTIONS(2057), + [aux_sym_cmd_identifier_token39] = ACTIONS(2057), + [aux_sym_cmd_identifier_token40] = ACTIONS(2057), + [sym__newline] = ACTIONS(2057), + [anon_sym_SEMI] = ACTIONS(2057), + [anon_sym_PIPE] = ACTIONS(2057), + [anon_sym_err_GT_PIPE] = ACTIONS(2057), + [anon_sym_out_GT_PIPE] = ACTIONS(2057), + [anon_sym_e_GT_PIPE] = ACTIONS(2057), + [anon_sym_o_GT_PIPE] = ACTIONS(2057), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2057), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2057), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2057), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2057), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(2057), + [anon_sym_RPAREN] = ACTIONS(2057), + [anon_sym_DOLLAR] = ACTIONS(2055), + [anon_sym_DASH_DASH] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2055), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_RBRACE] = ACTIONS(2057), + [anon_sym_DOT_DOT] = ACTIONS(2055), + [anon_sym_DOT] = ACTIONS(4679), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2057), + [anon_sym_DOT_DOT_LT] = ACTIONS(2057), + [aux_sym__val_number_decimal_token1] = ACTIONS(2055), + [aux_sym__val_number_decimal_token2] = ACTIONS(2057), + [aux_sym__val_number_decimal_token3] = ACTIONS(2057), + [aux_sym__val_number_decimal_token4] = ACTIONS(2057), + [aux_sym__val_number_token1] = ACTIONS(2057), + [aux_sym__val_number_token2] = ACTIONS(2057), + [aux_sym__val_number_token3] = ACTIONS(2057), + [anon_sym_0b] = ACTIONS(2055), + [anon_sym_0o] = ACTIONS(2055), + [anon_sym_0x] = ACTIONS(2055), + [sym_val_date] = ACTIONS(2057), + [anon_sym_DQUOTE] = ACTIONS(2057), + [sym__str_single_quotes] = ACTIONS(2057), + [sym__str_back_ticks] = ACTIONS(2057), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2057), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2057), + [anon_sym_err_GT] = ACTIONS(2055), + [anon_sym_out_GT] = ACTIONS(2055), + [anon_sym_e_GT] = ACTIONS(2055), + [anon_sym_o_GT] = ACTIONS(2055), + [anon_sym_err_PLUSout_GT] = ACTIONS(2055), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2055), + [anon_sym_o_PLUSe_GT] = ACTIONS(2055), + [anon_sym_e_PLUSo_GT] = ACTIONS(2055), + [anon_sym_err_GT_GT] = ACTIONS(2057), + [anon_sym_out_GT_GT] = ACTIONS(2057), + [anon_sym_e_GT_GT] = ACTIONS(2057), + [anon_sym_o_GT_GT] = ACTIONS(2057), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2057), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2057), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2057), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2057), + [aux_sym_unquoted_token1] = ACTIONS(2055), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2057), + }, + [1314] = { + [sym_cell_path] = STATE(1688), + [sym_path] = STATE(1538), + [sym_comment] = STATE(1314), + [aux_sym_cell_path_repeat1] = STATE(1342), + [anon_sym_true] = ACTIONS(2061), + [anon_sym_false] = ACTIONS(2061), + [anon_sym_null] = ACTIONS(2061), + [aux_sym_cmd_identifier_token38] = ACTIONS(2061), + [aux_sym_cmd_identifier_token39] = ACTIONS(2061), + [aux_sym_cmd_identifier_token40] = ACTIONS(2061), + [sym__newline] = ACTIONS(2061), + [anon_sym_SEMI] = ACTIONS(2061), + [anon_sym_PIPE] = ACTIONS(2061), + [anon_sym_err_GT_PIPE] = ACTIONS(2061), + [anon_sym_out_GT_PIPE] = ACTIONS(2061), + [anon_sym_e_GT_PIPE] = ACTIONS(2061), + [anon_sym_o_GT_PIPE] = ACTIONS(2061), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2061), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2061), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2061), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2061), + [anon_sym_LBRACK] = ACTIONS(2061), + [anon_sym_LPAREN] = ACTIONS(2061), + [anon_sym_RPAREN] = ACTIONS(2061), + [anon_sym_DOLLAR] = ACTIONS(2059), + [anon_sym_DASH_DASH] = ACTIONS(2061), + [anon_sym_DASH] = ACTIONS(2059), + [anon_sym_LBRACE] = ACTIONS(2061), + [anon_sym_RBRACE] = ACTIONS(2061), + [anon_sym_DOT_DOT] = ACTIONS(2059), + [anon_sym_DOT] = ACTIONS(4679), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2061), + [anon_sym_DOT_DOT_LT] = ACTIONS(2061), + [aux_sym__val_number_decimal_token1] = ACTIONS(2059), + [aux_sym__val_number_decimal_token2] = ACTIONS(2061), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), + [aux_sym__val_number_token1] = ACTIONS(2061), + [aux_sym__val_number_token2] = ACTIONS(2061), + [aux_sym__val_number_token3] = ACTIONS(2061), + [anon_sym_0b] = ACTIONS(2059), + [anon_sym_0o] = ACTIONS(2059), + [anon_sym_0x] = ACTIONS(2059), + [sym_val_date] = ACTIONS(2061), + [anon_sym_DQUOTE] = ACTIONS(2061), + [sym__str_single_quotes] = ACTIONS(2061), + [sym__str_back_ticks] = ACTIONS(2061), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2061), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2061), + [anon_sym_err_GT] = ACTIONS(2059), + [anon_sym_out_GT] = ACTIONS(2059), + [anon_sym_e_GT] = ACTIONS(2059), + [anon_sym_o_GT] = ACTIONS(2059), + [anon_sym_err_PLUSout_GT] = ACTIONS(2059), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2059), + [anon_sym_o_PLUSe_GT] = ACTIONS(2059), + [anon_sym_e_PLUSo_GT] = ACTIONS(2059), + [anon_sym_err_GT_GT] = ACTIONS(2061), + [anon_sym_out_GT_GT] = ACTIONS(2061), + [anon_sym_e_GT_GT] = ACTIONS(2061), + [anon_sym_o_GT_GT] = ACTIONS(2061), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2061), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2061), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2061), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2061), + [aux_sym_unquoted_token1] = ACTIONS(2059), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2061), + }, + [1315] = { + [sym_comment] = STATE(1315), + [ts_builtin_sym_end] = ACTIONS(1850), [anon_sym_true] = ACTIONS(1850), [anon_sym_false] = ACTIONS(1850), [anon_sym_null] = ACTIONS(1850), @@ -199694,41 +202800,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1850), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1850), [anon_sym_LBRACK] = ACTIONS(1850), - [anon_sym_LPAREN] = ACTIONS(1850), - [anon_sym_RPAREN] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1848), + [anon_sym_LPAREN] = ACTIONS(1842), + [anon_sym_DOLLAR] = ACTIONS(1842), [anon_sym_DASH_DASH] = ACTIONS(1850), - [anon_sym_DASH] = ACTIONS(1848), + [anon_sym_DASH] = ACTIONS(1842), [anon_sym_LBRACE] = ACTIONS(1850), - [anon_sym_RBRACE] = ACTIONS(1850), - [anon_sym_DOT_DOT] = ACTIONS(1848), - [anon_sym_DOT] = ACTIONS(4596), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1850), - [anon_sym_DOT_DOT_LT] = ACTIONS(1850), - [aux_sym__val_number_decimal_token1] = ACTIONS(1848), + [anon_sym_DOT_DOT] = ACTIONS(1842), + [anon_sym_LPAREN2] = ACTIONS(1844), + [anon_sym_DOT_DOT2] = ACTIONS(4687), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1842), + [anon_sym_DOT_DOT_LT] = ACTIONS(1842), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4689), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4689), + [aux_sym__val_number_decimal_token1] = ACTIONS(1842), [aux_sym__val_number_decimal_token2] = ACTIONS(1850), [aux_sym__val_number_decimal_token3] = ACTIONS(1850), [aux_sym__val_number_decimal_token4] = ACTIONS(1850), [aux_sym__val_number_token1] = ACTIONS(1850), [aux_sym__val_number_token2] = ACTIONS(1850), [aux_sym__val_number_token3] = ACTIONS(1850), - [anon_sym_0b] = ACTIONS(1848), - [anon_sym_0o] = ACTIONS(1848), - [anon_sym_0x] = ACTIONS(1848), + [anon_sym_0b] = ACTIONS(1842), + [anon_sym_0o] = ACTIONS(1842), + [anon_sym_0x] = ACTIONS(1842), [sym_val_date] = ACTIONS(1850), [anon_sym_DQUOTE] = ACTIONS(1850), [sym__str_single_quotes] = ACTIONS(1850), [sym__str_back_ticks] = ACTIONS(1850), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1850), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1850), - [anon_sym_err_GT] = ACTIONS(1848), - [anon_sym_out_GT] = ACTIONS(1848), - [anon_sym_e_GT] = ACTIONS(1848), - [anon_sym_o_GT] = ACTIONS(1848), - [anon_sym_err_PLUSout_GT] = ACTIONS(1848), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1848), - [anon_sym_o_PLUSe_GT] = ACTIONS(1848), - [anon_sym_e_PLUSo_GT] = ACTIONS(1848), + [anon_sym_err_GT] = ACTIONS(1842), + [anon_sym_out_GT] = ACTIONS(1842), + [anon_sym_e_GT] = ACTIONS(1842), + [anon_sym_o_GT] = ACTIONS(1842), + [anon_sym_err_PLUSout_GT] = ACTIONS(1842), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1842), + [anon_sym_o_PLUSe_GT] = ACTIONS(1842), + [anon_sym_e_PLUSo_GT] = ACTIONS(1842), [anon_sym_err_GT_GT] = ACTIONS(1850), [anon_sym_out_GT_GT] = ACTIONS(1850), [anon_sym_e_GT_GT] = ACTIONS(1850), @@ -199737,1122 +202844,650 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1850), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1850), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1850), - [aux_sym_unquoted_token1] = ACTIONS(1848), - [anon_sym_POUND] = ACTIONS(247), - }, - [1314] = { - [sym_cell_path] = STATE(1709), - [sym_path] = STATE(1551), - [sym_comment] = STATE(1314), - [aux_sym_cell_path_repeat1] = STATE(1383), - [anon_sym_true] = ACTIONS(1854), - [anon_sym_false] = ACTIONS(1854), - [anon_sym_null] = ACTIONS(1854), - [aux_sym_cmd_identifier_token38] = ACTIONS(1854), - [aux_sym_cmd_identifier_token39] = ACTIONS(1854), - [aux_sym_cmd_identifier_token40] = ACTIONS(1854), - [sym__newline] = ACTIONS(1854), - [anon_sym_SEMI] = ACTIONS(1854), - [anon_sym_PIPE] = ACTIONS(1854), - [anon_sym_err_GT_PIPE] = ACTIONS(1854), - [anon_sym_out_GT_PIPE] = ACTIONS(1854), - [anon_sym_e_GT_PIPE] = ACTIONS(1854), - [anon_sym_o_GT_PIPE] = ACTIONS(1854), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1854), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1854), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1854), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1854), - [anon_sym_LBRACK] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(1854), - [anon_sym_RPAREN] = ACTIONS(1854), - [anon_sym_DOLLAR] = ACTIONS(1852), - [anon_sym_DASH_DASH] = ACTIONS(1854), - [anon_sym_DASH] = ACTIONS(1852), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_RBRACE] = ACTIONS(1854), - [anon_sym_DOT_DOT] = ACTIONS(1852), - [anon_sym_DOT] = ACTIONS(4596), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1854), - [anon_sym_DOT_DOT_LT] = ACTIONS(1854), - [aux_sym__val_number_decimal_token1] = ACTIONS(1852), - [aux_sym__val_number_decimal_token2] = ACTIONS(1854), - [aux_sym__val_number_decimal_token3] = ACTIONS(1854), - [aux_sym__val_number_decimal_token4] = ACTIONS(1854), - [aux_sym__val_number_token1] = ACTIONS(1854), - [aux_sym__val_number_token2] = ACTIONS(1854), - [aux_sym__val_number_token3] = ACTIONS(1854), - [anon_sym_0b] = ACTIONS(1852), - [anon_sym_0o] = ACTIONS(1852), - [anon_sym_0x] = ACTIONS(1852), - [sym_val_date] = ACTIONS(1854), - [anon_sym_DQUOTE] = ACTIONS(1854), - [sym__str_single_quotes] = ACTIONS(1854), - [sym__str_back_ticks] = ACTIONS(1854), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1854), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1854), - [anon_sym_err_GT] = ACTIONS(1852), - [anon_sym_out_GT] = ACTIONS(1852), - [anon_sym_e_GT] = ACTIONS(1852), - [anon_sym_o_GT] = ACTIONS(1852), - [anon_sym_err_PLUSout_GT] = ACTIONS(1852), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1852), - [anon_sym_o_PLUSe_GT] = ACTIONS(1852), - [anon_sym_e_PLUSo_GT] = ACTIONS(1852), - [anon_sym_err_GT_GT] = ACTIONS(1854), - [anon_sym_out_GT_GT] = ACTIONS(1854), - [anon_sym_e_GT_GT] = ACTIONS(1854), - [anon_sym_o_GT_GT] = ACTIONS(1854), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1854), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1854), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1854), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1854), - [aux_sym_unquoted_token1] = ACTIONS(1852), - [anon_sym_POUND] = ACTIONS(247), - }, - [1315] = { - [sym_cell_path] = STATE(1712), - [sym_path] = STATE(1551), - [sym_comment] = STATE(1315), - [aux_sym_cell_path_repeat1] = STATE(1383), - [anon_sym_true] = ACTIONS(1858), - [anon_sym_false] = ACTIONS(1858), - [anon_sym_null] = ACTIONS(1858), - [aux_sym_cmd_identifier_token38] = ACTIONS(1858), - [aux_sym_cmd_identifier_token39] = ACTIONS(1858), - [aux_sym_cmd_identifier_token40] = ACTIONS(1858), - [sym__newline] = ACTIONS(1858), - [anon_sym_SEMI] = ACTIONS(1858), - [anon_sym_PIPE] = ACTIONS(1858), - [anon_sym_err_GT_PIPE] = ACTIONS(1858), - [anon_sym_out_GT_PIPE] = ACTIONS(1858), - [anon_sym_e_GT_PIPE] = ACTIONS(1858), - [anon_sym_o_GT_PIPE] = ACTIONS(1858), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1858), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1858), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1858), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1858), - [anon_sym_LBRACK] = ACTIONS(1858), - [anon_sym_LPAREN] = ACTIONS(1858), - [anon_sym_RPAREN] = ACTIONS(1858), - [anon_sym_DOLLAR] = ACTIONS(1856), - [anon_sym_DASH_DASH] = ACTIONS(1858), - [anon_sym_DASH] = ACTIONS(1856), - [anon_sym_LBRACE] = ACTIONS(1858), - [anon_sym_RBRACE] = ACTIONS(1858), - [anon_sym_DOT_DOT] = ACTIONS(1856), - [anon_sym_DOT] = ACTIONS(4596), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1858), - [anon_sym_DOT_DOT_LT] = ACTIONS(1858), - [aux_sym__val_number_decimal_token1] = ACTIONS(1856), - [aux_sym__val_number_decimal_token2] = ACTIONS(1858), - [aux_sym__val_number_decimal_token3] = ACTIONS(1858), - [aux_sym__val_number_decimal_token4] = ACTIONS(1858), - [aux_sym__val_number_token1] = ACTIONS(1858), - [aux_sym__val_number_token2] = ACTIONS(1858), - [aux_sym__val_number_token3] = ACTIONS(1858), - [anon_sym_0b] = ACTIONS(1856), - [anon_sym_0o] = ACTIONS(1856), - [anon_sym_0x] = ACTIONS(1856), - [sym_val_date] = ACTIONS(1858), - [anon_sym_DQUOTE] = ACTIONS(1858), - [sym__str_single_quotes] = ACTIONS(1858), - [sym__str_back_ticks] = ACTIONS(1858), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1858), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1858), - [anon_sym_err_GT] = ACTIONS(1856), - [anon_sym_out_GT] = ACTIONS(1856), - [anon_sym_e_GT] = ACTIONS(1856), - [anon_sym_o_GT] = ACTIONS(1856), - [anon_sym_err_PLUSout_GT] = ACTIONS(1856), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1856), - [anon_sym_o_PLUSe_GT] = ACTIONS(1856), - [anon_sym_e_PLUSo_GT] = ACTIONS(1856), - [anon_sym_err_GT_GT] = ACTIONS(1858), - [anon_sym_out_GT_GT] = ACTIONS(1858), - [anon_sym_e_GT_GT] = ACTIONS(1858), - [anon_sym_o_GT_GT] = ACTIONS(1858), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1858), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1858), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1858), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1858), - [aux_sym_unquoted_token1] = ACTIONS(1856), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_unquoted_token1] = ACTIONS(1842), + [aux_sym_unquoted_token2] = ACTIONS(1852), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1850), }, [1316] = { - [sym_cell_path] = STATE(1714), - [sym_path] = STATE(1551), + [sym_cell_path] = STATE(1597), + [sym_path] = STATE(1538), [sym_comment] = STATE(1316), - [aux_sym_cell_path_repeat1] = STATE(1383), - [anon_sym_true] = ACTIONS(1862), - [anon_sym_false] = ACTIONS(1862), - [anon_sym_null] = ACTIONS(1862), - [aux_sym_cmd_identifier_token38] = ACTIONS(1862), - [aux_sym_cmd_identifier_token39] = ACTIONS(1862), - [aux_sym_cmd_identifier_token40] = ACTIONS(1862), - [sym__newline] = ACTIONS(1862), - [anon_sym_SEMI] = ACTIONS(1862), - [anon_sym_PIPE] = ACTIONS(1862), - [anon_sym_err_GT_PIPE] = ACTIONS(1862), - [anon_sym_out_GT_PIPE] = ACTIONS(1862), - [anon_sym_e_GT_PIPE] = ACTIONS(1862), - [anon_sym_o_GT_PIPE] = ACTIONS(1862), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1862), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1862), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1862), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1862), - [anon_sym_LBRACK] = ACTIONS(1862), - [anon_sym_LPAREN] = ACTIONS(1862), - [anon_sym_RPAREN] = ACTIONS(1862), - [anon_sym_DOLLAR] = ACTIONS(1860), - [anon_sym_DASH_DASH] = ACTIONS(1862), - [anon_sym_DASH] = ACTIONS(1860), - [anon_sym_LBRACE] = ACTIONS(1862), - [anon_sym_RBRACE] = ACTIONS(1862), - [anon_sym_DOT_DOT] = ACTIONS(1860), - [anon_sym_DOT] = ACTIONS(4596), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1862), - [anon_sym_DOT_DOT_LT] = ACTIONS(1862), - [aux_sym__val_number_decimal_token1] = ACTIONS(1860), - [aux_sym__val_number_decimal_token2] = ACTIONS(1862), - [aux_sym__val_number_decimal_token3] = ACTIONS(1862), - [aux_sym__val_number_decimal_token4] = ACTIONS(1862), - [aux_sym__val_number_token1] = ACTIONS(1862), - [aux_sym__val_number_token2] = ACTIONS(1862), - [aux_sym__val_number_token3] = ACTIONS(1862), - [anon_sym_0b] = ACTIONS(1860), - [anon_sym_0o] = ACTIONS(1860), - [anon_sym_0x] = ACTIONS(1860), - [sym_val_date] = ACTIONS(1862), - [anon_sym_DQUOTE] = ACTIONS(1862), - [sym__str_single_quotes] = ACTIONS(1862), - [sym__str_back_ticks] = ACTIONS(1862), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1862), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1862), - [anon_sym_err_GT] = ACTIONS(1860), - [anon_sym_out_GT] = ACTIONS(1860), - [anon_sym_e_GT] = ACTIONS(1860), - [anon_sym_o_GT] = ACTIONS(1860), - [anon_sym_err_PLUSout_GT] = ACTIONS(1860), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1860), - [anon_sym_o_PLUSe_GT] = ACTIONS(1860), - [anon_sym_e_PLUSo_GT] = ACTIONS(1860), - [anon_sym_err_GT_GT] = ACTIONS(1862), - [anon_sym_out_GT_GT] = ACTIONS(1862), - [anon_sym_e_GT_GT] = ACTIONS(1862), - [anon_sym_o_GT_GT] = ACTIONS(1862), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1862), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1862), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1862), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1862), - [aux_sym_unquoted_token1] = ACTIONS(1860), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(1342), + [anon_sym_true] = ACTIONS(2069), + [anon_sym_false] = ACTIONS(2069), + [anon_sym_null] = ACTIONS(2069), + [aux_sym_cmd_identifier_token38] = ACTIONS(2069), + [aux_sym_cmd_identifier_token39] = ACTIONS(2069), + [aux_sym_cmd_identifier_token40] = ACTIONS(2069), + [sym__newline] = ACTIONS(2069), + [anon_sym_SEMI] = ACTIONS(2069), + [anon_sym_PIPE] = ACTIONS(2069), + [anon_sym_err_GT_PIPE] = ACTIONS(2069), + [anon_sym_out_GT_PIPE] = ACTIONS(2069), + [anon_sym_e_GT_PIPE] = ACTIONS(2069), + [anon_sym_o_GT_PIPE] = ACTIONS(2069), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2069), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2069), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2069), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2069), + [anon_sym_LBRACK] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2069), + [anon_sym_RPAREN] = ACTIONS(2069), + [anon_sym_DOLLAR] = ACTIONS(2067), + [anon_sym_DASH_DASH] = ACTIONS(2069), + [anon_sym_DASH] = ACTIONS(2067), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_RBRACE] = ACTIONS(2069), + [anon_sym_DOT_DOT] = ACTIONS(2067), + [anon_sym_DOT] = ACTIONS(4679), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2069), + [anon_sym_DOT_DOT_LT] = ACTIONS(2069), + [aux_sym__val_number_decimal_token1] = ACTIONS(2067), + [aux_sym__val_number_decimal_token2] = ACTIONS(2069), + [aux_sym__val_number_decimal_token3] = ACTIONS(2069), + [aux_sym__val_number_decimal_token4] = ACTIONS(2069), + [aux_sym__val_number_token1] = ACTIONS(2069), + [aux_sym__val_number_token2] = ACTIONS(2069), + [aux_sym__val_number_token3] = ACTIONS(2069), + [anon_sym_0b] = ACTIONS(2067), + [anon_sym_0o] = ACTIONS(2067), + [anon_sym_0x] = ACTIONS(2067), + [sym_val_date] = ACTIONS(2069), + [anon_sym_DQUOTE] = ACTIONS(2069), + [sym__str_single_quotes] = ACTIONS(2069), + [sym__str_back_ticks] = ACTIONS(2069), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2069), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2069), + [anon_sym_err_GT] = ACTIONS(2067), + [anon_sym_out_GT] = ACTIONS(2067), + [anon_sym_e_GT] = ACTIONS(2067), + [anon_sym_o_GT] = ACTIONS(2067), + [anon_sym_err_PLUSout_GT] = ACTIONS(2067), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2067), + [anon_sym_o_PLUSe_GT] = ACTIONS(2067), + [anon_sym_e_PLUSo_GT] = ACTIONS(2067), + [anon_sym_err_GT_GT] = ACTIONS(2069), + [anon_sym_out_GT_GT] = ACTIONS(2069), + [anon_sym_e_GT_GT] = ACTIONS(2069), + [anon_sym_o_GT_GT] = ACTIONS(2069), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2069), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2069), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2069), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2069), + [aux_sym_unquoted_token1] = ACTIONS(2067), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2069), }, [1317] = { - [sym_cell_path] = STATE(1718), - [sym_path] = STATE(1551), + [sym_cell_path] = STATE(1601), + [sym_path] = STATE(1538), [sym_comment] = STATE(1317), - [aux_sym_cell_path_repeat1] = STATE(1383), - [anon_sym_true] = ACTIONS(1866), - [anon_sym_false] = ACTIONS(1866), - [anon_sym_null] = ACTIONS(1866), - [aux_sym_cmd_identifier_token38] = ACTIONS(1866), - [aux_sym_cmd_identifier_token39] = ACTIONS(1866), - [aux_sym_cmd_identifier_token40] = ACTIONS(1866), - [sym__newline] = ACTIONS(1866), - [anon_sym_SEMI] = ACTIONS(1866), - [anon_sym_PIPE] = ACTIONS(1866), - [anon_sym_err_GT_PIPE] = ACTIONS(1866), - [anon_sym_out_GT_PIPE] = ACTIONS(1866), - [anon_sym_e_GT_PIPE] = ACTIONS(1866), - [anon_sym_o_GT_PIPE] = ACTIONS(1866), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1866), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1866), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1866), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1866), - [anon_sym_LBRACK] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(1866), - [anon_sym_RPAREN] = ACTIONS(1866), - [anon_sym_DOLLAR] = ACTIONS(1864), - [anon_sym_DASH_DASH] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1864), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(1866), - [anon_sym_DOT_DOT] = ACTIONS(1864), - [anon_sym_DOT] = ACTIONS(4596), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1866), - [anon_sym_DOT_DOT_LT] = ACTIONS(1866), - [aux_sym__val_number_decimal_token1] = ACTIONS(1864), - [aux_sym__val_number_decimal_token2] = ACTIONS(1866), - [aux_sym__val_number_decimal_token3] = ACTIONS(1866), - [aux_sym__val_number_decimal_token4] = ACTIONS(1866), - [aux_sym__val_number_token1] = ACTIONS(1866), - [aux_sym__val_number_token2] = ACTIONS(1866), - [aux_sym__val_number_token3] = ACTIONS(1866), - [anon_sym_0b] = ACTIONS(1864), - [anon_sym_0o] = ACTIONS(1864), - [anon_sym_0x] = ACTIONS(1864), - [sym_val_date] = ACTIONS(1866), - [anon_sym_DQUOTE] = ACTIONS(1866), - [sym__str_single_quotes] = ACTIONS(1866), - [sym__str_back_ticks] = ACTIONS(1866), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1866), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1866), - [anon_sym_err_GT] = ACTIONS(1864), - [anon_sym_out_GT] = ACTIONS(1864), - [anon_sym_e_GT] = ACTIONS(1864), - [anon_sym_o_GT] = ACTIONS(1864), - [anon_sym_err_PLUSout_GT] = ACTIONS(1864), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1864), - [anon_sym_o_PLUSe_GT] = ACTIONS(1864), - [anon_sym_e_PLUSo_GT] = ACTIONS(1864), - [anon_sym_err_GT_GT] = ACTIONS(1866), - [anon_sym_out_GT_GT] = ACTIONS(1866), - [anon_sym_e_GT_GT] = ACTIONS(1866), - [anon_sym_o_GT_GT] = ACTIONS(1866), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1866), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1866), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1866), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1866), - [aux_sym_unquoted_token1] = ACTIONS(1864), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(1342), + [anon_sym_true] = ACTIONS(2085), + [anon_sym_false] = ACTIONS(2085), + [anon_sym_null] = ACTIONS(2085), + [aux_sym_cmd_identifier_token38] = ACTIONS(2085), + [aux_sym_cmd_identifier_token39] = ACTIONS(2085), + [aux_sym_cmd_identifier_token40] = ACTIONS(2085), + [sym__newline] = ACTIONS(2085), + [anon_sym_SEMI] = ACTIONS(2085), + [anon_sym_PIPE] = ACTIONS(2085), + [anon_sym_err_GT_PIPE] = ACTIONS(2085), + [anon_sym_out_GT_PIPE] = ACTIONS(2085), + [anon_sym_e_GT_PIPE] = ACTIONS(2085), + [anon_sym_o_GT_PIPE] = ACTIONS(2085), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2085), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2085), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2085), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2085), + [anon_sym_LBRACK] = ACTIONS(2085), + [anon_sym_LPAREN] = ACTIONS(2085), + [anon_sym_RPAREN] = ACTIONS(2085), + [anon_sym_DOLLAR] = ACTIONS(2083), + [anon_sym_DASH_DASH] = ACTIONS(2085), + [anon_sym_DASH] = ACTIONS(2083), + [anon_sym_LBRACE] = ACTIONS(2085), + [anon_sym_RBRACE] = ACTIONS(2085), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [anon_sym_DOT] = ACTIONS(4679), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [aux_sym__val_number_decimal_token1] = ACTIONS(2083), + [aux_sym__val_number_decimal_token2] = ACTIONS(2085), + [aux_sym__val_number_decimal_token3] = ACTIONS(2085), + [aux_sym__val_number_decimal_token4] = ACTIONS(2085), + [aux_sym__val_number_token1] = ACTIONS(2085), + [aux_sym__val_number_token2] = ACTIONS(2085), + [aux_sym__val_number_token3] = ACTIONS(2085), + [anon_sym_0b] = ACTIONS(2083), + [anon_sym_0o] = ACTIONS(2083), + [anon_sym_0x] = ACTIONS(2083), + [sym_val_date] = ACTIONS(2085), + [anon_sym_DQUOTE] = ACTIONS(2085), + [sym__str_single_quotes] = ACTIONS(2085), + [sym__str_back_ticks] = ACTIONS(2085), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2085), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2085), + [anon_sym_err_GT] = ACTIONS(2083), + [anon_sym_out_GT] = ACTIONS(2083), + [anon_sym_e_GT] = ACTIONS(2083), + [anon_sym_o_GT] = ACTIONS(2083), + [anon_sym_err_PLUSout_GT] = ACTIONS(2083), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2083), + [anon_sym_o_PLUSe_GT] = ACTIONS(2083), + [anon_sym_e_PLUSo_GT] = ACTIONS(2083), + [anon_sym_err_GT_GT] = ACTIONS(2085), + [anon_sym_out_GT_GT] = ACTIONS(2085), + [anon_sym_e_GT_GT] = ACTIONS(2085), + [anon_sym_o_GT_GT] = ACTIONS(2085), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2085), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2085), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2085), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2085), + [aux_sym_unquoted_token1] = ACTIONS(2083), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2085), }, [1318] = { - [sym_cell_path] = STATE(1719), - [sym_path] = STATE(1551), + [sym_cell_path] = STATE(1614), + [sym_path] = STATE(1538), [sym_comment] = STATE(1318), - [aux_sym_cell_path_repeat1] = STATE(1383), - [anon_sym_true] = ACTIONS(1870), - [anon_sym_false] = ACTIONS(1870), - [anon_sym_null] = ACTIONS(1870), - [aux_sym_cmd_identifier_token38] = ACTIONS(1870), - [aux_sym_cmd_identifier_token39] = ACTIONS(1870), - [aux_sym_cmd_identifier_token40] = ACTIONS(1870), - [sym__newline] = ACTIONS(1870), - [anon_sym_SEMI] = ACTIONS(1870), - [anon_sym_PIPE] = ACTIONS(1870), - [anon_sym_err_GT_PIPE] = ACTIONS(1870), - [anon_sym_out_GT_PIPE] = ACTIONS(1870), - [anon_sym_e_GT_PIPE] = ACTIONS(1870), - [anon_sym_o_GT_PIPE] = ACTIONS(1870), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1870), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1870), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1870), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1870), - [anon_sym_LBRACK] = ACTIONS(1870), - [anon_sym_LPAREN] = ACTIONS(1870), - [anon_sym_RPAREN] = ACTIONS(1870), - [anon_sym_DOLLAR] = ACTIONS(1868), - [anon_sym_DASH_DASH] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1868), - [anon_sym_LBRACE] = ACTIONS(1870), - [anon_sym_RBRACE] = ACTIONS(1870), - [anon_sym_DOT_DOT] = ACTIONS(1868), - [anon_sym_DOT] = ACTIONS(4596), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1870), - [anon_sym_DOT_DOT_LT] = ACTIONS(1870), - [aux_sym__val_number_decimal_token1] = ACTIONS(1868), - [aux_sym__val_number_decimal_token2] = ACTIONS(1870), - [aux_sym__val_number_decimal_token3] = ACTIONS(1870), - [aux_sym__val_number_decimal_token4] = ACTIONS(1870), - [aux_sym__val_number_token1] = ACTIONS(1870), - [aux_sym__val_number_token2] = ACTIONS(1870), - [aux_sym__val_number_token3] = ACTIONS(1870), - [anon_sym_0b] = ACTIONS(1868), - [anon_sym_0o] = ACTIONS(1868), - [anon_sym_0x] = ACTIONS(1868), - [sym_val_date] = ACTIONS(1870), - [anon_sym_DQUOTE] = ACTIONS(1870), - [sym__str_single_quotes] = ACTIONS(1870), - [sym__str_back_ticks] = ACTIONS(1870), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1870), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1870), - [anon_sym_err_GT] = ACTIONS(1868), - [anon_sym_out_GT] = ACTIONS(1868), - [anon_sym_e_GT] = ACTIONS(1868), - [anon_sym_o_GT] = ACTIONS(1868), - [anon_sym_err_PLUSout_GT] = ACTIONS(1868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1868), - [anon_sym_o_PLUSe_GT] = ACTIONS(1868), - [anon_sym_e_PLUSo_GT] = ACTIONS(1868), - [anon_sym_err_GT_GT] = ACTIONS(1870), - [anon_sym_out_GT_GT] = ACTIONS(1870), - [anon_sym_e_GT_GT] = ACTIONS(1870), - [anon_sym_o_GT_GT] = ACTIONS(1870), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1870), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1870), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1870), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1870), - [aux_sym_unquoted_token1] = ACTIONS(1868), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(1342), + [anon_sym_true] = ACTIONS(2089), + [anon_sym_false] = ACTIONS(2089), + [anon_sym_null] = ACTIONS(2089), + [aux_sym_cmd_identifier_token38] = ACTIONS(2089), + [aux_sym_cmd_identifier_token39] = ACTIONS(2089), + [aux_sym_cmd_identifier_token40] = ACTIONS(2089), + [sym__newline] = ACTIONS(2089), + [anon_sym_SEMI] = ACTIONS(2089), + [anon_sym_PIPE] = ACTIONS(2089), + [anon_sym_err_GT_PIPE] = ACTIONS(2089), + [anon_sym_out_GT_PIPE] = ACTIONS(2089), + [anon_sym_e_GT_PIPE] = ACTIONS(2089), + [anon_sym_o_GT_PIPE] = ACTIONS(2089), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2089), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2089), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2089), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2089), + [anon_sym_LBRACK] = ACTIONS(2089), + [anon_sym_LPAREN] = ACTIONS(2089), + [anon_sym_RPAREN] = ACTIONS(2089), + [anon_sym_DOLLAR] = ACTIONS(2087), + [anon_sym_DASH_DASH] = ACTIONS(2089), + [anon_sym_DASH] = ACTIONS(2087), + [anon_sym_LBRACE] = ACTIONS(2089), + [anon_sym_RBRACE] = ACTIONS(2089), + [anon_sym_DOT_DOT] = ACTIONS(2087), + [anon_sym_DOT] = ACTIONS(4679), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2089), + [anon_sym_DOT_DOT_LT] = ACTIONS(2089), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2089), + [aux_sym__val_number_decimal_token4] = ACTIONS(2089), + [aux_sym__val_number_token1] = ACTIONS(2089), + [aux_sym__val_number_token2] = ACTIONS(2089), + [aux_sym__val_number_token3] = ACTIONS(2089), + [anon_sym_0b] = ACTIONS(2087), + [anon_sym_0o] = ACTIONS(2087), + [anon_sym_0x] = ACTIONS(2087), + [sym_val_date] = ACTIONS(2089), + [anon_sym_DQUOTE] = ACTIONS(2089), + [sym__str_single_quotes] = ACTIONS(2089), + [sym__str_back_ticks] = ACTIONS(2089), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2089), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2089), + [anon_sym_err_GT] = ACTIONS(2087), + [anon_sym_out_GT] = ACTIONS(2087), + [anon_sym_e_GT] = ACTIONS(2087), + [anon_sym_o_GT] = ACTIONS(2087), + [anon_sym_err_PLUSout_GT] = ACTIONS(2087), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2087), + [anon_sym_o_PLUSe_GT] = ACTIONS(2087), + [anon_sym_e_PLUSo_GT] = ACTIONS(2087), + [anon_sym_err_GT_GT] = ACTIONS(2089), + [anon_sym_out_GT_GT] = ACTIONS(2089), + [anon_sym_e_GT_GT] = ACTIONS(2089), + [anon_sym_o_GT_GT] = ACTIONS(2089), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2089), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2089), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2089), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2089), + [aux_sym_unquoted_token1] = ACTIONS(2087), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2089), }, [1319] = { - [sym_cell_path] = STATE(1720), - [sym_path] = STATE(1551), + [sym_cell_path] = STATE(1616), + [sym_path] = STATE(1538), [sym_comment] = STATE(1319), - [aux_sym_cell_path_repeat1] = STATE(1383), - [anon_sym_true] = ACTIONS(1874), - [anon_sym_false] = ACTIONS(1874), - [anon_sym_null] = ACTIONS(1874), - [aux_sym_cmd_identifier_token38] = ACTIONS(1874), - [aux_sym_cmd_identifier_token39] = ACTIONS(1874), - [aux_sym_cmd_identifier_token40] = ACTIONS(1874), - [sym__newline] = ACTIONS(1874), - [anon_sym_SEMI] = ACTIONS(1874), - [anon_sym_PIPE] = ACTIONS(1874), - [anon_sym_err_GT_PIPE] = ACTIONS(1874), - [anon_sym_out_GT_PIPE] = ACTIONS(1874), - [anon_sym_e_GT_PIPE] = ACTIONS(1874), - [anon_sym_o_GT_PIPE] = ACTIONS(1874), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1874), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1874), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1874), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1874), - [anon_sym_LBRACK] = ACTIONS(1874), - [anon_sym_LPAREN] = ACTIONS(1874), - [anon_sym_RPAREN] = ACTIONS(1874), - [anon_sym_DOLLAR] = ACTIONS(1872), - [anon_sym_DASH_DASH] = ACTIONS(1874), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_LBRACE] = ACTIONS(1874), - [anon_sym_RBRACE] = ACTIONS(1874), - [anon_sym_DOT_DOT] = ACTIONS(1872), - [anon_sym_DOT] = ACTIONS(4596), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1874), - [anon_sym_DOT_DOT_LT] = ACTIONS(1874), - [aux_sym__val_number_decimal_token1] = ACTIONS(1872), - [aux_sym__val_number_decimal_token2] = ACTIONS(1874), - [aux_sym__val_number_decimal_token3] = ACTIONS(1874), - [aux_sym__val_number_decimal_token4] = ACTIONS(1874), - [aux_sym__val_number_token1] = ACTIONS(1874), - [aux_sym__val_number_token2] = ACTIONS(1874), - [aux_sym__val_number_token3] = ACTIONS(1874), - [anon_sym_0b] = ACTIONS(1872), - [anon_sym_0o] = ACTIONS(1872), - [anon_sym_0x] = ACTIONS(1872), - [sym_val_date] = ACTIONS(1874), - [anon_sym_DQUOTE] = ACTIONS(1874), - [sym__str_single_quotes] = ACTIONS(1874), - [sym__str_back_ticks] = ACTIONS(1874), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1874), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1874), - [anon_sym_err_GT] = ACTIONS(1872), - [anon_sym_out_GT] = ACTIONS(1872), - [anon_sym_e_GT] = ACTIONS(1872), - [anon_sym_o_GT] = ACTIONS(1872), - [anon_sym_err_PLUSout_GT] = ACTIONS(1872), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1872), - [anon_sym_o_PLUSe_GT] = ACTIONS(1872), - [anon_sym_e_PLUSo_GT] = ACTIONS(1872), - [anon_sym_err_GT_GT] = ACTIONS(1874), - [anon_sym_out_GT_GT] = ACTIONS(1874), - [anon_sym_e_GT_GT] = ACTIONS(1874), - [anon_sym_o_GT_GT] = ACTIONS(1874), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1874), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1874), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1874), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1874), - [aux_sym_unquoted_token1] = ACTIONS(1872), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(1342), + [anon_sym_true] = ACTIONS(2097), + [anon_sym_false] = ACTIONS(2097), + [anon_sym_null] = ACTIONS(2097), + [aux_sym_cmd_identifier_token38] = ACTIONS(2097), + [aux_sym_cmd_identifier_token39] = ACTIONS(2097), + [aux_sym_cmd_identifier_token40] = ACTIONS(2097), + [sym__newline] = ACTIONS(2097), + [anon_sym_SEMI] = ACTIONS(2097), + [anon_sym_PIPE] = ACTIONS(2097), + [anon_sym_err_GT_PIPE] = ACTIONS(2097), + [anon_sym_out_GT_PIPE] = ACTIONS(2097), + [anon_sym_e_GT_PIPE] = ACTIONS(2097), + [anon_sym_o_GT_PIPE] = ACTIONS(2097), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2097), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2097), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2097), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2097), + [anon_sym_LBRACK] = ACTIONS(2097), + [anon_sym_LPAREN] = ACTIONS(2097), + [anon_sym_RPAREN] = ACTIONS(2097), + [anon_sym_DOLLAR] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2097), + [anon_sym_DASH] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2097), + [anon_sym_RBRACE] = ACTIONS(2097), + [anon_sym_DOT_DOT] = ACTIONS(2095), + [anon_sym_DOT] = ACTIONS(4679), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2097), + [anon_sym_DOT_DOT_LT] = ACTIONS(2097), + [aux_sym__val_number_decimal_token1] = ACTIONS(2095), + [aux_sym__val_number_decimal_token2] = ACTIONS(2097), + [aux_sym__val_number_decimal_token3] = ACTIONS(2097), + [aux_sym__val_number_decimal_token4] = ACTIONS(2097), + [aux_sym__val_number_token1] = ACTIONS(2097), + [aux_sym__val_number_token2] = ACTIONS(2097), + [aux_sym__val_number_token3] = ACTIONS(2097), + [anon_sym_0b] = ACTIONS(2095), + [anon_sym_0o] = ACTIONS(2095), + [anon_sym_0x] = ACTIONS(2095), + [sym_val_date] = ACTIONS(2097), + [anon_sym_DQUOTE] = ACTIONS(2097), + [sym__str_single_quotes] = ACTIONS(2097), + [sym__str_back_ticks] = ACTIONS(2097), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2097), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2097), + [anon_sym_err_GT] = ACTIONS(2095), + [anon_sym_out_GT] = ACTIONS(2095), + [anon_sym_e_GT] = ACTIONS(2095), + [anon_sym_o_GT] = ACTIONS(2095), + [anon_sym_err_PLUSout_GT] = ACTIONS(2095), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2095), + [anon_sym_o_PLUSe_GT] = ACTIONS(2095), + [anon_sym_e_PLUSo_GT] = ACTIONS(2095), + [anon_sym_err_GT_GT] = ACTIONS(2097), + [anon_sym_out_GT_GT] = ACTIONS(2097), + [anon_sym_e_GT_GT] = ACTIONS(2097), + [anon_sym_o_GT_GT] = ACTIONS(2097), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2097), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2097), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2097), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2097), + [aux_sym_unquoted_token1] = ACTIONS(2095), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2097), }, [1320] = { - [sym_cell_path] = STATE(1721), - [sym_path] = STATE(1551), [sym_comment] = STATE(1320), - [aux_sym_cell_path_repeat1] = STATE(1383), - [anon_sym_true] = ACTIONS(1878), - [anon_sym_false] = ACTIONS(1878), - [anon_sym_null] = ACTIONS(1878), - [aux_sym_cmd_identifier_token38] = ACTIONS(1878), - [aux_sym_cmd_identifier_token39] = ACTIONS(1878), - [aux_sym_cmd_identifier_token40] = ACTIONS(1878), - [sym__newline] = ACTIONS(1878), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_PIPE] = ACTIONS(1878), - [anon_sym_err_GT_PIPE] = ACTIONS(1878), - [anon_sym_out_GT_PIPE] = ACTIONS(1878), - [anon_sym_e_GT_PIPE] = ACTIONS(1878), - [anon_sym_o_GT_PIPE] = ACTIONS(1878), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1878), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1878), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1878), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1878), - [anon_sym_LBRACK] = ACTIONS(1878), - [anon_sym_LPAREN] = ACTIONS(1878), - [anon_sym_RPAREN] = ACTIONS(1878), - [anon_sym_DOLLAR] = ACTIONS(1876), - [anon_sym_DASH_DASH] = ACTIONS(1878), - [anon_sym_DASH] = ACTIONS(1876), - [anon_sym_LBRACE] = ACTIONS(1878), - [anon_sym_RBRACE] = ACTIONS(1878), - [anon_sym_DOT_DOT] = ACTIONS(1876), - [anon_sym_DOT] = ACTIONS(4596), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1878), - [anon_sym_DOT_DOT_LT] = ACTIONS(1878), - [aux_sym__val_number_decimal_token1] = ACTIONS(1876), - [aux_sym__val_number_decimal_token2] = ACTIONS(1878), - [aux_sym__val_number_decimal_token3] = ACTIONS(1878), - [aux_sym__val_number_decimal_token4] = ACTIONS(1878), - [aux_sym__val_number_token1] = ACTIONS(1878), - [aux_sym__val_number_token2] = ACTIONS(1878), - [aux_sym__val_number_token3] = ACTIONS(1878), - [anon_sym_0b] = ACTIONS(1876), - [anon_sym_0o] = ACTIONS(1876), - [anon_sym_0x] = ACTIONS(1876), - [sym_val_date] = ACTIONS(1878), - [anon_sym_DQUOTE] = ACTIONS(1878), - [sym__str_single_quotes] = ACTIONS(1878), - [sym__str_back_ticks] = ACTIONS(1878), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1878), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1878), - [anon_sym_err_GT] = ACTIONS(1876), - [anon_sym_out_GT] = ACTIONS(1876), - [anon_sym_e_GT] = ACTIONS(1876), - [anon_sym_o_GT] = ACTIONS(1876), - [anon_sym_err_PLUSout_GT] = ACTIONS(1876), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1876), - [anon_sym_o_PLUSe_GT] = ACTIONS(1876), - [anon_sym_e_PLUSo_GT] = ACTIONS(1876), - [anon_sym_err_GT_GT] = ACTIONS(1878), - [anon_sym_out_GT_GT] = ACTIONS(1878), - [anon_sym_e_GT_GT] = ACTIONS(1878), - [anon_sym_o_GT_GT] = ACTIONS(1878), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1878), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1878), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1878), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1878), - [aux_sym_unquoted_token1] = ACTIONS(1876), - [anon_sym_POUND] = ACTIONS(247), + [ts_builtin_sym_end] = ACTIONS(1080), + [anon_sym_EQ] = ACTIONS(1078), + [anon_sym_PLUS_EQ] = ACTIONS(1080), + [anon_sym_DASH_EQ] = ACTIONS(1080), + [anon_sym_STAR_EQ] = ACTIONS(1080), + [anon_sym_SLASH_EQ] = ACTIONS(1080), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1080), + [sym__newline] = ACTIONS(1080), + [anon_sym_SEMI] = ACTIONS(1080), + [anon_sym_PIPE] = ACTIONS(1080), + [anon_sym_err_GT_PIPE] = ACTIONS(1080), + [anon_sym_out_GT_PIPE] = ACTIONS(1080), + [anon_sym_e_GT_PIPE] = ACTIONS(1080), + [anon_sym_o_GT_PIPE] = ACTIONS(1080), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1080), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1080), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1080), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1080), + [anon_sym_LBRACE] = ACTIONS(1080), + [aux_sym_expr_binary_token1] = ACTIONS(1080), + [aux_sym_expr_binary_token2] = ACTIONS(1080), + [aux_sym_expr_binary_token3] = ACTIONS(1080), + [aux_sym_expr_binary_token4] = ACTIONS(1080), + [aux_sym_expr_binary_token5] = ACTIONS(1080), + [aux_sym_expr_binary_token6] = ACTIONS(1080), + [aux_sym_expr_binary_token7] = ACTIONS(1080), + [aux_sym_expr_binary_token8] = ACTIONS(1080), + [aux_sym_expr_binary_token9] = ACTIONS(1080), + [aux_sym_expr_binary_token10] = ACTIONS(1080), + [aux_sym_expr_binary_token11] = ACTIONS(1080), + [aux_sym_expr_binary_token12] = ACTIONS(1080), + [aux_sym_expr_binary_token13] = ACTIONS(1080), + [aux_sym_expr_binary_token14] = ACTIONS(1080), + [aux_sym_expr_binary_token15] = ACTIONS(1080), + [aux_sym_expr_binary_token16] = ACTIONS(1080), + [aux_sym_expr_binary_token17] = ACTIONS(1080), + [aux_sym_expr_binary_token18] = ACTIONS(1080), + [aux_sym_expr_binary_token19] = ACTIONS(1080), + [aux_sym_expr_binary_token20] = ACTIONS(1080), + [aux_sym_expr_binary_token21] = ACTIONS(1080), + [aux_sym_expr_binary_token22] = ACTIONS(1080), + [aux_sym_expr_binary_token23] = ACTIONS(1080), + [aux_sym_expr_binary_token24] = ACTIONS(1080), + [aux_sym_expr_binary_token25] = ACTIONS(1080), + [aux_sym_expr_binary_token26] = ACTIONS(1080), + [aux_sym_expr_binary_token27] = ACTIONS(1080), + [aux_sym_expr_binary_token28] = ACTIONS(1080), + [anon_sym_DOT_DOT2] = ACTIONS(1078), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1080), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1080), + [anon_sym_err_GT] = ACTIONS(1078), + [anon_sym_out_GT] = ACTIONS(1078), + [anon_sym_e_GT] = ACTIONS(1078), + [anon_sym_o_GT] = ACTIONS(1078), + [anon_sym_err_PLUSout_GT] = ACTIONS(1078), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1078), + [anon_sym_o_PLUSe_GT] = ACTIONS(1078), + [anon_sym_e_PLUSo_GT] = ACTIONS(1078), + [anon_sym_err_GT_GT] = ACTIONS(1080), + [anon_sym_out_GT_GT] = ACTIONS(1080), + [anon_sym_e_GT_GT] = ACTIONS(1080), + [anon_sym_o_GT_GT] = ACTIONS(1080), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1080), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1080), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1080), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1080), + [anon_sym_POUND] = ACTIONS(249), }, [1321] = { - [sym_cell_path] = STATE(1722), - [sym_path] = STATE(1551), + [sym_cell_path] = STATE(1692), + [sym_path] = STATE(1538), [sym_comment] = STATE(1321), - [aux_sym_cell_path_repeat1] = STATE(1383), - [anon_sym_true] = ACTIONS(1882), - [anon_sym_false] = ACTIONS(1882), - [anon_sym_null] = ACTIONS(1882), - [aux_sym_cmd_identifier_token38] = ACTIONS(1882), - [aux_sym_cmd_identifier_token39] = ACTIONS(1882), - [aux_sym_cmd_identifier_token40] = ACTIONS(1882), - [sym__newline] = ACTIONS(1882), - [anon_sym_SEMI] = ACTIONS(1882), - [anon_sym_PIPE] = ACTIONS(1882), - [anon_sym_err_GT_PIPE] = ACTIONS(1882), - [anon_sym_out_GT_PIPE] = ACTIONS(1882), - [anon_sym_e_GT_PIPE] = ACTIONS(1882), - [anon_sym_o_GT_PIPE] = ACTIONS(1882), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1882), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1882), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1882), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1882), - [anon_sym_LPAREN] = ACTIONS(1882), - [anon_sym_RPAREN] = ACTIONS(1882), - [anon_sym_DOLLAR] = ACTIONS(1880), - [anon_sym_DASH_DASH] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1880), - [anon_sym_LBRACE] = ACTIONS(1882), - [anon_sym_RBRACE] = ACTIONS(1882), - [anon_sym_DOT_DOT] = ACTIONS(1880), - [anon_sym_DOT] = ACTIONS(4596), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1882), - [anon_sym_DOT_DOT_LT] = ACTIONS(1882), - [aux_sym__val_number_decimal_token1] = ACTIONS(1880), - [aux_sym__val_number_decimal_token2] = ACTIONS(1882), - [aux_sym__val_number_decimal_token3] = ACTIONS(1882), - [aux_sym__val_number_decimal_token4] = ACTIONS(1882), - [aux_sym__val_number_token1] = ACTIONS(1882), - [aux_sym__val_number_token2] = ACTIONS(1882), - [aux_sym__val_number_token3] = ACTIONS(1882), - [anon_sym_0b] = ACTIONS(1880), - [anon_sym_0o] = ACTIONS(1880), - [anon_sym_0x] = ACTIONS(1880), - [sym_val_date] = ACTIONS(1882), - [anon_sym_DQUOTE] = ACTIONS(1882), - [sym__str_single_quotes] = ACTIONS(1882), - [sym__str_back_ticks] = ACTIONS(1882), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1882), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1882), - [anon_sym_err_GT] = ACTIONS(1880), - [anon_sym_out_GT] = ACTIONS(1880), - [anon_sym_e_GT] = ACTIONS(1880), - [anon_sym_o_GT] = ACTIONS(1880), - [anon_sym_err_PLUSout_GT] = ACTIONS(1880), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1880), - [anon_sym_o_PLUSe_GT] = ACTIONS(1880), - [anon_sym_e_PLUSo_GT] = ACTIONS(1880), - [anon_sym_err_GT_GT] = ACTIONS(1882), - [anon_sym_out_GT_GT] = ACTIONS(1882), - [anon_sym_e_GT_GT] = ACTIONS(1882), - [anon_sym_o_GT_GT] = ACTIONS(1882), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1882), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1882), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1882), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1882), - [aux_sym_unquoted_token1] = ACTIONS(1880), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(1342), + [anon_sym_true] = ACTIONS(1903), + [anon_sym_false] = ACTIONS(1903), + [anon_sym_null] = ACTIONS(1903), + [aux_sym_cmd_identifier_token38] = ACTIONS(1903), + [aux_sym_cmd_identifier_token39] = ACTIONS(1903), + [aux_sym_cmd_identifier_token40] = ACTIONS(1903), + [sym__newline] = ACTIONS(1903), + [anon_sym_SEMI] = ACTIONS(1903), + [anon_sym_PIPE] = ACTIONS(1903), + [anon_sym_err_GT_PIPE] = ACTIONS(1903), + [anon_sym_out_GT_PIPE] = ACTIONS(1903), + [anon_sym_e_GT_PIPE] = ACTIONS(1903), + [anon_sym_o_GT_PIPE] = ACTIONS(1903), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1903), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1903), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1903), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1903), + [anon_sym_LBRACK] = ACTIONS(1903), + [anon_sym_LPAREN] = ACTIONS(1903), + [anon_sym_RPAREN] = ACTIONS(1903), + [anon_sym_DOLLAR] = ACTIONS(1901), + [anon_sym_DASH_DASH] = ACTIONS(1903), + [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_LBRACE] = ACTIONS(1903), + [anon_sym_RBRACE] = ACTIONS(1903), + [anon_sym_DOT_DOT] = ACTIONS(1901), + [anon_sym_DOT] = ACTIONS(4679), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1903), + [anon_sym_DOT_DOT_LT] = ACTIONS(1903), + [aux_sym__val_number_decimal_token1] = ACTIONS(1901), + [aux_sym__val_number_decimal_token2] = ACTIONS(1903), + [aux_sym__val_number_decimal_token3] = ACTIONS(1903), + [aux_sym__val_number_decimal_token4] = ACTIONS(1903), + [aux_sym__val_number_token1] = ACTIONS(1903), + [aux_sym__val_number_token2] = ACTIONS(1903), + [aux_sym__val_number_token3] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1901), + [anon_sym_0x] = ACTIONS(1901), + [sym_val_date] = ACTIONS(1903), + [anon_sym_DQUOTE] = ACTIONS(1903), + [sym__str_single_quotes] = ACTIONS(1903), + [sym__str_back_ticks] = ACTIONS(1903), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1903), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1903), + [anon_sym_err_GT] = ACTIONS(1901), + [anon_sym_out_GT] = ACTIONS(1901), + [anon_sym_e_GT] = ACTIONS(1901), + [anon_sym_o_GT] = ACTIONS(1901), + [anon_sym_err_PLUSout_GT] = ACTIONS(1901), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1901), + [anon_sym_o_PLUSe_GT] = ACTIONS(1901), + [anon_sym_e_PLUSo_GT] = ACTIONS(1901), + [anon_sym_err_GT_GT] = ACTIONS(1903), + [anon_sym_out_GT_GT] = ACTIONS(1903), + [anon_sym_e_GT_GT] = ACTIONS(1903), + [anon_sym_o_GT_GT] = ACTIONS(1903), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1903), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1903), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1903), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1903), + [aux_sym_unquoted_token1] = ACTIONS(1901), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1903), }, [1322] = { - [sym_cell_path] = STATE(1724), - [sym_path] = STATE(1551), + [sym_cell_path] = STATE(1618), + [sym_path] = STATE(1538), [sym_comment] = STATE(1322), - [aux_sym_cell_path_repeat1] = STATE(1383), - [anon_sym_true] = ACTIONS(1886), - [anon_sym_false] = ACTIONS(1886), - [anon_sym_null] = ACTIONS(1886), - [aux_sym_cmd_identifier_token38] = ACTIONS(1886), - [aux_sym_cmd_identifier_token39] = ACTIONS(1886), - [aux_sym_cmd_identifier_token40] = ACTIONS(1886), - [sym__newline] = ACTIONS(1886), - [anon_sym_SEMI] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1886), - [anon_sym_err_GT_PIPE] = ACTIONS(1886), - [anon_sym_out_GT_PIPE] = ACTIONS(1886), - [anon_sym_e_GT_PIPE] = ACTIONS(1886), - [anon_sym_o_GT_PIPE] = ACTIONS(1886), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1886), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1886), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1886), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1886), - [anon_sym_LBRACK] = ACTIONS(1886), - [anon_sym_LPAREN] = ACTIONS(1886), - [anon_sym_RPAREN] = ACTIONS(1886), - [anon_sym_DOLLAR] = ACTIONS(1884), - [anon_sym_DASH_DASH] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1884), - [anon_sym_LBRACE] = ACTIONS(1886), - [anon_sym_RBRACE] = ACTIONS(1886), - [anon_sym_DOT_DOT] = ACTIONS(1884), - [anon_sym_DOT] = ACTIONS(4596), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1886), - [anon_sym_DOT_DOT_LT] = ACTIONS(1886), - [aux_sym__val_number_decimal_token1] = ACTIONS(1884), - [aux_sym__val_number_decimal_token2] = ACTIONS(1886), - [aux_sym__val_number_decimal_token3] = ACTIONS(1886), - [aux_sym__val_number_decimal_token4] = ACTIONS(1886), - [aux_sym__val_number_token1] = ACTIONS(1886), - [aux_sym__val_number_token2] = ACTIONS(1886), - [aux_sym__val_number_token3] = ACTIONS(1886), - [anon_sym_0b] = ACTIONS(1884), - [anon_sym_0o] = ACTIONS(1884), - [anon_sym_0x] = ACTIONS(1884), - [sym_val_date] = ACTIONS(1886), - [anon_sym_DQUOTE] = ACTIONS(1886), - [sym__str_single_quotes] = ACTIONS(1886), - [sym__str_back_ticks] = ACTIONS(1886), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1886), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1886), - [anon_sym_err_GT] = ACTIONS(1884), - [anon_sym_out_GT] = ACTIONS(1884), - [anon_sym_e_GT] = ACTIONS(1884), - [anon_sym_o_GT] = ACTIONS(1884), - [anon_sym_err_PLUSout_GT] = ACTIONS(1884), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1884), - [anon_sym_o_PLUSe_GT] = ACTIONS(1884), - [anon_sym_e_PLUSo_GT] = ACTIONS(1884), - [anon_sym_err_GT_GT] = ACTIONS(1886), - [anon_sym_out_GT_GT] = ACTIONS(1886), - [anon_sym_e_GT_GT] = ACTIONS(1886), - [anon_sym_o_GT_GT] = ACTIONS(1886), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1886), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1886), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1886), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1886), - [aux_sym_unquoted_token1] = ACTIONS(1884), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(1342), + [anon_sym_true] = ACTIONS(1911), + [anon_sym_false] = ACTIONS(1911), + [anon_sym_null] = ACTIONS(1911), + [aux_sym_cmd_identifier_token38] = ACTIONS(1911), + [aux_sym_cmd_identifier_token39] = ACTIONS(1911), + [aux_sym_cmd_identifier_token40] = ACTIONS(1911), + [sym__newline] = ACTIONS(1911), + [anon_sym_SEMI] = ACTIONS(1911), + [anon_sym_PIPE] = ACTIONS(1911), + [anon_sym_err_GT_PIPE] = ACTIONS(1911), + [anon_sym_out_GT_PIPE] = ACTIONS(1911), + [anon_sym_e_GT_PIPE] = ACTIONS(1911), + [anon_sym_o_GT_PIPE] = ACTIONS(1911), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1911), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1911), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1911), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1911), + [anon_sym_LBRACK] = ACTIONS(1911), + [anon_sym_LPAREN] = ACTIONS(1911), + [anon_sym_RPAREN] = ACTIONS(1911), + [anon_sym_DOLLAR] = ACTIONS(1909), + [anon_sym_DASH_DASH] = ACTIONS(1911), + [anon_sym_DASH] = ACTIONS(1909), + [anon_sym_LBRACE] = ACTIONS(1911), + [anon_sym_RBRACE] = ACTIONS(1911), + [anon_sym_DOT_DOT] = ACTIONS(1909), + [anon_sym_DOT] = ACTIONS(4679), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1911), + [anon_sym_DOT_DOT_LT] = ACTIONS(1911), + [aux_sym__val_number_decimal_token1] = ACTIONS(1909), + [aux_sym__val_number_decimal_token2] = ACTIONS(1911), + [aux_sym__val_number_decimal_token3] = ACTIONS(1911), + [aux_sym__val_number_decimal_token4] = ACTIONS(1911), + [aux_sym__val_number_token1] = ACTIONS(1911), + [aux_sym__val_number_token2] = ACTIONS(1911), + [aux_sym__val_number_token3] = ACTIONS(1911), + [anon_sym_0b] = ACTIONS(1909), + [anon_sym_0o] = ACTIONS(1909), + [anon_sym_0x] = ACTIONS(1909), + [sym_val_date] = ACTIONS(1911), + [anon_sym_DQUOTE] = ACTIONS(1911), + [sym__str_single_quotes] = ACTIONS(1911), + [sym__str_back_ticks] = ACTIONS(1911), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1911), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1911), + [anon_sym_err_GT] = ACTIONS(1909), + [anon_sym_out_GT] = ACTIONS(1909), + [anon_sym_e_GT] = ACTIONS(1909), + [anon_sym_o_GT] = ACTIONS(1909), + [anon_sym_err_PLUSout_GT] = ACTIONS(1909), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1909), + [anon_sym_o_PLUSe_GT] = ACTIONS(1909), + [anon_sym_e_PLUSo_GT] = ACTIONS(1909), + [anon_sym_err_GT_GT] = ACTIONS(1911), + [anon_sym_out_GT_GT] = ACTIONS(1911), + [anon_sym_e_GT_GT] = ACTIONS(1911), + [anon_sym_o_GT_GT] = ACTIONS(1911), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1911), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1911), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1911), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1911), + [aux_sym_unquoted_token1] = ACTIONS(1909), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1911), }, [1323] = { - [sym_cell_path] = STATE(1726), - [sym_path] = STATE(1551), [sym_comment] = STATE(1323), - [aux_sym_cell_path_repeat1] = STATE(1383), - [anon_sym_true] = ACTIONS(1890), - [anon_sym_false] = ACTIONS(1890), - [anon_sym_null] = ACTIONS(1890), - [aux_sym_cmd_identifier_token38] = ACTIONS(1890), - [aux_sym_cmd_identifier_token39] = ACTIONS(1890), - [aux_sym_cmd_identifier_token40] = ACTIONS(1890), - [sym__newline] = ACTIONS(1890), - [anon_sym_SEMI] = ACTIONS(1890), - [anon_sym_PIPE] = ACTIONS(1890), - [anon_sym_err_GT_PIPE] = ACTIONS(1890), - [anon_sym_out_GT_PIPE] = ACTIONS(1890), - [anon_sym_e_GT_PIPE] = ACTIONS(1890), - [anon_sym_o_GT_PIPE] = ACTIONS(1890), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1890), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1890), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1890), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1890), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_RPAREN] = ACTIONS(1890), - [anon_sym_DOLLAR] = ACTIONS(1888), - [anon_sym_DASH_DASH] = ACTIONS(1890), - [anon_sym_DASH] = ACTIONS(1888), - [anon_sym_LBRACE] = ACTIONS(1890), - [anon_sym_RBRACE] = ACTIONS(1890), - [anon_sym_DOT_DOT] = ACTIONS(1888), - [anon_sym_DOT] = ACTIONS(4596), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1890), - [anon_sym_DOT_DOT_LT] = ACTIONS(1890), - [aux_sym__val_number_decimal_token1] = ACTIONS(1888), - [aux_sym__val_number_decimal_token2] = ACTIONS(1890), - [aux_sym__val_number_decimal_token3] = ACTIONS(1890), - [aux_sym__val_number_decimal_token4] = ACTIONS(1890), - [aux_sym__val_number_token1] = ACTIONS(1890), - [aux_sym__val_number_token2] = ACTIONS(1890), - [aux_sym__val_number_token3] = ACTIONS(1890), - [anon_sym_0b] = ACTIONS(1888), - [anon_sym_0o] = ACTIONS(1888), - [anon_sym_0x] = ACTIONS(1888), - [sym_val_date] = ACTIONS(1890), - [anon_sym_DQUOTE] = ACTIONS(1890), - [sym__str_single_quotes] = ACTIONS(1890), - [sym__str_back_ticks] = ACTIONS(1890), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1890), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1890), - [anon_sym_err_GT] = ACTIONS(1888), - [anon_sym_out_GT] = ACTIONS(1888), - [anon_sym_e_GT] = ACTIONS(1888), - [anon_sym_o_GT] = ACTIONS(1888), - [anon_sym_err_PLUSout_GT] = ACTIONS(1888), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1888), - [anon_sym_o_PLUSe_GT] = ACTIONS(1888), - [anon_sym_e_PLUSo_GT] = ACTIONS(1888), - [anon_sym_err_GT_GT] = ACTIONS(1890), - [anon_sym_out_GT_GT] = ACTIONS(1890), - [anon_sym_e_GT_GT] = ACTIONS(1890), - [anon_sym_o_GT_GT] = ACTIONS(1890), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1890), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1890), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1890), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1890), - [aux_sym_unquoted_token1] = ACTIONS(1888), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_EQ] = ACTIONS(1084), + [anon_sym_PLUS_EQ] = ACTIONS(1086), + [anon_sym_DASH_EQ] = ACTIONS(1086), + [anon_sym_STAR_EQ] = ACTIONS(1086), + [anon_sym_SLASH_EQ] = ACTIONS(1086), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1086), + [sym__newline] = ACTIONS(1090), + [anon_sym_SEMI] = ACTIONS(1092), + [anon_sym_PIPE] = ACTIONS(1092), + [anon_sym_err_GT_PIPE] = ACTIONS(1092), + [anon_sym_out_GT_PIPE] = ACTIONS(1092), + [anon_sym_e_GT_PIPE] = ACTIONS(1092), + [anon_sym_o_GT_PIPE] = ACTIONS(1092), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1092), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1092), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1092), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1092), + [anon_sym_RBRACE] = ACTIONS(1092), + [aux_sym_expr_binary_token1] = ACTIONS(1092), + [aux_sym_expr_binary_token2] = ACTIONS(1092), + [aux_sym_expr_binary_token3] = ACTIONS(1092), + [aux_sym_expr_binary_token4] = ACTIONS(1092), + [aux_sym_expr_binary_token5] = ACTIONS(1092), + [aux_sym_expr_binary_token6] = ACTIONS(1092), + [aux_sym_expr_binary_token7] = ACTIONS(1092), + [aux_sym_expr_binary_token8] = ACTIONS(1092), + [aux_sym_expr_binary_token9] = ACTIONS(1092), + [aux_sym_expr_binary_token10] = ACTIONS(1092), + [aux_sym_expr_binary_token11] = ACTIONS(1092), + [aux_sym_expr_binary_token12] = ACTIONS(1092), + [aux_sym_expr_binary_token13] = ACTIONS(1092), + [aux_sym_expr_binary_token14] = ACTIONS(1092), + [aux_sym_expr_binary_token15] = ACTIONS(1092), + [aux_sym_expr_binary_token16] = ACTIONS(1092), + [aux_sym_expr_binary_token17] = ACTIONS(1092), + [aux_sym_expr_binary_token18] = ACTIONS(1092), + [aux_sym_expr_binary_token19] = ACTIONS(1092), + [aux_sym_expr_binary_token20] = ACTIONS(1092), + [aux_sym_expr_binary_token21] = ACTIONS(1092), + [aux_sym_expr_binary_token22] = ACTIONS(1092), + [aux_sym_expr_binary_token23] = ACTIONS(1092), + [aux_sym_expr_binary_token24] = ACTIONS(1092), + [aux_sym_expr_binary_token25] = ACTIONS(1092), + [aux_sym_expr_binary_token26] = ACTIONS(1092), + [aux_sym_expr_binary_token27] = ACTIONS(1092), + [aux_sym_expr_binary_token28] = ACTIONS(1092), + [anon_sym_DOT_DOT2] = ACTIONS(1099), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1101), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1101), + [aux_sym_record_entry_token1] = ACTIONS(4691), + [anon_sym_err_GT] = ACTIONS(1090), + [anon_sym_out_GT] = ACTIONS(1090), + [anon_sym_e_GT] = ACTIONS(1090), + [anon_sym_o_GT] = ACTIONS(1090), + [anon_sym_err_PLUSout_GT] = ACTIONS(1090), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1090), + [anon_sym_o_PLUSe_GT] = ACTIONS(1090), + [anon_sym_e_PLUSo_GT] = ACTIONS(1090), + [anon_sym_err_GT_GT] = ACTIONS(1092), + [anon_sym_out_GT_GT] = ACTIONS(1092), + [anon_sym_e_GT_GT] = ACTIONS(1092), + [anon_sym_o_GT_GT] = ACTIONS(1092), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1092), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1092), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1092), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1092), + [anon_sym_POUND] = ACTIONS(249), }, [1324] = { - [sym_cell_path] = STATE(1727), - [sym_path] = STATE(1551), [sym_comment] = STATE(1324), - [aux_sym_cell_path_repeat1] = STATE(1383), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1894), - [aux_sym_cmd_identifier_token38] = ACTIONS(1894), - [aux_sym_cmd_identifier_token39] = ACTIONS(1894), - [aux_sym_cmd_identifier_token40] = ACTIONS(1894), - [sym__newline] = ACTIONS(1894), - [anon_sym_SEMI] = ACTIONS(1894), - [anon_sym_PIPE] = ACTIONS(1894), - [anon_sym_err_GT_PIPE] = ACTIONS(1894), - [anon_sym_out_GT_PIPE] = ACTIONS(1894), - [anon_sym_e_GT_PIPE] = ACTIONS(1894), - [anon_sym_o_GT_PIPE] = ACTIONS(1894), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1894), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1894), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1894), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1894), - [anon_sym_LBRACK] = ACTIONS(1894), - [anon_sym_LPAREN] = ACTIONS(1894), - [anon_sym_RPAREN] = ACTIONS(1894), - [anon_sym_DOLLAR] = ACTIONS(1892), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_DASH] = ACTIONS(1892), - [anon_sym_LBRACE] = ACTIONS(1894), - [anon_sym_RBRACE] = ACTIONS(1894), - [anon_sym_DOT_DOT] = ACTIONS(1892), - [anon_sym_DOT] = ACTIONS(4596), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1894), - [anon_sym_DOT_DOT_LT] = ACTIONS(1894), - [aux_sym__val_number_decimal_token1] = ACTIONS(1892), - [aux_sym__val_number_decimal_token2] = ACTIONS(1894), - [aux_sym__val_number_decimal_token3] = ACTIONS(1894), - [aux_sym__val_number_decimal_token4] = ACTIONS(1894), - [aux_sym__val_number_token1] = ACTIONS(1894), - [aux_sym__val_number_token2] = ACTIONS(1894), - [aux_sym__val_number_token3] = ACTIONS(1894), - [anon_sym_0b] = ACTIONS(1892), - [anon_sym_0o] = ACTIONS(1892), - [anon_sym_0x] = ACTIONS(1892), - [sym_val_date] = ACTIONS(1894), - [anon_sym_DQUOTE] = ACTIONS(1894), - [sym__str_single_quotes] = ACTIONS(1894), - [sym__str_back_ticks] = ACTIONS(1894), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1894), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1894), - [anon_sym_err_GT] = ACTIONS(1892), - [anon_sym_out_GT] = ACTIONS(1892), - [anon_sym_e_GT] = ACTIONS(1892), - [anon_sym_o_GT] = ACTIONS(1892), - [anon_sym_err_PLUSout_GT] = ACTIONS(1892), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1892), - [anon_sym_o_PLUSe_GT] = ACTIONS(1892), - [anon_sym_e_PLUSo_GT] = ACTIONS(1892), - [anon_sym_err_GT_GT] = ACTIONS(1894), - [anon_sym_out_GT_GT] = ACTIONS(1894), - [anon_sym_e_GT_GT] = ACTIONS(1894), - [anon_sym_o_GT_GT] = ACTIONS(1894), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1894), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1894), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1894), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1894), - [aux_sym_unquoted_token1] = ACTIONS(1892), - [anon_sym_POUND] = ACTIONS(247), + [ts_builtin_sym_end] = ACTIONS(1068), + [anon_sym_EQ] = ACTIONS(1066), + [anon_sym_PLUS_EQ] = ACTIONS(1068), + [anon_sym_DASH_EQ] = ACTIONS(1068), + [anon_sym_STAR_EQ] = ACTIONS(1068), + [anon_sym_SLASH_EQ] = ACTIONS(1068), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1068), + [sym__newline] = ACTIONS(1068), + [anon_sym_SEMI] = ACTIONS(1068), + [anon_sym_PIPE] = ACTIONS(1068), + [anon_sym_err_GT_PIPE] = ACTIONS(1068), + [anon_sym_out_GT_PIPE] = ACTIONS(1068), + [anon_sym_e_GT_PIPE] = ACTIONS(1068), + [anon_sym_o_GT_PIPE] = ACTIONS(1068), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1068), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1068), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1068), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1068), + [aux_sym_expr_binary_token1] = ACTIONS(1068), + [aux_sym_expr_binary_token2] = ACTIONS(1068), + [aux_sym_expr_binary_token3] = ACTIONS(1068), + [aux_sym_expr_binary_token4] = ACTIONS(1068), + [aux_sym_expr_binary_token5] = ACTIONS(1068), + [aux_sym_expr_binary_token6] = ACTIONS(1068), + [aux_sym_expr_binary_token7] = ACTIONS(1068), + [aux_sym_expr_binary_token8] = ACTIONS(1068), + [aux_sym_expr_binary_token9] = ACTIONS(1068), + [aux_sym_expr_binary_token10] = ACTIONS(1068), + [aux_sym_expr_binary_token11] = ACTIONS(1068), + [aux_sym_expr_binary_token12] = ACTIONS(1068), + [aux_sym_expr_binary_token13] = ACTIONS(1068), + [aux_sym_expr_binary_token14] = ACTIONS(1068), + [aux_sym_expr_binary_token15] = ACTIONS(1068), + [aux_sym_expr_binary_token16] = ACTIONS(1068), + [aux_sym_expr_binary_token17] = ACTIONS(1068), + [aux_sym_expr_binary_token18] = ACTIONS(1068), + [aux_sym_expr_binary_token19] = ACTIONS(1068), + [aux_sym_expr_binary_token20] = ACTIONS(1068), + [aux_sym_expr_binary_token21] = ACTIONS(1068), + [aux_sym_expr_binary_token22] = ACTIONS(1068), + [aux_sym_expr_binary_token23] = ACTIONS(1068), + [aux_sym_expr_binary_token24] = ACTIONS(1068), + [aux_sym_expr_binary_token25] = ACTIONS(1068), + [aux_sym_expr_binary_token26] = ACTIONS(1068), + [aux_sym_expr_binary_token27] = ACTIONS(1068), + [aux_sym_expr_binary_token28] = ACTIONS(1068), + [anon_sym_DOT_DOT2] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(1066), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1068), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1068), + [anon_sym_err_GT] = ACTIONS(1066), + [anon_sym_out_GT] = ACTIONS(1066), + [anon_sym_e_GT] = ACTIONS(1066), + [anon_sym_o_GT] = ACTIONS(1066), + [anon_sym_err_PLUSout_GT] = ACTIONS(1066), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1066), + [anon_sym_o_PLUSe_GT] = ACTIONS(1066), + [anon_sym_e_PLUSo_GT] = ACTIONS(1066), + [anon_sym_err_GT_GT] = ACTIONS(1068), + [anon_sym_out_GT_GT] = ACTIONS(1068), + [anon_sym_e_GT_GT] = ACTIONS(1068), + [anon_sym_o_GT_GT] = ACTIONS(1068), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1068), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1068), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1068), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1068), + [anon_sym_POUND] = ACTIONS(249), }, [1325] = { - [sym_cell_path] = STATE(1728), - [sym_path] = STATE(1551), [sym_comment] = STATE(1325), - [aux_sym_cell_path_repeat1] = STATE(1383), - [anon_sym_true] = ACTIONS(1898), - [anon_sym_false] = ACTIONS(1898), - [anon_sym_null] = ACTIONS(1898), - [aux_sym_cmd_identifier_token38] = ACTIONS(1898), - [aux_sym_cmd_identifier_token39] = ACTIONS(1898), - [aux_sym_cmd_identifier_token40] = ACTIONS(1898), - [sym__newline] = ACTIONS(1898), - [anon_sym_SEMI] = ACTIONS(1898), - [anon_sym_PIPE] = ACTIONS(1898), - [anon_sym_err_GT_PIPE] = ACTIONS(1898), - [anon_sym_out_GT_PIPE] = ACTIONS(1898), - [anon_sym_e_GT_PIPE] = ACTIONS(1898), - [anon_sym_o_GT_PIPE] = ACTIONS(1898), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1898), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1898), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1898), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1898), - [anon_sym_LBRACK] = ACTIONS(1898), - [anon_sym_LPAREN] = ACTIONS(1898), - [anon_sym_RPAREN] = ACTIONS(1898), - [anon_sym_DOLLAR] = ACTIONS(1896), - [anon_sym_DASH_DASH] = ACTIONS(1898), - [anon_sym_DASH] = ACTIONS(1896), - [anon_sym_LBRACE] = ACTIONS(1898), - [anon_sym_RBRACE] = ACTIONS(1898), - [anon_sym_DOT_DOT] = ACTIONS(1896), - [anon_sym_DOT] = ACTIONS(4596), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1898), - [anon_sym_DOT_DOT_LT] = ACTIONS(1898), - [aux_sym__val_number_decimal_token1] = ACTIONS(1896), - [aux_sym__val_number_decimal_token2] = ACTIONS(1898), - [aux_sym__val_number_decimal_token3] = ACTIONS(1898), - [aux_sym__val_number_decimal_token4] = ACTIONS(1898), - [aux_sym__val_number_token1] = ACTIONS(1898), - [aux_sym__val_number_token2] = ACTIONS(1898), - [aux_sym__val_number_token3] = ACTIONS(1898), - [anon_sym_0b] = ACTIONS(1896), - [anon_sym_0o] = ACTIONS(1896), - [anon_sym_0x] = ACTIONS(1896), - [sym_val_date] = ACTIONS(1898), - [anon_sym_DQUOTE] = ACTIONS(1898), - [sym__str_single_quotes] = ACTIONS(1898), - [sym__str_back_ticks] = ACTIONS(1898), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1898), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1898), - [anon_sym_err_GT] = ACTIONS(1896), - [anon_sym_out_GT] = ACTIONS(1896), - [anon_sym_e_GT] = ACTIONS(1896), - [anon_sym_o_GT] = ACTIONS(1896), - [anon_sym_err_PLUSout_GT] = ACTIONS(1896), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1896), - [anon_sym_o_PLUSe_GT] = ACTIONS(1896), - [anon_sym_e_PLUSo_GT] = ACTIONS(1896), - [anon_sym_err_GT_GT] = ACTIONS(1898), - [anon_sym_out_GT_GT] = ACTIONS(1898), - [anon_sym_e_GT_GT] = ACTIONS(1898), - [anon_sym_o_GT_GT] = ACTIONS(1898), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1898), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1898), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1898), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1898), - [aux_sym_unquoted_token1] = ACTIONS(1896), - [anon_sym_POUND] = ACTIONS(247), - }, - [1326] = { - [sym_cell_path] = STATE(1730), - [sym_path] = STATE(1551), - [sym_comment] = STATE(1326), - [aux_sym_cell_path_repeat1] = STATE(1383), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1902), - [anon_sym_null] = ACTIONS(1902), - [aux_sym_cmd_identifier_token38] = ACTIONS(1902), - [aux_sym_cmd_identifier_token39] = ACTIONS(1902), - [aux_sym_cmd_identifier_token40] = ACTIONS(1902), - [sym__newline] = ACTIONS(1902), - [anon_sym_SEMI] = ACTIONS(1902), - [anon_sym_PIPE] = ACTIONS(1902), - [anon_sym_err_GT_PIPE] = ACTIONS(1902), - [anon_sym_out_GT_PIPE] = ACTIONS(1902), - [anon_sym_e_GT_PIPE] = ACTIONS(1902), - [anon_sym_o_GT_PIPE] = ACTIONS(1902), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1902), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1902), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1902), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1902), - [anon_sym_LBRACK] = ACTIONS(1902), - [anon_sym_LPAREN] = ACTIONS(1902), - [anon_sym_RPAREN] = ACTIONS(1902), - [anon_sym_DOLLAR] = ACTIONS(1900), - [anon_sym_DASH_DASH] = ACTIONS(1902), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LBRACE] = ACTIONS(1902), - [anon_sym_RBRACE] = ACTIONS(1902), - [anon_sym_DOT_DOT] = ACTIONS(1900), - [anon_sym_DOT] = ACTIONS(4596), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), - [anon_sym_DOT_DOT_LT] = ACTIONS(1902), - [aux_sym__val_number_decimal_token1] = ACTIONS(1900), - [aux_sym__val_number_decimal_token2] = ACTIONS(1902), - [aux_sym__val_number_decimal_token3] = ACTIONS(1902), - [aux_sym__val_number_decimal_token4] = ACTIONS(1902), - [aux_sym__val_number_token1] = ACTIONS(1902), - [aux_sym__val_number_token2] = ACTIONS(1902), - [aux_sym__val_number_token3] = ACTIONS(1902), - [anon_sym_0b] = ACTIONS(1900), - [anon_sym_0o] = ACTIONS(1900), - [anon_sym_0x] = ACTIONS(1900), - [sym_val_date] = ACTIONS(1902), - [anon_sym_DQUOTE] = ACTIONS(1902), - [sym__str_single_quotes] = ACTIONS(1902), - [sym__str_back_ticks] = ACTIONS(1902), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1902), - [anon_sym_err_GT] = ACTIONS(1900), - [anon_sym_out_GT] = ACTIONS(1900), - [anon_sym_e_GT] = ACTIONS(1900), - [anon_sym_o_GT] = ACTIONS(1900), - [anon_sym_err_PLUSout_GT] = ACTIONS(1900), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1900), - [anon_sym_o_PLUSe_GT] = ACTIONS(1900), - [anon_sym_e_PLUSo_GT] = ACTIONS(1900), - [anon_sym_err_GT_GT] = ACTIONS(1902), - [anon_sym_out_GT_GT] = ACTIONS(1902), - [anon_sym_e_GT_GT] = ACTIONS(1902), - [anon_sym_o_GT_GT] = ACTIONS(1902), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1902), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1902), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1902), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1902), - [aux_sym_unquoted_token1] = ACTIONS(1900), - [anon_sym_POUND] = ACTIONS(247), - }, - [1327] = { - [sym_cell_path] = STATE(1731), - [sym_path] = STATE(1551), - [sym_comment] = STATE(1327), - [aux_sym_cell_path_repeat1] = STATE(1383), - [anon_sym_true] = ACTIONS(1906), - [anon_sym_false] = ACTIONS(1906), - [anon_sym_null] = ACTIONS(1906), - [aux_sym_cmd_identifier_token38] = ACTIONS(1906), - [aux_sym_cmd_identifier_token39] = ACTIONS(1906), - [aux_sym_cmd_identifier_token40] = ACTIONS(1906), - [sym__newline] = ACTIONS(1906), - [anon_sym_SEMI] = ACTIONS(1906), - [anon_sym_PIPE] = ACTIONS(1906), - [anon_sym_err_GT_PIPE] = ACTIONS(1906), - [anon_sym_out_GT_PIPE] = ACTIONS(1906), - [anon_sym_e_GT_PIPE] = ACTIONS(1906), - [anon_sym_o_GT_PIPE] = ACTIONS(1906), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1906), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1906), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1906), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1906), - [anon_sym_LBRACK] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(1906), - [anon_sym_RPAREN] = ACTIONS(1906), - [anon_sym_DOLLAR] = ACTIONS(1904), - [anon_sym_DASH_DASH] = ACTIONS(1906), - [anon_sym_DASH] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_RBRACE] = ACTIONS(1906), - [anon_sym_DOT_DOT] = ACTIONS(1904), - [anon_sym_DOT] = ACTIONS(4596), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1906), - [anon_sym_DOT_DOT_LT] = ACTIONS(1906), - [aux_sym__val_number_decimal_token1] = ACTIONS(1904), - [aux_sym__val_number_decimal_token2] = ACTIONS(1906), - [aux_sym__val_number_decimal_token3] = ACTIONS(1906), - [aux_sym__val_number_decimal_token4] = ACTIONS(1906), - [aux_sym__val_number_token1] = ACTIONS(1906), - [aux_sym__val_number_token2] = ACTIONS(1906), - [aux_sym__val_number_token3] = ACTIONS(1906), - [anon_sym_0b] = ACTIONS(1904), - [anon_sym_0o] = ACTIONS(1904), - [anon_sym_0x] = ACTIONS(1904), - [sym_val_date] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1906), - [sym__str_single_quotes] = ACTIONS(1906), - [sym__str_back_ticks] = ACTIONS(1906), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1906), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1906), - [anon_sym_err_GT] = ACTIONS(1904), - [anon_sym_out_GT] = ACTIONS(1904), - [anon_sym_e_GT] = ACTIONS(1904), - [anon_sym_o_GT] = ACTIONS(1904), - [anon_sym_err_PLUSout_GT] = ACTIONS(1904), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1904), - [anon_sym_o_PLUSe_GT] = ACTIONS(1904), - [anon_sym_e_PLUSo_GT] = ACTIONS(1904), - [anon_sym_err_GT_GT] = ACTIONS(1906), - [anon_sym_out_GT_GT] = ACTIONS(1906), - [anon_sym_e_GT_GT] = ACTIONS(1906), - [anon_sym_o_GT_GT] = ACTIONS(1906), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1906), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1906), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1906), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1906), - [aux_sym_unquoted_token1] = ACTIONS(1904), - [anon_sym_POUND] = ACTIONS(247), - }, - [1328] = { - [sym_comment] = STATE(1328), - [ts_builtin_sym_end] = ACTIONS(1520), - [sym__newline] = ACTIONS(1520), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_err_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_GT_PIPE] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1520), - [anon_sym_LPAREN2] = ACTIONS(1520), - [aux_sym_expr_binary_token1] = ACTIONS(1520), - [aux_sym_expr_binary_token2] = ACTIONS(1520), - [aux_sym_expr_binary_token3] = ACTIONS(1520), - [aux_sym_expr_binary_token4] = ACTIONS(1520), - [aux_sym_expr_binary_token5] = ACTIONS(1520), - [aux_sym_expr_binary_token6] = ACTIONS(1520), - [aux_sym_expr_binary_token7] = ACTIONS(1520), - [aux_sym_expr_binary_token8] = ACTIONS(1520), - [aux_sym_expr_binary_token9] = ACTIONS(1520), - [aux_sym_expr_binary_token10] = ACTIONS(1520), - [aux_sym_expr_binary_token11] = ACTIONS(1520), - [aux_sym_expr_binary_token12] = ACTIONS(1520), - [aux_sym_expr_binary_token13] = ACTIONS(1520), - [aux_sym_expr_binary_token14] = ACTIONS(1520), - [aux_sym_expr_binary_token15] = ACTIONS(1520), - [aux_sym_expr_binary_token16] = ACTIONS(1520), - [aux_sym_expr_binary_token17] = ACTIONS(1520), - [aux_sym_expr_binary_token18] = ACTIONS(1520), - [aux_sym_expr_binary_token19] = ACTIONS(1520), - [aux_sym_expr_binary_token20] = ACTIONS(1520), - [aux_sym_expr_binary_token21] = ACTIONS(1520), - [aux_sym_expr_binary_token22] = ACTIONS(1520), - [aux_sym_expr_binary_token23] = ACTIONS(1520), - [aux_sym_expr_binary_token24] = ACTIONS(1520), - [aux_sym_expr_binary_token25] = ACTIONS(1520), - [aux_sym_expr_binary_token26] = ACTIONS(1520), - [aux_sym_expr_binary_token27] = ACTIONS(1520), - [aux_sym_expr_binary_token28] = ACTIONS(1520), - [anon_sym_DOT_DOT2] = ACTIONS(1518), - [anon_sym_DOT] = ACTIONS(4650), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), - [aux_sym__immediate_decimal_token2] = ACTIONS(4652), - [sym_filesize_unit] = ACTIONS(1520), - [sym_duration_unit] = ACTIONS(1520), - [anon_sym_err_GT] = ACTIONS(1518), - [anon_sym_out_GT] = ACTIONS(1518), - [anon_sym_e_GT] = ACTIONS(1518), - [anon_sym_o_GT] = ACTIONS(1518), - [anon_sym_err_PLUSout_GT] = ACTIONS(1518), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), - [anon_sym_o_PLUSe_GT] = ACTIONS(1518), - [anon_sym_e_PLUSo_GT] = ACTIONS(1518), - [anon_sym_err_GT_GT] = ACTIONS(1520), - [anon_sym_out_GT_GT] = ACTIONS(1520), - [anon_sym_e_GT_GT] = ACTIONS(1520), - [anon_sym_o_GT_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1520), - [aux_sym_unquoted_token2] = ACTIONS(1518), - [anon_sym_POUND] = ACTIONS(247), - }, - [1329] = { - [sym_cell_path] = STATE(1746), - [sym_path] = STATE(1551), - [sym_comment] = STATE(1329), - [aux_sym_cell_path_repeat1] = STATE(1383), - [anon_sym_true] = ACTIONS(1830), - [anon_sym_false] = ACTIONS(1830), - [anon_sym_null] = ACTIONS(1830), - [aux_sym_cmd_identifier_token38] = ACTIONS(1830), - [aux_sym_cmd_identifier_token39] = ACTIONS(1830), - [aux_sym_cmd_identifier_token40] = ACTIONS(1830), - [sym__newline] = ACTIONS(1830), - [anon_sym_SEMI] = ACTIONS(1830), - [anon_sym_PIPE] = ACTIONS(1830), - [anon_sym_err_GT_PIPE] = ACTIONS(1830), - [anon_sym_out_GT_PIPE] = ACTIONS(1830), - [anon_sym_e_GT_PIPE] = ACTIONS(1830), - [anon_sym_o_GT_PIPE] = ACTIONS(1830), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1830), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1830), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1830), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1830), - [anon_sym_LBRACK] = ACTIONS(1830), - [anon_sym_LPAREN] = ACTIONS(1830), - [anon_sym_RPAREN] = ACTIONS(1830), - [anon_sym_DOLLAR] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1828), - [anon_sym_LBRACE] = ACTIONS(1830), - [anon_sym_RBRACE] = ACTIONS(1830), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_DOT] = ACTIONS(4596), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1830), - [anon_sym_DOT_DOT_LT] = ACTIONS(1830), - [aux_sym__val_number_decimal_token1] = ACTIONS(1828), - [aux_sym__val_number_decimal_token2] = ACTIONS(1830), - [aux_sym__val_number_decimal_token3] = ACTIONS(1830), - [aux_sym__val_number_decimal_token4] = ACTIONS(1830), - [aux_sym__val_number_token1] = ACTIONS(1830), - [aux_sym__val_number_token2] = ACTIONS(1830), - [aux_sym__val_number_token3] = ACTIONS(1830), - [anon_sym_0b] = ACTIONS(1828), - [anon_sym_0o] = ACTIONS(1828), - [anon_sym_0x] = ACTIONS(1828), - [sym_val_date] = ACTIONS(1830), - [anon_sym_DQUOTE] = ACTIONS(1830), - [sym__str_single_quotes] = ACTIONS(1830), - [sym__str_back_ticks] = ACTIONS(1830), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1830), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1830), - [anon_sym_err_GT] = ACTIONS(1828), - [anon_sym_out_GT] = ACTIONS(1828), - [anon_sym_e_GT] = ACTIONS(1828), - [anon_sym_o_GT] = ACTIONS(1828), - [anon_sym_err_PLUSout_GT] = ACTIONS(1828), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1828), - [anon_sym_o_PLUSe_GT] = ACTIONS(1828), - [anon_sym_e_PLUSo_GT] = ACTIONS(1828), - [anon_sym_err_GT_GT] = ACTIONS(1830), - [anon_sym_out_GT_GT] = ACTIONS(1830), - [anon_sym_e_GT_GT] = ACTIONS(1830), - [anon_sym_o_GT_GT] = ACTIONS(1830), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1830), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1830), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1830), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1830), - [aux_sym_unquoted_token1] = ACTIONS(1828), - [anon_sym_POUND] = ACTIONS(247), - }, - [1330] = { - [sym_comment] = STATE(1330), [ts_builtin_sym_end] = ACTIONS(1072), - [anon_sym_EQ] = ACTIONS(4654), - [anon_sym_PLUS_EQ] = ACTIONS(4656), - [anon_sym_DASH_EQ] = ACTIONS(4656), - [anon_sym_STAR_EQ] = ACTIONS(4656), - [anon_sym_SLASH_EQ] = ACTIONS(4656), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4656), + [anon_sym_EQ] = ACTIONS(1070), + [anon_sym_PLUS_EQ] = ACTIONS(1072), + [anon_sym_DASH_EQ] = ACTIONS(1072), + [anon_sym_STAR_EQ] = ACTIONS(1072), + [anon_sym_SLASH_EQ] = ACTIONS(1072), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1072), [sym__newline] = ACTIONS(1072), [anon_sym_SEMI] = ACTIONS(1072), [anon_sym_PIPE] = ACTIONS(1072), @@ -200892,9 +203527,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_expr_binary_token26] = ACTIONS(1072), [aux_sym_expr_binary_token27] = ACTIONS(1072), [aux_sym_expr_binary_token28] = ACTIONS(1072), - [anon_sym_DOT_DOT2] = ACTIONS(4658), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4660), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4660), + [anon_sym_DOT_DOT2] = ACTIONS(1070), + [anon_sym_DOT] = ACTIONS(1070), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1072), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1072), [anon_sym_err_GT] = ACTIONS(1070), [anon_sym_out_GT] = ACTIONS(1070), [anon_sym_e_GT] = ACTIONS(1070), @@ -200911,2667 +203547,1950 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1072), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1072), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1072), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + }, + [1326] = { + [sym_comment] = STATE(1326), + [anon_sym_EQ] = ACTIONS(1078), + [anon_sym_PLUS_EQ] = ACTIONS(1080), + [anon_sym_DASH_EQ] = ACTIONS(1080), + [anon_sym_STAR_EQ] = ACTIONS(1080), + [anon_sym_SLASH_EQ] = ACTIONS(1080), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1080), + [sym__newline] = ACTIONS(1078), + [anon_sym_SEMI] = ACTIONS(1080), + [anon_sym_PIPE] = ACTIONS(1080), + [anon_sym_err_GT_PIPE] = ACTIONS(1080), + [anon_sym_out_GT_PIPE] = ACTIONS(1080), + [anon_sym_e_GT_PIPE] = ACTIONS(1080), + [anon_sym_o_GT_PIPE] = ACTIONS(1080), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1080), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1080), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1080), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1080), + [anon_sym_RPAREN] = ACTIONS(1080), + [anon_sym_LBRACE] = ACTIONS(1080), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1080), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1080), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1080), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1080), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1080), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1080), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1080), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1080), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1080), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1080), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1080), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1080), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1080), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1080), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1080), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1080), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1080), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1080), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1080), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1080), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1080), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1080), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1080), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1080), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1080), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1080), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1080), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1080), + [anon_sym_DOT_DOT2] = ACTIONS(1078), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1080), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1080), + [anon_sym_err_GT] = ACTIONS(1078), + [anon_sym_out_GT] = ACTIONS(1078), + [anon_sym_e_GT] = ACTIONS(1078), + [anon_sym_o_GT] = ACTIONS(1078), + [anon_sym_err_PLUSout_GT] = ACTIONS(1078), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1078), + [anon_sym_o_PLUSe_GT] = ACTIONS(1078), + [anon_sym_e_PLUSo_GT] = ACTIONS(1078), + [anon_sym_err_GT_GT] = ACTIONS(1080), + [anon_sym_out_GT_GT] = ACTIONS(1080), + [anon_sym_e_GT_GT] = ACTIONS(1080), + [anon_sym_o_GT_GT] = ACTIONS(1080), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1080), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1080), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1080), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1080), + [anon_sym_POUND] = ACTIONS(249), + }, + [1327] = { + [sym_comment] = STATE(1327), + [ts_builtin_sym_end] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(1705), + [anon_sym_false] = ACTIONS(1705), + [anon_sym_null] = ACTIONS(1705), + [aux_sym_cmd_identifier_token38] = ACTIONS(1705), + [aux_sym_cmd_identifier_token39] = ACTIONS(1705), + [aux_sym_cmd_identifier_token40] = ACTIONS(1705), + [sym__newline] = ACTIONS(1705), + [anon_sym_SEMI] = ACTIONS(1705), + [anon_sym_PIPE] = ACTIONS(1705), + [anon_sym_err_GT_PIPE] = ACTIONS(1705), + [anon_sym_out_GT_PIPE] = ACTIONS(1705), + [anon_sym_e_GT_PIPE] = ACTIONS(1705), + [anon_sym_o_GT_PIPE] = ACTIONS(1705), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1705), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1705), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1705), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1705), + [anon_sym_LBRACK] = ACTIONS(1705), + [anon_sym_LPAREN] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1703), + [anon_sym_DASH_DASH] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_LBRACE] = ACTIONS(1705), + [anon_sym_DOT_DOT] = ACTIONS(1703), + [anon_sym_DOT_DOT2] = ACTIONS(1703), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT] = ACTIONS(1703), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1705), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1705), + [aux_sym__immediate_decimal_token1] = ACTIONS(4693), + [aux_sym__immediate_decimal_token2] = ACTIONS(4695), + [aux_sym__val_number_decimal_token1] = ACTIONS(1703), + [aux_sym__val_number_decimal_token2] = ACTIONS(1705), + [aux_sym__val_number_decimal_token3] = ACTIONS(1705), + [aux_sym__val_number_decimal_token4] = ACTIONS(1705), + [aux_sym__val_number_token1] = ACTIONS(1705), + [aux_sym__val_number_token2] = ACTIONS(1705), + [aux_sym__val_number_token3] = ACTIONS(1705), + [anon_sym_0b] = ACTIONS(1703), + [anon_sym_0o] = ACTIONS(1703), + [anon_sym_0x] = ACTIONS(1703), + [sym_val_date] = ACTIONS(1705), + [anon_sym_DQUOTE] = ACTIONS(1705), + [sym__str_single_quotes] = ACTIONS(1705), + [sym__str_back_ticks] = ACTIONS(1705), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1705), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1705), + [anon_sym_err_GT] = ACTIONS(1703), + [anon_sym_out_GT] = ACTIONS(1703), + [anon_sym_e_GT] = ACTIONS(1703), + [anon_sym_o_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT] = ACTIONS(1703), + [anon_sym_err_GT_GT] = ACTIONS(1705), + [anon_sym_out_GT_GT] = ACTIONS(1705), + [anon_sym_e_GT_GT] = ACTIONS(1705), + [anon_sym_o_GT_GT] = ACTIONS(1705), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1705), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1705), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1705), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1705), + [aux_sym_unquoted_token1] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1705), + }, + [1328] = { + [sym_comment] = STATE(1328), + [aux_sym_cmd_identifier_token41] = ACTIONS(1536), + [sym__newline] = ACTIONS(1536), + [anon_sym_SEMI] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_err_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_GT_PIPE] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), + [anon_sym_RBRACE] = ACTIONS(1538), + [anon_sym_EQ_GT] = ACTIONS(1538), + [aux_sym_expr_binary_token1] = ACTIONS(1538), + [aux_sym_expr_binary_token2] = ACTIONS(1538), + [aux_sym_expr_binary_token3] = ACTIONS(1538), + [aux_sym_expr_binary_token4] = ACTIONS(1538), + [aux_sym_expr_binary_token5] = ACTIONS(1538), + [aux_sym_expr_binary_token6] = ACTIONS(1538), + [aux_sym_expr_binary_token7] = ACTIONS(1538), + [aux_sym_expr_binary_token8] = ACTIONS(1538), + [aux_sym_expr_binary_token9] = ACTIONS(1538), + [aux_sym_expr_binary_token10] = ACTIONS(1538), + [aux_sym_expr_binary_token11] = ACTIONS(1538), + [aux_sym_expr_binary_token12] = ACTIONS(1538), + [aux_sym_expr_binary_token13] = ACTIONS(1538), + [aux_sym_expr_binary_token14] = ACTIONS(1538), + [aux_sym_expr_binary_token15] = ACTIONS(1538), + [aux_sym_expr_binary_token16] = ACTIONS(1538), + [aux_sym_expr_binary_token17] = ACTIONS(1538), + [aux_sym_expr_binary_token18] = ACTIONS(1538), + [aux_sym_expr_binary_token19] = ACTIONS(1538), + [aux_sym_expr_binary_token20] = ACTIONS(1538), + [aux_sym_expr_binary_token21] = ACTIONS(1538), + [aux_sym_expr_binary_token22] = ACTIONS(1538), + [aux_sym_expr_binary_token23] = ACTIONS(1538), + [aux_sym_expr_binary_token24] = ACTIONS(1538), + [aux_sym_expr_binary_token25] = ACTIONS(1538), + [aux_sym_expr_binary_token26] = ACTIONS(1538), + [aux_sym_expr_binary_token27] = ACTIONS(1538), + [aux_sym_expr_binary_token28] = ACTIONS(1538), + [anon_sym_DOT_DOT2] = ACTIONS(1536), + [anon_sym_DOT] = ACTIONS(4697), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), + [aux_sym__immediate_decimal_token2] = ACTIONS(4699), + [sym_filesize_unit] = ACTIONS(1538), + [sym_duration_unit] = ACTIONS(1538), + [aux_sym_record_entry_token1] = ACTIONS(1538), + [anon_sym_err_GT] = ACTIONS(1536), + [anon_sym_out_GT] = ACTIONS(1536), + [anon_sym_e_GT] = ACTIONS(1536), + [anon_sym_o_GT] = ACTIONS(1536), + [anon_sym_err_PLUSout_GT] = ACTIONS(1536), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), + [anon_sym_o_PLUSe_GT] = ACTIONS(1536), + [anon_sym_e_PLUSo_GT] = ACTIONS(1536), + [anon_sym_err_GT_GT] = ACTIONS(1538), + [anon_sym_out_GT_GT] = ACTIONS(1538), + [anon_sym_e_GT_GT] = ACTIONS(1538), + [anon_sym_o_GT_GT] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), + [anon_sym_POUND] = ACTIONS(249), + }, + [1329] = { + [sym_comment] = STATE(1329), + [aux_sym_cmd_identifier_token41] = ACTIONS(1528), + [sym__newline] = ACTIONS(1528), + [anon_sym_SEMI] = ACTIONS(1530), + [anon_sym_PIPE] = ACTIONS(1530), + [anon_sym_err_GT_PIPE] = ACTIONS(1530), + [anon_sym_out_GT_PIPE] = ACTIONS(1530), + [anon_sym_e_GT_PIPE] = ACTIONS(1530), + [anon_sym_o_GT_PIPE] = ACTIONS(1530), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1530), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1530), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1530), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1530), + [anon_sym_RBRACE] = ACTIONS(1530), + [anon_sym_EQ_GT] = ACTIONS(1530), + [aux_sym_expr_binary_token1] = ACTIONS(1530), + [aux_sym_expr_binary_token2] = ACTIONS(1530), + [aux_sym_expr_binary_token3] = ACTIONS(1530), + [aux_sym_expr_binary_token4] = ACTIONS(1530), + [aux_sym_expr_binary_token5] = ACTIONS(1530), + [aux_sym_expr_binary_token6] = ACTIONS(1530), + [aux_sym_expr_binary_token7] = ACTIONS(1530), + [aux_sym_expr_binary_token8] = ACTIONS(1530), + [aux_sym_expr_binary_token9] = ACTIONS(1530), + [aux_sym_expr_binary_token10] = ACTIONS(1530), + [aux_sym_expr_binary_token11] = ACTIONS(1530), + [aux_sym_expr_binary_token12] = ACTIONS(1530), + [aux_sym_expr_binary_token13] = ACTIONS(1530), + [aux_sym_expr_binary_token14] = ACTIONS(1530), + [aux_sym_expr_binary_token15] = ACTIONS(1530), + [aux_sym_expr_binary_token16] = ACTIONS(1530), + [aux_sym_expr_binary_token17] = ACTIONS(1530), + [aux_sym_expr_binary_token18] = ACTIONS(1530), + [aux_sym_expr_binary_token19] = ACTIONS(1530), + [aux_sym_expr_binary_token20] = ACTIONS(1530), + [aux_sym_expr_binary_token21] = ACTIONS(1530), + [aux_sym_expr_binary_token22] = ACTIONS(1530), + [aux_sym_expr_binary_token23] = ACTIONS(1530), + [aux_sym_expr_binary_token24] = ACTIONS(1530), + [aux_sym_expr_binary_token25] = ACTIONS(1530), + [aux_sym_expr_binary_token26] = ACTIONS(1530), + [aux_sym_expr_binary_token27] = ACTIONS(1530), + [aux_sym_expr_binary_token28] = ACTIONS(1530), + [anon_sym_DOT_DOT2] = ACTIONS(1528), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1530), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1530), + [aux_sym__immediate_decimal_token1] = ACTIONS(4701), + [aux_sym__immediate_decimal_token2] = ACTIONS(4703), + [sym_filesize_unit] = ACTIONS(1530), + [sym_duration_unit] = ACTIONS(1530), + [aux_sym_record_entry_token1] = ACTIONS(1530), + [anon_sym_err_GT] = ACTIONS(1528), + [anon_sym_out_GT] = ACTIONS(1528), + [anon_sym_e_GT] = ACTIONS(1528), + [anon_sym_o_GT] = ACTIONS(1528), + [anon_sym_err_PLUSout_GT] = ACTIONS(1528), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), + [anon_sym_o_PLUSe_GT] = ACTIONS(1528), + [anon_sym_e_PLUSo_GT] = ACTIONS(1528), + [anon_sym_err_GT_GT] = ACTIONS(1530), + [anon_sym_out_GT_GT] = ACTIONS(1530), + [anon_sym_e_GT_GT] = ACTIONS(1530), + [anon_sym_o_GT_GT] = ACTIONS(1530), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1530), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1530), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1530), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1530), + [anon_sym_POUND] = ACTIONS(249), + }, + [1330] = { + [sym_cell_path] = STATE(1593), + [sym_path] = STATE(1538), + [sym_comment] = STATE(1330), + [aux_sym_cell_path_repeat1] = STATE(1342), + [anon_sym_true] = ACTIONS(1023), + [anon_sym_false] = ACTIONS(1023), + [anon_sym_null] = ACTIONS(1023), + [aux_sym_cmd_identifier_token38] = ACTIONS(1023), + [aux_sym_cmd_identifier_token39] = ACTIONS(1023), + [aux_sym_cmd_identifier_token40] = ACTIONS(1023), + [sym__newline] = ACTIONS(1023), + [anon_sym_SEMI] = ACTIONS(1023), + [anon_sym_PIPE] = ACTIONS(1023), + [anon_sym_err_GT_PIPE] = ACTIONS(1023), + [anon_sym_out_GT_PIPE] = ACTIONS(1023), + [anon_sym_e_GT_PIPE] = ACTIONS(1023), + [anon_sym_o_GT_PIPE] = ACTIONS(1023), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1023), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1023), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1023), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1023), + [anon_sym_LBRACK] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1023), + [anon_sym_RPAREN] = ACTIONS(1023), + [anon_sym_DOLLAR] = ACTIONS(1021), + [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_LBRACE] = ACTIONS(1023), + [anon_sym_RBRACE] = ACTIONS(1023), + [anon_sym_DOT_DOT] = ACTIONS(1021), + [anon_sym_DOT] = ACTIONS(4679), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1023), + [anon_sym_DOT_DOT_LT] = ACTIONS(1023), + [aux_sym__val_number_decimal_token1] = ACTIONS(1021), + [aux_sym__val_number_decimal_token2] = ACTIONS(1023), + [aux_sym__val_number_decimal_token3] = ACTIONS(1023), + [aux_sym__val_number_decimal_token4] = ACTIONS(1023), + [aux_sym__val_number_token1] = ACTIONS(1023), + [aux_sym__val_number_token2] = ACTIONS(1023), + [aux_sym__val_number_token3] = ACTIONS(1023), + [anon_sym_0b] = ACTIONS(1021), + [anon_sym_0o] = ACTIONS(1021), + [anon_sym_0x] = ACTIONS(1021), + [sym_val_date] = ACTIONS(1023), + [anon_sym_DQUOTE] = ACTIONS(1023), + [sym__str_single_quotes] = ACTIONS(1023), + [sym__str_back_ticks] = ACTIONS(1023), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1023), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1023), + [anon_sym_err_GT] = ACTIONS(1021), + [anon_sym_out_GT] = ACTIONS(1021), + [anon_sym_e_GT] = ACTIONS(1021), + [anon_sym_o_GT] = ACTIONS(1021), + [anon_sym_err_PLUSout_GT] = ACTIONS(1021), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1021), + [anon_sym_o_PLUSe_GT] = ACTIONS(1021), + [anon_sym_e_PLUSo_GT] = ACTIONS(1021), + [anon_sym_err_GT_GT] = ACTIONS(1023), + [anon_sym_out_GT_GT] = ACTIONS(1023), + [anon_sym_e_GT_GT] = ACTIONS(1023), + [anon_sym_o_GT_GT] = ACTIONS(1023), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1023), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1023), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1023), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1023), + [aux_sym_unquoted_token1] = ACTIONS(1021), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1023), }, [1331] = { [sym_comment] = STATE(1331), - [ts_builtin_sym_end] = ACTIONS(1542), - [sym__newline] = ACTIONS(1542), - [anon_sym_SEMI] = ACTIONS(1542), - [anon_sym_PIPE] = ACTIONS(1542), - [anon_sym_err_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_GT_PIPE] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1542), - [anon_sym_LPAREN2] = ACTIONS(1542), - [aux_sym_expr_binary_token1] = ACTIONS(1542), - [aux_sym_expr_binary_token2] = ACTIONS(1542), - [aux_sym_expr_binary_token3] = ACTIONS(1542), - [aux_sym_expr_binary_token4] = ACTIONS(1542), - [aux_sym_expr_binary_token5] = ACTIONS(1542), - [aux_sym_expr_binary_token6] = ACTIONS(1542), - [aux_sym_expr_binary_token7] = ACTIONS(1542), - [aux_sym_expr_binary_token8] = ACTIONS(1542), - [aux_sym_expr_binary_token9] = ACTIONS(1542), - [aux_sym_expr_binary_token10] = ACTIONS(1542), - [aux_sym_expr_binary_token11] = ACTIONS(1542), - [aux_sym_expr_binary_token12] = ACTIONS(1542), - [aux_sym_expr_binary_token13] = ACTIONS(1542), - [aux_sym_expr_binary_token14] = ACTIONS(1542), - [aux_sym_expr_binary_token15] = ACTIONS(1542), - [aux_sym_expr_binary_token16] = ACTIONS(1542), - [aux_sym_expr_binary_token17] = ACTIONS(1542), - [aux_sym_expr_binary_token18] = ACTIONS(1542), - [aux_sym_expr_binary_token19] = ACTIONS(1542), - [aux_sym_expr_binary_token20] = ACTIONS(1542), - [aux_sym_expr_binary_token21] = ACTIONS(1542), - [aux_sym_expr_binary_token22] = ACTIONS(1542), - [aux_sym_expr_binary_token23] = ACTIONS(1542), - [aux_sym_expr_binary_token24] = ACTIONS(1542), - [aux_sym_expr_binary_token25] = ACTIONS(1542), - [aux_sym_expr_binary_token26] = ACTIONS(1542), - [aux_sym_expr_binary_token27] = ACTIONS(1542), - [aux_sym_expr_binary_token28] = ACTIONS(1542), - [anon_sym_DOT_DOT2] = ACTIONS(1540), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1542), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1542), - [aux_sym__immediate_decimal_token1] = ACTIONS(4662), - [aux_sym__immediate_decimal_token2] = ACTIONS(4664), - [sym_filesize_unit] = ACTIONS(1542), - [sym_duration_unit] = ACTIONS(1542), - [anon_sym_err_GT] = ACTIONS(1540), - [anon_sym_out_GT] = ACTIONS(1540), - [anon_sym_e_GT] = ACTIONS(1540), - [anon_sym_o_GT] = ACTIONS(1540), - [anon_sym_err_PLUSout_GT] = ACTIONS(1540), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1540), - [anon_sym_o_PLUSe_GT] = ACTIONS(1540), - [anon_sym_e_PLUSo_GT] = ACTIONS(1540), - [anon_sym_err_GT_GT] = ACTIONS(1542), - [anon_sym_out_GT_GT] = ACTIONS(1542), - [anon_sym_e_GT_GT] = ACTIONS(1542), - [anon_sym_o_GT_GT] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1542), - [aux_sym_unquoted_token2] = ACTIONS(1540), - [anon_sym_POUND] = ACTIONS(247), + [ts_builtin_sym_end] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1717), + [anon_sym_false] = ACTIONS(1717), + [anon_sym_null] = ACTIONS(1717), + [aux_sym_cmd_identifier_token38] = ACTIONS(1717), + [aux_sym_cmd_identifier_token39] = ACTIONS(1717), + [aux_sym_cmd_identifier_token40] = ACTIONS(1717), + [sym__newline] = ACTIONS(1717), + [anon_sym_SEMI] = ACTIONS(1717), + [anon_sym_PIPE] = ACTIONS(1717), + [anon_sym_err_GT_PIPE] = ACTIONS(1717), + [anon_sym_out_GT_PIPE] = ACTIONS(1717), + [anon_sym_e_GT_PIPE] = ACTIONS(1717), + [anon_sym_o_GT_PIPE] = ACTIONS(1717), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1717), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1717), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1717), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1717), + [anon_sym_LBRACK] = ACTIONS(1717), + [anon_sym_LPAREN] = ACTIONS(1717), + [anon_sym_DOLLAR] = ACTIONS(1715), + [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_LBRACE] = ACTIONS(1717), + [anon_sym_DOT_DOT] = ACTIONS(1715), + [anon_sym_DOT_DOT2] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(4705), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1715), + [anon_sym_DOT_DOT_LT] = ACTIONS(1715), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1717), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1717), + [aux_sym__immediate_decimal_token2] = ACTIONS(4707), + [aux_sym__val_number_decimal_token1] = ACTIONS(1715), + [aux_sym__val_number_decimal_token2] = ACTIONS(1717), + [aux_sym__val_number_decimal_token3] = ACTIONS(1717), + [aux_sym__val_number_decimal_token4] = ACTIONS(1717), + [aux_sym__val_number_token1] = ACTIONS(1717), + [aux_sym__val_number_token2] = ACTIONS(1717), + [aux_sym__val_number_token3] = ACTIONS(1717), + [anon_sym_0b] = ACTIONS(1715), + [anon_sym_0o] = ACTIONS(1715), + [anon_sym_0x] = ACTIONS(1715), + [sym_val_date] = ACTIONS(1717), + [anon_sym_DQUOTE] = ACTIONS(1717), + [sym__str_single_quotes] = ACTIONS(1717), + [sym__str_back_ticks] = ACTIONS(1717), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1717), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1717), + [anon_sym_err_GT] = ACTIONS(1715), + [anon_sym_out_GT] = ACTIONS(1715), + [anon_sym_e_GT] = ACTIONS(1715), + [anon_sym_o_GT] = ACTIONS(1715), + [anon_sym_err_PLUSout_GT] = ACTIONS(1715), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1715), + [anon_sym_o_PLUSe_GT] = ACTIONS(1715), + [anon_sym_e_PLUSo_GT] = ACTIONS(1715), + [anon_sym_err_GT_GT] = ACTIONS(1717), + [anon_sym_out_GT_GT] = ACTIONS(1717), + [anon_sym_e_GT_GT] = ACTIONS(1717), + [anon_sym_o_GT_GT] = ACTIONS(1717), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1717), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1717), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1717), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1717), + [aux_sym_unquoted_token1] = ACTIONS(1715), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1717), }, [1332] = { - [sym_cell_path] = STATE(1790), - [sym_path] = STATE(1551), + [sym_cell_path] = STATE(1623), + [sym_path] = STATE(1538), [sym_comment] = STATE(1332), - [aux_sym_cell_path_repeat1] = STATE(1383), - [anon_sym_true] = ACTIONS(1834), - [anon_sym_false] = ACTIONS(1834), - [anon_sym_null] = ACTIONS(1834), - [aux_sym_cmd_identifier_token38] = ACTIONS(1834), - [aux_sym_cmd_identifier_token39] = ACTIONS(1834), - [aux_sym_cmd_identifier_token40] = ACTIONS(1834), - [sym__newline] = ACTIONS(1834), - [anon_sym_SEMI] = ACTIONS(1834), - [anon_sym_PIPE] = ACTIONS(1834), - [anon_sym_err_GT_PIPE] = ACTIONS(1834), - [anon_sym_out_GT_PIPE] = ACTIONS(1834), - [anon_sym_e_GT_PIPE] = ACTIONS(1834), - [anon_sym_o_GT_PIPE] = ACTIONS(1834), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1834), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1834), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1834), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1834), - [anon_sym_LBRACK] = ACTIONS(1834), - [anon_sym_LPAREN] = ACTIONS(1834), - [anon_sym_RPAREN] = ACTIONS(1834), - [anon_sym_DOLLAR] = ACTIONS(1832), - [anon_sym_DASH_DASH] = ACTIONS(1834), - [anon_sym_DASH] = ACTIONS(1832), - [anon_sym_LBRACE] = ACTIONS(1834), - [anon_sym_RBRACE] = ACTIONS(1834), - [anon_sym_DOT_DOT] = ACTIONS(1832), - [anon_sym_DOT] = ACTIONS(4596), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1834), - [anon_sym_DOT_DOT_LT] = ACTIONS(1834), - [aux_sym__val_number_decimal_token1] = ACTIONS(1832), - [aux_sym__val_number_decimal_token2] = ACTIONS(1834), - [aux_sym__val_number_decimal_token3] = ACTIONS(1834), - [aux_sym__val_number_decimal_token4] = ACTIONS(1834), - [aux_sym__val_number_token1] = ACTIONS(1834), - [aux_sym__val_number_token2] = ACTIONS(1834), - [aux_sym__val_number_token3] = ACTIONS(1834), - [anon_sym_0b] = ACTIONS(1832), - [anon_sym_0o] = ACTIONS(1832), - [anon_sym_0x] = ACTIONS(1832), - [sym_val_date] = ACTIONS(1834), - [anon_sym_DQUOTE] = ACTIONS(1834), - [sym__str_single_quotes] = ACTIONS(1834), - [sym__str_back_ticks] = ACTIONS(1834), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1834), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1834), - [anon_sym_err_GT] = ACTIONS(1832), - [anon_sym_out_GT] = ACTIONS(1832), - [anon_sym_e_GT] = ACTIONS(1832), - [anon_sym_o_GT] = ACTIONS(1832), - [anon_sym_err_PLUSout_GT] = ACTIONS(1832), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1832), - [anon_sym_o_PLUSe_GT] = ACTIONS(1832), - [anon_sym_e_PLUSo_GT] = ACTIONS(1832), - [anon_sym_err_GT_GT] = ACTIONS(1834), - [anon_sym_out_GT_GT] = ACTIONS(1834), - [anon_sym_e_GT_GT] = ACTIONS(1834), - [anon_sym_o_GT_GT] = ACTIONS(1834), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1834), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1834), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1834), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1834), - [aux_sym_unquoted_token1] = ACTIONS(1832), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(1342), + [anon_sym_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1931), + [aux_sym_cmd_identifier_token38] = ACTIONS(1931), + [aux_sym_cmd_identifier_token39] = ACTIONS(1931), + [aux_sym_cmd_identifier_token40] = ACTIONS(1931), + [sym__newline] = ACTIONS(1931), + [anon_sym_SEMI] = ACTIONS(1931), + [anon_sym_PIPE] = ACTIONS(1931), + [anon_sym_err_GT_PIPE] = ACTIONS(1931), + [anon_sym_out_GT_PIPE] = ACTIONS(1931), + [anon_sym_e_GT_PIPE] = ACTIONS(1931), + [anon_sym_o_GT_PIPE] = ACTIONS(1931), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1931), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1931), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1931), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1931), + [anon_sym_LBRACK] = ACTIONS(1931), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_RPAREN] = ACTIONS(1931), + [anon_sym_DOLLAR] = ACTIONS(1929), + [anon_sym_DASH_DASH] = ACTIONS(1931), + [anon_sym_DASH] = ACTIONS(1929), + [anon_sym_LBRACE] = ACTIONS(1931), + [anon_sym_RBRACE] = ACTIONS(1931), + [anon_sym_DOT_DOT] = ACTIONS(1929), + [anon_sym_DOT] = ACTIONS(4679), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1931), + [anon_sym_DOT_DOT_LT] = ACTIONS(1931), + [aux_sym__val_number_decimal_token1] = ACTIONS(1929), + [aux_sym__val_number_decimal_token2] = ACTIONS(1931), + [aux_sym__val_number_decimal_token3] = ACTIONS(1931), + [aux_sym__val_number_decimal_token4] = ACTIONS(1931), + [aux_sym__val_number_token1] = ACTIONS(1931), + [aux_sym__val_number_token2] = ACTIONS(1931), + [aux_sym__val_number_token3] = ACTIONS(1931), + [anon_sym_0b] = ACTIONS(1929), + [anon_sym_0o] = ACTIONS(1929), + [anon_sym_0x] = ACTIONS(1929), + [sym_val_date] = ACTIONS(1931), + [anon_sym_DQUOTE] = ACTIONS(1931), + [sym__str_single_quotes] = ACTIONS(1931), + [sym__str_back_ticks] = ACTIONS(1931), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1931), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1931), + [anon_sym_err_GT] = ACTIONS(1929), + [anon_sym_out_GT] = ACTIONS(1929), + [anon_sym_e_GT] = ACTIONS(1929), + [anon_sym_o_GT] = ACTIONS(1929), + [anon_sym_err_PLUSout_GT] = ACTIONS(1929), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1929), + [anon_sym_o_PLUSe_GT] = ACTIONS(1929), + [anon_sym_e_PLUSo_GT] = ACTIONS(1929), + [anon_sym_err_GT_GT] = ACTIONS(1931), + [anon_sym_out_GT_GT] = ACTIONS(1931), + [anon_sym_e_GT_GT] = ACTIONS(1931), + [anon_sym_o_GT_GT] = ACTIONS(1931), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1931), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1931), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1931), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1931), + [aux_sym_unquoted_token1] = ACTIONS(1929), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1931), }, [1333] = { + [sym_cell_path] = STATE(1781), + [sym_path] = STATE(1589), [sym_comment] = STATE(1333), - [ts_builtin_sym_end] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1786), - [anon_sym_false] = ACTIONS(1786), - [anon_sym_null] = ACTIONS(1786), - [aux_sym_cmd_identifier_token38] = ACTIONS(1786), - [aux_sym_cmd_identifier_token39] = ACTIONS(1786), - [aux_sym_cmd_identifier_token40] = ACTIONS(1786), - [sym__newline] = ACTIONS(1786), - [anon_sym_SEMI] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1786), - [anon_sym_err_GT_PIPE] = ACTIONS(1786), - [anon_sym_out_GT_PIPE] = ACTIONS(1786), - [anon_sym_e_GT_PIPE] = ACTIONS(1786), - [anon_sym_o_GT_PIPE] = ACTIONS(1786), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1786), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1786), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1786), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1786), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_DOLLAR] = ACTIONS(1778), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_DOT_DOT] = ACTIONS(1778), - [anon_sym_LPAREN2] = ACTIONS(1780), - [anon_sym_DOT_DOT2] = ACTIONS(4666), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1778), - [anon_sym_DOT_DOT_LT] = ACTIONS(1778), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4668), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4668), - [aux_sym__val_number_decimal_token1] = ACTIONS(1778), - [aux_sym__val_number_decimal_token2] = ACTIONS(1786), - [aux_sym__val_number_decimal_token3] = ACTIONS(1786), - [aux_sym__val_number_decimal_token4] = ACTIONS(1786), - [aux_sym__val_number_token1] = ACTIONS(1786), - [aux_sym__val_number_token2] = ACTIONS(1786), - [aux_sym__val_number_token3] = ACTIONS(1786), - [anon_sym_0b] = ACTIONS(1778), - [anon_sym_0o] = ACTIONS(1778), - [anon_sym_0x] = ACTIONS(1778), - [sym_val_date] = ACTIONS(1786), - [anon_sym_DQUOTE] = ACTIONS(1786), - [sym__str_single_quotes] = ACTIONS(1786), - [sym__str_back_ticks] = ACTIONS(1786), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1786), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1786), - [anon_sym_err_GT] = ACTIONS(1778), - [anon_sym_out_GT] = ACTIONS(1778), - [anon_sym_e_GT] = ACTIONS(1778), - [anon_sym_o_GT] = ACTIONS(1778), - [anon_sym_err_PLUSout_GT] = ACTIONS(1778), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1778), - [anon_sym_o_PLUSe_GT] = ACTIONS(1778), - [anon_sym_e_PLUSo_GT] = ACTIONS(1778), - [anon_sym_err_GT_GT] = ACTIONS(1786), - [anon_sym_out_GT_GT] = ACTIONS(1786), - [anon_sym_e_GT_GT] = ACTIONS(1786), - [anon_sym_o_GT_GT] = ACTIONS(1786), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1786), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1786), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1786), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1786), - [aux_sym_unquoted_token1] = ACTIONS(1778), - [aux_sym_unquoted_token2] = ACTIONS(1494), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(1434), + [ts_builtin_sym_end] = ACTIONS(2085), + [anon_sym_true] = ACTIONS(2085), + [anon_sym_false] = ACTIONS(2085), + [anon_sym_null] = ACTIONS(2085), + [aux_sym_cmd_identifier_token38] = ACTIONS(2085), + [aux_sym_cmd_identifier_token39] = ACTIONS(2085), + [aux_sym_cmd_identifier_token40] = ACTIONS(2085), + [sym__newline] = ACTIONS(2085), + [anon_sym_SEMI] = ACTIONS(2085), + [anon_sym_PIPE] = ACTIONS(2085), + [anon_sym_err_GT_PIPE] = ACTIONS(2085), + [anon_sym_out_GT_PIPE] = ACTIONS(2085), + [anon_sym_e_GT_PIPE] = ACTIONS(2085), + [anon_sym_o_GT_PIPE] = ACTIONS(2085), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2085), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2085), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2085), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2085), + [anon_sym_LBRACK] = ACTIONS(2085), + [anon_sym_LPAREN] = ACTIONS(2085), + [anon_sym_DOLLAR] = ACTIONS(2083), + [anon_sym_DASH_DASH] = ACTIONS(2085), + [anon_sym_DASH] = ACTIONS(2083), + [anon_sym_LBRACE] = ACTIONS(2085), + [anon_sym_DOT_DOT] = ACTIONS(2083), + [anon_sym_DOT] = ACTIONS(4709), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2085), + [anon_sym_DOT_DOT_LT] = ACTIONS(2085), + [aux_sym__val_number_decimal_token1] = ACTIONS(2083), + [aux_sym__val_number_decimal_token2] = ACTIONS(2085), + [aux_sym__val_number_decimal_token3] = ACTIONS(2085), + [aux_sym__val_number_decimal_token4] = ACTIONS(2085), + [aux_sym__val_number_token1] = ACTIONS(2085), + [aux_sym__val_number_token2] = ACTIONS(2085), + [aux_sym__val_number_token3] = ACTIONS(2085), + [anon_sym_0b] = ACTIONS(2083), + [anon_sym_0o] = ACTIONS(2083), + [anon_sym_0x] = ACTIONS(2083), + [sym_val_date] = ACTIONS(2085), + [anon_sym_DQUOTE] = ACTIONS(2085), + [sym__str_single_quotes] = ACTIONS(2085), + [sym__str_back_ticks] = ACTIONS(2085), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2085), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2085), + [anon_sym_err_GT] = ACTIONS(2083), + [anon_sym_out_GT] = ACTIONS(2083), + [anon_sym_e_GT] = ACTIONS(2083), + [anon_sym_o_GT] = ACTIONS(2083), + [anon_sym_err_PLUSout_GT] = ACTIONS(2083), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2083), + [anon_sym_o_PLUSe_GT] = ACTIONS(2083), + [anon_sym_e_PLUSo_GT] = ACTIONS(2083), + [anon_sym_err_GT_GT] = ACTIONS(2085), + [anon_sym_out_GT_GT] = ACTIONS(2085), + [anon_sym_e_GT_GT] = ACTIONS(2085), + [anon_sym_o_GT_GT] = ACTIONS(2085), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2085), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2085), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2085), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2085), + [aux_sym_unquoted_token1] = ACTIONS(2083), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2085), }, [1334] = { + [sym_cell_path] = STATE(1708), + [sym_path] = STATE(1589), [sym_comment] = STATE(1334), - [ts_builtin_sym_end] = ACTIONS(1661), - [anon_sym_true] = ACTIONS(1661), - [anon_sym_false] = ACTIONS(1661), - [anon_sym_null] = ACTIONS(1661), - [aux_sym_cmd_identifier_token38] = ACTIONS(1661), - [aux_sym_cmd_identifier_token39] = ACTIONS(1661), - [aux_sym_cmd_identifier_token40] = ACTIONS(1661), - [sym__newline] = ACTIONS(1661), - [anon_sym_SEMI] = ACTIONS(1661), - [anon_sym_PIPE] = ACTIONS(1661), - [anon_sym_err_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_GT_PIPE] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_LPAREN] = ACTIONS(1661), - [anon_sym_DOLLAR] = ACTIONS(1659), - [anon_sym_DASH_DASH] = ACTIONS(1661), - [anon_sym_DASH] = ACTIONS(1659), - [anon_sym_LBRACE] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1659), - [anon_sym_DOT_DOT2] = ACTIONS(1659), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1659), - [anon_sym_DOT_DOT_LT] = ACTIONS(1659), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1661), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1661), - [aux_sym__immediate_decimal_token1] = ACTIONS(4670), - [aux_sym__immediate_decimal_token2] = ACTIONS(4672), - [aux_sym__val_number_decimal_token1] = ACTIONS(1659), - [aux_sym__val_number_decimal_token2] = ACTIONS(1661), - [aux_sym__val_number_decimal_token3] = ACTIONS(1661), - [aux_sym__val_number_decimal_token4] = ACTIONS(1661), - [aux_sym__val_number_token1] = ACTIONS(1661), - [aux_sym__val_number_token2] = ACTIONS(1661), - [aux_sym__val_number_token3] = ACTIONS(1661), - [anon_sym_0b] = ACTIONS(1659), - [anon_sym_0o] = ACTIONS(1659), - [anon_sym_0x] = ACTIONS(1659), - [sym_val_date] = ACTIONS(1661), - [anon_sym_DQUOTE] = ACTIONS(1661), - [sym__str_single_quotes] = ACTIONS(1661), - [sym__str_back_ticks] = ACTIONS(1661), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1661), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1661), - [anon_sym_err_GT] = ACTIONS(1659), - [anon_sym_out_GT] = ACTIONS(1659), - [anon_sym_e_GT] = ACTIONS(1659), - [anon_sym_o_GT] = ACTIONS(1659), - [anon_sym_err_PLUSout_GT] = ACTIONS(1659), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1659), - [anon_sym_o_PLUSe_GT] = ACTIONS(1659), - [anon_sym_e_PLUSo_GT] = ACTIONS(1659), - [anon_sym_err_GT_GT] = ACTIONS(1661), - [anon_sym_out_GT_GT] = ACTIONS(1661), - [anon_sym_e_GT_GT] = ACTIONS(1661), - [anon_sym_o_GT_GT] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1661), - [aux_sym_unquoted_token1] = ACTIONS(1659), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(1434), + [ts_builtin_sym_end] = ACTIONS(1023), + [anon_sym_true] = ACTIONS(1023), + [anon_sym_false] = ACTIONS(1023), + [anon_sym_null] = ACTIONS(1023), + [aux_sym_cmd_identifier_token38] = ACTIONS(1023), + [aux_sym_cmd_identifier_token39] = ACTIONS(1023), + [aux_sym_cmd_identifier_token40] = ACTIONS(1023), + [sym__newline] = ACTIONS(1023), + [anon_sym_SEMI] = ACTIONS(1023), + [anon_sym_PIPE] = ACTIONS(1023), + [anon_sym_err_GT_PIPE] = ACTIONS(1023), + [anon_sym_out_GT_PIPE] = ACTIONS(1023), + [anon_sym_e_GT_PIPE] = ACTIONS(1023), + [anon_sym_o_GT_PIPE] = ACTIONS(1023), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1023), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1023), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1023), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1023), + [anon_sym_LBRACK] = ACTIONS(1023), + [anon_sym_LPAREN] = ACTIONS(1023), + [anon_sym_DOLLAR] = ACTIONS(1021), + [anon_sym_DASH_DASH] = ACTIONS(1023), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_LBRACE] = ACTIONS(1023), + [anon_sym_DOT_DOT] = ACTIONS(1021), + [anon_sym_DOT] = ACTIONS(4709), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1023), + [anon_sym_DOT_DOT_LT] = ACTIONS(1023), + [aux_sym__val_number_decimal_token1] = ACTIONS(1021), + [aux_sym__val_number_decimal_token2] = ACTIONS(1023), + [aux_sym__val_number_decimal_token3] = ACTIONS(1023), + [aux_sym__val_number_decimal_token4] = ACTIONS(1023), + [aux_sym__val_number_token1] = ACTIONS(1023), + [aux_sym__val_number_token2] = ACTIONS(1023), + [aux_sym__val_number_token3] = ACTIONS(1023), + [anon_sym_0b] = ACTIONS(1021), + [anon_sym_0o] = ACTIONS(1021), + [anon_sym_0x] = ACTIONS(1021), + [sym_val_date] = ACTIONS(1023), + [anon_sym_DQUOTE] = ACTIONS(1023), + [sym__str_single_quotes] = ACTIONS(1023), + [sym__str_back_ticks] = ACTIONS(1023), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1023), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1023), + [anon_sym_err_GT] = ACTIONS(1021), + [anon_sym_out_GT] = ACTIONS(1021), + [anon_sym_e_GT] = ACTIONS(1021), + [anon_sym_o_GT] = ACTIONS(1021), + [anon_sym_err_PLUSout_GT] = ACTIONS(1021), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1021), + [anon_sym_o_PLUSe_GT] = ACTIONS(1021), + [anon_sym_e_PLUSo_GT] = ACTIONS(1021), + [anon_sym_err_GT_GT] = ACTIONS(1023), + [anon_sym_out_GT_GT] = ACTIONS(1023), + [anon_sym_e_GT_GT] = ACTIONS(1023), + [anon_sym_o_GT_GT] = ACTIONS(1023), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1023), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1023), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1023), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1023), + [aux_sym_unquoted_token1] = ACTIONS(1021), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1023), }, [1335] = { [sym_comment] = STATE(1335), - [aux_sym_cmd_identifier_token41] = ACTIONS(1518), - [sym__newline] = ACTIONS(1520), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_err_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_GT_PIPE] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1520), - [anon_sym_RPAREN] = ACTIONS(1520), - [anon_sym_RBRACE] = ACTIONS(1520), - [aux_sym_expr_binary_token1] = ACTIONS(1520), - [aux_sym_expr_binary_token2] = ACTIONS(1520), - [aux_sym_expr_binary_token3] = ACTIONS(1520), - [aux_sym_expr_binary_token4] = ACTIONS(1520), - [aux_sym_expr_binary_token5] = ACTIONS(1520), - [aux_sym_expr_binary_token6] = ACTIONS(1520), - [aux_sym_expr_binary_token7] = ACTIONS(1520), - [aux_sym_expr_binary_token8] = ACTIONS(1520), - [aux_sym_expr_binary_token9] = ACTIONS(1520), - [aux_sym_expr_binary_token10] = ACTIONS(1520), - [aux_sym_expr_binary_token11] = ACTIONS(1520), - [aux_sym_expr_binary_token12] = ACTIONS(1520), - [aux_sym_expr_binary_token13] = ACTIONS(1520), - [aux_sym_expr_binary_token14] = ACTIONS(1520), - [aux_sym_expr_binary_token15] = ACTIONS(1520), - [aux_sym_expr_binary_token16] = ACTIONS(1520), - [aux_sym_expr_binary_token17] = ACTIONS(1520), - [aux_sym_expr_binary_token18] = ACTIONS(1520), - [aux_sym_expr_binary_token19] = ACTIONS(1520), - [aux_sym_expr_binary_token20] = ACTIONS(1520), - [aux_sym_expr_binary_token21] = ACTIONS(1520), - [aux_sym_expr_binary_token22] = ACTIONS(1520), - [aux_sym_expr_binary_token23] = ACTIONS(1520), - [aux_sym_expr_binary_token24] = ACTIONS(1520), - [aux_sym_expr_binary_token25] = ACTIONS(1520), - [aux_sym_expr_binary_token26] = ACTIONS(1520), - [aux_sym_expr_binary_token27] = ACTIONS(1520), - [aux_sym_expr_binary_token28] = ACTIONS(1520), - [anon_sym_DOT_DOT2] = ACTIONS(1518), - [anon_sym_DOT] = ACTIONS(4674), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), - [aux_sym__immediate_decimal_token2] = ACTIONS(4676), - [sym_filesize_unit] = ACTIONS(1520), - [sym_duration_unit] = ACTIONS(1520), - [anon_sym_err_GT] = ACTIONS(1518), - [anon_sym_out_GT] = ACTIONS(1518), - [anon_sym_e_GT] = ACTIONS(1518), - [anon_sym_o_GT] = ACTIONS(1518), - [anon_sym_err_PLUSout_GT] = ACTIONS(1518), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), - [anon_sym_o_PLUSe_GT] = ACTIONS(1518), - [anon_sym_e_PLUSo_GT] = ACTIONS(1518), - [anon_sym_err_GT_GT] = ACTIONS(1520), - [anon_sym_out_GT_GT] = ACTIONS(1520), - [anon_sym_e_GT_GT] = ACTIONS(1520), - [anon_sym_o_GT_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1520), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cmd_identifier_token41] = ACTIONS(1536), + [sym__newline] = ACTIONS(1538), + [anon_sym_SEMI] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_err_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_GT_PIPE] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), + [anon_sym_RPAREN] = ACTIONS(1538), + [anon_sym_RBRACE] = ACTIONS(1538), + [aux_sym_expr_binary_token1] = ACTIONS(1538), + [aux_sym_expr_binary_token2] = ACTIONS(1538), + [aux_sym_expr_binary_token3] = ACTIONS(1538), + [aux_sym_expr_binary_token4] = ACTIONS(1538), + [aux_sym_expr_binary_token5] = ACTIONS(1538), + [aux_sym_expr_binary_token6] = ACTIONS(1538), + [aux_sym_expr_binary_token7] = ACTIONS(1538), + [aux_sym_expr_binary_token8] = ACTIONS(1538), + [aux_sym_expr_binary_token9] = ACTIONS(1538), + [aux_sym_expr_binary_token10] = ACTIONS(1538), + [aux_sym_expr_binary_token11] = ACTIONS(1538), + [aux_sym_expr_binary_token12] = ACTIONS(1538), + [aux_sym_expr_binary_token13] = ACTIONS(1538), + [aux_sym_expr_binary_token14] = ACTIONS(1538), + [aux_sym_expr_binary_token15] = ACTIONS(1538), + [aux_sym_expr_binary_token16] = ACTIONS(1538), + [aux_sym_expr_binary_token17] = ACTIONS(1538), + [aux_sym_expr_binary_token18] = ACTIONS(1538), + [aux_sym_expr_binary_token19] = ACTIONS(1538), + [aux_sym_expr_binary_token20] = ACTIONS(1538), + [aux_sym_expr_binary_token21] = ACTIONS(1538), + [aux_sym_expr_binary_token22] = ACTIONS(1538), + [aux_sym_expr_binary_token23] = ACTIONS(1538), + [aux_sym_expr_binary_token24] = ACTIONS(1538), + [aux_sym_expr_binary_token25] = ACTIONS(1538), + [aux_sym_expr_binary_token26] = ACTIONS(1538), + [aux_sym_expr_binary_token27] = ACTIONS(1538), + [aux_sym_expr_binary_token28] = ACTIONS(1538), + [anon_sym_DOT_DOT2] = ACTIONS(1536), + [anon_sym_DOT] = ACTIONS(4711), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), + [aux_sym__immediate_decimal_token2] = ACTIONS(4713), + [sym_filesize_unit] = ACTIONS(1538), + [sym_duration_unit] = ACTIONS(1538), + [anon_sym_err_GT] = ACTIONS(1536), + [anon_sym_out_GT] = ACTIONS(1536), + [anon_sym_e_GT] = ACTIONS(1536), + [anon_sym_o_GT] = ACTIONS(1536), + [anon_sym_err_PLUSout_GT] = ACTIONS(1536), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), + [anon_sym_o_PLUSe_GT] = ACTIONS(1536), + [anon_sym_e_PLUSo_GT] = ACTIONS(1536), + [anon_sym_err_GT_GT] = ACTIONS(1538), + [anon_sym_out_GT_GT] = ACTIONS(1538), + [anon_sym_e_GT_GT] = ACTIONS(1538), + [anon_sym_o_GT_GT] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), + [anon_sym_POUND] = ACTIONS(249), }, [1336] = { [sym_comment] = STATE(1336), - [sym__newline] = ACTIONS(1554), - [anon_sym_SEMI] = ACTIONS(1556), - [anon_sym_PIPE] = ACTIONS(1556), - [anon_sym_err_GT_PIPE] = ACTIONS(1556), - [anon_sym_out_GT_PIPE] = ACTIONS(1556), - [anon_sym_e_GT_PIPE] = ACTIONS(1556), - [anon_sym_o_GT_PIPE] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1556), - [anon_sym_RPAREN] = ACTIONS(1556), - [anon_sym_LPAREN2] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1556), - [anon_sym_DOT_DOT2] = ACTIONS(1554), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1556), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1556), - [aux_sym__immediate_decimal_token2] = ACTIONS(4678), - [sym_filesize_unit] = ACTIONS(1556), - [sym_duration_unit] = ACTIONS(1556), - [anon_sym_err_GT] = ACTIONS(1554), - [anon_sym_out_GT] = ACTIONS(1554), - [anon_sym_e_GT] = ACTIONS(1554), - [anon_sym_o_GT] = ACTIONS(1554), - [anon_sym_err_PLUSout_GT] = ACTIONS(1554), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1554), - [anon_sym_o_PLUSe_GT] = ACTIONS(1554), - [anon_sym_e_PLUSo_GT] = ACTIONS(1554), - [anon_sym_err_GT_GT] = ACTIONS(1556), - [anon_sym_out_GT_GT] = ACTIONS(1556), - [anon_sym_e_GT_GT] = ACTIONS(1556), - [anon_sym_o_GT_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1556), - [aux_sym_unquoted_token2] = ACTIONS(1554), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(2228), + [anon_sym_false] = ACTIONS(2228), + [anon_sym_null] = ACTIONS(2228), + [aux_sym_cmd_identifier_token38] = ACTIONS(2228), + [aux_sym_cmd_identifier_token39] = ACTIONS(2228), + [aux_sym_cmd_identifier_token40] = ACTIONS(2228), + [sym__newline] = ACTIONS(2228), + [anon_sym_SEMI] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(2228), + [anon_sym_err_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_GT_PIPE] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2228), + [anon_sym_LBRACK] = ACTIONS(2228), + [anon_sym_LPAREN] = ACTIONS(2228), + [anon_sym_RPAREN] = ACTIONS(2228), + [anon_sym_DOLLAR] = ACTIONS(2222), + [anon_sym_DASH_DASH] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2222), + [anon_sym_LBRACE] = ACTIONS(2228), + [anon_sym_RBRACE] = ACTIONS(2228), + [anon_sym_DOT_DOT] = ACTIONS(2222), + [anon_sym_DOT_DOT2] = ACTIONS(4715), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2222), + [anon_sym_DOT_DOT_LT] = ACTIONS(2222), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4717), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4717), + [aux_sym__val_number_decimal_token1] = ACTIONS(2222), + [aux_sym__val_number_decimal_token2] = ACTIONS(2228), + [aux_sym__val_number_decimal_token3] = ACTIONS(2228), + [aux_sym__val_number_decimal_token4] = ACTIONS(2228), + [aux_sym__val_number_token1] = ACTIONS(2228), + [aux_sym__val_number_token2] = ACTIONS(2228), + [aux_sym__val_number_token3] = ACTIONS(2228), + [anon_sym_0b] = ACTIONS(2222), + [anon_sym_0o] = ACTIONS(2222), + [anon_sym_0x] = ACTIONS(2222), + [sym_val_date] = ACTIONS(2228), + [anon_sym_DQUOTE] = ACTIONS(2228), + [sym__str_single_quotes] = ACTIONS(2228), + [sym__str_back_ticks] = ACTIONS(2228), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2228), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2228), + [anon_sym_err_GT] = ACTIONS(2222), + [anon_sym_out_GT] = ACTIONS(2222), + [anon_sym_e_GT] = ACTIONS(2222), + [anon_sym_o_GT] = ACTIONS(2222), + [anon_sym_err_PLUSout_GT] = ACTIONS(2222), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2222), + [anon_sym_o_PLUSe_GT] = ACTIONS(2222), + [anon_sym_e_PLUSo_GT] = ACTIONS(2222), + [anon_sym_err_GT_GT] = ACTIONS(2228), + [anon_sym_out_GT_GT] = ACTIONS(2228), + [anon_sym_e_GT_GT] = ACTIONS(2228), + [anon_sym_o_GT_GT] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2228), + [aux_sym_unquoted_token1] = ACTIONS(2222), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2228), }, [1337] = { - [sym_cell_path] = STATE(1909), - [sym_path] = STATE(1603), [sym_comment] = STATE(1337), - [aux_sym_cell_path_repeat1] = STATE(1493), - [ts_builtin_sym_end] = ACTIONS(1894), - [anon_sym_true] = ACTIONS(1894), - [anon_sym_false] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1894), - [aux_sym_cmd_identifier_token38] = ACTIONS(1894), - [aux_sym_cmd_identifier_token39] = ACTIONS(1894), - [aux_sym_cmd_identifier_token40] = ACTIONS(1894), - [sym__newline] = ACTIONS(1894), - [anon_sym_SEMI] = ACTIONS(1894), - [anon_sym_PIPE] = ACTIONS(1894), - [anon_sym_err_GT_PIPE] = ACTIONS(1894), - [anon_sym_out_GT_PIPE] = ACTIONS(1894), - [anon_sym_e_GT_PIPE] = ACTIONS(1894), - [anon_sym_o_GT_PIPE] = ACTIONS(1894), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1894), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1894), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1894), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1894), - [anon_sym_LBRACK] = ACTIONS(1894), - [anon_sym_LPAREN] = ACTIONS(1894), - [anon_sym_DOLLAR] = ACTIONS(1892), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_DASH] = ACTIONS(1892), - [anon_sym_LBRACE] = ACTIONS(1894), - [anon_sym_DOT_DOT] = ACTIONS(1892), - [anon_sym_DOT] = ACTIONS(4680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1894), - [anon_sym_DOT_DOT_LT] = ACTIONS(1894), - [aux_sym__val_number_decimal_token1] = ACTIONS(1892), - [aux_sym__val_number_decimal_token2] = ACTIONS(1894), - [aux_sym__val_number_decimal_token3] = ACTIONS(1894), - [aux_sym__val_number_decimal_token4] = ACTIONS(1894), - [aux_sym__val_number_token1] = ACTIONS(1894), - [aux_sym__val_number_token2] = ACTIONS(1894), - [aux_sym__val_number_token3] = ACTIONS(1894), - [anon_sym_0b] = ACTIONS(1892), - [anon_sym_0o] = ACTIONS(1892), - [anon_sym_0x] = ACTIONS(1892), - [sym_val_date] = ACTIONS(1894), - [anon_sym_DQUOTE] = ACTIONS(1894), - [sym__str_single_quotes] = ACTIONS(1894), - [sym__str_back_ticks] = ACTIONS(1894), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1894), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1894), - [anon_sym_err_GT] = ACTIONS(1892), - [anon_sym_out_GT] = ACTIONS(1892), - [anon_sym_e_GT] = ACTIONS(1892), - [anon_sym_o_GT] = ACTIONS(1892), - [anon_sym_err_PLUSout_GT] = ACTIONS(1892), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1892), - [anon_sym_o_PLUSe_GT] = ACTIONS(1892), - [anon_sym_e_PLUSo_GT] = ACTIONS(1892), - [anon_sym_err_GT_GT] = ACTIONS(1894), - [anon_sym_out_GT_GT] = ACTIONS(1894), - [anon_sym_e_GT_GT] = ACTIONS(1894), - [anon_sym_o_GT_GT] = ACTIONS(1894), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1894), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1894), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1894), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1894), - [aux_sym_unquoted_token1] = ACTIONS(1892), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cmd_identifier_token41] = ACTIONS(1528), + [sym__newline] = ACTIONS(1530), + [anon_sym_SEMI] = ACTIONS(1530), + [anon_sym_PIPE] = ACTIONS(1530), + [anon_sym_err_GT_PIPE] = ACTIONS(1530), + [anon_sym_out_GT_PIPE] = ACTIONS(1530), + [anon_sym_e_GT_PIPE] = ACTIONS(1530), + [anon_sym_o_GT_PIPE] = ACTIONS(1530), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1530), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1530), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1530), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1530), + [anon_sym_RPAREN] = ACTIONS(1530), + [anon_sym_RBRACE] = ACTIONS(1530), + [aux_sym_expr_binary_token1] = ACTIONS(1530), + [aux_sym_expr_binary_token2] = ACTIONS(1530), + [aux_sym_expr_binary_token3] = ACTIONS(1530), + [aux_sym_expr_binary_token4] = ACTIONS(1530), + [aux_sym_expr_binary_token5] = ACTIONS(1530), + [aux_sym_expr_binary_token6] = ACTIONS(1530), + [aux_sym_expr_binary_token7] = ACTIONS(1530), + [aux_sym_expr_binary_token8] = ACTIONS(1530), + [aux_sym_expr_binary_token9] = ACTIONS(1530), + [aux_sym_expr_binary_token10] = ACTIONS(1530), + [aux_sym_expr_binary_token11] = ACTIONS(1530), + [aux_sym_expr_binary_token12] = ACTIONS(1530), + [aux_sym_expr_binary_token13] = ACTIONS(1530), + [aux_sym_expr_binary_token14] = ACTIONS(1530), + [aux_sym_expr_binary_token15] = ACTIONS(1530), + [aux_sym_expr_binary_token16] = ACTIONS(1530), + [aux_sym_expr_binary_token17] = ACTIONS(1530), + [aux_sym_expr_binary_token18] = ACTIONS(1530), + [aux_sym_expr_binary_token19] = ACTIONS(1530), + [aux_sym_expr_binary_token20] = ACTIONS(1530), + [aux_sym_expr_binary_token21] = ACTIONS(1530), + [aux_sym_expr_binary_token22] = ACTIONS(1530), + [aux_sym_expr_binary_token23] = ACTIONS(1530), + [aux_sym_expr_binary_token24] = ACTIONS(1530), + [aux_sym_expr_binary_token25] = ACTIONS(1530), + [aux_sym_expr_binary_token26] = ACTIONS(1530), + [aux_sym_expr_binary_token27] = ACTIONS(1530), + [aux_sym_expr_binary_token28] = ACTIONS(1530), + [anon_sym_DOT_DOT2] = ACTIONS(1528), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1530), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1530), + [aux_sym__immediate_decimal_token1] = ACTIONS(4719), + [aux_sym__immediate_decimal_token2] = ACTIONS(4721), + [sym_filesize_unit] = ACTIONS(1530), + [sym_duration_unit] = ACTIONS(1530), + [anon_sym_err_GT] = ACTIONS(1528), + [anon_sym_out_GT] = ACTIONS(1528), + [anon_sym_e_GT] = ACTIONS(1528), + [anon_sym_o_GT] = ACTIONS(1528), + [anon_sym_err_PLUSout_GT] = ACTIONS(1528), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), + [anon_sym_o_PLUSe_GT] = ACTIONS(1528), + [anon_sym_e_PLUSo_GT] = ACTIONS(1528), + [anon_sym_err_GT_GT] = ACTIONS(1530), + [anon_sym_out_GT_GT] = ACTIONS(1530), + [anon_sym_e_GT_GT] = ACTIONS(1530), + [anon_sym_o_GT_GT] = ACTIONS(1530), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1530), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1530), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1530), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1530), + [anon_sym_POUND] = ACTIONS(249), }, [1338] = { - [sym_cell_path] = STATE(1852), - [sym_path] = STATE(1603), [sym_comment] = STATE(1338), - [aux_sym_cell_path_repeat1] = STATE(1493), - [ts_builtin_sym_end] = ACTIONS(1834), - [anon_sym_true] = ACTIONS(1834), - [anon_sym_false] = ACTIONS(1834), - [anon_sym_null] = ACTIONS(1834), - [aux_sym_cmd_identifier_token38] = ACTIONS(1834), - [aux_sym_cmd_identifier_token39] = ACTIONS(1834), - [aux_sym_cmd_identifier_token40] = ACTIONS(1834), - [sym__newline] = ACTIONS(1834), - [anon_sym_SEMI] = ACTIONS(1834), - [anon_sym_PIPE] = ACTIONS(1834), - [anon_sym_err_GT_PIPE] = ACTIONS(1834), - [anon_sym_out_GT_PIPE] = ACTIONS(1834), - [anon_sym_e_GT_PIPE] = ACTIONS(1834), - [anon_sym_o_GT_PIPE] = ACTIONS(1834), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1834), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1834), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1834), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1834), - [anon_sym_LBRACK] = ACTIONS(1834), - [anon_sym_LPAREN] = ACTIONS(1834), - [anon_sym_DOLLAR] = ACTIONS(1832), - [anon_sym_DASH_DASH] = ACTIONS(1834), - [anon_sym_DASH] = ACTIONS(1832), - [anon_sym_LBRACE] = ACTIONS(1834), - [anon_sym_DOT_DOT] = ACTIONS(1832), - [anon_sym_DOT] = ACTIONS(4680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1834), - [anon_sym_DOT_DOT_LT] = ACTIONS(1834), - [aux_sym__val_number_decimal_token1] = ACTIONS(1832), - [aux_sym__val_number_decimal_token2] = ACTIONS(1834), - [aux_sym__val_number_decimal_token3] = ACTIONS(1834), - [aux_sym__val_number_decimal_token4] = ACTIONS(1834), - [aux_sym__val_number_token1] = ACTIONS(1834), - [aux_sym__val_number_token2] = ACTIONS(1834), - [aux_sym__val_number_token3] = ACTIONS(1834), - [anon_sym_0b] = ACTIONS(1832), - [anon_sym_0o] = ACTIONS(1832), - [anon_sym_0x] = ACTIONS(1832), - [sym_val_date] = ACTIONS(1834), - [anon_sym_DQUOTE] = ACTIONS(1834), - [sym__str_single_quotes] = ACTIONS(1834), - [sym__str_back_ticks] = ACTIONS(1834), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1834), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1834), - [anon_sym_err_GT] = ACTIONS(1832), - [anon_sym_out_GT] = ACTIONS(1832), - [anon_sym_e_GT] = ACTIONS(1832), - [anon_sym_o_GT] = ACTIONS(1832), - [anon_sym_err_PLUSout_GT] = ACTIONS(1832), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1832), - [anon_sym_o_PLUSe_GT] = ACTIONS(1832), - [anon_sym_e_PLUSo_GT] = ACTIONS(1832), - [anon_sym_err_GT_GT] = ACTIONS(1834), - [anon_sym_out_GT_GT] = ACTIONS(1834), - [anon_sym_e_GT_GT] = ACTIONS(1834), - [anon_sym_o_GT_GT] = ACTIONS(1834), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1834), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1834), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1834), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1834), - [aux_sym_unquoted_token1] = ACTIONS(1832), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(1717), + [anon_sym_false] = ACTIONS(1717), + [anon_sym_null] = ACTIONS(1717), + [aux_sym_cmd_identifier_token38] = ACTIONS(1717), + [aux_sym_cmd_identifier_token39] = ACTIONS(1717), + [aux_sym_cmd_identifier_token40] = ACTIONS(1717), + [sym__newline] = ACTIONS(1717), + [anon_sym_SEMI] = ACTIONS(1717), + [anon_sym_PIPE] = ACTIONS(1717), + [anon_sym_err_GT_PIPE] = ACTIONS(1717), + [anon_sym_out_GT_PIPE] = ACTIONS(1717), + [anon_sym_e_GT_PIPE] = ACTIONS(1717), + [anon_sym_o_GT_PIPE] = ACTIONS(1717), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1717), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1717), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1717), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1717), + [anon_sym_LBRACK] = ACTIONS(1717), + [anon_sym_LPAREN] = ACTIONS(1717), + [anon_sym_RPAREN] = ACTIONS(1717), + [anon_sym_DOLLAR] = ACTIONS(1715), + [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_LBRACE] = ACTIONS(1717), + [anon_sym_RBRACE] = ACTIONS(1717), + [anon_sym_DOT_DOT] = ACTIONS(1715), + [anon_sym_DOT_DOT2] = ACTIONS(1715), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1715), + [anon_sym_DOT_DOT_LT] = ACTIONS(1715), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1717), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1717), + [aux_sym__val_number_decimal_token1] = ACTIONS(1715), + [aux_sym__val_number_decimal_token2] = ACTIONS(1717), + [aux_sym__val_number_decimal_token3] = ACTIONS(1717), + [aux_sym__val_number_decimal_token4] = ACTIONS(1717), + [aux_sym__val_number_token1] = ACTIONS(1717), + [aux_sym__val_number_token2] = ACTIONS(1717), + [aux_sym__val_number_token3] = ACTIONS(1717), + [anon_sym_0b] = ACTIONS(1715), + [anon_sym_0o] = ACTIONS(1715), + [anon_sym_0x] = ACTIONS(1715), + [sym_val_date] = ACTIONS(1717), + [anon_sym_DQUOTE] = ACTIONS(1717), + [sym__str_single_quotes] = ACTIONS(1717), + [sym__str_back_ticks] = ACTIONS(1717), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1717), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1717), + [anon_sym_err_GT] = ACTIONS(1715), + [anon_sym_out_GT] = ACTIONS(1715), + [anon_sym_e_GT] = ACTIONS(1715), + [anon_sym_o_GT] = ACTIONS(1715), + [anon_sym_err_PLUSout_GT] = ACTIONS(1715), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1715), + [anon_sym_o_PLUSe_GT] = ACTIONS(1715), + [anon_sym_e_PLUSo_GT] = ACTIONS(1715), + [anon_sym_err_GT_GT] = ACTIONS(1717), + [anon_sym_out_GT_GT] = ACTIONS(1717), + [anon_sym_e_GT_GT] = ACTIONS(1717), + [anon_sym_o_GT_GT] = ACTIONS(1717), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1717), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1717), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1717), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1717), + [aux_sym_unquoted_token1] = ACTIONS(1715), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1717), }, [1339] = { + [sym_cell_path] = STATE(1773), + [sym_path] = STATE(1589), [sym_comment] = STATE(1339), - [aux_sym_cmd_identifier_token41] = ACTIONS(1554), - [sym__newline] = ACTIONS(1554), - [anon_sym_SEMI] = ACTIONS(1556), - [anon_sym_PIPE] = ACTIONS(1556), - [anon_sym_err_GT_PIPE] = ACTIONS(1556), - [anon_sym_out_GT_PIPE] = ACTIONS(1556), - [anon_sym_e_GT_PIPE] = ACTIONS(1556), - [anon_sym_o_GT_PIPE] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1556), - [anon_sym_EQ_GT] = ACTIONS(1556), - [aux_sym_expr_binary_token1] = ACTIONS(1556), - [aux_sym_expr_binary_token2] = ACTIONS(1556), - [aux_sym_expr_binary_token3] = ACTIONS(1556), - [aux_sym_expr_binary_token4] = ACTIONS(1556), - [aux_sym_expr_binary_token5] = ACTIONS(1556), - [aux_sym_expr_binary_token6] = ACTIONS(1556), - [aux_sym_expr_binary_token7] = ACTIONS(1556), - [aux_sym_expr_binary_token8] = ACTIONS(1556), - [aux_sym_expr_binary_token9] = ACTIONS(1556), - [aux_sym_expr_binary_token10] = ACTIONS(1556), - [aux_sym_expr_binary_token11] = ACTIONS(1556), - [aux_sym_expr_binary_token12] = ACTIONS(1556), - [aux_sym_expr_binary_token13] = ACTIONS(1556), - [aux_sym_expr_binary_token14] = ACTIONS(1556), - [aux_sym_expr_binary_token15] = ACTIONS(1556), - [aux_sym_expr_binary_token16] = ACTIONS(1556), - [aux_sym_expr_binary_token17] = ACTIONS(1556), - [aux_sym_expr_binary_token18] = ACTIONS(1556), - [aux_sym_expr_binary_token19] = ACTIONS(1556), - [aux_sym_expr_binary_token20] = ACTIONS(1556), - [aux_sym_expr_binary_token21] = ACTIONS(1556), - [aux_sym_expr_binary_token22] = ACTIONS(1556), - [aux_sym_expr_binary_token23] = ACTIONS(1556), - [aux_sym_expr_binary_token24] = ACTIONS(1556), - [aux_sym_expr_binary_token25] = ACTIONS(1556), - [aux_sym_expr_binary_token26] = ACTIONS(1556), - [aux_sym_expr_binary_token27] = ACTIONS(1556), - [aux_sym_expr_binary_token28] = ACTIONS(1556), - [anon_sym_DOT_DOT2] = ACTIONS(1554), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1556), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1556), - [sym_filesize_unit] = ACTIONS(1556), - [sym_duration_unit] = ACTIONS(1556), - [aux_sym_record_entry_token1] = ACTIONS(1556), - [anon_sym_err_GT] = ACTIONS(1554), - [anon_sym_out_GT] = ACTIONS(1554), - [anon_sym_e_GT] = ACTIONS(1554), - [anon_sym_o_GT] = ACTIONS(1554), - [anon_sym_err_PLUSout_GT] = ACTIONS(1554), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1554), - [anon_sym_o_PLUSe_GT] = ACTIONS(1554), - [anon_sym_e_PLUSo_GT] = ACTIONS(1554), - [anon_sym_err_GT_GT] = ACTIONS(1556), - [anon_sym_out_GT_GT] = ACTIONS(1556), - [anon_sym_e_GT_GT] = ACTIONS(1556), - [anon_sym_o_GT_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1556), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(1434), + [ts_builtin_sym_end] = ACTIONS(2023), + [anon_sym_true] = ACTIONS(2023), + [anon_sym_false] = ACTIONS(2023), + [anon_sym_null] = ACTIONS(2023), + [aux_sym_cmd_identifier_token38] = ACTIONS(2023), + [aux_sym_cmd_identifier_token39] = ACTIONS(2023), + [aux_sym_cmd_identifier_token40] = ACTIONS(2023), + [sym__newline] = ACTIONS(2023), + [anon_sym_SEMI] = ACTIONS(2023), + [anon_sym_PIPE] = ACTIONS(2023), + [anon_sym_err_GT_PIPE] = ACTIONS(2023), + [anon_sym_out_GT_PIPE] = ACTIONS(2023), + [anon_sym_e_GT_PIPE] = ACTIONS(2023), + [anon_sym_o_GT_PIPE] = ACTIONS(2023), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2023), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2023), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2023), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2023), + [anon_sym_LBRACK] = ACTIONS(2023), + [anon_sym_LPAREN] = ACTIONS(2023), + [anon_sym_DOLLAR] = ACTIONS(2021), + [anon_sym_DASH_DASH] = ACTIONS(2023), + [anon_sym_DASH] = ACTIONS(2021), + [anon_sym_LBRACE] = ACTIONS(2023), + [anon_sym_DOT_DOT] = ACTIONS(2021), + [anon_sym_DOT] = ACTIONS(4709), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2023), + [anon_sym_DOT_DOT_LT] = ACTIONS(2023), + [aux_sym__val_number_decimal_token1] = ACTIONS(2021), + [aux_sym__val_number_decimal_token2] = ACTIONS(2023), + [aux_sym__val_number_decimal_token3] = ACTIONS(2023), + [aux_sym__val_number_decimal_token4] = ACTIONS(2023), + [aux_sym__val_number_token1] = ACTIONS(2023), + [aux_sym__val_number_token2] = ACTIONS(2023), + [aux_sym__val_number_token3] = ACTIONS(2023), + [anon_sym_0b] = ACTIONS(2021), + [anon_sym_0o] = ACTIONS(2021), + [anon_sym_0x] = ACTIONS(2021), + [sym_val_date] = ACTIONS(2023), + [anon_sym_DQUOTE] = ACTIONS(2023), + [sym__str_single_quotes] = ACTIONS(2023), + [sym__str_back_ticks] = ACTIONS(2023), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2023), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2023), + [anon_sym_err_GT] = ACTIONS(2021), + [anon_sym_out_GT] = ACTIONS(2021), + [anon_sym_e_GT] = ACTIONS(2021), + [anon_sym_o_GT] = ACTIONS(2021), + [anon_sym_err_PLUSout_GT] = ACTIONS(2021), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2021), + [anon_sym_o_PLUSe_GT] = ACTIONS(2021), + [anon_sym_e_PLUSo_GT] = ACTIONS(2021), + [anon_sym_err_GT_GT] = ACTIONS(2023), + [anon_sym_out_GT_GT] = ACTIONS(2023), + [anon_sym_e_GT_GT] = ACTIONS(2023), + [anon_sym_o_GT_GT] = ACTIONS(2023), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2023), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2023), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2023), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2023), + [aux_sym_unquoted_token1] = ACTIONS(2021), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2023), }, [1340] = { + [sym_cell_path] = STATE(1822), + [sym_path] = STATE(1589), [sym_comment] = STATE(1340), - [anon_sym_true] = ACTIONS(1669), - [anon_sym_false] = ACTIONS(1669), - [anon_sym_null] = ACTIONS(1669), - [aux_sym_cmd_identifier_token38] = ACTIONS(1669), - [aux_sym_cmd_identifier_token39] = ACTIONS(1669), - [aux_sym_cmd_identifier_token40] = ACTIONS(1669), - [sym__newline] = ACTIONS(1669), - [anon_sym_SEMI] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1669), - [anon_sym_err_GT_PIPE] = ACTIONS(1669), - [anon_sym_out_GT_PIPE] = ACTIONS(1669), - [anon_sym_e_GT_PIPE] = ACTIONS(1669), - [anon_sym_o_GT_PIPE] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), - [anon_sym_LBRACK] = ACTIONS(1669), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_RPAREN] = ACTIONS(1669), - [anon_sym_DOLLAR] = ACTIONS(1667), - [anon_sym_DASH_DASH] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_LBRACE] = ACTIONS(1669), - [anon_sym_RBRACE] = ACTIONS(1669), - [anon_sym_DOT_DOT] = ACTIONS(1667), - [anon_sym_LPAREN2] = ACTIONS(1669), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT] = ACTIONS(1669), - [aux_sym__immediate_decimal_token2] = ACTIONS(4626), - [aux_sym__val_number_decimal_token1] = ACTIONS(1667), - [aux_sym__val_number_decimal_token2] = ACTIONS(1669), - [aux_sym__val_number_decimal_token3] = ACTIONS(1669), - [aux_sym__val_number_decimal_token4] = ACTIONS(1669), - [aux_sym__val_number_token1] = ACTIONS(1669), - [aux_sym__val_number_token2] = ACTIONS(1669), - [aux_sym__val_number_token3] = ACTIONS(1669), - [anon_sym_0b] = ACTIONS(1667), - [anon_sym_0o] = ACTIONS(1667), - [anon_sym_0x] = ACTIONS(1667), - [sym_val_date] = ACTIONS(1669), - [anon_sym_DQUOTE] = ACTIONS(1669), - [sym__str_single_quotes] = ACTIONS(1669), - [sym__str_back_ticks] = ACTIONS(1669), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1669), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1669), - [anon_sym_err_GT] = ACTIONS(1667), - [anon_sym_out_GT] = ACTIONS(1667), - [anon_sym_e_GT] = ACTIONS(1667), - [anon_sym_o_GT] = ACTIONS(1667), - [anon_sym_err_PLUSout_GT] = ACTIONS(1667), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1667), - [anon_sym_o_PLUSe_GT] = ACTIONS(1667), - [anon_sym_e_PLUSo_GT] = ACTIONS(1667), - [anon_sym_err_GT_GT] = ACTIONS(1669), - [anon_sym_out_GT_GT] = ACTIONS(1669), - [anon_sym_e_GT_GT] = ACTIONS(1669), - [anon_sym_o_GT_GT] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1669), - [aux_sym_unquoted_token1] = ACTIONS(1667), - [aux_sym_unquoted_token2] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(1434), + [ts_builtin_sym_end] = ACTIONS(1911), + [anon_sym_true] = ACTIONS(1911), + [anon_sym_false] = ACTIONS(1911), + [anon_sym_null] = ACTIONS(1911), + [aux_sym_cmd_identifier_token38] = ACTIONS(1911), + [aux_sym_cmd_identifier_token39] = ACTIONS(1911), + [aux_sym_cmd_identifier_token40] = ACTIONS(1911), + [sym__newline] = ACTIONS(1911), + [anon_sym_SEMI] = ACTIONS(1911), + [anon_sym_PIPE] = ACTIONS(1911), + [anon_sym_err_GT_PIPE] = ACTIONS(1911), + [anon_sym_out_GT_PIPE] = ACTIONS(1911), + [anon_sym_e_GT_PIPE] = ACTIONS(1911), + [anon_sym_o_GT_PIPE] = ACTIONS(1911), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1911), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1911), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1911), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1911), + [anon_sym_LBRACK] = ACTIONS(1911), + [anon_sym_LPAREN] = ACTIONS(1911), + [anon_sym_DOLLAR] = ACTIONS(1909), + [anon_sym_DASH_DASH] = ACTIONS(1911), + [anon_sym_DASH] = ACTIONS(1909), + [anon_sym_LBRACE] = ACTIONS(1911), + [anon_sym_DOT_DOT] = ACTIONS(1909), + [anon_sym_DOT] = ACTIONS(4709), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1911), + [anon_sym_DOT_DOT_LT] = ACTIONS(1911), + [aux_sym__val_number_decimal_token1] = ACTIONS(1909), + [aux_sym__val_number_decimal_token2] = ACTIONS(1911), + [aux_sym__val_number_decimal_token3] = ACTIONS(1911), + [aux_sym__val_number_decimal_token4] = ACTIONS(1911), + [aux_sym__val_number_token1] = ACTIONS(1911), + [aux_sym__val_number_token2] = ACTIONS(1911), + [aux_sym__val_number_token3] = ACTIONS(1911), + [anon_sym_0b] = ACTIONS(1909), + [anon_sym_0o] = ACTIONS(1909), + [anon_sym_0x] = ACTIONS(1909), + [sym_val_date] = ACTIONS(1911), + [anon_sym_DQUOTE] = ACTIONS(1911), + [sym__str_single_quotes] = ACTIONS(1911), + [sym__str_back_ticks] = ACTIONS(1911), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1911), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1911), + [anon_sym_err_GT] = ACTIONS(1909), + [anon_sym_out_GT] = ACTIONS(1909), + [anon_sym_e_GT] = ACTIONS(1909), + [anon_sym_o_GT] = ACTIONS(1909), + [anon_sym_err_PLUSout_GT] = ACTIONS(1909), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1909), + [anon_sym_o_PLUSe_GT] = ACTIONS(1909), + [anon_sym_e_PLUSo_GT] = ACTIONS(1909), + [anon_sym_err_GT_GT] = ACTIONS(1911), + [anon_sym_out_GT_GT] = ACTIONS(1911), + [anon_sym_e_GT_GT] = ACTIONS(1911), + [anon_sym_o_GT_GT] = ACTIONS(1911), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1911), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1911), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1911), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1911), + [aux_sym_unquoted_token1] = ACTIONS(1909), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1911), }, [1341] = { [sym_comment] = STATE(1341), - [anon_sym_true] = ACTIONS(1723), - [anon_sym_false] = ACTIONS(1723), - [anon_sym_null] = ACTIONS(1723), - [aux_sym_cmd_identifier_token38] = ACTIONS(1723), - [aux_sym_cmd_identifier_token39] = ACTIONS(1723), - [aux_sym_cmd_identifier_token40] = ACTIONS(1723), - [sym__newline] = ACTIONS(1723), - [anon_sym_SEMI] = ACTIONS(1723), - [anon_sym_PIPE] = ACTIONS(1723), - [anon_sym_err_GT_PIPE] = ACTIONS(1723), - [anon_sym_out_GT_PIPE] = ACTIONS(1723), - [anon_sym_e_GT_PIPE] = ACTIONS(1723), - [anon_sym_o_GT_PIPE] = ACTIONS(1723), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1723), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1723), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1723), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1723), - [anon_sym_LBRACK] = ACTIONS(1723), - [anon_sym_LPAREN] = ACTIONS(1721), - [anon_sym_RPAREN] = ACTIONS(1723), - [anon_sym_DOLLAR] = ACTIONS(1721), - [anon_sym_DASH_DASH] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1723), - [anon_sym_RBRACE] = ACTIONS(1723), - [anon_sym_DOT_DOT] = ACTIONS(1721), - [anon_sym_LPAREN2] = ACTIONS(1723), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1723), - [anon_sym_DOT_DOT_LT] = ACTIONS(1723), - [aux_sym__immediate_decimal_token2] = ACTIONS(4682), - [aux_sym__val_number_decimal_token1] = ACTIONS(1721), - [aux_sym__val_number_decimal_token2] = ACTIONS(1723), - [aux_sym__val_number_decimal_token3] = ACTIONS(1723), - [aux_sym__val_number_decimal_token4] = ACTIONS(1723), - [aux_sym__val_number_token1] = ACTIONS(1723), - [aux_sym__val_number_token2] = ACTIONS(1723), - [aux_sym__val_number_token3] = ACTIONS(1723), - [anon_sym_0b] = ACTIONS(1721), - [anon_sym_0o] = ACTIONS(1721), - [anon_sym_0x] = ACTIONS(1721), - [sym_val_date] = ACTIONS(1723), - [anon_sym_DQUOTE] = ACTIONS(1723), - [sym__str_single_quotes] = ACTIONS(1723), - [sym__str_back_ticks] = ACTIONS(1723), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1723), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1723), - [anon_sym_err_GT] = ACTIONS(1721), - [anon_sym_out_GT] = ACTIONS(1721), - [anon_sym_e_GT] = ACTIONS(1721), - [anon_sym_o_GT] = ACTIONS(1721), - [anon_sym_err_PLUSout_GT] = ACTIONS(1721), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1721), - [anon_sym_o_PLUSe_GT] = ACTIONS(1721), - [anon_sym_e_PLUSo_GT] = ACTIONS(1721), - [anon_sym_err_GT_GT] = ACTIONS(1723), - [anon_sym_out_GT_GT] = ACTIONS(1723), - [anon_sym_e_GT_GT] = ACTIONS(1723), - [anon_sym_o_GT_GT] = ACTIONS(1723), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1723), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1723), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1723), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1723), - [aux_sym_unquoted_token1] = ACTIONS(1721), - [aux_sym_unquoted_token2] = ACTIONS(1721), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(1705), + [anon_sym_false] = ACTIONS(1705), + [anon_sym_null] = ACTIONS(1705), + [aux_sym_cmd_identifier_token38] = ACTIONS(1705), + [aux_sym_cmd_identifier_token39] = ACTIONS(1705), + [aux_sym_cmd_identifier_token40] = ACTIONS(1705), + [sym__newline] = ACTIONS(1705), + [anon_sym_SEMI] = ACTIONS(1705), + [anon_sym_PIPE] = ACTIONS(1705), + [anon_sym_err_GT_PIPE] = ACTIONS(1705), + [anon_sym_out_GT_PIPE] = ACTIONS(1705), + [anon_sym_e_GT_PIPE] = ACTIONS(1705), + [anon_sym_o_GT_PIPE] = ACTIONS(1705), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1705), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1705), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1705), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1705), + [anon_sym_LBRACK] = ACTIONS(1705), + [anon_sym_LPAREN] = ACTIONS(1705), + [anon_sym_RPAREN] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1703), + [anon_sym_DASH_DASH] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_LBRACE] = ACTIONS(1705), + [anon_sym_RBRACE] = ACTIONS(1705), + [anon_sym_DOT_DOT] = ACTIONS(1703), + [anon_sym_DOT_DOT2] = ACTIONS(1703), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT] = ACTIONS(1703), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1705), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1705), + [aux_sym__val_number_decimal_token1] = ACTIONS(1703), + [aux_sym__val_number_decimal_token2] = ACTIONS(1705), + [aux_sym__val_number_decimal_token3] = ACTIONS(1705), + [aux_sym__val_number_decimal_token4] = ACTIONS(1705), + [aux_sym__val_number_token1] = ACTIONS(1705), + [aux_sym__val_number_token2] = ACTIONS(1705), + [aux_sym__val_number_token3] = ACTIONS(1705), + [anon_sym_0b] = ACTIONS(1703), + [anon_sym_0o] = ACTIONS(1703), + [anon_sym_0x] = ACTIONS(1703), + [sym_val_date] = ACTIONS(1705), + [anon_sym_DQUOTE] = ACTIONS(1705), + [sym__str_single_quotes] = ACTIONS(1705), + [sym__str_back_ticks] = ACTIONS(1705), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1705), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1705), + [anon_sym_err_GT] = ACTIONS(1703), + [anon_sym_out_GT] = ACTIONS(1703), + [anon_sym_e_GT] = ACTIONS(1703), + [anon_sym_o_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT] = ACTIONS(1703), + [anon_sym_err_GT_GT] = ACTIONS(1705), + [anon_sym_out_GT_GT] = ACTIONS(1705), + [anon_sym_e_GT_GT] = ACTIONS(1705), + [anon_sym_o_GT_GT] = ACTIONS(1705), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1705), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1705), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1705), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1705), + [aux_sym_unquoted_token1] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1705), }, [1342] = { + [sym_path] = STATE(1538), [sym_comment] = STATE(1342), - [aux_sym_cmd_identifier_token41] = ACTIONS(1653), - [sym__newline] = ACTIONS(1653), - [anon_sym_SEMI] = ACTIONS(1655), - [anon_sym_PIPE] = ACTIONS(1655), - [anon_sym_err_GT_PIPE] = ACTIONS(1655), - [anon_sym_out_GT_PIPE] = ACTIONS(1655), - [anon_sym_e_GT_PIPE] = ACTIONS(1655), - [anon_sym_o_GT_PIPE] = ACTIONS(1655), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1655), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1655), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1655), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1655), - [anon_sym_RBRACE] = ACTIONS(1655), - [anon_sym_EQ_GT] = ACTIONS(1655), - [aux_sym_expr_binary_token1] = ACTIONS(1655), - [aux_sym_expr_binary_token2] = ACTIONS(1655), - [aux_sym_expr_binary_token3] = ACTIONS(1655), - [aux_sym_expr_binary_token4] = ACTIONS(1655), - [aux_sym_expr_binary_token5] = ACTIONS(1655), - [aux_sym_expr_binary_token6] = ACTIONS(1655), - [aux_sym_expr_binary_token7] = ACTIONS(1655), - [aux_sym_expr_binary_token8] = ACTIONS(1655), - [aux_sym_expr_binary_token9] = ACTIONS(1655), - [aux_sym_expr_binary_token10] = ACTIONS(1655), - [aux_sym_expr_binary_token11] = ACTIONS(1655), - [aux_sym_expr_binary_token12] = ACTIONS(1655), - [aux_sym_expr_binary_token13] = ACTIONS(1655), - [aux_sym_expr_binary_token14] = ACTIONS(1655), - [aux_sym_expr_binary_token15] = ACTIONS(1655), - [aux_sym_expr_binary_token16] = ACTIONS(1655), - [aux_sym_expr_binary_token17] = ACTIONS(1655), - [aux_sym_expr_binary_token18] = ACTIONS(1655), - [aux_sym_expr_binary_token19] = ACTIONS(1655), - [aux_sym_expr_binary_token20] = ACTIONS(1655), - [aux_sym_expr_binary_token21] = ACTIONS(1655), - [aux_sym_expr_binary_token22] = ACTIONS(1655), - [aux_sym_expr_binary_token23] = ACTIONS(1655), - [aux_sym_expr_binary_token24] = ACTIONS(1655), - [aux_sym_expr_binary_token25] = ACTIONS(1655), - [aux_sym_expr_binary_token26] = ACTIONS(1655), - [aux_sym_expr_binary_token27] = ACTIONS(1655), - [aux_sym_expr_binary_token28] = ACTIONS(1655), - [anon_sym_DOT_DOT2] = ACTIONS(1653), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1655), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1655), - [sym_filesize_unit] = ACTIONS(1655), - [sym_duration_unit] = ACTIONS(1655), - [aux_sym_record_entry_token1] = ACTIONS(1655), - [anon_sym_err_GT] = ACTIONS(1653), - [anon_sym_out_GT] = ACTIONS(1653), - [anon_sym_e_GT] = ACTIONS(1653), - [anon_sym_o_GT] = ACTIONS(1653), - [anon_sym_err_PLUSout_GT] = ACTIONS(1653), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1653), - [anon_sym_o_PLUSe_GT] = ACTIONS(1653), - [anon_sym_e_PLUSo_GT] = ACTIONS(1653), - [anon_sym_err_GT_GT] = ACTIONS(1655), - [anon_sym_out_GT_GT] = ACTIONS(1655), - [anon_sym_e_GT_GT] = ACTIONS(1655), - [anon_sym_o_GT_GT] = ACTIONS(1655), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1655), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1655), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1655), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1655), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(1347), + [anon_sym_true] = ACTIONS(1029), + [anon_sym_false] = ACTIONS(1029), + [anon_sym_null] = ACTIONS(1029), + [aux_sym_cmd_identifier_token38] = ACTIONS(1029), + [aux_sym_cmd_identifier_token39] = ACTIONS(1029), + [aux_sym_cmd_identifier_token40] = ACTIONS(1029), + [sym__newline] = ACTIONS(1029), + [anon_sym_SEMI] = ACTIONS(1029), + [anon_sym_PIPE] = ACTIONS(1029), + [anon_sym_err_GT_PIPE] = ACTIONS(1029), + [anon_sym_out_GT_PIPE] = ACTIONS(1029), + [anon_sym_e_GT_PIPE] = ACTIONS(1029), + [anon_sym_o_GT_PIPE] = ACTIONS(1029), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1029), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1029), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1029), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1029), + [anon_sym_LBRACK] = ACTIONS(1029), + [anon_sym_LPAREN] = ACTIONS(1029), + [anon_sym_RPAREN] = ACTIONS(1029), + [anon_sym_DOLLAR] = ACTIONS(1027), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_LBRACE] = ACTIONS(1029), + [anon_sym_RBRACE] = ACTIONS(1029), + [anon_sym_DOT_DOT] = ACTIONS(1027), + [anon_sym_DOT] = ACTIONS(4679), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1029), + [anon_sym_DOT_DOT_LT] = ACTIONS(1029), + [aux_sym__val_number_decimal_token1] = ACTIONS(1027), + [aux_sym__val_number_decimal_token2] = ACTIONS(1029), + [aux_sym__val_number_decimal_token3] = ACTIONS(1029), + [aux_sym__val_number_decimal_token4] = ACTIONS(1029), + [aux_sym__val_number_token1] = ACTIONS(1029), + [aux_sym__val_number_token2] = ACTIONS(1029), + [aux_sym__val_number_token3] = ACTIONS(1029), + [anon_sym_0b] = ACTIONS(1027), + [anon_sym_0o] = ACTIONS(1027), + [anon_sym_0x] = ACTIONS(1027), + [sym_val_date] = ACTIONS(1029), + [anon_sym_DQUOTE] = ACTIONS(1029), + [sym__str_single_quotes] = ACTIONS(1029), + [sym__str_back_ticks] = ACTIONS(1029), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1029), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1029), + [anon_sym_err_GT] = ACTIONS(1027), + [anon_sym_out_GT] = ACTIONS(1027), + [anon_sym_e_GT] = ACTIONS(1027), + [anon_sym_o_GT] = ACTIONS(1027), + [anon_sym_err_PLUSout_GT] = ACTIONS(1027), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1027), + [anon_sym_o_PLUSe_GT] = ACTIONS(1027), + [anon_sym_e_PLUSo_GT] = ACTIONS(1027), + [anon_sym_err_GT_GT] = ACTIONS(1029), + [anon_sym_out_GT_GT] = ACTIONS(1029), + [anon_sym_e_GT_GT] = ACTIONS(1029), + [anon_sym_o_GT_GT] = ACTIONS(1029), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1029), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1029), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1029), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1029), + [aux_sym_unquoted_token1] = ACTIONS(1027), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1029), }, [1343] = { [sym_comment] = STATE(1343), - [sym__newline] = ACTIONS(1520), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_err_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_GT_PIPE] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1520), - [anon_sym_RPAREN] = ACTIONS(1520), - [anon_sym_RBRACE] = ACTIONS(1520), - [anon_sym_LPAREN2] = ACTIONS(1520), - [aux_sym_expr_binary_token1] = ACTIONS(1520), - [aux_sym_expr_binary_token2] = ACTIONS(1520), - [aux_sym_expr_binary_token3] = ACTIONS(1520), - [aux_sym_expr_binary_token4] = ACTIONS(1520), - [aux_sym_expr_binary_token5] = ACTIONS(1520), - [aux_sym_expr_binary_token6] = ACTIONS(1520), - [aux_sym_expr_binary_token7] = ACTIONS(1520), - [aux_sym_expr_binary_token8] = ACTIONS(1520), - [aux_sym_expr_binary_token9] = ACTIONS(1520), - [aux_sym_expr_binary_token10] = ACTIONS(1520), - [aux_sym_expr_binary_token11] = ACTIONS(1520), - [aux_sym_expr_binary_token12] = ACTIONS(1520), - [aux_sym_expr_binary_token13] = ACTIONS(1520), - [aux_sym_expr_binary_token14] = ACTIONS(1520), - [aux_sym_expr_binary_token15] = ACTIONS(1520), - [aux_sym_expr_binary_token16] = ACTIONS(1520), - [aux_sym_expr_binary_token17] = ACTIONS(1520), - [aux_sym_expr_binary_token18] = ACTIONS(1520), - [aux_sym_expr_binary_token19] = ACTIONS(1520), - [aux_sym_expr_binary_token20] = ACTIONS(1520), - [aux_sym_expr_binary_token21] = ACTIONS(1520), - [aux_sym_expr_binary_token22] = ACTIONS(1520), - [aux_sym_expr_binary_token23] = ACTIONS(1520), - [aux_sym_expr_binary_token24] = ACTIONS(1520), - [aux_sym_expr_binary_token25] = ACTIONS(1520), - [aux_sym_expr_binary_token26] = ACTIONS(1520), - [aux_sym_expr_binary_token27] = ACTIONS(1520), - [aux_sym_expr_binary_token28] = ACTIONS(1520), - [anon_sym_DOT_DOT2] = ACTIONS(1518), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), - [sym_filesize_unit] = ACTIONS(1520), - [sym_duration_unit] = ACTIONS(1520), - [anon_sym_err_GT] = ACTIONS(1518), - [anon_sym_out_GT] = ACTIONS(1518), - [anon_sym_e_GT] = ACTIONS(1518), - [anon_sym_o_GT] = ACTIONS(1518), - [anon_sym_err_PLUSout_GT] = ACTIONS(1518), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), - [anon_sym_o_PLUSe_GT] = ACTIONS(1518), - [anon_sym_e_PLUSo_GT] = ACTIONS(1518), - [anon_sym_err_GT_GT] = ACTIONS(1520), - [anon_sym_out_GT_GT] = ACTIONS(1520), - [anon_sym_e_GT_GT] = ACTIONS(1520), - [anon_sym_o_GT_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1520), - [aux_sym_unquoted_token2] = ACTIONS(1518), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(1771), + [anon_sym_false] = ACTIONS(1771), + [anon_sym_null] = ACTIONS(1771), + [aux_sym_cmd_identifier_token38] = ACTIONS(1771), + [aux_sym_cmd_identifier_token39] = ACTIONS(1771), + [aux_sym_cmd_identifier_token40] = ACTIONS(1771), + [sym__newline] = ACTIONS(1771), + [anon_sym_SEMI] = ACTIONS(1771), + [anon_sym_PIPE] = ACTIONS(1771), + [anon_sym_err_GT_PIPE] = ACTIONS(1771), + [anon_sym_out_GT_PIPE] = ACTIONS(1771), + [anon_sym_e_GT_PIPE] = ACTIONS(1771), + [anon_sym_o_GT_PIPE] = ACTIONS(1771), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1771), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1771), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1771), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1771), + [anon_sym_LPAREN] = ACTIONS(1771), + [anon_sym_RPAREN] = ACTIONS(1771), + [anon_sym_DOLLAR] = ACTIONS(1769), + [anon_sym_DASH_DASH] = ACTIONS(1771), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_LBRACE] = ACTIONS(1771), + [anon_sym_RBRACE] = ACTIONS(1771), + [anon_sym_DOT_DOT] = ACTIONS(1769), + [anon_sym_DOT_DOT2] = ACTIONS(1769), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1769), + [anon_sym_DOT_DOT_LT] = ACTIONS(1769), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1771), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1771), + [aux_sym__val_number_decimal_token1] = ACTIONS(1769), + [aux_sym__val_number_decimal_token2] = ACTIONS(1771), + [aux_sym__val_number_decimal_token3] = ACTIONS(1771), + [aux_sym__val_number_decimal_token4] = ACTIONS(1771), + [aux_sym__val_number_token1] = ACTIONS(1771), + [aux_sym__val_number_token2] = ACTIONS(1771), + [aux_sym__val_number_token3] = ACTIONS(1771), + [anon_sym_0b] = ACTIONS(1769), + [anon_sym_0o] = ACTIONS(1769), + [anon_sym_0x] = ACTIONS(1769), + [sym_val_date] = ACTIONS(1771), + [anon_sym_DQUOTE] = ACTIONS(1771), + [sym__str_single_quotes] = ACTIONS(1771), + [sym__str_back_ticks] = ACTIONS(1771), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1771), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1771), + [anon_sym_err_GT] = ACTIONS(1769), + [anon_sym_out_GT] = ACTIONS(1769), + [anon_sym_e_GT] = ACTIONS(1769), + [anon_sym_o_GT] = ACTIONS(1769), + [anon_sym_err_PLUSout_GT] = ACTIONS(1769), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1769), + [anon_sym_o_PLUSe_GT] = ACTIONS(1769), + [anon_sym_e_PLUSo_GT] = ACTIONS(1769), + [anon_sym_err_GT_GT] = ACTIONS(1771), + [anon_sym_out_GT_GT] = ACTIONS(1771), + [anon_sym_e_GT_GT] = ACTIONS(1771), + [anon_sym_o_GT_GT] = ACTIONS(1771), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1771), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1771), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1771), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1771), + [aux_sym_unquoted_token1] = ACTIONS(1769), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1771), }, [1344] = { [sym_comment] = STATE(1344), - [sym__newline] = ACTIONS(1542), - [anon_sym_SEMI] = ACTIONS(1542), - [anon_sym_PIPE] = ACTIONS(1542), - [anon_sym_err_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_GT_PIPE] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1542), - [anon_sym_RPAREN] = ACTIONS(1542), - [anon_sym_RBRACE] = ACTIONS(1542), - [anon_sym_LPAREN2] = ACTIONS(1542), - [aux_sym_expr_binary_token1] = ACTIONS(1542), - [aux_sym_expr_binary_token2] = ACTIONS(1542), - [aux_sym_expr_binary_token3] = ACTIONS(1542), - [aux_sym_expr_binary_token4] = ACTIONS(1542), - [aux_sym_expr_binary_token5] = ACTIONS(1542), - [aux_sym_expr_binary_token6] = ACTIONS(1542), - [aux_sym_expr_binary_token7] = ACTIONS(1542), - [aux_sym_expr_binary_token8] = ACTIONS(1542), - [aux_sym_expr_binary_token9] = ACTIONS(1542), - [aux_sym_expr_binary_token10] = ACTIONS(1542), - [aux_sym_expr_binary_token11] = ACTIONS(1542), - [aux_sym_expr_binary_token12] = ACTIONS(1542), - [aux_sym_expr_binary_token13] = ACTIONS(1542), - [aux_sym_expr_binary_token14] = ACTIONS(1542), - [aux_sym_expr_binary_token15] = ACTIONS(1542), - [aux_sym_expr_binary_token16] = ACTIONS(1542), - [aux_sym_expr_binary_token17] = ACTIONS(1542), - [aux_sym_expr_binary_token18] = ACTIONS(1542), - [aux_sym_expr_binary_token19] = ACTIONS(1542), - [aux_sym_expr_binary_token20] = ACTIONS(1542), - [aux_sym_expr_binary_token21] = ACTIONS(1542), - [aux_sym_expr_binary_token22] = ACTIONS(1542), - [aux_sym_expr_binary_token23] = ACTIONS(1542), - [aux_sym_expr_binary_token24] = ACTIONS(1542), - [aux_sym_expr_binary_token25] = ACTIONS(1542), - [aux_sym_expr_binary_token26] = ACTIONS(1542), - [aux_sym_expr_binary_token27] = ACTIONS(1542), - [aux_sym_expr_binary_token28] = ACTIONS(1542), - [anon_sym_DOT_DOT2] = ACTIONS(1540), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1542), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1542), - [sym_filesize_unit] = ACTIONS(1542), - [sym_duration_unit] = ACTIONS(1542), - [anon_sym_err_GT] = ACTIONS(1540), - [anon_sym_out_GT] = ACTIONS(1540), - [anon_sym_e_GT] = ACTIONS(1540), - [anon_sym_o_GT] = ACTIONS(1540), - [anon_sym_err_PLUSout_GT] = ACTIONS(1540), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1540), - [anon_sym_o_PLUSe_GT] = ACTIONS(1540), - [anon_sym_e_PLUSo_GT] = ACTIONS(1540), - [anon_sym_err_GT_GT] = ACTIONS(1542), - [anon_sym_out_GT_GT] = ACTIONS(1542), - [anon_sym_e_GT_GT] = ACTIONS(1542), - [anon_sym_o_GT_GT] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1542), - [aux_sym_unquoted_token2] = ACTIONS(1540), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(1828), + [anon_sym_false] = ACTIONS(1828), + [anon_sym_null] = ACTIONS(1828), + [aux_sym_cmd_identifier_token38] = ACTIONS(1828), + [aux_sym_cmd_identifier_token39] = ACTIONS(1828), + [aux_sym_cmd_identifier_token40] = ACTIONS(1828), + [sym__newline] = ACTIONS(1828), + [anon_sym_SEMI] = ACTIONS(1828), + [anon_sym_PIPE] = ACTIONS(1828), + [anon_sym_err_GT_PIPE] = ACTIONS(1828), + [anon_sym_out_GT_PIPE] = ACTIONS(1828), + [anon_sym_e_GT_PIPE] = ACTIONS(1828), + [anon_sym_o_GT_PIPE] = ACTIONS(1828), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1828), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1828), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1828), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1828), + [anon_sym_LBRACK] = ACTIONS(1828), + [anon_sym_LPAREN] = ACTIONS(1828), + [anon_sym_RPAREN] = ACTIONS(1828), + [anon_sym_DOLLAR] = ACTIONS(1826), + [anon_sym_DASH_DASH] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_LBRACE] = ACTIONS(1828), + [anon_sym_RBRACE] = ACTIONS(1828), + [anon_sym_DOT_DOT] = ACTIONS(1826), + [anon_sym_DOT_DOT2] = ACTIONS(1826), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1826), + [anon_sym_DOT_DOT_LT] = ACTIONS(1826), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1828), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1828), + [aux_sym__val_number_decimal_token1] = ACTIONS(1826), + [aux_sym__val_number_decimal_token2] = ACTIONS(1828), + [aux_sym__val_number_decimal_token3] = ACTIONS(1828), + [aux_sym__val_number_decimal_token4] = ACTIONS(1828), + [aux_sym__val_number_token1] = ACTIONS(1828), + [aux_sym__val_number_token2] = ACTIONS(1828), + [aux_sym__val_number_token3] = ACTIONS(1828), + [anon_sym_0b] = ACTIONS(1826), + [anon_sym_0o] = ACTIONS(1826), + [anon_sym_0x] = ACTIONS(1826), + [sym_val_date] = ACTIONS(1828), + [anon_sym_DQUOTE] = ACTIONS(1828), + [sym__str_single_quotes] = ACTIONS(1828), + [sym__str_back_ticks] = ACTIONS(1828), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1828), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1828), + [anon_sym_err_GT] = ACTIONS(1826), + [anon_sym_out_GT] = ACTIONS(1826), + [anon_sym_e_GT] = ACTIONS(1826), + [anon_sym_o_GT] = ACTIONS(1826), + [anon_sym_err_PLUSout_GT] = ACTIONS(1826), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1826), + [anon_sym_o_PLUSe_GT] = ACTIONS(1826), + [anon_sym_e_PLUSo_GT] = ACTIONS(1826), + [anon_sym_err_GT_GT] = ACTIONS(1828), + [anon_sym_out_GT_GT] = ACTIONS(1828), + [anon_sym_e_GT_GT] = ACTIONS(1828), + [anon_sym_o_GT_GT] = ACTIONS(1828), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1828), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1828), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1828), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1828), + [aux_sym_unquoted_token1] = ACTIONS(1826), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1828), }, [1345] = { [sym_comment] = STATE(1345), - [sym__newline] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1556), - [anon_sym_PIPE] = ACTIONS(1556), - [anon_sym_err_GT_PIPE] = ACTIONS(1556), - [anon_sym_out_GT_PIPE] = ACTIONS(1556), - [anon_sym_e_GT_PIPE] = ACTIONS(1556), - [anon_sym_o_GT_PIPE] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1556), - [anon_sym_RPAREN] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1556), - [anon_sym_LPAREN2] = ACTIONS(1556), - [aux_sym_expr_binary_token1] = ACTIONS(1556), - [aux_sym_expr_binary_token2] = ACTIONS(1556), - [aux_sym_expr_binary_token3] = ACTIONS(1556), - [aux_sym_expr_binary_token4] = ACTIONS(1556), - [aux_sym_expr_binary_token5] = ACTIONS(1556), - [aux_sym_expr_binary_token6] = ACTIONS(1556), - [aux_sym_expr_binary_token7] = ACTIONS(1556), - [aux_sym_expr_binary_token8] = ACTIONS(1556), - [aux_sym_expr_binary_token9] = ACTIONS(1556), - [aux_sym_expr_binary_token10] = ACTIONS(1556), - [aux_sym_expr_binary_token11] = ACTIONS(1556), - [aux_sym_expr_binary_token12] = ACTIONS(1556), - [aux_sym_expr_binary_token13] = ACTIONS(1556), - [aux_sym_expr_binary_token14] = ACTIONS(1556), - [aux_sym_expr_binary_token15] = ACTIONS(1556), - [aux_sym_expr_binary_token16] = ACTIONS(1556), - [aux_sym_expr_binary_token17] = ACTIONS(1556), - [aux_sym_expr_binary_token18] = ACTIONS(1556), - [aux_sym_expr_binary_token19] = ACTIONS(1556), - [aux_sym_expr_binary_token20] = ACTIONS(1556), - [aux_sym_expr_binary_token21] = ACTIONS(1556), - [aux_sym_expr_binary_token22] = ACTIONS(1556), - [aux_sym_expr_binary_token23] = ACTIONS(1556), - [aux_sym_expr_binary_token24] = ACTIONS(1556), - [aux_sym_expr_binary_token25] = ACTIONS(1556), - [aux_sym_expr_binary_token26] = ACTIONS(1556), - [aux_sym_expr_binary_token27] = ACTIONS(1556), - [aux_sym_expr_binary_token28] = ACTIONS(1556), - [anon_sym_DOT_DOT2] = ACTIONS(1554), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1556), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1556), - [sym_filesize_unit] = ACTIONS(1556), - [sym_duration_unit] = ACTIONS(1556), - [anon_sym_err_GT] = ACTIONS(1554), - [anon_sym_out_GT] = ACTIONS(1554), - [anon_sym_e_GT] = ACTIONS(1554), - [anon_sym_o_GT] = ACTIONS(1554), - [anon_sym_err_PLUSout_GT] = ACTIONS(1554), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1554), - [anon_sym_o_PLUSe_GT] = ACTIONS(1554), - [anon_sym_e_PLUSo_GT] = ACTIONS(1554), - [anon_sym_err_GT_GT] = ACTIONS(1556), - [anon_sym_out_GT_GT] = ACTIONS(1556), - [anon_sym_e_GT_GT] = ACTIONS(1556), - [anon_sym_o_GT_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1556), - [aux_sym_unquoted_token2] = ACTIONS(1554), - [anon_sym_POUND] = ACTIONS(247), + [ts_builtin_sym_end] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(1705), + [anon_sym_false] = ACTIONS(1705), + [anon_sym_null] = ACTIONS(1705), + [aux_sym_cmd_identifier_token38] = ACTIONS(1705), + [aux_sym_cmd_identifier_token39] = ACTIONS(1705), + [aux_sym_cmd_identifier_token40] = ACTIONS(1705), + [sym__newline] = ACTIONS(1705), + [anon_sym_SEMI] = ACTIONS(1705), + [anon_sym_PIPE] = ACTIONS(1705), + [anon_sym_err_GT_PIPE] = ACTIONS(1705), + [anon_sym_out_GT_PIPE] = ACTIONS(1705), + [anon_sym_e_GT_PIPE] = ACTIONS(1705), + [anon_sym_o_GT_PIPE] = ACTIONS(1705), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1705), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1705), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1705), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1705), + [anon_sym_LBRACK] = ACTIONS(1705), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1703), + [anon_sym_DASH_DASH] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_LBRACE] = ACTIONS(1705), + [anon_sym_DOT_DOT] = ACTIONS(1703), + [anon_sym_LPAREN2] = ACTIONS(1705), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1705), + [anon_sym_DOT_DOT_LT] = ACTIONS(1705), + [aux_sym__immediate_decimal_token1] = ACTIONS(4723), + [aux_sym__immediate_decimal_token2] = ACTIONS(4725), + [aux_sym__val_number_decimal_token1] = ACTIONS(1703), + [aux_sym__val_number_decimal_token2] = ACTIONS(1705), + [aux_sym__val_number_decimal_token3] = ACTIONS(1705), + [aux_sym__val_number_decimal_token4] = ACTIONS(1705), + [aux_sym__val_number_token1] = ACTIONS(1705), + [aux_sym__val_number_token2] = ACTIONS(1705), + [aux_sym__val_number_token3] = ACTIONS(1705), + [anon_sym_0b] = ACTIONS(1703), + [anon_sym_0o] = ACTIONS(1703), + [anon_sym_0x] = ACTIONS(1703), + [sym_val_date] = ACTIONS(1705), + [anon_sym_DQUOTE] = ACTIONS(1705), + [sym__str_single_quotes] = ACTIONS(1705), + [sym__str_back_ticks] = ACTIONS(1705), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1705), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1705), + [anon_sym_err_GT] = ACTIONS(1703), + [anon_sym_out_GT] = ACTIONS(1703), + [anon_sym_e_GT] = ACTIONS(1703), + [anon_sym_o_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT] = ACTIONS(1703), + [anon_sym_err_GT_GT] = ACTIONS(1705), + [anon_sym_out_GT_GT] = ACTIONS(1705), + [anon_sym_e_GT_GT] = ACTIONS(1705), + [anon_sym_o_GT_GT] = ACTIONS(1705), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1705), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1705), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1705), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1705), + [aux_sym_unquoted_token1] = ACTIONS(1703), + [aux_sym_unquoted_token2] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1705), }, [1346] = { [sym_comment] = STATE(1346), - [sym__newline] = ACTIONS(1655), - [anon_sym_SEMI] = ACTIONS(1655), - [anon_sym_PIPE] = ACTIONS(1655), - [anon_sym_err_GT_PIPE] = ACTIONS(1655), - [anon_sym_out_GT_PIPE] = ACTIONS(1655), - [anon_sym_e_GT_PIPE] = ACTIONS(1655), - [anon_sym_o_GT_PIPE] = ACTIONS(1655), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1655), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1655), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1655), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1655), - [anon_sym_RPAREN] = ACTIONS(1655), - [anon_sym_RBRACE] = ACTIONS(1655), - [anon_sym_LPAREN2] = ACTIONS(1655), - [aux_sym_expr_binary_token1] = ACTIONS(1655), - [aux_sym_expr_binary_token2] = ACTIONS(1655), - [aux_sym_expr_binary_token3] = ACTIONS(1655), - [aux_sym_expr_binary_token4] = ACTIONS(1655), - [aux_sym_expr_binary_token5] = ACTIONS(1655), - [aux_sym_expr_binary_token6] = ACTIONS(1655), - [aux_sym_expr_binary_token7] = ACTIONS(1655), - [aux_sym_expr_binary_token8] = ACTIONS(1655), - [aux_sym_expr_binary_token9] = ACTIONS(1655), - [aux_sym_expr_binary_token10] = ACTIONS(1655), - [aux_sym_expr_binary_token11] = ACTIONS(1655), - [aux_sym_expr_binary_token12] = ACTIONS(1655), - [aux_sym_expr_binary_token13] = ACTIONS(1655), - [aux_sym_expr_binary_token14] = ACTIONS(1655), - [aux_sym_expr_binary_token15] = ACTIONS(1655), - [aux_sym_expr_binary_token16] = ACTIONS(1655), - [aux_sym_expr_binary_token17] = ACTIONS(1655), - [aux_sym_expr_binary_token18] = ACTIONS(1655), - [aux_sym_expr_binary_token19] = ACTIONS(1655), - [aux_sym_expr_binary_token20] = ACTIONS(1655), - [aux_sym_expr_binary_token21] = ACTIONS(1655), - [aux_sym_expr_binary_token22] = ACTIONS(1655), - [aux_sym_expr_binary_token23] = ACTIONS(1655), - [aux_sym_expr_binary_token24] = ACTIONS(1655), - [aux_sym_expr_binary_token25] = ACTIONS(1655), - [aux_sym_expr_binary_token26] = ACTIONS(1655), - [aux_sym_expr_binary_token27] = ACTIONS(1655), - [aux_sym_expr_binary_token28] = ACTIONS(1655), - [anon_sym_DOT_DOT2] = ACTIONS(1653), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1655), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1655), - [sym_filesize_unit] = ACTIONS(1655), - [sym_duration_unit] = ACTIONS(1655), - [anon_sym_err_GT] = ACTIONS(1653), - [anon_sym_out_GT] = ACTIONS(1653), - [anon_sym_e_GT] = ACTIONS(1653), - [anon_sym_o_GT] = ACTIONS(1653), - [anon_sym_err_PLUSout_GT] = ACTIONS(1653), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1653), - [anon_sym_o_PLUSe_GT] = ACTIONS(1653), - [anon_sym_e_PLUSo_GT] = ACTIONS(1653), - [anon_sym_err_GT_GT] = ACTIONS(1655), - [anon_sym_out_GT_GT] = ACTIONS(1655), - [anon_sym_e_GT_GT] = ACTIONS(1655), - [anon_sym_o_GT_GT] = ACTIONS(1655), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1655), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1655), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1655), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1655), - [aux_sym_unquoted_token2] = ACTIONS(1653), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(1092), + [anon_sym_false] = ACTIONS(1092), + [anon_sym_null] = ACTIONS(1092), + [aux_sym_cmd_identifier_token38] = ACTIONS(1092), + [aux_sym_cmd_identifier_token39] = ACTIONS(1092), + [aux_sym_cmd_identifier_token40] = ACTIONS(1092), + [sym__newline] = ACTIONS(1092), + [anon_sym_SEMI] = ACTIONS(1092), + [anon_sym_PIPE] = ACTIONS(1092), + [anon_sym_err_GT_PIPE] = ACTIONS(1092), + [anon_sym_out_GT_PIPE] = ACTIONS(1092), + [anon_sym_e_GT_PIPE] = ACTIONS(1092), + [anon_sym_o_GT_PIPE] = ACTIONS(1092), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1092), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1092), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1092), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1092), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_LPAREN] = ACTIONS(1092), + [anon_sym_RPAREN] = ACTIONS(1092), + [anon_sym_DOLLAR] = ACTIONS(1090), + [anon_sym_DASH_DASH] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_LBRACE] = ACTIONS(1092), + [anon_sym_RBRACE] = ACTIONS(1092), + [anon_sym_DOT_DOT] = ACTIONS(1090), + [anon_sym_DOT_DOT2] = ACTIONS(4727), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1090), + [anon_sym_DOT_DOT_LT] = ACTIONS(1090), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4729), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4729), + [aux_sym__val_number_decimal_token1] = ACTIONS(1090), + [aux_sym__val_number_decimal_token2] = ACTIONS(1092), + [aux_sym__val_number_decimal_token3] = ACTIONS(1092), + [aux_sym__val_number_decimal_token4] = ACTIONS(1092), + [aux_sym__val_number_token1] = ACTIONS(1092), + [aux_sym__val_number_token2] = ACTIONS(1092), + [aux_sym__val_number_token3] = ACTIONS(1092), + [anon_sym_0b] = ACTIONS(1090), + [anon_sym_0o] = ACTIONS(1090), + [anon_sym_0x] = ACTIONS(1090), + [sym_val_date] = ACTIONS(1092), + [anon_sym_DQUOTE] = ACTIONS(1092), + [sym__str_single_quotes] = ACTIONS(1092), + [sym__str_back_ticks] = ACTIONS(1092), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1092), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1092), + [anon_sym_err_GT] = ACTIONS(1090), + [anon_sym_out_GT] = ACTIONS(1090), + [anon_sym_e_GT] = ACTIONS(1090), + [anon_sym_o_GT] = ACTIONS(1090), + [anon_sym_err_PLUSout_GT] = ACTIONS(1090), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1090), + [anon_sym_o_PLUSe_GT] = ACTIONS(1090), + [anon_sym_e_PLUSo_GT] = ACTIONS(1090), + [anon_sym_err_GT_GT] = ACTIONS(1092), + [anon_sym_out_GT_GT] = ACTIONS(1092), + [anon_sym_e_GT_GT] = ACTIONS(1092), + [anon_sym_o_GT_GT] = ACTIONS(1092), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1092), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1092), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1092), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1092), + [aux_sym_unquoted_token1] = ACTIONS(1090), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1092), }, [1347] = { - [sym_cell_path] = STATE(1870), - [sym_path] = STATE(1603), + [sym_path] = STATE(1538), [sym_comment] = STATE(1347), - [aux_sym_cell_path_repeat1] = STATE(1493), - [ts_builtin_sym_end] = ACTIONS(1007), - [anon_sym_true] = ACTIONS(1007), - [anon_sym_false] = ACTIONS(1007), - [anon_sym_null] = ACTIONS(1007), - [aux_sym_cmd_identifier_token38] = ACTIONS(1007), - [aux_sym_cmd_identifier_token39] = ACTIONS(1007), - [aux_sym_cmd_identifier_token40] = ACTIONS(1007), - [sym__newline] = ACTIONS(1007), - [anon_sym_SEMI] = ACTIONS(1007), - [anon_sym_PIPE] = ACTIONS(1007), - [anon_sym_err_GT_PIPE] = ACTIONS(1007), - [anon_sym_out_GT_PIPE] = ACTIONS(1007), - [anon_sym_e_GT_PIPE] = ACTIONS(1007), - [anon_sym_o_GT_PIPE] = ACTIONS(1007), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1007), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1007), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1007), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1007), - [anon_sym_LBRACK] = ACTIONS(1007), - [anon_sym_LPAREN] = ACTIONS(1007), - [anon_sym_DOLLAR] = ACTIONS(1005), - [anon_sym_DASH_DASH] = ACTIONS(1007), - [anon_sym_DASH] = ACTIONS(1005), - [anon_sym_LBRACE] = ACTIONS(1007), - [anon_sym_DOT_DOT] = ACTIONS(1005), - [anon_sym_DOT] = ACTIONS(4680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1007), - [anon_sym_DOT_DOT_LT] = ACTIONS(1007), - [aux_sym__val_number_decimal_token1] = ACTIONS(1005), - [aux_sym__val_number_decimal_token2] = ACTIONS(1007), - [aux_sym__val_number_decimal_token3] = ACTIONS(1007), - [aux_sym__val_number_decimal_token4] = ACTIONS(1007), - [aux_sym__val_number_token1] = ACTIONS(1007), - [aux_sym__val_number_token2] = ACTIONS(1007), - [aux_sym__val_number_token3] = ACTIONS(1007), - [anon_sym_0b] = ACTIONS(1005), - [anon_sym_0o] = ACTIONS(1005), - [anon_sym_0x] = ACTIONS(1005), - [sym_val_date] = ACTIONS(1007), - [anon_sym_DQUOTE] = ACTIONS(1007), - [sym__str_single_quotes] = ACTIONS(1007), - [sym__str_back_ticks] = ACTIONS(1007), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1007), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1007), - [anon_sym_err_GT] = ACTIONS(1005), - [anon_sym_out_GT] = ACTIONS(1005), - [anon_sym_e_GT] = ACTIONS(1005), - [anon_sym_o_GT] = ACTIONS(1005), - [anon_sym_err_PLUSout_GT] = ACTIONS(1005), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1005), - [anon_sym_o_PLUSe_GT] = ACTIONS(1005), - [anon_sym_e_PLUSo_GT] = ACTIONS(1005), - [anon_sym_err_GT_GT] = ACTIONS(1007), - [anon_sym_out_GT_GT] = ACTIONS(1007), - [anon_sym_e_GT_GT] = ACTIONS(1007), - [anon_sym_o_GT_GT] = ACTIONS(1007), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1007), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1007), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1007), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1007), - [aux_sym_unquoted_token1] = ACTIONS(1005), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(1347), + [anon_sym_true] = ACTIONS(1033), + [anon_sym_false] = ACTIONS(1033), + [anon_sym_null] = ACTIONS(1033), + [aux_sym_cmd_identifier_token38] = ACTIONS(1033), + [aux_sym_cmd_identifier_token39] = ACTIONS(1033), + [aux_sym_cmd_identifier_token40] = ACTIONS(1033), + [sym__newline] = ACTIONS(1033), + [anon_sym_SEMI] = ACTIONS(1033), + [anon_sym_PIPE] = ACTIONS(1033), + [anon_sym_err_GT_PIPE] = ACTIONS(1033), + [anon_sym_out_GT_PIPE] = ACTIONS(1033), + [anon_sym_e_GT_PIPE] = ACTIONS(1033), + [anon_sym_o_GT_PIPE] = ACTIONS(1033), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1033), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1033), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1033), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1033), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_RPAREN] = ACTIONS(1033), + [anon_sym_DOLLAR] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1033), + [anon_sym_DASH] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1033), + [anon_sym_DOT_DOT] = ACTIONS(1031), + [anon_sym_DOT] = ACTIONS(4731), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1033), + [anon_sym_DOT_DOT_LT] = ACTIONS(1033), + [aux_sym__val_number_decimal_token1] = ACTIONS(1031), + [aux_sym__val_number_decimal_token2] = ACTIONS(1033), + [aux_sym__val_number_decimal_token3] = ACTIONS(1033), + [aux_sym__val_number_decimal_token4] = ACTIONS(1033), + [aux_sym__val_number_token1] = ACTIONS(1033), + [aux_sym__val_number_token2] = ACTIONS(1033), + [aux_sym__val_number_token3] = ACTIONS(1033), + [anon_sym_0b] = ACTIONS(1031), + [anon_sym_0o] = ACTIONS(1031), + [anon_sym_0x] = ACTIONS(1031), + [sym_val_date] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(1033), + [sym__str_single_quotes] = ACTIONS(1033), + [sym__str_back_ticks] = ACTIONS(1033), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1033), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1033), + [anon_sym_err_GT] = ACTIONS(1031), + [anon_sym_out_GT] = ACTIONS(1031), + [anon_sym_e_GT] = ACTIONS(1031), + [anon_sym_o_GT] = ACTIONS(1031), + [anon_sym_err_PLUSout_GT] = ACTIONS(1031), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1031), + [anon_sym_o_PLUSe_GT] = ACTIONS(1031), + [anon_sym_e_PLUSo_GT] = ACTIONS(1031), + [anon_sym_err_GT_GT] = ACTIONS(1033), + [anon_sym_out_GT_GT] = ACTIONS(1033), + [anon_sym_e_GT_GT] = ACTIONS(1033), + [anon_sym_o_GT_GT] = ACTIONS(1033), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1033), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1033), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1033), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1033), + [aux_sym_unquoted_token1] = ACTIONS(1031), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1033), }, [1348] = { [sym_comment] = STATE(1348), - [ts_builtin_sym_end] = ACTIONS(1542), - [aux_sym_cmd_identifier_token41] = ACTIONS(1540), - [sym__newline] = ACTIONS(1542), - [anon_sym_SEMI] = ACTIONS(1542), - [anon_sym_PIPE] = ACTIONS(1542), - [anon_sym_err_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_GT_PIPE] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1542), - [aux_sym_expr_binary_token1] = ACTIONS(1542), - [aux_sym_expr_binary_token2] = ACTIONS(1542), - [aux_sym_expr_binary_token3] = ACTIONS(1542), - [aux_sym_expr_binary_token4] = ACTIONS(1542), - [aux_sym_expr_binary_token5] = ACTIONS(1542), - [aux_sym_expr_binary_token6] = ACTIONS(1542), - [aux_sym_expr_binary_token7] = ACTIONS(1542), - [aux_sym_expr_binary_token8] = ACTIONS(1542), - [aux_sym_expr_binary_token9] = ACTIONS(1542), - [aux_sym_expr_binary_token10] = ACTIONS(1542), - [aux_sym_expr_binary_token11] = ACTIONS(1542), - [aux_sym_expr_binary_token12] = ACTIONS(1542), - [aux_sym_expr_binary_token13] = ACTIONS(1542), - [aux_sym_expr_binary_token14] = ACTIONS(1542), - [aux_sym_expr_binary_token15] = ACTIONS(1542), - [aux_sym_expr_binary_token16] = ACTIONS(1542), - [aux_sym_expr_binary_token17] = ACTIONS(1542), - [aux_sym_expr_binary_token18] = ACTIONS(1542), - [aux_sym_expr_binary_token19] = ACTIONS(1542), - [aux_sym_expr_binary_token20] = ACTIONS(1542), - [aux_sym_expr_binary_token21] = ACTIONS(1542), - [aux_sym_expr_binary_token22] = ACTIONS(1542), - [aux_sym_expr_binary_token23] = ACTIONS(1542), - [aux_sym_expr_binary_token24] = ACTIONS(1542), - [aux_sym_expr_binary_token25] = ACTIONS(1542), - [aux_sym_expr_binary_token26] = ACTIONS(1542), - [aux_sym_expr_binary_token27] = ACTIONS(1542), - [aux_sym_expr_binary_token28] = ACTIONS(1542), - [anon_sym_DOT_DOT2] = ACTIONS(1540), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1542), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1542), - [aux_sym__immediate_decimal_token1] = ACTIONS(4684), - [aux_sym__immediate_decimal_token2] = ACTIONS(4686), - [sym_filesize_unit] = ACTIONS(1542), - [sym_duration_unit] = ACTIONS(1542), - [anon_sym_err_GT] = ACTIONS(1540), - [anon_sym_out_GT] = ACTIONS(1540), - [anon_sym_e_GT] = ACTIONS(1540), - [anon_sym_o_GT] = ACTIONS(1540), - [anon_sym_err_PLUSout_GT] = ACTIONS(1540), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1540), - [anon_sym_o_PLUSe_GT] = ACTIONS(1540), - [anon_sym_e_PLUSo_GT] = ACTIONS(1540), - [anon_sym_err_GT_GT] = ACTIONS(1542), - [anon_sym_out_GT_GT] = ACTIONS(1542), - [anon_sym_e_GT_GT] = ACTIONS(1542), - [anon_sym_o_GT_GT] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1542), - [anon_sym_POUND] = ACTIONS(247), + [ts_builtin_sym_end] = ACTIONS(1068), + [anon_sym_true] = ACTIONS(1068), + [anon_sym_false] = ACTIONS(1068), + [anon_sym_null] = ACTIONS(1068), + [aux_sym_cmd_identifier_token38] = ACTIONS(1068), + [aux_sym_cmd_identifier_token39] = ACTIONS(1068), + [aux_sym_cmd_identifier_token40] = ACTIONS(1068), + [sym__newline] = ACTIONS(1068), + [anon_sym_SEMI] = ACTIONS(1068), + [anon_sym_PIPE] = ACTIONS(1068), + [anon_sym_err_GT_PIPE] = ACTIONS(1068), + [anon_sym_out_GT_PIPE] = ACTIONS(1068), + [anon_sym_e_GT_PIPE] = ACTIONS(1068), + [anon_sym_o_GT_PIPE] = ACTIONS(1068), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1068), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1068), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1068), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1068), + [anon_sym_LBRACK] = ACTIONS(1068), + [anon_sym_LPAREN] = ACTIONS(1068), + [anon_sym_DOLLAR] = ACTIONS(1066), + [anon_sym_DASH_DASH] = ACTIONS(1068), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_DOT_DOT] = ACTIONS(1066), + [anon_sym_DOT_DOT2] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(1066), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1066), + [anon_sym_DOT_DOT_LT] = ACTIONS(1066), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1068), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1068), + [aux_sym__val_number_decimal_token1] = ACTIONS(1066), + [aux_sym__val_number_decimal_token2] = ACTIONS(1068), + [aux_sym__val_number_decimal_token3] = ACTIONS(1068), + [aux_sym__val_number_decimal_token4] = ACTIONS(1068), + [aux_sym__val_number_token1] = ACTIONS(1068), + [aux_sym__val_number_token2] = ACTIONS(1068), + [aux_sym__val_number_token3] = ACTIONS(1068), + [anon_sym_0b] = ACTIONS(1066), + [anon_sym_0o] = ACTIONS(1066), + [anon_sym_0x] = ACTIONS(1066), + [sym_val_date] = ACTIONS(1068), + [anon_sym_DQUOTE] = ACTIONS(1068), + [sym__str_single_quotes] = ACTIONS(1068), + [sym__str_back_ticks] = ACTIONS(1068), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1068), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1068), + [anon_sym_err_GT] = ACTIONS(1066), + [anon_sym_out_GT] = ACTIONS(1066), + [anon_sym_e_GT] = ACTIONS(1066), + [anon_sym_o_GT] = ACTIONS(1066), + [anon_sym_err_PLUSout_GT] = ACTIONS(1066), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1066), + [anon_sym_o_PLUSe_GT] = ACTIONS(1066), + [anon_sym_e_PLUSo_GT] = ACTIONS(1066), + [anon_sym_err_GT_GT] = ACTIONS(1068), + [anon_sym_out_GT_GT] = ACTIONS(1068), + [anon_sym_e_GT_GT] = ACTIONS(1068), + [anon_sym_o_GT_GT] = ACTIONS(1068), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1068), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1068), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1068), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1068), + [aux_sym_unquoted_token1] = ACTIONS(1066), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1068), }, [1349] = { - [sym_cell_path] = STATE(1921), - [sym_path] = STATE(1603), [sym_comment] = STATE(1349), - [aux_sym_cell_path_repeat1] = STATE(1493), - [ts_builtin_sym_end] = ACTIONS(1906), - [anon_sym_true] = ACTIONS(1906), - [anon_sym_false] = ACTIONS(1906), - [anon_sym_null] = ACTIONS(1906), - [aux_sym_cmd_identifier_token38] = ACTIONS(1906), - [aux_sym_cmd_identifier_token39] = ACTIONS(1906), - [aux_sym_cmd_identifier_token40] = ACTIONS(1906), - [sym__newline] = ACTIONS(1906), - [anon_sym_SEMI] = ACTIONS(1906), - [anon_sym_PIPE] = ACTIONS(1906), - [anon_sym_err_GT_PIPE] = ACTIONS(1906), - [anon_sym_out_GT_PIPE] = ACTIONS(1906), - [anon_sym_e_GT_PIPE] = ACTIONS(1906), - [anon_sym_o_GT_PIPE] = ACTIONS(1906), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1906), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1906), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1906), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1906), - [anon_sym_LBRACK] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(1906), - [anon_sym_DOLLAR] = ACTIONS(1904), - [anon_sym_DASH_DASH] = ACTIONS(1906), - [anon_sym_DASH] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_DOT_DOT] = ACTIONS(1904), - [anon_sym_DOT] = ACTIONS(4680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1906), - [anon_sym_DOT_DOT_LT] = ACTIONS(1906), - [aux_sym__val_number_decimal_token1] = ACTIONS(1904), - [aux_sym__val_number_decimal_token2] = ACTIONS(1906), - [aux_sym__val_number_decimal_token3] = ACTIONS(1906), - [aux_sym__val_number_decimal_token4] = ACTIONS(1906), - [aux_sym__val_number_token1] = ACTIONS(1906), - [aux_sym__val_number_token2] = ACTIONS(1906), - [aux_sym__val_number_token3] = ACTIONS(1906), - [anon_sym_0b] = ACTIONS(1904), - [anon_sym_0o] = ACTIONS(1904), - [anon_sym_0x] = ACTIONS(1904), - [sym_val_date] = ACTIONS(1906), - [anon_sym_DQUOTE] = ACTIONS(1906), - [sym__str_single_quotes] = ACTIONS(1906), - [sym__str_back_ticks] = ACTIONS(1906), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1906), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1906), - [anon_sym_err_GT] = ACTIONS(1904), - [anon_sym_out_GT] = ACTIONS(1904), - [anon_sym_e_GT] = ACTIONS(1904), - [anon_sym_o_GT] = ACTIONS(1904), - [anon_sym_err_PLUSout_GT] = ACTIONS(1904), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1904), - [anon_sym_o_PLUSe_GT] = ACTIONS(1904), - [anon_sym_e_PLUSo_GT] = ACTIONS(1904), - [anon_sym_err_GT_GT] = ACTIONS(1906), - [anon_sym_out_GT_GT] = ACTIONS(1906), - [anon_sym_e_GT_GT] = ACTIONS(1906), - [anon_sym_o_GT_GT] = ACTIONS(1906), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1906), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1906), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1906), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1906), - [aux_sym_unquoted_token1] = ACTIONS(1904), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(2240), + [anon_sym_false] = ACTIONS(2240), + [anon_sym_null] = ACTIONS(2240), + [aux_sym_cmd_identifier_token38] = ACTIONS(2240), + [aux_sym_cmd_identifier_token39] = ACTIONS(2240), + [aux_sym_cmd_identifier_token40] = ACTIONS(2240), + [sym__newline] = ACTIONS(2240), + [anon_sym_SEMI] = ACTIONS(2240), + [anon_sym_PIPE] = ACTIONS(2240), + [anon_sym_err_GT_PIPE] = ACTIONS(2240), + [anon_sym_out_GT_PIPE] = ACTIONS(2240), + [anon_sym_e_GT_PIPE] = ACTIONS(2240), + [anon_sym_o_GT_PIPE] = ACTIONS(2240), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2240), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2240), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2240), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2240), + [anon_sym_LBRACK] = ACTIONS(2240), + [anon_sym_LPAREN] = ACTIONS(2240), + [anon_sym_RPAREN] = ACTIONS(2240), + [anon_sym_DOLLAR] = ACTIONS(2234), + [anon_sym_DASH_DASH] = ACTIONS(2240), + [anon_sym_DASH] = ACTIONS(2234), + [anon_sym_LBRACE] = ACTIONS(2240), + [anon_sym_RBRACE] = ACTIONS(2240), + [anon_sym_DOT_DOT] = ACTIONS(2234), + [anon_sym_DOT_DOT2] = ACTIONS(4734), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2234), + [anon_sym_DOT_DOT_LT] = ACTIONS(2234), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4736), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4736), + [aux_sym__val_number_decimal_token1] = ACTIONS(2234), + [aux_sym__val_number_decimal_token2] = ACTIONS(2240), + [aux_sym__val_number_decimal_token3] = ACTIONS(2240), + [aux_sym__val_number_decimal_token4] = ACTIONS(2240), + [aux_sym__val_number_token1] = ACTIONS(2240), + [aux_sym__val_number_token2] = ACTIONS(2240), + [aux_sym__val_number_token3] = ACTIONS(2240), + [anon_sym_0b] = ACTIONS(2234), + [anon_sym_0o] = ACTIONS(2234), + [anon_sym_0x] = ACTIONS(2234), + [sym_val_date] = ACTIONS(2240), + [anon_sym_DQUOTE] = ACTIONS(2240), + [sym__str_single_quotes] = ACTIONS(2240), + [sym__str_back_ticks] = ACTIONS(2240), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2240), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2240), + [anon_sym_err_GT] = ACTIONS(2234), + [anon_sym_out_GT] = ACTIONS(2234), + [anon_sym_e_GT] = ACTIONS(2234), + [anon_sym_o_GT] = ACTIONS(2234), + [anon_sym_err_PLUSout_GT] = ACTIONS(2234), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2234), + [anon_sym_o_PLUSe_GT] = ACTIONS(2234), + [anon_sym_e_PLUSo_GT] = ACTIONS(2234), + [anon_sym_err_GT_GT] = ACTIONS(2240), + [anon_sym_out_GT_GT] = ACTIONS(2240), + [anon_sym_e_GT_GT] = ACTIONS(2240), + [anon_sym_o_GT_GT] = ACTIONS(2240), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2240), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2240), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2240), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2240), + [aux_sym_unquoted_token1] = ACTIONS(2234), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2240), }, [1350] = { - [sym_cell_path] = STATE(1804), - [sym_path] = STATE(1219), [sym_comment] = STATE(1350), - [aux_sym_cell_path_repeat1] = STATE(1110), - [sym__newline] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1645), - [anon_sym_err_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_GT_PIPE] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), - [anon_sym_RPAREN] = ACTIONS(1645), - [anon_sym_RBRACE] = ACTIONS(1645), - [aux_sym_expr_binary_token1] = ACTIONS(1645), - [aux_sym_expr_binary_token2] = ACTIONS(1645), - [aux_sym_expr_binary_token3] = ACTIONS(1645), - [aux_sym_expr_binary_token4] = ACTIONS(1645), - [aux_sym_expr_binary_token5] = ACTIONS(1645), - [aux_sym_expr_binary_token6] = ACTIONS(1645), - [aux_sym_expr_binary_token7] = ACTIONS(1645), - [aux_sym_expr_binary_token8] = ACTIONS(1645), - [aux_sym_expr_binary_token9] = ACTIONS(1645), - [aux_sym_expr_binary_token10] = ACTIONS(1645), - [aux_sym_expr_binary_token11] = ACTIONS(1645), - [aux_sym_expr_binary_token12] = ACTIONS(1645), - [aux_sym_expr_binary_token13] = ACTIONS(1645), - [aux_sym_expr_binary_token14] = ACTIONS(1645), - [aux_sym_expr_binary_token15] = ACTIONS(1645), - [aux_sym_expr_binary_token16] = ACTIONS(1645), - [aux_sym_expr_binary_token17] = ACTIONS(1645), - [aux_sym_expr_binary_token18] = ACTIONS(1645), - [aux_sym_expr_binary_token19] = ACTIONS(1645), - [aux_sym_expr_binary_token20] = ACTIONS(1645), - [aux_sym_expr_binary_token21] = ACTIONS(1645), - [aux_sym_expr_binary_token22] = ACTIONS(1645), - [aux_sym_expr_binary_token23] = ACTIONS(1645), - [aux_sym_expr_binary_token24] = ACTIONS(1645), - [aux_sym_expr_binary_token25] = ACTIONS(1645), - [aux_sym_expr_binary_token26] = ACTIONS(1645), - [aux_sym_expr_binary_token27] = ACTIONS(1645), - [aux_sym_expr_binary_token28] = ACTIONS(1645), - [anon_sym_DOT_DOT2] = ACTIONS(1641), - [anon_sym_DOT] = ACTIONS(3905), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1645), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1645), - [anon_sym_err_GT] = ACTIONS(1641), - [anon_sym_out_GT] = ACTIONS(1641), - [anon_sym_e_GT] = ACTIONS(1641), - [anon_sym_o_GT] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT] = ACTIONS(1641), - [anon_sym_err_GT_GT] = ACTIONS(1645), - [anon_sym_out_GT_GT] = ACTIONS(1645), - [anon_sym_e_GT_GT] = ACTIONS(1645), - [anon_sym_o_GT_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_null] = ACTIONS(2119), + [aux_sym_cmd_identifier_token38] = ACTIONS(2119), + [aux_sym_cmd_identifier_token39] = ACTIONS(2119), + [aux_sym_cmd_identifier_token40] = ACTIONS(2119), + [sym__newline] = ACTIONS(2119), + [anon_sym_SEMI] = ACTIONS(2119), + [anon_sym_PIPE] = ACTIONS(2119), + [anon_sym_err_GT_PIPE] = ACTIONS(2119), + [anon_sym_out_GT_PIPE] = ACTIONS(2119), + [anon_sym_e_GT_PIPE] = ACTIONS(2119), + [anon_sym_o_GT_PIPE] = ACTIONS(2119), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2119), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2119), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2119), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2119), + [anon_sym_LBRACK] = ACTIONS(2119), + [anon_sym_LPAREN] = ACTIONS(2119), + [anon_sym_RPAREN] = ACTIONS(2119), + [anon_sym_DOLLAR] = ACTIONS(2113), + [anon_sym_DASH_DASH] = ACTIONS(2119), + [anon_sym_DASH] = ACTIONS(2113), + [anon_sym_LBRACE] = ACTIONS(2119), + [anon_sym_RBRACE] = ACTIONS(2119), + [anon_sym_DOT_DOT] = ACTIONS(2113), + [anon_sym_DOT_DOT2] = ACTIONS(4738), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2113), + [anon_sym_DOT_DOT_LT] = ACTIONS(2113), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4740), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4740), + [aux_sym__val_number_decimal_token1] = ACTIONS(2113), + [aux_sym__val_number_decimal_token2] = ACTIONS(2119), + [aux_sym__val_number_decimal_token3] = ACTIONS(2119), + [aux_sym__val_number_decimal_token4] = ACTIONS(2119), + [aux_sym__val_number_token1] = ACTIONS(2119), + [aux_sym__val_number_token2] = ACTIONS(2119), + [aux_sym__val_number_token3] = ACTIONS(2119), + [anon_sym_0b] = ACTIONS(2113), + [anon_sym_0o] = ACTIONS(2113), + [anon_sym_0x] = ACTIONS(2113), + [sym_val_date] = ACTIONS(2119), + [anon_sym_DQUOTE] = ACTIONS(2119), + [sym__str_single_quotes] = ACTIONS(2119), + [sym__str_back_ticks] = ACTIONS(2119), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2119), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2119), + [anon_sym_err_GT] = ACTIONS(2113), + [anon_sym_out_GT] = ACTIONS(2113), + [anon_sym_e_GT] = ACTIONS(2113), + [anon_sym_o_GT] = ACTIONS(2113), + [anon_sym_err_PLUSout_GT] = ACTIONS(2113), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2113), + [anon_sym_o_PLUSe_GT] = ACTIONS(2113), + [anon_sym_e_PLUSo_GT] = ACTIONS(2113), + [anon_sym_err_GT_GT] = ACTIONS(2119), + [anon_sym_out_GT_GT] = ACTIONS(2119), + [anon_sym_e_GT_GT] = ACTIONS(2119), + [anon_sym_o_GT_GT] = ACTIONS(2119), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2119), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2119), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2119), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2119), + [aux_sym_unquoted_token1] = ACTIONS(2113), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2119), }, [1351] = { - [sym_cell_path] = STATE(1812), - [sym_path] = STATE(1219), [sym_comment] = STATE(1351), - [aux_sym_cell_path_repeat1] = STATE(1110), - [sym__newline] = ACTIONS(1677), - [anon_sym_SEMI] = ACTIONS(1677), - [anon_sym_PIPE] = ACTIONS(1677), - [anon_sym_err_GT_PIPE] = ACTIONS(1677), - [anon_sym_out_GT_PIPE] = ACTIONS(1677), - [anon_sym_e_GT_PIPE] = ACTIONS(1677), - [anon_sym_o_GT_PIPE] = ACTIONS(1677), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1677), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1677), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1677), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1677), - [anon_sym_RPAREN] = ACTIONS(1677), - [anon_sym_RBRACE] = ACTIONS(1677), - [aux_sym_expr_binary_token1] = ACTIONS(1677), - [aux_sym_expr_binary_token2] = ACTIONS(1677), - [aux_sym_expr_binary_token3] = ACTIONS(1677), - [aux_sym_expr_binary_token4] = ACTIONS(1677), - [aux_sym_expr_binary_token5] = ACTIONS(1677), - [aux_sym_expr_binary_token6] = ACTIONS(1677), - [aux_sym_expr_binary_token7] = ACTIONS(1677), - [aux_sym_expr_binary_token8] = ACTIONS(1677), - [aux_sym_expr_binary_token9] = ACTIONS(1677), - [aux_sym_expr_binary_token10] = ACTIONS(1677), - [aux_sym_expr_binary_token11] = ACTIONS(1677), - [aux_sym_expr_binary_token12] = ACTIONS(1677), - [aux_sym_expr_binary_token13] = ACTIONS(1677), - [aux_sym_expr_binary_token14] = ACTIONS(1677), - [aux_sym_expr_binary_token15] = ACTIONS(1677), - [aux_sym_expr_binary_token16] = ACTIONS(1677), - [aux_sym_expr_binary_token17] = ACTIONS(1677), - [aux_sym_expr_binary_token18] = ACTIONS(1677), - [aux_sym_expr_binary_token19] = ACTIONS(1677), - [aux_sym_expr_binary_token20] = ACTIONS(1677), - [aux_sym_expr_binary_token21] = ACTIONS(1677), - [aux_sym_expr_binary_token22] = ACTIONS(1677), - [aux_sym_expr_binary_token23] = ACTIONS(1677), - [aux_sym_expr_binary_token24] = ACTIONS(1677), - [aux_sym_expr_binary_token25] = ACTIONS(1677), - [aux_sym_expr_binary_token26] = ACTIONS(1677), - [aux_sym_expr_binary_token27] = ACTIONS(1677), - [aux_sym_expr_binary_token28] = ACTIONS(1677), - [anon_sym_DOT_DOT2] = ACTIONS(1675), - [anon_sym_DOT] = ACTIONS(3905), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1677), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1677), - [anon_sym_err_GT] = ACTIONS(1675), - [anon_sym_out_GT] = ACTIONS(1675), - [anon_sym_e_GT] = ACTIONS(1675), - [anon_sym_o_GT] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT] = ACTIONS(1675), - [anon_sym_err_GT_GT] = ACTIONS(1677), - [anon_sym_out_GT_GT] = ACTIONS(1677), - [anon_sym_e_GT_GT] = ACTIONS(1677), - [anon_sym_o_GT_GT] = ACTIONS(1677), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1677), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1677), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1677), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1677), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(2212), + [anon_sym_false] = ACTIONS(2212), + [anon_sym_null] = ACTIONS(2212), + [aux_sym_cmd_identifier_token38] = ACTIONS(2212), + [aux_sym_cmd_identifier_token39] = ACTIONS(2212), + [aux_sym_cmd_identifier_token40] = ACTIONS(2212), + [sym__newline] = ACTIONS(2212), + [anon_sym_SEMI] = ACTIONS(2212), + [anon_sym_PIPE] = ACTIONS(2212), + [anon_sym_err_GT_PIPE] = ACTIONS(2212), + [anon_sym_out_GT_PIPE] = ACTIONS(2212), + [anon_sym_e_GT_PIPE] = ACTIONS(2212), + [anon_sym_o_GT_PIPE] = ACTIONS(2212), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2212), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2212), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2212), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2212), + [anon_sym_LBRACK] = ACTIONS(2212), + [anon_sym_LPAREN] = ACTIONS(2212), + [anon_sym_RPAREN] = ACTIONS(2212), + [anon_sym_DOLLAR] = ACTIONS(2206), + [anon_sym_DASH_DASH] = ACTIONS(2212), + [anon_sym_DASH] = ACTIONS(2206), + [anon_sym_LBRACE] = ACTIONS(2212), + [anon_sym_RBRACE] = ACTIONS(2212), + [anon_sym_DOT_DOT] = ACTIONS(2206), + [anon_sym_DOT_DOT2] = ACTIONS(4742), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2206), + [anon_sym_DOT_DOT_LT] = ACTIONS(2206), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4744), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4744), + [aux_sym__val_number_decimal_token1] = ACTIONS(2206), + [aux_sym__val_number_decimal_token2] = ACTIONS(2212), + [aux_sym__val_number_decimal_token3] = ACTIONS(2212), + [aux_sym__val_number_decimal_token4] = ACTIONS(2212), + [aux_sym__val_number_token1] = ACTIONS(2212), + [aux_sym__val_number_token2] = ACTIONS(2212), + [aux_sym__val_number_token3] = ACTIONS(2212), + [anon_sym_0b] = ACTIONS(2206), + [anon_sym_0o] = ACTIONS(2206), + [anon_sym_0x] = ACTIONS(2206), + [sym_val_date] = ACTIONS(2212), + [anon_sym_DQUOTE] = ACTIONS(2212), + [sym__str_single_quotes] = ACTIONS(2212), + [sym__str_back_ticks] = ACTIONS(2212), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2212), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2212), + [anon_sym_err_GT] = ACTIONS(2206), + [anon_sym_out_GT] = ACTIONS(2206), + [anon_sym_e_GT] = ACTIONS(2206), + [anon_sym_o_GT] = ACTIONS(2206), + [anon_sym_err_PLUSout_GT] = ACTIONS(2206), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2206), + [anon_sym_o_PLUSe_GT] = ACTIONS(2206), + [anon_sym_e_PLUSo_GT] = ACTIONS(2206), + [anon_sym_err_GT_GT] = ACTIONS(2212), + [anon_sym_out_GT_GT] = ACTIONS(2212), + [anon_sym_e_GT_GT] = ACTIONS(2212), + [anon_sym_o_GT_GT] = ACTIONS(2212), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2212), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2212), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2212), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2212), + [aux_sym_unquoted_token1] = ACTIONS(2206), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2212), }, [1352] = { [sym_comment] = STATE(1352), - [anon_sym_true] = ACTIONS(1997), - [anon_sym_false] = ACTIONS(1997), - [anon_sym_null] = ACTIONS(1997), - [aux_sym_cmd_identifier_token38] = ACTIONS(1997), - [aux_sym_cmd_identifier_token39] = ACTIONS(1997), - [aux_sym_cmd_identifier_token40] = ACTIONS(1997), - [sym__newline] = ACTIONS(1997), - [anon_sym_SEMI] = ACTIONS(1997), - [anon_sym_PIPE] = ACTIONS(1997), - [anon_sym_err_GT_PIPE] = ACTIONS(1997), - [anon_sym_out_GT_PIPE] = ACTIONS(1997), - [anon_sym_e_GT_PIPE] = ACTIONS(1997), - [anon_sym_o_GT_PIPE] = ACTIONS(1997), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1997), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1997), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1997), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1997), - [anon_sym_LBRACK] = ACTIONS(1997), - [anon_sym_LPAREN] = ACTIONS(1997), - [anon_sym_RPAREN] = ACTIONS(1997), - [anon_sym_DOLLAR] = ACTIONS(1991), - [anon_sym_DASH_DASH] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_LBRACE] = ACTIONS(1997), - [anon_sym_RBRACE] = ACTIONS(1997), - [anon_sym_DOT_DOT] = ACTIONS(1991), - [anon_sym_DOT_DOT2] = ACTIONS(4688), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1991), - [anon_sym_DOT_DOT_LT] = ACTIONS(1991), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4690), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4690), - [aux_sym__val_number_decimal_token1] = ACTIONS(1991), - [aux_sym__val_number_decimal_token2] = ACTIONS(1997), - [aux_sym__val_number_decimal_token3] = ACTIONS(1997), - [aux_sym__val_number_decimal_token4] = ACTIONS(1997), - [aux_sym__val_number_token1] = ACTIONS(1997), - [aux_sym__val_number_token2] = ACTIONS(1997), - [aux_sym__val_number_token3] = ACTIONS(1997), - [anon_sym_0b] = ACTIONS(1991), - [anon_sym_0o] = ACTIONS(1991), - [anon_sym_0x] = ACTIONS(1991), - [sym_val_date] = ACTIONS(1997), - [anon_sym_DQUOTE] = ACTIONS(1997), - [sym__str_single_quotes] = ACTIONS(1997), - [sym__str_back_ticks] = ACTIONS(1997), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1997), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1997), - [anon_sym_err_GT] = ACTIONS(1991), - [anon_sym_out_GT] = ACTIONS(1991), - [anon_sym_e_GT] = ACTIONS(1991), - [anon_sym_o_GT] = ACTIONS(1991), - [anon_sym_err_PLUSout_GT] = ACTIONS(1991), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1991), - [anon_sym_o_PLUSe_GT] = ACTIONS(1991), - [anon_sym_e_PLUSo_GT] = ACTIONS(1991), - [anon_sym_err_GT_GT] = ACTIONS(1997), - [anon_sym_out_GT_GT] = ACTIONS(1997), - [anon_sym_e_GT_GT] = ACTIONS(1997), - [anon_sym_o_GT_GT] = ACTIONS(1997), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1997), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1997), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1997), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1997), - [aux_sym_unquoted_token1] = ACTIONS(1991), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(4746), + [anon_sym_false] = ACTIONS(4746), + [anon_sym_null] = ACTIONS(4746), + [aux_sym_cmd_identifier_token38] = ACTIONS(4746), + [aux_sym_cmd_identifier_token39] = ACTIONS(4746), + [aux_sym_cmd_identifier_token40] = ACTIONS(4746), + [sym__newline] = ACTIONS(4746), + [anon_sym_SEMI] = ACTIONS(4746), + [anon_sym_PIPE] = ACTIONS(4746), + [anon_sym_err_GT_PIPE] = ACTIONS(4746), + [anon_sym_out_GT_PIPE] = ACTIONS(4746), + [anon_sym_e_GT_PIPE] = ACTIONS(4746), + [anon_sym_o_GT_PIPE] = ACTIONS(4746), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4746), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4746), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4746), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4746), + [anon_sym_LBRACK] = ACTIONS(4746), + [anon_sym_LPAREN] = ACTIONS(4746), + [anon_sym_RPAREN] = ACTIONS(4746), + [anon_sym_DOLLAR] = ACTIONS(4748), + [anon_sym_DASH_DASH] = ACTIONS(4746), + [anon_sym_DASH] = ACTIONS(4748), + [anon_sym_LBRACE] = ACTIONS(4746), + [anon_sym_RBRACE] = ACTIONS(4746), + [anon_sym_DOT_DOT] = ACTIONS(4748), + [anon_sym_DOT_DOT2] = ACTIONS(4727), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4748), + [anon_sym_DOT_DOT_LT] = ACTIONS(4748), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4729), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4729), + [aux_sym__val_number_decimal_token1] = ACTIONS(4748), + [aux_sym__val_number_decimal_token2] = ACTIONS(4746), + [aux_sym__val_number_decimal_token3] = ACTIONS(4746), + [aux_sym__val_number_decimal_token4] = ACTIONS(4746), + [aux_sym__val_number_token1] = ACTIONS(4746), + [aux_sym__val_number_token2] = ACTIONS(4746), + [aux_sym__val_number_token3] = ACTIONS(4746), + [anon_sym_0b] = ACTIONS(4748), + [anon_sym_0o] = ACTIONS(4748), + [anon_sym_0x] = ACTIONS(4748), + [sym_val_date] = ACTIONS(4746), + [anon_sym_DQUOTE] = ACTIONS(4746), + [sym__str_single_quotes] = ACTIONS(4746), + [sym__str_back_ticks] = ACTIONS(4746), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4746), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4746), + [anon_sym_err_GT] = ACTIONS(4748), + [anon_sym_out_GT] = ACTIONS(4748), + [anon_sym_e_GT] = ACTIONS(4748), + [anon_sym_o_GT] = ACTIONS(4748), + [anon_sym_err_PLUSout_GT] = ACTIONS(4748), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4748), + [anon_sym_o_PLUSe_GT] = ACTIONS(4748), + [anon_sym_e_PLUSo_GT] = ACTIONS(4748), + [anon_sym_err_GT_GT] = ACTIONS(4746), + [anon_sym_out_GT_GT] = ACTIONS(4746), + [anon_sym_e_GT_GT] = ACTIONS(4746), + [anon_sym_o_GT_GT] = ACTIONS(4746), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4746), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4746), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4746), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4746), + [aux_sym_unquoted_token1] = ACTIONS(4748), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(4746), }, [1353] = { [sym_comment] = STATE(1353), - [anon_sym_true] = ACTIONS(2005), - [anon_sym_false] = ACTIONS(2005), - [anon_sym_null] = ACTIONS(2005), - [aux_sym_cmd_identifier_token38] = ACTIONS(2005), - [aux_sym_cmd_identifier_token39] = ACTIONS(2005), - [aux_sym_cmd_identifier_token40] = ACTIONS(2005), - [sym__newline] = ACTIONS(2005), - [anon_sym_SEMI] = ACTIONS(2005), - [anon_sym_PIPE] = ACTIONS(2005), - [anon_sym_err_GT_PIPE] = ACTIONS(2005), - [anon_sym_out_GT_PIPE] = ACTIONS(2005), - [anon_sym_e_GT_PIPE] = ACTIONS(2005), - [anon_sym_o_GT_PIPE] = ACTIONS(2005), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2005), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2005), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2005), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2005), - [anon_sym_LBRACK] = ACTIONS(2005), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_RPAREN] = ACTIONS(2005), - [anon_sym_DOLLAR] = ACTIONS(1999), - [anon_sym_DASH_DASH] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(1999), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_RBRACE] = ACTIONS(2005), - [anon_sym_DOT_DOT] = ACTIONS(1999), - [anon_sym_DOT_DOT2] = ACTIONS(4692), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1999), - [anon_sym_DOT_DOT_LT] = ACTIONS(1999), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4694), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4694), - [aux_sym__val_number_decimal_token1] = ACTIONS(1999), - [aux_sym__val_number_decimal_token2] = ACTIONS(2005), - [aux_sym__val_number_decimal_token3] = ACTIONS(2005), - [aux_sym__val_number_decimal_token4] = ACTIONS(2005), - [aux_sym__val_number_token1] = ACTIONS(2005), - [aux_sym__val_number_token2] = ACTIONS(2005), - [aux_sym__val_number_token3] = ACTIONS(2005), - [anon_sym_0b] = ACTIONS(1999), - [anon_sym_0o] = ACTIONS(1999), - [anon_sym_0x] = ACTIONS(1999), - [sym_val_date] = ACTIONS(2005), - [anon_sym_DQUOTE] = ACTIONS(2005), - [sym__str_single_quotes] = ACTIONS(2005), - [sym__str_back_ticks] = ACTIONS(2005), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2005), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2005), - [anon_sym_err_GT] = ACTIONS(1999), - [anon_sym_out_GT] = ACTIONS(1999), - [anon_sym_e_GT] = ACTIONS(1999), - [anon_sym_o_GT] = ACTIONS(1999), - [anon_sym_err_PLUSout_GT] = ACTIONS(1999), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1999), - [anon_sym_o_PLUSe_GT] = ACTIONS(1999), - [anon_sym_e_PLUSo_GT] = ACTIONS(1999), - [anon_sym_err_GT_GT] = ACTIONS(2005), - [anon_sym_out_GT_GT] = ACTIONS(2005), - [anon_sym_e_GT_GT] = ACTIONS(2005), - [anon_sym_o_GT_GT] = ACTIONS(2005), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2005), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2005), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2005), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2005), - [aux_sym_unquoted_token1] = ACTIONS(1999), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(1717), + [anon_sym_false] = ACTIONS(1717), + [anon_sym_null] = ACTIONS(1717), + [aux_sym_cmd_identifier_token38] = ACTIONS(1717), + [aux_sym_cmd_identifier_token39] = ACTIONS(1717), + [aux_sym_cmd_identifier_token40] = ACTIONS(1717), + [sym__newline] = ACTIONS(1717), + [anon_sym_SEMI] = ACTIONS(1717), + [anon_sym_PIPE] = ACTIONS(1717), + [anon_sym_err_GT_PIPE] = ACTIONS(1717), + [anon_sym_out_GT_PIPE] = ACTIONS(1717), + [anon_sym_e_GT_PIPE] = ACTIONS(1717), + [anon_sym_o_GT_PIPE] = ACTIONS(1717), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1717), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1717), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1717), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1717), + [anon_sym_LBRACK] = ACTIONS(1717), + [anon_sym_LPAREN] = ACTIONS(1715), + [anon_sym_RPAREN] = ACTIONS(1717), + [anon_sym_DOLLAR] = ACTIONS(1715), + [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_LBRACE] = ACTIONS(1717), + [anon_sym_RBRACE] = ACTIONS(1717), + [anon_sym_DOT_DOT] = ACTIONS(1715), + [anon_sym_LPAREN2] = ACTIONS(1717), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1717), + [anon_sym_DOT_DOT_LT] = ACTIONS(1717), + [aux_sym__immediate_decimal_token2] = ACTIONS(4675), + [aux_sym__val_number_decimal_token1] = ACTIONS(1715), + [aux_sym__val_number_decimal_token2] = ACTIONS(1717), + [aux_sym__val_number_decimal_token3] = ACTIONS(1717), + [aux_sym__val_number_decimal_token4] = ACTIONS(1717), + [aux_sym__val_number_token1] = ACTIONS(1717), + [aux_sym__val_number_token2] = ACTIONS(1717), + [aux_sym__val_number_token3] = ACTIONS(1717), + [anon_sym_0b] = ACTIONS(1715), + [anon_sym_0o] = ACTIONS(1715), + [anon_sym_0x] = ACTIONS(1715), + [sym_val_date] = ACTIONS(1717), + [anon_sym_DQUOTE] = ACTIONS(1717), + [sym__str_single_quotes] = ACTIONS(1717), + [sym__str_back_ticks] = ACTIONS(1717), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1717), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1717), + [anon_sym_err_GT] = ACTIONS(1715), + [anon_sym_out_GT] = ACTIONS(1715), + [anon_sym_e_GT] = ACTIONS(1715), + [anon_sym_o_GT] = ACTIONS(1715), + [anon_sym_err_PLUSout_GT] = ACTIONS(1715), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1715), + [anon_sym_o_PLUSe_GT] = ACTIONS(1715), + [anon_sym_e_PLUSo_GT] = ACTIONS(1715), + [anon_sym_err_GT_GT] = ACTIONS(1717), + [anon_sym_out_GT_GT] = ACTIONS(1717), + [anon_sym_e_GT_GT] = ACTIONS(1717), + [anon_sym_o_GT_GT] = ACTIONS(1717), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1717), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1717), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1717), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1717), + [aux_sym_unquoted_token1] = ACTIONS(1715), + [aux_sym_unquoted_token2] = ACTIONS(1715), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1717), }, [1354] = { [sym_comment] = STATE(1354), - [anon_sym_true] = ACTIONS(2013), - [anon_sym_false] = ACTIONS(2013), - [anon_sym_null] = ACTIONS(2013), - [aux_sym_cmd_identifier_token38] = ACTIONS(2013), - [aux_sym_cmd_identifier_token39] = ACTIONS(2013), - [aux_sym_cmd_identifier_token40] = ACTIONS(2013), - [sym__newline] = ACTIONS(2013), - [anon_sym_SEMI] = ACTIONS(2013), - [anon_sym_PIPE] = ACTIONS(2013), - [anon_sym_err_GT_PIPE] = ACTIONS(2013), - [anon_sym_out_GT_PIPE] = ACTIONS(2013), - [anon_sym_e_GT_PIPE] = ACTIONS(2013), - [anon_sym_o_GT_PIPE] = ACTIONS(2013), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2013), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2013), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2013), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2013), - [anon_sym_LBRACK] = ACTIONS(2013), - [anon_sym_LPAREN] = ACTIONS(2013), - [anon_sym_RPAREN] = ACTIONS(2013), - [anon_sym_DOLLAR] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2013), - [anon_sym_DASH] = ACTIONS(2007), - [anon_sym_LBRACE] = ACTIONS(2013), - [anon_sym_RBRACE] = ACTIONS(2013), - [anon_sym_DOT_DOT] = ACTIONS(2007), - [anon_sym_DOT_DOT2] = ACTIONS(4696), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2007), - [anon_sym_DOT_DOT_LT] = ACTIONS(2007), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4698), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4698), - [aux_sym__val_number_decimal_token1] = ACTIONS(2007), - [aux_sym__val_number_decimal_token2] = ACTIONS(2013), - [aux_sym__val_number_decimal_token3] = ACTIONS(2013), - [aux_sym__val_number_decimal_token4] = ACTIONS(2013), - [aux_sym__val_number_token1] = ACTIONS(2013), - [aux_sym__val_number_token2] = ACTIONS(2013), - [aux_sym__val_number_token3] = ACTIONS(2013), - [anon_sym_0b] = ACTIONS(2007), - [anon_sym_0o] = ACTIONS(2007), - [anon_sym_0x] = ACTIONS(2007), - [sym_val_date] = ACTIONS(2013), - [anon_sym_DQUOTE] = ACTIONS(2013), - [sym__str_single_quotes] = ACTIONS(2013), - [sym__str_back_ticks] = ACTIONS(2013), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2013), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2013), - [anon_sym_err_GT] = ACTIONS(2007), - [anon_sym_out_GT] = ACTIONS(2007), - [anon_sym_e_GT] = ACTIONS(2007), - [anon_sym_o_GT] = ACTIONS(2007), - [anon_sym_err_PLUSout_GT] = ACTIONS(2007), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2007), - [anon_sym_o_PLUSe_GT] = ACTIONS(2007), - [anon_sym_e_PLUSo_GT] = ACTIONS(2007), - [anon_sym_err_GT_GT] = ACTIONS(2013), - [anon_sym_out_GT_GT] = ACTIONS(2013), - [anon_sym_e_GT_GT] = ACTIONS(2013), - [anon_sym_o_GT_GT] = ACTIONS(2013), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2013), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2013), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2013), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2013), - [aux_sym_unquoted_token1] = ACTIONS(2007), - [anon_sym_POUND] = ACTIONS(247), - }, - [1355] = { - [sym_comment] = STATE(1355), - [anon_sym_true] = ACTIONS(1669), - [anon_sym_false] = ACTIONS(1669), - [anon_sym_null] = ACTIONS(1669), - [aux_sym_cmd_identifier_token38] = ACTIONS(1669), - [aux_sym_cmd_identifier_token39] = ACTIONS(1669), - [aux_sym_cmd_identifier_token40] = ACTIONS(1669), - [sym__newline] = ACTIONS(1669), - [anon_sym_SEMI] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1669), - [anon_sym_err_GT_PIPE] = ACTIONS(1669), - [anon_sym_out_GT_PIPE] = ACTIONS(1669), - [anon_sym_e_GT_PIPE] = ACTIONS(1669), - [anon_sym_o_GT_PIPE] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), - [anon_sym_LBRACK] = ACTIONS(1669), - [anon_sym_LPAREN] = ACTIONS(1669), - [anon_sym_RPAREN] = ACTIONS(1669), - [anon_sym_DOLLAR] = ACTIONS(1667), - [anon_sym_DASH_DASH] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_LBRACE] = ACTIONS(1669), - [anon_sym_RBRACE] = ACTIONS(1669), - [anon_sym_DOT_DOT] = ACTIONS(1667), - [anon_sym_DOT_DOT2] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1667), - [anon_sym_DOT_DOT_LT] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [aux_sym__val_number_decimal_token1] = ACTIONS(1667), - [aux_sym__val_number_decimal_token2] = ACTIONS(1669), - [aux_sym__val_number_decimal_token3] = ACTIONS(1669), - [aux_sym__val_number_decimal_token4] = ACTIONS(1669), - [aux_sym__val_number_token1] = ACTIONS(1669), - [aux_sym__val_number_token2] = ACTIONS(1669), - [aux_sym__val_number_token3] = ACTIONS(1669), - [anon_sym_0b] = ACTIONS(1667), - [anon_sym_0o] = ACTIONS(1667), - [anon_sym_0x] = ACTIONS(1667), - [sym_val_date] = ACTIONS(1669), - [anon_sym_DQUOTE] = ACTIONS(1669), - [sym__str_single_quotes] = ACTIONS(1669), - [sym__str_back_ticks] = ACTIONS(1669), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1669), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1669), - [anon_sym_err_GT] = ACTIONS(1667), - [anon_sym_out_GT] = ACTIONS(1667), - [anon_sym_e_GT] = ACTIONS(1667), - [anon_sym_o_GT] = ACTIONS(1667), - [anon_sym_err_PLUSout_GT] = ACTIONS(1667), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1667), - [anon_sym_o_PLUSe_GT] = ACTIONS(1667), - [anon_sym_e_PLUSo_GT] = ACTIONS(1667), - [anon_sym_err_GT_GT] = ACTIONS(1669), - [anon_sym_out_GT_GT] = ACTIONS(1669), - [anon_sym_e_GT_GT] = ACTIONS(1669), - [anon_sym_o_GT_GT] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1669), - [aux_sym_unquoted_token1] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(247), - }, - [1356] = { - [sym_comment] = STATE(1356), - [anon_sym_true] = ACTIONS(1661), - [anon_sym_false] = ACTIONS(1661), - [anon_sym_null] = ACTIONS(1661), - [aux_sym_cmd_identifier_token38] = ACTIONS(1661), - [aux_sym_cmd_identifier_token39] = ACTIONS(1661), - [aux_sym_cmd_identifier_token40] = ACTIONS(1661), - [sym__newline] = ACTIONS(1661), - [anon_sym_SEMI] = ACTIONS(1661), - [anon_sym_PIPE] = ACTIONS(1661), - [anon_sym_err_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_GT_PIPE] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_LPAREN] = ACTIONS(1661), - [anon_sym_RPAREN] = ACTIONS(1661), - [anon_sym_DOLLAR] = ACTIONS(1659), - [anon_sym_DASH_DASH] = ACTIONS(1661), - [anon_sym_DASH] = ACTIONS(1659), - [anon_sym_LBRACE] = ACTIONS(1661), - [anon_sym_RBRACE] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1659), - [anon_sym_DOT_DOT2] = ACTIONS(1659), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1659), - [anon_sym_DOT_DOT_LT] = ACTIONS(1659), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1661), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1661), - [aux_sym__val_number_decimal_token1] = ACTIONS(1659), - [aux_sym__val_number_decimal_token2] = ACTIONS(1661), - [aux_sym__val_number_decimal_token3] = ACTIONS(1661), - [aux_sym__val_number_decimal_token4] = ACTIONS(1661), - [aux_sym__val_number_token1] = ACTIONS(1661), - [aux_sym__val_number_token2] = ACTIONS(1661), - [aux_sym__val_number_token3] = ACTIONS(1661), - [anon_sym_0b] = ACTIONS(1659), - [anon_sym_0o] = ACTIONS(1659), - [anon_sym_0x] = ACTIONS(1659), - [sym_val_date] = ACTIONS(1661), - [anon_sym_DQUOTE] = ACTIONS(1661), - [sym__str_single_quotes] = ACTIONS(1661), - [sym__str_back_ticks] = ACTIONS(1661), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1661), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1661), - [anon_sym_err_GT] = ACTIONS(1659), - [anon_sym_out_GT] = ACTIONS(1659), - [anon_sym_e_GT] = ACTIONS(1659), - [anon_sym_o_GT] = ACTIONS(1659), - [anon_sym_err_PLUSout_GT] = ACTIONS(1659), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1659), - [anon_sym_o_PLUSe_GT] = ACTIONS(1659), - [anon_sym_e_PLUSo_GT] = ACTIONS(1659), - [anon_sym_err_GT_GT] = ACTIONS(1661), - [anon_sym_out_GT_GT] = ACTIONS(1661), - [anon_sym_e_GT_GT] = ACTIONS(1661), - [anon_sym_o_GT_GT] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1661), - [aux_sym_unquoted_token1] = ACTIONS(1659), - [anon_sym_POUND] = ACTIONS(247), - }, - [1357] = { - [sym_comment] = STATE(1357), - [anon_sym_true] = ACTIONS(1723), - [anon_sym_false] = ACTIONS(1723), - [anon_sym_null] = ACTIONS(1723), - [aux_sym_cmd_identifier_token38] = ACTIONS(1723), - [aux_sym_cmd_identifier_token39] = ACTIONS(1723), - [aux_sym_cmd_identifier_token40] = ACTIONS(1723), - [sym__newline] = ACTIONS(1723), - [anon_sym_SEMI] = ACTIONS(1723), - [anon_sym_PIPE] = ACTIONS(1723), - [anon_sym_err_GT_PIPE] = ACTIONS(1723), - [anon_sym_out_GT_PIPE] = ACTIONS(1723), - [anon_sym_e_GT_PIPE] = ACTIONS(1723), - [anon_sym_o_GT_PIPE] = ACTIONS(1723), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1723), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1723), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1723), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1723), - [anon_sym_LBRACK] = ACTIONS(1723), - [anon_sym_LPAREN] = ACTIONS(1723), - [anon_sym_RPAREN] = ACTIONS(1723), - [anon_sym_DOLLAR] = ACTIONS(1721), - [anon_sym_DASH_DASH] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1723), - [anon_sym_RBRACE] = ACTIONS(1723), - [anon_sym_DOT_DOT] = ACTIONS(1721), - [anon_sym_DOT_DOT2] = ACTIONS(1721), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1721), - [anon_sym_DOT_DOT_LT] = ACTIONS(1721), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1723), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1723), - [aux_sym__val_number_decimal_token1] = ACTIONS(1721), - [aux_sym__val_number_decimal_token2] = ACTIONS(1723), - [aux_sym__val_number_decimal_token3] = ACTIONS(1723), - [aux_sym__val_number_decimal_token4] = ACTIONS(1723), - [aux_sym__val_number_token1] = ACTIONS(1723), - [aux_sym__val_number_token2] = ACTIONS(1723), - [aux_sym__val_number_token3] = ACTIONS(1723), - [anon_sym_0b] = ACTIONS(1721), - [anon_sym_0o] = ACTIONS(1721), - [anon_sym_0x] = ACTIONS(1721), - [sym_val_date] = ACTIONS(1723), - [anon_sym_DQUOTE] = ACTIONS(1723), - [sym__str_single_quotes] = ACTIONS(1723), - [sym__str_back_ticks] = ACTIONS(1723), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1723), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1723), - [anon_sym_err_GT] = ACTIONS(1721), - [anon_sym_out_GT] = ACTIONS(1721), - [anon_sym_e_GT] = ACTIONS(1721), - [anon_sym_o_GT] = ACTIONS(1721), - [anon_sym_err_PLUSout_GT] = ACTIONS(1721), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1721), - [anon_sym_o_PLUSe_GT] = ACTIONS(1721), - [anon_sym_e_PLUSo_GT] = ACTIONS(1721), - [anon_sym_err_GT_GT] = ACTIONS(1723), - [anon_sym_out_GT_GT] = ACTIONS(1723), - [anon_sym_e_GT_GT] = ACTIONS(1723), - [anon_sym_o_GT_GT] = ACTIONS(1723), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1723), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1723), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1723), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1723), - [aux_sym_unquoted_token1] = ACTIONS(1721), - [anon_sym_POUND] = ACTIONS(247), - }, - [1358] = { - [sym_comment] = STATE(1358), - [anon_sym_true] = ACTIONS(1740), - [anon_sym_false] = ACTIONS(1740), - [anon_sym_null] = ACTIONS(1740), - [aux_sym_cmd_identifier_token38] = ACTIONS(1740), - [aux_sym_cmd_identifier_token39] = ACTIONS(1740), - [aux_sym_cmd_identifier_token40] = ACTIONS(1740), - [sym__newline] = ACTIONS(1740), - [anon_sym_SEMI] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1740), - [anon_sym_err_GT_PIPE] = ACTIONS(1740), - [anon_sym_out_GT_PIPE] = ACTIONS(1740), - [anon_sym_e_GT_PIPE] = ACTIONS(1740), - [anon_sym_o_GT_PIPE] = ACTIONS(1740), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1740), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1740), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1740), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1740), - [anon_sym_LBRACK] = ACTIONS(1740), - [anon_sym_LPAREN] = ACTIONS(1740), - [anon_sym_RPAREN] = ACTIONS(1740), - [anon_sym_DOLLAR] = ACTIONS(1738), - [anon_sym_DASH_DASH] = ACTIONS(1740), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_LBRACE] = ACTIONS(1740), - [anon_sym_RBRACE] = ACTIONS(1740), - [anon_sym_DOT_DOT] = ACTIONS(1738), - [anon_sym_DOT_DOT2] = ACTIONS(1738), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1738), - [anon_sym_DOT_DOT_LT] = ACTIONS(1738), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1740), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1740), - [aux_sym__val_number_decimal_token1] = ACTIONS(1738), - [aux_sym__val_number_decimal_token2] = ACTIONS(1740), - [aux_sym__val_number_decimal_token3] = ACTIONS(1740), - [aux_sym__val_number_decimal_token4] = ACTIONS(1740), - [aux_sym__val_number_token1] = ACTIONS(1740), - [aux_sym__val_number_token2] = ACTIONS(1740), - [aux_sym__val_number_token3] = ACTIONS(1740), - [anon_sym_0b] = ACTIONS(1738), - [anon_sym_0o] = ACTIONS(1738), - [anon_sym_0x] = ACTIONS(1738), - [sym_val_date] = ACTIONS(1740), - [anon_sym_DQUOTE] = ACTIONS(1740), - [sym__str_single_quotes] = ACTIONS(1740), - [sym__str_back_ticks] = ACTIONS(1740), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1740), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1740), - [anon_sym_err_GT] = ACTIONS(1738), - [anon_sym_out_GT] = ACTIONS(1738), - [anon_sym_e_GT] = ACTIONS(1738), - [anon_sym_o_GT] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT] = ACTIONS(1738), - [anon_sym_err_GT_GT] = ACTIONS(1740), - [anon_sym_out_GT_GT] = ACTIONS(1740), - [anon_sym_e_GT_GT] = ACTIONS(1740), - [anon_sym_o_GT_GT] = ACTIONS(1740), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1740), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1740), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1740), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1740), - [aux_sym_unquoted_token1] = ACTIONS(1738), - [anon_sym_POUND] = ACTIONS(247), - }, - [1359] = { - [sym_comment] = STATE(1359), - [aux_sym_cmd_identifier_token41] = ACTIONS(1518), - [sym__newline] = ACTIONS(1518), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_err_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_GT_PIPE] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1520), - [anon_sym_RBRACE] = ACTIONS(1520), - [anon_sym_EQ_GT] = ACTIONS(1520), - [aux_sym_expr_binary_token1] = ACTIONS(1520), - [aux_sym_expr_binary_token2] = ACTIONS(1520), - [aux_sym_expr_binary_token3] = ACTIONS(1520), - [aux_sym_expr_binary_token4] = ACTIONS(1520), - [aux_sym_expr_binary_token5] = ACTIONS(1520), - [aux_sym_expr_binary_token6] = ACTIONS(1520), - [aux_sym_expr_binary_token7] = ACTIONS(1520), - [aux_sym_expr_binary_token8] = ACTIONS(1520), - [aux_sym_expr_binary_token9] = ACTIONS(1520), - [aux_sym_expr_binary_token10] = ACTIONS(1520), - [aux_sym_expr_binary_token11] = ACTIONS(1520), - [aux_sym_expr_binary_token12] = ACTIONS(1520), - [aux_sym_expr_binary_token13] = ACTIONS(1520), - [aux_sym_expr_binary_token14] = ACTIONS(1520), - [aux_sym_expr_binary_token15] = ACTIONS(1520), - [aux_sym_expr_binary_token16] = ACTIONS(1520), - [aux_sym_expr_binary_token17] = ACTIONS(1520), - [aux_sym_expr_binary_token18] = ACTIONS(1520), - [aux_sym_expr_binary_token19] = ACTIONS(1520), - [aux_sym_expr_binary_token20] = ACTIONS(1520), - [aux_sym_expr_binary_token21] = ACTIONS(1520), - [aux_sym_expr_binary_token22] = ACTIONS(1520), - [aux_sym_expr_binary_token23] = ACTIONS(1520), - [aux_sym_expr_binary_token24] = ACTIONS(1520), - [aux_sym_expr_binary_token25] = ACTIONS(1520), - [aux_sym_expr_binary_token26] = ACTIONS(1520), - [aux_sym_expr_binary_token27] = ACTIONS(1520), - [aux_sym_expr_binary_token28] = ACTIONS(1520), - [anon_sym_DOT_DOT2] = ACTIONS(1518), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), - [sym_filesize_unit] = ACTIONS(1520), - [sym_duration_unit] = ACTIONS(1520), - [aux_sym_record_entry_token1] = ACTIONS(1520), - [anon_sym_err_GT] = ACTIONS(1518), - [anon_sym_out_GT] = ACTIONS(1518), - [anon_sym_e_GT] = ACTIONS(1518), - [anon_sym_o_GT] = ACTIONS(1518), - [anon_sym_err_PLUSout_GT] = ACTIONS(1518), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), - [anon_sym_o_PLUSe_GT] = ACTIONS(1518), - [anon_sym_e_PLUSo_GT] = ACTIONS(1518), - [anon_sym_err_GT_GT] = ACTIONS(1520), - [anon_sym_out_GT_GT] = ACTIONS(1520), - [anon_sym_e_GT_GT] = ACTIONS(1520), - [anon_sym_o_GT_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1520), - [anon_sym_POUND] = ACTIONS(247), - }, - [1360] = { - [sym_cell_path] = STATE(1915), - [sym_path] = STATE(1603), - [sym_comment] = STATE(1360), - [aux_sym_cell_path_repeat1] = STATE(1493), - [ts_builtin_sym_end] = ACTIONS(1898), - [anon_sym_true] = ACTIONS(1898), - [anon_sym_false] = ACTIONS(1898), - [anon_sym_null] = ACTIONS(1898), - [aux_sym_cmd_identifier_token38] = ACTIONS(1898), - [aux_sym_cmd_identifier_token39] = ACTIONS(1898), - [aux_sym_cmd_identifier_token40] = ACTIONS(1898), - [sym__newline] = ACTIONS(1898), - [anon_sym_SEMI] = ACTIONS(1898), - [anon_sym_PIPE] = ACTIONS(1898), - [anon_sym_err_GT_PIPE] = ACTIONS(1898), - [anon_sym_out_GT_PIPE] = ACTIONS(1898), - [anon_sym_e_GT_PIPE] = ACTIONS(1898), - [anon_sym_o_GT_PIPE] = ACTIONS(1898), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1898), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1898), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1898), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1898), - [anon_sym_LBRACK] = ACTIONS(1898), - [anon_sym_LPAREN] = ACTIONS(1898), - [anon_sym_DOLLAR] = ACTIONS(1896), - [anon_sym_DASH_DASH] = ACTIONS(1898), - [anon_sym_DASH] = ACTIONS(1896), - [anon_sym_LBRACE] = ACTIONS(1898), - [anon_sym_DOT_DOT] = ACTIONS(1896), - [anon_sym_DOT] = ACTIONS(4680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1898), - [anon_sym_DOT_DOT_LT] = ACTIONS(1898), - [aux_sym__val_number_decimal_token1] = ACTIONS(1896), - [aux_sym__val_number_decimal_token2] = ACTIONS(1898), - [aux_sym__val_number_decimal_token3] = ACTIONS(1898), - [aux_sym__val_number_decimal_token4] = ACTIONS(1898), - [aux_sym__val_number_token1] = ACTIONS(1898), - [aux_sym__val_number_token2] = ACTIONS(1898), - [aux_sym__val_number_token3] = ACTIONS(1898), - [anon_sym_0b] = ACTIONS(1896), - [anon_sym_0o] = ACTIONS(1896), - [anon_sym_0x] = ACTIONS(1896), - [sym_val_date] = ACTIONS(1898), - [anon_sym_DQUOTE] = ACTIONS(1898), - [sym__str_single_quotes] = ACTIONS(1898), - [sym__str_back_ticks] = ACTIONS(1898), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1898), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1898), - [anon_sym_err_GT] = ACTIONS(1896), - [anon_sym_out_GT] = ACTIONS(1896), - [anon_sym_e_GT] = ACTIONS(1896), - [anon_sym_o_GT] = ACTIONS(1896), - [anon_sym_err_PLUSout_GT] = ACTIONS(1896), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1896), - [anon_sym_o_PLUSe_GT] = ACTIONS(1896), - [anon_sym_e_PLUSo_GT] = ACTIONS(1896), - [anon_sym_err_GT_GT] = ACTIONS(1898), - [anon_sym_out_GT_GT] = ACTIONS(1898), - [anon_sym_e_GT_GT] = ACTIONS(1898), - [anon_sym_o_GT_GT] = ACTIONS(1898), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1898), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1898), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1898), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1898), - [aux_sym_unquoted_token1] = ACTIONS(1896), - [anon_sym_POUND] = ACTIONS(247), - }, - [1361] = { - [sym_comment] = STATE(1361), - [ts_builtin_sym_end] = ACTIONS(1520), - [aux_sym_cmd_identifier_token41] = ACTIONS(1518), - [sym__newline] = ACTIONS(1520), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_err_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_GT_PIPE] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1520), - [aux_sym_expr_binary_token1] = ACTIONS(1520), - [aux_sym_expr_binary_token2] = ACTIONS(1520), - [aux_sym_expr_binary_token3] = ACTIONS(1520), - [aux_sym_expr_binary_token4] = ACTIONS(1520), - [aux_sym_expr_binary_token5] = ACTIONS(1520), - [aux_sym_expr_binary_token6] = ACTIONS(1520), - [aux_sym_expr_binary_token7] = ACTIONS(1520), - [aux_sym_expr_binary_token8] = ACTIONS(1520), - [aux_sym_expr_binary_token9] = ACTIONS(1520), - [aux_sym_expr_binary_token10] = ACTIONS(1520), - [aux_sym_expr_binary_token11] = ACTIONS(1520), - [aux_sym_expr_binary_token12] = ACTIONS(1520), - [aux_sym_expr_binary_token13] = ACTIONS(1520), - [aux_sym_expr_binary_token14] = ACTIONS(1520), - [aux_sym_expr_binary_token15] = ACTIONS(1520), - [aux_sym_expr_binary_token16] = ACTIONS(1520), - [aux_sym_expr_binary_token17] = ACTIONS(1520), - [aux_sym_expr_binary_token18] = ACTIONS(1520), - [aux_sym_expr_binary_token19] = ACTIONS(1520), - [aux_sym_expr_binary_token20] = ACTIONS(1520), - [aux_sym_expr_binary_token21] = ACTIONS(1520), - [aux_sym_expr_binary_token22] = ACTIONS(1520), - [aux_sym_expr_binary_token23] = ACTIONS(1520), - [aux_sym_expr_binary_token24] = ACTIONS(1520), - [aux_sym_expr_binary_token25] = ACTIONS(1520), - [aux_sym_expr_binary_token26] = ACTIONS(1520), - [aux_sym_expr_binary_token27] = ACTIONS(1520), - [aux_sym_expr_binary_token28] = ACTIONS(1520), - [anon_sym_DOT_DOT2] = ACTIONS(1518), - [anon_sym_DOT] = ACTIONS(4700), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), - [aux_sym__immediate_decimal_token2] = ACTIONS(4702), - [sym_filesize_unit] = ACTIONS(1520), - [sym_duration_unit] = ACTIONS(1520), - [anon_sym_err_GT] = ACTIONS(1518), - [anon_sym_out_GT] = ACTIONS(1518), - [anon_sym_e_GT] = ACTIONS(1518), - [anon_sym_o_GT] = ACTIONS(1518), - [anon_sym_err_PLUSout_GT] = ACTIONS(1518), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), - [anon_sym_o_PLUSe_GT] = ACTIONS(1518), - [anon_sym_e_PLUSo_GT] = ACTIONS(1518), - [anon_sym_err_GT_GT] = ACTIONS(1520), - [anon_sym_out_GT_GT] = ACTIONS(1520), - [anon_sym_e_GT_GT] = ACTIONS(1520), - [anon_sym_o_GT_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1520), - [anon_sym_POUND] = ACTIONS(247), - }, - [1362] = { - [sym_comment] = STATE(1362), - [ts_builtin_sym_end] = ACTIONS(1723), - [anon_sym_true] = ACTIONS(1723), - [anon_sym_false] = ACTIONS(1723), - [anon_sym_null] = ACTIONS(1723), - [aux_sym_cmd_identifier_token38] = ACTIONS(1723), - [aux_sym_cmd_identifier_token39] = ACTIONS(1723), - [aux_sym_cmd_identifier_token40] = ACTIONS(1723), - [sym__newline] = ACTIONS(1723), - [anon_sym_SEMI] = ACTIONS(1723), - [anon_sym_PIPE] = ACTIONS(1723), - [anon_sym_err_GT_PIPE] = ACTIONS(1723), - [anon_sym_out_GT_PIPE] = ACTIONS(1723), - [anon_sym_e_GT_PIPE] = ACTIONS(1723), - [anon_sym_o_GT_PIPE] = ACTIONS(1723), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1723), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1723), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1723), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1723), - [anon_sym_LBRACK] = ACTIONS(1723), - [anon_sym_LPAREN] = ACTIONS(1723), - [anon_sym_DOLLAR] = ACTIONS(1721), - [anon_sym_DASH_DASH] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1723), - [anon_sym_DOT_DOT] = ACTIONS(1721), - [anon_sym_DOT_DOT2] = ACTIONS(1721), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1721), - [anon_sym_DOT_DOT_LT] = ACTIONS(1721), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1723), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1723), - [aux_sym__immediate_decimal_token2] = ACTIONS(4704), - [aux_sym__val_number_decimal_token1] = ACTIONS(1721), - [aux_sym__val_number_decimal_token2] = ACTIONS(1723), - [aux_sym__val_number_decimal_token3] = ACTIONS(1723), - [aux_sym__val_number_decimal_token4] = ACTIONS(1723), - [aux_sym__val_number_token1] = ACTIONS(1723), - [aux_sym__val_number_token2] = ACTIONS(1723), - [aux_sym__val_number_token3] = ACTIONS(1723), - [anon_sym_0b] = ACTIONS(1721), - [anon_sym_0o] = ACTIONS(1721), - [anon_sym_0x] = ACTIONS(1721), - [sym_val_date] = ACTIONS(1723), - [anon_sym_DQUOTE] = ACTIONS(1723), - [sym__str_single_quotes] = ACTIONS(1723), - [sym__str_back_ticks] = ACTIONS(1723), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1723), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1723), - [anon_sym_err_GT] = ACTIONS(1721), - [anon_sym_out_GT] = ACTIONS(1721), - [anon_sym_e_GT] = ACTIONS(1721), - [anon_sym_o_GT] = ACTIONS(1721), - [anon_sym_err_PLUSout_GT] = ACTIONS(1721), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1721), - [anon_sym_o_PLUSe_GT] = ACTIONS(1721), - [anon_sym_e_PLUSo_GT] = ACTIONS(1721), - [anon_sym_err_GT_GT] = ACTIONS(1723), - [anon_sym_out_GT_GT] = ACTIONS(1723), - [anon_sym_e_GT_GT] = ACTIONS(1723), - [anon_sym_o_GT_GT] = ACTIONS(1723), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1723), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1723), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1723), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1723), - [aux_sym_unquoted_token1] = ACTIONS(1721), - [anon_sym_POUND] = ACTIONS(247), - }, - [1363] = { - [sym_comment] = STATE(1363), - [aux_sym_cmd_identifier_token41] = ACTIONS(1518), - [sym__newline] = ACTIONS(1520), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_err_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_GT_PIPE] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1520), - [anon_sym_RPAREN] = ACTIONS(1520), - [anon_sym_RBRACE] = ACTIONS(1520), - [aux_sym_expr_binary_token1] = ACTIONS(1520), - [aux_sym_expr_binary_token2] = ACTIONS(1520), - [aux_sym_expr_binary_token3] = ACTIONS(1520), - [aux_sym_expr_binary_token4] = ACTIONS(1520), - [aux_sym_expr_binary_token5] = ACTIONS(1520), - [aux_sym_expr_binary_token6] = ACTIONS(1520), - [aux_sym_expr_binary_token7] = ACTIONS(1520), - [aux_sym_expr_binary_token8] = ACTIONS(1520), - [aux_sym_expr_binary_token9] = ACTIONS(1520), - [aux_sym_expr_binary_token10] = ACTIONS(1520), - [aux_sym_expr_binary_token11] = ACTIONS(1520), - [aux_sym_expr_binary_token12] = ACTIONS(1520), - [aux_sym_expr_binary_token13] = ACTIONS(1520), - [aux_sym_expr_binary_token14] = ACTIONS(1520), - [aux_sym_expr_binary_token15] = ACTIONS(1520), - [aux_sym_expr_binary_token16] = ACTIONS(1520), - [aux_sym_expr_binary_token17] = ACTIONS(1520), - [aux_sym_expr_binary_token18] = ACTIONS(1520), - [aux_sym_expr_binary_token19] = ACTIONS(1520), - [aux_sym_expr_binary_token20] = ACTIONS(1520), - [aux_sym_expr_binary_token21] = ACTIONS(1520), - [aux_sym_expr_binary_token22] = ACTIONS(1520), - [aux_sym_expr_binary_token23] = ACTIONS(1520), - [aux_sym_expr_binary_token24] = ACTIONS(1520), - [aux_sym_expr_binary_token25] = ACTIONS(1520), - [aux_sym_expr_binary_token26] = ACTIONS(1520), - [aux_sym_expr_binary_token27] = ACTIONS(1520), - [aux_sym_expr_binary_token28] = ACTIONS(1520), - [anon_sym_DOT_DOT2] = ACTIONS(1518), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), - [aux_sym__immediate_decimal_token2] = ACTIONS(4676), - [sym_filesize_unit] = ACTIONS(1520), - [sym_duration_unit] = ACTIONS(1520), - [anon_sym_err_GT] = ACTIONS(1518), - [anon_sym_out_GT] = ACTIONS(1518), - [anon_sym_e_GT] = ACTIONS(1518), - [anon_sym_o_GT] = ACTIONS(1518), - [anon_sym_err_PLUSout_GT] = ACTIONS(1518), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), - [anon_sym_o_PLUSe_GT] = ACTIONS(1518), - [anon_sym_e_PLUSo_GT] = ACTIONS(1518), - [anon_sym_err_GT_GT] = ACTIONS(1520), - [anon_sym_out_GT_GT] = ACTIONS(1520), - [anon_sym_e_GT_GT] = ACTIONS(1520), - [anon_sym_o_GT_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1520), - [anon_sym_POUND] = ACTIONS(247), - }, - [1364] = { - [sym_comment] = STATE(1364), - [anon_sym_true] = ACTIONS(2025), - [anon_sym_false] = ACTIONS(2025), - [anon_sym_null] = ACTIONS(2025), - [aux_sym_cmd_identifier_token38] = ACTIONS(2025), - [aux_sym_cmd_identifier_token39] = ACTIONS(2025), - [aux_sym_cmd_identifier_token40] = ACTIONS(2025), - [sym__newline] = ACTIONS(2025), - [anon_sym_SEMI] = ACTIONS(2025), - [anon_sym_PIPE] = ACTIONS(2025), - [anon_sym_err_GT_PIPE] = ACTIONS(2025), - [anon_sym_out_GT_PIPE] = ACTIONS(2025), - [anon_sym_e_GT_PIPE] = ACTIONS(2025), - [anon_sym_o_GT_PIPE] = ACTIONS(2025), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2025), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2025), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2025), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2025), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_LPAREN] = ACTIONS(2025), - [anon_sym_RPAREN] = ACTIONS(2025), - [anon_sym_DOLLAR] = ACTIONS(2019), - [anon_sym_DASH_DASH] = ACTIONS(2025), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_LBRACE] = ACTIONS(2025), - [anon_sym_RBRACE] = ACTIONS(2025), - [anon_sym_DOT_DOT] = ACTIONS(2019), - [anon_sym_DOT_DOT2] = ACTIONS(4706), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2019), - [anon_sym_DOT_DOT_LT] = ACTIONS(2019), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4708), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4708), - [aux_sym__val_number_decimal_token1] = ACTIONS(2019), - [aux_sym__val_number_decimal_token2] = ACTIONS(2025), - [aux_sym__val_number_decimal_token3] = ACTIONS(2025), - [aux_sym__val_number_decimal_token4] = ACTIONS(2025), - [aux_sym__val_number_token1] = ACTIONS(2025), - [aux_sym__val_number_token2] = ACTIONS(2025), - [aux_sym__val_number_token3] = ACTIONS(2025), - [anon_sym_0b] = ACTIONS(2019), - [anon_sym_0o] = ACTIONS(2019), - [anon_sym_0x] = ACTIONS(2019), - [sym_val_date] = ACTIONS(2025), - [anon_sym_DQUOTE] = ACTIONS(2025), - [sym__str_single_quotes] = ACTIONS(2025), - [sym__str_back_ticks] = ACTIONS(2025), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2025), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2025), - [anon_sym_err_GT] = ACTIONS(2019), - [anon_sym_out_GT] = ACTIONS(2019), - [anon_sym_e_GT] = ACTIONS(2019), - [anon_sym_o_GT] = ACTIONS(2019), - [anon_sym_err_PLUSout_GT] = ACTIONS(2019), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2019), - [anon_sym_o_PLUSe_GT] = ACTIONS(2019), - [anon_sym_e_PLUSo_GT] = ACTIONS(2019), - [anon_sym_err_GT_GT] = ACTIONS(2025), - [anon_sym_out_GT_GT] = ACTIONS(2025), - [anon_sym_e_GT_GT] = ACTIONS(2025), - [anon_sym_o_GT_GT] = ACTIONS(2025), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2025), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2025), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2025), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2025), - [aux_sym_unquoted_token1] = ACTIONS(2019), - [anon_sym_POUND] = ACTIONS(247), - }, - [1365] = { - [sym_comment] = STATE(1365), - [aux_sym_cmd_identifier_token41] = ACTIONS(1518), - [sym__newline] = ACTIONS(1518), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_err_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_GT_PIPE] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1520), - [anon_sym_RPAREN] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1520), - [anon_sym_DOT_DOT2] = ACTIONS(1518), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), - [aux_sym__immediate_decimal_token2] = ACTIONS(4630), - [sym_filesize_unit] = ACTIONS(1520), - [sym_duration_unit] = ACTIONS(1520), - [anon_sym_err_GT] = ACTIONS(1518), - [anon_sym_out_GT] = ACTIONS(1518), - [anon_sym_e_GT] = ACTIONS(1518), - [anon_sym_o_GT] = ACTIONS(1518), - [anon_sym_err_PLUSout_GT] = ACTIONS(1518), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), - [anon_sym_o_PLUSe_GT] = ACTIONS(1518), - [anon_sym_e_PLUSo_GT] = ACTIONS(1518), - [anon_sym_err_GT_GT] = ACTIONS(1520), - [anon_sym_out_GT_GT] = ACTIONS(1520), - [anon_sym_e_GT_GT] = ACTIONS(1520), - [anon_sym_o_GT_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1520), - [anon_sym_POUND] = ACTIONS(247), - }, - [1366] = { - [sym_comment] = STATE(1366), - [ts_builtin_sym_end] = ACTIONS(1661), - [anon_sym_true] = ACTIONS(1661), - [anon_sym_false] = ACTIONS(1661), - [anon_sym_null] = ACTIONS(1661), - [aux_sym_cmd_identifier_token38] = ACTIONS(1661), - [aux_sym_cmd_identifier_token39] = ACTIONS(1661), - [aux_sym_cmd_identifier_token40] = ACTIONS(1661), - [sym__newline] = ACTIONS(1661), - [anon_sym_SEMI] = ACTIONS(1661), - [anon_sym_PIPE] = ACTIONS(1661), - [anon_sym_err_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_GT_PIPE] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_DOLLAR] = ACTIONS(1659), - [anon_sym_DASH_DASH] = ACTIONS(1661), - [anon_sym_DASH] = ACTIONS(1659), - [anon_sym_LBRACE] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1659), - [anon_sym_LPAREN2] = ACTIONS(1661), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1661), - [anon_sym_DOT_DOT_LT] = ACTIONS(1661), - [aux_sym__immediate_decimal_token1] = ACTIONS(4710), - [aux_sym__immediate_decimal_token2] = ACTIONS(4712), - [aux_sym__val_number_decimal_token1] = ACTIONS(1659), - [aux_sym__val_number_decimal_token2] = ACTIONS(1661), - [aux_sym__val_number_decimal_token3] = ACTIONS(1661), - [aux_sym__val_number_decimal_token4] = ACTIONS(1661), - [aux_sym__val_number_token1] = ACTIONS(1661), - [aux_sym__val_number_token2] = ACTIONS(1661), - [aux_sym__val_number_token3] = ACTIONS(1661), - [anon_sym_0b] = ACTIONS(1659), - [anon_sym_0o] = ACTIONS(1659), - [anon_sym_0x] = ACTIONS(1659), - [sym_val_date] = ACTIONS(1661), - [anon_sym_DQUOTE] = ACTIONS(1661), - [sym__str_single_quotes] = ACTIONS(1661), - [sym__str_back_ticks] = ACTIONS(1661), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1661), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1661), - [anon_sym_err_GT] = ACTIONS(1659), - [anon_sym_out_GT] = ACTIONS(1659), - [anon_sym_e_GT] = ACTIONS(1659), - [anon_sym_o_GT] = ACTIONS(1659), - [anon_sym_err_PLUSout_GT] = ACTIONS(1659), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1659), - [anon_sym_o_PLUSe_GT] = ACTIONS(1659), - [anon_sym_e_PLUSo_GT] = ACTIONS(1659), - [anon_sym_err_GT_GT] = ACTIONS(1661), - [anon_sym_out_GT_GT] = ACTIONS(1661), - [anon_sym_e_GT_GT] = ACTIONS(1661), - [anon_sym_o_GT_GT] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1661), - [aux_sym_unquoted_token1] = ACTIONS(1659), - [aux_sym_unquoted_token2] = ACTIONS(1659), - [anon_sym_POUND] = ACTIONS(247), - }, - [1367] = { - [sym_comment] = STATE(1367), - [aux_sym_cmd_identifier_token41] = ACTIONS(1554), - [sym__newline] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1556), - [anon_sym_PIPE] = ACTIONS(1556), - [anon_sym_err_GT_PIPE] = ACTIONS(1556), - [anon_sym_out_GT_PIPE] = ACTIONS(1556), - [anon_sym_e_GT_PIPE] = ACTIONS(1556), - [anon_sym_o_GT_PIPE] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1556), - [anon_sym_RPAREN] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1556), - [aux_sym_expr_binary_token1] = ACTIONS(1556), - [aux_sym_expr_binary_token2] = ACTIONS(1556), - [aux_sym_expr_binary_token3] = ACTIONS(1556), - [aux_sym_expr_binary_token4] = ACTIONS(1556), - [aux_sym_expr_binary_token5] = ACTIONS(1556), - [aux_sym_expr_binary_token6] = ACTIONS(1556), - [aux_sym_expr_binary_token7] = ACTIONS(1556), - [aux_sym_expr_binary_token8] = ACTIONS(1556), - [aux_sym_expr_binary_token9] = ACTIONS(1556), - [aux_sym_expr_binary_token10] = ACTIONS(1556), - [aux_sym_expr_binary_token11] = ACTIONS(1556), - [aux_sym_expr_binary_token12] = ACTIONS(1556), - [aux_sym_expr_binary_token13] = ACTIONS(1556), - [aux_sym_expr_binary_token14] = ACTIONS(1556), - [aux_sym_expr_binary_token15] = ACTIONS(1556), - [aux_sym_expr_binary_token16] = ACTIONS(1556), - [aux_sym_expr_binary_token17] = ACTIONS(1556), - [aux_sym_expr_binary_token18] = ACTIONS(1556), - [aux_sym_expr_binary_token19] = ACTIONS(1556), - [aux_sym_expr_binary_token20] = ACTIONS(1556), - [aux_sym_expr_binary_token21] = ACTIONS(1556), - [aux_sym_expr_binary_token22] = ACTIONS(1556), - [aux_sym_expr_binary_token23] = ACTIONS(1556), - [aux_sym_expr_binary_token24] = ACTIONS(1556), - [aux_sym_expr_binary_token25] = ACTIONS(1556), - [aux_sym_expr_binary_token26] = ACTIONS(1556), - [aux_sym_expr_binary_token27] = ACTIONS(1556), - [aux_sym_expr_binary_token28] = ACTIONS(1556), - [anon_sym_DOT_DOT2] = ACTIONS(1554), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1556), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1556), - [aux_sym__immediate_decimal_token2] = ACTIONS(4714), - [sym_filesize_unit] = ACTIONS(1556), - [sym_duration_unit] = ACTIONS(1556), - [anon_sym_err_GT] = ACTIONS(1554), - [anon_sym_out_GT] = ACTIONS(1554), - [anon_sym_e_GT] = ACTIONS(1554), - [anon_sym_o_GT] = ACTIONS(1554), - [anon_sym_err_PLUSout_GT] = ACTIONS(1554), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1554), - [anon_sym_o_PLUSe_GT] = ACTIONS(1554), - [anon_sym_e_PLUSo_GT] = ACTIONS(1554), - [anon_sym_err_GT_GT] = ACTIONS(1556), - [anon_sym_out_GT_GT] = ACTIONS(1556), - [anon_sym_e_GT_GT] = ACTIONS(1556), - [anon_sym_o_GT_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1556), - [anon_sym_POUND] = ACTIONS(247), - }, - [1368] = { - [sym_cell_path] = STATE(1865), - [sym_path] = STATE(1603), - [sym_comment] = STATE(1368), - [aux_sym_cell_path_repeat1] = STATE(1493), - [ts_builtin_sym_end] = ACTIONS(1914), - [anon_sym_true] = ACTIONS(1914), - [anon_sym_false] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1914), - [aux_sym_cmd_identifier_token38] = ACTIONS(1914), - [aux_sym_cmd_identifier_token39] = ACTIONS(1914), - [aux_sym_cmd_identifier_token40] = ACTIONS(1914), - [sym__newline] = ACTIONS(1914), - [anon_sym_SEMI] = ACTIONS(1914), - [anon_sym_PIPE] = ACTIONS(1914), - [anon_sym_err_GT_PIPE] = ACTIONS(1914), - [anon_sym_out_GT_PIPE] = ACTIONS(1914), - [anon_sym_e_GT_PIPE] = ACTIONS(1914), - [anon_sym_o_GT_PIPE] = ACTIONS(1914), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1914), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1914), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1914), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1914), - [anon_sym_LBRACK] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(1914), - [anon_sym_DOLLAR] = ACTIONS(1912), - [anon_sym_DASH_DASH] = ACTIONS(1914), - [anon_sym_DASH] = ACTIONS(1912), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_DOT_DOT] = ACTIONS(1912), - [anon_sym_DOT] = ACTIONS(4680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1914), - [anon_sym_DOT_DOT_LT] = ACTIONS(1914), - [aux_sym__val_number_decimal_token1] = ACTIONS(1912), - [aux_sym__val_number_decimal_token2] = ACTIONS(1914), - [aux_sym__val_number_decimal_token3] = ACTIONS(1914), - [aux_sym__val_number_decimal_token4] = ACTIONS(1914), - [aux_sym__val_number_token1] = ACTIONS(1914), - [aux_sym__val_number_token2] = ACTIONS(1914), - [aux_sym__val_number_token3] = ACTIONS(1914), - [anon_sym_0b] = ACTIONS(1912), - [anon_sym_0o] = ACTIONS(1912), - [anon_sym_0x] = ACTIONS(1912), - [sym_val_date] = ACTIONS(1914), - [anon_sym_DQUOTE] = ACTIONS(1914), - [sym__str_single_quotes] = ACTIONS(1914), - [sym__str_back_ticks] = ACTIONS(1914), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1914), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1914), - [anon_sym_err_GT] = ACTIONS(1912), - [anon_sym_out_GT] = ACTIONS(1912), - [anon_sym_e_GT] = ACTIONS(1912), - [anon_sym_o_GT] = ACTIONS(1912), - [anon_sym_err_PLUSout_GT] = ACTIONS(1912), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1912), - [anon_sym_o_PLUSe_GT] = ACTIONS(1912), - [anon_sym_e_PLUSo_GT] = ACTIONS(1912), - [anon_sym_err_GT_GT] = ACTIONS(1914), - [anon_sym_out_GT_GT] = ACTIONS(1914), - [anon_sym_e_GT_GT] = ACTIONS(1914), - [anon_sym_o_GT_GT] = ACTIONS(1914), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1914), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1914), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1914), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1914), - [aux_sym_unquoted_token1] = ACTIONS(1912), - [anon_sym_POUND] = ACTIONS(247), - }, - [1369] = { - [sym_cell_path] = STATE(1916), - [sym_path] = STATE(1603), - [sym_comment] = STATE(1369), - [aux_sym_cell_path_repeat1] = STATE(1493), - [ts_builtin_sym_end] = ACTIONS(1902), - [anon_sym_true] = ACTIONS(1902), - [anon_sym_false] = ACTIONS(1902), - [anon_sym_null] = ACTIONS(1902), - [aux_sym_cmd_identifier_token38] = ACTIONS(1902), - [aux_sym_cmd_identifier_token39] = ACTIONS(1902), - [aux_sym_cmd_identifier_token40] = ACTIONS(1902), - [sym__newline] = ACTIONS(1902), - [anon_sym_SEMI] = ACTIONS(1902), - [anon_sym_PIPE] = ACTIONS(1902), - [anon_sym_err_GT_PIPE] = ACTIONS(1902), - [anon_sym_out_GT_PIPE] = ACTIONS(1902), - [anon_sym_e_GT_PIPE] = ACTIONS(1902), - [anon_sym_o_GT_PIPE] = ACTIONS(1902), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1902), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1902), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1902), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1902), - [anon_sym_LBRACK] = ACTIONS(1902), - [anon_sym_LPAREN] = ACTIONS(1902), - [anon_sym_DOLLAR] = ACTIONS(1900), - [anon_sym_DASH_DASH] = ACTIONS(1902), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LBRACE] = ACTIONS(1902), - [anon_sym_DOT_DOT] = ACTIONS(1900), - [anon_sym_DOT] = ACTIONS(4680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1902), - [anon_sym_DOT_DOT_LT] = ACTIONS(1902), - [aux_sym__val_number_decimal_token1] = ACTIONS(1900), - [aux_sym__val_number_decimal_token2] = ACTIONS(1902), - [aux_sym__val_number_decimal_token3] = ACTIONS(1902), - [aux_sym__val_number_decimal_token4] = ACTIONS(1902), - [aux_sym__val_number_token1] = ACTIONS(1902), - [aux_sym__val_number_token2] = ACTIONS(1902), - [aux_sym__val_number_token3] = ACTIONS(1902), - [anon_sym_0b] = ACTIONS(1900), - [anon_sym_0o] = ACTIONS(1900), - [anon_sym_0x] = ACTIONS(1900), - [sym_val_date] = ACTIONS(1902), - [anon_sym_DQUOTE] = ACTIONS(1902), - [sym__str_single_quotes] = ACTIONS(1902), - [sym__str_back_ticks] = ACTIONS(1902), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1902), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1902), - [anon_sym_err_GT] = ACTIONS(1900), - [anon_sym_out_GT] = ACTIONS(1900), - [anon_sym_e_GT] = ACTIONS(1900), - [anon_sym_o_GT] = ACTIONS(1900), - [anon_sym_err_PLUSout_GT] = ACTIONS(1900), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1900), - [anon_sym_o_PLUSe_GT] = ACTIONS(1900), - [anon_sym_e_PLUSo_GT] = ACTIONS(1900), - [anon_sym_err_GT_GT] = ACTIONS(1902), - [anon_sym_out_GT_GT] = ACTIONS(1902), - [anon_sym_e_GT_GT] = ACTIONS(1902), - [anon_sym_o_GT_GT] = ACTIONS(1902), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1902), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1902), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1902), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1902), - [aux_sym_unquoted_token1] = ACTIONS(1900), - [anon_sym_POUND] = ACTIONS(247), - }, - [1370] = { - [sym_comment] = STATE(1370), + [ts_builtin_sym_end] = ACTIONS(1072), [anon_sym_true] = ACTIONS(1072), [anon_sym_false] = ACTIONS(1072), [anon_sym_null] = ACTIONS(1072), @@ -203591,18 +205510,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1072), [anon_sym_LBRACK] = ACTIONS(1072), [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_RPAREN] = ACTIONS(1072), [anon_sym_DOLLAR] = ACTIONS(1070), [anon_sym_DASH_DASH] = ACTIONS(1072), [anon_sym_DASH] = ACTIONS(1070), [anon_sym_LBRACE] = ACTIONS(1072), - [anon_sym_RBRACE] = ACTIONS(1072), [anon_sym_DOT_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT2] = ACTIONS(4716), + [anon_sym_DOT_DOT2] = ACTIONS(1070), + [anon_sym_DOT] = ACTIONS(1070), [anon_sym_DOT_DOT_EQ] = ACTIONS(1070), [anon_sym_DOT_DOT_LT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4718), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4718), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1072), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1072), [aux_sym__val_number_decimal_token1] = ACTIONS(1070), [aux_sym__val_number_decimal_token2] = ACTIONS(1072), [aux_sym__val_number_decimal_token3] = ACTIONS(1072), @@ -203636,5209 +205554,5835 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1072), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1072), [aux_sym_unquoted_token1] = ACTIONS(1070), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1072), + }, + [1355] = { + [sym_comment] = STATE(1355), + [anon_sym_true] = ACTIONS(1771), + [anon_sym_false] = ACTIONS(1771), + [anon_sym_null] = ACTIONS(1771), + [aux_sym_cmd_identifier_token38] = ACTIONS(1771), + [aux_sym_cmd_identifier_token39] = ACTIONS(1771), + [aux_sym_cmd_identifier_token40] = ACTIONS(1771), + [sym__newline] = ACTIONS(1771), + [anon_sym_SEMI] = ACTIONS(1771), + [anon_sym_PIPE] = ACTIONS(1771), + [anon_sym_err_GT_PIPE] = ACTIONS(1771), + [anon_sym_out_GT_PIPE] = ACTIONS(1771), + [anon_sym_e_GT_PIPE] = ACTIONS(1771), + [anon_sym_o_GT_PIPE] = ACTIONS(1771), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1771), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1771), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1771), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1771), + [anon_sym_LPAREN] = ACTIONS(1769), + [anon_sym_RPAREN] = ACTIONS(1771), + [anon_sym_DOLLAR] = ACTIONS(1769), + [anon_sym_DASH_DASH] = ACTIONS(1771), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_LBRACE] = ACTIONS(1771), + [anon_sym_RBRACE] = ACTIONS(1771), + [anon_sym_DOT_DOT] = ACTIONS(1769), + [anon_sym_LPAREN2] = ACTIONS(1771), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1771), + [anon_sym_DOT_DOT_LT] = ACTIONS(1771), + [aux_sym__immediate_decimal_token2] = ACTIONS(4750), + [aux_sym__val_number_decimal_token1] = ACTIONS(1769), + [aux_sym__val_number_decimal_token2] = ACTIONS(1771), + [aux_sym__val_number_decimal_token3] = ACTIONS(1771), + [aux_sym__val_number_decimal_token4] = ACTIONS(1771), + [aux_sym__val_number_token1] = ACTIONS(1771), + [aux_sym__val_number_token2] = ACTIONS(1771), + [aux_sym__val_number_token3] = ACTIONS(1771), + [anon_sym_0b] = ACTIONS(1769), + [anon_sym_0o] = ACTIONS(1769), + [anon_sym_0x] = ACTIONS(1769), + [sym_val_date] = ACTIONS(1771), + [anon_sym_DQUOTE] = ACTIONS(1771), + [sym__str_single_quotes] = ACTIONS(1771), + [sym__str_back_ticks] = ACTIONS(1771), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1771), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1771), + [anon_sym_err_GT] = ACTIONS(1769), + [anon_sym_out_GT] = ACTIONS(1769), + [anon_sym_e_GT] = ACTIONS(1769), + [anon_sym_o_GT] = ACTIONS(1769), + [anon_sym_err_PLUSout_GT] = ACTIONS(1769), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1769), + [anon_sym_o_PLUSe_GT] = ACTIONS(1769), + [anon_sym_e_PLUSo_GT] = ACTIONS(1769), + [anon_sym_err_GT_GT] = ACTIONS(1771), + [anon_sym_out_GT_GT] = ACTIONS(1771), + [anon_sym_e_GT_GT] = ACTIONS(1771), + [anon_sym_o_GT_GT] = ACTIONS(1771), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1771), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1771), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1771), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1771), + [aux_sym_unquoted_token1] = ACTIONS(1769), + [aux_sym_unquoted_token2] = ACTIONS(1769), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1771), + }, + [1356] = { + [sym_cell_path] = STATE(1774), + [sym_path] = STATE(1589), + [sym_comment] = STATE(1356), + [aux_sym_cell_path_repeat1] = STATE(1434), + [ts_builtin_sym_end] = ACTIONS(2045), + [anon_sym_true] = ACTIONS(2045), + [anon_sym_false] = ACTIONS(2045), + [anon_sym_null] = ACTIONS(2045), + [aux_sym_cmd_identifier_token38] = ACTIONS(2045), + [aux_sym_cmd_identifier_token39] = ACTIONS(2045), + [aux_sym_cmd_identifier_token40] = ACTIONS(2045), + [sym__newline] = ACTIONS(2045), + [anon_sym_SEMI] = ACTIONS(2045), + [anon_sym_PIPE] = ACTIONS(2045), + [anon_sym_err_GT_PIPE] = ACTIONS(2045), + [anon_sym_out_GT_PIPE] = ACTIONS(2045), + [anon_sym_e_GT_PIPE] = ACTIONS(2045), + [anon_sym_o_GT_PIPE] = ACTIONS(2045), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2045), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2045), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2045), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2045), + [anon_sym_LBRACK] = ACTIONS(2045), + [anon_sym_LPAREN] = ACTIONS(2045), + [anon_sym_DOLLAR] = ACTIONS(2043), + [anon_sym_DASH_DASH] = ACTIONS(2045), + [anon_sym_DASH] = ACTIONS(2043), + [anon_sym_LBRACE] = ACTIONS(2045), + [anon_sym_DOT_DOT] = ACTIONS(2043), + [anon_sym_DOT] = ACTIONS(4709), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2045), + [anon_sym_DOT_DOT_LT] = ACTIONS(2045), + [aux_sym__val_number_decimal_token1] = ACTIONS(2043), + [aux_sym__val_number_decimal_token2] = ACTIONS(2045), + [aux_sym__val_number_decimal_token3] = ACTIONS(2045), + [aux_sym__val_number_decimal_token4] = ACTIONS(2045), + [aux_sym__val_number_token1] = ACTIONS(2045), + [aux_sym__val_number_token2] = ACTIONS(2045), + [aux_sym__val_number_token3] = ACTIONS(2045), + [anon_sym_0b] = ACTIONS(2043), + [anon_sym_0o] = ACTIONS(2043), + [anon_sym_0x] = ACTIONS(2043), + [sym_val_date] = ACTIONS(2045), + [anon_sym_DQUOTE] = ACTIONS(2045), + [sym__str_single_quotes] = ACTIONS(2045), + [sym__str_back_ticks] = ACTIONS(2045), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2045), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2045), + [anon_sym_err_GT] = ACTIONS(2043), + [anon_sym_out_GT] = ACTIONS(2043), + [anon_sym_e_GT] = ACTIONS(2043), + [anon_sym_o_GT] = ACTIONS(2043), + [anon_sym_err_PLUSout_GT] = ACTIONS(2043), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2043), + [anon_sym_o_PLUSe_GT] = ACTIONS(2043), + [anon_sym_e_PLUSo_GT] = ACTIONS(2043), + [anon_sym_err_GT_GT] = ACTIONS(2045), + [anon_sym_out_GT_GT] = ACTIONS(2045), + [anon_sym_e_GT_GT] = ACTIONS(2045), + [anon_sym_o_GT_GT] = ACTIONS(2045), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2045), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2045), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2045), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2045), + [aux_sym_unquoted_token1] = ACTIONS(2043), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2045), + }, + [1357] = { + [sym_comment] = STATE(1357), + [sym__newline] = ACTIONS(1538), + [anon_sym_SEMI] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_err_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_GT_PIPE] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), + [anon_sym_RPAREN] = ACTIONS(1538), + [anon_sym_RBRACE] = ACTIONS(1538), + [anon_sym_LPAREN2] = ACTIONS(1538), + [aux_sym_expr_binary_token1] = ACTIONS(1538), + [aux_sym_expr_binary_token2] = ACTIONS(1538), + [aux_sym_expr_binary_token3] = ACTIONS(1538), + [aux_sym_expr_binary_token4] = ACTIONS(1538), + [aux_sym_expr_binary_token5] = ACTIONS(1538), + [aux_sym_expr_binary_token6] = ACTIONS(1538), + [aux_sym_expr_binary_token7] = ACTIONS(1538), + [aux_sym_expr_binary_token8] = ACTIONS(1538), + [aux_sym_expr_binary_token9] = ACTIONS(1538), + [aux_sym_expr_binary_token10] = ACTIONS(1538), + [aux_sym_expr_binary_token11] = ACTIONS(1538), + [aux_sym_expr_binary_token12] = ACTIONS(1538), + [aux_sym_expr_binary_token13] = ACTIONS(1538), + [aux_sym_expr_binary_token14] = ACTIONS(1538), + [aux_sym_expr_binary_token15] = ACTIONS(1538), + [aux_sym_expr_binary_token16] = ACTIONS(1538), + [aux_sym_expr_binary_token17] = ACTIONS(1538), + [aux_sym_expr_binary_token18] = ACTIONS(1538), + [aux_sym_expr_binary_token19] = ACTIONS(1538), + [aux_sym_expr_binary_token20] = ACTIONS(1538), + [aux_sym_expr_binary_token21] = ACTIONS(1538), + [aux_sym_expr_binary_token22] = ACTIONS(1538), + [aux_sym_expr_binary_token23] = ACTIONS(1538), + [aux_sym_expr_binary_token24] = ACTIONS(1538), + [aux_sym_expr_binary_token25] = ACTIONS(1538), + [aux_sym_expr_binary_token26] = ACTIONS(1538), + [aux_sym_expr_binary_token27] = ACTIONS(1538), + [aux_sym_expr_binary_token28] = ACTIONS(1538), + [anon_sym_DOT_DOT2] = ACTIONS(1536), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), + [aux_sym__immediate_decimal_token2] = ACTIONS(4667), + [sym_filesize_unit] = ACTIONS(1538), + [sym_duration_unit] = ACTIONS(1538), + [anon_sym_err_GT] = ACTIONS(1536), + [anon_sym_out_GT] = ACTIONS(1536), + [anon_sym_e_GT] = ACTIONS(1536), + [anon_sym_o_GT] = ACTIONS(1536), + [anon_sym_err_PLUSout_GT] = ACTIONS(1536), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), + [anon_sym_o_PLUSe_GT] = ACTIONS(1536), + [anon_sym_e_PLUSo_GT] = ACTIONS(1536), + [anon_sym_err_GT_GT] = ACTIONS(1538), + [anon_sym_out_GT_GT] = ACTIONS(1538), + [anon_sym_e_GT_GT] = ACTIONS(1538), + [anon_sym_o_GT_GT] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), + [aux_sym_unquoted_token2] = ACTIONS(1536), + [anon_sym_POUND] = ACTIONS(249), + }, + [1358] = { + [sym_cell_path] = STATE(1775), + [sym_path] = STATE(1589), + [sym_comment] = STATE(1358), + [aux_sym_cell_path_repeat1] = STATE(1434), + [ts_builtin_sym_end] = ACTIONS(2049), + [anon_sym_true] = ACTIONS(2049), + [anon_sym_false] = ACTIONS(2049), + [anon_sym_null] = ACTIONS(2049), + [aux_sym_cmd_identifier_token38] = ACTIONS(2049), + [aux_sym_cmd_identifier_token39] = ACTIONS(2049), + [aux_sym_cmd_identifier_token40] = ACTIONS(2049), + [sym__newline] = ACTIONS(2049), + [anon_sym_SEMI] = ACTIONS(2049), + [anon_sym_PIPE] = ACTIONS(2049), + [anon_sym_err_GT_PIPE] = ACTIONS(2049), + [anon_sym_out_GT_PIPE] = ACTIONS(2049), + [anon_sym_e_GT_PIPE] = ACTIONS(2049), + [anon_sym_o_GT_PIPE] = ACTIONS(2049), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2049), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2049), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2049), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2049), + [anon_sym_LBRACK] = ACTIONS(2049), + [anon_sym_LPAREN] = ACTIONS(2049), + [anon_sym_DOLLAR] = ACTIONS(2047), + [anon_sym_DASH_DASH] = ACTIONS(2049), + [anon_sym_DASH] = ACTIONS(2047), + [anon_sym_LBRACE] = ACTIONS(2049), + [anon_sym_DOT_DOT] = ACTIONS(2047), + [anon_sym_DOT] = ACTIONS(4709), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2049), + [anon_sym_DOT_DOT_LT] = ACTIONS(2049), + [aux_sym__val_number_decimal_token1] = ACTIONS(2047), + [aux_sym__val_number_decimal_token2] = ACTIONS(2049), + [aux_sym__val_number_decimal_token3] = ACTIONS(2049), + [aux_sym__val_number_decimal_token4] = ACTIONS(2049), + [aux_sym__val_number_token1] = ACTIONS(2049), + [aux_sym__val_number_token2] = ACTIONS(2049), + [aux_sym__val_number_token3] = ACTIONS(2049), + [anon_sym_0b] = ACTIONS(2047), + [anon_sym_0o] = ACTIONS(2047), + [anon_sym_0x] = ACTIONS(2047), + [sym_val_date] = ACTIONS(2049), + [anon_sym_DQUOTE] = ACTIONS(2049), + [sym__str_single_quotes] = ACTIONS(2049), + [sym__str_back_ticks] = ACTIONS(2049), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2049), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2049), + [anon_sym_err_GT] = ACTIONS(2047), + [anon_sym_out_GT] = ACTIONS(2047), + [anon_sym_e_GT] = ACTIONS(2047), + [anon_sym_o_GT] = ACTIONS(2047), + [anon_sym_err_PLUSout_GT] = ACTIONS(2047), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2047), + [anon_sym_o_PLUSe_GT] = ACTIONS(2047), + [anon_sym_e_PLUSo_GT] = ACTIONS(2047), + [anon_sym_err_GT_GT] = ACTIONS(2049), + [anon_sym_out_GT_GT] = ACTIONS(2049), + [anon_sym_e_GT_GT] = ACTIONS(2049), + [anon_sym_o_GT_GT] = ACTIONS(2049), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2049), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2049), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2049), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2049), + [aux_sym_unquoted_token1] = ACTIONS(2047), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2049), + }, + [1359] = { + [sym_cell_path] = STATE(1776), + [sym_path] = STATE(1589), + [sym_comment] = STATE(1359), + [aux_sym_cell_path_repeat1] = STATE(1434), + [ts_builtin_sym_end] = ACTIONS(2053), + [anon_sym_true] = ACTIONS(2053), + [anon_sym_false] = ACTIONS(2053), + [anon_sym_null] = ACTIONS(2053), + [aux_sym_cmd_identifier_token38] = ACTIONS(2053), + [aux_sym_cmd_identifier_token39] = ACTIONS(2053), + [aux_sym_cmd_identifier_token40] = ACTIONS(2053), + [sym__newline] = ACTIONS(2053), + [anon_sym_SEMI] = ACTIONS(2053), + [anon_sym_PIPE] = ACTIONS(2053), + [anon_sym_err_GT_PIPE] = ACTIONS(2053), + [anon_sym_out_GT_PIPE] = ACTIONS(2053), + [anon_sym_e_GT_PIPE] = ACTIONS(2053), + [anon_sym_o_GT_PIPE] = ACTIONS(2053), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2053), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2053), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2053), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2053), + [anon_sym_LBRACK] = ACTIONS(2053), + [anon_sym_LPAREN] = ACTIONS(2053), + [anon_sym_DOLLAR] = ACTIONS(2051), + [anon_sym_DASH_DASH] = ACTIONS(2053), + [anon_sym_DASH] = ACTIONS(2051), + [anon_sym_LBRACE] = ACTIONS(2053), + [anon_sym_DOT_DOT] = ACTIONS(2051), + [anon_sym_DOT] = ACTIONS(4709), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2053), + [anon_sym_DOT_DOT_LT] = ACTIONS(2053), + [aux_sym__val_number_decimal_token1] = ACTIONS(2051), + [aux_sym__val_number_decimal_token2] = ACTIONS(2053), + [aux_sym__val_number_decimal_token3] = ACTIONS(2053), + [aux_sym__val_number_decimal_token4] = ACTIONS(2053), + [aux_sym__val_number_token1] = ACTIONS(2053), + [aux_sym__val_number_token2] = ACTIONS(2053), + [aux_sym__val_number_token3] = ACTIONS(2053), + [anon_sym_0b] = ACTIONS(2051), + [anon_sym_0o] = ACTIONS(2051), + [anon_sym_0x] = ACTIONS(2051), + [sym_val_date] = ACTIONS(2053), + [anon_sym_DQUOTE] = ACTIONS(2053), + [sym__str_single_quotes] = ACTIONS(2053), + [sym__str_back_ticks] = ACTIONS(2053), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2053), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2053), + [anon_sym_err_GT] = ACTIONS(2051), + [anon_sym_out_GT] = ACTIONS(2051), + [anon_sym_e_GT] = ACTIONS(2051), + [anon_sym_o_GT] = ACTIONS(2051), + [anon_sym_err_PLUSout_GT] = ACTIONS(2051), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2051), + [anon_sym_o_PLUSe_GT] = ACTIONS(2051), + [anon_sym_e_PLUSo_GT] = ACTIONS(2051), + [anon_sym_err_GT_GT] = ACTIONS(2053), + [anon_sym_out_GT_GT] = ACTIONS(2053), + [anon_sym_e_GT_GT] = ACTIONS(2053), + [anon_sym_o_GT_GT] = ACTIONS(2053), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2053), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2053), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2053), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2053), + [aux_sym_unquoted_token1] = ACTIONS(2051), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2053), + }, + [1360] = { + [sym_comment] = STATE(1360), + [sym__newline] = ACTIONS(1598), + [anon_sym_SEMI] = ACTIONS(1598), + [anon_sym_PIPE] = ACTIONS(1598), + [anon_sym_err_GT_PIPE] = ACTIONS(1598), + [anon_sym_out_GT_PIPE] = ACTIONS(1598), + [anon_sym_e_GT_PIPE] = ACTIONS(1598), + [anon_sym_o_GT_PIPE] = ACTIONS(1598), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1598), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1598), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1598), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1598), + [anon_sym_RPAREN] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1598), + [anon_sym_LPAREN2] = ACTIONS(1598), + [aux_sym_expr_binary_token1] = ACTIONS(1598), + [aux_sym_expr_binary_token2] = ACTIONS(1598), + [aux_sym_expr_binary_token3] = ACTIONS(1598), + [aux_sym_expr_binary_token4] = ACTIONS(1598), + [aux_sym_expr_binary_token5] = ACTIONS(1598), + [aux_sym_expr_binary_token6] = ACTIONS(1598), + [aux_sym_expr_binary_token7] = ACTIONS(1598), + [aux_sym_expr_binary_token8] = ACTIONS(1598), + [aux_sym_expr_binary_token9] = ACTIONS(1598), + [aux_sym_expr_binary_token10] = ACTIONS(1598), + [aux_sym_expr_binary_token11] = ACTIONS(1598), + [aux_sym_expr_binary_token12] = ACTIONS(1598), + [aux_sym_expr_binary_token13] = ACTIONS(1598), + [aux_sym_expr_binary_token14] = ACTIONS(1598), + [aux_sym_expr_binary_token15] = ACTIONS(1598), + [aux_sym_expr_binary_token16] = ACTIONS(1598), + [aux_sym_expr_binary_token17] = ACTIONS(1598), + [aux_sym_expr_binary_token18] = ACTIONS(1598), + [aux_sym_expr_binary_token19] = ACTIONS(1598), + [aux_sym_expr_binary_token20] = ACTIONS(1598), + [aux_sym_expr_binary_token21] = ACTIONS(1598), + [aux_sym_expr_binary_token22] = ACTIONS(1598), + [aux_sym_expr_binary_token23] = ACTIONS(1598), + [aux_sym_expr_binary_token24] = ACTIONS(1598), + [aux_sym_expr_binary_token25] = ACTIONS(1598), + [aux_sym_expr_binary_token26] = ACTIONS(1598), + [aux_sym_expr_binary_token27] = ACTIONS(1598), + [aux_sym_expr_binary_token28] = ACTIONS(1598), + [anon_sym_DOT_DOT2] = ACTIONS(1596), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1598), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1598), + [aux_sym__immediate_decimal_token2] = ACTIONS(4752), + [sym_filesize_unit] = ACTIONS(1598), + [sym_duration_unit] = ACTIONS(1598), + [anon_sym_err_GT] = ACTIONS(1596), + [anon_sym_out_GT] = ACTIONS(1596), + [anon_sym_e_GT] = ACTIONS(1596), + [anon_sym_o_GT] = ACTIONS(1596), + [anon_sym_err_PLUSout_GT] = ACTIONS(1596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1596), + [anon_sym_o_PLUSe_GT] = ACTIONS(1596), + [anon_sym_e_PLUSo_GT] = ACTIONS(1596), + [anon_sym_err_GT_GT] = ACTIONS(1598), + [anon_sym_out_GT_GT] = ACTIONS(1598), + [anon_sym_e_GT_GT] = ACTIONS(1598), + [anon_sym_o_GT_GT] = ACTIONS(1598), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1598), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1598), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1598), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1598), + [aux_sym_unquoted_token2] = ACTIONS(1596), + [anon_sym_POUND] = ACTIONS(249), + }, + [1361] = { + [sym_comment] = STATE(1361), + [anon_sym_EQ] = ACTIONS(4754), + [anon_sym_PLUS_EQ] = ACTIONS(4756), + [anon_sym_DASH_EQ] = ACTIONS(4756), + [anon_sym_STAR_EQ] = ACTIONS(4756), + [anon_sym_SLASH_EQ] = ACTIONS(4756), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4756), + [sym__newline] = ACTIONS(1090), + [anon_sym_SEMI] = ACTIONS(1092), + [anon_sym_PIPE] = ACTIONS(1092), + [anon_sym_err_GT_PIPE] = ACTIONS(1092), + [anon_sym_out_GT_PIPE] = ACTIONS(1092), + [anon_sym_e_GT_PIPE] = ACTIONS(1092), + [anon_sym_o_GT_PIPE] = ACTIONS(1092), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1092), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1092), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1092), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1092), + [anon_sym_RPAREN] = ACTIONS(1092), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1092), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1092), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1092), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1092), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1092), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1092), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1092), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1092), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1092), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1092), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1092), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1092), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1092), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1092), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1092), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1092), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1092), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1092), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1092), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1092), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1092), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1092), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1092), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1092), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1092), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1092), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1092), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1092), + [anon_sym_DOT_DOT2] = ACTIONS(1099), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1101), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1101), + [anon_sym_err_GT] = ACTIONS(1090), + [anon_sym_out_GT] = ACTIONS(1090), + [anon_sym_e_GT] = ACTIONS(1090), + [anon_sym_o_GT] = ACTIONS(1090), + [anon_sym_err_PLUSout_GT] = ACTIONS(1090), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1090), + [anon_sym_o_PLUSe_GT] = ACTIONS(1090), + [anon_sym_e_PLUSo_GT] = ACTIONS(1090), + [anon_sym_err_GT_GT] = ACTIONS(1092), + [anon_sym_out_GT_GT] = ACTIONS(1092), + [anon_sym_e_GT_GT] = ACTIONS(1092), + [anon_sym_o_GT_GT] = ACTIONS(1092), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1092), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1092), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1092), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1092), + [anon_sym_POUND] = ACTIONS(249), + }, + [1362] = { + [sym_comment] = STATE(1362), + [ts_builtin_sym_end] = ACTIONS(1538), + [sym__newline] = ACTIONS(1538), + [anon_sym_SEMI] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_err_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_GT_PIPE] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), + [anon_sym_LPAREN2] = ACTIONS(1538), + [aux_sym_expr_binary_token1] = ACTIONS(1538), + [aux_sym_expr_binary_token2] = ACTIONS(1538), + [aux_sym_expr_binary_token3] = ACTIONS(1538), + [aux_sym_expr_binary_token4] = ACTIONS(1538), + [aux_sym_expr_binary_token5] = ACTIONS(1538), + [aux_sym_expr_binary_token6] = ACTIONS(1538), + [aux_sym_expr_binary_token7] = ACTIONS(1538), + [aux_sym_expr_binary_token8] = ACTIONS(1538), + [aux_sym_expr_binary_token9] = ACTIONS(1538), + [aux_sym_expr_binary_token10] = ACTIONS(1538), + [aux_sym_expr_binary_token11] = ACTIONS(1538), + [aux_sym_expr_binary_token12] = ACTIONS(1538), + [aux_sym_expr_binary_token13] = ACTIONS(1538), + [aux_sym_expr_binary_token14] = ACTIONS(1538), + [aux_sym_expr_binary_token15] = ACTIONS(1538), + [aux_sym_expr_binary_token16] = ACTIONS(1538), + [aux_sym_expr_binary_token17] = ACTIONS(1538), + [aux_sym_expr_binary_token18] = ACTIONS(1538), + [aux_sym_expr_binary_token19] = ACTIONS(1538), + [aux_sym_expr_binary_token20] = ACTIONS(1538), + [aux_sym_expr_binary_token21] = ACTIONS(1538), + [aux_sym_expr_binary_token22] = ACTIONS(1538), + [aux_sym_expr_binary_token23] = ACTIONS(1538), + [aux_sym_expr_binary_token24] = ACTIONS(1538), + [aux_sym_expr_binary_token25] = ACTIONS(1538), + [aux_sym_expr_binary_token26] = ACTIONS(1538), + [aux_sym_expr_binary_token27] = ACTIONS(1538), + [aux_sym_expr_binary_token28] = ACTIONS(1538), + [anon_sym_DOT_DOT2] = ACTIONS(1536), + [anon_sym_DOT] = ACTIONS(4758), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), + [aux_sym__immediate_decimal_token2] = ACTIONS(4760), + [sym_filesize_unit] = ACTIONS(1538), + [sym_duration_unit] = ACTIONS(1538), + [anon_sym_err_GT] = ACTIONS(1536), + [anon_sym_out_GT] = ACTIONS(1536), + [anon_sym_e_GT] = ACTIONS(1536), + [anon_sym_o_GT] = ACTIONS(1536), + [anon_sym_err_PLUSout_GT] = ACTIONS(1536), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), + [anon_sym_o_PLUSe_GT] = ACTIONS(1536), + [anon_sym_e_PLUSo_GT] = ACTIONS(1536), + [anon_sym_err_GT_GT] = ACTIONS(1538), + [anon_sym_out_GT_GT] = ACTIONS(1538), + [anon_sym_e_GT_GT] = ACTIONS(1538), + [anon_sym_o_GT_GT] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), + [aux_sym_unquoted_token2] = ACTIONS(1536), + [anon_sym_POUND] = ACTIONS(249), + }, + [1363] = { + [sym__expr_parenthesized_immediate] = STATE(7534), + [sym_comment] = STATE(1363), + [sym__newline] = ACTIONS(1640), + [anon_sym_SEMI] = ACTIONS(1640), + [anon_sym_PIPE] = ACTIONS(1640), + [anon_sym_err_GT_PIPE] = ACTIONS(1640), + [anon_sym_out_GT_PIPE] = ACTIONS(1640), + [anon_sym_e_GT_PIPE] = ACTIONS(1640), + [anon_sym_o_GT_PIPE] = ACTIONS(1640), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1640), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1640), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1640), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1640), + [anon_sym_RPAREN] = ACTIONS(1640), + [anon_sym_RBRACE] = ACTIONS(1640), + [anon_sym_LPAREN2] = ACTIONS(4433), + [aux_sym_expr_binary_token1] = ACTIONS(1640), + [aux_sym_expr_binary_token2] = ACTIONS(1640), + [aux_sym_expr_binary_token3] = ACTIONS(1640), + [aux_sym_expr_binary_token4] = ACTIONS(1640), + [aux_sym_expr_binary_token5] = ACTIONS(1640), + [aux_sym_expr_binary_token6] = ACTIONS(1640), + [aux_sym_expr_binary_token7] = ACTIONS(1640), + [aux_sym_expr_binary_token8] = ACTIONS(1640), + [aux_sym_expr_binary_token9] = ACTIONS(1640), + [aux_sym_expr_binary_token10] = ACTIONS(1640), + [aux_sym_expr_binary_token11] = ACTIONS(1640), + [aux_sym_expr_binary_token12] = ACTIONS(1640), + [aux_sym_expr_binary_token13] = ACTIONS(1640), + [aux_sym_expr_binary_token14] = ACTIONS(1640), + [aux_sym_expr_binary_token15] = ACTIONS(1640), + [aux_sym_expr_binary_token16] = ACTIONS(1640), + [aux_sym_expr_binary_token17] = ACTIONS(1640), + [aux_sym_expr_binary_token18] = ACTIONS(1640), + [aux_sym_expr_binary_token19] = ACTIONS(1640), + [aux_sym_expr_binary_token20] = ACTIONS(1640), + [aux_sym_expr_binary_token21] = ACTIONS(1640), + [aux_sym_expr_binary_token22] = ACTIONS(1640), + [aux_sym_expr_binary_token23] = ACTIONS(1640), + [aux_sym_expr_binary_token24] = ACTIONS(1640), + [aux_sym_expr_binary_token25] = ACTIONS(1640), + [aux_sym_expr_binary_token26] = ACTIONS(1640), + [aux_sym_expr_binary_token27] = ACTIONS(1640), + [aux_sym_expr_binary_token28] = ACTIONS(1640), + [anon_sym_DOT_DOT2] = ACTIONS(4762), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4764), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4764), + [sym_filesize_unit] = ACTIONS(4766), + [sym_duration_unit] = ACTIONS(4768), + [anon_sym_err_GT] = ACTIONS(1628), + [anon_sym_out_GT] = ACTIONS(1628), + [anon_sym_e_GT] = ACTIONS(1628), + [anon_sym_o_GT] = ACTIONS(1628), + [anon_sym_err_PLUSout_GT] = ACTIONS(1628), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1628), + [anon_sym_o_PLUSe_GT] = ACTIONS(1628), + [anon_sym_e_PLUSo_GT] = ACTIONS(1628), + [anon_sym_err_GT_GT] = ACTIONS(1640), + [anon_sym_out_GT_GT] = ACTIONS(1640), + [anon_sym_e_GT_GT] = ACTIONS(1640), + [anon_sym_o_GT_GT] = ACTIONS(1640), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1640), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1640), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1640), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1640), + [aux_sym_unquoted_token2] = ACTIONS(4770), + [anon_sym_POUND] = ACTIONS(249), + }, + [1364] = { + [sym_comment] = STATE(1364), + [ts_builtin_sym_end] = ACTIONS(1092), + [anon_sym_EQ] = ACTIONS(4772), + [anon_sym_PLUS_EQ] = ACTIONS(4774), + [anon_sym_DASH_EQ] = ACTIONS(4774), + [anon_sym_STAR_EQ] = ACTIONS(4774), + [anon_sym_SLASH_EQ] = ACTIONS(4774), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4774), + [sym__newline] = ACTIONS(1092), + [anon_sym_SEMI] = ACTIONS(1092), + [anon_sym_PIPE] = ACTIONS(1092), + [anon_sym_err_GT_PIPE] = ACTIONS(1092), + [anon_sym_out_GT_PIPE] = ACTIONS(1092), + [anon_sym_e_GT_PIPE] = ACTIONS(1092), + [anon_sym_o_GT_PIPE] = ACTIONS(1092), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1092), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1092), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1092), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1092), + [aux_sym_expr_binary_token1] = ACTIONS(1092), + [aux_sym_expr_binary_token2] = ACTIONS(1092), + [aux_sym_expr_binary_token3] = ACTIONS(1092), + [aux_sym_expr_binary_token4] = ACTIONS(1092), + [aux_sym_expr_binary_token5] = ACTIONS(1092), + [aux_sym_expr_binary_token6] = ACTIONS(1092), + [aux_sym_expr_binary_token7] = ACTIONS(1092), + [aux_sym_expr_binary_token8] = ACTIONS(1092), + [aux_sym_expr_binary_token9] = ACTIONS(1092), + [aux_sym_expr_binary_token10] = ACTIONS(1092), + [aux_sym_expr_binary_token11] = ACTIONS(1092), + [aux_sym_expr_binary_token12] = ACTIONS(1092), + [aux_sym_expr_binary_token13] = ACTIONS(1092), + [aux_sym_expr_binary_token14] = ACTIONS(1092), + [aux_sym_expr_binary_token15] = ACTIONS(1092), + [aux_sym_expr_binary_token16] = ACTIONS(1092), + [aux_sym_expr_binary_token17] = ACTIONS(1092), + [aux_sym_expr_binary_token18] = ACTIONS(1092), + [aux_sym_expr_binary_token19] = ACTIONS(1092), + [aux_sym_expr_binary_token20] = ACTIONS(1092), + [aux_sym_expr_binary_token21] = ACTIONS(1092), + [aux_sym_expr_binary_token22] = ACTIONS(1092), + [aux_sym_expr_binary_token23] = ACTIONS(1092), + [aux_sym_expr_binary_token24] = ACTIONS(1092), + [aux_sym_expr_binary_token25] = ACTIONS(1092), + [aux_sym_expr_binary_token26] = ACTIONS(1092), + [aux_sym_expr_binary_token27] = ACTIONS(1092), + [aux_sym_expr_binary_token28] = ACTIONS(1092), + [anon_sym_DOT_DOT2] = ACTIONS(4776), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4778), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4778), + [anon_sym_err_GT] = ACTIONS(1090), + [anon_sym_out_GT] = ACTIONS(1090), + [anon_sym_e_GT] = ACTIONS(1090), + [anon_sym_o_GT] = ACTIONS(1090), + [anon_sym_err_PLUSout_GT] = ACTIONS(1090), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1090), + [anon_sym_o_PLUSe_GT] = ACTIONS(1090), + [anon_sym_e_PLUSo_GT] = ACTIONS(1090), + [anon_sym_err_GT_GT] = ACTIONS(1092), + [anon_sym_out_GT_GT] = ACTIONS(1092), + [anon_sym_e_GT_GT] = ACTIONS(1092), + [anon_sym_o_GT_GT] = ACTIONS(1092), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1092), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1092), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1092), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1092), + [anon_sym_POUND] = ACTIONS(249), + }, + [1365] = { + [sym_cell_path] = STATE(1778), + [sym_path] = STATE(1589), + [sym_comment] = STATE(1365), + [aux_sym_cell_path_repeat1] = STATE(1434), + [ts_builtin_sym_end] = ACTIONS(2057), + [anon_sym_true] = ACTIONS(2057), + [anon_sym_false] = ACTIONS(2057), + [anon_sym_null] = ACTIONS(2057), + [aux_sym_cmd_identifier_token38] = ACTIONS(2057), + [aux_sym_cmd_identifier_token39] = ACTIONS(2057), + [aux_sym_cmd_identifier_token40] = ACTIONS(2057), + [sym__newline] = ACTIONS(2057), + [anon_sym_SEMI] = ACTIONS(2057), + [anon_sym_PIPE] = ACTIONS(2057), + [anon_sym_err_GT_PIPE] = ACTIONS(2057), + [anon_sym_out_GT_PIPE] = ACTIONS(2057), + [anon_sym_e_GT_PIPE] = ACTIONS(2057), + [anon_sym_o_GT_PIPE] = ACTIONS(2057), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2057), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2057), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2057), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2057), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(2057), + [anon_sym_DOLLAR] = ACTIONS(2055), + [anon_sym_DASH_DASH] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2055), + [anon_sym_LBRACE] = ACTIONS(2057), + [anon_sym_DOT_DOT] = ACTIONS(2055), + [anon_sym_DOT] = ACTIONS(4709), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2057), + [anon_sym_DOT_DOT_LT] = ACTIONS(2057), + [aux_sym__val_number_decimal_token1] = ACTIONS(2055), + [aux_sym__val_number_decimal_token2] = ACTIONS(2057), + [aux_sym__val_number_decimal_token3] = ACTIONS(2057), + [aux_sym__val_number_decimal_token4] = ACTIONS(2057), + [aux_sym__val_number_token1] = ACTIONS(2057), + [aux_sym__val_number_token2] = ACTIONS(2057), + [aux_sym__val_number_token3] = ACTIONS(2057), + [anon_sym_0b] = ACTIONS(2055), + [anon_sym_0o] = ACTIONS(2055), + [anon_sym_0x] = ACTIONS(2055), + [sym_val_date] = ACTIONS(2057), + [anon_sym_DQUOTE] = ACTIONS(2057), + [sym__str_single_quotes] = ACTIONS(2057), + [sym__str_back_ticks] = ACTIONS(2057), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2057), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2057), + [anon_sym_err_GT] = ACTIONS(2055), + [anon_sym_out_GT] = ACTIONS(2055), + [anon_sym_e_GT] = ACTIONS(2055), + [anon_sym_o_GT] = ACTIONS(2055), + [anon_sym_err_PLUSout_GT] = ACTIONS(2055), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2055), + [anon_sym_o_PLUSe_GT] = ACTIONS(2055), + [anon_sym_e_PLUSo_GT] = ACTIONS(2055), + [anon_sym_err_GT_GT] = ACTIONS(2057), + [anon_sym_out_GT_GT] = ACTIONS(2057), + [anon_sym_e_GT_GT] = ACTIONS(2057), + [anon_sym_o_GT_GT] = ACTIONS(2057), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2057), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2057), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2057), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2057), + [aux_sym_unquoted_token1] = ACTIONS(2055), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2057), + }, + [1366] = { + [sym_comment] = STATE(1366), + [ts_builtin_sym_end] = ACTIONS(1530), + [sym__newline] = ACTIONS(1530), + [anon_sym_SEMI] = ACTIONS(1530), + [anon_sym_PIPE] = ACTIONS(1530), + [anon_sym_err_GT_PIPE] = ACTIONS(1530), + [anon_sym_out_GT_PIPE] = ACTIONS(1530), + [anon_sym_e_GT_PIPE] = ACTIONS(1530), + [anon_sym_o_GT_PIPE] = ACTIONS(1530), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1530), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1530), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1530), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1530), + [anon_sym_LPAREN2] = ACTIONS(1530), + [aux_sym_expr_binary_token1] = ACTIONS(1530), + [aux_sym_expr_binary_token2] = ACTIONS(1530), + [aux_sym_expr_binary_token3] = ACTIONS(1530), + [aux_sym_expr_binary_token4] = ACTIONS(1530), + [aux_sym_expr_binary_token5] = ACTIONS(1530), + [aux_sym_expr_binary_token6] = ACTIONS(1530), + [aux_sym_expr_binary_token7] = ACTIONS(1530), + [aux_sym_expr_binary_token8] = ACTIONS(1530), + [aux_sym_expr_binary_token9] = ACTIONS(1530), + [aux_sym_expr_binary_token10] = ACTIONS(1530), + [aux_sym_expr_binary_token11] = ACTIONS(1530), + [aux_sym_expr_binary_token12] = ACTIONS(1530), + [aux_sym_expr_binary_token13] = ACTIONS(1530), + [aux_sym_expr_binary_token14] = ACTIONS(1530), + [aux_sym_expr_binary_token15] = ACTIONS(1530), + [aux_sym_expr_binary_token16] = ACTIONS(1530), + [aux_sym_expr_binary_token17] = ACTIONS(1530), + [aux_sym_expr_binary_token18] = ACTIONS(1530), + [aux_sym_expr_binary_token19] = ACTIONS(1530), + [aux_sym_expr_binary_token20] = ACTIONS(1530), + [aux_sym_expr_binary_token21] = ACTIONS(1530), + [aux_sym_expr_binary_token22] = ACTIONS(1530), + [aux_sym_expr_binary_token23] = ACTIONS(1530), + [aux_sym_expr_binary_token24] = ACTIONS(1530), + [aux_sym_expr_binary_token25] = ACTIONS(1530), + [aux_sym_expr_binary_token26] = ACTIONS(1530), + [aux_sym_expr_binary_token27] = ACTIONS(1530), + [aux_sym_expr_binary_token28] = ACTIONS(1530), + [anon_sym_DOT_DOT2] = ACTIONS(1528), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1530), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1530), + [aux_sym__immediate_decimal_token1] = ACTIONS(4780), + [aux_sym__immediate_decimal_token2] = ACTIONS(4782), + [sym_filesize_unit] = ACTIONS(1530), + [sym_duration_unit] = ACTIONS(1530), + [anon_sym_err_GT] = ACTIONS(1528), + [anon_sym_out_GT] = ACTIONS(1528), + [anon_sym_e_GT] = ACTIONS(1528), + [anon_sym_o_GT] = ACTIONS(1528), + [anon_sym_err_PLUSout_GT] = ACTIONS(1528), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), + [anon_sym_o_PLUSe_GT] = ACTIONS(1528), + [anon_sym_e_PLUSo_GT] = ACTIONS(1528), + [anon_sym_err_GT_GT] = ACTIONS(1530), + [anon_sym_out_GT_GT] = ACTIONS(1530), + [anon_sym_e_GT_GT] = ACTIONS(1530), + [anon_sym_o_GT_GT] = ACTIONS(1530), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1530), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1530), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1530), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1530), + [aux_sym_unquoted_token2] = ACTIONS(1528), + [anon_sym_POUND] = ACTIONS(249), + }, + [1367] = { + [sym_cell_path] = STATE(1779), + [sym_path] = STATE(1589), + [sym_comment] = STATE(1367), + [aux_sym_cell_path_repeat1] = STATE(1434), + [ts_builtin_sym_end] = ACTIONS(2061), + [anon_sym_true] = ACTIONS(2061), + [anon_sym_false] = ACTIONS(2061), + [anon_sym_null] = ACTIONS(2061), + [aux_sym_cmd_identifier_token38] = ACTIONS(2061), + [aux_sym_cmd_identifier_token39] = ACTIONS(2061), + [aux_sym_cmd_identifier_token40] = ACTIONS(2061), + [sym__newline] = ACTIONS(2061), + [anon_sym_SEMI] = ACTIONS(2061), + [anon_sym_PIPE] = ACTIONS(2061), + [anon_sym_err_GT_PIPE] = ACTIONS(2061), + [anon_sym_out_GT_PIPE] = ACTIONS(2061), + [anon_sym_e_GT_PIPE] = ACTIONS(2061), + [anon_sym_o_GT_PIPE] = ACTIONS(2061), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2061), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2061), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2061), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2061), + [anon_sym_LBRACK] = ACTIONS(2061), + [anon_sym_LPAREN] = ACTIONS(2061), + [anon_sym_DOLLAR] = ACTIONS(2059), + [anon_sym_DASH_DASH] = ACTIONS(2061), + [anon_sym_DASH] = ACTIONS(2059), + [anon_sym_LBRACE] = ACTIONS(2061), + [anon_sym_DOT_DOT] = ACTIONS(2059), + [anon_sym_DOT] = ACTIONS(4709), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2061), + [anon_sym_DOT_DOT_LT] = ACTIONS(2061), + [aux_sym__val_number_decimal_token1] = ACTIONS(2059), + [aux_sym__val_number_decimal_token2] = ACTIONS(2061), + [aux_sym__val_number_decimal_token3] = ACTIONS(2061), + [aux_sym__val_number_decimal_token4] = ACTIONS(2061), + [aux_sym__val_number_token1] = ACTIONS(2061), + [aux_sym__val_number_token2] = ACTIONS(2061), + [aux_sym__val_number_token3] = ACTIONS(2061), + [anon_sym_0b] = ACTIONS(2059), + [anon_sym_0o] = ACTIONS(2059), + [anon_sym_0x] = ACTIONS(2059), + [sym_val_date] = ACTIONS(2061), + [anon_sym_DQUOTE] = ACTIONS(2061), + [sym__str_single_quotes] = ACTIONS(2061), + [sym__str_back_ticks] = ACTIONS(2061), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2061), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2061), + [anon_sym_err_GT] = ACTIONS(2059), + [anon_sym_out_GT] = ACTIONS(2059), + [anon_sym_e_GT] = ACTIONS(2059), + [anon_sym_o_GT] = ACTIONS(2059), + [anon_sym_err_PLUSout_GT] = ACTIONS(2059), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2059), + [anon_sym_o_PLUSe_GT] = ACTIONS(2059), + [anon_sym_e_PLUSo_GT] = ACTIONS(2059), + [anon_sym_err_GT_GT] = ACTIONS(2061), + [anon_sym_out_GT_GT] = ACTIONS(2061), + [anon_sym_e_GT_GT] = ACTIONS(2061), + [anon_sym_o_GT_GT] = ACTIONS(2061), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2061), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2061), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2061), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2061), + [aux_sym_unquoted_token1] = ACTIONS(2059), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2061), + }, + [1368] = { + [sym_comment] = STATE(1368), + [anon_sym_true] = ACTIONS(2220), + [anon_sym_false] = ACTIONS(2220), + [anon_sym_null] = ACTIONS(2220), + [aux_sym_cmd_identifier_token38] = ACTIONS(2220), + [aux_sym_cmd_identifier_token39] = ACTIONS(2220), + [aux_sym_cmd_identifier_token40] = ACTIONS(2220), + [sym__newline] = ACTIONS(2220), + [anon_sym_SEMI] = ACTIONS(2220), + [anon_sym_PIPE] = ACTIONS(2220), + [anon_sym_err_GT_PIPE] = ACTIONS(2220), + [anon_sym_out_GT_PIPE] = ACTIONS(2220), + [anon_sym_e_GT_PIPE] = ACTIONS(2220), + [anon_sym_o_GT_PIPE] = ACTIONS(2220), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2220), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2220), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2220), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2220), + [anon_sym_LBRACK] = ACTIONS(2220), + [anon_sym_LPAREN] = ACTIONS(2220), + [anon_sym_RPAREN] = ACTIONS(2220), + [anon_sym_DOLLAR] = ACTIONS(2218), + [anon_sym_DASH_DASH] = ACTIONS(2220), + [anon_sym_DASH] = ACTIONS(2218), + [anon_sym_LBRACE] = ACTIONS(2220), + [anon_sym_RBRACE] = ACTIONS(2220), + [anon_sym_DOT_DOT] = ACTIONS(2218), + [anon_sym_DOT_DOT2] = ACTIONS(2218), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2218), + [anon_sym_DOT_DOT_LT] = ACTIONS(2218), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2220), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2220), + [aux_sym__val_number_decimal_token1] = ACTIONS(2218), + [aux_sym__val_number_decimal_token2] = ACTIONS(2220), + [aux_sym__val_number_decimal_token3] = ACTIONS(2220), + [aux_sym__val_number_decimal_token4] = ACTIONS(2220), + [aux_sym__val_number_token1] = ACTIONS(2220), + [aux_sym__val_number_token2] = ACTIONS(2220), + [aux_sym__val_number_token3] = ACTIONS(2220), + [anon_sym_0b] = ACTIONS(2218), + [anon_sym_0o] = ACTIONS(2218), + [anon_sym_0x] = ACTIONS(2218), + [sym_val_date] = ACTIONS(2220), + [anon_sym_DQUOTE] = ACTIONS(2220), + [sym__str_single_quotes] = ACTIONS(2220), + [sym__str_back_ticks] = ACTIONS(2220), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2220), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2220), + [anon_sym_err_GT] = ACTIONS(2218), + [anon_sym_out_GT] = ACTIONS(2218), + [anon_sym_e_GT] = ACTIONS(2218), + [anon_sym_o_GT] = ACTIONS(2218), + [anon_sym_err_PLUSout_GT] = ACTIONS(2218), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2218), + [anon_sym_o_PLUSe_GT] = ACTIONS(2218), + [anon_sym_e_PLUSo_GT] = ACTIONS(2218), + [anon_sym_err_GT_GT] = ACTIONS(2220), + [anon_sym_out_GT_GT] = ACTIONS(2220), + [anon_sym_e_GT_GT] = ACTIONS(2220), + [anon_sym_o_GT_GT] = ACTIONS(2220), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2220), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2220), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2220), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2220), + [aux_sym_unquoted_token1] = ACTIONS(2218), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2220), + }, + [1369] = { + [sym_comment] = STATE(1369), + [ts_builtin_sym_end] = ACTIONS(1076), + [anon_sym_true] = ACTIONS(1076), + [anon_sym_false] = ACTIONS(1076), + [anon_sym_null] = ACTIONS(1076), + [aux_sym_cmd_identifier_token38] = ACTIONS(1076), + [aux_sym_cmd_identifier_token39] = ACTIONS(1076), + [aux_sym_cmd_identifier_token40] = ACTIONS(1076), + [sym__newline] = ACTIONS(1076), + [anon_sym_SEMI] = ACTIONS(1076), + [anon_sym_PIPE] = ACTIONS(1076), + [anon_sym_err_GT_PIPE] = ACTIONS(1076), + [anon_sym_out_GT_PIPE] = ACTIONS(1076), + [anon_sym_e_GT_PIPE] = ACTIONS(1076), + [anon_sym_o_GT_PIPE] = ACTIONS(1076), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1076), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1076), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1076), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1076), + [anon_sym_LBRACK] = ACTIONS(1076), + [anon_sym_LPAREN] = ACTIONS(1076), + [anon_sym_DOLLAR] = ACTIONS(1074), + [anon_sym_DASH_DASH] = ACTIONS(1076), + [anon_sym_DASH] = ACTIONS(1074), + [anon_sym_LBRACE] = ACTIONS(1076), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT2] = ACTIONS(1074), + [anon_sym_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1074), + [anon_sym_DOT_DOT_LT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1076), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1076), + [aux_sym__val_number_decimal_token1] = ACTIONS(1074), + [aux_sym__val_number_decimal_token2] = ACTIONS(1076), + [aux_sym__val_number_decimal_token3] = ACTIONS(1076), + [aux_sym__val_number_decimal_token4] = ACTIONS(1076), + [aux_sym__val_number_token1] = ACTIONS(1076), + [aux_sym__val_number_token2] = ACTIONS(1076), + [aux_sym__val_number_token3] = ACTIONS(1076), + [anon_sym_0b] = ACTIONS(1074), + [anon_sym_0o] = ACTIONS(1074), + [anon_sym_0x] = ACTIONS(1074), + [sym_val_date] = ACTIONS(1076), + [anon_sym_DQUOTE] = ACTIONS(1076), + [sym__str_single_quotes] = ACTIONS(1076), + [sym__str_back_ticks] = ACTIONS(1076), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1076), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1076), + [anon_sym_err_GT] = ACTIONS(1074), + [anon_sym_out_GT] = ACTIONS(1074), + [anon_sym_e_GT] = ACTIONS(1074), + [anon_sym_o_GT] = ACTIONS(1074), + [anon_sym_err_PLUSout_GT] = ACTIONS(1074), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1074), + [anon_sym_o_PLUSe_GT] = ACTIONS(1074), + [anon_sym_e_PLUSo_GT] = ACTIONS(1074), + [anon_sym_err_GT_GT] = ACTIONS(1076), + [anon_sym_out_GT_GT] = ACTIONS(1076), + [anon_sym_e_GT_GT] = ACTIONS(1076), + [anon_sym_o_GT_GT] = ACTIONS(1076), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1076), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1076), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1076), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1076), + [aux_sym_unquoted_token1] = ACTIONS(1074), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1076), + }, + [1370] = { + [sym_cell_path] = STATE(1780), + [sym_path] = STATE(1589), + [sym_comment] = STATE(1370), + [aux_sym_cell_path_repeat1] = STATE(1434), + [ts_builtin_sym_end] = ACTIONS(2069), + [anon_sym_true] = ACTIONS(2069), + [anon_sym_false] = ACTIONS(2069), + [anon_sym_null] = ACTIONS(2069), + [aux_sym_cmd_identifier_token38] = ACTIONS(2069), + [aux_sym_cmd_identifier_token39] = ACTIONS(2069), + [aux_sym_cmd_identifier_token40] = ACTIONS(2069), + [sym__newline] = ACTIONS(2069), + [anon_sym_SEMI] = ACTIONS(2069), + [anon_sym_PIPE] = ACTIONS(2069), + [anon_sym_err_GT_PIPE] = ACTIONS(2069), + [anon_sym_out_GT_PIPE] = ACTIONS(2069), + [anon_sym_e_GT_PIPE] = ACTIONS(2069), + [anon_sym_o_GT_PIPE] = ACTIONS(2069), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2069), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2069), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2069), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2069), + [anon_sym_LBRACK] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2069), + [anon_sym_DOLLAR] = ACTIONS(2067), + [anon_sym_DASH_DASH] = ACTIONS(2069), + [anon_sym_DASH] = ACTIONS(2067), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_DOT_DOT] = ACTIONS(2067), + [anon_sym_DOT] = ACTIONS(4709), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2069), + [anon_sym_DOT_DOT_LT] = ACTIONS(2069), + [aux_sym__val_number_decimal_token1] = ACTIONS(2067), + [aux_sym__val_number_decimal_token2] = ACTIONS(2069), + [aux_sym__val_number_decimal_token3] = ACTIONS(2069), + [aux_sym__val_number_decimal_token4] = ACTIONS(2069), + [aux_sym__val_number_token1] = ACTIONS(2069), + [aux_sym__val_number_token2] = ACTIONS(2069), + [aux_sym__val_number_token3] = ACTIONS(2069), + [anon_sym_0b] = ACTIONS(2067), + [anon_sym_0o] = ACTIONS(2067), + [anon_sym_0x] = ACTIONS(2067), + [sym_val_date] = ACTIONS(2069), + [anon_sym_DQUOTE] = ACTIONS(2069), + [sym__str_single_quotes] = ACTIONS(2069), + [sym__str_back_ticks] = ACTIONS(2069), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2069), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2069), + [anon_sym_err_GT] = ACTIONS(2067), + [anon_sym_out_GT] = ACTIONS(2067), + [anon_sym_e_GT] = ACTIONS(2067), + [anon_sym_o_GT] = ACTIONS(2067), + [anon_sym_err_PLUSout_GT] = ACTIONS(2067), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2067), + [anon_sym_o_PLUSe_GT] = ACTIONS(2067), + [anon_sym_e_PLUSo_GT] = ACTIONS(2067), + [anon_sym_err_GT_GT] = ACTIONS(2069), + [anon_sym_out_GT_GT] = ACTIONS(2069), + [anon_sym_e_GT_GT] = ACTIONS(2069), + [anon_sym_o_GT_GT] = ACTIONS(2069), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2069), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2069), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2069), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2069), + [aux_sym_unquoted_token1] = ACTIONS(2067), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2069), }, [1371] = { [sym_comment] = STATE(1371), - [sym__newline] = ACTIONS(1675), - [anon_sym_SEMI] = ACTIONS(1677), - [anon_sym_PIPE] = ACTIONS(1677), - [anon_sym_err_GT_PIPE] = ACTIONS(1677), - [anon_sym_out_GT_PIPE] = ACTIONS(1677), - [anon_sym_e_GT_PIPE] = ACTIONS(1677), - [anon_sym_o_GT_PIPE] = ACTIONS(1677), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1677), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1677), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1677), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1677), - [anon_sym_DASH_DASH] = ACTIONS(1677), - [anon_sym_DASH] = ACTIONS(1675), - [anon_sym_LBRACE] = ACTIONS(1677), - [anon_sym_RBRACE] = ACTIONS(1677), - [anon_sym_EQ_GT] = ACTIONS(1677), - [aux_sym_expr_binary_token1] = ACTIONS(1677), - [aux_sym_expr_binary_token2] = ACTIONS(1677), - [aux_sym_expr_binary_token3] = ACTIONS(1677), - [aux_sym_expr_binary_token4] = ACTIONS(1677), - [aux_sym_expr_binary_token5] = ACTIONS(1677), - [aux_sym_expr_binary_token6] = ACTIONS(1677), - [aux_sym_expr_binary_token7] = ACTIONS(1677), - [aux_sym_expr_binary_token8] = ACTIONS(1677), - [aux_sym_expr_binary_token9] = ACTIONS(1677), - [aux_sym_expr_binary_token10] = ACTIONS(1677), - [aux_sym_expr_binary_token11] = ACTIONS(1677), - [aux_sym_expr_binary_token12] = ACTIONS(1677), - [aux_sym_expr_binary_token13] = ACTIONS(1677), - [aux_sym_expr_binary_token14] = ACTIONS(1677), - [aux_sym_expr_binary_token15] = ACTIONS(1677), - [aux_sym_expr_binary_token16] = ACTIONS(1677), - [aux_sym_expr_binary_token17] = ACTIONS(1677), - [aux_sym_expr_binary_token18] = ACTIONS(1677), - [aux_sym_expr_binary_token19] = ACTIONS(1677), - [aux_sym_expr_binary_token20] = ACTIONS(1677), - [aux_sym_expr_binary_token21] = ACTIONS(1677), - [aux_sym_expr_binary_token22] = ACTIONS(1677), - [aux_sym_expr_binary_token23] = ACTIONS(1677), - [aux_sym_expr_binary_token24] = ACTIONS(1677), - [aux_sym_expr_binary_token25] = ACTIONS(1677), - [aux_sym_expr_binary_token26] = ACTIONS(1677), - [aux_sym_expr_binary_token27] = ACTIONS(1677), - [aux_sym_expr_binary_token28] = ACTIONS(1677), - [anon_sym_DOT_DOT2] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1677), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1677), - [aux_sym_record_entry_token1] = ACTIONS(1677), - [anon_sym_err_GT] = ACTIONS(1675), - [anon_sym_out_GT] = ACTIONS(1675), - [anon_sym_e_GT] = ACTIONS(1675), - [anon_sym_o_GT] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT] = ACTIONS(1675), - [anon_sym_err_GT_GT] = ACTIONS(1677), - [anon_sym_out_GT_GT] = ACTIONS(1677), - [anon_sym_e_GT_GT] = ACTIONS(1677), - [anon_sym_o_GT_GT] = ACTIONS(1677), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1677), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1677), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1677), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1677), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(2232), + [anon_sym_false] = ACTIONS(2232), + [anon_sym_null] = ACTIONS(2232), + [aux_sym_cmd_identifier_token38] = ACTIONS(2232), + [aux_sym_cmd_identifier_token39] = ACTIONS(2232), + [aux_sym_cmd_identifier_token40] = ACTIONS(2232), + [sym__newline] = ACTIONS(2232), + [anon_sym_SEMI] = ACTIONS(2232), + [anon_sym_PIPE] = ACTIONS(2232), + [anon_sym_err_GT_PIPE] = ACTIONS(2232), + [anon_sym_out_GT_PIPE] = ACTIONS(2232), + [anon_sym_e_GT_PIPE] = ACTIONS(2232), + [anon_sym_o_GT_PIPE] = ACTIONS(2232), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2232), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2232), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2232), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2232), + [anon_sym_LBRACK] = ACTIONS(2232), + [anon_sym_LPAREN] = ACTIONS(2232), + [anon_sym_RPAREN] = ACTIONS(2232), + [anon_sym_DOLLAR] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2232), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_LBRACE] = ACTIONS(2232), + [anon_sym_RBRACE] = ACTIONS(2232), + [anon_sym_DOT_DOT] = ACTIONS(2230), + [anon_sym_DOT_DOT2] = ACTIONS(2230), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2230), + [anon_sym_DOT_DOT_LT] = ACTIONS(2230), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2232), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2232), + [aux_sym__val_number_decimal_token1] = ACTIONS(2230), + [aux_sym__val_number_decimal_token2] = ACTIONS(2232), + [aux_sym__val_number_decimal_token3] = ACTIONS(2232), + [aux_sym__val_number_decimal_token4] = ACTIONS(2232), + [aux_sym__val_number_token1] = ACTIONS(2232), + [aux_sym__val_number_token2] = ACTIONS(2232), + [aux_sym__val_number_token3] = ACTIONS(2232), + [anon_sym_0b] = ACTIONS(2230), + [anon_sym_0o] = ACTIONS(2230), + [anon_sym_0x] = ACTIONS(2230), + [sym_val_date] = ACTIONS(2232), + [anon_sym_DQUOTE] = ACTIONS(2232), + [sym__str_single_quotes] = ACTIONS(2232), + [sym__str_back_ticks] = ACTIONS(2232), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2232), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2232), + [anon_sym_err_GT] = ACTIONS(2230), + [anon_sym_out_GT] = ACTIONS(2230), + [anon_sym_e_GT] = ACTIONS(2230), + [anon_sym_o_GT] = ACTIONS(2230), + [anon_sym_err_PLUSout_GT] = ACTIONS(2230), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2230), + [anon_sym_o_PLUSe_GT] = ACTIONS(2230), + [anon_sym_e_PLUSo_GT] = ACTIONS(2230), + [anon_sym_err_GT_GT] = ACTIONS(2232), + [anon_sym_out_GT_GT] = ACTIONS(2232), + [anon_sym_e_GT_GT] = ACTIONS(2232), + [anon_sym_o_GT_GT] = ACTIONS(2232), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2232), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2232), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2232), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2232), + [aux_sym_unquoted_token1] = ACTIONS(2230), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2232), }, [1372] = { - [sym_cell_path] = STATE(1898), - [sym_path] = STATE(1603), + [sym_cell_path] = STATE(1399), + [sym_path] = STATE(1233), [sym_comment] = STATE(1372), - [aux_sym_cell_path_repeat1] = STATE(1493), - [ts_builtin_sym_end] = ACTIONS(1826), - [anon_sym_true] = ACTIONS(1826), - [anon_sym_false] = ACTIONS(1826), - [anon_sym_null] = ACTIONS(1826), - [aux_sym_cmd_identifier_token38] = ACTIONS(1826), - [aux_sym_cmd_identifier_token39] = ACTIONS(1826), - [aux_sym_cmd_identifier_token40] = ACTIONS(1826), - [sym__newline] = ACTIONS(1826), - [anon_sym_SEMI] = ACTIONS(1826), - [anon_sym_PIPE] = ACTIONS(1826), - [anon_sym_err_GT_PIPE] = ACTIONS(1826), - [anon_sym_out_GT_PIPE] = ACTIONS(1826), - [anon_sym_e_GT_PIPE] = ACTIONS(1826), - [anon_sym_o_GT_PIPE] = ACTIONS(1826), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1826), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1826), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1826), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1826), - [anon_sym_LBRACK] = ACTIONS(1826), - [anon_sym_LPAREN] = ACTIONS(1826), - [anon_sym_DOLLAR] = ACTIONS(1822), - [anon_sym_DASH_DASH] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_LBRACE] = ACTIONS(1826), - [anon_sym_DOT_DOT] = ACTIONS(1822), - [anon_sym_DOT] = ACTIONS(4680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1826), - [anon_sym_DOT_DOT_LT] = ACTIONS(1826), - [aux_sym__val_number_decimal_token1] = ACTIONS(1822), - [aux_sym__val_number_decimal_token2] = ACTIONS(1826), - [aux_sym__val_number_decimal_token3] = ACTIONS(1826), - [aux_sym__val_number_decimal_token4] = ACTIONS(1826), - [aux_sym__val_number_token1] = ACTIONS(1826), - [aux_sym__val_number_token2] = ACTIONS(1826), - [aux_sym__val_number_token3] = ACTIONS(1826), - [anon_sym_0b] = ACTIONS(1822), - [anon_sym_0o] = ACTIONS(1822), - [anon_sym_0x] = ACTIONS(1822), - [sym_val_date] = ACTIONS(1826), - [anon_sym_DQUOTE] = ACTIONS(1826), - [sym__str_single_quotes] = ACTIONS(1826), - [sym__str_back_ticks] = ACTIONS(1826), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1826), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1826), - [anon_sym_err_GT] = ACTIONS(1822), - [anon_sym_out_GT] = ACTIONS(1822), - [anon_sym_e_GT] = ACTIONS(1822), - [anon_sym_o_GT] = ACTIONS(1822), - [anon_sym_err_PLUSout_GT] = ACTIONS(1822), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1822), - [anon_sym_o_PLUSe_GT] = ACTIONS(1822), - [anon_sym_e_PLUSo_GT] = ACTIONS(1822), - [anon_sym_err_GT_GT] = ACTIONS(1826), - [anon_sym_out_GT_GT] = ACTIONS(1826), - [anon_sym_e_GT_GT] = ACTIONS(1826), - [anon_sym_o_GT_GT] = ACTIONS(1826), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1826), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1826), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1826), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1826), - [aux_sym_unquoted_token1] = ACTIONS(1822), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(1096), + [sym__newline] = ACTIONS(1664), + [anon_sym_SEMI] = ACTIONS(1668), + [anon_sym_PIPE] = ACTIONS(1668), + [anon_sym_err_GT_PIPE] = ACTIONS(1668), + [anon_sym_out_GT_PIPE] = ACTIONS(1668), + [anon_sym_e_GT_PIPE] = ACTIONS(1668), + [anon_sym_o_GT_PIPE] = ACTIONS(1668), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1668), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1668), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1668), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(1668), + [anon_sym_RBRACE] = ACTIONS(1668), + [aux_sym_expr_binary_token1] = ACTIONS(1668), + [aux_sym_expr_binary_token2] = ACTIONS(1668), + [aux_sym_expr_binary_token3] = ACTIONS(1668), + [aux_sym_expr_binary_token4] = ACTIONS(1668), + [aux_sym_expr_binary_token5] = ACTIONS(1668), + [aux_sym_expr_binary_token6] = ACTIONS(1668), + [aux_sym_expr_binary_token7] = ACTIONS(1668), + [aux_sym_expr_binary_token8] = ACTIONS(1668), + [aux_sym_expr_binary_token9] = ACTIONS(1668), + [aux_sym_expr_binary_token10] = ACTIONS(1668), + [aux_sym_expr_binary_token11] = ACTIONS(1668), + [aux_sym_expr_binary_token12] = ACTIONS(1668), + [aux_sym_expr_binary_token13] = ACTIONS(1668), + [aux_sym_expr_binary_token14] = ACTIONS(1668), + [aux_sym_expr_binary_token15] = ACTIONS(1668), + [aux_sym_expr_binary_token16] = ACTIONS(1668), + [aux_sym_expr_binary_token17] = ACTIONS(1668), + [aux_sym_expr_binary_token18] = ACTIONS(1668), + [aux_sym_expr_binary_token19] = ACTIONS(1668), + [aux_sym_expr_binary_token20] = ACTIONS(1668), + [aux_sym_expr_binary_token21] = ACTIONS(1668), + [aux_sym_expr_binary_token22] = ACTIONS(1668), + [aux_sym_expr_binary_token23] = ACTIONS(1668), + [aux_sym_expr_binary_token24] = ACTIONS(1668), + [aux_sym_expr_binary_token25] = ACTIONS(1668), + [aux_sym_expr_binary_token26] = ACTIONS(1668), + [aux_sym_expr_binary_token27] = ACTIONS(1668), + [aux_sym_expr_binary_token28] = ACTIONS(1668), + [anon_sym_DOT_DOT2] = ACTIONS(1664), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1668), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1668), + [aux_sym_record_entry_token1] = ACTIONS(1668), + [anon_sym_err_GT] = ACTIONS(1664), + [anon_sym_out_GT] = ACTIONS(1664), + [anon_sym_e_GT] = ACTIONS(1664), + [anon_sym_o_GT] = ACTIONS(1664), + [anon_sym_err_PLUSout_GT] = ACTIONS(1664), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1664), + [anon_sym_o_PLUSe_GT] = ACTIONS(1664), + [anon_sym_e_PLUSo_GT] = ACTIONS(1664), + [anon_sym_err_GT_GT] = ACTIONS(1668), + [anon_sym_out_GT_GT] = ACTIONS(1668), + [anon_sym_e_GT_GT] = ACTIONS(1668), + [anon_sym_o_GT_GT] = ACTIONS(1668), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1668), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1668), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1668), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1668), + [anon_sym_POUND] = ACTIONS(249), }, [1373] = { [sym_comment] = STATE(1373), - [aux_sym_cmd_identifier_token41] = ACTIONS(1554), - [sym__newline] = ACTIONS(1554), - [anon_sym_SEMI] = ACTIONS(1556), - [anon_sym_PIPE] = ACTIONS(1556), - [anon_sym_err_GT_PIPE] = ACTIONS(1556), - [anon_sym_out_GT_PIPE] = ACTIONS(1556), - [anon_sym_e_GT_PIPE] = ACTIONS(1556), - [anon_sym_o_GT_PIPE] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1556), - [anon_sym_RPAREN] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1556), - [anon_sym_DOT_DOT2] = ACTIONS(1554), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1556), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1556), - [aux_sym__immediate_decimal_token2] = ACTIONS(4720), - [sym_filesize_unit] = ACTIONS(1556), - [sym_duration_unit] = ACTIONS(1556), - [anon_sym_err_GT] = ACTIONS(1554), - [anon_sym_out_GT] = ACTIONS(1554), - [anon_sym_e_GT] = ACTIONS(1554), - [anon_sym_o_GT] = ACTIONS(1554), - [anon_sym_err_PLUSout_GT] = ACTIONS(1554), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1554), - [anon_sym_o_PLUSe_GT] = ACTIONS(1554), - [anon_sym_e_PLUSo_GT] = ACTIONS(1554), - [anon_sym_err_GT_GT] = ACTIONS(1556), - [anon_sym_out_GT_GT] = ACTIONS(1556), - [anon_sym_e_GT_GT] = ACTIONS(1556), - [anon_sym_o_GT_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1556), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cmd_identifier_token41] = ACTIONS(1528), + [sym__newline] = ACTIONS(1528), + [anon_sym_SEMI] = ACTIONS(1530), + [anon_sym_PIPE] = ACTIONS(1530), + [anon_sym_err_GT_PIPE] = ACTIONS(1530), + [anon_sym_out_GT_PIPE] = ACTIONS(1530), + [anon_sym_e_GT_PIPE] = ACTIONS(1530), + [anon_sym_o_GT_PIPE] = ACTIONS(1530), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1530), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1530), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1530), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1530), + [anon_sym_RPAREN] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1530), + [anon_sym_DOT_DOT2] = ACTIONS(1528), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1530), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1530), + [aux_sym__immediate_decimal_token1] = ACTIONS(4784), + [aux_sym__immediate_decimal_token2] = ACTIONS(4786), + [sym_filesize_unit] = ACTIONS(1530), + [sym_duration_unit] = ACTIONS(1530), + [anon_sym_err_GT] = ACTIONS(1528), + [anon_sym_out_GT] = ACTIONS(1528), + [anon_sym_e_GT] = ACTIONS(1528), + [anon_sym_o_GT] = ACTIONS(1528), + [anon_sym_err_PLUSout_GT] = ACTIONS(1528), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), + [anon_sym_o_PLUSe_GT] = ACTIONS(1528), + [anon_sym_e_PLUSo_GT] = ACTIONS(1528), + [anon_sym_err_GT_GT] = ACTIONS(1530), + [anon_sym_out_GT_GT] = ACTIONS(1530), + [anon_sym_e_GT_GT] = ACTIONS(1530), + [anon_sym_o_GT_GT] = ACTIONS(1530), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1530), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1530), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1530), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1530), + [anon_sym_POUND] = ACTIONS(249), }, [1374] = { - [sym_cell_path] = STATE(1831), - [sym_path] = STATE(1603), [sym_comment] = STATE(1374), - [aux_sym_cell_path_repeat1] = STATE(1493), - [ts_builtin_sym_end] = ACTIONS(1838), - [anon_sym_true] = ACTIONS(1838), - [anon_sym_false] = ACTIONS(1838), - [anon_sym_null] = ACTIONS(1838), - [aux_sym_cmd_identifier_token38] = ACTIONS(1838), - [aux_sym_cmd_identifier_token39] = ACTIONS(1838), - [aux_sym_cmd_identifier_token40] = ACTIONS(1838), - [sym__newline] = ACTIONS(1838), - [anon_sym_SEMI] = ACTIONS(1838), - [anon_sym_PIPE] = ACTIONS(1838), - [anon_sym_err_GT_PIPE] = ACTIONS(1838), - [anon_sym_out_GT_PIPE] = ACTIONS(1838), - [anon_sym_e_GT_PIPE] = ACTIONS(1838), - [anon_sym_o_GT_PIPE] = ACTIONS(1838), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1838), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1838), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1838), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1838), - [anon_sym_LBRACK] = ACTIONS(1838), - [anon_sym_LPAREN] = ACTIONS(1838), - [anon_sym_DOLLAR] = ACTIONS(1836), - [anon_sym_DASH_DASH] = ACTIONS(1838), - [anon_sym_DASH] = ACTIONS(1836), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_DOT_DOT] = ACTIONS(1836), - [anon_sym_DOT] = ACTIONS(4680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1838), - [anon_sym_DOT_DOT_LT] = ACTIONS(1838), - [aux_sym__val_number_decimal_token1] = ACTIONS(1836), - [aux_sym__val_number_decimal_token2] = ACTIONS(1838), - [aux_sym__val_number_decimal_token3] = ACTIONS(1838), - [aux_sym__val_number_decimal_token4] = ACTIONS(1838), - [aux_sym__val_number_token1] = ACTIONS(1838), - [aux_sym__val_number_token2] = ACTIONS(1838), - [aux_sym__val_number_token3] = ACTIONS(1838), - [anon_sym_0b] = ACTIONS(1836), - [anon_sym_0o] = ACTIONS(1836), - [anon_sym_0x] = ACTIONS(1836), - [sym_val_date] = ACTIONS(1838), - [anon_sym_DQUOTE] = ACTIONS(1838), - [sym__str_single_quotes] = ACTIONS(1838), - [sym__str_back_ticks] = ACTIONS(1838), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1838), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1838), - [anon_sym_err_GT] = ACTIONS(1836), - [anon_sym_out_GT] = ACTIONS(1836), - [anon_sym_e_GT] = ACTIONS(1836), - [anon_sym_o_GT] = ACTIONS(1836), - [anon_sym_err_PLUSout_GT] = ACTIONS(1836), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1836), - [anon_sym_o_PLUSe_GT] = ACTIONS(1836), - [anon_sym_e_PLUSo_GT] = ACTIONS(1836), - [anon_sym_err_GT_GT] = ACTIONS(1838), - [anon_sym_out_GT_GT] = ACTIONS(1838), - [anon_sym_e_GT_GT] = ACTIONS(1838), - [anon_sym_o_GT_GT] = ACTIONS(1838), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1838), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1838), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1838), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1838), - [aux_sym_unquoted_token1] = ACTIONS(1836), - [anon_sym_POUND] = ACTIONS(247), + [ts_builtin_sym_end] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1717), + [anon_sym_false] = ACTIONS(1717), + [anon_sym_null] = ACTIONS(1717), + [aux_sym_cmd_identifier_token38] = ACTIONS(1717), + [aux_sym_cmd_identifier_token39] = ACTIONS(1717), + [aux_sym_cmd_identifier_token40] = ACTIONS(1717), + [sym__newline] = ACTIONS(1717), + [anon_sym_SEMI] = ACTIONS(1717), + [anon_sym_PIPE] = ACTIONS(1717), + [anon_sym_err_GT_PIPE] = ACTIONS(1717), + [anon_sym_out_GT_PIPE] = ACTIONS(1717), + [anon_sym_e_GT_PIPE] = ACTIONS(1717), + [anon_sym_o_GT_PIPE] = ACTIONS(1717), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1717), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1717), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1717), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1717), + [anon_sym_LBRACK] = ACTIONS(1717), + [anon_sym_LPAREN] = ACTIONS(1715), + [anon_sym_DOLLAR] = ACTIONS(1715), + [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_LBRACE] = ACTIONS(1717), + [anon_sym_DOT_DOT] = ACTIONS(1715), + [anon_sym_LPAREN2] = ACTIONS(1717), + [anon_sym_DOT] = ACTIONS(4788), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1717), + [anon_sym_DOT_DOT_LT] = ACTIONS(1717), + [aux_sym__immediate_decimal_token2] = ACTIONS(4790), + [aux_sym__val_number_decimal_token1] = ACTIONS(1715), + [aux_sym__val_number_decimal_token2] = ACTIONS(1717), + [aux_sym__val_number_decimal_token3] = ACTIONS(1717), + [aux_sym__val_number_decimal_token4] = ACTIONS(1717), + [aux_sym__val_number_token1] = ACTIONS(1717), + [aux_sym__val_number_token2] = ACTIONS(1717), + [aux_sym__val_number_token3] = ACTIONS(1717), + [anon_sym_0b] = ACTIONS(1715), + [anon_sym_0o] = ACTIONS(1715), + [anon_sym_0x] = ACTIONS(1715), + [sym_val_date] = ACTIONS(1717), + [anon_sym_DQUOTE] = ACTIONS(1717), + [sym__str_single_quotes] = ACTIONS(1717), + [sym__str_back_ticks] = ACTIONS(1717), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1717), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1717), + [anon_sym_err_GT] = ACTIONS(1715), + [anon_sym_out_GT] = ACTIONS(1715), + [anon_sym_e_GT] = ACTIONS(1715), + [anon_sym_o_GT] = ACTIONS(1715), + [anon_sym_err_PLUSout_GT] = ACTIONS(1715), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1715), + [anon_sym_o_PLUSe_GT] = ACTIONS(1715), + [anon_sym_e_PLUSo_GT] = ACTIONS(1715), + [anon_sym_err_GT_GT] = ACTIONS(1717), + [anon_sym_out_GT_GT] = ACTIONS(1717), + [anon_sym_e_GT_GT] = ACTIONS(1717), + [anon_sym_o_GT_GT] = ACTIONS(1717), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1717), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1717), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1717), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1717), + [aux_sym_unquoted_token1] = ACTIONS(1715), + [aux_sym_unquoted_token2] = ACTIONS(1715), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1717), }, [1375] = { [sym_comment] = STATE(1375), - [sym__newline] = ACTIONS(2141), - [anon_sym_SEMI] = ACTIONS(2143), - [anon_sym_PIPE] = ACTIONS(2143), - [anon_sym_err_GT_PIPE] = ACTIONS(2143), - [anon_sym_out_GT_PIPE] = ACTIONS(2143), - [anon_sym_e_GT_PIPE] = ACTIONS(2143), - [anon_sym_o_GT_PIPE] = ACTIONS(2143), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2143), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2143), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2143), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2143), - [anon_sym_DASH_DASH] = ACTIONS(2143), - [anon_sym_DASH] = ACTIONS(2141), - [anon_sym_LBRACE] = ACTIONS(2143), - [anon_sym_RBRACE] = ACTIONS(2143), - [anon_sym_EQ_GT] = ACTIONS(2143), - [aux_sym_expr_binary_token1] = ACTIONS(2143), - [aux_sym_expr_binary_token2] = ACTIONS(2143), - [aux_sym_expr_binary_token3] = ACTIONS(2143), - [aux_sym_expr_binary_token4] = ACTIONS(2143), - [aux_sym_expr_binary_token5] = ACTIONS(2143), - [aux_sym_expr_binary_token6] = ACTIONS(2143), - [aux_sym_expr_binary_token7] = ACTIONS(2143), - [aux_sym_expr_binary_token8] = ACTIONS(2143), - [aux_sym_expr_binary_token9] = ACTIONS(2143), - [aux_sym_expr_binary_token10] = ACTIONS(2143), - [aux_sym_expr_binary_token11] = ACTIONS(2143), - [aux_sym_expr_binary_token12] = ACTIONS(2143), - [aux_sym_expr_binary_token13] = ACTIONS(2143), - [aux_sym_expr_binary_token14] = ACTIONS(2143), - [aux_sym_expr_binary_token15] = ACTIONS(2143), - [aux_sym_expr_binary_token16] = ACTIONS(2143), - [aux_sym_expr_binary_token17] = ACTIONS(2143), - [aux_sym_expr_binary_token18] = ACTIONS(2143), - [aux_sym_expr_binary_token19] = ACTIONS(2143), - [aux_sym_expr_binary_token20] = ACTIONS(2143), - [aux_sym_expr_binary_token21] = ACTIONS(2143), - [aux_sym_expr_binary_token22] = ACTIONS(2143), - [aux_sym_expr_binary_token23] = ACTIONS(2143), - [aux_sym_expr_binary_token24] = ACTIONS(2143), - [aux_sym_expr_binary_token25] = ACTIONS(2143), - [aux_sym_expr_binary_token26] = ACTIONS(2143), - [aux_sym_expr_binary_token27] = ACTIONS(2143), - [aux_sym_expr_binary_token28] = ACTIONS(2143), - [anon_sym_DOT_DOT2] = ACTIONS(2141), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2143), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2143), - [aux_sym_record_entry_token1] = ACTIONS(2143), - [anon_sym_err_GT] = ACTIONS(2141), - [anon_sym_out_GT] = ACTIONS(2141), - [anon_sym_e_GT] = ACTIONS(2141), - [anon_sym_o_GT] = ACTIONS(2141), - [anon_sym_err_PLUSout_GT] = ACTIONS(2141), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2141), - [anon_sym_o_PLUSe_GT] = ACTIONS(2141), - [anon_sym_e_PLUSo_GT] = ACTIONS(2141), - [anon_sym_err_GT_GT] = ACTIONS(2143), - [anon_sym_out_GT_GT] = ACTIONS(2143), - [anon_sym_e_GT_GT] = ACTIONS(2143), - [anon_sym_o_GT_GT] = ACTIONS(2143), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2143), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2143), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2143), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2143), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(1672), + [anon_sym_false] = ACTIONS(1672), + [anon_sym_null] = ACTIONS(1672), + [aux_sym_cmd_identifier_token38] = ACTIONS(1672), + [aux_sym_cmd_identifier_token39] = ACTIONS(1672), + [aux_sym_cmd_identifier_token40] = ACTIONS(1672), + [sym__newline] = ACTIONS(1672), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_PIPE] = ACTIONS(1672), + [anon_sym_err_GT_PIPE] = ACTIONS(1672), + [anon_sym_out_GT_PIPE] = ACTIONS(1672), + [anon_sym_e_GT_PIPE] = ACTIONS(1672), + [anon_sym_o_GT_PIPE] = ACTIONS(1672), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1672), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1672), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1672), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1672), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LPAREN] = ACTIONS(1672), + [anon_sym_RPAREN] = ACTIONS(1672), + [anon_sym_DOLLAR] = ACTIONS(1670), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DASH] = ACTIONS(1670), + [anon_sym_LBRACE] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(1672), + [anon_sym_DOT_DOT] = ACTIONS(1670), + [anon_sym_DOT_DOT2] = ACTIONS(1670), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1670), + [anon_sym_DOT_DOT_LT] = ACTIONS(1670), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1672), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1672), + [aux_sym__val_number_decimal_token1] = ACTIONS(1670), + [aux_sym__val_number_decimal_token2] = ACTIONS(1672), + [aux_sym__val_number_decimal_token3] = ACTIONS(1672), + [aux_sym__val_number_decimal_token4] = ACTIONS(1672), + [aux_sym__val_number_token1] = ACTIONS(1672), + [aux_sym__val_number_token2] = ACTIONS(1672), + [aux_sym__val_number_token3] = ACTIONS(1672), + [anon_sym_0b] = ACTIONS(1670), + [anon_sym_0o] = ACTIONS(1670), + [anon_sym_0x] = ACTIONS(1670), + [sym_val_date] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1672), + [sym__str_single_quotes] = ACTIONS(1672), + [sym__str_back_ticks] = ACTIONS(1672), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1672), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1672), + [anon_sym_err_GT] = ACTIONS(1670), + [anon_sym_out_GT] = ACTIONS(1670), + [anon_sym_e_GT] = ACTIONS(1670), + [anon_sym_o_GT] = ACTIONS(1670), + [anon_sym_err_PLUSout_GT] = ACTIONS(1670), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1670), + [anon_sym_o_PLUSe_GT] = ACTIONS(1670), + [anon_sym_e_PLUSo_GT] = ACTIONS(1670), + [anon_sym_err_GT_GT] = ACTIONS(1672), + [anon_sym_out_GT_GT] = ACTIONS(1672), + [anon_sym_e_GT_GT] = ACTIONS(1672), + [anon_sym_o_GT_GT] = ACTIONS(1672), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1672), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1672), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1672), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1672), + [aux_sym_unquoted_token1] = ACTIONS(1670), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1672), }, [1376] = { + [sym_cell_path] = STATE(1772), + [sym_path] = STATE(1589), [sym_comment] = STATE(1376), - [ts_builtin_sym_end] = ACTIONS(1048), - [anon_sym_true] = ACTIONS(1048), - [anon_sym_false] = ACTIONS(1048), - [anon_sym_null] = ACTIONS(1048), - [aux_sym_cmd_identifier_token38] = ACTIONS(1048), - [aux_sym_cmd_identifier_token39] = ACTIONS(1048), - [aux_sym_cmd_identifier_token40] = ACTIONS(1048), - [sym__newline] = ACTIONS(1048), - [anon_sym_SEMI] = ACTIONS(1048), - [anon_sym_PIPE] = ACTIONS(1048), - [anon_sym_err_GT_PIPE] = ACTIONS(1048), - [anon_sym_out_GT_PIPE] = ACTIONS(1048), - [anon_sym_e_GT_PIPE] = ACTIONS(1048), - [anon_sym_o_GT_PIPE] = ACTIONS(1048), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1048), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1048), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1048), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1048), - [anon_sym_LBRACK] = ACTIONS(1048), - [anon_sym_LPAREN] = ACTIONS(1048), - [anon_sym_DOLLAR] = ACTIONS(1046), - [anon_sym_DASH_DASH] = ACTIONS(1048), - [anon_sym_DASH] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1048), - [anon_sym_DOT_DOT] = ACTIONS(1046), - [anon_sym_DOT_DOT2] = ACTIONS(1046), - [anon_sym_DOT] = ACTIONS(1046), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1046), - [anon_sym_DOT_DOT_LT] = ACTIONS(1046), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1048), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1048), - [aux_sym__val_number_decimal_token1] = ACTIONS(1046), - [aux_sym__val_number_decimal_token2] = ACTIONS(1048), - [aux_sym__val_number_decimal_token3] = ACTIONS(1048), - [aux_sym__val_number_decimal_token4] = ACTIONS(1048), - [aux_sym__val_number_token1] = ACTIONS(1048), - [aux_sym__val_number_token2] = ACTIONS(1048), - [aux_sym__val_number_token3] = ACTIONS(1048), - [anon_sym_0b] = ACTIONS(1046), - [anon_sym_0o] = ACTIONS(1046), - [anon_sym_0x] = ACTIONS(1046), - [sym_val_date] = ACTIONS(1048), - [anon_sym_DQUOTE] = ACTIONS(1048), - [sym__str_single_quotes] = ACTIONS(1048), - [sym__str_back_ticks] = ACTIONS(1048), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1048), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1048), - [anon_sym_err_GT] = ACTIONS(1046), - [anon_sym_out_GT] = ACTIONS(1046), - [anon_sym_e_GT] = ACTIONS(1046), - [anon_sym_o_GT] = ACTIONS(1046), - [anon_sym_err_PLUSout_GT] = ACTIONS(1046), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1046), - [anon_sym_o_PLUSe_GT] = ACTIONS(1046), - [anon_sym_e_PLUSo_GT] = ACTIONS(1046), - [anon_sym_err_GT_GT] = ACTIONS(1048), - [anon_sym_out_GT_GT] = ACTIONS(1048), - [anon_sym_e_GT_GT] = ACTIONS(1048), - [anon_sym_o_GT_GT] = ACTIONS(1048), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1048), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1048), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1048), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1048), - [aux_sym_unquoted_token1] = ACTIONS(1046), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(1434), + [ts_builtin_sym_end] = ACTIONS(2019), + [anon_sym_true] = ACTIONS(2019), + [anon_sym_false] = ACTIONS(2019), + [anon_sym_null] = ACTIONS(2019), + [aux_sym_cmd_identifier_token38] = ACTIONS(2019), + [aux_sym_cmd_identifier_token39] = ACTIONS(2019), + [aux_sym_cmd_identifier_token40] = ACTIONS(2019), + [sym__newline] = ACTIONS(2019), + [anon_sym_SEMI] = ACTIONS(2019), + [anon_sym_PIPE] = ACTIONS(2019), + [anon_sym_err_GT_PIPE] = ACTIONS(2019), + [anon_sym_out_GT_PIPE] = ACTIONS(2019), + [anon_sym_e_GT_PIPE] = ACTIONS(2019), + [anon_sym_o_GT_PIPE] = ACTIONS(2019), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2019), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2019), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2019), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2019), + [anon_sym_LBRACK] = ACTIONS(2019), + [anon_sym_LPAREN] = ACTIONS(2019), + [anon_sym_DOLLAR] = ACTIONS(2017), + [anon_sym_DASH_DASH] = ACTIONS(2019), + [anon_sym_DASH] = ACTIONS(2017), + [anon_sym_LBRACE] = ACTIONS(2019), + [anon_sym_DOT_DOT] = ACTIONS(2017), + [anon_sym_DOT] = ACTIONS(4709), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2019), + [anon_sym_DOT_DOT_LT] = ACTIONS(2019), + [aux_sym__val_number_decimal_token1] = ACTIONS(2017), + [aux_sym__val_number_decimal_token2] = ACTIONS(2019), + [aux_sym__val_number_decimal_token3] = ACTIONS(2019), + [aux_sym__val_number_decimal_token4] = ACTIONS(2019), + [aux_sym__val_number_token1] = ACTIONS(2019), + [aux_sym__val_number_token2] = ACTIONS(2019), + [aux_sym__val_number_token3] = ACTIONS(2019), + [anon_sym_0b] = ACTIONS(2017), + [anon_sym_0o] = ACTIONS(2017), + [anon_sym_0x] = ACTIONS(2017), + [sym_val_date] = ACTIONS(2019), + [anon_sym_DQUOTE] = ACTIONS(2019), + [sym__str_single_quotes] = ACTIONS(2019), + [sym__str_back_ticks] = ACTIONS(2019), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2019), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2019), + [anon_sym_err_GT] = ACTIONS(2017), + [anon_sym_out_GT] = ACTIONS(2017), + [anon_sym_e_GT] = ACTIONS(2017), + [anon_sym_o_GT] = ACTIONS(2017), + [anon_sym_err_PLUSout_GT] = ACTIONS(2017), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2017), + [anon_sym_o_PLUSe_GT] = ACTIONS(2017), + [anon_sym_e_PLUSo_GT] = ACTIONS(2017), + [anon_sym_err_GT_GT] = ACTIONS(2019), + [anon_sym_out_GT_GT] = ACTIONS(2019), + [anon_sym_e_GT_GT] = ACTIONS(2019), + [anon_sym_o_GT_GT] = ACTIONS(2019), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2019), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2019), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2019), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2019), + [aux_sym_unquoted_token1] = ACTIONS(2017), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2019), }, [1377] = { - [sym_cell_path] = STATE(1837), - [sym_path] = STATE(1603), + [sym_cell_path] = STATE(1426), + [sym_path] = STATE(1233), [sym_comment] = STATE(1377), - [aux_sym_cell_path_repeat1] = STATE(1493), - [ts_builtin_sym_end] = ACTIONS(1830), - [anon_sym_true] = ACTIONS(1830), - [anon_sym_false] = ACTIONS(1830), - [anon_sym_null] = ACTIONS(1830), - [aux_sym_cmd_identifier_token38] = ACTIONS(1830), - [aux_sym_cmd_identifier_token39] = ACTIONS(1830), - [aux_sym_cmd_identifier_token40] = ACTIONS(1830), - [sym__newline] = ACTIONS(1830), - [anon_sym_SEMI] = ACTIONS(1830), - [anon_sym_PIPE] = ACTIONS(1830), - [anon_sym_err_GT_PIPE] = ACTIONS(1830), - [anon_sym_out_GT_PIPE] = ACTIONS(1830), - [anon_sym_e_GT_PIPE] = ACTIONS(1830), - [anon_sym_o_GT_PIPE] = ACTIONS(1830), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1830), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1830), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1830), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1830), - [anon_sym_LBRACK] = ACTIONS(1830), - [anon_sym_LPAREN] = ACTIONS(1830), - [anon_sym_DOLLAR] = ACTIONS(1828), - [anon_sym_DASH_DASH] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1828), - [anon_sym_LBRACE] = ACTIONS(1830), - [anon_sym_DOT_DOT] = ACTIONS(1828), - [anon_sym_DOT] = ACTIONS(4680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1830), - [anon_sym_DOT_DOT_LT] = ACTIONS(1830), - [aux_sym__val_number_decimal_token1] = ACTIONS(1828), - [aux_sym__val_number_decimal_token2] = ACTIONS(1830), - [aux_sym__val_number_decimal_token3] = ACTIONS(1830), - [aux_sym__val_number_decimal_token4] = ACTIONS(1830), - [aux_sym__val_number_token1] = ACTIONS(1830), - [aux_sym__val_number_token2] = ACTIONS(1830), - [aux_sym__val_number_token3] = ACTIONS(1830), - [anon_sym_0b] = ACTIONS(1828), - [anon_sym_0o] = ACTIONS(1828), - [anon_sym_0x] = ACTIONS(1828), - [sym_val_date] = ACTIONS(1830), - [anon_sym_DQUOTE] = ACTIONS(1830), - [sym__str_single_quotes] = ACTIONS(1830), - [sym__str_back_ticks] = ACTIONS(1830), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1830), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1830), - [anon_sym_err_GT] = ACTIONS(1828), - [anon_sym_out_GT] = ACTIONS(1828), - [anon_sym_e_GT] = ACTIONS(1828), - [anon_sym_o_GT] = ACTIONS(1828), - [anon_sym_err_PLUSout_GT] = ACTIONS(1828), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1828), - [anon_sym_o_PLUSe_GT] = ACTIONS(1828), - [anon_sym_e_PLUSo_GT] = ACTIONS(1828), - [anon_sym_err_GT_GT] = ACTIONS(1830), - [anon_sym_out_GT_GT] = ACTIONS(1830), - [anon_sym_e_GT_GT] = ACTIONS(1830), - [anon_sym_o_GT_GT] = ACTIONS(1830), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1830), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1830), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1830), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1830), - [aux_sym_unquoted_token1] = ACTIONS(1828), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(1096), + [sym__newline] = ACTIONS(1670), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_PIPE] = ACTIONS(1672), + [anon_sym_err_GT_PIPE] = ACTIONS(1672), + [anon_sym_out_GT_PIPE] = ACTIONS(1672), + [anon_sym_e_GT_PIPE] = ACTIONS(1672), + [anon_sym_o_GT_PIPE] = ACTIONS(1672), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1672), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1672), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1672), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(1672), + [aux_sym_expr_binary_token1] = ACTIONS(1672), + [aux_sym_expr_binary_token2] = ACTIONS(1672), + [aux_sym_expr_binary_token3] = ACTIONS(1672), + [aux_sym_expr_binary_token4] = ACTIONS(1672), + [aux_sym_expr_binary_token5] = ACTIONS(1672), + [aux_sym_expr_binary_token6] = ACTIONS(1672), + [aux_sym_expr_binary_token7] = ACTIONS(1672), + [aux_sym_expr_binary_token8] = ACTIONS(1672), + [aux_sym_expr_binary_token9] = ACTIONS(1672), + [aux_sym_expr_binary_token10] = ACTIONS(1672), + [aux_sym_expr_binary_token11] = ACTIONS(1672), + [aux_sym_expr_binary_token12] = ACTIONS(1672), + [aux_sym_expr_binary_token13] = ACTIONS(1672), + [aux_sym_expr_binary_token14] = ACTIONS(1672), + [aux_sym_expr_binary_token15] = ACTIONS(1672), + [aux_sym_expr_binary_token16] = ACTIONS(1672), + [aux_sym_expr_binary_token17] = ACTIONS(1672), + [aux_sym_expr_binary_token18] = ACTIONS(1672), + [aux_sym_expr_binary_token19] = ACTIONS(1672), + [aux_sym_expr_binary_token20] = ACTIONS(1672), + [aux_sym_expr_binary_token21] = ACTIONS(1672), + [aux_sym_expr_binary_token22] = ACTIONS(1672), + [aux_sym_expr_binary_token23] = ACTIONS(1672), + [aux_sym_expr_binary_token24] = ACTIONS(1672), + [aux_sym_expr_binary_token25] = ACTIONS(1672), + [aux_sym_expr_binary_token26] = ACTIONS(1672), + [aux_sym_expr_binary_token27] = ACTIONS(1672), + [aux_sym_expr_binary_token28] = ACTIONS(1672), + [anon_sym_DOT_DOT2] = ACTIONS(1670), + [anon_sym_DOT] = ACTIONS(4006), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1672), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1672), + [aux_sym_record_entry_token1] = ACTIONS(1672), + [anon_sym_err_GT] = ACTIONS(1670), + [anon_sym_out_GT] = ACTIONS(1670), + [anon_sym_e_GT] = ACTIONS(1670), + [anon_sym_o_GT] = ACTIONS(1670), + [anon_sym_err_PLUSout_GT] = ACTIONS(1670), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1670), + [anon_sym_o_PLUSe_GT] = ACTIONS(1670), + [anon_sym_e_PLUSo_GT] = ACTIONS(1670), + [anon_sym_err_GT_GT] = ACTIONS(1672), + [anon_sym_out_GT_GT] = ACTIONS(1672), + [anon_sym_e_GT_GT] = ACTIONS(1672), + [anon_sym_o_GT_GT] = ACTIONS(1672), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1672), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1672), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1672), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1672), + [anon_sym_POUND] = ACTIONS(249), }, [1378] = { + [sym_cell_path] = STATE(1782), + [sym_path] = STATE(1589), [sym_comment] = STATE(1378), - [sym__newline] = ACTIONS(1518), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_err_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_GT_PIPE] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1520), - [anon_sym_RPAREN] = ACTIONS(1520), - [anon_sym_LPAREN2] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1520), - [anon_sym_DOT_DOT2] = ACTIONS(1518), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), - [aux_sym__immediate_decimal_token2] = ACTIONS(4590), - [sym_filesize_unit] = ACTIONS(1520), - [sym_duration_unit] = ACTIONS(1520), - [anon_sym_err_GT] = ACTIONS(1518), - [anon_sym_out_GT] = ACTIONS(1518), - [anon_sym_e_GT] = ACTIONS(1518), - [anon_sym_o_GT] = ACTIONS(1518), - [anon_sym_err_PLUSout_GT] = ACTIONS(1518), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), - [anon_sym_o_PLUSe_GT] = ACTIONS(1518), - [anon_sym_e_PLUSo_GT] = ACTIONS(1518), - [anon_sym_err_GT_GT] = ACTIONS(1520), - [anon_sym_out_GT_GT] = ACTIONS(1520), - [anon_sym_e_GT_GT] = ACTIONS(1520), - [anon_sym_o_GT_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1520), - [aux_sym_unquoted_token2] = ACTIONS(1518), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(1434), + [ts_builtin_sym_end] = ACTIONS(2089), + [anon_sym_true] = ACTIONS(2089), + [anon_sym_false] = ACTIONS(2089), + [anon_sym_null] = ACTIONS(2089), + [aux_sym_cmd_identifier_token38] = ACTIONS(2089), + [aux_sym_cmd_identifier_token39] = ACTIONS(2089), + [aux_sym_cmd_identifier_token40] = ACTIONS(2089), + [sym__newline] = ACTIONS(2089), + [anon_sym_SEMI] = ACTIONS(2089), + [anon_sym_PIPE] = ACTIONS(2089), + [anon_sym_err_GT_PIPE] = ACTIONS(2089), + [anon_sym_out_GT_PIPE] = ACTIONS(2089), + [anon_sym_e_GT_PIPE] = ACTIONS(2089), + [anon_sym_o_GT_PIPE] = ACTIONS(2089), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2089), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2089), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2089), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2089), + [anon_sym_LBRACK] = ACTIONS(2089), + [anon_sym_LPAREN] = ACTIONS(2089), + [anon_sym_DOLLAR] = ACTIONS(2087), + [anon_sym_DASH_DASH] = ACTIONS(2089), + [anon_sym_DASH] = ACTIONS(2087), + [anon_sym_LBRACE] = ACTIONS(2089), + [anon_sym_DOT_DOT] = ACTIONS(2087), + [anon_sym_DOT] = ACTIONS(4709), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2089), + [anon_sym_DOT_DOT_LT] = ACTIONS(2089), + [aux_sym__val_number_decimal_token1] = ACTIONS(2087), + [aux_sym__val_number_decimal_token2] = ACTIONS(2089), + [aux_sym__val_number_decimal_token3] = ACTIONS(2089), + [aux_sym__val_number_decimal_token4] = ACTIONS(2089), + [aux_sym__val_number_token1] = ACTIONS(2089), + [aux_sym__val_number_token2] = ACTIONS(2089), + [aux_sym__val_number_token3] = ACTIONS(2089), + [anon_sym_0b] = ACTIONS(2087), + [anon_sym_0o] = ACTIONS(2087), + [anon_sym_0x] = ACTIONS(2087), + [sym_val_date] = ACTIONS(2089), + [anon_sym_DQUOTE] = ACTIONS(2089), + [sym__str_single_quotes] = ACTIONS(2089), + [sym__str_back_ticks] = ACTIONS(2089), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2089), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2089), + [anon_sym_err_GT] = ACTIONS(2087), + [anon_sym_out_GT] = ACTIONS(2087), + [anon_sym_e_GT] = ACTIONS(2087), + [anon_sym_o_GT] = ACTIONS(2087), + [anon_sym_err_PLUSout_GT] = ACTIONS(2087), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2087), + [anon_sym_o_PLUSe_GT] = ACTIONS(2087), + [anon_sym_e_PLUSo_GT] = ACTIONS(2087), + [anon_sym_err_GT_GT] = ACTIONS(2089), + [anon_sym_out_GT_GT] = ACTIONS(2089), + [anon_sym_e_GT_GT] = ACTIONS(2089), + [anon_sym_o_GT_GT] = ACTIONS(2089), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2089), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2089), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2089), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2089), + [aux_sym_unquoted_token1] = ACTIONS(2087), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2089), }, [1379] = { [sym_comment] = STATE(1379), - [ts_builtin_sym_end] = ACTIONS(1052), - [anon_sym_true] = ACTIONS(1052), - [anon_sym_false] = ACTIONS(1052), - [anon_sym_null] = ACTIONS(1052), - [aux_sym_cmd_identifier_token38] = ACTIONS(1052), - [aux_sym_cmd_identifier_token39] = ACTIONS(1052), - [aux_sym_cmd_identifier_token40] = ACTIONS(1052), - [sym__newline] = ACTIONS(1052), - [anon_sym_SEMI] = ACTIONS(1052), - [anon_sym_PIPE] = ACTIONS(1052), - [anon_sym_err_GT_PIPE] = ACTIONS(1052), - [anon_sym_out_GT_PIPE] = ACTIONS(1052), - [anon_sym_e_GT_PIPE] = ACTIONS(1052), - [anon_sym_o_GT_PIPE] = ACTIONS(1052), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1052), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1052), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1052), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1052), - [anon_sym_LBRACK] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1052), - [anon_sym_DOLLAR] = ACTIONS(1050), - [anon_sym_DASH_DASH] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1050), - [anon_sym_LBRACE] = ACTIONS(1052), - [anon_sym_DOT_DOT] = ACTIONS(1050), - [anon_sym_DOT_DOT2] = ACTIONS(1050), - [anon_sym_DOT] = ACTIONS(1050), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1050), - [anon_sym_DOT_DOT_LT] = ACTIONS(1050), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1052), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1052), - [aux_sym__val_number_decimal_token1] = ACTIONS(1050), - [aux_sym__val_number_decimal_token2] = ACTIONS(1052), - [aux_sym__val_number_decimal_token3] = ACTIONS(1052), - [aux_sym__val_number_decimal_token4] = ACTIONS(1052), - [aux_sym__val_number_token1] = ACTIONS(1052), - [aux_sym__val_number_token2] = ACTIONS(1052), - [aux_sym__val_number_token3] = ACTIONS(1052), - [anon_sym_0b] = ACTIONS(1050), - [anon_sym_0o] = ACTIONS(1050), - [anon_sym_0x] = ACTIONS(1050), - [sym_val_date] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(1052), - [sym__str_single_quotes] = ACTIONS(1052), - [sym__str_back_ticks] = ACTIONS(1052), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1052), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1052), - [anon_sym_err_GT] = ACTIONS(1050), - [anon_sym_out_GT] = ACTIONS(1050), - [anon_sym_e_GT] = ACTIONS(1050), - [anon_sym_o_GT] = ACTIONS(1050), - [anon_sym_err_PLUSout_GT] = ACTIONS(1050), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1050), - [anon_sym_o_PLUSe_GT] = ACTIONS(1050), - [anon_sym_e_PLUSo_GT] = ACTIONS(1050), - [anon_sym_err_GT_GT] = ACTIONS(1052), - [anon_sym_out_GT_GT] = ACTIONS(1052), - [anon_sym_e_GT_GT] = ACTIONS(1052), - [anon_sym_o_GT_GT] = ACTIONS(1052), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1052), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1052), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1052), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1052), - [aux_sym_unquoted_token1] = ACTIONS(1050), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(2107), + [anon_sym_false] = ACTIONS(2107), + [anon_sym_null] = ACTIONS(2107), + [aux_sym_cmd_identifier_token38] = ACTIONS(2107), + [aux_sym_cmd_identifier_token39] = ACTIONS(2107), + [aux_sym_cmd_identifier_token40] = ACTIONS(2107), + [sym__newline] = ACTIONS(2107), + [anon_sym_SEMI] = ACTIONS(2107), + [anon_sym_PIPE] = ACTIONS(2107), + [anon_sym_err_GT_PIPE] = ACTIONS(2107), + [anon_sym_out_GT_PIPE] = ACTIONS(2107), + [anon_sym_e_GT_PIPE] = ACTIONS(2107), + [anon_sym_o_GT_PIPE] = ACTIONS(2107), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2107), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2107), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2107), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2107), + [anon_sym_LBRACK] = ACTIONS(2107), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_RPAREN] = ACTIONS(2107), + [anon_sym_DOLLAR] = ACTIONS(2105), + [anon_sym_DASH_DASH] = ACTIONS(2107), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_LBRACE] = ACTIONS(2107), + [anon_sym_RBRACE] = ACTIONS(2107), + [anon_sym_DOT_DOT] = ACTIONS(2105), + [anon_sym_DOT_DOT2] = ACTIONS(2105), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2105), + [anon_sym_DOT_DOT_LT] = ACTIONS(2105), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2107), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2107), + [aux_sym__val_number_decimal_token1] = ACTIONS(2105), + [aux_sym__val_number_decimal_token2] = ACTIONS(2107), + [aux_sym__val_number_decimal_token3] = ACTIONS(2107), + [aux_sym__val_number_decimal_token4] = ACTIONS(2107), + [aux_sym__val_number_token1] = ACTIONS(2107), + [aux_sym__val_number_token2] = ACTIONS(2107), + [aux_sym__val_number_token3] = ACTIONS(2107), + [anon_sym_0b] = ACTIONS(2105), + [anon_sym_0o] = ACTIONS(2105), + [anon_sym_0x] = ACTIONS(2105), + [sym_val_date] = ACTIONS(2107), + [anon_sym_DQUOTE] = ACTIONS(2107), + [sym__str_single_quotes] = ACTIONS(2107), + [sym__str_back_ticks] = ACTIONS(2107), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2107), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2107), + [anon_sym_err_GT] = ACTIONS(2105), + [anon_sym_out_GT] = ACTIONS(2105), + [anon_sym_e_GT] = ACTIONS(2105), + [anon_sym_o_GT] = ACTIONS(2105), + [anon_sym_err_PLUSout_GT] = ACTIONS(2105), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2105), + [anon_sym_o_PLUSe_GT] = ACTIONS(2105), + [anon_sym_e_PLUSo_GT] = ACTIONS(2105), + [anon_sym_err_GT_GT] = ACTIONS(2107), + [anon_sym_out_GT_GT] = ACTIONS(2107), + [anon_sym_e_GT_GT] = ACTIONS(2107), + [anon_sym_o_GT_GT] = ACTIONS(2107), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2107), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2107), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2107), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2107), + [aux_sym_unquoted_token1] = ACTIONS(2105), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2107), }, [1380] = { [sym_comment] = STATE(1380), - [ts_builtin_sym_end] = ACTIONS(1056), - [anon_sym_true] = ACTIONS(1056), - [anon_sym_false] = ACTIONS(1056), - [anon_sym_null] = ACTIONS(1056), - [aux_sym_cmd_identifier_token38] = ACTIONS(1056), - [aux_sym_cmd_identifier_token39] = ACTIONS(1056), - [aux_sym_cmd_identifier_token40] = ACTIONS(1056), - [sym__newline] = ACTIONS(1056), - [anon_sym_SEMI] = ACTIONS(1056), - [anon_sym_PIPE] = ACTIONS(1056), - [anon_sym_err_GT_PIPE] = ACTIONS(1056), - [anon_sym_out_GT_PIPE] = ACTIONS(1056), - [anon_sym_e_GT_PIPE] = ACTIONS(1056), - [anon_sym_o_GT_PIPE] = ACTIONS(1056), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1056), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1056), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1056), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1056), - [anon_sym_LPAREN] = ACTIONS(1056), - [anon_sym_DOLLAR] = ACTIONS(1054), - [anon_sym_DASH_DASH] = ACTIONS(1056), - [anon_sym_DASH] = ACTIONS(1054), - [anon_sym_LBRACE] = ACTIONS(1056), - [anon_sym_DOT_DOT] = ACTIONS(1054), - [anon_sym_DOT_DOT2] = ACTIONS(1054), - [anon_sym_DOT] = ACTIONS(1054), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1054), - [anon_sym_DOT_DOT_LT] = ACTIONS(1054), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1056), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1056), - [aux_sym__val_number_decimal_token1] = ACTIONS(1054), - [aux_sym__val_number_decimal_token2] = ACTIONS(1056), - [aux_sym__val_number_decimal_token3] = ACTIONS(1056), - [aux_sym__val_number_decimal_token4] = ACTIONS(1056), - [aux_sym__val_number_token1] = ACTIONS(1056), - [aux_sym__val_number_token2] = ACTIONS(1056), - [aux_sym__val_number_token3] = ACTIONS(1056), - [anon_sym_0b] = ACTIONS(1054), - [anon_sym_0o] = ACTIONS(1054), - [anon_sym_0x] = ACTIONS(1054), - [sym_val_date] = ACTIONS(1056), - [anon_sym_DQUOTE] = ACTIONS(1056), - [sym__str_single_quotes] = ACTIONS(1056), - [sym__str_back_ticks] = ACTIONS(1056), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1056), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1056), - [anon_sym_err_GT] = ACTIONS(1054), - [anon_sym_out_GT] = ACTIONS(1054), - [anon_sym_e_GT] = ACTIONS(1054), - [anon_sym_o_GT] = ACTIONS(1054), - [anon_sym_err_PLUSout_GT] = ACTIONS(1054), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1054), - [anon_sym_o_PLUSe_GT] = ACTIONS(1054), - [anon_sym_e_PLUSo_GT] = ACTIONS(1054), - [anon_sym_err_GT_GT] = ACTIONS(1056), - [anon_sym_out_GT_GT] = ACTIONS(1056), - [anon_sym_e_GT_GT] = ACTIONS(1056), - [anon_sym_o_GT_GT] = ACTIONS(1056), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1056), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1056), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1056), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1056), - [aux_sym_unquoted_token1] = ACTIONS(1054), - [anon_sym_POUND] = ACTIONS(247), + [ts_builtin_sym_end] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1717), + [anon_sym_false] = ACTIONS(1717), + [anon_sym_null] = ACTIONS(1717), + [aux_sym_cmd_identifier_token38] = ACTIONS(1717), + [aux_sym_cmd_identifier_token39] = ACTIONS(1717), + [aux_sym_cmd_identifier_token40] = ACTIONS(1717), + [sym__newline] = ACTIONS(1717), + [anon_sym_SEMI] = ACTIONS(1717), + [anon_sym_PIPE] = ACTIONS(1717), + [anon_sym_err_GT_PIPE] = ACTIONS(1717), + [anon_sym_out_GT_PIPE] = ACTIONS(1717), + [anon_sym_e_GT_PIPE] = ACTIONS(1717), + [anon_sym_o_GT_PIPE] = ACTIONS(1717), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1717), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1717), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1717), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1717), + [anon_sym_LBRACK] = ACTIONS(1717), + [anon_sym_LPAREN] = ACTIONS(1717), + [anon_sym_DOLLAR] = ACTIONS(1715), + [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_LBRACE] = ACTIONS(1717), + [anon_sym_DOT_DOT] = ACTIONS(1715), + [anon_sym_DOT_DOT2] = ACTIONS(1715), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1715), + [anon_sym_DOT_DOT_LT] = ACTIONS(1715), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1717), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1717), + [aux_sym__immediate_decimal_token2] = ACTIONS(4707), + [aux_sym__val_number_decimal_token1] = ACTIONS(1715), + [aux_sym__val_number_decimal_token2] = ACTIONS(1717), + [aux_sym__val_number_decimal_token3] = ACTIONS(1717), + [aux_sym__val_number_decimal_token4] = ACTIONS(1717), + [aux_sym__val_number_token1] = ACTIONS(1717), + [aux_sym__val_number_token2] = ACTIONS(1717), + [aux_sym__val_number_token3] = ACTIONS(1717), + [anon_sym_0b] = ACTIONS(1715), + [anon_sym_0o] = ACTIONS(1715), + [anon_sym_0x] = ACTIONS(1715), + [sym_val_date] = ACTIONS(1717), + [anon_sym_DQUOTE] = ACTIONS(1717), + [sym__str_single_quotes] = ACTIONS(1717), + [sym__str_back_ticks] = ACTIONS(1717), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1717), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1717), + [anon_sym_err_GT] = ACTIONS(1715), + [anon_sym_out_GT] = ACTIONS(1715), + [anon_sym_e_GT] = ACTIONS(1715), + [anon_sym_o_GT] = ACTIONS(1715), + [anon_sym_err_PLUSout_GT] = ACTIONS(1715), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1715), + [anon_sym_o_PLUSe_GT] = ACTIONS(1715), + [anon_sym_e_PLUSo_GT] = ACTIONS(1715), + [anon_sym_err_GT_GT] = ACTIONS(1717), + [anon_sym_out_GT_GT] = ACTIONS(1717), + [anon_sym_e_GT_GT] = ACTIONS(1717), + [anon_sym_o_GT_GT] = ACTIONS(1717), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1717), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1717), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1717), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1717), + [aux_sym_unquoted_token1] = ACTIONS(1715), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1717), }, [1381] = { - [sym_cell_path] = STATE(1548), - [sym_path] = STATE(1212), + [sym_cell_path] = STATE(1786), + [sym_path] = STATE(1589), [sym_comment] = STATE(1381), - [aux_sym_cell_path_repeat1] = STATE(1099), - [sym__newline] = ACTIONS(1641), - [anon_sym_SEMI] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1645), - [anon_sym_err_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_GT_PIPE] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), - [anon_sym_RPAREN] = ACTIONS(1645), - [anon_sym_LBRACE] = ACTIONS(1645), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1645), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1645), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1645), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1645), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1645), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1645), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1645), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1645), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1645), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1645), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1645), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1645), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1645), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1645), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1645), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1645), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1645), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1645), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1645), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1645), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1645), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1645), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1645), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1645), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1645), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1645), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1645), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1645), - [anon_sym_DOT_DOT2] = ACTIONS(1641), - [anon_sym_DOT] = ACTIONS(3917), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1645), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1645), - [anon_sym_err_GT] = ACTIONS(1641), - [anon_sym_out_GT] = ACTIONS(1641), - [anon_sym_e_GT] = ACTIONS(1641), - [anon_sym_o_GT] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT] = ACTIONS(1641), - [anon_sym_err_GT_GT] = ACTIONS(1645), - [anon_sym_out_GT_GT] = ACTIONS(1645), - [anon_sym_e_GT_GT] = ACTIONS(1645), - [anon_sym_o_GT_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(1434), + [ts_builtin_sym_end] = ACTIONS(2097), + [anon_sym_true] = ACTIONS(2097), + [anon_sym_false] = ACTIONS(2097), + [anon_sym_null] = ACTIONS(2097), + [aux_sym_cmd_identifier_token38] = ACTIONS(2097), + [aux_sym_cmd_identifier_token39] = ACTIONS(2097), + [aux_sym_cmd_identifier_token40] = ACTIONS(2097), + [sym__newline] = ACTIONS(2097), + [anon_sym_SEMI] = ACTIONS(2097), + [anon_sym_PIPE] = ACTIONS(2097), + [anon_sym_err_GT_PIPE] = ACTIONS(2097), + [anon_sym_out_GT_PIPE] = ACTIONS(2097), + [anon_sym_e_GT_PIPE] = ACTIONS(2097), + [anon_sym_o_GT_PIPE] = ACTIONS(2097), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2097), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2097), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2097), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2097), + [anon_sym_LBRACK] = ACTIONS(2097), + [anon_sym_LPAREN] = ACTIONS(2097), + [anon_sym_DOLLAR] = ACTIONS(2095), + [anon_sym_DASH_DASH] = ACTIONS(2097), + [anon_sym_DASH] = ACTIONS(2095), + [anon_sym_LBRACE] = ACTIONS(2097), + [anon_sym_DOT_DOT] = ACTIONS(2095), + [anon_sym_DOT] = ACTIONS(4709), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2097), + [anon_sym_DOT_DOT_LT] = ACTIONS(2097), + [aux_sym__val_number_decimal_token1] = ACTIONS(2095), + [aux_sym__val_number_decimal_token2] = ACTIONS(2097), + [aux_sym__val_number_decimal_token3] = ACTIONS(2097), + [aux_sym__val_number_decimal_token4] = ACTIONS(2097), + [aux_sym__val_number_token1] = ACTIONS(2097), + [aux_sym__val_number_token2] = ACTIONS(2097), + [aux_sym__val_number_token3] = ACTIONS(2097), + [anon_sym_0b] = ACTIONS(2095), + [anon_sym_0o] = ACTIONS(2095), + [anon_sym_0x] = ACTIONS(2095), + [sym_val_date] = ACTIONS(2097), + [anon_sym_DQUOTE] = ACTIONS(2097), + [sym__str_single_quotes] = ACTIONS(2097), + [sym__str_back_ticks] = ACTIONS(2097), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2097), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2097), + [anon_sym_err_GT] = ACTIONS(2095), + [anon_sym_out_GT] = ACTIONS(2095), + [anon_sym_e_GT] = ACTIONS(2095), + [anon_sym_o_GT] = ACTIONS(2095), + [anon_sym_err_PLUSout_GT] = ACTIONS(2095), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2095), + [anon_sym_o_PLUSe_GT] = ACTIONS(2095), + [anon_sym_e_PLUSo_GT] = ACTIONS(2095), + [anon_sym_err_GT_GT] = ACTIONS(2097), + [anon_sym_out_GT_GT] = ACTIONS(2097), + [anon_sym_e_GT_GT] = ACTIONS(2097), + [anon_sym_o_GT_GT] = ACTIONS(2097), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2097), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2097), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2097), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2097), + [aux_sym_unquoted_token1] = ACTIONS(2095), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2097), }, [1382] = { [sym_comment] = STATE(1382), - [aux_sym_cmd_identifier_token41] = ACTIONS(1540), - [sym__newline] = ACTIONS(1540), - [anon_sym_SEMI] = ACTIONS(1542), - [anon_sym_PIPE] = ACTIONS(1542), - [anon_sym_err_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_GT_PIPE] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1542), - [anon_sym_RBRACE] = ACTIONS(1542), - [anon_sym_EQ_GT] = ACTIONS(1542), - [aux_sym_expr_binary_token1] = ACTIONS(1542), - [aux_sym_expr_binary_token2] = ACTIONS(1542), - [aux_sym_expr_binary_token3] = ACTIONS(1542), - [aux_sym_expr_binary_token4] = ACTIONS(1542), - [aux_sym_expr_binary_token5] = ACTIONS(1542), - [aux_sym_expr_binary_token6] = ACTIONS(1542), - [aux_sym_expr_binary_token7] = ACTIONS(1542), - [aux_sym_expr_binary_token8] = ACTIONS(1542), - [aux_sym_expr_binary_token9] = ACTIONS(1542), - [aux_sym_expr_binary_token10] = ACTIONS(1542), - [aux_sym_expr_binary_token11] = ACTIONS(1542), - [aux_sym_expr_binary_token12] = ACTIONS(1542), - [aux_sym_expr_binary_token13] = ACTIONS(1542), - [aux_sym_expr_binary_token14] = ACTIONS(1542), - [aux_sym_expr_binary_token15] = ACTIONS(1542), - [aux_sym_expr_binary_token16] = ACTIONS(1542), - [aux_sym_expr_binary_token17] = ACTIONS(1542), - [aux_sym_expr_binary_token18] = ACTIONS(1542), - [aux_sym_expr_binary_token19] = ACTIONS(1542), - [aux_sym_expr_binary_token20] = ACTIONS(1542), - [aux_sym_expr_binary_token21] = ACTIONS(1542), - [aux_sym_expr_binary_token22] = ACTIONS(1542), - [aux_sym_expr_binary_token23] = ACTIONS(1542), - [aux_sym_expr_binary_token24] = ACTIONS(1542), - [aux_sym_expr_binary_token25] = ACTIONS(1542), - [aux_sym_expr_binary_token26] = ACTIONS(1542), - [aux_sym_expr_binary_token27] = ACTIONS(1542), - [aux_sym_expr_binary_token28] = ACTIONS(1542), - [anon_sym_DOT_DOT2] = ACTIONS(1540), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1542), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1542), - [sym_filesize_unit] = ACTIONS(1542), - [sym_duration_unit] = ACTIONS(1542), - [aux_sym_record_entry_token1] = ACTIONS(1542), - [anon_sym_err_GT] = ACTIONS(1540), - [anon_sym_out_GT] = ACTIONS(1540), - [anon_sym_e_GT] = ACTIONS(1540), - [anon_sym_o_GT] = ACTIONS(1540), - [anon_sym_err_PLUSout_GT] = ACTIONS(1540), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1540), - [anon_sym_o_PLUSe_GT] = ACTIONS(1540), - [anon_sym_e_PLUSo_GT] = ACTIONS(1540), - [anon_sym_err_GT_GT] = ACTIONS(1542), - [anon_sym_out_GT_GT] = ACTIONS(1542), - [anon_sym_e_GT_GT] = ACTIONS(1542), - [anon_sym_o_GT_GT] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1542), - [anon_sym_POUND] = ACTIONS(247), + [ts_builtin_sym_end] = ACTIONS(1771), + [anon_sym_true] = ACTIONS(1771), + [anon_sym_false] = ACTIONS(1771), + [anon_sym_null] = ACTIONS(1771), + [aux_sym_cmd_identifier_token38] = ACTIONS(1771), + [aux_sym_cmd_identifier_token39] = ACTIONS(1771), + [aux_sym_cmd_identifier_token40] = ACTIONS(1771), + [sym__newline] = ACTIONS(1771), + [anon_sym_SEMI] = ACTIONS(1771), + [anon_sym_PIPE] = ACTIONS(1771), + [anon_sym_err_GT_PIPE] = ACTIONS(1771), + [anon_sym_out_GT_PIPE] = ACTIONS(1771), + [anon_sym_e_GT_PIPE] = ACTIONS(1771), + [anon_sym_o_GT_PIPE] = ACTIONS(1771), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1771), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1771), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1771), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1771), + [anon_sym_LPAREN] = ACTIONS(1771), + [anon_sym_DOLLAR] = ACTIONS(1769), + [anon_sym_DASH_DASH] = ACTIONS(1771), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_LBRACE] = ACTIONS(1771), + [anon_sym_DOT_DOT] = ACTIONS(1769), + [anon_sym_DOT_DOT2] = ACTIONS(1769), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1769), + [anon_sym_DOT_DOT_LT] = ACTIONS(1769), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1771), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1771), + [aux_sym__immediate_decimal_token2] = ACTIONS(4792), + [aux_sym__val_number_decimal_token1] = ACTIONS(1769), + [aux_sym__val_number_decimal_token2] = ACTIONS(1771), + [aux_sym__val_number_decimal_token3] = ACTIONS(1771), + [aux_sym__val_number_decimal_token4] = ACTIONS(1771), + [aux_sym__val_number_token1] = ACTIONS(1771), + [aux_sym__val_number_token2] = ACTIONS(1771), + [aux_sym__val_number_token3] = ACTIONS(1771), + [anon_sym_0b] = ACTIONS(1769), + [anon_sym_0o] = ACTIONS(1769), + [anon_sym_0x] = ACTIONS(1769), + [sym_val_date] = ACTIONS(1771), + [anon_sym_DQUOTE] = ACTIONS(1771), + [sym__str_single_quotes] = ACTIONS(1771), + [sym__str_back_ticks] = ACTIONS(1771), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1771), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1771), + [anon_sym_err_GT] = ACTIONS(1769), + [anon_sym_out_GT] = ACTIONS(1769), + [anon_sym_e_GT] = ACTIONS(1769), + [anon_sym_o_GT] = ACTIONS(1769), + [anon_sym_err_PLUSout_GT] = ACTIONS(1769), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1769), + [anon_sym_o_PLUSe_GT] = ACTIONS(1769), + [anon_sym_e_PLUSo_GT] = ACTIONS(1769), + [anon_sym_err_GT_GT] = ACTIONS(1771), + [anon_sym_out_GT_GT] = ACTIONS(1771), + [anon_sym_e_GT_GT] = ACTIONS(1771), + [anon_sym_o_GT_GT] = ACTIONS(1771), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1771), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1771), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1771), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1771), + [aux_sym_unquoted_token1] = ACTIONS(1769), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1771), }, [1383] = { - [sym_path] = STATE(1551), [sym_comment] = STATE(1383), - [aux_sym_cell_path_repeat1] = STATE(1408), - [anon_sym_true] = ACTIONS(1013), - [anon_sym_false] = ACTIONS(1013), - [anon_sym_null] = ACTIONS(1013), - [aux_sym_cmd_identifier_token38] = ACTIONS(1013), - [aux_sym_cmd_identifier_token39] = ACTIONS(1013), - [aux_sym_cmd_identifier_token40] = ACTIONS(1013), - [sym__newline] = ACTIONS(1013), - [anon_sym_SEMI] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1013), - [anon_sym_err_GT_PIPE] = ACTIONS(1013), - [anon_sym_out_GT_PIPE] = ACTIONS(1013), - [anon_sym_e_GT_PIPE] = ACTIONS(1013), - [anon_sym_o_GT_PIPE] = ACTIONS(1013), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1013), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1013), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1013), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1013), - [anon_sym_LBRACK] = ACTIONS(1013), - [anon_sym_LPAREN] = ACTIONS(1013), - [anon_sym_RPAREN] = ACTIONS(1013), - [anon_sym_DOLLAR] = ACTIONS(1011), - [anon_sym_DASH_DASH] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1011), - [anon_sym_LBRACE] = ACTIONS(1013), - [anon_sym_RBRACE] = ACTIONS(1013), - [anon_sym_DOT_DOT] = ACTIONS(1011), - [anon_sym_DOT] = ACTIONS(4596), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1013), - [anon_sym_DOT_DOT_LT] = ACTIONS(1013), - [aux_sym__val_number_decimal_token1] = ACTIONS(1011), - [aux_sym__val_number_decimal_token2] = ACTIONS(1013), - [aux_sym__val_number_decimal_token3] = ACTIONS(1013), - [aux_sym__val_number_decimal_token4] = ACTIONS(1013), - [aux_sym__val_number_token1] = ACTIONS(1013), - [aux_sym__val_number_token2] = ACTIONS(1013), - [aux_sym__val_number_token3] = ACTIONS(1013), - [anon_sym_0b] = ACTIONS(1011), - [anon_sym_0o] = ACTIONS(1011), - [anon_sym_0x] = ACTIONS(1011), - [sym_val_date] = ACTIONS(1013), - [anon_sym_DQUOTE] = ACTIONS(1013), - [sym__str_single_quotes] = ACTIONS(1013), - [sym__str_back_ticks] = ACTIONS(1013), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1013), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1013), - [anon_sym_err_GT] = ACTIONS(1011), - [anon_sym_out_GT] = ACTIONS(1011), - [anon_sym_e_GT] = ACTIONS(1011), - [anon_sym_o_GT] = ACTIONS(1011), - [anon_sym_err_PLUSout_GT] = ACTIONS(1011), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1011), - [anon_sym_o_PLUSe_GT] = ACTIONS(1011), - [anon_sym_e_PLUSo_GT] = ACTIONS(1011), - [anon_sym_err_GT_GT] = ACTIONS(1013), - [anon_sym_out_GT_GT] = ACTIONS(1013), - [anon_sym_e_GT_GT] = ACTIONS(1013), - [anon_sym_o_GT_GT] = ACTIONS(1013), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1013), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1013), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1013), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1013), - [aux_sym_unquoted_token1] = ACTIONS(1011), - [anon_sym_POUND] = ACTIONS(247), + [sym__newline] = ACTIONS(1536), + [anon_sym_SEMI] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_err_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_GT_PIPE] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), + [anon_sym_RPAREN] = ACTIONS(1538), + [anon_sym_LPAREN2] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1538), + [anon_sym_DOT_DOT2] = ACTIONS(1536), + [anon_sym_DOT] = ACTIONS(4794), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), + [aux_sym__immediate_decimal_token2] = ACTIONS(4796), + [sym_filesize_unit] = ACTIONS(1538), + [sym_duration_unit] = ACTIONS(1538), + [anon_sym_err_GT] = ACTIONS(1536), + [anon_sym_out_GT] = ACTIONS(1536), + [anon_sym_e_GT] = ACTIONS(1536), + [anon_sym_o_GT] = ACTIONS(1536), + [anon_sym_err_PLUSout_GT] = ACTIONS(1536), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), + [anon_sym_o_PLUSe_GT] = ACTIONS(1536), + [anon_sym_e_PLUSo_GT] = ACTIONS(1536), + [anon_sym_err_GT_GT] = ACTIONS(1538), + [anon_sym_out_GT_GT] = ACTIONS(1538), + [anon_sym_e_GT_GT] = ACTIONS(1538), + [anon_sym_o_GT_GT] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), + [aux_sym_unquoted_token2] = ACTIONS(1536), + [anon_sym_POUND] = ACTIONS(249), }, [1384] = { [sym_comment] = STATE(1384), - [ts_builtin_sym_end] = ACTIONS(1520), - [sym__newline] = ACTIONS(1520), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_err_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_GT_PIPE] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1520), - [anon_sym_LPAREN2] = ACTIONS(1520), - [aux_sym_expr_binary_token1] = ACTIONS(1520), - [aux_sym_expr_binary_token2] = ACTIONS(1520), - [aux_sym_expr_binary_token3] = ACTIONS(1520), - [aux_sym_expr_binary_token4] = ACTIONS(1520), - [aux_sym_expr_binary_token5] = ACTIONS(1520), - [aux_sym_expr_binary_token6] = ACTIONS(1520), - [aux_sym_expr_binary_token7] = ACTIONS(1520), - [aux_sym_expr_binary_token8] = ACTIONS(1520), - [aux_sym_expr_binary_token9] = ACTIONS(1520), - [aux_sym_expr_binary_token10] = ACTIONS(1520), - [aux_sym_expr_binary_token11] = ACTIONS(1520), - [aux_sym_expr_binary_token12] = ACTIONS(1520), - [aux_sym_expr_binary_token13] = ACTIONS(1520), - [aux_sym_expr_binary_token14] = ACTIONS(1520), - [aux_sym_expr_binary_token15] = ACTIONS(1520), - [aux_sym_expr_binary_token16] = ACTIONS(1520), - [aux_sym_expr_binary_token17] = ACTIONS(1520), - [aux_sym_expr_binary_token18] = ACTIONS(1520), - [aux_sym_expr_binary_token19] = ACTIONS(1520), - [aux_sym_expr_binary_token20] = ACTIONS(1520), - [aux_sym_expr_binary_token21] = ACTIONS(1520), - [aux_sym_expr_binary_token22] = ACTIONS(1520), - [aux_sym_expr_binary_token23] = ACTIONS(1520), - [aux_sym_expr_binary_token24] = ACTIONS(1520), - [aux_sym_expr_binary_token25] = ACTIONS(1520), - [aux_sym_expr_binary_token26] = ACTIONS(1520), - [aux_sym_expr_binary_token27] = ACTIONS(1520), - [aux_sym_expr_binary_token28] = ACTIONS(1520), - [anon_sym_DOT_DOT2] = ACTIONS(1518), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), - [aux_sym__immediate_decimal_token2] = ACTIONS(4652), - [sym_filesize_unit] = ACTIONS(1520), - [sym_duration_unit] = ACTIONS(1520), - [anon_sym_err_GT] = ACTIONS(1518), - [anon_sym_out_GT] = ACTIONS(1518), - [anon_sym_e_GT] = ACTIONS(1518), - [anon_sym_o_GT] = ACTIONS(1518), - [anon_sym_err_PLUSout_GT] = ACTIONS(1518), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), - [anon_sym_o_PLUSe_GT] = ACTIONS(1518), - [anon_sym_e_PLUSo_GT] = ACTIONS(1518), - [anon_sym_err_GT_GT] = ACTIONS(1520), - [anon_sym_out_GT_GT] = ACTIONS(1520), - [anon_sym_e_GT_GT] = ACTIONS(1520), - [anon_sym_o_GT_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1520), - [aux_sym_unquoted_token2] = ACTIONS(1518), - [anon_sym_POUND] = ACTIONS(247), + [sym__newline] = ACTIONS(1528), + [anon_sym_SEMI] = ACTIONS(1530), + [anon_sym_PIPE] = ACTIONS(1530), + [anon_sym_err_GT_PIPE] = ACTIONS(1530), + [anon_sym_out_GT_PIPE] = ACTIONS(1530), + [anon_sym_e_GT_PIPE] = ACTIONS(1530), + [anon_sym_o_GT_PIPE] = ACTIONS(1530), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1530), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1530), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1530), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1530), + [anon_sym_RPAREN] = ACTIONS(1530), + [anon_sym_LPAREN2] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1530), + [anon_sym_DOT_DOT2] = ACTIONS(1528), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1530), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1530), + [aux_sym__immediate_decimal_token1] = ACTIONS(4798), + [aux_sym__immediate_decimal_token2] = ACTIONS(4800), + [sym_filesize_unit] = ACTIONS(1530), + [sym_duration_unit] = ACTIONS(1530), + [anon_sym_err_GT] = ACTIONS(1528), + [anon_sym_out_GT] = ACTIONS(1528), + [anon_sym_e_GT] = ACTIONS(1528), + [anon_sym_o_GT] = ACTIONS(1528), + [anon_sym_err_PLUSout_GT] = ACTIONS(1528), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), + [anon_sym_o_PLUSe_GT] = ACTIONS(1528), + [anon_sym_e_PLUSo_GT] = ACTIONS(1528), + [anon_sym_err_GT_GT] = ACTIONS(1530), + [anon_sym_out_GT_GT] = ACTIONS(1530), + [anon_sym_e_GT_GT] = ACTIONS(1530), + [anon_sym_o_GT_GT] = ACTIONS(1530), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1530), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1530), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1530), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1530), + [aux_sym_unquoted_token2] = ACTIONS(1528), + [anon_sym_POUND] = ACTIONS(249), }, [1385] = { - [sym_cell_path] = STATE(1558), - [sym_path] = STATE(1212), [sym_comment] = STATE(1385), - [aux_sym_cell_path_repeat1] = STATE(1099), - [sym__newline] = ACTIONS(1675), - [anon_sym_SEMI] = ACTIONS(1677), - [anon_sym_PIPE] = ACTIONS(1677), - [anon_sym_err_GT_PIPE] = ACTIONS(1677), - [anon_sym_out_GT_PIPE] = ACTIONS(1677), - [anon_sym_e_GT_PIPE] = ACTIONS(1677), - [anon_sym_o_GT_PIPE] = ACTIONS(1677), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1677), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1677), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1677), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1677), - [anon_sym_RPAREN] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1677), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1677), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1677), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1677), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1677), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1677), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1677), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1677), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1677), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1677), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1677), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1677), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1677), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1677), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1677), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1677), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1677), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1677), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1677), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1677), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1677), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1677), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1677), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1677), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1677), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1677), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1677), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1677), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1677), - [anon_sym_DOT_DOT2] = ACTIONS(1675), - [anon_sym_DOT] = ACTIONS(3917), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1677), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1677), - [anon_sym_err_GT] = ACTIONS(1675), - [anon_sym_out_GT] = ACTIONS(1675), - [anon_sym_e_GT] = ACTIONS(1675), - [anon_sym_o_GT] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT] = ACTIONS(1675), - [anon_sym_err_GT_GT] = ACTIONS(1677), - [anon_sym_out_GT_GT] = ACTIONS(1677), - [anon_sym_e_GT_GT] = ACTIONS(1677), - [anon_sym_o_GT_GT] = ACTIONS(1677), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1677), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1677), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1677), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1677), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cmd_identifier_token41] = ACTIONS(1536), + [sym__newline] = ACTIONS(1536), + [anon_sym_SEMI] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_err_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_GT_PIPE] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), + [anon_sym_RBRACE] = ACTIONS(1538), + [anon_sym_EQ_GT] = ACTIONS(1538), + [aux_sym_expr_binary_token1] = ACTIONS(1538), + [aux_sym_expr_binary_token2] = ACTIONS(1538), + [aux_sym_expr_binary_token3] = ACTIONS(1538), + [aux_sym_expr_binary_token4] = ACTIONS(1538), + [aux_sym_expr_binary_token5] = ACTIONS(1538), + [aux_sym_expr_binary_token6] = ACTIONS(1538), + [aux_sym_expr_binary_token7] = ACTIONS(1538), + [aux_sym_expr_binary_token8] = ACTIONS(1538), + [aux_sym_expr_binary_token9] = ACTIONS(1538), + [aux_sym_expr_binary_token10] = ACTIONS(1538), + [aux_sym_expr_binary_token11] = ACTIONS(1538), + [aux_sym_expr_binary_token12] = ACTIONS(1538), + [aux_sym_expr_binary_token13] = ACTIONS(1538), + [aux_sym_expr_binary_token14] = ACTIONS(1538), + [aux_sym_expr_binary_token15] = ACTIONS(1538), + [aux_sym_expr_binary_token16] = ACTIONS(1538), + [aux_sym_expr_binary_token17] = ACTIONS(1538), + [aux_sym_expr_binary_token18] = ACTIONS(1538), + [aux_sym_expr_binary_token19] = ACTIONS(1538), + [aux_sym_expr_binary_token20] = ACTIONS(1538), + [aux_sym_expr_binary_token21] = ACTIONS(1538), + [aux_sym_expr_binary_token22] = ACTIONS(1538), + [aux_sym_expr_binary_token23] = ACTIONS(1538), + [aux_sym_expr_binary_token24] = ACTIONS(1538), + [aux_sym_expr_binary_token25] = ACTIONS(1538), + [aux_sym_expr_binary_token26] = ACTIONS(1538), + [aux_sym_expr_binary_token27] = ACTIONS(1538), + [aux_sym_expr_binary_token28] = ACTIONS(1538), + [anon_sym_DOT_DOT2] = ACTIONS(1536), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), + [aux_sym__immediate_decimal_token2] = ACTIONS(4699), + [sym_filesize_unit] = ACTIONS(1538), + [sym_duration_unit] = ACTIONS(1538), + [aux_sym_record_entry_token1] = ACTIONS(1538), + [anon_sym_err_GT] = ACTIONS(1536), + [anon_sym_out_GT] = ACTIONS(1536), + [anon_sym_e_GT] = ACTIONS(1536), + [anon_sym_o_GT] = ACTIONS(1536), + [anon_sym_err_PLUSout_GT] = ACTIONS(1536), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), + [anon_sym_o_PLUSe_GT] = ACTIONS(1536), + [anon_sym_e_PLUSo_GT] = ACTIONS(1536), + [anon_sym_err_GT_GT] = ACTIONS(1538), + [anon_sym_out_GT_GT] = ACTIONS(1538), + [anon_sym_e_GT_GT] = ACTIONS(1538), + [anon_sym_o_GT_GT] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), + [anon_sym_POUND] = ACTIONS(249), }, [1386] = { - [sym__expr_parenthesized_immediate] = STATE(7229), [sym_comment] = STATE(1386), - [ts_builtin_sym_end] = ACTIONS(1572), - [sym__newline] = ACTIONS(1572), - [anon_sym_SEMI] = ACTIONS(1572), - [anon_sym_PIPE] = ACTIONS(1572), - [anon_sym_err_GT_PIPE] = ACTIONS(1572), - [anon_sym_out_GT_PIPE] = ACTIONS(1572), - [anon_sym_e_GT_PIPE] = ACTIONS(1572), - [anon_sym_o_GT_PIPE] = ACTIONS(1572), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1572), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1572), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1572), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1572), - [anon_sym_LPAREN2] = ACTIONS(3978), - [aux_sym_expr_binary_token1] = ACTIONS(1572), - [aux_sym_expr_binary_token2] = ACTIONS(1572), - [aux_sym_expr_binary_token3] = ACTIONS(1572), - [aux_sym_expr_binary_token4] = ACTIONS(1572), - [aux_sym_expr_binary_token5] = ACTIONS(1572), - [aux_sym_expr_binary_token6] = ACTIONS(1572), - [aux_sym_expr_binary_token7] = ACTIONS(1572), - [aux_sym_expr_binary_token8] = ACTIONS(1572), - [aux_sym_expr_binary_token9] = ACTIONS(1572), - [aux_sym_expr_binary_token10] = ACTIONS(1572), - [aux_sym_expr_binary_token11] = ACTIONS(1572), - [aux_sym_expr_binary_token12] = ACTIONS(1572), - [aux_sym_expr_binary_token13] = ACTIONS(1572), - [aux_sym_expr_binary_token14] = ACTIONS(1572), - [aux_sym_expr_binary_token15] = ACTIONS(1572), - [aux_sym_expr_binary_token16] = ACTIONS(1572), - [aux_sym_expr_binary_token17] = ACTIONS(1572), - [aux_sym_expr_binary_token18] = ACTIONS(1572), - [aux_sym_expr_binary_token19] = ACTIONS(1572), - [aux_sym_expr_binary_token20] = ACTIONS(1572), - [aux_sym_expr_binary_token21] = ACTIONS(1572), - [aux_sym_expr_binary_token22] = ACTIONS(1572), - [aux_sym_expr_binary_token23] = ACTIONS(1572), - [aux_sym_expr_binary_token24] = ACTIONS(1572), - [aux_sym_expr_binary_token25] = ACTIONS(1572), - [aux_sym_expr_binary_token26] = ACTIONS(1572), - [aux_sym_expr_binary_token27] = ACTIONS(1572), - [aux_sym_expr_binary_token28] = ACTIONS(1572), - [anon_sym_DOT_DOT2] = ACTIONS(4606), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4608), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4608), - [sym_filesize_unit] = ACTIONS(4722), - [sym_duration_unit] = ACTIONS(4724), - [anon_sym_err_GT] = ACTIONS(1560), - [anon_sym_out_GT] = ACTIONS(1560), - [anon_sym_e_GT] = ACTIONS(1560), - [anon_sym_o_GT] = ACTIONS(1560), - [anon_sym_err_PLUSout_GT] = ACTIONS(1560), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1560), - [anon_sym_o_PLUSe_GT] = ACTIONS(1560), - [anon_sym_e_PLUSo_GT] = ACTIONS(1560), - [anon_sym_err_GT_GT] = ACTIONS(1572), - [anon_sym_out_GT_GT] = ACTIONS(1572), - [anon_sym_e_GT_GT] = ACTIONS(1572), - [anon_sym_o_GT_GT] = ACTIONS(1572), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1572), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1572), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1572), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1572), - [aux_sym_unquoted_token2] = ACTIONS(4726), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(1080), + [anon_sym_false] = ACTIONS(1080), + [anon_sym_null] = ACTIONS(1080), + [aux_sym_cmd_identifier_token38] = ACTIONS(1080), + [aux_sym_cmd_identifier_token39] = ACTIONS(1080), + [aux_sym_cmd_identifier_token40] = ACTIONS(1080), + [sym__newline] = ACTIONS(1080), + [anon_sym_SEMI] = ACTIONS(1080), + [anon_sym_PIPE] = ACTIONS(1080), + [anon_sym_err_GT_PIPE] = ACTIONS(1080), + [anon_sym_out_GT_PIPE] = ACTIONS(1080), + [anon_sym_e_GT_PIPE] = ACTIONS(1080), + [anon_sym_o_GT_PIPE] = ACTIONS(1080), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1080), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1080), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1080), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(1080), + [anon_sym_LPAREN] = ACTIONS(1080), + [anon_sym_RPAREN] = ACTIONS(1080), + [anon_sym_DOLLAR] = ACTIONS(1078), + [anon_sym_DASH_DASH] = ACTIONS(1080), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_LBRACE] = ACTIONS(1080), + [anon_sym_RBRACE] = ACTIONS(1080), + [anon_sym_DOT_DOT] = ACTIONS(1078), + [anon_sym_DOT_DOT2] = ACTIONS(1078), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_DOT_DOT_LT] = ACTIONS(1078), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1080), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1080), + [aux_sym__val_number_decimal_token1] = ACTIONS(1078), + [aux_sym__val_number_decimal_token2] = ACTIONS(1080), + [aux_sym__val_number_decimal_token3] = ACTIONS(1080), + [aux_sym__val_number_decimal_token4] = ACTIONS(1080), + [aux_sym__val_number_token1] = ACTIONS(1080), + [aux_sym__val_number_token2] = ACTIONS(1080), + [aux_sym__val_number_token3] = ACTIONS(1080), + [anon_sym_0b] = ACTIONS(1078), + [anon_sym_0o] = ACTIONS(1078), + [anon_sym_0x] = ACTIONS(1078), + [sym_val_date] = ACTIONS(1080), + [anon_sym_DQUOTE] = ACTIONS(1080), + [sym__str_single_quotes] = ACTIONS(1080), + [sym__str_back_ticks] = ACTIONS(1080), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1080), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1080), + [anon_sym_err_GT] = ACTIONS(1078), + [anon_sym_out_GT] = ACTIONS(1078), + [anon_sym_e_GT] = ACTIONS(1078), + [anon_sym_o_GT] = ACTIONS(1078), + [anon_sym_err_PLUSout_GT] = ACTIONS(1078), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1078), + [anon_sym_o_PLUSe_GT] = ACTIONS(1078), + [anon_sym_e_PLUSo_GT] = ACTIONS(1078), + [anon_sym_err_GT_GT] = ACTIONS(1080), + [anon_sym_out_GT_GT] = ACTIONS(1080), + [anon_sym_e_GT_GT] = ACTIONS(1080), + [anon_sym_o_GT_GT] = ACTIONS(1080), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1080), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1080), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1080), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1080), + [aux_sym_unquoted_token1] = ACTIONS(1078), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1080), }, [1387] = { + [sym_cell_path] = STATE(1711), + [sym_path] = STATE(1589), [sym_comment] = STATE(1387), - [anon_sym_true] = ACTIONS(2031), - [anon_sym_false] = ACTIONS(2031), - [anon_sym_null] = ACTIONS(2031), - [aux_sym_cmd_identifier_token38] = ACTIONS(2031), - [aux_sym_cmd_identifier_token39] = ACTIONS(2031), - [aux_sym_cmd_identifier_token40] = ACTIONS(2031), - [sym__newline] = ACTIONS(2031), - [anon_sym_SEMI] = ACTIONS(2031), - [anon_sym_PIPE] = ACTIONS(2031), - [anon_sym_err_GT_PIPE] = ACTIONS(2031), - [anon_sym_out_GT_PIPE] = ACTIONS(2031), - [anon_sym_e_GT_PIPE] = ACTIONS(2031), - [anon_sym_o_GT_PIPE] = ACTIONS(2031), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2031), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2031), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2031), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2031), - [anon_sym_LBRACK] = ACTIONS(2031), - [anon_sym_LPAREN] = ACTIONS(2031), - [anon_sym_RPAREN] = ACTIONS(2031), - [anon_sym_DOLLAR] = ACTIONS(2029), - [anon_sym_DASH_DASH] = ACTIONS(2031), - [anon_sym_DASH] = ACTIONS(2029), - [anon_sym_LBRACE] = ACTIONS(2031), - [anon_sym_RBRACE] = ACTIONS(2031), - [anon_sym_DOT_DOT] = ACTIONS(2029), - [anon_sym_DOT_DOT2] = ACTIONS(2029), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2029), - [anon_sym_DOT_DOT_LT] = ACTIONS(2029), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2031), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2031), - [aux_sym__val_number_decimal_token1] = ACTIONS(2029), - [aux_sym__val_number_decimal_token2] = ACTIONS(2031), - [aux_sym__val_number_decimal_token3] = ACTIONS(2031), - [aux_sym__val_number_decimal_token4] = ACTIONS(2031), - [aux_sym__val_number_token1] = ACTIONS(2031), - [aux_sym__val_number_token2] = ACTIONS(2031), - [aux_sym__val_number_token3] = ACTIONS(2031), - [anon_sym_0b] = ACTIONS(2029), - [anon_sym_0o] = ACTIONS(2029), - [anon_sym_0x] = ACTIONS(2029), - [sym_val_date] = ACTIONS(2031), - [anon_sym_DQUOTE] = ACTIONS(2031), - [sym__str_single_quotes] = ACTIONS(2031), - [sym__str_back_ticks] = ACTIONS(2031), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2031), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2031), - [anon_sym_err_GT] = ACTIONS(2029), - [anon_sym_out_GT] = ACTIONS(2029), - [anon_sym_e_GT] = ACTIONS(2029), - [anon_sym_o_GT] = ACTIONS(2029), - [anon_sym_err_PLUSout_GT] = ACTIONS(2029), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2029), - [anon_sym_o_PLUSe_GT] = ACTIONS(2029), - [anon_sym_e_PLUSo_GT] = ACTIONS(2029), - [anon_sym_err_GT_GT] = ACTIONS(2031), - [anon_sym_out_GT_GT] = ACTIONS(2031), - [anon_sym_e_GT_GT] = ACTIONS(2031), - [anon_sym_o_GT_GT] = ACTIONS(2031), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2031), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2031), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2031), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2031), - [aux_sym_unquoted_token1] = ACTIONS(2029), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(1434), + [ts_builtin_sym_end] = ACTIONS(1895), + [anon_sym_true] = ACTIONS(1895), + [anon_sym_false] = ACTIONS(1895), + [anon_sym_null] = ACTIONS(1895), + [aux_sym_cmd_identifier_token38] = ACTIONS(1895), + [aux_sym_cmd_identifier_token39] = ACTIONS(1895), + [aux_sym_cmd_identifier_token40] = ACTIONS(1895), + [sym__newline] = ACTIONS(1895), + [anon_sym_SEMI] = ACTIONS(1895), + [anon_sym_PIPE] = ACTIONS(1895), + [anon_sym_err_GT_PIPE] = ACTIONS(1895), + [anon_sym_out_GT_PIPE] = ACTIONS(1895), + [anon_sym_e_GT_PIPE] = ACTIONS(1895), + [anon_sym_o_GT_PIPE] = ACTIONS(1895), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1895), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1895), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1895), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1895), + [anon_sym_LBRACK] = ACTIONS(1895), + [anon_sym_LPAREN] = ACTIONS(1895), + [anon_sym_DOLLAR] = ACTIONS(1893), + [anon_sym_DASH_DASH] = ACTIONS(1895), + [anon_sym_DASH] = ACTIONS(1893), + [anon_sym_LBRACE] = ACTIONS(1895), + [anon_sym_DOT_DOT] = ACTIONS(1893), + [anon_sym_DOT] = ACTIONS(4709), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1895), + [anon_sym_DOT_DOT_LT] = ACTIONS(1895), + [aux_sym__val_number_decimal_token1] = ACTIONS(1893), + [aux_sym__val_number_decimal_token2] = ACTIONS(1895), + [aux_sym__val_number_decimal_token3] = ACTIONS(1895), + [aux_sym__val_number_decimal_token4] = ACTIONS(1895), + [aux_sym__val_number_token1] = ACTIONS(1895), + [aux_sym__val_number_token2] = ACTIONS(1895), + [aux_sym__val_number_token3] = ACTIONS(1895), + [anon_sym_0b] = ACTIONS(1893), + [anon_sym_0o] = ACTIONS(1893), + [anon_sym_0x] = ACTIONS(1893), + [sym_val_date] = ACTIONS(1895), + [anon_sym_DQUOTE] = ACTIONS(1895), + [sym__str_single_quotes] = ACTIONS(1895), + [sym__str_back_ticks] = ACTIONS(1895), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1895), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1895), + [anon_sym_err_GT] = ACTIONS(1893), + [anon_sym_out_GT] = ACTIONS(1893), + [anon_sym_e_GT] = ACTIONS(1893), + [anon_sym_o_GT] = ACTIONS(1893), + [anon_sym_err_PLUSout_GT] = ACTIONS(1893), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1893), + [anon_sym_o_PLUSe_GT] = ACTIONS(1893), + [anon_sym_e_PLUSo_GT] = ACTIONS(1893), + [anon_sym_err_GT_GT] = ACTIONS(1895), + [anon_sym_out_GT_GT] = ACTIONS(1895), + [anon_sym_e_GT_GT] = ACTIONS(1895), + [anon_sym_o_GT_GT] = ACTIONS(1895), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1895), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1895), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1895), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1895), + [aux_sym_unquoted_token1] = ACTIONS(1893), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1895), }, [1388] = { + [sym_cell_path] = STATE(1802), + [sym_path] = STATE(1589), [sym_comment] = STATE(1388), - [ts_builtin_sym_end] = ACTIONS(1556), - [sym__newline] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1556), - [anon_sym_PIPE] = ACTIONS(1556), - [anon_sym_err_GT_PIPE] = ACTIONS(1556), - [anon_sym_out_GT_PIPE] = ACTIONS(1556), - [anon_sym_e_GT_PIPE] = ACTIONS(1556), - [anon_sym_o_GT_PIPE] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1556), - [anon_sym_LPAREN2] = ACTIONS(1556), - [aux_sym_expr_binary_token1] = ACTIONS(1556), - [aux_sym_expr_binary_token2] = ACTIONS(1556), - [aux_sym_expr_binary_token3] = ACTIONS(1556), - [aux_sym_expr_binary_token4] = ACTIONS(1556), - [aux_sym_expr_binary_token5] = ACTIONS(1556), - [aux_sym_expr_binary_token6] = ACTIONS(1556), - [aux_sym_expr_binary_token7] = ACTIONS(1556), - [aux_sym_expr_binary_token8] = ACTIONS(1556), - [aux_sym_expr_binary_token9] = ACTIONS(1556), - [aux_sym_expr_binary_token10] = ACTIONS(1556), - [aux_sym_expr_binary_token11] = ACTIONS(1556), - [aux_sym_expr_binary_token12] = ACTIONS(1556), - [aux_sym_expr_binary_token13] = ACTIONS(1556), - [aux_sym_expr_binary_token14] = ACTIONS(1556), - [aux_sym_expr_binary_token15] = ACTIONS(1556), - [aux_sym_expr_binary_token16] = ACTIONS(1556), - [aux_sym_expr_binary_token17] = ACTIONS(1556), - [aux_sym_expr_binary_token18] = ACTIONS(1556), - [aux_sym_expr_binary_token19] = ACTIONS(1556), - [aux_sym_expr_binary_token20] = ACTIONS(1556), - [aux_sym_expr_binary_token21] = ACTIONS(1556), - [aux_sym_expr_binary_token22] = ACTIONS(1556), - [aux_sym_expr_binary_token23] = ACTIONS(1556), - [aux_sym_expr_binary_token24] = ACTIONS(1556), - [aux_sym_expr_binary_token25] = ACTIONS(1556), - [aux_sym_expr_binary_token26] = ACTIONS(1556), - [aux_sym_expr_binary_token27] = ACTIONS(1556), - [aux_sym_expr_binary_token28] = ACTIONS(1556), - [anon_sym_DOT_DOT2] = ACTIONS(1554), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1556), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1556), - [aux_sym__immediate_decimal_token2] = ACTIONS(4728), - [sym_filesize_unit] = ACTIONS(1556), - [sym_duration_unit] = ACTIONS(1556), - [anon_sym_err_GT] = ACTIONS(1554), - [anon_sym_out_GT] = ACTIONS(1554), - [anon_sym_e_GT] = ACTIONS(1554), - [anon_sym_o_GT] = ACTIONS(1554), - [anon_sym_err_PLUSout_GT] = ACTIONS(1554), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1554), - [anon_sym_o_PLUSe_GT] = ACTIONS(1554), - [anon_sym_e_PLUSo_GT] = ACTIONS(1554), - [anon_sym_err_GT_GT] = ACTIONS(1556), - [anon_sym_out_GT_GT] = ACTIONS(1556), - [anon_sym_e_GT_GT] = ACTIONS(1556), - [anon_sym_o_GT_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1556), - [aux_sym_unquoted_token2] = ACTIONS(1554), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(1434), + [ts_builtin_sym_end] = ACTIONS(1903), + [anon_sym_true] = ACTIONS(1903), + [anon_sym_false] = ACTIONS(1903), + [anon_sym_null] = ACTIONS(1903), + [aux_sym_cmd_identifier_token38] = ACTIONS(1903), + [aux_sym_cmd_identifier_token39] = ACTIONS(1903), + [aux_sym_cmd_identifier_token40] = ACTIONS(1903), + [sym__newline] = ACTIONS(1903), + [anon_sym_SEMI] = ACTIONS(1903), + [anon_sym_PIPE] = ACTIONS(1903), + [anon_sym_err_GT_PIPE] = ACTIONS(1903), + [anon_sym_out_GT_PIPE] = ACTIONS(1903), + [anon_sym_e_GT_PIPE] = ACTIONS(1903), + [anon_sym_o_GT_PIPE] = ACTIONS(1903), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1903), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1903), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1903), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1903), + [anon_sym_LBRACK] = ACTIONS(1903), + [anon_sym_LPAREN] = ACTIONS(1903), + [anon_sym_DOLLAR] = ACTIONS(1901), + [anon_sym_DASH_DASH] = ACTIONS(1903), + [anon_sym_DASH] = ACTIONS(1901), + [anon_sym_LBRACE] = ACTIONS(1903), + [anon_sym_DOT_DOT] = ACTIONS(1901), + [anon_sym_DOT] = ACTIONS(4709), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1903), + [anon_sym_DOT_DOT_LT] = ACTIONS(1903), + [aux_sym__val_number_decimal_token1] = ACTIONS(1901), + [aux_sym__val_number_decimal_token2] = ACTIONS(1903), + [aux_sym__val_number_decimal_token3] = ACTIONS(1903), + [aux_sym__val_number_decimal_token4] = ACTIONS(1903), + [aux_sym__val_number_token1] = ACTIONS(1903), + [aux_sym__val_number_token2] = ACTIONS(1903), + [aux_sym__val_number_token3] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1901), + [anon_sym_0x] = ACTIONS(1901), + [sym_val_date] = ACTIONS(1903), + [anon_sym_DQUOTE] = ACTIONS(1903), + [sym__str_single_quotes] = ACTIONS(1903), + [sym__str_back_ticks] = ACTIONS(1903), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1903), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1903), + [anon_sym_err_GT] = ACTIONS(1901), + [anon_sym_out_GT] = ACTIONS(1901), + [anon_sym_e_GT] = ACTIONS(1901), + [anon_sym_o_GT] = ACTIONS(1901), + [anon_sym_err_PLUSout_GT] = ACTIONS(1901), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1901), + [anon_sym_o_PLUSe_GT] = ACTIONS(1901), + [anon_sym_e_PLUSo_GT] = ACTIONS(1901), + [anon_sym_err_GT_GT] = ACTIONS(1903), + [anon_sym_out_GT_GT] = ACTIONS(1903), + [anon_sym_e_GT_GT] = ACTIONS(1903), + [anon_sym_o_GT_GT] = ACTIONS(1903), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1903), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1903), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1903), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1903), + [aux_sym_unquoted_token1] = ACTIONS(1901), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1903), }, [1389] = { + [sym_cell_path] = STATE(1728), + [sym_path] = STATE(1589), [sym_comment] = STATE(1389), - [anon_sym_true] = ACTIONS(2035), - [anon_sym_false] = ACTIONS(2035), - [anon_sym_null] = ACTIONS(2035), - [aux_sym_cmd_identifier_token38] = ACTIONS(2035), - [aux_sym_cmd_identifier_token39] = ACTIONS(2035), - [aux_sym_cmd_identifier_token40] = ACTIONS(2035), - [sym__newline] = ACTIONS(2035), - [anon_sym_SEMI] = ACTIONS(2035), - [anon_sym_PIPE] = ACTIONS(2035), - [anon_sym_err_GT_PIPE] = ACTIONS(2035), - [anon_sym_out_GT_PIPE] = ACTIONS(2035), - [anon_sym_e_GT_PIPE] = ACTIONS(2035), - [anon_sym_o_GT_PIPE] = ACTIONS(2035), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2035), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2035), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2035), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2035), - [anon_sym_LBRACK] = ACTIONS(2035), - [anon_sym_LPAREN] = ACTIONS(2035), - [anon_sym_RPAREN] = ACTIONS(2035), - [anon_sym_DOLLAR] = ACTIONS(2033), - [anon_sym_DASH_DASH] = ACTIONS(2035), - [anon_sym_DASH] = ACTIONS(2033), - [anon_sym_LBRACE] = ACTIONS(2035), - [anon_sym_RBRACE] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2033), - [anon_sym_DOT_DOT2] = ACTIONS(2033), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2033), - [anon_sym_DOT_DOT_LT] = ACTIONS(2033), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2035), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2035), - [aux_sym__val_number_decimal_token1] = ACTIONS(2033), - [aux_sym__val_number_decimal_token2] = ACTIONS(2035), - [aux_sym__val_number_decimal_token3] = ACTIONS(2035), - [aux_sym__val_number_decimal_token4] = ACTIONS(2035), - [aux_sym__val_number_token1] = ACTIONS(2035), - [aux_sym__val_number_token2] = ACTIONS(2035), - [aux_sym__val_number_token3] = ACTIONS(2035), - [anon_sym_0b] = ACTIONS(2033), - [anon_sym_0o] = ACTIONS(2033), - [anon_sym_0x] = ACTIONS(2033), - [sym_val_date] = ACTIONS(2035), - [anon_sym_DQUOTE] = ACTIONS(2035), - [sym__str_single_quotes] = ACTIONS(2035), - [sym__str_back_ticks] = ACTIONS(2035), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2035), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2035), - [anon_sym_err_GT] = ACTIONS(2033), - [anon_sym_out_GT] = ACTIONS(2033), - [anon_sym_e_GT] = ACTIONS(2033), - [anon_sym_o_GT] = ACTIONS(2033), - [anon_sym_err_PLUSout_GT] = ACTIONS(2033), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2033), - [anon_sym_o_PLUSe_GT] = ACTIONS(2033), - [anon_sym_e_PLUSo_GT] = ACTIONS(2033), - [anon_sym_err_GT_GT] = ACTIONS(2035), - [anon_sym_out_GT_GT] = ACTIONS(2035), - [anon_sym_e_GT_GT] = ACTIONS(2035), - [anon_sym_o_GT_GT] = ACTIONS(2035), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2035), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2035), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2035), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2035), - [aux_sym_unquoted_token1] = ACTIONS(2033), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(1434), + [ts_builtin_sym_end] = ACTIONS(1899), + [anon_sym_true] = ACTIONS(1899), + [anon_sym_false] = ACTIONS(1899), + [anon_sym_null] = ACTIONS(1899), + [aux_sym_cmd_identifier_token38] = ACTIONS(1899), + [aux_sym_cmd_identifier_token39] = ACTIONS(1899), + [aux_sym_cmd_identifier_token40] = ACTIONS(1899), + [sym__newline] = ACTIONS(1899), + [anon_sym_SEMI] = ACTIONS(1899), + [anon_sym_PIPE] = ACTIONS(1899), + [anon_sym_err_GT_PIPE] = ACTIONS(1899), + [anon_sym_out_GT_PIPE] = ACTIONS(1899), + [anon_sym_e_GT_PIPE] = ACTIONS(1899), + [anon_sym_o_GT_PIPE] = ACTIONS(1899), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1899), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1899), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1899), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_LPAREN] = ACTIONS(1899), + [anon_sym_DOLLAR] = ACTIONS(1897), + [anon_sym_DASH_DASH] = ACTIONS(1899), + [anon_sym_DASH] = ACTIONS(1897), + [anon_sym_LBRACE] = ACTIONS(1899), + [anon_sym_DOT_DOT] = ACTIONS(1897), + [anon_sym_DOT] = ACTIONS(4709), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1899), + [anon_sym_DOT_DOT_LT] = ACTIONS(1899), + [aux_sym__val_number_decimal_token1] = ACTIONS(1897), + [aux_sym__val_number_decimal_token2] = ACTIONS(1899), + [aux_sym__val_number_decimal_token3] = ACTIONS(1899), + [aux_sym__val_number_decimal_token4] = ACTIONS(1899), + [aux_sym__val_number_token1] = ACTIONS(1899), + [aux_sym__val_number_token2] = ACTIONS(1899), + [aux_sym__val_number_token3] = ACTIONS(1899), + [anon_sym_0b] = ACTIONS(1897), + [anon_sym_0o] = ACTIONS(1897), + [anon_sym_0x] = ACTIONS(1897), + [sym_val_date] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(1899), + [sym__str_single_quotes] = ACTIONS(1899), + [sym__str_back_ticks] = ACTIONS(1899), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1899), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1899), + [anon_sym_err_GT] = ACTIONS(1897), + [anon_sym_out_GT] = ACTIONS(1897), + [anon_sym_e_GT] = ACTIONS(1897), + [anon_sym_o_GT] = ACTIONS(1897), + [anon_sym_err_PLUSout_GT] = ACTIONS(1897), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1897), + [anon_sym_o_PLUSe_GT] = ACTIONS(1897), + [anon_sym_e_PLUSo_GT] = ACTIONS(1897), + [anon_sym_err_GT_GT] = ACTIONS(1899), + [anon_sym_out_GT_GT] = ACTIONS(1899), + [anon_sym_e_GT_GT] = ACTIONS(1899), + [anon_sym_o_GT_GT] = ACTIONS(1899), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1899), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1899), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1899), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1899), + [aux_sym_unquoted_token1] = ACTIONS(1897), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1899), }, [1390] = { [sym_comment] = STATE(1390), - [ts_builtin_sym_end] = ACTIONS(1669), - [anon_sym_true] = ACTIONS(1669), - [anon_sym_false] = ACTIONS(1669), - [anon_sym_null] = ACTIONS(1669), - [aux_sym_cmd_identifier_token38] = ACTIONS(1669), - [aux_sym_cmd_identifier_token39] = ACTIONS(1669), - [aux_sym_cmd_identifier_token40] = ACTIONS(1669), - [sym__newline] = ACTIONS(1669), - [anon_sym_SEMI] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1669), - [anon_sym_err_GT_PIPE] = ACTIONS(1669), - [anon_sym_out_GT_PIPE] = ACTIONS(1669), - [anon_sym_e_GT_PIPE] = ACTIONS(1669), - [anon_sym_o_GT_PIPE] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), - [anon_sym_LBRACK] = ACTIONS(1669), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_DOLLAR] = ACTIONS(1667), - [anon_sym_DASH_DASH] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_LBRACE] = ACTIONS(1669), - [anon_sym_DOT_DOT] = ACTIONS(1667), - [anon_sym_LPAREN2] = ACTIONS(1669), - [anon_sym_DOT] = ACTIONS(4730), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT] = ACTIONS(1669), - [aux_sym__immediate_decimal_token2] = ACTIONS(4732), - [aux_sym__val_number_decimal_token1] = ACTIONS(1667), - [aux_sym__val_number_decimal_token2] = ACTIONS(1669), - [aux_sym__val_number_decimal_token3] = ACTIONS(1669), - [aux_sym__val_number_decimal_token4] = ACTIONS(1669), - [aux_sym__val_number_token1] = ACTIONS(1669), - [aux_sym__val_number_token2] = ACTIONS(1669), - [aux_sym__val_number_token3] = ACTIONS(1669), - [anon_sym_0b] = ACTIONS(1667), - [anon_sym_0o] = ACTIONS(1667), - [anon_sym_0x] = ACTIONS(1667), - [sym_val_date] = ACTIONS(1669), - [anon_sym_DQUOTE] = ACTIONS(1669), - [sym__str_single_quotes] = ACTIONS(1669), - [sym__str_back_ticks] = ACTIONS(1669), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1669), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1669), - [anon_sym_err_GT] = ACTIONS(1667), - [anon_sym_out_GT] = ACTIONS(1667), - [anon_sym_e_GT] = ACTIONS(1667), - [anon_sym_o_GT] = ACTIONS(1667), - [anon_sym_err_PLUSout_GT] = ACTIONS(1667), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1667), - [anon_sym_o_PLUSe_GT] = ACTIONS(1667), - [anon_sym_e_PLUSo_GT] = ACTIONS(1667), - [anon_sym_err_GT_GT] = ACTIONS(1669), - [anon_sym_out_GT_GT] = ACTIONS(1669), - [anon_sym_e_GT_GT] = ACTIONS(1669), - [anon_sym_o_GT_GT] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1669), - [aux_sym_unquoted_token1] = ACTIONS(1667), - [aux_sym_unquoted_token2] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cmd_identifier_token41] = ACTIONS(1596), + [sym__newline] = ACTIONS(1596), + [anon_sym_SEMI] = ACTIONS(1598), + [anon_sym_PIPE] = ACTIONS(1598), + [anon_sym_err_GT_PIPE] = ACTIONS(1598), + [anon_sym_out_GT_PIPE] = ACTIONS(1598), + [anon_sym_e_GT_PIPE] = ACTIONS(1598), + [anon_sym_o_GT_PIPE] = ACTIONS(1598), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1598), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1598), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1598), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1598), + [anon_sym_EQ_GT] = ACTIONS(1598), + [aux_sym_expr_binary_token1] = ACTIONS(1598), + [aux_sym_expr_binary_token2] = ACTIONS(1598), + [aux_sym_expr_binary_token3] = ACTIONS(1598), + [aux_sym_expr_binary_token4] = ACTIONS(1598), + [aux_sym_expr_binary_token5] = ACTIONS(1598), + [aux_sym_expr_binary_token6] = ACTIONS(1598), + [aux_sym_expr_binary_token7] = ACTIONS(1598), + [aux_sym_expr_binary_token8] = ACTIONS(1598), + [aux_sym_expr_binary_token9] = ACTIONS(1598), + [aux_sym_expr_binary_token10] = ACTIONS(1598), + [aux_sym_expr_binary_token11] = ACTIONS(1598), + [aux_sym_expr_binary_token12] = ACTIONS(1598), + [aux_sym_expr_binary_token13] = ACTIONS(1598), + [aux_sym_expr_binary_token14] = ACTIONS(1598), + [aux_sym_expr_binary_token15] = ACTIONS(1598), + [aux_sym_expr_binary_token16] = ACTIONS(1598), + [aux_sym_expr_binary_token17] = ACTIONS(1598), + [aux_sym_expr_binary_token18] = ACTIONS(1598), + [aux_sym_expr_binary_token19] = ACTIONS(1598), + [aux_sym_expr_binary_token20] = ACTIONS(1598), + [aux_sym_expr_binary_token21] = ACTIONS(1598), + [aux_sym_expr_binary_token22] = ACTIONS(1598), + [aux_sym_expr_binary_token23] = ACTIONS(1598), + [aux_sym_expr_binary_token24] = ACTIONS(1598), + [aux_sym_expr_binary_token25] = ACTIONS(1598), + [aux_sym_expr_binary_token26] = ACTIONS(1598), + [aux_sym_expr_binary_token27] = ACTIONS(1598), + [aux_sym_expr_binary_token28] = ACTIONS(1598), + [anon_sym_DOT_DOT2] = ACTIONS(1596), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1598), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1598), + [aux_sym__immediate_decimal_token2] = ACTIONS(4802), + [sym_filesize_unit] = ACTIONS(1598), + [sym_duration_unit] = ACTIONS(1598), + [aux_sym_record_entry_token1] = ACTIONS(1598), + [anon_sym_err_GT] = ACTIONS(1596), + [anon_sym_out_GT] = ACTIONS(1596), + [anon_sym_e_GT] = ACTIONS(1596), + [anon_sym_o_GT] = ACTIONS(1596), + [anon_sym_err_PLUSout_GT] = ACTIONS(1596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1596), + [anon_sym_o_PLUSe_GT] = ACTIONS(1596), + [anon_sym_e_PLUSo_GT] = ACTIONS(1596), + [anon_sym_err_GT_GT] = ACTIONS(1598), + [anon_sym_out_GT_GT] = ACTIONS(1598), + [anon_sym_e_GT_GT] = ACTIONS(1598), + [anon_sym_o_GT_GT] = ACTIONS(1598), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1598), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1598), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1598), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1598), + [anon_sym_POUND] = ACTIONS(249), }, [1391] = { + [sym_cell_path] = STATE(1737), + [sym_path] = STATE(1589), [sym_comment] = STATE(1391), - [anon_sym_true] = ACTIONS(1677), - [anon_sym_false] = ACTIONS(1677), - [anon_sym_null] = ACTIONS(1677), - [aux_sym_cmd_identifier_token38] = ACTIONS(1677), - [aux_sym_cmd_identifier_token39] = ACTIONS(1677), - [aux_sym_cmd_identifier_token40] = ACTIONS(1677), - [sym__newline] = ACTIONS(1677), - [anon_sym_SEMI] = ACTIONS(1677), - [anon_sym_PIPE] = ACTIONS(1677), - [anon_sym_err_GT_PIPE] = ACTIONS(1677), - [anon_sym_out_GT_PIPE] = ACTIONS(1677), - [anon_sym_e_GT_PIPE] = ACTIONS(1677), - [anon_sym_o_GT_PIPE] = ACTIONS(1677), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1677), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1677), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1677), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1677), - [anon_sym_LBRACK] = ACTIONS(1677), - [anon_sym_LPAREN] = ACTIONS(1677), - [anon_sym_RPAREN] = ACTIONS(1677), - [anon_sym_DOLLAR] = ACTIONS(1675), - [anon_sym_DASH_DASH] = ACTIONS(1677), - [anon_sym_DASH] = ACTIONS(1675), - [anon_sym_LBRACE] = ACTIONS(1677), - [anon_sym_RBRACE] = ACTIONS(1677), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT2] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1675), - [anon_sym_DOT_DOT_LT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1677), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1677), - [aux_sym__val_number_decimal_token1] = ACTIONS(1675), - [aux_sym__val_number_decimal_token2] = ACTIONS(1677), - [aux_sym__val_number_decimal_token3] = ACTIONS(1677), - [aux_sym__val_number_decimal_token4] = ACTIONS(1677), - [aux_sym__val_number_token1] = ACTIONS(1677), - [aux_sym__val_number_token2] = ACTIONS(1677), - [aux_sym__val_number_token3] = ACTIONS(1677), - [anon_sym_0b] = ACTIONS(1675), - [anon_sym_0o] = ACTIONS(1675), - [anon_sym_0x] = ACTIONS(1675), - [sym_val_date] = ACTIONS(1677), - [anon_sym_DQUOTE] = ACTIONS(1677), - [sym__str_single_quotes] = ACTIONS(1677), - [sym__str_back_ticks] = ACTIONS(1677), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1677), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1677), - [anon_sym_err_GT] = ACTIONS(1675), - [anon_sym_out_GT] = ACTIONS(1675), - [anon_sym_e_GT] = ACTIONS(1675), - [anon_sym_o_GT] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT] = ACTIONS(1675), - [anon_sym_err_GT_GT] = ACTIONS(1677), - [anon_sym_out_GT_GT] = ACTIONS(1677), - [anon_sym_e_GT_GT] = ACTIONS(1677), - [anon_sym_o_GT_GT] = ACTIONS(1677), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1677), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1677), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1677), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1677), - [aux_sym_unquoted_token1] = ACTIONS(1675), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(1434), + [ts_builtin_sym_end] = ACTIONS(1931), + [anon_sym_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [anon_sym_null] = ACTIONS(1931), + [aux_sym_cmd_identifier_token38] = ACTIONS(1931), + [aux_sym_cmd_identifier_token39] = ACTIONS(1931), + [aux_sym_cmd_identifier_token40] = ACTIONS(1931), + [sym__newline] = ACTIONS(1931), + [anon_sym_SEMI] = ACTIONS(1931), + [anon_sym_PIPE] = ACTIONS(1931), + [anon_sym_err_GT_PIPE] = ACTIONS(1931), + [anon_sym_out_GT_PIPE] = ACTIONS(1931), + [anon_sym_e_GT_PIPE] = ACTIONS(1931), + [anon_sym_o_GT_PIPE] = ACTIONS(1931), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1931), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1931), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1931), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1931), + [anon_sym_LBRACK] = ACTIONS(1931), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_DOLLAR] = ACTIONS(1929), + [anon_sym_DASH_DASH] = ACTIONS(1931), + [anon_sym_DASH] = ACTIONS(1929), + [anon_sym_LBRACE] = ACTIONS(1931), + [anon_sym_DOT_DOT] = ACTIONS(1929), + [anon_sym_DOT] = ACTIONS(4709), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1931), + [anon_sym_DOT_DOT_LT] = ACTIONS(1931), + [aux_sym__val_number_decimal_token1] = ACTIONS(1929), + [aux_sym__val_number_decimal_token2] = ACTIONS(1931), + [aux_sym__val_number_decimal_token3] = ACTIONS(1931), + [aux_sym__val_number_decimal_token4] = ACTIONS(1931), + [aux_sym__val_number_token1] = ACTIONS(1931), + [aux_sym__val_number_token2] = ACTIONS(1931), + [aux_sym__val_number_token3] = ACTIONS(1931), + [anon_sym_0b] = ACTIONS(1929), + [anon_sym_0o] = ACTIONS(1929), + [anon_sym_0x] = ACTIONS(1929), + [sym_val_date] = ACTIONS(1931), + [anon_sym_DQUOTE] = ACTIONS(1931), + [sym__str_single_quotes] = ACTIONS(1931), + [sym__str_back_ticks] = ACTIONS(1931), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1931), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1931), + [anon_sym_err_GT] = ACTIONS(1929), + [anon_sym_out_GT] = ACTIONS(1929), + [anon_sym_e_GT] = ACTIONS(1929), + [anon_sym_o_GT] = ACTIONS(1929), + [anon_sym_err_PLUSout_GT] = ACTIONS(1929), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1929), + [anon_sym_o_PLUSe_GT] = ACTIONS(1929), + [anon_sym_e_PLUSo_GT] = ACTIONS(1929), + [anon_sym_err_GT_GT] = ACTIONS(1931), + [anon_sym_out_GT_GT] = ACTIONS(1931), + [anon_sym_e_GT_GT] = ACTIONS(1931), + [anon_sym_o_GT_GT] = ACTIONS(1931), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1931), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1931), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1931), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1931), + [aux_sym_unquoted_token1] = ACTIONS(1929), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1931), }, [1392] = { - [sym_cell_path] = STATE(1840), - [sym_path] = STATE(1603), + [sym_cell_path] = STATE(1758), + [sym_path] = STATE(1589), [sym_comment] = STATE(1392), - [aux_sym_cell_path_repeat1] = STATE(1493), - [ts_builtin_sym_end] = ACTIONS(1842), - [anon_sym_true] = ACTIONS(1842), - [anon_sym_false] = ACTIONS(1842), - [anon_sym_null] = ACTIONS(1842), - [aux_sym_cmd_identifier_token38] = ACTIONS(1842), - [aux_sym_cmd_identifier_token39] = ACTIONS(1842), - [aux_sym_cmd_identifier_token40] = ACTIONS(1842), - [sym__newline] = ACTIONS(1842), - [anon_sym_SEMI] = ACTIONS(1842), - [anon_sym_PIPE] = ACTIONS(1842), - [anon_sym_err_GT_PIPE] = ACTIONS(1842), - [anon_sym_out_GT_PIPE] = ACTIONS(1842), - [anon_sym_e_GT_PIPE] = ACTIONS(1842), - [anon_sym_o_GT_PIPE] = ACTIONS(1842), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1842), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1842), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1842), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1842), - [anon_sym_LBRACK] = ACTIONS(1842), - [anon_sym_LPAREN] = ACTIONS(1842), - [anon_sym_DOLLAR] = ACTIONS(1840), - [anon_sym_DASH_DASH] = ACTIONS(1842), - [anon_sym_DASH] = ACTIONS(1840), - [anon_sym_LBRACE] = ACTIONS(1842), - [anon_sym_DOT_DOT] = ACTIONS(1840), - [anon_sym_DOT] = ACTIONS(4680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1842), - [anon_sym_DOT_DOT_LT] = ACTIONS(1842), - [aux_sym__val_number_decimal_token1] = ACTIONS(1840), - [aux_sym__val_number_decimal_token2] = ACTIONS(1842), - [aux_sym__val_number_decimal_token3] = ACTIONS(1842), - [aux_sym__val_number_decimal_token4] = ACTIONS(1842), - [aux_sym__val_number_token1] = ACTIONS(1842), - [aux_sym__val_number_token2] = ACTIONS(1842), - [aux_sym__val_number_token3] = ACTIONS(1842), - [anon_sym_0b] = ACTIONS(1840), - [anon_sym_0o] = ACTIONS(1840), - [anon_sym_0x] = ACTIONS(1840), - [sym_val_date] = ACTIONS(1842), - [anon_sym_DQUOTE] = ACTIONS(1842), - [sym__str_single_quotes] = ACTIONS(1842), - [sym__str_back_ticks] = ACTIONS(1842), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1842), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1842), - [anon_sym_err_GT] = ACTIONS(1840), - [anon_sym_out_GT] = ACTIONS(1840), - [anon_sym_e_GT] = ACTIONS(1840), - [anon_sym_o_GT] = ACTIONS(1840), - [anon_sym_err_PLUSout_GT] = ACTIONS(1840), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1840), - [anon_sym_o_PLUSe_GT] = ACTIONS(1840), - [anon_sym_e_PLUSo_GT] = ACTIONS(1840), - [anon_sym_err_GT_GT] = ACTIONS(1842), - [anon_sym_out_GT_GT] = ACTIONS(1842), - [anon_sym_e_GT_GT] = ACTIONS(1842), - [anon_sym_o_GT_GT] = ACTIONS(1842), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1842), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1842), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1842), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1842), - [aux_sym_unquoted_token1] = ACTIONS(1840), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(1434), + [ts_builtin_sym_end] = ACTIONS(1995), + [anon_sym_true] = ACTIONS(1995), + [anon_sym_false] = ACTIONS(1995), + [anon_sym_null] = ACTIONS(1995), + [aux_sym_cmd_identifier_token38] = ACTIONS(1995), + [aux_sym_cmd_identifier_token39] = ACTIONS(1995), + [aux_sym_cmd_identifier_token40] = ACTIONS(1995), + [sym__newline] = ACTIONS(1995), + [anon_sym_SEMI] = ACTIONS(1995), + [anon_sym_PIPE] = ACTIONS(1995), + [anon_sym_err_GT_PIPE] = ACTIONS(1995), + [anon_sym_out_GT_PIPE] = ACTIONS(1995), + [anon_sym_e_GT_PIPE] = ACTIONS(1995), + [anon_sym_o_GT_PIPE] = ACTIONS(1995), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1995), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1995), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1995), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1995), + [anon_sym_LBRACK] = ACTIONS(1995), + [anon_sym_LPAREN] = ACTIONS(1995), + [anon_sym_DOLLAR] = ACTIONS(1993), + [anon_sym_DASH_DASH] = ACTIONS(1995), + [anon_sym_DASH] = ACTIONS(1993), + [anon_sym_LBRACE] = ACTIONS(1995), + [anon_sym_DOT_DOT] = ACTIONS(1993), + [anon_sym_DOT] = ACTIONS(4709), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1995), + [anon_sym_DOT_DOT_LT] = ACTIONS(1995), + [aux_sym__val_number_decimal_token1] = ACTIONS(1993), + [aux_sym__val_number_decimal_token2] = ACTIONS(1995), + [aux_sym__val_number_decimal_token3] = ACTIONS(1995), + [aux_sym__val_number_decimal_token4] = ACTIONS(1995), + [aux_sym__val_number_token1] = ACTIONS(1995), + [aux_sym__val_number_token2] = ACTIONS(1995), + [aux_sym__val_number_token3] = ACTIONS(1995), + [anon_sym_0b] = ACTIONS(1993), + [anon_sym_0o] = ACTIONS(1993), + [anon_sym_0x] = ACTIONS(1993), + [sym_val_date] = ACTIONS(1995), + [anon_sym_DQUOTE] = ACTIONS(1995), + [sym__str_single_quotes] = ACTIONS(1995), + [sym__str_back_ticks] = ACTIONS(1995), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1995), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1995), + [anon_sym_err_GT] = ACTIONS(1993), + [anon_sym_out_GT] = ACTIONS(1993), + [anon_sym_e_GT] = ACTIONS(1993), + [anon_sym_o_GT] = ACTIONS(1993), + [anon_sym_err_PLUSout_GT] = ACTIONS(1993), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1993), + [anon_sym_o_PLUSe_GT] = ACTIONS(1993), + [anon_sym_e_PLUSo_GT] = ACTIONS(1993), + [anon_sym_err_GT_GT] = ACTIONS(1995), + [anon_sym_out_GT_GT] = ACTIONS(1995), + [anon_sym_e_GT_GT] = ACTIONS(1995), + [anon_sym_o_GT_GT] = ACTIONS(1995), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1995), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1995), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1995), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1995), + [aux_sym_unquoted_token1] = ACTIONS(1993), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1995), }, [1393] = { - [sym_cell_path] = STATE(1848), - [sym_path] = STATE(1603), + [sym_cell_path] = STATE(1759), + [sym_path] = STATE(1589), [sym_comment] = STATE(1393), - [aux_sym_cell_path_repeat1] = STATE(1493), - [ts_builtin_sym_end] = ACTIONS(1846), - [anon_sym_true] = ACTIONS(1846), - [anon_sym_false] = ACTIONS(1846), - [anon_sym_null] = ACTIONS(1846), - [aux_sym_cmd_identifier_token38] = ACTIONS(1846), - [aux_sym_cmd_identifier_token39] = ACTIONS(1846), - [aux_sym_cmd_identifier_token40] = ACTIONS(1846), - [sym__newline] = ACTIONS(1846), - [anon_sym_SEMI] = ACTIONS(1846), - [anon_sym_PIPE] = ACTIONS(1846), - [anon_sym_err_GT_PIPE] = ACTIONS(1846), - [anon_sym_out_GT_PIPE] = ACTIONS(1846), - [anon_sym_e_GT_PIPE] = ACTIONS(1846), - [anon_sym_o_GT_PIPE] = ACTIONS(1846), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1846), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1846), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1846), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1846), - [anon_sym_LBRACK] = ACTIONS(1846), - [anon_sym_LPAREN] = ACTIONS(1846), - [anon_sym_DOLLAR] = ACTIONS(1844), - [anon_sym_DASH_DASH] = ACTIONS(1846), - [anon_sym_DASH] = ACTIONS(1844), - [anon_sym_LBRACE] = ACTIONS(1846), - [anon_sym_DOT_DOT] = ACTIONS(1844), - [anon_sym_DOT] = ACTIONS(4680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1846), - [anon_sym_DOT_DOT_LT] = ACTIONS(1846), - [aux_sym__val_number_decimal_token1] = ACTIONS(1844), - [aux_sym__val_number_decimal_token2] = ACTIONS(1846), - [aux_sym__val_number_decimal_token3] = ACTIONS(1846), - [aux_sym__val_number_decimal_token4] = ACTIONS(1846), - [aux_sym__val_number_token1] = ACTIONS(1846), - [aux_sym__val_number_token2] = ACTIONS(1846), - [aux_sym__val_number_token3] = ACTIONS(1846), - [anon_sym_0b] = ACTIONS(1844), - [anon_sym_0o] = ACTIONS(1844), - [anon_sym_0x] = ACTIONS(1844), - [sym_val_date] = ACTIONS(1846), - [anon_sym_DQUOTE] = ACTIONS(1846), - [sym__str_single_quotes] = ACTIONS(1846), - [sym__str_back_ticks] = ACTIONS(1846), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1846), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1846), - [anon_sym_err_GT] = ACTIONS(1844), - [anon_sym_out_GT] = ACTIONS(1844), - [anon_sym_e_GT] = ACTIONS(1844), - [anon_sym_o_GT] = ACTIONS(1844), - [anon_sym_err_PLUSout_GT] = ACTIONS(1844), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1844), - [anon_sym_o_PLUSe_GT] = ACTIONS(1844), - [anon_sym_e_PLUSo_GT] = ACTIONS(1844), - [anon_sym_err_GT_GT] = ACTIONS(1846), - [anon_sym_out_GT_GT] = ACTIONS(1846), - [anon_sym_e_GT_GT] = ACTIONS(1846), - [anon_sym_o_GT_GT] = ACTIONS(1846), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1846), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1846), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1846), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1846), - [aux_sym_unquoted_token1] = ACTIONS(1844), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(1434), + [ts_builtin_sym_end] = ACTIONS(1999), + [anon_sym_true] = ACTIONS(1999), + [anon_sym_false] = ACTIONS(1999), + [anon_sym_null] = ACTIONS(1999), + [aux_sym_cmd_identifier_token38] = ACTIONS(1999), + [aux_sym_cmd_identifier_token39] = ACTIONS(1999), + [aux_sym_cmd_identifier_token40] = ACTIONS(1999), + [sym__newline] = ACTIONS(1999), + [anon_sym_SEMI] = ACTIONS(1999), + [anon_sym_PIPE] = ACTIONS(1999), + [anon_sym_err_GT_PIPE] = ACTIONS(1999), + [anon_sym_out_GT_PIPE] = ACTIONS(1999), + [anon_sym_e_GT_PIPE] = ACTIONS(1999), + [anon_sym_o_GT_PIPE] = ACTIONS(1999), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1999), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1999), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1999), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1999), + [anon_sym_LBRACK] = ACTIONS(1999), + [anon_sym_LPAREN] = ACTIONS(1999), + [anon_sym_DOLLAR] = ACTIONS(1997), + [anon_sym_DASH_DASH] = ACTIONS(1999), + [anon_sym_DASH] = ACTIONS(1997), + [anon_sym_LBRACE] = ACTIONS(1999), + [anon_sym_DOT_DOT] = ACTIONS(1997), + [anon_sym_DOT] = ACTIONS(4709), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1999), + [anon_sym_DOT_DOT_LT] = ACTIONS(1999), + [aux_sym__val_number_decimal_token1] = ACTIONS(1997), + [aux_sym__val_number_decimal_token2] = ACTIONS(1999), + [aux_sym__val_number_decimal_token3] = ACTIONS(1999), + [aux_sym__val_number_decimal_token4] = ACTIONS(1999), + [aux_sym__val_number_token1] = ACTIONS(1999), + [aux_sym__val_number_token2] = ACTIONS(1999), + [aux_sym__val_number_token3] = ACTIONS(1999), + [anon_sym_0b] = ACTIONS(1997), + [anon_sym_0o] = ACTIONS(1997), + [anon_sym_0x] = ACTIONS(1997), + [sym_val_date] = ACTIONS(1999), + [anon_sym_DQUOTE] = ACTIONS(1999), + [sym__str_single_quotes] = ACTIONS(1999), + [sym__str_back_ticks] = ACTIONS(1999), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1999), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1999), + [anon_sym_err_GT] = ACTIONS(1997), + [anon_sym_out_GT] = ACTIONS(1997), + [anon_sym_e_GT] = ACTIONS(1997), + [anon_sym_o_GT] = ACTIONS(1997), + [anon_sym_err_PLUSout_GT] = ACTIONS(1997), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1997), + [anon_sym_o_PLUSe_GT] = ACTIONS(1997), + [anon_sym_e_PLUSo_GT] = ACTIONS(1997), + [anon_sym_err_GT_GT] = ACTIONS(1999), + [anon_sym_out_GT_GT] = ACTIONS(1999), + [anon_sym_e_GT_GT] = ACTIONS(1999), + [anon_sym_o_GT_GT] = ACTIONS(1999), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1999), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1999), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1999), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1999), + [aux_sym_unquoted_token1] = ACTIONS(1997), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1999), }, [1394] = { - [sym_cell_path] = STATE(1851), - [sym_path] = STATE(1603), + [sym_cell_path] = STATE(1763), + [sym_path] = STATE(1589), [sym_comment] = STATE(1394), - [aux_sym_cell_path_repeat1] = STATE(1493), - [ts_builtin_sym_end] = ACTIONS(1850), - [anon_sym_true] = ACTIONS(1850), - [anon_sym_false] = ACTIONS(1850), - [anon_sym_null] = ACTIONS(1850), - [aux_sym_cmd_identifier_token38] = ACTIONS(1850), - [aux_sym_cmd_identifier_token39] = ACTIONS(1850), - [aux_sym_cmd_identifier_token40] = ACTIONS(1850), - [sym__newline] = ACTIONS(1850), - [anon_sym_SEMI] = ACTIONS(1850), - [anon_sym_PIPE] = ACTIONS(1850), - [anon_sym_err_GT_PIPE] = ACTIONS(1850), - [anon_sym_out_GT_PIPE] = ACTIONS(1850), - [anon_sym_e_GT_PIPE] = ACTIONS(1850), - [anon_sym_o_GT_PIPE] = ACTIONS(1850), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1850), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1850), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1850), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1850), - [anon_sym_LBRACK] = ACTIONS(1850), - [anon_sym_LPAREN] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1848), - [anon_sym_DASH_DASH] = ACTIONS(1850), - [anon_sym_DASH] = ACTIONS(1848), - [anon_sym_LBRACE] = ACTIONS(1850), - [anon_sym_DOT_DOT] = ACTIONS(1848), - [anon_sym_DOT] = ACTIONS(4680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1850), - [anon_sym_DOT_DOT_LT] = ACTIONS(1850), - [aux_sym__val_number_decimal_token1] = ACTIONS(1848), - [aux_sym__val_number_decimal_token2] = ACTIONS(1850), - [aux_sym__val_number_decimal_token3] = ACTIONS(1850), - [aux_sym__val_number_decimal_token4] = ACTIONS(1850), - [aux_sym__val_number_token1] = ACTIONS(1850), - [aux_sym__val_number_token2] = ACTIONS(1850), - [aux_sym__val_number_token3] = ACTIONS(1850), - [anon_sym_0b] = ACTIONS(1848), - [anon_sym_0o] = ACTIONS(1848), - [anon_sym_0x] = ACTIONS(1848), - [sym_val_date] = ACTIONS(1850), - [anon_sym_DQUOTE] = ACTIONS(1850), - [sym__str_single_quotes] = ACTIONS(1850), - [sym__str_back_ticks] = ACTIONS(1850), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1850), - [anon_sym_err_GT] = ACTIONS(1848), - [anon_sym_out_GT] = ACTIONS(1848), - [anon_sym_e_GT] = ACTIONS(1848), - [anon_sym_o_GT] = ACTIONS(1848), - [anon_sym_err_PLUSout_GT] = ACTIONS(1848), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1848), - [anon_sym_o_PLUSe_GT] = ACTIONS(1848), - [anon_sym_e_PLUSo_GT] = ACTIONS(1848), - [anon_sym_err_GT_GT] = ACTIONS(1850), - [anon_sym_out_GT_GT] = ACTIONS(1850), - [anon_sym_e_GT_GT] = ACTIONS(1850), - [anon_sym_o_GT_GT] = ACTIONS(1850), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1850), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1850), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1850), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1850), - [aux_sym_unquoted_token1] = ACTIONS(1848), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(1434), + [ts_builtin_sym_end] = ACTIONS(2003), + [anon_sym_true] = ACTIONS(2003), + [anon_sym_false] = ACTIONS(2003), + [anon_sym_null] = ACTIONS(2003), + [aux_sym_cmd_identifier_token38] = ACTIONS(2003), + [aux_sym_cmd_identifier_token39] = ACTIONS(2003), + [aux_sym_cmd_identifier_token40] = ACTIONS(2003), + [sym__newline] = ACTIONS(2003), + [anon_sym_SEMI] = ACTIONS(2003), + [anon_sym_PIPE] = ACTIONS(2003), + [anon_sym_err_GT_PIPE] = ACTIONS(2003), + [anon_sym_out_GT_PIPE] = ACTIONS(2003), + [anon_sym_e_GT_PIPE] = ACTIONS(2003), + [anon_sym_o_GT_PIPE] = ACTIONS(2003), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2003), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2003), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2003), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2003), + [anon_sym_LBRACK] = ACTIONS(2003), + [anon_sym_LPAREN] = ACTIONS(2003), + [anon_sym_DOLLAR] = ACTIONS(2001), + [anon_sym_DASH_DASH] = ACTIONS(2003), + [anon_sym_DASH] = ACTIONS(2001), + [anon_sym_LBRACE] = ACTIONS(2003), + [anon_sym_DOT_DOT] = ACTIONS(2001), + [anon_sym_DOT] = ACTIONS(4709), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2003), + [anon_sym_DOT_DOT_LT] = ACTIONS(2003), + [aux_sym__val_number_decimal_token1] = ACTIONS(2001), + [aux_sym__val_number_decimal_token2] = ACTIONS(2003), + [aux_sym__val_number_decimal_token3] = ACTIONS(2003), + [aux_sym__val_number_decimal_token4] = ACTIONS(2003), + [aux_sym__val_number_token1] = ACTIONS(2003), + [aux_sym__val_number_token2] = ACTIONS(2003), + [aux_sym__val_number_token3] = ACTIONS(2003), + [anon_sym_0b] = ACTIONS(2001), + [anon_sym_0o] = ACTIONS(2001), + [anon_sym_0x] = ACTIONS(2001), + [sym_val_date] = ACTIONS(2003), + [anon_sym_DQUOTE] = ACTIONS(2003), + [sym__str_single_quotes] = ACTIONS(2003), + [sym__str_back_ticks] = ACTIONS(2003), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2003), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2003), + [anon_sym_err_GT] = ACTIONS(2001), + [anon_sym_out_GT] = ACTIONS(2001), + [anon_sym_e_GT] = ACTIONS(2001), + [anon_sym_o_GT] = ACTIONS(2001), + [anon_sym_err_PLUSout_GT] = ACTIONS(2001), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2001), + [anon_sym_o_PLUSe_GT] = ACTIONS(2001), + [anon_sym_e_PLUSo_GT] = ACTIONS(2001), + [anon_sym_err_GT_GT] = ACTIONS(2003), + [anon_sym_out_GT_GT] = ACTIONS(2003), + [anon_sym_e_GT_GT] = ACTIONS(2003), + [anon_sym_o_GT_GT] = ACTIONS(2003), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2003), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2003), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2003), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2003), + [aux_sym_unquoted_token1] = ACTIONS(2001), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2003), }, [1395] = { + [sym_cell_path] = STATE(1766), + [sym_path] = STATE(1589), [sym_comment] = STATE(1395), - [anon_sym_true] = ACTIONS(2143), - [anon_sym_false] = ACTIONS(2143), - [anon_sym_null] = ACTIONS(2143), - [aux_sym_cmd_identifier_token38] = ACTIONS(2143), - [aux_sym_cmd_identifier_token39] = ACTIONS(2143), - [aux_sym_cmd_identifier_token40] = ACTIONS(2143), - [sym__newline] = ACTIONS(2143), - [anon_sym_SEMI] = ACTIONS(2143), - [anon_sym_PIPE] = ACTIONS(2143), - [anon_sym_err_GT_PIPE] = ACTIONS(2143), - [anon_sym_out_GT_PIPE] = ACTIONS(2143), - [anon_sym_e_GT_PIPE] = ACTIONS(2143), - [anon_sym_o_GT_PIPE] = ACTIONS(2143), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2143), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2143), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2143), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2143), - [anon_sym_LBRACK] = ACTIONS(2143), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_RPAREN] = ACTIONS(2143), - [anon_sym_DOLLAR] = ACTIONS(2141), - [anon_sym_DASH_DASH] = ACTIONS(2143), - [anon_sym_DASH] = ACTIONS(2141), - [anon_sym_LBRACE] = ACTIONS(2143), - [anon_sym_RBRACE] = ACTIONS(2143), - [anon_sym_DOT_DOT] = ACTIONS(2141), - [anon_sym_DOT_DOT2] = ACTIONS(2141), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2141), - [anon_sym_DOT_DOT_LT] = ACTIONS(2141), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2143), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2143), - [aux_sym__val_number_decimal_token1] = ACTIONS(2141), - [aux_sym__val_number_decimal_token2] = ACTIONS(2143), - [aux_sym__val_number_decimal_token3] = ACTIONS(2143), - [aux_sym__val_number_decimal_token4] = ACTIONS(2143), - [aux_sym__val_number_token1] = ACTIONS(2143), - [aux_sym__val_number_token2] = ACTIONS(2143), - [aux_sym__val_number_token3] = ACTIONS(2143), - [anon_sym_0b] = ACTIONS(2141), - [anon_sym_0o] = ACTIONS(2141), - [anon_sym_0x] = ACTIONS(2141), - [sym_val_date] = ACTIONS(2143), - [anon_sym_DQUOTE] = ACTIONS(2143), - [sym__str_single_quotes] = ACTIONS(2143), - [sym__str_back_ticks] = ACTIONS(2143), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2143), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2143), - [anon_sym_err_GT] = ACTIONS(2141), - [anon_sym_out_GT] = ACTIONS(2141), - [anon_sym_e_GT] = ACTIONS(2141), - [anon_sym_o_GT] = ACTIONS(2141), - [anon_sym_err_PLUSout_GT] = ACTIONS(2141), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2141), - [anon_sym_o_PLUSe_GT] = ACTIONS(2141), - [anon_sym_e_PLUSo_GT] = ACTIONS(2141), - [anon_sym_err_GT_GT] = ACTIONS(2143), - [anon_sym_out_GT_GT] = ACTIONS(2143), - [anon_sym_e_GT_GT] = ACTIONS(2143), - [anon_sym_o_GT_GT] = ACTIONS(2143), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2143), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2143), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2143), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2143), - [aux_sym_unquoted_token1] = ACTIONS(2141), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(1434), + [ts_builtin_sym_end] = ACTIONS(2007), + [anon_sym_true] = ACTIONS(2007), + [anon_sym_false] = ACTIONS(2007), + [anon_sym_null] = ACTIONS(2007), + [aux_sym_cmd_identifier_token38] = ACTIONS(2007), + [aux_sym_cmd_identifier_token39] = ACTIONS(2007), + [aux_sym_cmd_identifier_token40] = ACTIONS(2007), + [sym__newline] = ACTIONS(2007), + [anon_sym_SEMI] = ACTIONS(2007), + [anon_sym_PIPE] = ACTIONS(2007), + [anon_sym_err_GT_PIPE] = ACTIONS(2007), + [anon_sym_out_GT_PIPE] = ACTIONS(2007), + [anon_sym_e_GT_PIPE] = ACTIONS(2007), + [anon_sym_o_GT_PIPE] = ACTIONS(2007), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2007), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2007), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2007), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2007), + [anon_sym_LBRACK] = ACTIONS(2007), + [anon_sym_LPAREN] = ACTIONS(2007), + [anon_sym_DOLLAR] = ACTIONS(2005), + [anon_sym_DASH_DASH] = ACTIONS(2007), + [anon_sym_DASH] = ACTIONS(2005), + [anon_sym_LBRACE] = ACTIONS(2007), + [anon_sym_DOT_DOT] = ACTIONS(2005), + [anon_sym_DOT] = ACTIONS(4709), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2007), + [anon_sym_DOT_DOT_LT] = ACTIONS(2007), + [aux_sym__val_number_decimal_token1] = ACTIONS(2005), + [aux_sym__val_number_decimal_token2] = ACTIONS(2007), + [aux_sym__val_number_decimal_token3] = ACTIONS(2007), + [aux_sym__val_number_decimal_token4] = ACTIONS(2007), + [aux_sym__val_number_token1] = ACTIONS(2007), + [aux_sym__val_number_token2] = ACTIONS(2007), + [aux_sym__val_number_token3] = ACTIONS(2007), + [anon_sym_0b] = ACTIONS(2005), + [anon_sym_0o] = ACTIONS(2005), + [anon_sym_0x] = ACTIONS(2005), + [sym_val_date] = ACTIONS(2007), + [anon_sym_DQUOTE] = ACTIONS(2007), + [sym__str_single_quotes] = ACTIONS(2007), + [sym__str_back_ticks] = ACTIONS(2007), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2007), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2007), + [anon_sym_err_GT] = ACTIONS(2005), + [anon_sym_out_GT] = ACTIONS(2005), + [anon_sym_e_GT] = ACTIONS(2005), + [anon_sym_o_GT] = ACTIONS(2005), + [anon_sym_err_PLUSout_GT] = ACTIONS(2005), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2005), + [anon_sym_o_PLUSe_GT] = ACTIONS(2005), + [anon_sym_e_PLUSo_GT] = ACTIONS(2005), + [anon_sym_err_GT_GT] = ACTIONS(2007), + [anon_sym_out_GT_GT] = ACTIONS(2007), + [anon_sym_e_GT_GT] = ACTIONS(2007), + [anon_sym_o_GT_GT] = ACTIONS(2007), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2007), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2007), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2007), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2007), + [aux_sym_unquoted_token1] = ACTIONS(2005), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2007), }, [1396] = { - [sym_cell_path] = STATE(1853), - [sym_path] = STATE(1603), + [sym_cell_path] = STATE(1770), + [sym_path] = STATE(1589), [sym_comment] = STATE(1396), - [aux_sym_cell_path_repeat1] = STATE(1493), - [ts_builtin_sym_end] = ACTIONS(1854), - [anon_sym_true] = ACTIONS(1854), - [anon_sym_false] = ACTIONS(1854), - [anon_sym_null] = ACTIONS(1854), - [aux_sym_cmd_identifier_token38] = ACTIONS(1854), - [aux_sym_cmd_identifier_token39] = ACTIONS(1854), - [aux_sym_cmd_identifier_token40] = ACTIONS(1854), - [sym__newline] = ACTIONS(1854), - [anon_sym_SEMI] = ACTIONS(1854), - [anon_sym_PIPE] = ACTIONS(1854), - [anon_sym_err_GT_PIPE] = ACTIONS(1854), - [anon_sym_out_GT_PIPE] = ACTIONS(1854), - [anon_sym_e_GT_PIPE] = ACTIONS(1854), - [anon_sym_o_GT_PIPE] = ACTIONS(1854), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1854), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1854), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1854), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1854), - [anon_sym_LBRACK] = ACTIONS(1854), - [anon_sym_LPAREN] = ACTIONS(1854), - [anon_sym_DOLLAR] = ACTIONS(1852), - [anon_sym_DASH_DASH] = ACTIONS(1854), - [anon_sym_DASH] = ACTIONS(1852), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_DOT_DOT] = ACTIONS(1852), - [anon_sym_DOT] = ACTIONS(4680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1854), - [anon_sym_DOT_DOT_LT] = ACTIONS(1854), - [aux_sym__val_number_decimal_token1] = ACTIONS(1852), - [aux_sym__val_number_decimal_token2] = ACTIONS(1854), - [aux_sym__val_number_decimal_token3] = ACTIONS(1854), - [aux_sym__val_number_decimal_token4] = ACTIONS(1854), - [aux_sym__val_number_token1] = ACTIONS(1854), - [aux_sym__val_number_token2] = ACTIONS(1854), - [aux_sym__val_number_token3] = ACTIONS(1854), - [anon_sym_0b] = ACTIONS(1852), - [anon_sym_0o] = ACTIONS(1852), - [anon_sym_0x] = ACTIONS(1852), - [sym_val_date] = ACTIONS(1854), - [anon_sym_DQUOTE] = ACTIONS(1854), - [sym__str_single_quotes] = ACTIONS(1854), - [sym__str_back_ticks] = ACTIONS(1854), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1854), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1854), - [anon_sym_err_GT] = ACTIONS(1852), - [anon_sym_out_GT] = ACTIONS(1852), - [anon_sym_e_GT] = ACTIONS(1852), - [anon_sym_o_GT] = ACTIONS(1852), - [anon_sym_err_PLUSout_GT] = ACTIONS(1852), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1852), - [anon_sym_o_PLUSe_GT] = ACTIONS(1852), - [anon_sym_e_PLUSo_GT] = ACTIONS(1852), - [anon_sym_err_GT_GT] = ACTIONS(1854), - [anon_sym_out_GT_GT] = ACTIONS(1854), - [anon_sym_e_GT_GT] = ACTIONS(1854), - [anon_sym_o_GT_GT] = ACTIONS(1854), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1854), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1854), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1854), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1854), - [aux_sym_unquoted_token1] = ACTIONS(1852), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(1434), + [ts_builtin_sym_end] = ACTIONS(2011), + [anon_sym_true] = ACTIONS(2011), + [anon_sym_false] = ACTIONS(2011), + [anon_sym_null] = ACTIONS(2011), + [aux_sym_cmd_identifier_token38] = ACTIONS(2011), + [aux_sym_cmd_identifier_token39] = ACTIONS(2011), + [aux_sym_cmd_identifier_token40] = ACTIONS(2011), + [sym__newline] = ACTIONS(2011), + [anon_sym_SEMI] = ACTIONS(2011), + [anon_sym_PIPE] = ACTIONS(2011), + [anon_sym_err_GT_PIPE] = ACTIONS(2011), + [anon_sym_out_GT_PIPE] = ACTIONS(2011), + [anon_sym_e_GT_PIPE] = ACTIONS(2011), + [anon_sym_o_GT_PIPE] = ACTIONS(2011), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2011), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2011), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2011), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2011), + [anon_sym_LBRACK] = ACTIONS(2011), + [anon_sym_LPAREN] = ACTIONS(2011), + [anon_sym_DOLLAR] = ACTIONS(2009), + [anon_sym_DASH_DASH] = ACTIONS(2011), + [anon_sym_DASH] = ACTIONS(2009), + [anon_sym_LBRACE] = ACTIONS(2011), + [anon_sym_DOT_DOT] = ACTIONS(2009), + [anon_sym_DOT] = ACTIONS(4709), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2011), + [anon_sym_DOT_DOT_LT] = ACTIONS(2011), + [aux_sym__val_number_decimal_token1] = ACTIONS(2009), + [aux_sym__val_number_decimal_token2] = ACTIONS(2011), + [aux_sym__val_number_decimal_token3] = ACTIONS(2011), + [aux_sym__val_number_decimal_token4] = ACTIONS(2011), + [aux_sym__val_number_token1] = ACTIONS(2011), + [aux_sym__val_number_token2] = ACTIONS(2011), + [aux_sym__val_number_token3] = ACTIONS(2011), + [anon_sym_0b] = ACTIONS(2009), + [anon_sym_0o] = ACTIONS(2009), + [anon_sym_0x] = ACTIONS(2009), + [sym_val_date] = ACTIONS(2011), + [anon_sym_DQUOTE] = ACTIONS(2011), + [sym__str_single_quotes] = ACTIONS(2011), + [sym__str_back_ticks] = ACTIONS(2011), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2011), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2011), + [anon_sym_err_GT] = ACTIONS(2009), + [anon_sym_out_GT] = ACTIONS(2009), + [anon_sym_e_GT] = ACTIONS(2009), + [anon_sym_o_GT] = ACTIONS(2009), + [anon_sym_err_PLUSout_GT] = ACTIONS(2009), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2009), + [anon_sym_o_PLUSe_GT] = ACTIONS(2009), + [anon_sym_e_PLUSo_GT] = ACTIONS(2009), + [anon_sym_err_GT_GT] = ACTIONS(2011), + [anon_sym_out_GT_GT] = ACTIONS(2011), + [anon_sym_e_GT_GT] = ACTIONS(2011), + [anon_sym_o_GT_GT] = ACTIONS(2011), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2011), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2011), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2011), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2011), + [aux_sym_unquoted_token1] = ACTIONS(2009), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2011), }, [1397] = { - [sym_cell_path] = STATE(1859), - [sym_path] = STATE(1603), + [sym_cell_path] = STATE(1771), + [sym_path] = STATE(1589), [sym_comment] = STATE(1397), - [aux_sym_cell_path_repeat1] = STATE(1493), - [ts_builtin_sym_end] = ACTIONS(1858), - [anon_sym_true] = ACTIONS(1858), - [anon_sym_false] = ACTIONS(1858), - [anon_sym_null] = ACTIONS(1858), - [aux_sym_cmd_identifier_token38] = ACTIONS(1858), - [aux_sym_cmd_identifier_token39] = ACTIONS(1858), - [aux_sym_cmd_identifier_token40] = ACTIONS(1858), - [sym__newline] = ACTIONS(1858), - [anon_sym_SEMI] = ACTIONS(1858), - [anon_sym_PIPE] = ACTIONS(1858), - [anon_sym_err_GT_PIPE] = ACTIONS(1858), - [anon_sym_out_GT_PIPE] = ACTIONS(1858), - [anon_sym_e_GT_PIPE] = ACTIONS(1858), - [anon_sym_o_GT_PIPE] = ACTIONS(1858), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1858), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1858), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1858), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1858), - [anon_sym_LBRACK] = ACTIONS(1858), - [anon_sym_LPAREN] = ACTIONS(1858), - [anon_sym_DOLLAR] = ACTIONS(1856), - [anon_sym_DASH_DASH] = ACTIONS(1858), - [anon_sym_DASH] = ACTIONS(1856), - [anon_sym_LBRACE] = ACTIONS(1858), - [anon_sym_DOT_DOT] = ACTIONS(1856), - [anon_sym_DOT] = ACTIONS(4680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1858), - [anon_sym_DOT_DOT_LT] = ACTIONS(1858), - [aux_sym__val_number_decimal_token1] = ACTIONS(1856), - [aux_sym__val_number_decimal_token2] = ACTIONS(1858), - [aux_sym__val_number_decimal_token3] = ACTIONS(1858), - [aux_sym__val_number_decimal_token4] = ACTIONS(1858), - [aux_sym__val_number_token1] = ACTIONS(1858), - [aux_sym__val_number_token2] = ACTIONS(1858), - [aux_sym__val_number_token3] = ACTIONS(1858), - [anon_sym_0b] = ACTIONS(1856), - [anon_sym_0o] = ACTIONS(1856), - [anon_sym_0x] = ACTIONS(1856), - [sym_val_date] = ACTIONS(1858), - [anon_sym_DQUOTE] = ACTIONS(1858), - [sym__str_single_quotes] = ACTIONS(1858), - [sym__str_back_ticks] = ACTIONS(1858), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1858), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1858), - [anon_sym_err_GT] = ACTIONS(1856), - [anon_sym_out_GT] = ACTIONS(1856), - [anon_sym_e_GT] = ACTIONS(1856), - [anon_sym_o_GT] = ACTIONS(1856), - [anon_sym_err_PLUSout_GT] = ACTIONS(1856), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1856), - [anon_sym_o_PLUSe_GT] = ACTIONS(1856), - [anon_sym_e_PLUSo_GT] = ACTIONS(1856), - [anon_sym_err_GT_GT] = ACTIONS(1858), - [anon_sym_out_GT_GT] = ACTIONS(1858), - [anon_sym_e_GT_GT] = ACTIONS(1858), - [anon_sym_o_GT_GT] = ACTIONS(1858), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1858), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1858), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1858), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1858), - [aux_sym_unquoted_token1] = ACTIONS(1856), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(1434), + [ts_builtin_sym_end] = ACTIONS(2015), + [anon_sym_true] = ACTIONS(2015), + [anon_sym_false] = ACTIONS(2015), + [anon_sym_null] = ACTIONS(2015), + [aux_sym_cmd_identifier_token38] = ACTIONS(2015), + [aux_sym_cmd_identifier_token39] = ACTIONS(2015), + [aux_sym_cmd_identifier_token40] = ACTIONS(2015), + [sym__newline] = ACTIONS(2015), + [anon_sym_SEMI] = ACTIONS(2015), + [anon_sym_PIPE] = ACTIONS(2015), + [anon_sym_err_GT_PIPE] = ACTIONS(2015), + [anon_sym_out_GT_PIPE] = ACTIONS(2015), + [anon_sym_e_GT_PIPE] = ACTIONS(2015), + [anon_sym_o_GT_PIPE] = ACTIONS(2015), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2015), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2015), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2015), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2015), + [anon_sym_LBRACK] = ACTIONS(2015), + [anon_sym_LPAREN] = ACTIONS(2015), + [anon_sym_DOLLAR] = ACTIONS(2013), + [anon_sym_DASH_DASH] = ACTIONS(2015), + [anon_sym_DASH] = ACTIONS(2013), + [anon_sym_LBRACE] = ACTIONS(2015), + [anon_sym_DOT_DOT] = ACTIONS(2013), + [anon_sym_DOT] = ACTIONS(4709), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2015), + [anon_sym_DOT_DOT_LT] = ACTIONS(2015), + [aux_sym__val_number_decimal_token1] = ACTIONS(2013), + [aux_sym__val_number_decimal_token2] = ACTIONS(2015), + [aux_sym__val_number_decimal_token3] = ACTIONS(2015), + [aux_sym__val_number_decimal_token4] = ACTIONS(2015), + [aux_sym__val_number_token1] = ACTIONS(2015), + [aux_sym__val_number_token2] = ACTIONS(2015), + [aux_sym__val_number_token3] = ACTIONS(2015), + [anon_sym_0b] = ACTIONS(2013), + [anon_sym_0o] = ACTIONS(2013), + [anon_sym_0x] = ACTIONS(2013), + [sym_val_date] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(2015), + [sym__str_single_quotes] = ACTIONS(2015), + [sym__str_back_ticks] = ACTIONS(2015), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2015), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2015), + [anon_sym_err_GT] = ACTIONS(2013), + [anon_sym_out_GT] = ACTIONS(2013), + [anon_sym_e_GT] = ACTIONS(2013), + [anon_sym_o_GT] = ACTIONS(2013), + [anon_sym_err_PLUSout_GT] = ACTIONS(2013), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2013), + [anon_sym_o_PLUSe_GT] = ACTIONS(2013), + [anon_sym_e_PLUSo_GT] = ACTIONS(2013), + [anon_sym_err_GT_GT] = ACTIONS(2015), + [anon_sym_out_GT_GT] = ACTIONS(2015), + [anon_sym_e_GT_GT] = ACTIONS(2015), + [anon_sym_o_GT_GT] = ACTIONS(2015), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2015), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2015), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2015), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2015), + [aux_sym_unquoted_token1] = ACTIONS(2013), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2015), }, [1398] = { - [sym_cell_path] = STATE(1862), - [sym_path] = STATE(1603), [sym_comment] = STATE(1398), - [aux_sym_cell_path_repeat1] = STATE(1493), - [ts_builtin_sym_end] = ACTIONS(1862), - [anon_sym_true] = ACTIONS(1862), - [anon_sym_false] = ACTIONS(1862), - [anon_sym_null] = ACTIONS(1862), - [aux_sym_cmd_identifier_token38] = ACTIONS(1862), - [aux_sym_cmd_identifier_token39] = ACTIONS(1862), - [aux_sym_cmd_identifier_token40] = ACTIONS(1862), - [sym__newline] = ACTIONS(1862), - [anon_sym_SEMI] = ACTIONS(1862), - [anon_sym_PIPE] = ACTIONS(1862), - [anon_sym_err_GT_PIPE] = ACTIONS(1862), - [anon_sym_out_GT_PIPE] = ACTIONS(1862), - [anon_sym_e_GT_PIPE] = ACTIONS(1862), - [anon_sym_o_GT_PIPE] = ACTIONS(1862), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1862), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1862), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1862), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1862), - [anon_sym_LBRACK] = ACTIONS(1862), - [anon_sym_LPAREN] = ACTIONS(1862), - [anon_sym_DOLLAR] = ACTIONS(1860), - [anon_sym_DASH_DASH] = ACTIONS(1862), - [anon_sym_DASH] = ACTIONS(1860), - [anon_sym_LBRACE] = ACTIONS(1862), - [anon_sym_DOT_DOT] = ACTIONS(1860), - [anon_sym_DOT] = ACTIONS(4680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1862), - [anon_sym_DOT_DOT_LT] = ACTIONS(1862), - [aux_sym__val_number_decimal_token1] = ACTIONS(1860), - [aux_sym__val_number_decimal_token2] = ACTIONS(1862), - [aux_sym__val_number_decimal_token3] = ACTIONS(1862), - [aux_sym__val_number_decimal_token4] = ACTIONS(1862), - [aux_sym__val_number_token1] = ACTIONS(1862), - [aux_sym__val_number_token2] = ACTIONS(1862), - [aux_sym__val_number_token3] = ACTIONS(1862), - [anon_sym_0b] = ACTIONS(1860), - [anon_sym_0o] = ACTIONS(1860), - [anon_sym_0x] = ACTIONS(1860), - [sym_val_date] = ACTIONS(1862), - [anon_sym_DQUOTE] = ACTIONS(1862), - [sym__str_single_quotes] = ACTIONS(1862), - [sym__str_back_ticks] = ACTIONS(1862), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1862), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1862), - [anon_sym_err_GT] = ACTIONS(1860), - [anon_sym_out_GT] = ACTIONS(1860), - [anon_sym_e_GT] = ACTIONS(1860), - [anon_sym_o_GT] = ACTIONS(1860), - [anon_sym_err_PLUSout_GT] = ACTIONS(1860), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1860), - [anon_sym_o_PLUSe_GT] = ACTIONS(1860), - [anon_sym_e_PLUSo_GT] = ACTIONS(1860), - [anon_sym_err_GT_GT] = ACTIONS(1862), - [anon_sym_out_GT_GT] = ACTIONS(1862), - [anon_sym_e_GT_GT] = ACTIONS(1862), - [anon_sym_o_GT_GT] = ACTIONS(1862), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1862), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1862), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1862), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1862), - [aux_sym_unquoted_token1] = ACTIONS(1860), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cmd_identifier_token41] = ACTIONS(1536), + [sym__newline] = ACTIONS(1536), + [anon_sym_SEMI] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_err_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_GT_PIPE] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), + [anon_sym_RPAREN] = ACTIONS(1538), + [anon_sym_LBRACE] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1538), + [anon_sym_DOT_DOT2] = ACTIONS(1536), + [anon_sym_DOT] = ACTIONS(4804), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), + [aux_sym__immediate_decimal_token2] = ACTIONS(4806), + [sym_filesize_unit] = ACTIONS(1538), + [sym_duration_unit] = ACTIONS(1538), + [anon_sym_err_GT] = ACTIONS(1536), + [anon_sym_out_GT] = ACTIONS(1536), + [anon_sym_e_GT] = ACTIONS(1536), + [anon_sym_o_GT] = ACTIONS(1536), + [anon_sym_err_PLUSout_GT] = ACTIONS(1536), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), + [anon_sym_o_PLUSe_GT] = ACTIONS(1536), + [anon_sym_e_PLUSo_GT] = ACTIONS(1536), + [anon_sym_err_GT_GT] = ACTIONS(1538), + [anon_sym_out_GT_GT] = ACTIONS(1538), + [anon_sym_e_GT_GT] = ACTIONS(1538), + [anon_sym_o_GT_GT] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), + [anon_sym_POUND] = ACTIONS(249), }, [1399] = { - [sym_cell_path] = STATE(1878), - [sym_path] = STATE(1603), [sym_comment] = STATE(1399), - [aux_sym_cell_path_repeat1] = STATE(1493), - [ts_builtin_sym_end] = ACTIONS(1866), - [anon_sym_true] = ACTIONS(1866), - [anon_sym_false] = ACTIONS(1866), - [anon_sym_null] = ACTIONS(1866), - [aux_sym_cmd_identifier_token38] = ACTIONS(1866), - [aux_sym_cmd_identifier_token39] = ACTIONS(1866), - [aux_sym_cmd_identifier_token40] = ACTIONS(1866), - [sym__newline] = ACTIONS(1866), - [anon_sym_SEMI] = ACTIONS(1866), - [anon_sym_PIPE] = ACTIONS(1866), - [anon_sym_err_GT_PIPE] = ACTIONS(1866), - [anon_sym_out_GT_PIPE] = ACTIONS(1866), - [anon_sym_e_GT_PIPE] = ACTIONS(1866), - [anon_sym_o_GT_PIPE] = ACTIONS(1866), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1866), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1866), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1866), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1866), - [anon_sym_LBRACK] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(1866), - [anon_sym_DOLLAR] = ACTIONS(1864), - [anon_sym_DASH_DASH] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1864), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_DOT_DOT] = ACTIONS(1864), - [anon_sym_DOT] = ACTIONS(4680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1866), - [anon_sym_DOT_DOT_LT] = ACTIONS(1866), - [aux_sym__val_number_decimal_token1] = ACTIONS(1864), - [aux_sym__val_number_decimal_token2] = ACTIONS(1866), - [aux_sym__val_number_decimal_token3] = ACTIONS(1866), - [aux_sym__val_number_decimal_token4] = ACTIONS(1866), - [aux_sym__val_number_token1] = ACTIONS(1866), - [aux_sym__val_number_token2] = ACTIONS(1866), - [aux_sym__val_number_token3] = ACTIONS(1866), - [anon_sym_0b] = ACTIONS(1864), - [anon_sym_0o] = ACTIONS(1864), - [anon_sym_0x] = ACTIONS(1864), - [sym_val_date] = ACTIONS(1866), - [anon_sym_DQUOTE] = ACTIONS(1866), - [sym__str_single_quotes] = ACTIONS(1866), - [sym__str_back_ticks] = ACTIONS(1866), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1866), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1866), - [anon_sym_err_GT] = ACTIONS(1864), - [anon_sym_out_GT] = ACTIONS(1864), - [anon_sym_e_GT] = ACTIONS(1864), - [anon_sym_o_GT] = ACTIONS(1864), - [anon_sym_err_PLUSout_GT] = ACTIONS(1864), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1864), - [anon_sym_o_PLUSe_GT] = ACTIONS(1864), - [anon_sym_e_PLUSo_GT] = ACTIONS(1864), - [anon_sym_err_GT_GT] = ACTIONS(1866), - [anon_sym_out_GT_GT] = ACTIONS(1866), - [anon_sym_e_GT_GT] = ACTIONS(1866), - [anon_sym_o_GT_GT] = ACTIONS(1866), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1866), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1866), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1866), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1866), - [aux_sym_unquoted_token1] = ACTIONS(1864), - [anon_sym_POUND] = ACTIONS(247), + [sym__newline] = ACTIONS(1670), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_PIPE] = ACTIONS(1672), + [anon_sym_err_GT_PIPE] = ACTIONS(1672), + [anon_sym_out_GT_PIPE] = ACTIONS(1672), + [anon_sym_e_GT_PIPE] = ACTIONS(1672), + [anon_sym_o_GT_PIPE] = ACTIONS(1672), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1672), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1672), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1672), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DASH] = ACTIONS(1670), + [anon_sym_LBRACE] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(1672), + [anon_sym_EQ_GT] = ACTIONS(1672), + [aux_sym_expr_binary_token1] = ACTIONS(1672), + [aux_sym_expr_binary_token2] = ACTIONS(1672), + [aux_sym_expr_binary_token3] = ACTIONS(1672), + [aux_sym_expr_binary_token4] = ACTIONS(1672), + [aux_sym_expr_binary_token5] = ACTIONS(1672), + [aux_sym_expr_binary_token6] = ACTIONS(1672), + [aux_sym_expr_binary_token7] = ACTIONS(1672), + [aux_sym_expr_binary_token8] = ACTIONS(1672), + [aux_sym_expr_binary_token9] = ACTIONS(1672), + [aux_sym_expr_binary_token10] = ACTIONS(1672), + [aux_sym_expr_binary_token11] = ACTIONS(1672), + [aux_sym_expr_binary_token12] = ACTIONS(1672), + [aux_sym_expr_binary_token13] = ACTIONS(1672), + [aux_sym_expr_binary_token14] = ACTIONS(1672), + [aux_sym_expr_binary_token15] = ACTIONS(1672), + [aux_sym_expr_binary_token16] = ACTIONS(1672), + [aux_sym_expr_binary_token17] = ACTIONS(1672), + [aux_sym_expr_binary_token18] = ACTIONS(1672), + [aux_sym_expr_binary_token19] = ACTIONS(1672), + [aux_sym_expr_binary_token20] = ACTIONS(1672), + [aux_sym_expr_binary_token21] = ACTIONS(1672), + [aux_sym_expr_binary_token22] = ACTIONS(1672), + [aux_sym_expr_binary_token23] = ACTIONS(1672), + [aux_sym_expr_binary_token24] = ACTIONS(1672), + [aux_sym_expr_binary_token25] = ACTIONS(1672), + [aux_sym_expr_binary_token26] = ACTIONS(1672), + [aux_sym_expr_binary_token27] = ACTIONS(1672), + [aux_sym_expr_binary_token28] = ACTIONS(1672), + [anon_sym_DOT_DOT2] = ACTIONS(1670), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1672), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1672), + [aux_sym_record_entry_token1] = ACTIONS(1672), + [anon_sym_err_GT] = ACTIONS(1670), + [anon_sym_out_GT] = ACTIONS(1670), + [anon_sym_e_GT] = ACTIONS(1670), + [anon_sym_o_GT] = ACTIONS(1670), + [anon_sym_err_PLUSout_GT] = ACTIONS(1670), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1670), + [anon_sym_o_PLUSe_GT] = ACTIONS(1670), + [anon_sym_e_PLUSo_GT] = ACTIONS(1670), + [anon_sym_err_GT_GT] = ACTIONS(1672), + [anon_sym_out_GT_GT] = ACTIONS(1672), + [anon_sym_e_GT_GT] = ACTIONS(1672), + [anon_sym_o_GT_GT] = ACTIONS(1672), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1672), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1672), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1672), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1672), + [anon_sym_POUND] = ACTIONS(249), }, [1400] = { - [sym_cell_path] = STATE(1879), - [sym_path] = STATE(1603), + [sym__expr_parenthesized_immediate] = STATE(7791), [sym_comment] = STATE(1400), - [aux_sym_cell_path_repeat1] = STATE(1493), - [ts_builtin_sym_end] = ACTIONS(1870), - [anon_sym_true] = ACTIONS(1870), - [anon_sym_false] = ACTIONS(1870), - [anon_sym_null] = ACTIONS(1870), - [aux_sym_cmd_identifier_token38] = ACTIONS(1870), - [aux_sym_cmd_identifier_token39] = ACTIONS(1870), - [aux_sym_cmd_identifier_token40] = ACTIONS(1870), - [sym__newline] = ACTIONS(1870), - [anon_sym_SEMI] = ACTIONS(1870), - [anon_sym_PIPE] = ACTIONS(1870), - [anon_sym_err_GT_PIPE] = ACTIONS(1870), - [anon_sym_out_GT_PIPE] = ACTIONS(1870), - [anon_sym_e_GT_PIPE] = ACTIONS(1870), - [anon_sym_o_GT_PIPE] = ACTIONS(1870), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1870), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1870), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1870), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1870), - [anon_sym_LBRACK] = ACTIONS(1870), - [anon_sym_LPAREN] = ACTIONS(1870), - [anon_sym_DOLLAR] = ACTIONS(1868), - [anon_sym_DASH_DASH] = ACTIONS(1870), - [anon_sym_DASH] = ACTIONS(1868), - [anon_sym_LBRACE] = ACTIONS(1870), - [anon_sym_DOT_DOT] = ACTIONS(1868), - [anon_sym_DOT] = ACTIONS(4680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1870), - [anon_sym_DOT_DOT_LT] = ACTIONS(1870), - [aux_sym__val_number_decimal_token1] = ACTIONS(1868), - [aux_sym__val_number_decimal_token2] = ACTIONS(1870), - [aux_sym__val_number_decimal_token3] = ACTIONS(1870), - [aux_sym__val_number_decimal_token4] = ACTIONS(1870), - [aux_sym__val_number_token1] = ACTIONS(1870), - [aux_sym__val_number_token2] = ACTIONS(1870), - [aux_sym__val_number_token3] = ACTIONS(1870), - [anon_sym_0b] = ACTIONS(1868), - [anon_sym_0o] = ACTIONS(1868), - [anon_sym_0x] = ACTIONS(1868), - [sym_val_date] = ACTIONS(1870), - [anon_sym_DQUOTE] = ACTIONS(1870), - [sym__str_single_quotes] = ACTIONS(1870), - [sym__str_back_ticks] = ACTIONS(1870), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1870), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1870), - [anon_sym_err_GT] = ACTIONS(1868), - [anon_sym_out_GT] = ACTIONS(1868), - [anon_sym_e_GT] = ACTIONS(1868), - [anon_sym_o_GT] = ACTIONS(1868), - [anon_sym_err_PLUSout_GT] = ACTIONS(1868), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1868), - [anon_sym_o_PLUSe_GT] = ACTIONS(1868), - [anon_sym_e_PLUSo_GT] = ACTIONS(1868), - [anon_sym_err_GT_GT] = ACTIONS(1870), - [anon_sym_out_GT_GT] = ACTIONS(1870), - [anon_sym_e_GT_GT] = ACTIONS(1870), - [anon_sym_o_GT_GT] = ACTIONS(1870), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1870), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1870), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1870), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1870), - [aux_sym_unquoted_token1] = ACTIONS(1868), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(4808), + [anon_sym_false] = ACTIONS(4808), + [anon_sym_null] = ACTIONS(4808), + [aux_sym_cmd_identifier_token38] = ACTIONS(4808), + [aux_sym_cmd_identifier_token39] = ACTIONS(4808), + [aux_sym_cmd_identifier_token40] = ACTIONS(4808), + [sym__newline] = ACTIONS(4808), + [anon_sym_SEMI] = ACTIONS(4808), + [anon_sym_PIPE] = ACTIONS(4808), + [anon_sym_err_GT_PIPE] = ACTIONS(4808), + [anon_sym_out_GT_PIPE] = ACTIONS(4808), + [anon_sym_e_GT_PIPE] = ACTIONS(4808), + [anon_sym_o_GT_PIPE] = ACTIONS(4808), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4808), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4808), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4808), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4808), + [anon_sym_LBRACK] = ACTIONS(4808), + [anon_sym_LPAREN] = ACTIONS(4810), + [anon_sym_RPAREN] = ACTIONS(4808), + [anon_sym_DOLLAR] = ACTIONS(4810), + [anon_sym_DASH_DASH] = ACTIONS(4808), + [anon_sym_DASH] = ACTIONS(4810), + [anon_sym_LBRACE] = ACTIONS(4808), + [anon_sym_RBRACE] = ACTIONS(4808), + [anon_sym_DOT_DOT] = ACTIONS(4810), + [anon_sym_LPAREN2] = ACTIONS(4433), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4808), + [anon_sym_DOT_DOT_LT] = ACTIONS(4808), + [aux_sym__val_number_decimal_token1] = ACTIONS(4810), + [aux_sym__val_number_decimal_token2] = ACTIONS(4808), + [aux_sym__val_number_decimal_token3] = ACTIONS(4808), + [aux_sym__val_number_decimal_token4] = ACTIONS(4808), + [aux_sym__val_number_token1] = ACTIONS(4808), + [aux_sym__val_number_token2] = ACTIONS(4808), + [aux_sym__val_number_token3] = ACTIONS(4808), + [anon_sym_0b] = ACTIONS(4810), + [anon_sym_0o] = ACTIONS(4810), + [anon_sym_0x] = ACTIONS(4810), + [sym_val_date] = ACTIONS(4808), + [anon_sym_DQUOTE] = ACTIONS(4808), + [sym__str_single_quotes] = ACTIONS(4808), + [sym__str_back_ticks] = ACTIONS(4808), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4808), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4808), + [anon_sym_err_GT] = ACTIONS(4810), + [anon_sym_out_GT] = ACTIONS(4810), + [anon_sym_e_GT] = ACTIONS(4810), + [anon_sym_o_GT] = ACTIONS(4810), + [anon_sym_err_PLUSout_GT] = ACTIONS(4810), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4810), + [anon_sym_o_PLUSe_GT] = ACTIONS(4810), + [anon_sym_e_PLUSo_GT] = ACTIONS(4810), + [anon_sym_err_GT_GT] = ACTIONS(4808), + [anon_sym_out_GT_GT] = ACTIONS(4808), + [anon_sym_e_GT_GT] = ACTIONS(4808), + [anon_sym_o_GT_GT] = ACTIONS(4808), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4808), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4808), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4808), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4808), + [aux_sym_unquoted_token1] = ACTIONS(4810), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(4808), }, [1401] = { [sym_comment] = STATE(1401), - [anon_sym_true] = ACTIONS(4734), - [anon_sym_false] = ACTIONS(4734), - [anon_sym_null] = ACTIONS(4734), - [aux_sym_cmd_identifier_token38] = ACTIONS(4734), - [aux_sym_cmd_identifier_token39] = ACTIONS(4734), - [aux_sym_cmd_identifier_token40] = ACTIONS(4734), - [sym__newline] = ACTIONS(4734), - [anon_sym_SEMI] = ACTIONS(4734), - [anon_sym_PIPE] = ACTIONS(4734), - [anon_sym_err_GT_PIPE] = ACTIONS(4734), - [anon_sym_out_GT_PIPE] = ACTIONS(4734), - [anon_sym_e_GT_PIPE] = ACTIONS(4734), - [anon_sym_o_GT_PIPE] = ACTIONS(4734), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4734), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4734), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4734), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4734), - [anon_sym_LBRACK] = ACTIONS(4734), - [anon_sym_LPAREN] = ACTIONS(4734), - [anon_sym_RPAREN] = ACTIONS(4734), - [anon_sym_DOLLAR] = ACTIONS(4736), - [anon_sym_DASH_DASH] = ACTIONS(4734), - [anon_sym_DASH] = ACTIONS(4736), - [anon_sym_LBRACE] = ACTIONS(4734), - [anon_sym_RBRACE] = ACTIONS(4734), - [anon_sym_DOT_DOT] = ACTIONS(4736), - [anon_sym_DOT_DOT2] = ACTIONS(4716), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4736), - [anon_sym_DOT_DOT_LT] = ACTIONS(4736), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4718), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4718), - [aux_sym__val_number_decimal_token1] = ACTIONS(4736), - [aux_sym__val_number_decimal_token2] = ACTIONS(4734), - [aux_sym__val_number_decimal_token3] = ACTIONS(4734), - [aux_sym__val_number_decimal_token4] = ACTIONS(4734), - [aux_sym__val_number_token1] = ACTIONS(4734), - [aux_sym__val_number_token2] = ACTIONS(4734), - [aux_sym__val_number_token3] = ACTIONS(4734), - [anon_sym_0b] = ACTIONS(4736), - [anon_sym_0o] = ACTIONS(4736), - [anon_sym_0x] = ACTIONS(4736), - [sym_val_date] = ACTIONS(4734), - [anon_sym_DQUOTE] = ACTIONS(4734), - [sym__str_single_quotes] = ACTIONS(4734), - [sym__str_back_ticks] = ACTIONS(4734), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4734), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4734), - [anon_sym_err_GT] = ACTIONS(4736), - [anon_sym_out_GT] = ACTIONS(4736), - [anon_sym_e_GT] = ACTIONS(4736), - [anon_sym_o_GT] = ACTIONS(4736), - [anon_sym_err_PLUSout_GT] = ACTIONS(4736), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4736), - [anon_sym_o_PLUSe_GT] = ACTIONS(4736), - [anon_sym_e_PLUSo_GT] = ACTIONS(4736), - [anon_sym_err_GT_GT] = ACTIONS(4734), - [anon_sym_out_GT_GT] = ACTIONS(4734), - [anon_sym_e_GT_GT] = ACTIONS(4734), - [anon_sym_o_GT_GT] = ACTIONS(4734), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4734), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4734), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4734), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4734), - [aux_sym_unquoted_token1] = ACTIONS(4736), - [anon_sym_POUND] = ACTIONS(247), + [ts_builtin_sym_end] = ACTIONS(1672), + [anon_sym_true] = ACTIONS(1672), + [anon_sym_false] = ACTIONS(1672), + [anon_sym_null] = ACTIONS(1672), + [aux_sym_cmd_identifier_token38] = ACTIONS(1672), + [aux_sym_cmd_identifier_token39] = ACTIONS(1672), + [aux_sym_cmd_identifier_token40] = ACTIONS(1672), + [sym__newline] = ACTIONS(1672), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_PIPE] = ACTIONS(1672), + [anon_sym_err_GT_PIPE] = ACTIONS(1672), + [anon_sym_out_GT_PIPE] = ACTIONS(1672), + [anon_sym_e_GT_PIPE] = ACTIONS(1672), + [anon_sym_o_GT_PIPE] = ACTIONS(1672), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1672), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1672), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1672), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1672), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LPAREN] = ACTIONS(1672), + [anon_sym_DOLLAR] = ACTIONS(1670), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DASH] = ACTIONS(1670), + [anon_sym_LBRACE] = ACTIONS(1672), + [anon_sym_DOT_DOT] = ACTIONS(1670), + [anon_sym_DOT_DOT2] = ACTIONS(1670), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1670), + [anon_sym_DOT_DOT_LT] = ACTIONS(1670), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1672), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1672), + [aux_sym__val_number_decimal_token1] = ACTIONS(1670), + [aux_sym__val_number_decimal_token2] = ACTIONS(1672), + [aux_sym__val_number_decimal_token3] = ACTIONS(1672), + [aux_sym__val_number_decimal_token4] = ACTIONS(1672), + [aux_sym__val_number_token1] = ACTIONS(1672), + [aux_sym__val_number_token2] = ACTIONS(1672), + [aux_sym__val_number_token3] = ACTIONS(1672), + [anon_sym_0b] = ACTIONS(1670), + [anon_sym_0o] = ACTIONS(1670), + [anon_sym_0x] = ACTIONS(1670), + [sym_val_date] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1672), + [sym__str_single_quotes] = ACTIONS(1672), + [sym__str_back_ticks] = ACTIONS(1672), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1672), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1672), + [anon_sym_err_GT] = ACTIONS(1670), + [anon_sym_out_GT] = ACTIONS(1670), + [anon_sym_e_GT] = ACTIONS(1670), + [anon_sym_o_GT] = ACTIONS(1670), + [anon_sym_err_PLUSout_GT] = ACTIONS(1670), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1670), + [anon_sym_o_PLUSe_GT] = ACTIONS(1670), + [anon_sym_e_PLUSo_GT] = ACTIONS(1670), + [anon_sym_err_GT_GT] = ACTIONS(1672), + [anon_sym_out_GT_GT] = ACTIONS(1672), + [anon_sym_e_GT_GT] = ACTIONS(1672), + [anon_sym_o_GT_GT] = ACTIONS(1672), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1672), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1672), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1672), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1672), + [aux_sym_unquoted_token1] = ACTIONS(1670), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1672), }, [1402] = { - [sym__expr_parenthesized_immediate] = STATE(7224), + [sym__expr_parenthesized_immediate] = STATE(7791), [sym_comment] = STATE(1402), - [sym__newline] = ACTIONS(1560), - [anon_sym_SEMI] = ACTIONS(1572), - [anon_sym_PIPE] = ACTIONS(1572), - [anon_sym_err_GT_PIPE] = ACTIONS(1572), - [anon_sym_out_GT_PIPE] = ACTIONS(1572), - [anon_sym_e_GT_PIPE] = ACTIONS(1572), - [anon_sym_o_GT_PIPE] = ACTIONS(1572), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1572), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1572), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1572), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1572), - [anon_sym_RPAREN] = ACTIONS(1572), - [anon_sym_LPAREN2] = ACTIONS(3978), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1572), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1572), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1572), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1572), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1572), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1572), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1572), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1572), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1572), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1572), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1572), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1572), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1572), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1572), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1572), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1572), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1572), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1572), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1572), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1572), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1572), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1572), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1572), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1572), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1572), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1572), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1572), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1572), - [anon_sym_DOT_DOT2] = ACTIONS(4606), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4608), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4608), - [sym_filesize_unit] = ACTIONS(4738), - [sym_duration_unit] = ACTIONS(4740), - [anon_sym_err_GT] = ACTIONS(1560), - [anon_sym_out_GT] = ACTIONS(1560), - [anon_sym_e_GT] = ACTIONS(1560), - [anon_sym_o_GT] = ACTIONS(1560), - [anon_sym_err_PLUSout_GT] = ACTIONS(1560), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1560), - [anon_sym_o_PLUSe_GT] = ACTIONS(1560), - [anon_sym_e_PLUSo_GT] = ACTIONS(1560), - [anon_sym_err_GT_GT] = ACTIONS(1572), - [anon_sym_out_GT_GT] = ACTIONS(1572), - [anon_sym_e_GT_GT] = ACTIONS(1572), - [anon_sym_o_GT_GT] = ACTIONS(1572), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1572), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1572), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1572), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1572), - [aux_sym_unquoted_token2] = ACTIONS(4742), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(4812), + [anon_sym_false] = ACTIONS(4812), + [anon_sym_null] = ACTIONS(4812), + [aux_sym_cmd_identifier_token38] = ACTIONS(4812), + [aux_sym_cmd_identifier_token39] = ACTIONS(4812), + [aux_sym_cmd_identifier_token40] = ACTIONS(4812), + [sym__newline] = ACTIONS(4812), + [anon_sym_SEMI] = ACTIONS(4812), + [anon_sym_PIPE] = ACTIONS(4812), + [anon_sym_err_GT_PIPE] = ACTIONS(4812), + [anon_sym_out_GT_PIPE] = ACTIONS(4812), + [anon_sym_e_GT_PIPE] = ACTIONS(4812), + [anon_sym_o_GT_PIPE] = ACTIONS(4812), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4812), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4812), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4812), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4812), + [anon_sym_LBRACK] = ACTIONS(4812), + [anon_sym_LPAREN] = ACTIONS(4814), + [anon_sym_RPAREN] = ACTIONS(4812), + [anon_sym_DOLLAR] = ACTIONS(4814), + [anon_sym_DASH_DASH] = ACTIONS(4812), + [anon_sym_DASH] = ACTIONS(4814), + [anon_sym_LBRACE] = ACTIONS(4812), + [anon_sym_RBRACE] = ACTIONS(4812), + [anon_sym_DOT_DOT] = ACTIONS(4814), + [anon_sym_LPAREN2] = ACTIONS(4433), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4812), + [anon_sym_DOT_DOT_LT] = ACTIONS(4812), + [aux_sym__val_number_decimal_token1] = ACTIONS(4814), + [aux_sym__val_number_decimal_token2] = ACTIONS(4812), + [aux_sym__val_number_decimal_token3] = ACTIONS(4812), + [aux_sym__val_number_decimal_token4] = ACTIONS(4812), + [aux_sym__val_number_token1] = ACTIONS(4812), + [aux_sym__val_number_token2] = ACTIONS(4812), + [aux_sym__val_number_token3] = ACTIONS(4812), + [anon_sym_0b] = ACTIONS(4814), + [anon_sym_0o] = ACTIONS(4814), + [anon_sym_0x] = ACTIONS(4814), + [sym_val_date] = ACTIONS(4812), + [anon_sym_DQUOTE] = ACTIONS(4812), + [sym__str_single_quotes] = ACTIONS(4812), + [sym__str_back_ticks] = ACTIONS(4812), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4812), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4812), + [anon_sym_err_GT] = ACTIONS(4814), + [anon_sym_out_GT] = ACTIONS(4814), + [anon_sym_e_GT] = ACTIONS(4814), + [anon_sym_o_GT] = ACTIONS(4814), + [anon_sym_err_PLUSout_GT] = ACTIONS(4814), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4814), + [anon_sym_o_PLUSe_GT] = ACTIONS(4814), + [anon_sym_e_PLUSo_GT] = ACTIONS(4814), + [anon_sym_err_GT_GT] = ACTIONS(4812), + [anon_sym_out_GT_GT] = ACTIONS(4812), + [anon_sym_e_GT_GT] = ACTIONS(4812), + [anon_sym_o_GT_GT] = ACTIONS(4812), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4812), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4812), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4812), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4812), + [aux_sym_unquoted_token1] = ACTIONS(4814), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(4812), }, [1403] = { [sym_comment] = STATE(1403), - [ts_builtin_sym_end] = ACTIONS(1669), - [anon_sym_true] = ACTIONS(1669), - [anon_sym_false] = ACTIONS(1669), - [anon_sym_null] = ACTIONS(1669), - [aux_sym_cmd_identifier_token38] = ACTIONS(1669), - [aux_sym_cmd_identifier_token39] = ACTIONS(1669), - [aux_sym_cmd_identifier_token40] = ACTIONS(1669), - [sym__newline] = ACTIONS(1669), - [anon_sym_SEMI] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1669), - [anon_sym_err_GT_PIPE] = ACTIONS(1669), - [anon_sym_out_GT_PIPE] = ACTIONS(1669), - [anon_sym_e_GT_PIPE] = ACTIONS(1669), - [anon_sym_o_GT_PIPE] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), - [anon_sym_LBRACK] = ACTIONS(1669), - [anon_sym_LPAREN] = ACTIONS(1669), - [anon_sym_DOLLAR] = ACTIONS(1667), - [anon_sym_DASH_DASH] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_LBRACE] = ACTIONS(1669), - [anon_sym_DOT_DOT] = ACTIONS(1667), - [anon_sym_DOT_DOT2] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1667), - [anon_sym_DOT_DOT_LT] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [aux_sym__immediate_decimal_token2] = ACTIONS(4600), - [aux_sym__val_number_decimal_token1] = ACTIONS(1667), - [aux_sym__val_number_decimal_token2] = ACTIONS(1669), - [aux_sym__val_number_decimal_token3] = ACTIONS(1669), - [aux_sym__val_number_decimal_token4] = ACTIONS(1669), - [aux_sym__val_number_token1] = ACTIONS(1669), - [aux_sym__val_number_token2] = ACTIONS(1669), - [aux_sym__val_number_token3] = ACTIONS(1669), - [anon_sym_0b] = ACTIONS(1667), - [anon_sym_0o] = ACTIONS(1667), - [anon_sym_0x] = ACTIONS(1667), - [sym_val_date] = ACTIONS(1669), - [anon_sym_DQUOTE] = ACTIONS(1669), - [sym__str_single_quotes] = ACTIONS(1669), - [sym__str_back_ticks] = ACTIONS(1669), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1669), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1669), - [anon_sym_err_GT] = ACTIONS(1667), - [anon_sym_out_GT] = ACTIONS(1667), - [anon_sym_e_GT] = ACTIONS(1667), - [anon_sym_o_GT] = ACTIONS(1667), - [anon_sym_err_PLUSout_GT] = ACTIONS(1667), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1667), - [anon_sym_o_PLUSe_GT] = ACTIONS(1667), - [anon_sym_e_PLUSo_GT] = ACTIONS(1667), - [anon_sym_err_GT_GT] = ACTIONS(1669), - [anon_sym_out_GT_GT] = ACTIONS(1669), - [anon_sym_e_GT_GT] = ACTIONS(1669), - [anon_sym_o_GT_GT] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1669), - [aux_sym_unquoted_token1] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(247), + [ts_builtin_sym_end] = ACTIONS(1598), + [sym__newline] = ACTIONS(1598), + [anon_sym_SEMI] = ACTIONS(1598), + [anon_sym_PIPE] = ACTIONS(1598), + [anon_sym_err_GT_PIPE] = ACTIONS(1598), + [anon_sym_out_GT_PIPE] = ACTIONS(1598), + [anon_sym_e_GT_PIPE] = ACTIONS(1598), + [anon_sym_o_GT_PIPE] = ACTIONS(1598), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1598), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1598), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1598), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1598), + [anon_sym_LPAREN2] = ACTIONS(1598), + [aux_sym_expr_binary_token1] = ACTIONS(1598), + [aux_sym_expr_binary_token2] = ACTIONS(1598), + [aux_sym_expr_binary_token3] = ACTIONS(1598), + [aux_sym_expr_binary_token4] = ACTIONS(1598), + [aux_sym_expr_binary_token5] = ACTIONS(1598), + [aux_sym_expr_binary_token6] = ACTIONS(1598), + [aux_sym_expr_binary_token7] = ACTIONS(1598), + [aux_sym_expr_binary_token8] = ACTIONS(1598), + [aux_sym_expr_binary_token9] = ACTIONS(1598), + [aux_sym_expr_binary_token10] = ACTIONS(1598), + [aux_sym_expr_binary_token11] = ACTIONS(1598), + [aux_sym_expr_binary_token12] = ACTIONS(1598), + [aux_sym_expr_binary_token13] = ACTIONS(1598), + [aux_sym_expr_binary_token14] = ACTIONS(1598), + [aux_sym_expr_binary_token15] = ACTIONS(1598), + [aux_sym_expr_binary_token16] = ACTIONS(1598), + [aux_sym_expr_binary_token17] = ACTIONS(1598), + [aux_sym_expr_binary_token18] = ACTIONS(1598), + [aux_sym_expr_binary_token19] = ACTIONS(1598), + [aux_sym_expr_binary_token20] = ACTIONS(1598), + [aux_sym_expr_binary_token21] = ACTIONS(1598), + [aux_sym_expr_binary_token22] = ACTIONS(1598), + [aux_sym_expr_binary_token23] = ACTIONS(1598), + [aux_sym_expr_binary_token24] = ACTIONS(1598), + [aux_sym_expr_binary_token25] = ACTIONS(1598), + [aux_sym_expr_binary_token26] = ACTIONS(1598), + [aux_sym_expr_binary_token27] = ACTIONS(1598), + [aux_sym_expr_binary_token28] = ACTIONS(1598), + [anon_sym_DOT_DOT2] = ACTIONS(1596), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1598), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1598), + [aux_sym__immediate_decimal_token2] = ACTIONS(4816), + [sym_filesize_unit] = ACTIONS(1598), + [sym_duration_unit] = ACTIONS(1598), + [anon_sym_err_GT] = ACTIONS(1596), + [anon_sym_out_GT] = ACTIONS(1596), + [anon_sym_e_GT] = ACTIONS(1596), + [anon_sym_o_GT] = ACTIONS(1596), + [anon_sym_err_PLUSout_GT] = ACTIONS(1596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1596), + [anon_sym_o_PLUSe_GT] = ACTIONS(1596), + [anon_sym_e_PLUSo_GT] = ACTIONS(1596), + [anon_sym_err_GT_GT] = ACTIONS(1598), + [anon_sym_out_GT_GT] = ACTIONS(1598), + [anon_sym_e_GT_GT] = ACTIONS(1598), + [anon_sym_o_GT_GT] = ACTIONS(1598), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1598), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1598), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1598), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1598), + [aux_sym_unquoted_token2] = ACTIONS(1596), + [anon_sym_POUND] = ACTIONS(249), }, [1404] = { - [sym_cell_path] = STATE(1881), - [sym_path] = STATE(1603), + [sym_cell_path] = STATE(1996), + [sym_path] = STATE(1247), [sym_comment] = STATE(1404), - [aux_sym_cell_path_repeat1] = STATE(1493), - [ts_builtin_sym_end] = ACTIONS(1874), - [anon_sym_true] = ACTIONS(1874), - [anon_sym_false] = ACTIONS(1874), - [anon_sym_null] = ACTIONS(1874), - [aux_sym_cmd_identifier_token38] = ACTIONS(1874), - [aux_sym_cmd_identifier_token39] = ACTIONS(1874), - [aux_sym_cmd_identifier_token40] = ACTIONS(1874), - [sym__newline] = ACTIONS(1874), - [anon_sym_SEMI] = ACTIONS(1874), - [anon_sym_PIPE] = ACTIONS(1874), - [anon_sym_err_GT_PIPE] = ACTIONS(1874), - [anon_sym_out_GT_PIPE] = ACTIONS(1874), - [anon_sym_e_GT_PIPE] = ACTIONS(1874), - [anon_sym_o_GT_PIPE] = ACTIONS(1874), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1874), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1874), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1874), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1874), - [anon_sym_LBRACK] = ACTIONS(1874), - [anon_sym_LPAREN] = ACTIONS(1874), - [anon_sym_DOLLAR] = ACTIONS(1872), - [anon_sym_DASH_DASH] = ACTIONS(1874), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_LBRACE] = ACTIONS(1874), - [anon_sym_DOT_DOT] = ACTIONS(1872), - [anon_sym_DOT] = ACTIONS(4680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1874), - [anon_sym_DOT_DOT_LT] = ACTIONS(1874), - [aux_sym__val_number_decimal_token1] = ACTIONS(1872), - [aux_sym__val_number_decimal_token2] = ACTIONS(1874), - [aux_sym__val_number_decimal_token3] = ACTIONS(1874), - [aux_sym__val_number_decimal_token4] = ACTIONS(1874), - [aux_sym__val_number_token1] = ACTIONS(1874), - [aux_sym__val_number_token2] = ACTIONS(1874), - [aux_sym__val_number_token3] = ACTIONS(1874), - [anon_sym_0b] = ACTIONS(1872), - [anon_sym_0o] = ACTIONS(1872), - [anon_sym_0x] = ACTIONS(1872), - [sym_val_date] = ACTIONS(1874), - [anon_sym_DQUOTE] = ACTIONS(1874), - [sym__str_single_quotes] = ACTIONS(1874), - [sym__str_back_ticks] = ACTIONS(1874), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1874), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1874), - [anon_sym_err_GT] = ACTIONS(1872), - [anon_sym_out_GT] = ACTIONS(1872), - [anon_sym_e_GT] = ACTIONS(1872), - [anon_sym_o_GT] = ACTIONS(1872), - [anon_sym_err_PLUSout_GT] = ACTIONS(1872), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1872), - [anon_sym_o_PLUSe_GT] = ACTIONS(1872), - [anon_sym_e_PLUSo_GT] = ACTIONS(1872), - [anon_sym_err_GT_GT] = ACTIONS(1874), - [anon_sym_out_GT_GT] = ACTIONS(1874), - [anon_sym_e_GT_GT] = ACTIONS(1874), - [anon_sym_o_GT_GT] = ACTIONS(1874), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1874), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1874), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1874), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1874), - [aux_sym_unquoted_token1] = ACTIONS(1872), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(1202), + [sym__newline] = ACTIONS(1668), + [anon_sym_SEMI] = ACTIONS(1668), + [anon_sym_PIPE] = ACTIONS(1668), + [anon_sym_err_GT_PIPE] = ACTIONS(1668), + [anon_sym_out_GT_PIPE] = ACTIONS(1668), + [anon_sym_e_GT_PIPE] = ACTIONS(1668), + [anon_sym_o_GT_PIPE] = ACTIONS(1668), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1668), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1668), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1668), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1668), + [anon_sym_RPAREN] = ACTIONS(1668), + [anon_sym_RBRACE] = ACTIONS(1668), + [aux_sym_expr_binary_token1] = ACTIONS(1668), + [aux_sym_expr_binary_token2] = ACTIONS(1668), + [aux_sym_expr_binary_token3] = ACTIONS(1668), + [aux_sym_expr_binary_token4] = ACTIONS(1668), + [aux_sym_expr_binary_token5] = ACTIONS(1668), + [aux_sym_expr_binary_token6] = ACTIONS(1668), + [aux_sym_expr_binary_token7] = ACTIONS(1668), + [aux_sym_expr_binary_token8] = ACTIONS(1668), + [aux_sym_expr_binary_token9] = ACTIONS(1668), + [aux_sym_expr_binary_token10] = ACTIONS(1668), + [aux_sym_expr_binary_token11] = ACTIONS(1668), + [aux_sym_expr_binary_token12] = ACTIONS(1668), + [aux_sym_expr_binary_token13] = ACTIONS(1668), + [aux_sym_expr_binary_token14] = ACTIONS(1668), + [aux_sym_expr_binary_token15] = ACTIONS(1668), + [aux_sym_expr_binary_token16] = ACTIONS(1668), + [aux_sym_expr_binary_token17] = ACTIONS(1668), + [aux_sym_expr_binary_token18] = ACTIONS(1668), + [aux_sym_expr_binary_token19] = ACTIONS(1668), + [aux_sym_expr_binary_token20] = ACTIONS(1668), + [aux_sym_expr_binary_token21] = ACTIONS(1668), + [aux_sym_expr_binary_token22] = ACTIONS(1668), + [aux_sym_expr_binary_token23] = ACTIONS(1668), + [aux_sym_expr_binary_token24] = ACTIONS(1668), + [aux_sym_expr_binary_token25] = ACTIONS(1668), + [aux_sym_expr_binary_token26] = ACTIONS(1668), + [aux_sym_expr_binary_token27] = ACTIONS(1668), + [aux_sym_expr_binary_token28] = ACTIONS(1668), + [anon_sym_DOT_DOT2] = ACTIONS(1664), + [anon_sym_DOT] = ACTIONS(4143), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1668), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1668), + [anon_sym_err_GT] = ACTIONS(1664), + [anon_sym_out_GT] = ACTIONS(1664), + [anon_sym_e_GT] = ACTIONS(1664), + [anon_sym_o_GT] = ACTIONS(1664), + [anon_sym_err_PLUSout_GT] = ACTIONS(1664), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1664), + [anon_sym_o_PLUSe_GT] = ACTIONS(1664), + [anon_sym_e_PLUSo_GT] = ACTIONS(1664), + [anon_sym_err_GT_GT] = ACTIONS(1668), + [anon_sym_out_GT_GT] = ACTIONS(1668), + [anon_sym_e_GT_GT] = ACTIONS(1668), + [anon_sym_o_GT_GT] = ACTIONS(1668), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1668), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1668), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1668), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1668), + [anon_sym_POUND] = ACTIONS(249), }, [1405] = { - [sym_cell_path] = STATE(1882), - [sym_path] = STATE(1603), [sym_comment] = STATE(1405), - [aux_sym_cell_path_repeat1] = STATE(1493), - [ts_builtin_sym_end] = ACTIONS(1878), - [anon_sym_true] = ACTIONS(1878), - [anon_sym_false] = ACTIONS(1878), - [anon_sym_null] = ACTIONS(1878), - [aux_sym_cmd_identifier_token38] = ACTIONS(1878), - [aux_sym_cmd_identifier_token39] = ACTIONS(1878), - [aux_sym_cmd_identifier_token40] = ACTIONS(1878), - [sym__newline] = ACTIONS(1878), - [anon_sym_SEMI] = ACTIONS(1878), - [anon_sym_PIPE] = ACTIONS(1878), - [anon_sym_err_GT_PIPE] = ACTIONS(1878), - [anon_sym_out_GT_PIPE] = ACTIONS(1878), - [anon_sym_e_GT_PIPE] = ACTIONS(1878), - [anon_sym_o_GT_PIPE] = ACTIONS(1878), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1878), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1878), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1878), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1878), - [anon_sym_LBRACK] = ACTIONS(1878), - [anon_sym_LPAREN] = ACTIONS(1878), - [anon_sym_DOLLAR] = ACTIONS(1876), - [anon_sym_DASH_DASH] = ACTIONS(1878), - [anon_sym_DASH] = ACTIONS(1876), - [anon_sym_LBRACE] = ACTIONS(1878), - [anon_sym_DOT_DOT] = ACTIONS(1876), - [anon_sym_DOT] = ACTIONS(4680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1878), - [anon_sym_DOT_DOT_LT] = ACTIONS(1878), - [aux_sym__val_number_decimal_token1] = ACTIONS(1876), - [aux_sym__val_number_decimal_token2] = ACTIONS(1878), - [aux_sym__val_number_decimal_token3] = ACTIONS(1878), - [aux_sym__val_number_decimal_token4] = ACTIONS(1878), - [aux_sym__val_number_token1] = ACTIONS(1878), - [aux_sym__val_number_token2] = ACTIONS(1878), - [aux_sym__val_number_token3] = ACTIONS(1878), - [anon_sym_0b] = ACTIONS(1876), - [anon_sym_0o] = ACTIONS(1876), - [anon_sym_0x] = ACTIONS(1876), - [sym_val_date] = ACTIONS(1878), - [anon_sym_DQUOTE] = ACTIONS(1878), - [sym__str_single_quotes] = ACTIONS(1878), - [sym__str_back_ticks] = ACTIONS(1878), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1878), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1878), - [anon_sym_err_GT] = ACTIONS(1876), - [anon_sym_out_GT] = ACTIONS(1876), - [anon_sym_e_GT] = ACTIONS(1876), - [anon_sym_o_GT] = ACTIONS(1876), - [anon_sym_err_PLUSout_GT] = ACTIONS(1876), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1876), - [anon_sym_o_PLUSe_GT] = ACTIONS(1876), - [anon_sym_e_PLUSo_GT] = ACTIONS(1876), - [anon_sym_err_GT_GT] = ACTIONS(1878), - [anon_sym_out_GT_GT] = ACTIONS(1878), - [anon_sym_e_GT_GT] = ACTIONS(1878), - [anon_sym_o_GT_GT] = ACTIONS(1878), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1878), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1878), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1878), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1878), - [aux_sym_unquoted_token1] = ACTIONS(1876), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cmd_identifier_token41] = ACTIONS(1536), + [sym__newline] = ACTIONS(1536), + [anon_sym_SEMI] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_err_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_GT_PIPE] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), + [anon_sym_RPAREN] = ACTIONS(1538), + [anon_sym_LBRACE] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1538), + [anon_sym_DOT_DOT2] = ACTIONS(1536), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), + [aux_sym__immediate_decimal_token2] = ACTIONS(4806), + [sym_filesize_unit] = ACTIONS(1538), + [sym_duration_unit] = ACTIONS(1538), + [anon_sym_err_GT] = ACTIONS(1536), + [anon_sym_out_GT] = ACTIONS(1536), + [anon_sym_e_GT] = ACTIONS(1536), + [anon_sym_o_GT] = ACTIONS(1536), + [anon_sym_err_PLUSout_GT] = ACTIONS(1536), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), + [anon_sym_o_PLUSe_GT] = ACTIONS(1536), + [anon_sym_e_PLUSo_GT] = ACTIONS(1536), + [anon_sym_err_GT_GT] = ACTIONS(1538), + [anon_sym_out_GT_GT] = ACTIONS(1538), + [anon_sym_e_GT_GT] = ACTIONS(1538), + [anon_sym_o_GT_GT] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), + [anon_sym_POUND] = ACTIONS(249), }, [1406] = { - [sym_cell_path] = STATE(1890), - [sym_path] = STATE(1603), [sym_comment] = STATE(1406), - [aux_sym_cell_path_repeat1] = STATE(1493), - [ts_builtin_sym_end] = ACTIONS(1882), - [anon_sym_true] = ACTIONS(1882), - [anon_sym_false] = ACTIONS(1882), - [anon_sym_null] = ACTIONS(1882), - [aux_sym_cmd_identifier_token38] = ACTIONS(1882), - [aux_sym_cmd_identifier_token39] = ACTIONS(1882), - [aux_sym_cmd_identifier_token40] = ACTIONS(1882), - [sym__newline] = ACTIONS(1882), - [anon_sym_SEMI] = ACTIONS(1882), - [anon_sym_PIPE] = ACTIONS(1882), - [anon_sym_err_GT_PIPE] = ACTIONS(1882), - [anon_sym_out_GT_PIPE] = ACTIONS(1882), - [anon_sym_e_GT_PIPE] = ACTIONS(1882), - [anon_sym_o_GT_PIPE] = ACTIONS(1882), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1882), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1882), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1882), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1882), - [anon_sym_LBRACK] = ACTIONS(1882), - [anon_sym_LPAREN] = ACTIONS(1882), - [anon_sym_DOLLAR] = ACTIONS(1880), - [anon_sym_DASH_DASH] = ACTIONS(1882), - [anon_sym_DASH] = ACTIONS(1880), - [anon_sym_LBRACE] = ACTIONS(1882), - [anon_sym_DOT_DOT] = ACTIONS(1880), - [anon_sym_DOT] = ACTIONS(4680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1882), - [anon_sym_DOT_DOT_LT] = ACTIONS(1882), - [aux_sym__val_number_decimal_token1] = ACTIONS(1880), - [aux_sym__val_number_decimal_token2] = ACTIONS(1882), - [aux_sym__val_number_decimal_token3] = ACTIONS(1882), - [aux_sym__val_number_decimal_token4] = ACTIONS(1882), - [aux_sym__val_number_token1] = ACTIONS(1882), - [aux_sym__val_number_token2] = ACTIONS(1882), - [aux_sym__val_number_token3] = ACTIONS(1882), - [anon_sym_0b] = ACTIONS(1880), - [anon_sym_0o] = ACTIONS(1880), - [anon_sym_0x] = ACTIONS(1880), - [sym_val_date] = ACTIONS(1882), - [anon_sym_DQUOTE] = ACTIONS(1882), - [sym__str_single_quotes] = ACTIONS(1882), - [sym__str_back_ticks] = ACTIONS(1882), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1882), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1882), - [anon_sym_err_GT] = ACTIONS(1880), - [anon_sym_out_GT] = ACTIONS(1880), - [anon_sym_e_GT] = ACTIONS(1880), - [anon_sym_o_GT] = ACTIONS(1880), - [anon_sym_err_PLUSout_GT] = ACTIONS(1880), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1880), - [anon_sym_o_PLUSe_GT] = ACTIONS(1880), - [anon_sym_e_PLUSo_GT] = ACTIONS(1880), - [anon_sym_err_GT_GT] = ACTIONS(1882), - [anon_sym_out_GT_GT] = ACTIONS(1882), - [anon_sym_e_GT_GT] = ACTIONS(1882), - [anon_sym_o_GT_GT] = ACTIONS(1882), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1882), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1882), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1882), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1882), - [aux_sym_unquoted_token1] = ACTIONS(1880), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(1705), + [anon_sym_false] = ACTIONS(1705), + [anon_sym_null] = ACTIONS(1705), + [aux_sym_cmd_identifier_token38] = ACTIONS(1705), + [aux_sym_cmd_identifier_token39] = ACTIONS(1705), + [aux_sym_cmd_identifier_token40] = ACTIONS(1705), + [sym__newline] = ACTIONS(1705), + [anon_sym_SEMI] = ACTIONS(1705), + [anon_sym_PIPE] = ACTIONS(1705), + [anon_sym_err_GT_PIPE] = ACTIONS(1705), + [anon_sym_out_GT_PIPE] = ACTIONS(1705), + [anon_sym_e_GT_PIPE] = ACTIONS(1705), + [anon_sym_o_GT_PIPE] = ACTIONS(1705), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1705), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1705), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1705), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1705), + [anon_sym_LBRACK] = ACTIONS(1705), + [anon_sym_LPAREN] = ACTIONS(1705), + [anon_sym_RPAREN] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1703), + [anon_sym_DASH_DASH] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_LBRACE] = ACTIONS(1705), + [anon_sym_RBRACE] = ACTIONS(1705), + [anon_sym_DOT_DOT] = ACTIONS(1703), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1705), + [anon_sym_DOT_DOT_LT] = ACTIONS(1705), + [aux_sym__immediate_decimal_token1] = ACTIONS(4818), + [aux_sym__immediate_decimal_token2] = ACTIONS(4820), + [aux_sym__val_number_decimal_token1] = ACTIONS(1703), + [aux_sym__val_number_decimal_token2] = ACTIONS(1705), + [aux_sym__val_number_decimal_token3] = ACTIONS(1705), + [aux_sym__val_number_decimal_token4] = ACTIONS(1705), + [aux_sym__val_number_token1] = ACTIONS(1705), + [aux_sym__val_number_token2] = ACTIONS(1705), + [aux_sym__val_number_token3] = ACTIONS(1705), + [anon_sym_0b] = ACTIONS(1703), + [anon_sym_0o] = ACTIONS(1703), + [anon_sym_0x] = ACTIONS(1703), + [sym_val_date] = ACTIONS(1705), + [anon_sym_DQUOTE] = ACTIONS(1705), + [sym__str_single_quotes] = ACTIONS(1705), + [sym__str_back_ticks] = ACTIONS(1705), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1705), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1705), + [anon_sym_err_GT] = ACTIONS(1703), + [anon_sym_out_GT] = ACTIONS(1703), + [anon_sym_e_GT] = ACTIONS(1703), + [anon_sym_o_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT] = ACTIONS(1703), + [anon_sym_err_GT_GT] = ACTIONS(1705), + [anon_sym_out_GT_GT] = ACTIONS(1705), + [anon_sym_e_GT_GT] = ACTIONS(1705), + [anon_sym_o_GT_GT] = ACTIONS(1705), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1705), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1705), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1705), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1705), + [aux_sym_unquoted_token1] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1705), }, [1407] = { - [sym_cell_path] = STATE(1903), - [sym_path] = STATE(1603), [sym_comment] = STATE(1407), - [aux_sym_cell_path_repeat1] = STATE(1493), - [ts_builtin_sym_end] = ACTIONS(1886), - [anon_sym_true] = ACTIONS(1886), - [anon_sym_false] = ACTIONS(1886), - [anon_sym_null] = ACTIONS(1886), - [aux_sym_cmd_identifier_token38] = ACTIONS(1886), - [aux_sym_cmd_identifier_token39] = ACTIONS(1886), - [aux_sym_cmd_identifier_token40] = ACTIONS(1886), - [sym__newline] = ACTIONS(1886), - [anon_sym_SEMI] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1886), - [anon_sym_err_GT_PIPE] = ACTIONS(1886), - [anon_sym_out_GT_PIPE] = ACTIONS(1886), - [anon_sym_e_GT_PIPE] = ACTIONS(1886), - [anon_sym_o_GT_PIPE] = ACTIONS(1886), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1886), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1886), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1886), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1886), - [anon_sym_LBRACK] = ACTIONS(1886), - [anon_sym_LPAREN] = ACTIONS(1886), - [anon_sym_DOLLAR] = ACTIONS(1884), - [anon_sym_DASH_DASH] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1884), - [anon_sym_LBRACE] = ACTIONS(1886), - [anon_sym_DOT_DOT] = ACTIONS(1884), - [anon_sym_DOT] = ACTIONS(4680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1886), - [anon_sym_DOT_DOT_LT] = ACTIONS(1886), - [aux_sym__val_number_decimal_token1] = ACTIONS(1884), - [aux_sym__val_number_decimal_token2] = ACTIONS(1886), - [aux_sym__val_number_decimal_token3] = ACTIONS(1886), - [aux_sym__val_number_decimal_token4] = ACTIONS(1886), - [aux_sym__val_number_token1] = ACTIONS(1886), - [aux_sym__val_number_token2] = ACTIONS(1886), - [aux_sym__val_number_token3] = ACTIONS(1886), - [anon_sym_0b] = ACTIONS(1884), - [anon_sym_0o] = ACTIONS(1884), - [anon_sym_0x] = ACTIONS(1884), - [sym_val_date] = ACTIONS(1886), - [anon_sym_DQUOTE] = ACTIONS(1886), - [sym__str_single_quotes] = ACTIONS(1886), - [sym__str_back_ticks] = ACTIONS(1886), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1886), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1886), - [anon_sym_err_GT] = ACTIONS(1884), - [anon_sym_out_GT] = ACTIONS(1884), - [anon_sym_e_GT] = ACTIONS(1884), - [anon_sym_o_GT] = ACTIONS(1884), - [anon_sym_err_PLUSout_GT] = ACTIONS(1884), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1884), - [anon_sym_o_PLUSe_GT] = ACTIONS(1884), - [anon_sym_e_PLUSo_GT] = ACTIONS(1884), - [anon_sym_err_GT_GT] = ACTIONS(1886), - [anon_sym_out_GT_GT] = ACTIONS(1886), - [anon_sym_e_GT_GT] = ACTIONS(1886), - [anon_sym_o_GT_GT] = ACTIONS(1886), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1886), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1886), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1886), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1886), - [aux_sym_unquoted_token1] = ACTIONS(1884), - [anon_sym_POUND] = ACTIONS(247), + [ts_builtin_sym_end] = ACTIONS(2107), + [anon_sym_true] = ACTIONS(2107), + [anon_sym_false] = ACTIONS(2107), + [anon_sym_null] = ACTIONS(2107), + [aux_sym_cmd_identifier_token38] = ACTIONS(2107), + [aux_sym_cmd_identifier_token39] = ACTIONS(2107), + [aux_sym_cmd_identifier_token40] = ACTIONS(2107), + [sym__newline] = ACTIONS(2107), + [anon_sym_SEMI] = ACTIONS(2107), + [anon_sym_PIPE] = ACTIONS(2107), + [anon_sym_err_GT_PIPE] = ACTIONS(2107), + [anon_sym_out_GT_PIPE] = ACTIONS(2107), + [anon_sym_e_GT_PIPE] = ACTIONS(2107), + [anon_sym_o_GT_PIPE] = ACTIONS(2107), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2107), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2107), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2107), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2107), + [anon_sym_LBRACK] = ACTIONS(2107), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_DOLLAR] = ACTIONS(2105), + [anon_sym_DASH_DASH] = ACTIONS(2107), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_LBRACE] = ACTIONS(2107), + [anon_sym_DOT_DOT] = ACTIONS(2105), + [anon_sym_DOT_DOT2] = ACTIONS(2105), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2105), + [anon_sym_DOT_DOT_LT] = ACTIONS(2105), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2107), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2107), + [aux_sym__val_number_decimal_token1] = ACTIONS(2105), + [aux_sym__val_number_decimal_token2] = ACTIONS(2107), + [aux_sym__val_number_decimal_token3] = ACTIONS(2107), + [aux_sym__val_number_decimal_token4] = ACTIONS(2107), + [aux_sym__val_number_token1] = ACTIONS(2107), + [aux_sym__val_number_token2] = ACTIONS(2107), + [aux_sym__val_number_token3] = ACTIONS(2107), + [anon_sym_0b] = ACTIONS(2105), + [anon_sym_0o] = ACTIONS(2105), + [anon_sym_0x] = ACTIONS(2105), + [sym_val_date] = ACTIONS(2107), + [anon_sym_DQUOTE] = ACTIONS(2107), + [sym__str_single_quotes] = ACTIONS(2107), + [sym__str_back_ticks] = ACTIONS(2107), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2107), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2107), + [anon_sym_err_GT] = ACTIONS(2105), + [anon_sym_out_GT] = ACTIONS(2105), + [anon_sym_e_GT] = ACTIONS(2105), + [anon_sym_o_GT] = ACTIONS(2105), + [anon_sym_err_PLUSout_GT] = ACTIONS(2105), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2105), + [anon_sym_o_PLUSe_GT] = ACTIONS(2105), + [anon_sym_e_PLUSo_GT] = ACTIONS(2105), + [anon_sym_err_GT_GT] = ACTIONS(2107), + [anon_sym_out_GT_GT] = ACTIONS(2107), + [anon_sym_e_GT_GT] = ACTIONS(2107), + [anon_sym_o_GT_GT] = ACTIONS(2107), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2107), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2107), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2107), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2107), + [aux_sym_unquoted_token1] = ACTIONS(2105), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2107), }, [1408] = { - [sym_path] = STATE(1551), + [sym__expr_parenthesized_immediate] = STATE(7580), [sym_comment] = STATE(1408), - [aux_sym_cell_path_repeat1] = STATE(1408), - [anon_sym_true] = ACTIONS(1017), - [anon_sym_false] = ACTIONS(1017), - [anon_sym_null] = ACTIONS(1017), - [aux_sym_cmd_identifier_token38] = ACTIONS(1017), - [aux_sym_cmd_identifier_token39] = ACTIONS(1017), - [aux_sym_cmd_identifier_token40] = ACTIONS(1017), - [sym__newline] = ACTIONS(1017), - [anon_sym_SEMI] = ACTIONS(1017), - [anon_sym_PIPE] = ACTIONS(1017), - [anon_sym_err_GT_PIPE] = ACTIONS(1017), - [anon_sym_out_GT_PIPE] = ACTIONS(1017), - [anon_sym_e_GT_PIPE] = ACTIONS(1017), - [anon_sym_o_GT_PIPE] = ACTIONS(1017), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1017), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1017), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1017), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1017), - [anon_sym_LBRACK] = ACTIONS(1017), - [anon_sym_LPAREN] = ACTIONS(1017), - [anon_sym_RPAREN] = ACTIONS(1017), - [anon_sym_DOLLAR] = ACTIONS(1015), - [anon_sym_DASH_DASH] = ACTIONS(1017), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_LBRACE] = ACTIONS(1017), - [anon_sym_RBRACE] = ACTIONS(1017), - [anon_sym_DOT_DOT] = ACTIONS(1015), - [anon_sym_DOT] = ACTIONS(4744), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1017), - [anon_sym_DOT_DOT_LT] = ACTIONS(1017), - [aux_sym__val_number_decimal_token1] = ACTIONS(1015), - [aux_sym__val_number_decimal_token2] = ACTIONS(1017), - [aux_sym__val_number_decimal_token3] = ACTIONS(1017), - [aux_sym__val_number_decimal_token4] = ACTIONS(1017), - [aux_sym__val_number_token1] = ACTIONS(1017), - [aux_sym__val_number_token2] = ACTIONS(1017), - [aux_sym__val_number_token3] = ACTIONS(1017), - [anon_sym_0b] = ACTIONS(1015), - [anon_sym_0o] = ACTIONS(1015), - [anon_sym_0x] = ACTIONS(1015), - [sym_val_date] = ACTIONS(1017), - [anon_sym_DQUOTE] = ACTIONS(1017), - [sym__str_single_quotes] = ACTIONS(1017), - [sym__str_back_ticks] = ACTIONS(1017), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1017), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1017), - [anon_sym_err_GT] = ACTIONS(1015), - [anon_sym_out_GT] = ACTIONS(1015), - [anon_sym_e_GT] = ACTIONS(1015), - [anon_sym_o_GT] = ACTIONS(1015), - [anon_sym_err_PLUSout_GT] = ACTIONS(1015), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1015), - [anon_sym_o_PLUSe_GT] = ACTIONS(1015), - [anon_sym_e_PLUSo_GT] = ACTIONS(1015), - [anon_sym_err_GT_GT] = ACTIONS(1017), - [anon_sym_out_GT_GT] = ACTIONS(1017), - [anon_sym_e_GT_GT] = ACTIONS(1017), - [anon_sym_o_GT_GT] = ACTIONS(1017), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1017), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1017), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1017), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1017), - [aux_sym_unquoted_token1] = ACTIONS(1015), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(4822), + [anon_sym_false] = ACTIONS(4822), + [anon_sym_null] = ACTIONS(4822), + [aux_sym_cmd_identifier_token38] = ACTIONS(4822), + [aux_sym_cmd_identifier_token39] = ACTIONS(4822), + [aux_sym_cmd_identifier_token40] = ACTIONS(4822), + [sym__newline] = ACTIONS(4822), + [anon_sym_SEMI] = ACTIONS(4822), + [anon_sym_PIPE] = ACTIONS(4822), + [anon_sym_err_GT_PIPE] = ACTIONS(4822), + [anon_sym_out_GT_PIPE] = ACTIONS(4822), + [anon_sym_e_GT_PIPE] = ACTIONS(4822), + [anon_sym_o_GT_PIPE] = ACTIONS(4822), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4822), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4822), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4822), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4822), + [anon_sym_LBRACK] = ACTIONS(4822), + [anon_sym_LPAREN] = ACTIONS(4824), + [anon_sym_RPAREN] = ACTIONS(4822), + [anon_sym_DOLLAR] = ACTIONS(4824), + [anon_sym_DASH_DASH] = ACTIONS(4822), + [anon_sym_DASH] = ACTIONS(4824), + [anon_sym_LBRACE] = ACTIONS(4822), + [anon_sym_RBRACE] = ACTIONS(4822), + [anon_sym_DOT_DOT] = ACTIONS(4824), + [anon_sym_LPAREN2] = ACTIONS(4433), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4822), + [anon_sym_DOT_DOT_LT] = ACTIONS(4822), + [aux_sym__val_number_decimal_token1] = ACTIONS(4824), + [aux_sym__val_number_decimal_token2] = ACTIONS(4822), + [aux_sym__val_number_decimal_token3] = ACTIONS(4822), + [aux_sym__val_number_decimal_token4] = ACTIONS(4822), + [aux_sym__val_number_token1] = ACTIONS(4822), + [aux_sym__val_number_token2] = ACTIONS(4822), + [aux_sym__val_number_token3] = ACTIONS(4822), + [anon_sym_0b] = ACTIONS(4824), + [anon_sym_0o] = ACTIONS(4824), + [anon_sym_0x] = ACTIONS(4824), + [sym_val_date] = ACTIONS(4822), + [anon_sym_DQUOTE] = ACTIONS(4822), + [sym__str_single_quotes] = ACTIONS(4822), + [sym__str_back_ticks] = ACTIONS(4822), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4822), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4822), + [anon_sym_err_GT] = ACTIONS(4824), + [anon_sym_out_GT] = ACTIONS(4824), + [anon_sym_e_GT] = ACTIONS(4824), + [anon_sym_o_GT] = ACTIONS(4824), + [anon_sym_err_PLUSout_GT] = ACTIONS(4824), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4824), + [anon_sym_o_PLUSe_GT] = ACTIONS(4824), + [anon_sym_e_PLUSo_GT] = ACTIONS(4824), + [anon_sym_err_GT_GT] = ACTIONS(4822), + [anon_sym_out_GT_GT] = ACTIONS(4822), + [anon_sym_e_GT_GT] = ACTIONS(4822), + [anon_sym_o_GT_GT] = ACTIONS(4822), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4822), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4822), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4822), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4822), + [aux_sym_unquoted_token1] = ACTIONS(4824), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(4822), }, [1409] = { - [sym_cell_path] = STATE(1908), - [sym_path] = STATE(1603), [sym_comment] = STATE(1409), - [aux_sym_cell_path_repeat1] = STATE(1493), - [ts_builtin_sym_end] = ACTIONS(1890), - [anon_sym_true] = ACTIONS(1890), - [anon_sym_false] = ACTIONS(1890), - [anon_sym_null] = ACTIONS(1890), - [aux_sym_cmd_identifier_token38] = ACTIONS(1890), - [aux_sym_cmd_identifier_token39] = ACTIONS(1890), - [aux_sym_cmd_identifier_token40] = ACTIONS(1890), - [sym__newline] = ACTIONS(1890), - [anon_sym_SEMI] = ACTIONS(1890), - [anon_sym_PIPE] = ACTIONS(1890), - [anon_sym_err_GT_PIPE] = ACTIONS(1890), - [anon_sym_out_GT_PIPE] = ACTIONS(1890), - [anon_sym_e_GT_PIPE] = ACTIONS(1890), - [anon_sym_o_GT_PIPE] = ACTIONS(1890), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1890), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1890), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1890), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1890), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_DOLLAR] = ACTIONS(1888), - [anon_sym_DASH_DASH] = ACTIONS(1890), - [anon_sym_DASH] = ACTIONS(1888), - [anon_sym_LBRACE] = ACTIONS(1890), - [anon_sym_DOT_DOT] = ACTIONS(1888), - [anon_sym_DOT] = ACTIONS(4680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1890), - [anon_sym_DOT_DOT_LT] = ACTIONS(1890), - [aux_sym__val_number_decimal_token1] = ACTIONS(1888), - [aux_sym__val_number_decimal_token2] = ACTIONS(1890), - [aux_sym__val_number_decimal_token3] = ACTIONS(1890), - [aux_sym__val_number_decimal_token4] = ACTIONS(1890), - [aux_sym__val_number_token1] = ACTIONS(1890), - [aux_sym__val_number_token2] = ACTIONS(1890), - [aux_sym__val_number_token3] = ACTIONS(1890), - [anon_sym_0b] = ACTIONS(1888), - [anon_sym_0o] = ACTIONS(1888), - [anon_sym_0x] = ACTIONS(1888), - [sym_val_date] = ACTIONS(1890), - [anon_sym_DQUOTE] = ACTIONS(1890), - [sym__str_single_quotes] = ACTIONS(1890), - [sym__str_back_ticks] = ACTIONS(1890), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1890), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1890), - [anon_sym_err_GT] = ACTIONS(1888), - [anon_sym_out_GT] = ACTIONS(1888), - [anon_sym_e_GT] = ACTIONS(1888), - [anon_sym_o_GT] = ACTIONS(1888), - [anon_sym_err_PLUSout_GT] = ACTIONS(1888), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1888), - [anon_sym_o_PLUSe_GT] = ACTIONS(1888), - [anon_sym_e_PLUSo_GT] = ACTIONS(1888), - [anon_sym_err_GT_GT] = ACTIONS(1890), - [anon_sym_out_GT_GT] = ACTIONS(1890), - [anon_sym_e_GT_GT] = ACTIONS(1890), - [anon_sym_o_GT_GT] = ACTIONS(1890), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1890), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1890), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1890), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1890), - [aux_sym_unquoted_token1] = ACTIONS(1888), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(1717), + [anon_sym_false] = ACTIONS(1717), + [anon_sym_null] = ACTIONS(1717), + [aux_sym_cmd_identifier_token38] = ACTIONS(1717), + [aux_sym_cmd_identifier_token39] = ACTIONS(1717), + [aux_sym_cmd_identifier_token40] = ACTIONS(1717), + [sym__newline] = ACTIONS(1717), + [anon_sym_SEMI] = ACTIONS(1717), + [anon_sym_PIPE] = ACTIONS(1717), + [anon_sym_err_GT_PIPE] = ACTIONS(1717), + [anon_sym_out_GT_PIPE] = ACTIONS(1717), + [anon_sym_e_GT_PIPE] = ACTIONS(1717), + [anon_sym_o_GT_PIPE] = ACTIONS(1717), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1717), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1717), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1717), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1717), + [anon_sym_LBRACK] = ACTIONS(1717), + [anon_sym_LPAREN] = ACTIONS(1715), + [anon_sym_RPAREN] = ACTIONS(1717), + [anon_sym_DOLLAR] = ACTIONS(1715), + [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_LBRACE] = ACTIONS(1717), + [anon_sym_RBRACE] = ACTIONS(1717), + [anon_sym_DOT_DOT] = ACTIONS(1715), + [anon_sym_LPAREN2] = ACTIONS(1717), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1717), + [anon_sym_DOT_DOT_LT] = ACTIONS(1717), + [aux_sym__val_number_decimal_token1] = ACTIONS(1715), + [aux_sym__val_number_decimal_token2] = ACTIONS(1717), + [aux_sym__val_number_decimal_token3] = ACTIONS(1717), + [aux_sym__val_number_decimal_token4] = ACTIONS(1717), + [aux_sym__val_number_token1] = ACTIONS(1717), + [aux_sym__val_number_token2] = ACTIONS(1717), + [aux_sym__val_number_token3] = ACTIONS(1717), + [anon_sym_0b] = ACTIONS(1715), + [anon_sym_0o] = ACTIONS(1715), + [anon_sym_0x] = ACTIONS(1715), + [sym_val_date] = ACTIONS(1717), + [anon_sym_DQUOTE] = ACTIONS(1717), + [sym__str_single_quotes] = ACTIONS(1717), + [sym__str_back_ticks] = ACTIONS(1717), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1717), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1717), + [anon_sym_err_GT] = ACTIONS(1715), + [anon_sym_out_GT] = ACTIONS(1715), + [anon_sym_e_GT] = ACTIONS(1715), + [anon_sym_o_GT] = ACTIONS(1715), + [anon_sym_err_PLUSout_GT] = ACTIONS(1715), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1715), + [anon_sym_o_PLUSe_GT] = ACTIONS(1715), + [anon_sym_e_PLUSo_GT] = ACTIONS(1715), + [anon_sym_err_GT_GT] = ACTIONS(1717), + [anon_sym_out_GT_GT] = ACTIONS(1717), + [anon_sym_e_GT_GT] = ACTIONS(1717), + [anon_sym_o_GT_GT] = ACTIONS(1717), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1717), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1717), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1717), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1717), + [aux_sym_unquoted_token1] = ACTIONS(1715), + [aux_sym_unquoted_token2] = ACTIONS(1715), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1717), }, [1410] = { [sym_comment] = STATE(1410), - [anon_sym_true] = ACTIONS(1060), - [anon_sym_false] = ACTIONS(1060), - [anon_sym_null] = ACTIONS(1060), - [aux_sym_cmd_identifier_token38] = ACTIONS(1060), - [aux_sym_cmd_identifier_token39] = ACTIONS(1060), - [aux_sym_cmd_identifier_token40] = ACTIONS(1060), - [sym__newline] = ACTIONS(1060), - [anon_sym_SEMI] = ACTIONS(1060), - [anon_sym_PIPE] = ACTIONS(1060), - [anon_sym_err_GT_PIPE] = ACTIONS(1060), - [anon_sym_out_GT_PIPE] = ACTIONS(1060), - [anon_sym_e_GT_PIPE] = ACTIONS(1060), - [anon_sym_o_GT_PIPE] = ACTIONS(1060), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1060), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1060), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1060), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1060), - [anon_sym_LBRACK] = ACTIONS(1060), - [anon_sym_LPAREN] = ACTIONS(1060), - [anon_sym_RPAREN] = ACTIONS(1060), - [anon_sym_DOLLAR] = ACTIONS(1058), - [anon_sym_DASH_DASH] = ACTIONS(1060), - [anon_sym_DASH] = ACTIONS(1058), - [anon_sym_LBRACE] = ACTIONS(1060), - [anon_sym_RBRACE] = ACTIONS(1060), - [anon_sym_DOT_DOT] = ACTIONS(1058), - [anon_sym_DOT_DOT2] = ACTIONS(1058), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1058), - [anon_sym_DOT_DOT_LT] = ACTIONS(1058), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1060), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1060), - [aux_sym__val_number_decimal_token1] = ACTIONS(1058), - [aux_sym__val_number_decimal_token2] = ACTIONS(1060), - [aux_sym__val_number_decimal_token3] = ACTIONS(1060), - [aux_sym__val_number_decimal_token4] = ACTIONS(1060), - [aux_sym__val_number_token1] = ACTIONS(1060), - [aux_sym__val_number_token2] = ACTIONS(1060), - [aux_sym__val_number_token3] = ACTIONS(1060), - [anon_sym_0b] = ACTIONS(1058), - [anon_sym_0o] = ACTIONS(1058), - [anon_sym_0x] = ACTIONS(1058), - [sym_val_date] = ACTIONS(1060), - [anon_sym_DQUOTE] = ACTIONS(1060), - [sym__str_single_quotes] = ACTIONS(1060), - [sym__str_back_ticks] = ACTIONS(1060), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1060), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1060), - [anon_sym_err_GT] = ACTIONS(1058), - [anon_sym_out_GT] = ACTIONS(1058), - [anon_sym_e_GT] = ACTIONS(1058), - [anon_sym_o_GT] = ACTIONS(1058), - [anon_sym_err_PLUSout_GT] = ACTIONS(1058), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1058), - [anon_sym_o_PLUSe_GT] = ACTIONS(1058), - [anon_sym_e_PLUSo_GT] = ACTIONS(1058), - [anon_sym_err_GT_GT] = ACTIONS(1060), - [anon_sym_out_GT_GT] = ACTIONS(1060), - [anon_sym_e_GT_GT] = ACTIONS(1060), - [anon_sym_o_GT_GT] = ACTIONS(1060), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1060), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1060), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1060), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1060), - [aux_sym_unquoted_token1] = ACTIONS(1058), - [anon_sym_POUND] = ACTIONS(247), + [ts_builtin_sym_end] = ACTIONS(2228), + [anon_sym_true] = ACTIONS(2228), + [anon_sym_false] = ACTIONS(2228), + [anon_sym_null] = ACTIONS(2228), + [aux_sym_cmd_identifier_token38] = ACTIONS(2228), + [aux_sym_cmd_identifier_token39] = ACTIONS(2228), + [aux_sym_cmd_identifier_token40] = ACTIONS(2228), + [sym__newline] = ACTIONS(2228), + [anon_sym_SEMI] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(2228), + [anon_sym_err_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_GT_PIPE] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2228), + [anon_sym_LBRACK] = ACTIONS(2228), + [anon_sym_LPAREN] = ACTIONS(2228), + [anon_sym_DOLLAR] = ACTIONS(2222), + [anon_sym_DASH_DASH] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2222), + [anon_sym_LBRACE] = ACTIONS(2228), + [anon_sym_DOT_DOT] = ACTIONS(2222), + [anon_sym_DOT_DOT2] = ACTIONS(4826), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2222), + [anon_sym_DOT_DOT_LT] = ACTIONS(2222), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4828), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4828), + [aux_sym__val_number_decimal_token1] = ACTIONS(2222), + [aux_sym__val_number_decimal_token2] = ACTIONS(2228), + [aux_sym__val_number_decimal_token3] = ACTIONS(2228), + [aux_sym__val_number_decimal_token4] = ACTIONS(2228), + [aux_sym__val_number_token1] = ACTIONS(2228), + [aux_sym__val_number_token2] = ACTIONS(2228), + [aux_sym__val_number_token3] = ACTIONS(2228), + [anon_sym_0b] = ACTIONS(2222), + [anon_sym_0o] = ACTIONS(2222), + [anon_sym_0x] = ACTIONS(2222), + [sym_val_date] = ACTIONS(2228), + [anon_sym_DQUOTE] = ACTIONS(2228), + [sym__str_single_quotes] = ACTIONS(2228), + [sym__str_back_ticks] = ACTIONS(2228), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2228), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2228), + [anon_sym_err_GT] = ACTIONS(2222), + [anon_sym_out_GT] = ACTIONS(2222), + [anon_sym_e_GT] = ACTIONS(2222), + [anon_sym_o_GT] = ACTIONS(2222), + [anon_sym_err_PLUSout_GT] = ACTIONS(2222), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2222), + [anon_sym_o_PLUSe_GT] = ACTIONS(2222), + [anon_sym_e_PLUSo_GT] = ACTIONS(2222), + [anon_sym_err_GT_GT] = ACTIONS(2228), + [anon_sym_out_GT_GT] = ACTIONS(2228), + [anon_sym_e_GT_GT] = ACTIONS(2228), + [anon_sym_o_GT_GT] = ACTIONS(2228), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2228), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2228), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2228), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2228), + [aux_sym_unquoted_token1] = ACTIONS(2222), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2228), }, [1411] = { [sym_comment] = STATE(1411), - [anon_sym_true] = ACTIONS(1669), - [anon_sym_false] = ACTIONS(1669), - [anon_sym_null] = ACTIONS(1669), - [aux_sym_cmd_identifier_token38] = ACTIONS(1669), - [aux_sym_cmd_identifier_token39] = ACTIONS(1669), - [aux_sym_cmd_identifier_token40] = ACTIONS(1669), - [sym__newline] = ACTIONS(1669), - [anon_sym_SEMI] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1669), - [anon_sym_err_GT_PIPE] = ACTIONS(1669), - [anon_sym_out_GT_PIPE] = ACTIONS(1669), - [anon_sym_e_GT_PIPE] = ACTIONS(1669), - [anon_sym_o_GT_PIPE] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), - [anon_sym_LBRACK] = ACTIONS(1669), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_RPAREN] = ACTIONS(1669), - [anon_sym_DOLLAR] = ACTIONS(1667), - [anon_sym_DASH_DASH] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_LBRACE] = ACTIONS(1669), - [anon_sym_RBRACE] = ACTIONS(1669), - [anon_sym_DOT_DOT] = ACTIONS(1667), - [anon_sym_LPAREN2] = ACTIONS(1669), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT] = ACTIONS(1669), - [aux_sym__val_number_decimal_token1] = ACTIONS(1667), - [aux_sym__val_number_decimal_token2] = ACTIONS(1669), - [aux_sym__val_number_decimal_token3] = ACTIONS(1669), - [aux_sym__val_number_decimal_token4] = ACTIONS(1669), - [aux_sym__val_number_token1] = ACTIONS(1669), - [aux_sym__val_number_token2] = ACTIONS(1669), - [aux_sym__val_number_token3] = ACTIONS(1669), - [anon_sym_0b] = ACTIONS(1667), - [anon_sym_0o] = ACTIONS(1667), - [anon_sym_0x] = ACTIONS(1667), - [sym_val_date] = ACTIONS(1669), - [anon_sym_DQUOTE] = ACTIONS(1669), - [sym__str_single_quotes] = ACTIONS(1669), - [sym__str_back_ticks] = ACTIONS(1669), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1669), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1669), - [anon_sym_err_GT] = ACTIONS(1667), - [anon_sym_out_GT] = ACTIONS(1667), - [anon_sym_e_GT] = ACTIONS(1667), - [anon_sym_o_GT] = ACTIONS(1667), - [anon_sym_err_PLUSout_GT] = ACTIONS(1667), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1667), - [anon_sym_o_PLUSe_GT] = ACTIONS(1667), - [anon_sym_e_PLUSo_GT] = ACTIONS(1667), - [anon_sym_err_GT_GT] = ACTIONS(1669), - [anon_sym_out_GT_GT] = ACTIONS(1669), - [anon_sym_e_GT_GT] = ACTIONS(1669), - [anon_sym_o_GT_GT] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1669), - [aux_sym_unquoted_token1] = ACTIONS(1667), - [aux_sym_unquoted_token2] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cmd_identifier_token41] = ACTIONS(1596), + [sym__newline] = ACTIONS(1598), + [anon_sym_SEMI] = ACTIONS(1598), + [anon_sym_PIPE] = ACTIONS(1598), + [anon_sym_err_GT_PIPE] = ACTIONS(1598), + [anon_sym_out_GT_PIPE] = ACTIONS(1598), + [anon_sym_e_GT_PIPE] = ACTIONS(1598), + [anon_sym_o_GT_PIPE] = ACTIONS(1598), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1598), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1598), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1598), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1598), + [anon_sym_RPAREN] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1598), + [aux_sym_expr_binary_token1] = ACTIONS(1598), + [aux_sym_expr_binary_token2] = ACTIONS(1598), + [aux_sym_expr_binary_token3] = ACTIONS(1598), + [aux_sym_expr_binary_token4] = ACTIONS(1598), + [aux_sym_expr_binary_token5] = ACTIONS(1598), + [aux_sym_expr_binary_token6] = ACTIONS(1598), + [aux_sym_expr_binary_token7] = ACTIONS(1598), + [aux_sym_expr_binary_token8] = ACTIONS(1598), + [aux_sym_expr_binary_token9] = ACTIONS(1598), + [aux_sym_expr_binary_token10] = ACTIONS(1598), + [aux_sym_expr_binary_token11] = ACTIONS(1598), + [aux_sym_expr_binary_token12] = ACTIONS(1598), + [aux_sym_expr_binary_token13] = ACTIONS(1598), + [aux_sym_expr_binary_token14] = ACTIONS(1598), + [aux_sym_expr_binary_token15] = ACTIONS(1598), + [aux_sym_expr_binary_token16] = ACTIONS(1598), + [aux_sym_expr_binary_token17] = ACTIONS(1598), + [aux_sym_expr_binary_token18] = ACTIONS(1598), + [aux_sym_expr_binary_token19] = ACTIONS(1598), + [aux_sym_expr_binary_token20] = ACTIONS(1598), + [aux_sym_expr_binary_token21] = ACTIONS(1598), + [aux_sym_expr_binary_token22] = ACTIONS(1598), + [aux_sym_expr_binary_token23] = ACTIONS(1598), + [aux_sym_expr_binary_token24] = ACTIONS(1598), + [aux_sym_expr_binary_token25] = ACTIONS(1598), + [aux_sym_expr_binary_token26] = ACTIONS(1598), + [aux_sym_expr_binary_token27] = ACTIONS(1598), + [aux_sym_expr_binary_token28] = ACTIONS(1598), + [anon_sym_DOT_DOT2] = ACTIONS(1596), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1598), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1598), + [aux_sym__immediate_decimal_token2] = ACTIONS(4830), + [sym_filesize_unit] = ACTIONS(1598), + [sym_duration_unit] = ACTIONS(1598), + [anon_sym_err_GT] = ACTIONS(1596), + [anon_sym_out_GT] = ACTIONS(1596), + [anon_sym_e_GT] = ACTIONS(1596), + [anon_sym_o_GT] = ACTIONS(1596), + [anon_sym_err_PLUSout_GT] = ACTIONS(1596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1596), + [anon_sym_o_PLUSe_GT] = ACTIONS(1596), + [anon_sym_e_PLUSo_GT] = ACTIONS(1596), + [anon_sym_err_GT_GT] = ACTIONS(1598), + [anon_sym_out_GT_GT] = ACTIONS(1598), + [anon_sym_e_GT_GT] = ACTIONS(1598), + [anon_sym_o_GT_GT] = ACTIONS(1598), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1598), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1598), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1598), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1598), + [anon_sym_POUND] = ACTIONS(249), }, [1412] = { - [sym__expr_parenthesized_immediate] = STATE(7682), [sym_comment] = STATE(1412), - [anon_sym_true] = ACTIONS(4747), - [anon_sym_false] = ACTIONS(4747), - [anon_sym_null] = ACTIONS(4747), - [aux_sym_cmd_identifier_token38] = ACTIONS(4747), - [aux_sym_cmd_identifier_token39] = ACTIONS(4747), - [aux_sym_cmd_identifier_token40] = ACTIONS(4747), - [sym__newline] = ACTIONS(4747), - [anon_sym_SEMI] = ACTIONS(4747), - [anon_sym_PIPE] = ACTIONS(4747), - [anon_sym_err_GT_PIPE] = ACTIONS(4747), - [anon_sym_out_GT_PIPE] = ACTIONS(4747), - [anon_sym_e_GT_PIPE] = ACTIONS(4747), - [anon_sym_o_GT_PIPE] = ACTIONS(4747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4747), - [anon_sym_LBRACK] = ACTIONS(4747), - [anon_sym_LPAREN] = ACTIONS(4749), - [anon_sym_RPAREN] = ACTIONS(4747), - [anon_sym_DOLLAR] = ACTIONS(4749), - [anon_sym_DASH_DASH] = ACTIONS(4747), - [anon_sym_DASH] = ACTIONS(4749), - [anon_sym_LBRACE] = ACTIONS(4747), - [anon_sym_RBRACE] = ACTIONS(4747), - [anon_sym_DOT_DOT] = ACTIONS(4749), - [anon_sym_LPAREN2] = ACTIONS(3978), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4747), - [anon_sym_DOT_DOT_LT] = ACTIONS(4747), - [aux_sym__val_number_decimal_token1] = ACTIONS(4749), - [aux_sym__val_number_decimal_token2] = ACTIONS(4747), - [aux_sym__val_number_decimal_token3] = ACTIONS(4747), - [aux_sym__val_number_decimal_token4] = ACTIONS(4747), - [aux_sym__val_number_token1] = ACTIONS(4747), - [aux_sym__val_number_token2] = ACTIONS(4747), - [aux_sym__val_number_token3] = ACTIONS(4747), - [anon_sym_0b] = ACTIONS(4749), - [anon_sym_0o] = ACTIONS(4749), - [anon_sym_0x] = ACTIONS(4749), - [sym_val_date] = ACTIONS(4747), - [anon_sym_DQUOTE] = ACTIONS(4747), - [sym__str_single_quotes] = ACTIONS(4747), - [sym__str_back_ticks] = ACTIONS(4747), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4747), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4747), - [anon_sym_err_GT] = ACTIONS(4749), - [anon_sym_out_GT] = ACTIONS(4749), - [anon_sym_e_GT] = ACTIONS(4749), - [anon_sym_o_GT] = ACTIONS(4749), - [anon_sym_err_PLUSout_GT] = ACTIONS(4749), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4749), - [anon_sym_o_PLUSe_GT] = ACTIONS(4749), - [anon_sym_e_PLUSo_GT] = ACTIONS(4749), - [anon_sym_err_GT_GT] = ACTIONS(4747), - [anon_sym_out_GT_GT] = ACTIONS(4747), - [anon_sym_e_GT_GT] = ACTIONS(4747), - [anon_sym_o_GT_GT] = ACTIONS(4747), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4747), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4747), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4747), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4747), - [aux_sym_unquoted_token1] = ACTIONS(4749), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(1090), + [anon_sym_false] = ACTIONS(1090), + [anon_sym_null] = ACTIONS(1090), + [aux_sym_cmd_identifier_token38] = ACTIONS(1090), + [aux_sym_cmd_identifier_token39] = ACTIONS(1090), + [aux_sym_cmd_identifier_token40] = ACTIONS(1090), + [sym__newline] = ACTIONS(1092), + [anon_sym_SEMI] = ACTIONS(1092), + [anon_sym_PIPE] = ACTIONS(1092), + [anon_sym_err_GT_PIPE] = ACTIONS(1092), + [anon_sym_out_GT_PIPE] = ACTIONS(1092), + [anon_sym_e_GT_PIPE] = ACTIONS(1092), + [anon_sym_o_GT_PIPE] = ACTIONS(1092), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1092), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1092), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1092), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1092), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_LPAREN] = ACTIONS(1090), + [anon_sym_RPAREN] = ACTIONS(1092), + [anon_sym_DOLLAR] = ACTIONS(1090), + [anon_sym_DASH_DASH] = ACTIONS(1090), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_LBRACE] = ACTIONS(1092), + [anon_sym_RBRACE] = ACTIONS(1092), + [anon_sym_DOT_DOT] = ACTIONS(1090), + [anon_sym_LPAREN2] = ACTIONS(2273), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1090), + [anon_sym_DOT_DOT_LT] = ACTIONS(1090), + [aux_sym__val_number_decimal_token1] = ACTIONS(1090), + [aux_sym__val_number_decimal_token2] = ACTIONS(1090), + [aux_sym__val_number_decimal_token3] = ACTIONS(1090), + [aux_sym__val_number_decimal_token4] = ACTIONS(1090), + [aux_sym__val_number_token1] = ACTIONS(1090), + [aux_sym__val_number_token2] = ACTIONS(1090), + [aux_sym__val_number_token3] = ACTIONS(1090), + [anon_sym_0b] = ACTIONS(1090), + [anon_sym_0o] = ACTIONS(1090), + [anon_sym_0x] = ACTIONS(1090), + [sym_val_date] = ACTIONS(1090), + [anon_sym_DQUOTE] = ACTIONS(1092), + [sym__str_single_quotes] = ACTIONS(1092), + [sym__str_back_ticks] = ACTIONS(1092), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1092), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1092), + [anon_sym_err_GT] = ACTIONS(1090), + [anon_sym_out_GT] = ACTIONS(1090), + [anon_sym_e_GT] = ACTIONS(1090), + [anon_sym_o_GT] = ACTIONS(1090), + [anon_sym_err_PLUSout_GT] = ACTIONS(1090), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1090), + [anon_sym_o_PLUSe_GT] = ACTIONS(1090), + [anon_sym_e_PLUSo_GT] = ACTIONS(1090), + [anon_sym_err_GT_GT] = ACTIONS(1090), + [anon_sym_out_GT_GT] = ACTIONS(1090), + [anon_sym_e_GT_GT] = ACTIONS(1090), + [anon_sym_o_GT_GT] = ACTIONS(1090), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1090), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1090), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1090), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1090), + [aux_sym_unquoted_token1] = ACTIONS(1090), + [aux_sym_unquoted_token4] = ACTIONS(2275), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1092), }, [1413] = { - [sym__expr_parenthesized_immediate] = STATE(7682), [sym_comment] = STATE(1413), - [anon_sym_true] = ACTIONS(4751), - [anon_sym_false] = ACTIONS(4751), - [anon_sym_null] = ACTIONS(4751), - [aux_sym_cmd_identifier_token38] = ACTIONS(4751), - [aux_sym_cmd_identifier_token39] = ACTIONS(4751), - [aux_sym_cmd_identifier_token40] = ACTIONS(4751), - [sym__newline] = ACTIONS(4751), - [anon_sym_SEMI] = ACTIONS(4751), - [anon_sym_PIPE] = ACTIONS(4751), - [anon_sym_err_GT_PIPE] = ACTIONS(4751), - [anon_sym_out_GT_PIPE] = ACTIONS(4751), - [anon_sym_e_GT_PIPE] = ACTIONS(4751), - [anon_sym_o_GT_PIPE] = ACTIONS(4751), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4751), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4751), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4751), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4751), - [anon_sym_LBRACK] = ACTIONS(4751), - [anon_sym_LPAREN] = ACTIONS(4753), - [anon_sym_RPAREN] = ACTIONS(4751), - [anon_sym_DOLLAR] = ACTIONS(4753), - [anon_sym_DASH_DASH] = ACTIONS(4751), - [anon_sym_DASH] = ACTIONS(4753), - [anon_sym_LBRACE] = ACTIONS(4751), - [anon_sym_RBRACE] = ACTIONS(4751), - [anon_sym_DOT_DOT] = ACTIONS(4753), - [anon_sym_LPAREN2] = ACTIONS(3978), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4751), - [anon_sym_DOT_DOT_LT] = ACTIONS(4751), - [aux_sym__val_number_decimal_token1] = ACTIONS(4753), - [aux_sym__val_number_decimal_token2] = ACTIONS(4751), - [aux_sym__val_number_decimal_token3] = ACTIONS(4751), - [aux_sym__val_number_decimal_token4] = ACTIONS(4751), - [aux_sym__val_number_token1] = ACTIONS(4751), - [aux_sym__val_number_token2] = ACTIONS(4751), - [aux_sym__val_number_token3] = ACTIONS(4751), - [anon_sym_0b] = ACTIONS(4753), - [anon_sym_0o] = ACTIONS(4753), - [anon_sym_0x] = ACTIONS(4753), - [sym_val_date] = ACTIONS(4751), - [anon_sym_DQUOTE] = ACTIONS(4751), - [sym__str_single_quotes] = ACTIONS(4751), - [sym__str_back_ticks] = ACTIONS(4751), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4751), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4751), - [anon_sym_err_GT] = ACTIONS(4753), - [anon_sym_out_GT] = ACTIONS(4753), - [anon_sym_e_GT] = ACTIONS(4753), - [anon_sym_o_GT] = ACTIONS(4753), - [anon_sym_err_PLUSout_GT] = ACTIONS(4753), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4753), - [anon_sym_o_PLUSe_GT] = ACTIONS(4753), - [anon_sym_e_PLUSo_GT] = ACTIONS(4753), - [anon_sym_err_GT_GT] = ACTIONS(4751), - [anon_sym_out_GT_GT] = ACTIONS(4751), - [anon_sym_e_GT_GT] = ACTIONS(4751), - [anon_sym_o_GT_GT] = ACTIONS(4751), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4751), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4751), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4751), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4751), - [aux_sym_unquoted_token1] = ACTIONS(4753), - [anon_sym_POUND] = ACTIONS(247), + [ts_builtin_sym_end] = ACTIONS(1771), + [anon_sym_true] = ACTIONS(1771), + [anon_sym_false] = ACTIONS(1771), + [anon_sym_null] = ACTIONS(1771), + [aux_sym_cmd_identifier_token38] = ACTIONS(1771), + [aux_sym_cmd_identifier_token39] = ACTIONS(1771), + [aux_sym_cmd_identifier_token40] = ACTIONS(1771), + [sym__newline] = ACTIONS(1771), + [anon_sym_SEMI] = ACTIONS(1771), + [anon_sym_PIPE] = ACTIONS(1771), + [anon_sym_err_GT_PIPE] = ACTIONS(1771), + [anon_sym_out_GT_PIPE] = ACTIONS(1771), + [anon_sym_e_GT_PIPE] = ACTIONS(1771), + [anon_sym_o_GT_PIPE] = ACTIONS(1771), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1771), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1771), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1771), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1771), + [anon_sym_LPAREN] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1769), + [anon_sym_DASH_DASH] = ACTIONS(1771), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_LBRACE] = ACTIONS(1771), + [anon_sym_DOT_DOT] = ACTIONS(1769), + [anon_sym_LPAREN2] = ACTIONS(1771), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1771), + [anon_sym_DOT_DOT_LT] = ACTIONS(1771), + [aux_sym__immediate_decimal_token2] = ACTIONS(4832), + [aux_sym__val_number_decimal_token1] = ACTIONS(1769), + [aux_sym__val_number_decimal_token2] = ACTIONS(1771), + [aux_sym__val_number_decimal_token3] = ACTIONS(1771), + [aux_sym__val_number_decimal_token4] = ACTIONS(1771), + [aux_sym__val_number_token1] = ACTIONS(1771), + [aux_sym__val_number_token2] = ACTIONS(1771), + [aux_sym__val_number_token3] = ACTIONS(1771), + [anon_sym_0b] = ACTIONS(1769), + [anon_sym_0o] = ACTIONS(1769), + [anon_sym_0x] = ACTIONS(1769), + [sym_val_date] = ACTIONS(1771), + [anon_sym_DQUOTE] = ACTIONS(1771), + [sym__str_single_quotes] = ACTIONS(1771), + [sym__str_back_ticks] = ACTIONS(1771), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1771), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1771), + [anon_sym_err_GT] = ACTIONS(1769), + [anon_sym_out_GT] = ACTIONS(1769), + [anon_sym_e_GT] = ACTIONS(1769), + [anon_sym_o_GT] = ACTIONS(1769), + [anon_sym_err_PLUSout_GT] = ACTIONS(1769), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1769), + [anon_sym_o_PLUSe_GT] = ACTIONS(1769), + [anon_sym_e_PLUSo_GT] = ACTIONS(1769), + [anon_sym_err_GT_GT] = ACTIONS(1771), + [anon_sym_out_GT_GT] = ACTIONS(1771), + [anon_sym_e_GT_GT] = ACTIONS(1771), + [anon_sym_o_GT_GT] = ACTIONS(1771), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1771), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1771), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1771), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1771), + [aux_sym_unquoted_token1] = ACTIONS(1769), + [aux_sym_unquoted_token2] = ACTIONS(1769), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1771), }, [1414] = { [sym_comment] = STATE(1414), - [aux_sym_cmd_identifier_token41] = ACTIONS(1518), - [sym__newline] = ACTIONS(1520), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_err_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_GT_PIPE] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1520), - [anon_sym_RPAREN] = ACTIONS(1520), - [anon_sym_RBRACE] = ACTIONS(1520), - [aux_sym_expr_binary_token1] = ACTIONS(1520), - [aux_sym_expr_binary_token2] = ACTIONS(1520), - [aux_sym_expr_binary_token3] = ACTIONS(1520), - [aux_sym_expr_binary_token4] = ACTIONS(1520), - [aux_sym_expr_binary_token5] = ACTIONS(1520), - [aux_sym_expr_binary_token6] = ACTIONS(1520), - [aux_sym_expr_binary_token7] = ACTIONS(1520), - [aux_sym_expr_binary_token8] = ACTIONS(1520), - [aux_sym_expr_binary_token9] = ACTIONS(1520), - [aux_sym_expr_binary_token10] = ACTIONS(1520), - [aux_sym_expr_binary_token11] = ACTIONS(1520), - [aux_sym_expr_binary_token12] = ACTIONS(1520), - [aux_sym_expr_binary_token13] = ACTIONS(1520), - [aux_sym_expr_binary_token14] = ACTIONS(1520), - [aux_sym_expr_binary_token15] = ACTIONS(1520), - [aux_sym_expr_binary_token16] = ACTIONS(1520), - [aux_sym_expr_binary_token17] = ACTIONS(1520), - [aux_sym_expr_binary_token18] = ACTIONS(1520), - [aux_sym_expr_binary_token19] = ACTIONS(1520), - [aux_sym_expr_binary_token20] = ACTIONS(1520), - [aux_sym_expr_binary_token21] = ACTIONS(1520), - [aux_sym_expr_binary_token22] = ACTIONS(1520), - [aux_sym_expr_binary_token23] = ACTIONS(1520), - [aux_sym_expr_binary_token24] = ACTIONS(1520), - [aux_sym_expr_binary_token25] = ACTIONS(1520), - [aux_sym_expr_binary_token26] = ACTIONS(1520), - [aux_sym_expr_binary_token27] = ACTIONS(1520), - [aux_sym_expr_binary_token28] = ACTIONS(1520), - [anon_sym_DOT_DOT2] = ACTIONS(1518), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), - [sym_filesize_unit] = ACTIONS(1520), - [sym_duration_unit] = ACTIONS(1520), - [anon_sym_err_GT] = ACTIONS(1518), - [anon_sym_out_GT] = ACTIONS(1518), - [anon_sym_e_GT] = ACTIONS(1518), - [anon_sym_o_GT] = ACTIONS(1518), - [anon_sym_err_PLUSout_GT] = ACTIONS(1518), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), - [anon_sym_o_PLUSe_GT] = ACTIONS(1518), - [anon_sym_e_PLUSo_GT] = ACTIONS(1518), - [anon_sym_err_GT_GT] = ACTIONS(1520), - [anon_sym_out_GT_GT] = ACTIONS(1520), - [anon_sym_e_GT_GT] = ACTIONS(1520), - [anon_sym_o_GT_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1520), - [anon_sym_POUND] = ACTIONS(247), + [ts_builtin_sym_end] = ACTIONS(2212), + [anon_sym_true] = ACTIONS(2212), + [anon_sym_false] = ACTIONS(2212), + [anon_sym_null] = ACTIONS(2212), + [aux_sym_cmd_identifier_token38] = ACTIONS(2212), + [aux_sym_cmd_identifier_token39] = ACTIONS(2212), + [aux_sym_cmd_identifier_token40] = ACTIONS(2212), + [sym__newline] = ACTIONS(2212), + [anon_sym_SEMI] = ACTIONS(2212), + [anon_sym_PIPE] = ACTIONS(2212), + [anon_sym_err_GT_PIPE] = ACTIONS(2212), + [anon_sym_out_GT_PIPE] = ACTIONS(2212), + [anon_sym_e_GT_PIPE] = ACTIONS(2212), + [anon_sym_o_GT_PIPE] = ACTIONS(2212), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2212), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2212), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2212), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2212), + [anon_sym_LBRACK] = ACTIONS(2212), + [anon_sym_LPAREN] = ACTIONS(2212), + [anon_sym_DOLLAR] = ACTIONS(2206), + [anon_sym_DASH_DASH] = ACTIONS(2212), + [anon_sym_DASH] = ACTIONS(2206), + [anon_sym_LBRACE] = ACTIONS(2212), + [anon_sym_DOT_DOT] = ACTIONS(2206), + [anon_sym_DOT_DOT2] = ACTIONS(4834), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2206), + [anon_sym_DOT_DOT_LT] = ACTIONS(2206), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4836), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4836), + [aux_sym__val_number_decimal_token1] = ACTIONS(2206), + [aux_sym__val_number_decimal_token2] = ACTIONS(2212), + [aux_sym__val_number_decimal_token3] = ACTIONS(2212), + [aux_sym__val_number_decimal_token4] = ACTIONS(2212), + [aux_sym__val_number_token1] = ACTIONS(2212), + [aux_sym__val_number_token2] = ACTIONS(2212), + [aux_sym__val_number_token3] = ACTIONS(2212), + [anon_sym_0b] = ACTIONS(2206), + [anon_sym_0o] = ACTIONS(2206), + [anon_sym_0x] = ACTIONS(2206), + [sym_val_date] = ACTIONS(2212), + [anon_sym_DQUOTE] = ACTIONS(2212), + [sym__str_single_quotes] = ACTIONS(2212), + [sym__str_back_ticks] = ACTIONS(2212), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2212), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2212), + [anon_sym_err_GT] = ACTIONS(2206), + [anon_sym_out_GT] = ACTIONS(2206), + [anon_sym_e_GT] = ACTIONS(2206), + [anon_sym_o_GT] = ACTIONS(2206), + [anon_sym_err_PLUSout_GT] = ACTIONS(2206), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2206), + [anon_sym_o_PLUSe_GT] = ACTIONS(2206), + [anon_sym_e_PLUSo_GT] = ACTIONS(2206), + [anon_sym_err_GT_GT] = ACTIONS(2212), + [anon_sym_out_GT_GT] = ACTIONS(2212), + [anon_sym_e_GT_GT] = ACTIONS(2212), + [anon_sym_o_GT_GT] = ACTIONS(2212), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2212), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2212), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2212), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2212), + [aux_sym_unquoted_token1] = ACTIONS(2206), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2212), }, [1415] = { [sym_comment] = STATE(1415), - [sym__newline] = ACTIONS(1034), - [anon_sym_SEMI] = ACTIONS(1036), - [anon_sym_PIPE] = ACTIONS(1036), - [anon_sym_err_GT_PIPE] = ACTIONS(1036), - [anon_sym_out_GT_PIPE] = ACTIONS(1036), - [anon_sym_e_GT_PIPE] = ACTIONS(1036), - [anon_sym_o_GT_PIPE] = ACTIONS(1036), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1036), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1036), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1036), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1036), - [anon_sym_DASH_DASH] = ACTIONS(1036), - [anon_sym_DASH] = ACTIONS(1034), - [anon_sym_LBRACE] = ACTIONS(1036), - [anon_sym_RBRACE] = ACTIONS(1036), - [anon_sym_EQ_GT] = ACTIONS(1036), - [anon_sym_QMARK2] = ACTIONS(1036), - [aux_sym_expr_binary_token1] = ACTIONS(1036), - [aux_sym_expr_binary_token2] = ACTIONS(1036), - [aux_sym_expr_binary_token3] = ACTIONS(1036), - [aux_sym_expr_binary_token4] = ACTIONS(1036), - [aux_sym_expr_binary_token5] = ACTIONS(1036), - [aux_sym_expr_binary_token6] = ACTIONS(1036), - [aux_sym_expr_binary_token7] = ACTIONS(1036), - [aux_sym_expr_binary_token8] = ACTIONS(1036), - [aux_sym_expr_binary_token9] = ACTIONS(1036), - [aux_sym_expr_binary_token10] = ACTIONS(1036), - [aux_sym_expr_binary_token11] = ACTIONS(1036), - [aux_sym_expr_binary_token12] = ACTIONS(1036), - [aux_sym_expr_binary_token13] = ACTIONS(1036), - [aux_sym_expr_binary_token14] = ACTIONS(1036), - [aux_sym_expr_binary_token15] = ACTIONS(1036), - [aux_sym_expr_binary_token16] = ACTIONS(1036), - [aux_sym_expr_binary_token17] = ACTIONS(1036), - [aux_sym_expr_binary_token18] = ACTIONS(1036), - [aux_sym_expr_binary_token19] = ACTIONS(1036), - [aux_sym_expr_binary_token20] = ACTIONS(1036), - [aux_sym_expr_binary_token21] = ACTIONS(1036), - [aux_sym_expr_binary_token22] = ACTIONS(1036), - [aux_sym_expr_binary_token23] = ACTIONS(1036), - [aux_sym_expr_binary_token24] = ACTIONS(1036), - [aux_sym_expr_binary_token25] = ACTIONS(1036), - [aux_sym_expr_binary_token26] = ACTIONS(1036), - [aux_sym_expr_binary_token27] = ACTIONS(1036), - [aux_sym_expr_binary_token28] = ACTIONS(1036), - [anon_sym_DOT] = ACTIONS(1036), - [aux_sym_record_entry_token1] = ACTIONS(1036), - [anon_sym_err_GT] = ACTIONS(1034), - [anon_sym_out_GT] = ACTIONS(1034), - [anon_sym_e_GT] = ACTIONS(1034), - [anon_sym_o_GT] = ACTIONS(1034), - [anon_sym_err_PLUSout_GT] = ACTIONS(1034), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1034), - [anon_sym_o_PLUSe_GT] = ACTIONS(1034), - [anon_sym_e_PLUSo_GT] = ACTIONS(1034), - [anon_sym_err_GT_GT] = ACTIONS(1036), - [anon_sym_out_GT_GT] = ACTIONS(1036), - [anon_sym_e_GT_GT] = ACTIONS(1036), - [anon_sym_o_GT_GT] = ACTIONS(1036), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1036), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1036), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1036), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1036), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(1705), + [anon_sym_false] = ACTIONS(1705), + [anon_sym_null] = ACTIONS(1705), + [aux_sym_cmd_identifier_token38] = ACTIONS(1705), + [aux_sym_cmd_identifier_token39] = ACTIONS(1705), + [aux_sym_cmd_identifier_token40] = ACTIONS(1705), + [sym__newline] = ACTIONS(1705), + [anon_sym_SEMI] = ACTIONS(1705), + [anon_sym_PIPE] = ACTIONS(1705), + [anon_sym_err_GT_PIPE] = ACTIONS(1705), + [anon_sym_out_GT_PIPE] = ACTIONS(1705), + [anon_sym_e_GT_PIPE] = ACTIONS(1705), + [anon_sym_o_GT_PIPE] = ACTIONS(1705), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1705), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1705), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1705), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1705), + [anon_sym_LBRACK] = ACTIONS(1705), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_RPAREN] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1703), + [anon_sym_DASH_DASH] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_LBRACE] = ACTIONS(1705), + [anon_sym_RBRACE] = ACTIONS(1705), + [anon_sym_DOT_DOT] = ACTIONS(1703), + [anon_sym_LPAREN2] = ACTIONS(1705), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1705), + [anon_sym_DOT_DOT_LT] = ACTIONS(1705), + [aux_sym__val_number_decimal_token1] = ACTIONS(1703), + [aux_sym__val_number_decimal_token2] = ACTIONS(1705), + [aux_sym__val_number_decimal_token3] = ACTIONS(1705), + [aux_sym__val_number_decimal_token4] = ACTIONS(1705), + [aux_sym__val_number_token1] = ACTIONS(1705), + [aux_sym__val_number_token2] = ACTIONS(1705), + [aux_sym__val_number_token3] = ACTIONS(1705), + [anon_sym_0b] = ACTIONS(1703), + [anon_sym_0o] = ACTIONS(1703), + [anon_sym_0x] = ACTIONS(1703), + [sym_val_date] = ACTIONS(1705), + [anon_sym_DQUOTE] = ACTIONS(1705), + [sym__str_single_quotes] = ACTIONS(1705), + [sym__str_back_ticks] = ACTIONS(1705), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1705), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1705), + [anon_sym_err_GT] = ACTIONS(1703), + [anon_sym_out_GT] = ACTIONS(1703), + [anon_sym_e_GT] = ACTIONS(1703), + [anon_sym_o_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT] = ACTIONS(1703), + [anon_sym_err_GT_GT] = ACTIONS(1705), + [anon_sym_out_GT_GT] = ACTIONS(1705), + [anon_sym_e_GT_GT] = ACTIONS(1705), + [anon_sym_o_GT_GT] = ACTIONS(1705), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1705), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1705), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1705), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1705), + [aux_sym_unquoted_token1] = ACTIONS(1703), + [aux_sym_unquoted_token2] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1705), }, [1416] = { [sym_comment] = STATE(1416), - [ts_builtin_sym_end] = ACTIONS(1669), - [anon_sym_true] = ACTIONS(1669), - [anon_sym_false] = ACTIONS(1669), - [anon_sym_null] = ACTIONS(1669), - [aux_sym_cmd_identifier_token38] = ACTIONS(1669), - [aux_sym_cmd_identifier_token39] = ACTIONS(1669), - [aux_sym_cmd_identifier_token40] = ACTIONS(1669), - [sym__newline] = ACTIONS(1669), - [anon_sym_SEMI] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1669), - [anon_sym_err_GT_PIPE] = ACTIONS(1669), - [anon_sym_out_GT_PIPE] = ACTIONS(1669), - [anon_sym_e_GT_PIPE] = ACTIONS(1669), - [anon_sym_o_GT_PIPE] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), - [anon_sym_LBRACK] = ACTIONS(1669), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_DOLLAR] = ACTIONS(1667), - [anon_sym_DASH_DASH] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_LBRACE] = ACTIONS(1669), - [anon_sym_DOT_DOT] = ACTIONS(1667), - [anon_sym_LPAREN2] = ACTIONS(1669), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT] = ACTIONS(1669), - [aux_sym__immediate_decimal_token2] = ACTIONS(4732), - [aux_sym__val_number_decimal_token1] = ACTIONS(1667), - [aux_sym__val_number_decimal_token2] = ACTIONS(1669), - [aux_sym__val_number_decimal_token3] = ACTIONS(1669), - [aux_sym__val_number_decimal_token4] = ACTIONS(1669), - [aux_sym__val_number_token1] = ACTIONS(1669), - [aux_sym__val_number_token2] = ACTIONS(1669), - [aux_sym__val_number_token3] = ACTIONS(1669), - [anon_sym_0b] = ACTIONS(1667), - [anon_sym_0o] = ACTIONS(1667), - [anon_sym_0x] = ACTIONS(1667), - [sym_val_date] = ACTIONS(1669), - [anon_sym_DQUOTE] = ACTIONS(1669), - [sym__str_single_quotes] = ACTIONS(1669), - [sym__str_back_ticks] = ACTIONS(1669), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1669), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1669), - [anon_sym_err_GT] = ACTIONS(1667), - [anon_sym_out_GT] = ACTIONS(1667), - [anon_sym_e_GT] = ACTIONS(1667), - [anon_sym_o_GT] = ACTIONS(1667), - [anon_sym_err_PLUSout_GT] = ACTIONS(1667), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1667), - [anon_sym_o_PLUSe_GT] = ACTIONS(1667), - [anon_sym_e_PLUSo_GT] = ACTIONS(1667), - [anon_sym_err_GT_GT] = ACTIONS(1669), - [anon_sym_out_GT_GT] = ACTIONS(1669), - [anon_sym_e_GT_GT] = ACTIONS(1669), - [anon_sym_o_GT_GT] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1669), - [aux_sym_unquoted_token1] = ACTIONS(1667), - [aux_sym_unquoted_token2] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(247), + [ts_builtin_sym_end] = ACTIONS(1080), + [anon_sym_true] = ACTIONS(1080), + [anon_sym_false] = ACTIONS(1080), + [anon_sym_null] = ACTIONS(1080), + [aux_sym_cmd_identifier_token38] = ACTIONS(1080), + [aux_sym_cmd_identifier_token39] = ACTIONS(1080), + [aux_sym_cmd_identifier_token40] = ACTIONS(1080), + [sym__newline] = ACTIONS(1080), + [anon_sym_SEMI] = ACTIONS(1080), + [anon_sym_PIPE] = ACTIONS(1080), + [anon_sym_err_GT_PIPE] = ACTIONS(1080), + [anon_sym_out_GT_PIPE] = ACTIONS(1080), + [anon_sym_e_GT_PIPE] = ACTIONS(1080), + [anon_sym_o_GT_PIPE] = ACTIONS(1080), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1080), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1080), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1080), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(1080), + [anon_sym_LPAREN] = ACTIONS(1080), + [anon_sym_DOLLAR] = ACTIONS(1078), + [anon_sym_DASH_DASH] = ACTIONS(1080), + [anon_sym_DASH] = ACTIONS(1078), + [anon_sym_LBRACE] = ACTIONS(1080), + [anon_sym_DOT_DOT] = ACTIONS(1078), + [anon_sym_DOT_DOT2] = ACTIONS(1078), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1078), + [anon_sym_DOT_DOT_LT] = ACTIONS(1078), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1080), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1080), + [aux_sym__val_number_decimal_token1] = ACTIONS(1078), + [aux_sym__val_number_decimal_token2] = ACTIONS(1080), + [aux_sym__val_number_decimal_token3] = ACTIONS(1080), + [aux_sym__val_number_decimal_token4] = ACTIONS(1080), + [aux_sym__val_number_token1] = ACTIONS(1080), + [aux_sym__val_number_token2] = ACTIONS(1080), + [aux_sym__val_number_token3] = ACTIONS(1080), + [anon_sym_0b] = ACTIONS(1078), + [anon_sym_0o] = ACTIONS(1078), + [anon_sym_0x] = ACTIONS(1078), + [sym_val_date] = ACTIONS(1080), + [anon_sym_DQUOTE] = ACTIONS(1080), + [sym__str_single_quotes] = ACTIONS(1080), + [sym__str_back_ticks] = ACTIONS(1080), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1080), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1080), + [anon_sym_err_GT] = ACTIONS(1078), + [anon_sym_out_GT] = ACTIONS(1078), + [anon_sym_e_GT] = ACTIONS(1078), + [anon_sym_o_GT] = ACTIONS(1078), + [anon_sym_err_PLUSout_GT] = ACTIONS(1078), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1078), + [anon_sym_o_PLUSe_GT] = ACTIONS(1078), + [anon_sym_e_PLUSo_GT] = ACTIONS(1078), + [anon_sym_err_GT_GT] = ACTIONS(1080), + [anon_sym_out_GT_GT] = ACTIONS(1080), + [anon_sym_e_GT_GT] = ACTIONS(1080), + [anon_sym_o_GT_GT] = ACTIONS(1080), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1080), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1080), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1080), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1080), + [aux_sym_unquoted_token1] = ACTIONS(1078), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1080), }, [1417] = { - [sym__expr_parenthesized_immediate] = STATE(7682), + [sym__expr_parenthesized_immediate] = STATE(7439), [sym_comment] = STATE(1417), - [sym__newline] = ACTIONS(4755), - [anon_sym_SEMI] = ACTIONS(4755), - [anon_sym_PIPE] = ACTIONS(4755), - [anon_sym_err_GT_PIPE] = ACTIONS(4755), - [anon_sym_out_GT_PIPE] = ACTIONS(4755), - [anon_sym_e_GT_PIPE] = ACTIONS(4755), - [anon_sym_o_GT_PIPE] = ACTIONS(4755), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4755), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4755), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4755), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4755), - [anon_sym_RPAREN] = ACTIONS(4755), - [anon_sym_DASH_DASH] = ACTIONS(4755), - [anon_sym_DASH] = ACTIONS(4757), - [anon_sym_LBRACE] = ACTIONS(4755), - [anon_sym_RBRACE] = ACTIONS(4755), - [anon_sym_EQ_GT] = ACTIONS(4755), - [anon_sym_LPAREN2] = ACTIONS(3978), - [aux_sym_expr_binary_token1] = ACTIONS(4755), - [aux_sym_expr_binary_token2] = ACTIONS(4755), - [aux_sym_expr_binary_token3] = ACTIONS(4755), - [aux_sym_expr_binary_token4] = ACTIONS(4755), - [aux_sym_expr_binary_token5] = ACTIONS(4755), - [aux_sym_expr_binary_token6] = ACTIONS(4755), - [aux_sym_expr_binary_token7] = ACTIONS(4755), - [aux_sym_expr_binary_token8] = ACTIONS(4755), - [aux_sym_expr_binary_token9] = ACTIONS(4755), - [aux_sym_expr_binary_token10] = ACTIONS(4755), - [aux_sym_expr_binary_token11] = ACTIONS(4755), - [aux_sym_expr_binary_token12] = ACTIONS(4755), - [aux_sym_expr_binary_token13] = ACTIONS(4755), - [aux_sym_expr_binary_token14] = ACTIONS(4755), - [aux_sym_expr_binary_token15] = ACTIONS(4755), - [aux_sym_expr_binary_token16] = ACTIONS(4755), - [aux_sym_expr_binary_token17] = ACTIONS(4755), - [aux_sym_expr_binary_token18] = ACTIONS(4755), - [aux_sym_expr_binary_token19] = ACTIONS(4755), - [aux_sym_expr_binary_token20] = ACTIONS(4755), - [aux_sym_expr_binary_token21] = ACTIONS(4755), - [aux_sym_expr_binary_token22] = ACTIONS(4755), - [aux_sym_expr_binary_token23] = ACTIONS(4755), - [aux_sym_expr_binary_token24] = ACTIONS(4755), - [aux_sym_expr_binary_token25] = ACTIONS(4755), - [aux_sym_expr_binary_token26] = ACTIONS(4755), - [aux_sym_expr_binary_token27] = ACTIONS(4755), - [aux_sym_expr_binary_token28] = ACTIONS(4755), - [anon_sym_err_GT] = ACTIONS(4757), - [anon_sym_out_GT] = ACTIONS(4757), - [anon_sym_e_GT] = ACTIONS(4757), - [anon_sym_o_GT] = ACTIONS(4757), - [anon_sym_err_PLUSout_GT] = ACTIONS(4757), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4757), - [anon_sym_o_PLUSe_GT] = ACTIONS(4757), - [anon_sym_e_PLUSo_GT] = ACTIONS(4757), - [anon_sym_err_GT_GT] = ACTIONS(4755), - [anon_sym_out_GT_GT] = ACTIONS(4755), - [anon_sym_e_GT_GT] = ACTIONS(4755), - [anon_sym_o_GT_GT] = ACTIONS(4755), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4755), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4755), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4755), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4755), - [anon_sym_POUND] = ACTIONS(247), + [sym__newline] = ACTIONS(1628), + [anon_sym_SEMI] = ACTIONS(1640), + [anon_sym_PIPE] = ACTIONS(1640), + [anon_sym_err_GT_PIPE] = ACTIONS(1640), + [anon_sym_out_GT_PIPE] = ACTIONS(1640), + [anon_sym_e_GT_PIPE] = ACTIONS(1640), + [anon_sym_o_GT_PIPE] = ACTIONS(1640), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1640), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1640), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1640), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1640), + [anon_sym_RPAREN] = ACTIONS(1640), + [anon_sym_LPAREN2] = ACTIONS(4433), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1640), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1640), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1640), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1640), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1640), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1640), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1640), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1640), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1640), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1640), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1640), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1640), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1640), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1640), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1640), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1640), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1640), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1640), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1640), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1640), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1640), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1640), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1640), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1640), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1640), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1640), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1640), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1640), + [anon_sym_DOT_DOT2] = ACTIONS(4762), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4764), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4764), + [sym_filesize_unit] = ACTIONS(4838), + [sym_duration_unit] = ACTIONS(4840), + [anon_sym_err_GT] = ACTIONS(1628), + [anon_sym_out_GT] = ACTIONS(1628), + [anon_sym_e_GT] = ACTIONS(1628), + [anon_sym_o_GT] = ACTIONS(1628), + [anon_sym_err_PLUSout_GT] = ACTIONS(1628), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1628), + [anon_sym_o_PLUSe_GT] = ACTIONS(1628), + [anon_sym_e_PLUSo_GT] = ACTIONS(1628), + [anon_sym_err_GT_GT] = ACTIONS(1640), + [anon_sym_out_GT_GT] = ACTIONS(1640), + [anon_sym_e_GT_GT] = ACTIONS(1640), + [anon_sym_o_GT_GT] = ACTIONS(1640), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1640), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1640), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1640), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1640), + [aux_sym_unquoted_token2] = ACTIONS(4842), + [anon_sym_POUND] = ACTIONS(249), }, [1418] = { + [sym__expr_parenthesized_immediate] = STATE(7791), [sym_comment] = STATE(1418), - [sym__newline] = ACTIONS(1042), - [anon_sym_SEMI] = ACTIONS(1044), - [anon_sym_PIPE] = ACTIONS(1044), - [anon_sym_err_GT_PIPE] = ACTIONS(1044), - [anon_sym_out_GT_PIPE] = ACTIONS(1044), - [anon_sym_e_GT_PIPE] = ACTIONS(1044), - [anon_sym_o_GT_PIPE] = ACTIONS(1044), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1044), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1044), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1044), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1044), - [anon_sym_DASH_DASH] = ACTIONS(1044), - [anon_sym_DASH] = ACTIONS(1042), - [anon_sym_LBRACE] = ACTIONS(1044), - [anon_sym_RBRACE] = ACTIONS(1044), - [anon_sym_EQ_GT] = ACTIONS(1044), - [anon_sym_QMARK2] = ACTIONS(1044), - [aux_sym_expr_binary_token1] = ACTIONS(1044), - [aux_sym_expr_binary_token2] = ACTIONS(1044), - [aux_sym_expr_binary_token3] = ACTIONS(1044), - [aux_sym_expr_binary_token4] = ACTIONS(1044), - [aux_sym_expr_binary_token5] = ACTIONS(1044), - [aux_sym_expr_binary_token6] = ACTIONS(1044), - [aux_sym_expr_binary_token7] = ACTIONS(1044), - [aux_sym_expr_binary_token8] = ACTIONS(1044), - [aux_sym_expr_binary_token9] = ACTIONS(1044), - [aux_sym_expr_binary_token10] = ACTIONS(1044), - [aux_sym_expr_binary_token11] = ACTIONS(1044), - [aux_sym_expr_binary_token12] = ACTIONS(1044), - [aux_sym_expr_binary_token13] = ACTIONS(1044), - [aux_sym_expr_binary_token14] = ACTIONS(1044), - [aux_sym_expr_binary_token15] = ACTIONS(1044), - [aux_sym_expr_binary_token16] = ACTIONS(1044), - [aux_sym_expr_binary_token17] = ACTIONS(1044), - [aux_sym_expr_binary_token18] = ACTIONS(1044), - [aux_sym_expr_binary_token19] = ACTIONS(1044), - [aux_sym_expr_binary_token20] = ACTIONS(1044), - [aux_sym_expr_binary_token21] = ACTIONS(1044), - [aux_sym_expr_binary_token22] = ACTIONS(1044), - [aux_sym_expr_binary_token23] = ACTIONS(1044), - [aux_sym_expr_binary_token24] = ACTIONS(1044), - [aux_sym_expr_binary_token25] = ACTIONS(1044), - [aux_sym_expr_binary_token26] = ACTIONS(1044), - [aux_sym_expr_binary_token27] = ACTIONS(1044), - [aux_sym_expr_binary_token28] = ACTIONS(1044), - [anon_sym_DOT] = ACTIONS(1044), - [aux_sym_record_entry_token1] = ACTIONS(1044), - [anon_sym_err_GT] = ACTIONS(1042), - [anon_sym_out_GT] = ACTIONS(1042), - [anon_sym_e_GT] = ACTIONS(1042), - [anon_sym_o_GT] = ACTIONS(1042), - [anon_sym_err_PLUSout_GT] = ACTIONS(1042), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1042), - [anon_sym_o_PLUSe_GT] = ACTIONS(1042), - [anon_sym_e_PLUSo_GT] = ACTIONS(1042), - [anon_sym_err_GT_GT] = ACTIONS(1044), - [anon_sym_out_GT_GT] = ACTIONS(1044), - [anon_sym_e_GT_GT] = ACTIONS(1044), - [anon_sym_o_GT_GT] = ACTIONS(1044), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1044), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1044), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1044), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1044), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(4844), + [anon_sym_false] = ACTIONS(4844), + [anon_sym_null] = ACTIONS(4844), + [aux_sym_cmd_identifier_token38] = ACTIONS(4844), + [aux_sym_cmd_identifier_token39] = ACTIONS(4844), + [aux_sym_cmd_identifier_token40] = ACTIONS(4844), + [sym__newline] = ACTIONS(4844), + [anon_sym_SEMI] = ACTIONS(4844), + [anon_sym_PIPE] = ACTIONS(4844), + [anon_sym_err_GT_PIPE] = ACTIONS(4844), + [anon_sym_out_GT_PIPE] = ACTIONS(4844), + [anon_sym_e_GT_PIPE] = ACTIONS(4844), + [anon_sym_o_GT_PIPE] = ACTIONS(4844), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4844), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4844), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4844), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4844), + [anon_sym_LBRACK] = ACTIONS(4844), + [anon_sym_LPAREN] = ACTIONS(4846), + [anon_sym_RPAREN] = ACTIONS(4844), + [anon_sym_DOLLAR] = ACTIONS(4846), + [anon_sym_DASH_DASH] = ACTIONS(4844), + [anon_sym_DASH] = ACTIONS(4846), + [anon_sym_LBRACE] = ACTIONS(4844), + [anon_sym_RBRACE] = ACTIONS(4844), + [anon_sym_DOT_DOT] = ACTIONS(4846), + [anon_sym_LPAREN2] = ACTIONS(4433), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4844), + [anon_sym_DOT_DOT_LT] = ACTIONS(4844), + [aux_sym__val_number_decimal_token1] = ACTIONS(4846), + [aux_sym__val_number_decimal_token2] = ACTIONS(4844), + [aux_sym__val_number_decimal_token3] = ACTIONS(4844), + [aux_sym__val_number_decimal_token4] = ACTIONS(4844), + [aux_sym__val_number_token1] = ACTIONS(4844), + [aux_sym__val_number_token2] = ACTIONS(4844), + [aux_sym__val_number_token3] = ACTIONS(4844), + [anon_sym_0b] = ACTIONS(4846), + [anon_sym_0o] = ACTIONS(4846), + [anon_sym_0x] = ACTIONS(4846), + [sym_val_date] = ACTIONS(4844), + [anon_sym_DQUOTE] = ACTIONS(4844), + [sym__str_single_quotes] = ACTIONS(4844), + [sym__str_back_ticks] = ACTIONS(4844), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4844), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4844), + [anon_sym_err_GT] = ACTIONS(4846), + [anon_sym_out_GT] = ACTIONS(4846), + [anon_sym_e_GT] = ACTIONS(4846), + [anon_sym_o_GT] = ACTIONS(4846), + [anon_sym_err_PLUSout_GT] = ACTIONS(4846), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4846), + [anon_sym_o_PLUSe_GT] = ACTIONS(4846), + [anon_sym_e_PLUSo_GT] = ACTIONS(4846), + [anon_sym_err_GT_GT] = ACTIONS(4844), + [anon_sym_out_GT_GT] = ACTIONS(4844), + [anon_sym_e_GT_GT] = ACTIONS(4844), + [anon_sym_o_GT_GT] = ACTIONS(4844), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4844), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4844), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4844), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4844), + [aux_sym_unquoted_token1] = ACTIONS(4846), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(4844), }, [1419] = { + [sym__expr_parenthesized_immediate] = STATE(7791), [sym_comment] = STATE(1419), - [aux_sym_cmd_identifier_token41] = ACTIONS(1540), - [sym__newline] = ACTIONS(1542), - [anon_sym_SEMI] = ACTIONS(1542), - [anon_sym_PIPE] = ACTIONS(1542), - [anon_sym_err_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_GT_PIPE] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1542), - [anon_sym_RPAREN] = ACTIONS(1542), - [anon_sym_RBRACE] = ACTIONS(1542), - [aux_sym_expr_binary_token1] = ACTIONS(1542), - [aux_sym_expr_binary_token2] = ACTIONS(1542), - [aux_sym_expr_binary_token3] = ACTIONS(1542), - [aux_sym_expr_binary_token4] = ACTIONS(1542), - [aux_sym_expr_binary_token5] = ACTIONS(1542), - [aux_sym_expr_binary_token6] = ACTIONS(1542), - [aux_sym_expr_binary_token7] = ACTIONS(1542), - [aux_sym_expr_binary_token8] = ACTIONS(1542), - [aux_sym_expr_binary_token9] = ACTIONS(1542), - [aux_sym_expr_binary_token10] = ACTIONS(1542), - [aux_sym_expr_binary_token11] = ACTIONS(1542), - [aux_sym_expr_binary_token12] = ACTIONS(1542), - [aux_sym_expr_binary_token13] = ACTIONS(1542), - [aux_sym_expr_binary_token14] = ACTIONS(1542), - [aux_sym_expr_binary_token15] = ACTIONS(1542), - [aux_sym_expr_binary_token16] = ACTIONS(1542), - [aux_sym_expr_binary_token17] = ACTIONS(1542), - [aux_sym_expr_binary_token18] = ACTIONS(1542), - [aux_sym_expr_binary_token19] = ACTIONS(1542), - [aux_sym_expr_binary_token20] = ACTIONS(1542), - [aux_sym_expr_binary_token21] = ACTIONS(1542), - [aux_sym_expr_binary_token22] = ACTIONS(1542), - [aux_sym_expr_binary_token23] = ACTIONS(1542), - [aux_sym_expr_binary_token24] = ACTIONS(1542), - [aux_sym_expr_binary_token25] = ACTIONS(1542), - [aux_sym_expr_binary_token26] = ACTIONS(1542), - [aux_sym_expr_binary_token27] = ACTIONS(1542), - [aux_sym_expr_binary_token28] = ACTIONS(1542), - [anon_sym_DOT_DOT2] = ACTIONS(1540), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1542), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1542), - [sym_filesize_unit] = ACTIONS(1542), - [sym_duration_unit] = ACTIONS(1542), - [anon_sym_err_GT] = ACTIONS(1540), - [anon_sym_out_GT] = ACTIONS(1540), - [anon_sym_e_GT] = ACTIONS(1540), - [anon_sym_o_GT] = ACTIONS(1540), - [anon_sym_err_PLUSout_GT] = ACTIONS(1540), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1540), - [anon_sym_o_PLUSe_GT] = ACTIONS(1540), - [anon_sym_e_PLUSo_GT] = ACTIONS(1540), - [anon_sym_err_GT_GT] = ACTIONS(1542), - [anon_sym_out_GT_GT] = ACTIONS(1542), - [anon_sym_e_GT_GT] = ACTIONS(1542), - [anon_sym_o_GT_GT] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1542), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(4848), + [anon_sym_false] = ACTIONS(4848), + [anon_sym_null] = ACTIONS(4848), + [aux_sym_cmd_identifier_token38] = ACTIONS(4848), + [aux_sym_cmd_identifier_token39] = ACTIONS(4848), + [aux_sym_cmd_identifier_token40] = ACTIONS(4848), + [sym__newline] = ACTIONS(4848), + [anon_sym_SEMI] = ACTIONS(4848), + [anon_sym_PIPE] = ACTIONS(4848), + [anon_sym_err_GT_PIPE] = ACTIONS(4848), + [anon_sym_out_GT_PIPE] = ACTIONS(4848), + [anon_sym_e_GT_PIPE] = ACTIONS(4848), + [anon_sym_o_GT_PIPE] = ACTIONS(4848), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4848), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4848), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4848), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4848), + [anon_sym_LBRACK] = ACTIONS(4848), + [anon_sym_LPAREN] = ACTIONS(4850), + [anon_sym_RPAREN] = ACTIONS(4848), + [anon_sym_DOLLAR] = ACTIONS(4850), + [anon_sym_DASH_DASH] = ACTIONS(4848), + [anon_sym_DASH] = ACTIONS(4850), + [anon_sym_LBRACE] = ACTIONS(4848), + [anon_sym_RBRACE] = ACTIONS(4848), + [anon_sym_DOT_DOT] = ACTIONS(4850), + [anon_sym_LPAREN2] = ACTIONS(4433), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4848), + [anon_sym_DOT_DOT_LT] = ACTIONS(4848), + [aux_sym__val_number_decimal_token1] = ACTIONS(4850), + [aux_sym__val_number_decimal_token2] = ACTIONS(4848), + [aux_sym__val_number_decimal_token3] = ACTIONS(4848), + [aux_sym__val_number_decimal_token4] = ACTIONS(4848), + [aux_sym__val_number_token1] = ACTIONS(4848), + [aux_sym__val_number_token2] = ACTIONS(4848), + [aux_sym__val_number_token3] = ACTIONS(4848), + [anon_sym_0b] = ACTIONS(4850), + [anon_sym_0o] = ACTIONS(4850), + [anon_sym_0x] = ACTIONS(4850), + [sym_val_date] = ACTIONS(4848), + [anon_sym_DQUOTE] = ACTIONS(4848), + [sym__str_single_quotes] = ACTIONS(4848), + [sym__str_back_ticks] = ACTIONS(4848), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4848), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4848), + [anon_sym_err_GT] = ACTIONS(4850), + [anon_sym_out_GT] = ACTIONS(4850), + [anon_sym_e_GT] = ACTIONS(4850), + [anon_sym_o_GT] = ACTIONS(4850), + [anon_sym_err_PLUSout_GT] = ACTIONS(4850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4850), + [anon_sym_o_PLUSe_GT] = ACTIONS(4850), + [anon_sym_e_PLUSo_GT] = ACTIONS(4850), + [anon_sym_err_GT_GT] = ACTIONS(4848), + [anon_sym_out_GT_GT] = ACTIONS(4848), + [anon_sym_e_GT_GT] = ACTIONS(4848), + [anon_sym_o_GT_GT] = ACTIONS(4848), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4848), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4848), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4848), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4848), + [aux_sym_unquoted_token1] = ACTIONS(4850), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(4848), }, [1420] = { [sym_comment] = STATE(1420), - [aux_sym_cmd_identifier_token41] = ACTIONS(1518), - [sym__newline] = ACTIONS(1518), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_err_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_GT_PIPE] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1520), - [anon_sym_RPAREN] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1520), - [anon_sym_DOT_DOT2] = ACTIONS(1518), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), - [sym_filesize_unit] = ACTIONS(1520), - [sym_duration_unit] = ACTIONS(1520), - [anon_sym_err_GT] = ACTIONS(1518), - [anon_sym_out_GT] = ACTIONS(1518), - [anon_sym_e_GT] = ACTIONS(1518), - [anon_sym_o_GT] = ACTIONS(1518), - [anon_sym_err_PLUSout_GT] = ACTIONS(1518), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), - [anon_sym_o_PLUSe_GT] = ACTIONS(1518), - [anon_sym_e_PLUSo_GT] = ACTIONS(1518), - [anon_sym_err_GT_GT] = ACTIONS(1520), - [anon_sym_out_GT_GT] = ACTIONS(1520), - [anon_sym_e_GT_GT] = ACTIONS(1520), - [anon_sym_o_GT_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1520), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(1717), + [anon_sym_false] = ACTIONS(1717), + [anon_sym_null] = ACTIONS(1717), + [aux_sym_cmd_identifier_token38] = ACTIONS(1717), + [aux_sym_cmd_identifier_token39] = ACTIONS(1717), + [aux_sym_cmd_identifier_token40] = ACTIONS(1717), + [sym__newline] = ACTIONS(1717), + [anon_sym_SEMI] = ACTIONS(1717), + [anon_sym_PIPE] = ACTIONS(1717), + [anon_sym_err_GT_PIPE] = ACTIONS(1717), + [anon_sym_out_GT_PIPE] = ACTIONS(1717), + [anon_sym_e_GT_PIPE] = ACTIONS(1717), + [anon_sym_o_GT_PIPE] = ACTIONS(1717), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1717), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1717), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1717), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1717), + [anon_sym_LBRACK] = ACTIONS(1717), + [anon_sym_LPAREN] = ACTIONS(1717), + [anon_sym_RPAREN] = ACTIONS(1717), + [anon_sym_DOLLAR] = ACTIONS(1715), + [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_LBRACE] = ACTIONS(1717), + [anon_sym_RBRACE] = ACTIONS(1717), + [anon_sym_DOT_DOT] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(4852), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1717), + [anon_sym_DOT_DOT_LT] = ACTIONS(1717), + [aux_sym__immediate_decimal_token2] = ACTIONS(4854), + [aux_sym__val_number_decimal_token1] = ACTIONS(1715), + [aux_sym__val_number_decimal_token2] = ACTIONS(1717), + [aux_sym__val_number_decimal_token3] = ACTIONS(1717), + [aux_sym__val_number_decimal_token4] = ACTIONS(1717), + [aux_sym__val_number_token1] = ACTIONS(1717), + [aux_sym__val_number_token2] = ACTIONS(1717), + [aux_sym__val_number_token3] = ACTIONS(1717), + [anon_sym_0b] = ACTIONS(1715), + [anon_sym_0o] = ACTIONS(1715), + [anon_sym_0x] = ACTIONS(1715), + [sym_val_date] = ACTIONS(1717), + [anon_sym_DQUOTE] = ACTIONS(1717), + [sym__str_single_quotes] = ACTIONS(1717), + [sym__str_back_ticks] = ACTIONS(1717), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1717), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1717), + [anon_sym_err_GT] = ACTIONS(1715), + [anon_sym_out_GT] = ACTIONS(1715), + [anon_sym_e_GT] = ACTIONS(1715), + [anon_sym_o_GT] = ACTIONS(1715), + [anon_sym_err_PLUSout_GT] = ACTIONS(1715), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1715), + [anon_sym_o_PLUSe_GT] = ACTIONS(1715), + [anon_sym_e_PLUSo_GT] = ACTIONS(1715), + [anon_sym_err_GT_GT] = ACTIONS(1717), + [anon_sym_out_GT_GT] = ACTIONS(1717), + [anon_sym_e_GT_GT] = ACTIONS(1717), + [anon_sym_o_GT_GT] = ACTIONS(1717), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1717), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1717), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1717), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1717), + [aux_sym_unquoted_token1] = ACTIONS(1715), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1717), }, [1421] = { [sym_comment] = STATE(1421), - [ts_builtin_sym_end] = ACTIONS(1520), - [aux_sym_cmd_identifier_token41] = ACTIONS(1518), - [sym__newline] = ACTIONS(1520), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_err_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_GT_PIPE] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1520), - [aux_sym_expr_binary_token1] = ACTIONS(1520), - [aux_sym_expr_binary_token2] = ACTIONS(1520), - [aux_sym_expr_binary_token3] = ACTIONS(1520), - [aux_sym_expr_binary_token4] = ACTIONS(1520), - [aux_sym_expr_binary_token5] = ACTIONS(1520), - [aux_sym_expr_binary_token6] = ACTIONS(1520), - [aux_sym_expr_binary_token7] = ACTIONS(1520), - [aux_sym_expr_binary_token8] = ACTIONS(1520), - [aux_sym_expr_binary_token9] = ACTIONS(1520), - [aux_sym_expr_binary_token10] = ACTIONS(1520), - [aux_sym_expr_binary_token11] = ACTIONS(1520), - [aux_sym_expr_binary_token12] = ACTIONS(1520), - [aux_sym_expr_binary_token13] = ACTIONS(1520), - [aux_sym_expr_binary_token14] = ACTIONS(1520), - [aux_sym_expr_binary_token15] = ACTIONS(1520), - [aux_sym_expr_binary_token16] = ACTIONS(1520), - [aux_sym_expr_binary_token17] = ACTIONS(1520), - [aux_sym_expr_binary_token18] = ACTIONS(1520), - [aux_sym_expr_binary_token19] = ACTIONS(1520), - [aux_sym_expr_binary_token20] = ACTIONS(1520), - [aux_sym_expr_binary_token21] = ACTIONS(1520), - [aux_sym_expr_binary_token22] = ACTIONS(1520), - [aux_sym_expr_binary_token23] = ACTIONS(1520), - [aux_sym_expr_binary_token24] = ACTIONS(1520), - [aux_sym_expr_binary_token25] = ACTIONS(1520), - [aux_sym_expr_binary_token26] = ACTIONS(1520), - [aux_sym_expr_binary_token27] = ACTIONS(1520), - [aux_sym_expr_binary_token28] = ACTIONS(1520), - [anon_sym_DOT_DOT2] = ACTIONS(1518), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), - [aux_sym__immediate_decimal_token2] = ACTIONS(4702), - [sym_filesize_unit] = ACTIONS(1520), - [sym_duration_unit] = ACTIONS(1520), - [anon_sym_err_GT] = ACTIONS(1518), - [anon_sym_out_GT] = ACTIONS(1518), - [anon_sym_e_GT] = ACTIONS(1518), - [anon_sym_o_GT] = ACTIONS(1518), - [anon_sym_err_PLUSout_GT] = ACTIONS(1518), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), - [anon_sym_o_PLUSe_GT] = ACTIONS(1518), - [anon_sym_e_PLUSo_GT] = ACTIONS(1518), - [anon_sym_err_GT_GT] = ACTIONS(1520), - [anon_sym_out_GT_GT] = ACTIONS(1520), - [anon_sym_e_GT_GT] = ACTIONS(1520), - [anon_sym_o_GT_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1520), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(1771), + [anon_sym_false] = ACTIONS(1771), + [anon_sym_null] = ACTIONS(1771), + [aux_sym_cmd_identifier_token38] = ACTIONS(1771), + [aux_sym_cmd_identifier_token39] = ACTIONS(1771), + [aux_sym_cmd_identifier_token40] = ACTIONS(1771), + [sym__newline] = ACTIONS(1771), + [anon_sym_SEMI] = ACTIONS(1771), + [anon_sym_PIPE] = ACTIONS(1771), + [anon_sym_err_GT_PIPE] = ACTIONS(1771), + [anon_sym_out_GT_PIPE] = ACTIONS(1771), + [anon_sym_e_GT_PIPE] = ACTIONS(1771), + [anon_sym_o_GT_PIPE] = ACTIONS(1771), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1771), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1771), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1771), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1771), + [anon_sym_LPAREN] = ACTIONS(1769), + [anon_sym_RPAREN] = ACTIONS(1771), + [anon_sym_DOLLAR] = ACTIONS(1769), + [anon_sym_DASH_DASH] = ACTIONS(1771), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_LBRACE] = ACTIONS(1771), + [anon_sym_RBRACE] = ACTIONS(1771), + [anon_sym_DOT_DOT] = ACTIONS(1769), + [anon_sym_LPAREN2] = ACTIONS(1771), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1771), + [anon_sym_DOT_DOT_LT] = ACTIONS(1771), + [aux_sym__val_number_decimal_token1] = ACTIONS(1769), + [aux_sym__val_number_decimal_token2] = ACTIONS(1771), + [aux_sym__val_number_decimal_token3] = ACTIONS(1771), + [aux_sym__val_number_decimal_token4] = ACTIONS(1771), + [aux_sym__val_number_token1] = ACTIONS(1771), + [aux_sym__val_number_token2] = ACTIONS(1771), + [aux_sym__val_number_token3] = ACTIONS(1771), + [anon_sym_0b] = ACTIONS(1769), + [anon_sym_0o] = ACTIONS(1769), + [anon_sym_0x] = ACTIONS(1769), + [sym_val_date] = ACTIONS(1771), + [anon_sym_DQUOTE] = ACTIONS(1771), + [sym__str_single_quotes] = ACTIONS(1771), + [sym__str_back_ticks] = ACTIONS(1771), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1771), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1771), + [anon_sym_err_GT] = ACTIONS(1769), + [anon_sym_out_GT] = ACTIONS(1769), + [anon_sym_e_GT] = ACTIONS(1769), + [anon_sym_o_GT] = ACTIONS(1769), + [anon_sym_err_PLUSout_GT] = ACTIONS(1769), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1769), + [anon_sym_o_PLUSe_GT] = ACTIONS(1769), + [anon_sym_e_PLUSo_GT] = ACTIONS(1769), + [anon_sym_err_GT_GT] = ACTIONS(1771), + [anon_sym_out_GT_GT] = ACTIONS(1771), + [anon_sym_e_GT_GT] = ACTIONS(1771), + [anon_sym_o_GT_GT] = ACTIONS(1771), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1771), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1771), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1771), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1771), + [aux_sym_unquoted_token1] = ACTIONS(1769), + [aux_sym_unquoted_token2] = ACTIONS(1769), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1771), }, [1422] = { - [sym__expr_parenthesized_immediate] = STATE(7682), [sym_comment] = STATE(1422), - [sym__newline] = ACTIONS(4759), - [anon_sym_SEMI] = ACTIONS(4759), - [anon_sym_PIPE] = ACTIONS(4759), - [anon_sym_err_GT_PIPE] = ACTIONS(4759), - [anon_sym_out_GT_PIPE] = ACTIONS(4759), - [anon_sym_e_GT_PIPE] = ACTIONS(4759), - [anon_sym_o_GT_PIPE] = ACTIONS(4759), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4759), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4759), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4759), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4759), - [anon_sym_RPAREN] = ACTIONS(4759), - [anon_sym_DASH_DASH] = ACTIONS(4759), - [anon_sym_DASH] = ACTIONS(4761), - [anon_sym_LBRACE] = ACTIONS(4759), - [anon_sym_RBRACE] = ACTIONS(4759), - [anon_sym_EQ_GT] = ACTIONS(4759), - [anon_sym_LPAREN2] = ACTIONS(3978), - [aux_sym_expr_binary_token1] = ACTIONS(4759), - [aux_sym_expr_binary_token2] = ACTIONS(4759), - [aux_sym_expr_binary_token3] = ACTIONS(4759), - [aux_sym_expr_binary_token4] = ACTIONS(4759), - [aux_sym_expr_binary_token5] = ACTIONS(4759), - [aux_sym_expr_binary_token6] = ACTIONS(4759), - [aux_sym_expr_binary_token7] = ACTIONS(4759), - [aux_sym_expr_binary_token8] = ACTIONS(4759), - [aux_sym_expr_binary_token9] = ACTIONS(4759), - [aux_sym_expr_binary_token10] = ACTIONS(4759), - [aux_sym_expr_binary_token11] = ACTIONS(4759), - [aux_sym_expr_binary_token12] = ACTIONS(4759), - [aux_sym_expr_binary_token13] = ACTIONS(4759), - [aux_sym_expr_binary_token14] = ACTIONS(4759), - [aux_sym_expr_binary_token15] = ACTIONS(4759), - [aux_sym_expr_binary_token16] = ACTIONS(4759), - [aux_sym_expr_binary_token17] = ACTIONS(4759), - [aux_sym_expr_binary_token18] = ACTIONS(4759), - [aux_sym_expr_binary_token19] = ACTIONS(4759), - [aux_sym_expr_binary_token20] = ACTIONS(4759), - [aux_sym_expr_binary_token21] = ACTIONS(4759), - [aux_sym_expr_binary_token22] = ACTIONS(4759), - [aux_sym_expr_binary_token23] = ACTIONS(4759), - [aux_sym_expr_binary_token24] = ACTIONS(4759), - [aux_sym_expr_binary_token25] = ACTIONS(4759), - [aux_sym_expr_binary_token26] = ACTIONS(4759), - [aux_sym_expr_binary_token27] = ACTIONS(4759), - [aux_sym_expr_binary_token28] = ACTIONS(4759), - [anon_sym_err_GT] = ACTIONS(4761), - [anon_sym_out_GT] = ACTIONS(4761), - [anon_sym_e_GT] = ACTIONS(4761), - [anon_sym_o_GT] = ACTIONS(4761), - [anon_sym_err_PLUSout_GT] = ACTIONS(4761), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4761), - [anon_sym_o_PLUSe_GT] = ACTIONS(4761), - [anon_sym_e_PLUSo_GT] = ACTIONS(4761), - [anon_sym_err_GT_GT] = ACTIONS(4759), - [anon_sym_out_GT_GT] = ACTIONS(4759), - [anon_sym_e_GT_GT] = ACTIONS(4759), - [anon_sym_o_GT_GT] = ACTIONS(4759), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4759), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4759), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4759), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4759), - [anon_sym_POUND] = ACTIONS(247), + [ts_builtin_sym_end] = ACTIONS(2220), + [anon_sym_true] = ACTIONS(2220), + [anon_sym_false] = ACTIONS(2220), + [anon_sym_null] = ACTIONS(2220), + [aux_sym_cmd_identifier_token38] = ACTIONS(2220), + [aux_sym_cmd_identifier_token39] = ACTIONS(2220), + [aux_sym_cmd_identifier_token40] = ACTIONS(2220), + [sym__newline] = ACTIONS(2220), + [anon_sym_SEMI] = ACTIONS(2220), + [anon_sym_PIPE] = ACTIONS(2220), + [anon_sym_err_GT_PIPE] = ACTIONS(2220), + [anon_sym_out_GT_PIPE] = ACTIONS(2220), + [anon_sym_e_GT_PIPE] = ACTIONS(2220), + [anon_sym_o_GT_PIPE] = ACTIONS(2220), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2220), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2220), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2220), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2220), + [anon_sym_LBRACK] = ACTIONS(2220), + [anon_sym_LPAREN] = ACTIONS(2220), + [anon_sym_DOLLAR] = ACTIONS(2218), + [anon_sym_DASH_DASH] = ACTIONS(2220), + [anon_sym_DASH] = ACTIONS(2218), + [anon_sym_LBRACE] = ACTIONS(2220), + [anon_sym_DOT_DOT] = ACTIONS(2218), + [anon_sym_DOT_DOT2] = ACTIONS(2218), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2218), + [anon_sym_DOT_DOT_LT] = ACTIONS(2218), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2220), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2220), + [aux_sym__val_number_decimal_token1] = ACTIONS(2218), + [aux_sym__val_number_decimal_token2] = ACTIONS(2220), + [aux_sym__val_number_decimal_token3] = ACTIONS(2220), + [aux_sym__val_number_decimal_token4] = ACTIONS(2220), + [aux_sym__val_number_token1] = ACTIONS(2220), + [aux_sym__val_number_token2] = ACTIONS(2220), + [aux_sym__val_number_token3] = ACTIONS(2220), + [anon_sym_0b] = ACTIONS(2218), + [anon_sym_0o] = ACTIONS(2218), + [anon_sym_0x] = ACTIONS(2218), + [sym_val_date] = ACTIONS(2220), + [anon_sym_DQUOTE] = ACTIONS(2220), + [sym__str_single_quotes] = ACTIONS(2220), + [sym__str_back_ticks] = ACTIONS(2220), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2220), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2220), + [anon_sym_err_GT] = ACTIONS(2218), + [anon_sym_out_GT] = ACTIONS(2218), + [anon_sym_e_GT] = ACTIONS(2218), + [anon_sym_o_GT] = ACTIONS(2218), + [anon_sym_err_PLUSout_GT] = ACTIONS(2218), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2218), + [anon_sym_o_PLUSe_GT] = ACTIONS(2218), + [anon_sym_e_PLUSo_GT] = ACTIONS(2218), + [anon_sym_err_GT_GT] = ACTIONS(2220), + [anon_sym_out_GT_GT] = ACTIONS(2220), + [anon_sym_e_GT_GT] = ACTIONS(2220), + [anon_sym_o_GT_GT] = ACTIONS(2220), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2220), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2220), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2220), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2220), + [aux_sym_unquoted_token1] = ACTIONS(2218), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2220), }, [1423] = { [sym_comment] = STATE(1423), - [anon_sym_true] = ACTIONS(2301), - [anon_sym_false] = ACTIONS(2301), - [anon_sym_null] = ACTIONS(2301), - [aux_sym_cmd_identifier_token38] = ACTIONS(2301), - [aux_sym_cmd_identifier_token39] = ACTIONS(2301), - [aux_sym_cmd_identifier_token40] = ACTIONS(2301), - [sym__newline] = ACTIONS(2301), - [anon_sym_SEMI] = ACTIONS(2301), - [anon_sym_PIPE] = ACTIONS(2301), - [anon_sym_err_GT_PIPE] = ACTIONS(2301), - [anon_sym_out_GT_PIPE] = ACTIONS(2301), - [anon_sym_e_GT_PIPE] = ACTIONS(2301), - [anon_sym_o_GT_PIPE] = ACTIONS(2301), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2301), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2301), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2301), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2301), - [anon_sym_LBRACK] = ACTIONS(2301), - [anon_sym_LPAREN] = ACTIONS(2297), - [anon_sym_RPAREN] = ACTIONS(2301), - [anon_sym_DOLLAR] = ACTIONS(2297), - [anon_sym_DASH_DASH] = ACTIONS(2301), - [anon_sym_DASH] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(2301), - [anon_sym_RBRACE] = ACTIONS(2301), - [anon_sym_DOT_DOT] = ACTIONS(2297), - [anon_sym_LPAREN2] = ACTIONS(2299), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2301), - [anon_sym_DOT_DOT_LT] = ACTIONS(2301), - [aux_sym__val_number_decimal_token1] = ACTIONS(2297), - [aux_sym__val_number_decimal_token2] = ACTIONS(2301), - [aux_sym__val_number_decimal_token3] = ACTIONS(2301), - [aux_sym__val_number_decimal_token4] = ACTIONS(2301), - [aux_sym__val_number_token1] = ACTIONS(2301), - [aux_sym__val_number_token2] = ACTIONS(2301), - [aux_sym__val_number_token3] = ACTIONS(2301), - [anon_sym_0b] = ACTIONS(2297), - [anon_sym_0o] = ACTIONS(2297), - [anon_sym_0x] = ACTIONS(2297), - [sym_val_date] = ACTIONS(2301), - [anon_sym_DQUOTE] = ACTIONS(2301), - [sym__str_single_quotes] = ACTIONS(2301), - [sym__str_back_ticks] = ACTIONS(2301), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2301), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2301), - [anon_sym_err_GT] = ACTIONS(2297), - [anon_sym_out_GT] = ACTIONS(2297), - [anon_sym_e_GT] = ACTIONS(2297), - [anon_sym_o_GT] = ACTIONS(2297), - [anon_sym_err_PLUSout_GT] = ACTIONS(2297), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2297), - [anon_sym_o_PLUSe_GT] = ACTIONS(2297), - [anon_sym_e_PLUSo_GT] = ACTIONS(2297), - [anon_sym_err_GT_GT] = ACTIONS(2301), - [anon_sym_out_GT_GT] = ACTIONS(2301), - [anon_sym_e_GT_GT] = ACTIONS(2301), - [anon_sym_o_GT_GT] = ACTIONS(2301), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2301), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2301), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2301), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2301), - [aux_sym_unquoted_token1] = ACTIONS(2297), - [aux_sym_unquoted_token2] = ACTIONS(2303), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cmd_identifier_token41] = ACTIONS(1596), + [sym__newline] = ACTIONS(1596), + [anon_sym_SEMI] = ACTIONS(1598), + [anon_sym_PIPE] = ACTIONS(1598), + [anon_sym_err_GT_PIPE] = ACTIONS(1598), + [anon_sym_out_GT_PIPE] = ACTIONS(1598), + [anon_sym_e_GT_PIPE] = ACTIONS(1598), + [anon_sym_o_GT_PIPE] = ACTIONS(1598), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1598), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1598), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1598), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1598), + [anon_sym_RPAREN] = ACTIONS(1598), + [anon_sym_LBRACE] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1598), + [anon_sym_DOT_DOT2] = ACTIONS(1596), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1598), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1598), + [aux_sym__immediate_decimal_token2] = ACTIONS(4856), + [sym_filesize_unit] = ACTIONS(1598), + [sym_duration_unit] = ACTIONS(1598), + [anon_sym_err_GT] = ACTIONS(1596), + [anon_sym_out_GT] = ACTIONS(1596), + [anon_sym_e_GT] = ACTIONS(1596), + [anon_sym_o_GT] = ACTIONS(1596), + [anon_sym_err_PLUSout_GT] = ACTIONS(1596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1596), + [anon_sym_o_PLUSe_GT] = ACTIONS(1596), + [anon_sym_e_PLUSo_GT] = ACTIONS(1596), + [anon_sym_err_GT_GT] = ACTIONS(1598), + [anon_sym_out_GT_GT] = ACTIONS(1598), + [anon_sym_e_GT_GT] = ACTIONS(1598), + [anon_sym_o_GT_GT] = ACTIONS(1598), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1598), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1598), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1598), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1598), + [anon_sym_POUND] = ACTIONS(249), }, [1424] = { - [sym__expr_parenthesized_immediate] = STATE(7682), [sym_comment] = STATE(1424), - [sym__newline] = ACTIONS(4747), - [anon_sym_SEMI] = ACTIONS(4747), - [anon_sym_PIPE] = ACTIONS(4747), - [anon_sym_err_GT_PIPE] = ACTIONS(4747), - [anon_sym_out_GT_PIPE] = ACTIONS(4747), - [anon_sym_e_GT_PIPE] = ACTIONS(4747), - [anon_sym_o_GT_PIPE] = ACTIONS(4747), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4747), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4747), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4747), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4747), - [anon_sym_RPAREN] = ACTIONS(4747), - [anon_sym_DASH_DASH] = ACTIONS(4747), - [anon_sym_DASH] = ACTIONS(4749), - [anon_sym_LBRACE] = ACTIONS(4747), - [anon_sym_RBRACE] = ACTIONS(4747), - [anon_sym_EQ_GT] = ACTIONS(4747), - [anon_sym_LPAREN2] = ACTIONS(3978), - [aux_sym_expr_binary_token1] = ACTIONS(4747), - [aux_sym_expr_binary_token2] = ACTIONS(4747), - [aux_sym_expr_binary_token3] = ACTIONS(4747), - [aux_sym_expr_binary_token4] = ACTIONS(4747), - [aux_sym_expr_binary_token5] = ACTIONS(4747), - [aux_sym_expr_binary_token6] = ACTIONS(4747), - [aux_sym_expr_binary_token7] = ACTIONS(4747), - [aux_sym_expr_binary_token8] = ACTIONS(4747), - [aux_sym_expr_binary_token9] = ACTIONS(4747), - [aux_sym_expr_binary_token10] = ACTIONS(4747), - [aux_sym_expr_binary_token11] = ACTIONS(4747), - [aux_sym_expr_binary_token12] = ACTIONS(4747), - [aux_sym_expr_binary_token13] = ACTIONS(4747), - [aux_sym_expr_binary_token14] = ACTIONS(4747), - [aux_sym_expr_binary_token15] = ACTIONS(4747), - [aux_sym_expr_binary_token16] = ACTIONS(4747), - [aux_sym_expr_binary_token17] = ACTIONS(4747), - [aux_sym_expr_binary_token18] = ACTIONS(4747), - [aux_sym_expr_binary_token19] = ACTIONS(4747), - [aux_sym_expr_binary_token20] = ACTIONS(4747), - [aux_sym_expr_binary_token21] = ACTIONS(4747), - [aux_sym_expr_binary_token22] = ACTIONS(4747), - [aux_sym_expr_binary_token23] = ACTIONS(4747), - [aux_sym_expr_binary_token24] = ACTIONS(4747), - [aux_sym_expr_binary_token25] = ACTIONS(4747), - [aux_sym_expr_binary_token26] = ACTIONS(4747), - [aux_sym_expr_binary_token27] = ACTIONS(4747), - [aux_sym_expr_binary_token28] = ACTIONS(4747), - [anon_sym_err_GT] = ACTIONS(4749), - [anon_sym_out_GT] = ACTIONS(4749), - [anon_sym_e_GT] = ACTIONS(4749), - [anon_sym_o_GT] = ACTIONS(4749), - [anon_sym_err_PLUSout_GT] = ACTIONS(4749), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4749), - [anon_sym_o_PLUSe_GT] = ACTIONS(4749), - [anon_sym_e_PLUSo_GT] = ACTIONS(4749), - [anon_sym_err_GT_GT] = ACTIONS(4747), - [anon_sym_out_GT_GT] = ACTIONS(4747), - [anon_sym_e_GT_GT] = ACTIONS(4747), - [anon_sym_o_GT_GT] = ACTIONS(4747), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4747), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4747), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4747), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4747), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(1828), + [anon_sym_false] = ACTIONS(1828), + [anon_sym_null] = ACTIONS(1828), + [aux_sym_cmd_identifier_token38] = ACTIONS(1828), + [aux_sym_cmd_identifier_token39] = ACTIONS(1828), + [aux_sym_cmd_identifier_token40] = ACTIONS(1828), + [sym__newline] = ACTIONS(1828), + [anon_sym_SEMI] = ACTIONS(1828), + [anon_sym_PIPE] = ACTIONS(1828), + [anon_sym_err_GT_PIPE] = ACTIONS(1828), + [anon_sym_out_GT_PIPE] = ACTIONS(1828), + [anon_sym_e_GT_PIPE] = ACTIONS(1828), + [anon_sym_o_GT_PIPE] = ACTIONS(1828), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1828), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1828), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1828), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1828), + [anon_sym_LBRACK] = ACTIONS(1828), + [anon_sym_LPAREN] = ACTIONS(1826), + [anon_sym_RPAREN] = ACTIONS(1828), + [anon_sym_DOLLAR] = ACTIONS(1826), + [anon_sym_DASH_DASH] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_LBRACE] = ACTIONS(1828), + [anon_sym_RBRACE] = ACTIONS(1828), + [anon_sym_DOT_DOT] = ACTIONS(1826), + [anon_sym_LPAREN2] = ACTIONS(1828), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1828), + [anon_sym_DOT_DOT_LT] = ACTIONS(1828), + [aux_sym__val_number_decimal_token1] = ACTIONS(1826), + [aux_sym__val_number_decimal_token2] = ACTIONS(1828), + [aux_sym__val_number_decimal_token3] = ACTIONS(1828), + [aux_sym__val_number_decimal_token4] = ACTIONS(1828), + [aux_sym__val_number_token1] = ACTIONS(1828), + [aux_sym__val_number_token2] = ACTIONS(1828), + [aux_sym__val_number_token3] = ACTIONS(1828), + [anon_sym_0b] = ACTIONS(1826), + [anon_sym_0o] = ACTIONS(1826), + [anon_sym_0x] = ACTIONS(1826), + [sym_val_date] = ACTIONS(1828), + [anon_sym_DQUOTE] = ACTIONS(1828), + [sym__str_single_quotes] = ACTIONS(1828), + [sym__str_back_ticks] = ACTIONS(1828), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1828), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1828), + [anon_sym_err_GT] = ACTIONS(1826), + [anon_sym_out_GT] = ACTIONS(1826), + [anon_sym_e_GT] = ACTIONS(1826), + [anon_sym_o_GT] = ACTIONS(1826), + [anon_sym_err_PLUSout_GT] = ACTIONS(1826), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1826), + [anon_sym_o_PLUSe_GT] = ACTIONS(1826), + [anon_sym_e_PLUSo_GT] = ACTIONS(1826), + [anon_sym_err_GT_GT] = ACTIONS(1828), + [anon_sym_out_GT_GT] = ACTIONS(1828), + [anon_sym_e_GT_GT] = ACTIONS(1828), + [anon_sym_o_GT_GT] = ACTIONS(1828), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1828), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1828), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1828), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1828), + [aux_sym_unquoted_token1] = ACTIONS(1826), + [aux_sym_unquoted_token2] = ACTIONS(1826), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1828), }, [1425] = { [sym_comment] = STATE(1425), - [aux_sym_cmd_identifier_token41] = ACTIONS(1554), - [sym__newline] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1556), - [anon_sym_PIPE] = ACTIONS(1556), - [anon_sym_err_GT_PIPE] = ACTIONS(1556), - [anon_sym_out_GT_PIPE] = ACTIONS(1556), - [anon_sym_e_GT_PIPE] = ACTIONS(1556), - [anon_sym_o_GT_PIPE] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1556), - [anon_sym_RPAREN] = ACTIONS(1556), - [anon_sym_RBRACE] = ACTIONS(1556), - [aux_sym_expr_binary_token1] = ACTIONS(1556), - [aux_sym_expr_binary_token2] = ACTIONS(1556), - [aux_sym_expr_binary_token3] = ACTIONS(1556), - [aux_sym_expr_binary_token4] = ACTIONS(1556), - [aux_sym_expr_binary_token5] = ACTIONS(1556), - [aux_sym_expr_binary_token6] = ACTIONS(1556), - [aux_sym_expr_binary_token7] = ACTIONS(1556), - [aux_sym_expr_binary_token8] = ACTIONS(1556), - [aux_sym_expr_binary_token9] = ACTIONS(1556), - [aux_sym_expr_binary_token10] = ACTIONS(1556), - [aux_sym_expr_binary_token11] = ACTIONS(1556), - [aux_sym_expr_binary_token12] = ACTIONS(1556), - [aux_sym_expr_binary_token13] = ACTIONS(1556), - [aux_sym_expr_binary_token14] = ACTIONS(1556), - [aux_sym_expr_binary_token15] = ACTIONS(1556), - [aux_sym_expr_binary_token16] = ACTIONS(1556), - [aux_sym_expr_binary_token17] = ACTIONS(1556), - [aux_sym_expr_binary_token18] = ACTIONS(1556), - [aux_sym_expr_binary_token19] = ACTIONS(1556), - [aux_sym_expr_binary_token20] = ACTIONS(1556), - [aux_sym_expr_binary_token21] = ACTIONS(1556), - [aux_sym_expr_binary_token22] = ACTIONS(1556), - [aux_sym_expr_binary_token23] = ACTIONS(1556), - [aux_sym_expr_binary_token24] = ACTIONS(1556), - [aux_sym_expr_binary_token25] = ACTIONS(1556), - [aux_sym_expr_binary_token26] = ACTIONS(1556), - [aux_sym_expr_binary_token27] = ACTIONS(1556), - [aux_sym_expr_binary_token28] = ACTIONS(1556), - [anon_sym_DOT_DOT2] = ACTIONS(1554), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1556), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1556), - [sym_filesize_unit] = ACTIONS(1556), - [sym_duration_unit] = ACTIONS(1556), - [anon_sym_err_GT] = ACTIONS(1554), - [anon_sym_out_GT] = ACTIONS(1554), - [anon_sym_e_GT] = ACTIONS(1554), - [anon_sym_o_GT] = ACTIONS(1554), - [anon_sym_err_PLUSout_GT] = ACTIONS(1554), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1554), - [anon_sym_o_PLUSe_GT] = ACTIONS(1554), - [anon_sym_e_PLUSo_GT] = ACTIONS(1554), - [anon_sym_err_GT_GT] = ACTIONS(1556), - [anon_sym_out_GT_GT] = ACTIONS(1556), - [anon_sym_e_GT_GT] = ACTIONS(1556), - [anon_sym_o_GT_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1556), - [anon_sym_POUND] = ACTIONS(247), + [ts_builtin_sym_end] = ACTIONS(4746), + [anon_sym_true] = ACTIONS(4746), + [anon_sym_false] = ACTIONS(4746), + [anon_sym_null] = ACTIONS(4746), + [aux_sym_cmd_identifier_token38] = ACTIONS(4746), + [aux_sym_cmd_identifier_token39] = ACTIONS(4746), + [aux_sym_cmd_identifier_token40] = ACTIONS(4746), + [sym__newline] = ACTIONS(4746), + [anon_sym_SEMI] = ACTIONS(4746), + [anon_sym_PIPE] = ACTIONS(4746), + [anon_sym_err_GT_PIPE] = ACTIONS(4746), + [anon_sym_out_GT_PIPE] = ACTIONS(4746), + [anon_sym_e_GT_PIPE] = ACTIONS(4746), + [anon_sym_o_GT_PIPE] = ACTIONS(4746), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4746), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4746), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4746), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4746), + [anon_sym_LBRACK] = ACTIONS(4746), + [anon_sym_LPAREN] = ACTIONS(4746), + [anon_sym_DOLLAR] = ACTIONS(4748), + [anon_sym_DASH_DASH] = ACTIONS(4746), + [anon_sym_DASH] = ACTIONS(4748), + [anon_sym_LBRACE] = ACTIONS(4746), + [anon_sym_DOT_DOT] = ACTIONS(4748), + [anon_sym_DOT_DOT2] = ACTIONS(4858), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4748), + [anon_sym_DOT_DOT_LT] = ACTIONS(4748), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4860), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4860), + [aux_sym__val_number_decimal_token1] = ACTIONS(4748), + [aux_sym__val_number_decimal_token2] = ACTIONS(4746), + [aux_sym__val_number_decimal_token3] = ACTIONS(4746), + [aux_sym__val_number_decimal_token4] = ACTIONS(4746), + [aux_sym__val_number_token1] = ACTIONS(4746), + [aux_sym__val_number_token2] = ACTIONS(4746), + [aux_sym__val_number_token3] = ACTIONS(4746), + [anon_sym_0b] = ACTIONS(4748), + [anon_sym_0o] = ACTIONS(4748), + [anon_sym_0x] = ACTIONS(4748), + [sym_val_date] = ACTIONS(4746), + [anon_sym_DQUOTE] = ACTIONS(4746), + [sym__str_single_quotes] = ACTIONS(4746), + [sym__str_back_ticks] = ACTIONS(4746), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4746), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4746), + [anon_sym_err_GT] = ACTIONS(4748), + [anon_sym_out_GT] = ACTIONS(4748), + [anon_sym_e_GT] = ACTIONS(4748), + [anon_sym_o_GT] = ACTIONS(4748), + [anon_sym_err_PLUSout_GT] = ACTIONS(4748), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4748), + [anon_sym_o_PLUSe_GT] = ACTIONS(4748), + [anon_sym_e_PLUSo_GT] = ACTIONS(4748), + [anon_sym_err_GT_GT] = ACTIONS(4746), + [anon_sym_out_GT_GT] = ACTIONS(4746), + [anon_sym_e_GT_GT] = ACTIONS(4746), + [anon_sym_o_GT_GT] = ACTIONS(4746), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4746), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4746), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4746), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4746), + [aux_sym_unquoted_token1] = ACTIONS(4748), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(4746), }, [1426] = { [sym_comment] = STATE(1426), - [ts_builtin_sym_end] = ACTIONS(1723), - [anon_sym_true] = ACTIONS(1723), - [anon_sym_false] = ACTIONS(1723), - [anon_sym_null] = ACTIONS(1723), - [aux_sym_cmd_identifier_token38] = ACTIONS(1723), - [aux_sym_cmd_identifier_token39] = ACTIONS(1723), - [aux_sym_cmd_identifier_token40] = ACTIONS(1723), - [sym__newline] = ACTIONS(1723), - [anon_sym_SEMI] = ACTIONS(1723), - [anon_sym_PIPE] = ACTIONS(1723), - [anon_sym_err_GT_PIPE] = ACTIONS(1723), - [anon_sym_out_GT_PIPE] = ACTIONS(1723), - [anon_sym_e_GT_PIPE] = ACTIONS(1723), - [anon_sym_o_GT_PIPE] = ACTIONS(1723), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1723), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1723), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1723), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1723), - [anon_sym_LBRACK] = ACTIONS(1723), - [anon_sym_LPAREN] = ACTIONS(1721), - [anon_sym_DOLLAR] = ACTIONS(1721), - [anon_sym_DASH_DASH] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1723), - [anon_sym_DOT_DOT] = ACTIONS(1721), - [anon_sym_LPAREN2] = ACTIONS(1723), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1723), - [anon_sym_DOT_DOT_LT] = ACTIONS(1723), - [aux_sym__immediate_decimal_token2] = ACTIONS(4763), - [aux_sym__val_number_decimal_token1] = ACTIONS(1721), - [aux_sym__val_number_decimal_token2] = ACTIONS(1723), - [aux_sym__val_number_decimal_token3] = ACTIONS(1723), - [aux_sym__val_number_decimal_token4] = ACTIONS(1723), - [aux_sym__val_number_token1] = ACTIONS(1723), - [aux_sym__val_number_token2] = ACTIONS(1723), - [aux_sym__val_number_token3] = ACTIONS(1723), - [anon_sym_0b] = ACTIONS(1721), - [anon_sym_0o] = ACTIONS(1721), - [anon_sym_0x] = ACTIONS(1721), - [sym_val_date] = ACTIONS(1723), - [anon_sym_DQUOTE] = ACTIONS(1723), - [sym__str_single_quotes] = ACTIONS(1723), - [sym__str_back_ticks] = ACTIONS(1723), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1723), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1723), - [anon_sym_err_GT] = ACTIONS(1721), - [anon_sym_out_GT] = ACTIONS(1721), - [anon_sym_e_GT] = ACTIONS(1721), - [anon_sym_o_GT] = ACTIONS(1721), - [anon_sym_err_PLUSout_GT] = ACTIONS(1721), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1721), - [anon_sym_o_PLUSe_GT] = ACTIONS(1721), - [anon_sym_e_PLUSo_GT] = ACTIONS(1721), - [anon_sym_err_GT_GT] = ACTIONS(1723), - [anon_sym_out_GT_GT] = ACTIONS(1723), - [anon_sym_e_GT_GT] = ACTIONS(1723), - [anon_sym_o_GT_GT] = ACTIONS(1723), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1723), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1723), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1723), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1723), - [aux_sym_unquoted_token1] = ACTIONS(1721), - [aux_sym_unquoted_token2] = ACTIONS(1721), - [anon_sym_POUND] = ACTIONS(247), + [sym__newline] = ACTIONS(2105), + [anon_sym_SEMI] = ACTIONS(2107), + [anon_sym_PIPE] = ACTIONS(2107), + [anon_sym_err_GT_PIPE] = ACTIONS(2107), + [anon_sym_out_GT_PIPE] = ACTIONS(2107), + [anon_sym_e_GT_PIPE] = ACTIONS(2107), + [anon_sym_o_GT_PIPE] = ACTIONS(2107), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2107), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2107), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2107), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2107), + [anon_sym_DASH_DASH] = ACTIONS(2107), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_LBRACE] = ACTIONS(2107), + [anon_sym_RBRACE] = ACTIONS(2107), + [anon_sym_EQ_GT] = ACTIONS(2107), + [aux_sym_expr_binary_token1] = ACTIONS(2107), + [aux_sym_expr_binary_token2] = ACTIONS(2107), + [aux_sym_expr_binary_token3] = ACTIONS(2107), + [aux_sym_expr_binary_token4] = ACTIONS(2107), + [aux_sym_expr_binary_token5] = ACTIONS(2107), + [aux_sym_expr_binary_token6] = ACTIONS(2107), + [aux_sym_expr_binary_token7] = ACTIONS(2107), + [aux_sym_expr_binary_token8] = ACTIONS(2107), + [aux_sym_expr_binary_token9] = ACTIONS(2107), + [aux_sym_expr_binary_token10] = ACTIONS(2107), + [aux_sym_expr_binary_token11] = ACTIONS(2107), + [aux_sym_expr_binary_token12] = ACTIONS(2107), + [aux_sym_expr_binary_token13] = ACTIONS(2107), + [aux_sym_expr_binary_token14] = ACTIONS(2107), + [aux_sym_expr_binary_token15] = ACTIONS(2107), + [aux_sym_expr_binary_token16] = ACTIONS(2107), + [aux_sym_expr_binary_token17] = ACTIONS(2107), + [aux_sym_expr_binary_token18] = ACTIONS(2107), + [aux_sym_expr_binary_token19] = ACTIONS(2107), + [aux_sym_expr_binary_token20] = ACTIONS(2107), + [aux_sym_expr_binary_token21] = ACTIONS(2107), + [aux_sym_expr_binary_token22] = ACTIONS(2107), + [aux_sym_expr_binary_token23] = ACTIONS(2107), + [aux_sym_expr_binary_token24] = ACTIONS(2107), + [aux_sym_expr_binary_token25] = ACTIONS(2107), + [aux_sym_expr_binary_token26] = ACTIONS(2107), + [aux_sym_expr_binary_token27] = ACTIONS(2107), + [aux_sym_expr_binary_token28] = ACTIONS(2107), + [anon_sym_DOT_DOT2] = ACTIONS(2105), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2107), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2107), + [aux_sym_record_entry_token1] = ACTIONS(2107), + [anon_sym_err_GT] = ACTIONS(2105), + [anon_sym_out_GT] = ACTIONS(2105), + [anon_sym_e_GT] = ACTIONS(2105), + [anon_sym_o_GT] = ACTIONS(2105), + [anon_sym_err_PLUSout_GT] = ACTIONS(2105), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2105), + [anon_sym_o_PLUSe_GT] = ACTIONS(2105), + [anon_sym_e_PLUSo_GT] = ACTIONS(2105), + [anon_sym_err_GT_GT] = ACTIONS(2107), + [anon_sym_out_GT_GT] = ACTIONS(2107), + [anon_sym_e_GT_GT] = ACTIONS(2107), + [anon_sym_o_GT_GT] = ACTIONS(2107), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2107), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2107), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2107), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2107), + [anon_sym_POUND] = ACTIONS(249), }, [1427] = { [sym_comment] = STATE(1427), - [aux_sym_cmd_identifier_token41] = ACTIONS(1653), - [sym__newline] = ACTIONS(1655), - [anon_sym_SEMI] = ACTIONS(1655), - [anon_sym_PIPE] = ACTIONS(1655), - [anon_sym_err_GT_PIPE] = ACTIONS(1655), - [anon_sym_out_GT_PIPE] = ACTIONS(1655), - [anon_sym_e_GT_PIPE] = ACTIONS(1655), - [anon_sym_o_GT_PIPE] = ACTIONS(1655), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1655), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1655), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1655), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1655), - [anon_sym_RPAREN] = ACTIONS(1655), - [anon_sym_RBRACE] = ACTIONS(1655), - [aux_sym_expr_binary_token1] = ACTIONS(1655), - [aux_sym_expr_binary_token2] = ACTIONS(1655), - [aux_sym_expr_binary_token3] = ACTIONS(1655), - [aux_sym_expr_binary_token4] = ACTIONS(1655), - [aux_sym_expr_binary_token5] = ACTIONS(1655), - [aux_sym_expr_binary_token6] = ACTIONS(1655), - [aux_sym_expr_binary_token7] = ACTIONS(1655), - [aux_sym_expr_binary_token8] = ACTIONS(1655), - [aux_sym_expr_binary_token9] = ACTIONS(1655), - [aux_sym_expr_binary_token10] = ACTIONS(1655), - [aux_sym_expr_binary_token11] = ACTIONS(1655), - [aux_sym_expr_binary_token12] = ACTIONS(1655), - [aux_sym_expr_binary_token13] = ACTIONS(1655), - [aux_sym_expr_binary_token14] = ACTIONS(1655), - [aux_sym_expr_binary_token15] = ACTIONS(1655), - [aux_sym_expr_binary_token16] = ACTIONS(1655), - [aux_sym_expr_binary_token17] = ACTIONS(1655), - [aux_sym_expr_binary_token18] = ACTIONS(1655), - [aux_sym_expr_binary_token19] = ACTIONS(1655), - [aux_sym_expr_binary_token20] = ACTIONS(1655), - [aux_sym_expr_binary_token21] = ACTIONS(1655), - [aux_sym_expr_binary_token22] = ACTIONS(1655), - [aux_sym_expr_binary_token23] = ACTIONS(1655), - [aux_sym_expr_binary_token24] = ACTIONS(1655), - [aux_sym_expr_binary_token25] = ACTIONS(1655), - [aux_sym_expr_binary_token26] = ACTIONS(1655), - [aux_sym_expr_binary_token27] = ACTIONS(1655), - [aux_sym_expr_binary_token28] = ACTIONS(1655), - [anon_sym_DOT_DOT2] = ACTIONS(1653), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1655), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1655), - [sym_filesize_unit] = ACTIONS(1655), - [sym_duration_unit] = ACTIONS(1655), - [anon_sym_err_GT] = ACTIONS(1653), - [anon_sym_out_GT] = ACTIONS(1653), - [anon_sym_e_GT] = ACTIONS(1653), - [anon_sym_o_GT] = ACTIONS(1653), - [anon_sym_err_PLUSout_GT] = ACTIONS(1653), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1653), - [anon_sym_o_PLUSe_GT] = ACTIONS(1653), - [anon_sym_e_PLUSo_GT] = ACTIONS(1653), - [anon_sym_err_GT_GT] = ACTIONS(1655), - [anon_sym_out_GT_GT] = ACTIONS(1655), - [anon_sym_e_GT_GT] = ACTIONS(1655), - [anon_sym_o_GT_GT] = ACTIONS(1655), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1655), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1655), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1655), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1655), - [anon_sym_POUND] = ACTIONS(247), + [ts_builtin_sym_end] = ACTIONS(2232), + [anon_sym_true] = ACTIONS(2232), + [anon_sym_false] = ACTIONS(2232), + [anon_sym_null] = ACTIONS(2232), + [aux_sym_cmd_identifier_token38] = ACTIONS(2232), + [aux_sym_cmd_identifier_token39] = ACTIONS(2232), + [aux_sym_cmd_identifier_token40] = ACTIONS(2232), + [sym__newline] = ACTIONS(2232), + [anon_sym_SEMI] = ACTIONS(2232), + [anon_sym_PIPE] = ACTIONS(2232), + [anon_sym_err_GT_PIPE] = ACTIONS(2232), + [anon_sym_out_GT_PIPE] = ACTIONS(2232), + [anon_sym_e_GT_PIPE] = ACTIONS(2232), + [anon_sym_o_GT_PIPE] = ACTIONS(2232), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2232), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2232), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2232), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2232), + [anon_sym_LBRACK] = ACTIONS(2232), + [anon_sym_LPAREN] = ACTIONS(2232), + [anon_sym_DOLLAR] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2232), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_LBRACE] = ACTIONS(2232), + [anon_sym_DOT_DOT] = ACTIONS(2230), + [anon_sym_DOT_DOT2] = ACTIONS(2230), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2230), + [anon_sym_DOT_DOT_LT] = ACTIONS(2230), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2232), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2232), + [aux_sym__val_number_decimal_token1] = ACTIONS(2230), + [aux_sym__val_number_decimal_token2] = ACTIONS(2232), + [aux_sym__val_number_decimal_token3] = ACTIONS(2232), + [aux_sym__val_number_decimal_token4] = ACTIONS(2232), + [aux_sym__val_number_token1] = ACTIONS(2232), + [aux_sym__val_number_token2] = ACTIONS(2232), + [aux_sym__val_number_token3] = ACTIONS(2232), + [anon_sym_0b] = ACTIONS(2230), + [anon_sym_0o] = ACTIONS(2230), + [anon_sym_0x] = ACTIONS(2230), + [sym_val_date] = ACTIONS(2232), + [anon_sym_DQUOTE] = ACTIONS(2232), + [sym__str_single_quotes] = ACTIONS(2232), + [sym__str_back_ticks] = ACTIONS(2232), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2232), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2232), + [anon_sym_err_GT] = ACTIONS(2230), + [anon_sym_out_GT] = ACTIONS(2230), + [anon_sym_e_GT] = ACTIONS(2230), + [anon_sym_o_GT] = ACTIONS(2230), + [anon_sym_err_PLUSout_GT] = ACTIONS(2230), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2230), + [anon_sym_o_PLUSe_GT] = ACTIONS(2230), + [anon_sym_e_PLUSo_GT] = ACTIONS(2230), + [anon_sym_err_GT_GT] = ACTIONS(2232), + [anon_sym_out_GT_GT] = ACTIONS(2232), + [anon_sym_e_GT_GT] = ACTIONS(2232), + [anon_sym_o_GT_GT] = ACTIONS(2232), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2232), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2232), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2232), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2232), + [aux_sym_unquoted_token1] = ACTIONS(2230), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2232), }, [1428] = { [sym_comment] = STATE(1428), - [ts_builtin_sym_end] = ACTIONS(1723), - [anon_sym_true] = ACTIONS(1723), - [anon_sym_false] = ACTIONS(1723), - [anon_sym_null] = ACTIONS(1723), - [aux_sym_cmd_identifier_token38] = ACTIONS(1723), - [aux_sym_cmd_identifier_token39] = ACTIONS(1723), - [aux_sym_cmd_identifier_token40] = ACTIONS(1723), - [sym__newline] = ACTIONS(1723), - [anon_sym_SEMI] = ACTIONS(1723), - [anon_sym_PIPE] = ACTIONS(1723), - [anon_sym_err_GT_PIPE] = ACTIONS(1723), - [anon_sym_out_GT_PIPE] = ACTIONS(1723), - [anon_sym_e_GT_PIPE] = ACTIONS(1723), - [anon_sym_o_GT_PIPE] = ACTIONS(1723), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1723), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1723), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1723), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1723), - [anon_sym_LBRACK] = ACTIONS(1723), - [anon_sym_LPAREN] = ACTIONS(1723), - [anon_sym_DOLLAR] = ACTIONS(1721), - [anon_sym_DASH_DASH] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1723), - [anon_sym_DOT_DOT] = ACTIONS(1721), - [anon_sym_DOT_DOT2] = ACTIONS(1721), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1721), - [anon_sym_DOT_DOT_LT] = ACTIONS(1721), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1723), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1723), - [aux_sym__val_number_decimal_token1] = ACTIONS(1721), - [aux_sym__val_number_decimal_token2] = ACTIONS(1723), - [aux_sym__val_number_decimal_token3] = ACTIONS(1723), - [aux_sym__val_number_decimal_token4] = ACTIONS(1723), - [aux_sym__val_number_token1] = ACTIONS(1723), - [aux_sym__val_number_token2] = ACTIONS(1723), - [aux_sym__val_number_token3] = ACTIONS(1723), - [anon_sym_0b] = ACTIONS(1721), - [anon_sym_0o] = ACTIONS(1721), - [anon_sym_0x] = ACTIONS(1721), - [sym_val_date] = ACTIONS(1723), - [anon_sym_DQUOTE] = ACTIONS(1723), - [sym__str_single_quotes] = ACTIONS(1723), - [sym__str_back_ticks] = ACTIONS(1723), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1723), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1723), - [anon_sym_err_GT] = ACTIONS(1721), - [anon_sym_out_GT] = ACTIONS(1721), - [anon_sym_e_GT] = ACTIONS(1721), - [anon_sym_o_GT] = ACTIONS(1721), - [anon_sym_err_PLUSout_GT] = ACTIONS(1721), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1721), - [anon_sym_o_PLUSe_GT] = ACTIONS(1721), - [anon_sym_e_PLUSo_GT] = ACTIONS(1721), - [anon_sym_err_GT_GT] = ACTIONS(1723), - [anon_sym_out_GT_GT] = ACTIONS(1723), - [anon_sym_e_GT_GT] = ACTIONS(1723), - [anon_sym_o_GT_GT] = ACTIONS(1723), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1723), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1723), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1723), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1723), - [aux_sym_unquoted_token1] = ACTIONS(1721), - [anon_sym_POUND] = ACTIONS(247), + [ts_builtin_sym_end] = ACTIONS(2240), + [anon_sym_true] = ACTIONS(2240), + [anon_sym_false] = ACTIONS(2240), + [anon_sym_null] = ACTIONS(2240), + [aux_sym_cmd_identifier_token38] = ACTIONS(2240), + [aux_sym_cmd_identifier_token39] = ACTIONS(2240), + [aux_sym_cmd_identifier_token40] = ACTIONS(2240), + [sym__newline] = ACTIONS(2240), + [anon_sym_SEMI] = ACTIONS(2240), + [anon_sym_PIPE] = ACTIONS(2240), + [anon_sym_err_GT_PIPE] = ACTIONS(2240), + [anon_sym_out_GT_PIPE] = ACTIONS(2240), + [anon_sym_e_GT_PIPE] = ACTIONS(2240), + [anon_sym_o_GT_PIPE] = ACTIONS(2240), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2240), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2240), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2240), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2240), + [anon_sym_LBRACK] = ACTIONS(2240), + [anon_sym_LPAREN] = ACTIONS(2240), + [anon_sym_DOLLAR] = ACTIONS(2234), + [anon_sym_DASH_DASH] = ACTIONS(2240), + [anon_sym_DASH] = ACTIONS(2234), + [anon_sym_LBRACE] = ACTIONS(2240), + [anon_sym_DOT_DOT] = ACTIONS(2234), + [anon_sym_DOT_DOT2] = ACTIONS(4862), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2234), + [anon_sym_DOT_DOT_LT] = ACTIONS(2234), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4864), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4864), + [aux_sym__val_number_decimal_token1] = ACTIONS(2234), + [aux_sym__val_number_decimal_token2] = ACTIONS(2240), + [aux_sym__val_number_decimal_token3] = ACTIONS(2240), + [aux_sym__val_number_decimal_token4] = ACTIONS(2240), + [aux_sym__val_number_token1] = ACTIONS(2240), + [aux_sym__val_number_token2] = ACTIONS(2240), + [aux_sym__val_number_token3] = ACTIONS(2240), + [anon_sym_0b] = ACTIONS(2234), + [anon_sym_0o] = ACTIONS(2234), + [anon_sym_0x] = ACTIONS(2234), + [sym_val_date] = ACTIONS(2240), + [anon_sym_DQUOTE] = ACTIONS(2240), + [sym__str_single_quotes] = ACTIONS(2240), + [sym__str_back_ticks] = ACTIONS(2240), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2240), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2240), + [anon_sym_err_GT] = ACTIONS(2234), + [anon_sym_out_GT] = ACTIONS(2234), + [anon_sym_e_GT] = ACTIONS(2234), + [anon_sym_o_GT] = ACTIONS(2234), + [anon_sym_err_PLUSout_GT] = ACTIONS(2234), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2234), + [anon_sym_o_PLUSe_GT] = ACTIONS(2234), + [anon_sym_e_PLUSo_GT] = ACTIONS(2234), + [anon_sym_err_GT_GT] = ACTIONS(2240), + [anon_sym_out_GT_GT] = ACTIONS(2240), + [anon_sym_e_GT_GT] = ACTIONS(2240), + [anon_sym_o_GT_GT] = ACTIONS(2240), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2240), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2240), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2240), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2240), + [aux_sym_unquoted_token1] = ACTIONS(2234), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2240), }, [1429] = { - [sym__expr_parenthesized_immediate] = STATE(7682), [sym_comment] = STATE(1429), - [sym__newline] = ACTIONS(4751), - [anon_sym_SEMI] = ACTIONS(4751), - [anon_sym_PIPE] = ACTIONS(4751), - [anon_sym_err_GT_PIPE] = ACTIONS(4751), - [anon_sym_out_GT_PIPE] = ACTIONS(4751), - [anon_sym_e_GT_PIPE] = ACTIONS(4751), - [anon_sym_o_GT_PIPE] = ACTIONS(4751), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4751), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4751), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4751), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4751), - [anon_sym_RPAREN] = ACTIONS(4751), - [anon_sym_DASH_DASH] = ACTIONS(4751), - [anon_sym_DASH] = ACTIONS(4753), - [anon_sym_LBRACE] = ACTIONS(4751), - [anon_sym_RBRACE] = ACTIONS(4751), - [anon_sym_EQ_GT] = ACTIONS(4751), - [anon_sym_LPAREN2] = ACTIONS(3978), - [aux_sym_expr_binary_token1] = ACTIONS(4751), - [aux_sym_expr_binary_token2] = ACTIONS(4751), - [aux_sym_expr_binary_token3] = ACTIONS(4751), - [aux_sym_expr_binary_token4] = ACTIONS(4751), - [aux_sym_expr_binary_token5] = ACTIONS(4751), - [aux_sym_expr_binary_token6] = ACTIONS(4751), - [aux_sym_expr_binary_token7] = ACTIONS(4751), - [aux_sym_expr_binary_token8] = ACTIONS(4751), - [aux_sym_expr_binary_token9] = ACTIONS(4751), - [aux_sym_expr_binary_token10] = ACTIONS(4751), - [aux_sym_expr_binary_token11] = ACTIONS(4751), - [aux_sym_expr_binary_token12] = ACTIONS(4751), - [aux_sym_expr_binary_token13] = ACTIONS(4751), - [aux_sym_expr_binary_token14] = ACTIONS(4751), - [aux_sym_expr_binary_token15] = ACTIONS(4751), - [aux_sym_expr_binary_token16] = ACTIONS(4751), - [aux_sym_expr_binary_token17] = ACTIONS(4751), - [aux_sym_expr_binary_token18] = ACTIONS(4751), - [aux_sym_expr_binary_token19] = ACTIONS(4751), - [aux_sym_expr_binary_token20] = ACTIONS(4751), - [aux_sym_expr_binary_token21] = ACTIONS(4751), - [aux_sym_expr_binary_token22] = ACTIONS(4751), - [aux_sym_expr_binary_token23] = ACTIONS(4751), - [aux_sym_expr_binary_token24] = ACTIONS(4751), - [aux_sym_expr_binary_token25] = ACTIONS(4751), - [aux_sym_expr_binary_token26] = ACTIONS(4751), - [aux_sym_expr_binary_token27] = ACTIONS(4751), - [aux_sym_expr_binary_token28] = ACTIONS(4751), - [anon_sym_err_GT] = ACTIONS(4753), - [anon_sym_out_GT] = ACTIONS(4753), - [anon_sym_e_GT] = ACTIONS(4753), - [anon_sym_o_GT] = ACTIONS(4753), - [anon_sym_err_PLUSout_GT] = ACTIONS(4753), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4753), - [anon_sym_o_PLUSe_GT] = ACTIONS(4753), - [anon_sym_e_PLUSo_GT] = ACTIONS(4753), - [anon_sym_err_GT_GT] = ACTIONS(4751), - [anon_sym_out_GT_GT] = ACTIONS(4751), - [anon_sym_e_GT_GT] = ACTIONS(4751), - [anon_sym_o_GT_GT] = ACTIONS(4751), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4751), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4751), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4751), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4751), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(2281), + [anon_sym_false] = ACTIONS(2281), + [anon_sym_null] = ACTIONS(2281), + [aux_sym_cmd_identifier_token38] = ACTIONS(2281), + [aux_sym_cmd_identifier_token39] = ACTIONS(2281), + [aux_sym_cmd_identifier_token40] = ACTIONS(2281), + [sym__newline] = ACTIONS(2285), + [anon_sym_SEMI] = ACTIONS(2285), + [anon_sym_PIPE] = ACTIONS(2285), + [anon_sym_err_GT_PIPE] = ACTIONS(2285), + [anon_sym_out_GT_PIPE] = ACTIONS(2285), + [anon_sym_e_GT_PIPE] = ACTIONS(2285), + [anon_sym_o_GT_PIPE] = ACTIONS(2285), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2285), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2285), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2285), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2285), + [anon_sym_LBRACK] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(2281), + [anon_sym_RPAREN] = ACTIONS(2285), + [anon_sym_DOLLAR] = ACTIONS(2281), + [anon_sym_DASH_DASH] = ACTIONS(2281), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_LBRACE] = ACTIONS(2285), + [anon_sym_RBRACE] = ACTIONS(2285), + [anon_sym_DOT_DOT] = ACTIONS(2281), + [anon_sym_LPAREN2] = ACTIONS(2283), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2281), + [anon_sym_DOT_DOT_LT] = ACTIONS(2281), + [aux_sym__val_number_decimal_token1] = ACTIONS(2281), + [aux_sym__val_number_decimal_token2] = ACTIONS(2281), + [aux_sym__val_number_decimal_token3] = ACTIONS(2281), + [aux_sym__val_number_decimal_token4] = ACTIONS(2281), + [aux_sym__val_number_token1] = ACTIONS(2281), + [aux_sym__val_number_token2] = ACTIONS(2281), + [aux_sym__val_number_token3] = ACTIONS(2281), + [anon_sym_0b] = ACTIONS(2281), + [anon_sym_0o] = ACTIONS(2281), + [anon_sym_0x] = ACTIONS(2281), + [sym_val_date] = ACTIONS(2281), + [anon_sym_DQUOTE] = ACTIONS(2285), + [sym__str_single_quotes] = ACTIONS(2285), + [sym__str_back_ticks] = ACTIONS(2285), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2285), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2285), + [anon_sym_err_GT] = ACTIONS(2281), + [anon_sym_out_GT] = ACTIONS(2281), + [anon_sym_e_GT] = ACTIONS(2281), + [anon_sym_o_GT] = ACTIONS(2281), + [anon_sym_err_PLUSout_GT] = ACTIONS(2281), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2281), + [anon_sym_o_PLUSe_GT] = ACTIONS(2281), + [anon_sym_e_PLUSo_GT] = ACTIONS(2281), + [anon_sym_err_GT_GT] = ACTIONS(2281), + [anon_sym_out_GT_GT] = ACTIONS(2281), + [anon_sym_e_GT_GT] = ACTIONS(2281), + [anon_sym_o_GT_GT] = ACTIONS(2281), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2281), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2281), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2281), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2281), + [aux_sym_unquoted_token1] = ACTIONS(2281), + [aux_sym_unquoted_token4] = ACTIONS(2287), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2285), }, [1430] = { + [sym__expr_parenthesized_immediate] = STATE(7420), [sym_comment] = STATE(1430), - [ts_builtin_sym_end] = ACTIONS(2025), - [anon_sym_true] = ACTIONS(2025), - [anon_sym_false] = ACTIONS(2025), - [anon_sym_null] = ACTIONS(2025), - [aux_sym_cmd_identifier_token38] = ACTIONS(2025), - [aux_sym_cmd_identifier_token39] = ACTIONS(2025), - [aux_sym_cmd_identifier_token40] = ACTIONS(2025), - [sym__newline] = ACTIONS(2025), - [anon_sym_SEMI] = ACTIONS(2025), - [anon_sym_PIPE] = ACTIONS(2025), - [anon_sym_err_GT_PIPE] = ACTIONS(2025), - [anon_sym_out_GT_PIPE] = ACTIONS(2025), - [anon_sym_e_GT_PIPE] = ACTIONS(2025), - [anon_sym_o_GT_PIPE] = ACTIONS(2025), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2025), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2025), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2025), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2025), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_LPAREN] = ACTIONS(2025), - [anon_sym_DOLLAR] = ACTIONS(2019), - [anon_sym_DASH_DASH] = ACTIONS(2025), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_LBRACE] = ACTIONS(2025), - [anon_sym_DOT_DOT] = ACTIONS(2019), - [anon_sym_DOT_DOT2] = ACTIONS(4765), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2019), - [anon_sym_DOT_DOT_LT] = ACTIONS(2019), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4767), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4767), - [aux_sym__val_number_decimal_token1] = ACTIONS(2019), - [aux_sym__val_number_decimal_token2] = ACTIONS(2025), - [aux_sym__val_number_decimal_token3] = ACTIONS(2025), - [aux_sym__val_number_decimal_token4] = ACTIONS(2025), - [aux_sym__val_number_token1] = ACTIONS(2025), - [aux_sym__val_number_token2] = ACTIONS(2025), - [aux_sym__val_number_token3] = ACTIONS(2025), - [anon_sym_0b] = ACTIONS(2019), - [anon_sym_0o] = ACTIONS(2019), - [anon_sym_0x] = ACTIONS(2019), - [sym_val_date] = ACTIONS(2025), - [anon_sym_DQUOTE] = ACTIONS(2025), - [sym__str_single_quotes] = ACTIONS(2025), - [sym__str_back_ticks] = ACTIONS(2025), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2025), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2025), - [anon_sym_err_GT] = ACTIONS(2019), - [anon_sym_out_GT] = ACTIONS(2019), - [anon_sym_e_GT] = ACTIONS(2019), - [anon_sym_o_GT] = ACTIONS(2019), - [anon_sym_err_PLUSout_GT] = ACTIONS(2019), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2019), - [anon_sym_o_PLUSe_GT] = ACTIONS(2019), - [anon_sym_e_PLUSo_GT] = ACTIONS(2019), - [anon_sym_err_GT_GT] = ACTIONS(2025), - [anon_sym_out_GT_GT] = ACTIONS(2025), - [anon_sym_e_GT_GT] = ACTIONS(2025), - [anon_sym_o_GT_GT] = ACTIONS(2025), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2025), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2025), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2025), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2025), - [aux_sym_unquoted_token1] = ACTIONS(2019), - [anon_sym_POUND] = ACTIONS(247), + [ts_builtin_sym_end] = ACTIONS(1640), + [sym__newline] = ACTIONS(1640), + [anon_sym_SEMI] = ACTIONS(1640), + [anon_sym_PIPE] = ACTIONS(1640), + [anon_sym_err_GT_PIPE] = ACTIONS(1640), + [anon_sym_out_GT_PIPE] = ACTIONS(1640), + [anon_sym_e_GT_PIPE] = ACTIONS(1640), + [anon_sym_o_GT_PIPE] = ACTIONS(1640), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1640), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1640), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1640), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1640), + [anon_sym_LPAREN2] = ACTIONS(4433), + [aux_sym_expr_binary_token1] = ACTIONS(1640), + [aux_sym_expr_binary_token2] = ACTIONS(1640), + [aux_sym_expr_binary_token3] = ACTIONS(1640), + [aux_sym_expr_binary_token4] = ACTIONS(1640), + [aux_sym_expr_binary_token5] = ACTIONS(1640), + [aux_sym_expr_binary_token6] = ACTIONS(1640), + [aux_sym_expr_binary_token7] = ACTIONS(1640), + [aux_sym_expr_binary_token8] = ACTIONS(1640), + [aux_sym_expr_binary_token9] = ACTIONS(1640), + [aux_sym_expr_binary_token10] = ACTIONS(1640), + [aux_sym_expr_binary_token11] = ACTIONS(1640), + [aux_sym_expr_binary_token12] = ACTIONS(1640), + [aux_sym_expr_binary_token13] = ACTIONS(1640), + [aux_sym_expr_binary_token14] = ACTIONS(1640), + [aux_sym_expr_binary_token15] = ACTIONS(1640), + [aux_sym_expr_binary_token16] = ACTIONS(1640), + [aux_sym_expr_binary_token17] = ACTIONS(1640), + [aux_sym_expr_binary_token18] = ACTIONS(1640), + [aux_sym_expr_binary_token19] = ACTIONS(1640), + [aux_sym_expr_binary_token20] = ACTIONS(1640), + [aux_sym_expr_binary_token21] = ACTIONS(1640), + [aux_sym_expr_binary_token22] = ACTIONS(1640), + [aux_sym_expr_binary_token23] = ACTIONS(1640), + [aux_sym_expr_binary_token24] = ACTIONS(1640), + [aux_sym_expr_binary_token25] = ACTIONS(1640), + [aux_sym_expr_binary_token26] = ACTIONS(1640), + [aux_sym_expr_binary_token27] = ACTIONS(1640), + [aux_sym_expr_binary_token28] = ACTIONS(1640), + [anon_sym_DOT_DOT2] = ACTIONS(4762), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4764), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4764), + [sym_filesize_unit] = ACTIONS(4866), + [sym_duration_unit] = ACTIONS(4868), + [anon_sym_err_GT] = ACTIONS(1628), + [anon_sym_out_GT] = ACTIONS(1628), + [anon_sym_e_GT] = ACTIONS(1628), + [anon_sym_o_GT] = ACTIONS(1628), + [anon_sym_err_PLUSout_GT] = ACTIONS(1628), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1628), + [anon_sym_o_PLUSe_GT] = ACTIONS(1628), + [anon_sym_e_PLUSo_GT] = ACTIONS(1628), + [anon_sym_err_GT_GT] = ACTIONS(1640), + [anon_sym_out_GT_GT] = ACTIONS(1640), + [anon_sym_e_GT_GT] = ACTIONS(1640), + [anon_sym_o_GT_GT] = ACTIONS(1640), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1640), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1640), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1640), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1640), + [aux_sym_unquoted_token2] = ACTIONS(4870), + [anon_sym_POUND] = ACTIONS(249), }, [1431] = { [sym_comment] = STATE(1431), - [anon_sym_true] = ACTIONS(2753), - [anon_sym_false] = ACTIONS(2753), - [anon_sym_null] = ACTIONS(2753), - [aux_sym_cmd_identifier_token38] = ACTIONS(2753), - [aux_sym_cmd_identifier_token39] = ACTIONS(2753), - [aux_sym_cmd_identifier_token40] = ACTIONS(2753), - [sym__newline] = ACTIONS(2753), - [anon_sym_SEMI] = ACTIONS(2753), - [anon_sym_PIPE] = ACTIONS(2753), - [anon_sym_err_GT_PIPE] = ACTIONS(2753), - [anon_sym_out_GT_PIPE] = ACTIONS(2753), - [anon_sym_e_GT_PIPE] = ACTIONS(2753), - [anon_sym_o_GT_PIPE] = ACTIONS(2753), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2753), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2753), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2753), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2753), - [anon_sym_LBRACK] = ACTIONS(2753), - [anon_sym_LPAREN] = ACTIONS(2753), - [anon_sym_RPAREN] = ACTIONS(2753), - [anon_sym_DOLLAR] = ACTIONS(4769), - [anon_sym_DASH_DASH] = ACTIONS(2753), - [anon_sym_DASH] = ACTIONS(4769), - [anon_sym_LBRACE] = ACTIONS(2753), - [anon_sym_DOT_DOT] = ACTIONS(4769), - [anon_sym_DOT_DOT2] = ACTIONS(4716), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4769), - [anon_sym_DOT_DOT_LT] = ACTIONS(4769), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4718), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4718), - [aux_sym__val_number_decimal_token1] = ACTIONS(4769), - [aux_sym__val_number_decimal_token2] = ACTIONS(2753), - [aux_sym__val_number_decimal_token3] = ACTIONS(2753), - [aux_sym__val_number_decimal_token4] = ACTIONS(2753), - [aux_sym__val_number_token1] = ACTIONS(2753), - [aux_sym__val_number_token2] = ACTIONS(2753), - [aux_sym__val_number_token3] = ACTIONS(2753), - [anon_sym_0b] = ACTIONS(4769), - [anon_sym_0o] = ACTIONS(4769), - [anon_sym_0x] = ACTIONS(4769), - [sym_val_date] = ACTIONS(2753), - [anon_sym_DQUOTE] = ACTIONS(2753), - [sym__str_single_quotes] = ACTIONS(2753), - [sym__str_back_ticks] = ACTIONS(2753), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2753), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2753), - [anon_sym_err_GT] = ACTIONS(4769), - [anon_sym_out_GT] = ACTIONS(4769), - [anon_sym_e_GT] = ACTIONS(4769), - [anon_sym_o_GT] = ACTIONS(4769), - [anon_sym_err_PLUSout_GT] = ACTIONS(4769), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4769), - [anon_sym_o_PLUSe_GT] = ACTIONS(4769), - [anon_sym_e_PLUSo_GT] = ACTIONS(4769), - [anon_sym_err_GT_GT] = ACTIONS(2753), - [anon_sym_out_GT_GT] = ACTIONS(2753), - [anon_sym_e_GT_GT] = ACTIONS(2753), - [anon_sym_o_GT_GT] = ACTIONS(2753), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2753), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2753), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2753), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2753), - [aux_sym_unquoted_token1] = ACTIONS(4769), - [anon_sym_POUND] = ACTIONS(247), + [ts_builtin_sym_end] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1717), + [anon_sym_false] = ACTIONS(1717), + [anon_sym_null] = ACTIONS(1717), + [aux_sym_cmd_identifier_token38] = ACTIONS(1717), + [aux_sym_cmd_identifier_token39] = ACTIONS(1717), + [aux_sym_cmd_identifier_token40] = ACTIONS(1717), + [sym__newline] = ACTIONS(1717), + [anon_sym_SEMI] = ACTIONS(1717), + [anon_sym_PIPE] = ACTIONS(1717), + [anon_sym_err_GT_PIPE] = ACTIONS(1717), + [anon_sym_out_GT_PIPE] = ACTIONS(1717), + [anon_sym_e_GT_PIPE] = ACTIONS(1717), + [anon_sym_o_GT_PIPE] = ACTIONS(1717), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1717), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1717), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1717), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1717), + [anon_sym_LBRACK] = ACTIONS(1717), + [anon_sym_LPAREN] = ACTIONS(1717), + [anon_sym_DOLLAR] = ACTIONS(1715), + [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_LBRACE] = ACTIONS(1717), + [anon_sym_DOT_DOT] = ACTIONS(1715), + [anon_sym_DOT_DOT2] = ACTIONS(1715), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1715), + [anon_sym_DOT_DOT_LT] = ACTIONS(1715), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1717), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1717), + [aux_sym__val_number_decimal_token1] = ACTIONS(1715), + [aux_sym__val_number_decimal_token2] = ACTIONS(1717), + [aux_sym__val_number_decimal_token3] = ACTIONS(1717), + [aux_sym__val_number_decimal_token4] = ACTIONS(1717), + [aux_sym__val_number_token1] = ACTIONS(1717), + [aux_sym__val_number_token2] = ACTIONS(1717), + [aux_sym__val_number_token3] = ACTIONS(1717), + [anon_sym_0b] = ACTIONS(1715), + [anon_sym_0o] = ACTIONS(1715), + [anon_sym_0x] = ACTIONS(1715), + [sym_val_date] = ACTIONS(1717), + [anon_sym_DQUOTE] = ACTIONS(1717), + [sym__str_single_quotes] = ACTIONS(1717), + [sym__str_back_ticks] = ACTIONS(1717), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1717), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1717), + [anon_sym_err_GT] = ACTIONS(1715), + [anon_sym_out_GT] = ACTIONS(1715), + [anon_sym_e_GT] = ACTIONS(1715), + [anon_sym_o_GT] = ACTIONS(1715), + [anon_sym_err_PLUSout_GT] = ACTIONS(1715), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1715), + [anon_sym_o_PLUSe_GT] = ACTIONS(1715), + [anon_sym_e_PLUSo_GT] = ACTIONS(1715), + [anon_sym_err_GT_GT] = ACTIONS(1717), + [anon_sym_out_GT_GT] = ACTIONS(1717), + [anon_sym_e_GT_GT] = ACTIONS(1717), + [anon_sym_o_GT_GT] = ACTIONS(1717), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1717), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1717), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1717), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1717), + [aux_sym_unquoted_token1] = ACTIONS(1715), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1717), }, [1432] = { + [sym_cmd_identifier] = STATE(4613), + [sym_expr_parenthesized] = STATE(4613), + [sym_val_variable] = STATE(4613), + [sym__val_number_decimal] = STATE(7191), + [sym_val_string] = STATE(4613), + [sym__raw_str] = STATE(4414), + [sym__str_double_quotes] = STATE(4414), + [sym_val_interpolated] = STATE(4613), + [sym__inter_single_quotes] = STATE(4787), + [sym__inter_double_quotes] = STATE(4810), [sym_comment] = STATE(1432), - [sym__newline] = ACTIONS(1554), - [anon_sym_SEMI] = ACTIONS(1556), - [anon_sym_PIPE] = ACTIONS(1556), - [anon_sym_err_GT_PIPE] = ACTIONS(1556), - [anon_sym_out_GT_PIPE] = ACTIONS(1556), - [anon_sym_e_GT_PIPE] = ACTIONS(1556), - [anon_sym_o_GT_PIPE] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1556), - [anon_sym_RPAREN] = ACTIONS(1556), - [anon_sym_LPAREN2] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1556), - [anon_sym_DOT_DOT2] = ACTIONS(1554), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1556), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1556), - [sym_filesize_unit] = ACTIONS(1556), - [sym_duration_unit] = ACTIONS(1556), - [anon_sym_err_GT] = ACTIONS(1554), - [anon_sym_out_GT] = ACTIONS(1554), - [anon_sym_e_GT] = ACTIONS(1554), - [anon_sym_o_GT] = ACTIONS(1554), - [anon_sym_err_PLUSout_GT] = ACTIONS(1554), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1554), - [anon_sym_o_PLUSe_GT] = ACTIONS(1554), - [anon_sym_e_PLUSo_GT] = ACTIONS(1554), - [anon_sym_err_GT_GT] = ACTIONS(1556), - [anon_sym_out_GT_GT] = ACTIONS(1556), - [anon_sym_e_GT_GT] = ACTIONS(1556), - [anon_sym_o_GT_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1556), - [aux_sym_unquoted_token2] = ACTIONS(1554), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(373), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(4872), + [anon_sym_false] = ACTIONS(4872), + [anon_sym_null] = ACTIONS(4872), + [aux_sym_cmd_identifier_token38] = ACTIONS(4874), + [aux_sym_cmd_identifier_token39] = ACTIONS(4872), + [aux_sym_cmd_identifier_token40] = ACTIONS(4872), + [anon_sym_LPAREN] = ACTIONS(4876), + [anon_sym_DOLLAR] = ACTIONS(4273), + [aux_sym__val_number_decimal_token1] = ACTIONS(1343), + [aux_sym__val_number_decimal_token2] = ACTIONS(1343), + [aux_sym__val_number_decimal_token3] = ACTIONS(1345), + [aux_sym__val_number_decimal_token4] = ACTIONS(1347), + [anon_sym_DQUOTE] = ACTIONS(4293), + [sym__str_single_quotes] = ACTIONS(4295), + [sym__str_back_ticks] = ACTIONS(4295), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4297), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4299), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1991), }, [1433] = { - [sym_cell_path] = STATE(2010), - [sym_path] = STATE(1246), [sym_comment] = STATE(1433), - [aux_sym_cell_path_repeat1] = STATE(1189), - [ts_builtin_sym_end] = ACTIONS(1677), - [sym__newline] = ACTIONS(1677), - [anon_sym_SEMI] = ACTIONS(1677), - [anon_sym_PIPE] = ACTIONS(1677), - [anon_sym_err_GT_PIPE] = ACTIONS(1677), - [anon_sym_out_GT_PIPE] = ACTIONS(1677), - [anon_sym_e_GT_PIPE] = ACTIONS(1677), - [anon_sym_o_GT_PIPE] = ACTIONS(1677), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1677), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1677), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1677), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1677), - [aux_sym_expr_binary_token1] = ACTIONS(1677), - [aux_sym_expr_binary_token2] = ACTIONS(1677), - [aux_sym_expr_binary_token3] = ACTIONS(1677), - [aux_sym_expr_binary_token4] = ACTIONS(1677), - [aux_sym_expr_binary_token5] = ACTIONS(1677), - [aux_sym_expr_binary_token6] = ACTIONS(1677), - [aux_sym_expr_binary_token7] = ACTIONS(1677), - [aux_sym_expr_binary_token8] = ACTIONS(1677), - [aux_sym_expr_binary_token9] = ACTIONS(1677), - [aux_sym_expr_binary_token10] = ACTIONS(1677), - [aux_sym_expr_binary_token11] = ACTIONS(1677), - [aux_sym_expr_binary_token12] = ACTIONS(1677), - [aux_sym_expr_binary_token13] = ACTIONS(1677), - [aux_sym_expr_binary_token14] = ACTIONS(1677), - [aux_sym_expr_binary_token15] = ACTIONS(1677), - [aux_sym_expr_binary_token16] = ACTIONS(1677), - [aux_sym_expr_binary_token17] = ACTIONS(1677), - [aux_sym_expr_binary_token18] = ACTIONS(1677), - [aux_sym_expr_binary_token19] = ACTIONS(1677), - [aux_sym_expr_binary_token20] = ACTIONS(1677), - [aux_sym_expr_binary_token21] = ACTIONS(1677), - [aux_sym_expr_binary_token22] = ACTIONS(1677), - [aux_sym_expr_binary_token23] = ACTIONS(1677), - [aux_sym_expr_binary_token24] = ACTIONS(1677), - [aux_sym_expr_binary_token25] = ACTIONS(1677), - [aux_sym_expr_binary_token26] = ACTIONS(1677), - [aux_sym_expr_binary_token27] = ACTIONS(1677), - [aux_sym_expr_binary_token28] = ACTIONS(1677), - [anon_sym_DOT_DOT2] = ACTIONS(1675), - [anon_sym_DOT] = ACTIONS(3990), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1677), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1677), - [anon_sym_err_GT] = ACTIONS(1675), - [anon_sym_out_GT] = ACTIONS(1675), - [anon_sym_e_GT] = ACTIONS(1675), - [anon_sym_o_GT] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT] = ACTIONS(1675), - [anon_sym_err_GT_GT] = ACTIONS(1677), - [anon_sym_out_GT_GT] = ACTIONS(1677), - [anon_sym_e_GT_GT] = ACTIONS(1677), - [anon_sym_o_GT_GT] = ACTIONS(1677), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1677), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1677), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1677), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1677), - [anon_sym_POUND] = ACTIONS(247), + [ts_builtin_sym_end] = ACTIONS(2119), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_null] = ACTIONS(2119), + [aux_sym_cmd_identifier_token38] = ACTIONS(2119), + [aux_sym_cmd_identifier_token39] = ACTIONS(2119), + [aux_sym_cmd_identifier_token40] = ACTIONS(2119), + [sym__newline] = ACTIONS(2119), + [anon_sym_SEMI] = ACTIONS(2119), + [anon_sym_PIPE] = ACTIONS(2119), + [anon_sym_err_GT_PIPE] = ACTIONS(2119), + [anon_sym_out_GT_PIPE] = ACTIONS(2119), + [anon_sym_e_GT_PIPE] = ACTIONS(2119), + [anon_sym_o_GT_PIPE] = ACTIONS(2119), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2119), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2119), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2119), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2119), + [anon_sym_LBRACK] = ACTIONS(2119), + [anon_sym_LPAREN] = ACTIONS(2119), + [anon_sym_DOLLAR] = ACTIONS(2113), + [anon_sym_DASH_DASH] = ACTIONS(2119), + [anon_sym_DASH] = ACTIONS(2113), + [anon_sym_LBRACE] = ACTIONS(2119), + [anon_sym_DOT_DOT] = ACTIONS(2113), + [anon_sym_DOT_DOT2] = ACTIONS(4878), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2113), + [anon_sym_DOT_DOT_LT] = ACTIONS(2113), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4880), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4880), + [aux_sym__val_number_decimal_token1] = ACTIONS(2113), + [aux_sym__val_number_decimal_token2] = ACTIONS(2119), + [aux_sym__val_number_decimal_token3] = ACTIONS(2119), + [aux_sym__val_number_decimal_token4] = ACTIONS(2119), + [aux_sym__val_number_token1] = ACTIONS(2119), + [aux_sym__val_number_token2] = ACTIONS(2119), + [aux_sym__val_number_token3] = ACTIONS(2119), + [anon_sym_0b] = ACTIONS(2113), + [anon_sym_0o] = ACTIONS(2113), + [anon_sym_0x] = ACTIONS(2113), + [sym_val_date] = ACTIONS(2119), + [anon_sym_DQUOTE] = ACTIONS(2119), + [sym__str_single_quotes] = ACTIONS(2119), + [sym__str_back_ticks] = ACTIONS(2119), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2119), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2119), + [anon_sym_err_GT] = ACTIONS(2113), + [anon_sym_out_GT] = ACTIONS(2113), + [anon_sym_e_GT] = ACTIONS(2113), + [anon_sym_o_GT] = ACTIONS(2113), + [anon_sym_err_PLUSout_GT] = ACTIONS(2113), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2113), + [anon_sym_o_PLUSe_GT] = ACTIONS(2113), + [anon_sym_e_PLUSo_GT] = ACTIONS(2113), + [anon_sym_err_GT_GT] = ACTIONS(2119), + [anon_sym_out_GT_GT] = ACTIONS(2119), + [anon_sym_e_GT_GT] = ACTIONS(2119), + [anon_sym_o_GT_GT] = ACTIONS(2119), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2119), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2119), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2119), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2119), + [aux_sym_unquoted_token1] = ACTIONS(2113), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2119), }, [1434] = { + [sym_path] = STATE(1589), [sym_comment] = STATE(1434), - [aux_sym_cmd_identifier_token41] = ACTIONS(1540), - [sym__newline] = ACTIONS(1540), - [anon_sym_SEMI] = ACTIONS(1542), - [anon_sym_PIPE] = ACTIONS(1542), - [anon_sym_err_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_GT_PIPE] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1542), - [anon_sym_RPAREN] = ACTIONS(1542), - [anon_sym_LBRACE] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1542), - [anon_sym_DOT_DOT2] = ACTIONS(1540), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1542), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1542), - [sym_filesize_unit] = ACTIONS(1542), - [sym_duration_unit] = ACTIONS(1542), - [anon_sym_err_GT] = ACTIONS(1540), - [anon_sym_out_GT] = ACTIONS(1540), - [anon_sym_e_GT] = ACTIONS(1540), - [anon_sym_o_GT] = ACTIONS(1540), - [anon_sym_err_PLUSout_GT] = ACTIONS(1540), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1540), - [anon_sym_o_PLUSe_GT] = ACTIONS(1540), - [anon_sym_e_PLUSo_GT] = ACTIONS(1540), - [anon_sym_err_GT_GT] = ACTIONS(1542), - [anon_sym_out_GT_GT] = ACTIONS(1542), - [anon_sym_e_GT_GT] = ACTIONS(1542), - [anon_sym_o_GT_GT] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1542), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(1439), + [ts_builtin_sym_end] = ACTIONS(1029), + [anon_sym_true] = ACTIONS(1029), + [anon_sym_false] = ACTIONS(1029), + [anon_sym_null] = ACTIONS(1029), + [aux_sym_cmd_identifier_token38] = ACTIONS(1029), + [aux_sym_cmd_identifier_token39] = ACTIONS(1029), + [aux_sym_cmd_identifier_token40] = ACTIONS(1029), + [sym__newline] = ACTIONS(1029), + [anon_sym_SEMI] = ACTIONS(1029), + [anon_sym_PIPE] = ACTIONS(1029), + [anon_sym_err_GT_PIPE] = ACTIONS(1029), + [anon_sym_out_GT_PIPE] = ACTIONS(1029), + [anon_sym_e_GT_PIPE] = ACTIONS(1029), + [anon_sym_o_GT_PIPE] = ACTIONS(1029), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1029), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1029), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1029), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1029), + [anon_sym_LBRACK] = ACTIONS(1029), + [anon_sym_LPAREN] = ACTIONS(1029), + [anon_sym_DOLLAR] = ACTIONS(1027), + [anon_sym_DASH_DASH] = ACTIONS(1029), + [anon_sym_DASH] = ACTIONS(1027), + [anon_sym_LBRACE] = ACTIONS(1029), + [anon_sym_DOT_DOT] = ACTIONS(1027), + [anon_sym_DOT] = ACTIONS(4709), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1029), + [anon_sym_DOT_DOT_LT] = ACTIONS(1029), + [aux_sym__val_number_decimal_token1] = ACTIONS(1027), + [aux_sym__val_number_decimal_token2] = ACTIONS(1029), + [aux_sym__val_number_decimal_token3] = ACTIONS(1029), + [aux_sym__val_number_decimal_token4] = ACTIONS(1029), + [aux_sym__val_number_token1] = ACTIONS(1029), + [aux_sym__val_number_token2] = ACTIONS(1029), + [aux_sym__val_number_token3] = ACTIONS(1029), + [anon_sym_0b] = ACTIONS(1027), + [anon_sym_0o] = ACTIONS(1027), + [anon_sym_0x] = ACTIONS(1027), + [sym_val_date] = ACTIONS(1029), + [anon_sym_DQUOTE] = ACTIONS(1029), + [sym__str_single_quotes] = ACTIONS(1029), + [sym__str_back_ticks] = ACTIONS(1029), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1029), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1029), + [anon_sym_err_GT] = ACTIONS(1027), + [anon_sym_out_GT] = ACTIONS(1027), + [anon_sym_e_GT] = ACTIONS(1027), + [anon_sym_o_GT] = ACTIONS(1027), + [anon_sym_err_PLUSout_GT] = ACTIONS(1027), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1027), + [anon_sym_o_PLUSe_GT] = ACTIONS(1027), + [anon_sym_e_PLUSo_GT] = ACTIONS(1027), + [anon_sym_err_GT_GT] = ACTIONS(1029), + [anon_sym_out_GT_GT] = ACTIONS(1029), + [anon_sym_e_GT_GT] = ACTIONS(1029), + [anon_sym_o_GT_GT] = ACTIONS(1029), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1029), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1029), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1029), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1029), + [aux_sym_unquoted_token1] = ACTIONS(1027), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1029), }, [1435] = { [sym_comment] = STATE(1435), - [anon_sym_true] = ACTIONS(2289), - [anon_sym_false] = ACTIONS(2289), - [anon_sym_null] = ACTIONS(2289), - [aux_sym_cmd_identifier_token38] = ACTIONS(2289), - [aux_sym_cmd_identifier_token39] = ACTIONS(2289), - [aux_sym_cmd_identifier_token40] = ACTIONS(2289), - [sym__newline] = ACTIONS(2289), - [anon_sym_SEMI] = ACTIONS(2289), - [anon_sym_PIPE] = ACTIONS(2289), - [anon_sym_err_GT_PIPE] = ACTIONS(2289), - [anon_sym_out_GT_PIPE] = ACTIONS(2289), - [anon_sym_e_GT_PIPE] = ACTIONS(2289), - [anon_sym_o_GT_PIPE] = ACTIONS(2289), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2289), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2289), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2289), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2289), - [anon_sym_LBRACK] = ACTIONS(2289), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_RPAREN] = ACTIONS(2289), - [anon_sym_DOLLAR] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2289), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_LBRACE] = ACTIONS(2289), - [anon_sym_RBRACE] = ACTIONS(2289), - [anon_sym_DOT_DOT] = ACTIONS(2287), - [anon_sym_LPAREN2] = ACTIONS(1790), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2289), - [anon_sym_DOT_DOT_LT] = ACTIONS(2289), - [aux_sym__val_number_decimal_token1] = ACTIONS(2287), - [aux_sym__val_number_decimal_token2] = ACTIONS(2289), - [aux_sym__val_number_decimal_token3] = ACTIONS(2289), - [aux_sym__val_number_decimal_token4] = ACTIONS(2289), - [aux_sym__val_number_token1] = ACTIONS(2289), - [aux_sym__val_number_token2] = ACTIONS(2289), - [aux_sym__val_number_token3] = ACTIONS(2289), - [anon_sym_0b] = ACTIONS(2287), - [anon_sym_0o] = ACTIONS(2287), - [anon_sym_0x] = ACTIONS(2287), - [sym_val_date] = ACTIONS(2289), - [anon_sym_DQUOTE] = ACTIONS(2289), - [sym__str_single_quotes] = ACTIONS(2289), - [sym__str_back_ticks] = ACTIONS(2289), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2289), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2289), - [anon_sym_err_GT] = ACTIONS(2287), - [anon_sym_out_GT] = ACTIONS(2287), - [anon_sym_e_GT] = ACTIONS(2287), - [anon_sym_o_GT] = ACTIONS(2287), - [anon_sym_err_PLUSout_GT] = ACTIONS(2287), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2287), - [anon_sym_o_PLUSe_GT] = ACTIONS(2287), - [anon_sym_e_PLUSo_GT] = ACTIONS(2287), - [anon_sym_err_GT_GT] = ACTIONS(2289), - [anon_sym_out_GT_GT] = ACTIONS(2289), - [anon_sym_e_GT_GT] = ACTIONS(2289), - [anon_sym_o_GT_GT] = ACTIONS(2289), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2289), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2289), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2289), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2289), - [aux_sym_unquoted_token1] = ACTIONS(2287), - [aux_sym_unquoted_token2] = ACTIONS(1798), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(2293), + [anon_sym_false] = ACTIONS(2293), + [anon_sym_null] = ACTIONS(2293), + [aux_sym_cmd_identifier_token38] = ACTIONS(2293), + [aux_sym_cmd_identifier_token39] = ACTIONS(2293), + [aux_sym_cmd_identifier_token40] = ACTIONS(2293), + [sym__newline] = ACTIONS(2297), + [anon_sym_SEMI] = ACTIONS(2297), + [anon_sym_PIPE] = ACTIONS(2297), + [anon_sym_err_GT_PIPE] = ACTIONS(2297), + [anon_sym_out_GT_PIPE] = ACTIONS(2297), + [anon_sym_e_GT_PIPE] = ACTIONS(2297), + [anon_sym_o_GT_PIPE] = ACTIONS(2297), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2297), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2297), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2297), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2297), + [anon_sym_LBRACK] = ACTIONS(2297), + [anon_sym_LPAREN] = ACTIONS(2293), + [anon_sym_RPAREN] = ACTIONS(2297), + [anon_sym_DOLLAR] = ACTIONS(2293), + [anon_sym_DASH_DASH] = ACTIONS(2293), + [anon_sym_DASH] = ACTIONS(2293), + [anon_sym_LBRACE] = ACTIONS(2297), + [anon_sym_RBRACE] = ACTIONS(2297), + [anon_sym_DOT_DOT] = ACTIONS(2293), + [anon_sym_LPAREN2] = ACTIONS(2295), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2293), + [anon_sym_DOT_DOT_LT] = ACTIONS(2293), + [aux_sym__val_number_decimal_token1] = ACTIONS(2293), + [aux_sym__val_number_decimal_token2] = ACTIONS(2293), + [aux_sym__val_number_decimal_token3] = ACTIONS(2293), + [aux_sym__val_number_decimal_token4] = ACTIONS(2293), + [aux_sym__val_number_token1] = ACTIONS(2293), + [aux_sym__val_number_token2] = ACTIONS(2293), + [aux_sym__val_number_token3] = ACTIONS(2293), + [anon_sym_0b] = ACTIONS(2293), + [anon_sym_0o] = ACTIONS(2293), + [anon_sym_0x] = ACTIONS(2293), + [sym_val_date] = ACTIONS(2293), + [anon_sym_DQUOTE] = ACTIONS(2297), + [sym__str_single_quotes] = ACTIONS(2297), + [sym__str_back_ticks] = ACTIONS(2297), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2297), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2297), + [anon_sym_err_GT] = ACTIONS(2293), + [anon_sym_out_GT] = ACTIONS(2293), + [anon_sym_e_GT] = ACTIONS(2293), + [anon_sym_o_GT] = ACTIONS(2293), + [anon_sym_err_PLUSout_GT] = ACTIONS(2293), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2293), + [anon_sym_o_PLUSe_GT] = ACTIONS(2293), + [anon_sym_e_PLUSo_GT] = ACTIONS(2293), + [anon_sym_err_GT_GT] = ACTIONS(2293), + [anon_sym_out_GT_GT] = ACTIONS(2293), + [anon_sym_e_GT_GT] = ACTIONS(2293), + [anon_sym_o_GT_GT] = ACTIONS(2293), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2293), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2293), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2293), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2293), + [aux_sym_unquoted_token1] = ACTIONS(2293), + [aux_sym_unquoted_token4] = ACTIONS(2299), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2297), }, [1436] = { [sym_comment] = STATE(1436), - [aux_sym_cmd_identifier_token41] = ACTIONS(4771), - [sym__newline] = ACTIONS(1560), - [anon_sym_SEMI] = ACTIONS(1572), - [anon_sym_PIPE] = ACTIONS(1572), - [anon_sym_err_GT_PIPE] = ACTIONS(1572), - [anon_sym_out_GT_PIPE] = ACTIONS(1572), - [anon_sym_e_GT_PIPE] = ACTIONS(1572), - [anon_sym_o_GT_PIPE] = ACTIONS(1572), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1572), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1572), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1572), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1572), - [anon_sym_RBRACE] = ACTIONS(1572), - [aux_sym_expr_binary_token1] = ACTIONS(1572), - [aux_sym_expr_binary_token2] = ACTIONS(1572), - [aux_sym_expr_binary_token3] = ACTIONS(1572), - [aux_sym_expr_binary_token4] = ACTIONS(1572), - [aux_sym_expr_binary_token5] = ACTIONS(1572), - [aux_sym_expr_binary_token6] = ACTIONS(1572), - [aux_sym_expr_binary_token7] = ACTIONS(1572), - [aux_sym_expr_binary_token8] = ACTIONS(1572), - [aux_sym_expr_binary_token9] = ACTIONS(1572), - [aux_sym_expr_binary_token10] = ACTIONS(1572), - [aux_sym_expr_binary_token11] = ACTIONS(1572), - [aux_sym_expr_binary_token12] = ACTIONS(1572), - [aux_sym_expr_binary_token13] = ACTIONS(1572), - [aux_sym_expr_binary_token14] = ACTIONS(1572), - [aux_sym_expr_binary_token15] = ACTIONS(1572), - [aux_sym_expr_binary_token16] = ACTIONS(1572), - [aux_sym_expr_binary_token17] = ACTIONS(1572), - [aux_sym_expr_binary_token18] = ACTIONS(1572), - [aux_sym_expr_binary_token19] = ACTIONS(1572), - [aux_sym_expr_binary_token20] = ACTIONS(1572), - [aux_sym_expr_binary_token21] = ACTIONS(1572), - [aux_sym_expr_binary_token22] = ACTIONS(1572), - [aux_sym_expr_binary_token23] = ACTIONS(1572), - [aux_sym_expr_binary_token24] = ACTIONS(1572), - [aux_sym_expr_binary_token25] = ACTIONS(1572), - [aux_sym_expr_binary_token26] = ACTIONS(1572), - [aux_sym_expr_binary_token27] = ACTIONS(1572), - [aux_sym_expr_binary_token28] = ACTIONS(1572), - [anon_sym_DOT_DOT2] = ACTIONS(4773), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4775), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4775), - [sym_filesize_unit] = ACTIONS(4777), - [sym_duration_unit] = ACTIONS(4779), - [aux_sym_record_entry_token1] = ACTIONS(1572), - [anon_sym_err_GT] = ACTIONS(1560), - [anon_sym_out_GT] = ACTIONS(1560), - [anon_sym_e_GT] = ACTIONS(1560), - [anon_sym_o_GT] = ACTIONS(1560), - [anon_sym_err_PLUSout_GT] = ACTIONS(1560), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1560), - [anon_sym_o_PLUSe_GT] = ACTIONS(1560), - [anon_sym_e_PLUSo_GT] = ACTIONS(1560), - [anon_sym_err_GT_GT] = ACTIONS(1572), - [anon_sym_out_GT_GT] = ACTIONS(1572), - [anon_sym_e_GT_GT] = ACTIONS(1572), - [anon_sym_o_GT_GT] = ACTIONS(1572), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1572), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1572), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1572), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1572), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(2303), + [anon_sym_false] = ACTIONS(2303), + [anon_sym_null] = ACTIONS(2303), + [aux_sym_cmd_identifier_token38] = ACTIONS(2303), + [aux_sym_cmd_identifier_token39] = ACTIONS(2303), + [aux_sym_cmd_identifier_token40] = ACTIONS(2303), + [sym__newline] = ACTIONS(2305), + [anon_sym_SEMI] = ACTIONS(2305), + [anon_sym_PIPE] = ACTIONS(2305), + [anon_sym_err_GT_PIPE] = ACTIONS(2305), + [anon_sym_out_GT_PIPE] = ACTIONS(2305), + [anon_sym_e_GT_PIPE] = ACTIONS(2305), + [anon_sym_o_GT_PIPE] = ACTIONS(2305), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2305), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2305), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2305), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2305), + [anon_sym_LBRACK] = ACTIONS(2305), + [anon_sym_LPAREN] = ACTIONS(2303), + [anon_sym_RPAREN] = ACTIONS(2305), + [anon_sym_DOLLAR] = ACTIONS(2303), + [anon_sym_DASH_DASH] = ACTIONS(2303), + [anon_sym_DASH] = ACTIONS(2303), + [anon_sym_LBRACE] = ACTIONS(2305), + [anon_sym_RBRACE] = ACTIONS(2305), + [anon_sym_DOT_DOT] = ACTIONS(2303), + [anon_sym_LPAREN2] = ACTIONS(2295), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2303), + [anon_sym_DOT_DOT_LT] = ACTIONS(2303), + [aux_sym__val_number_decimal_token1] = ACTIONS(2303), + [aux_sym__val_number_decimal_token2] = ACTIONS(2303), + [aux_sym__val_number_decimal_token3] = ACTIONS(2303), + [aux_sym__val_number_decimal_token4] = ACTIONS(2303), + [aux_sym__val_number_token1] = ACTIONS(2303), + [aux_sym__val_number_token2] = ACTIONS(2303), + [aux_sym__val_number_token3] = ACTIONS(2303), + [anon_sym_0b] = ACTIONS(2303), + [anon_sym_0o] = ACTIONS(2303), + [anon_sym_0x] = ACTIONS(2303), + [sym_val_date] = ACTIONS(2303), + [anon_sym_DQUOTE] = ACTIONS(2305), + [sym__str_single_quotes] = ACTIONS(2305), + [sym__str_back_ticks] = ACTIONS(2305), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2305), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2305), + [anon_sym_err_GT] = ACTIONS(2303), + [anon_sym_out_GT] = ACTIONS(2303), + [anon_sym_e_GT] = ACTIONS(2303), + [anon_sym_o_GT] = ACTIONS(2303), + [anon_sym_err_PLUSout_GT] = ACTIONS(2303), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2303), + [anon_sym_o_PLUSe_GT] = ACTIONS(2303), + [anon_sym_e_PLUSo_GT] = ACTIONS(2303), + [anon_sym_err_GT_GT] = ACTIONS(2303), + [anon_sym_out_GT_GT] = ACTIONS(2303), + [anon_sym_e_GT_GT] = ACTIONS(2303), + [anon_sym_o_GT_GT] = ACTIONS(2303), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2303), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2303), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2303), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2303), + [aux_sym_unquoted_token1] = ACTIONS(2303), + [aux_sym_unquoted_token4] = ACTIONS(2299), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2305), }, [1437] = { [sym_comment] = STATE(1437), - [sym__newline] = ACTIONS(1653), - [anon_sym_SEMI] = ACTIONS(1655), - [anon_sym_PIPE] = ACTIONS(1655), - [anon_sym_err_GT_PIPE] = ACTIONS(1655), - [anon_sym_out_GT_PIPE] = ACTIONS(1655), - [anon_sym_e_GT_PIPE] = ACTIONS(1655), - [anon_sym_o_GT_PIPE] = ACTIONS(1655), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1655), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1655), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1655), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1655), - [anon_sym_RPAREN] = ACTIONS(1655), - [anon_sym_LPAREN2] = ACTIONS(1655), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1655), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1655), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1655), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1655), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1655), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1655), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1655), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1655), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1655), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1655), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1655), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1655), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1655), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1655), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1655), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1655), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1655), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1655), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1655), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1655), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1655), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1655), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1655), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1655), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1655), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1655), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1655), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1655), - [anon_sym_DOT_DOT2] = ACTIONS(1653), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1655), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1655), - [sym_filesize_unit] = ACTIONS(1655), - [sym_duration_unit] = ACTIONS(1655), - [anon_sym_err_GT] = ACTIONS(1653), - [anon_sym_out_GT] = ACTIONS(1653), - [anon_sym_e_GT] = ACTIONS(1653), - [anon_sym_o_GT] = ACTIONS(1653), - [anon_sym_err_PLUSout_GT] = ACTIONS(1653), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1653), - [anon_sym_o_PLUSe_GT] = ACTIONS(1653), - [anon_sym_e_PLUSo_GT] = ACTIONS(1653), - [anon_sym_err_GT_GT] = ACTIONS(1655), - [anon_sym_out_GT_GT] = ACTIONS(1655), - [anon_sym_e_GT_GT] = ACTIONS(1655), - [anon_sym_o_GT_GT] = ACTIONS(1655), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1655), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1655), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1655), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1655), - [aux_sym_unquoted_token2] = ACTIONS(1653), - [anon_sym_POUND] = ACTIONS(247), + [sym__newline] = ACTIONS(1538), + [anon_sym_SEMI] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_err_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_GT_PIPE] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), + [anon_sym_RPAREN] = ACTIONS(1538), + [anon_sym_RBRACE] = ACTIONS(1538), + [anon_sym_LPAREN2] = ACTIONS(1538), + [aux_sym_expr_binary_token1] = ACTIONS(1538), + [aux_sym_expr_binary_token2] = ACTIONS(1538), + [aux_sym_expr_binary_token3] = ACTIONS(1538), + [aux_sym_expr_binary_token4] = ACTIONS(1538), + [aux_sym_expr_binary_token5] = ACTIONS(1538), + [aux_sym_expr_binary_token6] = ACTIONS(1538), + [aux_sym_expr_binary_token7] = ACTIONS(1538), + [aux_sym_expr_binary_token8] = ACTIONS(1538), + [aux_sym_expr_binary_token9] = ACTIONS(1538), + [aux_sym_expr_binary_token10] = ACTIONS(1538), + [aux_sym_expr_binary_token11] = ACTIONS(1538), + [aux_sym_expr_binary_token12] = ACTIONS(1538), + [aux_sym_expr_binary_token13] = ACTIONS(1538), + [aux_sym_expr_binary_token14] = ACTIONS(1538), + [aux_sym_expr_binary_token15] = ACTIONS(1538), + [aux_sym_expr_binary_token16] = ACTIONS(1538), + [aux_sym_expr_binary_token17] = ACTIONS(1538), + [aux_sym_expr_binary_token18] = ACTIONS(1538), + [aux_sym_expr_binary_token19] = ACTIONS(1538), + [aux_sym_expr_binary_token20] = ACTIONS(1538), + [aux_sym_expr_binary_token21] = ACTIONS(1538), + [aux_sym_expr_binary_token22] = ACTIONS(1538), + [aux_sym_expr_binary_token23] = ACTIONS(1538), + [aux_sym_expr_binary_token24] = ACTIONS(1538), + [aux_sym_expr_binary_token25] = ACTIONS(1538), + [aux_sym_expr_binary_token26] = ACTIONS(1538), + [aux_sym_expr_binary_token27] = ACTIONS(1538), + [aux_sym_expr_binary_token28] = ACTIONS(1538), + [anon_sym_DOT_DOT2] = ACTIONS(1536), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), + [sym_filesize_unit] = ACTIONS(1538), + [sym_duration_unit] = ACTIONS(1538), + [anon_sym_err_GT] = ACTIONS(1536), + [anon_sym_out_GT] = ACTIONS(1536), + [anon_sym_e_GT] = ACTIONS(1536), + [anon_sym_o_GT] = ACTIONS(1536), + [anon_sym_err_PLUSout_GT] = ACTIONS(1536), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), + [anon_sym_o_PLUSe_GT] = ACTIONS(1536), + [anon_sym_e_PLUSo_GT] = ACTIONS(1536), + [anon_sym_err_GT_GT] = ACTIONS(1538), + [anon_sym_out_GT_GT] = ACTIONS(1538), + [anon_sym_e_GT_GT] = ACTIONS(1538), + [anon_sym_o_GT_GT] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), + [aux_sym_unquoted_token2] = ACTIONS(1536), + [anon_sym_POUND] = ACTIONS(249), }, [1438] = { [sym_comment] = STATE(1438), - [anon_sym_true] = ACTIONS(4781), - [anon_sym_false] = ACTIONS(4781), - [anon_sym_null] = ACTIONS(4781), - [aux_sym_cmd_identifier_token38] = ACTIONS(4781), - [aux_sym_cmd_identifier_token39] = ACTIONS(4781), - [aux_sym_cmd_identifier_token40] = ACTIONS(4781), - [sym__newline] = ACTIONS(4783), - [anon_sym_SEMI] = ACTIONS(4783), - [anon_sym_PIPE] = ACTIONS(4783), - [anon_sym_err_GT_PIPE] = ACTIONS(4783), - [anon_sym_out_GT_PIPE] = ACTIONS(4783), - [anon_sym_e_GT_PIPE] = ACTIONS(4783), - [anon_sym_o_GT_PIPE] = ACTIONS(4783), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4783), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4783), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4783), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4783), - [anon_sym_LBRACK] = ACTIONS(4783), - [anon_sym_LPAREN] = ACTIONS(4783), - [anon_sym_RPAREN] = ACTIONS(4783), - [anon_sym_DOLLAR] = ACTIONS(4781), - [anon_sym_DASH_DASH] = ACTIONS(4781), - [anon_sym_DASH] = ACTIONS(4781), - [anon_sym_LBRACE] = ACTIONS(4783), - [anon_sym_RBRACE] = ACTIONS(4783), - [anon_sym_DOT_DOT] = ACTIONS(4781), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4783), - [anon_sym_DOT_DOT_LT] = ACTIONS(4783), - [aux_sym__val_number_decimal_token1] = ACTIONS(4781), - [aux_sym__val_number_decimal_token2] = ACTIONS(4781), - [aux_sym__val_number_decimal_token3] = ACTIONS(4783), - [aux_sym__val_number_decimal_token4] = ACTIONS(4783), - [aux_sym__val_number_token1] = ACTIONS(4781), - [aux_sym__val_number_token2] = ACTIONS(4781), - [aux_sym__val_number_token3] = ACTIONS(4781), - [anon_sym_0b] = ACTIONS(4781), - [anon_sym_0o] = ACTIONS(4781), - [anon_sym_0x] = ACTIONS(4781), - [sym_val_date] = ACTIONS(4781), - [anon_sym_DQUOTE] = ACTIONS(4783), - [sym__str_single_quotes] = ACTIONS(4783), - [sym__str_back_ticks] = ACTIONS(4783), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4783), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4783), - [anon_sym_err_GT] = ACTIONS(4781), - [anon_sym_out_GT] = ACTIONS(4781), - [anon_sym_e_GT] = ACTIONS(4781), - [anon_sym_o_GT] = ACTIONS(4781), - [anon_sym_err_PLUSout_GT] = ACTIONS(4781), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4781), - [anon_sym_o_PLUSe_GT] = ACTIONS(4781), - [anon_sym_e_PLUSo_GT] = ACTIONS(4781), - [anon_sym_err_GT_GT] = ACTIONS(4783), - [anon_sym_out_GT_GT] = ACTIONS(4783), - [anon_sym_e_GT_GT] = ACTIONS(4783), - [anon_sym_o_GT_GT] = ACTIONS(4783), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4783), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4783), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4783), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4783), - [anon_sym_EQ2] = ACTIONS(4785), - [sym_short_flag_identifier] = ACTIONS(4787), - [aux_sym_unquoted_token1] = ACTIONS(4781), - [anon_sym_POUND] = ACTIONS(247), + [ts_builtin_sym_end] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(1705), + [anon_sym_false] = ACTIONS(1705), + [anon_sym_null] = ACTIONS(1705), + [aux_sym_cmd_identifier_token38] = ACTIONS(1705), + [aux_sym_cmd_identifier_token39] = ACTIONS(1705), + [aux_sym_cmd_identifier_token40] = ACTIONS(1705), + [sym__newline] = ACTIONS(1705), + [anon_sym_SEMI] = ACTIONS(1705), + [anon_sym_PIPE] = ACTIONS(1705), + [anon_sym_err_GT_PIPE] = ACTIONS(1705), + [anon_sym_out_GT_PIPE] = ACTIONS(1705), + [anon_sym_e_GT_PIPE] = ACTIONS(1705), + [anon_sym_o_GT_PIPE] = ACTIONS(1705), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1705), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1705), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1705), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1705), + [anon_sym_LBRACK] = ACTIONS(1705), + [anon_sym_LPAREN] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1703), + [anon_sym_DASH_DASH] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_LBRACE] = ACTIONS(1705), + [anon_sym_DOT_DOT] = ACTIONS(1703), + [anon_sym_DOT_DOT2] = ACTIONS(1703), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT] = ACTIONS(1703), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1705), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1705), + [aux_sym__val_number_decimal_token1] = ACTIONS(1703), + [aux_sym__val_number_decimal_token2] = ACTIONS(1705), + [aux_sym__val_number_decimal_token3] = ACTIONS(1705), + [aux_sym__val_number_decimal_token4] = ACTIONS(1705), + [aux_sym__val_number_token1] = ACTIONS(1705), + [aux_sym__val_number_token2] = ACTIONS(1705), + [aux_sym__val_number_token3] = ACTIONS(1705), + [anon_sym_0b] = ACTIONS(1703), + [anon_sym_0o] = ACTIONS(1703), + [anon_sym_0x] = ACTIONS(1703), + [sym_val_date] = ACTIONS(1705), + [anon_sym_DQUOTE] = ACTIONS(1705), + [sym__str_single_quotes] = ACTIONS(1705), + [sym__str_back_ticks] = ACTIONS(1705), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1705), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1705), + [anon_sym_err_GT] = ACTIONS(1703), + [anon_sym_out_GT] = ACTIONS(1703), + [anon_sym_e_GT] = ACTIONS(1703), + [anon_sym_o_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT] = ACTIONS(1703), + [anon_sym_err_GT_GT] = ACTIONS(1705), + [anon_sym_out_GT_GT] = ACTIONS(1705), + [anon_sym_e_GT_GT] = ACTIONS(1705), + [anon_sym_o_GT_GT] = ACTIONS(1705), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1705), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1705), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1705), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1705), + [aux_sym_unquoted_token1] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1705), }, [1439] = { + [sym_path] = STATE(1589), [sym_comment] = STATE(1439), - [ts_builtin_sym_end] = ACTIONS(1740), - [anon_sym_true] = ACTIONS(1740), - [anon_sym_false] = ACTIONS(1740), - [anon_sym_null] = ACTIONS(1740), - [aux_sym_cmd_identifier_token38] = ACTIONS(1740), - [aux_sym_cmd_identifier_token39] = ACTIONS(1740), - [aux_sym_cmd_identifier_token40] = ACTIONS(1740), - [sym__newline] = ACTIONS(1740), - [anon_sym_SEMI] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1740), - [anon_sym_err_GT_PIPE] = ACTIONS(1740), - [anon_sym_out_GT_PIPE] = ACTIONS(1740), - [anon_sym_e_GT_PIPE] = ACTIONS(1740), - [anon_sym_o_GT_PIPE] = ACTIONS(1740), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1740), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1740), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1740), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1740), - [anon_sym_LBRACK] = ACTIONS(1740), - [anon_sym_LPAREN] = ACTIONS(1740), - [anon_sym_DOLLAR] = ACTIONS(1738), - [anon_sym_DASH_DASH] = ACTIONS(1740), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_LBRACE] = ACTIONS(1740), - [anon_sym_DOT_DOT] = ACTIONS(1738), - [anon_sym_DOT_DOT2] = ACTIONS(1738), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1738), - [anon_sym_DOT_DOT_LT] = ACTIONS(1738), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1740), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1740), - [aux_sym__val_number_decimal_token1] = ACTIONS(1738), - [aux_sym__val_number_decimal_token2] = ACTIONS(1740), - [aux_sym__val_number_decimal_token3] = ACTIONS(1740), - [aux_sym__val_number_decimal_token4] = ACTIONS(1740), - [aux_sym__val_number_token1] = ACTIONS(1740), - [aux_sym__val_number_token2] = ACTIONS(1740), - [aux_sym__val_number_token3] = ACTIONS(1740), - [anon_sym_0b] = ACTIONS(1738), - [anon_sym_0o] = ACTIONS(1738), - [anon_sym_0x] = ACTIONS(1738), - [sym_val_date] = ACTIONS(1740), - [anon_sym_DQUOTE] = ACTIONS(1740), - [sym__str_single_quotes] = ACTIONS(1740), - [sym__str_back_ticks] = ACTIONS(1740), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1740), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1740), - [anon_sym_err_GT] = ACTIONS(1738), - [anon_sym_out_GT] = ACTIONS(1738), - [anon_sym_e_GT] = ACTIONS(1738), - [anon_sym_o_GT] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT] = ACTIONS(1738), - [anon_sym_err_GT_GT] = ACTIONS(1740), - [anon_sym_out_GT_GT] = ACTIONS(1740), - [anon_sym_e_GT_GT] = ACTIONS(1740), - [anon_sym_o_GT_GT] = ACTIONS(1740), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1740), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1740), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1740), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1740), - [aux_sym_unquoted_token1] = ACTIONS(1738), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(1439), + [ts_builtin_sym_end] = ACTIONS(1033), + [anon_sym_true] = ACTIONS(1033), + [anon_sym_false] = ACTIONS(1033), + [anon_sym_null] = ACTIONS(1033), + [aux_sym_cmd_identifier_token38] = ACTIONS(1033), + [aux_sym_cmd_identifier_token39] = ACTIONS(1033), + [aux_sym_cmd_identifier_token40] = ACTIONS(1033), + [sym__newline] = ACTIONS(1033), + [anon_sym_SEMI] = ACTIONS(1033), + [anon_sym_PIPE] = ACTIONS(1033), + [anon_sym_err_GT_PIPE] = ACTIONS(1033), + [anon_sym_out_GT_PIPE] = ACTIONS(1033), + [anon_sym_e_GT_PIPE] = ACTIONS(1033), + [anon_sym_o_GT_PIPE] = ACTIONS(1033), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1033), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1033), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1033), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1033), + [anon_sym_LPAREN] = ACTIONS(1033), + [anon_sym_DOLLAR] = ACTIONS(1031), + [anon_sym_DASH_DASH] = ACTIONS(1033), + [anon_sym_DASH] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_DOT_DOT] = ACTIONS(1031), + [anon_sym_DOT] = ACTIONS(4882), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1033), + [anon_sym_DOT_DOT_LT] = ACTIONS(1033), + [aux_sym__val_number_decimal_token1] = ACTIONS(1031), + [aux_sym__val_number_decimal_token2] = ACTIONS(1033), + [aux_sym__val_number_decimal_token3] = ACTIONS(1033), + [aux_sym__val_number_decimal_token4] = ACTIONS(1033), + [aux_sym__val_number_token1] = ACTIONS(1033), + [aux_sym__val_number_token2] = ACTIONS(1033), + [aux_sym__val_number_token3] = ACTIONS(1033), + [anon_sym_0b] = ACTIONS(1031), + [anon_sym_0o] = ACTIONS(1031), + [anon_sym_0x] = ACTIONS(1031), + [sym_val_date] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(1033), + [sym__str_single_quotes] = ACTIONS(1033), + [sym__str_back_ticks] = ACTIONS(1033), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1033), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1033), + [anon_sym_err_GT] = ACTIONS(1031), + [anon_sym_out_GT] = ACTIONS(1031), + [anon_sym_e_GT] = ACTIONS(1031), + [anon_sym_o_GT] = ACTIONS(1031), + [anon_sym_err_PLUSout_GT] = ACTIONS(1031), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1031), + [anon_sym_o_PLUSe_GT] = ACTIONS(1031), + [anon_sym_e_PLUSo_GT] = ACTIONS(1031), + [anon_sym_err_GT_GT] = ACTIONS(1033), + [anon_sym_out_GT_GT] = ACTIONS(1033), + [anon_sym_e_GT_GT] = ACTIONS(1033), + [anon_sym_o_GT_GT] = ACTIONS(1033), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1033), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1033), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1033), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1033), + [aux_sym_unquoted_token1] = ACTIONS(1031), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1033), }, [1440] = { [sym_comment] = STATE(1440), - [ts_builtin_sym_end] = ACTIONS(2031), - [anon_sym_true] = ACTIONS(2031), - [anon_sym_false] = ACTIONS(2031), - [anon_sym_null] = ACTIONS(2031), - [aux_sym_cmd_identifier_token38] = ACTIONS(2031), - [aux_sym_cmd_identifier_token39] = ACTIONS(2031), - [aux_sym_cmd_identifier_token40] = ACTIONS(2031), - [sym__newline] = ACTIONS(2031), - [anon_sym_SEMI] = ACTIONS(2031), - [anon_sym_PIPE] = ACTIONS(2031), - [anon_sym_err_GT_PIPE] = ACTIONS(2031), - [anon_sym_out_GT_PIPE] = ACTIONS(2031), - [anon_sym_e_GT_PIPE] = ACTIONS(2031), - [anon_sym_o_GT_PIPE] = ACTIONS(2031), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2031), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2031), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2031), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2031), - [anon_sym_LBRACK] = ACTIONS(2031), - [anon_sym_LPAREN] = ACTIONS(2031), - [anon_sym_DOLLAR] = ACTIONS(2029), - [anon_sym_DASH_DASH] = ACTIONS(2031), - [anon_sym_DASH] = ACTIONS(2029), - [anon_sym_LBRACE] = ACTIONS(2031), - [anon_sym_DOT_DOT] = ACTIONS(2029), - [anon_sym_DOT_DOT2] = ACTIONS(2029), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2029), - [anon_sym_DOT_DOT_LT] = ACTIONS(2029), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2031), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2031), - [aux_sym__val_number_decimal_token1] = ACTIONS(2029), - [aux_sym__val_number_decimal_token2] = ACTIONS(2031), - [aux_sym__val_number_decimal_token3] = ACTIONS(2031), - [aux_sym__val_number_decimal_token4] = ACTIONS(2031), - [aux_sym__val_number_token1] = ACTIONS(2031), - [aux_sym__val_number_token2] = ACTIONS(2031), - [aux_sym__val_number_token3] = ACTIONS(2031), - [anon_sym_0b] = ACTIONS(2029), - [anon_sym_0o] = ACTIONS(2029), - [anon_sym_0x] = ACTIONS(2029), - [sym_val_date] = ACTIONS(2031), - [anon_sym_DQUOTE] = ACTIONS(2031), - [sym__str_single_quotes] = ACTIONS(2031), - [sym__str_back_ticks] = ACTIONS(2031), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2031), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2031), - [anon_sym_err_GT] = ACTIONS(2029), - [anon_sym_out_GT] = ACTIONS(2029), - [anon_sym_e_GT] = ACTIONS(2029), - [anon_sym_o_GT] = ACTIONS(2029), - [anon_sym_err_PLUSout_GT] = ACTIONS(2029), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2029), - [anon_sym_o_PLUSe_GT] = ACTIONS(2029), - [anon_sym_e_PLUSo_GT] = ACTIONS(2029), - [anon_sym_err_GT_GT] = ACTIONS(2031), - [anon_sym_out_GT_GT] = ACTIONS(2031), - [anon_sym_e_GT_GT] = ACTIONS(2031), - [anon_sym_o_GT_GT] = ACTIONS(2031), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2031), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2031), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2031), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2031), - [aux_sym_unquoted_token1] = ACTIONS(2029), - [anon_sym_POUND] = ACTIONS(247), - }, - [1441] = { - [sym_comment] = STATE(1441), - [aux_sym_cmd_identifier_token41] = ACTIONS(1554), - [sym__newline] = ACTIONS(1554), - [anon_sym_SEMI] = ACTIONS(1556), - [anon_sym_PIPE] = ACTIONS(1556), - [anon_sym_err_GT_PIPE] = ACTIONS(1556), - [anon_sym_out_GT_PIPE] = ACTIONS(1556), - [anon_sym_e_GT_PIPE] = ACTIONS(1556), - [anon_sym_o_GT_PIPE] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1556), - [anon_sym_RPAREN] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1556), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1556), - [anon_sym_DOT_DOT2] = ACTIONS(1554), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1556), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1556), - [sym_filesize_unit] = ACTIONS(1556), - [sym_duration_unit] = ACTIONS(1556), - [anon_sym_err_GT] = ACTIONS(1554), - [anon_sym_out_GT] = ACTIONS(1554), - [anon_sym_e_GT] = ACTIONS(1554), - [anon_sym_o_GT] = ACTIONS(1554), - [anon_sym_err_PLUSout_GT] = ACTIONS(1554), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1554), - [anon_sym_o_PLUSe_GT] = ACTIONS(1554), - [anon_sym_e_PLUSo_GT] = ACTIONS(1554), - [anon_sym_err_GT_GT] = ACTIONS(1556), - [anon_sym_out_GT_GT] = ACTIONS(1556), - [anon_sym_e_GT_GT] = ACTIONS(1556), - [anon_sym_o_GT_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1556), - [anon_sym_POUND] = ACTIONS(247), - }, - [1442] = { - [sym_comment] = STATE(1442), - [anon_sym_true] = ACTIONS(1661), - [anon_sym_false] = ACTIONS(1661), - [anon_sym_null] = ACTIONS(1661), - [aux_sym_cmd_identifier_token38] = ACTIONS(1661), - [aux_sym_cmd_identifier_token39] = ACTIONS(1661), - [aux_sym_cmd_identifier_token40] = ACTIONS(1661), - [sym__newline] = ACTIONS(1661), - [anon_sym_SEMI] = ACTIONS(1661), - [anon_sym_PIPE] = ACTIONS(1661), - [anon_sym_err_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_GT_PIPE] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_LPAREN] = ACTIONS(1659), - [anon_sym_RPAREN] = ACTIONS(1661), - [anon_sym_DOLLAR] = ACTIONS(1659), - [anon_sym_DASH_DASH] = ACTIONS(1661), - [anon_sym_DASH] = ACTIONS(1659), - [anon_sym_LBRACE] = ACTIONS(1661), - [anon_sym_RBRACE] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1659), - [anon_sym_LPAREN2] = ACTIONS(1661), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1661), - [anon_sym_DOT_DOT_LT] = ACTIONS(1661), - [aux_sym__val_number_decimal_token1] = ACTIONS(1659), - [aux_sym__val_number_decimal_token2] = ACTIONS(1661), - [aux_sym__val_number_decimal_token3] = ACTIONS(1661), - [aux_sym__val_number_decimal_token4] = ACTIONS(1661), - [aux_sym__val_number_token1] = ACTIONS(1661), - [aux_sym__val_number_token2] = ACTIONS(1661), - [aux_sym__val_number_token3] = ACTIONS(1661), - [anon_sym_0b] = ACTIONS(1659), - [anon_sym_0o] = ACTIONS(1659), - [anon_sym_0x] = ACTIONS(1659), - [sym_val_date] = ACTIONS(1661), - [anon_sym_DQUOTE] = ACTIONS(1661), - [sym__str_single_quotes] = ACTIONS(1661), - [sym__str_back_ticks] = ACTIONS(1661), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1661), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1661), - [anon_sym_err_GT] = ACTIONS(1659), - [anon_sym_out_GT] = ACTIONS(1659), - [anon_sym_e_GT] = ACTIONS(1659), - [anon_sym_o_GT] = ACTIONS(1659), - [anon_sym_err_PLUSout_GT] = ACTIONS(1659), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1659), - [anon_sym_o_PLUSe_GT] = ACTIONS(1659), - [anon_sym_e_PLUSo_GT] = ACTIONS(1659), - [anon_sym_err_GT_GT] = ACTIONS(1661), - [anon_sym_out_GT_GT] = ACTIONS(1661), - [anon_sym_e_GT_GT] = ACTIONS(1661), - [anon_sym_o_GT_GT] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1661), - [aux_sym_unquoted_token1] = ACTIONS(1659), - [aux_sym_unquoted_token2] = ACTIONS(1659), - [anon_sym_POUND] = ACTIONS(247), - }, - [1443] = { - [sym_comment] = STATE(1443), - [ts_builtin_sym_end] = ACTIONS(4734), - [anon_sym_true] = ACTIONS(4734), - [anon_sym_false] = ACTIONS(4734), - [anon_sym_null] = ACTIONS(4734), - [aux_sym_cmd_identifier_token38] = ACTIONS(4734), - [aux_sym_cmd_identifier_token39] = ACTIONS(4734), - [aux_sym_cmd_identifier_token40] = ACTIONS(4734), - [sym__newline] = ACTIONS(4734), - [anon_sym_SEMI] = ACTIONS(4734), - [anon_sym_PIPE] = ACTIONS(4734), - [anon_sym_err_GT_PIPE] = ACTIONS(4734), - [anon_sym_out_GT_PIPE] = ACTIONS(4734), - [anon_sym_e_GT_PIPE] = ACTIONS(4734), - [anon_sym_o_GT_PIPE] = ACTIONS(4734), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4734), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4734), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4734), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4734), - [anon_sym_LBRACK] = ACTIONS(4734), - [anon_sym_LPAREN] = ACTIONS(4734), - [anon_sym_DOLLAR] = ACTIONS(4736), - [anon_sym_DASH_DASH] = ACTIONS(4734), - [anon_sym_DASH] = ACTIONS(4736), - [anon_sym_LBRACE] = ACTIONS(4734), - [anon_sym_DOT_DOT] = ACTIONS(4736), - [anon_sym_DOT_DOT2] = ACTIONS(4789), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4736), - [anon_sym_DOT_DOT_LT] = ACTIONS(4736), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4791), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4791), - [aux_sym__val_number_decimal_token1] = ACTIONS(4736), - [aux_sym__val_number_decimal_token2] = ACTIONS(4734), - [aux_sym__val_number_decimal_token3] = ACTIONS(4734), - [aux_sym__val_number_decimal_token4] = ACTIONS(4734), - [aux_sym__val_number_token1] = ACTIONS(4734), - [aux_sym__val_number_token2] = ACTIONS(4734), - [aux_sym__val_number_token3] = ACTIONS(4734), - [anon_sym_0b] = ACTIONS(4736), - [anon_sym_0o] = ACTIONS(4736), - [anon_sym_0x] = ACTIONS(4736), - [sym_val_date] = ACTIONS(4734), - [anon_sym_DQUOTE] = ACTIONS(4734), - [sym__str_single_quotes] = ACTIONS(4734), - [sym__str_back_ticks] = ACTIONS(4734), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4734), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4734), - [anon_sym_err_GT] = ACTIONS(4736), - [anon_sym_out_GT] = ACTIONS(4736), - [anon_sym_e_GT] = ACTIONS(4736), - [anon_sym_o_GT] = ACTIONS(4736), - [anon_sym_err_PLUSout_GT] = ACTIONS(4736), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4736), - [anon_sym_o_PLUSe_GT] = ACTIONS(4736), - [anon_sym_e_PLUSo_GT] = ACTIONS(4736), - [anon_sym_err_GT_GT] = ACTIONS(4734), - [anon_sym_out_GT_GT] = ACTIONS(4734), - [anon_sym_e_GT_GT] = ACTIONS(4734), - [anon_sym_o_GT_GT] = ACTIONS(4734), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4734), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4734), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4734), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4734), - [aux_sym_unquoted_token1] = ACTIONS(4736), - [anon_sym_POUND] = ACTIONS(247), - }, - [1444] = { - [sym_path] = STATE(1603), - [sym_comment] = STATE(1444), - [aux_sym_cell_path_repeat1] = STATE(1444), - [ts_builtin_sym_end] = ACTIONS(1017), - [anon_sym_true] = ACTIONS(1017), - [anon_sym_false] = ACTIONS(1017), - [anon_sym_null] = ACTIONS(1017), - [aux_sym_cmd_identifier_token38] = ACTIONS(1017), - [aux_sym_cmd_identifier_token39] = ACTIONS(1017), - [aux_sym_cmd_identifier_token40] = ACTIONS(1017), - [sym__newline] = ACTIONS(1017), - [anon_sym_SEMI] = ACTIONS(1017), - [anon_sym_PIPE] = ACTIONS(1017), - [anon_sym_err_GT_PIPE] = ACTIONS(1017), - [anon_sym_out_GT_PIPE] = ACTIONS(1017), - [anon_sym_e_GT_PIPE] = ACTIONS(1017), - [anon_sym_o_GT_PIPE] = ACTIONS(1017), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1017), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1017), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1017), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1017), - [anon_sym_LBRACK] = ACTIONS(1017), - [anon_sym_LPAREN] = ACTIONS(1017), - [anon_sym_DOLLAR] = ACTIONS(1015), - [anon_sym_DASH_DASH] = ACTIONS(1017), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_LBRACE] = ACTIONS(1017), - [anon_sym_DOT_DOT] = ACTIONS(1015), - [anon_sym_DOT] = ACTIONS(4793), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1017), - [anon_sym_DOT_DOT_LT] = ACTIONS(1017), - [aux_sym__val_number_decimal_token1] = ACTIONS(1015), - [aux_sym__val_number_decimal_token2] = ACTIONS(1017), - [aux_sym__val_number_decimal_token3] = ACTIONS(1017), - [aux_sym__val_number_decimal_token4] = ACTIONS(1017), - [aux_sym__val_number_token1] = ACTIONS(1017), - [aux_sym__val_number_token2] = ACTIONS(1017), - [aux_sym__val_number_token3] = ACTIONS(1017), - [anon_sym_0b] = ACTIONS(1015), - [anon_sym_0o] = ACTIONS(1015), - [anon_sym_0x] = ACTIONS(1015), - [sym_val_date] = ACTIONS(1017), - [anon_sym_DQUOTE] = ACTIONS(1017), - [sym__str_single_quotes] = ACTIONS(1017), - [sym__str_back_ticks] = ACTIONS(1017), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1017), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1017), - [anon_sym_err_GT] = ACTIONS(1015), - [anon_sym_out_GT] = ACTIONS(1015), - [anon_sym_e_GT] = ACTIONS(1015), - [anon_sym_o_GT] = ACTIONS(1015), - [anon_sym_err_PLUSout_GT] = ACTIONS(1015), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1015), - [anon_sym_o_PLUSe_GT] = ACTIONS(1015), - [anon_sym_e_PLUSo_GT] = ACTIONS(1015), - [anon_sym_err_GT_GT] = ACTIONS(1017), - [anon_sym_out_GT_GT] = ACTIONS(1017), - [anon_sym_e_GT_GT] = ACTIONS(1017), - [anon_sym_o_GT_GT] = ACTIONS(1017), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1017), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1017), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1017), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1017), - [aux_sym_unquoted_token1] = ACTIONS(1015), - [anon_sym_POUND] = ACTIONS(247), - }, - [1445] = { - [sym_comment] = STATE(1445), - [sym__newline] = ACTIONS(4796), - [anon_sym_SEMI] = ACTIONS(4796), - [anon_sym_PIPE] = ACTIONS(4796), - [anon_sym_err_GT_PIPE] = ACTIONS(4796), - [anon_sym_out_GT_PIPE] = ACTIONS(4796), - [anon_sym_e_GT_PIPE] = ACTIONS(4796), - [anon_sym_o_GT_PIPE] = ACTIONS(4796), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4796), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4796), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4796), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4796), - [anon_sym_RPAREN] = ACTIONS(4796), - [anon_sym_DASH_DASH] = ACTIONS(4796), - [anon_sym_DASH] = ACTIONS(4798), - [anon_sym_LBRACE] = ACTIONS(4796), - [anon_sym_RBRACE] = ACTIONS(4796), - [aux_sym_expr_binary_token1] = ACTIONS(4800), - [aux_sym_expr_binary_token2] = ACTIONS(4800), - [aux_sym_expr_binary_token3] = ACTIONS(4800), - [aux_sym_expr_binary_token4] = ACTIONS(4800), - [aux_sym_expr_binary_token5] = ACTIONS(4800), - [aux_sym_expr_binary_token6] = ACTIONS(4800), - [aux_sym_expr_binary_token7] = ACTIONS(4800), - [aux_sym_expr_binary_token8] = ACTIONS(4800), - [aux_sym_expr_binary_token9] = ACTIONS(4800), - [aux_sym_expr_binary_token10] = ACTIONS(4800), - [aux_sym_expr_binary_token11] = ACTIONS(4800), - [aux_sym_expr_binary_token12] = ACTIONS(4800), - [aux_sym_expr_binary_token13] = ACTIONS(4800), - [aux_sym_expr_binary_token14] = ACTIONS(4800), - [aux_sym_expr_binary_token15] = ACTIONS(4800), - [aux_sym_expr_binary_token16] = ACTIONS(4800), - [aux_sym_expr_binary_token17] = ACTIONS(4800), - [aux_sym_expr_binary_token18] = ACTIONS(4800), - [aux_sym_expr_binary_token19] = ACTIONS(4800), - [aux_sym_expr_binary_token20] = ACTIONS(4800), - [aux_sym_expr_binary_token21] = ACTIONS(4800), - [aux_sym_expr_binary_token22] = ACTIONS(4800), - [aux_sym_expr_binary_token23] = ACTIONS(4800), - [aux_sym_expr_binary_token24] = ACTIONS(4800), - [aux_sym_expr_binary_token25] = ACTIONS(4800), - [aux_sym_expr_binary_token26] = ACTIONS(4800), - [aux_sym_expr_binary_token27] = ACTIONS(4800), - [aux_sym_expr_binary_token28] = ACTIONS(4800), - [anon_sym_DOT_DOT2] = ACTIONS(1079), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1081), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1081), - [anon_sym_err_GT] = ACTIONS(4798), - [anon_sym_out_GT] = ACTIONS(4798), - [anon_sym_e_GT] = ACTIONS(4798), - [anon_sym_o_GT] = ACTIONS(4798), - [anon_sym_err_PLUSout_GT] = ACTIONS(4798), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4798), - [anon_sym_o_PLUSe_GT] = ACTIONS(4798), - [anon_sym_e_PLUSo_GT] = ACTIONS(4798), - [anon_sym_err_GT_GT] = ACTIONS(4796), - [anon_sym_out_GT_GT] = ACTIONS(4796), - [anon_sym_e_GT_GT] = ACTIONS(4796), - [anon_sym_o_GT_GT] = ACTIONS(4796), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4796), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4796), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4796), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4796), - [anon_sym_POUND] = ACTIONS(247), - }, - [1446] = { - [sym_comment] = STATE(1446), - [sym__newline] = ACTIONS(1072), - [anon_sym_SEMI] = ACTIONS(1072), - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_err_GT_PIPE] = ACTIONS(1072), - [anon_sym_out_GT_PIPE] = ACTIONS(1072), - [anon_sym_e_GT_PIPE] = ACTIONS(1072), - [anon_sym_o_GT_PIPE] = ACTIONS(1072), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1072), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1072), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1072), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1072), - [anon_sym_RPAREN] = ACTIONS(1072), - [anon_sym_DASH_DASH] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1072), - [anon_sym_RBRACE] = ACTIONS(1072), - [aux_sym_expr_binary_token1] = ACTIONS(1072), - [aux_sym_expr_binary_token2] = ACTIONS(1072), - [aux_sym_expr_binary_token3] = ACTIONS(1072), - [aux_sym_expr_binary_token4] = ACTIONS(1072), - [aux_sym_expr_binary_token5] = ACTIONS(1072), - [aux_sym_expr_binary_token6] = ACTIONS(1072), - [aux_sym_expr_binary_token7] = ACTIONS(1072), - [aux_sym_expr_binary_token8] = ACTIONS(1072), - [aux_sym_expr_binary_token9] = ACTIONS(1072), - [aux_sym_expr_binary_token10] = ACTIONS(1072), - [aux_sym_expr_binary_token11] = ACTIONS(1072), - [aux_sym_expr_binary_token12] = ACTIONS(1072), - [aux_sym_expr_binary_token13] = ACTIONS(1072), - [aux_sym_expr_binary_token14] = ACTIONS(1072), - [aux_sym_expr_binary_token15] = ACTIONS(1072), - [aux_sym_expr_binary_token16] = ACTIONS(1072), - [aux_sym_expr_binary_token17] = ACTIONS(1072), - [aux_sym_expr_binary_token18] = ACTIONS(1072), - [aux_sym_expr_binary_token19] = ACTIONS(1072), - [aux_sym_expr_binary_token20] = ACTIONS(1072), - [aux_sym_expr_binary_token21] = ACTIONS(1072), - [aux_sym_expr_binary_token22] = ACTIONS(1072), - [aux_sym_expr_binary_token23] = ACTIONS(1072), - [aux_sym_expr_binary_token24] = ACTIONS(1072), - [aux_sym_expr_binary_token25] = ACTIONS(1072), - [aux_sym_expr_binary_token26] = ACTIONS(1072), - [aux_sym_expr_binary_token27] = ACTIONS(1072), - [aux_sym_expr_binary_token28] = ACTIONS(1072), - [anon_sym_DOT_DOT2] = ACTIONS(1079), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1081), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1081), - [anon_sym_err_GT] = ACTIONS(1070), - [anon_sym_out_GT] = ACTIONS(1070), - [anon_sym_e_GT] = ACTIONS(1070), - [anon_sym_o_GT] = ACTIONS(1070), - [anon_sym_err_PLUSout_GT] = ACTIONS(1070), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1070), - [anon_sym_o_PLUSe_GT] = ACTIONS(1070), - [anon_sym_e_PLUSo_GT] = ACTIONS(1070), - [anon_sym_err_GT_GT] = ACTIONS(1072), - [anon_sym_out_GT_GT] = ACTIONS(1072), - [anon_sym_e_GT_GT] = ACTIONS(1072), - [anon_sym_o_GT_GT] = ACTIONS(1072), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1072), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1072), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1072), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1072), - [anon_sym_POUND] = ACTIONS(247), - }, - [1447] = { - [sym_comment] = STATE(1447), - [ts_builtin_sym_end] = ACTIONS(2035), - [anon_sym_true] = ACTIONS(2035), - [anon_sym_false] = ACTIONS(2035), - [anon_sym_null] = ACTIONS(2035), - [aux_sym_cmd_identifier_token38] = ACTIONS(2035), - [aux_sym_cmd_identifier_token39] = ACTIONS(2035), - [aux_sym_cmd_identifier_token40] = ACTIONS(2035), - [sym__newline] = ACTIONS(2035), - [anon_sym_SEMI] = ACTIONS(2035), - [anon_sym_PIPE] = ACTIONS(2035), - [anon_sym_err_GT_PIPE] = ACTIONS(2035), - [anon_sym_out_GT_PIPE] = ACTIONS(2035), - [anon_sym_e_GT_PIPE] = ACTIONS(2035), - [anon_sym_o_GT_PIPE] = ACTIONS(2035), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2035), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2035), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2035), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2035), - [anon_sym_LBRACK] = ACTIONS(2035), - [anon_sym_LPAREN] = ACTIONS(2035), - [anon_sym_DOLLAR] = ACTIONS(2033), - [anon_sym_DASH_DASH] = ACTIONS(2035), - [anon_sym_DASH] = ACTIONS(2033), - [anon_sym_LBRACE] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2033), - [anon_sym_DOT_DOT2] = ACTIONS(2033), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2033), - [anon_sym_DOT_DOT_LT] = ACTIONS(2033), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2035), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2035), - [aux_sym__val_number_decimal_token1] = ACTIONS(2033), - [aux_sym__val_number_decimal_token2] = ACTIONS(2035), - [aux_sym__val_number_decimal_token3] = ACTIONS(2035), - [aux_sym__val_number_decimal_token4] = ACTIONS(2035), - [aux_sym__val_number_token1] = ACTIONS(2035), - [aux_sym__val_number_token2] = ACTIONS(2035), - [aux_sym__val_number_token3] = ACTIONS(2035), - [anon_sym_0b] = ACTIONS(2033), - [anon_sym_0o] = ACTIONS(2033), - [anon_sym_0x] = ACTIONS(2033), - [sym_val_date] = ACTIONS(2035), - [anon_sym_DQUOTE] = ACTIONS(2035), - [sym__str_single_quotes] = ACTIONS(2035), - [sym__str_back_ticks] = ACTIONS(2035), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2035), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2035), - [anon_sym_err_GT] = ACTIONS(2033), - [anon_sym_out_GT] = ACTIONS(2033), - [anon_sym_e_GT] = ACTIONS(2033), - [anon_sym_o_GT] = ACTIONS(2033), - [anon_sym_err_PLUSout_GT] = ACTIONS(2033), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2033), - [anon_sym_o_PLUSe_GT] = ACTIONS(2033), - [anon_sym_e_PLUSo_GT] = ACTIONS(2033), - [anon_sym_err_GT_GT] = ACTIONS(2035), - [anon_sym_out_GT_GT] = ACTIONS(2035), - [anon_sym_e_GT_GT] = ACTIONS(2035), - [anon_sym_o_GT_GT] = ACTIONS(2035), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2035), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2035), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2035), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2035), - [aux_sym_unquoted_token1] = ACTIONS(2033), - [anon_sym_POUND] = ACTIONS(247), - }, - [1448] = { - [sym_comment] = STATE(1448), [anon_sym_true] = ACTIONS(1044), [anon_sym_false] = ACTIONS(1044), [anon_sym_null] = ACTIONS(1044), @@ -208865,7 +211409,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1044), [anon_sym_RBRACE] = ACTIONS(1044), [anon_sym_DOT_DOT] = ACTIONS(1042), - [anon_sym_QMARK2] = ACTIONS(1044), + [anon_sym_QMARK2] = ACTIONS(4885), [anon_sym_DOT] = ACTIONS(1042), [anon_sym_DOT_DOT_EQ] = ACTIONS(1044), [anon_sym_DOT_DOT_LT] = ACTIONS(1044), @@ -208902,479 +211446,1099 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1044), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1044), [aux_sym_unquoted_token1] = ACTIONS(1042), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1044), + }, + [1441] = { + [sym_comment] = STATE(1441), + [ts_builtin_sym_end] = ACTIONS(1771), + [anon_sym_true] = ACTIONS(1771), + [anon_sym_false] = ACTIONS(1771), + [anon_sym_null] = ACTIONS(1771), + [aux_sym_cmd_identifier_token38] = ACTIONS(1771), + [aux_sym_cmd_identifier_token39] = ACTIONS(1771), + [aux_sym_cmd_identifier_token40] = ACTIONS(1771), + [sym__newline] = ACTIONS(1771), + [anon_sym_SEMI] = ACTIONS(1771), + [anon_sym_PIPE] = ACTIONS(1771), + [anon_sym_err_GT_PIPE] = ACTIONS(1771), + [anon_sym_out_GT_PIPE] = ACTIONS(1771), + [anon_sym_e_GT_PIPE] = ACTIONS(1771), + [anon_sym_o_GT_PIPE] = ACTIONS(1771), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1771), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1771), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1771), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1771), + [anon_sym_LPAREN] = ACTIONS(1771), + [anon_sym_DOLLAR] = ACTIONS(1769), + [anon_sym_DASH_DASH] = ACTIONS(1771), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_LBRACE] = ACTIONS(1771), + [anon_sym_DOT_DOT] = ACTIONS(1769), + [anon_sym_DOT_DOT2] = ACTIONS(1769), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1769), + [anon_sym_DOT_DOT_LT] = ACTIONS(1769), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1771), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1771), + [aux_sym__val_number_decimal_token1] = ACTIONS(1769), + [aux_sym__val_number_decimal_token2] = ACTIONS(1771), + [aux_sym__val_number_decimal_token3] = ACTIONS(1771), + [aux_sym__val_number_decimal_token4] = ACTIONS(1771), + [aux_sym__val_number_token1] = ACTIONS(1771), + [aux_sym__val_number_token2] = ACTIONS(1771), + [aux_sym__val_number_token3] = ACTIONS(1771), + [anon_sym_0b] = ACTIONS(1769), + [anon_sym_0o] = ACTIONS(1769), + [anon_sym_0x] = ACTIONS(1769), + [sym_val_date] = ACTIONS(1771), + [anon_sym_DQUOTE] = ACTIONS(1771), + [sym__str_single_quotes] = ACTIONS(1771), + [sym__str_back_ticks] = ACTIONS(1771), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1771), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1771), + [anon_sym_err_GT] = ACTIONS(1769), + [anon_sym_out_GT] = ACTIONS(1769), + [anon_sym_e_GT] = ACTIONS(1769), + [anon_sym_o_GT] = ACTIONS(1769), + [anon_sym_err_PLUSout_GT] = ACTIONS(1769), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1769), + [anon_sym_o_PLUSe_GT] = ACTIONS(1769), + [anon_sym_e_PLUSo_GT] = ACTIONS(1769), + [anon_sym_err_GT_GT] = ACTIONS(1771), + [anon_sym_out_GT_GT] = ACTIONS(1771), + [anon_sym_e_GT_GT] = ACTIONS(1771), + [anon_sym_o_GT_GT] = ACTIONS(1771), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1771), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1771), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1771), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1771), + [aux_sym_unquoted_token1] = ACTIONS(1769), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1771), + }, + [1442] = { + [sym_comment] = STATE(1442), + [ts_builtin_sym_end] = ACTIONS(1828), + [anon_sym_true] = ACTIONS(1828), + [anon_sym_false] = ACTIONS(1828), + [anon_sym_null] = ACTIONS(1828), + [aux_sym_cmd_identifier_token38] = ACTIONS(1828), + [aux_sym_cmd_identifier_token39] = ACTIONS(1828), + [aux_sym_cmd_identifier_token40] = ACTIONS(1828), + [sym__newline] = ACTIONS(1828), + [anon_sym_SEMI] = ACTIONS(1828), + [anon_sym_PIPE] = ACTIONS(1828), + [anon_sym_err_GT_PIPE] = ACTIONS(1828), + [anon_sym_out_GT_PIPE] = ACTIONS(1828), + [anon_sym_e_GT_PIPE] = ACTIONS(1828), + [anon_sym_o_GT_PIPE] = ACTIONS(1828), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1828), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1828), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1828), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1828), + [anon_sym_LBRACK] = ACTIONS(1828), + [anon_sym_LPAREN] = ACTIONS(1828), + [anon_sym_DOLLAR] = ACTIONS(1826), + [anon_sym_DASH_DASH] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_LBRACE] = ACTIONS(1828), + [anon_sym_DOT_DOT] = ACTIONS(1826), + [anon_sym_DOT_DOT2] = ACTIONS(1826), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1826), + [anon_sym_DOT_DOT_LT] = ACTIONS(1826), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1828), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1828), + [aux_sym__val_number_decimal_token1] = ACTIONS(1826), + [aux_sym__val_number_decimal_token2] = ACTIONS(1828), + [aux_sym__val_number_decimal_token3] = ACTIONS(1828), + [aux_sym__val_number_decimal_token4] = ACTIONS(1828), + [aux_sym__val_number_token1] = ACTIONS(1828), + [aux_sym__val_number_token2] = ACTIONS(1828), + [aux_sym__val_number_token3] = ACTIONS(1828), + [anon_sym_0b] = ACTIONS(1826), + [anon_sym_0o] = ACTIONS(1826), + [anon_sym_0x] = ACTIONS(1826), + [sym_val_date] = ACTIONS(1828), + [anon_sym_DQUOTE] = ACTIONS(1828), + [sym__str_single_quotes] = ACTIONS(1828), + [sym__str_back_ticks] = ACTIONS(1828), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1828), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1828), + [anon_sym_err_GT] = ACTIONS(1826), + [anon_sym_out_GT] = ACTIONS(1826), + [anon_sym_e_GT] = ACTIONS(1826), + [anon_sym_o_GT] = ACTIONS(1826), + [anon_sym_err_PLUSout_GT] = ACTIONS(1826), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1826), + [anon_sym_o_PLUSe_GT] = ACTIONS(1826), + [anon_sym_e_PLUSo_GT] = ACTIONS(1826), + [anon_sym_err_GT_GT] = ACTIONS(1828), + [anon_sym_out_GT_GT] = ACTIONS(1828), + [anon_sym_e_GT_GT] = ACTIONS(1828), + [anon_sym_o_GT_GT] = ACTIONS(1828), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1828), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1828), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1828), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1828), + [aux_sym_unquoted_token1] = ACTIONS(1826), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1828), + }, + [1443] = { + [sym_comment] = STATE(1443), + [anon_sym_true] = ACTIONS(1056), + [anon_sym_false] = ACTIONS(1056), + [anon_sym_null] = ACTIONS(1056), + [aux_sym_cmd_identifier_token38] = ACTIONS(1056), + [aux_sym_cmd_identifier_token39] = ACTIONS(1056), + [aux_sym_cmd_identifier_token40] = ACTIONS(1056), + [sym__newline] = ACTIONS(1056), + [anon_sym_SEMI] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(1056), + [anon_sym_err_GT_PIPE] = ACTIONS(1056), + [anon_sym_out_GT_PIPE] = ACTIONS(1056), + [anon_sym_e_GT_PIPE] = ACTIONS(1056), + [anon_sym_o_GT_PIPE] = ACTIONS(1056), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1056), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1056), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1056), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1056), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_RPAREN] = ACTIONS(1056), + [anon_sym_DOLLAR] = ACTIONS(1054), + [anon_sym_DASH_DASH] = ACTIONS(1056), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_LBRACE] = ACTIONS(1056), + [anon_sym_RBRACE] = ACTIONS(1056), + [anon_sym_DOT_DOT] = ACTIONS(1054), + [anon_sym_QMARK2] = ACTIONS(1056), + [anon_sym_DOT] = ACTIONS(1054), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1056), + [anon_sym_DOT_DOT_LT] = ACTIONS(1056), + [aux_sym__val_number_decimal_token1] = ACTIONS(1054), + [aux_sym__val_number_decimal_token2] = ACTIONS(1056), + [aux_sym__val_number_decimal_token3] = ACTIONS(1056), + [aux_sym__val_number_decimal_token4] = ACTIONS(1056), + [aux_sym__val_number_token1] = ACTIONS(1056), + [aux_sym__val_number_token2] = ACTIONS(1056), + [aux_sym__val_number_token3] = ACTIONS(1056), + [anon_sym_0b] = ACTIONS(1054), + [anon_sym_0o] = ACTIONS(1054), + [anon_sym_0x] = ACTIONS(1054), + [sym_val_date] = ACTIONS(1056), + [anon_sym_DQUOTE] = ACTIONS(1056), + [sym__str_single_quotes] = ACTIONS(1056), + [sym__str_back_ticks] = ACTIONS(1056), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1056), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1056), + [anon_sym_err_GT] = ACTIONS(1054), + [anon_sym_out_GT] = ACTIONS(1054), + [anon_sym_e_GT] = ACTIONS(1054), + [anon_sym_o_GT] = ACTIONS(1054), + [anon_sym_err_PLUSout_GT] = ACTIONS(1054), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1054), + [anon_sym_o_PLUSe_GT] = ACTIONS(1054), + [anon_sym_e_PLUSo_GT] = ACTIONS(1054), + [anon_sym_err_GT_GT] = ACTIONS(1056), + [anon_sym_out_GT_GT] = ACTIONS(1056), + [anon_sym_e_GT_GT] = ACTIONS(1056), + [anon_sym_o_GT_GT] = ACTIONS(1056), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1056), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1056), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1056), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1056), + [aux_sym_unquoted_token1] = ACTIONS(1054), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1056), + }, + [1444] = { + [sym_comment] = STATE(1444), + [sym__newline] = ACTIONS(1536), + [anon_sym_SEMI] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_err_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_GT_PIPE] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), + [anon_sym_RPAREN] = ACTIONS(1538), + [anon_sym_LPAREN2] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1538), + [anon_sym_DOT_DOT2] = ACTIONS(1536), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), + [aux_sym__immediate_decimal_token2] = ACTIONS(4796), + [sym_filesize_unit] = ACTIONS(1538), + [sym_duration_unit] = ACTIONS(1538), + [anon_sym_err_GT] = ACTIONS(1536), + [anon_sym_out_GT] = ACTIONS(1536), + [anon_sym_e_GT] = ACTIONS(1536), + [anon_sym_o_GT] = ACTIONS(1536), + [anon_sym_err_PLUSout_GT] = ACTIONS(1536), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), + [anon_sym_o_PLUSe_GT] = ACTIONS(1536), + [anon_sym_e_PLUSo_GT] = ACTIONS(1536), + [anon_sym_err_GT_GT] = ACTIONS(1538), + [anon_sym_out_GT_GT] = ACTIONS(1538), + [anon_sym_e_GT_GT] = ACTIONS(1538), + [anon_sym_o_GT_GT] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), + [aux_sym_unquoted_token2] = ACTIONS(1536), + [anon_sym_POUND] = ACTIONS(249), + }, + [1445] = { + [sym_comment] = STATE(1445), + [sym__newline] = ACTIONS(1530), + [anon_sym_SEMI] = ACTIONS(1530), + [anon_sym_PIPE] = ACTIONS(1530), + [anon_sym_err_GT_PIPE] = ACTIONS(1530), + [anon_sym_out_GT_PIPE] = ACTIONS(1530), + [anon_sym_e_GT_PIPE] = ACTIONS(1530), + [anon_sym_o_GT_PIPE] = ACTIONS(1530), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1530), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1530), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1530), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1530), + [anon_sym_RPAREN] = ACTIONS(1530), + [anon_sym_RBRACE] = ACTIONS(1530), + [anon_sym_LPAREN2] = ACTIONS(1530), + [aux_sym_expr_binary_token1] = ACTIONS(1530), + [aux_sym_expr_binary_token2] = ACTIONS(1530), + [aux_sym_expr_binary_token3] = ACTIONS(1530), + [aux_sym_expr_binary_token4] = ACTIONS(1530), + [aux_sym_expr_binary_token5] = ACTIONS(1530), + [aux_sym_expr_binary_token6] = ACTIONS(1530), + [aux_sym_expr_binary_token7] = ACTIONS(1530), + [aux_sym_expr_binary_token8] = ACTIONS(1530), + [aux_sym_expr_binary_token9] = ACTIONS(1530), + [aux_sym_expr_binary_token10] = ACTIONS(1530), + [aux_sym_expr_binary_token11] = ACTIONS(1530), + [aux_sym_expr_binary_token12] = ACTIONS(1530), + [aux_sym_expr_binary_token13] = ACTIONS(1530), + [aux_sym_expr_binary_token14] = ACTIONS(1530), + [aux_sym_expr_binary_token15] = ACTIONS(1530), + [aux_sym_expr_binary_token16] = ACTIONS(1530), + [aux_sym_expr_binary_token17] = ACTIONS(1530), + [aux_sym_expr_binary_token18] = ACTIONS(1530), + [aux_sym_expr_binary_token19] = ACTIONS(1530), + [aux_sym_expr_binary_token20] = ACTIONS(1530), + [aux_sym_expr_binary_token21] = ACTIONS(1530), + [aux_sym_expr_binary_token22] = ACTIONS(1530), + [aux_sym_expr_binary_token23] = ACTIONS(1530), + [aux_sym_expr_binary_token24] = ACTIONS(1530), + [aux_sym_expr_binary_token25] = ACTIONS(1530), + [aux_sym_expr_binary_token26] = ACTIONS(1530), + [aux_sym_expr_binary_token27] = ACTIONS(1530), + [aux_sym_expr_binary_token28] = ACTIONS(1530), + [anon_sym_DOT_DOT2] = ACTIONS(1528), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1530), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1530), + [sym_filesize_unit] = ACTIONS(1530), + [sym_duration_unit] = ACTIONS(1530), + [anon_sym_err_GT] = ACTIONS(1528), + [anon_sym_out_GT] = ACTIONS(1528), + [anon_sym_e_GT] = ACTIONS(1528), + [anon_sym_o_GT] = ACTIONS(1528), + [anon_sym_err_PLUSout_GT] = ACTIONS(1528), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), + [anon_sym_o_PLUSe_GT] = ACTIONS(1528), + [anon_sym_e_PLUSo_GT] = ACTIONS(1528), + [anon_sym_err_GT_GT] = ACTIONS(1530), + [anon_sym_out_GT_GT] = ACTIONS(1530), + [anon_sym_e_GT_GT] = ACTIONS(1530), + [anon_sym_o_GT_GT] = ACTIONS(1530), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1530), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1530), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1530), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1530), + [aux_sym_unquoted_token2] = ACTIONS(1528), + [anon_sym_POUND] = ACTIONS(249), + }, + [1446] = { + [sym_comment] = STATE(1446), + [sym__newline] = ACTIONS(1596), + [anon_sym_SEMI] = ACTIONS(1598), + [anon_sym_PIPE] = ACTIONS(1598), + [anon_sym_err_GT_PIPE] = ACTIONS(1598), + [anon_sym_out_GT_PIPE] = ACTIONS(1598), + [anon_sym_e_GT_PIPE] = ACTIONS(1598), + [anon_sym_o_GT_PIPE] = ACTIONS(1598), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1598), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1598), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1598), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1598), + [anon_sym_RPAREN] = ACTIONS(1598), + [anon_sym_LPAREN2] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1598), + [anon_sym_DOT_DOT2] = ACTIONS(1596), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1598), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1598), + [aux_sym__immediate_decimal_token2] = ACTIONS(4887), + [sym_filesize_unit] = ACTIONS(1598), + [sym_duration_unit] = ACTIONS(1598), + [anon_sym_err_GT] = ACTIONS(1596), + [anon_sym_out_GT] = ACTIONS(1596), + [anon_sym_e_GT] = ACTIONS(1596), + [anon_sym_o_GT] = ACTIONS(1596), + [anon_sym_err_PLUSout_GT] = ACTIONS(1596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1596), + [anon_sym_o_PLUSe_GT] = ACTIONS(1596), + [anon_sym_e_PLUSo_GT] = ACTIONS(1596), + [anon_sym_err_GT_GT] = ACTIONS(1598), + [anon_sym_out_GT_GT] = ACTIONS(1598), + [anon_sym_e_GT_GT] = ACTIONS(1598), + [anon_sym_o_GT_GT] = ACTIONS(1598), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1598), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1598), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1598), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1598), + [aux_sym_unquoted_token2] = ACTIONS(1596), + [anon_sym_POUND] = ACTIONS(249), + }, + [1447] = { + [sym_comment] = STATE(1447), + [anon_sym_true] = ACTIONS(1060), + [anon_sym_false] = ACTIONS(1060), + [anon_sym_null] = ACTIONS(1060), + [aux_sym_cmd_identifier_token38] = ACTIONS(1060), + [aux_sym_cmd_identifier_token39] = ACTIONS(1060), + [aux_sym_cmd_identifier_token40] = ACTIONS(1060), + [sym__newline] = ACTIONS(1060), + [anon_sym_SEMI] = ACTIONS(1060), + [anon_sym_PIPE] = ACTIONS(1060), + [anon_sym_err_GT_PIPE] = ACTIONS(1060), + [anon_sym_out_GT_PIPE] = ACTIONS(1060), + [anon_sym_e_GT_PIPE] = ACTIONS(1060), + [anon_sym_o_GT_PIPE] = ACTIONS(1060), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1060), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1060), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1060), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1060), + [anon_sym_LBRACK] = ACTIONS(1060), + [anon_sym_LPAREN] = ACTIONS(1060), + [anon_sym_RPAREN] = ACTIONS(1060), + [anon_sym_DOLLAR] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1060), + [anon_sym_DASH] = ACTIONS(1058), + [anon_sym_LBRACE] = ACTIONS(1060), + [anon_sym_RBRACE] = ACTIONS(1060), + [anon_sym_DOT_DOT] = ACTIONS(1058), + [anon_sym_QMARK2] = ACTIONS(1060), + [anon_sym_DOT] = ACTIONS(1058), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1060), + [anon_sym_DOT_DOT_LT] = ACTIONS(1060), + [aux_sym__val_number_decimal_token1] = ACTIONS(1058), + [aux_sym__val_number_decimal_token2] = ACTIONS(1060), + [aux_sym__val_number_decimal_token3] = ACTIONS(1060), + [aux_sym__val_number_decimal_token4] = ACTIONS(1060), + [aux_sym__val_number_token1] = ACTIONS(1060), + [aux_sym__val_number_token2] = ACTIONS(1060), + [aux_sym__val_number_token3] = ACTIONS(1060), + [anon_sym_0b] = ACTIONS(1058), + [anon_sym_0o] = ACTIONS(1058), + [anon_sym_0x] = ACTIONS(1058), + [sym_val_date] = ACTIONS(1060), + [anon_sym_DQUOTE] = ACTIONS(1060), + [sym__str_single_quotes] = ACTIONS(1060), + [sym__str_back_ticks] = ACTIONS(1060), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1060), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1060), + [anon_sym_err_GT] = ACTIONS(1058), + [anon_sym_out_GT] = ACTIONS(1058), + [anon_sym_e_GT] = ACTIONS(1058), + [anon_sym_o_GT] = ACTIONS(1058), + [anon_sym_err_PLUSout_GT] = ACTIONS(1058), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1058), + [anon_sym_o_PLUSe_GT] = ACTIONS(1058), + [anon_sym_e_PLUSo_GT] = ACTIONS(1058), + [anon_sym_err_GT_GT] = ACTIONS(1060), + [anon_sym_out_GT_GT] = ACTIONS(1060), + [anon_sym_e_GT_GT] = ACTIONS(1060), + [anon_sym_o_GT_GT] = ACTIONS(1060), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1060), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1060), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1060), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1060), + [aux_sym_unquoted_token1] = ACTIONS(1058), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1060), + }, + [1448] = { + [sym_comment] = STATE(1448), + [aux_sym_cmd_identifier_token41] = ACTIONS(1536), + [sym__newline] = ACTIONS(1536), + [anon_sym_SEMI] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_err_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_GT_PIPE] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), + [anon_sym_RBRACE] = ACTIONS(1538), + [anon_sym_EQ_GT] = ACTIONS(1538), + [aux_sym_expr_binary_token1] = ACTIONS(1538), + [aux_sym_expr_binary_token2] = ACTIONS(1538), + [aux_sym_expr_binary_token3] = ACTIONS(1538), + [aux_sym_expr_binary_token4] = ACTIONS(1538), + [aux_sym_expr_binary_token5] = ACTIONS(1538), + [aux_sym_expr_binary_token6] = ACTIONS(1538), + [aux_sym_expr_binary_token7] = ACTIONS(1538), + [aux_sym_expr_binary_token8] = ACTIONS(1538), + [aux_sym_expr_binary_token9] = ACTIONS(1538), + [aux_sym_expr_binary_token10] = ACTIONS(1538), + [aux_sym_expr_binary_token11] = ACTIONS(1538), + [aux_sym_expr_binary_token12] = ACTIONS(1538), + [aux_sym_expr_binary_token13] = ACTIONS(1538), + [aux_sym_expr_binary_token14] = ACTIONS(1538), + [aux_sym_expr_binary_token15] = ACTIONS(1538), + [aux_sym_expr_binary_token16] = ACTIONS(1538), + [aux_sym_expr_binary_token17] = ACTIONS(1538), + [aux_sym_expr_binary_token18] = ACTIONS(1538), + [aux_sym_expr_binary_token19] = ACTIONS(1538), + [aux_sym_expr_binary_token20] = ACTIONS(1538), + [aux_sym_expr_binary_token21] = ACTIONS(1538), + [aux_sym_expr_binary_token22] = ACTIONS(1538), + [aux_sym_expr_binary_token23] = ACTIONS(1538), + [aux_sym_expr_binary_token24] = ACTIONS(1538), + [aux_sym_expr_binary_token25] = ACTIONS(1538), + [aux_sym_expr_binary_token26] = ACTIONS(1538), + [aux_sym_expr_binary_token27] = ACTIONS(1538), + [aux_sym_expr_binary_token28] = ACTIONS(1538), + [anon_sym_DOT_DOT2] = ACTIONS(1536), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), + [sym_filesize_unit] = ACTIONS(1538), + [sym_duration_unit] = ACTIONS(1538), + [aux_sym_record_entry_token1] = ACTIONS(1538), + [anon_sym_err_GT] = ACTIONS(1536), + [anon_sym_out_GT] = ACTIONS(1536), + [anon_sym_e_GT] = ACTIONS(1536), + [anon_sym_o_GT] = ACTIONS(1536), + [anon_sym_err_PLUSout_GT] = ACTIONS(1536), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), + [anon_sym_o_PLUSe_GT] = ACTIONS(1536), + [anon_sym_e_PLUSo_GT] = ACTIONS(1536), + [anon_sym_err_GT_GT] = ACTIONS(1538), + [anon_sym_out_GT_GT] = ACTIONS(1538), + [anon_sym_e_GT_GT] = ACTIONS(1538), + [anon_sym_o_GT_GT] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), + [anon_sym_POUND] = ACTIONS(249), }, [1449] = { + [sym_cmd_identifier] = STATE(4187), + [sym__command_name] = STATE(6687), + [sym_scope_pattern] = STATE(6688), + [sym_command_list] = STATE(6691), + [sym__val_number_decimal] = STATE(7312), + [sym_val_string] = STATE(4162), + [sym__raw_str] = STATE(4434), + [sym__str_double_quotes] = STATE(4434), [sym_comment] = STATE(1449), - [anon_sym_true] = ACTIONS(2253), - [anon_sym_false] = ACTIONS(2253), - [anon_sym_null] = ACTIONS(2253), - [aux_sym_cmd_identifier_token38] = ACTIONS(2253), - [aux_sym_cmd_identifier_token39] = ACTIONS(2253), - [aux_sym_cmd_identifier_token40] = ACTIONS(2253), - [sym__newline] = ACTIONS(2255), - [anon_sym_SEMI] = ACTIONS(2255), - [anon_sym_PIPE] = ACTIONS(2255), - [anon_sym_err_GT_PIPE] = ACTIONS(2255), - [anon_sym_out_GT_PIPE] = ACTIONS(2255), - [anon_sym_e_GT_PIPE] = ACTIONS(2255), - [anon_sym_o_GT_PIPE] = ACTIONS(2255), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2255), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2255), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2255), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2255), - [anon_sym_LBRACK] = ACTIONS(2255), - [anon_sym_LPAREN] = ACTIONS(2253), - [anon_sym_RPAREN] = ACTIONS(2255), - [anon_sym_DOLLAR] = ACTIONS(2253), - [anon_sym_DASH_DASH] = ACTIONS(2253), - [anon_sym_DASH] = ACTIONS(2253), - [anon_sym_LBRACE] = ACTIONS(2255), - [anon_sym_RBRACE] = ACTIONS(2255), - [anon_sym_DOT_DOT] = ACTIONS(2253), - [anon_sym_LPAREN2] = ACTIONS(2255), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2253), - [anon_sym_DOT_DOT_LT] = ACTIONS(2253), - [aux_sym__val_number_decimal_token1] = ACTIONS(2253), - [aux_sym__val_number_decimal_token2] = ACTIONS(2253), - [aux_sym__val_number_decimal_token3] = ACTIONS(2253), - [aux_sym__val_number_decimal_token4] = ACTIONS(2253), - [aux_sym__val_number_token1] = ACTIONS(2253), - [aux_sym__val_number_token2] = ACTIONS(2253), - [aux_sym__val_number_token3] = ACTIONS(2253), - [anon_sym_0b] = ACTIONS(2253), - [anon_sym_0o] = ACTIONS(2253), - [anon_sym_0x] = ACTIONS(2253), - [sym_val_date] = ACTIONS(2253), - [anon_sym_DQUOTE] = ACTIONS(2255), - [sym__str_single_quotes] = ACTIONS(2255), - [sym__str_back_ticks] = ACTIONS(2255), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2255), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2255), - [anon_sym_err_GT] = ACTIONS(2253), - [anon_sym_out_GT] = ACTIONS(2253), - [anon_sym_e_GT] = ACTIONS(2253), - [anon_sym_o_GT] = ACTIONS(2253), - [anon_sym_err_PLUSout_GT] = ACTIONS(2253), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2253), - [anon_sym_o_PLUSe_GT] = ACTIONS(2253), - [anon_sym_e_PLUSo_GT] = ACTIONS(2253), - [anon_sym_err_GT_GT] = ACTIONS(2253), - [anon_sym_out_GT_GT] = ACTIONS(2253), - [anon_sym_e_GT_GT] = ACTIONS(2253), - [anon_sym_o_GT_GT] = ACTIONS(2253), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2253), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2253), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2253), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2253), - [aux_sym_unquoted_token1] = ACTIONS(2253), - [aux_sym_unquoted_token4] = ACTIONS(2253), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token1] = ACTIONS(4889), + [aux_sym_cmd_identifier_token2] = ACTIONS(4891), + [aux_sym_cmd_identifier_token3] = ACTIONS(4891), + [aux_sym_cmd_identifier_token4] = ACTIONS(4891), + [aux_sym_cmd_identifier_token5] = ACTIONS(4891), + [aux_sym_cmd_identifier_token6] = ACTIONS(4891), + [aux_sym_cmd_identifier_token7] = ACTIONS(4891), + [aux_sym_cmd_identifier_token8] = ACTIONS(4891), + [aux_sym_cmd_identifier_token9] = ACTIONS(4889), + [aux_sym_cmd_identifier_token10] = ACTIONS(4891), + [aux_sym_cmd_identifier_token11] = ACTIONS(4891), + [aux_sym_cmd_identifier_token12] = ACTIONS(4891), + [aux_sym_cmd_identifier_token13] = ACTIONS(4889), + [aux_sym_cmd_identifier_token14] = ACTIONS(4891), + [aux_sym_cmd_identifier_token15] = ACTIONS(4889), + [aux_sym_cmd_identifier_token16] = ACTIONS(4891), + [aux_sym_cmd_identifier_token17] = ACTIONS(4891), + [aux_sym_cmd_identifier_token18] = ACTIONS(4891), + [aux_sym_cmd_identifier_token19] = ACTIONS(4891), + [aux_sym_cmd_identifier_token20] = ACTIONS(4891), + [aux_sym_cmd_identifier_token21] = ACTIONS(4891), + [aux_sym_cmd_identifier_token22] = ACTIONS(4891), + [aux_sym_cmd_identifier_token23] = ACTIONS(4891), + [aux_sym_cmd_identifier_token24] = ACTIONS(4891), + [aux_sym_cmd_identifier_token25] = ACTIONS(4891), + [aux_sym_cmd_identifier_token26] = ACTIONS(4891), + [aux_sym_cmd_identifier_token27] = ACTIONS(4891), + [aux_sym_cmd_identifier_token28] = ACTIONS(4891), + [aux_sym_cmd_identifier_token29] = ACTIONS(4891), + [aux_sym_cmd_identifier_token30] = ACTIONS(4891), + [aux_sym_cmd_identifier_token31] = ACTIONS(4891), + [aux_sym_cmd_identifier_token32] = ACTIONS(4891), + [aux_sym_cmd_identifier_token33] = ACTIONS(4891), + [aux_sym_cmd_identifier_token34] = ACTIONS(4891), + [aux_sym_cmd_identifier_token35] = ACTIONS(4891), + [aux_sym_cmd_identifier_token36] = ACTIONS(4889), + [anon_sym_true] = ACTIONS(4893), + [anon_sym_false] = ACTIONS(4893), + [anon_sym_null] = ACTIONS(4893), + [aux_sym_cmd_identifier_token38] = ACTIONS(4895), + [aux_sym_cmd_identifier_token39] = ACTIONS(4893), + [aux_sym_cmd_identifier_token40] = ACTIONS(4893), + [sym__newline] = ACTIONS(4897), + [anon_sym_SEMI] = ACTIONS(4897), + [anon_sym_LBRACK] = ACTIONS(4899), + [anon_sym_RPAREN] = ACTIONS(4897), + [anon_sym_RBRACE] = ACTIONS(4897), + [sym_wild_card] = ACTIONS(4901), + [aux_sym__val_number_decimal_token1] = ACTIONS(1343), + [aux_sym__val_number_decimal_token2] = ACTIONS(1343), + [aux_sym__val_number_decimal_token3] = ACTIONS(1345), + [aux_sym__val_number_decimal_token4] = ACTIONS(1347), + [anon_sym_DQUOTE] = ACTIONS(3842), + [sym__str_single_quotes] = ACTIONS(3844), + [sym__str_back_ticks] = ACTIONS(3844), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3848), }, [1450] = { [sym_comment] = STATE(1450), - [anon_sym_true] = ACTIONS(1040), - [anon_sym_false] = ACTIONS(1040), - [anon_sym_null] = ACTIONS(1040), - [aux_sym_cmd_identifier_token38] = ACTIONS(1040), - [aux_sym_cmd_identifier_token39] = ACTIONS(1040), - [aux_sym_cmd_identifier_token40] = ACTIONS(1040), - [sym__newline] = ACTIONS(1040), - [anon_sym_SEMI] = ACTIONS(1040), - [anon_sym_PIPE] = ACTIONS(1040), - [anon_sym_err_GT_PIPE] = ACTIONS(1040), - [anon_sym_out_GT_PIPE] = ACTIONS(1040), - [anon_sym_e_GT_PIPE] = ACTIONS(1040), - [anon_sym_o_GT_PIPE] = ACTIONS(1040), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1040), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1040), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1040), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1040), - [anon_sym_LBRACK] = ACTIONS(1040), - [anon_sym_LPAREN] = ACTIONS(1040), - [anon_sym_RPAREN] = ACTIONS(1040), - [anon_sym_DOLLAR] = ACTIONS(1038), - [anon_sym_DASH_DASH] = ACTIONS(1040), - [anon_sym_DASH] = ACTIONS(1038), - [anon_sym_LBRACE] = ACTIONS(1040), - [anon_sym_RBRACE] = ACTIONS(1040), - [anon_sym_DOT_DOT] = ACTIONS(1038), - [anon_sym_QMARK2] = ACTIONS(1040), - [anon_sym_DOT] = ACTIONS(1038), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1040), - [anon_sym_DOT_DOT_LT] = ACTIONS(1040), - [aux_sym__val_number_decimal_token1] = ACTIONS(1038), - [aux_sym__val_number_decimal_token2] = ACTIONS(1040), - [aux_sym__val_number_decimal_token3] = ACTIONS(1040), - [aux_sym__val_number_decimal_token4] = ACTIONS(1040), - [aux_sym__val_number_token1] = ACTIONS(1040), - [aux_sym__val_number_token2] = ACTIONS(1040), - [aux_sym__val_number_token3] = ACTIONS(1040), - [anon_sym_0b] = ACTIONS(1038), - [anon_sym_0o] = ACTIONS(1038), - [anon_sym_0x] = ACTIONS(1038), - [sym_val_date] = ACTIONS(1040), - [anon_sym_DQUOTE] = ACTIONS(1040), - [sym__str_single_quotes] = ACTIONS(1040), - [sym__str_back_ticks] = ACTIONS(1040), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1040), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1040), - [anon_sym_err_GT] = ACTIONS(1038), - [anon_sym_out_GT] = ACTIONS(1038), - [anon_sym_e_GT] = ACTIONS(1038), - [anon_sym_o_GT] = ACTIONS(1038), - [anon_sym_err_PLUSout_GT] = ACTIONS(1038), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1038), - [anon_sym_o_PLUSe_GT] = ACTIONS(1038), - [anon_sym_e_PLUSo_GT] = ACTIONS(1038), - [anon_sym_err_GT_GT] = ACTIONS(1040), - [anon_sym_out_GT_GT] = ACTIONS(1040), - [anon_sym_e_GT_GT] = ACTIONS(1040), - [anon_sym_o_GT_GT] = ACTIONS(1040), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1040), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1040), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1040), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1040), - [aux_sym_unquoted_token1] = ACTIONS(1038), - [anon_sym_POUND] = ACTIONS(247), + [ts_builtin_sym_end] = ACTIONS(1538), + [aux_sym_cmd_identifier_token41] = ACTIONS(1536), + [sym__newline] = ACTIONS(1538), + [anon_sym_SEMI] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_err_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_GT_PIPE] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), + [aux_sym_expr_binary_token1] = ACTIONS(1538), + [aux_sym_expr_binary_token2] = ACTIONS(1538), + [aux_sym_expr_binary_token3] = ACTIONS(1538), + [aux_sym_expr_binary_token4] = ACTIONS(1538), + [aux_sym_expr_binary_token5] = ACTIONS(1538), + [aux_sym_expr_binary_token6] = ACTIONS(1538), + [aux_sym_expr_binary_token7] = ACTIONS(1538), + [aux_sym_expr_binary_token8] = ACTIONS(1538), + [aux_sym_expr_binary_token9] = ACTIONS(1538), + [aux_sym_expr_binary_token10] = ACTIONS(1538), + [aux_sym_expr_binary_token11] = ACTIONS(1538), + [aux_sym_expr_binary_token12] = ACTIONS(1538), + [aux_sym_expr_binary_token13] = ACTIONS(1538), + [aux_sym_expr_binary_token14] = ACTIONS(1538), + [aux_sym_expr_binary_token15] = ACTIONS(1538), + [aux_sym_expr_binary_token16] = ACTIONS(1538), + [aux_sym_expr_binary_token17] = ACTIONS(1538), + [aux_sym_expr_binary_token18] = ACTIONS(1538), + [aux_sym_expr_binary_token19] = ACTIONS(1538), + [aux_sym_expr_binary_token20] = ACTIONS(1538), + [aux_sym_expr_binary_token21] = ACTIONS(1538), + [aux_sym_expr_binary_token22] = ACTIONS(1538), + [aux_sym_expr_binary_token23] = ACTIONS(1538), + [aux_sym_expr_binary_token24] = ACTIONS(1538), + [aux_sym_expr_binary_token25] = ACTIONS(1538), + [aux_sym_expr_binary_token26] = ACTIONS(1538), + [aux_sym_expr_binary_token27] = ACTIONS(1538), + [aux_sym_expr_binary_token28] = ACTIONS(1538), + [anon_sym_DOT_DOT2] = ACTIONS(1536), + [anon_sym_DOT] = ACTIONS(4903), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), + [aux_sym__immediate_decimal_token2] = ACTIONS(4905), + [sym_filesize_unit] = ACTIONS(1538), + [sym_duration_unit] = ACTIONS(1538), + [anon_sym_err_GT] = ACTIONS(1536), + [anon_sym_out_GT] = ACTIONS(1536), + [anon_sym_e_GT] = ACTIONS(1536), + [anon_sym_o_GT] = ACTIONS(1536), + [anon_sym_err_PLUSout_GT] = ACTIONS(1536), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), + [anon_sym_o_PLUSe_GT] = ACTIONS(1536), + [anon_sym_e_PLUSo_GT] = ACTIONS(1536), + [anon_sym_err_GT_GT] = ACTIONS(1538), + [anon_sym_out_GT_GT] = ACTIONS(1538), + [anon_sym_e_GT_GT] = ACTIONS(1538), + [anon_sym_o_GT_GT] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), + [anon_sym_POUND] = ACTIONS(249), }, [1451] = { [sym_comment] = STATE(1451), - [anon_sym_true] = ACTIONS(1036), - [anon_sym_false] = ACTIONS(1036), - [anon_sym_null] = ACTIONS(1036), - [aux_sym_cmd_identifier_token38] = ACTIONS(1036), - [aux_sym_cmd_identifier_token39] = ACTIONS(1036), - [aux_sym_cmd_identifier_token40] = ACTIONS(1036), - [sym__newline] = ACTIONS(1036), - [anon_sym_SEMI] = ACTIONS(1036), - [anon_sym_PIPE] = ACTIONS(1036), - [anon_sym_err_GT_PIPE] = ACTIONS(1036), - [anon_sym_out_GT_PIPE] = ACTIONS(1036), - [anon_sym_e_GT_PIPE] = ACTIONS(1036), - [anon_sym_o_GT_PIPE] = ACTIONS(1036), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1036), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1036), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1036), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1036), - [anon_sym_LBRACK] = ACTIONS(1036), - [anon_sym_LPAREN] = ACTIONS(1036), - [anon_sym_RPAREN] = ACTIONS(1036), - [anon_sym_DOLLAR] = ACTIONS(1034), - [anon_sym_DASH_DASH] = ACTIONS(1036), - [anon_sym_DASH] = ACTIONS(1034), - [anon_sym_LBRACE] = ACTIONS(1036), - [anon_sym_RBRACE] = ACTIONS(1036), - [anon_sym_DOT_DOT] = ACTIONS(1034), - [anon_sym_QMARK2] = ACTIONS(1036), - [anon_sym_DOT] = ACTIONS(1034), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1036), - [anon_sym_DOT_DOT_LT] = ACTIONS(1036), - [aux_sym__val_number_decimal_token1] = ACTIONS(1034), - [aux_sym__val_number_decimal_token2] = ACTIONS(1036), - [aux_sym__val_number_decimal_token3] = ACTIONS(1036), - [aux_sym__val_number_decimal_token4] = ACTIONS(1036), - [aux_sym__val_number_token1] = ACTIONS(1036), - [aux_sym__val_number_token2] = ACTIONS(1036), - [aux_sym__val_number_token3] = ACTIONS(1036), - [anon_sym_0b] = ACTIONS(1034), - [anon_sym_0o] = ACTIONS(1034), - [anon_sym_0x] = ACTIONS(1034), - [sym_val_date] = ACTIONS(1036), - [anon_sym_DQUOTE] = ACTIONS(1036), - [sym__str_single_quotes] = ACTIONS(1036), - [sym__str_back_ticks] = ACTIONS(1036), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1036), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1036), - [anon_sym_err_GT] = ACTIONS(1034), - [anon_sym_out_GT] = ACTIONS(1034), - [anon_sym_e_GT] = ACTIONS(1034), - [anon_sym_o_GT] = ACTIONS(1034), - [anon_sym_err_PLUSout_GT] = ACTIONS(1034), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1034), - [anon_sym_o_PLUSe_GT] = ACTIONS(1034), - [anon_sym_e_PLUSo_GT] = ACTIONS(1034), - [anon_sym_err_GT_GT] = ACTIONS(1036), - [anon_sym_out_GT_GT] = ACTIONS(1036), - [anon_sym_e_GT_GT] = ACTIONS(1036), - [anon_sym_o_GT_GT] = ACTIONS(1036), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1036), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1036), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1036), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1036), - [aux_sym_unquoted_token1] = ACTIONS(1034), - [anon_sym_POUND] = ACTIONS(247), + [ts_builtin_sym_end] = ACTIONS(1092), + [anon_sym_true] = ACTIONS(1092), + [anon_sym_false] = ACTIONS(1092), + [anon_sym_null] = ACTIONS(1092), + [aux_sym_cmd_identifier_token38] = ACTIONS(1092), + [aux_sym_cmd_identifier_token39] = ACTIONS(1092), + [aux_sym_cmd_identifier_token40] = ACTIONS(1092), + [sym__newline] = ACTIONS(1092), + [anon_sym_SEMI] = ACTIONS(1092), + [anon_sym_PIPE] = ACTIONS(1092), + [anon_sym_err_GT_PIPE] = ACTIONS(1092), + [anon_sym_out_GT_PIPE] = ACTIONS(1092), + [anon_sym_e_GT_PIPE] = ACTIONS(1092), + [anon_sym_o_GT_PIPE] = ACTIONS(1092), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1092), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1092), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1092), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1092), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_LPAREN] = ACTIONS(1092), + [anon_sym_DOLLAR] = ACTIONS(1090), + [anon_sym_DASH_DASH] = ACTIONS(1092), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_LBRACE] = ACTIONS(1092), + [anon_sym_DOT_DOT] = ACTIONS(1090), + [anon_sym_DOT_DOT2] = ACTIONS(4858), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1090), + [anon_sym_DOT_DOT_LT] = ACTIONS(1090), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4860), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4860), + [aux_sym__val_number_decimal_token1] = ACTIONS(1090), + [aux_sym__val_number_decimal_token2] = ACTIONS(1092), + [aux_sym__val_number_decimal_token3] = ACTIONS(1092), + [aux_sym__val_number_decimal_token4] = ACTIONS(1092), + [aux_sym__val_number_token1] = ACTIONS(1092), + [aux_sym__val_number_token2] = ACTIONS(1092), + [aux_sym__val_number_token3] = ACTIONS(1092), + [anon_sym_0b] = ACTIONS(1090), + [anon_sym_0o] = ACTIONS(1090), + [anon_sym_0x] = ACTIONS(1090), + [sym_val_date] = ACTIONS(1092), + [anon_sym_DQUOTE] = ACTIONS(1092), + [sym__str_single_quotes] = ACTIONS(1092), + [sym__str_back_ticks] = ACTIONS(1092), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1092), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1092), + [anon_sym_err_GT] = ACTIONS(1090), + [anon_sym_out_GT] = ACTIONS(1090), + [anon_sym_e_GT] = ACTIONS(1090), + [anon_sym_o_GT] = ACTIONS(1090), + [anon_sym_err_PLUSout_GT] = ACTIONS(1090), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1090), + [anon_sym_o_PLUSe_GT] = ACTIONS(1090), + [anon_sym_e_PLUSo_GT] = ACTIONS(1090), + [anon_sym_err_GT_GT] = ACTIONS(1092), + [anon_sym_out_GT_GT] = ACTIONS(1092), + [anon_sym_e_GT_GT] = ACTIONS(1092), + [anon_sym_o_GT_GT] = ACTIONS(1092), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1092), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1092), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1092), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1092), + [aux_sym_unquoted_token1] = ACTIONS(1090), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1092), }, [1452] = { [sym_comment] = STATE(1452), - [sym__newline] = ACTIONS(1518), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_err_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_GT_PIPE] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1520), - [anon_sym_RPAREN] = ACTIONS(1520), - [anon_sym_LPAREN2] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1520), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1520), - [anon_sym_DOT_DOT2] = ACTIONS(1518), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), - [sym_filesize_unit] = ACTIONS(1520), - [sym_duration_unit] = ACTIONS(1520), - [anon_sym_err_GT] = ACTIONS(1518), - [anon_sym_out_GT] = ACTIONS(1518), - [anon_sym_e_GT] = ACTIONS(1518), - [anon_sym_o_GT] = ACTIONS(1518), - [anon_sym_err_PLUSout_GT] = ACTIONS(1518), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), - [anon_sym_o_PLUSe_GT] = ACTIONS(1518), - [anon_sym_e_PLUSo_GT] = ACTIONS(1518), - [anon_sym_err_GT_GT] = ACTIONS(1520), - [anon_sym_out_GT_GT] = ACTIONS(1520), - [anon_sym_e_GT_GT] = ACTIONS(1520), - [anon_sym_o_GT_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1520), - [aux_sym_unquoted_token2] = ACTIONS(1518), - [anon_sym_POUND] = ACTIONS(247), + [ts_builtin_sym_end] = ACTIONS(1530), + [aux_sym_cmd_identifier_token41] = ACTIONS(1528), + [sym__newline] = ACTIONS(1530), + [anon_sym_SEMI] = ACTIONS(1530), + [anon_sym_PIPE] = ACTIONS(1530), + [anon_sym_err_GT_PIPE] = ACTIONS(1530), + [anon_sym_out_GT_PIPE] = ACTIONS(1530), + [anon_sym_e_GT_PIPE] = ACTIONS(1530), + [anon_sym_o_GT_PIPE] = ACTIONS(1530), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1530), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1530), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1530), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1530), + [aux_sym_expr_binary_token1] = ACTIONS(1530), + [aux_sym_expr_binary_token2] = ACTIONS(1530), + [aux_sym_expr_binary_token3] = ACTIONS(1530), + [aux_sym_expr_binary_token4] = ACTIONS(1530), + [aux_sym_expr_binary_token5] = ACTIONS(1530), + [aux_sym_expr_binary_token6] = ACTIONS(1530), + [aux_sym_expr_binary_token7] = ACTIONS(1530), + [aux_sym_expr_binary_token8] = ACTIONS(1530), + [aux_sym_expr_binary_token9] = ACTIONS(1530), + [aux_sym_expr_binary_token10] = ACTIONS(1530), + [aux_sym_expr_binary_token11] = ACTIONS(1530), + [aux_sym_expr_binary_token12] = ACTIONS(1530), + [aux_sym_expr_binary_token13] = ACTIONS(1530), + [aux_sym_expr_binary_token14] = ACTIONS(1530), + [aux_sym_expr_binary_token15] = ACTIONS(1530), + [aux_sym_expr_binary_token16] = ACTIONS(1530), + [aux_sym_expr_binary_token17] = ACTIONS(1530), + [aux_sym_expr_binary_token18] = ACTIONS(1530), + [aux_sym_expr_binary_token19] = ACTIONS(1530), + [aux_sym_expr_binary_token20] = ACTIONS(1530), + [aux_sym_expr_binary_token21] = ACTIONS(1530), + [aux_sym_expr_binary_token22] = ACTIONS(1530), + [aux_sym_expr_binary_token23] = ACTIONS(1530), + [aux_sym_expr_binary_token24] = ACTIONS(1530), + [aux_sym_expr_binary_token25] = ACTIONS(1530), + [aux_sym_expr_binary_token26] = ACTIONS(1530), + [aux_sym_expr_binary_token27] = ACTIONS(1530), + [aux_sym_expr_binary_token28] = ACTIONS(1530), + [anon_sym_DOT_DOT2] = ACTIONS(1528), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1530), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1530), + [aux_sym__immediate_decimal_token1] = ACTIONS(4907), + [aux_sym__immediate_decimal_token2] = ACTIONS(4909), + [sym_filesize_unit] = ACTIONS(1530), + [sym_duration_unit] = ACTIONS(1530), + [anon_sym_err_GT] = ACTIONS(1528), + [anon_sym_out_GT] = ACTIONS(1528), + [anon_sym_e_GT] = ACTIONS(1528), + [anon_sym_o_GT] = ACTIONS(1528), + [anon_sym_err_PLUSout_GT] = ACTIONS(1528), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), + [anon_sym_o_PLUSe_GT] = ACTIONS(1528), + [anon_sym_e_PLUSo_GT] = ACTIONS(1528), + [anon_sym_err_GT_GT] = ACTIONS(1530), + [anon_sym_out_GT_GT] = ACTIONS(1530), + [anon_sym_e_GT_GT] = ACTIONS(1530), + [anon_sym_o_GT_GT] = ACTIONS(1530), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1530), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1530), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1530), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1530), + [anon_sym_POUND] = ACTIONS(249), }, [1453] = { + [sym_cmd_identifier] = STATE(4187), + [sym__command_name] = STATE(6687), + [sym_scope_pattern] = STATE(6745), + [sym_command_list] = STATE(6691), + [sym__val_number_decimal] = STATE(7312), + [sym_val_string] = STATE(4162), + [sym__raw_str] = STATE(4434), + [sym__str_double_quotes] = STATE(4434), [sym_comment] = STATE(1453), - [ts_builtin_sym_end] = ACTIONS(2005), - [anon_sym_true] = ACTIONS(2005), - [anon_sym_false] = ACTIONS(2005), - [anon_sym_null] = ACTIONS(2005), - [aux_sym_cmd_identifier_token38] = ACTIONS(2005), - [aux_sym_cmd_identifier_token39] = ACTIONS(2005), - [aux_sym_cmd_identifier_token40] = ACTIONS(2005), - [sym__newline] = ACTIONS(2005), - [anon_sym_SEMI] = ACTIONS(2005), - [anon_sym_PIPE] = ACTIONS(2005), - [anon_sym_err_GT_PIPE] = ACTIONS(2005), - [anon_sym_out_GT_PIPE] = ACTIONS(2005), - [anon_sym_e_GT_PIPE] = ACTIONS(2005), - [anon_sym_o_GT_PIPE] = ACTIONS(2005), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2005), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2005), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2005), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2005), - [anon_sym_LBRACK] = ACTIONS(2005), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_DOLLAR] = ACTIONS(1999), - [anon_sym_DASH_DASH] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(1999), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_DOT_DOT] = ACTIONS(1999), - [anon_sym_DOT_DOT2] = ACTIONS(4802), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1999), - [anon_sym_DOT_DOT_LT] = ACTIONS(1999), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4804), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4804), - [aux_sym__val_number_decimal_token1] = ACTIONS(1999), - [aux_sym__val_number_decimal_token2] = ACTIONS(2005), - [aux_sym__val_number_decimal_token3] = ACTIONS(2005), - [aux_sym__val_number_decimal_token4] = ACTIONS(2005), - [aux_sym__val_number_token1] = ACTIONS(2005), - [aux_sym__val_number_token2] = ACTIONS(2005), - [aux_sym__val_number_token3] = ACTIONS(2005), - [anon_sym_0b] = ACTIONS(1999), - [anon_sym_0o] = ACTIONS(1999), - [anon_sym_0x] = ACTIONS(1999), - [sym_val_date] = ACTIONS(2005), - [anon_sym_DQUOTE] = ACTIONS(2005), - [sym__str_single_quotes] = ACTIONS(2005), - [sym__str_back_ticks] = ACTIONS(2005), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2005), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2005), - [anon_sym_err_GT] = ACTIONS(1999), - [anon_sym_out_GT] = ACTIONS(1999), - [anon_sym_e_GT] = ACTIONS(1999), - [anon_sym_o_GT] = ACTIONS(1999), - [anon_sym_err_PLUSout_GT] = ACTIONS(1999), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1999), - [anon_sym_o_PLUSe_GT] = ACTIONS(1999), - [anon_sym_e_PLUSo_GT] = ACTIONS(1999), - [anon_sym_err_GT_GT] = ACTIONS(2005), - [anon_sym_out_GT_GT] = ACTIONS(2005), - [anon_sym_e_GT_GT] = ACTIONS(2005), - [anon_sym_o_GT_GT] = ACTIONS(2005), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2005), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2005), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2005), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2005), - [aux_sym_unquoted_token1] = ACTIONS(1999), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cmd_identifier_token1] = ACTIONS(4889), + [aux_sym_cmd_identifier_token2] = ACTIONS(4891), + [aux_sym_cmd_identifier_token3] = ACTIONS(4891), + [aux_sym_cmd_identifier_token4] = ACTIONS(4891), + [aux_sym_cmd_identifier_token5] = ACTIONS(4891), + [aux_sym_cmd_identifier_token6] = ACTIONS(4891), + [aux_sym_cmd_identifier_token7] = ACTIONS(4891), + [aux_sym_cmd_identifier_token8] = ACTIONS(4891), + [aux_sym_cmd_identifier_token9] = ACTIONS(4889), + [aux_sym_cmd_identifier_token10] = ACTIONS(4891), + [aux_sym_cmd_identifier_token11] = ACTIONS(4891), + [aux_sym_cmd_identifier_token12] = ACTIONS(4891), + [aux_sym_cmd_identifier_token13] = ACTIONS(4889), + [aux_sym_cmd_identifier_token14] = ACTIONS(4891), + [aux_sym_cmd_identifier_token15] = ACTIONS(4889), + [aux_sym_cmd_identifier_token16] = ACTIONS(4891), + [aux_sym_cmd_identifier_token17] = ACTIONS(4891), + [aux_sym_cmd_identifier_token18] = ACTIONS(4891), + [aux_sym_cmd_identifier_token19] = ACTIONS(4891), + [aux_sym_cmd_identifier_token20] = ACTIONS(4891), + [aux_sym_cmd_identifier_token21] = ACTIONS(4891), + [aux_sym_cmd_identifier_token22] = ACTIONS(4891), + [aux_sym_cmd_identifier_token23] = ACTIONS(4891), + [aux_sym_cmd_identifier_token24] = ACTIONS(4891), + [aux_sym_cmd_identifier_token25] = ACTIONS(4891), + [aux_sym_cmd_identifier_token26] = ACTIONS(4891), + [aux_sym_cmd_identifier_token27] = ACTIONS(4891), + [aux_sym_cmd_identifier_token28] = ACTIONS(4891), + [aux_sym_cmd_identifier_token29] = ACTIONS(4891), + [aux_sym_cmd_identifier_token30] = ACTIONS(4891), + [aux_sym_cmd_identifier_token31] = ACTIONS(4891), + [aux_sym_cmd_identifier_token32] = ACTIONS(4891), + [aux_sym_cmd_identifier_token33] = ACTIONS(4891), + [aux_sym_cmd_identifier_token34] = ACTIONS(4891), + [aux_sym_cmd_identifier_token35] = ACTIONS(4891), + [aux_sym_cmd_identifier_token36] = ACTIONS(4889), + [anon_sym_true] = ACTIONS(4893), + [anon_sym_false] = ACTIONS(4893), + [anon_sym_null] = ACTIONS(4893), + [aux_sym_cmd_identifier_token38] = ACTIONS(4895), + [aux_sym_cmd_identifier_token39] = ACTIONS(4893), + [aux_sym_cmd_identifier_token40] = ACTIONS(4893), + [sym__newline] = ACTIONS(4911), + [anon_sym_SEMI] = ACTIONS(4911), + [anon_sym_LBRACK] = ACTIONS(4899), + [anon_sym_RPAREN] = ACTIONS(4911), + [anon_sym_RBRACE] = ACTIONS(4911), + [sym_wild_card] = ACTIONS(4901), + [aux_sym__val_number_decimal_token1] = ACTIONS(1343), + [aux_sym__val_number_decimal_token2] = ACTIONS(1343), + [aux_sym__val_number_decimal_token3] = ACTIONS(1345), + [aux_sym__val_number_decimal_token4] = ACTIONS(1347), + [anon_sym_DQUOTE] = ACTIONS(3842), + [sym__str_single_quotes] = ACTIONS(3844), + [sym__str_back_ticks] = ACTIONS(3844), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3848), }, [1454] = { [sym_comment] = STATE(1454), - [ts_builtin_sym_end] = ACTIONS(1556), - [aux_sym_cmd_identifier_token41] = ACTIONS(1554), - [sym__newline] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1556), - [anon_sym_PIPE] = ACTIONS(1556), - [anon_sym_err_GT_PIPE] = ACTIONS(1556), - [anon_sym_out_GT_PIPE] = ACTIONS(1556), - [anon_sym_e_GT_PIPE] = ACTIONS(1556), - [anon_sym_o_GT_PIPE] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1556), - [aux_sym_expr_binary_token1] = ACTIONS(1556), - [aux_sym_expr_binary_token2] = ACTIONS(1556), - [aux_sym_expr_binary_token3] = ACTIONS(1556), - [aux_sym_expr_binary_token4] = ACTIONS(1556), - [aux_sym_expr_binary_token5] = ACTIONS(1556), - [aux_sym_expr_binary_token6] = ACTIONS(1556), - [aux_sym_expr_binary_token7] = ACTIONS(1556), - [aux_sym_expr_binary_token8] = ACTIONS(1556), - [aux_sym_expr_binary_token9] = ACTIONS(1556), - [aux_sym_expr_binary_token10] = ACTIONS(1556), - [aux_sym_expr_binary_token11] = ACTIONS(1556), - [aux_sym_expr_binary_token12] = ACTIONS(1556), - [aux_sym_expr_binary_token13] = ACTIONS(1556), - [aux_sym_expr_binary_token14] = ACTIONS(1556), - [aux_sym_expr_binary_token15] = ACTIONS(1556), - [aux_sym_expr_binary_token16] = ACTIONS(1556), - [aux_sym_expr_binary_token17] = ACTIONS(1556), - [aux_sym_expr_binary_token18] = ACTIONS(1556), - [aux_sym_expr_binary_token19] = ACTIONS(1556), - [aux_sym_expr_binary_token20] = ACTIONS(1556), - [aux_sym_expr_binary_token21] = ACTIONS(1556), - [aux_sym_expr_binary_token22] = ACTIONS(1556), - [aux_sym_expr_binary_token23] = ACTIONS(1556), - [aux_sym_expr_binary_token24] = ACTIONS(1556), - [aux_sym_expr_binary_token25] = ACTIONS(1556), - [aux_sym_expr_binary_token26] = ACTIONS(1556), - [aux_sym_expr_binary_token27] = ACTIONS(1556), - [aux_sym_expr_binary_token28] = ACTIONS(1556), - [anon_sym_DOT_DOT2] = ACTIONS(1554), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1556), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1556), - [aux_sym__immediate_decimal_token2] = ACTIONS(4806), - [sym_filesize_unit] = ACTIONS(1556), - [sym_duration_unit] = ACTIONS(1556), - [anon_sym_err_GT] = ACTIONS(1554), - [anon_sym_out_GT] = ACTIONS(1554), - [anon_sym_e_GT] = ACTIONS(1554), - [anon_sym_o_GT] = ACTIONS(1554), - [anon_sym_err_PLUSout_GT] = ACTIONS(1554), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1554), - [anon_sym_o_PLUSe_GT] = ACTIONS(1554), - [anon_sym_e_PLUSo_GT] = ACTIONS(1554), - [anon_sym_err_GT_GT] = ACTIONS(1556), - [anon_sym_out_GT_GT] = ACTIONS(1556), - [anon_sym_e_GT_GT] = ACTIONS(1556), - [anon_sym_o_GT_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1556), - [anon_sym_POUND] = ACTIONS(247), + [sym__newline] = ACTIONS(1598), + [anon_sym_SEMI] = ACTIONS(1598), + [anon_sym_PIPE] = ACTIONS(1598), + [anon_sym_err_GT_PIPE] = ACTIONS(1598), + [anon_sym_out_GT_PIPE] = ACTIONS(1598), + [anon_sym_e_GT_PIPE] = ACTIONS(1598), + [anon_sym_o_GT_PIPE] = ACTIONS(1598), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1598), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1598), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1598), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1598), + [anon_sym_RPAREN] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1598), + [anon_sym_LPAREN2] = ACTIONS(1598), + [aux_sym_expr_binary_token1] = ACTIONS(1598), + [aux_sym_expr_binary_token2] = ACTIONS(1598), + [aux_sym_expr_binary_token3] = ACTIONS(1598), + [aux_sym_expr_binary_token4] = ACTIONS(1598), + [aux_sym_expr_binary_token5] = ACTIONS(1598), + [aux_sym_expr_binary_token6] = ACTIONS(1598), + [aux_sym_expr_binary_token7] = ACTIONS(1598), + [aux_sym_expr_binary_token8] = ACTIONS(1598), + [aux_sym_expr_binary_token9] = ACTIONS(1598), + [aux_sym_expr_binary_token10] = ACTIONS(1598), + [aux_sym_expr_binary_token11] = ACTIONS(1598), + [aux_sym_expr_binary_token12] = ACTIONS(1598), + [aux_sym_expr_binary_token13] = ACTIONS(1598), + [aux_sym_expr_binary_token14] = ACTIONS(1598), + [aux_sym_expr_binary_token15] = ACTIONS(1598), + [aux_sym_expr_binary_token16] = ACTIONS(1598), + [aux_sym_expr_binary_token17] = ACTIONS(1598), + [aux_sym_expr_binary_token18] = ACTIONS(1598), + [aux_sym_expr_binary_token19] = ACTIONS(1598), + [aux_sym_expr_binary_token20] = ACTIONS(1598), + [aux_sym_expr_binary_token21] = ACTIONS(1598), + [aux_sym_expr_binary_token22] = ACTIONS(1598), + [aux_sym_expr_binary_token23] = ACTIONS(1598), + [aux_sym_expr_binary_token24] = ACTIONS(1598), + [aux_sym_expr_binary_token25] = ACTIONS(1598), + [aux_sym_expr_binary_token26] = ACTIONS(1598), + [aux_sym_expr_binary_token27] = ACTIONS(1598), + [aux_sym_expr_binary_token28] = ACTIONS(1598), + [anon_sym_DOT_DOT2] = ACTIONS(1596), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1598), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1598), + [sym_filesize_unit] = ACTIONS(1598), + [sym_duration_unit] = ACTIONS(1598), + [anon_sym_err_GT] = ACTIONS(1596), + [anon_sym_out_GT] = ACTIONS(1596), + [anon_sym_e_GT] = ACTIONS(1596), + [anon_sym_o_GT] = ACTIONS(1596), + [anon_sym_err_PLUSout_GT] = ACTIONS(1596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1596), + [anon_sym_o_PLUSe_GT] = ACTIONS(1596), + [anon_sym_e_PLUSo_GT] = ACTIONS(1596), + [anon_sym_err_GT_GT] = ACTIONS(1598), + [anon_sym_out_GT_GT] = ACTIONS(1598), + [anon_sym_e_GT_GT] = ACTIONS(1598), + [anon_sym_o_GT_GT] = ACTIONS(1598), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1598), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1598), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1598), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1598), + [aux_sym_unquoted_token2] = ACTIONS(1596), + [anon_sym_POUND] = ACTIONS(249), }, [1455] = { [sym_comment] = STATE(1455), - [ts_builtin_sym_end] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1072), - [anon_sym_false] = ACTIONS(1072), - [anon_sym_null] = ACTIONS(1072), - [aux_sym_cmd_identifier_token38] = ACTIONS(1072), - [aux_sym_cmd_identifier_token39] = ACTIONS(1072), - [aux_sym_cmd_identifier_token40] = ACTIONS(1072), - [sym__newline] = ACTIONS(1072), - [anon_sym_SEMI] = ACTIONS(1072), - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_err_GT_PIPE] = ACTIONS(1072), - [anon_sym_out_GT_PIPE] = ACTIONS(1072), - [anon_sym_e_GT_PIPE] = ACTIONS(1072), - [anon_sym_o_GT_PIPE] = ACTIONS(1072), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1072), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1072), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1072), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1072), - [anon_sym_LBRACK] = ACTIONS(1072), - [anon_sym_LPAREN] = ACTIONS(1072), - [anon_sym_DOLLAR] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1072), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1072), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [anon_sym_DOT_DOT2] = ACTIONS(4789), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1070), - [anon_sym_DOT_DOT_LT] = ACTIONS(1070), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4791), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4791), - [aux_sym__val_number_decimal_token1] = ACTIONS(1070), - [aux_sym__val_number_decimal_token2] = ACTIONS(1072), - [aux_sym__val_number_decimal_token3] = ACTIONS(1072), - [aux_sym__val_number_decimal_token4] = ACTIONS(1072), - [aux_sym__val_number_token1] = ACTIONS(1072), - [aux_sym__val_number_token2] = ACTIONS(1072), - [aux_sym__val_number_token3] = ACTIONS(1072), - [anon_sym_0b] = ACTIONS(1070), - [anon_sym_0o] = ACTIONS(1070), - [anon_sym_0x] = ACTIONS(1070), - [sym_val_date] = ACTIONS(1072), - [anon_sym_DQUOTE] = ACTIONS(1072), - [sym__str_single_quotes] = ACTIONS(1072), - [sym__str_back_ticks] = ACTIONS(1072), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1072), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1072), - [anon_sym_err_GT] = ACTIONS(1070), - [anon_sym_out_GT] = ACTIONS(1070), - [anon_sym_e_GT] = ACTIONS(1070), - [anon_sym_o_GT] = ACTIONS(1070), - [anon_sym_err_PLUSout_GT] = ACTIONS(1070), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1070), - [anon_sym_o_PLUSe_GT] = ACTIONS(1070), - [anon_sym_e_PLUSo_GT] = ACTIONS(1070), - [anon_sym_err_GT_GT] = ACTIONS(1072), - [anon_sym_out_GT_GT] = ACTIONS(1072), - [anon_sym_e_GT_GT] = ACTIONS(1072), - [anon_sym_o_GT_GT] = ACTIONS(1072), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1072), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1072), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1072), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1072), - [aux_sym_unquoted_token1] = ACTIONS(1070), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(2800), + [anon_sym_false] = ACTIONS(2800), + [anon_sym_null] = ACTIONS(2800), + [aux_sym_cmd_identifier_token38] = ACTIONS(2800), + [aux_sym_cmd_identifier_token39] = ACTIONS(2800), + [aux_sym_cmd_identifier_token40] = ACTIONS(2800), + [sym__newline] = ACTIONS(2800), + [anon_sym_SEMI] = ACTIONS(2800), + [anon_sym_PIPE] = ACTIONS(2800), + [anon_sym_err_GT_PIPE] = ACTIONS(2800), + [anon_sym_out_GT_PIPE] = ACTIONS(2800), + [anon_sym_e_GT_PIPE] = ACTIONS(2800), + [anon_sym_o_GT_PIPE] = ACTIONS(2800), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2800), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2800), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2800), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2800), + [anon_sym_LBRACK] = ACTIONS(2800), + [anon_sym_LPAREN] = ACTIONS(2800), + [anon_sym_RPAREN] = ACTIONS(2800), + [anon_sym_DOLLAR] = ACTIONS(4913), + [anon_sym_DASH_DASH] = ACTIONS(2800), + [anon_sym_DASH] = ACTIONS(4913), + [anon_sym_LBRACE] = ACTIONS(2800), + [anon_sym_DOT_DOT] = ACTIONS(4913), + [anon_sym_DOT_DOT2] = ACTIONS(4727), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4913), + [anon_sym_DOT_DOT_LT] = ACTIONS(4913), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4729), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4729), + [aux_sym__val_number_decimal_token1] = ACTIONS(4913), + [aux_sym__val_number_decimal_token2] = ACTIONS(2800), + [aux_sym__val_number_decimal_token3] = ACTIONS(2800), + [aux_sym__val_number_decimal_token4] = ACTIONS(2800), + [aux_sym__val_number_token1] = ACTIONS(2800), + [aux_sym__val_number_token2] = ACTIONS(2800), + [aux_sym__val_number_token3] = ACTIONS(2800), + [anon_sym_0b] = ACTIONS(4913), + [anon_sym_0o] = ACTIONS(4913), + [anon_sym_0x] = ACTIONS(4913), + [sym_val_date] = ACTIONS(2800), + [anon_sym_DQUOTE] = ACTIONS(2800), + [sym__str_single_quotes] = ACTIONS(2800), + [sym__str_back_ticks] = ACTIONS(2800), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2800), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2800), + [anon_sym_err_GT] = ACTIONS(4913), + [anon_sym_out_GT] = ACTIONS(4913), + [anon_sym_e_GT] = ACTIONS(4913), + [anon_sym_o_GT] = ACTIONS(4913), + [anon_sym_err_PLUSout_GT] = ACTIONS(4913), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4913), + [anon_sym_o_PLUSe_GT] = ACTIONS(4913), + [anon_sym_e_PLUSo_GT] = ACTIONS(4913), + [anon_sym_err_GT_GT] = ACTIONS(2800), + [anon_sym_out_GT_GT] = ACTIONS(2800), + [anon_sym_e_GT_GT] = ACTIONS(2800), + [anon_sym_o_GT_GT] = ACTIONS(2800), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2800), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2800), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2800), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2800), + [aux_sym_unquoted_token1] = ACTIONS(4913), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2800), }, [1456] = { [sym_comment] = STATE(1456), + [aux_sym_cmd_identifier_token41] = ACTIONS(1528), + [sym__newline] = ACTIONS(1528), + [anon_sym_SEMI] = ACTIONS(1530), + [anon_sym_PIPE] = ACTIONS(1530), + [anon_sym_err_GT_PIPE] = ACTIONS(1530), + [anon_sym_out_GT_PIPE] = ACTIONS(1530), + [anon_sym_e_GT_PIPE] = ACTIONS(1530), + [anon_sym_o_GT_PIPE] = ACTIONS(1530), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1530), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1530), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1530), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1530), + [anon_sym_RBRACE] = ACTIONS(1530), + [anon_sym_EQ_GT] = ACTIONS(1530), + [aux_sym_expr_binary_token1] = ACTIONS(1530), + [aux_sym_expr_binary_token2] = ACTIONS(1530), + [aux_sym_expr_binary_token3] = ACTIONS(1530), + [aux_sym_expr_binary_token4] = ACTIONS(1530), + [aux_sym_expr_binary_token5] = ACTIONS(1530), + [aux_sym_expr_binary_token6] = ACTIONS(1530), + [aux_sym_expr_binary_token7] = ACTIONS(1530), + [aux_sym_expr_binary_token8] = ACTIONS(1530), + [aux_sym_expr_binary_token9] = ACTIONS(1530), + [aux_sym_expr_binary_token10] = ACTIONS(1530), + [aux_sym_expr_binary_token11] = ACTIONS(1530), + [aux_sym_expr_binary_token12] = ACTIONS(1530), + [aux_sym_expr_binary_token13] = ACTIONS(1530), + [aux_sym_expr_binary_token14] = ACTIONS(1530), + [aux_sym_expr_binary_token15] = ACTIONS(1530), + [aux_sym_expr_binary_token16] = ACTIONS(1530), + [aux_sym_expr_binary_token17] = ACTIONS(1530), + [aux_sym_expr_binary_token18] = ACTIONS(1530), + [aux_sym_expr_binary_token19] = ACTIONS(1530), + [aux_sym_expr_binary_token20] = ACTIONS(1530), + [aux_sym_expr_binary_token21] = ACTIONS(1530), + [aux_sym_expr_binary_token22] = ACTIONS(1530), + [aux_sym_expr_binary_token23] = ACTIONS(1530), + [aux_sym_expr_binary_token24] = ACTIONS(1530), + [aux_sym_expr_binary_token25] = ACTIONS(1530), + [aux_sym_expr_binary_token26] = ACTIONS(1530), + [aux_sym_expr_binary_token27] = ACTIONS(1530), + [aux_sym_expr_binary_token28] = ACTIONS(1530), + [anon_sym_DOT_DOT2] = ACTIONS(1528), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1530), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1530), + [sym_filesize_unit] = ACTIONS(1530), + [sym_duration_unit] = ACTIONS(1530), + [aux_sym_record_entry_token1] = ACTIONS(1530), + [anon_sym_err_GT] = ACTIONS(1528), + [anon_sym_out_GT] = ACTIONS(1528), + [anon_sym_e_GT] = ACTIONS(1528), + [anon_sym_o_GT] = ACTIONS(1528), + [anon_sym_err_PLUSout_GT] = ACTIONS(1528), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), + [anon_sym_o_PLUSe_GT] = ACTIONS(1528), + [anon_sym_e_PLUSo_GT] = ACTIONS(1528), + [anon_sym_err_GT_GT] = ACTIONS(1530), + [anon_sym_out_GT_GT] = ACTIONS(1530), + [anon_sym_e_GT_GT] = ACTIONS(1530), + [anon_sym_o_GT_GT] = ACTIONS(1530), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1530), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1530), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1530), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1530), + [anon_sym_POUND] = ACTIONS(249), + }, + [1457] = { + [sym_comment] = STATE(1457), [anon_sym_true] = ACTIONS(1796), [anon_sym_false] = ACTIONS(1796), [anon_sym_null] = ACTIONS(1796), @@ -209437,280 +212601,563 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1796), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1796), [aux_sym_unquoted_token1] = ACTIONS(1788), - [aux_sym_unquoted_token2] = ACTIONS(1798), - [anon_sym_POUND] = ACTIONS(247), - }, - [1457] = { - [sym_comment] = STATE(1457), - [anon_sym_true] = ACTIONS(1723), - [anon_sym_false] = ACTIONS(1723), - [anon_sym_null] = ACTIONS(1723), - [aux_sym_cmd_identifier_token38] = ACTIONS(1723), - [aux_sym_cmd_identifier_token39] = ACTIONS(1723), - [aux_sym_cmd_identifier_token40] = ACTIONS(1723), - [sym__newline] = ACTIONS(1723), - [anon_sym_SEMI] = ACTIONS(1723), - [anon_sym_PIPE] = ACTIONS(1723), - [anon_sym_err_GT_PIPE] = ACTIONS(1723), - [anon_sym_out_GT_PIPE] = ACTIONS(1723), - [anon_sym_e_GT_PIPE] = ACTIONS(1723), - [anon_sym_o_GT_PIPE] = ACTIONS(1723), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1723), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1723), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1723), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1723), - [anon_sym_LBRACK] = ACTIONS(1723), - [anon_sym_LPAREN] = ACTIONS(1721), - [anon_sym_RPAREN] = ACTIONS(1723), - [anon_sym_DOLLAR] = ACTIONS(1721), - [anon_sym_DASH_DASH] = ACTIONS(1723), - [anon_sym_DASH] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1723), - [anon_sym_RBRACE] = ACTIONS(1723), - [anon_sym_DOT_DOT] = ACTIONS(1721), - [anon_sym_LPAREN2] = ACTIONS(1723), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1723), - [anon_sym_DOT_DOT_LT] = ACTIONS(1723), - [aux_sym__val_number_decimal_token1] = ACTIONS(1721), - [aux_sym__val_number_decimal_token2] = ACTIONS(1723), - [aux_sym__val_number_decimal_token3] = ACTIONS(1723), - [aux_sym__val_number_decimal_token4] = ACTIONS(1723), - [aux_sym__val_number_token1] = ACTIONS(1723), - [aux_sym__val_number_token2] = ACTIONS(1723), - [aux_sym__val_number_token3] = ACTIONS(1723), - [anon_sym_0b] = ACTIONS(1721), - [anon_sym_0o] = ACTIONS(1721), - [anon_sym_0x] = ACTIONS(1721), - [sym_val_date] = ACTIONS(1723), - [anon_sym_DQUOTE] = ACTIONS(1723), - [sym__str_single_quotes] = ACTIONS(1723), - [sym__str_back_ticks] = ACTIONS(1723), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1723), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1723), - [anon_sym_err_GT] = ACTIONS(1721), - [anon_sym_out_GT] = ACTIONS(1721), - [anon_sym_e_GT] = ACTIONS(1721), - [anon_sym_o_GT] = ACTIONS(1721), - [anon_sym_err_PLUSout_GT] = ACTIONS(1721), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1721), - [anon_sym_o_PLUSe_GT] = ACTIONS(1721), - [anon_sym_e_PLUSo_GT] = ACTIONS(1721), - [anon_sym_err_GT_GT] = ACTIONS(1723), - [anon_sym_out_GT_GT] = ACTIONS(1723), - [anon_sym_e_GT_GT] = ACTIONS(1723), - [anon_sym_o_GT_GT] = ACTIONS(1723), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1723), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1723), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1723), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1723), - [aux_sym_unquoted_token1] = ACTIONS(1721), - [aux_sym_unquoted_token2] = ACTIONS(1721), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_unquoted_token2] = ACTIONS(1526), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1796), }, [1458] = { [sym_comment] = STATE(1458), - [ts_builtin_sym_end] = ACTIONS(1520), - [sym__newline] = ACTIONS(1520), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_err_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_GT_PIPE] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1520), - [anon_sym_LPAREN2] = ACTIONS(1520), - [aux_sym_expr_binary_token1] = ACTIONS(1520), - [aux_sym_expr_binary_token2] = ACTIONS(1520), - [aux_sym_expr_binary_token3] = ACTIONS(1520), - [aux_sym_expr_binary_token4] = ACTIONS(1520), - [aux_sym_expr_binary_token5] = ACTIONS(1520), - [aux_sym_expr_binary_token6] = ACTIONS(1520), - [aux_sym_expr_binary_token7] = ACTIONS(1520), - [aux_sym_expr_binary_token8] = ACTIONS(1520), - [aux_sym_expr_binary_token9] = ACTIONS(1520), - [aux_sym_expr_binary_token10] = ACTIONS(1520), - [aux_sym_expr_binary_token11] = ACTIONS(1520), - [aux_sym_expr_binary_token12] = ACTIONS(1520), - [aux_sym_expr_binary_token13] = ACTIONS(1520), - [aux_sym_expr_binary_token14] = ACTIONS(1520), - [aux_sym_expr_binary_token15] = ACTIONS(1520), - [aux_sym_expr_binary_token16] = ACTIONS(1520), - [aux_sym_expr_binary_token17] = ACTIONS(1520), - [aux_sym_expr_binary_token18] = ACTIONS(1520), - [aux_sym_expr_binary_token19] = ACTIONS(1520), - [aux_sym_expr_binary_token20] = ACTIONS(1520), - [aux_sym_expr_binary_token21] = ACTIONS(1520), - [aux_sym_expr_binary_token22] = ACTIONS(1520), - [aux_sym_expr_binary_token23] = ACTIONS(1520), - [aux_sym_expr_binary_token24] = ACTIONS(1520), - [aux_sym_expr_binary_token25] = ACTIONS(1520), - [aux_sym_expr_binary_token26] = ACTIONS(1520), - [aux_sym_expr_binary_token27] = ACTIONS(1520), - [aux_sym_expr_binary_token28] = ACTIONS(1520), - [anon_sym_DOT_DOT2] = ACTIONS(1518), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1520), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1520), - [sym_filesize_unit] = ACTIONS(1520), - [sym_duration_unit] = ACTIONS(1520), - [anon_sym_err_GT] = ACTIONS(1518), - [anon_sym_out_GT] = ACTIONS(1518), - [anon_sym_e_GT] = ACTIONS(1518), - [anon_sym_o_GT] = ACTIONS(1518), - [anon_sym_err_PLUSout_GT] = ACTIONS(1518), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1518), - [anon_sym_o_PLUSe_GT] = ACTIONS(1518), - [anon_sym_e_PLUSo_GT] = ACTIONS(1518), - [anon_sym_err_GT_GT] = ACTIONS(1520), - [anon_sym_out_GT_GT] = ACTIONS(1520), - [anon_sym_e_GT_GT] = ACTIONS(1520), - [anon_sym_o_GT_GT] = ACTIONS(1520), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1520), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1520), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1520), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1520), - [aux_sym_unquoted_token2] = ACTIONS(1518), - [anon_sym_POUND] = ACTIONS(247), + [sym__newline] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_err_GT_PIPE] = ACTIONS(1713), + [anon_sym_out_GT_PIPE] = ACTIONS(1713), + [anon_sym_e_GT_PIPE] = ACTIONS(1713), + [anon_sym_o_GT_PIPE] = ACTIONS(1713), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), + [anon_sym_RPAREN] = ACTIONS(1713), + [anon_sym_RBRACE] = ACTIONS(1713), + [anon_sym_LPAREN2] = ACTIONS(1713), + [aux_sym_expr_binary_token1] = ACTIONS(1713), + [aux_sym_expr_binary_token2] = ACTIONS(1713), + [aux_sym_expr_binary_token3] = ACTIONS(1713), + [aux_sym_expr_binary_token4] = ACTIONS(1713), + [aux_sym_expr_binary_token5] = ACTIONS(1713), + [aux_sym_expr_binary_token6] = ACTIONS(1713), + [aux_sym_expr_binary_token7] = ACTIONS(1713), + [aux_sym_expr_binary_token8] = ACTIONS(1713), + [aux_sym_expr_binary_token9] = ACTIONS(1713), + [aux_sym_expr_binary_token10] = ACTIONS(1713), + [aux_sym_expr_binary_token11] = ACTIONS(1713), + [aux_sym_expr_binary_token12] = ACTIONS(1713), + [aux_sym_expr_binary_token13] = ACTIONS(1713), + [aux_sym_expr_binary_token14] = ACTIONS(1713), + [aux_sym_expr_binary_token15] = ACTIONS(1713), + [aux_sym_expr_binary_token16] = ACTIONS(1713), + [aux_sym_expr_binary_token17] = ACTIONS(1713), + [aux_sym_expr_binary_token18] = ACTIONS(1713), + [aux_sym_expr_binary_token19] = ACTIONS(1713), + [aux_sym_expr_binary_token20] = ACTIONS(1713), + [aux_sym_expr_binary_token21] = ACTIONS(1713), + [aux_sym_expr_binary_token22] = ACTIONS(1713), + [aux_sym_expr_binary_token23] = ACTIONS(1713), + [aux_sym_expr_binary_token24] = ACTIONS(1713), + [aux_sym_expr_binary_token25] = ACTIONS(1713), + [aux_sym_expr_binary_token26] = ACTIONS(1713), + [aux_sym_expr_binary_token27] = ACTIONS(1713), + [aux_sym_expr_binary_token28] = ACTIONS(1713), + [anon_sym_DOT_DOT2] = ACTIONS(1711), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), + [sym_filesize_unit] = ACTIONS(1713), + [sym_duration_unit] = ACTIONS(1713), + [anon_sym_err_GT] = ACTIONS(1711), + [anon_sym_out_GT] = ACTIONS(1711), + [anon_sym_e_GT] = ACTIONS(1711), + [anon_sym_o_GT] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT] = ACTIONS(1711), + [anon_sym_err_GT_GT] = ACTIONS(1713), + [anon_sym_out_GT_GT] = ACTIONS(1713), + [anon_sym_e_GT_GT] = ACTIONS(1713), + [anon_sym_o_GT_GT] = ACTIONS(1713), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), + [aux_sym_unquoted_token2] = ACTIONS(1711), + [anon_sym_POUND] = ACTIONS(249), }, [1459] = { [sym_comment] = STATE(1459), - [sym__newline] = ACTIONS(1540), - [anon_sym_SEMI] = ACTIONS(1542), - [anon_sym_PIPE] = ACTIONS(1542), - [anon_sym_err_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_GT_PIPE] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1542), - [anon_sym_RPAREN] = ACTIONS(1542), - [anon_sym_LPAREN2] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1542), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1542), - [anon_sym_DOT_DOT2] = ACTIONS(1540), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1542), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1542), - [sym_filesize_unit] = ACTIONS(1542), - [sym_duration_unit] = ACTIONS(1542), - [anon_sym_err_GT] = ACTIONS(1540), - [anon_sym_out_GT] = ACTIONS(1540), - [anon_sym_e_GT] = ACTIONS(1540), - [anon_sym_o_GT] = ACTIONS(1540), - [anon_sym_err_PLUSout_GT] = ACTIONS(1540), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1540), - [anon_sym_o_PLUSe_GT] = ACTIONS(1540), - [anon_sym_e_PLUSo_GT] = ACTIONS(1540), - [anon_sym_err_GT_GT] = ACTIONS(1542), - [anon_sym_out_GT_GT] = ACTIONS(1542), - [anon_sym_e_GT_GT] = ACTIONS(1542), - [anon_sym_o_GT_GT] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1542), - [aux_sym_unquoted_token2] = ACTIONS(1540), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cmd_identifier_token41] = ACTIONS(1536), + [sym__newline] = ACTIONS(1538), + [anon_sym_SEMI] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_err_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_GT_PIPE] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), + [anon_sym_RPAREN] = ACTIONS(1538), + [anon_sym_RBRACE] = ACTIONS(1538), + [aux_sym_expr_binary_token1] = ACTIONS(1538), + [aux_sym_expr_binary_token2] = ACTIONS(1538), + [aux_sym_expr_binary_token3] = ACTIONS(1538), + [aux_sym_expr_binary_token4] = ACTIONS(1538), + [aux_sym_expr_binary_token5] = ACTIONS(1538), + [aux_sym_expr_binary_token6] = ACTIONS(1538), + [aux_sym_expr_binary_token7] = ACTIONS(1538), + [aux_sym_expr_binary_token8] = ACTIONS(1538), + [aux_sym_expr_binary_token9] = ACTIONS(1538), + [aux_sym_expr_binary_token10] = ACTIONS(1538), + [aux_sym_expr_binary_token11] = ACTIONS(1538), + [aux_sym_expr_binary_token12] = ACTIONS(1538), + [aux_sym_expr_binary_token13] = ACTIONS(1538), + [aux_sym_expr_binary_token14] = ACTIONS(1538), + [aux_sym_expr_binary_token15] = ACTIONS(1538), + [aux_sym_expr_binary_token16] = ACTIONS(1538), + [aux_sym_expr_binary_token17] = ACTIONS(1538), + [aux_sym_expr_binary_token18] = ACTIONS(1538), + [aux_sym_expr_binary_token19] = ACTIONS(1538), + [aux_sym_expr_binary_token20] = ACTIONS(1538), + [aux_sym_expr_binary_token21] = ACTIONS(1538), + [aux_sym_expr_binary_token22] = ACTIONS(1538), + [aux_sym_expr_binary_token23] = ACTIONS(1538), + [aux_sym_expr_binary_token24] = ACTIONS(1538), + [aux_sym_expr_binary_token25] = ACTIONS(1538), + [aux_sym_expr_binary_token26] = ACTIONS(1538), + [aux_sym_expr_binary_token27] = ACTIONS(1538), + [aux_sym_expr_binary_token28] = ACTIONS(1538), + [anon_sym_DOT_DOT2] = ACTIONS(1536), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), + [aux_sym__immediate_decimal_token2] = ACTIONS(4713), + [sym_filesize_unit] = ACTIONS(1538), + [sym_duration_unit] = ACTIONS(1538), + [anon_sym_err_GT] = ACTIONS(1536), + [anon_sym_out_GT] = ACTIONS(1536), + [anon_sym_e_GT] = ACTIONS(1536), + [anon_sym_o_GT] = ACTIONS(1536), + [anon_sym_err_PLUSout_GT] = ACTIONS(1536), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), + [anon_sym_o_PLUSe_GT] = ACTIONS(1536), + [anon_sym_e_PLUSo_GT] = ACTIONS(1536), + [anon_sym_err_GT_GT] = ACTIONS(1538), + [anon_sym_out_GT_GT] = ACTIONS(1538), + [anon_sym_e_GT_GT] = ACTIONS(1538), + [anon_sym_o_GT_GT] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), + [anon_sym_POUND] = ACTIONS(249), }, [1460] = { [sym_comment] = STATE(1460), - [anon_sym_true] = ACTIONS(4808), - [anon_sym_false] = ACTIONS(4808), - [anon_sym_null] = ACTIONS(4808), - [aux_sym_cmd_identifier_token38] = ACTIONS(4808), - [aux_sym_cmd_identifier_token39] = ACTIONS(4810), - [aux_sym_cmd_identifier_token40] = ACTIONS(4808), - [sym_long_flag_identifier] = ACTIONS(4812), - [sym__newline] = ACTIONS(4810), - [anon_sym_SEMI] = ACTIONS(4810), - [anon_sym_PIPE] = ACTIONS(4810), - [anon_sym_err_GT_PIPE] = ACTIONS(4810), - [anon_sym_out_GT_PIPE] = ACTIONS(4810), - [anon_sym_e_GT_PIPE] = ACTIONS(4810), - [anon_sym_o_GT_PIPE] = ACTIONS(4810), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4810), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4810), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4810), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4810), - [anon_sym_LBRACK] = ACTIONS(4810), - [anon_sym_LPAREN] = ACTIONS(4810), - [anon_sym_RPAREN] = ACTIONS(4810), - [anon_sym_DOLLAR] = ACTIONS(4808), - [anon_sym_DASH_DASH] = ACTIONS(4810), - [anon_sym_DASH] = ACTIONS(4808), - [anon_sym_LBRACE] = ACTIONS(4810), - [anon_sym_RBRACE] = ACTIONS(4810), - [anon_sym_DOT_DOT] = ACTIONS(4808), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4810), - [anon_sym_DOT_DOT_LT] = ACTIONS(4810), - [aux_sym__val_number_decimal_token1] = ACTIONS(4808), - [aux_sym__val_number_decimal_token2] = ACTIONS(4810), - [aux_sym__val_number_decimal_token3] = ACTIONS(4810), - [aux_sym__val_number_decimal_token4] = ACTIONS(4810), - [aux_sym__val_number_token1] = ACTIONS(4808), - [aux_sym__val_number_token2] = ACTIONS(4808), - [aux_sym__val_number_token3] = ACTIONS(4808), - [anon_sym_0b] = ACTIONS(4808), - [anon_sym_0o] = ACTIONS(4808), - [anon_sym_0x] = ACTIONS(4808), - [sym_val_date] = ACTIONS(4808), - [anon_sym_DQUOTE] = ACTIONS(4810), - [sym__str_single_quotes] = ACTIONS(4810), - [sym__str_back_ticks] = ACTIONS(4810), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4810), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4810), - [anon_sym_err_GT] = ACTIONS(4808), - [anon_sym_out_GT] = ACTIONS(4808), - [anon_sym_e_GT] = ACTIONS(4808), - [anon_sym_o_GT] = ACTIONS(4808), - [anon_sym_err_PLUSout_GT] = ACTIONS(4808), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4808), - [anon_sym_o_PLUSe_GT] = ACTIONS(4808), - [anon_sym_e_PLUSo_GT] = ACTIONS(4808), - [anon_sym_err_GT_GT] = ACTIONS(4810), - [anon_sym_out_GT_GT] = ACTIONS(4810), - [anon_sym_e_GT_GT] = ACTIONS(4810), - [anon_sym_o_GT_GT] = ACTIONS(4810), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4810), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4810), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4810), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4810), - [anon_sym_EQ2] = ACTIONS(4814), - [aux_sym_unquoted_token1] = ACTIONS(4808), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cmd_identifier_token41] = ACTIONS(1596), + [sym__newline] = ACTIONS(1596), + [anon_sym_SEMI] = ACTIONS(1598), + [anon_sym_PIPE] = ACTIONS(1598), + [anon_sym_err_GT_PIPE] = ACTIONS(1598), + [anon_sym_out_GT_PIPE] = ACTIONS(1598), + [anon_sym_e_GT_PIPE] = ACTIONS(1598), + [anon_sym_o_GT_PIPE] = ACTIONS(1598), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1598), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1598), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1598), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1598), + [anon_sym_EQ_GT] = ACTIONS(1598), + [aux_sym_expr_binary_token1] = ACTIONS(1598), + [aux_sym_expr_binary_token2] = ACTIONS(1598), + [aux_sym_expr_binary_token3] = ACTIONS(1598), + [aux_sym_expr_binary_token4] = ACTIONS(1598), + [aux_sym_expr_binary_token5] = ACTIONS(1598), + [aux_sym_expr_binary_token6] = ACTIONS(1598), + [aux_sym_expr_binary_token7] = ACTIONS(1598), + [aux_sym_expr_binary_token8] = ACTIONS(1598), + [aux_sym_expr_binary_token9] = ACTIONS(1598), + [aux_sym_expr_binary_token10] = ACTIONS(1598), + [aux_sym_expr_binary_token11] = ACTIONS(1598), + [aux_sym_expr_binary_token12] = ACTIONS(1598), + [aux_sym_expr_binary_token13] = ACTIONS(1598), + [aux_sym_expr_binary_token14] = ACTIONS(1598), + [aux_sym_expr_binary_token15] = ACTIONS(1598), + [aux_sym_expr_binary_token16] = ACTIONS(1598), + [aux_sym_expr_binary_token17] = ACTIONS(1598), + [aux_sym_expr_binary_token18] = ACTIONS(1598), + [aux_sym_expr_binary_token19] = ACTIONS(1598), + [aux_sym_expr_binary_token20] = ACTIONS(1598), + [aux_sym_expr_binary_token21] = ACTIONS(1598), + [aux_sym_expr_binary_token22] = ACTIONS(1598), + [aux_sym_expr_binary_token23] = ACTIONS(1598), + [aux_sym_expr_binary_token24] = ACTIONS(1598), + [aux_sym_expr_binary_token25] = ACTIONS(1598), + [aux_sym_expr_binary_token26] = ACTIONS(1598), + [aux_sym_expr_binary_token27] = ACTIONS(1598), + [aux_sym_expr_binary_token28] = ACTIONS(1598), + [anon_sym_DOT_DOT2] = ACTIONS(1596), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1598), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1598), + [sym_filesize_unit] = ACTIONS(1598), + [sym_duration_unit] = ACTIONS(1598), + [aux_sym_record_entry_token1] = ACTIONS(1598), + [anon_sym_err_GT] = ACTIONS(1596), + [anon_sym_out_GT] = ACTIONS(1596), + [anon_sym_e_GT] = ACTIONS(1596), + [anon_sym_o_GT] = ACTIONS(1596), + [anon_sym_err_PLUSout_GT] = ACTIONS(1596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1596), + [anon_sym_o_PLUSe_GT] = ACTIONS(1596), + [anon_sym_e_PLUSo_GT] = ACTIONS(1596), + [anon_sym_err_GT_GT] = ACTIONS(1598), + [anon_sym_out_GT_GT] = ACTIONS(1598), + [anon_sym_e_GT_GT] = ACTIONS(1598), + [anon_sym_o_GT_GT] = ACTIONS(1598), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1598), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1598), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1598), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1598), + [anon_sym_POUND] = ACTIONS(249), }, [1461] = { [sym_comment] = STATE(1461), - [sym__newline] = ACTIONS(1038), + [anon_sym_true] = ACTIONS(2279), + [anon_sym_false] = ACTIONS(2279), + [anon_sym_null] = ACTIONS(2279), + [aux_sym_cmd_identifier_token38] = ACTIONS(2279), + [aux_sym_cmd_identifier_token39] = ACTIONS(2279), + [aux_sym_cmd_identifier_token40] = ACTIONS(2279), + [sym__newline] = ACTIONS(2279), + [anon_sym_SEMI] = ACTIONS(2279), + [anon_sym_PIPE] = ACTIONS(2279), + [anon_sym_err_GT_PIPE] = ACTIONS(2279), + [anon_sym_out_GT_PIPE] = ACTIONS(2279), + [anon_sym_e_GT_PIPE] = ACTIONS(2279), + [anon_sym_o_GT_PIPE] = ACTIONS(2279), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2279), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2279), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2279), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2279), + [anon_sym_LBRACK] = ACTIONS(2279), + [anon_sym_LPAREN] = ACTIONS(2277), + [anon_sym_RPAREN] = ACTIONS(2279), + [anon_sym_DOLLAR] = ACTIONS(2277), + [anon_sym_DASH_DASH] = ACTIONS(2279), + [anon_sym_DASH] = ACTIONS(2277), + [anon_sym_LBRACE] = ACTIONS(2279), + [anon_sym_RBRACE] = ACTIONS(2279), + [anon_sym_DOT_DOT] = ACTIONS(2277), + [anon_sym_LPAREN2] = ACTIONS(1844), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2279), + [anon_sym_DOT_DOT_LT] = ACTIONS(2279), + [aux_sym__val_number_decimal_token1] = ACTIONS(2277), + [aux_sym__val_number_decimal_token2] = ACTIONS(2279), + [aux_sym__val_number_decimal_token3] = ACTIONS(2279), + [aux_sym__val_number_decimal_token4] = ACTIONS(2279), + [aux_sym__val_number_token1] = ACTIONS(2279), + [aux_sym__val_number_token2] = ACTIONS(2279), + [aux_sym__val_number_token3] = ACTIONS(2279), + [anon_sym_0b] = ACTIONS(2277), + [anon_sym_0o] = ACTIONS(2277), + [anon_sym_0x] = ACTIONS(2277), + [sym_val_date] = ACTIONS(2279), + [anon_sym_DQUOTE] = ACTIONS(2279), + [sym__str_single_quotes] = ACTIONS(2279), + [sym__str_back_ticks] = ACTIONS(2279), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2279), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2279), + [anon_sym_err_GT] = ACTIONS(2277), + [anon_sym_out_GT] = ACTIONS(2277), + [anon_sym_e_GT] = ACTIONS(2277), + [anon_sym_o_GT] = ACTIONS(2277), + [anon_sym_err_PLUSout_GT] = ACTIONS(2277), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2277), + [anon_sym_o_PLUSe_GT] = ACTIONS(2277), + [anon_sym_e_PLUSo_GT] = ACTIONS(2277), + [anon_sym_err_GT_GT] = ACTIONS(2279), + [anon_sym_out_GT_GT] = ACTIONS(2279), + [anon_sym_e_GT_GT] = ACTIONS(2279), + [anon_sym_o_GT_GT] = ACTIONS(2279), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2279), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2279), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2279), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2279), + [aux_sym_unquoted_token1] = ACTIONS(2277), + [aux_sym_unquoted_token2] = ACTIONS(1852), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2279), + }, + [1462] = { + [sym_comment] = STATE(1462), + [anon_sym_true] = ACTIONS(1850), + [anon_sym_false] = ACTIONS(1850), + [anon_sym_null] = ACTIONS(1850), + [aux_sym_cmd_identifier_token38] = ACTIONS(1850), + [aux_sym_cmd_identifier_token39] = ACTIONS(1850), + [aux_sym_cmd_identifier_token40] = ACTIONS(1850), + [sym__newline] = ACTIONS(1850), + [anon_sym_SEMI] = ACTIONS(1850), + [anon_sym_PIPE] = ACTIONS(1850), + [anon_sym_err_GT_PIPE] = ACTIONS(1850), + [anon_sym_out_GT_PIPE] = ACTIONS(1850), + [anon_sym_e_GT_PIPE] = ACTIONS(1850), + [anon_sym_o_GT_PIPE] = ACTIONS(1850), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1850), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1850), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1850), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1850), + [anon_sym_LBRACK] = ACTIONS(1850), + [anon_sym_LPAREN] = ACTIONS(1842), + [anon_sym_RPAREN] = ACTIONS(1850), + [anon_sym_DOLLAR] = ACTIONS(1842), + [anon_sym_DASH_DASH] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1850), + [anon_sym_RBRACE] = ACTIONS(1850), + [anon_sym_DOT_DOT] = ACTIONS(1842), + [anon_sym_LPAREN2] = ACTIONS(1844), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1850), + [anon_sym_DOT_DOT_LT] = ACTIONS(1850), + [aux_sym__val_number_decimal_token1] = ACTIONS(1842), + [aux_sym__val_number_decimal_token2] = ACTIONS(1850), + [aux_sym__val_number_decimal_token3] = ACTIONS(1850), + [aux_sym__val_number_decimal_token4] = ACTIONS(1850), + [aux_sym__val_number_token1] = ACTIONS(1850), + [aux_sym__val_number_token2] = ACTIONS(1850), + [aux_sym__val_number_token3] = ACTIONS(1850), + [anon_sym_0b] = ACTIONS(1842), + [anon_sym_0o] = ACTIONS(1842), + [anon_sym_0x] = ACTIONS(1842), + [sym_val_date] = ACTIONS(1850), + [anon_sym_DQUOTE] = ACTIONS(1850), + [sym__str_single_quotes] = ACTIONS(1850), + [sym__str_back_ticks] = ACTIONS(1850), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1850), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1850), + [anon_sym_err_GT] = ACTIONS(1842), + [anon_sym_out_GT] = ACTIONS(1842), + [anon_sym_e_GT] = ACTIONS(1842), + [anon_sym_o_GT] = ACTIONS(1842), + [anon_sym_err_PLUSout_GT] = ACTIONS(1842), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1842), + [anon_sym_o_PLUSe_GT] = ACTIONS(1842), + [anon_sym_e_PLUSo_GT] = ACTIONS(1842), + [anon_sym_err_GT_GT] = ACTIONS(1850), + [anon_sym_out_GT_GT] = ACTIONS(1850), + [anon_sym_e_GT_GT] = ACTIONS(1850), + [anon_sym_o_GT_GT] = ACTIONS(1850), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1850), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1850), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1850), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1850), + [aux_sym_unquoted_token1] = ACTIONS(1842), + [aux_sym_unquoted_token2] = ACTIONS(1852), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1850), + }, + [1463] = { + [sym_cmd_identifier] = STATE(4700), + [sym_expr_parenthesized] = STATE(4700), + [sym_val_variable] = STATE(4700), + [sym__val_number_decimal] = STATE(7002), + [sym_val_string] = STATE(4700), + [sym__raw_str] = STATE(4660), + [sym__str_double_quotes] = STATE(4660), + [sym_val_interpolated] = STATE(4700), + [sym__inter_single_quotes] = STATE(5011), + [sym__inter_double_quotes] = STATE(5012), + [sym_comment] = STATE(1463), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [aux_sym_cmd_identifier_token2] = ACTIONS(21), + [aux_sym_cmd_identifier_token3] = ACTIONS(21), + [aux_sym_cmd_identifier_token4] = ACTIONS(21), + [aux_sym_cmd_identifier_token5] = ACTIONS(21), + [aux_sym_cmd_identifier_token6] = ACTIONS(21), + [aux_sym_cmd_identifier_token7] = ACTIONS(21), + [aux_sym_cmd_identifier_token8] = ACTIONS(21), + [aux_sym_cmd_identifier_token9] = ACTIONS(19), + [aux_sym_cmd_identifier_token10] = ACTIONS(21), + [aux_sym_cmd_identifier_token11] = ACTIONS(21), + [aux_sym_cmd_identifier_token12] = ACTIONS(21), + [aux_sym_cmd_identifier_token13] = ACTIONS(19), + [aux_sym_cmd_identifier_token14] = ACTIONS(21), + [aux_sym_cmd_identifier_token15] = ACTIONS(19), + [aux_sym_cmd_identifier_token16] = ACTIONS(21), + [aux_sym_cmd_identifier_token17] = ACTIONS(21), + [aux_sym_cmd_identifier_token18] = ACTIONS(21), + [aux_sym_cmd_identifier_token19] = ACTIONS(21), + [aux_sym_cmd_identifier_token20] = ACTIONS(21), + [aux_sym_cmd_identifier_token21] = ACTIONS(21), + [aux_sym_cmd_identifier_token22] = ACTIONS(21), + [aux_sym_cmd_identifier_token23] = ACTIONS(21), + [aux_sym_cmd_identifier_token24] = ACTIONS(21), + [aux_sym_cmd_identifier_token25] = ACTIONS(21), + [aux_sym_cmd_identifier_token26] = ACTIONS(21), + [aux_sym_cmd_identifier_token27] = ACTIONS(21), + [aux_sym_cmd_identifier_token28] = ACTIONS(21), + [aux_sym_cmd_identifier_token29] = ACTIONS(21), + [aux_sym_cmd_identifier_token30] = ACTIONS(21), + [aux_sym_cmd_identifier_token31] = ACTIONS(21), + [aux_sym_cmd_identifier_token32] = ACTIONS(21), + [aux_sym_cmd_identifier_token33] = ACTIONS(21), + [aux_sym_cmd_identifier_token34] = ACTIONS(21), + [aux_sym_cmd_identifier_token35] = ACTIONS(21), + [aux_sym_cmd_identifier_token36] = ACTIONS(19), + [anon_sym_true] = ACTIONS(4915), + [anon_sym_false] = ACTIONS(4915), + [anon_sym_null] = ACTIONS(4915), + [aux_sym_cmd_identifier_token38] = ACTIONS(4917), + [aux_sym_cmd_identifier_token39] = ACTIONS(4915), + [aux_sym_cmd_identifier_token40] = ACTIONS(4915), + [anon_sym_LPAREN] = ACTIONS(4919), + [anon_sym_DOLLAR] = ACTIONS(4237), + [aux_sym__val_number_decimal_token1] = ACTIONS(1343), + [aux_sym__val_number_decimal_token2] = ACTIONS(1343), + [aux_sym__val_number_decimal_token3] = ACTIONS(1345), + [aux_sym__val_number_decimal_token4] = ACTIONS(1347), + [anon_sym_DQUOTE] = ACTIONS(4255), + [sym__str_single_quotes] = ACTIONS(4257), + [sym__str_back_ticks] = ACTIONS(4257), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4259), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4261), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2175), + }, + [1464] = { + [sym_comment] = STATE(1464), + [anon_sym_true] = ACTIONS(4921), + [anon_sym_false] = ACTIONS(4921), + [anon_sym_null] = ACTIONS(4921), + [aux_sym_cmd_identifier_token38] = ACTIONS(4921), + [aux_sym_cmd_identifier_token39] = ACTIONS(4921), + [aux_sym_cmd_identifier_token40] = ACTIONS(4921), + [sym__newline] = ACTIONS(4921), + [anon_sym_SEMI] = ACTIONS(4921), + [anon_sym_PIPE] = ACTIONS(4921), + [anon_sym_err_GT_PIPE] = ACTIONS(4921), + [anon_sym_out_GT_PIPE] = ACTIONS(4921), + [anon_sym_e_GT_PIPE] = ACTIONS(4921), + [anon_sym_o_GT_PIPE] = ACTIONS(4921), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4921), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4921), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4921), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4921), + [anon_sym_LBRACK] = ACTIONS(4921), + [anon_sym_LPAREN] = ACTIONS(4921), + [anon_sym_RPAREN] = ACTIONS(4921), + [anon_sym_DOLLAR] = ACTIONS(4923), + [anon_sym_DASH_DASH] = ACTIONS(4921), + [anon_sym_DASH] = ACTIONS(4923), + [anon_sym_LBRACE] = ACTIONS(4921), + [anon_sym_DOT_DOT] = ACTIONS(4923), + [anon_sym_DOT_DOT2] = ACTIONS(4727), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4923), + [anon_sym_DOT_DOT_LT] = ACTIONS(4923), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4729), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4729), + [aux_sym__val_number_decimal_token1] = ACTIONS(4923), + [aux_sym__val_number_decimal_token2] = ACTIONS(4921), + [aux_sym__val_number_decimal_token3] = ACTIONS(4921), + [aux_sym__val_number_decimal_token4] = ACTIONS(4921), + [aux_sym__val_number_token1] = ACTIONS(4921), + [aux_sym__val_number_token2] = ACTIONS(4921), + [aux_sym__val_number_token3] = ACTIONS(4921), + [anon_sym_0b] = ACTIONS(4923), + [anon_sym_0o] = ACTIONS(4923), + [anon_sym_0x] = ACTIONS(4923), + [sym_val_date] = ACTIONS(4921), + [anon_sym_DQUOTE] = ACTIONS(4921), + [sym__str_single_quotes] = ACTIONS(4921), + [sym__str_back_ticks] = ACTIONS(4921), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4921), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4921), + [anon_sym_err_GT] = ACTIONS(4923), + [anon_sym_out_GT] = ACTIONS(4923), + [anon_sym_e_GT] = ACTIONS(4923), + [anon_sym_o_GT] = ACTIONS(4923), + [anon_sym_err_PLUSout_GT] = ACTIONS(4923), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4923), + [anon_sym_o_PLUSe_GT] = ACTIONS(4923), + [anon_sym_e_PLUSo_GT] = ACTIONS(4923), + [anon_sym_err_GT_GT] = ACTIONS(4921), + [anon_sym_out_GT_GT] = ACTIONS(4921), + [anon_sym_e_GT_GT] = ACTIONS(4921), + [anon_sym_o_GT_GT] = ACTIONS(4921), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4921), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4921), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4921), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4921), + [aux_sym_unquoted_token1] = ACTIONS(4923), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(4921), + }, + [1465] = { + [sym_comment] = STATE(1465), + [anon_sym_true] = ACTIONS(1064), + [anon_sym_false] = ACTIONS(1064), + [anon_sym_null] = ACTIONS(1064), + [aux_sym_cmd_identifier_token38] = ACTIONS(1064), + [aux_sym_cmd_identifier_token39] = ACTIONS(1064), + [aux_sym_cmd_identifier_token40] = ACTIONS(1064), + [sym__newline] = ACTIONS(1064), + [anon_sym_SEMI] = ACTIONS(1064), + [anon_sym_PIPE] = ACTIONS(1064), + [anon_sym_err_GT_PIPE] = ACTIONS(1064), + [anon_sym_out_GT_PIPE] = ACTIONS(1064), + [anon_sym_e_GT_PIPE] = ACTIONS(1064), + [anon_sym_o_GT_PIPE] = ACTIONS(1064), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1064), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1064), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1064), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1064), + [anon_sym_LBRACK] = ACTIONS(1064), + [anon_sym_LPAREN] = ACTIONS(1064), + [anon_sym_RPAREN] = ACTIONS(1064), + [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DASH_DASH] = ACTIONS(1064), + [anon_sym_DASH] = ACTIONS(1062), + [anon_sym_LBRACE] = ACTIONS(1064), + [anon_sym_RBRACE] = ACTIONS(1064), + [anon_sym_DOT_DOT] = ACTIONS(1062), + [anon_sym_QMARK2] = ACTIONS(1064), + [anon_sym_DOT] = ACTIONS(1062), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1064), + [anon_sym_DOT_DOT_LT] = ACTIONS(1064), + [aux_sym__val_number_decimal_token1] = ACTIONS(1062), + [aux_sym__val_number_decimal_token2] = ACTIONS(1064), + [aux_sym__val_number_decimal_token3] = ACTIONS(1064), + [aux_sym__val_number_decimal_token4] = ACTIONS(1064), + [aux_sym__val_number_token1] = ACTIONS(1064), + [aux_sym__val_number_token2] = ACTIONS(1064), + [aux_sym__val_number_token3] = ACTIONS(1064), + [anon_sym_0b] = ACTIONS(1062), + [anon_sym_0o] = ACTIONS(1062), + [anon_sym_0x] = ACTIONS(1062), + [sym_val_date] = ACTIONS(1064), + [anon_sym_DQUOTE] = ACTIONS(1064), + [sym__str_single_quotes] = ACTIONS(1064), + [sym__str_back_ticks] = ACTIONS(1064), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1064), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1064), + [anon_sym_err_GT] = ACTIONS(1062), + [anon_sym_out_GT] = ACTIONS(1062), + [anon_sym_e_GT] = ACTIONS(1062), + [anon_sym_o_GT] = ACTIONS(1062), + [anon_sym_err_PLUSout_GT] = ACTIONS(1062), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1062), + [anon_sym_o_PLUSe_GT] = ACTIONS(1062), + [anon_sym_e_PLUSo_GT] = ACTIONS(1062), + [anon_sym_err_GT_GT] = ACTIONS(1064), + [anon_sym_out_GT_GT] = ACTIONS(1064), + [anon_sym_e_GT_GT] = ACTIONS(1064), + [anon_sym_o_GT_GT] = ACTIONS(1064), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1064), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1064), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1064), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1064), + [aux_sym_unquoted_token1] = ACTIONS(1062), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1064), + }, + [1466] = { + [sym_comment] = STATE(1466), + [anon_sym_true] = ACTIONS(1040), + [anon_sym_false] = ACTIONS(1040), + [anon_sym_null] = ACTIONS(1040), + [aux_sym_cmd_identifier_token38] = ACTIONS(1040), + [aux_sym_cmd_identifier_token39] = ACTIONS(1040), + [aux_sym_cmd_identifier_token40] = ACTIONS(1040), + [sym__newline] = ACTIONS(1040), [anon_sym_SEMI] = ACTIONS(1040), [anon_sym_PIPE] = ACTIONS(1040), [anon_sym_err_GT_PIPE] = ACTIONS(1040), @@ -209721,42 +213168,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1040), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1040), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1040), + [anon_sym_LBRACK] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_RPAREN] = ACTIONS(1040), + [anon_sym_DOLLAR] = ACTIONS(1038), [anon_sym_DASH_DASH] = ACTIONS(1040), [anon_sym_DASH] = ACTIONS(1038), [anon_sym_LBRACE] = ACTIONS(1040), [anon_sym_RBRACE] = ACTIONS(1040), - [anon_sym_EQ_GT] = ACTIONS(1040), + [anon_sym_DOT_DOT] = ACTIONS(1038), [anon_sym_QMARK2] = ACTIONS(1040), - [aux_sym_expr_binary_token1] = ACTIONS(1040), - [aux_sym_expr_binary_token2] = ACTIONS(1040), - [aux_sym_expr_binary_token3] = ACTIONS(1040), - [aux_sym_expr_binary_token4] = ACTIONS(1040), - [aux_sym_expr_binary_token5] = ACTIONS(1040), - [aux_sym_expr_binary_token6] = ACTIONS(1040), - [aux_sym_expr_binary_token7] = ACTIONS(1040), - [aux_sym_expr_binary_token8] = ACTIONS(1040), - [aux_sym_expr_binary_token9] = ACTIONS(1040), - [aux_sym_expr_binary_token10] = ACTIONS(1040), - [aux_sym_expr_binary_token11] = ACTIONS(1040), - [aux_sym_expr_binary_token12] = ACTIONS(1040), - [aux_sym_expr_binary_token13] = ACTIONS(1040), - [aux_sym_expr_binary_token14] = ACTIONS(1040), - [aux_sym_expr_binary_token15] = ACTIONS(1040), - [aux_sym_expr_binary_token16] = ACTIONS(1040), - [aux_sym_expr_binary_token17] = ACTIONS(1040), - [aux_sym_expr_binary_token18] = ACTIONS(1040), - [aux_sym_expr_binary_token19] = ACTIONS(1040), - [aux_sym_expr_binary_token20] = ACTIONS(1040), - [aux_sym_expr_binary_token21] = ACTIONS(1040), - [aux_sym_expr_binary_token22] = ACTIONS(1040), - [aux_sym_expr_binary_token23] = ACTIONS(1040), - [aux_sym_expr_binary_token24] = ACTIONS(1040), - [aux_sym_expr_binary_token25] = ACTIONS(1040), - [aux_sym_expr_binary_token26] = ACTIONS(1040), - [aux_sym_expr_binary_token27] = ACTIONS(1040), - [aux_sym_expr_binary_token28] = ACTIONS(1040), - [anon_sym_DOT] = ACTIONS(1040), - [aux_sym_record_entry_token1] = ACTIONS(1040), + [anon_sym_DOT] = ACTIONS(1038), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1040), + [anon_sym_DOT_DOT_LT] = ACTIONS(1040), + [aux_sym__val_number_decimal_token1] = ACTIONS(1038), + [aux_sym__val_number_decimal_token2] = ACTIONS(1040), + [aux_sym__val_number_decimal_token3] = ACTIONS(1040), + [aux_sym__val_number_decimal_token4] = ACTIONS(1040), + [aux_sym__val_number_token1] = ACTIONS(1040), + [aux_sym__val_number_token2] = ACTIONS(1040), + [aux_sym__val_number_token3] = ACTIONS(1040), + [anon_sym_0b] = ACTIONS(1038), + [anon_sym_0o] = ACTIONS(1038), + [anon_sym_0x] = ACTIONS(1038), + [sym_val_date] = ACTIONS(1040), + [anon_sym_DQUOTE] = ACTIONS(1040), + [sym__str_single_quotes] = ACTIONS(1040), + [sym__str_back_ticks] = ACTIONS(1040), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1040), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1040), [anon_sym_err_GT] = ACTIONS(1038), [anon_sym_out_GT] = ACTIONS(1038), [anon_sym_e_GT] = ACTIONS(1038), @@ -209773,7682 +213213,7939 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1040), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1040), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1040), - [anon_sym_POUND] = ACTIONS(247), - }, - [1462] = { - [sym_comment] = STATE(1462), - [aux_sym_cmd_identifier_token41] = ACTIONS(1653), - [sym__newline] = ACTIONS(1653), - [anon_sym_SEMI] = ACTIONS(1655), - [anon_sym_PIPE] = ACTIONS(1655), - [anon_sym_err_GT_PIPE] = ACTIONS(1655), - [anon_sym_out_GT_PIPE] = ACTIONS(1655), - [anon_sym_e_GT_PIPE] = ACTIONS(1655), - [anon_sym_o_GT_PIPE] = ACTIONS(1655), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1655), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1655), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1655), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1655), - [anon_sym_RPAREN] = ACTIONS(1655), - [anon_sym_LBRACE] = ACTIONS(1655), - [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1655), - [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1655), - [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1655), - [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1655), - [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1655), - [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1655), - [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1655), - [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1655), - [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1655), - [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1655), - [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1655), - [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1655), - [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1655), - [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1655), - [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1655), - [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1655), - [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1655), - [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1655), - [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1655), - [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1655), - [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1655), - [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1655), - [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1655), - [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1655), - [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1655), - [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1655), - [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1655), - [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1655), - [anon_sym_DOT_DOT2] = ACTIONS(1653), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1655), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1655), - [sym_filesize_unit] = ACTIONS(1655), - [sym_duration_unit] = ACTIONS(1655), - [anon_sym_err_GT] = ACTIONS(1653), - [anon_sym_out_GT] = ACTIONS(1653), - [anon_sym_e_GT] = ACTIONS(1653), - [anon_sym_o_GT] = ACTIONS(1653), - [anon_sym_err_PLUSout_GT] = ACTIONS(1653), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1653), - [anon_sym_o_PLUSe_GT] = ACTIONS(1653), - [anon_sym_e_PLUSo_GT] = ACTIONS(1653), - [anon_sym_err_GT_GT] = ACTIONS(1655), - [anon_sym_out_GT_GT] = ACTIONS(1655), - [anon_sym_e_GT_GT] = ACTIONS(1655), - [anon_sym_o_GT_GT] = ACTIONS(1655), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1655), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1655), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1655), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1655), - [anon_sym_POUND] = ACTIONS(247), - }, - [1463] = { - [sym_comment] = STATE(1463), - [anon_sym_true] = ACTIONS(1786), - [anon_sym_false] = ACTIONS(1786), - [anon_sym_null] = ACTIONS(1786), - [aux_sym_cmd_identifier_token38] = ACTIONS(1786), - [aux_sym_cmd_identifier_token39] = ACTIONS(1786), - [aux_sym_cmd_identifier_token40] = ACTIONS(1786), - [sym__newline] = ACTIONS(1786), - [anon_sym_SEMI] = ACTIONS(1786), - [anon_sym_PIPE] = ACTIONS(1786), - [anon_sym_err_GT_PIPE] = ACTIONS(1786), - [anon_sym_out_GT_PIPE] = ACTIONS(1786), - [anon_sym_e_GT_PIPE] = ACTIONS(1786), - [anon_sym_o_GT_PIPE] = ACTIONS(1786), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1786), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1786), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1786), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1786), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_RPAREN] = ACTIONS(1786), - [anon_sym_DOLLAR] = ACTIONS(1778), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_DASH] = ACTIONS(1778), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_DOT_DOT] = ACTIONS(1778), - [anon_sym_LPAREN2] = ACTIONS(1780), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1786), - [anon_sym_DOT_DOT_LT] = ACTIONS(1786), - [aux_sym__val_number_decimal_token1] = ACTIONS(1778), - [aux_sym__val_number_decimal_token2] = ACTIONS(1786), - [aux_sym__val_number_decimal_token3] = ACTIONS(1786), - [aux_sym__val_number_decimal_token4] = ACTIONS(1786), - [aux_sym__val_number_token1] = ACTIONS(1786), - [aux_sym__val_number_token2] = ACTIONS(1786), - [aux_sym__val_number_token3] = ACTIONS(1786), - [anon_sym_0b] = ACTIONS(1778), - [anon_sym_0o] = ACTIONS(1778), - [anon_sym_0x] = ACTIONS(1778), - [sym_val_date] = ACTIONS(1786), - [anon_sym_DQUOTE] = ACTIONS(1786), - [sym__str_single_quotes] = ACTIONS(1786), - [sym__str_back_ticks] = ACTIONS(1786), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1786), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1786), - [anon_sym_err_GT] = ACTIONS(1778), - [anon_sym_out_GT] = ACTIONS(1778), - [anon_sym_e_GT] = ACTIONS(1778), - [anon_sym_o_GT] = ACTIONS(1778), - [anon_sym_err_PLUSout_GT] = ACTIONS(1778), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1778), - [anon_sym_o_PLUSe_GT] = ACTIONS(1778), - [anon_sym_e_PLUSo_GT] = ACTIONS(1778), - [anon_sym_err_GT_GT] = ACTIONS(1786), - [anon_sym_out_GT_GT] = ACTIONS(1786), - [anon_sym_e_GT_GT] = ACTIONS(1786), - [anon_sym_o_GT_GT] = ACTIONS(1786), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1786), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1786), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1786), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1786), - [aux_sym_unquoted_token1] = ACTIONS(1778), - [aux_sym_unquoted_token2] = ACTIONS(1494), - [anon_sym_POUND] = ACTIONS(247), - }, - [1464] = { - [sym_comment] = STATE(1464), - [ts_builtin_sym_end] = ACTIONS(1542), - [sym__newline] = ACTIONS(1542), - [anon_sym_SEMI] = ACTIONS(1542), - [anon_sym_PIPE] = ACTIONS(1542), - [anon_sym_err_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_GT_PIPE] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1542), - [anon_sym_LPAREN2] = ACTIONS(1542), - [aux_sym_expr_binary_token1] = ACTIONS(1542), - [aux_sym_expr_binary_token2] = ACTIONS(1542), - [aux_sym_expr_binary_token3] = ACTIONS(1542), - [aux_sym_expr_binary_token4] = ACTIONS(1542), - [aux_sym_expr_binary_token5] = ACTIONS(1542), - [aux_sym_expr_binary_token6] = ACTIONS(1542), - [aux_sym_expr_binary_token7] = ACTIONS(1542), - [aux_sym_expr_binary_token8] = ACTIONS(1542), - [aux_sym_expr_binary_token9] = ACTIONS(1542), - [aux_sym_expr_binary_token10] = ACTIONS(1542), - [aux_sym_expr_binary_token11] = ACTIONS(1542), - [aux_sym_expr_binary_token12] = ACTIONS(1542), - [aux_sym_expr_binary_token13] = ACTIONS(1542), - [aux_sym_expr_binary_token14] = ACTIONS(1542), - [aux_sym_expr_binary_token15] = ACTIONS(1542), - [aux_sym_expr_binary_token16] = ACTIONS(1542), - [aux_sym_expr_binary_token17] = ACTIONS(1542), - [aux_sym_expr_binary_token18] = ACTIONS(1542), - [aux_sym_expr_binary_token19] = ACTIONS(1542), - [aux_sym_expr_binary_token20] = ACTIONS(1542), - [aux_sym_expr_binary_token21] = ACTIONS(1542), - [aux_sym_expr_binary_token22] = ACTIONS(1542), - [aux_sym_expr_binary_token23] = ACTIONS(1542), - [aux_sym_expr_binary_token24] = ACTIONS(1542), - [aux_sym_expr_binary_token25] = ACTIONS(1542), - [aux_sym_expr_binary_token26] = ACTIONS(1542), - [aux_sym_expr_binary_token27] = ACTIONS(1542), - [aux_sym_expr_binary_token28] = ACTIONS(1542), - [anon_sym_DOT_DOT2] = ACTIONS(1540), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1542), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1542), - [sym_filesize_unit] = ACTIONS(1542), - [sym_duration_unit] = ACTIONS(1542), - [anon_sym_err_GT] = ACTIONS(1540), - [anon_sym_out_GT] = ACTIONS(1540), - [anon_sym_e_GT] = ACTIONS(1540), - [anon_sym_o_GT] = ACTIONS(1540), - [anon_sym_err_PLUSout_GT] = ACTIONS(1540), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1540), - [anon_sym_o_PLUSe_GT] = ACTIONS(1540), - [anon_sym_e_PLUSo_GT] = ACTIONS(1540), - [anon_sym_err_GT_GT] = ACTIONS(1542), - [anon_sym_out_GT_GT] = ACTIONS(1542), - [anon_sym_e_GT_GT] = ACTIONS(1542), - [anon_sym_o_GT_GT] = ACTIONS(1542), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1542), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1542), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1542), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1542), - [aux_sym_unquoted_token2] = ACTIONS(1540), - [anon_sym_POUND] = ACTIONS(247), - }, - [1465] = { - [sym_comment] = STATE(1465), - [aux_sym_cmd_identifier_token41] = ACTIONS(4816), - [sym__newline] = ACTIONS(1572), - [anon_sym_SEMI] = ACTIONS(1572), - [anon_sym_PIPE] = ACTIONS(1572), - [anon_sym_err_GT_PIPE] = ACTIONS(1572), - [anon_sym_out_GT_PIPE] = ACTIONS(1572), - [anon_sym_e_GT_PIPE] = ACTIONS(1572), - [anon_sym_o_GT_PIPE] = ACTIONS(1572), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1572), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1572), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1572), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1572), - [anon_sym_RPAREN] = ACTIONS(1572), - [anon_sym_RBRACE] = ACTIONS(1572), - [aux_sym_expr_binary_token1] = ACTIONS(1572), - [aux_sym_expr_binary_token2] = ACTIONS(1572), - [aux_sym_expr_binary_token3] = ACTIONS(1572), - [aux_sym_expr_binary_token4] = ACTIONS(1572), - [aux_sym_expr_binary_token5] = ACTIONS(1572), - [aux_sym_expr_binary_token6] = ACTIONS(1572), - [aux_sym_expr_binary_token7] = ACTIONS(1572), - [aux_sym_expr_binary_token8] = ACTIONS(1572), - [aux_sym_expr_binary_token9] = ACTIONS(1572), - [aux_sym_expr_binary_token10] = ACTIONS(1572), - [aux_sym_expr_binary_token11] = ACTIONS(1572), - [aux_sym_expr_binary_token12] = ACTIONS(1572), - [aux_sym_expr_binary_token13] = ACTIONS(1572), - [aux_sym_expr_binary_token14] = ACTIONS(1572), - [aux_sym_expr_binary_token15] = ACTIONS(1572), - [aux_sym_expr_binary_token16] = ACTIONS(1572), - [aux_sym_expr_binary_token17] = ACTIONS(1572), - [aux_sym_expr_binary_token18] = ACTIONS(1572), - [aux_sym_expr_binary_token19] = ACTIONS(1572), - [aux_sym_expr_binary_token20] = ACTIONS(1572), - [aux_sym_expr_binary_token21] = ACTIONS(1572), - [aux_sym_expr_binary_token22] = ACTIONS(1572), - [aux_sym_expr_binary_token23] = ACTIONS(1572), - [aux_sym_expr_binary_token24] = ACTIONS(1572), - [aux_sym_expr_binary_token25] = ACTIONS(1572), - [aux_sym_expr_binary_token26] = ACTIONS(1572), - [aux_sym_expr_binary_token27] = ACTIONS(1572), - [aux_sym_expr_binary_token28] = ACTIONS(1572), - [anon_sym_DOT_DOT2] = ACTIONS(4773), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4775), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4775), - [sym_filesize_unit] = ACTIONS(4818), - [sym_duration_unit] = ACTIONS(4820), - [anon_sym_err_GT] = ACTIONS(1560), - [anon_sym_out_GT] = ACTIONS(1560), - [anon_sym_e_GT] = ACTIONS(1560), - [anon_sym_o_GT] = ACTIONS(1560), - [anon_sym_err_PLUSout_GT] = ACTIONS(1560), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1560), - [anon_sym_o_PLUSe_GT] = ACTIONS(1560), - [anon_sym_e_PLUSo_GT] = ACTIONS(1560), - [anon_sym_err_GT_GT] = ACTIONS(1572), - [anon_sym_out_GT_GT] = ACTIONS(1572), - [anon_sym_e_GT_GT] = ACTIONS(1572), - [anon_sym_o_GT_GT] = ACTIONS(1572), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1572), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1572), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1572), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1572), - [anon_sym_POUND] = ACTIONS(247), - }, - [1466] = { - [sym_comment] = STATE(1466), - [anon_sym_true] = ACTIONS(1024), - [anon_sym_false] = ACTIONS(1024), - [anon_sym_null] = ACTIONS(1024), - [aux_sym_cmd_identifier_token38] = ACTIONS(1024), - [aux_sym_cmd_identifier_token39] = ACTIONS(1024), - [aux_sym_cmd_identifier_token40] = ACTIONS(1024), - [sym__newline] = ACTIONS(1024), - [anon_sym_SEMI] = ACTIONS(1024), - [anon_sym_PIPE] = ACTIONS(1024), - [anon_sym_err_GT_PIPE] = ACTIONS(1024), - [anon_sym_out_GT_PIPE] = ACTIONS(1024), - [anon_sym_e_GT_PIPE] = ACTIONS(1024), - [anon_sym_o_GT_PIPE] = ACTIONS(1024), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1024), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1024), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1024), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1024), - [anon_sym_LBRACK] = ACTIONS(1024), - [anon_sym_LPAREN] = ACTIONS(1024), - [anon_sym_RPAREN] = ACTIONS(1024), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH_DASH] = ACTIONS(1024), - [anon_sym_DASH] = ACTIONS(1022), - [anon_sym_LBRACE] = ACTIONS(1024), - [anon_sym_RBRACE] = ACTIONS(1024), - [anon_sym_DOT_DOT] = ACTIONS(1022), - [anon_sym_QMARK2] = ACTIONS(4822), - [anon_sym_DOT] = ACTIONS(1022), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1024), - [anon_sym_DOT_DOT_LT] = ACTIONS(1024), - [aux_sym__val_number_decimal_token1] = ACTIONS(1022), - [aux_sym__val_number_decimal_token2] = ACTIONS(1024), - [aux_sym__val_number_decimal_token3] = ACTIONS(1024), - [aux_sym__val_number_decimal_token4] = ACTIONS(1024), - [aux_sym__val_number_token1] = ACTIONS(1024), - [aux_sym__val_number_token2] = ACTIONS(1024), - [aux_sym__val_number_token3] = ACTIONS(1024), - [anon_sym_0b] = ACTIONS(1022), - [anon_sym_0o] = ACTIONS(1022), - [anon_sym_0x] = ACTIONS(1022), - [sym_val_date] = ACTIONS(1024), - [anon_sym_DQUOTE] = ACTIONS(1024), - [sym__str_single_quotes] = ACTIONS(1024), - [sym__str_back_ticks] = ACTIONS(1024), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1024), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1024), - [anon_sym_err_GT] = ACTIONS(1022), - [anon_sym_out_GT] = ACTIONS(1022), - [anon_sym_e_GT] = ACTIONS(1022), - [anon_sym_o_GT] = ACTIONS(1022), - [anon_sym_err_PLUSout_GT] = ACTIONS(1022), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1022), - [anon_sym_o_PLUSe_GT] = ACTIONS(1022), - [anon_sym_e_PLUSo_GT] = ACTIONS(1022), - [anon_sym_err_GT_GT] = ACTIONS(1024), - [anon_sym_out_GT_GT] = ACTIONS(1024), - [anon_sym_e_GT_GT] = ACTIONS(1024), - [anon_sym_o_GT_GT] = ACTIONS(1024), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1024), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1024), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1024), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1024), - [aux_sym_unquoted_token1] = ACTIONS(1022), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_unquoted_token1] = ACTIONS(1038), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1040), }, [1467] = { [sym_comment] = STATE(1467), - [ts_builtin_sym_end] = ACTIONS(1677), - [anon_sym_true] = ACTIONS(1677), - [anon_sym_false] = ACTIONS(1677), - [anon_sym_null] = ACTIONS(1677), - [aux_sym_cmd_identifier_token38] = ACTIONS(1677), - [aux_sym_cmd_identifier_token39] = ACTIONS(1677), - [aux_sym_cmd_identifier_token40] = ACTIONS(1677), - [sym__newline] = ACTIONS(1677), - [anon_sym_SEMI] = ACTIONS(1677), - [anon_sym_PIPE] = ACTIONS(1677), - [anon_sym_err_GT_PIPE] = ACTIONS(1677), - [anon_sym_out_GT_PIPE] = ACTIONS(1677), - [anon_sym_e_GT_PIPE] = ACTIONS(1677), - [anon_sym_o_GT_PIPE] = ACTIONS(1677), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1677), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1677), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1677), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1677), - [anon_sym_LBRACK] = ACTIONS(1677), - [anon_sym_LPAREN] = ACTIONS(1677), - [anon_sym_DOLLAR] = ACTIONS(1675), - [anon_sym_DASH_DASH] = ACTIONS(1677), - [anon_sym_DASH] = ACTIONS(1675), - [anon_sym_LBRACE] = ACTIONS(1677), - [anon_sym_DOT_DOT] = ACTIONS(1675), - [anon_sym_DOT_DOT2] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1675), - [anon_sym_DOT_DOT_LT] = ACTIONS(1675), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1677), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1677), - [aux_sym__val_number_decimal_token1] = ACTIONS(1675), - [aux_sym__val_number_decimal_token2] = ACTIONS(1677), - [aux_sym__val_number_decimal_token3] = ACTIONS(1677), - [aux_sym__val_number_decimal_token4] = ACTIONS(1677), - [aux_sym__val_number_token1] = ACTIONS(1677), - [aux_sym__val_number_token2] = ACTIONS(1677), - [aux_sym__val_number_token3] = ACTIONS(1677), - [anon_sym_0b] = ACTIONS(1675), - [anon_sym_0o] = ACTIONS(1675), - [anon_sym_0x] = ACTIONS(1675), - [sym_val_date] = ACTIONS(1677), - [anon_sym_DQUOTE] = ACTIONS(1677), - [sym__str_single_quotes] = ACTIONS(1677), - [sym__str_back_ticks] = ACTIONS(1677), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1677), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1677), - [anon_sym_err_GT] = ACTIONS(1675), - [anon_sym_out_GT] = ACTIONS(1675), - [anon_sym_e_GT] = ACTIONS(1675), - [anon_sym_o_GT] = ACTIONS(1675), - [anon_sym_err_PLUSout_GT] = ACTIONS(1675), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1675), - [anon_sym_o_PLUSe_GT] = ACTIONS(1675), - [anon_sym_e_PLUSo_GT] = ACTIONS(1675), - [anon_sym_err_GT_GT] = ACTIONS(1677), - [anon_sym_out_GT_GT] = ACTIONS(1677), - [anon_sym_e_GT_GT] = ACTIONS(1677), - [anon_sym_o_GT_GT] = ACTIONS(1677), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1677), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1677), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1677), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1677), - [aux_sym_unquoted_token1] = ACTIONS(1675), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cmd_identifier_token41] = ACTIONS(1711), + [sym__newline] = ACTIONS(1711), + [anon_sym_SEMI] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_err_GT_PIPE] = ACTIONS(1713), + [anon_sym_out_GT_PIPE] = ACTIONS(1713), + [anon_sym_e_GT_PIPE] = ACTIONS(1713), + [anon_sym_o_GT_PIPE] = ACTIONS(1713), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), + [anon_sym_RBRACE] = ACTIONS(1713), + [anon_sym_EQ_GT] = ACTIONS(1713), + [aux_sym_expr_binary_token1] = ACTIONS(1713), + [aux_sym_expr_binary_token2] = ACTIONS(1713), + [aux_sym_expr_binary_token3] = ACTIONS(1713), + [aux_sym_expr_binary_token4] = ACTIONS(1713), + [aux_sym_expr_binary_token5] = ACTIONS(1713), + [aux_sym_expr_binary_token6] = ACTIONS(1713), + [aux_sym_expr_binary_token7] = ACTIONS(1713), + [aux_sym_expr_binary_token8] = ACTIONS(1713), + [aux_sym_expr_binary_token9] = ACTIONS(1713), + [aux_sym_expr_binary_token10] = ACTIONS(1713), + [aux_sym_expr_binary_token11] = ACTIONS(1713), + [aux_sym_expr_binary_token12] = ACTIONS(1713), + [aux_sym_expr_binary_token13] = ACTIONS(1713), + [aux_sym_expr_binary_token14] = ACTIONS(1713), + [aux_sym_expr_binary_token15] = ACTIONS(1713), + [aux_sym_expr_binary_token16] = ACTIONS(1713), + [aux_sym_expr_binary_token17] = ACTIONS(1713), + [aux_sym_expr_binary_token18] = ACTIONS(1713), + [aux_sym_expr_binary_token19] = ACTIONS(1713), + [aux_sym_expr_binary_token20] = ACTIONS(1713), + [aux_sym_expr_binary_token21] = ACTIONS(1713), + [aux_sym_expr_binary_token22] = ACTIONS(1713), + [aux_sym_expr_binary_token23] = ACTIONS(1713), + [aux_sym_expr_binary_token24] = ACTIONS(1713), + [aux_sym_expr_binary_token25] = ACTIONS(1713), + [aux_sym_expr_binary_token26] = ACTIONS(1713), + [aux_sym_expr_binary_token27] = ACTIONS(1713), + [aux_sym_expr_binary_token28] = ACTIONS(1713), + [anon_sym_DOT_DOT2] = ACTIONS(1711), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), + [sym_filesize_unit] = ACTIONS(1713), + [sym_duration_unit] = ACTIONS(1713), + [aux_sym_record_entry_token1] = ACTIONS(1713), + [anon_sym_err_GT] = ACTIONS(1711), + [anon_sym_out_GT] = ACTIONS(1711), + [anon_sym_e_GT] = ACTIONS(1711), + [anon_sym_o_GT] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT] = ACTIONS(1711), + [anon_sym_err_GT_GT] = ACTIONS(1713), + [anon_sym_out_GT_GT] = ACTIONS(1713), + [anon_sym_e_GT_GT] = ACTIONS(1713), + [anon_sym_o_GT_GT] = ACTIONS(1713), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), + [anon_sym_POUND] = ACTIONS(249), }, [1468] = { [sym_comment] = STATE(1468), - [ts_builtin_sym_end] = ACTIONS(1060), - [anon_sym_true] = ACTIONS(1060), - [anon_sym_false] = ACTIONS(1060), - [anon_sym_null] = ACTIONS(1060), - [aux_sym_cmd_identifier_token38] = ACTIONS(1060), - [aux_sym_cmd_identifier_token39] = ACTIONS(1060), - [aux_sym_cmd_identifier_token40] = ACTIONS(1060), - [sym__newline] = ACTIONS(1060), - [anon_sym_SEMI] = ACTIONS(1060), - [anon_sym_PIPE] = ACTIONS(1060), - [anon_sym_err_GT_PIPE] = ACTIONS(1060), - [anon_sym_out_GT_PIPE] = ACTIONS(1060), - [anon_sym_e_GT_PIPE] = ACTIONS(1060), - [anon_sym_o_GT_PIPE] = ACTIONS(1060), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1060), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1060), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1060), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1060), - [anon_sym_LBRACK] = ACTIONS(1060), - [anon_sym_LPAREN] = ACTIONS(1060), - [anon_sym_DOLLAR] = ACTIONS(1058), - [anon_sym_DASH_DASH] = ACTIONS(1060), - [anon_sym_DASH] = ACTIONS(1058), - [anon_sym_LBRACE] = ACTIONS(1060), - [anon_sym_DOT_DOT] = ACTIONS(1058), - [anon_sym_DOT_DOT2] = ACTIONS(1058), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1058), - [anon_sym_DOT_DOT_LT] = ACTIONS(1058), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1060), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1060), - [aux_sym__val_number_decimal_token1] = ACTIONS(1058), - [aux_sym__val_number_decimal_token2] = ACTIONS(1060), - [aux_sym__val_number_decimal_token3] = ACTIONS(1060), - [aux_sym__val_number_decimal_token4] = ACTIONS(1060), - [aux_sym__val_number_token1] = ACTIONS(1060), - [aux_sym__val_number_token2] = ACTIONS(1060), - [aux_sym__val_number_token3] = ACTIONS(1060), - [anon_sym_0b] = ACTIONS(1058), - [anon_sym_0o] = ACTIONS(1058), - [anon_sym_0x] = ACTIONS(1058), - [sym_val_date] = ACTIONS(1060), - [anon_sym_DQUOTE] = ACTIONS(1060), - [sym__str_single_quotes] = ACTIONS(1060), - [sym__str_back_ticks] = ACTIONS(1060), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1060), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1060), - [anon_sym_err_GT] = ACTIONS(1058), - [anon_sym_out_GT] = ACTIONS(1058), - [anon_sym_e_GT] = ACTIONS(1058), - [anon_sym_o_GT] = ACTIONS(1058), - [anon_sym_err_PLUSout_GT] = ACTIONS(1058), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1058), - [anon_sym_o_PLUSe_GT] = ACTIONS(1058), - [anon_sym_e_PLUSo_GT] = ACTIONS(1058), - [anon_sym_err_GT_GT] = ACTIONS(1060), - [anon_sym_out_GT_GT] = ACTIONS(1060), - [anon_sym_e_GT_GT] = ACTIONS(1060), - [anon_sym_o_GT_GT] = ACTIONS(1060), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1060), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1060), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1060), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1060), - [aux_sym_unquoted_token1] = ACTIONS(1058), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(2339), + [anon_sym_false] = ACTIONS(2339), + [anon_sym_null] = ACTIONS(2339), + [aux_sym_cmd_identifier_token38] = ACTIONS(2339), + [aux_sym_cmd_identifier_token39] = ACTIONS(2339), + [aux_sym_cmd_identifier_token40] = ACTIONS(2339), + [sym__newline] = ACTIONS(2339), + [anon_sym_SEMI] = ACTIONS(2339), + [anon_sym_PIPE] = ACTIONS(2339), + [anon_sym_err_GT_PIPE] = ACTIONS(2339), + [anon_sym_out_GT_PIPE] = ACTIONS(2339), + [anon_sym_e_GT_PIPE] = ACTIONS(2339), + [anon_sym_o_GT_PIPE] = ACTIONS(2339), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2339), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2339), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2339), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2339), + [anon_sym_LBRACK] = ACTIONS(2339), + [anon_sym_LPAREN] = ACTIONS(2335), + [anon_sym_RPAREN] = ACTIONS(2339), + [anon_sym_DOLLAR] = ACTIONS(2335), + [anon_sym_DASH_DASH] = ACTIONS(2339), + [anon_sym_DASH] = ACTIONS(2335), + [anon_sym_LBRACE] = ACTIONS(2339), + [anon_sym_RBRACE] = ACTIONS(2339), + [anon_sym_DOT_DOT] = ACTIONS(2335), + [anon_sym_LPAREN2] = ACTIONS(2337), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2339), + [anon_sym_DOT_DOT_LT] = ACTIONS(2339), + [aux_sym__val_number_decimal_token1] = ACTIONS(2335), + [aux_sym__val_number_decimal_token2] = ACTIONS(2339), + [aux_sym__val_number_decimal_token3] = ACTIONS(2339), + [aux_sym__val_number_decimal_token4] = ACTIONS(2339), + [aux_sym__val_number_token1] = ACTIONS(2339), + [aux_sym__val_number_token2] = ACTIONS(2339), + [aux_sym__val_number_token3] = ACTIONS(2339), + [anon_sym_0b] = ACTIONS(2335), + [anon_sym_0o] = ACTIONS(2335), + [anon_sym_0x] = ACTIONS(2335), + [sym_val_date] = ACTIONS(2339), + [anon_sym_DQUOTE] = ACTIONS(2339), + [sym__str_single_quotes] = ACTIONS(2339), + [sym__str_back_ticks] = ACTIONS(2339), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2339), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2339), + [anon_sym_err_GT] = ACTIONS(2335), + [anon_sym_out_GT] = ACTIONS(2335), + [anon_sym_e_GT] = ACTIONS(2335), + [anon_sym_o_GT] = ACTIONS(2335), + [anon_sym_err_PLUSout_GT] = ACTIONS(2335), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2335), + [anon_sym_o_PLUSe_GT] = ACTIONS(2335), + [anon_sym_e_PLUSo_GT] = ACTIONS(2335), + [anon_sym_err_GT_GT] = ACTIONS(2339), + [anon_sym_out_GT_GT] = ACTIONS(2339), + [anon_sym_e_GT_GT] = ACTIONS(2339), + [anon_sym_o_GT_GT] = ACTIONS(2339), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2339), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2339), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2339), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2339), + [aux_sym_unquoted_token1] = ACTIONS(2335), + [aux_sym_unquoted_token2] = ACTIONS(1558), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2339), }, [1469] = { [sym_comment] = STATE(1469), - [ts_builtin_sym_end] = ACTIONS(1556), - [sym__newline] = ACTIONS(1556), - [anon_sym_SEMI] = ACTIONS(1556), - [anon_sym_PIPE] = ACTIONS(1556), - [anon_sym_err_GT_PIPE] = ACTIONS(1556), - [anon_sym_out_GT_PIPE] = ACTIONS(1556), - [anon_sym_e_GT_PIPE] = ACTIONS(1556), - [anon_sym_o_GT_PIPE] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1556), - [anon_sym_LPAREN2] = ACTIONS(1556), - [aux_sym_expr_binary_token1] = ACTIONS(1556), - [aux_sym_expr_binary_token2] = ACTIONS(1556), - [aux_sym_expr_binary_token3] = ACTIONS(1556), - [aux_sym_expr_binary_token4] = ACTIONS(1556), - [aux_sym_expr_binary_token5] = ACTIONS(1556), - [aux_sym_expr_binary_token6] = ACTIONS(1556), - [aux_sym_expr_binary_token7] = ACTIONS(1556), - [aux_sym_expr_binary_token8] = ACTIONS(1556), - [aux_sym_expr_binary_token9] = ACTIONS(1556), - [aux_sym_expr_binary_token10] = ACTIONS(1556), - [aux_sym_expr_binary_token11] = ACTIONS(1556), - [aux_sym_expr_binary_token12] = ACTIONS(1556), - [aux_sym_expr_binary_token13] = ACTIONS(1556), - [aux_sym_expr_binary_token14] = ACTIONS(1556), - [aux_sym_expr_binary_token15] = ACTIONS(1556), - [aux_sym_expr_binary_token16] = ACTIONS(1556), - [aux_sym_expr_binary_token17] = ACTIONS(1556), - [aux_sym_expr_binary_token18] = ACTIONS(1556), - [aux_sym_expr_binary_token19] = ACTIONS(1556), - [aux_sym_expr_binary_token20] = ACTIONS(1556), - [aux_sym_expr_binary_token21] = ACTIONS(1556), - [aux_sym_expr_binary_token22] = ACTIONS(1556), - [aux_sym_expr_binary_token23] = ACTIONS(1556), - [aux_sym_expr_binary_token24] = ACTIONS(1556), - [aux_sym_expr_binary_token25] = ACTIONS(1556), - [aux_sym_expr_binary_token26] = ACTIONS(1556), - [aux_sym_expr_binary_token27] = ACTIONS(1556), - [aux_sym_expr_binary_token28] = ACTIONS(1556), - [anon_sym_DOT_DOT2] = ACTIONS(1554), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1556), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1556), - [sym_filesize_unit] = ACTIONS(1556), - [sym_duration_unit] = ACTIONS(1556), - [anon_sym_err_GT] = ACTIONS(1554), - [anon_sym_out_GT] = ACTIONS(1554), - [anon_sym_e_GT] = ACTIONS(1554), - [anon_sym_o_GT] = ACTIONS(1554), - [anon_sym_err_PLUSout_GT] = ACTIONS(1554), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1554), - [anon_sym_o_PLUSe_GT] = ACTIONS(1554), - [anon_sym_e_PLUSo_GT] = ACTIONS(1554), - [anon_sym_err_GT_GT] = ACTIONS(1556), - [anon_sym_out_GT_GT] = ACTIONS(1556), - [anon_sym_e_GT_GT] = ACTIONS(1556), - [anon_sym_o_GT_GT] = ACTIONS(1556), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1556), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1556), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1556), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1556), - [aux_sym_unquoted_token2] = ACTIONS(1554), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(4925), + [anon_sym_false] = ACTIONS(4925), + [anon_sym_null] = ACTIONS(4925), + [aux_sym_cmd_identifier_token38] = ACTIONS(4925), + [aux_sym_cmd_identifier_token39] = ACTIONS(4925), + [aux_sym_cmd_identifier_token40] = ACTIONS(4925), + [sym__newline] = ACTIONS(4927), + [anon_sym_SEMI] = ACTIONS(4927), + [anon_sym_PIPE] = ACTIONS(4927), + [anon_sym_err_GT_PIPE] = ACTIONS(4927), + [anon_sym_out_GT_PIPE] = ACTIONS(4927), + [anon_sym_e_GT_PIPE] = ACTIONS(4927), + [anon_sym_o_GT_PIPE] = ACTIONS(4927), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4927), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4927), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4927), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4927), + [anon_sym_LBRACK] = ACTIONS(4927), + [anon_sym_LPAREN] = ACTIONS(4927), + [anon_sym_RPAREN] = ACTIONS(4927), + [anon_sym_DOLLAR] = ACTIONS(4925), + [anon_sym_DASH_DASH] = ACTIONS(4925), + [anon_sym_DASH] = ACTIONS(4925), + [anon_sym_LBRACE] = ACTIONS(4927), + [anon_sym_RBRACE] = ACTIONS(4927), + [anon_sym_DOT_DOT] = ACTIONS(4925), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4927), + [anon_sym_DOT_DOT_LT] = ACTIONS(4927), + [aux_sym__val_number_decimal_token1] = ACTIONS(4925), + [aux_sym__val_number_decimal_token2] = ACTIONS(4925), + [aux_sym__val_number_decimal_token3] = ACTIONS(4927), + [aux_sym__val_number_decimal_token4] = ACTIONS(4927), + [aux_sym__val_number_token1] = ACTIONS(4925), + [aux_sym__val_number_token2] = ACTIONS(4925), + [aux_sym__val_number_token3] = ACTIONS(4925), + [anon_sym_0b] = ACTIONS(4925), + [anon_sym_0o] = ACTIONS(4925), + [anon_sym_0x] = ACTIONS(4925), + [sym_val_date] = ACTIONS(4925), + [anon_sym_DQUOTE] = ACTIONS(4927), + [sym__str_single_quotes] = ACTIONS(4927), + [sym__str_back_ticks] = ACTIONS(4927), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4927), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4927), + [anon_sym_err_GT] = ACTIONS(4925), + [anon_sym_out_GT] = ACTIONS(4925), + [anon_sym_e_GT] = ACTIONS(4925), + [anon_sym_o_GT] = ACTIONS(4925), + [anon_sym_err_PLUSout_GT] = ACTIONS(4925), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4925), + [anon_sym_o_PLUSe_GT] = ACTIONS(4925), + [anon_sym_e_PLUSo_GT] = ACTIONS(4925), + [anon_sym_err_GT_GT] = ACTIONS(4927), + [anon_sym_out_GT_GT] = ACTIONS(4927), + [anon_sym_e_GT_GT] = ACTIONS(4927), + [anon_sym_o_GT_GT] = ACTIONS(4927), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4927), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4927), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4927), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4927), + [anon_sym_EQ2] = ACTIONS(4929), + [sym_short_flag_identifier] = ACTIONS(4931), + [aux_sym_unquoted_token1] = ACTIONS(4925), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(4927), }, [1470] = { [sym_comment] = STATE(1470), - [sym__newline] = ACTIONS(1024), - [anon_sym_SEMI] = ACTIONS(1024), - [anon_sym_PIPE] = ACTIONS(1024), - [anon_sym_err_GT_PIPE] = ACTIONS(1024), - [anon_sym_out_GT_PIPE] = ACTIONS(1024), - [anon_sym_e_GT_PIPE] = ACTIONS(1024), - [anon_sym_o_GT_PIPE] = ACTIONS(1024), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1024), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1024), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1024), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1024), - [anon_sym_RPAREN] = ACTIONS(1024), - [anon_sym_DASH_DASH] = ACTIONS(1024), - [anon_sym_DASH] = ACTIONS(1022), - [anon_sym_LBRACE] = ACTIONS(1024), - [anon_sym_RBRACE] = ACTIONS(1024), - [anon_sym_EQ_GT] = ACTIONS(1024), - [anon_sym_QMARK2] = ACTIONS(4824), - [aux_sym_expr_binary_token1] = ACTIONS(1024), - [aux_sym_expr_binary_token2] = ACTIONS(1024), - [aux_sym_expr_binary_token3] = ACTIONS(1024), - [aux_sym_expr_binary_token4] = ACTIONS(1024), - [aux_sym_expr_binary_token5] = ACTIONS(1024), - [aux_sym_expr_binary_token6] = ACTIONS(1024), - [aux_sym_expr_binary_token7] = ACTIONS(1024), - [aux_sym_expr_binary_token8] = ACTIONS(1024), - [aux_sym_expr_binary_token9] = ACTIONS(1024), - [aux_sym_expr_binary_token10] = ACTIONS(1024), - [aux_sym_expr_binary_token11] = ACTIONS(1024), - [aux_sym_expr_binary_token12] = ACTIONS(1024), - [aux_sym_expr_binary_token13] = ACTIONS(1024), - [aux_sym_expr_binary_token14] = ACTIONS(1024), - [aux_sym_expr_binary_token15] = ACTIONS(1024), - [aux_sym_expr_binary_token16] = ACTIONS(1024), - [aux_sym_expr_binary_token17] = ACTIONS(1024), - [aux_sym_expr_binary_token18] = ACTIONS(1024), - [aux_sym_expr_binary_token19] = ACTIONS(1024), - [aux_sym_expr_binary_token20] = ACTIONS(1024), - [aux_sym_expr_binary_token21] = ACTIONS(1024), - [aux_sym_expr_binary_token22] = ACTIONS(1024), - [aux_sym_expr_binary_token23] = ACTIONS(1024), - [aux_sym_expr_binary_token24] = ACTIONS(1024), - [aux_sym_expr_binary_token25] = ACTIONS(1024), - [aux_sym_expr_binary_token26] = ACTIONS(1024), - [aux_sym_expr_binary_token27] = ACTIONS(1024), - [aux_sym_expr_binary_token28] = ACTIONS(1024), - [anon_sym_DOT] = ACTIONS(1024), - [anon_sym_err_GT] = ACTIONS(1022), - [anon_sym_out_GT] = ACTIONS(1022), - [anon_sym_e_GT] = ACTIONS(1022), - [anon_sym_o_GT] = ACTIONS(1022), - [anon_sym_err_PLUSout_GT] = ACTIONS(1022), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1022), - [anon_sym_o_PLUSe_GT] = ACTIONS(1022), - [anon_sym_e_PLUSo_GT] = ACTIONS(1022), - [anon_sym_err_GT_GT] = ACTIONS(1024), - [anon_sym_out_GT_GT] = ACTIONS(1024), - [anon_sym_e_GT_GT] = ACTIONS(1024), - [anon_sym_o_GT_GT] = ACTIONS(1024), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1024), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1024), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1024), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1024), - [anon_sym_POUND] = ACTIONS(247), + [ts_builtin_sym_end] = ACTIONS(1538), + [sym__newline] = ACTIONS(1538), + [anon_sym_SEMI] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_err_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_GT_PIPE] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), + [anon_sym_LPAREN2] = ACTIONS(1538), + [aux_sym_expr_binary_token1] = ACTIONS(1538), + [aux_sym_expr_binary_token2] = ACTIONS(1538), + [aux_sym_expr_binary_token3] = ACTIONS(1538), + [aux_sym_expr_binary_token4] = ACTIONS(1538), + [aux_sym_expr_binary_token5] = ACTIONS(1538), + [aux_sym_expr_binary_token6] = ACTIONS(1538), + [aux_sym_expr_binary_token7] = ACTIONS(1538), + [aux_sym_expr_binary_token8] = ACTIONS(1538), + [aux_sym_expr_binary_token9] = ACTIONS(1538), + [aux_sym_expr_binary_token10] = ACTIONS(1538), + [aux_sym_expr_binary_token11] = ACTIONS(1538), + [aux_sym_expr_binary_token12] = ACTIONS(1538), + [aux_sym_expr_binary_token13] = ACTIONS(1538), + [aux_sym_expr_binary_token14] = ACTIONS(1538), + [aux_sym_expr_binary_token15] = ACTIONS(1538), + [aux_sym_expr_binary_token16] = ACTIONS(1538), + [aux_sym_expr_binary_token17] = ACTIONS(1538), + [aux_sym_expr_binary_token18] = ACTIONS(1538), + [aux_sym_expr_binary_token19] = ACTIONS(1538), + [aux_sym_expr_binary_token20] = ACTIONS(1538), + [aux_sym_expr_binary_token21] = ACTIONS(1538), + [aux_sym_expr_binary_token22] = ACTIONS(1538), + [aux_sym_expr_binary_token23] = ACTIONS(1538), + [aux_sym_expr_binary_token24] = ACTIONS(1538), + [aux_sym_expr_binary_token25] = ACTIONS(1538), + [aux_sym_expr_binary_token26] = ACTIONS(1538), + [aux_sym_expr_binary_token27] = ACTIONS(1538), + [aux_sym_expr_binary_token28] = ACTIONS(1538), + [anon_sym_DOT_DOT2] = ACTIONS(1536), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), + [aux_sym__immediate_decimal_token2] = ACTIONS(4760), + [sym_filesize_unit] = ACTIONS(1538), + [sym_duration_unit] = ACTIONS(1538), + [anon_sym_err_GT] = ACTIONS(1536), + [anon_sym_out_GT] = ACTIONS(1536), + [anon_sym_e_GT] = ACTIONS(1536), + [anon_sym_o_GT] = ACTIONS(1536), + [anon_sym_err_PLUSout_GT] = ACTIONS(1536), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), + [anon_sym_o_PLUSe_GT] = ACTIONS(1536), + [anon_sym_e_PLUSo_GT] = ACTIONS(1536), + [anon_sym_err_GT_GT] = ACTIONS(1538), + [anon_sym_out_GT_GT] = ACTIONS(1538), + [anon_sym_e_GT_GT] = ACTIONS(1538), + [anon_sym_o_GT_GT] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), + [aux_sym_unquoted_token2] = ACTIONS(1536), + [anon_sym_POUND] = ACTIONS(249), }, [1471] = { + [sym_cell_path] = STATE(1681), + [sym_path] = STATE(1268), [sym_comment] = STATE(1471), - [sym__newline] = ACTIONS(1030), - [anon_sym_SEMI] = ACTIONS(1030), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_err_GT_PIPE] = ACTIONS(1030), - [anon_sym_out_GT_PIPE] = ACTIONS(1030), - [anon_sym_e_GT_PIPE] = ACTIONS(1030), - [anon_sym_o_GT_PIPE] = ACTIONS(1030), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1030), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1030), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1030), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1030), - [anon_sym_RPAREN] = ACTIONS(1030), - [anon_sym_DASH_DASH] = ACTIONS(1030), - [anon_sym_DASH] = ACTIONS(1028), - [anon_sym_LBRACE] = ACTIONS(1030), - [anon_sym_RBRACE] = ACTIONS(1030), - [anon_sym_EQ_GT] = ACTIONS(1030), - [anon_sym_QMARK2] = ACTIONS(4826), - [aux_sym_expr_binary_token1] = ACTIONS(1030), - [aux_sym_expr_binary_token2] = ACTIONS(1030), - [aux_sym_expr_binary_token3] = ACTIONS(1030), - [aux_sym_expr_binary_token4] = ACTIONS(1030), - [aux_sym_expr_binary_token5] = ACTIONS(1030), - [aux_sym_expr_binary_token6] = ACTIONS(1030), - [aux_sym_expr_binary_token7] = ACTIONS(1030), - [aux_sym_expr_binary_token8] = ACTIONS(1030), - [aux_sym_expr_binary_token9] = ACTIONS(1030), - [aux_sym_expr_binary_token10] = ACTIONS(1030), - [aux_sym_expr_binary_token11] = ACTIONS(1030), - [aux_sym_expr_binary_token12] = ACTIONS(1030), - [aux_sym_expr_binary_token13] = ACTIONS(1030), - [aux_sym_expr_binary_token14] = ACTIONS(1030), - [aux_sym_expr_binary_token15] = ACTIONS(1030), - [aux_sym_expr_binary_token16] = ACTIONS(1030), - [aux_sym_expr_binary_token17] = ACTIONS(1030), - [aux_sym_expr_binary_token18] = ACTIONS(1030), - [aux_sym_expr_binary_token19] = ACTIONS(1030), - [aux_sym_expr_binary_token20] = ACTIONS(1030), - [aux_sym_expr_binary_token21] = ACTIONS(1030), - [aux_sym_expr_binary_token22] = ACTIONS(1030), - [aux_sym_expr_binary_token23] = ACTIONS(1030), - [aux_sym_expr_binary_token24] = ACTIONS(1030), - [aux_sym_expr_binary_token25] = ACTIONS(1030), - [aux_sym_expr_binary_token26] = ACTIONS(1030), - [aux_sym_expr_binary_token27] = ACTIONS(1030), - [aux_sym_expr_binary_token28] = ACTIONS(1030), - [anon_sym_DOT] = ACTIONS(1030), - [anon_sym_err_GT] = ACTIONS(1028), - [anon_sym_out_GT] = ACTIONS(1028), - [anon_sym_e_GT] = ACTIONS(1028), - [anon_sym_o_GT] = ACTIONS(1028), - [anon_sym_err_PLUSout_GT] = ACTIONS(1028), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1028), - [anon_sym_o_PLUSe_GT] = ACTIONS(1028), - [anon_sym_e_PLUSo_GT] = ACTIONS(1028), - [anon_sym_err_GT_GT] = ACTIONS(1030), - [anon_sym_out_GT_GT] = ACTIONS(1030), - [anon_sym_e_GT_GT] = ACTIONS(1030), - [anon_sym_o_GT_GT] = ACTIONS(1030), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1030), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1030), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1030), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1030), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(1192), + [sym__newline] = ACTIONS(1664), + [anon_sym_SEMI] = ACTIONS(1668), + [anon_sym_PIPE] = ACTIONS(1668), + [anon_sym_err_GT_PIPE] = ACTIONS(1668), + [anon_sym_out_GT_PIPE] = ACTIONS(1668), + [anon_sym_e_GT_PIPE] = ACTIONS(1668), + [anon_sym_o_GT_PIPE] = ACTIONS(1668), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1668), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1668), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1668), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1668), + [anon_sym_RPAREN] = ACTIONS(1668), + [anon_sym_LBRACE] = ACTIONS(1668), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1668), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1668), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1668), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1668), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1668), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1668), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1668), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1668), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1668), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1668), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1668), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1668), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1668), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1668), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1668), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1668), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1668), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1668), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1668), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1668), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1668), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1668), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1668), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1668), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1668), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1668), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1668), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1668), + [anon_sym_DOT_DOT2] = ACTIONS(1664), + [anon_sym_DOT] = ACTIONS(4008), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1668), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1668), + [anon_sym_err_GT] = ACTIONS(1664), + [anon_sym_out_GT] = ACTIONS(1664), + [anon_sym_e_GT] = ACTIONS(1664), + [anon_sym_o_GT] = ACTIONS(1664), + [anon_sym_err_PLUSout_GT] = ACTIONS(1664), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1664), + [anon_sym_o_PLUSe_GT] = ACTIONS(1664), + [anon_sym_e_PLUSo_GT] = ACTIONS(1664), + [anon_sym_err_GT_GT] = ACTIONS(1668), + [anon_sym_out_GT_GT] = ACTIONS(1668), + [anon_sym_e_GT_GT] = ACTIONS(1668), + [anon_sym_o_GT_GT] = ACTIONS(1668), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1668), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1668), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1668), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1668), + [anon_sym_POUND] = ACTIONS(249), }, [1472] = { + [sym_cell_path] = STATE(1635), + [sym_path] = STATE(1268), [sym_comment] = STATE(1472), - [ts_builtin_sym_end] = ACTIONS(2143), - [anon_sym_true] = ACTIONS(2143), - [anon_sym_false] = ACTIONS(2143), - [anon_sym_null] = ACTIONS(2143), - [aux_sym_cmd_identifier_token38] = ACTIONS(2143), - [aux_sym_cmd_identifier_token39] = ACTIONS(2143), - [aux_sym_cmd_identifier_token40] = ACTIONS(2143), - [sym__newline] = ACTIONS(2143), - [anon_sym_SEMI] = ACTIONS(2143), - [anon_sym_PIPE] = ACTIONS(2143), - [anon_sym_err_GT_PIPE] = ACTIONS(2143), - [anon_sym_out_GT_PIPE] = ACTIONS(2143), - [anon_sym_e_GT_PIPE] = ACTIONS(2143), - [anon_sym_o_GT_PIPE] = ACTIONS(2143), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2143), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2143), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2143), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2143), - [anon_sym_LBRACK] = ACTIONS(2143), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_DOLLAR] = ACTIONS(2141), - [anon_sym_DASH_DASH] = ACTIONS(2143), - [anon_sym_DASH] = ACTIONS(2141), - [anon_sym_LBRACE] = ACTIONS(2143), - [anon_sym_DOT_DOT] = ACTIONS(2141), - [anon_sym_DOT_DOT2] = ACTIONS(2141), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2141), - [anon_sym_DOT_DOT_LT] = ACTIONS(2141), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2143), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2143), - [aux_sym__val_number_decimal_token1] = ACTIONS(2141), - [aux_sym__val_number_decimal_token2] = ACTIONS(2143), - [aux_sym__val_number_decimal_token3] = ACTIONS(2143), - [aux_sym__val_number_decimal_token4] = ACTIONS(2143), - [aux_sym__val_number_token1] = ACTIONS(2143), - [aux_sym__val_number_token2] = ACTIONS(2143), - [aux_sym__val_number_token3] = ACTIONS(2143), - [anon_sym_0b] = ACTIONS(2141), - [anon_sym_0o] = ACTIONS(2141), - [anon_sym_0x] = ACTIONS(2141), - [sym_val_date] = ACTIONS(2143), - [anon_sym_DQUOTE] = ACTIONS(2143), - [sym__str_single_quotes] = ACTIONS(2143), - [sym__str_back_ticks] = ACTIONS(2143), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2143), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2143), - [anon_sym_err_GT] = ACTIONS(2141), - [anon_sym_out_GT] = ACTIONS(2141), - [anon_sym_e_GT] = ACTIONS(2141), - [anon_sym_o_GT] = ACTIONS(2141), - [anon_sym_err_PLUSout_GT] = ACTIONS(2141), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2141), - [anon_sym_o_PLUSe_GT] = ACTIONS(2141), - [anon_sym_e_PLUSo_GT] = ACTIONS(2141), - [anon_sym_err_GT_GT] = ACTIONS(2143), - [anon_sym_out_GT_GT] = ACTIONS(2143), - [anon_sym_e_GT_GT] = ACTIONS(2143), - [anon_sym_o_GT_GT] = ACTIONS(2143), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2143), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2143), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2143), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2143), - [aux_sym_unquoted_token1] = ACTIONS(2141), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(1192), + [sym__newline] = ACTIONS(1670), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_PIPE] = ACTIONS(1672), + [anon_sym_err_GT_PIPE] = ACTIONS(1672), + [anon_sym_out_GT_PIPE] = ACTIONS(1672), + [anon_sym_e_GT_PIPE] = ACTIONS(1672), + [anon_sym_o_GT_PIPE] = ACTIONS(1672), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1672), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1672), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1672), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1672), + [anon_sym_RPAREN] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1672), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1672), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1672), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1672), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1672), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1672), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1672), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1672), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1672), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1672), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1672), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1672), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1672), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1672), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1672), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1672), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1672), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1672), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1672), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1672), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1672), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1672), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1672), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1672), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1672), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1672), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1672), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1672), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1672), + [anon_sym_DOT_DOT2] = ACTIONS(1670), + [anon_sym_DOT] = ACTIONS(4008), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1672), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1672), + [anon_sym_err_GT] = ACTIONS(1670), + [anon_sym_out_GT] = ACTIONS(1670), + [anon_sym_e_GT] = ACTIONS(1670), + [anon_sym_o_GT] = ACTIONS(1670), + [anon_sym_err_PLUSout_GT] = ACTIONS(1670), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1670), + [anon_sym_o_PLUSe_GT] = ACTIONS(1670), + [anon_sym_e_PLUSo_GT] = ACTIONS(1670), + [anon_sym_err_GT_GT] = ACTIONS(1672), + [anon_sym_out_GT_GT] = ACTIONS(1672), + [anon_sym_e_GT_GT] = ACTIONS(1672), + [anon_sym_o_GT_GT] = ACTIONS(1672), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1672), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1672), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1672), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1672), + [anon_sym_POUND] = ACTIONS(249), }, [1473] = { [sym_comment] = STATE(1473), - [anon_sym_true] = ACTIONS(1740), - [anon_sym_false] = ACTIONS(1740), - [anon_sym_null] = ACTIONS(1740), - [aux_sym_cmd_identifier_token38] = ACTIONS(1740), - [aux_sym_cmd_identifier_token39] = ACTIONS(1740), - [aux_sym_cmd_identifier_token40] = ACTIONS(1740), - [sym__newline] = ACTIONS(1740), - [anon_sym_SEMI] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1740), - [anon_sym_err_GT_PIPE] = ACTIONS(1740), - [anon_sym_out_GT_PIPE] = ACTIONS(1740), - [anon_sym_e_GT_PIPE] = ACTIONS(1740), - [anon_sym_o_GT_PIPE] = ACTIONS(1740), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1740), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1740), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1740), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1740), - [anon_sym_LBRACK] = ACTIONS(1740), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_RPAREN] = ACTIONS(1740), - [anon_sym_DOLLAR] = ACTIONS(1738), - [anon_sym_DASH_DASH] = ACTIONS(1740), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_LBRACE] = ACTIONS(1740), - [anon_sym_RBRACE] = ACTIONS(1740), - [anon_sym_DOT_DOT] = ACTIONS(1738), - [anon_sym_LPAREN2] = ACTIONS(1740), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1740), - [anon_sym_DOT_DOT_LT] = ACTIONS(1740), - [aux_sym__val_number_decimal_token1] = ACTIONS(1738), - [aux_sym__val_number_decimal_token2] = ACTIONS(1740), - [aux_sym__val_number_decimal_token3] = ACTIONS(1740), - [aux_sym__val_number_decimal_token4] = ACTIONS(1740), - [aux_sym__val_number_token1] = ACTIONS(1740), - [aux_sym__val_number_token2] = ACTIONS(1740), - [aux_sym__val_number_token3] = ACTIONS(1740), - [anon_sym_0b] = ACTIONS(1738), - [anon_sym_0o] = ACTIONS(1738), - [anon_sym_0x] = ACTIONS(1738), - [sym_val_date] = ACTIONS(1740), - [anon_sym_DQUOTE] = ACTIONS(1740), - [sym__str_single_quotes] = ACTIONS(1740), - [sym__str_back_ticks] = ACTIONS(1740), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1740), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1740), - [anon_sym_err_GT] = ACTIONS(1738), - [anon_sym_out_GT] = ACTIONS(1738), - [anon_sym_e_GT] = ACTIONS(1738), - [anon_sym_o_GT] = ACTIONS(1738), - [anon_sym_err_PLUSout_GT] = ACTIONS(1738), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1738), - [anon_sym_o_PLUSe_GT] = ACTIONS(1738), - [anon_sym_e_PLUSo_GT] = ACTIONS(1738), - [anon_sym_err_GT_GT] = ACTIONS(1740), - [anon_sym_out_GT_GT] = ACTIONS(1740), - [anon_sym_e_GT_GT] = ACTIONS(1740), - [anon_sym_o_GT_GT] = ACTIONS(1740), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1740), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1740), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1740), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1740), - [aux_sym_unquoted_token1] = ACTIONS(1738), - [aux_sym_unquoted_token2] = ACTIONS(1738), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(2250), + [anon_sym_false] = ACTIONS(2250), + [anon_sym_null] = ACTIONS(2250), + [aux_sym_cmd_identifier_token38] = ACTIONS(2250), + [aux_sym_cmd_identifier_token39] = ACTIONS(2250), + [aux_sym_cmd_identifier_token40] = ACTIONS(2250), + [sym__newline] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(2250), + [anon_sym_PIPE] = ACTIONS(2250), + [anon_sym_err_GT_PIPE] = ACTIONS(2250), + [anon_sym_out_GT_PIPE] = ACTIONS(2250), + [anon_sym_e_GT_PIPE] = ACTIONS(2250), + [anon_sym_o_GT_PIPE] = ACTIONS(2250), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2250), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2250), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2250), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2250), + [anon_sym_LBRACK] = ACTIONS(2250), + [anon_sym_LPAREN] = ACTIONS(2246), + [anon_sym_RPAREN] = ACTIONS(2250), + [anon_sym_DOLLAR] = ACTIONS(2246), + [anon_sym_DASH_DASH] = ACTIONS(2250), + [anon_sym_DASH] = ACTIONS(2246), + [anon_sym_LBRACE] = ACTIONS(2250), + [anon_sym_RBRACE] = ACTIONS(2250), + [anon_sym_DOT_DOT] = ACTIONS(2246), + [anon_sym_LPAREN2] = ACTIONS(2248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2250), + [anon_sym_DOT_DOT_LT] = ACTIONS(2250), + [aux_sym__val_number_decimal_token1] = ACTIONS(2246), + [aux_sym__val_number_decimal_token2] = ACTIONS(2250), + [aux_sym__val_number_decimal_token3] = ACTIONS(2250), + [aux_sym__val_number_decimal_token4] = ACTIONS(2250), + [aux_sym__val_number_token1] = ACTIONS(2250), + [aux_sym__val_number_token2] = ACTIONS(2250), + [aux_sym__val_number_token3] = ACTIONS(2250), + [anon_sym_0b] = ACTIONS(2246), + [anon_sym_0o] = ACTIONS(2246), + [anon_sym_0x] = ACTIONS(2246), + [sym_val_date] = ACTIONS(2250), + [anon_sym_DQUOTE] = ACTIONS(2250), + [sym__str_single_quotes] = ACTIONS(2250), + [sym__str_back_ticks] = ACTIONS(2250), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2250), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2250), + [anon_sym_err_GT] = ACTIONS(2246), + [anon_sym_out_GT] = ACTIONS(2246), + [anon_sym_e_GT] = ACTIONS(2246), + [anon_sym_o_GT] = ACTIONS(2246), + [anon_sym_err_PLUSout_GT] = ACTIONS(2246), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2246), + [anon_sym_o_PLUSe_GT] = ACTIONS(2246), + [anon_sym_e_PLUSo_GT] = ACTIONS(2246), + [anon_sym_err_GT_GT] = ACTIONS(2250), + [anon_sym_out_GT_GT] = ACTIONS(2250), + [anon_sym_e_GT_GT] = ACTIONS(2250), + [anon_sym_o_GT_GT] = ACTIONS(2250), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2250), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2250), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2250), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2250), + [aux_sym_unquoted_token1] = ACTIONS(2246), + [aux_sym_unquoted_token2] = ACTIONS(2252), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2250), }, [1474] = { [sym_comment] = STATE(1474), - [ts_builtin_sym_end] = ACTIONS(1655), - [sym__newline] = ACTIONS(1655), - [anon_sym_SEMI] = ACTIONS(1655), - [anon_sym_PIPE] = ACTIONS(1655), - [anon_sym_err_GT_PIPE] = ACTIONS(1655), - [anon_sym_out_GT_PIPE] = ACTIONS(1655), - [anon_sym_e_GT_PIPE] = ACTIONS(1655), - [anon_sym_o_GT_PIPE] = ACTIONS(1655), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1655), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1655), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1655), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1655), - [anon_sym_LPAREN2] = ACTIONS(1655), - [aux_sym_expr_binary_token1] = ACTIONS(1655), - [aux_sym_expr_binary_token2] = ACTIONS(1655), - [aux_sym_expr_binary_token3] = ACTIONS(1655), - [aux_sym_expr_binary_token4] = ACTIONS(1655), - [aux_sym_expr_binary_token5] = ACTIONS(1655), - [aux_sym_expr_binary_token6] = ACTIONS(1655), - [aux_sym_expr_binary_token7] = ACTIONS(1655), - [aux_sym_expr_binary_token8] = ACTIONS(1655), - [aux_sym_expr_binary_token9] = ACTIONS(1655), - [aux_sym_expr_binary_token10] = ACTIONS(1655), - [aux_sym_expr_binary_token11] = ACTIONS(1655), - [aux_sym_expr_binary_token12] = ACTIONS(1655), - [aux_sym_expr_binary_token13] = ACTIONS(1655), - [aux_sym_expr_binary_token14] = ACTIONS(1655), - [aux_sym_expr_binary_token15] = ACTIONS(1655), - [aux_sym_expr_binary_token16] = ACTIONS(1655), - [aux_sym_expr_binary_token17] = ACTIONS(1655), - [aux_sym_expr_binary_token18] = ACTIONS(1655), - [aux_sym_expr_binary_token19] = ACTIONS(1655), - [aux_sym_expr_binary_token20] = ACTIONS(1655), - [aux_sym_expr_binary_token21] = ACTIONS(1655), - [aux_sym_expr_binary_token22] = ACTIONS(1655), - [aux_sym_expr_binary_token23] = ACTIONS(1655), - [aux_sym_expr_binary_token24] = ACTIONS(1655), - [aux_sym_expr_binary_token25] = ACTIONS(1655), - [aux_sym_expr_binary_token26] = ACTIONS(1655), - [aux_sym_expr_binary_token27] = ACTIONS(1655), - [aux_sym_expr_binary_token28] = ACTIONS(1655), - [anon_sym_DOT_DOT2] = ACTIONS(1653), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1655), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1655), - [sym_filesize_unit] = ACTIONS(1655), - [sym_duration_unit] = ACTIONS(1655), - [anon_sym_err_GT] = ACTIONS(1653), - [anon_sym_out_GT] = ACTIONS(1653), - [anon_sym_e_GT] = ACTIONS(1653), - [anon_sym_o_GT] = ACTIONS(1653), - [anon_sym_err_PLUSout_GT] = ACTIONS(1653), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1653), - [anon_sym_o_PLUSe_GT] = ACTIONS(1653), - [anon_sym_e_PLUSo_GT] = ACTIONS(1653), - [anon_sym_err_GT_GT] = ACTIONS(1655), - [anon_sym_out_GT_GT] = ACTIONS(1655), - [anon_sym_e_GT_GT] = ACTIONS(1655), - [anon_sym_o_GT_GT] = ACTIONS(1655), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1655), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1655), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1655), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1655), - [aux_sym_unquoted_token2] = ACTIONS(1653), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(1050), + [anon_sym_false] = ACTIONS(1050), + [anon_sym_null] = ACTIONS(1050), + [aux_sym_cmd_identifier_token38] = ACTIONS(1050), + [aux_sym_cmd_identifier_token39] = ACTIONS(1050), + [aux_sym_cmd_identifier_token40] = ACTIONS(1050), + [sym__newline] = ACTIONS(1050), + [anon_sym_SEMI] = ACTIONS(1050), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_err_GT_PIPE] = ACTIONS(1050), + [anon_sym_out_GT_PIPE] = ACTIONS(1050), + [anon_sym_e_GT_PIPE] = ACTIONS(1050), + [anon_sym_o_GT_PIPE] = ACTIONS(1050), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1050), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1050), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1050), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1050), + [anon_sym_LBRACK] = ACTIONS(1050), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_RPAREN] = ACTIONS(1050), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH_DASH] = ACTIONS(1050), + [anon_sym_DASH] = ACTIONS(1048), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(1050), + [anon_sym_DOT_DOT] = ACTIONS(1048), + [anon_sym_QMARK2] = ACTIONS(4933), + [anon_sym_DOT] = ACTIONS(1048), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1050), + [anon_sym_DOT_DOT_LT] = ACTIONS(1050), + [aux_sym__val_number_decimal_token1] = ACTIONS(1048), + [aux_sym__val_number_decimal_token2] = ACTIONS(1050), + [aux_sym__val_number_decimal_token3] = ACTIONS(1050), + [aux_sym__val_number_decimal_token4] = ACTIONS(1050), + [aux_sym__val_number_token1] = ACTIONS(1050), + [aux_sym__val_number_token2] = ACTIONS(1050), + [aux_sym__val_number_token3] = ACTIONS(1050), + [anon_sym_0b] = ACTIONS(1048), + [anon_sym_0o] = ACTIONS(1048), + [anon_sym_0x] = ACTIONS(1048), + [sym_val_date] = ACTIONS(1050), + [anon_sym_DQUOTE] = ACTIONS(1050), + [sym__str_single_quotes] = ACTIONS(1050), + [sym__str_back_ticks] = ACTIONS(1050), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1050), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1050), + [anon_sym_err_GT] = ACTIONS(1048), + [anon_sym_out_GT] = ACTIONS(1048), + [anon_sym_e_GT] = ACTIONS(1048), + [anon_sym_o_GT] = ACTIONS(1048), + [anon_sym_err_PLUSout_GT] = ACTIONS(1048), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1048), + [anon_sym_o_PLUSe_GT] = ACTIONS(1048), + [anon_sym_e_PLUSo_GT] = ACTIONS(1048), + [anon_sym_err_GT_GT] = ACTIONS(1050), + [anon_sym_out_GT_GT] = ACTIONS(1050), + [anon_sym_e_GT_GT] = ACTIONS(1050), + [anon_sym_o_GT_GT] = ACTIONS(1050), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1050), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1050), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1050), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1050), + [aux_sym_unquoted_token1] = ACTIONS(1048), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1050), }, [1475] = { + [sym_cmd_identifier] = STATE(4187), + [sym__command_name] = STATE(6687), + [sym_scope_pattern] = STATE(6280), + [sym_command_list] = STATE(6691), + [sym__val_number_decimal] = STATE(7312), + [sym_val_string] = STATE(4162), + [sym__raw_str] = STATE(4434), + [sym__str_double_quotes] = STATE(4434), [sym_comment] = STATE(1475), - [anon_sym_true] = ACTIONS(1070), - [anon_sym_false] = ACTIONS(1070), - [anon_sym_null] = ACTIONS(1070), - [aux_sym_cmd_identifier_token38] = ACTIONS(1070), - [aux_sym_cmd_identifier_token39] = ACTIONS(1070), - [aux_sym_cmd_identifier_token40] = ACTIONS(1070), - [sym__newline] = ACTIONS(1072), - [anon_sym_SEMI] = ACTIONS(1072), - [anon_sym_PIPE] = ACTIONS(1072), - [anon_sym_err_GT_PIPE] = ACTIONS(1072), - [anon_sym_out_GT_PIPE] = ACTIONS(1072), - [anon_sym_e_GT_PIPE] = ACTIONS(1072), - [anon_sym_o_GT_PIPE] = ACTIONS(1072), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1072), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1072), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1072), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1072), - [anon_sym_LBRACK] = ACTIONS(1072), - [anon_sym_LPAREN] = ACTIONS(1070), - [anon_sym_RPAREN] = ACTIONS(1072), - [anon_sym_DOLLAR] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_DASH] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1072), - [anon_sym_RBRACE] = ACTIONS(1072), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [anon_sym_LPAREN2] = ACTIONS(2225), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1070), - [anon_sym_DOT_DOT_LT] = ACTIONS(1070), - [aux_sym__val_number_decimal_token1] = ACTIONS(1070), - [aux_sym__val_number_decimal_token2] = ACTIONS(1070), - [aux_sym__val_number_decimal_token3] = ACTIONS(1070), - [aux_sym__val_number_decimal_token4] = ACTIONS(1070), - [aux_sym__val_number_token1] = ACTIONS(1070), - [aux_sym__val_number_token2] = ACTIONS(1070), - [aux_sym__val_number_token3] = ACTIONS(1070), - [anon_sym_0b] = ACTIONS(1070), - [anon_sym_0o] = ACTIONS(1070), - [anon_sym_0x] = ACTIONS(1070), - [sym_val_date] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1072), - [sym__str_single_quotes] = ACTIONS(1072), - [sym__str_back_ticks] = ACTIONS(1072), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1072), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1072), - [anon_sym_err_GT] = ACTIONS(1070), - [anon_sym_out_GT] = ACTIONS(1070), - [anon_sym_e_GT] = ACTIONS(1070), - [anon_sym_o_GT] = ACTIONS(1070), - [anon_sym_err_PLUSout_GT] = ACTIONS(1070), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1070), - [anon_sym_o_PLUSe_GT] = ACTIONS(1070), - [anon_sym_e_PLUSo_GT] = ACTIONS(1070), - [anon_sym_err_GT_GT] = ACTIONS(1070), - [anon_sym_out_GT_GT] = ACTIONS(1070), - [anon_sym_e_GT_GT] = ACTIONS(1070), - [anon_sym_o_GT_GT] = ACTIONS(1070), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1070), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1070), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1070), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1070), - [aux_sym_unquoted_token1] = ACTIONS(1070), - [aux_sym_unquoted_token4] = ACTIONS(2227), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_cmd_identifier_token1] = ACTIONS(4889), + [aux_sym_cmd_identifier_token2] = ACTIONS(4891), + [aux_sym_cmd_identifier_token3] = ACTIONS(4891), + [aux_sym_cmd_identifier_token4] = ACTIONS(4891), + [aux_sym_cmd_identifier_token5] = ACTIONS(4891), + [aux_sym_cmd_identifier_token6] = ACTIONS(4891), + [aux_sym_cmd_identifier_token7] = ACTIONS(4891), + [aux_sym_cmd_identifier_token8] = ACTIONS(4891), + [aux_sym_cmd_identifier_token9] = ACTIONS(4889), + [aux_sym_cmd_identifier_token10] = ACTIONS(4891), + [aux_sym_cmd_identifier_token11] = ACTIONS(4891), + [aux_sym_cmd_identifier_token12] = ACTIONS(4891), + [aux_sym_cmd_identifier_token13] = ACTIONS(4889), + [aux_sym_cmd_identifier_token14] = ACTIONS(4891), + [aux_sym_cmd_identifier_token15] = ACTIONS(4889), + [aux_sym_cmd_identifier_token16] = ACTIONS(4891), + [aux_sym_cmd_identifier_token17] = ACTIONS(4891), + [aux_sym_cmd_identifier_token18] = ACTIONS(4891), + [aux_sym_cmd_identifier_token19] = ACTIONS(4891), + [aux_sym_cmd_identifier_token20] = ACTIONS(4891), + [aux_sym_cmd_identifier_token21] = ACTIONS(4891), + [aux_sym_cmd_identifier_token22] = ACTIONS(4891), + [aux_sym_cmd_identifier_token23] = ACTIONS(4891), + [aux_sym_cmd_identifier_token24] = ACTIONS(4891), + [aux_sym_cmd_identifier_token25] = ACTIONS(4891), + [aux_sym_cmd_identifier_token26] = ACTIONS(4891), + [aux_sym_cmd_identifier_token27] = ACTIONS(4891), + [aux_sym_cmd_identifier_token28] = ACTIONS(4891), + [aux_sym_cmd_identifier_token29] = ACTIONS(4891), + [aux_sym_cmd_identifier_token30] = ACTIONS(4891), + [aux_sym_cmd_identifier_token31] = ACTIONS(4891), + [aux_sym_cmd_identifier_token32] = ACTIONS(4891), + [aux_sym_cmd_identifier_token33] = ACTIONS(4891), + [aux_sym_cmd_identifier_token34] = ACTIONS(4891), + [aux_sym_cmd_identifier_token35] = ACTIONS(4891), + [aux_sym_cmd_identifier_token36] = ACTIONS(4889), + [anon_sym_true] = ACTIONS(4893), + [anon_sym_false] = ACTIONS(4893), + [anon_sym_null] = ACTIONS(4893), + [aux_sym_cmd_identifier_token38] = ACTIONS(4895), + [aux_sym_cmd_identifier_token39] = ACTIONS(4893), + [aux_sym_cmd_identifier_token40] = ACTIONS(4893), + [sym__newline] = ACTIONS(4935), + [anon_sym_SEMI] = ACTIONS(4935), + [anon_sym_LBRACK] = ACTIONS(4899), + [anon_sym_RPAREN] = ACTIONS(4935), + [anon_sym_RBRACE] = ACTIONS(4935), + [sym_wild_card] = ACTIONS(4901), + [aux_sym__val_number_decimal_token1] = ACTIONS(1343), + [aux_sym__val_number_decimal_token2] = ACTIONS(1343), + [aux_sym__val_number_decimal_token3] = ACTIONS(1345), + [aux_sym__val_number_decimal_token4] = ACTIONS(1347), + [anon_sym_DQUOTE] = ACTIONS(3842), + [sym__str_single_quotes] = ACTIONS(3844), + [sym__str_back_ticks] = ACTIONS(3844), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(3848), }, [1476] = { [sym_comment] = STATE(1476), - [anon_sym_true] = ACTIONS(4828), - [anon_sym_false] = ACTIONS(4828), - [anon_sym_null] = ACTIONS(4828), - [aux_sym_cmd_identifier_token38] = ACTIONS(4828), - [aux_sym_cmd_identifier_token39] = ACTIONS(4828), - [aux_sym_cmd_identifier_token40] = ACTIONS(4828), - [sym__newline] = ACTIONS(4828), - [anon_sym_SEMI] = ACTIONS(4828), - [anon_sym_PIPE] = ACTIONS(4828), - [anon_sym_err_GT_PIPE] = ACTIONS(4828), - [anon_sym_out_GT_PIPE] = ACTIONS(4828), - [anon_sym_e_GT_PIPE] = ACTIONS(4828), - [anon_sym_o_GT_PIPE] = ACTIONS(4828), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4828), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4828), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4828), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4828), - [anon_sym_LBRACK] = ACTIONS(4828), - [anon_sym_LPAREN] = ACTIONS(4828), - [anon_sym_RPAREN] = ACTIONS(4828), - [anon_sym_DOLLAR] = ACTIONS(4830), - [anon_sym_DASH_DASH] = ACTIONS(4828), - [anon_sym_DASH] = ACTIONS(4830), - [anon_sym_LBRACE] = ACTIONS(4828), - [anon_sym_DOT_DOT] = ACTIONS(4830), - [anon_sym_DOT_DOT2] = ACTIONS(4716), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4830), - [anon_sym_DOT_DOT_LT] = ACTIONS(4830), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4718), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4718), - [aux_sym__val_number_decimal_token1] = ACTIONS(4830), - [aux_sym__val_number_decimal_token2] = ACTIONS(4828), - [aux_sym__val_number_decimal_token3] = ACTIONS(4828), - [aux_sym__val_number_decimal_token4] = ACTIONS(4828), - [aux_sym__val_number_token1] = ACTIONS(4828), - [aux_sym__val_number_token2] = ACTIONS(4828), - [aux_sym__val_number_token3] = ACTIONS(4828), - [anon_sym_0b] = ACTIONS(4830), - [anon_sym_0o] = ACTIONS(4830), - [anon_sym_0x] = ACTIONS(4830), - [sym_val_date] = ACTIONS(4828), - [anon_sym_DQUOTE] = ACTIONS(4828), - [sym__str_single_quotes] = ACTIONS(4828), - [sym__str_back_ticks] = ACTIONS(4828), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4828), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4828), - [anon_sym_err_GT] = ACTIONS(4830), - [anon_sym_out_GT] = ACTIONS(4830), - [anon_sym_e_GT] = ACTIONS(4830), - [anon_sym_o_GT] = ACTIONS(4830), - [anon_sym_err_PLUSout_GT] = ACTIONS(4830), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4830), - [anon_sym_o_PLUSe_GT] = ACTIONS(4830), - [anon_sym_e_PLUSo_GT] = ACTIONS(4830), - [anon_sym_err_GT_GT] = ACTIONS(4828), - [anon_sym_out_GT_GT] = ACTIONS(4828), - [anon_sym_e_GT_GT] = ACTIONS(4828), - [anon_sym_o_GT_GT] = ACTIONS(4828), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4828), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4828), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4828), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4828), - [aux_sym_unquoted_token1] = ACTIONS(4830), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(4937), + [anon_sym_false] = ACTIONS(4937), + [anon_sym_null] = ACTIONS(4937), + [aux_sym_cmd_identifier_token38] = ACTIONS(4937), + [aux_sym_cmd_identifier_token39] = ACTIONS(4939), + [aux_sym_cmd_identifier_token40] = ACTIONS(4937), + [sym_long_flag_identifier] = ACTIONS(4941), + [sym__newline] = ACTIONS(4939), + [anon_sym_SEMI] = ACTIONS(4939), + [anon_sym_PIPE] = ACTIONS(4939), + [anon_sym_err_GT_PIPE] = ACTIONS(4939), + [anon_sym_out_GT_PIPE] = ACTIONS(4939), + [anon_sym_e_GT_PIPE] = ACTIONS(4939), + [anon_sym_o_GT_PIPE] = ACTIONS(4939), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4939), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4939), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4939), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4939), + [anon_sym_LBRACK] = ACTIONS(4939), + [anon_sym_LPAREN] = ACTIONS(4939), + [anon_sym_RPAREN] = ACTIONS(4939), + [anon_sym_DOLLAR] = ACTIONS(4937), + [anon_sym_DASH_DASH] = ACTIONS(4939), + [anon_sym_DASH] = ACTIONS(4937), + [anon_sym_LBRACE] = ACTIONS(4939), + [anon_sym_RBRACE] = ACTIONS(4939), + [anon_sym_DOT_DOT] = ACTIONS(4937), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4939), + [anon_sym_DOT_DOT_LT] = ACTIONS(4939), + [aux_sym__val_number_decimal_token1] = ACTIONS(4937), + [aux_sym__val_number_decimal_token2] = ACTIONS(4939), + [aux_sym__val_number_decimal_token3] = ACTIONS(4939), + [aux_sym__val_number_decimal_token4] = ACTIONS(4939), + [aux_sym__val_number_token1] = ACTIONS(4937), + [aux_sym__val_number_token2] = ACTIONS(4937), + [aux_sym__val_number_token3] = ACTIONS(4937), + [anon_sym_0b] = ACTIONS(4937), + [anon_sym_0o] = ACTIONS(4937), + [anon_sym_0x] = ACTIONS(4937), + [sym_val_date] = ACTIONS(4937), + [anon_sym_DQUOTE] = ACTIONS(4939), + [sym__str_single_quotes] = ACTIONS(4939), + [sym__str_back_ticks] = ACTIONS(4939), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4939), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4939), + [anon_sym_err_GT] = ACTIONS(4937), + [anon_sym_out_GT] = ACTIONS(4937), + [anon_sym_e_GT] = ACTIONS(4937), + [anon_sym_o_GT] = ACTIONS(4937), + [anon_sym_err_PLUSout_GT] = ACTIONS(4937), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4937), + [anon_sym_o_PLUSe_GT] = ACTIONS(4937), + [anon_sym_e_PLUSo_GT] = ACTIONS(4937), + [anon_sym_err_GT_GT] = ACTIONS(4939), + [anon_sym_out_GT_GT] = ACTIONS(4939), + [anon_sym_e_GT_GT] = ACTIONS(4939), + [anon_sym_o_GT_GT] = ACTIONS(4939), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4939), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4939), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4939), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4939), + [anon_sym_EQ2] = ACTIONS(4943), + [aux_sym_unquoted_token1] = ACTIONS(4937), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(4939), }, [1477] = { [sym_comment] = STATE(1477), - [anon_sym_true] = ACTIONS(1030), - [anon_sym_false] = ACTIONS(1030), - [anon_sym_null] = ACTIONS(1030), - [aux_sym_cmd_identifier_token38] = ACTIONS(1030), - [aux_sym_cmd_identifier_token39] = ACTIONS(1030), - [aux_sym_cmd_identifier_token40] = ACTIONS(1030), - [sym__newline] = ACTIONS(1030), - [anon_sym_SEMI] = ACTIONS(1030), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_err_GT_PIPE] = ACTIONS(1030), - [anon_sym_out_GT_PIPE] = ACTIONS(1030), - [anon_sym_e_GT_PIPE] = ACTIONS(1030), - [anon_sym_o_GT_PIPE] = ACTIONS(1030), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1030), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1030), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1030), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1030), - [anon_sym_LBRACK] = ACTIONS(1030), - [anon_sym_LPAREN] = ACTIONS(1030), - [anon_sym_RPAREN] = ACTIONS(1030), - [anon_sym_DOLLAR] = ACTIONS(1028), - [anon_sym_DASH_DASH] = ACTIONS(1030), - [anon_sym_DASH] = ACTIONS(1028), - [anon_sym_LBRACE] = ACTIONS(1030), - [anon_sym_RBRACE] = ACTIONS(1030), - [anon_sym_DOT_DOT] = ACTIONS(1028), - [anon_sym_QMARK2] = ACTIONS(4832), - [anon_sym_DOT] = ACTIONS(1028), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1030), - [anon_sym_DOT_DOT_LT] = ACTIONS(1030), - [aux_sym__val_number_decimal_token1] = ACTIONS(1028), - [aux_sym__val_number_decimal_token2] = ACTIONS(1030), - [aux_sym__val_number_decimal_token3] = ACTIONS(1030), - [aux_sym__val_number_decimal_token4] = ACTIONS(1030), - [aux_sym__val_number_token1] = ACTIONS(1030), - [aux_sym__val_number_token2] = ACTIONS(1030), - [aux_sym__val_number_token3] = ACTIONS(1030), - [anon_sym_0b] = ACTIONS(1028), - [anon_sym_0o] = ACTIONS(1028), - [anon_sym_0x] = ACTIONS(1028), - [sym_val_date] = ACTIONS(1030), - [anon_sym_DQUOTE] = ACTIONS(1030), - [sym__str_single_quotes] = ACTIONS(1030), - [sym__str_back_ticks] = ACTIONS(1030), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1030), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1030), - [anon_sym_err_GT] = ACTIONS(1028), - [anon_sym_out_GT] = ACTIONS(1028), - [anon_sym_e_GT] = ACTIONS(1028), - [anon_sym_o_GT] = ACTIONS(1028), - [anon_sym_err_PLUSout_GT] = ACTIONS(1028), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1028), - [anon_sym_o_PLUSe_GT] = ACTIONS(1028), - [anon_sym_e_PLUSo_GT] = ACTIONS(1028), - [anon_sym_err_GT_GT] = ACTIONS(1030), - [anon_sym_out_GT_GT] = ACTIONS(1030), - [anon_sym_e_GT_GT] = ACTIONS(1030), - [anon_sym_o_GT_GT] = ACTIONS(1030), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1030), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1030), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1030), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1030), - [aux_sym_unquoted_token1] = ACTIONS(1028), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(2289), + [anon_sym_false] = ACTIONS(2289), + [anon_sym_null] = ACTIONS(2289), + [aux_sym_cmd_identifier_token38] = ACTIONS(2289), + [aux_sym_cmd_identifier_token39] = ACTIONS(2289), + [aux_sym_cmd_identifier_token40] = ACTIONS(2289), + [sym__newline] = ACTIONS(2291), + [anon_sym_SEMI] = ACTIONS(2291), + [anon_sym_PIPE] = ACTIONS(2291), + [anon_sym_err_GT_PIPE] = ACTIONS(2291), + [anon_sym_out_GT_PIPE] = ACTIONS(2291), + [anon_sym_e_GT_PIPE] = ACTIONS(2291), + [anon_sym_o_GT_PIPE] = ACTIONS(2291), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2291), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2291), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2291), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2291), + [anon_sym_LBRACK] = ACTIONS(2291), + [anon_sym_LPAREN] = ACTIONS(2289), + [anon_sym_RPAREN] = ACTIONS(2291), + [anon_sym_DOLLAR] = ACTIONS(2289), + [anon_sym_DASH_DASH] = ACTIONS(2289), + [anon_sym_DASH] = ACTIONS(2289), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_RBRACE] = ACTIONS(2291), + [anon_sym_DOT_DOT] = ACTIONS(2289), + [anon_sym_LPAREN2] = ACTIONS(2291), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2289), + [anon_sym_DOT_DOT_LT] = ACTIONS(2289), + [aux_sym__val_number_decimal_token1] = ACTIONS(2289), + [aux_sym__val_number_decimal_token2] = ACTIONS(2289), + [aux_sym__val_number_decimal_token3] = ACTIONS(2289), + [aux_sym__val_number_decimal_token4] = ACTIONS(2289), + [aux_sym__val_number_token1] = ACTIONS(2289), + [aux_sym__val_number_token2] = ACTIONS(2289), + [aux_sym__val_number_token3] = ACTIONS(2289), + [anon_sym_0b] = ACTIONS(2289), + [anon_sym_0o] = ACTIONS(2289), + [anon_sym_0x] = ACTIONS(2289), + [sym_val_date] = ACTIONS(2289), + [anon_sym_DQUOTE] = ACTIONS(2291), + [sym__str_single_quotes] = ACTIONS(2291), + [sym__str_back_ticks] = ACTIONS(2291), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2291), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2291), + [anon_sym_err_GT] = ACTIONS(2289), + [anon_sym_out_GT] = ACTIONS(2289), + [anon_sym_e_GT] = ACTIONS(2289), + [anon_sym_o_GT] = ACTIONS(2289), + [anon_sym_err_PLUSout_GT] = ACTIONS(2289), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2289), + [anon_sym_o_PLUSe_GT] = ACTIONS(2289), + [anon_sym_e_PLUSo_GT] = ACTIONS(2289), + [anon_sym_err_GT_GT] = ACTIONS(2289), + [anon_sym_out_GT_GT] = ACTIONS(2289), + [anon_sym_e_GT_GT] = ACTIONS(2289), + [anon_sym_o_GT_GT] = ACTIONS(2289), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2289), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2289), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2289), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2289), + [aux_sym_unquoted_token1] = ACTIONS(2289), + [aux_sym_unquoted_token4] = ACTIONS(2289), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2291), }, [1478] = { - [sym__expr_parenthesized_immediate] = STATE(7682), [sym_comment] = STATE(1478), - [anon_sym_true] = ACTIONS(4755), - [anon_sym_false] = ACTIONS(4755), - [anon_sym_null] = ACTIONS(4755), - [aux_sym_cmd_identifier_token38] = ACTIONS(4755), - [aux_sym_cmd_identifier_token39] = ACTIONS(4755), - [aux_sym_cmd_identifier_token40] = ACTIONS(4755), - [sym__newline] = ACTIONS(4755), - [anon_sym_SEMI] = ACTIONS(4755), - [anon_sym_PIPE] = ACTIONS(4755), - [anon_sym_err_GT_PIPE] = ACTIONS(4755), - [anon_sym_out_GT_PIPE] = ACTIONS(4755), - [anon_sym_e_GT_PIPE] = ACTIONS(4755), - [anon_sym_o_GT_PIPE] = ACTIONS(4755), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4755), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4755), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4755), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4755), - [anon_sym_LBRACK] = ACTIONS(4755), - [anon_sym_LPAREN] = ACTIONS(4757), - [anon_sym_RPAREN] = ACTIONS(4755), - [anon_sym_DOLLAR] = ACTIONS(4757), - [anon_sym_DASH_DASH] = ACTIONS(4755), - [anon_sym_DASH] = ACTIONS(4757), - [anon_sym_LBRACE] = ACTIONS(4755), - [anon_sym_RBRACE] = ACTIONS(4755), - [anon_sym_DOT_DOT] = ACTIONS(4757), - [anon_sym_LPAREN2] = ACTIONS(3978), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4755), - [anon_sym_DOT_DOT_LT] = ACTIONS(4755), - [aux_sym__val_number_decimal_token1] = ACTIONS(4757), - [aux_sym__val_number_decimal_token2] = ACTIONS(4755), - [aux_sym__val_number_decimal_token3] = ACTIONS(4755), - [aux_sym__val_number_decimal_token4] = ACTIONS(4755), - [aux_sym__val_number_token1] = ACTIONS(4755), - [aux_sym__val_number_token2] = ACTIONS(4755), - [aux_sym__val_number_token3] = ACTIONS(4755), - [anon_sym_0b] = ACTIONS(4757), - [anon_sym_0o] = ACTIONS(4757), - [anon_sym_0x] = ACTIONS(4757), - [sym_val_date] = ACTIONS(4755), - [anon_sym_DQUOTE] = ACTIONS(4755), - [sym__str_single_quotes] = ACTIONS(4755), - [sym__str_back_ticks] = ACTIONS(4755), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4755), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4755), - [anon_sym_err_GT] = ACTIONS(4757), - [anon_sym_out_GT] = ACTIONS(4757), - [anon_sym_e_GT] = ACTIONS(4757), - [anon_sym_o_GT] = ACTIONS(4757), - [anon_sym_err_PLUSout_GT] = ACTIONS(4757), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4757), - [anon_sym_o_PLUSe_GT] = ACTIONS(4757), - [anon_sym_e_PLUSo_GT] = ACTIONS(4757), - [anon_sym_err_GT_GT] = ACTIONS(4755), - [anon_sym_out_GT_GT] = ACTIONS(4755), - [anon_sym_e_GT_GT] = ACTIONS(4755), - [anon_sym_o_GT_GT] = ACTIONS(4755), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4755), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4755), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4755), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4755), - [aux_sym_unquoted_token1] = ACTIONS(4757), - [anon_sym_POUND] = ACTIONS(247), + [ts_builtin_sym_end] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1717), + [anon_sym_false] = ACTIONS(1717), + [anon_sym_null] = ACTIONS(1717), + [aux_sym_cmd_identifier_token38] = ACTIONS(1717), + [aux_sym_cmd_identifier_token39] = ACTIONS(1717), + [aux_sym_cmd_identifier_token40] = ACTIONS(1717), + [sym__newline] = ACTIONS(1717), + [anon_sym_SEMI] = ACTIONS(1717), + [anon_sym_PIPE] = ACTIONS(1717), + [anon_sym_err_GT_PIPE] = ACTIONS(1717), + [anon_sym_out_GT_PIPE] = ACTIONS(1717), + [anon_sym_e_GT_PIPE] = ACTIONS(1717), + [anon_sym_o_GT_PIPE] = ACTIONS(1717), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1717), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1717), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1717), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1717), + [anon_sym_LBRACK] = ACTIONS(1717), + [anon_sym_LPAREN] = ACTIONS(1715), + [anon_sym_DOLLAR] = ACTIONS(1715), + [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_LBRACE] = ACTIONS(1717), + [anon_sym_DOT_DOT] = ACTIONS(1715), + [anon_sym_LPAREN2] = ACTIONS(1717), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1717), + [anon_sym_DOT_DOT_LT] = ACTIONS(1717), + [aux_sym__immediate_decimal_token2] = ACTIONS(4790), + [aux_sym__val_number_decimal_token1] = ACTIONS(1715), + [aux_sym__val_number_decimal_token2] = ACTIONS(1717), + [aux_sym__val_number_decimal_token3] = ACTIONS(1717), + [aux_sym__val_number_decimal_token4] = ACTIONS(1717), + [aux_sym__val_number_token1] = ACTIONS(1717), + [aux_sym__val_number_token2] = ACTIONS(1717), + [aux_sym__val_number_token3] = ACTIONS(1717), + [anon_sym_0b] = ACTIONS(1715), + [anon_sym_0o] = ACTIONS(1715), + [anon_sym_0x] = ACTIONS(1715), + [sym_val_date] = ACTIONS(1717), + [anon_sym_DQUOTE] = ACTIONS(1717), + [sym__str_single_quotes] = ACTIONS(1717), + [sym__str_back_ticks] = ACTIONS(1717), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1717), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1717), + [anon_sym_err_GT] = ACTIONS(1715), + [anon_sym_out_GT] = ACTIONS(1715), + [anon_sym_e_GT] = ACTIONS(1715), + [anon_sym_o_GT] = ACTIONS(1715), + [anon_sym_err_PLUSout_GT] = ACTIONS(1715), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1715), + [anon_sym_o_PLUSe_GT] = ACTIONS(1715), + [anon_sym_e_PLUSo_GT] = ACTIONS(1715), + [anon_sym_err_GT_GT] = ACTIONS(1717), + [anon_sym_out_GT_GT] = ACTIONS(1717), + [anon_sym_e_GT_GT] = ACTIONS(1717), + [anon_sym_o_GT_GT] = ACTIONS(1717), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1717), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1717), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1717), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1717), + [aux_sym_unquoted_token1] = ACTIONS(1715), + [aux_sym_unquoted_token2] = ACTIONS(1715), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1717), }, [1479] = { - [sym__expr_parenthesized_immediate] = STATE(7682), + [sym_cell_path] = STATE(1901), + [sym_path] = STATE(1247), [sym_comment] = STATE(1479), - [anon_sym_true] = ACTIONS(4759), - [anon_sym_false] = ACTIONS(4759), - [anon_sym_null] = ACTIONS(4759), - [aux_sym_cmd_identifier_token38] = ACTIONS(4759), - [aux_sym_cmd_identifier_token39] = ACTIONS(4759), - [aux_sym_cmd_identifier_token40] = ACTIONS(4759), - [sym__newline] = ACTIONS(4759), - [anon_sym_SEMI] = ACTIONS(4759), - [anon_sym_PIPE] = ACTIONS(4759), - [anon_sym_err_GT_PIPE] = ACTIONS(4759), - [anon_sym_out_GT_PIPE] = ACTIONS(4759), - [anon_sym_e_GT_PIPE] = ACTIONS(4759), - [anon_sym_o_GT_PIPE] = ACTIONS(4759), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4759), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4759), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4759), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4759), - [anon_sym_LBRACK] = ACTIONS(4759), - [anon_sym_LPAREN] = ACTIONS(4761), - [anon_sym_RPAREN] = ACTIONS(4759), - [anon_sym_DOLLAR] = ACTIONS(4761), - [anon_sym_DASH_DASH] = ACTIONS(4759), - [anon_sym_DASH] = ACTIONS(4761), - [anon_sym_LBRACE] = ACTIONS(4759), - [anon_sym_RBRACE] = ACTIONS(4759), - [anon_sym_DOT_DOT] = ACTIONS(4761), - [anon_sym_LPAREN2] = ACTIONS(3978), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4759), - [anon_sym_DOT_DOT_LT] = ACTIONS(4759), - [aux_sym__val_number_decimal_token1] = ACTIONS(4761), - [aux_sym__val_number_decimal_token2] = ACTIONS(4759), - [aux_sym__val_number_decimal_token3] = ACTIONS(4759), - [aux_sym__val_number_decimal_token4] = ACTIONS(4759), - [aux_sym__val_number_token1] = ACTIONS(4759), - [aux_sym__val_number_token2] = ACTIONS(4759), - [aux_sym__val_number_token3] = ACTIONS(4759), - [anon_sym_0b] = ACTIONS(4761), - [anon_sym_0o] = ACTIONS(4761), - [anon_sym_0x] = ACTIONS(4761), - [sym_val_date] = ACTIONS(4759), - [anon_sym_DQUOTE] = ACTIONS(4759), - [sym__str_single_quotes] = ACTIONS(4759), - [sym__str_back_ticks] = ACTIONS(4759), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4759), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4759), - [anon_sym_err_GT] = ACTIONS(4761), - [anon_sym_out_GT] = ACTIONS(4761), - [anon_sym_e_GT] = ACTIONS(4761), - [anon_sym_o_GT] = ACTIONS(4761), - [anon_sym_err_PLUSout_GT] = ACTIONS(4761), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4761), - [anon_sym_o_PLUSe_GT] = ACTIONS(4761), - [anon_sym_e_PLUSo_GT] = ACTIONS(4761), - [anon_sym_err_GT_GT] = ACTIONS(4759), - [anon_sym_out_GT_GT] = ACTIONS(4759), - [anon_sym_e_GT_GT] = ACTIONS(4759), - [anon_sym_o_GT_GT] = ACTIONS(4759), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4759), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4759), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4759), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4759), - [aux_sym_unquoted_token1] = ACTIONS(4761), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cell_path_repeat1] = STATE(1202), + [sym__newline] = ACTIONS(1672), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_PIPE] = ACTIONS(1672), + [anon_sym_err_GT_PIPE] = ACTIONS(1672), + [anon_sym_out_GT_PIPE] = ACTIONS(1672), + [anon_sym_e_GT_PIPE] = ACTIONS(1672), + [anon_sym_o_GT_PIPE] = ACTIONS(1672), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1672), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1672), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1672), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1672), + [anon_sym_RPAREN] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(1672), + [aux_sym_expr_binary_token1] = ACTIONS(1672), + [aux_sym_expr_binary_token2] = ACTIONS(1672), + [aux_sym_expr_binary_token3] = ACTIONS(1672), + [aux_sym_expr_binary_token4] = ACTIONS(1672), + [aux_sym_expr_binary_token5] = ACTIONS(1672), + [aux_sym_expr_binary_token6] = ACTIONS(1672), + [aux_sym_expr_binary_token7] = ACTIONS(1672), + [aux_sym_expr_binary_token8] = ACTIONS(1672), + [aux_sym_expr_binary_token9] = ACTIONS(1672), + [aux_sym_expr_binary_token10] = ACTIONS(1672), + [aux_sym_expr_binary_token11] = ACTIONS(1672), + [aux_sym_expr_binary_token12] = ACTIONS(1672), + [aux_sym_expr_binary_token13] = ACTIONS(1672), + [aux_sym_expr_binary_token14] = ACTIONS(1672), + [aux_sym_expr_binary_token15] = ACTIONS(1672), + [aux_sym_expr_binary_token16] = ACTIONS(1672), + [aux_sym_expr_binary_token17] = ACTIONS(1672), + [aux_sym_expr_binary_token18] = ACTIONS(1672), + [aux_sym_expr_binary_token19] = ACTIONS(1672), + [aux_sym_expr_binary_token20] = ACTIONS(1672), + [aux_sym_expr_binary_token21] = ACTIONS(1672), + [aux_sym_expr_binary_token22] = ACTIONS(1672), + [aux_sym_expr_binary_token23] = ACTIONS(1672), + [aux_sym_expr_binary_token24] = ACTIONS(1672), + [aux_sym_expr_binary_token25] = ACTIONS(1672), + [aux_sym_expr_binary_token26] = ACTIONS(1672), + [aux_sym_expr_binary_token27] = ACTIONS(1672), + [aux_sym_expr_binary_token28] = ACTIONS(1672), + [anon_sym_DOT_DOT2] = ACTIONS(1670), + [anon_sym_DOT] = ACTIONS(4143), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1672), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1672), + [anon_sym_err_GT] = ACTIONS(1670), + [anon_sym_out_GT] = ACTIONS(1670), + [anon_sym_e_GT] = ACTIONS(1670), + [anon_sym_o_GT] = ACTIONS(1670), + [anon_sym_err_PLUSout_GT] = ACTIONS(1670), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1670), + [anon_sym_o_PLUSe_GT] = ACTIONS(1670), + [anon_sym_e_PLUSo_GT] = ACTIONS(1670), + [anon_sym_err_GT_GT] = ACTIONS(1672), + [anon_sym_out_GT_GT] = ACTIONS(1672), + [anon_sym_e_GT_GT] = ACTIONS(1672), + [anon_sym_o_GT_GT] = ACTIONS(1672), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1672), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1672), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1672), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1672), + [anon_sym_POUND] = ACTIONS(249), }, [1480] = { + [sym_cmd_identifier] = STATE(4786), + [sym_expr_parenthesized] = STATE(4786), + [sym_val_variable] = STATE(4786), + [sym__val_number_decimal] = STATE(7191), + [sym_val_string] = STATE(4786), + [sym__raw_str] = STATE(4414), + [sym__str_double_quotes] = STATE(4414), + [sym_val_interpolated] = STATE(4786), + [sym__inter_single_quotes] = STATE(4787), + [sym__inter_double_quotes] = STATE(4810), [sym_comment] = STATE(1480), - [anon_sym_true] = ACTIONS(2295), - [anon_sym_false] = ACTIONS(2295), - [anon_sym_null] = ACTIONS(2295), - [aux_sym_cmd_identifier_token38] = ACTIONS(2295), - [aux_sym_cmd_identifier_token39] = ACTIONS(2295), - [aux_sym_cmd_identifier_token40] = ACTIONS(2295), - [sym__newline] = ACTIONS(2295), - [anon_sym_SEMI] = ACTIONS(2295), - [anon_sym_PIPE] = ACTIONS(2295), - [anon_sym_err_GT_PIPE] = ACTIONS(2295), - [anon_sym_out_GT_PIPE] = ACTIONS(2295), - [anon_sym_e_GT_PIPE] = ACTIONS(2295), - [anon_sym_o_GT_PIPE] = ACTIONS(2295), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2295), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2295), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2295), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2295), - [anon_sym_LBRACK] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(2291), - [anon_sym_RPAREN] = ACTIONS(2295), - [anon_sym_DOLLAR] = ACTIONS(2291), - [anon_sym_DASH_DASH] = ACTIONS(2295), - [anon_sym_DASH] = ACTIONS(2291), - [anon_sym_LBRACE] = ACTIONS(2295), - [anon_sym_RBRACE] = ACTIONS(2295), - [anon_sym_DOT_DOT] = ACTIONS(2291), - [anon_sym_LPAREN2] = ACTIONS(2293), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2295), - [anon_sym_DOT_DOT_LT] = ACTIONS(2295), - [aux_sym__val_number_decimal_token1] = ACTIONS(2291), - [aux_sym__val_number_decimal_token2] = ACTIONS(2295), - [aux_sym__val_number_decimal_token3] = ACTIONS(2295), - [aux_sym__val_number_decimal_token4] = ACTIONS(2295), - [aux_sym__val_number_token1] = ACTIONS(2295), - [aux_sym__val_number_token2] = ACTIONS(2295), - [aux_sym__val_number_token3] = ACTIONS(2295), - [anon_sym_0b] = ACTIONS(2291), - [anon_sym_0o] = ACTIONS(2291), - [anon_sym_0x] = ACTIONS(2291), - [sym_val_date] = ACTIONS(2295), - [anon_sym_DQUOTE] = ACTIONS(2295), - [sym__str_single_quotes] = ACTIONS(2295), - [sym__str_back_ticks] = ACTIONS(2295), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2295), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2295), - [anon_sym_err_GT] = ACTIONS(2291), - [anon_sym_out_GT] = ACTIONS(2291), - [anon_sym_e_GT] = ACTIONS(2291), - [anon_sym_o_GT] = ACTIONS(2291), - [anon_sym_err_PLUSout_GT] = ACTIONS(2291), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2291), - [anon_sym_o_PLUSe_GT] = ACTIONS(2291), - [anon_sym_e_PLUSo_GT] = ACTIONS(2291), - [anon_sym_err_GT_GT] = ACTIONS(2295), - [anon_sym_out_GT_GT] = ACTIONS(2295), - [anon_sym_e_GT_GT] = ACTIONS(2295), - [anon_sym_o_GT_GT] = ACTIONS(2295), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2295), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2295), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2295), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2295), - [aux_sym_unquoted_token1] = ACTIONS(2291), - [aux_sym_unquoted_token2] = ACTIONS(1552), - [anon_sym_POUND] = ACTIONS(247), + [aux_sym_cmd_identifier_token1] = ACTIONS(371), + [aux_sym_cmd_identifier_token2] = ACTIONS(373), + [aux_sym_cmd_identifier_token3] = ACTIONS(373), + [aux_sym_cmd_identifier_token4] = ACTIONS(373), + [aux_sym_cmd_identifier_token5] = ACTIONS(373), + [aux_sym_cmd_identifier_token6] = ACTIONS(373), + [aux_sym_cmd_identifier_token7] = ACTIONS(373), + [aux_sym_cmd_identifier_token8] = ACTIONS(373), + [aux_sym_cmd_identifier_token9] = ACTIONS(371), + [aux_sym_cmd_identifier_token10] = ACTIONS(373), + [aux_sym_cmd_identifier_token11] = ACTIONS(373), + [aux_sym_cmd_identifier_token12] = ACTIONS(373), + [aux_sym_cmd_identifier_token13] = ACTIONS(371), + [aux_sym_cmd_identifier_token14] = ACTIONS(373), + [aux_sym_cmd_identifier_token15] = ACTIONS(371), + [aux_sym_cmd_identifier_token16] = ACTIONS(373), + [aux_sym_cmd_identifier_token17] = ACTIONS(373), + [aux_sym_cmd_identifier_token18] = ACTIONS(373), + [aux_sym_cmd_identifier_token19] = ACTIONS(373), + [aux_sym_cmd_identifier_token20] = ACTIONS(373), + [aux_sym_cmd_identifier_token21] = ACTIONS(373), + [aux_sym_cmd_identifier_token22] = ACTIONS(373), + [aux_sym_cmd_identifier_token23] = ACTIONS(373), + [aux_sym_cmd_identifier_token24] = ACTIONS(373), + [aux_sym_cmd_identifier_token25] = ACTIONS(373), + [aux_sym_cmd_identifier_token26] = ACTIONS(373), + [aux_sym_cmd_identifier_token27] = ACTIONS(373), + [aux_sym_cmd_identifier_token28] = ACTIONS(373), + [aux_sym_cmd_identifier_token29] = ACTIONS(373), + [aux_sym_cmd_identifier_token30] = ACTIONS(373), + [aux_sym_cmd_identifier_token31] = ACTIONS(373), + [aux_sym_cmd_identifier_token32] = ACTIONS(373), + [aux_sym_cmd_identifier_token33] = ACTIONS(373), + [aux_sym_cmd_identifier_token34] = ACTIONS(373), + [aux_sym_cmd_identifier_token35] = ACTIONS(373), + [aux_sym_cmd_identifier_token36] = ACTIONS(371), + [anon_sym_true] = ACTIONS(4872), + [anon_sym_false] = ACTIONS(4872), + [anon_sym_null] = ACTIONS(4872), + [aux_sym_cmd_identifier_token38] = ACTIONS(4874), + [aux_sym_cmd_identifier_token39] = ACTIONS(4872), + [aux_sym_cmd_identifier_token40] = ACTIONS(4872), + [anon_sym_LPAREN] = ACTIONS(4876), + [anon_sym_DOLLAR] = ACTIONS(4273), + [aux_sym__val_number_decimal_token1] = ACTIONS(1343), + [aux_sym__val_number_decimal_token2] = ACTIONS(1343), + [aux_sym__val_number_decimal_token3] = ACTIONS(1345), + [aux_sym__val_number_decimal_token4] = ACTIONS(1347), + [anon_sym_DQUOTE] = ACTIONS(4293), + [sym__str_single_quotes] = ACTIONS(4295), + [sym__str_back_ticks] = ACTIONS(4295), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4297), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4299), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1991), }, [1481] = { [sym_comment] = STATE(1481), - [anon_sym_true] = ACTIONS(2229), - [anon_sym_false] = ACTIONS(2229), - [anon_sym_null] = ACTIONS(2229), - [aux_sym_cmd_identifier_token38] = ACTIONS(2229), - [aux_sym_cmd_identifier_token39] = ACTIONS(2229), - [aux_sym_cmd_identifier_token40] = ACTIONS(2229), - [sym__newline] = ACTIONS(2233), - [anon_sym_SEMI] = ACTIONS(2233), - [anon_sym_PIPE] = ACTIONS(2233), - [anon_sym_err_GT_PIPE] = ACTIONS(2233), - [anon_sym_out_GT_PIPE] = ACTIONS(2233), - [anon_sym_e_GT_PIPE] = ACTIONS(2233), - [anon_sym_o_GT_PIPE] = ACTIONS(2233), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2233), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2233), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2233), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2233), - [anon_sym_LBRACK] = ACTIONS(2233), - [anon_sym_LPAREN] = ACTIONS(2229), - [anon_sym_RPAREN] = ACTIONS(2233), - [anon_sym_DOLLAR] = ACTIONS(2229), - [anon_sym_DASH_DASH] = ACTIONS(2229), - [anon_sym_DASH] = ACTIONS(2229), - [anon_sym_LBRACE] = ACTIONS(2233), - [anon_sym_RBRACE] = ACTIONS(2233), - [anon_sym_DOT_DOT] = ACTIONS(2229), - [anon_sym_LPAREN2] = ACTIONS(2231), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2229), - [anon_sym_DOT_DOT_LT] = ACTIONS(2229), - [aux_sym__val_number_decimal_token1] = ACTIONS(2229), - [aux_sym__val_number_decimal_token2] = ACTIONS(2229), - [aux_sym__val_number_decimal_token3] = ACTIONS(2229), - [aux_sym__val_number_decimal_token4] = ACTIONS(2229), - [aux_sym__val_number_token1] = ACTIONS(2229), - [aux_sym__val_number_token2] = ACTIONS(2229), - [aux_sym__val_number_token3] = ACTIONS(2229), - [anon_sym_0b] = ACTIONS(2229), - [anon_sym_0o] = ACTIONS(2229), - [anon_sym_0x] = ACTIONS(2229), - [sym_val_date] = ACTIONS(2229), - [anon_sym_DQUOTE] = ACTIONS(2233), - [sym__str_single_quotes] = ACTIONS(2233), - [sym__str_back_ticks] = ACTIONS(2233), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2233), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2233), - [anon_sym_err_GT] = ACTIONS(2229), - [anon_sym_out_GT] = ACTIONS(2229), - [anon_sym_e_GT] = ACTIONS(2229), - [anon_sym_o_GT] = ACTIONS(2229), - [anon_sym_err_PLUSout_GT] = ACTIONS(2229), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2229), - [anon_sym_o_PLUSe_GT] = ACTIONS(2229), - [anon_sym_e_PLUSo_GT] = ACTIONS(2229), - [anon_sym_err_GT_GT] = ACTIONS(2229), - [anon_sym_out_GT_GT] = ACTIONS(2229), - [anon_sym_e_GT_GT] = ACTIONS(2229), - [anon_sym_o_GT_GT] = ACTIONS(2229), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2229), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2229), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2229), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2229), - [aux_sym_unquoted_token1] = ACTIONS(2229), - [aux_sym_unquoted_token4] = ACTIONS(2235), - [anon_sym_POUND] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(1538), + [sym__newline] = ACTIONS(1538), + [anon_sym_SEMI] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_err_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_GT_PIPE] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), + [anon_sym_LPAREN2] = ACTIONS(1538), + [aux_sym_expr_binary_token1] = ACTIONS(1538), + [aux_sym_expr_binary_token2] = ACTIONS(1538), + [aux_sym_expr_binary_token3] = ACTIONS(1538), + [aux_sym_expr_binary_token4] = ACTIONS(1538), + [aux_sym_expr_binary_token5] = ACTIONS(1538), + [aux_sym_expr_binary_token6] = ACTIONS(1538), + [aux_sym_expr_binary_token7] = ACTIONS(1538), + [aux_sym_expr_binary_token8] = ACTIONS(1538), + [aux_sym_expr_binary_token9] = ACTIONS(1538), + [aux_sym_expr_binary_token10] = ACTIONS(1538), + [aux_sym_expr_binary_token11] = ACTIONS(1538), + [aux_sym_expr_binary_token12] = ACTIONS(1538), + [aux_sym_expr_binary_token13] = ACTIONS(1538), + [aux_sym_expr_binary_token14] = ACTIONS(1538), + [aux_sym_expr_binary_token15] = ACTIONS(1538), + [aux_sym_expr_binary_token16] = ACTIONS(1538), + [aux_sym_expr_binary_token17] = ACTIONS(1538), + [aux_sym_expr_binary_token18] = ACTIONS(1538), + [aux_sym_expr_binary_token19] = ACTIONS(1538), + [aux_sym_expr_binary_token20] = ACTIONS(1538), + [aux_sym_expr_binary_token21] = ACTIONS(1538), + [aux_sym_expr_binary_token22] = ACTIONS(1538), + [aux_sym_expr_binary_token23] = ACTIONS(1538), + [aux_sym_expr_binary_token24] = ACTIONS(1538), + [aux_sym_expr_binary_token25] = ACTIONS(1538), + [aux_sym_expr_binary_token26] = ACTIONS(1538), + [aux_sym_expr_binary_token27] = ACTIONS(1538), + [aux_sym_expr_binary_token28] = ACTIONS(1538), + [anon_sym_DOT_DOT2] = ACTIONS(1536), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), + [sym_filesize_unit] = ACTIONS(1538), + [sym_duration_unit] = ACTIONS(1538), + [anon_sym_err_GT] = ACTIONS(1536), + [anon_sym_out_GT] = ACTIONS(1536), + [anon_sym_e_GT] = ACTIONS(1536), + [anon_sym_o_GT] = ACTIONS(1536), + [anon_sym_err_PLUSout_GT] = ACTIONS(1536), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), + [anon_sym_o_PLUSe_GT] = ACTIONS(1536), + [anon_sym_e_PLUSo_GT] = ACTIONS(1536), + [anon_sym_err_GT_GT] = ACTIONS(1538), + [anon_sym_out_GT_GT] = ACTIONS(1538), + [anon_sym_e_GT_GT] = ACTIONS(1538), + [anon_sym_o_GT_GT] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), + [aux_sym_unquoted_token2] = ACTIONS(1536), + [anon_sym_POUND] = ACTIONS(249), }, [1482] = { [sym_comment] = STATE(1482), - [anon_sym_true] = ACTIONS(1661), - [anon_sym_false] = ACTIONS(1661), - [anon_sym_null] = ACTIONS(1661), - [aux_sym_cmd_identifier_token38] = ACTIONS(1661), - [aux_sym_cmd_identifier_token39] = ACTIONS(1661), - [aux_sym_cmd_identifier_token40] = ACTIONS(1661), - [sym__newline] = ACTIONS(1661), - [anon_sym_SEMI] = ACTIONS(1661), - [anon_sym_PIPE] = ACTIONS(1661), - [anon_sym_err_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_GT_PIPE] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_LPAREN] = ACTIONS(1661), - [anon_sym_RPAREN] = ACTIONS(1661), - [anon_sym_DOLLAR] = ACTIONS(1659), - [anon_sym_DASH_DASH] = ACTIONS(1661), - [anon_sym_DASH] = ACTIONS(1659), - [anon_sym_LBRACE] = ACTIONS(1661), - [anon_sym_RBRACE] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1659), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1661), - [anon_sym_DOT_DOT_LT] = ACTIONS(1661), - [aux_sym__immediate_decimal_token1] = ACTIONS(4834), - [aux_sym__immediate_decimal_token2] = ACTIONS(4836), - [aux_sym__val_number_decimal_token1] = ACTIONS(1659), - [aux_sym__val_number_decimal_token2] = ACTIONS(1661), - [aux_sym__val_number_decimal_token3] = ACTIONS(1661), - [aux_sym__val_number_decimal_token4] = ACTIONS(1661), - [aux_sym__val_number_token1] = ACTIONS(1661), - [aux_sym__val_number_token2] = ACTIONS(1661), - [aux_sym__val_number_token3] = ACTIONS(1661), - [anon_sym_0b] = ACTIONS(1659), - [anon_sym_0o] = ACTIONS(1659), - [anon_sym_0x] = ACTIONS(1659), - [sym_val_date] = ACTIONS(1661), - [anon_sym_DQUOTE] = ACTIONS(1661), - [sym__str_single_quotes] = ACTIONS(1661), - [sym__str_back_ticks] = ACTIONS(1661), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1661), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1661), - [anon_sym_err_GT] = ACTIONS(1659), - [anon_sym_out_GT] = ACTIONS(1659), - [anon_sym_e_GT] = ACTIONS(1659), - [anon_sym_o_GT] = ACTIONS(1659), - [anon_sym_err_PLUSout_GT] = ACTIONS(1659), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1659), - [anon_sym_o_PLUSe_GT] = ACTIONS(1659), - [anon_sym_e_PLUSo_GT] = ACTIONS(1659), - [anon_sym_err_GT_GT] = ACTIONS(1661), - [anon_sym_out_GT_GT] = ACTIONS(1661), - [anon_sym_e_GT_GT] = ACTIONS(1661), - [anon_sym_o_GT_GT] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1661), - [aux_sym_unquoted_token1] = ACTIONS(1659), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(2293), + [anon_sym_false] = ACTIONS(2293), + [anon_sym_null] = ACTIONS(2293), + [aux_sym_cmd_identifier_token38] = ACTIONS(2293), + [aux_sym_cmd_identifier_token39] = ACTIONS(2293), + [aux_sym_cmd_identifier_token40] = ACTIONS(2293), + [sym__newline] = ACTIONS(2297), + [anon_sym_SEMI] = ACTIONS(2297), + [anon_sym_PIPE] = ACTIONS(2297), + [anon_sym_err_GT_PIPE] = ACTIONS(2297), + [anon_sym_out_GT_PIPE] = ACTIONS(2297), + [anon_sym_e_GT_PIPE] = ACTIONS(2297), + [anon_sym_o_GT_PIPE] = ACTIONS(2297), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2297), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2297), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2297), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2297), + [anon_sym_LBRACK] = ACTIONS(2297), + [anon_sym_LPAREN] = ACTIONS(2297), + [anon_sym_RPAREN] = ACTIONS(2297), + [anon_sym_DOLLAR] = ACTIONS(2293), + [anon_sym_DASH_DASH] = ACTIONS(2293), + [anon_sym_DASH] = ACTIONS(2293), + [anon_sym_LBRACE] = ACTIONS(2297), + [anon_sym_RBRACE] = ACTIONS(2297), + [anon_sym_DOT_DOT] = ACTIONS(2293), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2293), + [anon_sym_DOT_DOT_LT] = ACTIONS(2293), + [aux_sym__val_number_decimal_token1] = ACTIONS(2293), + [aux_sym__val_number_decimal_token2] = ACTIONS(2293), + [aux_sym__val_number_decimal_token3] = ACTIONS(2293), + [aux_sym__val_number_decimal_token4] = ACTIONS(2293), + [aux_sym__val_number_token1] = ACTIONS(2293), + [aux_sym__val_number_token2] = ACTIONS(2293), + [aux_sym__val_number_token3] = ACTIONS(2293), + [anon_sym_0b] = ACTIONS(2293), + [anon_sym_0o] = ACTIONS(2293), + [anon_sym_0x] = ACTIONS(2293), + [sym_val_date] = ACTIONS(2293), + [anon_sym_DQUOTE] = ACTIONS(2297), + [sym__str_single_quotes] = ACTIONS(2297), + [sym__str_back_ticks] = ACTIONS(2297), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2297), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2297), + [anon_sym_err_GT] = ACTIONS(2293), + [anon_sym_out_GT] = ACTIONS(2293), + [anon_sym_e_GT] = ACTIONS(2293), + [anon_sym_o_GT] = ACTIONS(2293), + [anon_sym_err_PLUSout_GT] = ACTIONS(2293), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2293), + [anon_sym_o_PLUSe_GT] = ACTIONS(2293), + [anon_sym_e_PLUSo_GT] = ACTIONS(2293), + [anon_sym_err_GT_GT] = ACTIONS(2293), + [anon_sym_out_GT_GT] = ACTIONS(2293), + [anon_sym_e_GT_GT] = ACTIONS(2293), + [anon_sym_o_GT_GT] = ACTIONS(2293), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2293), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2293), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2293), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2293), + [aux_sym_unquoted_token1] = ACTIONS(2293), + [aux_sym_unquoted_token4] = ACTIONS(2299), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2297), }, [1483] = { - [sym__expr_parenthesized_immediate] = STATE(7352), [sym_comment] = STATE(1483), - [anon_sym_true] = ACTIONS(4838), - [anon_sym_false] = ACTIONS(4838), - [anon_sym_null] = ACTIONS(4838), - [aux_sym_cmd_identifier_token38] = ACTIONS(4838), - [aux_sym_cmd_identifier_token39] = ACTIONS(4838), - [aux_sym_cmd_identifier_token40] = ACTIONS(4838), - [sym__newline] = ACTIONS(4838), - [anon_sym_SEMI] = ACTIONS(4838), - [anon_sym_PIPE] = ACTIONS(4838), - [anon_sym_err_GT_PIPE] = ACTIONS(4838), - [anon_sym_out_GT_PIPE] = ACTIONS(4838), - [anon_sym_e_GT_PIPE] = ACTIONS(4838), - [anon_sym_o_GT_PIPE] = ACTIONS(4838), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4838), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4838), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4838), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4838), - [anon_sym_LBRACK] = ACTIONS(4838), - [anon_sym_LPAREN] = ACTIONS(4840), - [anon_sym_RPAREN] = ACTIONS(4838), - [anon_sym_DOLLAR] = ACTIONS(4840), - [anon_sym_DASH_DASH] = ACTIONS(4838), - [anon_sym_DASH] = ACTIONS(4840), - [anon_sym_LBRACE] = ACTIONS(4838), - [anon_sym_RBRACE] = ACTIONS(4838), - [anon_sym_DOT_DOT] = ACTIONS(4840), - [anon_sym_LPAREN2] = ACTIONS(3978), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4838), - [anon_sym_DOT_DOT_LT] = ACTIONS(4838), - [aux_sym__val_number_decimal_token1] = ACTIONS(4840), - [aux_sym__val_number_decimal_token2] = ACTIONS(4838), - [aux_sym__val_number_decimal_token3] = ACTIONS(4838), - [aux_sym__val_number_decimal_token4] = ACTIONS(4838), - [aux_sym__val_number_token1] = ACTIONS(4838), - [aux_sym__val_number_token2] = ACTIONS(4838), - [aux_sym__val_number_token3] = ACTIONS(4838), - [anon_sym_0b] = ACTIONS(4840), - [anon_sym_0o] = ACTIONS(4840), - [anon_sym_0x] = ACTIONS(4840), - [sym_val_date] = ACTIONS(4838), - [anon_sym_DQUOTE] = ACTIONS(4838), - [sym__str_single_quotes] = ACTIONS(4838), - [sym__str_back_ticks] = ACTIONS(4838), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4838), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4838), - [anon_sym_err_GT] = ACTIONS(4840), - [anon_sym_out_GT] = ACTIONS(4840), - [anon_sym_e_GT] = ACTIONS(4840), - [anon_sym_o_GT] = ACTIONS(4840), - [anon_sym_err_PLUSout_GT] = ACTIONS(4840), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4840), - [anon_sym_o_PLUSe_GT] = ACTIONS(4840), - [anon_sym_e_PLUSo_GT] = ACTIONS(4840), - [anon_sym_err_GT_GT] = ACTIONS(4838), - [anon_sym_out_GT_GT] = ACTIONS(4838), - [anon_sym_e_GT_GT] = ACTIONS(4838), - [anon_sym_o_GT_GT] = ACTIONS(4838), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4838), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4838), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4838), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4838), - [aux_sym_unquoted_token1] = ACTIONS(4840), - [anon_sym_POUND] = ACTIONS(247), + [ts_builtin_sym_end] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(2279), + [anon_sym_false] = ACTIONS(2279), + [anon_sym_null] = ACTIONS(2279), + [aux_sym_cmd_identifier_token38] = ACTIONS(2279), + [aux_sym_cmd_identifier_token39] = ACTIONS(2279), + [aux_sym_cmd_identifier_token40] = ACTIONS(2279), + [sym__newline] = ACTIONS(2279), + [anon_sym_SEMI] = ACTIONS(2279), + [anon_sym_PIPE] = ACTIONS(2279), + [anon_sym_err_GT_PIPE] = ACTIONS(2279), + [anon_sym_out_GT_PIPE] = ACTIONS(2279), + [anon_sym_e_GT_PIPE] = ACTIONS(2279), + [anon_sym_o_GT_PIPE] = ACTIONS(2279), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2279), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2279), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2279), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2279), + [anon_sym_LBRACK] = ACTIONS(2279), + [anon_sym_LPAREN] = ACTIONS(2277), + [anon_sym_DOLLAR] = ACTIONS(2277), + [anon_sym_DASH_DASH] = ACTIONS(2279), + [anon_sym_DASH] = ACTIONS(2277), + [anon_sym_LBRACE] = ACTIONS(2279), + [anon_sym_DOT_DOT] = ACTIONS(2277), + [anon_sym_LPAREN2] = ACTIONS(1844), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2279), + [anon_sym_DOT_DOT_LT] = ACTIONS(2279), + [aux_sym__val_number_decimal_token1] = ACTIONS(2277), + [aux_sym__val_number_decimal_token2] = ACTIONS(2279), + [aux_sym__val_number_decimal_token3] = ACTIONS(2279), + [aux_sym__val_number_decimal_token4] = ACTIONS(2279), + [aux_sym__val_number_token1] = ACTIONS(2279), + [aux_sym__val_number_token2] = ACTIONS(2279), + [aux_sym__val_number_token3] = ACTIONS(2279), + [anon_sym_0b] = ACTIONS(2277), + [anon_sym_0o] = ACTIONS(2277), + [anon_sym_0x] = ACTIONS(2277), + [sym_val_date] = ACTIONS(2279), + [anon_sym_DQUOTE] = ACTIONS(2279), + [sym__str_single_quotes] = ACTIONS(2279), + [sym__str_back_ticks] = ACTIONS(2279), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2279), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2279), + [anon_sym_err_GT] = ACTIONS(2277), + [anon_sym_out_GT] = ACTIONS(2277), + [anon_sym_e_GT] = ACTIONS(2277), + [anon_sym_o_GT] = ACTIONS(2277), + [anon_sym_err_PLUSout_GT] = ACTIONS(2277), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2277), + [anon_sym_o_PLUSe_GT] = ACTIONS(2277), + [anon_sym_e_PLUSo_GT] = ACTIONS(2277), + [anon_sym_err_GT_GT] = ACTIONS(2279), + [anon_sym_out_GT_GT] = ACTIONS(2279), + [anon_sym_e_GT_GT] = ACTIONS(2279), + [anon_sym_o_GT_GT] = ACTIONS(2279), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2279), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2279), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2279), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2279), + [aux_sym_unquoted_token1] = ACTIONS(2277), + [aux_sym_unquoted_token2] = ACTIONS(1852), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2279), }, [1484] = { - [sym_cell_path] = STATE(2018), - [sym_path] = STATE(1246), [sym_comment] = STATE(1484), - [aux_sym_cell_path_repeat1] = STATE(1189), - [ts_builtin_sym_end] = ACTIONS(1645), - [sym__newline] = ACTIONS(1645), - [anon_sym_SEMI] = ACTIONS(1645), - [anon_sym_PIPE] = ACTIONS(1645), - [anon_sym_err_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_GT_PIPE] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1645), - [aux_sym_expr_binary_token1] = ACTIONS(1645), - [aux_sym_expr_binary_token2] = ACTIONS(1645), - [aux_sym_expr_binary_token3] = ACTIONS(1645), - [aux_sym_expr_binary_token4] = ACTIONS(1645), - [aux_sym_expr_binary_token5] = ACTIONS(1645), - [aux_sym_expr_binary_token6] = ACTIONS(1645), - [aux_sym_expr_binary_token7] = ACTIONS(1645), - [aux_sym_expr_binary_token8] = ACTIONS(1645), - [aux_sym_expr_binary_token9] = ACTIONS(1645), - [aux_sym_expr_binary_token10] = ACTIONS(1645), - [aux_sym_expr_binary_token11] = ACTIONS(1645), - [aux_sym_expr_binary_token12] = ACTIONS(1645), - [aux_sym_expr_binary_token13] = ACTIONS(1645), - [aux_sym_expr_binary_token14] = ACTIONS(1645), - [aux_sym_expr_binary_token15] = ACTIONS(1645), - [aux_sym_expr_binary_token16] = ACTIONS(1645), - [aux_sym_expr_binary_token17] = ACTIONS(1645), - [aux_sym_expr_binary_token18] = ACTIONS(1645), - [aux_sym_expr_binary_token19] = ACTIONS(1645), - [aux_sym_expr_binary_token20] = ACTIONS(1645), - [aux_sym_expr_binary_token21] = ACTIONS(1645), - [aux_sym_expr_binary_token22] = ACTIONS(1645), - [aux_sym_expr_binary_token23] = ACTIONS(1645), - [aux_sym_expr_binary_token24] = ACTIONS(1645), - [aux_sym_expr_binary_token25] = ACTIONS(1645), - [aux_sym_expr_binary_token26] = ACTIONS(1645), - [aux_sym_expr_binary_token27] = ACTIONS(1645), - [aux_sym_expr_binary_token28] = ACTIONS(1645), - [anon_sym_DOT_DOT2] = ACTIONS(1641), - [anon_sym_DOT] = ACTIONS(3990), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1645), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1645), - [anon_sym_err_GT] = ACTIONS(1641), - [anon_sym_out_GT] = ACTIONS(1641), - [anon_sym_e_GT] = ACTIONS(1641), - [anon_sym_o_GT] = ACTIONS(1641), - [anon_sym_err_PLUSout_GT] = ACTIONS(1641), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1641), - [anon_sym_o_PLUSe_GT] = ACTIONS(1641), - [anon_sym_e_PLUSo_GT] = ACTIONS(1641), - [anon_sym_err_GT_GT] = ACTIONS(1645), - [anon_sym_out_GT_GT] = ACTIONS(1645), - [anon_sym_e_GT_GT] = ACTIONS(1645), - [anon_sym_o_GT_GT] = ACTIONS(1645), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1645), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1645), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1645), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1645), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(2303), + [anon_sym_false] = ACTIONS(2303), + [anon_sym_null] = ACTIONS(2303), + [aux_sym_cmd_identifier_token38] = ACTIONS(2303), + [aux_sym_cmd_identifier_token39] = ACTIONS(2303), + [aux_sym_cmd_identifier_token40] = ACTIONS(2303), + [sym__newline] = ACTIONS(2305), + [anon_sym_SEMI] = ACTIONS(2305), + [anon_sym_PIPE] = ACTIONS(2305), + [anon_sym_err_GT_PIPE] = ACTIONS(2305), + [anon_sym_out_GT_PIPE] = ACTIONS(2305), + [anon_sym_e_GT_PIPE] = ACTIONS(2305), + [anon_sym_o_GT_PIPE] = ACTIONS(2305), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2305), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2305), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2305), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2305), + [anon_sym_LBRACK] = ACTIONS(2305), + [anon_sym_LPAREN] = ACTIONS(2305), + [anon_sym_RPAREN] = ACTIONS(2305), + [anon_sym_DOLLAR] = ACTIONS(2303), + [anon_sym_DASH_DASH] = ACTIONS(2303), + [anon_sym_DASH] = ACTIONS(2303), + [anon_sym_LBRACE] = ACTIONS(2305), + [anon_sym_RBRACE] = ACTIONS(2305), + [anon_sym_DOT_DOT] = ACTIONS(2303), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2303), + [anon_sym_DOT_DOT_LT] = ACTIONS(2303), + [aux_sym__val_number_decimal_token1] = ACTIONS(2303), + [aux_sym__val_number_decimal_token2] = ACTIONS(2303), + [aux_sym__val_number_decimal_token3] = ACTIONS(2303), + [aux_sym__val_number_decimal_token4] = ACTIONS(2303), + [aux_sym__val_number_token1] = ACTIONS(2303), + [aux_sym__val_number_token2] = ACTIONS(2303), + [aux_sym__val_number_token3] = ACTIONS(2303), + [anon_sym_0b] = ACTIONS(2303), + [anon_sym_0o] = ACTIONS(2303), + [anon_sym_0x] = ACTIONS(2303), + [sym_val_date] = ACTIONS(2303), + [anon_sym_DQUOTE] = ACTIONS(2305), + [sym__str_single_quotes] = ACTIONS(2305), + [sym__str_back_ticks] = ACTIONS(2305), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2305), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2305), + [anon_sym_err_GT] = ACTIONS(2303), + [anon_sym_out_GT] = ACTIONS(2303), + [anon_sym_e_GT] = ACTIONS(2303), + [anon_sym_o_GT] = ACTIONS(2303), + [anon_sym_err_PLUSout_GT] = ACTIONS(2303), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2303), + [anon_sym_o_PLUSe_GT] = ACTIONS(2303), + [anon_sym_e_PLUSo_GT] = ACTIONS(2303), + [anon_sym_err_GT_GT] = ACTIONS(2303), + [anon_sym_out_GT_GT] = ACTIONS(2303), + [anon_sym_e_GT_GT] = ACTIONS(2303), + [anon_sym_o_GT_GT] = ACTIONS(2303), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2303), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2303), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2303), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2303), + [aux_sym_unquoted_token1] = ACTIONS(2303), + [aux_sym_unquoted_token4] = ACTIONS(2299), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2305), }, [1485] = { - [sym__expr_parenthesized_immediate] = STATE(7283), [sym_comment] = STATE(1485), - [sym__newline] = ACTIONS(4842), - [anon_sym_SEMI] = ACTIONS(4842), - [anon_sym_PIPE] = ACTIONS(4842), - [anon_sym_err_GT_PIPE] = ACTIONS(4842), - [anon_sym_out_GT_PIPE] = ACTIONS(4842), - [anon_sym_e_GT_PIPE] = ACTIONS(4842), - [anon_sym_o_GT_PIPE] = ACTIONS(4842), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4842), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4842), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4842), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4842), - [anon_sym_RPAREN] = ACTIONS(4842), - [anon_sym_DASH_DASH] = ACTIONS(4842), - [anon_sym_DASH] = ACTIONS(4844), - [anon_sym_LBRACE] = ACTIONS(4842), - [anon_sym_RBRACE] = ACTIONS(4842), - [anon_sym_EQ_GT] = ACTIONS(4842), - [anon_sym_LPAREN2] = ACTIONS(3978), - [aux_sym_expr_binary_token1] = ACTIONS(4842), - [aux_sym_expr_binary_token2] = ACTIONS(4842), - [aux_sym_expr_binary_token3] = ACTIONS(4842), - [aux_sym_expr_binary_token4] = ACTIONS(4842), - [aux_sym_expr_binary_token5] = ACTIONS(4842), - [aux_sym_expr_binary_token6] = ACTIONS(4842), - [aux_sym_expr_binary_token7] = ACTIONS(4842), - [aux_sym_expr_binary_token8] = ACTIONS(4842), - [aux_sym_expr_binary_token9] = ACTIONS(4842), - [aux_sym_expr_binary_token10] = ACTIONS(4842), - [aux_sym_expr_binary_token11] = ACTIONS(4842), - [aux_sym_expr_binary_token12] = ACTIONS(4842), - [aux_sym_expr_binary_token13] = ACTIONS(4842), - [aux_sym_expr_binary_token14] = ACTIONS(4842), - [aux_sym_expr_binary_token15] = ACTIONS(4842), - [aux_sym_expr_binary_token16] = ACTIONS(4842), - [aux_sym_expr_binary_token17] = ACTIONS(4842), - [aux_sym_expr_binary_token18] = ACTIONS(4842), - [aux_sym_expr_binary_token19] = ACTIONS(4842), - [aux_sym_expr_binary_token20] = ACTIONS(4842), - [aux_sym_expr_binary_token21] = ACTIONS(4842), - [aux_sym_expr_binary_token22] = ACTIONS(4842), - [aux_sym_expr_binary_token23] = ACTIONS(4842), - [aux_sym_expr_binary_token24] = ACTIONS(4842), - [aux_sym_expr_binary_token25] = ACTIONS(4842), - [aux_sym_expr_binary_token26] = ACTIONS(4842), - [aux_sym_expr_binary_token27] = ACTIONS(4842), - [aux_sym_expr_binary_token28] = ACTIONS(4842), - [anon_sym_err_GT] = ACTIONS(4844), - [anon_sym_out_GT] = ACTIONS(4844), - [anon_sym_e_GT] = ACTIONS(4844), - [anon_sym_o_GT] = ACTIONS(4844), - [anon_sym_err_PLUSout_GT] = ACTIONS(4844), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4844), - [anon_sym_o_PLUSe_GT] = ACTIONS(4844), - [anon_sym_e_PLUSo_GT] = ACTIONS(4844), - [anon_sym_err_GT_GT] = ACTIONS(4842), - [anon_sym_out_GT_GT] = ACTIONS(4842), - [anon_sym_e_GT_GT] = ACTIONS(4842), - [anon_sym_o_GT_GT] = ACTIONS(4842), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4842), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4842), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4842), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4842), - [anon_sym_POUND] = ACTIONS(247), - }, - [1486] = { - [sym__expr_parenthesized_immediate] = STATE(7283), - [sym_comment] = STATE(1486), - [sym__newline] = ACTIONS(4842), - [anon_sym_SEMI] = ACTIONS(4842), - [anon_sym_PIPE] = ACTIONS(4842), - [anon_sym_err_GT_PIPE] = ACTIONS(4842), - [anon_sym_out_GT_PIPE] = ACTIONS(4842), - [anon_sym_e_GT_PIPE] = ACTIONS(4842), - [anon_sym_o_GT_PIPE] = ACTIONS(4842), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4842), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4842), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4842), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4842), - [anon_sym_RPAREN] = ACTIONS(4842), - [anon_sym_DASH_DASH] = ACTIONS(4842), - [anon_sym_DASH] = ACTIONS(4844), - [anon_sym_LBRACE] = ACTIONS(4842), - [anon_sym_RBRACE] = ACTIONS(4842), - [anon_sym_EQ_GT] = ACTIONS(4842), - [anon_sym_LPAREN2] = ACTIONS(3978), - [aux_sym_expr_binary_token1] = ACTIONS(4842), - [aux_sym_expr_binary_token2] = ACTIONS(4842), - [aux_sym_expr_binary_token3] = ACTIONS(4842), - [aux_sym_expr_binary_token4] = ACTIONS(4842), - [aux_sym_expr_binary_token5] = ACTIONS(4842), - [aux_sym_expr_binary_token6] = ACTIONS(4842), - [aux_sym_expr_binary_token7] = ACTIONS(4842), - [aux_sym_expr_binary_token8] = ACTIONS(4842), - [aux_sym_expr_binary_token9] = ACTIONS(4842), - [aux_sym_expr_binary_token10] = ACTIONS(4842), - [aux_sym_expr_binary_token11] = ACTIONS(4842), - [aux_sym_expr_binary_token12] = ACTIONS(4842), - [aux_sym_expr_binary_token13] = ACTIONS(4842), - [aux_sym_expr_binary_token14] = ACTIONS(4842), - [aux_sym_expr_binary_token15] = ACTIONS(4842), - [aux_sym_expr_binary_token16] = ACTIONS(4842), - [aux_sym_expr_binary_token17] = ACTIONS(4842), - [aux_sym_expr_binary_token18] = ACTIONS(4842), - [aux_sym_expr_binary_token19] = ACTIONS(4842), - [aux_sym_expr_binary_token20] = ACTIONS(4842), - [aux_sym_expr_binary_token21] = ACTIONS(4842), - [aux_sym_expr_binary_token22] = ACTIONS(4842), - [aux_sym_expr_binary_token23] = ACTIONS(4842), - [aux_sym_expr_binary_token24] = ACTIONS(4842), - [aux_sym_expr_binary_token25] = ACTIONS(4842), - [aux_sym_expr_binary_token26] = ACTIONS(4842), - [aux_sym_expr_binary_token27] = ACTIONS(4842), - [aux_sym_expr_binary_token28] = ACTIONS(4842), - [anon_sym_err_GT] = ACTIONS(4844), - [anon_sym_out_GT] = ACTIONS(4844), - [anon_sym_e_GT] = ACTIONS(4844), - [anon_sym_o_GT] = ACTIONS(4844), - [anon_sym_err_PLUSout_GT] = ACTIONS(4844), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4844), - [anon_sym_o_PLUSe_GT] = ACTIONS(4844), - [anon_sym_e_PLUSo_GT] = ACTIONS(4844), - [anon_sym_err_GT_GT] = ACTIONS(4842), - [anon_sym_out_GT_GT] = ACTIONS(4842), - [anon_sym_e_GT_GT] = ACTIONS(4842), - [anon_sym_o_GT_GT] = ACTIONS(4842), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4842), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4842), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4842), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4842), - [anon_sym_POUND] = ACTIONS(247), - }, - [1487] = { - [sym_comment] = STATE(1487), - [ts_builtin_sym_end] = ACTIONS(1669), - [anon_sym_true] = ACTIONS(1669), - [anon_sym_false] = ACTIONS(1669), - [anon_sym_null] = ACTIONS(1669), - [aux_sym_cmd_identifier_token38] = ACTIONS(1669), - [aux_sym_cmd_identifier_token39] = ACTIONS(1669), - [aux_sym_cmd_identifier_token40] = ACTIONS(1669), - [sym__newline] = ACTIONS(1669), - [anon_sym_SEMI] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1669), - [anon_sym_err_GT_PIPE] = ACTIONS(1669), - [anon_sym_out_GT_PIPE] = ACTIONS(1669), - [anon_sym_e_GT_PIPE] = ACTIONS(1669), - [anon_sym_o_GT_PIPE] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), - [anon_sym_LBRACK] = ACTIONS(1669), - [anon_sym_LPAREN] = ACTIONS(1669), - [anon_sym_DOLLAR] = ACTIONS(1667), - [anon_sym_DASH_DASH] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_LBRACE] = ACTIONS(1669), - [anon_sym_DOT_DOT] = ACTIONS(1667), - [anon_sym_DOT_DOT2] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1667), - [anon_sym_DOT_DOT_LT] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [aux_sym__val_number_decimal_token1] = ACTIONS(1667), - [aux_sym__val_number_decimal_token2] = ACTIONS(1669), - [aux_sym__val_number_decimal_token3] = ACTIONS(1669), - [aux_sym__val_number_decimal_token4] = ACTIONS(1669), - [aux_sym__val_number_token1] = ACTIONS(1669), - [aux_sym__val_number_token2] = ACTIONS(1669), - [aux_sym__val_number_token3] = ACTIONS(1669), - [anon_sym_0b] = ACTIONS(1667), - [anon_sym_0o] = ACTIONS(1667), - [anon_sym_0x] = ACTIONS(1667), - [sym_val_date] = ACTIONS(1669), - [anon_sym_DQUOTE] = ACTIONS(1669), - [sym__str_single_quotes] = ACTIONS(1669), - [sym__str_back_ticks] = ACTIONS(1669), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1669), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1669), - [anon_sym_err_GT] = ACTIONS(1667), - [anon_sym_out_GT] = ACTIONS(1667), - [anon_sym_e_GT] = ACTIONS(1667), - [anon_sym_o_GT] = ACTIONS(1667), - [anon_sym_err_PLUSout_GT] = ACTIONS(1667), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1667), - [anon_sym_o_PLUSe_GT] = ACTIONS(1667), - [anon_sym_e_PLUSo_GT] = ACTIONS(1667), - [anon_sym_err_GT_GT] = ACTIONS(1669), - [anon_sym_out_GT_GT] = ACTIONS(1669), - [anon_sym_e_GT_GT] = ACTIONS(1669), - [anon_sym_o_GT_GT] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1669), - [aux_sym_unquoted_token1] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(247), - }, - [1488] = { - [sym__expr_parenthesized_immediate] = STATE(7283), - [sym_comment] = STATE(1488), - [sym__newline] = ACTIONS(4842), - [anon_sym_SEMI] = ACTIONS(4842), - [anon_sym_PIPE] = ACTIONS(4842), - [anon_sym_err_GT_PIPE] = ACTIONS(4842), - [anon_sym_out_GT_PIPE] = ACTIONS(4842), - [anon_sym_e_GT_PIPE] = ACTIONS(4842), - [anon_sym_o_GT_PIPE] = ACTIONS(4842), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4842), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4842), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4842), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4842), - [anon_sym_RPAREN] = ACTIONS(4842), - [anon_sym_DASH_DASH] = ACTIONS(4842), - [anon_sym_DASH] = ACTIONS(4844), - [anon_sym_LBRACE] = ACTIONS(4842), - [anon_sym_RBRACE] = ACTIONS(4842), - [anon_sym_EQ_GT] = ACTIONS(4842), - [anon_sym_LPAREN2] = ACTIONS(3978), - [aux_sym_expr_binary_token1] = ACTIONS(4842), - [aux_sym_expr_binary_token2] = ACTIONS(4842), - [aux_sym_expr_binary_token3] = ACTIONS(4842), - [aux_sym_expr_binary_token4] = ACTIONS(4842), - [aux_sym_expr_binary_token5] = ACTIONS(4842), - [aux_sym_expr_binary_token6] = ACTIONS(4842), - [aux_sym_expr_binary_token7] = ACTIONS(4842), - [aux_sym_expr_binary_token8] = ACTIONS(4842), - [aux_sym_expr_binary_token9] = ACTIONS(4842), - [aux_sym_expr_binary_token10] = ACTIONS(4842), - [aux_sym_expr_binary_token11] = ACTIONS(4842), - [aux_sym_expr_binary_token12] = ACTIONS(4842), - [aux_sym_expr_binary_token13] = ACTIONS(4842), - [aux_sym_expr_binary_token14] = ACTIONS(4842), - [aux_sym_expr_binary_token15] = ACTIONS(4842), - [aux_sym_expr_binary_token16] = ACTIONS(4842), - [aux_sym_expr_binary_token17] = ACTIONS(4842), - [aux_sym_expr_binary_token18] = ACTIONS(4842), - [aux_sym_expr_binary_token19] = ACTIONS(4842), - [aux_sym_expr_binary_token20] = ACTIONS(4842), - [aux_sym_expr_binary_token21] = ACTIONS(4842), - [aux_sym_expr_binary_token22] = ACTIONS(4842), - [aux_sym_expr_binary_token23] = ACTIONS(4842), - [aux_sym_expr_binary_token24] = ACTIONS(4842), - [aux_sym_expr_binary_token25] = ACTIONS(4842), - [aux_sym_expr_binary_token26] = ACTIONS(4842), - [aux_sym_expr_binary_token27] = ACTIONS(4842), - [aux_sym_expr_binary_token28] = ACTIONS(4842), - [anon_sym_err_GT] = ACTIONS(4844), - [anon_sym_out_GT] = ACTIONS(4844), - [anon_sym_e_GT] = ACTIONS(4844), - [anon_sym_o_GT] = ACTIONS(4844), - [anon_sym_err_PLUSout_GT] = ACTIONS(4844), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4844), - [anon_sym_o_PLUSe_GT] = ACTIONS(4844), - [anon_sym_e_PLUSo_GT] = ACTIONS(4844), - [anon_sym_err_GT_GT] = ACTIONS(4842), - [anon_sym_out_GT_GT] = ACTIONS(4842), - [anon_sym_e_GT_GT] = ACTIONS(4842), - [anon_sym_o_GT_GT] = ACTIONS(4842), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4842), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4842), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4842), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4842), - [anon_sym_POUND] = ACTIONS(247), - }, - [1489] = { - [sym__expr_parenthesized_immediate] = STATE(7283), - [sym_comment] = STATE(1489), - [sym__newline] = ACTIONS(4842), - [anon_sym_SEMI] = ACTIONS(4842), - [anon_sym_PIPE] = ACTIONS(4842), - [anon_sym_err_GT_PIPE] = ACTIONS(4842), - [anon_sym_out_GT_PIPE] = ACTIONS(4842), - [anon_sym_e_GT_PIPE] = ACTIONS(4842), - [anon_sym_o_GT_PIPE] = ACTIONS(4842), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4842), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4842), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4842), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4842), - [anon_sym_RPAREN] = ACTIONS(4842), - [anon_sym_DASH_DASH] = ACTIONS(4842), - [anon_sym_DASH] = ACTIONS(4844), - [anon_sym_LBRACE] = ACTIONS(4842), - [anon_sym_RBRACE] = ACTIONS(4842), - [anon_sym_EQ_GT] = ACTIONS(4842), - [anon_sym_LPAREN2] = ACTIONS(3978), - [aux_sym_expr_binary_token1] = ACTIONS(4842), - [aux_sym_expr_binary_token2] = ACTIONS(4842), - [aux_sym_expr_binary_token3] = ACTIONS(4842), - [aux_sym_expr_binary_token4] = ACTIONS(4842), - [aux_sym_expr_binary_token5] = ACTIONS(4842), - [aux_sym_expr_binary_token6] = ACTIONS(4842), - [aux_sym_expr_binary_token7] = ACTIONS(4842), - [aux_sym_expr_binary_token8] = ACTIONS(4842), - [aux_sym_expr_binary_token9] = ACTIONS(4842), - [aux_sym_expr_binary_token10] = ACTIONS(4842), - [aux_sym_expr_binary_token11] = ACTIONS(4842), - [aux_sym_expr_binary_token12] = ACTIONS(4842), - [aux_sym_expr_binary_token13] = ACTIONS(4842), - [aux_sym_expr_binary_token14] = ACTIONS(4842), - [aux_sym_expr_binary_token15] = ACTIONS(4842), - [aux_sym_expr_binary_token16] = ACTIONS(4842), - [aux_sym_expr_binary_token17] = ACTIONS(4842), - [aux_sym_expr_binary_token18] = ACTIONS(4842), - [aux_sym_expr_binary_token19] = ACTIONS(4842), - [aux_sym_expr_binary_token20] = ACTIONS(4842), - [aux_sym_expr_binary_token21] = ACTIONS(4842), - [aux_sym_expr_binary_token22] = ACTIONS(4842), - [aux_sym_expr_binary_token23] = ACTIONS(4842), - [aux_sym_expr_binary_token24] = ACTIONS(4842), - [aux_sym_expr_binary_token25] = ACTIONS(4842), - [aux_sym_expr_binary_token26] = ACTIONS(4842), - [aux_sym_expr_binary_token27] = ACTIONS(4842), - [aux_sym_expr_binary_token28] = ACTIONS(4842), - [anon_sym_err_GT] = ACTIONS(4844), - [anon_sym_out_GT] = ACTIONS(4844), - [anon_sym_e_GT] = ACTIONS(4844), - [anon_sym_o_GT] = ACTIONS(4844), - [anon_sym_err_PLUSout_GT] = ACTIONS(4844), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4844), - [anon_sym_o_PLUSe_GT] = ACTIONS(4844), - [anon_sym_e_PLUSo_GT] = ACTIONS(4844), - [anon_sym_err_GT_GT] = ACTIONS(4842), - [anon_sym_out_GT_GT] = ACTIONS(4842), - [anon_sym_e_GT_GT] = ACTIONS(4842), - [anon_sym_o_GT_GT] = ACTIONS(4842), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4842), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4842), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4842), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4842), - [anon_sym_POUND] = ACTIONS(247), - }, - [1490] = { - [sym__expr_parenthesized_immediate] = STATE(7283), - [sym_comment] = STATE(1490), - [sym__newline] = ACTIONS(4842), - [anon_sym_SEMI] = ACTIONS(4842), - [anon_sym_PIPE] = ACTIONS(4842), - [anon_sym_err_GT_PIPE] = ACTIONS(4842), - [anon_sym_out_GT_PIPE] = ACTIONS(4842), - [anon_sym_e_GT_PIPE] = ACTIONS(4842), - [anon_sym_o_GT_PIPE] = ACTIONS(4842), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4842), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4842), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4842), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4842), - [anon_sym_RPAREN] = ACTIONS(4842), - [anon_sym_DASH_DASH] = ACTIONS(4842), - [anon_sym_DASH] = ACTIONS(4844), - [anon_sym_LBRACE] = ACTIONS(4842), - [anon_sym_RBRACE] = ACTIONS(4842), - [anon_sym_EQ_GT] = ACTIONS(4842), - [anon_sym_LPAREN2] = ACTIONS(3978), - [aux_sym_expr_binary_token1] = ACTIONS(4842), - [aux_sym_expr_binary_token2] = ACTIONS(4842), - [aux_sym_expr_binary_token3] = ACTIONS(4842), - [aux_sym_expr_binary_token4] = ACTIONS(4842), - [aux_sym_expr_binary_token5] = ACTIONS(4842), - [aux_sym_expr_binary_token6] = ACTIONS(4842), - [aux_sym_expr_binary_token7] = ACTIONS(4842), - [aux_sym_expr_binary_token8] = ACTIONS(4842), - [aux_sym_expr_binary_token9] = ACTIONS(4842), - [aux_sym_expr_binary_token10] = ACTIONS(4842), - [aux_sym_expr_binary_token11] = ACTIONS(4842), - [aux_sym_expr_binary_token12] = ACTIONS(4842), - [aux_sym_expr_binary_token13] = ACTIONS(4842), - [aux_sym_expr_binary_token14] = ACTIONS(4842), - [aux_sym_expr_binary_token15] = ACTIONS(4842), - [aux_sym_expr_binary_token16] = ACTIONS(4842), - [aux_sym_expr_binary_token17] = ACTIONS(4842), - [aux_sym_expr_binary_token18] = ACTIONS(4842), - [aux_sym_expr_binary_token19] = ACTIONS(4842), - [aux_sym_expr_binary_token20] = ACTIONS(4842), - [aux_sym_expr_binary_token21] = ACTIONS(4842), - [aux_sym_expr_binary_token22] = ACTIONS(4842), - [aux_sym_expr_binary_token23] = ACTIONS(4842), - [aux_sym_expr_binary_token24] = ACTIONS(4842), - [aux_sym_expr_binary_token25] = ACTIONS(4842), - [aux_sym_expr_binary_token26] = ACTIONS(4842), - [aux_sym_expr_binary_token27] = ACTIONS(4842), - [aux_sym_expr_binary_token28] = ACTIONS(4842), - [anon_sym_err_GT] = ACTIONS(4844), - [anon_sym_out_GT] = ACTIONS(4844), - [anon_sym_e_GT] = ACTIONS(4844), - [anon_sym_o_GT] = ACTIONS(4844), - [anon_sym_err_PLUSout_GT] = ACTIONS(4844), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4844), - [anon_sym_o_PLUSe_GT] = ACTIONS(4844), - [anon_sym_e_PLUSo_GT] = ACTIONS(4844), - [anon_sym_err_GT_GT] = ACTIONS(4842), - [anon_sym_out_GT_GT] = ACTIONS(4842), - [anon_sym_e_GT_GT] = ACTIONS(4842), - [anon_sym_o_GT_GT] = ACTIONS(4842), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4842), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4842), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4842), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4842), - [anon_sym_POUND] = ACTIONS(247), - }, - [1491] = { + [ts_builtin_sym_end] = ACTIONS(1850), + [anon_sym_true] = ACTIONS(1850), + [anon_sym_false] = ACTIONS(1850), + [anon_sym_null] = ACTIONS(1850), + [aux_sym_cmd_identifier_token38] = ACTIONS(1850), + [aux_sym_cmd_identifier_token39] = ACTIONS(1850), + [aux_sym_cmd_identifier_token40] = ACTIONS(1850), + [sym__newline] = ACTIONS(1850), + [anon_sym_SEMI] = ACTIONS(1850), + [anon_sym_PIPE] = ACTIONS(1850), + [anon_sym_err_GT_PIPE] = ACTIONS(1850), + [anon_sym_out_GT_PIPE] = ACTIONS(1850), + [anon_sym_e_GT_PIPE] = ACTIONS(1850), + [anon_sym_o_GT_PIPE] = ACTIONS(1850), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1850), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1850), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1850), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1850), + [anon_sym_LBRACK] = ACTIONS(1850), + [anon_sym_LPAREN] = ACTIONS(1842), + [anon_sym_DOLLAR] = ACTIONS(1842), + [anon_sym_DASH_DASH] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1850), + [anon_sym_DOT_DOT] = ACTIONS(1842), + [anon_sym_LPAREN2] = ACTIONS(1844), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1850), + [anon_sym_DOT_DOT_LT] = ACTIONS(1850), + [aux_sym__val_number_decimal_token1] = ACTIONS(1842), + [aux_sym__val_number_decimal_token2] = ACTIONS(1850), + [aux_sym__val_number_decimal_token3] = ACTIONS(1850), + [aux_sym__val_number_decimal_token4] = ACTIONS(1850), + [aux_sym__val_number_token1] = ACTIONS(1850), + [aux_sym__val_number_token2] = ACTIONS(1850), + [aux_sym__val_number_token3] = ACTIONS(1850), + [anon_sym_0b] = ACTIONS(1842), + [anon_sym_0o] = ACTIONS(1842), + [anon_sym_0x] = ACTIONS(1842), + [sym_val_date] = ACTIONS(1850), + [anon_sym_DQUOTE] = ACTIONS(1850), + [sym__str_single_quotes] = ACTIONS(1850), + [sym__str_back_ticks] = ACTIONS(1850), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1850), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1850), + [anon_sym_err_GT] = ACTIONS(1842), + [anon_sym_out_GT] = ACTIONS(1842), + [anon_sym_e_GT] = ACTIONS(1842), + [anon_sym_o_GT] = ACTIONS(1842), + [anon_sym_err_PLUSout_GT] = ACTIONS(1842), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1842), + [anon_sym_o_PLUSe_GT] = ACTIONS(1842), + [anon_sym_e_PLUSo_GT] = ACTIONS(1842), + [anon_sym_err_GT_GT] = ACTIONS(1850), + [anon_sym_out_GT_GT] = ACTIONS(1850), + [anon_sym_e_GT_GT] = ACTIONS(1850), + [anon_sym_o_GT_GT] = ACTIONS(1850), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1850), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1850), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1850), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1850), + [aux_sym_unquoted_token1] = ACTIONS(1842), + [aux_sym_unquoted_token2] = ACTIONS(1852), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1850), + }, + [1486] = { + [sym_comment] = STATE(1486), + [anon_sym_true] = ACTIONS(1068), + [anon_sym_false] = ACTIONS(1068), + [anon_sym_null] = ACTIONS(1068), + [aux_sym_cmd_identifier_token38] = ACTIONS(1068), + [aux_sym_cmd_identifier_token39] = ACTIONS(1068), + [aux_sym_cmd_identifier_token40] = ACTIONS(1068), + [sym__newline] = ACTIONS(1068), + [anon_sym_SEMI] = ACTIONS(1068), + [anon_sym_PIPE] = ACTIONS(1068), + [anon_sym_err_GT_PIPE] = ACTIONS(1068), + [anon_sym_out_GT_PIPE] = ACTIONS(1068), + [anon_sym_e_GT_PIPE] = ACTIONS(1068), + [anon_sym_o_GT_PIPE] = ACTIONS(1068), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1068), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1068), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1068), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1068), + [anon_sym_LBRACK] = ACTIONS(1068), + [anon_sym_LPAREN] = ACTIONS(1068), + [anon_sym_RPAREN] = ACTIONS(1068), + [anon_sym_DOLLAR] = ACTIONS(1066), + [anon_sym_DASH_DASH] = ACTIONS(1068), + [anon_sym_DASH] = ACTIONS(1066), + [anon_sym_LBRACE] = ACTIONS(1068), + [anon_sym_RBRACE] = ACTIONS(1068), + [anon_sym_DOT_DOT] = ACTIONS(1066), + [anon_sym_DOT] = ACTIONS(1066), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1068), + [anon_sym_DOT_DOT_LT] = ACTIONS(1068), + [aux_sym__val_number_decimal_token1] = ACTIONS(1066), + [aux_sym__val_number_decimal_token2] = ACTIONS(1068), + [aux_sym__val_number_decimal_token3] = ACTIONS(1068), + [aux_sym__val_number_decimal_token4] = ACTIONS(1068), + [aux_sym__val_number_token1] = ACTIONS(1068), + [aux_sym__val_number_token2] = ACTIONS(1068), + [aux_sym__val_number_token3] = ACTIONS(1068), + [anon_sym_0b] = ACTIONS(1066), + [anon_sym_0o] = ACTIONS(1066), + [anon_sym_0x] = ACTIONS(1066), + [sym_val_date] = ACTIONS(1068), + [anon_sym_DQUOTE] = ACTIONS(1068), + [sym__str_single_quotes] = ACTIONS(1068), + [sym__str_back_ticks] = ACTIONS(1068), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1068), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1068), + [anon_sym_err_GT] = ACTIONS(1066), + [anon_sym_out_GT] = ACTIONS(1066), + [anon_sym_e_GT] = ACTIONS(1066), + [anon_sym_o_GT] = ACTIONS(1066), + [anon_sym_err_PLUSout_GT] = ACTIONS(1066), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1066), + [anon_sym_o_PLUSe_GT] = ACTIONS(1066), + [anon_sym_e_PLUSo_GT] = ACTIONS(1066), + [anon_sym_err_GT_GT] = ACTIONS(1068), + [anon_sym_out_GT_GT] = ACTIONS(1068), + [anon_sym_e_GT_GT] = ACTIONS(1068), + [anon_sym_o_GT_GT] = ACTIONS(1068), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1068), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1068), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1068), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1068), + [aux_sym_unquoted_token1] = ACTIONS(1066), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1068), + }, + [1487] = { + [sym_comment] = STATE(1487), + [anon_sym_true] = ACTIONS(1072), + [anon_sym_false] = ACTIONS(1072), + [anon_sym_null] = ACTIONS(1072), + [aux_sym_cmd_identifier_token38] = ACTIONS(1072), + [aux_sym_cmd_identifier_token39] = ACTIONS(1072), + [aux_sym_cmd_identifier_token40] = ACTIONS(1072), + [sym__newline] = ACTIONS(1072), + [anon_sym_SEMI] = ACTIONS(1072), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_err_GT_PIPE] = ACTIONS(1072), + [anon_sym_out_GT_PIPE] = ACTIONS(1072), + [anon_sym_e_GT_PIPE] = ACTIONS(1072), + [anon_sym_o_GT_PIPE] = ACTIONS(1072), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1072), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1072), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1072), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1072), + [anon_sym_LBRACK] = ACTIONS(1072), + [anon_sym_LPAREN] = ACTIONS(1072), + [anon_sym_RPAREN] = ACTIONS(1072), + [anon_sym_DOLLAR] = ACTIONS(1070), + [anon_sym_DASH_DASH] = ACTIONS(1072), + [anon_sym_DASH] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_RBRACE] = ACTIONS(1072), + [anon_sym_DOT_DOT] = ACTIONS(1070), + [anon_sym_DOT] = ACTIONS(1070), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1072), + [anon_sym_DOT_DOT_LT] = ACTIONS(1072), + [aux_sym__val_number_decimal_token1] = ACTIONS(1070), + [aux_sym__val_number_decimal_token2] = ACTIONS(1072), + [aux_sym__val_number_decimal_token3] = ACTIONS(1072), + [aux_sym__val_number_decimal_token4] = ACTIONS(1072), + [aux_sym__val_number_token1] = ACTIONS(1072), + [aux_sym__val_number_token2] = ACTIONS(1072), + [aux_sym__val_number_token3] = ACTIONS(1072), + [anon_sym_0b] = ACTIONS(1070), + [anon_sym_0o] = ACTIONS(1070), + [anon_sym_0x] = ACTIONS(1070), + [sym_val_date] = ACTIONS(1072), + [anon_sym_DQUOTE] = ACTIONS(1072), + [sym__str_single_quotes] = ACTIONS(1072), + [sym__str_back_ticks] = ACTIONS(1072), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1072), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1072), + [anon_sym_err_GT] = ACTIONS(1070), + [anon_sym_out_GT] = ACTIONS(1070), + [anon_sym_e_GT] = ACTIONS(1070), + [anon_sym_o_GT] = ACTIONS(1070), + [anon_sym_err_PLUSout_GT] = ACTIONS(1070), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1070), + [anon_sym_o_PLUSe_GT] = ACTIONS(1070), + [anon_sym_e_PLUSo_GT] = ACTIONS(1070), + [anon_sym_err_GT_GT] = ACTIONS(1072), + [anon_sym_out_GT_GT] = ACTIONS(1072), + [anon_sym_e_GT_GT] = ACTIONS(1072), + [anon_sym_o_GT_GT] = ACTIONS(1072), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1072), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1072), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1072), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1072), + [aux_sym_unquoted_token1] = ACTIONS(1070), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1072), + }, + [1488] = { + [sym_cell_path] = STATE(2006), + [sym_path] = STATE(1299), + [sym_comment] = STATE(1488), + [aux_sym_cell_path_repeat1] = STATE(1225), + [ts_builtin_sym_end] = ACTIONS(1672), + [sym__newline] = ACTIONS(1672), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_PIPE] = ACTIONS(1672), + [anon_sym_err_GT_PIPE] = ACTIONS(1672), + [anon_sym_out_GT_PIPE] = ACTIONS(1672), + [anon_sym_e_GT_PIPE] = ACTIONS(1672), + [anon_sym_o_GT_PIPE] = ACTIONS(1672), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1672), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1672), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1672), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1672), + [aux_sym_expr_binary_token1] = ACTIONS(1672), + [aux_sym_expr_binary_token2] = ACTIONS(1672), + [aux_sym_expr_binary_token3] = ACTIONS(1672), + [aux_sym_expr_binary_token4] = ACTIONS(1672), + [aux_sym_expr_binary_token5] = ACTIONS(1672), + [aux_sym_expr_binary_token6] = ACTIONS(1672), + [aux_sym_expr_binary_token7] = ACTIONS(1672), + [aux_sym_expr_binary_token8] = ACTIONS(1672), + [aux_sym_expr_binary_token9] = ACTIONS(1672), + [aux_sym_expr_binary_token10] = ACTIONS(1672), + [aux_sym_expr_binary_token11] = ACTIONS(1672), + [aux_sym_expr_binary_token12] = ACTIONS(1672), + [aux_sym_expr_binary_token13] = ACTIONS(1672), + [aux_sym_expr_binary_token14] = ACTIONS(1672), + [aux_sym_expr_binary_token15] = ACTIONS(1672), + [aux_sym_expr_binary_token16] = ACTIONS(1672), + [aux_sym_expr_binary_token17] = ACTIONS(1672), + [aux_sym_expr_binary_token18] = ACTIONS(1672), + [aux_sym_expr_binary_token19] = ACTIONS(1672), + [aux_sym_expr_binary_token20] = ACTIONS(1672), + [aux_sym_expr_binary_token21] = ACTIONS(1672), + [aux_sym_expr_binary_token22] = ACTIONS(1672), + [aux_sym_expr_binary_token23] = ACTIONS(1672), + [aux_sym_expr_binary_token24] = ACTIONS(1672), + [aux_sym_expr_binary_token25] = ACTIONS(1672), + [aux_sym_expr_binary_token26] = ACTIONS(1672), + [aux_sym_expr_binary_token27] = ACTIONS(1672), + [aux_sym_expr_binary_token28] = ACTIONS(1672), + [anon_sym_DOT_DOT2] = ACTIONS(1670), + [anon_sym_DOT] = ACTIONS(4494), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1672), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1672), + [anon_sym_err_GT] = ACTIONS(1670), + [anon_sym_out_GT] = ACTIONS(1670), + [anon_sym_e_GT] = ACTIONS(1670), + [anon_sym_o_GT] = ACTIONS(1670), + [anon_sym_err_PLUSout_GT] = ACTIONS(1670), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1670), + [anon_sym_o_PLUSe_GT] = ACTIONS(1670), + [anon_sym_e_PLUSo_GT] = ACTIONS(1670), + [anon_sym_err_GT_GT] = ACTIONS(1672), + [anon_sym_out_GT_GT] = ACTIONS(1672), + [anon_sym_e_GT_GT] = ACTIONS(1672), + [anon_sym_o_GT_GT] = ACTIONS(1672), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1672), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1672), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1672), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1672), + [anon_sym_POUND] = ACTIONS(249), + }, + [1489] = { + [sym_comment] = STATE(1489), + [anon_sym_true] = ACTIONS(4945), + [anon_sym_false] = ACTIONS(4945), + [anon_sym_null] = ACTIONS(4945), + [aux_sym_cmd_identifier_token38] = ACTIONS(4945), + [aux_sym_cmd_identifier_token39] = ACTIONS(4945), + [aux_sym_cmd_identifier_token40] = ACTIONS(4945), + [sym__newline] = ACTIONS(4945), + [anon_sym_SEMI] = ACTIONS(4945), + [anon_sym_PIPE] = ACTIONS(4945), + [anon_sym_err_GT_PIPE] = ACTIONS(4945), + [anon_sym_out_GT_PIPE] = ACTIONS(4945), + [anon_sym_e_GT_PIPE] = ACTIONS(4945), + [anon_sym_o_GT_PIPE] = ACTIONS(4945), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4945), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4945), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4945), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4945), + [anon_sym_LBRACK] = ACTIONS(4945), + [anon_sym_LPAREN] = ACTIONS(4945), + [anon_sym_RPAREN] = ACTIONS(4945), + [anon_sym_DOLLAR] = ACTIONS(4947), + [anon_sym_DASH_DASH] = ACTIONS(4945), + [anon_sym_DASH] = ACTIONS(4947), + [anon_sym_LBRACE] = ACTIONS(4945), + [anon_sym_RBRACE] = ACTIONS(4945), + [anon_sym_DOT_DOT] = ACTIONS(4947), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4945), + [anon_sym_DOT_DOT_LT] = ACTIONS(4945), + [aux_sym__val_number_decimal_token1] = ACTIONS(4947), + [aux_sym__val_number_decimal_token2] = ACTIONS(4945), + [aux_sym__val_number_decimal_token3] = ACTIONS(4945), + [aux_sym__val_number_decimal_token4] = ACTIONS(4945), + [aux_sym__val_number_token1] = ACTIONS(4945), + [aux_sym__val_number_token2] = ACTIONS(4945), + [aux_sym__val_number_token3] = ACTIONS(4945), + [anon_sym_0b] = ACTIONS(4947), + [anon_sym_0o] = ACTIONS(4947), + [anon_sym_0x] = ACTIONS(4947), + [sym_val_date] = ACTIONS(4945), + [anon_sym_DQUOTE] = ACTIONS(4945), + [sym__str_single_quotes] = ACTIONS(4945), + [sym__str_back_ticks] = ACTIONS(4945), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4945), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4945), + [anon_sym_err_GT] = ACTIONS(4947), + [anon_sym_out_GT] = ACTIONS(4947), + [anon_sym_e_GT] = ACTIONS(4947), + [anon_sym_o_GT] = ACTIONS(4947), + [anon_sym_err_PLUSout_GT] = ACTIONS(4947), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4947), + [anon_sym_o_PLUSe_GT] = ACTIONS(4947), + [anon_sym_e_PLUSo_GT] = ACTIONS(4947), + [anon_sym_err_GT_GT] = ACTIONS(4945), + [anon_sym_out_GT_GT] = ACTIONS(4945), + [anon_sym_e_GT_GT] = ACTIONS(4945), + [anon_sym_o_GT_GT] = ACTIONS(4945), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4945), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4945), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4945), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4945), + [anon_sym_EQ2] = ACTIONS(4949), + [aux_sym_unquoted_token1] = ACTIONS(4947), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(4945), + }, + [1490] = { + [sym__expr_parenthesized_immediate] = STATE(7791), + [sym_comment] = STATE(1490), + [ts_builtin_sym_end] = ACTIONS(4808), + [anon_sym_true] = ACTIONS(4808), + [anon_sym_false] = ACTIONS(4808), + [anon_sym_null] = ACTIONS(4808), + [aux_sym_cmd_identifier_token38] = ACTIONS(4808), + [aux_sym_cmd_identifier_token39] = ACTIONS(4808), + [aux_sym_cmd_identifier_token40] = ACTIONS(4808), + [sym__newline] = ACTIONS(4808), + [anon_sym_SEMI] = ACTIONS(4808), + [anon_sym_PIPE] = ACTIONS(4808), + [anon_sym_err_GT_PIPE] = ACTIONS(4808), + [anon_sym_out_GT_PIPE] = ACTIONS(4808), + [anon_sym_e_GT_PIPE] = ACTIONS(4808), + [anon_sym_o_GT_PIPE] = ACTIONS(4808), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4808), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4808), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4808), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4808), + [anon_sym_LBRACK] = ACTIONS(4808), + [anon_sym_LPAREN] = ACTIONS(4810), + [anon_sym_DOLLAR] = ACTIONS(4810), + [anon_sym_DASH_DASH] = ACTIONS(4808), + [anon_sym_DASH] = ACTIONS(4810), + [anon_sym_LBRACE] = ACTIONS(4808), + [anon_sym_DOT_DOT] = ACTIONS(4810), + [anon_sym_LPAREN2] = ACTIONS(4433), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4808), + [anon_sym_DOT_DOT_LT] = ACTIONS(4808), + [aux_sym__val_number_decimal_token1] = ACTIONS(4810), + [aux_sym__val_number_decimal_token2] = ACTIONS(4808), + [aux_sym__val_number_decimal_token3] = ACTIONS(4808), + [aux_sym__val_number_decimal_token4] = ACTIONS(4808), + [aux_sym__val_number_token1] = ACTIONS(4808), + [aux_sym__val_number_token2] = ACTIONS(4808), + [aux_sym__val_number_token3] = ACTIONS(4808), + [anon_sym_0b] = ACTIONS(4810), + [anon_sym_0o] = ACTIONS(4810), + [anon_sym_0x] = ACTIONS(4810), + [sym_val_date] = ACTIONS(4808), + [anon_sym_DQUOTE] = ACTIONS(4808), + [sym__str_single_quotes] = ACTIONS(4808), + [sym__str_back_ticks] = ACTIONS(4808), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4808), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4808), + [anon_sym_err_GT] = ACTIONS(4810), + [anon_sym_out_GT] = ACTIONS(4810), + [anon_sym_e_GT] = ACTIONS(4810), + [anon_sym_o_GT] = ACTIONS(4810), + [anon_sym_err_PLUSout_GT] = ACTIONS(4810), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4810), + [anon_sym_o_PLUSe_GT] = ACTIONS(4810), + [anon_sym_e_PLUSo_GT] = ACTIONS(4810), + [anon_sym_err_GT_GT] = ACTIONS(4808), + [anon_sym_out_GT_GT] = ACTIONS(4808), + [anon_sym_e_GT_GT] = ACTIONS(4808), + [anon_sym_o_GT_GT] = ACTIONS(4808), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4808), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4808), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4808), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4808), + [aux_sym_unquoted_token1] = ACTIONS(4810), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(4808), + }, + [1491] = { + [sym__expr_parenthesized_immediate] = STATE(7791), [sym_comment] = STATE(1491), - [ts_builtin_sym_end] = ACTIONS(2013), - [anon_sym_true] = ACTIONS(2013), - [anon_sym_false] = ACTIONS(2013), - [anon_sym_null] = ACTIONS(2013), - [aux_sym_cmd_identifier_token38] = ACTIONS(2013), - [aux_sym_cmd_identifier_token39] = ACTIONS(2013), - [aux_sym_cmd_identifier_token40] = ACTIONS(2013), - [sym__newline] = ACTIONS(2013), - [anon_sym_SEMI] = ACTIONS(2013), - [anon_sym_PIPE] = ACTIONS(2013), - [anon_sym_err_GT_PIPE] = ACTIONS(2013), - [anon_sym_out_GT_PIPE] = ACTIONS(2013), - [anon_sym_e_GT_PIPE] = ACTIONS(2013), - [anon_sym_o_GT_PIPE] = ACTIONS(2013), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2013), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2013), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2013), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2013), - [anon_sym_LBRACK] = ACTIONS(2013), - [anon_sym_LPAREN] = ACTIONS(2013), - [anon_sym_DOLLAR] = ACTIONS(2007), - [anon_sym_DASH_DASH] = ACTIONS(2013), - [anon_sym_DASH] = ACTIONS(2007), - [anon_sym_LBRACE] = ACTIONS(2013), - [anon_sym_DOT_DOT] = ACTIONS(2007), - [anon_sym_DOT_DOT2] = ACTIONS(4846), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2007), - [anon_sym_DOT_DOT_LT] = ACTIONS(2007), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4848), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4848), - [aux_sym__val_number_decimal_token1] = ACTIONS(2007), - [aux_sym__val_number_decimal_token2] = ACTIONS(2013), - [aux_sym__val_number_decimal_token3] = ACTIONS(2013), - [aux_sym__val_number_decimal_token4] = ACTIONS(2013), - [aux_sym__val_number_token1] = ACTIONS(2013), - [aux_sym__val_number_token2] = ACTIONS(2013), - [aux_sym__val_number_token3] = ACTIONS(2013), - [anon_sym_0b] = ACTIONS(2007), - [anon_sym_0o] = ACTIONS(2007), - [anon_sym_0x] = ACTIONS(2007), - [sym_val_date] = ACTIONS(2013), - [anon_sym_DQUOTE] = ACTIONS(2013), - [sym__str_single_quotes] = ACTIONS(2013), - [sym__str_back_ticks] = ACTIONS(2013), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2013), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2013), - [anon_sym_err_GT] = ACTIONS(2007), - [anon_sym_out_GT] = ACTIONS(2007), - [anon_sym_e_GT] = ACTIONS(2007), - [anon_sym_o_GT] = ACTIONS(2007), - [anon_sym_err_PLUSout_GT] = ACTIONS(2007), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2007), - [anon_sym_o_PLUSe_GT] = ACTIONS(2007), - [anon_sym_e_PLUSo_GT] = ACTIONS(2007), - [anon_sym_err_GT_GT] = ACTIONS(2013), - [anon_sym_out_GT_GT] = ACTIONS(2013), - [anon_sym_e_GT_GT] = ACTIONS(2013), - [anon_sym_o_GT_GT] = ACTIONS(2013), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2013), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2013), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2013), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2013), - [aux_sym_unquoted_token1] = ACTIONS(2007), - [anon_sym_POUND] = ACTIONS(247), + [ts_builtin_sym_end] = ACTIONS(4812), + [anon_sym_true] = ACTIONS(4812), + [anon_sym_false] = ACTIONS(4812), + [anon_sym_null] = ACTIONS(4812), + [aux_sym_cmd_identifier_token38] = ACTIONS(4812), + [aux_sym_cmd_identifier_token39] = ACTIONS(4812), + [aux_sym_cmd_identifier_token40] = ACTIONS(4812), + [sym__newline] = ACTIONS(4812), + [anon_sym_SEMI] = ACTIONS(4812), + [anon_sym_PIPE] = ACTIONS(4812), + [anon_sym_err_GT_PIPE] = ACTIONS(4812), + [anon_sym_out_GT_PIPE] = ACTIONS(4812), + [anon_sym_e_GT_PIPE] = ACTIONS(4812), + [anon_sym_o_GT_PIPE] = ACTIONS(4812), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4812), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4812), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4812), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4812), + [anon_sym_LBRACK] = ACTIONS(4812), + [anon_sym_LPAREN] = ACTIONS(4814), + [anon_sym_DOLLAR] = ACTIONS(4814), + [anon_sym_DASH_DASH] = ACTIONS(4812), + [anon_sym_DASH] = ACTIONS(4814), + [anon_sym_LBRACE] = ACTIONS(4812), + [anon_sym_DOT_DOT] = ACTIONS(4814), + [anon_sym_LPAREN2] = ACTIONS(4433), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4812), + [anon_sym_DOT_DOT_LT] = ACTIONS(4812), + [aux_sym__val_number_decimal_token1] = ACTIONS(4814), + [aux_sym__val_number_decimal_token2] = ACTIONS(4812), + [aux_sym__val_number_decimal_token3] = ACTIONS(4812), + [aux_sym__val_number_decimal_token4] = ACTIONS(4812), + [aux_sym__val_number_token1] = ACTIONS(4812), + [aux_sym__val_number_token2] = ACTIONS(4812), + [aux_sym__val_number_token3] = ACTIONS(4812), + [anon_sym_0b] = ACTIONS(4814), + [anon_sym_0o] = ACTIONS(4814), + [anon_sym_0x] = ACTIONS(4814), + [sym_val_date] = ACTIONS(4812), + [anon_sym_DQUOTE] = ACTIONS(4812), + [sym__str_single_quotes] = ACTIONS(4812), + [sym__str_back_ticks] = ACTIONS(4812), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4812), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4812), + [anon_sym_err_GT] = ACTIONS(4814), + [anon_sym_out_GT] = ACTIONS(4814), + [anon_sym_e_GT] = ACTIONS(4814), + [anon_sym_o_GT] = ACTIONS(4814), + [anon_sym_err_PLUSout_GT] = ACTIONS(4814), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4814), + [anon_sym_o_PLUSe_GT] = ACTIONS(4814), + [anon_sym_e_PLUSo_GT] = ACTIONS(4814), + [anon_sym_err_GT_GT] = ACTIONS(4812), + [anon_sym_out_GT_GT] = ACTIONS(4812), + [anon_sym_e_GT_GT] = ACTIONS(4812), + [anon_sym_o_GT_GT] = ACTIONS(4812), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4812), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4812), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4812), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4812), + [aux_sym_unquoted_token1] = ACTIONS(4814), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(4812), }, [1492] = { + [sym__expr_parenthesized_immediate] = STATE(7791), [sym_comment] = STATE(1492), - [anon_sym_true] = ACTIONS(1669), - [anon_sym_false] = ACTIONS(1669), - [anon_sym_null] = ACTIONS(1669), - [aux_sym_cmd_identifier_token38] = ACTIONS(1669), - [aux_sym_cmd_identifier_token39] = ACTIONS(1669), - [aux_sym_cmd_identifier_token40] = ACTIONS(1669), - [sym__newline] = ACTIONS(1669), - [anon_sym_SEMI] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1669), - [anon_sym_err_GT_PIPE] = ACTIONS(1669), - [anon_sym_out_GT_PIPE] = ACTIONS(1669), - [anon_sym_e_GT_PIPE] = ACTIONS(1669), - [anon_sym_o_GT_PIPE] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), - [anon_sym_LBRACK] = ACTIONS(1669), - [anon_sym_LPAREN] = ACTIONS(1669), - [anon_sym_RPAREN] = ACTIONS(1669), - [anon_sym_DOLLAR] = ACTIONS(1667), - [anon_sym_DASH_DASH] = ACTIONS(1669), - [anon_sym_DASH] = ACTIONS(1667), - [anon_sym_LBRACE] = ACTIONS(1669), - [anon_sym_RBRACE] = ACTIONS(1669), - [anon_sym_DOT_DOT] = ACTIONS(1667), - [anon_sym_DOT] = ACTIONS(4850), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT] = ACTIONS(1669), - [aux_sym__immediate_decimal_token2] = ACTIONS(4852), - [aux_sym__val_number_decimal_token1] = ACTIONS(1667), - [aux_sym__val_number_decimal_token2] = ACTIONS(1669), - [aux_sym__val_number_decimal_token3] = ACTIONS(1669), - [aux_sym__val_number_decimal_token4] = ACTIONS(1669), - [aux_sym__val_number_token1] = ACTIONS(1669), - [aux_sym__val_number_token2] = ACTIONS(1669), - [aux_sym__val_number_token3] = ACTIONS(1669), - [anon_sym_0b] = ACTIONS(1667), - [anon_sym_0o] = ACTIONS(1667), - [anon_sym_0x] = ACTIONS(1667), - [sym_val_date] = ACTIONS(1669), - [anon_sym_DQUOTE] = ACTIONS(1669), - [sym__str_single_quotes] = ACTIONS(1669), - [sym__str_back_ticks] = ACTIONS(1669), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1669), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1669), - [anon_sym_err_GT] = ACTIONS(1667), - [anon_sym_out_GT] = ACTIONS(1667), - [anon_sym_e_GT] = ACTIONS(1667), - [anon_sym_o_GT] = ACTIONS(1667), - [anon_sym_err_PLUSout_GT] = ACTIONS(1667), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1667), - [anon_sym_o_PLUSe_GT] = ACTIONS(1667), - [anon_sym_e_PLUSo_GT] = ACTIONS(1667), - [anon_sym_err_GT_GT] = ACTIONS(1669), - [anon_sym_out_GT_GT] = ACTIONS(1669), - [anon_sym_e_GT_GT] = ACTIONS(1669), - [anon_sym_o_GT_GT] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1669), - [aux_sym_unquoted_token1] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(247), + [ts_builtin_sym_end] = ACTIONS(4844), + [anon_sym_true] = ACTIONS(4844), + [anon_sym_false] = ACTIONS(4844), + [anon_sym_null] = ACTIONS(4844), + [aux_sym_cmd_identifier_token38] = ACTIONS(4844), + [aux_sym_cmd_identifier_token39] = ACTIONS(4844), + [aux_sym_cmd_identifier_token40] = ACTIONS(4844), + [sym__newline] = ACTIONS(4844), + [anon_sym_SEMI] = ACTIONS(4844), + [anon_sym_PIPE] = ACTIONS(4844), + [anon_sym_err_GT_PIPE] = ACTIONS(4844), + [anon_sym_out_GT_PIPE] = ACTIONS(4844), + [anon_sym_e_GT_PIPE] = ACTIONS(4844), + [anon_sym_o_GT_PIPE] = ACTIONS(4844), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4844), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4844), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4844), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4844), + [anon_sym_LBRACK] = ACTIONS(4844), + [anon_sym_LPAREN] = ACTIONS(4846), + [anon_sym_DOLLAR] = ACTIONS(4846), + [anon_sym_DASH_DASH] = ACTIONS(4844), + [anon_sym_DASH] = ACTIONS(4846), + [anon_sym_LBRACE] = ACTIONS(4844), + [anon_sym_DOT_DOT] = ACTIONS(4846), + [anon_sym_LPAREN2] = ACTIONS(4433), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4844), + [anon_sym_DOT_DOT_LT] = ACTIONS(4844), + [aux_sym__val_number_decimal_token1] = ACTIONS(4846), + [aux_sym__val_number_decimal_token2] = ACTIONS(4844), + [aux_sym__val_number_decimal_token3] = ACTIONS(4844), + [aux_sym__val_number_decimal_token4] = ACTIONS(4844), + [aux_sym__val_number_token1] = ACTIONS(4844), + [aux_sym__val_number_token2] = ACTIONS(4844), + [aux_sym__val_number_token3] = ACTIONS(4844), + [anon_sym_0b] = ACTIONS(4846), + [anon_sym_0o] = ACTIONS(4846), + [anon_sym_0x] = ACTIONS(4846), + [sym_val_date] = ACTIONS(4844), + [anon_sym_DQUOTE] = ACTIONS(4844), + [sym__str_single_quotes] = ACTIONS(4844), + [sym__str_back_ticks] = ACTIONS(4844), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4844), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4844), + [anon_sym_err_GT] = ACTIONS(4846), + [anon_sym_out_GT] = ACTIONS(4846), + [anon_sym_e_GT] = ACTIONS(4846), + [anon_sym_o_GT] = ACTIONS(4846), + [anon_sym_err_PLUSout_GT] = ACTIONS(4846), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4846), + [anon_sym_o_PLUSe_GT] = ACTIONS(4846), + [anon_sym_e_PLUSo_GT] = ACTIONS(4846), + [anon_sym_err_GT_GT] = ACTIONS(4844), + [anon_sym_out_GT_GT] = ACTIONS(4844), + [anon_sym_e_GT_GT] = ACTIONS(4844), + [anon_sym_o_GT_GT] = ACTIONS(4844), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4844), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4844), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4844), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4844), + [aux_sym_unquoted_token1] = ACTIONS(4846), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(4844), }, [1493] = { - [sym_path] = STATE(1603), [sym_comment] = STATE(1493), - [aux_sym_cell_path_repeat1] = STATE(1444), - [ts_builtin_sym_end] = ACTIONS(1013), - [anon_sym_true] = ACTIONS(1013), - [anon_sym_false] = ACTIONS(1013), - [anon_sym_null] = ACTIONS(1013), - [aux_sym_cmd_identifier_token38] = ACTIONS(1013), - [aux_sym_cmd_identifier_token39] = ACTIONS(1013), - [aux_sym_cmd_identifier_token40] = ACTIONS(1013), - [sym__newline] = ACTIONS(1013), - [anon_sym_SEMI] = ACTIONS(1013), - [anon_sym_PIPE] = ACTIONS(1013), - [anon_sym_err_GT_PIPE] = ACTIONS(1013), - [anon_sym_out_GT_PIPE] = ACTIONS(1013), - [anon_sym_e_GT_PIPE] = ACTIONS(1013), - [anon_sym_o_GT_PIPE] = ACTIONS(1013), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1013), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1013), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1013), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1013), - [anon_sym_LBRACK] = ACTIONS(1013), - [anon_sym_LPAREN] = ACTIONS(1013), - [anon_sym_DOLLAR] = ACTIONS(1011), - [anon_sym_DASH_DASH] = ACTIONS(1013), - [anon_sym_DASH] = ACTIONS(1011), - [anon_sym_LBRACE] = ACTIONS(1013), - [anon_sym_DOT_DOT] = ACTIONS(1011), - [anon_sym_DOT] = ACTIONS(4680), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1013), - [anon_sym_DOT_DOT_LT] = ACTIONS(1013), - [aux_sym__val_number_decimal_token1] = ACTIONS(1011), - [aux_sym__val_number_decimal_token2] = ACTIONS(1013), - [aux_sym__val_number_decimal_token3] = ACTIONS(1013), - [aux_sym__val_number_decimal_token4] = ACTIONS(1013), - [aux_sym__val_number_token1] = ACTIONS(1013), - [aux_sym__val_number_token2] = ACTIONS(1013), - [aux_sym__val_number_token3] = ACTIONS(1013), - [anon_sym_0b] = ACTIONS(1011), - [anon_sym_0o] = ACTIONS(1011), - [anon_sym_0x] = ACTIONS(1011), - [sym_val_date] = ACTIONS(1013), - [anon_sym_DQUOTE] = ACTIONS(1013), - [sym__str_single_quotes] = ACTIONS(1013), - [sym__str_back_ticks] = ACTIONS(1013), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1013), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1013), - [anon_sym_err_GT] = ACTIONS(1011), - [anon_sym_out_GT] = ACTIONS(1011), - [anon_sym_e_GT] = ACTIONS(1011), - [anon_sym_o_GT] = ACTIONS(1011), - [anon_sym_err_PLUSout_GT] = ACTIONS(1011), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1011), - [anon_sym_o_PLUSe_GT] = ACTIONS(1011), - [anon_sym_e_PLUSo_GT] = ACTIONS(1011), - [anon_sym_err_GT_GT] = ACTIONS(1013), - [anon_sym_out_GT_GT] = ACTIONS(1013), - [anon_sym_e_GT_GT] = ACTIONS(1013), - [anon_sym_o_GT_GT] = ACTIONS(1013), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1013), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1013), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1013), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1013), - [aux_sym_unquoted_token1] = ACTIONS(1011), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(1717), + [anon_sym_false] = ACTIONS(1717), + [anon_sym_null] = ACTIONS(1717), + [aux_sym_cmd_identifier_token38] = ACTIONS(1717), + [aux_sym_cmd_identifier_token39] = ACTIONS(1717), + [aux_sym_cmd_identifier_token40] = ACTIONS(1717), + [sym__newline] = ACTIONS(1717), + [anon_sym_SEMI] = ACTIONS(1717), + [anon_sym_PIPE] = ACTIONS(1717), + [anon_sym_err_GT_PIPE] = ACTIONS(1717), + [anon_sym_out_GT_PIPE] = ACTIONS(1717), + [anon_sym_e_GT_PIPE] = ACTIONS(1717), + [anon_sym_o_GT_PIPE] = ACTIONS(1717), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1717), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1717), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1717), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1717), + [anon_sym_LBRACK] = ACTIONS(1717), + [anon_sym_LPAREN] = ACTIONS(1717), + [anon_sym_RPAREN] = ACTIONS(1717), + [anon_sym_DOLLAR] = ACTIONS(1715), + [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_LBRACE] = ACTIONS(1717), + [anon_sym_RBRACE] = ACTIONS(1717), + [anon_sym_DOT_DOT] = ACTIONS(1715), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1717), + [anon_sym_DOT_DOT_LT] = ACTIONS(1717), + [aux_sym__immediate_decimal_token2] = ACTIONS(4854), + [aux_sym__val_number_decimal_token1] = ACTIONS(1715), + [aux_sym__val_number_decimal_token2] = ACTIONS(1717), + [aux_sym__val_number_decimal_token3] = ACTIONS(1717), + [aux_sym__val_number_decimal_token4] = ACTIONS(1717), + [aux_sym__val_number_token1] = ACTIONS(1717), + [aux_sym__val_number_token2] = ACTIONS(1717), + [aux_sym__val_number_token3] = ACTIONS(1717), + [anon_sym_0b] = ACTIONS(1715), + [anon_sym_0o] = ACTIONS(1715), + [anon_sym_0x] = ACTIONS(1715), + [sym_val_date] = ACTIONS(1717), + [anon_sym_DQUOTE] = ACTIONS(1717), + [sym__str_single_quotes] = ACTIONS(1717), + [sym__str_back_ticks] = ACTIONS(1717), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1717), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1717), + [anon_sym_err_GT] = ACTIONS(1715), + [anon_sym_out_GT] = ACTIONS(1715), + [anon_sym_e_GT] = ACTIONS(1715), + [anon_sym_o_GT] = ACTIONS(1715), + [anon_sym_err_PLUSout_GT] = ACTIONS(1715), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1715), + [anon_sym_o_PLUSe_GT] = ACTIONS(1715), + [anon_sym_e_PLUSo_GT] = ACTIONS(1715), + [anon_sym_err_GT_GT] = ACTIONS(1717), + [anon_sym_out_GT_GT] = ACTIONS(1717), + [anon_sym_e_GT_GT] = ACTIONS(1717), + [anon_sym_o_GT_GT] = ACTIONS(1717), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1717), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1717), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1717), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1717), + [aux_sym_unquoted_token1] = ACTIONS(1715), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1717), }, [1494] = { + [sym__expr_parenthesized_immediate] = STATE(7580), [sym_comment] = STATE(1494), - [anon_sym_true] = ACTIONS(2237), - [anon_sym_false] = ACTIONS(2237), - [anon_sym_null] = ACTIONS(2237), - [aux_sym_cmd_identifier_token38] = ACTIONS(2237), - [aux_sym_cmd_identifier_token39] = ACTIONS(2237), - [aux_sym_cmd_identifier_token40] = ACTIONS(2237), - [sym__newline] = ACTIONS(2241), - [anon_sym_SEMI] = ACTIONS(2241), - [anon_sym_PIPE] = ACTIONS(2241), - [anon_sym_err_GT_PIPE] = ACTIONS(2241), - [anon_sym_out_GT_PIPE] = ACTIONS(2241), - [anon_sym_e_GT_PIPE] = ACTIONS(2241), - [anon_sym_o_GT_PIPE] = ACTIONS(2241), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2241), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2241), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2241), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2241), - [anon_sym_LBRACK] = ACTIONS(2241), - [anon_sym_LPAREN] = ACTIONS(2237), - [anon_sym_RPAREN] = ACTIONS(2241), - [anon_sym_DOLLAR] = ACTIONS(2237), - [anon_sym_DASH_DASH] = ACTIONS(2237), - [anon_sym_DASH] = ACTIONS(2237), - [anon_sym_LBRACE] = ACTIONS(2241), - [anon_sym_RBRACE] = ACTIONS(2241), - [anon_sym_DOT_DOT] = ACTIONS(2237), - [anon_sym_LPAREN2] = ACTIONS(2239), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2237), - [anon_sym_DOT_DOT_LT] = ACTIONS(2237), - [aux_sym__val_number_decimal_token1] = ACTIONS(2237), - [aux_sym__val_number_decimal_token2] = ACTIONS(2237), - [aux_sym__val_number_decimal_token3] = ACTIONS(2237), - [aux_sym__val_number_decimal_token4] = ACTIONS(2237), - [aux_sym__val_number_token1] = ACTIONS(2237), - [aux_sym__val_number_token2] = ACTIONS(2237), - [aux_sym__val_number_token3] = ACTIONS(2237), - [anon_sym_0b] = ACTIONS(2237), - [anon_sym_0o] = ACTIONS(2237), - [anon_sym_0x] = ACTIONS(2237), - [sym_val_date] = ACTIONS(2237), - [anon_sym_DQUOTE] = ACTIONS(2241), - [sym__str_single_quotes] = ACTIONS(2241), - [sym__str_back_ticks] = ACTIONS(2241), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2241), - [anon_sym_err_GT] = ACTIONS(2237), - [anon_sym_out_GT] = ACTIONS(2237), - [anon_sym_e_GT] = ACTIONS(2237), - [anon_sym_o_GT] = ACTIONS(2237), - [anon_sym_err_PLUSout_GT] = ACTIONS(2237), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2237), - [anon_sym_o_PLUSe_GT] = ACTIONS(2237), - [anon_sym_e_PLUSo_GT] = ACTIONS(2237), - [anon_sym_err_GT_GT] = ACTIONS(2237), - [anon_sym_out_GT_GT] = ACTIONS(2237), - [anon_sym_e_GT_GT] = ACTIONS(2237), - [anon_sym_o_GT_GT] = ACTIONS(2237), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2237), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2237), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2237), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2237), - [aux_sym_unquoted_token1] = ACTIONS(2237), - [aux_sym_unquoted_token4] = ACTIONS(2243), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_true] = ACTIONS(4951), + [anon_sym_false] = ACTIONS(4951), + [anon_sym_null] = ACTIONS(4951), + [aux_sym_cmd_identifier_token38] = ACTIONS(4951), + [aux_sym_cmd_identifier_token39] = ACTIONS(4951), + [aux_sym_cmd_identifier_token40] = ACTIONS(4951), + [sym__newline] = ACTIONS(4951), + [anon_sym_SEMI] = ACTIONS(4951), + [anon_sym_PIPE] = ACTIONS(4951), + [anon_sym_err_GT_PIPE] = ACTIONS(4951), + [anon_sym_out_GT_PIPE] = ACTIONS(4951), + [anon_sym_e_GT_PIPE] = ACTIONS(4951), + [anon_sym_o_GT_PIPE] = ACTIONS(4951), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4951), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4951), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4951), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4951), + [anon_sym_LBRACK] = ACTIONS(4951), + [anon_sym_LPAREN] = ACTIONS(4953), + [anon_sym_RPAREN] = ACTIONS(4951), + [anon_sym_DOLLAR] = ACTIONS(4953), + [anon_sym_DASH_DASH] = ACTIONS(4951), + [anon_sym_DASH] = ACTIONS(4953), + [anon_sym_LBRACE] = ACTIONS(4951), + [anon_sym_DOT_DOT] = ACTIONS(4953), + [anon_sym_LPAREN2] = ACTIONS(4433), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4951), + [anon_sym_DOT_DOT_LT] = ACTIONS(4951), + [aux_sym__val_number_decimal_token1] = ACTIONS(4953), + [aux_sym__val_number_decimal_token2] = ACTIONS(4951), + [aux_sym__val_number_decimal_token3] = ACTIONS(4951), + [aux_sym__val_number_decimal_token4] = ACTIONS(4951), + [aux_sym__val_number_token1] = ACTIONS(4951), + [aux_sym__val_number_token2] = ACTIONS(4951), + [aux_sym__val_number_token3] = ACTIONS(4951), + [anon_sym_0b] = ACTIONS(4953), + [anon_sym_0o] = ACTIONS(4953), + [anon_sym_0x] = ACTIONS(4953), + [sym_val_date] = ACTIONS(4951), + [anon_sym_DQUOTE] = ACTIONS(4951), + [sym__str_single_quotes] = ACTIONS(4951), + [sym__str_back_ticks] = ACTIONS(4951), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4951), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4951), + [anon_sym_err_GT] = ACTIONS(4953), + [anon_sym_out_GT] = ACTIONS(4953), + [anon_sym_e_GT] = ACTIONS(4953), + [anon_sym_o_GT] = ACTIONS(4953), + [anon_sym_err_PLUSout_GT] = ACTIONS(4953), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4953), + [anon_sym_o_PLUSe_GT] = ACTIONS(4953), + [anon_sym_e_PLUSo_GT] = ACTIONS(4953), + [anon_sym_err_GT_GT] = ACTIONS(4951), + [anon_sym_out_GT_GT] = ACTIONS(4951), + [anon_sym_e_GT_GT] = ACTIONS(4951), + [anon_sym_o_GT_GT] = ACTIONS(4951), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4951), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4951), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4951), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4951), + [aux_sym_unquoted_token1] = ACTIONS(4953), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(4951), }, [1495] = { - [sym__expr_parenthesized_immediate] = STATE(7283), [sym_comment] = STATE(1495), - [sym__newline] = ACTIONS(4842), - [anon_sym_SEMI] = ACTIONS(4842), - [anon_sym_PIPE] = ACTIONS(4842), - [anon_sym_err_GT_PIPE] = ACTIONS(4842), - [anon_sym_out_GT_PIPE] = ACTIONS(4842), - [anon_sym_e_GT_PIPE] = ACTIONS(4842), - [anon_sym_o_GT_PIPE] = ACTIONS(4842), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4842), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4842), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4842), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4842), - [anon_sym_RPAREN] = ACTIONS(4842), - [anon_sym_DASH_DASH] = ACTIONS(4842), - [anon_sym_DASH] = ACTIONS(4844), - [anon_sym_LBRACE] = ACTIONS(4842), - [anon_sym_RBRACE] = ACTIONS(4842), - [anon_sym_EQ_GT] = ACTIONS(4842), - [anon_sym_LPAREN2] = ACTIONS(3978), - [aux_sym_expr_binary_token1] = ACTIONS(4842), - [aux_sym_expr_binary_token2] = ACTIONS(4842), - [aux_sym_expr_binary_token3] = ACTIONS(4842), - [aux_sym_expr_binary_token4] = ACTIONS(4842), - [aux_sym_expr_binary_token5] = ACTIONS(4842), - [aux_sym_expr_binary_token6] = ACTIONS(4842), - [aux_sym_expr_binary_token7] = ACTIONS(4842), - [aux_sym_expr_binary_token8] = ACTIONS(4842), - [aux_sym_expr_binary_token9] = ACTIONS(4842), - [aux_sym_expr_binary_token10] = ACTIONS(4842), - [aux_sym_expr_binary_token11] = ACTIONS(4842), - [aux_sym_expr_binary_token12] = ACTIONS(4842), - [aux_sym_expr_binary_token13] = ACTIONS(4842), - [aux_sym_expr_binary_token14] = ACTIONS(4842), - [aux_sym_expr_binary_token15] = ACTIONS(4842), - [aux_sym_expr_binary_token16] = ACTIONS(4842), - [aux_sym_expr_binary_token17] = ACTIONS(4842), - [aux_sym_expr_binary_token18] = ACTIONS(4842), - [aux_sym_expr_binary_token19] = ACTIONS(4842), - [aux_sym_expr_binary_token20] = ACTIONS(4842), - [aux_sym_expr_binary_token21] = ACTIONS(4842), - [aux_sym_expr_binary_token22] = ACTIONS(4842), - [aux_sym_expr_binary_token23] = ACTIONS(4842), - [aux_sym_expr_binary_token24] = ACTIONS(4842), - [aux_sym_expr_binary_token25] = ACTIONS(4842), - [aux_sym_expr_binary_token26] = ACTIONS(4842), - [aux_sym_expr_binary_token27] = ACTIONS(4842), - [aux_sym_expr_binary_token28] = ACTIONS(4842), - [anon_sym_err_GT] = ACTIONS(4844), - [anon_sym_out_GT] = ACTIONS(4844), - [anon_sym_e_GT] = ACTIONS(4844), - [anon_sym_o_GT] = ACTIONS(4844), - [anon_sym_err_PLUSout_GT] = ACTIONS(4844), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4844), - [anon_sym_o_PLUSe_GT] = ACTIONS(4844), - [anon_sym_e_PLUSo_GT] = ACTIONS(4844), - [anon_sym_err_GT_GT] = ACTIONS(4842), - [anon_sym_out_GT_GT] = ACTIONS(4842), - [anon_sym_e_GT_GT] = ACTIONS(4842), - [anon_sym_o_GT_GT] = ACTIONS(4842), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4842), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4842), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4842), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4842), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(1640), + [anon_sym_false] = ACTIONS(1640), + [anon_sym_null] = ACTIONS(1640), + [aux_sym_cmd_identifier_token38] = ACTIONS(1640), + [aux_sym_cmd_identifier_token39] = ACTIONS(1640), + [aux_sym_cmd_identifier_token40] = ACTIONS(1640), + [sym__newline] = ACTIONS(1640), + [anon_sym_SEMI] = ACTIONS(1640), + [anon_sym_PIPE] = ACTIONS(1640), + [anon_sym_err_GT_PIPE] = ACTIONS(1640), + [anon_sym_out_GT_PIPE] = ACTIONS(1640), + [anon_sym_e_GT_PIPE] = ACTIONS(1640), + [anon_sym_o_GT_PIPE] = ACTIONS(1640), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1640), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1640), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1640), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_LPAREN] = ACTIONS(1640), + [anon_sym_RPAREN] = ACTIONS(1640), + [anon_sym_DOLLAR] = ACTIONS(1628), + [anon_sym_DASH_DASH] = ACTIONS(1640), + [anon_sym_DASH] = ACTIONS(1628), + [anon_sym_LBRACE] = ACTIONS(1640), + [anon_sym_RBRACE] = ACTIONS(1640), + [anon_sym_DOT_DOT] = ACTIONS(1628), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1640), + [anon_sym_DOT_DOT_LT] = ACTIONS(1640), + [aux_sym__val_number_decimal_token1] = ACTIONS(1628), + [aux_sym__val_number_decimal_token2] = ACTIONS(1640), + [aux_sym__val_number_decimal_token3] = ACTIONS(1640), + [aux_sym__val_number_decimal_token4] = ACTIONS(1640), + [aux_sym__val_number_token1] = ACTIONS(1640), + [aux_sym__val_number_token2] = ACTIONS(1640), + [aux_sym__val_number_token3] = ACTIONS(1640), + [anon_sym_0b] = ACTIONS(1628), + [anon_sym_0o] = ACTIONS(1628), + [anon_sym_0x] = ACTIONS(1628), + [sym_val_date] = ACTIONS(1640), + [anon_sym_DQUOTE] = ACTIONS(1640), + [sym__str_single_quotes] = ACTIONS(1640), + [sym__str_back_ticks] = ACTIONS(1640), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1640), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1640), + [anon_sym_err_GT] = ACTIONS(1628), + [anon_sym_out_GT] = ACTIONS(1628), + [anon_sym_e_GT] = ACTIONS(1628), + [anon_sym_o_GT] = ACTIONS(1628), + [anon_sym_err_PLUSout_GT] = ACTIONS(1628), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1628), + [anon_sym_o_PLUSe_GT] = ACTIONS(1628), + [anon_sym_e_PLUSo_GT] = ACTIONS(1628), + [anon_sym_err_GT_GT] = ACTIONS(1640), + [anon_sym_out_GT_GT] = ACTIONS(1640), + [anon_sym_e_GT_GT] = ACTIONS(1640), + [anon_sym_o_GT_GT] = ACTIONS(1640), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1640), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1640), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1640), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1640), + [aux_sym_unquoted_token1] = ACTIONS(1628), + [aux_sym_unquoted_token2] = ACTIONS(4622), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1640), }, [1496] = { - [sym__expr_parenthesized_immediate] = STATE(7283), [sym_comment] = STATE(1496), - [sym__newline] = ACTIONS(4842), - [anon_sym_SEMI] = ACTIONS(4842), - [anon_sym_PIPE] = ACTIONS(4842), - [anon_sym_err_GT_PIPE] = ACTIONS(4842), - [anon_sym_out_GT_PIPE] = ACTIONS(4842), - [anon_sym_e_GT_PIPE] = ACTIONS(4842), - [anon_sym_o_GT_PIPE] = ACTIONS(4842), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4842), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4842), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4842), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4842), - [anon_sym_RPAREN] = ACTIONS(4842), - [anon_sym_DASH_DASH] = ACTIONS(4842), - [anon_sym_DASH] = ACTIONS(4844), - [anon_sym_LBRACE] = ACTIONS(4842), - [anon_sym_RBRACE] = ACTIONS(4842), - [anon_sym_EQ_GT] = ACTIONS(4842), - [anon_sym_LPAREN2] = ACTIONS(3978), - [aux_sym_expr_binary_token1] = ACTIONS(4842), - [aux_sym_expr_binary_token2] = ACTIONS(4842), - [aux_sym_expr_binary_token3] = ACTIONS(4842), - [aux_sym_expr_binary_token4] = ACTIONS(4842), - [aux_sym_expr_binary_token5] = ACTIONS(4842), - [aux_sym_expr_binary_token6] = ACTIONS(4842), - [aux_sym_expr_binary_token7] = ACTIONS(4842), - [aux_sym_expr_binary_token8] = ACTIONS(4842), - [aux_sym_expr_binary_token9] = ACTIONS(4842), - [aux_sym_expr_binary_token10] = ACTIONS(4842), - [aux_sym_expr_binary_token11] = ACTIONS(4842), - [aux_sym_expr_binary_token12] = ACTIONS(4842), - [aux_sym_expr_binary_token13] = ACTIONS(4842), - [aux_sym_expr_binary_token14] = ACTIONS(4842), - [aux_sym_expr_binary_token15] = ACTIONS(4842), - [aux_sym_expr_binary_token16] = ACTIONS(4842), - [aux_sym_expr_binary_token17] = ACTIONS(4842), - [aux_sym_expr_binary_token18] = ACTIONS(4842), - [aux_sym_expr_binary_token19] = ACTIONS(4842), - [aux_sym_expr_binary_token20] = ACTIONS(4842), - [aux_sym_expr_binary_token21] = ACTIONS(4842), - [aux_sym_expr_binary_token22] = ACTIONS(4842), - [aux_sym_expr_binary_token23] = ACTIONS(4842), - [aux_sym_expr_binary_token24] = ACTIONS(4842), - [aux_sym_expr_binary_token25] = ACTIONS(4842), - [aux_sym_expr_binary_token26] = ACTIONS(4842), - [aux_sym_expr_binary_token27] = ACTIONS(4842), - [aux_sym_expr_binary_token28] = ACTIONS(4842), - [anon_sym_err_GT] = ACTIONS(4844), - [anon_sym_out_GT] = ACTIONS(4844), - [anon_sym_e_GT] = ACTIONS(4844), - [anon_sym_o_GT] = ACTIONS(4844), - [anon_sym_err_PLUSout_GT] = ACTIONS(4844), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4844), - [anon_sym_o_PLUSe_GT] = ACTIONS(4844), - [anon_sym_e_PLUSo_GT] = ACTIONS(4844), - [anon_sym_err_GT_GT] = ACTIONS(4842), - [anon_sym_out_GT_GT] = ACTIONS(4842), - [anon_sym_e_GT_GT] = ACTIONS(4842), - [anon_sym_o_GT_GT] = ACTIONS(4842), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4842), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4842), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4842), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4842), - [anon_sym_POUND] = ACTIONS(247), + [anon_sym_true] = ACTIONS(1640), + [anon_sym_false] = ACTIONS(1640), + [anon_sym_null] = ACTIONS(1640), + [aux_sym_cmd_identifier_token38] = ACTIONS(1640), + [aux_sym_cmd_identifier_token39] = ACTIONS(1640), + [aux_sym_cmd_identifier_token40] = ACTIONS(1640), + [sym__newline] = ACTIONS(1640), + [anon_sym_SEMI] = ACTIONS(1640), + [anon_sym_PIPE] = ACTIONS(1640), + [anon_sym_err_GT_PIPE] = ACTIONS(1640), + [anon_sym_out_GT_PIPE] = ACTIONS(1640), + [anon_sym_e_GT_PIPE] = ACTIONS(1640), + [anon_sym_o_GT_PIPE] = ACTIONS(1640), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1640), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1640), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1640), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1640), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_LPAREN] = ACTIONS(1640), + [anon_sym_RPAREN] = ACTIONS(1640), + [anon_sym_DOLLAR] = ACTIONS(1628), + [anon_sym_DASH_DASH] = ACTIONS(1640), + [anon_sym_DASH] = ACTIONS(1628), + [anon_sym_LBRACE] = ACTIONS(1640), + [anon_sym_RBRACE] = ACTIONS(1640), + [anon_sym_DOT_DOT] = ACTIONS(1628), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1640), + [anon_sym_DOT_DOT_LT] = ACTIONS(1640), + [aux_sym__val_number_decimal_token1] = ACTIONS(1628), + [aux_sym__val_number_decimal_token2] = ACTIONS(1640), + [aux_sym__val_number_decimal_token3] = ACTIONS(1640), + [aux_sym__val_number_decimal_token4] = ACTIONS(1640), + [aux_sym__val_number_token1] = ACTIONS(1640), + [aux_sym__val_number_token2] = ACTIONS(1640), + [aux_sym__val_number_token3] = ACTIONS(1640), + [anon_sym_0b] = ACTIONS(1628), + [anon_sym_0o] = ACTIONS(1628), + [anon_sym_0x] = ACTIONS(1628), + [sym_val_date] = ACTIONS(1640), + [anon_sym_DQUOTE] = ACTIONS(1640), + [sym__str_single_quotes] = ACTIONS(1640), + [sym__str_back_ticks] = ACTIONS(1640), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1640), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1640), + [anon_sym_err_GT] = ACTIONS(1628), + [anon_sym_out_GT] = ACTIONS(1628), + [anon_sym_e_GT] = ACTIONS(1628), + [anon_sym_o_GT] = ACTIONS(1628), + [anon_sym_err_PLUSout_GT] = ACTIONS(1628), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1628), + [anon_sym_o_PLUSe_GT] = ACTIONS(1628), + [anon_sym_e_PLUSo_GT] = ACTIONS(1628), + [anon_sym_err_GT_GT] = ACTIONS(1640), + [anon_sym_out_GT_GT] = ACTIONS(1640), + [anon_sym_e_GT_GT] = ACTIONS(1640), + [anon_sym_o_GT_GT] = ACTIONS(1640), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1640), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1640), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1640), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1640), + [aux_sym_unquoted_token1] = ACTIONS(1628), + [aux_sym_unquoted_token2] = ACTIONS(4443), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1640), }, [1497] = { - [sym__expr_parenthesized_immediate] = STATE(7283), [sym_comment] = STATE(1497), - [sym__newline] = ACTIONS(4842), - [anon_sym_SEMI] = ACTIONS(4842), - [anon_sym_PIPE] = ACTIONS(4842), - [anon_sym_err_GT_PIPE] = ACTIONS(4842), - [anon_sym_out_GT_PIPE] = ACTIONS(4842), - [anon_sym_e_GT_PIPE] = ACTIONS(4842), - [anon_sym_o_GT_PIPE] = ACTIONS(4842), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4842), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4842), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4842), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4842), - [anon_sym_RPAREN] = ACTIONS(4842), - [anon_sym_DASH_DASH] = ACTIONS(4842), - [anon_sym_DASH] = ACTIONS(4844), - [anon_sym_LBRACE] = ACTIONS(4842), - [anon_sym_RBRACE] = ACTIONS(4842), - [anon_sym_EQ_GT] = ACTIONS(4842), - [anon_sym_LPAREN2] = ACTIONS(3978), - [aux_sym_expr_binary_token1] = ACTIONS(4842), - [aux_sym_expr_binary_token2] = ACTIONS(4842), - [aux_sym_expr_binary_token3] = ACTIONS(4842), - [aux_sym_expr_binary_token4] = ACTIONS(4842), - [aux_sym_expr_binary_token5] = ACTIONS(4842), - [aux_sym_expr_binary_token6] = ACTIONS(4842), - [aux_sym_expr_binary_token7] = ACTIONS(4842), - [aux_sym_expr_binary_token8] = ACTIONS(4842), - [aux_sym_expr_binary_token9] = ACTIONS(4842), - [aux_sym_expr_binary_token10] = ACTIONS(4842), - [aux_sym_expr_binary_token11] = ACTIONS(4842), - [aux_sym_expr_binary_token12] = ACTIONS(4842), - [aux_sym_expr_binary_token13] = ACTIONS(4842), - [aux_sym_expr_binary_token14] = ACTIONS(4842), - [aux_sym_expr_binary_token15] = ACTIONS(4842), - [aux_sym_expr_binary_token16] = ACTIONS(4842), - [aux_sym_expr_binary_token17] = ACTIONS(4842), - [aux_sym_expr_binary_token18] = ACTIONS(4842), - [aux_sym_expr_binary_token19] = ACTIONS(4842), - [aux_sym_expr_binary_token20] = ACTIONS(4842), - [aux_sym_expr_binary_token21] = ACTIONS(4842), - [aux_sym_expr_binary_token22] = ACTIONS(4842), - [aux_sym_expr_binary_token23] = ACTIONS(4842), - [aux_sym_expr_binary_token24] = ACTIONS(4842), - [aux_sym_expr_binary_token25] = ACTIONS(4842), - [aux_sym_expr_binary_token26] = ACTIONS(4842), - [aux_sym_expr_binary_token27] = ACTIONS(4842), - [aux_sym_expr_binary_token28] = ACTIONS(4842), - [anon_sym_err_GT] = ACTIONS(4844), - [anon_sym_out_GT] = ACTIONS(4844), - [anon_sym_e_GT] = ACTIONS(4844), - [anon_sym_o_GT] = ACTIONS(4844), - [anon_sym_err_PLUSout_GT] = ACTIONS(4844), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4844), - [anon_sym_o_PLUSe_GT] = ACTIONS(4844), - [anon_sym_e_PLUSo_GT] = ACTIONS(4844), - [anon_sym_err_GT_GT] = ACTIONS(4842), - [anon_sym_out_GT_GT] = ACTIONS(4842), - [anon_sym_e_GT_GT] = ACTIONS(4842), - [anon_sym_o_GT_GT] = ACTIONS(4842), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4842), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4842), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4842), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4842), - [anon_sym_POUND] = ACTIONS(247), - }, - [1498] = { - [sym__expr_parenthesized_immediate] = STATE(7283), - [sym_comment] = STATE(1498), - [sym__newline] = ACTIONS(4842), - [anon_sym_SEMI] = ACTIONS(4842), - [anon_sym_PIPE] = ACTIONS(4842), - [anon_sym_err_GT_PIPE] = ACTIONS(4842), - [anon_sym_out_GT_PIPE] = ACTIONS(4842), - [anon_sym_e_GT_PIPE] = ACTIONS(4842), - [anon_sym_o_GT_PIPE] = ACTIONS(4842), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4842), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4842), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4842), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4842), - [anon_sym_RPAREN] = ACTIONS(4842), - [anon_sym_DASH_DASH] = ACTIONS(4842), - [anon_sym_DASH] = ACTIONS(4844), - [anon_sym_LBRACE] = ACTIONS(4842), - [anon_sym_RBRACE] = ACTIONS(4842), - [anon_sym_EQ_GT] = ACTIONS(4842), - [anon_sym_LPAREN2] = ACTIONS(3978), - [aux_sym_expr_binary_token1] = ACTIONS(4842), - [aux_sym_expr_binary_token2] = ACTIONS(4842), - [aux_sym_expr_binary_token3] = ACTIONS(4842), - [aux_sym_expr_binary_token4] = ACTIONS(4842), - [aux_sym_expr_binary_token5] = ACTIONS(4842), - [aux_sym_expr_binary_token6] = ACTIONS(4842), - [aux_sym_expr_binary_token7] = ACTIONS(4842), - [aux_sym_expr_binary_token8] = ACTIONS(4842), - [aux_sym_expr_binary_token9] = ACTIONS(4842), - [aux_sym_expr_binary_token10] = ACTIONS(4842), - [aux_sym_expr_binary_token11] = ACTIONS(4842), - [aux_sym_expr_binary_token12] = ACTIONS(4842), - [aux_sym_expr_binary_token13] = ACTIONS(4842), - [aux_sym_expr_binary_token14] = ACTIONS(4842), - [aux_sym_expr_binary_token15] = ACTIONS(4842), - [aux_sym_expr_binary_token16] = ACTIONS(4842), - [aux_sym_expr_binary_token17] = ACTIONS(4842), - [aux_sym_expr_binary_token18] = ACTIONS(4842), - [aux_sym_expr_binary_token19] = ACTIONS(4842), - [aux_sym_expr_binary_token20] = ACTIONS(4842), - [aux_sym_expr_binary_token21] = ACTIONS(4842), - [aux_sym_expr_binary_token22] = ACTIONS(4842), - [aux_sym_expr_binary_token23] = ACTIONS(4842), - [aux_sym_expr_binary_token24] = ACTIONS(4842), - [aux_sym_expr_binary_token25] = ACTIONS(4842), - [aux_sym_expr_binary_token26] = ACTIONS(4842), - [aux_sym_expr_binary_token27] = ACTIONS(4842), - [aux_sym_expr_binary_token28] = ACTIONS(4842), - [anon_sym_err_GT] = ACTIONS(4844), - [anon_sym_out_GT] = ACTIONS(4844), - [anon_sym_e_GT] = ACTIONS(4844), - [anon_sym_o_GT] = ACTIONS(4844), - [anon_sym_err_PLUSout_GT] = ACTIONS(4844), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4844), - [anon_sym_o_PLUSe_GT] = ACTIONS(4844), - [anon_sym_e_PLUSo_GT] = ACTIONS(4844), - [anon_sym_err_GT_GT] = ACTIONS(4842), - [anon_sym_out_GT_GT] = ACTIONS(4842), - [anon_sym_e_GT_GT] = ACTIONS(4842), - [anon_sym_o_GT_GT] = ACTIONS(4842), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4842), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4842), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4842), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4842), - [anon_sym_POUND] = ACTIONS(247), - }, - [1499] = { - [sym__expr_parenthesized_immediate] = STATE(7283), - [sym_comment] = STATE(1499), - [sym__newline] = ACTIONS(4842), - [anon_sym_SEMI] = ACTIONS(4842), - [anon_sym_PIPE] = ACTIONS(4842), - [anon_sym_err_GT_PIPE] = ACTIONS(4842), - [anon_sym_out_GT_PIPE] = ACTIONS(4842), - [anon_sym_e_GT_PIPE] = ACTIONS(4842), - [anon_sym_o_GT_PIPE] = ACTIONS(4842), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4842), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4842), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4842), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4842), - [anon_sym_RPAREN] = ACTIONS(4842), - [anon_sym_DASH_DASH] = ACTIONS(4842), - [anon_sym_DASH] = ACTIONS(4844), - [anon_sym_LBRACE] = ACTIONS(4842), - [anon_sym_RBRACE] = ACTIONS(4842), - [anon_sym_EQ_GT] = ACTIONS(4842), - [anon_sym_LPAREN2] = ACTIONS(3978), - [aux_sym_expr_binary_token1] = ACTIONS(4842), - [aux_sym_expr_binary_token2] = ACTIONS(4842), - [aux_sym_expr_binary_token3] = ACTIONS(4842), - [aux_sym_expr_binary_token4] = ACTIONS(4842), - [aux_sym_expr_binary_token5] = ACTIONS(4842), - [aux_sym_expr_binary_token6] = ACTIONS(4842), - [aux_sym_expr_binary_token7] = ACTIONS(4842), - [aux_sym_expr_binary_token8] = ACTIONS(4842), - [aux_sym_expr_binary_token9] = ACTIONS(4842), - [aux_sym_expr_binary_token10] = ACTIONS(4842), - [aux_sym_expr_binary_token11] = ACTIONS(4842), - [aux_sym_expr_binary_token12] = ACTIONS(4842), - [aux_sym_expr_binary_token13] = ACTIONS(4842), - [aux_sym_expr_binary_token14] = ACTIONS(4842), - [aux_sym_expr_binary_token15] = ACTIONS(4842), - [aux_sym_expr_binary_token16] = ACTIONS(4842), - [aux_sym_expr_binary_token17] = ACTIONS(4842), - [aux_sym_expr_binary_token18] = ACTIONS(4842), - [aux_sym_expr_binary_token19] = ACTIONS(4842), - [aux_sym_expr_binary_token20] = ACTIONS(4842), - [aux_sym_expr_binary_token21] = ACTIONS(4842), - [aux_sym_expr_binary_token22] = ACTIONS(4842), - [aux_sym_expr_binary_token23] = ACTIONS(4842), - [aux_sym_expr_binary_token24] = ACTIONS(4842), - [aux_sym_expr_binary_token25] = ACTIONS(4842), - [aux_sym_expr_binary_token26] = ACTIONS(4842), - [aux_sym_expr_binary_token27] = ACTIONS(4842), - [aux_sym_expr_binary_token28] = ACTIONS(4842), - [anon_sym_err_GT] = ACTIONS(4844), - [anon_sym_out_GT] = ACTIONS(4844), - [anon_sym_e_GT] = ACTIONS(4844), - [anon_sym_o_GT] = ACTIONS(4844), - [anon_sym_err_PLUSout_GT] = ACTIONS(4844), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4844), - [anon_sym_o_PLUSe_GT] = ACTIONS(4844), - [anon_sym_e_PLUSo_GT] = ACTIONS(4844), - [anon_sym_err_GT_GT] = ACTIONS(4842), - [anon_sym_out_GT_GT] = ACTIONS(4842), - [anon_sym_e_GT_GT] = ACTIONS(4842), - [anon_sym_o_GT_GT] = ACTIONS(4842), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4842), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4842), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4842), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4842), - [anon_sym_POUND] = ACTIONS(247), - }, - [1500] = { - [sym__expr_parenthesized_immediate] = STATE(7283), - [sym_comment] = STATE(1500), - [sym__newline] = ACTIONS(4842), - [anon_sym_SEMI] = ACTIONS(4842), - [anon_sym_PIPE] = ACTIONS(4842), - [anon_sym_err_GT_PIPE] = ACTIONS(4842), - [anon_sym_out_GT_PIPE] = ACTIONS(4842), - [anon_sym_e_GT_PIPE] = ACTIONS(4842), - [anon_sym_o_GT_PIPE] = ACTIONS(4842), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4842), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4842), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4842), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4842), - [anon_sym_RPAREN] = ACTIONS(4842), - [anon_sym_DASH_DASH] = ACTIONS(4842), - [anon_sym_DASH] = ACTIONS(4844), - [anon_sym_LBRACE] = ACTIONS(4842), - [anon_sym_RBRACE] = ACTIONS(4842), - [anon_sym_EQ_GT] = ACTIONS(4842), - [anon_sym_LPAREN2] = ACTIONS(3978), - [aux_sym_expr_binary_token1] = ACTIONS(4842), - [aux_sym_expr_binary_token2] = ACTIONS(4842), - [aux_sym_expr_binary_token3] = ACTIONS(4842), - [aux_sym_expr_binary_token4] = ACTIONS(4842), - [aux_sym_expr_binary_token5] = ACTIONS(4842), - [aux_sym_expr_binary_token6] = ACTIONS(4842), - [aux_sym_expr_binary_token7] = ACTIONS(4842), - [aux_sym_expr_binary_token8] = ACTIONS(4842), - [aux_sym_expr_binary_token9] = ACTIONS(4842), - [aux_sym_expr_binary_token10] = ACTIONS(4842), - [aux_sym_expr_binary_token11] = ACTIONS(4842), - [aux_sym_expr_binary_token12] = ACTIONS(4842), - [aux_sym_expr_binary_token13] = ACTIONS(4842), - [aux_sym_expr_binary_token14] = ACTIONS(4842), - [aux_sym_expr_binary_token15] = ACTIONS(4842), - [aux_sym_expr_binary_token16] = ACTIONS(4842), - [aux_sym_expr_binary_token17] = ACTIONS(4842), - [aux_sym_expr_binary_token18] = ACTIONS(4842), - [aux_sym_expr_binary_token19] = ACTIONS(4842), - [aux_sym_expr_binary_token20] = ACTIONS(4842), - [aux_sym_expr_binary_token21] = ACTIONS(4842), - [aux_sym_expr_binary_token22] = ACTIONS(4842), - [aux_sym_expr_binary_token23] = ACTIONS(4842), - [aux_sym_expr_binary_token24] = ACTIONS(4842), - [aux_sym_expr_binary_token25] = ACTIONS(4842), - [aux_sym_expr_binary_token26] = ACTIONS(4842), - [aux_sym_expr_binary_token27] = ACTIONS(4842), - [aux_sym_expr_binary_token28] = ACTIONS(4842), - [anon_sym_err_GT] = ACTIONS(4844), - [anon_sym_out_GT] = ACTIONS(4844), - [anon_sym_e_GT] = ACTIONS(4844), - [anon_sym_o_GT] = ACTIONS(4844), - [anon_sym_err_PLUSout_GT] = ACTIONS(4844), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4844), - [anon_sym_o_PLUSe_GT] = ACTIONS(4844), - [anon_sym_e_PLUSo_GT] = ACTIONS(4844), - [anon_sym_err_GT_GT] = ACTIONS(4842), - [anon_sym_out_GT_GT] = ACTIONS(4842), - [anon_sym_e_GT_GT] = ACTIONS(4842), - [anon_sym_o_GT_GT] = ACTIONS(4842), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4842), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4842), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4842), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4842), - [anon_sym_POUND] = ACTIONS(247), - }, - [1501] = { - [sym__expr_parenthesized_immediate] = STATE(7283), - [sym_comment] = STATE(1501), - [sym__newline] = ACTIONS(4842), - [anon_sym_SEMI] = ACTIONS(4842), - [anon_sym_PIPE] = ACTIONS(4842), - [anon_sym_err_GT_PIPE] = ACTIONS(4842), - [anon_sym_out_GT_PIPE] = ACTIONS(4842), - [anon_sym_e_GT_PIPE] = ACTIONS(4842), - [anon_sym_o_GT_PIPE] = ACTIONS(4842), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4842), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4842), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4842), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4842), - [anon_sym_RPAREN] = ACTIONS(4842), - [anon_sym_DASH_DASH] = ACTIONS(4842), - [anon_sym_DASH] = ACTIONS(4844), - [anon_sym_LBRACE] = ACTIONS(4842), - [anon_sym_RBRACE] = ACTIONS(4842), - [anon_sym_EQ_GT] = ACTIONS(4842), - [anon_sym_LPAREN2] = ACTIONS(3978), - [aux_sym_expr_binary_token1] = ACTIONS(4842), - [aux_sym_expr_binary_token2] = ACTIONS(4842), - [aux_sym_expr_binary_token3] = ACTIONS(4842), - [aux_sym_expr_binary_token4] = ACTIONS(4842), - [aux_sym_expr_binary_token5] = ACTIONS(4842), - [aux_sym_expr_binary_token6] = ACTIONS(4842), - [aux_sym_expr_binary_token7] = ACTIONS(4842), - [aux_sym_expr_binary_token8] = ACTIONS(4842), - [aux_sym_expr_binary_token9] = ACTIONS(4842), - [aux_sym_expr_binary_token10] = ACTIONS(4842), - [aux_sym_expr_binary_token11] = ACTIONS(4842), - [aux_sym_expr_binary_token12] = ACTIONS(4842), - [aux_sym_expr_binary_token13] = ACTIONS(4842), - [aux_sym_expr_binary_token14] = ACTIONS(4842), - [aux_sym_expr_binary_token15] = ACTIONS(4842), - [aux_sym_expr_binary_token16] = ACTIONS(4842), - [aux_sym_expr_binary_token17] = ACTIONS(4842), - [aux_sym_expr_binary_token18] = ACTIONS(4842), - [aux_sym_expr_binary_token19] = ACTIONS(4842), - [aux_sym_expr_binary_token20] = ACTIONS(4842), - [aux_sym_expr_binary_token21] = ACTIONS(4842), - [aux_sym_expr_binary_token22] = ACTIONS(4842), - [aux_sym_expr_binary_token23] = ACTIONS(4842), - [aux_sym_expr_binary_token24] = ACTIONS(4842), - [aux_sym_expr_binary_token25] = ACTIONS(4842), - [aux_sym_expr_binary_token26] = ACTIONS(4842), - [aux_sym_expr_binary_token27] = ACTIONS(4842), - [aux_sym_expr_binary_token28] = ACTIONS(4842), - [anon_sym_err_GT] = ACTIONS(4844), - [anon_sym_out_GT] = ACTIONS(4844), - [anon_sym_e_GT] = ACTIONS(4844), - [anon_sym_o_GT] = ACTIONS(4844), - [anon_sym_err_PLUSout_GT] = ACTIONS(4844), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4844), - [anon_sym_o_PLUSe_GT] = ACTIONS(4844), - [anon_sym_e_PLUSo_GT] = ACTIONS(4844), - [anon_sym_err_GT_GT] = ACTIONS(4842), - [anon_sym_out_GT_GT] = ACTIONS(4842), - [anon_sym_e_GT_GT] = ACTIONS(4842), - [anon_sym_o_GT_GT] = ACTIONS(4842), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4842), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4842), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4842), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4842), - [anon_sym_POUND] = ACTIONS(247), - }, - [1502] = { - [sym__expr_parenthesized_immediate] = STATE(7283), - [sym_comment] = STATE(1502), - [sym__newline] = ACTIONS(4842), - [anon_sym_SEMI] = ACTIONS(4842), - [anon_sym_PIPE] = ACTIONS(4842), - [anon_sym_err_GT_PIPE] = ACTIONS(4842), - [anon_sym_out_GT_PIPE] = ACTIONS(4842), - [anon_sym_e_GT_PIPE] = ACTIONS(4842), - [anon_sym_o_GT_PIPE] = ACTIONS(4842), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4842), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4842), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4842), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4842), - [anon_sym_RPAREN] = ACTIONS(4842), - [anon_sym_DASH_DASH] = ACTIONS(4842), - [anon_sym_DASH] = ACTIONS(4844), - [anon_sym_LBRACE] = ACTIONS(4842), - [anon_sym_RBRACE] = ACTIONS(4842), - [anon_sym_EQ_GT] = ACTIONS(4842), - [anon_sym_LPAREN2] = ACTIONS(3978), - [aux_sym_expr_binary_token1] = ACTIONS(4842), - [aux_sym_expr_binary_token2] = ACTIONS(4842), - [aux_sym_expr_binary_token3] = ACTIONS(4842), - [aux_sym_expr_binary_token4] = ACTIONS(4842), - [aux_sym_expr_binary_token5] = ACTIONS(4842), - [aux_sym_expr_binary_token6] = ACTIONS(4842), - [aux_sym_expr_binary_token7] = ACTIONS(4842), - [aux_sym_expr_binary_token8] = ACTIONS(4842), - [aux_sym_expr_binary_token9] = ACTIONS(4842), - [aux_sym_expr_binary_token10] = ACTIONS(4842), - [aux_sym_expr_binary_token11] = ACTIONS(4842), - [aux_sym_expr_binary_token12] = ACTIONS(4842), - [aux_sym_expr_binary_token13] = ACTIONS(4842), - [aux_sym_expr_binary_token14] = ACTIONS(4842), - [aux_sym_expr_binary_token15] = ACTIONS(4842), - [aux_sym_expr_binary_token16] = ACTIONS(4842), - [aux_sym_expr_binary_token17] = ACTIONS(4842), - [aux_sym_expr_binary_token18] = ACTIONS(4842), - [aux_sym_expr_binary_token19] = ACTIONS(4842), - [aux_sym_expr_binary_token20] = ACTIONS(4842), - [aux_sym_expr_binary_token21] = ACTIONS(4842), - [aux_sym_expr_binary_token22] = ACTIONS(4842), - [aux_sym_expr_binary_token23] = ACTIONS(4842), - [aux_sym_expr_binary_token24] = ACTIONS(4842), - [aux_sym_expr_binary_token25] = ACTIONS(4842), - [aux_sym_expr_binary_token26] = ACTIONS(4842), - [aux_sym_expr_binary_token27] = ACTIONS(4842), - [aux_sym_expr_binary_token28] = ACTIONS(4842), - [anon_sym_err_GT] = ACTIONS(4844), - [anon_sym_out_GT] = ACTIONS(4844), - [anon_sym_e_GT] = ACTIONS(4844), - [anon_sym_o_GT] = ACTIONS(4844), - [anon_sym_err_PLUSout_GT] = ACTIONS(4844), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4844), - [anon_sym_o_PLUSe_GT] = ACTIONS(4844), - [anon_sym_e_PLUSo_GT] = ACTIONS(4844), - [anon_sym_err_GT_GT] = ACTIONS(4842), - [anon_sym_out_GT_GT] = ACTIONS(4842), - [anon_sym_e_GT_GT] = ACTIONS(4842), - [anon_sym_o_GT_GT] = ACTIONS(4842), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4842), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4842), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4842), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4842), - [anon_sym_POUND] = ACTIONS(247), - }, - [1503] = { - [sym_comment] = STATE(1503), - [anon_sym_true] = ACTIONS(2245), - [anon_sym_false] = ACTIONS(2245), - [anon_sym_null] = ACTIONS(2245), - [aux_sym_cmd_identifier_token38] = ACTIONS(2245), - [aux_sym_cmd_identifier_token39] = ACTIONS(2245), - [aux_sym_cmd_identifier_token40] = ACTIONS(2245), - [sym__newline] = ACTIONS(2247), - [anon_sym_SEMI] = ACTIONS(2247), - [anon_sym_PIPE] = ACTIONS(2247), - [anon_sym_err_GT_PIPE] = ACTIONS(2247), - [anon_sym_out_GT_PIPE] = ACTIONS(2247), - [anon_sym_e_GT_PIPE] = ACTIONS(2247), - [anon_sym_o_GT_PIPE] = ACTIONS(2247), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2247), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2247), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2247), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2247), - [anon_sym_LBRACK] = ACTIONS(2247), - [anon_sym_LPAREN] = ACTIONS(2245), - [anon_sym_RPAREN] = ACTIONS(2247), - [anon_sym_DOLLAR] = ACTIONS(2245), - [anon_sym_DASH_DASH] = ACTIONS(2245), - [anon_sym_DASH] = ACTIONS(2245), - [anon_sym_LBRACE] = ACTIONS(2247), - [anon_sym_RBRACE] = ACTIONS(2247), - [anon_sym_DOT_DOT] = ACTIONS(2245), - [anon_sym_LPAREN2] = ACTIONS(2239), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2245), - [anon_sym_DOT_DOT_LT] = ACTIONS(2245), - [aux_sym__val_number_decimal_token1] = ACTIONS(2245), - [aux_sym__val_number_decimal_token2] = ACTIONS(2245), - [aux_sym__val_number_decimal_token3] = ACTIONS(2245), - [aux_sym__val_number_decimal_token4] = ACTIONS(2245), - [aux_sym__val_number_token1] = ACTIONS(2245), - [aux_sym__val_number_token2] = ACTIONS(2245), - [aux_sym__val_number_token3] = ACTIONS(2245), - [anon_sym_0b] = ACTIONS(2245), - [anon_sym_0o] = ACTIONS(2245), - [anon_sym_0x] = ACTIONS(2245), - [sym_val_date] = ACTIONS(2245), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym__str_single_quotes] = ACTIONS(2247), - [sym__str_back_ticks] = ACTIONS(2247), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2247), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2247), - [anon_sym_err_GT] = ACTIONS(2245), - [anon_sym_out_GT] = ACTIONS(2245), - [anon_sym_e_GT] = ACTIONS(2245), - [anon_sym_o_GT] = ACTIONS(2245), - [anon_sym_err_PLUSout_GT] = ACTIONS(2245), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2245), - [anon_sym_o_PLUSe_GT] = ACTIONS(2245), - [anon_sym_e_PLUSo_GT] = ACTIONS(2245), - [anon_sym_err_GT_GT] = ACTIONS(2245), - [anon_sym_out_GT_GT] = ACTIONS(2245), - [anon_sym_e_GT_GT] = ACTIONS(2245), - [anon_sym_o_GT_GT] = ACTIONS(2245), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2245), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2245), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2245), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2245), - [aux_sym_unquoted_token1] = ACTIONS(2245), - [aux_sym_unquoted_token4] = ACTIONS(2243), - [anon_sym_POUND] = ACTIONS(3), - }, - [1504] = { - [sym_comment] = STATE(1504), - [ts_builtin_sym_end] = ACTIONS(1661), - [anon_sym_true] = ACTIONS(1661), - [anon_sym_false] = ACTIONS(1661), - [anon_sym_null] = ACTIONS(1661), - [aux_sym_cmd_identifier_token38] = ACTIONS(1661), - [aux_sym_cmd_identifier_token39] = ACTIONS(1661), - [aux_sym_cmd_identifier_token40] = ACTIONS(1661), - [sym__newline] = ACTIONS(1661), - [anon_sym_SEMI] = ACTIONS(1661), - [anon_sym_PIPE] = ACTIONS(1661), - [anon_sym_err_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_GT_PIPE] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1661), - [anon_sym_LBRACK] = ACTIONS(1661), - [anon_sym_LPAREN] = ACTIONS(1661), - [anon_sym_DOLLAR] = ACTIONS(1659), - [anon_sym_DASH_DASH] = ACTIONS(1661), - [anon_sym_DASH] = ACTIONS(1659), - [anon_sym_LBRACE] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1659), - [anon_sym_DOT_DOT2] = ACTIONS(1659), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1659), - [anon_sym_DOT_DOT_LT] = ACTIONS(1659), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1661), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1661), - [aux_sym__val_number_decimal_token1] = ACTIONS(1659), - [aux_sym__val_number_decimal_token2] = ACTIONS(1661), - [aux_sym__val_number_decimal_token3] = ACTIONS(1661), - [aux_sym__val_number_decimal_token4] = ACTIONS(1661), - [aux_sym__val_number_token1] = ACTIONS(1661), - [aux_sym__val_number_token2] = ACTIONS(1661), - [aux_sym__val_number_token3] = ACTIONS(1661), - [anon_sym_0b] = ACTIONS(1659), - [anon_sym_0o] = ACTIONS(1659), - [anon_sym_0x] = ACTIONS(1659), - [sym_val_date] = ACTIONS(1661), - [anon_sym_DQUOTE] = ACTIONS(1661), - [sym__str_single_quotes] = ACTIONS(1661), - [sym__str_back_ticks] = ACTIONS(1661), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1661), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1661), - [anon_sym_err_GT] = ACTIONS(1659), - [anon_sym_out_GT] = ACTIONS(1659), - [anon_sym_e_GT] = ACTIONS(1659), - [anon_sym_o_GT] = ACTIONS(1659), - [anon_sym_err_PLUSout_GT] = ACTIONS(1659), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1659), - [anon_sym_o_PLUSe_GT] = ACTIONS(1659), - [anon_sym_e_PLUSo_GT] = ACTIONS(1659), - [anon_sym_err_GT_GT] = ACTIONS(1661), - [anon_sym_out_GT_GT] = ACTIONS(1661), - [anon_sym_e_GT_GT] = ACTIONS(1661), - [anon_sym_o_GT_GT] = ACTIONS(1661), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1661), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1661), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1661), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1661), - [aux_sym_unquoted_token1] = ACTIONS(1659), - [anon_sym_POUND] = ACTIONS(247), - }, - [1505] = { - [sym_comment] = STATE(1505), - [ts_builtin_sym_end] = ACTIONS(1997), - [anon_sym_true] = ACTIONS(1997), - [anon_sym_false] = ACTIONS(1997), - [anon_sym_null] = ACTIONS(1997), - [aux_sym_cmd_identifier_token38] = ACTIONS(1997), - [aux_sym_cmd_identifier_token39] = ACTIONS(1997), - [aux_sym_cmd_identifier_token40] = ACTIONS(1997), - [sym__newline] = ACTIONS(1997), - [anon_sym_SEMI] = ACTIONS(1997), - [anon_sym_PIPE] = ACTIONS(1997), - [anon_sym_err_GT_PIPE] = ACTIONS(1997), - [anon_sym_out_GT_PIPE] = ACTIONS(1997), - [anon_sym_e_GT_PIPE] = ACTIONS(1997), - [anon_sym_o_GT_PIPE] = ACTIONS(1997), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1997), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1997), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1997), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1997), - [anon_sym_LBRACK] = ACTIONS(1997), - [anon_sym_LPAREN] = ACTIONS(1997), - [anon_sym_DOLLAR] = ACTIONS(1991), - [anon_sym_DASH_DASH] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1991), - [anon_sym_LBRACE] = ACTIONS(1997), - [anon_sym_DOT_DOT] = ACTIONS(1991), - [anon_sym_DOT_DOT2] = ACTIONS(4854), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1991), - [anon_sym_DOT_DOT_LT] = ACTIONS(1991), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4856), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4856), - [aux_sym__val_number_decimal_token1] = ACTIONS(1991), - [aux_sym__val_number_decimal_token2] = ACTIONS(1997), - [aux_sym__val_number_decimal_token3] = ACTIONS(1997), - [aux_sym__val_number_decimal_token4] = ACTIONS(1997), - [aux_sym__val_number_token1] = ACTIONS(1997), - [aux_sym__val_number_token2] = ACTIONS(1997), - [aux_sym__val_number_token3] = ACTIONS(1997), - [anon_sym_0b] = ACTIONS(1991), - [anon_sym_0o] = ACTIONS(1991), - [anon_sym_0x] = ACTIONS(1991), - [sym_val_date] = ACTIONS(1997), - [anon_sym_DQUOTE] = ACTIONS(1997), - [sym__str_single_quotes] = ACTIONS(1997), - [sym__str_back_ticks] = ACTIONS(1997), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1997), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1997), - [anon_sym_err_GT] = ACTIONS(1991), - [anon_sym_out_GT] = ACTIONS(1991), - [anon_sym_e_GT] = ACTIONS(1991), - [anon_sym_o_GT] = ACTIONS(1991), - [anon_sym_err_PLUSout_GT] = ACTIONS(1991), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1991), - [anon_sym_o_PLUSe_GT] = ACTIONS(1991), - [anon_sym_e_PLUSo_GT] = ACTIONS(1991), - [anon_sym_err_GT_GT] = ACTIONS(1997), - [anon_sym_out_GT_GT] = ACTIONS(1997), - [anon_sym_e_GT_GT] = ACTIONS(1997), - [anon_sym_o_GT_GT] = ACTIONS(1997), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1997), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1997), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1997), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1997), - [aux_sym_unquoted_token1] = ACTIONS(1991), - [anon_sym_POUND] = ACTIONS(247), - }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - STATE(1506), 1, - sym_comment, - STATE(7352), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4860), 17, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(4858), 43, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [77] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - STATE(1507), 1, - sym_comment, - STATE(7308), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4840), 17, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(4838), 43, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [154] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1508), 1, - sym_comment, - ACTIONS(1034), 17, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1036), 45, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [227] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2235), 1, - aux_sym_unquoted_token4, - STATE(1509), 1, - sym_comment, - ACTIONS(2233), 21, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2229), 40, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [302] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2225), 1, - anon_sym_LPAREN2, - ACTIONS(2227), 1, - aux_sym_unquoted_token4, - STATE(1510), 1, - sym_comment, - ACTIONS(1072), 19, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1070), 41, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [379] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1552), 1, - aux_sym_unquoted_token2, - ACTIONS(2293), 1, - anon_sym_LPAREN2, - STATE(1511), 1, - sym_comment, - ACTIONS(2291), 17, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2295), 43, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [456] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4862), 1, - anon_sym_DOT, - ACTIONS(4864), 1, - aux_sym__immediate_decimal_token2, - STATE(1512), 1, - sym_comment, - ACTIONS(1667), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1669), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [533] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4866), 1, - anon_sym_LBRACK2, - STATE(1513), 1, - sym_comment, - ACTIONS(2313), 17, - anon_sym_LBRACK, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2317), 44, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [608] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1514), 1, - sym_comment, - ACTIONS(1042), 17, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1044), 45, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [681] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2227), 1, - aux_sym_unquoted_token4, - STATE(1515), 1, - sym_comment, - ACTIONS(1072), 21, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1070), 40, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [756] = 21, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1338), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1340), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3860), 1, - anon_sym_DQUOTE, - ACTIONS(4874), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4880), 1, - sym_wild_card, - STATE(1516), 1, - sym_comment, - STATE(1990), 1, - sym_val_string, - STATE(2002), 1, - sym__str_double_quotes, - STATE(2012), 1, - sym_cmd_identifier, - STATE(6083), 1, - sym_scope_pattern, - STATE(6521), 1, - sym__command_name, - STATE(6530), 1, - sym_command_list, - STATE(7094), 1, - sym__val_number_decimal, - ACTIONS(1336), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3862), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4876), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(4868), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(4872), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4870), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [863] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1517), 1, - sym_comment, - ACTIONS(1050), 9, - anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1052), 53, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [936] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1518), 1, - sym_comment, - ACTIONS(1054), 9, - anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1056), 53, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [1009] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1519), 1, - sym_comment, - ACTIONS(4884), 9, - anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(4882), 53, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [1082] = 20, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1338), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1340), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4247), 1, - anon_sym_DOLLAR, - ACTIONS(4265), 1, - anon_sym_DQUOTE, - ACTIONS(4269), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4271), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4888), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(4890), 1, - anon_sym_LPAREN, - STATE(1520), 1, - sym_comment, - STATE(4626), 1, - sym__str_double_quotes, - STATE(4866), 1, - sym__inter_single_quotes, - STATE(4872), 1, - sym__inter_double_quotes, - STATE(7001), 1, - sym__val_number_decimal, - ACTIONS(1336), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4267), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(19), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(4886), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - STATE(4766), 5, - sym_cmd_identifier, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(21), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [1187] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1521), 1, - sym_comment, - ACTIONS(1050), 17, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1052), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [1260] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2239), 1, - anon_sym_LPAREN2, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - STATE(1522), 1, - sym_comment, - ACTIONS(2241), 19, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2237), 41, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [1337] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1523), 1, - sym_comment, - ACTIONS(4894), 9, - anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(4892), 53, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [1410] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2239), 1, - anon_sym_LPAREN2, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - STATE(1524), 1, - sym_comment, - ACTIONS(2247), 19, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2245), 41, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [1487] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4896), 1, - anon_sym_LBRACK2, - STATE(1525), 1, - sym_comment, - ACTIONS(2313), 9, - anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2317), 52, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [1562] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - STATE(1526), 1, - sym_comment, - ACTIONS(2241), 21, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2237), 40, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [1637] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - STATE(1527), 1, - sym_comment, - ACTIONS(2247), 21, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2245), 40, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [1712] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4902), 1, - anon_sym_EQ2, - STATE(1528), 1, - sym_comment, - ACTIONS(4900), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(4898), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [1787] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1494), 1, - aux_sym_unquoted_token2, - ACTIONS(1780), 1, - anon_sym_LPAREN2, - STATE(1529), 1, - sym_comment, - ACTIONS(1778), 17, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1786), 43, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [1864] = 20, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1338), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1340), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4283), 1, - anon_sym_DOLLAR, - ACTIONS(4303), 1, - anon_sym_DQUOTE, - ACTIONS(4307), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4309), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4906), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(4908), 1, - anon_sym_LPAREN, - STATE(1530), 1, - sym_comment, - STATE(4501), 1, - sym__str_double_quotes, - STATE(4767), 1, - sym__inter_single_quotes, - STATE(4768), 1, - sym__inter_double_quotes, - STATE(6858), 1, - sym__val_number_decimal, - ACTIONS(1336), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4305), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(367), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(4904), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - STATE(4564), 5, - sym_cmd_identifier, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(369), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [1969] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - STATE(1531), 1, - sym_comment, - STATE(7682), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4749), 17, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(4747), 43, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [2046] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4773), 1, - anon_sym_DOT_DOT2, - ACTIONS(4816), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(4910), 1, - sym_filesize_unit, - ACTIONS(4912), 1, - sym_duration_unit, - STATE(1532), 1, - sym_comment, - ACTIONS(4775), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1560), 9, - sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1572), 47, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [2129] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - STATE(1533), 1, - sym_comment, - STATE(7352), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4916), 17, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(4914), 43, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [2206] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1534), 1, - sym_comment, - ACTIONS(1054), 17, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1056), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [2279] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4918), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4920), 1, - aux_sym__immediate_decimal_token2, - STATE(1535), 1, - sym_comment, - ACTIONS(1659), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1661), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [2356] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1536), 1, - sym_comment, - ACTIONS(4884), 17, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(4882), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [2429] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - STATE(1537), 1, - sym_comment, - STATE(7682), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4753), 17, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(4751), 43, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [2506] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4852), 1, - aux_sym__immediate_decimal_token2, - STATE(1538), 1, - sym_comment, - ACTIONS(1667), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1669), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [2581] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4922), 1, - anon_sym_QMARK2, - STATE(1539), 1, - sym_comment, - ACTIONS(1028), 17, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1030), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [2656] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4924), 1, - aux_sym__immediate_decimal_token2, - STATE(1540), 1, - sym_comment, - ACTIONS(1721), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1723), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [2731] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1541), 1, - sym_comment, - ACTIONS(1518), 10, - aux_sym_cmd_identifier_token41, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1520), 52, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [2804] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1542), 1, - sym_comment, - ACTIONS(1738), 18, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - aux_sym_unquoted_token2, - ACTIONS(1740), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [2877] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1543), 1, - sym_comment, - ACTIONS(1038), 17, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1040), 45, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [2950] = 21, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1338), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1340), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3860), 1, - anon_sym_DQUOTE, - ACTIONS(4874), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4880), 1, - sym_wild_card, - STATE(1544), 1, - sym_comment, - STATE(1990), 1, - sym_val_string, - STATE(2002), 1, - sym__str_double_quotes, - STATE(2012), 1, - sym_cmd_identifier, - STATE(6521), 1, - sym__command_name, - STATE(6523), 1, - sym_scope_pattern, - STATE(6530), 1, - sym_command_list, - STATE(7094), 1, - sym__val_number_decimal, - ACTIONS(1336), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3862), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4926), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(4868), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(4872), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4870), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [3057] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1545), 1, - sym_comment, - ACTIONS(1554), 10, - aux_sym_cmd_identifier_token41, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1556), 52, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [3130] = 21, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1338), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1340), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3860), 1, - anon_sym_DQUOTE, - ACTIONS(4874), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(4878), 1, - anon_sym_LBRACK, - ACTIONS(4880), 1, - sym_wild_card, - STATE(1546), 1, - sym_comment, - STATE(1990), 1, - sym_val_string, - STATE(2002), 1, - sym__str_double_quotes, - STATE(2012), 1, - sym_cmd_identifier, - STATE(6492), 1, - sym_scope_pattern, - STATE(6521), 1, - sym__command_name, - STATE(6530), 1, - sym_command_list, - STATE(7094), 1, - sym__val_number_decimal, - ACTIONS(1336), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3862), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4928), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(4868), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(4872), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4870), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [3237] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4930), 1, - anon_sym_EQ2, - ACTIONS(4932), 1, - sym_short_flag_identifier, - STATE(1547), 1, - sym_comment, - ACTIONS(4781), 28, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(4783), 32, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [3314] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1548), 1, - sym_comment, - ACTIONS(1675), 10, - sym__newline, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1677), 52, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [3387] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1549), 1, - sym_comment, - ACTIONS(2255), 21, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2253), 41, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - aux_sym_unquoted_token4, - [3460] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4934), 1, - anon_sym_QMARK2, - STATE(1550), 1, - sym_comment, - ACTIONS(1022), 17, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1024), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [3535] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1551), 1, - sym_comment, - ACTIONS(1046), 17, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1048), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [3608] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1552), 1, - sym_comment, - ACTIONS(4894), 17, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(4892), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [3681] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4936), 1, - sym_long_flag_identifier, - ACTIONS(4938), 1, - anon_sym_EQ2, - STATE(1553), 1, - sym_comment, - ACTIONS(4808), 25, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(4810), 35, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token39, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [3758] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4944), 1, - anon_sym_EQ2, - STATE(1554), 1, - sym_comment, - ACTIONS(4942), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(4940), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [3833] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1555), 1, - sym_comment, - ACTIONS(1721), 18, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - aux_sym_unquoted_token2, - ACTIONS(1723), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [3906] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(1556), 1, - sym_comment, - ACTIONS(2255), 20, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_LPAREN2, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2253), 42, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - aux_sym_unquoted_token4, - [3979] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1557), 1, - sym_comment, - ACTIONS(1659), 18, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - aux_sym_unquoted_token2, - ACTIONS(1661), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [4052] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1558), 1, - sym_comment, - ACTIONS(2141), 10, - sym__newline, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2143), 52, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [4125] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3988), 1, - aux_sym_unquoted_token2, - STATE(1559), 1, - sym_comment, - ACTIONS(1560), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1572), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [4200] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2299), 1, - anon_sym_LPAREN2, - ACTIONS(2303), 1, - aux_sym_unquoted_token2, - STATE(1560), 1, - sym_comment, - ACTIONS(2297), 17, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2301), 43, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [4277] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1561), 1, - sym_comment, - ACTIONS(1667), 18, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - aux_sym_unquoted_token2, - ACTIONS(1669), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [4350] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2231), 1, - anon_sym_LPAREN2, - ACTIONS(2235), 1, - aux_sym_unquoted_token4, - STATE(1562), 1, - sym_comment, - ACTIONS(2233), 19, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2229), 41, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [4427] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1563), 1, - sym_comment, - ACTIONS(1653), 10, - aux_sym_cmd_identifier_token41, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1655), 52, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [4500] = 20, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1338), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1340), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4283), 1, - anon_sym_DOLLAR, - ACTIONS(4303), 1, - anon_sym_DQUOTE, - ACTIONS(4307), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4309), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4906), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(4908), 1, - anon_sym_LPAREN, - STATE(1564), 1, - sym_comment, - STATE(4501), 1, - sym__str_double_quotes, - STATE(4767), 1, - sym__inter_single_quotes, - STATE(4768), 1, - sym__inter_double_quotes, - STATE(6858), 1, - sym__val_number_decimal, - ACTIONS(1336), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4305), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(367), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(4904), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - STATE(4709), 5, - sym_cmd_identifier, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(369), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [4605] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - STATE(1565), 1, - sym_comment, - STATE(7682), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4757), 17, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(4755), 43, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [4682] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - STATE(1566), 1, - sym_comment, - STATE(7682), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4761), 17, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(4759), 43, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [4759] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1790), 1, - anon_sym_LPAREN2, - ACTIONS(1798), 1, - aux_sym_unquoted_token2, - STATE(1567), 1, - sym_comment, - ACTIONS(2287), 17, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2289), 43, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [4836] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4946), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(4948), 1, - anon_sym_DOT_DOT2, - ACTIONS(4952), 1, - sym_filesize_unit, - ACTIONS(4954), 1, - sym_duration_unit, - STATE(1568), 1, - sym_comment, - ACTIONS(4950), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1560), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1572), 48, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [4919] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1790), 1, - anon_sym_LPAREN2, - ACTIONS(1798), 1, - aux_sym_unquoted_token2, - STATE(1569), 1, - sym_comment, - ACTIONS(1788), 17, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1796), 43, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [4996] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1570), 1, - sym_comment, - ACTIONS(1046), 9, - anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1048), 53, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [5069] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4520), 1, - aux_sym_unquoted_token2, - STATE(1571), 1, - sym_comment, - ACTIONS(1560), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1572), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [5144] = 4, - ACTIONS(247), 1, + [ts_builtin_sym_end] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(1705), + [anon_sym_false] = ACTIONS(1705), + [anon_sym_null] = ACTIONS(1705), + [aux_sym_cmd_identifier_token38] = ACTIONS(1705), + [aux_sym_cmd_identifier_token39] = ACTIONS(1705), + [aux_sym_cmd_identifier_token40] = ACTIONS(1705), + [sym__newline] = ACTIONS(1705), + [anon_sym_SEMI] = ACTIONS(1705), + [anon_sym_PIPE] = ACTIONS(1705), + [anon_sym_err_GT_PIPE] = ACTIONS(1705), + [anon_sym_out_GT_PIPE] = ACTIONS(1705), + [anon_sym_e_GT_PIPE] = ACTIONS(1705), + [anon_sym_o_GT_PIPE] = ACTIONS(1705), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1705), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1705), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1705), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1705), + [anon_sym_LBRACK] = ACTIONS(1705), + [anon_sym_LPAREN] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1703), + [anon_sym_DASH_DASH] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_LBRACE] = ACTIONS(1705), + [anon_sym_DOT_DOT] = ACTIONS(1703), + [anon_sym_LPAREN2] = ACTIONS(1705), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1705), + [anon_sym_DOT_DOT_LT] = ACTIONS(1705), + [aux_sym__val_number_decimal_token1] = ACTIONS(1703), + [aux_sym__val_number_decimal_token2] = ACTIONS(1705), + [aux_sym__val_number_decimal_token3] = ACTIONS(1705), + [aux_sym__val_number_decimal_token4] = ACTIONS(1705), + [aux_sym__val_number_token1] = ACTIONS(1705), + [aux_sym__val_number_token2] = ACTIONS(1705), + [aux_sym__val_number_token3] = ACTIONS(1705), + [anon_sym_0b] = ACTIONS(1703), + [anon_sym_0o] = ACTIONS(1703), + [anon_sym_0x] = ACTIONS(1703), + [sym_val_date] = ACTIONS(1705), + [anon_sym_DQUOTE] = ACTIONS(1705), + [sym__str_single_quotes] = ACTIONS(1705), + [sym__str_back_ticks] = ACTIONS(1705), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1705), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1705), + [anon_sym_err_GT] = ACTIONS(1703), + [anon_sym_out_GT] = ACTIONS(1703), + [anon_sym_e_GT] = ACTIONS(1703), + [anon_sym_o_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT] = ACTIONS(1703), + [anon_sym_err_GT_GT] = ACTIONS(1705), + [anon_sym_out_GT_GT] = ACTIONS(1705), + [anon_sym_e_GT_GT] = ACTIONS(1705), + [anon_sym_o_GT_GT] = ACTIONS(1705), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1705), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1705), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1705), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1705), + [aux_sym_unquoted_token1] = ACTIONS(1703), + [aux_sym_unquoted_token2] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1705), + }, + [1498] = { + [sym_comment] = STATE(1498), + [ts_builtin_sym_end] = ACTIONS(1530), + [sym__newline] = ACTIONS(1530), + [anon_sym_SEMI] = ACTIONS(1530), + [anon_sym_PIPE] = ACTIONS(1530), + [anon_sym_err_GT_PIPE] = ACTIONS(1530), + [anon_sym_out_GT_PIPE] = ACTIONS(1530), + [anon_sym_e_GT_PIPE] = ACTIONS(1530), + [anon_sym_o_GT_PIPE] = ACTIONS(1530), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1530), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1530), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1530), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1530), + [anon_sym_LPAREN2] = ACTIONS(1530), + [aux_sym_expr_binary_token1] = ACTIONS(1530), + [aux_sym_expr_binary_token2] = ACTIONS(1530), + [aux_sym_expr_binary_token3] = ACTIONS(1530), + [aux_sym_expr_binary_token4] = ACTIONS(1530), + [aux_sym_expr_binary_token5] = ACTIONS(1530), + [aux_sym_expr_binary_token6] = ACTIONS(1530), + [aux_sym_expr_binary_token7] = ACTIONS(1530), + [aux_sym_expr_binary_token8] = ACTIONS(1530), + [aux_sym_expr_binary_token9] = ACTIONS(1530), + [aux_sym_expr_binary_token10] = ACTIONS(1530), + [aux_sym_expr_binary_token11] = ACTIONS(1530), + [aux_sym_expr_binary_token12] = ACTIONS(1530), + [aux_sym_expr_binary_token13] = ACTIONS(1530), + [aux_sym_expr_binary_token14] = ACTIONS(1530), + [aux_sym_expr_binary_token15] = ACTIONS(1530), + [aux_sym_expr_binary_token16] = ACTIONS(1530), + [aux_sym_expr_binary_token17] = ACTIONS(1530), + [aux_sym_expr_binary_token18] = ACTIONS(1530), + [aux_sym_expr_binary_token19] = ACTIONS(1530), + [aux_sym_expr_binary_token20] = ACTIONS(1530), + [aux_sym_expr_binary_token21] = ACTIONS(1530), + [aux_sym_expr_binary_token22] = ACTIONS(1530), + [aux_sym_expr_binary_token23] = ACTIONS(1530), + [aux_sym_expr_binary_token24] = ACTIONS(1530), + [aux_sym_expr_binary_token25] = ACTIONS(1530), + [aux_sym_expr_binary_token26] = ACTIONS(1530), + [aux_sym_expr_binary_token27] = ACTIONS(1530), + [aux_sym_expr_binary_token28] = ACTIONS(1530), + [anon_sym_DOT_DOT2] = ACTIONS(1528), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1530), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1530), + [sym_filesize_unit] = ACTIONS(1530), + [sym_duration_unit] = ACTIONS(1530), + [anon_sym_err_GT] = ACTIONS(1528), + [anon_sym_out_GT] = ACTIONS(1528), + [anon_sym_e_GT] = ACTIONS(1528), + [anon_sym_o_GT] = ACTIONS(1528), + [anon_sym_err_PLUSout_GT] = ACTIONS(1528), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), + [anon_sym_o_PLUSe_GT] = ACTIONS(1528), + [anon_sym_e_PLUSo_GT] = ACTIONS(1528), + [anon_sym_err_GT_GT] = ACTIONS(1530), + [anon_sym_out_GT_GT] = ACTIONS(1530), + [anon_sym_e_GT_GT] = ACTIONS(1530), + [anon_sym_o_GT_GT] = ACTIONS(1530), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1530), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1530), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1530), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1530), + [aux_sym_unquoted_token2] = ACTIONS(1528), + [anon_sym_POUND] = ACTIONS(249), + }, + [1499] = { + [sym_comment] = STATE(1499), + [anon_sym_true] = ACTIONS(1771), + [anon_sym_false] = ACTIONS(1771), + [anon_sym_null] = ACTIONS(1771), + [aux_sym_cmd_identifier_token38] = ACTIONS(1771), + [aux_sym_cmd_identifier_token39] = ACTIONS(1771), + [aux_sym_cmd_identifier_token40] = ACTIONS(1771), + [sym__newline] = ACTIONS(1771), + [anon_sym_SEMI] = ACTIONS(1771), + [anon_sym_PIPE] = ACTIONS(1771), + [anon_sym_err_GT_PIPE] = ACTIONS(1771), + [anon_sym_out_GT_PIPE] = ACTIONS(1771), + [anon_sym_e_GT_PIPE] = ACTIONS(1771), + [anon_sym_o_GT_PIPE] = ACTIONS(1771), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1771), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1771), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1771), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1771), + [anon_sym_LPAREN] = ACTIONS(1771), + [anon_sym_RPAREN] = ACTIONS(1771), + [anon_sym_DOLLAR] = ACTIONS(1769), + [anon_sym_DASH_DASH] = ACTIONS(1771), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_LBRACE] = ACTIONS(1771), + [anon_sym_RBRACE] = ACTIONS(1771), + [anon_sym_DOT_DOT] = ACTIONS(1769), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1771), + [anon_sym_DOT_DOT_LT] = ACTIONS(1771), + [aux_sym__immediate_decimal_token2] = ACTIONS(4955), + [aux_sym__val_number_decimal_token1] = ACTIONS(1769), + [aux_sym__val_number_decimal_token2] = ACTIONS(1771), + [aux_sym__val_number_decimal_token3] = ACTIONS(1771), + [aux_sym__val_number_decimal_token4] = ACTIONS(1771), + [aux_sym__val_number_token1] = ACTIONS(1771), + [aux_sym__val_number_token2] = ACTIONS(1771), + [aux_sym__val_number_token3] = ACTIONS(1771), + [anon_sym_0b] = ACTIONS(1769), + [anon_sym_0o] = ACTIONS(1769), + [anon_sym_0x] = ACTIONS(1769), + [sym_val_date] = ACTIONS(1771), + [anon_sym_DQUOTE] = ACTIONS(1771), + [sym__str_single_quotes] = ACTIONS(1771), + [sym__str_back_ticks] = ACTIONS(1771), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1771), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1771), + [anon_sym_err_GT] = ACTIONS(1769), + [anon_sym_out_GT] = ACTIONS(1769), + [anon_sym_e_GT] = ACTIONS(1769), + [anon_sym_o_GT] = ACTIONS(1769), + [anon_sym_err_PLUSout_GT] = ACTIONS(1769), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1769), + [anon_sym_o_PLUSe_GT] = ACTIONS(1769), + [anon_sym_e_PLUSo_GT] = ACTIONS(1769), + [anon_sym_err_GT_GT] = ACTIONS(1771), + [anon_sym_out_GT_GT] = ACTIONS(1771), + [anon_sym_e_GT_GT] = ACTIONS(1771), + [anon_sym_o_GT_GT] = ACTIONS(1771), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1771), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1771), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1771), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1771), + [aux_sym_unquoted_token1] = ACTIONS(1769), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1771), + }, + [1500] = { + [sym_comment] = STATE(1500), + [ts_builtin_sym_end] = ACTIONS(1598), + [sym__newline] = ACTIONS(1598), + [anon_sym_SEMI] = ACTIONS(1598), + [anon_sym_PIPE] = ACTIONS(1598), + [anon_sym_err_GT_PIPE] = ACTIONS(1598), + [anon_sym_out_GT_PIPE] = ACTIONS(1598), + [anon_sym_e_GT_PIPE] = ACTIONS(1598), + [anon_sym_o_GT_PIPE] = ACTIONS(1598), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1598), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1598), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1598), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1598), + [anon_sym_LPAREN2] = ACTIONS(1598), + [aux_sym_expr_binary_token1] = ACTIONS(1598), + [aux_sym_expr_binary_token2] = ACTIONS(1598), + [aux_sym_expr_binary_token3] = ACTIONS(1598), + [aux_sym_expr_binary_token4] = ACTIONS(1598), + [aux_sym_expr_binary_token5] = ACTIONS(1598), + [aux_sym_expr_binary_token6] = ACTIONS(1598), + [aux_sym_expr_binary_token7] = ACTIONS(1598), + [aux_sym_expr_binary_token8] = ACTIONS(1598), + [aux_sym_expr_binary_token9] = ACTIONS(1598), + [aux_sym_expr_binary_token10] = ACTIONS(1598), + [aux_sym_expr_binary_token11] = ACTIONS(1598), + [aux_sym_expr_binary_token12] = ACTIONS(1598), + [aux_sym_expr_binary_token13] = ACTIONS(1598), + [aux_sym_expr_binary_token14] = ACTIONS(1598), + [aux_sym_expr_binary_token15] = ACTIONS(1598), + [aux_sym_expr_binary_token16] = ACTIONS(1598), + [aux_sym_expr_binary_token17] = ACTIONS(1598), + [aux_sym_expr_binary_token18] = ACTIONS(1598), + [aux_sym_expr_binary_token19] = ACTIONS(1598), + [aux_sym_expr_binary_token20] = ACTIONS(1598), + [aux_sym_expr_binary_token21] = ACTIONS(1598), + [aux_sym_expr_binary_token22] = ACTIONS(1598), + [aux_sym_expr_binary_token23] = ACTIONS(1598), + [aux_sym_expr_binary_token24] = ACTIONS(1598), + [aux_sym_expr_binary_token25] = ACTIONS(1598), + [aux_sym_expr_binary_token26] = ACTIONS(1598), + [aux_sym_expr_binary_token27] = ACTIONS(1598), + [aux_sym_expr_binary_token28] = ACTIONS(1598), + [anon_sym_DOT_DOT2] = ACTIONS(1596), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1598), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1598), + [sym_filesize_unit] = ACTIONS(1598), + [sym_duration_unit] = ACTIONS(1598), + [anon_sym_err_GT] = ACTIONS(1596), + [anon_sym_out_GT] = ACTIONS(1596), + [anon_sym_e_GT] = ACTIONS(1596), + [anon_sym_o_GT] = ACTIONS(1596), + [anon_sym_err_PLUSout_GT] = ACTIONS(1596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1596), + [anon_sym_o_PLUSe_GT] = ACTIONS(1596), + [anon_sym_e_PLUSo_GT] = ACTIONS(1596), + [anon_sym_err_GT_GT] = ACTIONS(1598), + [anon_sym_out_GT_GT] = ACTIONS(1598), + [anon_sym_e_GT_GT] = ACTIONS(1598), + [anon_sym_o_GT_GT] = ACTIONS(1598), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1598), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1598), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1598), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1598), + [aux_sym_unquoted_token2] = ACTIONS(1596), + [anon_sym_POUND] = ACTIONS(249), + }, + [1501] = { + [sym_comment] = STATE(1501), + [aux_sym_cmd_identifier_token41] = ACTIONS(1596), + [sym__newline] = ACTIONS(1598), + [anon_sym_SEMI] = ACTIONS(1598), + [anon_sym_PIPE] = ACTIONS(1598), + [anon_sym_err_GT_PIPE] = ACTIONS(1598), + [anon_sym_out_GT_PIPE] = ACTIONS(1598), + [anon_sym_e_GT_PIPE] = ACTIONS(1598), + [anon_sym_o_GT_PIPE] = ACTIONS(1598), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1598), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1598), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1598), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1598), + [anon_sym_RPAREN] = ACTIONS(1598), + [anon_sym_RBRACE] = ACTIONS(1598), + [aux_sym_expr_binary_token1] = ACTIONS(1598), + [aux_sym_expr_binary_token2] = ACTIONS(1598), + [aux_sym_expr_binary_token3] = ACTIONS(1598), + [aux_sym_expr_binary_token4] = ACTIONS(1598), + [aux_sym_expr_binary_token5] = ACTIONS(1598), + [aux_sym_expr_binary_token6] = ACTIONS(1598), + [aux_sym_expr_binary_token7] = ACTIONS(1598), + [aux_sym_expr_binary_token8] = ACTIONS(1598), + [aux_sym_expr_binary_token9] = ACTIONS(1598), + [aux_sym_expr_binary_token10] = ACTIONS(1598), + [aux_sym_expr_binary_token11] = ACTIONS(1598), + [aux_sym_expr_binary_token12] = ACTIONS(1598), + [aux_sym_expr_binary_token13] = ACTIONS(1598), + [aux_sym_expr_binary_token14] = ACTIONS(1598), + [aux_sym_expr_binary_token15] = ACTIONS(1598), + [aux_sym_expr_binary_token16] = ACTIONS(1598), + [aux_sym_expr_binary_token17] = ACTIONS(1598), + [aux_sym_expr_binary_token18] = ACTIONS(1598), + [aux_sym_expr_binary_token19] = ACTIONS(1598), + [aux_sym_expr_binary_token20] = ACTIONS(1598), + [aux_sym_expr_binary_token21] = ACTIONS(1598), + [aux_sym_expr_binary_token22] = ACTIONS(1598), + [aux_sym_expr_binary_token23] = ACTIONS(1598), + [aux_sym_expr_binary_token24] = ACTIONS(1598), + [aux_sym_expr_binary_token25] = ACTIONS(1598), + [aux_sym_expr_binary_token26] = ACTIONS(1598), + [aux_sym_expr_binary_token27] = ACTIONS(1598), + [aux_sym_expr_binary_token28] = ACTIONS(1598), + [anon_sym_DOT_DOT2] = ACTIONS(1596), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1598), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1598), + [sym_filesize_unit] = ACTIONS(1598), + [sym_duration_unit] = ACTIONS(1598), + [anon_sym_err_GT] = ACTIONS(1596), + [anon_sym_out_GT] = ACTIONS(1596), + [anon_sym_e_GT] = ACTIONS(1596), + [anon_sym_o_GT] = ACTIONS(1596), + [anon_sym_err_PLUSout_GT] = ACTIONS(1596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1596), + [anon_sym_o_PLUSe_GT] = ACTIONS(1596), + [anon_sym_e_PLUSo_GT] = ACTIONS(1596), + [anon_sym_err_GT_GT] = ACTIONS(1598), + [anon_sym_out_GT_GT] = ACTIONS(1598), + [anon_sym_e_GT_GT] = ACTIONS(1598), + [anon_sym_o_GT_GT] = ACTIONS(1598), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1598), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1598), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1598), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1598), + [anon_sym_POUND] = ACTIONS(249), + }, + [1502] = { + [sym_comment] = STATE(1502), + [aux_sym_cmd_identifier_token41] = ACTIONS(1536), + [sym__newline] = ACTIONS(1536), + [anon_sym_SEMI] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_err_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_GT_PIPE] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), + [anon_sym_RPAREN] = ACTIONS(1538), + [anon_sym_LBRACE] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1538), + [anon_sym_DOT_DOT2] = ACTIONS(1536), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), + [sym_filesize_unit] = ACTIONS(1538), + [sym_duration_unit] = ACTIONS(1538), + [anon_sym_err_GT] = ACTIONS(1536), + [anon_sym_out_GT] = ACTIONS(1536), + [anon_sym_e_GT] = ACTIONS(1536), + [anon_sym_o_GT] = ACTIONS(1536), + [anon_sym_err_PLUSout_GT] = ACTIONS(1536), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), + [anon_sym_o_PLUSe_GT] = ACTIONS(1536), + [anon_sym_e_PLUSo_GT] = ACTIONS(1536), + [anon_sym_err_GT_GT] = ACTIONS(1538), + [anon_sym_out_GT_GT] = ACTIONS(1538), + [anon_sym_e_GT_GT] = ACTIONS(1538), + [anon_sym_o_GT_GT] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), + [anon_sym_POUND] = ACTIONS(249), + }, + [1503] = { + [sym_comment] = STATE(1503), + [sym__newline] = ACTIONS(1044), + [anon_sym_SEMI] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1044), + [anon_sym_err_GT_PIPE] = ACTIONS(1044), + [anon_sym_out_GT_PIPE] = ACTIONS(1044), + [anon_sym_e_GT_PIPE] = ACTIONS(1044), + [anon_sym_o_GT_PIPE] = ACTIONS(1044), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1044), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1044), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1044), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1044), + [anon_sym_RPAREN] = ACTIONS(1044), + [anon_sym_DASH_DASH] = ACTIONS(1044), + [anon_sym_DASH] = ACTIONS(1042), + [anon_sym_LBRACE] = ACTIONS(1044), + [anon_sym_RBRACE] = ACTIONS(1044), + [anon_sym_EQ_GT] = ACTIONS(1044), + [anon_sym_QMARK2] = ACTIONS(4957), + [aux_sym_expr_binary_token1] = ACTIONS(1044), + [aux_sym_expr_binary_token2] = ACTIONS(1044), + [aux_sym_expr_binary_token3] = ACTIONS(1044), + [aux_sym_expr_binary_token4] = ACTIONS(1044), + [aux_sym_expr_binary_token5] = ACTIONS(1044), + [aux_sym_expr_binary_token6] = ACTIONS(1044), + [aux_sym_expr_binary_token7] = ACTIONS(1044), + [aux_sym_expr_binary_token8] = ACTIONS(1044), + [aux_sym_expr_binary_token9] = ACTIONS(1044), + [aux_sym_expr_binary_token10] = ACTIONS(1044), + [aux_sym_expr_binary_token11] = ACTIONS(1044), + [aux_sym_expr_binary_token12] = ACTIONS(1044), + [aux_sym_expr_binary_token13] = ACTIONS(1044), + [aux_sym_expr_binary_token14] = ACTIONS(1044), + [aux_sym_expr_binary_token15] = ACTIONS(1044), + [aux_sym_expr_binary_token16] = ACTIONS(1044), + [aux_sym_expr_binary_token17] = ACTIONS(1044), + [aux_sym_expr_binary_token18] = ACTIONS(1044), + [aux_sym_expr_binary_token19] = ACTIONS(1044), + [aux_sym_expr_binary_token20] = ACTIONS(1044), + [aux_sym_expr_binary_token21] = ACTIONS(1044), + [aux_sym_expr_binary_token22] = ACTIONS(1044), + [aux_sym_expr_binary_token23] = ACTIONS(1044), + [aux_sym_expr_binary_token24] = ACTIONS(1044), + [aux_sym_expr_binary_token25] = ACTIONS(1044), + [aux_sym_expr_binary_token26] = ACTIONS(1044), + [aux_sym_expr_binary_token27] = ACTIONS(1044), + [aux_sym_expr_binary_token28] = ACTIONS(1044), + [anon_sym_DOT] = ACTIONS(1044), + [anon_sym_err_GT] = ACTIONS(1042), + [anon_sym_out_GT] = ACTIONS(1042), + [anon_sym_e_GT] = ACTIONS(1042), + [anon_sym_o_GT] = ACTIONS(1042), + [anon_sym_err_PLUSout_GT] = ACTIONS(1042), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1042), + [anon_sym_o_PLUSe_GT] = ACTIONS(1042), + [anon_sym_e_PLUSo_GT] = ACTIONS(1042), + [anon_sym_err_GT_GT] = ACTIONS(1044), + [anon_sym_out_GT_GT] = ACTIONS(1044), + [anon_sym_e_GT_GT] = ACTIONS(1044), + [anon_sym_o_GT_GT] = ACTIONS(1044), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1044), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1044), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1044), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1044), + [anon_sym_POUND] = ACTIONS(249), + }, + [1504] = { + [sym_comment] = STATE(1504), + [sym__newline] = ACTIONS(1050), + [anon_sym_SEMI] = ACTIONS(1050), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_err_GT_PIPE] = ACTIONS(1050), + [anon_sym_out_GT_PIPE] = ACTIONS(1050), + [anon_sym_e_GT_PIPE] = ACTIONS(1050), + [anon_sym_o_GT_PIPE] = ACTIONS(1050), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1050), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1050), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1050), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1050), + [anon_sym_RPAREN] = ACTIONS(1050), + [anon_sym_DASH_DASH] = ACTIONS(1050), + [anon_sym_DASH] = ACTIONS(1048), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_RBRACE] = ACTIONS(1050), + [anon_sym_EQ_GT] = ACTIONS(1050), + [anon_sym_QMARK2] = ACTIONS(4959), + [aux_sym_expr_binary_token1] = ACTIONS(1050), + [aux_sym_expr_binary_token2] = ACTIONS(1050), + [aux_sym_expr_binary_token3] = ACTIONS(1050), + [aux_sym_expr_binary_token4] = ACTIONS(1050), + [aux_sym_expr_binary_token5] = ACTIONS(1050), + [aux_sym_expr_binary_token6] = ACTIONS(1050), + [aux_sym_expr_binary_token7] = ACTIONS(1050), + [aux_sym_expr_binary_token8] = ACTIONS(1050), + [aux_sym_expr_binary_token9] = ACTIONS(1050), + [aux_sym_expr_binary_token10] = ACTIONS(1050), + [aux_sym_expr_binary_token11] = ACTIONS(1050), + [aux_sym_expr_binary_token12] = ACTIONS(1050), + [aux_sym_expr_binary_token13] = ACTIONS(1050), + [aux_sym_expr_binary_token14] = ACTIONS(1050), + [aux_sym_expr_binary_token15] = ACTIONS(1050), + [aux_sym_expr_binary_token16] = ACTIONS(1050), + [aux_sym_expr_binary_token17] = ACTIONS(1050), + [aux_sym_expr_binary_token18] = ACTIONS(1050), + [aux_sym_expr_binary_token19] = ACTIONS(1050), + [aux_sym_expr_binary_token20] = ACTIONS(1050), + [aux_sym_expr_binary_token21] = ACTIONS(1050), + [aux_sym_expr_binary_token22] = ACTIONS(1050), + [aux_sym_expr_binary_token23] = ACTIONS(1050), + [aux_sym_expr_binary_token24] = ACTIONS(1050), + [aux_sym_expr_binary_token25] = ACTIONS(1050), + [aux_sym_expr_binary_token26] = ACTIONS(1050), + [aux_sym_expr_binary_token27] = ACTIONS(1050), + [aux_sym_expr_binary_token28] = ACTIONS(1050), + [anon_sym_DOT] = ACTIONS(1050), + [anon_sym_err_GT] = ACTIONS(1048), + [anon_sym_out_GT] = ACTIONS(1048), + [anon_sym_e_GT] = ACTIONS(1048), + [anon_sym_o_GT] = ACTIONS(1048), + [anon_sym_err_PLUSout_GT] = ACTIONS(1048), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1048), + [anon_sym_o_PLUSe_GT] = ACTIONS(1048), + [anon_sym_e_PLUSo_GT] = ACTIONS(1048), + [anon_sym_err_GT_GT] = ACTIONS(1050), + [anon_sym_out_GT_GT] = ACTIONS(1050), + [anon_sym_e_GT_GT] = ACTIONS(1050), + [anon_sym_o_GT_GT] = ACTIONS(1050), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1050), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1050), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1050), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1050), + [anon_sym_POUND] = ACTIONS(249), + }, + [1505] = { + [sym_cmd_identifier] = STATE(6296), + [sym__command_name] = STATE(7162), + [sym_scope_pattern] = STATE(7227), + [sym_command_list] = STATE(6988), + [sym__val_number_decimal] = STATE(6981), + [sym_val_string] = STATE(6299), + [sym__raw_str] = STATE(2065), + [sym__str_double_quotes] = STATE(2065), + [sym_comment] = STATE(1505), + [ts_builtin_sym_end] = ACTIONS(4897), + [aux_sym_cmd_identifier_token1] = ACTIONS(4961), + [aux_sym_cmd_identifier_token2] = ACTIONS(4963), + [aux_sym_cmd_identifier_token3] = ACTIONS(4963), + [aux_sym_cmd_identifier_token4] = ACTIONS(4963), + [aux_sym_cmd_identifier_token5] = ACTIONS(4963), + [aux_sym_cmd_identifier_token6] = ACTIONS(4963), + [aux_sym_cmd_identifier_token7] = ACTIONS(4963), + [aux_sym_cmd_identifier_token8] = ACTIONS(4963), + [aux_sym_cmd_identifier_token9] = ACTIONS(4961), + [aux_sym_cmd_identifier_token10] = ACTIONS(4963), + [aux_sym_cmd_identifier_token11] = ACTIONS(4963), + [aux_sym_cmd_identifier_token12] = ACTIONS(4963), + [aux_sym_cmd_identifier_token13] = ACTIONS(4961), + [aux_sym_cmd_identifier_token14] = ACTIONS(4963), + [aux_sym_cmd_identifier_token15] = ACTIONS(4961), + [aux_sym_cmd_identifier_token16] = ACTIONS(4963), + [aux_sym_cmd_identifier_token17] = ACTIONS(4963), + [aux_sym_cmd_identifier_token18] = ACTIONS(4963), + [aux_sym_cmd_identifier_token19] = ACTIONS(4963), + [aux_sym_cmd_identifier_token20] = ACTIONS(4963), + [aux_sym_cmd_identifier_token21] = ACTIONS(4963), + [aux_sym_cmd_identifier_token22] = ACTIONS(4963), + [aux_sym_cmd_identifier_token23] = ACTIONS(4963), + [aux_sym_cmd_identifier_token24] = ACTIONS(4963), + [aux_sym_cmd_identifier_token25] = ACTIONS(4963), + [aux_sym_cmd_identifier_token26] = ACTIONS(4963), + [aux_sym_cmd_identifier_token27] = ACTIONS(4963), + [aux_sym_cmd_identifier_token28] = ACTIONS(4963), + [aux_sym_cmd_identifier_token29] = ACTIONS(4963), + [aux_sym_cmd_identifier_token30] = ACTIONS(4963), + [aux_sym_cmd_identifier_token31] = ACTIONS(4963), + [aux_sym_cmd_identifier_token32] = ACTIONS(4963), + [aux_sym_cmd_identifier_token33] = ACTIONS(4963), + [aux_sym_cmd_identifier_token34] = ACTIONS(4963), + [aux_sym_cmd_identifier_token35] = ACTIONS(4963), + [aux_sym_cmd_identifier_token36] = ACTIONS(4961), + [anon_sym_true] = ACTIONS(4965), + [anon_sym_false] = ACTIONS(4965), + [anon_sym_null] = ACTIONS(4965), + [aux_sym_cmd_identifier_token38] = ACTIONS(4967), + [aux_sym_cmd_identifier_token39] = ACTIONS(4965), + [aux_sym_cmd_identifier_token40] = ACTIONS(4965), + [sym__newline] = ACTIONS(4897), + [anon_sym_SEMI] = ACTIONS(4897), + [anon_sym_LBRACK] = ACTIONS(4969), + [sym_wild_card] = ACTIONS(4971), + [aux_sym__val_number_decimal_token1] = ACTIONS(1343), + [aux_sym__val_number_decimal_token2] = ACTIONS(1343), + [aux_sym__val_number_decimal_token3] = ACTIONS(1345), + [aux_sym__val_number_decimal_token4] = ACTIONS(1347), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(123), + }, + [1506] = { + [sym_comment] = STATE(1506), + [ts_builtin_sym_end] = ACTIONS(1713), + [sym__newline] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_err_GT_PIPE] = ACTIONS(1713), + [anon_sym_out_GT_PIPE] = ACTIONS(1713), + [anon_sym_e_GT_PIPE] = ACTIONS(1713), + [anon_sym_o_GT_PIPE] = ACTIONS(1713), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), + [anon_sym_LPAREN2] = ACTIONS(1713), + [aux_sym_expr_binary_token1] = ACTIONS(1713), + [aux_sym_expr_binary_token2] = ACTIONS(1713), + [aux_sym_expr_binary_token3] = ACTIONS(1713), + [aux_sym_expr_binary_token4] = ACTIONS(1713), + [aux_sym_expr_binary_token5] = ACTIONS(1713), + [aux_sym_expr_binary_token6] = ACTIONS(1713), + [aux_sym_expr_binary_token7] = ACTIONS(1713), + [aux_sym_expr_binary_token8] = ACTIONS(1713), + [aux_sym_expr_binary_token9] = ACTIONS(1713), + [aux_sym_expr_binary_token10] = ACTIONS(1713), + [aux_sym_expr_binary_token11] = ACTIONS(1713), + [aux_sym_expr_binary_token12] = ACTIONS(1713), + [aux_sym_expr_binary_token13] = ACTIONS(1713), + [aux_sym_expr_binary_token14] = ACTIONS(1713), + [aux_sym_expr_binary_token15] = ACTIONS(1713), + [aux_sym_expr_binary_token16] = ACTIONS(1713), + [aux_sym_expr_binary_token17] = ACTIONS(1713), + [aux_sym_expr_binary_token18] = ACTIONS(1713), + [aux_sym_expr_binary_token19] = ACTIONS(1713), + [aux_sym_expr_binary_token20] = ACTIONS(1713), + [aux_sym_expr_binary_token21] = ACTIONS(1713), + [aux_sym_expr_binary_token22] = ACTIONS(1713), + [aux_sym_expr_binary_token23] = ACTIONS(1713), + [aux_sym_expr_binary_token24] = ACTIONS(1713), + [aux_sym_expr_binary_token25] = ACTIONS(1713), + [aux_sym_expr_binary_token26] = ACTIONS(1713), + [aux_sym_expr_binary_token27] = ACTIONS(1713), + [aux_sym_expr_binary_token28] = ACTIONS(1713), + [anon_sym_DOT_DOT2] = ACTIONS(1711), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), + [sym_filesize_unit] = ACTIONS(1713), + [sym_duration_unit] = ACTIONS(1713), + [anon_sym_err_GT] = ACTIONS(1711), + [anon_sym_out_GT] = ACTIONS(1711), + [anon_sym_e_GT] = ACTIONS(1711), + [anon_sym_o_GT] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT] = ACTIONS(1711), + [anon_sym_err_GT_GT] = ACTIONS(1713), + [anon_sym_out_GT_GT] = ACTIONS(1713), + [anon_sym_e_GT_GT] = ACTIONS(1713), + [anon_sym_o_GT_GT] = ACTIONS(1713), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), + [aux_sym_unquoted_token2] = ACTIONS(1711), + [anon_sym_POUND] = ACTIONS(249), + }, + [1507] = { + [sym_comment] = STATE(1507), + [ts_builtin_sym_end] = ACTIONS(1771), + [anon_sym_true] = ACTIONS(1771), + [anon_sym_false] = ACTIONS(1771), + [anon_sym_null] = ACTIONS(1771), + [aux_sym_cmd_identifier_token38] = ACTIONS(1771), + [aux_sym_cmd_identifier_token39] = ACTIONS(1771), + [aux_sym_cmd_identifier_token40] = ACTIONS(1771), + [sym__newline] = ACTIONS(1771), + [anon_sym_SEMI] = ACTIONS(1771), + [anon_sym_PIPE] = ACTIONS(1771), + [anon_sym_err_GT_PIPE] = ACTIONS(1771), + [anon_sym_out_GT_PIPE] = ACTIONS(1771), + [anon_sym_e_GT_PIPE] = ACTIONS(1771), + [anon_sym_o_GT_PIPE] = ACTIONS(1771), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1771), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1771), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1771), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1771), + [anon_sym_LPAREN] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(1769), + [anon_sym_DASH_DASH] = ACTIONS(1771), + [anon_sym_DASH] = ACTIONS(1769), + [anon_sym_LBRACE] = ACTIONS(1771), + [anon_sym_DOT_DOT] = ACTIONS(1769), + [anon_sym_LPAREN2] = ACTIONS(1771), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1771), + [anon_sym_DOT_DOT_LT] = ACTIONS(1771), + [aux_sym__val_number_decimal_token1] = ACTIONS(1769), + [aux_sym__val_number_decimal_token2] = ACTIONS(1771), + [aux_sym__val_number_decimal_token3] = ACTIONS(1771), + [aux_sym__val_number_decimal_token4] = ACTIONS(1771), + [aux_sym__val_number_token1] = ACTIONS(1771), + [aux_sym__val_number_token2] = ACTIONS(1771), + [aux_sym__val_number_token3] = ACTIONS(1771), + [anon_sym_0b] = ACTIONS(1769), + [anon_sym_0o] = ACTIONS(1769), + [anon_sym_0x] = ACTIONS(1769), + [sym_val_date] = ACTIONS(1771), + [anon_sym_DQUOTE] = ACTIONS(1771), + [sym__str_single_quotes] = ACTIONS(1771), + [sym__str_back_ticks] = ACTIONS(1771), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1771), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1771), + [anon_sym_err_GT] = ACTIONS(1769), + [anon_sym_out_GT] = ACTIONS(1769), + [anon_sym_e_GT] = ACTIONS(1769), + [anon_sym_o_GT] = ACTIONS(1769), + [anon_sym_err_PLUSout_GT] = ACTIONS(1769), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1769), + [anon_sym_o_PLUSe_GT] = ACTIONS(1769), + [anon_sym_e_PLUSo_GT] = ACTIONS(1769), + [anon_sym_err_GT_GT] = ACTIONS(1771), + [anon_sym_out_GT_GT] = ACTIONS(1771), + [anon_sym_e_GT_GT] = ACTIONS(1771), + [anon_sym_o_GT_GT] = ACTIONS(1771), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1771), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1771), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1771), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1771), + [aux_sym_unquoted_token1] = ACTIONS(1769), + [aux_sym_unquoted_token2] = ACTIONS(1769), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1771), + }, + [1508] = { + [sym_comment] = STATE(1508), + [aux_sym_cmd_identifier_token41] = ACTIONS(1711), + [sym__newline] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_err_GT_PIPE] = ACTIONS(1713), + [anon_sym_out_GT_PIPE] = ACTIONS(1713), + [anon_sym_e_GT_PIPE] = ACTIONS(1713), + [anon_sym_o_GT_PIPE] = ACTIONS(1713), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), + [anon_sym_RPAREN] = ACTIONS(1713), + [anon_sym_RBRACE] = ACTIONS(1713), + [aux_sym_expr_binary_token1] = ACTIONS(1713), + [aux_sym_expr_binary_token2] = ACTIONS(1713), + [aux_sym_expr_binary_token3] = ACTIONS(1713), + [aux_sym_expr_binary_token4] = ACTIONS(1713), + [aux_sym_expr_binary_token5] = ACTIONS(1713), + [aux_sym_expr_binary_token6] = ACTIONS(1713), + [aux_sym_expr_binary_token7] = ACTIONS(1713), + [aux_sym_expr_binary_token8] = ACTIONS(1713), + [aux_sym_expr_binary_token9] = ACTIONS(1713), + [aux_sym_expr_binary_token10] = ACTIONS(1713), + [aux_sym_expr_binary_token11] = ACTIONS(1713), + [aux_sym_expr_binary_token12] = ACTIONS(1713), + [aux_sym_expr_binary_token13] = ACTIONS(1713), + [aux_sym_expr_binary_token14] = ACTIONS(1713), + [aux_sym_expr_binary_token15] = ACTIONS(1713), + [aux_sym_expr_binary_token16] = ACTIONS(1713), + [aux_sym_expr_binary_token17] = ACTIONS(1713), + [aux_sym_expr_binary_token18] = ACTIONS(1713), + [aux_sym_expr_binary_token19] = ACTIONS(1713), + [aux_sym_expr_binary_token20] = ACTIONS(1713), + [aux_sym_expr_binary_token21] = ACTIONS(1713), + [aux_sym_expr_binary_token22] = ACTIONS(1713), + [aux_sym_expr_binary_token23] = ACTIONS(1713), + [aux_sym_expr_binary_token24] = ACTIONS(1713), + [aux_sym_expr_binary_token25] = ACTIONS(1713), + [aux_sym_expr_binary_token26] = ACTIONS(1713), + [aux_sym_expr_binary_token27] = ACTIONS(1713), + [aux_sym_expr_binary_token28] = ACTIONS(1713), + [anon_sym_DOT_DOT2] = ACTIONS(1711), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), + [sym_filesize_unit] = ACTIONS(1713), + [sym_duration_unit] = ACTIONS(1713), + [anon_sym_err_GT] = ACTIONS(1711), + [anon_sym_out_GT] = ACTIONS(1711), + [anon_sym_e_GT] = ACTIONS(1711), + [anon_sym_o_GT] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT] = ACTIONS(1711), + [anon_sym_err_GT_GT] = ACTIONS(1713), + [anon_sym_out_GT_GT] = ACTIONS(1713), + [anon_sym_e_GT_GT] = ACTIONS(1713), + [anon_sym_o_GT_GT] = ACTIONS(1713), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), + [anon_sym_POUND] = ACTIONS(249), + }, + [1509] = { + [sym_comment] = STATE(1509), + [anon_sym_true] = ACTIONS(2289), + [anon_sym_false] = ACTIONS(2289), + [anon_sym_null] = ACTIONS(2289), + [aux_sym_cmd_identifier_token38] = ACTIONS(2289), + [aux_sym_cmd_identifier_token39] = ACTIONS(2289), + [aux_sym_cmd_identifier_token40] = ACTIONS(2289), + [sym__newline] = ACTIONS(2291), + [anon_sym_SEMI] = ACTIONS(2291), + [anon_sym_PIPE] = ACTIONS(2291), + [anon_sym_err_GT_PIPE] = ACTIONS(2291), + [anon_sym_out_GT_PIPE] = ACTIONS(2291), + [anon_sym_e_GT_PIPE] = ACTIONS(2291), + [anon_sym_o_GT_PIPE] = ACTIONS(2291), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2291), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2291), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2291), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2291), + [anon_sym_LBRACK] = ACTIONS(2291), + [anon_sym_LPAREN] = ACTIONS(2291), + [anon_sym_RPAREN] = ACTIONS(2291), + [anon_sym_DOLLAR] = ACTIONS(2289), + [anon_sym_DASH_DASH] = ACTIONS(2289), + [anon_sym_DASH] = ACTIONS(2289), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_RBRACE] = ACTIONS(2291), + [anon_sym_DOT_DOT] = ACTIONS(2289), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2289), + [anon_sym_DOT_DOT_LT] = ACTIONS(2289), + [aux_sym__val_number_decimal_token1] = ACTIONS(2289), + [aux_sym__val_number_decimal_token2] = ACTIONS(2289), + [aux_sym__val_number_decimal_token3] = ACTIONS(2289), + [aux_sym__val_number_decimal_token4] = ACTIONS(2289), + [aux_sym__val_number_token1] = ACTIONS(2289), + [aux_sym__val_number_token2] = ACTIONS(2289), + [aux_sym__val_number_token3] = ACTIONS(2289), + [anon_sym_0b] = ACTIONS(2289), + [anon_sym_0o] = ACTIONS(2289), + [anon_sym_0x] = ACTIONS(2289), + [sym_val_date] = ACTIONS(2289), + [anon_sym_DQUOTE] = ACTIONS(2291), + [sym__str_single_quotes] = ACTIONS(2291), + [sym__str_back_ticks] = ACTIONS(2291), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2291), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2291), + [anon_sym_err_GT] = ACTIONS(2289), + [anon_sym_out_GT] = ACTIONS(2289), + [anon_sym_e_GT] = ACTIONS(2289), + [anon_sym_o_GT] = ACTIONS(2289), + [anon_sym_err_PLUSout_GT] = ACTIONS(2289), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2289), + [anon_sym_o_PLUSe_GT] = ACTIONS(2289), + [anon_sym_e_PLUSo_GT] = ACTIONS(2289), + [anon_sym_err_GT_GT] = ACTIONS(2289), + [anon_sym_out_GT_GT] = ACTIONS(2289), + [anon_sym_e_GT_GT] = ACTIONS(2289), + [anon_sym_o_GT_GT] = ACTIONS(2289), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2289), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2289), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2289), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2289), + [aux_sym_unquoted_token1] = ACTIONS(2289), + [aux_sym_unquoted_token4] = ACTIONS(2289), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2291), + }, + [1510] = { + [sym_comment] = STATE(1510), + [aux_sym_cmd_identifier_token41] = ACTIONS(1528), + [sym__newline] = ACTIONS(1528), + [anon_sym_SEMI] = ACTIONS(1530), + [anon_sym_PIPE] = ACTIONS(1530), + [anon_sym_err_GT_PIPE] = ACTIONS(1530), + [anon_sym_out_GT_PIPE] = ACTIONS(1530), + [anon_sym_e_GT_PIPE] = ACTIONS(1530), + [anon_sym_o_GT_PIPE] = ACTIONS(1530), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1530), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1530), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1530), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1530), + [anon_sym_RPAREN] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1530), + [anon_sym_DOT_DOT2] = ACTIONS(1528), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1530), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1530), + [sym_filesize_unit] = ACTIONS(1530), + [sym_duration_unit] = ACTIONS(1530), + [anon_sym_err_GT] = ACTIONS(1528), + [anon_sym_out_GT] = ACTIONS(1528), + [anon_sym_e_GT] = ACTIONS(1528), + [anon_sym_o_GT] = ACTIONS(1528), + [anon_sym_err_PLUSout_GT] = ACTIONS(1528), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), + [anon_sym_o_PLUSe_GT] = ACTIONS(1528), + [anon_sym_e_PLUSo_GT] = ACTIONS(1528), + [anon_sym_err_GT_GT] = ACTIONS(1530), + [anon_sym_out_GT_GT] = ACTIONS(1530), + [anon_sym_e_GT_GT] = ACTIONS(1530), + [anon_sym_o_GT_GT] = ACTIONS(1530), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1530), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1530), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1530), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1530), + [anon_sym_POUND] = ACTIONS(249), + }, + [1511] = { + [sym_cmd_identifier] = STATE(6296), + [sym__command_name] = STATE(7162), + [sym_scope_pattern] = STATE(7147), + [sym_command_list] = STATE(6988), + [sym__val_number_decimal] = STATE(6981), + [sym_val_string] = STATE(6299), + [sym__raw_str] = STATE(2065), + [sym__str_double_quotes] = STATE(2065), + [sym_comment] = STATE(1511), + [ts_builtin_sym_end] = ACTIONS(4935), + [aux_sym_cmd_identifier_token1] = ACTIONS(4961), + [aux_sym_cmd_identifier_token2] = ACTIONS(4963), + [aux_sym_cmd_identifier_token3] = ACTIONS(4963), + [aux_sym_cmd_identifier_token4] = ACTIONS(4963), + [aux_sym_cmd_identifier_token5] = ACTIONS(4963), + [aux_sym_cmd_identifier_token6] = ACTIONS(4963), + [aux_sym_cmd_identifier_token7] = ACTIONS(4963), + [aux_sym_cmd_identifier_token8] = ACTIONS(4963), + [aux_sym_cmd_identifier_token9] = ACTIONS(4961), + [aux_sym_cmd_identifier_token10] = ACTIONS(4963), + [aux_sym_cmd_identifier_token11] = ACTIONS(4963), + [aux_sym_cmd_identifier_token12] = ACTIONS(4963), + [aux_sym_cmd_identifier_token13] = ACTIONS(4961), + [aux_sym_cmd_identifier_token14] = ACTIONS(4963), + [aux_sym_cmd_identifier_token15] = ACTIONS(4961), + [aux_sym_cmd_identifier_token16] = ACTIONS(4963), + [aux_sym_cmd_identifier_token17] = ACTIONS(4963), + [aux_sym_cmd_identifier_token18] = ACTIONS(4963), + [aux_sym_cmd_identifier_token19] = ACTIONS(4963), + [aux_sym_cmd_identifier_token20] = ACTIONS(4963), + [aux_sym_cmd_identifier_token21] = ACTIONS(4963), + [aux_sym_cmd_identifier_token22] = ACTIONS(4963), + [aux_sym_cmd_identifier_token23] = ACTIONS(4963), + [aux_sym_cmd_identifier_token24] = ACTIONS(4963), + [aux_sym_cmd_identifier_token25] = ACTIONS(4963), + [aux_sym_cmd_identifier_token26] = ACTIONS(4963), + [aux_sym_cmd_identifier_token27] = ACTIONS(4963), + [aux_sym_cmd_identifier_token28] = ACTIONS(4963), + [aux_sym_cmd_identifier_token29] = ACTIONS(4963), + [aux_sym_cmd_identifier_token30] = ACTIONS(4963), + [aux_sym_cmd_identifier_token31] = ACTIONS(4963), + [aux_sym_cmd_identifier_token32] = ACTIONS(4963), + [aux_sym_cmd_identifier_token33] = ACTIONS(4963), + [aux_sym_cmd_identifier_token34] = ACTIONS(4963), + [aux_sym_cmd_identifier_token35] = ACTIONS(4963), + [aux_sym_cmd_identifier_token36] = ACTIONS(4961), + [anon_sym_true] = ACTIONS(4965), + [anon_sym_false] = ACTIONS(4965), + [anon_sym_null] = ACTIONS(4965), + [aux_sym_cmd_identifier_token38] = ACTIONS(4967), + [aux_sym_cmd_identifier_token39] = ACTIONS(4965), + [aux_sym_cmd_identifier_token40] = ACTIONS(4965), + [sym__newline] = ACTIONS(4935), + [anon_sym_SEMI] = ACTIONS(4935), + [anon_sym_LBRACK] = ACTIONS(4969), + [sym_wild_card] = ACTIONS(4971), + [aux_sym__val_number_decimal_token1] = ACTIONS(1343), + [aux_sym__val_number_decimal_token2] = ACTIONS(1343), + [aux_sym__val_number_decimal_token3] = ACTIONS(1345), + [aux_sym__val_number_decimal_token4] = ACTIONS(1347), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(123), + }, + [1512] = { + [sym_cell_path] = STATE(2009), + [sym_path] = STATE(1299), + [sym_comment] = STATE(1512), + [aux_sym_cell_path_repeat1] = STATE(1225), + [ts_builtin_sym_end] = ACTIONS(1668), + [sym__newline] = ACTIONS(1668), + [anon_sym_SEMI] = ACTIONS(1668), + [anon_sym_PIPE] = ACTIONS(1668), + [anon_sym_err_GT_PIPE] = ACTIONS(1668), + [anon_sym_out_GT_PIPE] = ACTIONS(1668), + [anon_sym_e_GT_PIPE] = ACTIONS(1668), + [anon_sym_o_GT_PIPE] = ACTIONS(1668), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1668), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1668), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1668), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1668), + [aux_sym_expr_binary_token1] = ACTIONS(1668), + [aux_sym_expr_binary_token2] = ACTIONS(1668), + [aux_sym_expr_binary_token3] = ACTIONS(1668), + [aux_sym_expr_binary_token4] = ACTIONS(1668), + [aux_sym_expr_binary_token5] = ACTIONS(1668), + [aux_sym_expr_binary_token6] = ACTIONS(1668), + [aux_sym_expr_binary_token7] = ACTIONS(1668), + [aux_sym_expr_binary_token8] = ACTIONS(1668), + [aux_sym_expr_binary_token9] = ACTIONS(1668), + [aux_sym_expr_binary_token10] = ACTIONS(1668), + [aux_sym_expr_binary_token11] = ACTIONS(1668), + [aux_sym_expr_binary_token12] = ACTIONS(1668), + [aux_sym_expr_binary_token13] = ACTIONS(1668), + [aux_sym_expr_binary_token14] = ACTIONS(1668), + [aux_sym_expr_binary_token15] = ACTIONS(1668), + [aux_sym_expr_binary_token16] = ACTIONS(1668), + [aux_sym_expr_binary_token17] = ACTIONS(1668), + [aux_sym_expr_binary_token18] = ACTIONS(1668), + [aux_sym_expr_binary_token19] = ACTIONS(1668), + [aux_sym_expr_binary_token20] = ACTIONS(1668), + [aux_sym_expr_binary_token21] = ACTIONS(1668), + [aux_sym_expr_binary_token22] = ACTIONS(1668), + [aux_sym_expr_binary_token23] = ACTIONS(1668), + [aux_sym_expr_binary_token24] = ACTIONS(1668), + [aux_sym_expr_binary_token25] = ACTIONS(1668), + [aux_sym_expr_binary_token26] = ACTIONS(1668), + [aux_sym_expr_binary_token27] = ACTIONS(1668), + [aux_sym_expr_binary_token28] = ACTIONS(1668), + [anon_sym_DOT_DOT2] = ACTIONS(1664), + [anon_sym_DOT] = ACTIONS(4494), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1668), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1668), + [anon_sym_err_GT] = ACTIONS(1664), + [anon_sym_out_GT] = ACTIONS(1664), + [anon_sym_e_GT] = ACTIONS(1664), + [anon_sym_o_GT] = ACTIONS(1664), + [anon_sym_err_PLUSout_GT] = ACTIONS(1664), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1664), + [anon_sym_o_PLUSe_GT] = ACTIONS(1664), + [anon_sym_e_PLUSo_GT] = ACTIONS(1664), + [anon_sym_err_GT_GT] = ACTIONS(1668), + [anon_sym_out_GT_GT] = ACTIONS(1668), + [anon_sym_e_GT_GT] = ACTIONS(1668), + [anon_sym_o_GT_GT] = ACTIONS(1668), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1668), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1668), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1668), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1668), + [anon_sym_POUND] = ACTIONS(249), + }, + [1513] = { + [sym_comment] = STATE(1513), + [ts_builtin_sym_end] = ACTIONS(1828), + [anon_sym_true] = ACTIONS(1828), + [anon_sym_false] = ACTIONS(1828), + [anon_sym_null] = ACTIONS(1828), + [aux_sym_cmd_identifier_token38] = ACTIONS(1828), + [aux_sym_cmd_identifier_token39] = ACTIONS(1828), + [aux_sym_cmd_identifier_token40] = ACTIONS(1828), + [sym__newline] = ACTIONS(1828), + [anon_sym_SEMI] = ACTIONS(1828), + [anon_sym_PIPE] = ACTIONS(1828), + [anon_sym_err_GT_PIPE] = ACTIONS(1828), + [anon_sym_out_GT_PIPE] = ACTIONS(1828), + [anon_sym_e_GT_PIPE] = ACTIONS(1828), + [anon_sym_o_GT_PIPE] = ACTIONS(1828), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1828), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1828), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1828), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1828), + [anon_sym_LBRACK] = ACTIONS(1828), + [anon_sym_LPAREN] = ACTIONS(1826), + [anon_sym_DOLLAR] = ACTIONS(1826), + [anon_sym_DASH_DASH] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_LBRACE] = ACTIONS(1828), + [anon_sym_DOT_DOT] = ACTIONS(1826), + [anon_sym_LPAREN2] = ACTIONS(1828), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1828), + [anon_sym_DOT_DOT_LT] = ACTIONS(1828), + [aux_sym__val_number_decimal_token1] = ACTIONS(1826), + [aux_sym__val_number_decimal_token2] = ACTIONS(1828), + [aux_sym__val_number_decimal_token3] = ACTIONS(1828), + [aux_sym__val_number_decimal_token4] = ACTIONS(1828), + [aux_sym__val_number_token1] = ACTIONS(1828), + [aux_sym__val_number_token2] = ACTIONS(1828), + [aux_sym__val_number_token3] = ACTIONS(1828), + [anon_sym_0b] = ACTIONS(1826), + [anon_sym_0o] = ACTIONS(1826), + [anon_sym_0x] = ACTIONS(1826), + [sym_val_date] = ACTIONS(1828), + [anon_sym_DQUOTE] = ACTIONS(1828), + [sym__str_single_quotes] = ACTIONS(1828), + [sym__str_back_ticks] = ACTIONS(1828), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1828), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1828), + [anon_sym_err_GT] = ACTIONS(1826), + [anon_sym_out_GT] = ACTIONS(1826), + [anon_sym_e_GT] = ACTIONS(1826), + [anon_sym_o_GT] = ACTIONS(1826), + [anon_sym_err_PLUSout_GT] = ACTIONS(1826), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1826), + [anon_sym_o_PLUSe_GT] = ACTIONS(1826), + [anon_sym_e_PLUSo_GT] = ACTIONS(1826), + [anon_sym_err_GT_GT] = ACTIONS(1828), + [anon_sym_out_GT_GT] = ACTIONS(1828), + [anon_sym_e_GT_GT] = ACTIONS(1828), + [anon_sym_o_GT_GT] = ACTIONS(1828), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1828), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1828), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1828), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1828), + [aux_sym_unquoted_token1] = ACTIONS(1826), + [aux_sym_unquoted_token2] = ACTIONS(1826), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1828), + }, + [1514] = { + [sym_comment] = STATE(1514), + [anon_sym_true] = ACTIONS(1090), + [anon_sym_false] = ACTIONS(1090), + [anon_sym_null] = ACTIONS(1090), + [aux_sym_cmd_identifier_token38] = ACTIONS(1090), + [aux_sym_cmd_identifier_token39] = ACTIONS(1090), + [aux_sym_cmd_identifier_token40] = ACTIONS(1090), + [sym__newline] = ACTIONS(1092), + [anon_sym_SEMI] = ACTIONS(1092), + [anon_sym_PIPE] = ACTIONS(1092), + [anon_sym_err_GT_PIPE] = ACTIONS(1092), + [anon_sym_out_GT_PIPE] = ACTIONS(1092), + [anon_sym_e_GT_PIPE] = ACTIONS(1092), + [anon_sym_o_GT_PIPE] = ACTIONS(1092), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1092), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1092), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1092), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1092), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_LPAREN] = ACTIONS(1092), + [anon_sym_RPAREN] = ACTIONS(1092), + [anon_sym_DOLLAR] = ACTIONS(1090), + [anon_sym_DASH_DASH] = ACTIONS(1090), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_LBRACE] = ACTIONS(1092), + [anon_sym_RBRACE] = ACTIONS(1092), + [anon_sym_DOT_DOT] = ACTIONS(1090), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1090), + [anon_sym_DOT_DOT_LT] = ACTIONS(1090), + [aux_sym__val_number_decimal_token1] = ACTIONS(1090), + [aux_sym__val_number_decimal_token2] = ACTIONS(1090), + [aux_sym__val_number_decimal_token3] = ACTIONS(1090), + [aux_sym__val_number_decimal_token4] = ACTIONS(1090), + [aux_sym__val_number_token1] = ACTIONS(1090), + [aux_sym__val_number_token2] = ACTIONS(1090), + [aux_sym__val_number_token3] = ACTIONS(1090), + [anon_sym_0b] = ACTIONS(1090), + [anon_sym_0o] = ACTIONS(1090), + [anon_sym_0x] = ACTIONS(1090), + [sym_val_date] = ACTIONS(1090), + [anon_sym_DQUOTE] = ACTIONS(1092), + [sym__str_single_quotes] = ACTIONS(1092), + [sym__str_back_ticks] = ACTIONS(1092), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1092), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1092), + [anon_sym_err_GT] = ACTIONS(1090), + [anon_sym_out_GT] = ACTIONS(1090), + [anon_sym_e_GT] = ACTIONS(1090), + [anon_sym_o_GT] = ACTIONS(1090), + [anon_sym_err_PLUSout_GT] = ACTIONS(1090), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1090), + [anon_sym_o_PLUSe_GT] = ACTIONS(1090), + [anon_sym_e_PLUSo_GT] = ACTIONS(1090), + [anon_sym_err_GT_GT] = ACTIONS(1090), + [anon_sym_out_GT_GT] = ACTIONS(1090), + [anon_sym_e_GT_GT] = ACTIONS(1090), + [anon_sym_o_GT_GT] = ACTIONS(1090), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1090), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1090), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1090), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1090), + [aux_sym_unquoted_token1] = ACTIONS(1090), + [aux_sym_unquoted_token4] = ACTIONS(2275), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1092), + }, + [1515] = { + [sym_comment] = STATE(1515), + [aux_sym_cmd_identifier_token41] = ACTIONS(1596), + [sym__newline] = ACTIONS(1596), + [anon_sym_SEMI] = ACTIONS(1598), + [anon_sym_PIPE] = ACTIONS(1598), + [anon_sym_err_GT_PIPE] = ACTIONS(1598), + [anon_sym_out_GT_PIPE] = ACTIONS(1598), + [anon_sym_e_GT_PIPE] = ACTIONS(1598), + [anon_sym_o_GT_PIPE] = ACTIONS(1598), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1598), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1598), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1598), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1598), + [anon_sym_RPAREN] = ACTIONS(1598), + [anon_sym_LBRACE] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1598), + [anon_sym_DOT_DOT2] = ACTIONS(1596), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1598), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1598), + [sym_filesize_unit] = ACTIONS(1598), + [sym_duration_unit] = ACTIONS(1598), + [anon_sym_err_GT] = ACTIONS(1596), + [anon_sym_out_GT] = ACTIONS(1596), + [anon_sym_e_GT] = ACTIONS(1596), + [anon_sym_o_GT] = ACTIONS(1596), + [anon_sym_err_PLUSout_GT] = ACTIONS(1596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1596), + [anon_sym_o_PLUSe_GT] = ACTIONS(1596), + [anon_sym_e_PLUSo_GT] = ACTIONS(1596), + [anon_sym_err_GT_GT] = ACTIONS(1598), + [anon_sym_out_GT_GT] = ACTIONS(1598), + [anon_sym_e_GT_GT] = ACTIONS(1598), + [anon_sym_o_GT_GT] = ACTIONS(1598), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1598), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1598), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1598), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1598), + [anon_sym_POUND] = ACTIONS(249), + }, + [1516] = { + [sym_comment] = STATE(1516), + [ts_builtin_sym_end] = ACTIONS(2339), + [anon_sym_true] = ACTIONS(2339), + [anon_sym_false] = ACTIONS(2339), + [anon_sym_null] = ACTIONS(2339), + [aux_sym_cmd_identifier_token38] = ACTIONS(2339), + [aux_sym_cmd_identifier_token39] = ACTIONS(2339), + [aux_sym_cmd_identifier_token40] = ACTIONS(2339), + [sym__newline] = ACTIONS(2339), + [anon_sym_SEMI] = ACTIONS(2339), + [anon_sym_PIPE] = ACTIONS(2339), + [anon_sym_err_GT_PIPE] = ACTIONS(2339), + [anon_sym_out_GT_PIPE] = ACTIONS(2339), + [anon_sym_e_GT_PIPE] = ACTIONS(2339), + [anon_sym_o_GT_PIPE] = ACTIONS(2339), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2339), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2339), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2339), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2339), + [anon_sym_LBRACK] = ACTIONS(2339), + [anon_sym_LPAREN] = ACTIONS(2335), + [anon_sym_DOLLAR] = ACTIONS(2335), + [anon_sym_DASH_DASH] = ACTIONS(2339), + [anon_sym_DASH] = ACTIONS(2335), + [anon_sym_LBRACE] = ACTIONS(2339), + [anon_sym_DOT_DOT] = ACTIONS(2335), + [anon_sym_LPAREN2] = ACTIONS(2337), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2339), + [anon_sym_DOT_DOT_LT] = ACTIONS(2339), + [aux_sym__val_number_decimal_token1] = ACTIONS(2335), + [aux_sym__val_number_decimal_token2] = ACTIONS(2339), + [aux_sym__val_number_decimal_token3] = ACTIONS(2339), + [aux_sym__val_number_decimal_token4] = ACTIONS(2339), + [aux_sym__val_number_token1] = ACTIONS(2339), + [aux_sym__val_number_token2] = ACTIONS(2339), + [aux_sym__val_number_token3] = ACTIONS(2339), + [anon_sym_0b] = ACTIONS(2335), + [anon_sym_0o] = ACTIONS(2335), + [anon_sym_0x] = ACTIONS(2335), + [sym_val_date] = ACTIONS(2339), + [anon_sym_DQUOTE] = ACTIONS(2339), + [sym__str_single_quotes] = ACTIONS(2339), + [sym__str_back_ticks] = ACTIONS(2339), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2339), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2339), + [anon_sym_err_GT] = ACTIONS(2335), + [anon_sym_out_GT] = ACTIONS(2335), + [anon_sym_e_GT] = ACTIONS(2335), + [anon_sym_o_GT] = ACTIONS(2335), + [anon_sym_err_PLUSout_GT] = ACTIONS(2335), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2335), + [anon_sym_o_PLUSe_GT] = ACTIONS(2335), + [anon_sym_e_PLUSo_GT] = ACTIONS(2335), + [anon_sym_err_GT_GT] = ACTIONS(2339), + [anon_sym_out_GT_GT] = ACTIONS(2339), + [anon_sym_e_GT_GT] = ACTIONS(2339), + [anon_sym_o_GT_GT] = ACTIONS(2339), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2339), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2339), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2339), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2339), + [aux_sym_unquoted_token1] = ACTIONS(2335), + [aux_sym_unquoted_token2] = ACTIONS(1558), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2339), + }, + [1517] = { + [sym__expression] = STATE(5678), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3895), + [sym_expr_parenthesized] = STATE(3543), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(3542), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(3503), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym__flag] = STATE(2067), + [sym_short_flag] = STATE(3610), + [sym_long_flag] = STATE(3610), + [sym_comment] = STATE(1517), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [aux_sym_cmd_identifier_token38] = ACTIONS(227), + [aux_sym_cmd_identifier_token39] = ACTIONS(227), + [aux_sym_cmd_identifier_token40] = ACTIONS(227), + [anon_sym_LBRACK] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(4973), + [anon_sym_DOLLAR] = ACTIONS(4975), + [anon_sym_DASH_DASH] = ACTIONS(4977), + [anon_sym_DASH] = ACTIONS(4979), + [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_DOT_DOT] = ACTIONS(4981), + [aux_sym_expr_unary_token1] = ACTIONS(3412), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4983), + [anon_sym_DOT_DOT_LT] = ACTIONS(4983), + [aux_sym__val_number_decimal_token1] = ACTIONS(3414), + [aux_sym__val_number_decimal_token2] = ACTIONS(3416), + [aux_sym__val_number_decimal_token3] = ACTIONS(3418), + [aux_sym__val_number_decimal_token4] = ACTIONS(3420), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), + }, + [1518] = { + [sym_comment] = STATE(1518), + [ts_builtin_sym_end] = ACTIONS(2250), + [anon_sym_true] = ACTIONS(2250), + [anon_sym_false] = ACTIONS(2250), + [anon_sym_null] = ACTIONS(2250), + [aux_sym_cmd_identifier_token38] = ACTIONS(2250), + [aux_sym_cmd_identifier_token39] = ACTIONS(2250), + [aux_sym_cmd_identifier_token40] = ACTIONS(2250), + [sym__newline] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(2250), + [anon_sym_PIPE] = ACTIONS(2250), + [anon_sym_err_GT_PIPE] = ACTIONS(2250), + [anon_sym_out_GT_PIPE] = ACTIONS(2250), + [anon_sym_e_GT_PIPE] = ACTIONS(2250), + [anon_sym_o_GT_PIPE] = ACTIONS(2250), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2250), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2250), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2250), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2250), + [anon_sym_LBRACK] = ACTIONS(2250), + [anon_sym_LPAREN] = ACTIONS(2246), + [anon_sym_DOLLAR] = ACTIONS(2246), + [anon_sym_DASH_DASH] = ACTIONS(2250), + [anon_sym_DASH] = ACTIONS(2246), + [anon_sym_LBRACE] = ACTIONS(2250), + [anon_sym_DOT_DOT] = ACTIONS(2246), + [anon_sym_LPAREN2] = ACTIONS(2248), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2250), + [anon_sym_DOT_DOT_LT] = ACTIONS(2250), + [aux_sym__val_number_decimal_token1] = ACTIONS(2246), + [aux_sym__val_number_decimal_token2] = ACTIONS(2250), + [aux_sym__val_number_decimal_token3] = ACTIONS(2250), + [aux_sym__val_number_decimal_token4] = ACTIONS(2250), + [aux_sym__val_number_token1] = ACTIONS(2250), + [aux_sym__val_number_token2] = ACTIONS(2250), + [aux_sym__val_number_token3] = ACTIONS(2250), + [anon_sym_0b] = ACTIONS(2246), + [anon_sym_0o] = ACTIONS(2246), + [anon_sym_0x] = ACTIONS(2246), + [sym_val_date] = ACTIONS(2250), + [anon_sym_DQUOTE] = ACTIONS(2250), + [sym__str_single_quotes] = ACTIONS(2250), + [sym__str_back_ticks] = ACTIONS(2250), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2250), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2250), + [anon_sym_err_GT] = ACTIONS(2246), + [anon_sym_out_GT] = ACTIONS(2246), + [anon_sym_e_GT] = ACTIONS(2246), + [anon_sym_o_GT] = ACTIONS(2246), + [anon_sym_err_PLUSout_GT] = ACTIONS(2246), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2246), + [anon_sym_o_PLUSe_GT] = ACTIONS(2246), + [anon_sym_e_PLUSo_GT] = ACTIONS(2246), + [anon_sym_err_GT_GT] = ACTIONS(2250), + [anon_sym_out_GT_GT] = ACTIONS(2250), + [anon_sym_e_GT_GT] = ACTIONS(2250), + [anon_sym_o_GT_GT] = ACTIONS(2250), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2250), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2250), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2250), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2250), + [aux_sym_unquoted_token1] = ACTIONS(2246), + [aux_sym_unquoted_token2] = ACTIONS(2252), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2250), + }, + [1519] = { + [sym_comment] = STATE(1519), + [anon_sym_true] = ACTIONS(4985), + [anon_sym_false] = ACTIONS(4985), + [anon_sym_null] = ACTIONS(4985), + [aux_sym_cmd_identifier_token38] = ACTIONS(4985), + [aux_sym_cmd_identifier_token39] = ACTIONS(4985), + [aux_sym_cmd_identifier_token40] = ACTIONS(4985), + [sym__newline] = ACTIONS(4985), + [anon_sym_SEMI] = ACTIONS(4985), + [anon_sym_PIPE] = ACTIONS(4985), + [anon_sym_err_GT_PIPE] = ACTIONS(4985), + [anon_sym_out_GT_PIPE] = ACTIONS(4985), + [anon_sym_e_GT_PIPE] = ACTIONS(4985), + [anon_sym_o_GT_PIPE] = ACTIONS(4985), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4985), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4985), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4985), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4985), + [anon_sym_LBRACK] = ACTIONS(4985), + [anon_sym_LPAREN] = ACTIONS(4987), + [anon_sym_RPAREN] = ACTIONS(4985), + [anon_sym_DOLLAR] = ACTIONS(4987), + [anon_sym_DASH_DASH] = ACTIONS(4985), + [anon_sym_DASH] = ACTIONS(4987), + [anon_sym_LBRACE] = ACTIONS(4985), + [anon_sym_RBRACE] = ACTIONS(4985), + [anon_sym_DOT_DOT] = ACTIONS(4987), + [anon_sym_LPAREN2] = ACTIONS(4985), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4985), + [anon_sym_DOT_DOT_LT] = ACTIONS(4985), + [aux_sym__val_number_decimal_token1] = ACTIONS(4987), + [aux_sym__val_number_decimal_token2] = ACTIONS(4985), + [aux_sym__val_number_decimal_token3] = ACTIONS(4985), + [aux_sym__val_number_decimal_token4] = ACTIONS(4985), + [aux_sym__val_number_token1] = ACTIONS(4985), + [aux_sym__val_number_token2] = ACTIONS(4985), + [aux_sym__val_number_token3] = ACTIONS(4985), + [anon_sym_0b] = ACTIONS(4987), + [anon_sym_0o] = ACTIONS(4987), + [anon_sym_0x] = ACTIONS(4987), + [sym_val_date] = ACTIONS(4985), + [anon_sym_DQUOTE] = ACTIONS(4985), + [sym__str_single_quotes] = ACTIONS(4985), + [sym__str_back_ticks] = ACTIONS(4985), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4985), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4985), + [anon_sym_err_GT] = ACTIONS(4987), + [anon_sym_out_GT] = ACTIONS(4987), + [anon_sym_e_GT] = ACTIONS(4987), + [anon_sym_o_GT] = ACTIONS(4987), + [anon_sym_err_PLUSout_GT] = ACTIONS(4987), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4987), + [anon_sym_o_PLUSe_GT] = ACTIONS(4987), + [anon_sym_e_PLUSo_GT] = ACTIONS(4987), + [anon_sym_err_GT_GT] = ACTIONS(4985), + [anon_sym_out_GT_GT] = ACTIONS(4985), + [anon_sym_e_GT_GT] = ACTIONS(4985), + [anon_sym_o_GT_GT] = ACTIONS(4985), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4985), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4985), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4985), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4985), + [aux_sym_unquoted_token1] = ACTIONS(4987), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(4985), + }, + [1520] = { + [sym_comment] = STATE(1520), + [aux_sym_cmd_identifier_token41] = ACTIONS(1711), + [sym__newline] = ACTIONS(1711), + [anon_sym_SEMI] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_err_GT_PIPE] = ACTIONS(1713), + [anon_sym_out_GT_PIPE] = ACTIONS(1713), + [anon_sym_e_GT_PIPE] = ACTIONS(1713), + [anon_sym_o_GT_PIPE] = ACTIONS(1713), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), + [anon_sym_RPAREN] = ACTIONS(1713), + [anon_sym_LBRACE] = ACTIONS(1713), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1713), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1713), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1713), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1713), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1713), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1713), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1713), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1713), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1713), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1713), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1713), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1713), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1713), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1713), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1713), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1713), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1713), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1713), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1713), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1713), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1713), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1713), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1713), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1713), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1713), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1713), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1713), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1713), + [anon_sym_DOT_DOT2] = ACTIONS(1711), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), + [sym_filesize_unit] = ACTIONS(1713), + [sym_duration_unit] = ACTIONS(1713), + [anon_sym_err_GT] = ACTIONS(1711), + [anon_sym_out_GT] = ACTIONS(1711), + [anon_sym_e_GT] = ACTIONS(1711), + [anon_sym_o_GT] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT] = ACTIONS(1711), + [anon_sym_err_GT_GT] = ACTIONS(1713), + [anon_sym_out_GT_GT] = ACTIONS(1713), + [anon_sym_e_GT_GT] = ACTIONS(1713), + [anon_sym_o_GT_GT] = ACTIONS(1713), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), + [anon_sym_POUND] = ACTIONS(249), + }, + [1521] = { + [sym_comment] = STATE(1521), + [anon_sym_true] = ACTIONS(4989), + [anon_sym_false] = ACTIONS(4989), + [anon_sym_null] = ACTIONS(4989), + [aux_sym_cmd_identifier_token38] = ACTIONS(4989), + [aux_sym_cmd_identifier_token39] = ACTIONS(4989), + [aux_sym_cmd_identifier_token40] = ACTIONS(4989), + [sym__newline] = ACTIONS(4989), + [anon_sym_SEMI] = ACTIONS(4989), + [anon_sym_PIPE] = ACTIONS(4989), + [anon_sym_err_GT_PIPE] = ACTIONS(4989), + [anon_sym_out_GT_PIPE] = ACTIONS(4989), + [anon_sym_e_GT_PIPE] = ACTIONS(4989), + [anon_sym_o_GT_PIPE] = ACTIONS(4989), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4989), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4989), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4989), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4989), + [anon_sym_LBRACK] = ACTIONS(4989), + [anon_sym_LPAREN] = ACTIONS(4989), + [anon_sym_RPAREN] = ACTIONS(4989), + [anon_sym_DOLLAR] = ACTIONS(4991), + [anon_sym_DASH_DASH] = ACTIONS(4989), + [anon_sym_DASH] = ACTIONS(4991), + [anon_sym_LBRACE] = ACTIONS(4989), + [anon_sym_RBRACE] = ACTIONS(4989), + [anon_sym_DOT_DOT] = ACTIONS(4991), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4989), + [anon_sym_DOT_DOT_LT] = ACTIONS(4989), + [aux_sym__val_number_decimal_token1] = ACTIONS(4991), + [aux_sym__val_number_decimal_token2] = ACTIONS(4989), + [aux_sym__val_number_decimal_token3] = ACTIONS(4989), + [aux_sym__val_number_decimal_token4] = ACTIONS(4989), + [aux_sym__val_number_token1] = ACTIONS(4989), + [aux_sym__val_number_token2] = ACTIONS(4989), + [aux_sym__val_number_token3] = ACTIONS(4989), + [anon_sym_0b] = ACTIONS(4991), + [anon_sym_0o] = ACTIONS(4991), + [anon_sym_0x] = ACTIONS(4991), + [sym_val_date] = ACTIONS(4989), + [anon_sym_DQUOTE] = ACTIONS(4989), + [sym__str_single_quotes] = ACTIONS(4989), + [sym__str_back_ticks] = ACTIONS(4989), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4989), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4989), + [anon_sym_err_GT] = ACTIONS(4991), + [anon_sym_out_GT] = ACTIONS(4991), + [anon_sym_e_GT] = ACTIONS(4991), + [anon_sym_o_GT] = ACTIONS(4991), + [anon_sym_err_PLUSout_GT] = ACTIONS(4991), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4991), + [anon_sym_o_PLUSe_GT] = ACTIONS(4991), + [anon_sym_e_PLUSo_GT] = ACTIONS(4991), + [anon_sym_err_GT_GT] = ACTIONS(4989), + [anon_sym_out_GT_GT] = ACTIONS(4989), + [anon_sym_e_GT_GT] = ACTIONS(4989), + [anon_sym_o_GT_GT] = ACTIONS(4989), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4989), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4989), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4989), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4989), + [anon_sym_EQ2] = ACTIONS(4993), + [aux_sym_unquoted_token1] = ACTIONS(4991), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(4989), + }, + [1522] = { + [sym_comment] = STATE(1522), + [anon_sym_true] = ACTIONS(4995), + [anon_sym_false] = ACTIONS(4995), + [anon_sym_null] = ACTIONS(4995), + [aux_sym_cmd_identifier_token38] = ACTIONS(4995), + [aux_sym_cmd_identifier_token39] = ACTIONS(4995), + [aux_sym_cmd_identifier_token40] = ACTIONS(4995), + [sym__newline] = ACTIONS(4995), + [anon_sym_SEMI] = ACTIONS(4995), + [anon_sym_PIPE] = ACTIONS(4995), + [anon_sym_err_GT_PIPE] = ACTIONS(4995), + [anon_sym_out_GT_PIPE] = ACTIONS(4995), + [anon_sym_e_GT_PIPE] = ACTIONS(4995), + [anon_sym_o_GT_PIPE] = ACTIONS(4995), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4995), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4995), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4995), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4995), + [anon_sym_LBRACK] = ACTIONS(4995), + [anon_sym_LPAREN] = ACTIONS(4997), + [anon_sym_RPAREN] = ACTIONS(4995), + [anon_sym_DOLLAR] = ACTIONS(4997), + [anon_sym_DASH_DASH] = ACTIONS(4995), + [anon_sym_DASH] = ACTIONS(4997), + [anon_sym_LBRACE] = ACTIONS(4995), + [anon_sym_RBRACE] = ACTIONS(4995), + [anon_sym_DOT_DOT] = ACTIONS(4997), + [anon_sym_LPAREN2] = ACTIONS(4995), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4995), + [anon_sym_DOT_DOT_LT] = ACTIONS(4995), + [aux_sym__val_number_decimal_token1] = ACTIONS(4997), + [aux_sym__val_number_decimal_token2] = ACTIONS(4995), + [aux_sym__val_number_decimal_token3] = ACTIONS(4995), + [aux_sym__val_number_decimal_token4] = ACTIONS(4995), + [aux_sym__val_number_token1] = ACTIONS(4995), + [aux_sym__val_number_token2] = ACTIONS(4995), + [aux_sym__val_number_token3] = ACTIONS(4995), + [anon_sym_0b] = ACTIONS(4997), + [anon_sym_0o] = ACTIONS(4997), + [anon_sym_0x] = ACTIONS(4997), + [sym_val_date] = ACTIONS(4995), + [anon_sym_DQUOTE] = ACTIONS(4995), + [sym__str_single_quotes] = ACTIONS(4995), + [sym__str_back_ticks] = ACTIONS(4995), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4995), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4995), + [anon_sym_err_GT] = ACTIONS(4997), + [anon_sym_out_GT] = ACTIONS(4997), + [anon_sym_e_GT] = ACTIONS(4997), + [anon_sym_o_GT] = ACTIONS(4997), + [anon_sym_err_PLUSout_GT] = ACTIONS(4997), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4997), + [anon_sym_o_PLUSe_GT] = ACTIONS(4997), + [anon_sym_e_PLUSo_GT] = ACTIONS(4997), + [anon_sym_err_GT_GT] = ACTIONS(4995), + [anon_sym_out_GT_GT] = ACTIONS(4995), + [anon_sym_e_GT_GT] = ACTIONS(4995), + [anon_sym_o_GT_GT] = ACTIONS(4995), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4995), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4995), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4995), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4995), + [aux_sym_unquoted_token1] = ACTIONS(4997), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(4995), + }, + [1523] = { + [sym_comment] = STATE(1523), + [anon_sym_true] = ACTIONS(2359), + [anon_sym_false] = ACTIONS(2359), + [anon_sym_null] = ACTIONS(2359), + [aux_sym_cmd_identifier_token38] = ACTIONS(2359), + [aux_sym_cmd_identifier_token39] = ACTIONS(2359), + [aux_sym_cmd_identifier_token40] = ACTIONS(2359), + [sym__newline] = ACTIONS(2359), + [anon_sym_SEMI] = ACTIONS(2359), + [anon_sym_PIPE] = ACTIONS(2359), + [anon_sym_err_GT_PIPE] = ACTIONS(2359), + [anon_sym_out_GT_PIPE] = ACTIONS(2359), + [anon_sym_e_GT_PIPE] = ACTIONS(2359), + [anon_sym_o_GT_PIPE] = ACTIONS(2359), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2359), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2359), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2359), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2359), + [anon_sym_LBRACK] = ACTIONS(2355), + [anon_sym_LPAREN] = ACTIONS(2359), + [anon_sym_RPAREN] = ACTIONS(2359), + [anon_sym_DOLLAR] = ACTIONS(2355), + [anon_sym_DASH_DASH] = ACTIONS(2359), + [anon_sym_DASH] = ACTIONS(2355), + [anon_sym_LBRACE] = ACTIONS(2359), + [anon_sym_RBRACE] = ACTIONS(2359), + [anon_sym_DOT_DOT] = ACTIONS(2355), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2359), + [anon_sym_DOT_DOT_LT] = ACTIONS(2359), + [aux_sym__val_number_decimal_token1] = ACTIONS(2355), + [aux_sym__val_number_decimal_token2] = ACTIONS(2359), + [aux_sym__val_number_decimal_token3] = ACTIONS(2359), + [aux_sym__val_number_decimal_token4] = ACTIONS(2359), + [aux_sym__val_number_token1] = ACTIONS(2359), + [aux_sym__val_number_token2] = ACTIONS(2359), + [aux_sym__val_number_token3] = ACTIONS(2359), + [anon_sym_0b] = ACTIONS(2355), + [anon_sym_0o] = ACTIONS(2355), + [anon_sym_0x] = ACTIONS(2355), + [anon_sym_LBRACK2] = ACTIONS(4999), + [sym_val_date] = ACTIONS(2359), + [anon_sym_DQUOTE] = ACTIONS(2359), + [sym__str_single_quotes] = ACTIONS(2359), + [sym__str_back_ticks] = ACTIONS(2359), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2359), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2359), + [anon_sym_err_GT] = ACTIONS(2355), + [anon_sym_out_GT] = ACTIONS(2355), + [anon_sym_e_GT] = ACTIONS(2355), + [anon_sym_o_GT] = ACTIONS(2355), + [anon_sym_err_PLUSout_GT] = ACTIONS(2355), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2355), + [anon_sym_o_PLUSe_GT] = ACTIONS(2355), + [anon_sym_e_PLUSo_GT] = ACTIONS(2355), + [anon_sym_err_GT_GT] = ACTIONS(2359), + [anon_sym_out_GT_GT] = ACTIONS(2359), + [anon_sym_e_GT_GT] = ACTIONS(2359), + [anon_sym_o_GT_GT] = ACTIONS(2359), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2359), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2359), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2359), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2359), + [aux_sym_unquoted_token1] = ACTIONS(2355), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(2359), + }, + [1524] = { + [sym_comment] = STATE(1524), + [ts_builtin_sym_end] = ACTIONS(1044), + [anon_sym_true] = ACTIONS(1044), + [anon_sym_false] = ACTIONS(1044), + [anon_sym_null] = ACTIONS(1044), + [aux_sym_cmd_identifier_token38] = ACTIONS(1044), + [aux_sym_cmd_identifier_token39] = ACTIONS(1044), + [aux_sym_cmd_identifier_token40] = ACTIONS(1044), + [sym__newline] = ACTIONS(1044), + [anon_sym_SEMI] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1044), + [anon_sym_err_GT_PIPE] = ACTIONS(1044), + [anon_sym_out_GT_PIPE] = ACTIONS(1044), + [anon_sym_e_GT_PIPE] = ACTIONS(1044), + [anon_sym_o_GT_PIPE] = ACTIONS(1044), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1044), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1044), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1044), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1044), + [anon_sym_LBRACK] = ACTIONS(1044), + [anon_sym_LPAREN] = ACTIONS(1044), + [anon_sym_DOLLAR] = ACTIONS(1042), + [anon_sym_DASH_DASH] = ACTIONS(1044), + [anon_sym_DASH] = ACTIONS(1042), + [anon_sym_LBRACE] = ACTIONS(1044), + [anon_sym_DOT_DOT] = ACTIONS(1042), + [anon_sym_QMARK2] = ACTIONS(5001), + [anon_sym_DOT] = ACTIONS(1042), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1044), + [anon_sym_DOT_DOT_LT] = ACTIONS(1044), + [aux_sym__val_number_decimal_token1] = ACTIONS(1042), + [aux_sym__val_number_decimal_token2] = ACTIONS(1044), + [aux_sym__val_number_decimal_token3] = ACTIONS(1044), + [aux_sym__val_number_decimal_token4] = ACTIONS(1044), + [aux_sym__val_number_token1] = ACTIONS(1044), + [aux_sym__val_number_token2] = ACTIONS(1044), + [aux_sym__val_number_token3] = ACTIONS(1044), + [anon_sym_0b] = ACTIONS(1042), + [anon_sym_0o] = ACTIONS(1042), + [anon_sym_0x] = ACTIONS(1042), + [sym_val_date] = ACTIONS(1044), + [anon_sym_DQUOTE] = ACTIONS(1044), + [sym__str_single_quotes] = ACTIONS(1044), + [sym__str_back_ticks] = ACTIONS(1044), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1044), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1044), + [anon_sym_err_GT] = ACTIONS(1042), + [anon_sym_out_GT] = ACTIONS(1042), + [anon_sym_e_GT] = ACTIONS(1042), + [anon_sym_o_GT] = ACTIONS(1042), + [anon_sym_err_PLUSout_GT] = ACTIONS(1042), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1042), + [anon_sym_o_PLUSe_GT] = ACTIONS(1042), + [anon_sym_e_PLUSo_GT] = ACTIONS(1042), + [anon_sym_err_GT_GT] = ACTIONS(1044), + [anon_sym_out_GT_GT] = ACTIONS(1044), + [anon_sym_e_GT_GT] = ACTIONS(1044), + [anon_sym_o_GT_GT] = ACTIONS(1044), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1044), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1044), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1044), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1044), + [aux_sym_unquoted_token1] = ACTIONS(1042), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1044), + }, + [1525] = { + [sym_comment] = STATE(1525), + [ts_builtin_sym_end] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1050), + [anon_sym_false] = ACTIONS(1050), + [anon_sym_null] = ACTIONS(1050), + [aux_sym_cmd_identifier_token38] = ACTIONS(1050), + [aux_sym_cmd_identifier_token39] = ACTIONS(1050), + [aux_sym_cmd_identifier_token40] = ACTIONS(1050), + [sym__newline] = ACTIONS(1050), + [anon_sym_SEMI] = ACTIONS(1050), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_err_GT_PIPE] = ACTIONS(1050), + [anon_sym_out_GT_PIPE] = ACTIONS(1050), + [anon_sym_e_GT_PIPE] = ACTIONS(1050), + [anon_sym_o_GT_PIPE] = ACTIONS(1050), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1050), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1050), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1050), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1050), + [anon_sym_LBRACK] = ACTIONS(1050), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_DOLLAR] = ACTIONS(1048), + [anon_sym_DASH_DASH] = ACTIONS(1050), + [anon_sym_DASH] = ACTIONS(1048), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_DOT_DOT] = ACTIONS(1048), + [anon_sym_QMARK2] = ACTIONS(5003), + [anon_sym_DOT] = ACTIONS(1048), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1050), + [anon_sym_DOT_DOT_LT] = ACTIONS(1050), + [aux_sym__val_number_decimal_token1] = ACTIONS(1048), + [aux_sym__val_number_decimal_token2] = ACTIONS(1050), + [aux_sym__val_number_decimal_token3] = ACTIONS(1050), + [aux_sym__val_number_decimal_token4] = ACTIONS(1050), + [aux_sym__val_number_token1] = ACTIONS(1050), + [aux_sym__val_number_token2] = ACTIONS(1050), + [aux_sym__val_number_token3] = ACTIONS(1050), + [anon_sym_0b] = ACTIONS(1048), + [anon_sym_0o] = ACTIONS(1048), + [anon_sym_0x] = ACTIONS(1048), + [sym_val_date] = ACTIONS(1050), + [anon_sym_DQUOTE] = ACTIONS(1050), + [sym__str_single_quotes] = ACTIONS(1050), + [sym__str_back_ticks] = ACTIONS(1050), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1050), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1050), + [anon_sym_err_GT] = ACTIONS(1048), + [anon_sym_out_GT] = ACTIONS(1048), + [anon_sym_e_GT] = ACTIONS(1048), + [anon_sym_o_GT] = ACTIONS(1048), + [anon_sym_err_PLUSout_GT] = ACTIONS(1048), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1048), + [anon_sym_o_PLUSe_GT] = ACTIONS(1048), + [anon_sym_e_PLUSo_GT] = ACTIONS(1048), + [anon_sym_err_GT_GT] = ACTIONS(1050), + [anon_sym_out_GT_GT] = ACTIONS(1050), + [anon_sym_e_GT_GT] = ACTIONS(1050), + [anon_sym_o_GT_GT] = ACTIONS(1050), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1050), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1050), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1050), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1050), + [aux_sym_unquoted_token1] = ACTIONS(1048), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1050), + }, + [1526] = { + [sym__expression] = STATE(5657), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3895), + [sym_expr_parenthesized] = STATE(3543), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(3542), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(3503), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym__flag] = STATE(2068), + [sym_short_flag] = STATE(3610), + [sym_long_flag] = STATE(3610), + [sym_comment] = STATE(1526), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [aux_sym_cmd_identifier_token38] = ACTIONS(227), + [aux_sym_cmd_identifier_token39] = ACTIONS(227), + [aux_sym_cmd_identifier_token40] = ACTIONS(227), + [anon_sym_LBRACK] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(4973), + [anon_sym_DOLLAR] = ACTIONS(4975), + [anon_sym_DASH_DASH] = ACTIONS(4977), + [anon_sym_DASH] = ACTIONS(4979), + [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_DOT_DOT] = ACTIONS(4981), + [aux_sym_expr_unary_token1] = ACTIONS(3412), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4983), + [anon_sym_DOT_DOT_LT] = ACTIONS(4983), + [aux_sym__val_number_decimal_token1] = ACTIONS(3414), + [aux_sym__val_number_decimal_token2] = ACTIONS(3416), + [aux_sym__val_number_decimal_token3] = ACTIONS(3418), + [aux_sym__val_number_decimal_token4] = ACTIONS(3420), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), + }, + [1527] = { + [sym_comment] = STATE(1527), + [sym__newline] = ACTIONS(1536), + [anon_sym_SEMI] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_err_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_GT_PIPE] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), + [anon_sym_RPAREN] = ACTIONS(1538), + [anon_sym_LPAREN2] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1538), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1538), + [anon_sym_DOT_DOT2] = ACTIONS(1536), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), + [sym_filesize_unit] = ACTIONS(1538), + [sym_duration_unit] = ACTIONS(1538), + [anon_sym_err_GT] = ACTIONS(1536), + [anon_sym_out_GT] = ACTIONS(1536), + [anon_sym_e_GT] = ACTIONS(1536), + [anon_sym_o_GT] = ACTIONS(1536), + [anon_sym_err_PLUSout_GT] = ACTIONS(1536), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), + [anon_sym_o_PLUSe_GT] = ACTIONS(1536), + [anon_sym_e_PLUSo_GT] = ACTIONS(1536), + [anon_sym_err_GT_GT] = ACTIONS(1538), + [anon_sym_out_GT_GT] = ACTIONS(1538), + [anon_sym_e_GT_GT] = ACTIONS(1538), + [anon_sym_o_GT_GT] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), + [aux_sym_unquoted_token2] = ACTIONS(1536), + [anon_sym_POUND] = ACTIONS(249), + }, + [1528] = { + [sym_comment] = STATE(1528), + [ts_builtin_sym_end] = ACTIONS(1796), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_null] = ACTIONS(1796), + [aux_sym_cmd_identifier_token38] = ACTIONS(1796), + [aux_sym_cmd_identifier_token39] = ACTIONS(1796), + [aux_sym_cmd_identifier_token40] = ACTIONS(1796), + [sym__newline] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1796), + [anon_sym_PIPE] = ACTIONS(1796), + [anon_sym_err_GT_PIPE] = ACTIONS(1796), + [anon_sym_out_GT_PIPE] = ACTIONS(1796), + [anon_sym_e_GT_PIPE] = ACTIONS(1796), + [anon_sym_o_GT_PIPE] = ACTIONS(1796), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1796), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1796), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1796), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1796), + [anon_sym_LBRACK] = ACTIONS(1796), + [anon_sym_LPAREN] = ACTIONS(1788), + [anon_sym_DOLLAR] = ACTIONS(1788), + [anon_sym_DASH_DASH] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1788), + [anon_sym_LBRACE] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1788), + [anon_sym_LPAREN2] = ACTIONS(1790), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1796), + [anon_sym_DOT_DOT_LT] = ACTIONS(1796), + [aux_sym__val_number_decimal_token1] = ACTIONS(1788), + [aux_sym__val_number_decimal_token2] = ACTIONS(1796), + [aux_sym__val_number_decimal_token3] = ACTIONS(1796), + [aux_sym__val_number_decimal_token4] = ACTIONS(1796), + [aux_sym__val_number_token1] = ACTIONS(1796), + [aux_sym__val_number_token2] = ACTIONS(1796), + [aux_sym__val_number_token3] = ACTIONS(1796), + [anon_sym_0b] = ACTIONS(1788), + [anon_sym_0o] = ACTIONS(1788), + [anon_sym_0x] = ACTIONS(1788), + [sym_val_date] = ACTIONS(1796), + [anon_sym_DQUOTE] = ACTIONS(1796), + [sym__str_single_quotes] = ACTIONS(1796), + [sym__str_back_ticks] = ACTIONS(1796), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1796), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1796), + [anon_sym_err_GT] = ACTIONS(1788), + [anon_sym_out_GT] = ACTIONS(1788), + [anon_sym_e_GT] = ACTIONS(1788), + [anon_sym_o_GT] = ACTIONS(1788), + [anon_sym_err_PLUSout_GT] = ACTIONS(1788), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1788), + [anon_sym_o_PLUSe_GT] = ACTIONS(1788), + [anon_sym_e_PLUSo_GT] = ACTIONS(1788), + [anon_sym_err_GT_GT] = ACTIONS(1796), + [anon_sym_out_GT_GT] = ACTIONS(1796), + [anon_sym_e_GT_GT] = ACTIONS(1796), + [anon_sym_o_GT_GT] = ACTIONS(1796), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1796), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1796), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1796), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1796), + [aux_sym_unquoted_token1] = ACTIONS(1788), + [aux_sym_unquoted_token2] = ACTIONS(1526), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1796), + }, + [1529] = { + [sym__expression] = STATE(5679), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3895), + [sym_expr_parenthesized] = STATE(3543), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(3542), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(3503), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym__flag] = STATE(2069), + [sym_short_flag] = STATE(3610), + [sym_long_flag] = STATE(3610), + [sym_comment] = STATE(1529), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [aux_sym_cmd_identifier_token38] = ACTIONS(227), + [aux_sym_cmd_identifier_token39] = ACTIONS(227), + [aux_sym_cmd_identifier_token40] = ACTIONS(227), + [anon_sym_LBRACK] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(4973), + [anon_sym_DOLLAR] = ACTIONS(4975), + [anon_sym_DASH_DASH] = ACTIONS(4977), + [anon_sym_DASH] = ACTIONS(4979), + [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_DOT_DOT] = ACTIONS(4981), + [aux_sym_expr_unary_token1] = ACTIONS(3412), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4983), + [anon_sym_DOT_DOT_LT] = ACTIONS(4983), + [aux_sym__val_number_decimal_token1] = ACTIONS(3414), + [aux_sym__val_number_decimal_token2] = ACTIONS(3416), + [aux_sym__val_number_decimal_token3] = ACTIONS(3418), + [aux_sym__val_number_decimal_token4] = ACTIONS(3420), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), + }, + [1530] = { + [sym_comment] = STATE(1530), + [sym__newline] = ACTIONS(1528), + [anon_sym_SEMI] = ACTIONS(1530), + [anon_sym_PIPE] = ACTIONS(1530), + [anon_sym_err_GT_PIPE] = ACTIONS(1530), + [anon_sym_out_GT_PIPE] = ACTIONS(1530), + [anon_sym_e_GT_PIPE] = ACTIONS(1530), + [anon_sym_o_GT_PIPE] = ACTIONS(1530), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1530), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1530), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1530), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1530), + [anon_sym_RPAREN] = ACTIONS(1530), + [anon_sym_LPAREN2] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1530), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1530), + [anon_sym_DOT_DOT2] = ACTIONS(1528), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1530), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1530), + [sym_filesize_unit] = ACTIONS(1530), + [sym_duration_unit] = ACTIONS(1530), + [anon_sym_err_GT] = ACTIONS(1528), + [anon_sym_out_GT] = ACTIONS(1528), + [anon_sym_e_GT] = ACTIONS(1528), + [anon_sym_o_GT] = ACTIONS(1528), + [anon_sym_err_PLUSout_GT] = ACTIONS(1528), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), + [anon_sym_o_PLUSe_GT] = ACTIONS(1528), + [anon_sym_e_PLUSo_GT] = ACTIONS(1528), + [anon_sym_err_GT_GT] = ACTIONS(1530), + [anon_sym_out_GT_GT] = ACTIONS(1530), + [anon_sym_e_GT_GT] = ACTIONS(1530), + [anon_sym_o_GT_GT] = ACTIONS(1530), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1530), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1530), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1530), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1530), + [aux_sym_unquoted_token2] = ACTIONS(1528), + [anon_sym_POUND] = ACTIONS(249), + }, + [1531] = { + [sym_comment] = STATE(1531), + [ts_builtin_sym_end] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(1705), + [anon_sym_false] = ACTIONS(1705), + [anon_sym_null] = ACTIONS(1705), + [aux_sym_cmd_identifier_token38] = ACTIONS(1705), + [aux_sym_cmd_identifier_token39] = ACTIONS(1705), + [aux_sym_cmd_identifier_token40] = ACTIONS(1705), + [sym__newline] = ACTIONS(1705), + [anon_sym_SEMI] = ACTIONS(1705), + [anon_sym_PIPE] = ACTIONS(1705), + [anon_sym_err_GT_PIPE] = ACTIONS(1705), + [anon_sym_out_GT_PIPE] = ACTIONS(1705), + [anon_sym_e_GT_PIPE] = ACTIONS(1705), + [anon_sym_o_GT_PIPE] = ACTIONS(1705), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1705), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1705), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1705), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1705), + [anon_sym_LBRACK] = ACTIONS(1705), + [anon_sym_LPAREN] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1703), + [anon_sym_DASH_DASH] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1703), + [anon_sym_LBRACE] = ACTIONS(1705), + [anon_sym_DOT_DOT] = ACTIONS(1703), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1705), + [anon_sym_DOT_DOT_LT] = ACTIONS(1705), + [aux_sym__immediate_decimal_token1] = ACTIONS(5005), + [aux_sym__immediate_decimal_token2] = ACTIONS(5007), + [aux_sym__val_number_decimal_token1] = ACTIONS(1703), + [aux_sym__val_number_decimal_token2] = ACTIONS(1705), + [aux_sym__val_number_decimal_token3] = ACTIONS(1705), + [aux_sym__val_number_decimal_token4] = ACTIONS(1705), + [aux_sym__val_number_token1] = ACTIONS(1705), + [aux_sym__val_number_token2] = ACTIONS(1705), + [aux_sym__val_number_token3] = ACTIONS(1705), + [anon_sym_0b] = ACTIONS(1703), + [anon_sym_0o] = ACTIONS(1703), + [anon_sym_0x] = ACTIONS(1703), + [sym_val_date] = ACTIONS(1705), + [anon_sym_DQUOTE] = ACTIONS(1705), + [sym__str_single_quotes] = ACTIONS(1705), + [sym__str_back_ticks] = ACTIONS(1705), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1705), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1705), + [anon_sym_err_GT] = ACTIONS(1703), + [anon_sym_out_GT] = ACTIONS(1703), + [anon_sym_e_GT] = ACTIONS(1703), + [anon_sym_o_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT] = ACTIONS(1703), + [anon_sym_err_GT_GT] = ACTIONS(1705), + [anon_sym_out_GT_GT] = ACTIONS(1705), + [anon_sym_e_GT_GT] = ACTIONS(1705), + [anon_sym_o_GT_GT] = ACTIONS(1705), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1705), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1705), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1705), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1705), + [aux_sym_unquoted_token1] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1705), + }, + [1532] = { + [sym_comment] = STATE(1532), + [sym__newline] = ACTIONS(1596), + [anon_sym_SEMI] = ACTIONS(1598), + [anon_sym_PIPE] = ACTIONS(1598), + [anon_sym_err_GT_PIPE] = ACTIONS(1598), + [anon_sym_out_GT_PIPE] = ACTIONS(1598), + [anon_sym_e_GT_PIPE] = ACTIONS(1598), + [anon_sym_o_GT_PIPE] = ACTIONS(1598), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1598), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1598), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1598), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1598), + [anon_sym_RPAREN] = ACTIONS(1598), + [anon_sym_LPAREN2] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1598), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1598), + [anon_sym_DOT_DOT2] = ACTIONS(1596), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1598), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1598), + [sym_filesize_unit] = ACTIONS(1598), + [sym_duration_unit] = ACTIONS(1598), + [anon_sym_err_GT] = ACTIONS(1596), + [anon_sym_out_GT] = ACTIONS(1596), + [anon_sym_e_GT] = ACTIONS(1596), + [anon_sym_o_GT] = ACTIONS(1596), + [anon_sym_err_PLUSout_GT] = ACTIONS(1596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1596), + [anon_sym_o_PLUSe_GT] = ACTIONS(1596), + [anon_sym_e_PLUSo_GT] = ACTIONS(1596), + [anon_sym_err_GT_GT] = ACTIONS(1598), + [anon_sym_out_GT_GT] = ACTIONS(1598), + [anon_sym_e_GT_GT] = ACTIONS(1598), + [anon_sym_o_GT_GT] = ACTIONS(1598), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1598), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1598), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1598), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1598), + [aux_sym_unquoted_token2] = ACTIONS(1596), + [anon_sym_POUND] = ACTIONS(249), + }, + [1533] = { + [sym_comment] = STATE(1533), + [anon_sym_true] = ACTIONS(2281), + [anon_sym_false] = ACTIONS(2281), + [anon_sym_null] = ACTIONS(2281), + [aux_sym_cmd_identifier_token38] = ACTIONS(2281), + [aux_sym_cmd_identifier_token39] = ACTIONS(2281), + [aux_sym_cmd_identifier_token40] = ACTIONS(2281), + [sym__newline] = ACTIONS(2285), + [anon_sym_SEMI] = ACTIONS(2285), + [anon_sym_PIPE] = ACTIONS(2285), + [anon_sym_err_GT_PIPE] = ACTIONS(2285), + [anon_sym_out_GT_PIPE] = ACTIONS(2285), + [anon_sym_e_GT_PIPE] = ACTIONS(2285), + [anon_sym_o_GT_PIPE] = ACTIONS(2285), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2285), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2285), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2285), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2285), + [anon_sym_LBRACK] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(2285), + [anon_sym_RPAREN] = ACTIONS(2285), + [anon_sym_DOLLAR] = ACTIONS(2281), + [anon_sym_DASH_DASH] = ACTIONS(2281), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_LBRACE] = ACTIONS(2285), + [anon_sym_RBRACE] = ACTIONS(2285), + [anon_sym_DOT_DOT] = ACTIONS(2281), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2281), + [anon_sym_DOT_DOT_LT] = ACTIONS(2281), + [aux_sym__val_number_decimal_token1] = ACTIONS(2281), + [aux_sym__val_number_decimal_token2] = ACTIONS(2281), + [aux_sym__val_number_decimal_token3] = ACTIONS(2281), + [aux_sym__val_number_decimal_token4] = ACTIONS(2281), + [aux_sym__val_number_token1] = ACTIONS(2281), + [aux_sym__val_number_token2] = ACTIONS(2281), + [aux_sym__val_number_token3] = ACTIONS(2281), + [anon_sym_0b] = ACTIONS(2281), + [anon_sym_0o] = ACTIONS(2281), + [anon_sym_0x] = ACTIONS(2281), + [sym_val_date] = ACTIONS(2281), + [anon_sym_DQUOTE] = ACTIONS(2285), + [sym__str_single_quotes] = ACTIONS(2285), + [sym__str_back_ticks] = ACTIONS(2285), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2285), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2285), + [anon_sym_err_GT] = ACTIONS(2281), + [anon_sym_out_GT] = ACTIONS(2281), + [anon_sym_e_GT] = ACTIONS(2281), + [anon_sym_o_GT] = ACTIONS(2281), + [anon_sym_err_PLUSout_GT] = ACTIONS(2281), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2281), + [anon_sym_o_PLUSe_GT] = ACTIONS(2281), + [anon_sym_e_PLUSo_GT] = ACTIONS(2281), + [anon_sym_err_GT_GT] = ACTIONS(2281), + [anon_sym_out_GT_GT] = ACTIONS(2281), + [anon_sym_e_GT_GT] = ACTIONS(2281), + [anon_sym_o_GT_GT] = ACTIONS(2281), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2281), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2281), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2281), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2281), + [aux_sym_unquoted_token1] = ACTIONS(2281), + [aux_sym_unquoted_token4] = ACTIONS(2287), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2285), + }, + [1534] = { + [sym_comment] = STATE(1534), + [sym__newline] = ACTIONS(1711), + [anon_sym_SEMI] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_err_GT_PIPE] = ACTIONS(1713), + [anon_sym_out_GT_PIPE] = ACTIONS(1713), + [anon_sym_e_GT_PIPE] = ACTIONS(1713), + [anon_sym_o_GT_PIPE] = ACTIONS(1713), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), + [anon_sym_RPAREN] = ACTIONS(1713), + [anon_sym_LPAREN2] = ACTIONS(1713), + [aux_sym_expr_binary_parenthesized_token1] = ACTIONS(1713), + [aux_sym_expr_binary_parenthesized_token2] = ACTIONS(1713), + [aux_sym_expr_binary_parenthesized_token3] = ACTIONS(1713), + [aux_sym_expr_binary_parenthesized_token4] = ACTIONS(1713), + [aux_sym_expr_binary_parenthesized_token5] = ACTIONS(1713), + [aux_sym_expr_binary_parenthesized_token6] = ACTIONS(1713), + [aux_sym_expr_binary_parenthesized_token7] = ACTIONS(1713), + [aux_sym_expr_binary_parenthesized_token8] = ACTIONS(1713), + [aux_sym_expr_binary_parenthesized_token9] = ACTIONS(1713), + [aux_sym_expr_binary_parenthesized_token10] = ACTIONS(1713), + [aux_sym_expr_binary_parenthesized_token11] = ACTIONS(1713), + [aux_sym_expr_binary_parenthesized_token12] = ACTIONS(1713), + [aux_sym_expr_binary_parenthesized_token13] = ACTIONS(1713), + [aux_sym_expr_binary_parenthesized_token14] = ACTIONS(1713), + [aux_sym_expr_binary_parenthesized_token15] = ACTIONS(1713), + [aux_sym_expr_binary_parenthesized_token16] = ACTIONS(1713), + [aux_sym_expr_binary_parenthesized_token17] = ACTIONS(1713), + [aux_sym_expr_binary_parenthesized_token18] = ACTIONS(1713), + [aux_sym_expr_binary_parenthesized_token19] = ACTIONS(1713), + [aux_sym_expr_binary_parenthesized_token20] = ACTIONS(1713), + [aux_sym_expr_binary_parenthesized_token21] = ACTIONS(1713), + [aux_sym_expr_binary_parenthesized_token22] = ACTIONS(1713), + [aux_sym_expr_binary_parenthesized_token23] = ACTIONS(1713), + [aux_sym_expr_binary_parenthesized_token24] = ACTIONS(1713), + [aux_sym_expr_binary_parenthesized_token25] = ACTIONS(1713), + [aux_sym_expr_binary_parenthesized_token26] = ACTIONS(1713), + [aux_sym_expr_binary_parenthesized_token27] = ACTIONS(1713), + [aux_sym_expr_binary_parenthesized_token28] = ACTIONS(1713), + [anon_sym_DOT_DOT2] = ACTIONS(1711), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1713), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1713), + [sym_filesize_unit] = ACTIONS(1713), + [sym_duration_unit] = ACTIONS(1713), + [anon_sym_err_GT] = ACTIONS(1711), + [anon_sym_out_GT] = ACTIONS(1711), + [anon_sym_e_GT] = ACTIONS(1711), + [anon_sym_o_GT] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT] = ACTIONS(1711), + [anon_sym_err_GT_GT] = ACTIONS(1713), + [anon_sym_out_GT_GT] = ACTIONS(1713), + [anon_sym_e_GT_GT] = ACTIONS(1713), + [anon_sym_o_GT_GT] = ACTIONS(1713), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), + [aux_sym_unquoted_token2] = ACTIONS(1711), + [anon_sym_POUND] = ACTIONS(249), + }, + [1535] = { + [sym_cmd_identifier] = STATE(6296), + [sym__command_name] = STATE(7162), + [sym_scope_pattern] = STATE(7153), + [sym_command_list] = STATE(6988), + [sym__val_number_decimal] = STATE(6981), + [sym_val_string] = STATE(6299), + [sym__raw_str] = STATE(2065), + [sym__str_double_quotes] = STATE(2065), + [sym_comment] = STATE(1535), + [ts_builtin_sym_end] = ACTIONS(4911), + [aux_sym_cmd_identifier_token1] = ACTIONS(4961), + [aux_sym_cmd_identifier_token2] = ACTIONS(4963), + [aux_sym_cmd_identifier_token3] = ACTIONS(4963), + [aux_sym_cmd_identifier_token4] = ACTIONS(4963), + [aux_sym_cmd_identifier_token5] = ACTIONS(4963), + [aux_sym_cmd_identifier_token6] = ACTIONS(4963), + [aux_sym_cmd_identifier_token7] = ACTIONS(4963), + [aux_sym_cmd_identifier_token8] = ACTIONS(4963), + [aux_sym_cmd_identifier_token9] = ACTIONS(4961), + [aux_sym_cmd_identifier_token10] = ACTIONS(4963), + [aux_sym_cmd_identifier_token11] = ACTIONS(4963), + [aux_sym_cmd_identifier_token12] = ACTIONS(4963), + [aux_sym_cmd_identifier_token13] = ACTIONS(4961), + [aux_sym_cmd_identifier_token14] = ACTIONS(4963), + [aux_sym_cmd_identifier_token15] = ACTIONS(4961), + [aux_sym_cmd_identifier_token16] = ACTIONS(4963), + [aux_sym_cmd_identifier_token17] = ACTIONS(4963), + [aux_sym_cmd_identifier_token18] = ACTIONS(4963), + [aux_sym_cmd_identifier_token19] = ACTIONS(4963), + [aux_sym_cmd_identifier_token20] = ACTIONS(4963), + [aux_sym_cmd_identifier_token21] = ACTIONS(4963), + [aux_sym_cmd_identifier_token22] = ACTIONS(4963), + [aux_sym_cmd_identifier_token23] = ACTIONS(4963), + [aux_sym_cmd_identifier_token24] = ACTIONS(4963), + [aux_sym_cmd_identifier_token25] = ACTIONS(4963), + [aux_sym_cmd_identifier_token26] = ACTIONS(4963), + [aux_sym_cmd_identifier_token27] = ACTIONS(4963), + [aux_sym_cmd_identifier_token28] = ACTIONS(4963), + [aux_sym_cmd_identifier_token29] = ACTIONS(4963), + [aux_sym_cmd_identifier_token30] = ACTIONS(4963), + [aux_sym_cmd_identifier_token31] = ACTIONS(4963), + [aux_sym_cmd_identifier_token32] = ACTIONS(4963), + [aux_sym_cmd_identifier_token33] = ACTIONS(4963), + [aux_sym_cmd_identifier_token34] = ACTIONS(4963), + [aux_sym_cmd_identifier_token35] = ACTIONS(4963), + [aux_sym_cmd_identifier_token36] = ACTIONS(4961), + [anon_sym_true] = ACTIONS(4965), + [anon_sym_false] = ACTIONS(4965), + [anon_sym_null] = ACTIONS(4965), + [aux_sym_cmd_identifier_token38] = ACTIONS(4967), + [aux_sym_cmd_identifier_token39] = ACTIONS(4965), + [aux_sym_cmd_identifier_token40] = ACTIONS(4965), + [sym__newline] = ACTIONS(4911), + [anon_sym_SEMI] = ACTIONS(4911), + [anon_sym_LBRACK] = ACTIONS(4969), + [sym_wild_card] = ACTIONS(4971), + [aux_sym__val_number_decimal_token1] = ACTIONS(1343), + [aux_sym__val_number_decimal_token2] = ACTIONS(1343), + [aux_sym__val_number_decimal_token3] = ACTIONS(1345), + [aux_sym__val_number_decimal_token4] = ACTIONS(1347), + [anon_sym_DQUOTE] = ACTIONS(111), + [sym__str_single_quotes] = ACTIONS(113), + [sym__str_back_ticks] = ACTIONS(113), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(123), + }, + [1536] = { + [sym_comment] = STATE(1536), + [ts_builtin_sym_end] = ACTIONS(2285), + [anon_sym_true] = ACTIONS(2281), + [anon_sym_false] = ACTIONS(2281), + [anon_sym_null] = ACTIONS(2281), + [aux_sym_cmd_identifier_token38] = ACTIONS(2281), + [aux_sym_cmd_identifier_token39] = ACTIONS(2281), + [aux_sym_cmd_identifier_token40] = ACTIONS(2281), + [sym__newline] = ACTIONS(2285), + [anon_sym_SEMI] = ACTIONS(2285), + [anon_sym_PIPE] = ACTIONS(2285), + [anon_sym_err_GT_PIPE] = ACTIONS(2285), + [anon_sym_out_GT_PIPE] = ACTIONS(2285), + [anon_sym_e_GT_PIPE] = ACTIONS(2285), + [anon_sym_o_GT_PIPE] = ACTIONS(2285), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2285), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2285), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2285), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2285), + [anon_sym_LBRACK] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(2281), + [anon_sym_DOLLAR] = ACTIONS(2281), + [anon_sym_DASH_DASH] = ACTIONS(2281), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_LBRACE] = ACTIONS(2285), + [anon_sym_DOT_DOT] = ACTIONS(2281), + [anon_sym_LPAREN2] = ACTIONS(2283), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2281), + [anon_sym_DOT_DOT_LT] = ACTIONS(2281), + [aux_sym__val_number_decimal_token1] = ACTIONS(2281), + [aux_sym__val_number_decimal_token2] = ACTIONS(2281), + [aux_sym__val_number_decimal_token3] = ACTIONS(2281), + [aux_sym__val_number_decimal_token4] = ACTIONS(2281), + [aux_sym__val_number_token1] = ACTIONS(2281), + [aux_sym__val_number_token2] = ACTIONS(2281), + [aux_sym__val_number_token3] = ACTIONS(2281), + [anon_sym_0b] = ACTIONS(2281), + [anon_sym_0o] = ACTIONS(2281), + [anon_sym_0x] = ACTIONS(2281), + [sym_val_date] = ACTIONS(2281), + [anon_sym_DQUOTE] = ACTIONS(2285), + [sym__str_single_quotes] = ACTIONS(2285), + [sym__str_back_ticks] = ACTIONS(2285), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2285), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2285), + [anon_sym_err_GT] = ACTIONS(2281), + [anon_sym_out_GT] = ACTIONS(2281), + [anon_sym_e_GT] = ACTIONS(2281), + [anon_sym_o_GT] = ACTIONS(2281), + [anon_sym_err_PLUSout_GT] = ACTIONS(2281), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2281), + [anon_sym_o_PLUSe_GT] = ACTIONS(2281), + [anon_sym_e_PLUSo_GT] = ACTIONS(2281), + [anon_sym_err_GT_GT] = ACTIONS(2281), + [anon_sym_out_GT_GT] = ACTIONS(2281), + [anon_sym_e_GT_GT] = ACTIONS(2281), + [anon_sym_o_GT_GT] = ACTIONS(2281), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2281), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2281), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2281), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2281), + [aux_sym_unquoted_token1] = ACTIONS(2281), + [aux_sym_unquoted_token4] = ACTIONS(2287), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2285), + }, + [1537] = { + [sym_comment] = STATE(1537), + [ts_builtin_sym_end] = ACTIONS(1092), + [anon_sym_true] = ACTIONS(1090), + [anon_sym_false] = ACTIONS(1090), + [anon_sym_null] = ACTIONS(1090), + [aux_sym_cmd_identifier_token38] = ACTIONS(1090), + [aux_sym_cmd_identifier_token39] = ACTIONS(1090), + [aux_sym_cmd_identifier_token40] = ACTIONS(1090), + [sym__newline] = ACTIONS(1092), + [anon_sym_SEMI] = ACTIONS(1092), + [anon_sym_PIPE] = ACTIONS(1092), + [anon_sym_err_GT_PIPE] = ACTIONS(1092), + [anon_sym_out_GT_PIPE] = ACTIONS(1092), + [anon_sym_e_GT_PIPE] = ACTIONS(1092), + [anon_sym_o_GT_PIPE] = ACTIONS(1092), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1092), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1092), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1092), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1092), + [anon_sym_LBRACK] = ACTIONS(1092), + [anon_sym_LPAREN] = ACTIONS(1090), + [anon_sym_DOLLAR] = ACTIONS(1090), + [anon_sym_DASH_DASH] = ACTIONS(1090), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_LBRACE] = ACTIONS(1092), + [anon_sym_DOT_DOT] = ACTIONS(1090), + [anon_sym_LPAREN2] = ACTIONS(2273), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1090), + [anon_sym_DOT_DOT_LT] = ACTIONS(1090), + [aux_sym__val_number_decimal_token1] = ACTIONS(1090), + [aux_sym__val_number_decimal_token2] = ACTIONS(1090), + [aux_sym__val_number_decimal_token3] = ACTIONS(1090), + [aux_sym__val_number_decimal_token4] = ACTIONS(1090), + [aux_sym__val_number_token1] = ACTIONS(1090), + [aux_sym__val_number_token2] = ACTIONS(1090), + [aux_sym__val_number_token3] = ACTIONS(1090), + [anon_sym_0b] = ACTIONS(1090), + [anon_sym_0o] = ACTIONS(1090), + [anon_sym_0x] = ACTIONS(1090), + [sym_val_date] = ACTIONS(1090), + [anon_sym_DQUOTE] = ACTIONS(1092), + [sym__str_single_quotes] = ACTIONS(1092), + [sym__str_back_ticks] = ACTIONS(1092), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1092), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1092), + [anon_sym_err_GT] = ACTIONS(1090), + [anon_sym_out_GT] = ACTIONS(1090), + [anon_sym_e_GT] = ACTIONS(1090), + [anon_sym_o_GT] = ACTIONS(1090), + [anon_sym_err_PLUSout_GT] = ACTIONS(1090), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1090), + [anon_sym_o_PLUSe_GT] = ACTIONS(1090), + [anon_sym_e_PLUSo_GT] = ACTIONS(1090), + [anon_sym_err_GT_GT] = ACTIONS(1090), + [anon_sym_out_GT_GT] = ACTIONS(1090), + [anon_sym_e_GT_GT] = ACTIONS(1090), + [anon_sym_o_GT_GT] = ACTIONS(1090), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1090), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1090), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1090), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1090), + [aux_sym_unquoted_token1] = ACTIONS(1090), + [aux_sym_unquoted_token4] = ACTIONS(2275), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1092), + }, + [1538] = { + [sym_comment] = STATE(1538), + [anon_sym_true] = ACTIONS(1076), + [anon_sym_false] = ACTIONS(1076), + [anon_sym_null] = ACTIONS(1076), + [aux_sym_cmd_identifier_token38] = ACTIONS(1076), + [aux_sym_cmd_identifier_token39] = ACTIONS(1076), + [aux_sym_cmd_identifier_token40] = ACTIONS(1076), + [sym__newline] = ACTIONS(1076), + [anon_sym_SEMI] = ACTIONS(1076), + [anon_sym_PIPE] = ACTIONS(1076), + [anon_sym_err_GT_PIPE] = ACTIONS(1076), + [anon_sym_out_GT_PIPE] = ACTIONS(1076), + [anon_sym_e_GT_PIPE] = ACTIONS(1076), + [anon_sym_o_GT_PIPE] = ACTIONS(1076), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1076), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1076), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1076), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1076), + [anon_sym_LBRACK] = ACTIONS(1076), + [anon_sym_LPAREN] = ACTIONS(1076), + [anon_sym_RPAREN] = ACTIONS(1076), + [anon_sym_DOLLAR] = ACTIONS(1074), + [anon_sym_DASH_DASH] = ACTIONS(1076), + [anon_sym_DASH] = ACTIONS(1074), + [anon_sym_LBRACE] = ACTIONS(1076), + [anon_sym_RBRACE] = ACTIONS(1076), + [anon_sym_DOT_DOT] = ACTIONS(1074), + [anon_sym_DOT] = ACTIONS(1074), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1076), + [anon_sym_DOT_DOT_LT] = ACTIONS(1076), + [aux_sym__val_number_decimal_token1] = ACTIONS(1074), + [aux_sym__val_number_decimal_token2] = ACTIONS(1076), + [aux_sym__val_number_decimal_token3] = ACTIONS(1076), + [aux_sym__val_number_decimal_token4] = ACTIONS(1076), + [aux_sym__val_number_token1] = ACTIONS(1076), + [aux_sym__val_number_token2] = ACTIONS(1076), + [aux_sym__val_number_token3] = ACTIONS(1076), + [anon_sym_0b] = ACTIONS(1074), + [anon_sym_0o] = ACTIONS(1074), + [anon_sym_0x] = ACTIONS(1074), + [sym_val_date] = ACTIONS(1076), + [anon_sym_DQUOTE] = ACTIONS(1076), + [sym__str_single_quotes] = ACTIONS(1076), + [sym__str_back_ticks] = ACTIONS(1076), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1076), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1076), + [anon_sym_err_GT] = ACTIONS(1074), + [anon_sym_out_GT] = ACTIONS(1074), + [anon_sym_e_GT] = ACTIONS(1074), + [anon_sym_o_GT] = ACTIONS(1074), + [anon_sym_err_PLUSout_GT] = ACTIONS(1074), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1074), + [anon_sym_o_PLUSe_GT] = ACTIONS(1074), + [anon_sym_e_PLUSo_GT] = ACTIONS(1074), + [anon_sym_err_GT_GT] = ACTIONS(1076), + [anon_sym_out_GT_GT] = ACTIONS(1076), + [anon_sym_e_GT_GT] = ACTIONS(1076), + [anon_sym_o_GT_GT] = ACTIONS(1076), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1076), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1076), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1076), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1076), + [aux_sym_unquoted_token1] = ACTIONS(1074), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1076), + }, + [1539] = { + [sym__expr_parenthesized_immediate] = STATE(7460), + [sym_comment] = STATE(1539), + [ts_builtin_sym_end] = ACTIONS(4822), + [anon_sym_true] = ACTIONS(4822), + [anon_sym_false] = ACTIONS(4822), + [anon_sym_null] = ACTIONS(4822), + [aux_sym_cmd_identifier_token38] = ACTIONS(4822), + [aux_sym_cmd_identifier_token39] = ACTIONS(4822), + [aux_sym_cmd_identifier_token40] = ACTIONS(4822), + [sym__newline] = ACTIONS(4822), + [anon_sym_SEMI] = ACTIONS(4822), + [anon_sym_PIPE] = ACTIONS(4822), + [anon_sym_err_GT_PIPE] = ACTIONS(4822), + [anon_sym_out_GT_PIPE] = ACTIONS(4822), + [anon_sym_e_GT_PIPE] = ACTIONS(4822), + [anon_sym_o_GT_PIPE] = ACTIONS(4822), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4822), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4822), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4822), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4822), + [anon_sym_LBRACK] = ACTIONS(4822), + [anon_sym_LPAREN] = ACTIONS(4824), + [anon_sym_DOLLAR] = ACTIONS(4824), + [anon_sym_DASH_DASH] = ACTIONS(4822), + [anon_sym_DASH] = ACTIONS(4824), + [anon_sym_LBRACE] = ACTIONS(4822), + [anon_sym_DOT_DOT] = ACTIONS(4824), + [anon_sym_LPAREN2] = ACTIONS(4433), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4822), + [anon_sym_DOT_DOT_LT] = ACTIONS(4822), + [aux_sym__val_number_decimal_token1] = ACTIONS(4824), + [aux_sym__val_number_decimal_token2] = ACTIONS(4822), + [aux_sym__val_number_decimal_token3] = ACTIONS(4822), + [aux_sym__val_number_decimal_token4] = ACTIONS(4822), + [aux_sym__val_number_token1] = ACTIONS(4822), + [aux_sym__val_number_token2] = ACTIONS(4822), + [aux_sym__val_number_token3] = ACTIONS(4822), + [anon_sym_0b] = ACTIONS(4824), + [anon_sym_0o] = ACTIONS(4824), + [anon_sym_0x] = ACTIONS(4824), + [sym_val_date] = ACTIONS(4822), + [anon_sym_DQUOTE] = ACTIONS(4822), + [sym__str_single_quotes] = ACTIONS(4822), + [sym__str_back_ticks] = ACTIONS(4822), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4822), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4822), + [anon_sym_err_GT] = ACTIONS(4824), + [anon_sym_out_GT] = ACTIONS(4824), + [anon_sym_e_GT] = ACTIONS(4824), + [anon_sym_o_GT] = ACTIONS(4824), + [anon_sym_err_PLUSout_GT] = ACTIONS(4824), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4824), + [anon_sym_o_PLUSe_GT] = ACTIONS(4824), + [anon_sym_e_PLUSo_GT] = ACTIONS(4824), + [anon_sym_err_GT_GT] = ACTIONS(4822), + [anon_sym_out_GT_GT] = ACTIONS(4822), + [anon_sym_e_GT_GT] = ACTIONS(4822), + [anon_sym_o_GT_GT] = ACTIONS(4822), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4822), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4822), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4822), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4822), + [aux_sym_unquoted_token1] = ACTIONS(4824), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(4822), + }, + [1540] = { + [sym_comment] = STATE(1540), + [sym__newline] = ACTIONS(1058), + [anon_sym_SEMI] = ACTIONS(1060), + [anon_sym_PIPE] = ACTIONS(1060), + [anon_sym_err_GT_PIPE] = ACTIONS(1060), + [anon_sym_out_GT_PIPE] = ACTIONS(1060), + [anon_sym_e_GT_PIPE] = ACTIONS(1060), + [anon_sym_o_GT_PIPE] = ACTIONS(1060), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1060), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1060), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1060), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1060), + [anon_sym_DASH_DASH] = ACTIONS(1060), + [anon_sym_DASH] = ACTIONS(1058), + [anon_sym_LBRACE] = ACTIONS(1060), + [anon_sym_RBRACE] = ACTIONS(1060), + [anon_sym_EQ_GT] = ACTIONS(1060), + [anon_sym_QMARK2] = ACTIONS(1060), + [aux_sym_expr_binary_token1] = ACTIONS(1060), + [aux_sym_expr_binary_token2] = ACTIONS(1060), + [aux_sym_expr_binary_token3] = ACTIONS(1060), + [aux_sym_expr_binary_token4] = ACTIONS(1060), + [aux_sym_expr_binary_token5] = ACTIONS(1060), + [aux_sym_expr_binary_token6] = ACTIONS(1060), + [aux_sym_expr_binary_token7] = ACTIONS(1060), + [aux_sym_expr_binary_token8] = ACTIONS(1060), + [aux_sym_expr_binary_token9] = ACTIONS(1060), + [aux_sym_expr_binary_token10] = ACTIONS(1060), + [aux_sym_expr_binary_token11] = ACTIONS(1060), + [aux_sym_expr_binary_token12] = ACTIONS(1060), + [aux_sym_expr_binary_token13] = ACTIONS(1060), + [aux_sym_expr_binary_token14] = ACTIONS(1060), + [aux_sym_expr_binary_token15] = ACTIONS(1060), + [aux_sym_expr_binary_token16] = ACTIONS(1060), + [aux_sym_expr_binary_token17] = ACTIONS(1060), + [aux_sym_expr_binary_token18] = ACTIONS(1060), + [aux_sym_expr_binary_token19] = ACTIONS(1060), + [aux_sym_expr_binary_token20] = ACTIONS(1060), + [aux_sym_expr_binary_token21] = ACTIONS(1060), + [aux_sym_expr_binary_token22] = ACTIONS(1060), + [aux_sym_expr_binary_token23] = ACTIONS(1060), + [aux_sym_expr_binary_token24] = ACTIONS(1060), + [aux_sym_expr_binary_token25] = ACTIONS(1060), + [aux_sym_expr_binary_token26] = ACTIONS(1060), + [aux_sym_expr_binary_token27] = ACTIONS(1060), + [aux_sym_expr_binary_token28] = ACTIONS(1060), + [anon_sym_DOT] = ACTIONS(1060), + [aux_sym_record_entry_token1] = ACTIONS(1060), + [anon_sym_err_GT] = ACTIONS(1058), + [anon_sym_out_GT] = ACTIONS(1058), + [anon_sym_e_GT] = ACTIONS(1058), + [anon_sym_o_GT] = ACTIONS(1058), + [anon_sym_err_PLUSout_GT] = ACTIONS(1058), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1058), + [anon_sym_o_PLUSe_GT] = ACTIONS(1058), + [anon_sym_e_PLUSo_GT] = ACTIONS(1058), + [anon_sym_err_GT_GT] = ACTIONS(1060), + [anon_sym_out_GT_GT] = ACTIONS(1060), + [anon_sym_e_GT_GT] = ACTIONS(1060), + [anon_sym_o_GT_GT] = ACTIONS(1060), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1060), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1060), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1060), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1060), + [anon_sym_POUND] = ACTIONS(249), + }, + [1541] = { + [sym_comment] = STATE(1541), + [ts_builtin_sym_end] = ACTIONS(4939), + [anon_sym_true] = ACTIONS(4937), + [anon_sym_false] = ACTIONS(4937), + [anon_sym_null] = ACTIONS(4937), + [aux_sym_cmd_identifier_token38] = ACTIONS(4937), + [aux_sym_cmd_identifier_token39] = ACTIONS(4939), + [aux_sym_cmd_identifier_token40] = ACTIONS(4937), + [sym_long_flag_identifier] = ACTIONS(5009), + [sym__newline] = ACTIONS(4939), + [anon_sym_SEMI] = ACTIONS(4939), + [anon_sym_PIPE] = ACTIONS(4939), + [anon_sym_err_GT_PIPE] = ACTIONS(4939), + [anon_sym_out_GT_PIPE] = ACTIONS(4939), + [anon_sym_e_GT_PIPE] = ACTIONS(4939), + [anon_sym_o_GT_PIPE] = ACTIONS(4939), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4939), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4939), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4939), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4939), + [anon_sym_LBRACK] = ACTIONS(4939), + [anon_sym_LPAREN] = ACTIONS(4939), + [anon_sym_DOLLAR] = ACTIONS(4937), + [anon_sym_DASH_DASH] = ACTIONS(4939), + [anon_sym_DASH] = ACTIONS(4937), + [anon_sym_LBRACE] = ACTIONS(4939), + [anon_sym_DOT_DOT] = ACTIONS(4937), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4939), + [anon_sym_DOT_DOT_LT] = ACTIONS(4939), + [aux_sym__val_number_decimal_token1] = ACTIONS(4937), + [aux_sym__val_number_decimal_token2] = ACTIONS(4939), + [aux_sym__val_number_decimal_token3] = ACTIONS(4939), + [aux_sym__val_number_decimal_token4] = ACTIONS(4939), + [aux_sym__val_number_token1] = ACTIONS(4937), + [aux_sym__val_number_token2] = ACTIONS(4937), + [aux_sym__val_number_token3] = ACTIONS(4937), + [anon_sym_0b] = ACTIONS(4937), + [anon_sym_0o] = ACTIONS(4937), + [anon_sym_0x] = ACTIONS(4937), + [sym_val_date] = ACTIONS(4937), + [anon_sym_DQUOTE] = ACTIONS(4939), + [sym__str_single_quotes] = ACTIONS(4939), + [sym__str_back_ticks] = ACTIONS(4939), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4939), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4939), + [anon_sym_err_GT] = ACTIONS(4937), + [anon_sym_out_GT] = ACTIONS(4937), + [anon_sym_e_GT] = ACTIONS(4937), + [anon_sym_o_GT] = ACTIONS(4937), + [anon_sym_err_PLUSout_GT] = ACTIONS(4937), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4937), + [anon_sym_o_PLUSe_GT] = ACTIONS(4937), + [anon_sym_e_PLUSo_GT] = ACTIONS(4937), + [anon_sym_err_GT_GT] = ACTIONS(4939), + [anon_sym_out_GT_GT] = ACTIONS(4939), + [anon_sym_e_GT_GT] = ACTIONS(4939), + [anon_sym_o_GT_GT] = ACTIONS(4939), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4939), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4939), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4939), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4939), + [anon_sym_EQ2] = ACTIONS(5011), + [aux_sym_unquoted_token1] = ACTIONS(4937), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(4939), + }, + [1542] = { + [sym_comment] = STATE(1542), + [ts_builtin_sym_end] = ACTIONS(4927), + [anon_sym_true] = ACTIONS(4925), + [anon_sym_false] = ACTIONS(4925), + [anon_sym_null] = ACTIONS(4925), + [aux_sym_cmd_identifier_token38] = ACTIONS(4925), + [aux_sym_cmd_identifier_token39] = ACTIONS(4925), + [aux_sym_cmd_identifier_token40] = ACTIONS(4925), + [sym__newline] = ACTIONS(4927), + [anon_sym_SEMI] = ACTIONS(4927), + [anon_sym_PIPE] = ACTIONS(4927), + [anon_sym_err_GT_PIPE] = ACTIONS(4927), + [anon_sym_out_GT_PIPE] = ACTIONS(4927), + [anon_sym_e_GT_PIPE] = ACTIONS(4927), + [anon_sym_o_GT_PIPE] = ACTIONS(4927), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4927), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4927), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4927), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4927), + [anon_sym_LBRACK] = ACTIONS(4927), + [anon_sym_LPAREN] = ACTIONS(4927), + [anon_sym_DOLLAR] = ACTIONS(4925), + [anon_sym_DASH_DASH] = ACTIONS(4925), + [anon_sym_DASH] = ACTIONS(4925), + [anon_sym_LBRACE] = ACTIONS(4927), + [anon_sym_DOT_DOT] = ACTIONS(4925), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4927), + [anon_sym_DOT_DOT_LT] = ACTIONS(4927), + [aux_sym__val_number_decimal_token1] = ACTIONS(4925), + [aux_sym__val_number_decimal_token2] = ACTIONS(4925), + [aux_sym__val_number_decimal_token3] = ACTIONS(4927), + [aux_sym__val_number_decimal_token4] = ACTIONS(4927), + [aux_sym__val_number_token1] = ACTIONS(4925), + [aux_sym__val_number_token2] = ACTIONS(4925), + [aux_sym__val_number_token3] = ACTIONS(4925), + [anon_sym_0b] = ACTIONS(4925), + [anon_sym_0o] = ACTIONS(4925), + [anon_sym_0x] = ACTIONS(4925), + [sym_val_date] = ACTIONS(4925), + [anon_sym_DQUOTE] = ACTIONS(4927), + [sym__str_single_quotes] = ACTIONS(4927), + [sym__str_back_ticks] = ACTIONS(4927), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4927), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4927), + [anon_sym_err_GT] = ACTIONS(4925), + [anon_sym_out_GT] = ACTIONS(4925), + [anon_sym_e_GT] = ACTIONS(4925), + [anon_sym_o_GT] = ACTIONS(4925), + [anon_sym_err_PLUSout_GT] = ACTIONS(4925), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4925), + [anon_sym_o_PLUSe_GT] = ACTIONS(4925), + [anon_sym_e_PLUSo_GT] = ACTIONS(4925), + [anon_sym_err_GT_GT] = ACTIONS(4927), + [anon_sym_out_GT_GT] = ACTIONS(4927), + [anon_sym_e_GT_GT] = ACTIONS(4927), + [anon_sym_o_GT_GT] = ACTIONS(4927), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4927), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4927), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4927), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4927), + [anon_sym_EQ2] = ACTIONS(5013), + [sym_short_flag_identifier] = ACTIONS(5015), + [aux_sym_unquoted_token1] = ACTIONS(4925), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(4927), + }, + [1543] = { + [sym_comment] = STATE(1543), + [aux_sym_cmd_identifier_token41] = ACTIONS(1536), + [sym__newline] = ACTIONS(1538), + [anon_sym_SEMI] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_err_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_GT_PIPE] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), + [anon_sym_RPAREN] = ACTIONS(1538), + [anon_sym_RBRACE] = ACTIONS(1538), + [aux_sym_expr_binary_token1] = ACTIONS(1538), + [aux_sym_expr_binary_token2] = ACTIONS(1538), + [aux_sym_expr_binary_token3] = ACTIONS(1538), + [aux_sym_expr_binary_token4] = ACTIONS(1538), + [aux_sym_expr_binary_token5] = ACTIONS(1538), + [aux_sym_expr_binary_token6] = ACTIONS(1538), + [aux_sym_expr_binary_token7] = ACTIONS(1538), + [aux_sym_expr_binary_token8] = ACTIONS(1538), + [aux_sym_expr_binary_token9] = ACTIONS(1538), + [aux_sym_expr_binary_token10] = ACTIONS(1538), + [aux_sym_expr_binary_token11] = ACTIONS(1538), + [aux_sym_expr_binary_token12] = ACTIONS(1538), + [aux_sym_expr_binary_token13] = ACTIONS(1538), + [aux_sym_expr_binary_token14] = ACTIONS(1538), + [aux_sym_expr_binary_token15] = ACTIONS(1538), + [aux_sym_expr_binary_token16] = ACTIONS(1538), + [aux_sym_expr_binary_token17] = ACTIONS(1538), + [aux_sym_expr_binary_token18] = ACTIONS(1538), + [aux_sym_expr_binary_token19] = ACTIONS(1538), + [aux_sym_expr_binary_token20] = ACTIONS(1538), + [aux_sym_expr_binary_token21] = ACTIONS(1538), + [aux_sym_expr_binary_token22] = ACTIONS(1538), + [aux_sym_expr_binary_token23] = ACTIONS(1538), + [aux_sym_expr_binary_token24] = ACTIONS(1538), + [aux_sym_expr_binary_token25] = ACTIONS(1538), + [aux_sym_expr_binary_token26] = ACTIONS(1538), + [aux_sym_expr_binary_token27] = ACTIONS(1538), + [aux_sym_expr_binary_token28] = ACTIONS(1538), + [anon_sym_DOT_DOT2] = ACTIONS(1536), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), + [sym_filesize_unit] = ACTIONS(1538), + [sym_duration_unit] = ACTIONS(1538), + [anon_sym_err_GT] = ACTIONS(1536), + [anon_sym_out_GT] = ACTIONS(1536), + [anon_sym_e_GT] = ACTIONS(1536), + [anon_sym_o_GT] = ACTIONS(1536), + [anon_sym_err_PLUSout_GT] = ACTIONS(1536), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), + [anon_sym_o_PLUSe_GT] = ACTIONS(1536), + [anon_sym_e_PLUSo_GT] = ACTIONS(1536), + [anon_sym_err_GT_GT] = ACTIONS(1538), + [anon_sym_out_GT_GT] = ACTIONS(1538), + [anon_sym_e_GT_GT] = ACTIONS(1538), + [anon_sym_o_GT_GT] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), + [anon_sym_POUND] = ACTIONS(249), + }, + [1544] = { + [sym_comment] = STATE(1544), + [sym__newline] = ACTIONS(1062), + [anon_sym_SEMI] = ACTIONS(1064), + [anon_sym_PIPE] = ACTIONS(1064), + [anon_sym_err_GT_PIPE] = ACTIONS(1064), + [anon_sym_out_GT_PIPE] = ACTIONS(1064), + [anon_sym_e_GT_PIPE] = ACTIONS(1064), + [anon_sym_o_GT_PIPE] = ACTIONS(1064), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1064), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1064), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1064), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1064), + [anon_sym_DASH_DASH] = ACTIONS(1064), + [anon_sym_DASH] = ACTIONS(1062), + [anon_sym_LBRACE] = ACTIONS(1064), + [anon_sym_RBRACE] = ACTIONS(1064), + [anon_sym_EQ_GT] = ACTIONS(1064), + [anon_sym_QMARK2] = ACTIONS(1064), + [aux_sym_expr_binary_token1] = ACTIONS(1064), + [aux_sym_expr_binary_token2] = ACTIONS(1064), + [aux_sym_expr_binary_token3] = ACTIONS(1064), + [aux_sym_expr_binary_token4] = ACTIONS(1064), + [aux_sym_expr_binary_token5] = ACTIONS(1064), + [aux_sym_expr_binary_token6] = ACTIONS(1064), + [aux_sym_expr_binary_token7] = ACTIONS(1064), + [aux_sym_expr_binary_token8] = ACTIONS(1064), + [aux_sym_expr_binary_token9] = ACTIONS(1064), + [aux_sym_expr_binary_token10] = ACTIONS(1064), + [aux_sym_expr_binary_token11] = ACTIONS(1064), + [aux_sym_expr_binary_token12] = ACTIONS(1064), + [aux_sym_expr_binary_token13] = ACTIONS(1064), + [aux_sym_expr_binary_token14] = ACTIONS(1064), + [aux_sym_expr_binary_token15] = ACTIONS(1064), + [aux_sym_expr_binary_token16] = ACTIONS(1064), + [aux_sym_expr_binary_token17] = ACTIONS(1064), + [aux_sym_expr_binary_token18] = ACTIONS(1064), + [aux_sym_expr_binary_token19] = ACTIONS(1064), + [aux_sym_expr_binary_token20] = ACTIONS(1064), + [aux_sym_expr_binary_token21] = ACTIONS(1064), + [aux_sym_expr_binary_token22] = ACTIONS(1064), + [aux_sym_expr_binary_token23] = ACTIONS(1064), + [aux_sym_expr_binary_token24] = ACTIONS(1064), + [aux_sym_expr_binary_token25] = ACTIONS(1064), + [aux_sym_expr_binary_token26] = ACTIONS(1064), + [aux_sym_expr_binary_token27] = ACTIONS(1064), + [aux_sym_expr_binary_token28] = ACTIONS(1064), + [anon_sym_DOT] = ACTIONS(1064), + [aux_sym_record_entry_token1] = ACTIONS(1064), + [anon_sym_err_GT] = ACTIONS(1062), + [anon_sym_out_GT] = ACTIONS(1062), + [anon_sym_e_GT] = ACTIONS(1062), + [anon_sym_o_GT] = ACTIONS(1062), + [anon_sym_err_PLUSout_GT] = ACTIONS(1062), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1062), + [anon_sym_o_PLUSe_GT] = ACTIONS(1062), + [anon_sym_e_PLUSo_GT] = ACTIONS(1062), + [anon_sym_err_GT_GT] = ACTIONS(1064), + [anon_sym_out_GT_GT] = ACTIONS(1064), + [anon_sym_e_GT_GT] = ACTIONS(1064), + [anon_sym_o_GT_GT] = ACTIONS(1064), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1064), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1064), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1064), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1064), + [anon_sym_POUND] = ACTIONS(249), + }, + [1545] = { + [sym_comment] = STATE(1545), + [sym__newline] = ACTIONS(1038), + [anon_sym_SEMI] = ACTIONS(1040), + [anon_sym_PIPE] = ACTIONS(1040), + [anon_sym_err_GT_PIPE] = ACTIONS(1040), + [anon_sym_out_GT_PIPE] = ACTIONS(1040), + [anon_sym_e_GT_PIPE] = ACTIONS(1040), + [anon_sym_o_GT_PIPE] = ACTIONS(1040), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1040), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1040), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1040), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(1040), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_RBRACE] = ACTIONS(1040), + [anon_sym_EQ_GT] = ACTIONS(1040), + [anon_sym_QMARK2] = ACTIONS(1040), + [aux_sym_expr_binary_token1] = ACTIONS(1040), + [aux_sym_expr_binary_token2] = ACTIONS(1040), + [aux_sym_expr_binary_token3] = ACTIONS(1040), + [aux_sym_expr_binary_token4] = ACTIONS(1040), + [aux_sym_expr_binary_token5] = ACTIONS(1040), + [aux_sym_expr_binary_token6] = ACTIONS(1040), + [aux_sym_expr_binary_token7] = ACTIONS(1040), + [aux_sym_expr_binary_token8] = ACTIONS(1040), + [aux_sym_expr_binary_token9] = ACTIONS(1040), + [aux_sym_expr_binary_token10] = ACTIONS(1040), + [aux_sym_expr_binary_token11] = ACTIONS(1040), + [aux_sym_expr_binary_token12] = ACTIONS(1040), + [aux_sym_expr_binary_token13] = ACTIONS(1040), + [aux_sym_expr_binary_token14] = ACTIONS(1040), + [aux_sym_expr_binary_token15] = ACTIONS(1040), + [aux_sym_expr_binary_token16] = ACTIONS(1040), + [aux_sym_expr_binary_token17] = ACTIONS(1040), + [aux_sym_expr_binary_token18] = ACTIONS(1040), + [aux_sym_expr_binary_token19] = ACTIONS(1040), + [aux_sym_expr_binary_token20] = ACTIONS(1040), + [aux_sym_expr_binary_token21] = ACTIONS(1040), + [aux_sym_expr_binary_token22] = ACTIONS(1040), + [aux_sym_expr_binary_token23] = ACTIONS(1040), + [aux_sym_expr_binary_token24] = ACTIONS(1040), + [aux_sym_expr_binary_token25] = ACTIONS(1040), + [aux_sym_expr_binary_token26] = ACTIONS(1040), + [aux_sym_expr_binary_token27] = ACTIONS(1040), + [aux_sym_expr_binary_token28] = ACTIONS(1040), + [anon_sym_DOT] = ACTIONS(1040), + [aux_sym_record_entry_token1] = ACTIONS(1040), + [anon_sym_err_GT] = ACTIONS(1038), + [anon_sym_out_GT] = ACTIONS(1038), + [anon_sym_e_GT] = ACTIONS(1038), + [anon_sym_o_GT] = ACTIONS(1038), + [anon_sym_err_PLUSout_GT] = ACTIONS(1038), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1038), + [anon_sym_o_PLUSe_GT] = ACTIONS(1038), + [anon_sym_e_PLUSo_GT] = ACTIONS(1038), + [anon_sym_err_GT_GT] = ACTIONS(1040), + [anon_sym_out_GT_GT] = ACTIONS(1040), + [anon_sym_e_GT_GT] = ACTIONS(1040), + [anon_sym_o_GT_GT] = ACTIONS(1040), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1040), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1040), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1040), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1040), + [anon_sym_POUND] = ACTIONS(249), + }, + [1546] = { + [sym_comment] = STATE(1546), + [ts_builtin_sym_end] = ACTIONS(2291), + [anon_sym_true] = ACTIONS(2289), + [anon_sym_false] = ACTIONS(2289), + [anon_sym_null] = ACTIONS(2289), + [aux_sym_cmd_identifier_token38] = ACTIONS(2289), + [aux_sym_cmd_identifier_token39] = ACTIONS(2289), + [aux_sym_cmd_identifier_token40] = ACTIONS(2289), + [sym__newline] = ACTIONS(2291), + [anon_sym_SEMI] = ACTIONS(2291), + [anon_sym_PIPE] = ACTIONS(2291), + [anon_sym_err_GT_PIPE] = ACTIONS(2291), + [anon_sym_out_GT_PIPE] = ACTIONS(2291), + [anon_sym_e_GT_PIPE] = ACTIONS(2291), + [anon_sym_o_GT_PIPE] = ACTIONS(2291), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2291), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2291), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2291), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2291), + [anon_sym_LBRACK] = ACTIONS(2291), + [anon_sym_LPAREN] = ACTIONS(2289), + [anon_sym_DOLLAR] = ACTIONS(2289), + [anon_sym_DASH_DASH] = ACTIONS(2289), + [anon_sym_DASH] = ACTIONS(2289), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_DOT_DOT] = ACTIONS(2289), + [anon_sym_LPAREN2] = ACTIONS(2291), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2289), + [anon_sym_DOT_DOT_LT] = ACTIONS(2289), + [aux_sym__val_number_decimal_token1] = ACTIONS(2289), + [aux_sym__val_number_decimal_token2] = ACTIONS(2289), + [aux_sym__val_number_decimal_token3] = ACTIONS(2289), + [aux_sym__val_number_decimal_token4] = ACTIONS(2289), + [aux_sym__val_number_token1] = ACTIONS(2289), + [aux_sym__val_number_token2] = ACTIONS(2289), + [aux_sym__val_number_token3] = ACTIONS(2289), + [anon_sym_0b] = ACTIONS(2289), + [anon_sym_0o] = ACTIONS(2289), + [anon_sym_0x] = ACTIONS(2289), + [sym_val_date] = ACTIONS(2289), + [anon_sym_DQUOTE] = ACTIONS(2291), + [sym__str_single_quotes] = ACTIONS(2291), + [sym__str_back_ticks] = ACTIONS(2291), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2291), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2291), + [anon_sym_err_GT] = ACTIONS(2289), + [anon_sym_out_GT] = ACTIONS(2289), + [anon_sym_e_GT] = ACTIONS(2289), + [anon_sym_o_GT] = ACTIONS(2289), + [anon_sym_err_PLUSout_GT] = ACTIONS(2289), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2289), + [anon_sym_o_PLUSe_GT] = ACTIONS(2289), + [anon_sym_e_PLUSo_GT] = ACTIONS(2289), + [anon_sym_err_GT_GT] = ACTIONS(2289), + [anon_sym_out_GT_GT] = ACTIONS(2289), + [anon_sym_e_GT_GT] = ACTIONS(2289), + [anon_sym_o_GT_GT] = ACTIONS(2289), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2289), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2289), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2289), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2289), + [aux_sym_unquoted_token1] = ACTIONS(2289), + [aux_sym_unquoted_token4] = ACTIONS(2289), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2291), + }, + [1547] = { + [sym_comment] = STATE(1547), + [ts_builtin_sym_end] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1717), + [anon_sym_false] = ACTIONS(1717), + [anon_sym_null] = ACTIONS(1717), + [aux_sym_cmd_identifier_token38] = ACTIONS(1717), + [aux_sym_cmd_identifier_token39] = ACTIONS(1717), + [aux_sym_cmd_identifier_token40] = ACTIONS(1717), + [sym__newline] = ACTIONS(1717), + [anon_sym_SEMI] = ACTIONS(1717), + [anon_sym_PIPE] = ACTIONS(1717), + [anon_sym_err_GT_PIPE] = ACTIONS(1717), + [anon_sym_out_GT_PIPE] = ACTIONS(1717), + [anon_sym_e_GT_PIPE] = ACTIONS(1717), + [anon_sym_o_GT_PIPE] = ACTIONS(1717), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1717), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1717), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1717), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1717), + [anon_sym_LBRACK] = ACTIONS(1717), + [anon_sym_LPAREN] = ACTIONS(1715), + [anon_sym_DOLLAR] = ACTIONS(1715), + [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_LBRACE] = ACTIONS(1717), + [anon_sym_DOT_DOT] = ACTIONS(1715), + [anon_sym_LPAREN2] = ACTIONS(1717), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1717), + [anon_sym_DOT_DOT_LT] = ACTIONS(1717), + [aux_sym__val_number_decimal_token1] = ACTIONS(1715), + [aux_sym__val_number_decimal_token2] = ACTIONS(1717), + [aux_sym__val_number_decimal_token3] = ACTIONS(1717), + [aux_sym__val_number_decimal_token4] = ACTIONS(1717), + [aux_sym__val_number_token1] = ACTIONS(1717), + [aux_sym__val_number_token2] = ACTIONS(1717), + [aux_sym__val_number_token3] = ACTIONS(1717), + [anon_sym_0b] = ACTIONS(1715), + [anon_sym_0o] = ACTIONS(1715), + [anon_sym_0x] = ACTIONS(1715), + [sym_val_date] = ACTIONS(1717), + [anon_sym_DQUOTE] = ACTIONS(1717), + [sym__str_single_quotes] = ACTIONS(1717), + [sym__str_back_ticks] = ACTIONS(1717), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1717), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1717), + [anon_sym_err_GT] = ACTIONS(1715), + [anon_sym_out_GT] = ACTIONS(1715), + [anon_sym_e_GT] = ACTIONS(1715), + [anon_sym_o_GT] = ACTIONS(1715), + [anon_sym_err_PLUSout_GT] = ACTIONS(1715), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1715), + [anon_sym_o_PLUSe_GT] = ACTIONS(1715), + [anon_sym_e_PLUSo_GT] = ACTIONS(1715), + [anon_sym_err_GT_GT] = ACTIONS(1717), + [anon_sym_out_GT_GT] = ACTIONS(1717), + [anon_sym_e_GT_GT] = ACTIONS(1717), + [anon_sym_o_GT_GT] = ACTIONS(1717), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1717), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1717), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1717), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1717), + [aux_sym_unquoted_token1] = ACTIONS(1715), + [aux_sym_unquoted_token2] = ACTIONS(1715), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1717), + }, + [1548] = { + [sym__expr_parenthesized_immediate] = STATE(7535), + [sym_comment] = STATE(1548), + [sym__newline] = ACTIONS(5017), + [anon_sym_SEMI] = ACTIONS(5017), + [anon_sym_PIPE] = ACTIONS(5017), + [anon_sym_err_GT_PIPE] = ACTIONS(5017), + [anon_sym_out_GT_PIPE] = ACTIONS(5017), + [anon_sym_e_GT_PIPE] = ACTIONS(5017), + [anon_sym_o_GT_PIPE] = ACTIONS(5017), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5017), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5017), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5017), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5017), + [anon_sym_RPAREN] = ACTIONS(5017), + [anon_sym_DASH_DASH] = ACTIONS(5017), + [anon_sym_DASH] = ACTIONS(5019), + [anon_sym_LBRACE] = ACTIONS(5017), + [anon_sym_RBRACE] = ACTIONS(5017), + [anon_sym_EQ_GT] = ACTIONS(5017), + [anon_sym_LPAREN2] = ACTIONS(4433), + [aux_sym_expr_binary_token1] = ACTIONS(5017), + [aux_sym_expr_binary_token2] = ACTIONS(5017), + [aux_sym_expr_binary_token3] = ACTIONS(5017), + [aux_sym_expr_binary_token4] = ACTIONS(5017), + [aux_sym_expr_binary_token5] = ACTIONS(5017), + [aux_sym_expr_binary_token6] = ACTIONS(5017), + [aux_sym_expr_binary_token7] = ACTIONS(5017), + [aux_sym_expr_binary_token8] = ACTIONS(5017), + [aux_sym_expr_binary_token9] = ACTIONS(5017), + [aux_sym_expr_binary_token10] = ACTIONS(5017), + [aux_sym_expr_binary_token11] = ACTIONS(5017), + [aux_sym_expr_binary_token12] = ACTIONS(5017), + [aux_sym_expr_binary_token13] = ACTIONS(5017), + [aux_sym_expr_binary_token14] = ACTIONS(5017), + [aux_sym_expr_binary_token15] = ACTIONS(5017), + [aux_sym_expr_binary_token16] = ACTIONS(5017), + [aux_sym_expr_binary_token17] = ACTIONS(5017), + [aux_sym_expr_binary_token18] = ACTIONS(5017), + [aux_sym_expr_binary_token19] = ACTIONS(5017), + [aux_sym_expr_binary_token20] = ACTIONS(5017), + [aux_sym_expr_binary_token21] = ACTIONS(5017), + [aux_sym_expr_binary_token22] = ACTIONS(5017), + [aux_sym_expr_binary_token23] = ACTIONS(5017), + [aux_sym_expr_binary_token24] = ACTIONS(5017), + [aux_sym_expr_binary_token25] = ACTIONS(5017), + [aux_sym_expr_binary_token26] = ACTIONS(5017), + [aux_sym_expr_binary_token27] = ACTIONS(5017), + [aux_sym_expr_binary_token28] = ACTIONS(5017), + [anon_sym_err_GT] = ACTIONS(5019), + [anon_sym_out_GT] = ACTIONS(5019), + [anon_sym_e_GT] = ACTIONS(5019), + [anon_sym_o_GT] = ACTIONS(5019), + [anon_sym_err_PLUSout_GT] = ACTIONS(5019), + [anon_sym_out_PLUSerr_GT] = ACTIONS(5019), + [anon_sym_o_PLUSe_GT] = ACTIONS(5019), + [anon_sym_e_PLUSo_GT] = ACTIONS(5019), + [anon_sym_err_GT_GT] = ACTIONS(5017), + [anon_sym_out_GT_GT] = ACTIONS(5017), + [anon_sym_e_GT_GT] = ACTIONS(5017), + [anon_sym_o_GT_GT] = ACTIONS(5017), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5017), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5017), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5017), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5017), + [anon_sym_POUND] = ACTIONS(249), + }, + [1549] = { + [sym_comment] = STATE(1549), + [sym__newline] = ACTIONS(1054), + [anon_sym_SEMI] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(1056), + [anon_sym_err_GT_PIPE] = ACTIONS(1056), + [anon_sym_out_GT_PIPE] = ACTIONS(1056), + [anon_sym_e_GT_PIPE] = ACTIONS(1056), + [anon_sym_o_GT_PIPE] = ACTIONS(1056), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1056), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1056), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1056), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1056), + [anon_sym_DASH_DASH] = ACTIONS(1056), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_LBRACE] = ACTIONS(1056), + [anon_sym_RBRACE] = ACTIONS(1056), + [anon_sym_EQ_GT] = ACTIONS(1056), + [anon_sym_QMARK2] = ACTIONS(1056), + [aux_sym_expr_binary_token1] = ACTIONS(1056), + [aux_sym_expr_binary_token2] = ACTIONS(1056), + [aux_sym_expr_binary_token3] = ACTIONS(1056), + [aux_sym_expr_binary_token4] = ACTIONS(1056), + [aux_sym_expr_binary_token5] = ACTIONS(1056), + [aux_sym_expr_binary_token6] = ACTIONS(1056), + [aux_sym_expr_binary_token7] = ACTIONS(1056), + [aux_sym_expr_binary_token8] = ACTIONS(1056), + [aux_sym_expr_binary_token9] = ACTIONS(1056), + [aux_sym_expr_binary_token10] = ACTIONS(1056), + [aux_sym_expr_binary_token11] = ACTIONS(1056), + [aux_sym_expr_binary_token12] = ACTIONS(1056), + [aux_sym_expr_binary_token13] = ACTIONS(1056), + [aux_sym_expr_binary_token14] = ACTIONS(1056), + [aux_sym_expr_binary_token15] = ACTIONS(1056), + [aux_sym_expr_binary_token16] = ACTIONS(1056), + [aux_sym_expr_binary_token17] = ACTIONS(1056), + [aux_sym_expr_binary_token18] = ACTIONS(1056), + [aux_sym_expr_binary_token19] = ACTIONS(1056), + [aux_sym_expr_binary_token20] = ACTIONS(1056), + [aux_sym_expr_binary_token21] = ACTIONS(1056), + [aux_sym_expr_binary_token22] = ACTIONS(1056), + [aux_sym_expr_binary_token23] = ACTIONS(1056), + [aux_sym_expr_binary_token24] = ACTIONS(1056), + [aux_sym_expr_binary_token25] = ACTIONS(1056), + [aux_sym_expr_binary_token26] = ACTIONS(1056), + [aux_sym_expr_binary_token27] = ACTIONS(1056), + [aux_sym_expr_binary_token28] = ACTIONS(1056), + [anon_sym_DOT] = ACTIONS(1056), + [aux_sym_record_entry_token1] = ACTIONS(1056), + [anon_sym_err_GT] = ACTIONS(1054), + [anon_sym_out_GT] = ACTIONS(1054), + [anon_sym_e_GT] = ACTIONS(1054), + [anon_sym_o_GT] = ACTIONS(1054), + [anon_sym_err_PLUSout_GT] = ACTIONS(1054), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1054), + [anon_sym_o_PLUSe_GT] = ACTIONS(1054), + [anon_sym_e_PLUSo_GT] = ACTIONS(1054), + [anon_sym_err_GT_GT] = ACTIONS(1056), + [anon_sym_out_GT_GT] = ACTIONS(1056), + [anon_sym_e_GT_GT] = ACTIONS(1056), + [anon_sym_o_GT_GT] = ACTIONS(1056), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1056), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1056), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1056), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1056), + [anon_sym_POUND] = ACTIONS(249), + }, + [1550] = { + [sym_comment] = STATE(1550), + [ts_builtin_sym_end] = ACTIONS(2297), + [anon_sym_true] = ACTIONS(2293), + [anon_sym_false] = ACTIONS(2293), + [anon_sym_null] = ACTIONS(2293), + [aux_sym_cmd_identifier_token38] = ACTIONS(2293), + [aux_sym_cmd_identifier_token39] = ACTIONS(2293), + [aux_sym_cmd_identifier_token40] = ACTIONS(2293), + [sym__newline] = ACTIONS(2297), + [anon_sym_SEMI] = ACTIONS(2297), + [anon_sym_PIPE] = ACTIONS(2297), + [anon_sym_err_GT_PIPE] = ACTIONS(2297), + [anon_sym_out_GT_PIPE] = ACTIONS(2297), + [anon_sym_e_GT_PIPE] = ACTIONS(2297), + [anon_sym_o_GT_PIPE] = ACTIONS(2297), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2297), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2297), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2297), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2297), + [anon_sym_LBRACK] = ACTIONS(2297), + [anon_sym_LPAREN] = ACTIONS(2293), + [anon_sym_DOLLAR] = ACTIONS(2293), + [anon_sym_DASH_DASH] = ACTIONS(2293), + [anon_sym_DASH] = ACTIONS(2293), + [anon_sym_LBRACE] = ACTIONS(2297), + [anon_sym_DOT_DOT] = ACTIONS(2293), + [anon_sym_LPAREN2] = ACTIONS(2295), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2293), + [anon_sym_DOT_DOT_LT] = ACTIONS(2293), + [aux_sym__val_number_decimal_token1] = ACTIONS(2293), + [aux_sym__val_number_decimal_token2] = ACTIONS(2293), + [aux_sym__val_number_decimal_token3] = ACTIONS(2293), + [aux_sym__val_number_decimal_token4] = ACTIONS(2293), + [aux_sym__val_number_token1] = ACTIONS(2293), + [aux_sym__val_number_token2] = ACTIONS(2293), + [aux_sym__val_number_token3] = ACTIONS(2293), + [anon_sym_0b] = ACTIONS(2293), + [anon_sym_0o] = ACTIONS(2293), + [anon_sym_0x] = ACTIONS(2293), + [sym_val_date] = ACTIONS(2293), + [anon_sym_DQUOTE] = ACTIONS(2297), + [sym__str_single_quotes] = ACTIONS(2297), + [sym__str_back_ticks] = ACTIONS(2297), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2297), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2297), + [anon_sym_err_GT] = ACTIONS(2293), + [anon_sym_out_GT] = ACTIONS(2293), + [anon_sym_e_GT] = ACTIONS(2293), + [anon_sym_o_GT] = ACTIONS(2293), + [anon_sym_err_PLUSout_GT] = ACTIONS(2293), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2293), + [anon_sym_o_PLUSe_GT] = ACTIONS(2293), + [anon_sym_e_PLUSo_GT] = ACTIONS(2293), + [anon_sym_err_GT_GT] = ACTIONS(2293), + [anon_sym_out_GT_GT] = ACTIONS(2293), + [anon_sym_e_GT_GT] = ACTIONS(2293), + [anon_sym_o_GT_GT] = ACTIONS(2293), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2293), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2293), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2293), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2293), + [aux_sym_unquoted_token1] = ACTIONS(2293), + [aux_sym_unquoted_token4] = ACTIONS(2299), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2297), + }, + [1551] = { + [sym_comment] = STATE(1551), + [ts_builtin_sym_end] = ACTIONS(2305), + [anon_sym_true] = ACTIONS(2303), + [anon_sym_false] = ACTIONS(2303), + [anon_sym_null] = ACTIONS(2303), + [aux_sym_cmd_identifier_token38] = ACTIONS(2303), + [aux_sym_cmd_identifier_token39] = ACTIONS(2303), + [aux_sym_cmd_identifier_token40] = ACTIONS(2303), + [sym__newline] = ACTIONS(2305), + [anon_sym_SEMI] = ACTIONS(2305), + [anon_sym_PIPE] = ACTIONS(2305), + [anon_sym_err_GT_PIPE] = ACTIONS(2305), + [anon_sym_out_GT_PIPE] = ACTIONS(2305), + [anon_sym_e_GT_PIPE] = ACTIONS(2305), + [anon_sym_o_GT_PIPE] = ACTIONS(2305), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2305), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2305), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2305), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2305), + [anon_sym_LBRACK] = ACTIONS(2305), + [anon_sym_LPAREN] = ACTIONS(2303), + [anon_sym_DOLLAR] = ACTIONS(2303), + [anon_sym_DASH_DASH] = ACTIONS(2303), + [anon_sym_DASH] = ACTIONS(2303), + [anon_sym_LBRACE] = ACTIONS(2305), + [anon_sym_DOT_DOT] = ACTIONS(2303), + [anon_sym_LPAREN2] = ACTIONS(2295), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2303), + [anon_sym_DOT_DOT_LT] = ACTIONS(2303), + [aux_sym__val_number_decimal_token1] = ACTIONS(2303), + [aux_sym__val_number_decimal_token2] = ACTIONS(2303), + [aux_sym__val_number_decimal_token3] = ACTIONS(2303), + [aux_sym__val_number_decimal_token4] = ACTIONS(2303), + [aux_sym__val_number_token1] = ACTIONS(2303), + [aux_sym__val_number_token2] = ACTIONS(2303), + [aux_sym__val_number_token3] = ACTIONS(2303), + [anon_sym_0b] = ACTIONS(2303), + [anon_sym_0o] = ACTIONS(2303), + [anon_sym_0x] = ACTIONS(2303), + [sym_val_date] = ACTIONS(2303), + [anon_sym_DQUOTE] = ACTIONS(2305), + [sym__str_single_quotes] = ACTIONS(2305), + [sym__str_back_ticks] = ACTIONS(2305), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2305), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2305), + [anon_sym_err_GT] = ACTIONS(2303), + [anon_sym_out_GT] = ACTIONS(2303), + [anon_sym_e_GT] = ACTIONS(2303), + [anon_sym_o_GT] = ACTIONS(2303), + [anon_sym_err_PLUSout_GT] = ACTIONS(2303), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2303), + [anon_sym_o_PLUSe_GT] = ACTIONS(2303), + [anon_sym_e_PLUSo_GT] = ACTIONS(2303), + [anon_sym_err_GT_GT] = ACTIONS(2303), + [anon_sym_out_GT_GT] = ACTIONS(2303), + [anon_sym_e_GT_GT] = ACTIONS(2303), + [anon_sym_o_GT_GT] = ACTIONS(2303), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2303), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2303), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2303), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2303), + [aux_sym_unquoted_token1] = ACTIONS(2303), + [aux_sym_unquoted_token4] = ACTIONS(2299), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2305), + }, + [1552] = { + [sym_comment] = STATE(1552), + [ts_builtin_sym_end] = ACTIONS(1060), + [anon_sym_true] = ACTIONS(1060), + [anon_sym_false] = ACTIONS(1060), + [anon_sym_null] = ACTIONS(1060), + [aux_sym_cmd_identifier_token38] = ACTIONS(1060), + [aux_sym_cmd_identifier_token39] = ACTIONS(1060), + [aux_sym_cmd_identifier_token40] = ACTIONS(1060), + [sym__newline] = ACTIONS(1060), + [anon_sym_SEMI] = ACTIONS(1060), + [anon_sym_PIPE] = ACTIONS(1060), + [anon_sym_err_GT_PIPE] = ACTIONS(1060), + [anon_sym_out_GT_PIPE] = ACTIONS(1060), + [anon_sym_e_GT_PIPE] = ACTIONS(1060), + [anon_sym_o_GT_PIPE] = ACTIONS(1060), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1060), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1060), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1060), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1060), + [anon_sym_LBRACK] = ACTIONS(1060), + [anon_sym_LPAREN] = ACTIONS(1060), + [anon_sym_DOLLAR] = ACTIONS(1058), + [anon_sym_DASH_DASH] = ACTIONS(1060), + [anon_sym_DASH] = ACTIONS(1058), + [anon_sym_LBRACE] = ACTIONS(1060), + [anon_sym_DOT_DOT] = ACTIONS(1058), + [anon_sym_QMARK2] = ACTIONS(1060), + [anon_sym_DOT] = ACTIONS(1058), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1060), + [anon_sym_DOT_DOT_LT] = ACTIONS(1060), + [aux_sym__val_number_decimal_token1] = ACTIONS(1058), + [aux_sym__val_number_decimal_token2] = ACTIONS(1060), + [aux_sym__val_number_decimal_token3] = ACTIONS(1060), + [aux_sym__val_number_decimal_token4] = ACTIONS(1060), + [aux_sym__val_number_token1] = ACTIONS(1060), + [aux_sym__val_number_token2] = ACTIONS(1060), + [aux_sym__val_number_token3] = ACTIONS(1060), + [anon_sym_0b] = ACTIONS(1058), + [anon_sym_0o] = ACTIONS(1058), + [anon_sym_0x] = ACTIONS(1058), + [sym_val_date] = ACTIONS(1060), + [anon_sym_DQUOTE] = ACTIONS(1060), + [sym__str_single_quotes] = ACTIONS(1060), + [sym__str_back_ticks] = ACTIONS(1060), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1060), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1060), + [anon_sym_err_GT] = ACTIONS(1058), + [anon_sym_out_GT] = ACTIONS(1058), + [anon_sym_e_GT] = ACTIONS(1058), + [anon_sym_o_GT] = ACTIONS(1058), + [anon_sym_err_PLUSout_GT] = ACTIONS(1058), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1058), + [anon_sym_o_PLUSe_GT] = ACTIONS(1058), + [anon_sym_e_PLUSo_GT] = ACTIONS(1058), + [anon_sym_err_GT_GT] = ACTIONS(1060), + [anon_sym_out_GT_GT] = ACTIONS(1060), + [anon_sym_e_GT_GT] = ACTIONS(1060), + [anon_sym_o_GT_GT] = ACTIONS(1060), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1060), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1060), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1060), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1060), + [aux_sym_unquoted_token1] = ACTIONS(1058), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1060), + }, + [1553] = { + [sym_comment] = STATE(1553), + [ts_builtin_sym_end] = ACTIONS(1538), + [aux_sym_cmd_identifier_token41] = ACTIONS(1536), + [sym__newline] = ACTIONS(1538), + [anon_sym_SEMI] = ACTIONS(1538), + [anon_sym_PIPE] = ACTIONS(1538), + [anon_sym_err_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_GT_PIPE] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1538), + [aux_sym_expr_binary_token1] = ACTIONS(1538), + [aux_sym_expr_binary_token2] = ACTIONS(1538), + [aux_sym_expr_binary_token3] = ACTIONS(1538), + [aux_sym_expr_binary_token4] = ACTIONS(1538), + [aux_sym_expr_binary_token5] = ACTIONS(1538), + [aux_sym_expr_binary_token6] = ACTIONS(1538), + [aux_sym_expr_binary_token7] = ACTIONS(1538), + [aux_sym_expr_binary_token8] = ACTIONS(1538), + [aux_sym_expr_binary_token9] = ACTIONS(1538), + [aux_sym_expr_binary_token10] = ACTIONS(1538), + [aux_sym_expr_binary_token11] = ACTIONS(1538), + [aux_sym_expr_binary_token12] = ACTIONS(1538), + [aux_sym_expr_binary_token13] = ACTIONS(1538), + [aux_sym_expr_binary_token14] = ACTIONS(1538), + [aux_sym_expr_binary_token15] = ACTIONS(1538), + [aux_sym_expr_binary_token16] = ACTIONS(1538), + [aux_sym_expr_binary_token17] = ACTIONS(1538), + [aux_sym_expr_binary_token18] = ACTIONS(1538), + [aux_sym_expr_binary_token19] = ACTIONS(1538), + [aux_sym_expr_binary_token20] = ACTIONS(1538), + [aux_sym_expr_binary_token21] = ACTIONS(1538), + [aux_sym_expr_binary_token22] = ACTIONS(1538), + [aux_sym_expr_binary_token23] = ACTIONS(1538), + [aux_sym_expr_binary_token24] = ACTIONS(1538), + [aux_sym_expr_binary_token25] = ACTIONS(1538), + [aux_sym_expr_binary_token26] = ACTIONS(1538), + [aux_sym_expr_binary_token27] = ACTIONS(1538), + [aux_sym_expr_binary_token28] = ACTIONS(1538), + [anon_sym_DOT_DOT2] = ACTIONS(1536), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1538), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1538), + [aux_sym__immediate_decimal_token2] = ACTIONS(4905), + [sym_filesize_unit] = ACTIONS(1538), + [sym_duration_unit] = ACTIONS(1538), + [anon_sym_err_GT] = ACTIONS(1536), + [anon_sym_out_GT] = ACTIONS(1536), + [anon_sym_e_GT] = ACTIONS(1536), + [anon_sym_o_GT] = ACTIONS(1536), + [anon_sym_err_PLUSout_GT] = ACTIONS(1536), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1536), + [anon_sym_o_PLUSe_GT] = ACTIONS(1536), + [anon_sym_e_PLUSo_GT] = ACTIONS(1536), + [anon_sym_err_GT_GT] = ACTIONS(1538), + [anon_sym_out_GT_GT] = ACTIONS(1538), + [anon_sym_e_GT_GT] = ACTIONS(1538), + [anon_sym_o_GT_GT] = ACTIONS(1538), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1538), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1538), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1538), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1538), + [anon_sym_POUND] = ACTIONS(249), + }, + [1554] = { + [sym__expr_parenthesized_immediate] = STATE(7535), + [sym_comment] = STATE(1554), + [sym__newline] = ACTIONS(5017), + [anon_sym_SEMI] = ACTIONS(5017), + [anon_sym_PIPE] = ACTIONS(5017), + [anon_sym_err_GT_PIPE] = ACTIONS(5017), + [anon_sym_out_GT_PIPE] = ACTIONS(5017), + [anon_sym_e_GT_PIPE] = ACTIONS(5017), + [anon_sym_o_GT_PIPE] = ACTIONS(5017), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5017), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5017), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5017), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5017), + [anon_sym_RPAREN] = ACTIONS(5017), + [anon_sym_DASH_DASH] = ACTIONS(5017), + [anon_sym_DASH] = ACTIONS(5019), + [anon_sym_LBRACE] = ACTIONS(5017), + [anon_sym_RBRACE] = ACTIONS(5017), + [anon_sym_EQ_GT] = ACTIONS(5017), + [anon_sym_LPAREN2] = ACTIONS(4433), + [aux_sym_expr_binary_token1] = ACTIONS(5017), + [aux_sym_expr_binary_token2] = ACTIONS(5017), + [aux_sym_expr_binary_token3] = ACTIONS(5017), + [aux_sym_expr_binary_token4] = ACTIONS(5017), + [aux_sym_expr_binary_token5] = ACTIONS(5017), + [aux_sym_expr_binary_token6] = ACTIONS(5017), + [aux_sym_expr_binary_token7] = ACTIONS(5017), + [aux_sym_expr_binary_token8] = ACTIONS(5017), + [aux_sym_expr_binary_token9] = ACTIONS(5017), + [aux_sym_expr_binary_token10] = ACTIONS(5017), + [aux_sym_expr_binary_token11] = ACTIONS(5017), + [aux_sym_expr_binary_token12] = ACTIONS(5017), + [aux_sym_expr_binary_token13] = ACTIONS(5017), + [aux_sym_expr_binary_token14] = ACTIONS(5017), + [aux_sym_expr_binary_token15] = ACTIONS(5017), + [aux_sym_expr_binary_token16] = ACTIONS(5017), + [aux_sym_expr_binary_token17] = ACTIONS(5017), + [aux_sym_expr_binary_token18] = ACTIONS(5017), + [aux_sym_expr_binary_token19] = ACTIONS(5017), + [aux_sym_expr_binary_token20] = ACTIONS(5017), + [aux_sym_expr_binary_token21] = ACTIONS(5017), + [aux_sym_expr_binary_token22] = ACTIONS(5017), + [aux_sym_expr_binary_token23] = ACTIONS(5017), + [aux_sym_expr_binary_token24] = ACTIONS(5017), + [aux_sym_expr_binary_token25] = ACTIONS(5017), + [aux_sym_expr_binary_token26] = ACTIONS(5017), + [aux_sym_expr_binary_token27] = ACTIONS(5017), + [aux_sym_expr_binary_token28] = ACTIONS(5017), + [anon_sym_err_GT] = ACTIONS(5019), + [anon_sym_out_GT] = ACTIONS(5019), + [anon_sym_e_GT] = ACTIONS(5019), + [anon_sym_o_GT] = ACTIONS(5019), + [anon_sym_err_PLUSout_GT] = ACTIONS(5019), + [anon_sym_out_PLUSerr_GT] = ACTIONS(5019), + [anon_sym_o_PLUSe_GT] = ACTIONS(5019), + [anon_sym_e_PLUSo_GT] = ACTIONS(5019), + [anon_sym_err_GT_GT] = ACTIONS(5017), + [anon_sym_out_GT_GT] = ACTIONS(5017), + [anon_sym_e_GT_GT] = ACTIONS(5017), + [anon_sym_o_GT_GT] = ACTIONS(5017), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5017), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5017), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5017), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5017), + [anon_sym_POUND] = ACTIONS(249), + }, + [1555] = { + [sym__expr_parenthesized_immediate] = STATE(7580), + [sym_comment] = STATE(1555), + [anon_sym_true] = ACTIONS(5021), + [anon_sym_false] = ACTIONS(5021), + [anon_sym_null] = ACTIONS(5021), + [aux_sym_cmd_identifier_token38] = ACTIONS(5021), + [aux_sym_cmd_identifier_token39] = ACTIONS(5021), + [aux_sym_cmd_identifier_token40] = ACTIONS(5021), + [sym__newline] = ACTIONS(5021), + [anon_sym_SEMI] = ACTIONS(5021), + [anon_sym_PIPE] = ACTIONS(5021), + [anon_sym_err_GT_PIPE] = ACTIONS(5021), + [anon_sym_out_GT_PIPE] = ACTIONS(5021), + [anon_sym_e_GT_PIPE] = ACTIONS(5021), + [anon_sym_o_GT_PIPE] = ACTIONS(5021), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5021), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5021), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5021), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5021), + [anon_sym_LBRACK] = ACTIONS(5021), + [anon_sym_LPAREN] = ACTIONS(5023), + [anon_sym_RPAREN] = ACTIONS(5021), + [anon_sym_DOLLAR] = ACTIONS(5023), + [anon_sym_DASH_DASH] = ACTIONS(5021), + [anon_sym_DASH] = ACTIONS(5023), + [anon_sym_LBRACE] = ACTIONS(5021), + [anon_sym_DOT_DOT] = ACTIONS(5023), + [anon_sym_LPAREN2] = ACTIONS(4433), + [anon_sym_DOT_DOT_EQ] = ACTIONS(5021), + [anon_sym_DOT_DOT_LT] = ACTIONS(5021), + [aux_sym__val_number_decimal_token1] = ACTIONS(5023), + [aux_sym__val_number_decimal_token2] = ACTIONS(5021), + [aux_sym__val_number_decimal_token3] = ACTIONS(5021), + [aux_sym__val_number_decimal_token4] = ACTIONS(5021), + [aux_sym__val_number_token1] = ACTIONS(5021), + [aux_sym__val_number_token2] = ACTIONS(5021), + [aux_sym__val_number_token3] = ACTIONS(5021), + [anon_sym_0b] = ACTIONS(5023), + [anon_sym_0o] = ACTIONS(5023), + [anon_sym_0x] = ACTIONS(5023), + [sym_val_date] = ACTIONS(5021), + [anon_sym_DQUOTE] = ACTIONS(5021), + [sym__str_single_quotes] = ACTIONS(5021), + [sym__str_back_ticks] = ACTIONS(5021), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(5021), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(5021), + [anon_sym_err_GT] = ACTIONS(5023), + [anon_sym_out_GT] = ACTIONS(5023), + [anon_sym_e_GT] = ACTIONS(5023), + [anon_sym_o_GT] = ACTIONS(5023), + [anon_sym_err_PLUSout_GT] = ACTIONS(5023), + [anon_sym_out_PLUSerr_GT] = ACTIONS(5023), + [anon_sym_o_PLUSe_GT] = ACTIONS(5023), + [anon_sym_e_PLUSo_GT] = ACTIONS(5023), + [anon_sym_err_GT_GT] = ACTIONS(5021), + [anon_sym_out_GT_GT] = ACTIONS(5021), + [anon_sym_e_GT_GT] = ACTIONS(5021), + [anon_sym_o_GT_GT] = ACTIONS(5021), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5021), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5021), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5021), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5021), + [aux_sym_unquoted_token1] = ACTIONS(5023), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(5021), + }, + [1556] = { + [sym__expr_parenthesized_immediate] = STATE(7535), + [sym_comment] = STATE(1556), + [sym__newline] = ACTIONS(5017), + [anon_sym_SEMI] = ACTIONS(5017), + [anon_sym_PIPE] = ACTIONS(5017), + [anon_sym_err_GT_PIPE] = ACTIONS(5017), + [anon_sym_out_GT_PIPE] = ACTIONS(5017), + [anon_sym_e_GT_PIPE] = ACTIONS(5017), + [anon_sym_o_GT_PIPE] = ACTIONS(5017), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5017), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5017), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5017), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5017), + [anon_sym_RPAREN] = ACTIONS(5017), + [anon_sym_DASH_DASH] = ACTIONS(5017), + [anon_sym_DASH] = ACTIONS(5019), + [anon_sym_LBRACE] = ACTIONS(5017), + [anon_sym_RBRACE] = ACTIONS(5017), + [anon_sym_EQ_GT] = ACTIONS(5017), + [anon_sym_LPAREN2] = ACTIONS(4433), + [aux_sym_expr_binary_token1] = ACTIONS(5017), + [aux_sym_expr_binary_token2] = ACTIONS(5017), + [aux_sym_expr_binary_token3] = ACTIONS(5017), + [aux_sym_expr_binary_token4] = ACTIONS(5017), + [aux_sym_expr_binary_token5] = ACTIONS(5017), + [aux_sym_expr_binary_token6] = ACTIONS(5017), + [aux_sym_expr_binary_token7] = ACTIONS(5017), + [aux_sym_expr_binary_token8] = ACTIONS(5017), + [aux_sym_expr_binary_token9] = ACTIONS(5017), + [aux_sym_expr_binary_token10] = ACTIONS(5017), + [aux_sym_expr_binary_token11] = ACTIONS(5017), + [aux_sym_expr_binary_token12] = ACTIONS(5017), + [aux_sym_expr_binary_token13] = ACTIONS(5017), + [aux_sym_expr_binary_token14] = ACTIONS(5017), + [aux_sym_expr_binary_token15] = ACTIONS(5017), + [aux_sym_expr_binary_token16] = ACTIONS(5017), + [aux_sym_expr_binary_token17] = ACTIONS(5017), + [aux_sym_expr_binary_token18] = ACTIONS(5017), + [aux_sym_expr_binary_token19] = ACTIONS(5017), + [aux_sym_expr_binary_token20] = ACTIONS(5017), + [aux_sym_expr_binary_token21] = ACTIONS(5017), + [aux_sym_expr_binary_token22] = ACTIONS(5017), + [aux_sym_expr_binary_token23] = ACTIONS(5017), + [aux_sym_expr_binary_token24] = ACTIONS(5017), + [aux_sym_expr_binary_token25] = ACTIONS(5017), + [aux_sym_expr_binary_token26] = ACTIONS(5017), + [aux_sym_expr_binary_token27] = ACTIONS(5017), + [aux_sym_expr_binary_token28] = ACTIONS(5017), + [anon_sym_err_GT] = ACTIONS(5019), + [anon_sym_out_GT] = ACTIONS(5019), + [anon_sym_e_GT] = ACTIONS(5019), + [anon_sym_o_GT] = ACTIONS(5019), + [anon_sym_err_PLUSout_GT] = ACTIONS(5019), + [anon_sym_out_PLUSerr_GT] = ACTIONS(5019), + [anon_sym_o_PLUSe_GT] = ACTIONS(5019), + [anon_sym_e_PLUSo_GT] = ACTIONS(5019), + [anon_sym_err_GT_GT] = ACTIONS(5017), + [anon_sym_out_GT_GT] = ACTIONS(5017), + [anon_sym_e_GT_GT] = ACTIONS(5017), + [anon_sym_o_GT_GT] = ACTIONS(5017), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5017), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5017), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5017), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5017), + [anon_sym_POUND] = ACTIONS(249), + }, + [1557] = { + [sym_comment] = STATE(1557), + [ts_builtin_sym_end] = ACTIONS(1064), + [anon_sym_true] = ACTIONS(1064), + [anon_sym_false] = ACTIONS(1064), + [anon_sym_null] = ACTIONS(1064), + [aux_sym_cmd_identifier_token38] = ACTIONS(1064), + [aux_sym_cmd_identifier_token39] = ACTIONS(1064), + [aux_sym_cmd_identifier_token40] = ACTIONS(1064), + [sym__newline] = ACTIONS(1064), + [anon_sym_SEMI] = ACTIONS(1064), + [anon_sym_PIPE] = ACTIONS(1064), + [anon_sym_err_GT_PIPE] = ACTIONS(1064), + [anon_sym_out_GT_PIPE] = ACTIONS(1064), + [anon_sym_e_GT_PIPE] = ACTIONS(1064), + [anon_sym_o_GT_PIPE] = ACTIONS(1064), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1064), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1064), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1064), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1064), + [anon_sym_LBRACK] = ACTIONS(1064), + [anon_sym_LPAREN] = ACTIONS(1064), + [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_DASH_DASH] = ACTIONS(1064), + [anon_sym_DASH] = ACTIONS(1062), + [anon_sym_LBRACE] = ACTIONS(1064), + [anon_sym_DOT_DOT] = ACTIONS(1062), + [anon_sym_QMARK2] = ACTIONS(1064), + [anon_sym_DOT] = ACTIONS(1062), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1064), + [anon_sym_DOT_DOT_LT] = ACTIONS(1064), + [aux_sym__val_number_decimal_token1] = ACTIONS(1062), + [aux_sym__val_number_decimal_token2] = ACTIONS(1064), + [aux_sym__val_number_decimal_token3] = ACTIONS(1064), + [aux_sym__val_number_decimal_token4] = ACTIONS(1064), + [aux_sym__val_number_token1] = ACTIONS(1064), + [aux_sym__val_number_token2] = ACTIONS(1064), + [aux_sym__val_number_token3] = ACTIONS(1064), + [anon_sym_0b] = ACTIONS(1062), + [anon_sym_0o] = ACTIONS(1062), + [anon_sym_0x] = ACTIONS(1062), + [sym_val_date] = ACTIONS(1064), + [anon_sym_DQUOTE] = ACTIONS(1064), + [sym__str_single_quotes] = ACTIONS(1064), + [sym__str_back_ticks] = ACTIONS(1064), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1064), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1064), + [anon_sym_err_GT] = ACTIONS(1062), + [anon_sym_out_GT] = ACTIONS(1062), + [anon_sym_e_GT] = ACTIONS(1062), + [anon_sym_o_GT] = ACTIONS(1062), + [anon_sym_err_PLUSout_GT] = ACTIONS(1062), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1062), + [anon_sym_o_PLUSe_GT] = ACTIONS(1062), + [anon_sym_e_PLUSo_GT] = ACTIONS(1062), + [anon_sym_err_GT_GT] = ACTIONS(1064), + [anon_sym_out_GT_GT] = ACTIONS(1064), + [anon_sym_e_GT_GT] = ACTIONS(1064), + [anon_sym_o_GT_GT] = ACTIONS(1064), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1064), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1064), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1064), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1064), + [aux_sym_unquoted_token1] = ACTIONS(1062), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1064), + }, + [1558] = { + [sym_comment] = STATE(1558), + [ts_builtin_sym_end] = ACTIONS(1040), + [anon_sym_true] = ACTIONS(1040), + [anon_sym_false] = ACTIONS(1040), + [anon_sym_null] = ACTIONS(1040), + [aux_sym_cmd_identifier_token38] = ACTIONS(1040), + [aux_sym_cmd_identifier_token39] = ACTIONS(1040), + [aux_sym_cmd_identifier_token40] = ACTIONS(1040), + [sym__newline] = ACTIONS(1040), + [anon_sym_SEMI] = ACTIONS(1040), + [anon_sym_PIPE] = ACTIONS(1040), + [anon_sym_err_GT_PIPE] = ACTIONS(1040), + [anon_sym_out_GT_PIPE] = ACTIONS(1040), + [anon_sym_e_GT_PIPE] = ACTIONS(1040), + [anon_sym_o_GT_PIPE] = ACTIONS(1040), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1040), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1040), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1040), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1040), + [anon_sym_LBRACK] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_DOLLAR] = ACTIONS(1038), + [anon_sym_DASH_DASH] = ACTIONS(1040), + [anon_sym_DASH] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(1040), + [anon_sym_DOT_DOT] = ACTIONS(1038), + [anon_sym_QMARK2] = ACTIONS(1040), + [anon_sym_DOT] = ACTIONS(1038), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1040), + [anon_sym_DOT_DOT_LT] = ACTIONS(1040), + [aux_sym__val_number_decimal_token1] = ACTIONS(1038), + [aux_sym__val_number_decimal_token2] = ACTIONS(1040), + [aux_sym__val_number_decimal_token3] = ACTIONS(1040), + [aux_sym__val_number_decimal_token4] = ACTIONS(1040), + [aux_sym__val_number_token1] = ACTIONS(1040), + [aux_sym__val_number_token2] = ACTIONS(1040), + [aux_sym__val_number_token3] = ACTIONS(1040), + [anon_sym_0b] = ACTIONS(1038), + [anon_sym_0o] = ACTIONS(1038), + [anon_sym_0x] = ACTIONS(1038), + [sym_val_date] = ACTIONS(1040), + [anon_sym_DQUOTE] = ACTIONS(1040), + [sym__str_single_quotes] = ACTIONS(1040), + [sym__str_back_ticks] = ACTIONS(1040), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1040), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1040), + [anon_sym_err_GT] = ACTIONS(1038), + [anon_sym_out_GT] = ACTIONS(1038), + [anon_sym_e_GT] = ACTIONS(1038), + [anon_sym_o_GT] = ACTIONS(1038), + [anon_sym_err_PLUSout_GT] = ACTIONS(1038), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1038), + [anon_sym_o_PLUSe_GT] = ACTIONS(1038), + [anon_sym_e_PLUSo_GT] = ACTIONS(1038), + [anon_sym_err_GT_GT] = ACTIONS(1040), + [anon_sym_out_GT_GT] = ACTIONS(1040), + [anon_sym_e_GT_GT] = ACTIONS(1040), + [anon_sym_o_GT_GT] = ACTIONS(1040), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1040), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1040), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1040), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1040), + [aux_sym_unquoted_token1] = ACTIONS(1038), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1040), + }, + [1559] = { + [sym_comment] = STATE(1559), + [ts_builtin_sym_end] = ACTIONS(1056), + [anon_sym_true] = ACTIONS(1056), + [anon_sym_false] = ACTIONS(1056), + [anon_sym_null] = ACTIONS(1056), + [aux_sym_cmd_identifier_token38] = ACTIONS(1056), + [aux_sym_cmd_identifier_token39] = ACTIONS(1056), + [aux_sym_cmd_identifier_token40] = ACTIONS(1056), + [sym__newline] = ACTIONS(1056), + [anon_sym_SEMI] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(1056), + [anon_sym_err_GT_PIPE] = ACTIONS(1056), + [anon_sym_out_GT_PIPE] = ACTIONS(1056), + [anon_sym_e_GT_PIPE] = ACTIONS(1056), + [anon_sym_o_GT_PIPE] = ACTIONS(1056), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1056), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1056), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1056), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1056), + [anon_sym_LBRACK] = ACTIONS(1056), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_DOLLAR] = ACTIONS(1054), + [anon_sym_DASH_DASH] = ACTIONS(1056), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_LBRACE] = ACTIONS(1056), + [anon_sym_DOT_DOT] = ACTIONS(1054), + [anon_sym_QMARK2] = ACTIONS(1056), + [anon_sym_DOT] = ACTIONS(1054), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1056), + [anon_sym_DOT_DOT_LT] = ACTIONS(1056), + [aux_sym__val_number_decimal_token1] = ACTIONS(1054), + [aux_sym__val_number_decimal_token2] = ACTIONS(1056), + [aux_sym__val_number_decimal_token3] = ACTIONS(1056), + [aux_sym__val_number_decimal_token4] = ACTIONS(1056), + [aux_sym__val_number_token1] = ACTIONS(1056), + [aux_sym__val_number_token2] = ACTIONS(1056), + [aux_sym__val_number_token3] = ACTIONS(1056), + [anon_sym_0b] = ACTIONS(1054), + [anon_sym_0o] = ACTIONS(1054), + [anon_sym_0x] = ACTIONS(1054), + [sym_val_date] = ACTIONS(1056), + [anon_sym_DQUOTE] = ACTIONS(1056), + [sym__str_single_quotes] = ACTIONS(1056), + [sym__str_back_ticks] = ACTIONS(1056), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1056), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1056), + [anon_sym_err_GT] = ACTIONS(1054), + [anon_sym_out_GT] = ACTIONS(1054), + [anon_sym_e_GT] = ACTIONS(1054), + [anon_sym_o_GT] = ACTIONS(1054), + [anon_sym_err_PLUSout_GT] = ACTIONS(1054), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1054), + [anon_sym_o_PLUSe_GT] = ACTIONS(1054), + [anon_sym_e_PLUSo_GT] = ACTIONS(1054), + [anon_sym_err_GT_GT] = ACTIONS(1056), + [anon_sym_out_GT_GT] = ACTIONS(1056), + [anon_sym_e_GT_GT] = ACTIONS(1056), + [anon_sym_o_GT_GT] = ACTIONS(1056), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1056), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1056), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1056), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1056), + [aux_sym_unquoted_token1] = ACTIONS(1054), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1056), + }, + [1560] = { + [sym__expr_parenthesized_immediate] = STATE(7791), + [sym_comment] = STATE(1560), + [ts_builtin_sym_end] = ACTIONS(4848), + [anon_sym_true] = ACTIONS(4848), + [anon_sym_false] = ACTIONS(4848), + [anon_sym_null] = ACTIONS(4848), + [aux_sym_cmd_identifier_token38] = ACTIONS(4848), + [aux_sym_cmd_identifier_token39] = ACTIONS(4848), + [aux_sym_cmd_identifier_token40] = ACTIONS(4848), + [sym__newline] = ACTIONS(4848), + [anon_sym_SEMI] = ACTIONS(4848), + [anon_sym_PIPE] = ACTIONS(4848), + [anon_sym_err_GT_PIPE] = ACTIONS(4848), + [anon_sym_out_GT_PIPE] = ACTIONS(4848), + [anon_sym_e_GT_PIPE] = ACTIONS(4848), + [anon_sym_o_GT_PIPE] = ACTIONS(4848), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4848), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4848), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4848), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4848), + [anon_sym_LBRACK] = ACTIONS(4848), + [anon_sym_LPAREN] = ACTIONS(4850), + [anon_sym_DOLLAR] = ACTIONS(4850), + [anon_sym_DASH_DASH] = ACTIONS(4848), + [anon_sym_DASH] = ACTIONS(4850), + [anon_sym_LBRACE] = ACTIONS(4848), + [anon_sym_DOT_DOT] = ACTIONS(4850), + [anon_sym_LPAREN2] = ACTIONS(4433), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4848), + [anon_sym_DOT_DOT_LT] = ACTIONS(4848), + [aux_sym__val_number_decimal_token1] = ACTIONS(4850), + [aux_sym__val_number_decimal_token2] = ACTIONS(4848), + [aux_sym__val_number_decimal_token3] = ACTIONS(4848), + [aux_sym__val_number_decimal_token4] = ACTIONS(4848), + [aux_sym__val_number_token1] = ACTIONS(4848), + [aux_sym__val_number_token2] = ACTIONS(4848), + [aux_sym__val_number_token3] = ACTIONS(4848), + [anon_sym_0b] = ACTIONS(4850), + [anon_sym_0o] = ACTIONS(4850), + [anon_sym_0x] = ACTIONS(4850), + [sym_val_date] = ACTIONS(4848), + [anon_sym_DQUOTE] = ACTIONS(4848), + [sym__str_single_quotes] = ACTIONS(4848), + [sym__str_back_ticks] = ACTIONS(4848), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4848), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4848), + [anon_sym_err_GT] = ACTIONS(4850), + [anon_sym_out_GT] = ACTIONS(4850), + [anon_sym_e_GT] = ACTIONS(4850), + [anon_sym_o_GT] = ACTIONS(4850), + [anon_sym_err_PLUSout_GT] = ACTIONS(4850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4850), + [anon_sym_o_PLUSe_GT] = ACTIONS(4850), + [anon_sym_e_PLUSo_GT] = ACTIONS(4850), + [anon_sym_err_GT_GT] = ACTIONS(4848), + [anon_sym_out_GT_GT] = ACTIONS(4848), + [anon_sym_e_GT_GT] = ACTIONS(4848), + [anon_sym_o_GT_GT] = ACTIONS(4848), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4848), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4848), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4848), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4848), + [aux_sym_unquoted_token1] = ACTIONS(4850), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(4848), + }, + [1561] = { + [sym__expression] = STATE(5684), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3895), + [sym_expr_parenthesized] = STATE(3543), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(3542), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(3503), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym__flag] = STATE(2017), + [sym_short_flag] = STATE(3610), + [sym_long_flag] = STATE(3610), + [sym_comment] = STATE(1561), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [aux_sym_cmd_identifier_token38] = ACTIONS(227), + [aux_sym_cmd_identifier_token39] = ACTIONS(227), + [aux_sym_cmd_identifier_token40] = ACTIONS(227), + [anon_sym_LBRACK] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(4973), + [anon_sym_DOLLAR] = ACTIONS(4975), + [anon_sym_DASH_DASH] = ACTIONS(4977), + [anon_sym_DASH] = ACTIONS(4979), + [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_DOT_DOT] = ACTIONS(4981), + [aux_sym_expr_unary_token1] = ACTIONS(3412), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4983), + [anon_sym_DOT_DOT_LT] = ACTIONS(4983), + [aux_sym__val_number_decimal_token1] = ACTIONS(3414), + [aux_sym__val_number_decimal_token2] = ACTIONS(3416), + [aux_sym__val_number_decimal_token3] = ACTIONS(3418), + [aux_sym__val_number_decimal_token4] = ACTIONS(3420), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), + }, + [1562] = { + [sym_comment] = STATE(1562), + [ts_builtin_sym_end] = ACTIONS(1598), + [aux_sym_cmd_identifier_token41] = ACTIONS(1596), + [sym__newline] = ACTIONS(1598), + [anon_sym_SEMI] = ACTIONS(1598), + [anon_sym_PIPE] = ACTIONS(1598), + [anon_sym_err_GT_PIPE] = ACTIONS(1598), + [anon_sym_out_GT_PIPE] = ACTIONS(1598), + [anon_sym_e_GT_PIPE] = ACTIONS(1598), + [anon_sym_o_GT_PIPE] = ACTIONS(1598), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1598), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1598), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1598), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1598), + [aux_sym_expr_binary_token1] = ACTIONS(1598), + [aux_sym_expr_binary_token2] = ACTIONS(1598), + [aux_sym_expr_binary_token3] = ACTIONS(1598), + [aux_sym_expr_binary_token4] = ACTIONS(1598), + [aux_sym_expr_binary_token5] = ACTIONS(1598), + [aux_sym_expr_binary_token6] = ACTIONS(1598), + [aux_sym_expr_binary_token7] = ACTIONS(1598), + [aux_sym_expr_binary_token8] = ACTIONS(1598), + [aux_sym_expr_binary_token9] = ACTIONS(1598), + [aux_sym_expr_binary_token10] = ACTIONS(1598), + [aux_sym_expr_binary_token11] = ACTIONS(1598), + [aux_sym_expr_binary_token12] = ACTIONS(1598), + [aux_sym_expr_binary_token13] = ACTIONS(1598), + [aux_sym_expr_binary_token14] = ACTIONS(1598), + [aux_sym_expr_binary_token15] = ACTIONS(1598), + [aux_sym_expr_binary_token16] = ACTIONS(1598), + [aux_sym_expr_binary_token17] = ACTIONS(1598), + [aux_sym_expr_binary_token18] = ACTIONS(1598), + [aux_sym_expr_binary_token19] = ACTIONS(1598), + [aux_sym_expr_binary_token20] = ACTIONS(1598), + [aux_sym_expr_binary_token21] = ACTIONS(1598), + [aux_sym_expr_binary_token22] = ACTIONS(1598), + [aux_sym_expr_binary_token23] = ACTIONS(1598), + [aux_sym_expr_binary_token24] = ACTIONS(1598), + [aux_sym_expr_binary_token25] = ACTIONS(1598), + [aux_sym_expr_binary_token26] = ACTIONS(1598), + [aux_sym_expr_binary_token27] = ACTIONS(1598), + [aux_sym_expr_binary_token28] = ACTIONS(1598), + [anon_sym_DOT_DOT2] = ACTIONS(1596), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1598), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1598), + [aux_sym__immediate_decimal_token2] = ACTIONS(5025), + [sym_filesize_unit] = ACTIONS(1598), + [sym_duration_unit] = ACTIONS(1598), + [anon_sym_err_GT] = ACTIONS(1596), + [anon_sym_out_GT] = ACTIONS(1596), + [anon_sym_e_GT] = ACTIONS(1596), + [anon_sym_o_GT] = ACTIONS(1596), + [anon_sym_err_PLUSout_GT] = ACTIONS(1596), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1596), + [anon_sym_o_PLUSe_GT] = ACTIONS(1596), + [anon_sym_e_PLUSo_GT] = ACTIONS(1596), + [anon_sym_err_GT_GT] = ACTIONS(1598), + [anon_sym_out_GT_GT] = ACTIONS(1598), + [anon_sym_e_GT_GT] = ACTIONS(1598), + [anon_sym_o_GT_GT] = ACTIONS(1598), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1598), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1598), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1598), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1598), + [anon_sym_POUND] = ACTIONS(249), + }, + [1563] = { + [sym__expression] = STATE(5738), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3895), + [sym_expr_parenthesized] = STATE(3543), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(3542), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(3503), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym__flag] = STATE(2041), + [sym_short_flag] = STATE(3610), + [sym_long_flag] = STATE(3610), + [sym_comment] = STATE(1563), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [aux_sym_cmd_identifier_token38] = ACTIONS(227), + [aux_sym_cmd_identifier_token39] = ACTIONS(227), + [aux_sym_cmd_identifier_token40] = ACTIONS(227), + [anon_sym_LBRACK] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(4973), + [anon_sym_DOLLAR] = ACTIONS(4975), + [anon_sym_DASH_DASH] = ACTIONS(4977), + [anon_sym_DASH] = ACTIONS(4979), + [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_DOT_DOT] = ACTIONS(4981), + [aux_sym_expr_unary_token1] = ACTIONS(3412), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4983), + [anon_sym_DOT_DOT_LT] = ACTIONS(4983), + [aux_sym__val_number_decimal_token1] = ACTIONS(3414), + [aux_sym__val_number_decimal_token2] = ACTIONS(3416), + [aux_sym__val_number_decimal_token3] = ACTIONS(3418), + [aux_sym__val_number_decimal_token4] = ACTIONS(3420), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), + }, + [1564] = { + [sym__expression] = STATE(5740), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3895), + [sym_expr_parenthesized] = STATE(3543), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(3542), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(3503), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym__flag] = STATE(2043), + [sym_short_flag] = STATE(3610), + [sym_long_flag] = STATE(3610), + [sym_comment] = STATE(1564), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [aux_sym_cmd_identifier_token38] = ACTIONS(227), + [aux_sym_cmd_identifier_token39] = ACTIONS(227), + [aux_sym_cmd_identifier_token40] = ACTIONS(227), + [anon_sym_LBRACK] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(4973), + [anon_sym_DOLLAR] = ACTIONS(4975), + [anon_sym_DASH_DASH] = ACTIONS(4977), + [anon_sym_DASH] = ACTIONS(4979), + [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_DOT_DOT] = ACTIONS(4981), + [aux_sym_expr_unary_token1] = ACTIONS(3412), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4983), + [anon_sym_DOT_DOT_LT] = ACTIONS(4983), + [aux_sym__val_number_decimal_token1] = ACTIONS(3414), + [aux_sym__val_number_decimal_token2] = ACTIONS(3416), + [aux_sym__val_number_decimal_token3] = ACTIONS(3418), + [aux_sym__val_number_decimal_token4] = ACTIONS(3420), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), + }, + [1565] = { + [sym__expr_parenthesized_immediate] = STATE(7535), + [sym_comment] = STATE(1565), + [sym__newline] = ACTIONS(5017), + [anon_sym_SEMI] = ACTIONS(5017), + [anon_sym_PIPE] = ACTIONS(5017), + [anon_sym_err_GT_PIPE] = ACTIONS(5017), + [anon_sym_out_GT_PIPE] = ACTIONS(5017), + [anon_sym_e_GT_PIPE] = ACTIONS(5017), + [anon_sym_o_GT_PIPE] = ACTIONS(5017), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5017), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5017), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5017), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5017), + [anon_sym_RPAREN] = ACTIONS(5017), + [anon_sym_DASH_DASH] = ACTIONS(5017), + [anon_sym_DASH] = ACTIONS(5019), + [anon_sym_LBRACE] = ACTIONS(5017), + [anon_sym_RBRACE] = ACTIONS(5017), + [anon_sym_EQ_GT] = ACTIONS(5017), + [anon_sym_LPAREN2] = ACTIONS(4433), + [aux_sym_expr_binary_token1] = ACTIONS(5017), + [aux_sym_expr_binary_token2] = ACTIONS(5017), + [aux_sym_expr_binary_token3] = ACTIONS(5017), + [aux_sym_expr_binary_token4] = ACTIONS(5017), + [aux_sym_expr_binary_token5] = ACTIONS(5017), + [aux_sym_expr_binary_token6] = ACTIONS(5017), + [aux_sym_expr_binary_token7] = ACTIONS(5017), + [aux_sym_expr_binary_token8] = ACTIONS(5017), + [aux_sym_expr_binary_token9] = ACTIONS(5017), + [aux_sym_expr_binary_token10] = ACTIONS(5017), + [aux_sym_expr_binary_token11] = ACTIONS(5017), + [aux_sym_expr_binary_token12] = ACTIONS(5017), + [aux_sym_expr_binary_token13] = ACTIONS(5017), + [aux_sym_expr_binary_token14] = ACTIONS(5017), + [aux_sym_expr_binary_token15] = ACTIONS(5017), + [aux_sym_expr_binary_token16] = ACTIONS(5017), + [aux_sym_expr_binary_token17] = ACTIONS(5017), + [aux_sym_expr_binary_token18] = ACTIONS(5017), + [aux_sym_expr_binary_token19] = ACTIONS(5017), + [aux_sym_expr_binary_token20] = ACTIONS(5017), + [aux_sym_expr_binary_token21] = ACTIONS(5017), + [aux_sym_expr_binary_token22] = ACTIONS(5017), + [aux_sym_expr_binary_token23] = ACTIONS(5017), + [aux_sym_expr_binary_token24] = ACTIONS(5017), + [aux_sym_expr_binary_token25] = ACTIONS(5017), + [aux_sym_expr_binary_token26] = ACTIONS(5017), + [aux_sym_expr_binary_token27] = ACTIONS(5017), + [aux_sym_expr_binary_token28] = ACTIONS(5017), + [anon_sym_err_GT] = ACTIONS(5019), + [anon_sym_out_GT] = ACTIONS(5019), + [anon_sym_e_GT] = ACTIONS(5019), + [anon_sym_o_GT] = ACTIONS(5019), + [anon_sym_err_PLUSout_GT] = ACTIONS(5019), + [anon_sym_out_PLUSerr_GT] = ACTIONS(5019), + [anon_sym_o_PLUSe_GT] = ACTIONS(5019), + [anon_sym_e_PLUSo_GT] = ACTIONS(5019), + [anon_sym_err_GT_GT] = ACTIONS(5017), + [anon_sym_out_GT_GT] = ACTIONS(5017), + [anon_sym_e_GT_GT] = ACTIONS(5017), + [anon_sym_o_GT_GT] = ACTIONS(5017), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5017), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5017), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5017), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5017), + [anon_sym_POUND] = ACTIONS(249), + }, + [1566] = { + [sym__expression] = STATE(5642), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3895), + [sym_expr_parenthesized] = STATE(3543), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(3542), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(3503), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym__flag] = STATE(2052), + [sym_short_flag] = STATE(3610), + [sym_long_flag] = STATE(3610), + [sym_comment] = STATE(1566), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [aux_sym_cmd_identifier_token38] = ACTIONS(227), + [aux_sym_cmd_identifier_token39] = ACTIONS(227), + [aux_sym_cmd_identifier_token40] = ACTIONS(227), + [anon_sym_LBRACK] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(4973), + [anon_sym_DOLLAR] = ACTIONS(4975), + [anon_sym_DASH_DASH] = ACTIONS(4977), + [anon_sym_DASH] = ACTIONS(4979), + [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_DOT_DOT] = ACTIONS(4981), + [aux_sym_expr_unary_token1] = ACTIONS(3412), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4983), + [anon_sym_DOT_DOT_LT] = ACTIONS(4983), + [aux_sym__val_number_decimal_token1] = ACTIONS(3414), + [aux_sym__val_number_decimal_token2] = ACTIONS(3416), + [aux_sym__val_number_decimal_token3] = ACTIONS(3418), + [aux_sym__val_number_decimal_token4] = ACTIONS(3420), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), + }, + [1567] = { + [sym__expr_parenthesized_immediate] = STATE(7535), + [sym_comment] = STATE(1567), + [sym__newline] = ACTIONS(5017), + [anon_sym_SEMI] = ACTIONS(5017), + [anon_sym_PIPE] = ACTIONS(5017), + [anon_sym_err_GT_PIPE] = ACTIONS(5017), + [anon_sym_out_GT_PIPE] = ACTIONS(5017), + [anon_sym_e_GT_PIPE] = ACTIONS(5017), + [anon_sym_o_GT_PIPE] = ACTIONS(5017), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5017), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5017), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5017), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5017), + [anon_sym_RPAREN] = ACTIONS(5017), + [anon_sym_DASH_DASH] = ACTIONS(5017), + [anon_sym_DASH] = ACTIONS(5019), + [anon_sym_LBRACE] = ACTIONS(5017), + [anon_sym_RBRACE] = ACTIONS(5017), + [anon_sym_EQ_GT] = ACTIONS(5017), + [anon_sym_LPAREN2] = ACTIONS(4433), + [aux_sym_expr_binary_token1] = ACTIONS(5017), + [aux_sym_expr_binary_token2] = ACTIONS(5017), + [aux_sym_expr_binary_token3] = ACTIONS(5017), + [aux_sym_expr_binary_token4] = ACTIONS(5017), + [aux_sym_expr_binary_token5] = ACTIONS(5017), + [aux_sym_expr_binary_token6] = ACTIONS(5017), + [aux_sym_expr_binary_token7] = ACTIONS(5017), + [aux_sym_expr_binary_token8] = ACTIONS(5017), + [aux_sym_expr_binary_token9] = ACTIONS(5017), + [aux_sym_expr_binary_token10] = ACTIONS(5017), + [aux_sym_expr_binary_token11] = ACTIONS(5017), + [aux_sym_expr_binary_token12] = ACTIONS(5017), + [aux_sym_expr_binary_token13] = ACTIONS(5017), + [aux_sym_expr_binary_token14] = ACTIONS(5017), + [aux_sym_expr_binary_token15] = ACTIONS(5017), + [aux_sym_expr_binary_token16] = ACTIONS(5017), + [aux_sym_expr_binary_token17] = ACTIONS(5017), + [aux_sym_expr_binary_token18] = ACTIONS(5017), + [aux_sym_expr_binary_token19] = ACTIONS(5017), + [aux_sym_expr_binary_token20] = ACTIONS(5017), + [aux_sym_expr_binary_token21] = ACTIONS(5017), + [aux_sym_expr_binary_token22] = ACTIONS(5017), + [aux_sym_expr_binary_token23] = ACTIONS(5017), + [aux_sym_expr_binary_token24] = ACTIONS(5017), + [aux_sym_expr_binary_token25] = ACTIONS(5017), + [aux_sym_expr_binary_token26] = ACTIONS(5017), + [aux_sym_expr_binary_token27] = ACTIONS(5017), + [aux_sym_expr_binary_token28] = ACTIONS(5017), + [anon_sym_err_GT] = ACTIONS(5019), + [anon_sym_out_GT] = ACTIONS(5019), + [anon_sym_e_GT] = ACTIONS(5019), + [anon_sym_o_GT] = ACTIONS(5019), + [anon_sym_err_PLUSout_GT] = ACTIONS(5019), + [anon_sym_out_PLUSerr_GT] = ACTIONS(5019), + [anon_sym_o_PLUSe_GT] = ACTIONS(5019), + [anon_sym_e_PLUSo_GT] = ACTIONS(5019), + [anon_sym_err_GT_GT] = ACTIONS(5017), + [anon_sym_out_GT_GT] = ACTIONS(5017), + [anon_sym_e_GT_GT] = ACTIONS(5017), + [anon_sym_o_GT_GT] = ACTIONS(5017), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5017), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5017), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5017), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5017), + [anon_sym_POUND] = ACTIONS(249), + }, + [1568] = { + [sym__expr_parenthesized_immediate] = STATE(7535), + [sym_comment] = STATE(1568), + [sym__newline] = ACTIONS(5017), + [anon_sym_SEMI] = ACTIONS(5017), + [anon_sym_PIPE] = ACTIONS(5017), + [anon_sym_err_GT_PIPE] = ACTIONS(5017), + [anon_sym_out_GT_PIPE] = ACTIONS(5017), + [anon_sym_e_GT_PIPE] = ACTIONS(5017), + [anon_sym_o_GT_PIPE] = ACTIONS(5017), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5017), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5017), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5017), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5017), + [anon_sym_RPAREN] = ACTIONS(5017), + [anon_sym_DASH_DASH] = ACTIONS(5017), + [anon_sym_DASH] = ACTIONS(5019), + [anon_sym_LBRACE] = ACTIONS(5017), + [anon_sym_RBRACE] = ACTIONS(5017), + [anon_sym_EQ_GT] = ACTIONS(5017), + [anon_sym_LPAREN2] = ACTIONS(4433), + [aux_sym_expr_binary_token1] = ACTIONS(5017), + [aux_sym_expr_binary_token2] = ACTIONS(5017), + [aux_sym_expr_binary_token3] = ACTIONS(5017), + [aux_sym_expr_binary_token4] = ACTIONS(5017), + [aux_sym_expr_binary_token5] = ACTIONS(5017), + [aux_sym_expr_binary_token6] = ACTIONS(5017), + [aux_sym_expr_binary_token7] = ACTIONS(5017), + [aux_sym_expr_binary_token8] = ACTIONS(5017), + [aux_sym_expr_binary_token9] = ACTIONS(5017), + [aux_sym_expr_binary_token10] = ACTIONS(5017), + [aux_sym_expr_binary_token11] = ACTIONS(5017), + [aux_sym_expr_binary_token12] = ACTIONS(5017), + [aux_sym_expr_binary_token13] = ACTIONS(5017), + [aux_sym_expr_binary_token14] = ACTIONS(5017), + [aux_sym_expr_binary_token15] = ACTIONS(5017), + [aux_sym_expr_binary_token16] = ACTIONS(5017), + [aux_sym_expr_binary_token17] = ACTIONS(5017), + [aux_sym_expr_binary_token18] = ACTIONS(5017), + [aux_sym_expr_binary_token19] = ACTIONS(5017), + [aux_sym_expr_binary_token20] = ACTIONS(5017), + [aux_sym_expr_binary_token21] = ACTIONS(5017), + [aux_sym_expr_binary_token22] = ACTIONS(5017), + [aux_sym_expr_binary_token23] = ACTIONS(5017), + [aux_sym_expr_binary_token24] = ACTIONS(5017), + [aux_sym_expr_binary_token25] = ACTIONS(5017), + [aux_sym_expr_binary_token26] = ACTIONS(5017), + [aux_sym_expr_binary_token27] = ACTIONS(5017), + [aux_sym_expr_binary_token28] = ACTIONS(5017), + [anon_sym_err_GT] = ACTIONS(5019), + [anon_sym_out_GT] = ACTIONS(5019), + [anon_sym_e_GT] = ACTIONS(5019), + [anon_sym_o_GT] = ACTIONS(5019), + [anon_sym_err_PLUSout_GT] = ACTIONS(5019), + [anon_sym_out_PLUSerr_GT] = ACTIONS(5019), + [anon_sym_o_PLUSe_GT] = ACTIONS(5019), + [anon_sym_e_PLUSo_GT] = ACTIONS(5019), + [anon_sym_err_GT_GT] = ACTIONS(5017), + [anon_sym_out_GT_GT] = ACTIONS(5017), + [anon_sym_e_GT_GT] = ACTIONS(5017), + [anon_sym_o_GT_GT] = ACTIONS(5017), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5017), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5017), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5017), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5017), + [anon_sym_POUND] = ACTIONS(249), + }, + [1569] = { + [sym_comment] = STATE(1569), + [aux_sym_cmd_identifier_token41] = ACTIONS(5027), + [sym__newline] = ACTIONS(1640), + [anon_sym_SEMI] = ACTIONS(1640), + [anon_sym_PIPE] = ACTIONS(1640), + [anon_sym_err_GT_PIPE] = ACTIONS(1640), + [anon_sym_out_GT_PIPE] = ACTIONS(1640), + [anon_sym_e_GT_PIPE] = ACTIONS(1640), + [anon_sym_o_GT_PIPE] = ACTIONS(1640), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1640), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1640), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1640), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1640), + [anon_sym_RPAREN] = ACTIONS(1640), + [anon_sym_RBRACE] = ACTIONS(1640), + [aux_sym_expr_binary_token1] = ACTIONS(1640), + [aux_sym_expr_binary_token2] = ACTIONS(1640), + [aux_sym_expr_binary_token3] = ACTIONS(1640), + [aux_sym_expr_binary_token4] = ACTIONS(1640), + [aux_sym_expr_binary_token5] = ACTIONS(1640), + [aux_sym_expr_binary_token6] = ACTIONS(1640), + [aux_sym_expr_binary_token7] = ACTIONS(1640), + [aux_sym_expr_binary_token8] = ACTIONS(1640), + [aux_sym_expr_binary_token9] = ACTIONS(1640), + [aux_sym_expr_binary_token10] = ACTIONS(1640), + [aux_sym_expr_binary_token11] = ACTIONS(1640), + [aux_sym_expr_binary_token12] = ACTIONS(1640), + [aux_sym_expr_binary_token13] = ACTIONS(1640), + [aux_sym_expr_binary_token14] = ACTIONS(1640), + [aux_sym_expr_binary_token15] = ACTIONS(1640), + [aux_sym_expr_binary_token16] = ACTIONS(1640), + [aux_sym_expr_binary_token17] = ACTIONS(1640), + [aux_sym_expr_binary_token18] = ACTIONS(1640), + [aux_sym_expr_binary_token19] = ACTIONS(1640), + [aux_sym_expr_binary_token20] = ACTIONS(1640), + [aux_sym_expr_binary_token21] = ACTIONS(1640), + [aux_sym_expr_binary_token22] = ACTIONS(1640), + [aux_sym_expr_binary_token23] = ACTIONS(1640), + [aux_sym_expr_binary_token24] = ACTIONS(1640), + [aux_sym_expr_binary_token25] = ACTIONS(1640), + [aux_sym_expr_binary_token26] = ACTIONS(1640), + [aux_sym_expr_binary_token27] = ACTIONS(1640), + [aux_sym_expr_binary_token28] = ACTIONS(1640), + [anon_sym_DOT_DOT2] = ACTIONS(5029), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(5031), + [anon_sym_DOT_DOT_LT2] = ACTIONS(5031), + [sym_filesize_unit] = ACTIONS(5033), + [sym_duration_unit] = ACTIONS(5035), + [anon_sym_err_GT] = ACTIONS(1628), + [anon_sym_out_GT] = ACTIONS(1628), + [anon_sym_e_GT] = ACTIONS(1628), + [anon_sym_o_GT] = ACTIONS(1628), + [anon_sym_err_PLUSout_GT] = ACTIONS(1628), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1628), + [anon_sym_o_PLUSe_GT] = ACTIONS(1628), + [anon_sym_e_PLUSo_GT] = ACTIONS(1628), + [anon_sym_err_GT_GT] = ACTIONS(1640), + [anon_sym_out_GT_GT] = ACTIONS(1640), + [anon_sym_e_GT_GT] = ACTIONS(1640), + [anon_sym_o_GT_GT] = ACTIONS(1640), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1640), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1640), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1640), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1640), + [anon_sym_POUND] = ACTIONS(249), + }, + [1570] = { + [sym__expr_parenthesized_immediate] = STATE(7535), + [sym_comment] = STATE(1570), + [sym__newline] = ACTIONS(5017), + [anon_sym_SEMI] = ACTIONS(5017), + [anon_sym_PIPE] = ACTIONS(5017), + [anon_sym_err_GT_PIPE] = ACTIONS(5017), + [anon_sym_out_GT_PIPE] = ACTIONS(5017), + [anon_sym_e_GT_PIPE] = ACTIONS(5017), + [anon_sym_o_GT_PIPE] = ACTIONS(5017), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5017), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5017), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5017), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5017), + [anon_sym_RPAREN] = ACTIONS(5017), + [anon_sym_DASH_DASH] = ACTIONS(5017), + [anon_sym_DASH] = ACTIONS(5019), + [anon_sym_LBRACE] = ACTIONS(5017), + [anon_sym_RBRACE] = ACTIONS(5017), + [anon_sym_EQ_GT] = ACTIONS(5017), + [anon_sym_LPAREN2] = ACTIONS(4433), + [aux_sym_expr_binary_token1] = ACTIONS(5017), + [aux_sym_expr_binary_token2] = ACTIONS(5017), + [aux_sym_expr_binary_token3] = ACTIONS(5017), + [aux_sym_expr_binary_token4] = ACTIONS(5017), + [aux_sym_expr_binary_token5] = ACTIONS(5017), + [aux_sym_expr_binary_token6] = ACTIONS(5017), + [aux_sym_expr_binary_token7] = ACTIONS(5017), + [aux_sym_expr_binary_token8] = ACTIONS(5017), + [aux_sym_expr_binary_token9] = ACTIONS(5017), + [aux_sym_expr_binary_token10] = ACTIONS(5017), + [aux_sym_expr_binary_token11] = ACTIONS(5017), + [aux_sym_expr_binary_token12] = ACTIONS(5017), + [aux_sym_expr_binary_token13] = ACTIONS(5017), + [aux_sym_expr_binary_token14] = ACTIONS(5017), + [aux_sym_expr_binary_token15] = ACTIONS(5017), + [aux_sym_expr_binary_token16] = ACTIONS(5017), + [aux_sym_expr_binary_token17] = ACTIONS(5017), + [aux_sym_expr_binary_token18] = ACTIONS(5017), + [aux_sym_expr_binary_token19] = ACTIONS(5017), + [aux_sym_expr_binary_token20] = ACTIONS(5017), + [aux_sym_expr_binary_token21] = ACTIONS(5017), + [aux_sym_expr_binary_token22] = ACTIONS(5017), + [aux_sym_expr_binary_token23] = ACTIONS(5017), + [aux_sym_expr_binary_token24] = ACTIONS(5017), + [aux_sym_expr_binary_token25] = ACTIONS(5017), + [aux_sym_expr_binary_token26] = ACTIONS(5017), + [aux_sym_expr_binary_token27] = ACTIONS(5017), + [aux_sym_expr_binary_token28] = ACTIONS(5017), + [anon_sym_err_GT] = ACTIONS(5019), + [anon_sym_out_GT] = ACTIONS(5019), + [anon_sym_e_GT] = ACTIONS(5019), + [anon_sym_o_GT] = ACTIONS(5019), + [anon_sym_err_PLUSout_GT] = ACTIONS(5019), + [anon_sym_out_PLUSerr_GT] = ACTIONS(5019), + [anon_sym_o_PLUSe_GT] = ACTIONS(5019), + [anon_sym_e_PLUSo_GT] = ACTIONS(5019), + [anon_sym_err_GT_GT] = ACTIONS(5017), + [anon_sym_out_GT_GT] = ACTIONS(5017), + [anon_sym_e_GT_GT] = ACTIONS(5017), + [anon_sym_o_GT_GT] = ACTIONS(5017), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5017), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5017), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5017), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5017), + [anon_sym_POUND] = ACTIONS(249), + }, + [1571] = { + [sym__expr_parenthesized_immediate] = STATE(7791), + [sym_comment] = STATE(1571), + [sym__newline] = ACTIONS(4844), + [anon_sym_SEMI] = ACTIONS(4844), + [anon_sym_PIPE] = ACTIONS(4844), + [anon_sym_err_GT_PIPE] = ACTIONS(4844), + [anon_sym_out_GT_PIPE] = ACTIONS(4844), + [anon_sym_e_GT_PIPE] = ACTIONS(4844), + [anon_sym_o_GT_PIPE] = ACTIONS(4844), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4844), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4844), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4844), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4844), + [anon_sym_RPAREN] = ACTIONS(4844), + [anon_sym_DASH_DASH] = ACTIONS(4844), + [anon_sym_DASH] = ACTIONS(4846), + [anon_sym_LBRACE] = ACTIONS(4844), + [anon_sym_RBRACE] = ACTIONS(4844), + [anon_sym_EQ_GT] = ACTIONS(4844), + [anon_sym_LPAREN2] = ACTIONS(4433), + [aux_sym_expr_binary_token1] = ACTIONS(4844), + [aux_sym_expr_binary_token2] = ACTIONS(4844), + [aux_sym_expr_binary_token3] = ACTIONS(4844), + [aux_sym_expr_binary_token4] = ACTIONS(4844), + [aux_sym_expr_binary_token5] = ACTIONS(4844), + [aux_sym_expr_binary_token6] = ACTIONS(4844), + [aux_sym_expr_binary_token7] = ACTIONS(4844), + [aux_sym_expr_binary_token8] = ACTIONS(4844), + [aux_sym_expr_binary_token9] = ACTIONS(4844), + [aux_sym_expr_binary_token10] = ACTIONS(4844), + [aux_sym_expr_binary_token11] = ACTIONS(4844), + [aux_sym_expr_binary_token12] = ACTIONS(4844), + [aux_sym_expr_binary_token13] = ACTIONS(4844), + [aux_sym_expr_binary_token14] = ACTIONS(4844), + [aux_sym_expr_binary_token15] = ACTIONS(4844), + [aux_sym_expr_binary_token16] = ACTIONS(4844), + [aux_sym_expr_binary_token17] = ACTIONS(4844), + [aux_sym_expr_binary_token18] = ACTIONS(4844), + [aux_sym_expr_binary_token19] = ACTIONS(4844), + [aux_sym_expr_binary_token20] = ACTIONS(4844), + [aux_sym_expr_binary_token21] = ACTIONS(4844), + [aux_sym_expr_binary_token22] = ACTIONS(4844), + [aux_sym_expr_binary_token23] = ACTIONS(4844), + [aux_sym_expr_binary_token24] = ACTIONS(4844), + [aux_sym_expr_binary_token25] = ACTIONS(4844), + [aux_sym_expr_binary_token26] = ACTIONS(4844), + [aux_sym_expr_binary_token27] = ACTIONS(4844), + [aux_sym_expr_binary_token28] = ACTIONS(4844), + [anon_sym_err_GT] = ACTIONS(4846), + [anon_sym_out_GT] = ACTIONS(4846), + [anon_sym_e_GT] = ACTIONS(4846), + [anon_sym_o_GT] = ACTIONS(4846), + [anon_sym_err_PLUSout_GT] = ACTIONS(4846), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4846), + [anon_sym_o_PLUSe_GT] = ACTIONS(4846), + [anon_sym_e_PLUSo_GT] = ACTIONS(4846), + [anon_sym_err_GT_GT] = ACTIONS(4844), + [anon_sym_out_GT_GT] = ACTIONS(4844), + [anon_sym_e_GT_GT] = ACTIONS(4844), + [anon_sym_o_GT_GT] = ACTIONS(4844), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4844), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4844), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4844), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4844), + [anon_sym_POUND] = ACTIONS(249), + }, + [1572] = { + [sym__expr_parenthesized_immediate] = STATE(7535), + [sym_comment] = STATE(1572), + [sym__newline] = ACTIONS(5017), + [anon_sym_SEMI] = ACTIONS(5017), + [anon_sym_PIPE] = ACTIONS(5017), + [anon_sym_err_GT_PIPE] = ACTIONS(5017), + [anon_sym_out_GT_PIPE] = ACTIONS(5017), + [anon_sym_e_GT_PIPE] = ACTIONS(5017), + [anon_sym_o_GT_PIPE] = ACTIONS(5017), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5017), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5017), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5017), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5017), + [anon_sym_RPAREN] = ACTIONS(5017), + [anon_sym_DASH_DASH] = ACTIONS(5017), + [anon_sym_DASH] = ACTIONS(5019), + [anon_sym_LBRACE] = ACTIONS(5017), + [anon_sym_RBRACE] = ACTIONS(5017), + [anon_sym_EQ_GT] = ACTIONS(5017), + [anon_sym_LPAREN2] = ACTIONS(4433), + [aux_sym_expr_binary_token1] = ACTIONS(5017), + [aux_sym_expr_binary_token2] = ACTIONS(5017), + [aux_sym_expr_binary_token3] = ACTIONS(5017), + [aux_sym_expr_binary_token4] = ACTIONS(5017), + [aux_sym_expr_binary_token5] = ACTIONS(5017), + [aux_sym_expr_binary_token6] = ACTIONS(5017), + [aux_sym_expr_binary_token7] = ACTIONS(5017), + [aux_sym_expr_binary_token8] = ACTIONS(5017), + [aux_sym_expr_binary_token9] = ACTIONS(5017), + [aux_sym_expr_binary_token10] = ACTIONS(5017), + [aux_sym_expr_binary_token11] = ACTIONS(5017), + [aux_sym_expr_binary_token12] = ACTIONS(5017), + [aux_sym_expr_binary_token13] = ACTIONS(5017), + [aux_sym_expr_binary_token14] = ACTIONS(5017), + [aux_sym_expr_binary_token15] = ACTIONS(5017), + [aux_sym_expr_binary_token16] = ACTIONS(5017), + [aux_sym_expr_binary_token17] = ACTIONS(5017), + [aux_sym_expr_binary_token18] = ACTIONS(5017), + [aux_sym_expr_binary_token19] = ACTIONS(5017), + [aux_sym_expr_binary_token20] = ACTIONS(5017), + [aux_sym_expr_binary_token21] = ACTIONS(5017), + [aux_sym_expr_binary_token22] = ACTIONS(5017), + [aux_sym_expr_binary_token23] = ACTIONS(5017), + [aux_sym_expr_binary_token24] = ACTIONS(5017), + [aux_sym_expr_binary_token25] = ACTIONS(5017), + [aux_sym_expr_binary_token26] = ACTIONS(5017), + [aux_sym_expr_binary_token27] = ACTIONS(5017), + [aux_sym_expr_binary_token28] = ACTIONS(5017), + [anon_sym_err_GT] = ACTIONS(5019), + [anon_sym_out_GT] = ACTIONS(5019), + [anon_sym_e_GT] = ACTIONS(5019), + [anon_sym_o_GT] = ACTIONS(5019), + [anon_sym_err_PLUSout_GT] = ACTIONS(5019), + [anon_sym_out_PLUSerr_GT] = ACTIONS(5019), + [anon_sym_o_PLUSe_GT] = ACTIONS(5019), + [anon_sym_e_PLUSo_GT] = ACTIONS(5019), + [anon_sym_err_GT_GT] = ACTIONS(5017), + [anon_sym_out_GT_GT] = ACTIONS(5017), + [anon_sym_e_GT_GT] = ACTIONS(5017), + [anon_sym_o_GT_GT] = ACTIONS(5017), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5017), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5017), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5017), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5017), + [anon_sym_POUND] = ACTIONS(249), + }, + [1573] = { + [sym__expr_parenthesized_immediate] = STATE(7791), + [sym_comment] = STATE(1573), + [sym__newline] = ACTIONS(4848), + [anon_sym_SEMI] = ACTIONS(4848), + [anon_sym_PIPE] = ACTIONS(4848), + [anon_sym_err_GT_PIPE] = ACTIONS(4848), + [anon_sym_out_GT_PIPE] = ACTIONS(4848), + [anon_sym_e_GT_PIPE] = ACTIONS(4848), + [anon_sym_o_GT_PIPE] = ACTIONS(4848), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4848), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4848), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4848), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4848), + [anon_sym_RPAREN] = ACTIONS(4848), + [anon_sym_DASH_DASH] = ACTIONS(4848), + [anon_sym_DASH] = ACTIONS(4850), + [anon_sym_LBRACE] = ACTIONS(4848), + [anon_sym_RBRACE] = ACTIONS(4848), + [anon_sym_EQ_GT] = ACTIONS(4848), + [anon_sym_LPAREN2] = ACTIONS(4433), + [aux_sym_expr_binary_token1] = ACTIONS(4848), + [aux_sym_expr_binary_token2] = ACTIONS(4848), + [aux_sym_expr_binary_token3] = ACTIONS(4848), + [aux_sym_expr_binary_token4] = ACTIONS(4848), + [aux_sym_expr_binary_token5] = ACTIONS(4848), + [aux_sym_expr_binary_token6] = ACTIONS(4848), + [aux_sym_expr_binary_token7] = ACTIONS(4848), + [aux_sym_expr_binary_token8] = ACTIONS(4848), + [aux_sym_expr_binary_token9] = ACTIONS(4848), + [aux_sym_expr_binary_token10] = ACTIONS(4848), + [aux_sym_expr_binary_token11] = ACTIONS(4848), + [aux_sym_expr_binary_token12] = ACTIONS(4848), + [aux_sym_expr_binary_token13] = ACTIONS(4848), + [aux_sym_expr_binary_token14] = ACTIONS(4848), + [aux_sym_expr_binary_token15] = ACTIONS(4848), + [aux_sym_expr_binary_token16] = ACTIONS(4848), + [aux_sym_expr_binary_token17] = ACTIONS(4848), + [aux_sym_expr_binary_token18] = ACTIONS(4848), + [aux_sym_expr_binary_token19] = ACTIONS(4848), + [aux_sym_expr_binary_token20] = ACTIONS(4848), + [aux_sym_expr_binary_token21] = ACTIONS(4848), + [aux_sym_expr_binary_token22] = ACTIONS(4848), + [aux_sym_expr_binary_token23] = ACTIONS(4848), + [aux_sym_expr_binary_token24] = ACTIONS(4848), + [aux_sym_expr_binary_token25] = ACTIONS(4848), + [aux_sym_expr_binary_token26] = ACTIONS(4848), + [aux_sym_expr_binary_token27] = ACTIONS(4848), + [aux_sym_expr_binary_token28] = ACTIONS(4848), + [anon_sym_err_GT] = ACTIONS(4850), + [anon_sym_out_GT] = ACTIONS(4850), + [anon_sym_e_GT] = ACTIONS(4850), + [anon_sym_o_GT] = ACTIONS(4850), + [anon_sym_err_PLUSout_GT] = ACTIONS(4850), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4850), + [anon_sym_o_PLUSe_GT] = ACTIONS(4850), + [anon_sym_e_PLUSo_GT] = ACTIONS(4850), + [anon_sym_err_GT_GT] = ACTIONS(4848), + [anon_sym_out_GT_GT] = ACTIONS(4848), + [anon_sym_e_GT_GT] = ACTIONS(4848), + [anon_sym_o_GT_GT] = ACTIONS(4848), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4848), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4848), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4848), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4848), + [anon_sym_POUND] = ACTIONS(249), + }, + [1574] = { + [sym__expr_parenthesized_immediate] = STATE(7535), + [sym_comment] = STATE(1574), + [sym__newline] = ACTIONS(5017), + [anon_sym_SEMI] = ACTIONS(5017), + [anon_sym_PIPE] = ACTIONS(5017), + [anon_sym_err_GT_PIPE] = ACTIONS(5017), + [anon_sym_out_GT_PIPE] = ACTIONS(5017), + [anon_sym_e_GT_PIPE] = ACTIONS(5017), + [anon_sym_o_GT_PIPE] = ACTIONS(5017), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5017), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5017), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5017), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5017), + [anon_sym_RPAREN] = ACTIONS(5017), + [anon_sym_DASH_DASH] = ACTIONS(5017), + [anon_sym_DASH] = ACTIONS(5019), + [anon_sym_LBRACE] = ACTIONS(5017), + [anon_sym_RBRACE] = ACTIONS(5017), + [anon_sym_EQ_GT] = ACTIONS(5017), + [anon_sym_LPAREN2] = ACTIONS(4433), + [aux_sym_expr_binary_token1] = ACTIONS(5017), + [aux_sym_expr_binary_token2] = ACTIONS(5017), + [aux_sym_expr_binary_token3] = ACTIONS(5017), + [aux_sym_expr_binary_token4] = ACTIONS(5017), + [aux_sym_expr_binary_token5] = ACTIONS(5017), + [aux_sym_expr_binary_token6] = ACTIONS(5017), + [aux_sym_expr_binary_token7] = ACTIONS(5017), + [aux_sym_expr_binary_token8] = ACTIONS(5017), + [aux_sym_expr_binary_token9] = ACTIONS(5017), + [aux_sym_expr_binary_token10] = ACTIONS(5017), + [aux_sym_expr_binary_token11] = ACTIONS(5017), + [aux_sym_expr_binary_token12] = ACTIONS(5017), + [aux_sym_expr_binary_token13] = ACTIONS(5017), + [aux_sym_expr_binary_token14] = ACTIONS(5017), + [aux_sym_expr_binary_token15] = ACTIONS(5017), + [aux_sym_expr_binary_token16] = ACTIONS(5017), + [aux_sym_expr_binary_token17] = ACTIONS(5017), + [aux_sym_expr_binary_token18] = ACTIONS(5017), + [aux_sym_expr_binary_token19] = ACTIONS(5017), + [aux_sym_expr_binary_token20] = ACTIONS(5017), + [aux_sym_expr_binary_token21] = ACTIONS(5017), + [aux_sym_expr_binary_token22] = ACTIONS(5017), + [aux_sym_expr_binary_token23] = ACTIONS(5017), + [aux_sym_expr_binary_token24] = ACTIONS(5017), + [aux_sym_expr_binary_token25] = ACTIONS(5017), + [aux_sym_expr_binary_token26] = ACTIONS(5017), + [aux_sym_expr_binary_token27] = ACTIONS(5017), + [aux_sym_expr_binary_token28] = ACTIONS(5017), + [anon_sym_err_GT] = ACTIONS(5019), + [anon_sym_out_GT] = ACTIONS(5019), + [anon_sym_e_GT] = ACTIONS(5019), + [anon_sym_o_GT] = ACTIONS(5019), + [anon_sym_err_PLUSout_GT] = ACTIONS(5019), + [anon_sym_out_PLUSerr_GT] = ACTIONS(5019), + [anon_sym_o_PLUSe_GT] = ACTIONS(5019), + [anon_sym_e_PLUSo_GT] = ACTIONS(5019), + [anon_sym_err_GT_GT] = ACTIONS(5017), + [anon_sym_out_GT_GT] = ACTIONS(5017), + [anon_sym_e_GT_GT] = ACTIONS(5017), + [anon_sym_o_GT_GT] = ACTIONS(5017), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5017), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5017), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5017), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5017), + [anon_sym_POUND] = ACTIONS(249), + }, + [1575] = { + [sym__expr_parenthesized_immediate] = STATE(7535), + [sym_comment] = STATE(1575), + [sym__newline] = ACTIONS(5017), + [anon_sym_SEMI] = ACTIONS(5017), + [anon_sym_PIPE] = ACTIONS(5017), + [anon_sym_err_GT_PIPE] = ACTIONS(5017), + [anon_sym_out_GT_PIPE] = ACTIONS(5017), + [anon_sym_e_GT_PIPE] = ACTIONS(5017), + [anon_sym_o_GT_PIPE] = ACTIONS(5017), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5017), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5017), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5017), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5017), + [anon_sym_RPAREN] = ACTIONS(5017), + [anon_sym_DASH_DASH] = ACTIONS(5017), + [anon_sym_DASH] = ACTIONS(5019), + [anon_sym_LBRACE] = ACTIONS(5017), + [anon_sym_RBRACE] = ACTIONS(5017), + [anon_sym_EQ_GT] = ACTIONS(5017), + [anon_sym_LPAREN2] = ACTIONS(4433), + [aux_sym_expr_binary_token1] = ACTIONS(5017), + [aux_sym_expr_binary_token2] = ACTIONS(5017), + [aux_sym_expr_binary_token3] = ACTIONS(5017), + [aux_sym_expr_binary_token4] = ACTIONS(5017), + [aux_sym_expr_binary_token5] = ACTIONS(5017), + [aux_sym_expr_binary_token6] = ACTIONS(5017), + [aux_sym_expr_binary_token7] = ACTIONS(5017), + [aux_sym_expr_binary_token8] = ACTIONS(5017), + [aux_sym_expr_binary_token9] = ACTIONS(5017), + [aux_sym_expr_binary_token10] = ACTIONS(5017), + [aux_sym_expr_binary_token11] = ACTIONS(5017), + [aux_sym_expr_binary_token12] = ACTIONS(5017), + [aux_sym_expr_binary_token13] = ACTIONS(5017), + [aux_sym_expr_binary_token14] = ACTIONS(5017), + [aux_sym_expr_binary_token15] = ACTIONS(5017), + [aux_sym_expr_binary_token16] = ACTIONS(5017), + [aux_sym_expr_binary_token17] = ACTIONS(5017), + [aux_sym_expr_binary_token18] = ACTIONS(5017), + [aux_sym_expr_binary_token19] = ACTIONS(5017), + [aux_sym_expr_binary_token20] = ACTIONS(5017), + [aux_sym_expr_binary_token21] = ACTIONS(5017), + [aux_sym_expr_binary_token22] = ACTIONS(5017), + [aux_sym_expr_binary_token23] = ACTIONS(5017), + [aux_sym_expr_binary_token24] = ACTIONS(5017), + [aux_sym_expr_binary_token25] = ACTIONS(5017), + [aux_sym_expr_binary_token26] = ACTIONS(5017), + [aux_sym_expr_binary_token27] = ACTIONS(5017), + [aux_sym_expr_binary_token28] = ACTIONS(5017), + [anon_sym_err_GT] = ACTIONS(5019), + [anon_sym_out_GT] = ACTIONS(5019), + [anon_sym_e_GT] = ACTIONS(5019), + [anon_sym_o_GT] = ACTIONS(5019), + [anon_sym_err_PLUSout_GT] = ACTIONS(5019), + [anon_sym_out_PLUSerr_GT] = ACTIONS(5019), + [anon_sym_o_PLUSe_GT] = ACTIONS(5019), + [anon_sym_e_PLUSo_GT] = ACTIONS(5019), + [anon_sym_err_GT_GT] = ACTIONS(5017), + [anon_sym_out_GT_GT] = ACTIONS(5017), + [anon_sym_e_GT_GT] = ACTIONS(5017), + [anon_sym_o_GT_GT] = ACTIONS(5017), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5017), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5017), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5017), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5017), + [anon_sym_POUND] = ACTIONS(249), + }, + [1576] = { + [sym__expr_parenthesized_immediate] = STATE(7535), + [sym_comment] = STATE(1576), + [sym__newline] = ACTIONS(5017), + [anon_sym_SEMI] = ACTIONS(5017), + [anon_sym_PIPE] = ACTIONS(5017), + [anon_sym_err_GT_PIPE] = ACTIONS(5017), + [anon_sym_out_GT_PIPE] = ACTIONS(5017), + [anon_sym_e_GT_PIPE] = ACTIONS(5017), + [anon_sym_o_GT_PIPE] = ACTIONS(5017), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5017), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5017), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5017), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5017), + [anon_sym_RPAREN] = ACTIONS(5017), + [anon_sym_DASH_DASH] = ACTIONS(5017), + [anon_sym_DASH] = ACTIONS(5019), + [anon_sym_LBRACE] = ACTIONS(5017), + [anon_sym_RBRACE] = ACTIONS(5017), + [anon_sym_EQ_GT] = ACTIONS(5017), + [anon_sym_LPAREN2] = ACTIONS(4433), + [aux_sym_expr_binary_token1] = ACTIONS(5017), + [aux_sym_expr_binary_token2] = ACTIONS(5017), + [aux_sym_expr_binary_token3] = ACTIONS(5017), + [aux_sym_expr_binary_token4] = ACTIONS(5017), + [aux_sym_expr_binary_token5] = ACTIONS(5017), + [aux_sym_expr_binary_token6] = ACTIONS(5017), + [aux_sym_expr_binary_token7] = ACTIONS(5017), + [aux_sym_expr_binary_token8] = ACTIONS(5017), + [aux_sym_expr_binary_token9] = ACTIONS(5017), + [aux_sym_expr_binary_token10] = ACTIONS(5017), + [aux_sym_expr_binary_token11] = ACTIONS(5017), + [aux_sym_expr_binary_token12] = ACTIONS(5017), + [aux_sym_expr_binary_token13] = ACTIONS(5017), + [aux_sym_expr_binary_token14] = ACTIONS(5017), + [aux_sym_expr_binary_token15] = ACTIONS(5017), + [aux_sym_expr_binary_token16] = ACTIONS(5017), + [aux_sym_expr_binary_token17] = ACTIONS(5017), + [aux_sym_expr_binary_token18] = ACTIONS(5017), + [aux_sym_expr_binary_token19] = ACTIONS(5017), + [aux_sym_expr_binary_token20] = ACTIONS(5017), + [aux_sym_expr_binary_token21] = ACTIONS(5017), + [aux_sym_expr_binary_token22] = ACTIONS(5017), + [aux_sym_expr_binary_token23] = ACTIONS(5017), + [aux_sym_expr_binary_token24] = ACTIONS(5017), + [aux_sym_expr_binary_token25] = ACTIONS(5017), + [aux_sym_expr_binary_token26] = ACTIONS(5017), + [aux_sym_expr_binary_token27] = ACTIONS(5017), + [aux_sym_expr_binary_token28] = ACTIONS(5017), + [anon_sym_err_GT] = ACTIONS(5019), + [anon_sym_out_GT] = ACTIONS(5019), + [anon_sym_e_GT] = ACTIONS(5019), + [anon_sym_o_GT] = ACTIONS(5019), + [anon_sym_err_PLUSout_GT] = ACTIONS(5019), + [anon_sym_out_PLUSerr_GT] = ACTIONS(5019), + [anon_sym_o_PLUSe_GT] = ACTIONS(5019), + [anon_sym_e_PLUSo_GT] = ACTIONS(5019), + [anon_sym_err_GT_GT] = ACTIONS(5017), + [anon_sym_out_GT_GT] = ACTIONS(5017), + [anon_sym_e_GT_GT] = ACTIONS(5017), + [anon_sym_o_GT_GT] = ACTIONS(5017), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5017), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5017), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5017), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5017), + [anon_sym_POUND] = ACTIONS(249), + }, + [1577] = { + [sym__expr_parenthesized_immediate] = STATE(7535), + [sym_comment] = STATE(1577), + [sym__newline] = ACTIONS(5017), + [anon_sym_SEMI] = ACTIONS(5017), + [anon_sym_PIPE] = ACTIONS(5017), + [anon_sym_err_GT_PIPE] = ACTIONS(5017), + [anon_sym_out_GT_PIPE] = ACTIONS(5017), + [anon_sym_e_GT_PIPE] = ACTIONS(5017), + [anon_sym_o_GT_PIPE] = ACTIONS(5017), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5017), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5017), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5017), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5017), + [anon_sym_RPAREN] = ACTIONS(5017), + [anon_sym_DASH_DASH] = ACTIONS(5017), + [anon_sym_DASH] = ACTIONS(5019), + [anon_sym_LBRACE] = ACTIONS(5017), + [anon_sym_RBRACE] = ACTIONS(5017), + [anon_sym_EQ_GT] = ACTIONS(5017), + [anon_sym_LPAREN2] = ACTIONS(4433), + [aux_sym_expr_binary_token1] = ACTIONS(5017), + [aux_sym_expr_binary_token2] = ACTIONS(5017), + [aux_sym_expr_binary_token3] = ACTIONS(5017), + [aux_sym_expr_binary_token4] = ACTIONS(5017), + [aux_sym_expr_binary_token5] = ACTIONS(5017), + [aux_sym_expr_binary_token6] = ACTIONS(5017), + [aux_sym_expr_binary_token7] = ACTIONS(5017), + [aux_sym_expr_binary_token8] = ACTIONS(5017), + [aux_sym_expr_binary_token9] = ACTIONS(5017), + [aux_sym_expr_binary_token10] = ACTIONS(5017), + [aux_sym_expr_binary_token11] = ACTIONS(5017), + [aux_sym_expr_binary_token12] = ACTIONS(5017), + [aux_sym_expr_binary_token13] = ACTIONS(5017), + [aux_sym_expr_binary_token14] = ACTIONS(5017), + [aux_sym_expr_binary_token15] = ACTIONS(5017), + [aux_sym_expr_binary_token16] = ACTIONS(5017), + [aux_sym_expr_binary_token17] = ACTIONS(5017), + [aux_sym_expr_binary_token18] = ACTIONS(5017), + [aux_sym_expr_binary_token19] = ACTIONS(5017), + [aux_sym_expr_binary_token20] = ACTIONS(5017), + [aux_sym_expr_binary_token21] = ACTIONS(5017), + [aux_sym_expr_binary_token22] = ACTIONS(5017), + [aux_sym_expr_binary_token23] = ACTIONS(5017), + [aux_sym_expr_binary_token24] = ACTIONS(5017), + [aux_sym_expr_binary_token25] = ACTIONS(5017), + [aux_sym_expr_binary_token26] = ACTIONS(5017), + [aux_sym_expr_binary_token27] = ACTIONS(5017), + [aux_sym_expr_binary_token28] = ACTIONS(5017), + [anon_sym_err_GT] = ACTIONS(5019), + [anon_sym_out_GT] = ACTIONS(5019), + [anon_sym_e_GT] = ACTIONS(5019), + [anon_sym_o_GT] = ACTIONS(5019), + [anon_sym_err_PLUSout_GT] = ACTIONS(5019), + [anon_sym_out_PLUSerr_GT] = ACTIONS(5019), + [anon_sym_o_PLUSe_GT] = ACTIONS(5019), + [anon_sym_e_PLUSo_GT] = ACTIONS(5019), + [anon_sym_err_GT_GT] = ACTIONS(5017), + [anon_sym_out_GT_GT] = ACTIONS(5017), + [anon_sym_e_GT_GT] = ACTIONS(5017), + [anon_sym_o_GT_GT] = ACTIONS(5017), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5017), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5017), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5017), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5017), + [anon_sym_POUND] = ACTIONS(249), + }, + [1578] = { + [sym__expr_parenthesized_immediate] = STATE(7535), + [sym_comment] = STATE(1578), + [sym__newline] = ACTIONS(5017), + [anon_sym_SEMI] = ACTIONS(5017), + [anon_sym_PIPE] = ACTIONS(5017), + [anon_sym_err_GT_PIPE] = ACTIONS(5017), + [anon_sym_out_GT_PIPE] = ACTIONS(5017), + [anon_sym_e_GT_PIPE] = ACTIONS(5017), + [anon_sym_o_GT_PIPE] = ACTIONS(5017), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(5017), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(5017), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(5017), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(5017), + [anon_sym_RPAREN] = ACTIONS(5017), + [anon_sym_DASH_DASH] = ACTIONS(5017), + [anon_sym_DASH] = ACTIONS(5019), + [anon_sym_LBRACE] = ACTIONS(5017), + [anon_sym_RBRACE] = ACTIONS(5017), + [anon_sym_EQ_GT] = ACTIONS(5017), + [anon_sym_LPAREN2] = ACTIONS(4433), + [aux_sym_expr_binary_token1] = ACTIONS(5017), + [aux_sym_expr_binary_token2] = ACTIONS(5017), + [aux_sym_expr_binary_token3] = ACTIONS(5017), + [aux_sym_expr_binary_token4] = ACTIONS(5017), + [aux_sym_expr_binary_token5] = ACTIONS(5017), + [aux_sym_expr_binary_token6] = ACTIONS(5017), + [aux_sym_expr_binary_token7] = ACTIONS(5017), + [aux_sym_expr_binary_token8] = ACTIONS(5017), + [aux_sym_expr_binary_token9] = ACTIONS(5017), + [aux_sym_expr_binary_token10] = ACTIONS(5017), + [aux_sym_expr_binary_token11] = ACTIONS(5017), + [aux_sym_expr_binary_token12] = ACTIONS(5017), + [aux_sym_expr_binary_token13] = ACTIONS(5017), + [aux_sym_expr_binary_token14] = ACTIONS(5017), + [aux_sym_expr_binary_token15] = ACTIONS(5017), + [aux_sym_expr_binary_token16] = ACTIONS(5017), + [aux_sym_expr_binary_token17] = ACTIONS(5017), + [aux_sym_expr_binary_token18] = ACTIONS(5017), + [aux_sym_expr_binary_token19] = ACTIONS(5017), + [aux_sym_expr_binary_token20] = ACTIONS(5017), + [aux_sym_expr_binary_token21] = ACTIONS(5017), + [aux_sym_expr_binary_token22] = ACTIONS(5017), + [aux_sym_expr_binary_token23] = ACTIONS(5017), + [aux_sym_expr_binary_token24] = ACTIONS(5017), + [aux_sym_expr_binary_token25] = ACTIONS(5017), + [aux_sym_expr_binary_token26] = ACTIONS(5017), + [aux_sym_expr_binary_token27] = ACTIONS(5017), + [aux_sym_expr_binary_token28] = ACTIONS(5017), + [anon_sym_err_GT] = ACTIONS(5019), + [anon_sym_out_GT] = ACTIONS(5019), + [anon_sym_e_GT] = ACTIONS(5019), + [anon_sym_o_GT] = ACTIONS(5019), + [anon_sym_err_PLUSout_GT] = ACTIONS(5019), + [anon_sym_out_PLUSerr_GT] = ACTIONS(5019), + [anon_sym_o_PLUSe_GT] = ACTIONS(5019), + [anon_sym_e_PLUSo_GT] = ACTIONS(5019), + [anon_sym_err_GT_GT] = ACTIONS(5017), + [anon_sym_out_GT_GT] = ACTIONS(5017), + [anon_sym_e_GT_GT] = ACTIONS(5017), + [anon_sym_o_GT_GT] = ACTIONS(5017), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(5017), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(5017), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(5017), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(5017), + [anon_sym_POUND] = ACTIONS(249), + }, + [1579] = { + [sym_comment] = STATE(1579), + [ts_builtin_sym_end] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1717), + [anon_sym_false] = ACTIONS(1717), + [anon_sym_null] = ACTIONS(1717), + [aux_sym_cmd_identifier_token38] = ACTIONS(1717), + [aux_sym_cmd_identifier_token39] = ACTIONS(1717), + [aux_sym_cmd_identifier_token40] = ACTIONS(1717), + [sym__newline] = ACTIONS(1717), + [anon_sym_SEMI] = ACTIONS(1717), + [anon_sym_PIPE] = ACTIONS(1717), + [anon_sym_err_GT_PIPE] = ACTIONS(1717), + [anon_sym_out_GT_PIPE] = ACTIONS(1717), + [anon_sym_e_GT_PIPE] = ACTIONS(1717), + [anon_sym_o_GT_PIPE] = ACTIONS(1717), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1717), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1717), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1717), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1717), + [anon_sym_LBRACK] = ACTIONS(1717), + [anon_sym_LPAREN] = ACTIONS(1717), + [anon_sym_DOLLAR] = ACTIONS(1715), + [anon_sym_DASH_DASH] = ACTIONS(1717), + [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_LBRACE] = ACTIONS(1717), + [anon_sym_DOT_DOT] = ACTIONS(1715), + [anon_sym_DOT] = ACTIONS(5037), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1717), + [anon_sym_DOT_DOT_LT] = ACTIONS(1717), + [aux_sym__immediate_decimal_token2] = ACTIONS(5039), + [aux_sym__val_number_decimal_token1] = ACTIONS(1715), + [aux_sym__val_number_decimal_token2] = ACTIONS(1717), + [aux_sym__val_number_decimal_token3] = ACTIONS(1717), + [aux_sym__val_number_decimal_token4] = ACTIONS(1717), + [aux_sym__val_number_token1] = ACTIONS(1717), + [aux_sym__val_number_token2] = ACTIONS(1717), + [aux_sym__val_number_token3] = ACTIONS(1717), + [anon_sym_0b] = ACTIONS(1715), + [anon_sym_0o] = ACTIONS(1715), + [anon_sym_0x] = ACTIONS(1715), + [sym_val_date] = ACTIONS(1717), + [anon_sym_DQUOTE] = ACTIONS(1717), + [sym__str_single_quotes] = ACTIONS(1717), + [sym__str_back_ticks] = ACTIONS(1717), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1717), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1717), + [anon_sym_err_GT] = ACTIONS(1715), + [anon_sym_out_GT] = ACTIONS(1715), + [anon_sym_e_GT] = ACTIONS(1715), + [anon_sym_o_GT] = ACTIONS(1715), + [anon_sym_err_PLUSout_GT] = ACTIONS(1715), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1715), + [anon_sym_o_PLUSe_GT] = ACTIONS(1715), + [anon_sym_e_PLUSo_GT] = ACTIONS(1715), + [anon_sym_err_GT_GT] = ACTIONS(1717), + [anon_sym_out_GT_GT] = ACTIONS(1717), + [anon_sym_e_GT_GT] = ACTIONS(1717), + [anon_sym_o_GT_GT] = ACTIONS(1717), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1717), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1717), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1717), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1717), + [aux_sym_unquoted_token1] = ACTIONS(1715), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(1717), + }, + [1580] = { + [sym_comment] = STATE(1580), + [aux_sym_cmd_identifier_token41] = ACTIONS(1528), + [sym__newline] = ACTIONS(1530), + [anon_sym_SEMI] = ACTIONS(1530), + [anon_sym_PIPE] = ACTIONS(1530), + [anon_sym_err_GT_PIPE] = ACTIONS(1530), + [anon_sym_out_GT_PIPE] = ACTIONS(1530), + [anon_sym_e_GT_PIPE] = ACTIONS(1530), + [anon_sym_o_GT_PIPE] = ACTIONS(1530), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1530), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1530), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1530), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1530), + [anon_sym_RPAREN] = ACTIONS(1530), + [anon_sym_RBRACE] = ACTIONS(1530), + [aux_sym_expr_binary_token1] = ACTIONS(1530), + [aux_sym_expr_binary_token2] = ACTIONS(1530), + [aux_sym_expr_binary_token3] = ACTIONS(1530), + [aux_sym_expr_binary_token4] = ACTIONS(1530), + [aux_sym_expr_binary_token5] = ACTIONS(1530), + [aux_sym_expr_binary_token6] = ACTIONS(1530), + [aux_sym_expr_binary_token7] = ACTIONS(1530), + [aux_sym_expr_binary_token8] = ACTIONS(1530), + [aux_sym_expr_binary_token9] = ACTIONS(1530), + [aux_sym_expr_binary_token10] = ACTIONS(1530), + [aux_sym_expr_binary_token11] = ACTIONS(1530), + [aux_sym_expr_binary_token12] = ACTIONS(1530), + [aux_sym_expr_binary_token13] = ACTIONS(1530), + [aux_sym_expr_binary_token14] = ACTIONS(1530), + [aux_sym_expr_binary_token15] = ACTIONS(1530), + [aux_sym_expr_binary_token16] = ACTIONS(1530), + [aux_sym_expr_binary_token17] = ACTIONS(1530), + [aux_sym_expr_binary_token18] = ACTIONS(1530), + [aux_sym_expr_binary_token19] = ACTIONS(1530), + [aux_sym_expr_binary_token20] = ACTIONS(1530), + [aux_sym_expr_binary_token21] = ACTIONS(1530), + [aux_sym_expr_binary_token22] = ACTIONS(1530), + [aux_sym_expr_binary_token23] = ACTIONS(1530), + [aux_sym_expr_binary_token24] = ACTIONS(1530), + [aux_sym_expr_binary_token25] = ACTIONS(1530), + [aux_sym_expr_binary_token26] = ACTIONS(1530), + [aux_sym_expr_binary_token27] = ACTIONS(1530), + [aux_sym_expr_binary_token28] = ACTIONS(1530), + [anon_sym_DOT_DOT2] = ACTIONS(1528), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1530), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1530), + [sym_filesize_unit] = ACTIONS(1530), + [sym_duration_unit] = ACTIONS(1530), + [anon_sym_err_GT] = ACTIONS(1528), + [anon_sym_out_GT] = ACTIONS(1528), + [anon_sym_e_GT] = ACTIONS(1528), + [anon_sym_o_GT] = ACTIONS(1528), + [anon_sym_err_PLUSout_GT] = ACTIONS(1528), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1528), + [anon_sym_o_PLUSe_GT] = ACTIONS(1528), + [anon_sym_e_PLUSo_GT] = ACTIONS(1528), + [anon_sym_err_GT_GT] = ACTIONS(1530), + [anon_sym_out_GT_GT] = ACTIONS(1530), + [anon_sym_e_GT_GT] = ACTIONS(1530), + [anon_sym_o_GT_GT] = ACTIONS(1530), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1530), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1530), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1530), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1530), + [anon_sym_POUND] = ACTIONS(249), + }, + [1581] = { + [sym__expr_parenthesized_immediate] = STATE(7791), + [sym_comment] = STATE(1581), + [sym__newline] = ACTIONS(4808), + [anon_sym_SEMI] = ACTIONS(4808), + [anon_sym_PIPE] = ACTIONS(4808), + [anon_sym_err_GT_PIPE] = ACTIONS(4808), + [anon_sym_out_GT_PIPE] = ACTIONS(4808), + [anon_sym_e_GT_PIPE] = ACTIONS(4808), + [anon_sym_o_GT_PIPE] = ACTIONS(4808), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4808), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4808), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4808), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4808), + [anon_sym_RPAREN] = ACTIONS(4808), + [anon_sym_DASH_DASH] = ACTIONS(4808), + [anon_sym_DASH] = ACTIONS(4810), + [anon_sym_LBRACE] = ACTIONS(4808), + [anon_sym_RBRACE] = ACTIONS(4808), + [anon_sym_EQ_GT] = ACTIONS(4808), + [anon_sym_LPAREN2] = ACTIONS(4433), + [aux_sym_expr_binary_token1] = ACTIONS(4808), + [aux_sym_expr_binary_token2] = ACTIONS(4808), + [aux_sym_expr_binary_token3] = ACTIONS(4808), + [aux_sym_expr_binary_token4] = ACTIONS(4808), + [aux_sym_expr_binary_token5] = ACTIONS(4808), + [aux_sym_expr_binary_token6] = ACTIONS(4808), + [aux_sym_expr_binary_token7] = ACTIONS(4808), + [aux_sym_expr_binary_token8] = ACTIONS(4808), + [aux_sym_expr_binary_token9] = ACTIONS(4808), + [aux_sym_expr_binary_token10] = ACTIONS(4808), + [aux_sym_expr_binary_token11] = ACTIONS(4808), + [aux_sym_expr_binary_token12] = ACTIONS(4808), + [aux_sym_expr_binary_token13] = ACTIONS(4808), + [aux_sym_expr_binary_token14] = ACTIONS(4808), + [aux_sym_expr_binary_token15] = ACTIONS(4808), + [aux_sym_expr_binary_token16] = ACTIONS(4808), + [aux_sym_expr_binary_token17] = ACTIONS(4808), + [aux_sym_expr_binary_token18] = ACTIONS(4808), + [aux_sym_expr_binary_token19] = ACTIONS(4808), + [aux_sym_expr_binary_token20] = ACTIONS(4808), + [aux_sym_expr_binary_token21] = ACTIONS(4808), + [aux_sym_expr_binary_token22] = ACTIONS(4808), + [aux_sym_expr_binary_token23] = ACTIONS(4808), + [aux_sym_expr_binary_token24] = ACTIONS(4808), + [aux_sym_expr_binary_token25] = ACTIONS(4808), + [aux_sym_expr_binary_token26] = ACTIONS(4808), + [aux_sym_expr_binary_token27] = ACTIONS(4808), + [aux_sym_expr_binary_token28] = ACTIONS(4808), + [anon_sym_err_GT] = ACTIONS(4810), + [anon_sym_out_GT] = ACTIONS(4810), + [anon_sym_e_GT] = ACTIONS(4810), + [anon_sym_o_GT] = ACTIONS(4810), + [anon_sym_err_PLUSout_GT] = ACTIONS(4810), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4810), + [anon_sym_o_PLUSe_GT] = ACTIONS(4810), + [anon_sym_e_PLUSo_GT] = ACTIONS(4810), + [anon_sym_err_GT_GT] = ACTIONS(4808), + [anon_sym_out_GT_GT] = ACTIONS(4808), + [anon_sym_e_GT_GT] = ACTIONS(4808), + [anon_sym_o_GT_GT] = ACTIONS(4808), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4808), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4808), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4808), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4808), + [anon_sym_POUND] = ACTIONS(249), + }, + [1582] = { + [sym__expr_parenthesized_immediate] = STATE(7791), + [sym_comment] = STATE(1582), + [sym__newline] = ACTIONS(4812), + [anon_sym_SEMI] = ACTIONS(4812), + [anon_sym_PIPE] = ACTIONS(4812), + [anon_sym_err_GT_PIPE] = ACTIONS(4812), + [anon_sym_out_GT_PIPE] = ACTIONS(4812), + [anon_sym_e_GT_PIPE] = ACTIONS(4812), + [anon_sym_o_GT_PIPE] = ACTIONS(4812), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4812), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4812), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4812), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4812), + [anon_sym_RPAREN] = ACTIONS(4812), + [anon_sym_DASH_DASH] = ACTIONS(4812), + [anon_sym_DASH] = ACTIONS(4814), + [anon_sym_LBRACE] = ACTIONS(4812), + [anon_sym_RBRACE] = ACTIONS(4812), + [anon_sym_EQ_GT] = ACTIONS(4812), + [anon_sym_LPAREN2] = ACTIONS(4433), + [aux_sym_expr_binary_token1] = ACTIONS(4812), + [aux_sym_expr_binary_token2] = ACTIONS(4812), + [aux_sym_expr_binary_token3] = ACTIONS(4812), + [aux_sym_expr_binary_token4] = ACTIONS(4812), + [aux_sym_expr_binary_token5] = ACTIONS(4812), + [aux_sym_expr_binary_token6] = ACTIONS(4812), + [aux_sym_expr_binary_token7] = ACTIONS(4812), + [aux_sym_expr_binary_token8] = ACTIONS(4812), + [aux_sym_expr_binary_token9] = ACTIONS(4812), + [aux_sym_expr_binary_token10] = ACTIONS(4812), + [aux_sym_expr_binary_token11] = ACTIONS(4812), + [aux_sym_expr_binary_token12] = ACTIONS(4812), + [aux_sym_expr_binary_token13] = ACTIONS(4812), + [aux_sym_expr_binary_token14] = ACTIONS(4812), + [aux_sym_expr_binary_token15] = ACTIONS(4812), + [aux_sym_expr_binary_token16] = ACTIONS(4812), + [aux_sym_expr_binary_token17] = ACTIONS(4812), + [aux_sym_expr_binary_token18] = ACTIONS(4812), + [aux_sym_expr_binary_token19] = ACTIONS(4812), + [aux_sym_expr_binary_token20] = ACTIONS(4812), + [aux_sym_expr_binary_token21] = ACTIONS(4812), + [aux_sym_expr_binary_token22] = ACTIONS(4812), + [aux_sym_expr_binary_token23] = ACTIONS(4812), + [aux_sym_expr_binary_token24] = ACTIONS(4812), + [aux_sym_expr_binary_token25] = ACTIONS(4812), + [aux_sym_expr_binary_token26] = ACTIONS(4812), + [aux_sym_expr_binary_token27] = ACTIONS(4812), + [aux_sym_expr_binary_token28] = ACTIONS(4812), + [anon_sym_err_GT] = ACTIONS(4814), + [anon_sym_out_GT] = ACTIONS(4814), + [anon_sym_e_GT] = ACTIONS(4814), + [anon_sym_o_GT] = ACTIONS(4814), + [anon_sym_err_PLUSout_GT] = ACTIONS(4814), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4814), + [anon_sym_o_PLUSe_GT] = ACTIONS(4814), + [anon_sym_e_PLUSo_GT] = ACTIONS(4814), + [anon_sym_err_GT_GT] = ACTIONS(4812), + [anon_sym_out_GT_GT] = ACTIONS(4812), + [anon_sym_e_GT_GT] = ACTIONS(4812), + [anon_sym_o_GT_GT] = ACTIONS(4812), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4812), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4812), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4812), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4812), + [anon_sym_POUND] = ACTIONS(249), + }, + [1583] = { + [sym__expression] = STATE(5741), + [sym_expr_unary] = STATE(1739), + [sym__expr_unary_minus] = STATE(1765), + [sym_expr_binary] = STATE(1739), + [sym__expr_binary_expression] = STATE(3895), + [sym_expr_parenthesized] = STATE(3543), + [sym_val_range] = STATE(3562), + [sym__value] = STATE(1739), + [sym_val_nothing] = STATE(1881), + [sym_val_bool] = STATE(1881), + [sym_val_variable] = STATE(3542), + [sym_val_number] = STATE(1881), + [sym__val_number_decimal] = STATE(3503), + [sym__val_number] = STATE(1883), + [sym_val_duration] = STATE(1881), + [sym_val_filesize] = STATE(1881), + [sym_val_binary] = STATE(1881), + [sym_val_string] = STATE(1881), + [sym__raw_str] = STATE(1540), + [sym__str_double_quotes] = STATE(1540), + [sym_val_interpolated] = STATE(1881), + [sym__inter_single_quotes] = STATE(1827), + [sym__inter_double_quotes] = STATE(1841), + [sym_val_list] = STATE(1881), + [sym_val_record] = STATE(1881), + [sym_val_table] = STATE(1881), + [sym_val_closure] = STATE(1881), + [sym__flag] = STATE(2050), + [sym_short_flag] = STATE(3610), + [sym_long_flag] = STATE(3610), + [sym_comment] = STATE(1583), + [anon_sym_true] = ACTIONS(3278), + [anon_sym_false] = ACTIONS(3278), + [anon_sym_null] = ACTIONS(3280), + [aux_sym_cmd_identifier_token38] = ACTIONS(227), + [aux_sym_cmd_identifier_token39] = ACTIONS(227), + [aux_sym_cmd_identifier_token40] = ACTIONS(227), + [anon_sym_LBRACK] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(4973), + [anon_sym_DOLLAR] = ACTIONS(4975), + [anon_sym_DASH_DASH] = ACTIONS(4977), + [anon_sym_DASH] = ACTIONS(4979), + [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_DOT_DOT] = ACTIONS(4981), + [aux_sym_expr_unary_token1] = ACTIONS(3412), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4983), + [anon_sym_DOT_DOT_LT] = ACTIONS(4983), + [aux_sym__val_number_decimal_token1] = ACTIONS(3414), + [aux_sym__val_number_decimal_token2] = ACTIONS(3416), + [aux_sym__val_number_decimal_token3] = ACTIONS(3418), + [aux_sym__val_number_decimal_token4] = ACTIONS(3420), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [anon_sym_0b] = ACTIONS(229), + [anon_sym_0o] = ACTIONS(231), + [anon_sym_0x] = ACTIONS(231), + [sym_val_date] = ACTIONS(233), + [anon_sym_DQUOTE] = ACTIONS(235), + [sym__str_single_quotes] = ACTIONS(237), + [sym__str_back_ticks] = ACTIONS(237), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(239), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(241), + [anon_sym_POUND] = ACTIONS(249), + [sym_raw_string_begin] = ACTIONS(251), + }, + [1584] = { + [sym_comment] = STATE(1584), + [aux_sym_cmd_identifier_token41] = ACTIONS(5041), + [sym__newline] = ACTIONS(1628), + [anon_sym_SEMI] = ACTIONS(1640), + [anon_sym_PIPE] = ACTIONS(1640), + [anon_sym_err_GT_PIPE] = ACTIONS(1640), + [anon_sym_out_GT_PIPE] = ACTIONS(1640), + [anon_sym_e_GT_PIPE] = ACTIONS(1640), + [anon_sym_o_GT_PIPE] = ACTIONS(1640), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1640), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1640), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1640), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1640), + [anon_sym_RBRACE] = ACTIONS(1640), + [aux_sym_expr_binary_token1] = ACTIONS(1640), + [aux_sym_expr_binary_token2] = ACTIONS(1640), + [aux_sym_expr_binary_token3] = ACTIONS(1640), + [aux_sym_expr_binary_token4] = ACTIONS(1640), + [aux_sym_expr_binary_token5] = ACTIONS(1640), + [aux_sym_expr_binary_token6] = ACTIONS(1640), + [aux_sym_expr_binary_token7] = ACTIONS(1640), + [aux_sym_expr_binary_token8] = ACTIONS(1640), + [aux_sym_expr_binary_token9] = ACTIONS(1640), + [aux_sym_expr_binary_token10] = ACTIONS(1640), + [aux_sym_expr_binary_token11] = ACTIONS(1640), + [aux_sym_expr_binary_token12] = ACTIONS(1640), + [aux_sym_expr_binary_token13] = ACTIONS(1640), + [aux_sym_expr_binary_token14] = ACTIONS(1640), + [aux_sym_expr_binary_token15] = ACTIONS(1640), + [aux_sym_expr_binary_token16] = ACTIONS(1640), + [aux_sym_expr_binary_token17] = ACTIONS(1640), + [aux_sym_expr_binary_token18] = ACTIONS(1640), + [aux_sym_expr_binary_token19] = ACTIONS(1640), + [aux_sym_expr_binary_token20] = ACTIONS(1640), + [aux_sym_expr_binary_token21] = ACTIONS(1640), + [aux_sym_expr_binary_token22] = ACTIONS(1640), + [aux_sym_expr_binary_token23] = ACTIONS(1640), + [aux_sym_expr_binary_token24] = ACTIONS(1640), + [aux_sym_expr_binary_token25] = ACTIONS(1640), + [aux_sym_expr_binary_token26] = ACTIONS(1640), + [aux_sym_expr_binary_token27] = ACTIONS(1640), + [aux_sym_expr_binary_token28] = ACTIONS(1640), + [anon_sym_DOT_DOT2] = ACTIONS(5029), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(5031), + [anon_sym_DOT_DOT_LT2] = ACTIONS(5031), + [sym_filesize_unit] = ACTIONS(5043), + [sym_duration_unit] = ACTIONS(5045), + [aux_sym_record_entry_token1] = ACTIONS(1640), + [anon_sym_err_GT] = ACTIONS(1628), + [anon_sym_out_GT] = ACTIONS(1628), + [anon_sym_e_GT] = ACTIONS(1628), + [anon_sym_o_GT] = ACTIONS(1628), + [anon_sym_err_PLUSout_GT] = ACTIONS(1628), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1628), + [anon_sym_o_PLUSe_GT] = ACTIONS(1628), + [anon_sym_e_PLUSo_GT] = ACTIONS(1628), + [anon_sym_err_GT_GT] = ACTIONS(1640), + [anon_sym_out_GT_GT] = ACTIONS(1640), + [anon_sym_e_GT_GT] = ACTIONS(1640), + [anon_sym_o_GT_GT] = ACTIONS(1640), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1640), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1640), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1640), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1640), + [anon_sym_POUND] = ACTIONS(249), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1572), 1, + STATE(1585), 1, sym_comment, - ACTIONS(1540), 10, + ACTIONS(1596), 10, aux_sym_cmd_identifier_token41, anon_sym_DOT_DOT2, anon_sym_err_GT, @@ -217459,7 +221156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1542), 52, + ACTIONS(1598), 52, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -217512,353 +221209,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5217] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2227), 1, - aux_sym_unquoted_token4, - STATE(1573), 1, - sym_comment, - ACTIONS(1072), 20, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1070), 40, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [5291] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1574), 1, - sym_comment, - ACTIONS(2481), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2483), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [5363] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1575), 1, - sym_comment, - ACTIONS(2485), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2487), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [5435] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1576), 1, - sym_comment, - ACTIONS(2489), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2491), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [5507] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1577), 1, - sym_comment, - ACTIONS(2493), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2495), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [5579] = 4, - ACTIONS(247), 1, + [73] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1578), 1, + STATE(1586), 1, sym_comment, - ACTIONS(2497), 16, + ACTIONS(1826), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -217875,7 +221231,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2499), 45, + ACTIONS(1828), 46, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -217921,12 +221278,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5651] = 4, - ACTIONS(247), 1, + [146] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1579), 1, + STATE(1587), 1, sym_comment, - ACTIONS(2501), 16, + ACTIONS(1090), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -217943,7 +221300,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2503), 45, + ACTIONS(1092), 46, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -217989,12 +221347,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5723] = 4, - ACTIONS(247), 1, + [219] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1580), 1, + STATE(1588), 1, sym_comment, - ACTIONS(2505), 16, + ACTIONS(2454), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -218011,7 +221369,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2507), 45, + ACTIONS(2456), 46, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -218057,15 +221416,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5795] = 4, - ACTIONS(247), 1, + [292] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1581), 1, + STATE(1589), 1, sym_comment, - ACTIONS(2509), 16, + ACTIONS(1074), 17, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -218079,7 +221439,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2511), 45, + ACTIONS(1076), 45, + sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, @@ -218099,10 +221461,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -218125,12 +221485,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5867] = 4, - ACTIONS(247), 1, + [365] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1582), 1, + STATE(1590), 1, sym_comment, - ACTIONS(2513), 16, + ACTIONS(2426), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -218147,7 +221507,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2515), 45, + ACTIONS(2428), 46, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -218193,12 +221554,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5939] = 4, - ACTIONS(247), 1, + [438] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1583), 1, + STATE(1591), 1, sym_comment, - ACTIONS(2305), 16, + ACTIONS(2446), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -218215,7 +221576,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2307), 45, + ACTIONS(2448), 46, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -218261,35 +221623,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6011] = 4, - ACTIONS(247), 1, + [511] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1584), 1, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + STATE(1592), 1, sym_comment, - ACTIONS(2305), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2307), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(2297), 21, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -218303,24 +221646,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2293), 40, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -218329,12 +221692,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6083] = 4, - ACTIONS(247), 1, + aux_sym_unquoted_token1, + [586] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1585), 1, + STATE(1593), 1, sym_comment, - ACTIONS(2362), 16, + ACTIONS(1078), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -218351,7 +221715,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2364), 45, + ACTIONS(1080), 46, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -218397,12 +221762,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6155] = 4, - ACTIONS(247), 1, + [659] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1586), 1, + STATE(1594), 1, sym_comment, - ACTIONS(2366), 16, + ACTIONS(1897), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -218419,7 +221784,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2368), 45, + ACTIONS(1899), 46, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -218465,86 +221831,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6227] = 8, - ACTIONS(247), 1, + [732] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4956), 1, - anon_sym_DOT, - STATE(1587), 1, - sym_comment, - STATE(1794), 1, - aux_sym_cell_path_repeat1, - STATE(2042), 1, - sym_path, - STATE(2223), 1, - sym_cell_path, - ACTIONS(1832), 9, - sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1834), 48, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [6307] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4958), 1, - anon_sym_EQ2, - STATE(1588), 1, + STATE(1595), 1, sym_comment, - ACTIONS(4942), 16, + ACTIONS(2547), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -218561,8 +221853,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4940), 44, - ts_builtin_sym_end, + ACTIONS(2549), 46, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -218582,8 +221874,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -218606,12 +221900,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6381] = 4, - ACTIONS(247), 1, + [805] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1589), 1, + STATE(1596), 1, sym_comment, - ACTIONS(1058), 16, + ACTIONS(2113), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -218628,7 +221922,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1060), 45, + ACTIONS(2119), 46, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -218674,12 +221969,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6453] = 4, - ACTIONS(247), 1, + [878] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1590), 1, + STATE(1597), 1, sym_comment, - ACTIONS(2029), 16, + ACTIONS(2474), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -218696,7 +221991,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2031), 45, + ACTIONS(2476), 46, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -218742,12 +222038,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6525] = 4, - ACTIONS(247), 1, + [951] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1591), 1, + STATE(1598), 1, sym_comment, - ACTIONS(2380), 16, + ACTIONS(2486), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -218764,7 +222060,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2382), 45, + ACTIONS(2488), 46, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -218810,12 +222107,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6597] = 4, - ACTIONS(247), 1, + [1024] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1592), 1, + STATE(1599), 1, sym_comment, - ACTIONS(2384), 16, + ACTIONS(2414), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -218832,7 +222129,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2386), 45, + ACTIONS(2416), 46, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -218878,182 +222176,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6669] = 21, - ACTIONS(111), 1, - anon_sym_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1338), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1340), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4966), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(4968), 1, - anon_sym_LBRACK, - ACTIONS(4970), 1, - sym_wild_card, - STATE(1593), 1, - sym_comment, - STATE(1975), 1, - sym__str_double_quotes, - STATE(2499), 1, - sym_cmd_identifier, - STATE(2501), 1, - sym_val_string, - STATE(6653), 1, - sym_command_list, - STATE(6971), 1, - sym__val_number_decimal, - STATE(6973), 1, - sym__command_name, - STATE(7129), 1, - sym_scope_pattern, - ACTIONS(113), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1336), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4926), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - ACTIONS(4960), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(4964), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4962), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [6775] = 21, - ACTIONS(111), 1, - anon_sym_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1338), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1340), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4966), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(4968), 1, - anon_sym_LBRACK, - ACTIONS(4970), 1, - sym_wild_card, - STATE(1594), 1, - sym_comment, - STATE(1975), 1, - sym__str_double_quotes, - STATE(2499), 1, - sym_cmd_identifier, - STATE(2501), 1, - sym_val_string, - STATE(6653), 1, - sym_command_list, - STATE(6814), 1, - sym_scope_pattern, - STATE(6971), 1, - sym__val_number_decimal, - STATE(6973), 1, - sym__command_name, - ACTIONS(113), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1336), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4928), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - ACTIONS(4960), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(4964), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4962), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [6881] = 4, - ACTIONS(247), 1, + [1097] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1595), 1, + STATE(1600), 1, sym_comment, - ACTIONS(2033), 16, + ACTIONS(2539), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -219070,7 +222198,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2035), 45, + ACTIONS(2541), 46, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -219116,81 +222245,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6953] = 4, - ACTIONS(247), 1, + [1170] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1596), 1, - sym_comment, - ACTIONS(1034), 9, - sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1036), 52, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_QMARK2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [7025] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1597), 1, + STATE(1601), 1, sym_comment, - ACTIONS(2380), 9, + ACTIONS(2095), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -219199,7 +222266,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2382), 52, + aux_sym_unquoted_token1, + ACTIONS(2097), 46, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219211,39 +222286,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -219252,13 +222314,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7097] = 4, - ACTIONS(247), 1, + [1243] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1598), 1, + STATE(1602), 1, sym_comment, - ACTIONS(2384), 9, + ACTIONS(1066), 17, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -219267,7 +222336,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2386), 52, + aux_sym_unquoted_token1, + ACTIONS(1068), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -219279,39 +222357,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -219320,229 +222383,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7169] = 40, - ACTIONS(191), 1, - anon_sym_DOT_DOT, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, + [1316] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3215), 1, - anon_sym_null, - ACTIONS(3265), 1, - anon_sym_LBRACK, - ACTIONS(3271), 1, - anon_sym_LBRACE, - ACTIONS(3315), 1, - aux_sym_expr_unary_token1, - ACTIONS(3317), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3319), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3321), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3323), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4972), 1, - anon_sym_LPAREN, - ACTIONS(4974), 1, + STATE(1603), 1, + sym_comment, + ACTIONS(1070), 17, anon_sym_DOLLAR, - ACTIONS(4976), 1, - anon_sym_DASH_DASH, - ACTIONS(4978), 1, anon_sym_DASH, - STATE(1418), 1, - sym__str_double_quotes, - STATE(1445), 1, - sym_expr_parenthesized, - STATE(1446), 1, - sym_val_variable, - STATE(1599), 1, - sym_comment, - STATE(1646), 1, - sym__expr_unary_minus, - STATE(1647), 1, - sym__val_number, - STATE(1729), 1, - sym__inter_single_quotes, - STATE(1732), 1, - sym__inter_double_quotes, - STATE(2339), 1, - sym__flag, - STATE(2846), 1, - sym__val_number_decimal, - STATE(3520), 1, - sym_val_range, - STATE(3822), 1, - sym__expr_binary_expression, - STATE(5620), 1, - sym__expression, - ACTIONS(213), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(229), 2, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3213), 2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1072), 45, + sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, - STATE(3671), 2, - sym_short_flag, - sym_long_flag, - STATE(1687), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, + anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(1643), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [7313] = 40, - ACTIONS(191), 1, - anon_sym_DOT_DOT, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, sym_val_date, - ACTIONS(233), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [1389] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3215), 1, - anon_sym_null, - ACTIONS(3265), 1, - anon_sym_LBRACK, - ACTIONS(3271), 1, - anon_sym_LBRACE, - ACTIONS(3315), 1, - aux_sym_expr_unary_token1, - ACTIONS(3317), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3319), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3321), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3323), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4972), 1, - anon_sym_LPAREN, - ACTIONS(4974), 1, + STATE(1604), 1, + sym_comment, + ACTIONS(2482), 16, anon_sym_DOLLAR, - ACTIONS(4976), 1, - anon_sym_DASH_DASH, - ACTIONS(4978), 1, anon_sym_DASH, - STATE(1418), 1, - sym__str_double_quotes, - STATE(1445), 1, - sym_expr_parenthesized, - STATE(1446), 1, - sym_val_variable, - STATE(1600), 1, - sym_comment, - STATE(1646), 1, - sym__expr_unary_minus, - STATE(1647), 1, - sym__val_number, - STATE(1729), 1, - sym__inter_single_quotes, - STATE(1732), 1, - sym__inter_double_quotes, - STATE(2340), 1, - sym__flag, - STATE(2846), 1, - sym__val_number_decimal, - STATE(3520), 1, - sym_val_range, - STATE(3822), 1, - sym__expr_binary_expression, - STATE(5621), 1, - sym__expression, - ACTIONS(213), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(229), 2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3213), 2, - anon_sym_true, - anon_sym_false, - STATE(3671), 2, - sym_short_flag, - sym_long_flag, - STATE(1687), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1643), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [7457] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4956), 1, - anon_sym_DOT, - STATE(1601), 1, - sym_comment, - STATE(1794), 1, - aux_sym_cell_path_repeat1, - STATE(2042), 1, - sym_path, - STATE(2337), 1, - sym_cell_path, - ACTIONS(1822), 9, - sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -219551,7 +222473,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1826), 48, + aux_sym_unquoted_token1, + ACTIONS(2484), 46, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -219562,36 +222493,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -219600,30 +222521,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7537] = 8, - ACTIONS(247), 1, + [1462] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4956), 1, - anon_sym_DOT, - STATE(1254), 1, - sym_cell_path, - STATE(1602), 1, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + STATE(1605), 1, sym_comment, - STATE(1794), 1, - aux_sym_cell_path_repeat1, - STATE(2042), 1, - sym_path, - ACTIONS(1005), 9, + ACTIONS(2305), 21, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1007), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -219634,36 +222542,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2303), 40, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -219672,16 +222590,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7617] = 4, - ACTIONS(247), 1, + aux_sym_unquoted_token1, + [1537] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1603), 1, + STATE(1606), 1, sym_comment, - ACTIONS(1046), 17, + ACTIONS(5049), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -219695,8 +222613,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1048), 44, - ts_builtin_sym_end, + ACTIONS(5047), 46, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -219716,8 +222634,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -219740,16 +222660,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7689] = 4, - ACTIONS(247), 1, + [1610] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1604), 1, + STATE(1607), 1, sym_comment, - ACTIONS(1050), 17, + ACTIONS(5053), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -219763,8 +222682,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1052), 44, - ts_builtin_sym_end, + ACTIONS(5051), 46, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -219784,8 +222703,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -219808,16 +222729,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7761] = 4, - ACTIONS(247), 1, + [1683] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1605), 1, + STATE(1608), 1, + sym_comment, + ACTIONS(4987), 9, + anon_sym_DASH, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(4985), 53, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [1756] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5055), 1, + anon_sym_LBRACK2, + STATE(1609), 1, sym_comment, - ACTIONS(1054), 17, + ACTIONS(2355), 17, + anon_sym_LBRACK, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -219831,7 +222823,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1056), 44, + ACTIONS(2359), 44, + sym_raw_string_begin, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -219850,7 +222843,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, @@ -219876,99 +222868,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7833] = 21, - ACTIONS(111), 1, - anon_sym_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1338), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1340), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4966), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(4968), 1, - anon_sym_LBRACK, - ACTIONS(4970), 1, - sym_wild_card, - STATE(1606), 1, - sym_comment, - STATE(1975), 1, - sym__str_double_quotes, - STATE(2499), 1, - sym_cmd_identifier, - STATE(2501), 1, - sym_val_string, - STATE(6653), 1, - sym_command_list, - STATE(6686), 1, - sym_scope_pattern, - STATE(6971), 1, - sym__val_number_decimal, - STATE(6973), 1, - sym__command_name, - ACTIONS(113), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1336), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4876), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - ACTIONS(4960), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(4964), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4962), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [7939] = 5, - ACTIONS(247), 1, + [1831] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4864), 1, + ACTIONS(5039), 1, aux_sym__immediate_decimal_token2, - STATE(1607), 1, + STATE(1610), 1, sym_comment, - ACTIONS(1667), 16, + ACTIONS(1715), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -219985,7 +222892,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1669), 44, + ACTIONS(1717), 45, + sym_raw_string_begin, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -220030,21 +222938,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8013] = 8, - ACTIONS(247), 1, + [1906] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4956), 1, - anon_sym_DOT, - STATE(1608), 1, + STATE(1611), 1, sym_comment, - STATE(1794), 1, - aux_sym_cell_path_repeat1, - STATE(2022), 1, - sym_cell_path, - STATE(2042), 1, - sym_path, - ACTIONS(1836), 9, - sym__newline, + ACTIONS(2406), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -220053,7 +222959,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1838), 48, + aux_sym_unquoted_token1, + ACTIONS(2408), 46, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -220064,36 +222979,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -220102,14 +223007,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8093] = 5, - ACTIONS(247), 1, + [1979] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4980), 1, - aux_sym__immediate_decimal_token2, - STATE(1609), 1, + STATE(1612), 1, sym_comment, - ACTIONS(1721), 16, + ACTIONS(2434), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -220126,8 +223029,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1723), 44, - ts_builtin_sym_end, + ACTIONS(2436), 46, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -220147,8 +223050,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -220171,12 +223076,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8167] = 4, - ACTIONS(247), 1, + [2052] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1610), 1, + STATE(1613), 1, sym_comment, - ACTIONS(4984), 9, + ACTIONS(4997), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -220186,7 +223091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4982), 52, + ACTIONS(4995), 53, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -220203,6 +223108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, + anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -220239,12 +223145,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8239] = 4, - ACTIONS(247), 1, + [2125] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1611), 1, + STATE(1614), 1, sym_comment, - ACTIONS(4884), 16, + ACTIONS(2502), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -220261,7 +223167,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4882), 45, + ACTIONS(2504), 46, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -220307,12 +223214,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8311] = 4, - ACTIONS(247), 1, + [2198] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1612), 1, + STATE(1615), 1, sym_comment, - ACTIONS(4894), 16, + ACTIONS(2543), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -220329,7 +223236,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4892), 45, + ACTIONS(2545), 46, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -220375,21 +223283,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8383] = 8, - ACTIONS(247), 1, + [2271] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4956), 1, - anon_sym_DOT, - STATE(1613), 1, + STATE(1616), 1, sym_comment, - STATE(1794), 1, - aux_sym_cell_path_repeat1, - STATE(1976), 1, - sym_cell_path, - STATE(2042), 1, - sym_path, - ACTIONS(1840), 9, - sym__newline, + ACTIONS(2531), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -220398,7 +223304,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1842), 48, + aux_sym_unquoted_token1, + ACTIONS(2533), 46, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -220409,36 +223324,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -220447,21 +223352,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8463] = 8, - ACTIONS(247), 1, + [2344] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4956), 1, - anon_sym_DOT, - STATE(1614), 1, + ACTIONS(5057), 1, + aux_sym__immediate_decimal_token2, + STATE(1617), 1, sym_comment, - STATE(1794), 1, - aux_sym_cell_path_repeat1, - STATE(1981), 1, - sym_cell_path, - STATE(2042), 1, - sym_path, - ACTIONS(1844), 9, - sym__newline, + ACTIONS(1769), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -220470,7 +223375,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1846), 48, + aux_sym_unquoted_token1, + ACTIONS(1771), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -220481,36 +223396,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -220519,21 +223422,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8543] = 8, - ACTIONS(247), 1, + [2419] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4956), 1, - anon_sym_DOT, - STATE(1615), 1, + STATE(1618), 1, sym_comment, - STATE(1794), 1, - aux_sym_cell_path_repeat1, - STATE(1982), 1, - sym_cell_path, - STATE(2042), 1, - sym_path, - ACTIONS(1848), 9, - sym__newline, + ACTIONS(2569), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -220542,7 +223443,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1850), 48, + aux_sym_unquoted_token1, + ACTIONS(2571), 46, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -220553,36 +223463,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -220591,21 +223491,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8623] = 8, - ACTIONS(247), 1, + [2492] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4956), 1, - anon_sym_DOT, - STATE(1616), 1, + STATE(1619), 1, sym_comment, - STATE(1794), 1, - aux_sym_cell_path_repeat1, - STATE(1984), 1, - sym_cell_path, - STATE(2042), 1, - sym_path, - ACTIONS(1852), 9, - sym__newline, + ACTIONS(5061), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -220614,7 +223512,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1854), 48, + aux_sym_unquoted_token1, + ACTIONS(5059), 46, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -220625,36 +223532,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -220663,21 +223560,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8703] = 8, - ACTIONS(247), 1, + [2565] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4956), 1, - anon_sym_DOT, - STATE(1617), 1, + ACTIONS(2275), 1, + aux_sym_unquoted_token4, + STATE(1620), 1, sym_comment, - STATE(1794), 1, - aux_sym_cell_path_repeat1, - STATE(1986), 1, - sym_cell_path, - STATE(2042), 1, - sym_path, - ACTIONS(1856), 9, + ACTIONS(1092), 21, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1090), 40, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym_unquoted_token1, + [2640] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(1621), 1, + sym_comment, + ACTIONS(4987), 17, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -220686,7 +223652,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1858), 48, + aux_sym_unquoted_token1, + ACTIONS(4985), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -220697,36 +223673,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_DASH_DASH, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -220735,21 +223699,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8783] = 8, - ACTIONS(247), 1, + [2713] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4956), 1, - anon_sym_DOT, - STATE(1618), 1, + STATE(1622), 1, sym_comment, - STATE(1794), 1, - aux_sym_cell_path_repeat1, - STATE(1989), 1, - sym_cell_path, - STATE(2042), 1, - sym_path, - ACTIONS(1860), 9, - sym__newline, + ACTIONS(2059), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -220758,7 +223720,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1862), 48, + aux_sym_unquoted_token1, + ACTIONS(2061), 46, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -220769,36 +223740,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -220807,21 +223768,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8863] = 8, - ACTIONS(247), 1, + [2786] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4956), 1, - anon_sym_DOT, - STATE(1619), 1, + STATE(1623), 1, sym_comment, - STATE(1794), 1, - aux_sym_cell_path_repeat1, - STATE(1991), 1, - sym_cell_path, - STATE(2042), 1, - sym_path, - ACTIONS(1864), 9, - sym__newline, + ACTIONS(2561), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -220830,7 +223789,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1866), 48, + aux_sym_unquoted_token1, + ACTIONS(2563), 46, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -220841,36 +223809,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -220879,21 +223837,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8943] = 8, - ACTIONS(247), 1, + [2859] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4956), 1, - anon_sym_DOT, - STATE(1620), 1, + STATE(1624), 1, sym_comment, - STATE(1794), 1, - aux_sym_cell_path_repeat1, - STATE(1992), 1, - sym_cell_path, - STATE(2042), 1, - sym_path, - ACTIONS(1868), 9, - sym__newline, + ACTIONS(2524), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -220902,7 +223858,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1870), 48, + aux_sym_unquoted_token1, + ACTIONS(2526), 46, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -220913,36 +223878,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -220951,21 +223906,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [9023] = 8, - ACTIONS(247), 1, + [2932] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4956), 1, - anon_sym_DOT, - STATE(1621), 1, + STATE(1625), 1, sym_comment, - STATE(1794), 1, - aux_sym_cell_path_repeat1, - STATE(1993), 1, - sym_cell_path, - STATE(2042), 1, - sym_path, - ACTIONS(1872), 9, - sym__newline, + ACTIONS(1066), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -220974,7 +223921,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1874), 48, + ACTIONS(1068), 53, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -220986,35 +223934,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -221023,21 +223975,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [9103] = 8, - ACTIONS(247), 1, + [3005] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4956), 1, - anon_sym_DOT, - STATE(1622), 1, + STATE(1626), 1, sym_comment, - STATE(1794), 1, - aux_sym_cell_path_repeat1, - STATE(2026), 1, - sym_cell_path, - STATE(2042), 1, - sym_path, - ACTIONS(1876), 9, - sym__newline, + ACTIONS(1070), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -221046,7 +223990,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1878), 48, + ACTIONS(1072), 53, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221058,35 +224003,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -221095,15 +224044,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [9183] = 5, - ACTIONS(3), 1, + [3078] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2235), 1, - aux_sym_unquoted_token4, - STATE(1623), 1, + STATE(1627), 1, sym_comment, - ACTIONS(2233), 20, - ts_builtin_sym_end, + ACTIONS(2234), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2240), 46, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221117,44 +224087,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2229), 40, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DOLLAR, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_DOT_DOT, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -221163,13 +224113,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [9257] = 4, - ACTIONS(247), 1, + [3151] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1624), 1, + STATE(1628), 1, sym_comment, - ACTIONS(2328), 16, + ACTIONS(4748), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -221186,7 +224135,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2330), 45, + ACTIONS(4746), 46, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -221232,12 +224182,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [9329] = 4, - ACTIONS(247), 1, + [3224] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1625), 1, + STATE(1629), 1, sym_comment, - ACTIONS(2342), 16, + ACTIONS(2067), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -221254,7 +224204,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2344), 45, + ACTIONS(2069), 46, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -221300,58 +224251,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [9401] = 5, - ACTIONS(3), 1, + [3297] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - STATE(1626), 1, + STATE(1630), 1, sym_comment, - ACTIONS(2241), 20, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2237), 40, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(2551), 16, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -221360,24 +224272,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym_unquoted_token1, - [9475] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - STATE(1627), 1, - sym_comment, - ACTIONS(2247), 20, - ts_builtin_sym_end, + ACTIONS(2553), 46, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -221391,44 +224294,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2245), 40, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DOLLAR, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_DOT_DOT, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -221437,22 +224320,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [9549] = 8, - ACTIONS(247), 1, + [3370] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4956), 1, - anon_sym_DOT, - STATE(1628), 1, + STATE(1631), 1, sym_comment, - STATE(1794), 1, - aux_sym_cell_path_repeat1, - STATE(1995), 1, - sym_cell_path, - STATE(2042), 1, - sym_path, - ACTIONS(1880), 9, - sym__newline, + ACTIONS(2565), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -221461,7 +224341,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1882), 48, + aux_sym_unquoted_token1, + ACTIONS(2567), 46, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221472,36 +224361,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -221510,21 +224389,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [9629] = 8, - ACTIONS(247), 1, + [3443] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4956), 1, - anon_sym_DOT, - STATE(1629), 1, + STATE(1632), 1, sym_comment, - STATE(1794), 1, - aux_sym_cell_path_repeat1, - STATE(1997), 1, - sym_cell_path, - STATE(2042), 1, - sym_path, - ACTIONS(1884), 9, - sym__newline, + ACTIONS(1528), 10, + aux_sym_cmd_identifier_token41, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -221533,7 +224405,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1886), 48, + ACTIONS(1530), 52, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221544,36 +224418,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -221582,21 +224458,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [9709] = 8, - ACTIONS(247), 1, + [3516] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4956), 1, - anon_sym_DOT, - STATE(1630), 1, + STATE(1633), 1, sym_comment, - STATE(1794), 1, - aux_sym_cell_path_repeat1, - STATE(1999), 1, - sym_cell_path, - STATE(2042), 1, - sym_path, - ACTIONS(1888), 9, - sym__newline, + ACTIONS(1711), 10, + aux_sym_cmd_identifier_token41, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -221605,7 +224474,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1890), 48, + ACTIONS(1713), 52, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221616,36 +224487,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -221654,12 +224527,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [9789] = 4, - ACTIONS(247), 1, + [3589] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1631), 1, + STATE(1634), 1, sym_comment, - ACTIONS(2348), 16, + ACTIONS(4824), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -221676,7 +224549,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2350), 45, + ACTIONS(4822), 46, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -221722,21 +224596,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [9861] = 8, - ACTIONS(247), 1, + [3662] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4956), 1, - anon_sym_DOT, - STATE(1632), 1, + STATE(1635), 1, sym_comment, - STATE(1794), 1, - aux_sym_cell_path_repeat1, - STATE(2000), 1, - sym_cell_path, - STATE(2042), 1, - sym_path, - ACTIONS(1892), 9, + ACTIONS(2105), 10, sym__newline, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -221745,7 +224612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1894), 48, + ACTIONS(2107), 52, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221757,7 +224624,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_if, anon_sym_LBRACE, + anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -221786,6 +224655,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -221794,12 +224665,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [9941] = 4, - ACTIONS(247), 1, + [3735] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1633), 1, + STATE(1636), 1, sym_comment, - ACTIONS(4988), 16, + ACTIONS(1715), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -221816,7 +224687,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4986), 45, + ACTIONS(1717), 46, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -221862,21 +224734,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10013] = 8, - ACTIONS(247), 1, + [3808] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4956), 1, - anon_sym_DOT, - STATE(1634), 1, + STATE(1637), 1, sym_comment, - STATE(1794), 1, - aux_sym_cell_path_repeat1, - STATE(2003), 1, - sym_cell_path, - STATE(2042), 1, - sym_path, - ACTIONS(1896), 9, - sym__newline, + ACTIONS(2001), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -221885,7 +224755,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1898), 48, + aux_sym_unquoted_token1, + ACTIONS(2003), 46, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221896,36 +224775,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -221934,21 +224803,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10093] = 8, - ACTIONS(247), 1, + [3881] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4956), 1, - anon_sym_DOT, - STATE(1635), 1, + STATE(1638), 1, sym_comment, - STATE(1794), 1, - aux_sym_cell_path_repeat1, - STATE(2006), 1, - sym_cell_path, - STATE(2042), 1, - sym_path, - ACTIONS(1900), 9, - sym__newline, + ACTIONS(1628), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -221957,7 +224824,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1902), 48, + aux_sym_unquoted_token1, + ACTIONS(1640), 46, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -221968,36 +224844,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -222006,21 +224872,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10173] = 8, - ACTIONS(247), 1, + [3954] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4956), 1, - anon_sym_DOT, - STATE(1636), 1, + STATE(1639), 1, sym_comment, - STATE(1794), 1, - aux_sym_cell_path_repeat1, - STATE(2007), 1, - sym_cell_path, - STATE(2042), 1, - sym_path, - ACTIONS(1904), 9, + ACTIONS(5065), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(5063), 46, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [4027] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(1640), 1, + sym_comment, + ACTIONS(1058), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -222029,7 +224962,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1906), 48, + aux_sym_unquoted_token1, + ACTIONS(1060), 46, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -222040,36 +224982,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -222078,12 +225010,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10253] = 4, - ACTIONS(247), 1, + [4100] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1637), 1, + STATE(1641), 1, sym_comment, - ACTIONS(4992), 16, + ACTIONS(1769), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -222100,7 +225032,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4990), 45, + ACTIONS(1771), 46, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -222146,12 +225079,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10325] = 4, - ACTIONS(247), 1, + [4173] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1638), 1, + STATE(1642), 1, sym_comment, - ACTIONS(4996), 16, + ACTIONS(2494), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -222168,7 +225101,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4994), 45, + ACTIONS(2496), 46, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -222214,14 +225148,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10397] = 4, - ACTIONS(247), 1, + [4246] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1639), 1, + STATE(1643), 1, sym_comment, - ACTIONS(1560), 10, - sym__newline, + ACTIONS(4987), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -222230,7 +225169,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1572), 51, + aux_sym_unquoted_token1, + ACTIONS(4985), 46, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -222241,39 +225189,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - aux_sym_record_entry_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -222282,12 +225217,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10469] = 4, - ACTIONS(247), 1, + [4319] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1640), 1, + STATE(1644), 1, sym_comment, - ACTIONS(5000), 16, + ACTIONS(2535), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -222304,7 +225239,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4998), 45, + ACTIONS(2537), 46, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -222350,13 +225286,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10541] = 4, - ACTIONS(3), 1, + [4392] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1641), 1, + STATE(1645), 1, sym_comment, - ACTIONS(2255), 20, - ts_builtin_sym_end, + ACTIONS(5069), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(5067), 46, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222370,44 +225329,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2253), 41, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DOLLAR, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_DOT_DOT, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -222416,14 +225355,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - aux_sym_unquoted_token4, - [10613] = 4, - ACTIONS(247), 1, + [4465] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1642), 1, + STATE(1646), 1, sym_comment, - ACTIONS(5004), 16, + ACTIONS(2418), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -222440,7 +225377,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5002), 45, + ACTIONS(2420), 46, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -222486,13 +225424,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10685] = 4, - ACTIONS(247), 1, + [4538] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1643), 1, + STATE(1647), 1, sym_comment, - ACTIONS(1070), 9, + ACTIONS(5073), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -222501,7 +225445,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1072), 52, + aux_sym_unquoted_token1, + ACTIONS(5071), 46, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222513,39 +225465,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -222554,20 +225493,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10757] = 8, - ACTIONS(247), 1, + [4611] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5006), 1, - anon_sym_DOT, - STATE(1570), 1, - sym_path, - STATE(1644), 1, + STATE(1648), 1, sym_comment, - STATE(1804), 1, - sym_cell_path, - STATE(1942), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1641), 8, + ACTIONS(2466), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -222576,7 +225514,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1645), 49, + aux_sym_unquoted_token1, + ACTIONS(2468), 46, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222588,36 +225534,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -222626,20 +225562,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10837] = 8, - ACTIONS(247), 1, + [4684] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5006), 1, - anon_sym_DOT, - STATE(1570), 1, - sym_path, - STATE(1645), 1, + STATE(1649), 1, sym_comment, - STATE(1812), 1, - sym_cell_path, - STATE(1942), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1675), 8, + ACTIONS(1536), 10, + aux_sym_cmd_identifier_token41, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -222648,7 +225578,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1677), 49, + ACTIONS(1538), 52, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222660,8 +225591,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -222690,6 +225619,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -222698,13 +225631,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10917] = 4, - ACTIONS(247), 1, + [4757] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1646), 1, + STATE(1650), 1, sym_comment, - ACTIONS(5010), 9, + ACTIONS(5077), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -222713,7 +225652,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5008), 52, + aux_sym_unquoted_token1, + ACTIONS(5075), 46, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222725,39 +225672,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -222766,14 +225700,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10989] = 4, - ACTIONS(247), 1, + [4830] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1647), 1, + STATE(1651), 1, sym_comment, - ACTIONS(2458), 10, - sym__newline, + ACTIONS(1062), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -222782,7 +225721,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2460), 51, + aux_sym_unquoted_token1, + ACTIONS(1064), 46, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -222793,39 +225741,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - aux_sym_record_entry_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -222834,13 +225769,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11061] = 4, - ACTIONS(247), 1, + [4903] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1648), 1, + ACTIONS(5079), 1, + anon_sym_EQ2, + STATE(1652), 1, sym_comment, - ACTIONS(2462), 9, + ACTIONS(4947), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -222849,7 +225792,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2464), 52, + aux_sym_unquoted_token1, + ACTIONS(4945), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222861,39 +225813,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -222902,20 +225839,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11133] = 8, - ACTIONS(247), 1, + [4978] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5012), 1, - anon_sym_DOT, - STATE(1256), 1, - sym_cell_path, - STATE(1649), 1, + STATE(1653), 1, sym_comment, - STATE(1883), 1, - aux_sym_cell_path_repeat1, - STATE(2107), 1, - sym_path, - ACTIONS(1005), 8, + ACTIONS(2430), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -222924,8 +225860,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1007), 49, - ts_builtin_sym_end, + aux_sym_unquoted_token1, + ACTIONS(2432), 46, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -222937,35 +225880,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -222974,14 +225908,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11213] = 5, - ACTIONS(247), 1, + [5051] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5014), 1, - anon_sym_EQ2, - STATE(1650), 1, + STATE(1654), 1, sym_comment, - ACTIONS(4900), 16, + ACTIONS(2478), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -222998,8 +225930,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4898), 44, - ts_builtin_sym_end, + ACTIONS(2480), 46, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -223019,8 +225951,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -223043,12 +225977,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11287] = 4, - ACTIONS(247), 1, + [5124] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1651), 1, + STATE(1655), 1, sym_comment, - ACTIONS(5018), 16, + ACTIONS(1038), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -223065,7 +225999,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5016), 45, + ACTIONS(1040), 46, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -223111,13 +226046,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11359] = 4, - ACTIONS(247), 1, + [5197] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1652), 1, + STATE(1656), 1, sym_comment, - ACTIONS(1832), 9, + ACTIONS(2017), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -223126,7 +226067,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1834), 52, + aux_sym_unquoted_token1, + ACTIONS(2019), 46, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223138,39 +226087,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -223179,12 +226115,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11431] = 4, - ACTIONS(247), 1, + [5270] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1653), 1, + STATE(1657), 1, sym_comment, - ACTIONS(1667), 16, + ACTIONS(4997), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -223201,7 +226137,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1669), 45, + ACTIONS(4995), 46, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -223247,13 +226184,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11503] = 4, - ACTIONS(247), 1, + [5343] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1654), 1, + STATE(1658), 1, sym_comment, - ACTIONS(2253), 9, + ACTIONS(2422), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -223262,7 +226205,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2255), 52, + aux_sym_unquoted_token1, + ACTIONS(2424), 46, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223274,39 +226225,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -223315,12 +226253,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11575] = 4, - ACTIONS(247), 1, + [5416] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1655), 1, + ACTIONS(5081), 1, + anon_sym_EQ2, + STATE(1659), 1, sym_comment, - ACTIONS(1659), 16, + ACTIONS(4991), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -223337,7 +226277,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1661), 45, + ACTIONS(4989), 45, + sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, @@ -223357,10 +226299,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -223383,12 +226323,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11647] = 4, - ACTIONS(247), 1, + [5491] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1656), 1, + STATE(1660), 1, sym_comment, - ACTIONS(1721), 16, + ACTIONS(4997), 17, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -223405,7 +226346,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1723), 45, + ACTIONS(4995), 45, + sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, @@ -223424,11 +226367,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -223451,12 +226392,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11719] = 4, - ACTIONS(247), 1, + [5564] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1657), 1, + STATE(1661), 1, sym_comment, - ACTIONS(1738), 16, + ACTIONS(5085), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -223473,7 +226414,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1740), 45, + ACTIONS(5083), 46, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -223519,13 +226461,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11791] = 4, - ACTIONS(247), 1, + [5637] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1658), 1, + STATE(1662), 1, sym_comment, - ACTIONS(4884), 17, - anon_sym_LPAREN, + ACTIONS(2398), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -223542,8 +226483,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4882), 44, - ts_builtin_sym_end, + ACTIONS(2400), 46, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -223562,9 +226503,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_LPAREN2, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -223587,13 +226530,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11863] = 4, - ACTIONS(247), 1, + [5710] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1659), 1, + STATE(1663), 1, sym_comment, - ACTIONS(1822), 9, + ACTIONS(2506), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -223602,7 +226551,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1826), 52, + aux_sym_unquoted_token1, + ACTIONS(2508), 46, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223614,39 +226571,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -223655,22 +226599,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11935] = 4, - ACTIONS(247), 1, + [5783] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1660), 1, + ACTIONS(2287), 1, + aux_sym_unquoted_token4, + STATE(1664), 1, sym_comment, - ACTIONS(2309), 9, - anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2311), 52, + ACTIONS(2285), 21, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223682,39 +226620,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2281), 40, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -223723,13 +226668,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12007] = 4, - ACTIONS(247), 1, + aux_sym_unquoted_token1, + [5858] = 9, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1661), 1, + ACTIONS(5087), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(5089), 1, + anon_sym_DOT_DOT2, + ACTIONS(5093), 1, + sym_filesize_unit, + ACTIONS(5095), 1, + sym_duration_unit, + STATE(1665), 1, sym_comment, - ACTIONS(2466), 9, - anon_sym_DASH, + ACTIONS(5091), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1628), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -223738,7 +226694,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2468), 52, + ACTIONS(1640), 48, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -223750,11 +226707,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -223791,116 +226743,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12079] = 40, - ACTIONS(191), 1, - anon_sym_DOT_DOT, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, + [5941] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3215), 1, - anon_sym_null, - ACTIONS(3265), 1, - anon_sym_LBRACK, - ACTIONS(3271), 1, - anon_sym_LBRACE, - ACTIONS(3315), 1, - aux_sym_expr_unary_token1, - ACTIONS(3317), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3319), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3321), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3323), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4972), 1, - anon_sym_LPAREN, - ACTIONS(4974), 1, + STATE(1666), 1, + sym_comment, + ACTIONS(2557), 16, anon_sym_DOLLAR, - ACTIONS(4976), 1, - anon_sym_DASH_DASH, - ACTIONS(4978), 1, anon_sym_DASH, - STATE(1418), 1, - sym__str_double_quotes, - STATE(1445), 1, - sym_expr_parenthesized, - STATE(1446), 1, - sym_val_variable, - STATE(1646), 1, - sym__expr_unary_minus, - STATE(1647), 1, - sym__val_number, - STATE(1662), 1, - sym_comment, - STATE(1729), 1, - sym__inter_single_quotes, - STATE(1732), 1, - sym__inter_double_quotes, - STATE(2310), 1, - sym__flag, - STATE(2846), 1, - sym__val_number_decimal, - STATE(3520), 1, - sym_val_range, - STATE(3822), 1, - sym__expr_binary_expression, - STATE(5561), 1, - sym__expression, - ACTIONS(213), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(229), 2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3213), 2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2559), 46, + sym_raw_string_begin, anon_sym_true, anon_sym_false, - STATE(3671), 2, - sym_short_flag, - sym_long_flag, - STATE(1687), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, + anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(1643), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [12223] = 4, - ACTIONS(247), 1, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [6014] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1663), 1, + STATE(1667), 1, sym_comment, - ACTIONS(5022), 16, + ACTIONS(2218), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -223917,7 +226834,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5020), 45, + ACTIONS(2220), 46, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -223963,12 +226881,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12295] = 4, - ACTIONS(247), 1, + [6087] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1664), 1, + STATE(1668), 1, sym_comment, - ACTIONS(5026), 16, + ACTIONS(1054), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -223985,7 +226903,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5024), 45, + ACTIONS(1056), 46, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -224031,21 +226950,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12367] = 8, - ACTIONS(247), 1, + [6160] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4956), 1, - anon_sym_DOT, - STATE(1665), 1, + STATE(1669), 1, sym_comment, - STATE(1794), 1, - aux_sym_cell_path_repeat1, - STATE(2042), 1, - sym_path, - STATE(2364), 1, - sym_cell_path, - ACTIONS(1828), 9, - sym__newline, + ACTIONS(2222), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -224054,7 +226971,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1830), 48, + aux_sym_unquoted_token1, + ACTIONS(2228), 46, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -224065,36 +226991,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -224103,12 +227019,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12447] = 4, - ACTIONS(247), 1, + [6233] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1666), 1, + ACTIONS(4645), 1, + aux_sym_unquoted_token2, + STATE(1670), 1, sym_comment, - ACTIONS(5030), 16, + ACTIONS(1628), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -224125,7 +227043,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5028), 45, + ACTIONS(1640), 45, + sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, @@ -224145,10 +227065,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -224171,12 +227089,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12519] = 4, - ACTIONS(247), 1, + [6308] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1667), 1, + STATE(1671), 1, sym_comment, - ACTIONS(5034), 16, + ACTIONS(2410), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -224193,7 +227111,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5032), 45, + ACTIONS(2412), 46, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -224239,13 +227158,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12591] = 4, - ACTIONS(247), 1, + [6381] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1668), 1, + STATE(1672), 1, sym_comment, - ACTIONS(2388), 9, + ACTIONS(2438), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -224254,7 +227179,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2390), 52, + aux_sym_unquoted_token1, + ACTIONS(2440), 46, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224266,39 +227199,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -224307,13 +227227,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12663] = 4, - ACTIONS(247), 1, + [6454] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1669), 1, + STATE(1673), 1, sym_comment, - ACTIONS(2328), 9, + ACTIONS(5099), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -224322,7 +227248,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2330), 52, + aux_sym_unquoted_token1, + ACTIONS(5097), 46, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224334,39 +227268,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -224375,13 +227296,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12735] = 4, - ACTIONS(247), 1, + [6527] = 9, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1670), 1, + ACTIONS(5027), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(5029), 1, + anon_sym_DOT_DOT2, + ACTIONS(5101), 1, + sym_filesize_unit, + ACTIONS(5103), 1, + sym_duration_unit, + STATE(1674), 1, sym_comment, - ACTIONS(2338), 9, - anon_sym_DASH, + ACTIONS(5031), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1628), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -224390,8 +227322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2340), 52, - sym__newline, + ACTIONS(1640), 47, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -224403,38 +227334,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -224443,13 +227370,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12807] = 4, - ACTIONS(247), 1, + [6610] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1671), 1, + STATE(1675), 1, sym_comment, - ACTIONS(2342), 9, + ACTIONS(2047), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -224458,7 +227391,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2344), 52, + aux_sym_unquoted_token1, + ACTIONS(2049), 46, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224470,39 +227411,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -224511,12 +227439,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12879] = 4, - ACTIONS(247), 1, + [6683] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1672), 1, + ACTIONS(5105), 1, + anon_sym_LBRACK2, + STATE(1676), 1, sym_comment, - ACTIONS(2517), 9, + ACTIONS(2355), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -224526,7 +227456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2519), 52, + ACTIONS(2359), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224579,35 +227509,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12951] = 4, - ACTIONS(247), 1, + [6758] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1673), 1, + STATE(1677), 1, sym_comment, - ACTIONS(1070), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1072), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(2291), 21, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -224621,24 +227530,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2289), 41, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -224647,116 +227576,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13023] = 40, - ACTIONS(191), 1, - anon_sym_DOT_DOT, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3215), 1, - anon_sym_null, - ACTIONS(3265), 1, - anon_sym_LBRACK, - ACTIONS(3271), 1, - anon_sym_LBRACE, - ACTIONS(3315), 1, - aux_sym_expr_unary_token1, - ACTIONS(3317), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3319), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3321), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3323), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4972), 1, - anon_sym_LPAREN, - ACTIONS(4974), 1, - anon_sym_DOLLAR, - ACTIONS(4976), 1, - anon_sym_DASH_DASH, - ACTIONS(4978), 1, - anon_sym_DASH, - STATE(1418), 1, - sym__str_double_quotes, - STATE(1445), 1, - sym_expr_parenthesized, - STATE(1446), 1, - sym_val_variable, - STATE(1646), 1, - sym__expr_unary_minus, - STATE(1647), 1, - sym__val_number, - STATE(1674), 1, - sym_comment, - STATE(1729), 1, - sym__inter_single_quotes, - STATE(1732), 1, - sym__inter_double_quotes, - STATE(2338), 1, - sym__flag, - STATE(2846), 1, - sym__val_number_decimal, - STATE(3520), 1, - sym_val_range, - STATE(3822), 1, - sym__expr_binary_expression, - STATE(5537), 1, - sym__expression, - ACTIONS(213), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3213), 2, - anon_sym_true, - anon_sym_false, - STATE(3671), 2, - sym_short_flag, - sym_long_flag, - STATE(1687), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1643), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [13167] = 4, - ACTIONS(247), 1, + aux_sym_unquoted_token1, + aux_sym_unquoted_token4, + [6831] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1675), 1, + STATE(1678), 1, sym_comment, - ACTIONS(1042), 16, + ACTIONS(5110), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -224773,7 +227600,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1044), 45, + ACTIONS(5107), 46, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -224819,12 +227647,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13239] = 4, - ACTIONS(247), 1, + [6904] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1676), 1, + STATE(1679), 1, sym_comment, - ACTIONS(2462), 16, + ACTIONS(5115), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -224841,7 +227669,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2464), 45, + ACTIONS(5113), 46, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -224887,14 +227716,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13311] = 5, - ACTIONS(247), 1, + [6977] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4539), 1, - aux_sym_unquoted_token2, - STATE(1677), 1, + STATE(1680), 1, sym_comment, - ACTIONS(1560), 16, + ACTIONS(5119), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -224911,8 +227738,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1572), 44, - ts_builtin_sym_end, + ACTIONS(5117), 46, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -224932,8 +227759,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -224956,20 +227785,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13385] = 8, - ACTIONS(247), 1, + [7050] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5006), 1, - anon_sym_DOT, - STATE(1257), 1, - sym_cell_path, - STATE(1570), 1, - sym_path, - STATE(1678), 1, + STATE(1681), 1, sym_comment, - STATE(1942), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1005), 8, + ACTIONS(1670), 10, + sym__newline, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -224978,8 +227801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1007), 49, - sym__newline, + ACTIONS(1672), 52, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -224991,35 +227813,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -225028,12 +227854,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13465] = 4, - ACTIONS(247), 1, + [7123] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1679), 1, + STATE(1682), 1, sym_comment, - ACTIONS(1038), 16, + ACTIONS(1703), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -225050,7 +227876,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1040), 45, + ACTIONS(1705), 46, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -225096,81 +227923,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13537] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1680), 1, - sym_comment, - ACTIONS(2521), 9, - anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2523), 52, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [13609] = 4, - ACTIONS(247), 1, + [7196] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1681), 1, + STATE(1683), 1, sym_comment, - ACTIONS(2348), 9, + ACTIONS(2087), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -225179,7 +227944,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2350), 52, + aux_sym_unquoted_token1, + ACTIONS(2089), 46, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225191,39 +227964,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -225232,12 +227992,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13681] = 4, - ACTIONS(247), 1, + [7269] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1682), 1, + STATE(1684), 1, sym_comment, - ACTIONS(1822), 16, + ACTIONS(2510), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -225254,7 +228014,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1826), 45, + ACTIONS(2512), 46, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -225300,12 +228061,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13753] = 4, - ACTIONS(247), 1, + [7342] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1683), 1, + STATE(1685), 1, sym_comment, - ACTIONS(2309), 16, + ACTIONS(2442), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -225322,7 +228083,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2311), 45, + ACTIONS(2444), 46, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -225368,13 +228130,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13825] = 4, - ACTIONS(247), 1, + [7415] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1684), 1, + STATE(1686), 1, sym_comment, - ACTIONS(1848), 9, + ACTIONS(5123), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -225383,7 +228151,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1850), 52, + aux_sym_unquoted_token1, + ACTIONS(5121), 46, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225395,39 +228171,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -225436,12 +228199,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13897] = 4, - ACTIONS(247), 1, + [7488] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1685), 1, + STATE(1687), 1, sym_comment, - ACTIONS(2466), 16, + ACTIONS(2230), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -225458,7 +228221,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2468), 45, + ACTIONS(2232), 46, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -225504,12 +228268,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13969] = 4, - ACTIONS(247), 1, + [7561] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1686), 1, + STATE(1688), 1, sym_comment, - ACTIONS(1034), 16, + ACTIONS(2470), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -225526,7 +228290,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1036), 45, + ACTIONS(2472), 46, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -225572,13 +228337,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14041] = 5, - ACTIONS(247), 1, + [7634] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1687), 1, + STATE(1689), 1, sym_comment, - ACTIONS(4798), 9, + ACTIONS(2043), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -225587,7 +228358,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4796), 24, + aux_sym_unquoted_token1, + ACTIONS(2045), 46, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225599,11 +228378,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -225612,42 +228406,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(4800), 28, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [14115] = 4, - ACTIONS(247), 1, + [7707] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1688), 1, + ACTIONS(4485), 1, + aux_sym_unquoted_token2, + STATE(1690), 1, sym_comment, - ACTIONS(2412), 9, + ACTIONS(1628), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -225656,7 +228429,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2414), 52, + aux_sym_unquoted_token1, + ACTIONS(1640), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225668,39 +228450,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -225709,13 +228476,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14187] = 4, - ACTIONS(247), 1, + [7782] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1689), 1, + STATE(1691), 1, sym_comment, - ACTIONS(2416), 9, + ACTIONS(2206), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -225724,7 +228497,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2418), 52, + aux_sym_unquoted_token1, + ACTIONS(2212), 46, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225736,39 +228517,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -225777,13 +228545,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14259] = 4, - ACTIONS(247), 1, + [7855] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1690), 1, + STATE(1692), 1, sym_comment, - ACTIONS(1864), 9, + ACTIONS(1909), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -225792,7 +228566,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1866), 52, + aux_sym_unquoted_token1, + ACTIONS(1911), 46, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225804,39 +228586,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -225845,12 +228614,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14331] = 4, - ACTIONS(247), 1, + [7928] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1691), 1, + STATE(1693), 1, sym_comment, - ACTIONS(1872), 9, + ACTIONS(1074), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -225860,7 +228629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1874), 52, + ACTIONS(1076), 53, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -225905,6 +228674,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -225913,12 +228683,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14403] = 4, - ACTIONS(247), 1, + [8001] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1692), 1, + STATE(1694), 1, sym_comment, - ACTIONS(2338), 16, + ACTIONS(2498), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -225935,7 +228705,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2340), 45, + ACTIONS(2500), 46, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -225981,12 +228752,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14475] = 4, - ACTIONS(247), 1, + [8074] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1693), 1, + STATE(1695), 1, sym_comment, - ACTIONS(5038), 16, + ACTIONS(2450), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -226003,7 +228774,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5036), 45, + ACTIONS(2452), 46, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -226049,12 +228821,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14547] = 4, - ACTIONS(247), 1, + [8147] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1694), 1, + STATE(1696), 1, sym_comment, - ACTIONS(5042), 16, + ACTIONS(2494), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -226071,7 +228843,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5040), 45, + ACTIONS(2496), 46, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -226117,14 +228890,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14619] = 5, - ACTIONS(247), 1, + [8220] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4169), 1, - aux_sym_unquoted_token2, - STATE(1695), 1, + ACTIONS(5125), 1, + anon_sym_DOT, + STATE(1697), 1, + sym_comment, + STATE(1909), 1, + aux_sym_cell_path_repeat1, + STATE(2030), 1, + sym_cell_path, + STATE(2132), 1, + sym_path, + ACTIONS(2067), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2069), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [8300] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(1698), 1, sym_comment, - ACTIONS(1560), 16, + ACTIONS(2446), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -226141,7 +228984,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1572), 44, + ACTIONS(2448), 45, + sym_raw_string_begin, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -226186,12 +229030,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14693] = 4, - ACTIONS(247), 1, + [8372] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1696), 1, + STATE(1699), 1, sym_comment, - ACTIONS(2517), 16, + ACTIONS(2206), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -226208,7 +229052,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2519), 45, + ACTIONS(2212), 45, + sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, @@ -226228,10 +229074,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -226254,13 +229098,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14765] = 4, - ACTIONS(247), 1, + [8444] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1697), 1, + STATE(1700), 1, sym_comment, - ACTIONS(1876), 9, - anon_sym_DASH, + ACTIONS(1038), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -226269,8 +229113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1878), 52, - sym__newline, + ACTIONS(1040), 52, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -226282,38 +229125,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, + anon_sym_if, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_QMARK2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -226322,12 +229166,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14837] = 4, - ACTIONS(247), 1, + [8516] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1698), 1, + STATE(1701), 1, sym_comment, - ACTIONS(2420), 9, + ACTIONS(5129), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -226337,7 +229181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2422), 52, + ACTIONS(5127), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226390,80 +229234,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14909] = 4, - ACTIONS(247), 1, + [8588] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1699), 1, - sym_comment, - ACTIONS(2521), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2523), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [14981] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1700), 1, + STATE(1702), 1, sym_comment, - ACTIONS(1888), 9, + ACTIONS(5133), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -226473,7 +229249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1890), 52, + ACTIONS(5131), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226526,13 +229302,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15053] = 4, - ACTIONS(247), 1, + [8660] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1701), 1, + STATE(1703), 1, sym_comment, - ACTIONS(2434), 9, + ACTIONS(2486), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -226541,7 +229323,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2436), 52, + aux_sym_unquoted_token1, + ACTIONS(2488), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226553,39 +229344,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -226594,12 +229370,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15125] = 4, - ACTIONS(247), 1, + [8732] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1702), 1, + STATE(1704), 1, sym_comment, - ACTIONS(1848), 16, + ACTIONS(5053), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -226616,7 +229392,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1850), 45, + ACTIONS(5051), 45, + sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, @@ -226636,10 +229414,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -226662,13 +229438,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15197] = 4, - ACTIONS(247), 1, + [8804] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1703), 1, + ACTIONS(5125), 1, + anon_sym_DOT, + STATE(1635), 1, + sym_cell_path, + STATE(1705), 1, sym_comment, - ACTIONS(2438), 9, - anon_sym_DASH, + STATE(1909), 1, + aux_sym_cell_path_repeat1, + STATE(2132), 1, + sym_path, + ACTIONS(1670), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -226677,8 +229461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2440), 52, - sym__newline, + ACTIONS(1672), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -226690,38 +229473,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -226730,13 +229510,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15269] = 4, - ACTIONS(247), 1, + [8884] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1704), 1, + STATE(1706), 1, sym_comment, - ACTIONS(1892), 9, + ACTIONS(2414), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -226745,7 +229531,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1894), 52, + aux_sym_unquoted_token1, + ACTIONS(2416), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226757,39 +229552,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -226798,12 +229578,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15341] = 4, - ACTIONS(247), 1, + [8956] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1705), 1, + STATE(1707), 1, sym_comment, - ACTIONS(1900), 9, + ACTIONS(5019), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -226813,7 +229593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1902), 52, + ACTIONS(5017), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -226866,12 +229646,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15413] = 4, - ACTIONS(247), 1, + [9028] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1706), 1, + STATE(1708), 1, sym_comment, - ACTIONS(2412), 16, + ACTIONS(1078), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -226888,7 +229668,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2414), 45, + ACTIONS(1080), 45, + sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, @@ -226908,10 +229690,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -226934,12 +229714,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15485] = 4, - ACTIONS(247), 1, + [9100] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1707), 1, + STATE(1709), 1, sym_comment, - ACTIONS(2442), 9, + ACTIONS(5019), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -226949,7 +229729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2444), 52, + ACTIONS(5017), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227002,12 +229782,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15557] = 4, - ACTIONS(247), 1, + [9172] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1708), 1, + STATE(1710), 1, sym_comment, - ACTIONS(2416), 16, + ACTIONS(5019), 9, + anon_sym_DASH, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5017), 52, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [9244] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(1711), 1, + sym_comment, + ACTIONS(1897), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -227024,7 +229872,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2418), 45, + ACTIONS(1899), 45, + sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, @@ -227044,10 +229894,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -227070,12 +229918,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15629] = 4, - ACTIONS(247), 1, + [9316] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1709), 1, + STATE(1712), 1, sym_comment, - ACTIONS(1864), 16, + ACTIONS(2547), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -227092,7 +229940,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1866), 45, + ACTIONS(2549), 45, + sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, @@ -227112,10 +229962,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -227138,12 +229986,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15701] = 4, - ACTIONS(247), 1, + [9388] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1710), 1, + STATE(1713), 1, sym_comment, - ACTIONS(2446), 9, + ACTIONS(2510), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -227153,7 +230001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2448), 52, + ACTIONS(2512), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227206,12 +230054,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15773] = 4, - ACTIONS(247), 1, + [9460] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1711), 1, + STATE(1714), 1, sym_comment, - ACTIONS(1904), 9, + ACTIONS(5019), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -227221,7 +230069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1906), 52, + ACTIONS(5017), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227274,19 +230122,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15845] = 4, - ACTIONS(247), 1, + [9532] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1712), 1, + ACTIONS(5135), 1, + anon_sym_DOT, + STATE(1693), 1, + sym_path, + STATE(1715), 1, sym_comment, - ACTIONS(1872), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1963), 1, + aux_sym_cell_path_repeat1, + STATE(1996), 1, + sym_cell_path, + ACTIONS(1664), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -227295,14 +230144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1874), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1668), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227314,26 +230156,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -227342,13 +230194,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15917] = 4, - ACTIONS(247), 1, + [9612] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1713), 1, + ACTIONS(5135), 1, + anon_sym_DOT, + STATE(1693), 1, + sym_path, + STATE(1716), 1, sym_comment, - ACTIONS(2450), 9, - anon_sym_DASH, + STATE(1901), 1, + sym_cell_path, + STATE(1963), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1670), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -227357,7 +230216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2452), 52, + ACTIONS(1672), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227370,10 +230229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -227410,19 +230266,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15989] = 4, - ACTIONS(247), 1, + [9692] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1714), 1, + ACTIONS(5135), 1, + anon_sym_DOT, + STATE(1294), 1, + sym_cell_path, + STATE(1693), 1, + sym_path, + STATE(1717), 1, sym_comment, - ACTIONS(1876), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1963), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1021), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -227431,14 +230288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1878), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1023), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227450,26 +230300,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -227478,12 +230338,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16061] = 4, - ACTIONS(247), 1, + [9772] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1715), 1, + STATE(1718), 1, sym_comment, - ACTIONS(2454), 9, + ACTIONS(5019), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -227493,7 +230353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2456), 52, + ACTIONS(5017), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227546,84 +230406,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16133] = 8, - ACTIONS(247), 1, + [9844] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4956), 1, - anon_sym_DOT, - STATE(1716), 1, - sym_comment, - STATE(1794), 1, - aux_sym_cell_path_repeat1, - STATE(2042), 1, - sym_path, - STATE(2379), 1, - sym_cell_path, - ACTIONS(1912), 9, - sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1914), 48, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [16213] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1717), 1, + STATE(1719), 1, sym_comment, - ACTIONS(5046), 9, + ACTIONS(5019), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -227633,7 +230421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5044), 52, + ACTIONS(5017), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227686,12 +230474,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16285] = 4, - ACTIONS(247), 1, + [9916] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1718), 1, + STATE(1720), 1, sym_comment, - ACTIONS(2420), 16, + ACTIONS(2539), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -227708,7 +230496,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2422), 45, + ACTIONS(2541), 45, + sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, @@ -227728,10 +230518,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -227754,19 +230542,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16357] = 4, - ACTIONS(247), 1, + [9988] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1719), 1, + STATE(1721), 1, sym_comment, - ACTIONS(1888), 16, - anon_sym_DOLLAR, + ACTIONS(5019), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -227775,14 +230557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1890), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(5017), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227794,26 +230569,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -227822,19 +230610,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16429] = 4, - ACTIONS(247), 1, + [10060] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1720), 1, + STATE(1722), 1, sym_comment, - ACTIONS(2434), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(1054), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -227843,15 +230625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2436), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(1056), 52, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -227862,26 +230636,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, + anon_sym_if, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + anon_sym_QMARK2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -227890,19 +230678,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16501] = 4, - ACTIONS(247), 1, + [10132] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1721), 1, + STATE(1723), 1, sym_comment, - ACTIONS(2438), 16, - anon_sym_DOLLAR, + ACTIONS(2410), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -227911,14 +230693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2440), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(2412), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227930,26 +230705,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -227958,19 +230746,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16573] = 4, - ACTIONS(247), 1, + [10204] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1722), 1, + STATE(1724), 1, sym_comment, - ACTIONS(1892), 16, - anon_sym_DOLLAR, + ACTIONS(2438), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -227979,14 +230761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1894), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(2440), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -227998,26 +230773,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -228026,15 +230814,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16645] = 5, - ACTIONS(247), 1, + [10276] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5048), 1, - anon_sym_LBRACK2, - STATE(1723), 1, + STATE(1725), 1, sym_comment, - ACTIONS(2313), 17, - anon_sym_LBRACK, + ACTIONS(5061), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -228051,7 +230836,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2317), 43, + ACTIONS(5059), 45, + sym_raw_string_begin, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -228070,6 +230856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, @@ -228095,12 +230882,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16719] = 4, - ACTIONS(247), 1, + [10348] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1724), 1, + STATE(1726), 1, sym_comment, - ACTIONS(1900), 16, + ACTIONS(2482), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -228117,7 +230904,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1902), 45, + ACTIONS(2484), 45, + sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, @@ -228137,10 +230926,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -228163,80 +230950,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16791] = 4, - ACTIONS(247), 1, + [10420] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1725), 1, - sym_comment, - ACTIONS(1042), 9, - sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1044), 52, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_QMARK2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [16863] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1726), 1, + STATE(1727), 1, sym_comment, - ACTIONS(2442), 16, + ACTIONS(2398), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -228253,7 +230972,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2444), 45, + ACTIONS(2400), 45, + sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, @@ -228273,10 +230994,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -228299,12 +231018,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16935] = 4, - ACTIONS(247), 1, + [10492] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1727), 1, + STATE(1728), 1, sym_comment, - ACTIONS(2446), 16, + ACTIONS(2406), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -228321,7 +231040,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2448), 45, + ACTIONS(2408), 45, + sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, @@ -228341,10 +231062,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -228367,12 +231086,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17007] = 4, - ACTIONS(247), 1, + [10564] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1728), 1, + STATE(1729), 1, sym_comment, - ACTIONS(1904), 16, + ACTIONS(2506), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -228389,7 +231108,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1906), 45, + ACTIONS(2508), 45, + sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, @@ -228409,10 +231130,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -228435,80 +231154,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17079] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1729), 1, - sym_comment, - ACTIONS(2305), 9, - anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2307), 52, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [17151] = 4, - ACTIONS(247), 1, + [10636] = 4, + ACTIONS(249), 1, anon_sym_POUND, STATE(1730), 1, sym_comment, - ACTIONS(2450), 16, + ACTIONS(2543), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -228525,7 +231176,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2452), 45, + ACTIONS(2545), 45, + sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, @@ -228545,10 +231198,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -228571,19 +231222,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17223] = 4, - ACTIONS(247), 1, + [10708] = 4, + ACTIONS(249), 1, anon_sym_POUND, STATE(1731), 1, sym_comment, - ACTIONS(2454), 16, - anon_sym_DOLLAR, + ACTIONS(5019), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -228592,14 +231237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2456), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(5017), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228611,26 +231249,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -228639,12 +231290,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17295] = 4, - ACTIONS(247), 1, + [10780] = 4, + ACTIONS(249), 1, anon_sym_POUND, STATE(1732), 1, sym_comment, - ACTIONS(2305), 9, + ACTIONS(5019), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -228654,7 +231305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2307), 52, + ACTIONS(5017), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228707,19 +231358,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17367] = 4, - ACTIONS(247), 1, + [10852] = 8, + ACTIONS(249), 1, anon_sym_POUND, + ACTIONS(5125), 1, + anon_sym_DOT, + STATE(1326), 1, + sym_cell_path, STATE(1733), 1, sym_comment, - ACTIONS(1560), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1909), 1, + aux_sym_cell_path_repeat1, + STATE(2132), 1, + sym_path, + ACTIONS(1021), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -228728,15 +231381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1572), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(1023), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -228747,26 +231392,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -228775,12 +231430,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17439] = 4, - ACTIONS(247), 1, + [10932] = 4, + ACTIONS(249), 1, anon_sym_POUND, STATE(1734), 1, sym_comment, - ACTIONS(2458), 16, + ACTIONS(2524), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -228797,7 +231452,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2460), 45, + ACTIONS(2526), 45, + sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, @@ -228817,10 +231474,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -228843,19 +231498,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17511] = 4, - ACTIONS(247), 1, + [11004] = 4, + ACTIONS(249), 1, anon_sym_POUND, STATE(1735), 1, sym_comment, - ACTIONS(4736), 16, - anon_sym_DOLLAR, + ACTIONS(5019), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -228864,14 +231513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(4734), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(5017), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -228883,26 +231525,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -228911,21 +231566,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17583] = 8, - ACTIONS(247), 1, + [11076] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4956), 1, - anon_sym_DOT, - STATE(1548), 1, - sym_cell_path, STATE(1736), 1, sym_comment, - STATE(1794), 1, - aux_sym_cell_path_repeat1, - STATE(2042), 1, - sym_path, - ACTIONS(1641), 9, - sym__newline, + ACTIONS(2569), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -228934,7 +231581,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1645), 48, + ACTIONS(2571), 52, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -228946,35 +231594,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -228983,12 +231634,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17663] = 4, - ACTIONS(247), 1, + [11148] = 4, + ACTIONS(249), 1, anon_sym_POUND, STATE(1737), 1, sym_comment, - ACTIONS(4840), 16, + ACTIONS(2561), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -229005,7 +231656,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4838), 45, + ACTIONS(2563), 45, + sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, @@ -229025,10 +231678,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -229051,12 +231702,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17735] = 4, - ACTIONS(247), 1, + [11220] = 4, + ACTIONS(249), 1, anon_sym_POUND, STATE(1738), 1, sym_comment, - ACTIONS(5050), 9, + ACTIONS(5019), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -229066,7 +231717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4800), 52, + ACTIONS(5017), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229119,12 +231770,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17807] = 4, - ACTIONS(247), 1, + [11292] = 5, + ACTIONS(249), 1, anon_sym_POUND, STATE(1739), 1, sym_comment, - ACTIONS(5054), 9, + ACTIONS(5139), 9, + anon_sym_DASH, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5137), 24, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(5127), 28, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [11366] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(1740), 1, + sym_comment, + ACTIONS(5019), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -229134,7 +231854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5052), 52, + ACTIONS(5017), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229187,12 +231907,220 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17879] = 4, - ACTIONS(247), 1, + [11438] = 40, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1740), 1, + ACTIONS(475), 1, + anon_sym_LBRACK, + ACTIONS(477), 1, + anon_sym_LPAREN, + ACTIONS(481), 1, + anon_sym_DOLLAR, + ACTIONS(483), 1, + anon_sym_DASH, + ACTIONS(493), 1, + anon_sym_LBRACE, + ACTIONS(499), 1, + aux_sym_expr_unary_token1, + ACTIONS(503), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(505), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(507), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(509), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(513), 1, + anon_sym_0b, + ACTIONS(517), 1, + sym_val_date, + ACTIONS(519), 1, + anon_sym_DQUOTE, + ACTIONS(523), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(525), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(529), 1, + sym_raw_string_begin, + ACTIONS(3224), 1, + sym__newline, + ACTIONS(5143), 1, + anon_sym_null, + ACTIONS(5145), 1, + anon_sym_DOT_DOT, + STATE(1741), 1, + sym_comment, + STATE(2078), 1, + sym__val_number, + STATE(2325), 1, + sym__inter_single_quotes, + STATE(2326), 1, + sym__inter_double_quotes, + STATE(2328), 1, + sym__expr_unary_minus, + STATE(2823), 1, + aux_sym_shebang_repeat1, + STATE(3526), 1, + sym__val_number_decimal, + STATE(3563), 1, + sym_val_variable, + STATE(3580), 1, + sym_expr_parenthesized, + STATE(3829), 1, + sym__expr_binary_expression_parenthesized, + STATE(3856), 1, + sym_val_range, + STATE(6191), 1, + sym__expression_parenthesized, + ACTIONS(515), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(521), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5141), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5147), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1820), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2318), 3, + sym_expr_unary, + sym_expr_binary_parenthesized, + sym__value, + ACTIONS(511), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(2358), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [11582] = 40, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(475), 1, + anon_sym_LBRACK, + ACTIONS(477), 1, + anon_sym_LPAREN, + ACTIONS(481), 1, + anon_sym_DOLLAR, + ACTIONS(483), 1, + anon_sym_DASH, + ACTIONS(493), 1, + anon_sym_LBRACE, + ACTIONS(499), 1, + aux_sym_expr_unary_token1, + ACTIONS(503), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(505), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(507), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(509), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(513), 1, + anon_sym_0b, + ACTIONS(517), 1, + sym_val_date, + ACTIONS(519), 1, + anon_sym_DQUOTE, + ACTIONS(523), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(525), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(529), 1, + sym_raw_string_begin, + ACTIONS(3224), 1, + sym__newline, + ACTIONS(5143), 1, + anon_sym_null, + ACTIONS(5145), 1, + anon_sym_DOT_DOT, + STATE(1741), 1, + aux_sym_shebang_repeat1, + STATE(1742), 1, + sym_comment, + STATE(2078), 1, + sym__val_number, + STATE(2325), 1, + sym__inter_single_quotes, + STATE(2326), 1, + sym__inter_double_quotes, + STATE(2328), 1, + sym__expr_unary_minus, + STATE(3526), 1, + sym__val_number_decimal, + STATE(3563), 1, + sym_val_variable, + STATE(3580), 1, + sym_expr_parenthesized, + STATE(3829), 1, + sym__expr_binary_expression_parenthesized, + STATE(3856), 1, + sym_val_range, + STATE(6610), 1, + sym__expression_parenthesized, + ACTIONS(515), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(521), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5141), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5147), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1820), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2318), 3, + sym_expr_unary, + sym_expr_binary_parenthesized, + sym__value, + ACTIONS(511), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(2358), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [11726] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(1743), 1, sym_comment, - ACTIONS(4844), 9, + ACTIONS(5019), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -229202,7 +232130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4842), 52, + ACTIONS(5017), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229255,12 +232183,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17951] = 4, - ACTIONS(247), 1, + [11798] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1741), 1, + STATE(1744), 1, sym_comment, - ACTIONS(2019), 16, + ACTIONS(5077), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -229277,7 +232205,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2025), 45, + ACTIONS(5075), 45, + sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, @@ -229297,10 +232227,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -229323,13 +232251,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [18023] = 4, - ACTIONS(247), 1, + [11870] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1742), 1, + ACTIONS(5149), 1, + anon_sym_DOT, + STATE(1320), 1, + sym_cell_path, + STATE(1745), 1, sym_comment, - ACTIONS(4844), 9, - anon_sym_DASH, + STATE(1966), 1, + aux_sym_cell_path_repeat1, + STATE(2151), 1, + sym_path, + ACTIONS(1021), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -229338,7 +232273,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4842), 52, + ACTIONS(1023), 49, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229350,11 +232286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -229391,12 +232323,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [18095] = 4, - ACTIONS(247), 1, + [11950] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1743), 1, + STATE(1746), 1, sym_comment, - ACTIONS(4844), 9, + ACTIONS(2001), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -229406,7 +232338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4842), 52, + ACTIONS(2003), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229459,13 +232391,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [18167] = 4, - ACTIONS(247), 1, + [12022] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1744), 1, + STATE(1747), 1, sym_comment, - ACTIONS(4844), 9, + ACTIONS(2234), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -229474,7 +232412,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4842), 52, + aux_sym_unquoted_token1, + ACTIONS(2240), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229486,39 +232433,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -229527,116 +232459,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [18239] = 40, - ACTIONS(191), 1, + [12094] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(1748), 1, + sym_comment, + ACTIONS(2498), 16, + anon_sym_DOLLAR, + anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(227), 1, + aux_sym__val_number_decimal_token1, anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3215), 1, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2500), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, anon_sym_null, - ACTIONS(3265), 1, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, - ACTIONS(3271), 1, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(3315), 1, - aux_sym_expr_unary_token1, - ACTIONS(3317), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3319), 1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, - ACTIONS(3321), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3323), 1, aux_sym__val_number_decimal_token4, - ACTIONS(4972), 1, - anon_sym_LPAREN, - ACTIONS(4974), 1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [12166] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(1749), 1, + sym_comment, + ACTIONS(2494), 16, anon_sym_DOLLAR, - ACTIONS(4976), 1, - anon_sym_DASH_DASH, - ACTIONS(4978), 1, anon_sym_DASH, - STATE(1418), 1, - sym__str_double_quotes, - STATE(1445), 1, - sym_expr_parenthesized, - STATE(1446), 1, - sym_val_variable, - STATE(1646), 1, - sym__expr_unary_minus, - STATE(1647), 1, - sym__val_number, - STATE(1729), 1, - sym__inter_single_quotes, - STATE(1732), 1, - sym__inter_double_quotes, - STATE(1745), 1, - sym_comment, - STATE(2304), 1, - sym__flag, - STATE(2846), 1, - sym__val_number_decimal, - STATE(3520), 1, - sym_val_range, - STATE(3822), 1, - sym__expr_binary_expression, - STATE(5574), 1, - sym__expression, - ACTIONS(213), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(229), 2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3213), 2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2496), 45, + sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, - STATE(3671), 2, - sym_short_flag, - sym_long_flag, - STATE(1687), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, + anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(1643), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [18383] = 4, - ACTIONS(247), 1, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [12238] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1746), 1, + STATE(1750), 1, sym_comment, - ACTIONS(1832), 16, + ACTIONS(2494), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -229653,7 +232617,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1834), 45, + ACTIONS(2496), 45, + sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, @@ -229673,10 +232639,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -229699,13 +232663,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [18455] = 4, - ACTIONS(247), 1, + [12310] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1747), 1, + STATE(1751), 1, sym_comment, - ACTIONS(4844), 9, + ACTIONS(2510), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -229714,7 +232684,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4842), 52, + aux_sym_unquoted_token1, + ACTIONS(2512), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -229726,39 +232705,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -229767,332 +232731,285 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [18527] = 40, - ACTIONS(191), 1, + [12382] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(1752), 1, + sym_comment, + ACTIONS(5085), 16, + anon_sym_DOLLAR, + anon_sym_DASH, anon_sym_DOT_DOT, - ACTIONS(227), 1, + aux_sym__val_number_decimal_token1, anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3215), 1, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(5083), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, anon_sym_null, - ACTIONS(3265), 1, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, - ACTIONS(3271), 1, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(3315), 1, - aux_sym_expr_unary_token1, - ACTIONS(3317), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3319), 1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, - ACTIONS(3321), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3323), 1, aux_sym__val_number_decimal_token4, - ACTIONS(4972), 1, - anon_sym_LPAREN, - ACTIONS(4974), 1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [12454] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(1753), 1, + sym_comment, + ACTIONS(1715), 16, anon_sym_DOLLAR, - ACTIONS(4976), 1, - anon_sym_DASH_DASH, - ACTIONS(4978), 1, anon_sym_DASH, - STATE(1418), 1, - sym__str_double_quotes, - STATE(1445), 1, - sym_expr_parenthesized, - STATE(1446), 1, - sym_val_variable, - STATE(1646), 1, - sym__expr_unary_minus, - STATE(1647), 1, - sym__val_number, - STATE(1729), 1, - sym__inter_single_quotes, - STATE(1732), 1, - sym__inter_double_quotes, - STATE(1748), 1, - sym_comment, - STATE(2311), 1, - sym__flag, - STATE(2846), 1, - sym__val_number_decimal, - STATE(3520), 1, - sym_val_range, - STATE(3822), 1, - sym__expr_binary_expression, - STATE(5588), 1, - sym__expression, - ACTIONS(213), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(229), 2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3213), 2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1717), 45, + sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, - STATE(3671), 2, - sym_short_flag, - sym_long_flag, - STATE(1687), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, + anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(1643), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [18671] = 40, - ACTIONS(191), 1, - anon_sym_DOT_DOT, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, sym_val_date, - ACTIONS(233), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [12526] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3215), 1, - anon_sym_null, - ACTIONS(3265), 1, - anon_sym_LBRACK, - ACTIONS(3271), 1, - anon_sym_LBRACE, - ACTIONS(3315), 1, - aux_sym_expr_unary_token1, - ACTIONS(3317), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3319), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3321), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3323), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4972), 1, - anon_sym_LPAREN, - ACTIONS(4974), 1, + STATE(1754), 1, + sym_comment, + ACTIONS(2426), 16, anon_sym_DOLLAR, - ACTIONS(4976), 1, - anon_sym_DASH_DASH, - ACTIONS(4978), 1, anon_sym_DASH, - STATE(1418), 1, - sym__str_double_quotes, - STATE(1445), 1, - sym_expr_parenthesized, - STATE(1446), 1, - sym_val_variable, - STATE(1646), 1, - sym__expr_unary_minus, - STATE(1647), 1, - sym__val_number, - STATE(1729), 1, - sym__inter_single_quotes, - STATE(1732), 1, - sym__inter_double_quotes, - STATE(1749), 1, - sym_comment, - STATE(2312), 1, - sym__flag, - STATE(2846), 1, - sym__val_number_decimal, - STATE(3520), 1, - sym_val_range, - STATE(3822), 1, - sym__expr_binary_expression, - STATE(5589), 1, - sym__expression, - ACTIONS(213), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(229), 2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3213), 2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2428), 45, + sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, - STATE(3671), 2, - sym_short_flag, - sym_long_flag, - STATE(1687), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, + anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(1643), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [18815] = 40, - ACTIONS(191), 1, - anon_sym_DOT_DOT, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, sym_val_date, - ACTIONS(233), 1, anon_sym_DQUOTE, - ACTIONS(237), 1, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [12598] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3215), 1, - anon_sym_null, - ACTIONS(3265), 1, - anon_sym_LBRACK, - ACTIONS(3271), 1, - anon_sym_LBRACE, - ACTIONS(3315), 1, - aux_sym_expr_unary_token1, - ACTIONS(3317), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3319), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3321), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3323), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4972), 1, - anon_sym_LPAREN, - ACTIONS(4974), 1, + STATE(1755), 1, + sym_comment, + ACTIONS(4748), 16, anon_sym_DOLLAR, - ACTIONS(4976), 1, - anon_sym_DASH_DASH, - ACTIONS(4978), 1, anon_sym_DASH, - STATE(1418), 1, - sym__str_double_quotes, - STATE(1445), 1, - sym_expr_parenthesized, - STATE(1446), 1, - sym_val_variable, - STATE(1646), 1, - sym__expr_unary_minus, - STATE(1647), 1, - sym__val_number, - STATE(1729), 1, - sym__inter_single_quotes, - STATE(1732), 1, - sym__inter_double_quotes, - STATE(1750), 1, - sym_comment, - STATE(2316), 1, - sym__flag, - STATE(2846), 1, - sym__val_number_decimal, - STATE(3520), 1, - sym_val_range, - STATE(3822), 1, - sym__expr_binary_expression, - STATE(5554), 1, - sym__expression, - ACTIONS(213), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(229), 2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3213), 2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(4746), 45, + sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, - STATE(3671), 2, - sym_short_flag, - sym_long_flag, - STATE(1687), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, + anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(1643), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [18959] = 8, - ACTIONS(247), 1, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [12670] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5006), 1, - anon_sym_DOT, - STATE(1570), 1, - sym_path, - STATE(1652), 1, - sym_cell_path, - STATE(1751), 1, + STATE(1756), 1, sym_comment, - STATE(1942), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1828), 8, + ACTIONS(2535), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -230101,7 +233018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1830), 49, + ACTIONS(2537), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230114,7 +233031,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -230151,20 +233071,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [19039] = 8, - ACTIONS(247), 1, + [12742] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5006), 1, - anon_sym_DOT, - STATE(1570), 1, - sym_path, - STATE(1659), 1, - sym_cell_path, - STATE(1752), 1, + STATE(1757), 1, sym_comment, - STATE(1942), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1912), 8, + ACTIONS(2466), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -230173,7 +233086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1914), 49, + ACTIONS(2468), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230186,7 +233099,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -230223,20 +233139,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [19119] = 8, - ACTIONS(247), 1, + [12814] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5006), 1, - anon_sym_DOT, - STATE(1570), 1, - sym_path, - STATE(1668), 1, - sym_cell_path, - STATE(1753), 1, + STATE(1758), 1, sym_comment, - STATE(1942), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1832), 8, + ACTIONS(2001), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -230245,7 +233160,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1834), 49, + aux_sym_unquoted_token1, + ACTIONS(2003), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230257,36 +233181,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -230295,20 +233207,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [19199] = 8, - ACTIONS(247), 1, + [12886] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5006), 1, - anon_sym_DOT, - STATE(1570), 1, - sym_path, - STATE(1670), 1, - sym_cell_path, - STATE(1754), 1, + STATE(1759), 1, sym_comment, - STATE(1942), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1822), 8, + ACTIONS(2535), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -230317,7 +233228,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1826), 49, + aux_sym_unquoted_token1, + ACTIONS(2537), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230329,36 +233249,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -230367,20 +233275,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [19279] = 8, - ACTIONS(247), 1, + [12958] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5006), 1, - anon_sym_DOT, - STATE(1570), 1, - sym_path, - STATE(1680), 1, - sym_cell_path, - STATE(1755), 1, + STATE(1760), 1, sym_comment, - STATE(1942), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1836), 8, + ACTIONS(2430), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -230389,7 +233296,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1838), 49, + aux_sym_unquoted_token1, + ACTIONS(2432), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230401,36 +233317,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -230439,20 +233343,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [19359] = 8, - ACTIONS(247), 1, + [13030] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5006), 1, - anon_sym_DOT, - STATE(1570), 1, - sym_path, - STATE(1684), 1, - sym_cell_path, - STATE(1756), 1, + STATE(1761), 1, sym_comment, - STATE(1942), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1840), 8, + ACTIONS(1703), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -230461,7 +233364,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1842), 49, + aux_sym_unquoted_token1, + ACTIONS(1705), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230473,36 +233385,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -230511,20 +233411,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [19439] = 8, - ACTIONS(247), 1, + [13102] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5006), 1, - anon_sym_DOT, - STATE(1570), 1, - sym_path, - STATE(1688), 1, - sym_cell_path, - STATE(1757), 1, + STATE(1762), 1, sym_comment, - STATE(1942), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1844), 8, + ACTIONS(2478), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -230533,7 +233432,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1846), 49, + aux_sym_unquoted_token1, + ACTIONS(2480), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230545,36 +233453,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -230583,20 +233479,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [19519] = 8, - ACTIONS(247), 1, + [13174] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5006), 1, - anon_sym_DOT, - STATE(1570), 1, - sym_path, - STATE(1689), 1, - sym_cell_path, - STATE(1758), 1, + STATE(1763), 1, sym_comment, - STATE(1942), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1848), 8, + ACTIONS(2466), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -230605,7 +233500,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1850), 49, + aux_sym_unquoted_token1, + ACTIONS(2468), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230617,36 +233521,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -230655,20 +233547,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [19599] = 8, - ACTIONS(247), 1, + [13246] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5006), 1, - anon_sym_DOT, - STATE(1570), 1, - sym_path, - STATE(1690), 1, - sym_cell_path, - STATE(1759), 1, + STATE(1764), 1, sym_comment, - STATE(1942), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1852), 8, + ACTIONS(1769), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1771), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [13318] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(1765), 1, + sym_comment, + ACTIONS(5153), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -230677,7 +233630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1854), 49, + ACTIONS(5151), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230690,7 +233643,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -230727,20 +233683,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [19679] = 8, - ACTIONS(247), 1, + [13390] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5006), 1, - anon_sym_DOT, - STATE(1570), 1, - sym_path, - STATE(1691), 1, - sym_cell_path, - STATE(1760), 1, + STATE(1766), 1, sym_comment, - STATE(1942), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1856), 8, + ACTIONS(2017), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -230749,7 +233704,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1858), 49, + aux_sym_unquoted_token1, + ACTIONS(2019), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230761,36 +233725,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -230799,20 +233751,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [19759] = 8, - ACTIONS(247), 1, + [13462] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5006), 1, - anon_sym_DOT, - STATE(1570), 1, - sym_path, - STATE(1697), 1, - sym_cell_path, - STATE(1761), 1, + STATE(1767), 1, sym_comment, - STATE(1942), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1860), 8, + ACTIONS(1826), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -230821,7 +233772,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1862), 49, + aux_sym_unquoted_token1, + ACTIONS(1828), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230833,36 +233793,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -230871,20 +233819,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [19839] = 8, - ACTIONS(247), 1, + [13534] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5006), 1, - anon_sym_DOT, - STATE(1570), 1, - sym_path, - STATE(1698), 1, - sym_cell_path, - STATE(1762), 1, + STATE(1768), 1, sym_comment, - STATE(1942), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1864), 8, + ACTIONS(5110), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -230893,7 +233840,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1866), 49, + aux_sym_unquoted_token1, + ACTIONS(5107), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230905,36 +233861,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -230943,20 +233887,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [19919] = 8, - ACTIONS(247), 1, + [13606] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5006), 1, - anon_sym_DOT, - STATE(1570), 1, - sym_path, - STATE(1700), 1, - sym_cell_path, - STATE(1763), 1, + STATE(1769), 1, sym_comment, - STATE(1942), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1868), 8, + ACTIONS(2289), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -230965,7 +233902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1870), 49, + ACTIONS(2291), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -230978,7 +233915,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -231015,20 +233955,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [19999] = 8, - ACTIONS(247), 1, + [13678] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5006), 1, - anon_sym_DOT, - STATE(1570), 1, - sym_path, - STATE(1701), 1, - sym_cell_path, - STATE(1764), 1, + STATE(1770), 1, sym_comment, - STATE(1942), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1872), 8, + ACTIONS(2043), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -231037,7 +233976,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1874), 49, + aux_sym_unquoted_token1, + ACTIONS(2045), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231049,36 +233997,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -231087,20 +234023,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [20079] = 8, - ACTIONS(247), 1, + [13750] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5006), 1, - anon_sym_DOT, - STATE(1570), 1, - sym_path, - STATE(1703), 1, - sym_cell_path, - STATE(1765), 1, + STATE(1771), 1, sym_comment, - STATE(1942), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1876), 8, + ACTIONS(2047), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -231109,7 +234044,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1878), 49, + aux_sym_unquoted_token1, + ACTIONS(2049), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231121,36 +234065,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -231159,20 +234091,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [20159] = 8, - ACTIONS(247), 1, + [13822] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5006), 1, - anon_sym_DOT, - STATE(1570), 1, - sym_path, - STATE(1704), 1, - sym_cell_path, - STATE(1766), 1, + STATE(1772), 1, sym_comment, - STATE(1942), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1880), 8, + ACTIONS(2434), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -231181,7 +234112,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1882), 49, + aux_sym_unquoted_token1, + ACTIONS(2436), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231193,36 +234133,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [13894] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(1773), 1, + sym_comment, + ACTIONS(2059), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2061), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -231231,20 +234227,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [20239] = 8, - ACTIONS(247), 1, + [13966] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5006), 1, - anon_sym_DOT, - STATE(1570), 1, - sym_path, - STATE(1705), 1, - sym_cell_path, - STATE(1767), 1, + STATE(1774), 1, sym_comment, - STATE(1942), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1884), 8, + ACTIONS(2442), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -231253,7 +234248,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1886), 49, + aux_sym_unquoted_token1, + ACTIONS(2444), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231265,36 +234269,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -231303,20 +234295,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [20319] = 8, - ACTIONS(247), 1, + [14038] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5006), 1, - anon_sym_DOT, - STATE(1570), 1, - sym_path, - STATE(1707), 1, - sym_cell_path, - STATE(1768), 1, + STATE(1775), 1, sym_comment, - STATE(1942), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1888), 8, + ACTIONS(2450), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -231325,7 +234316,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1890), 49, + aux_sym_unquoted_token1, + ACTIONS(2452), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231337,36 +234337,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -231375,20 +234363,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [20399] = 8, - ACTIONS(247), 1, + [14110] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5006), 1, - anon_sym_DOT, - STATE(1570), 1, - sym_path, - STATE(1710), 1, - sym_cell_path, - STATE(1769), 1, + STATE(1776), 1, sym_comment, - STATE(1942), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1892), 8, + ACTIONS(2067), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -231397,7 +234384,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1894), 49, + aux_sym_unquoted_token1, + ACTIONS(2069), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231409,36 +234405,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -231447,20 +234431,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [20479] = 8, - ACTIONS(247), 1, + [14182] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5006), 1, - anon_sym_DOT, - STATE(1570), 1, - sym_path, - STATE(1711), 1, - sym_cell_path, - STATE(1770), 1, + STATE(1777), 1, sym_comment, - STATE(1942), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1896), 8, + ACTIONS(2017), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -231469,7 +234446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1898), 49, + ACTIONS(2019), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231482,7 +234459,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -231519,20 +234499,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [20559] = 8, - ACTIONS(247), 1, + [14254] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5006), 1, - anon_sym_DOT, - STATE(1570), 1, - sym_path, - STATE(1713), 1, - sym_cell_path, - STATE(1771), 1, + STATE(1778), 1, sym_comment, - STATE(1942), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1900), 8, + ACTIONS(2087), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -231541,7 +234520,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1902), 49, + aux_sym_unquoted_token1, + ACTIONS(2089), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231553,36 +234541,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -231591,20 +234567,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [20639] = 8, - ACTIONS(247), 1, + [14326] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5006), 1, - anon_sym_DOT, - STATE(1570), 1, - sym_path, - STATE(1715), 1, - sym_cell_path, - STATE(1772), 1, + STATE(1779), 1, sym_comment, - STATE(1942), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1904), 8, + ACTIONS(2470), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -231613,7 +234588,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1906), 49, + aux_sym_unquoted_token1, + ACTIONS(2472), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231625,36 +234609,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -231663,21 +234635,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [20719] = 8, - ACTIONS(247), 1, + [14398] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4956), 1, - anon_sym_DOT, - STATE(1558), 1, - sym_cell_path, - STATE(1773), 1, + STATE(1780), 1, sym_comment, - STATE(1794), 1, - aux_sym_cell_path_repeat1, - STATE(2042), 1, - sym_path, - ACTIONS(1675), 9, - sym__newline, + ACTIONS(2474), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -231686,7 +234656,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1677), 48, + aux_sym_unquoted_token1, + ACTIONS(2476), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -231697,36 +234677,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -231735,13 +234703,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [20799] = 4, - ACTIONS(247), 1, + [14470] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1774), 1, + STATE(1781), 1, sym_comment, - ACTIONS(4844), 9, + ACTIONS(2095), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -231750,7 +234724,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4842), 52, + aux_sym_unquoted_token1, + ACTIONS(2097), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231762,39 +234745,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -231803,13 +234771,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [20871] = 4, - ACTIONS(247), 1, + [14542] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1775), 1, + STATE(1782), 1, sym_comment, - ACTIONS(1038), 9, - sym__newline, + ACTIONS(2502), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -231818,7 +234792,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1040), 52, + aux_sym_unquoted_token1, + ACTIONS(2504), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -231829,40 +234813,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_if, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_QMARK2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -231871,12 +234839,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [20943] = 4, - ACTIONS(247), 1, + [14614] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1776), 1, + STATE(1783), 1, sym_comment, - ACTIONS(4844), 9, + ACTIONS(2043), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -231886,7 +234854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4842), 52, + ACTIONS(2045), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -231939,13 +234907,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21015] = 4, - ACTIONS(247), 1, + [14686] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1777), 1, + ACTIONS(5125), 1, + anon_sym_DOT, + STATE(1784), 1, sym_comment, - ACTIONS(2362), 9, - anon_sym_DASH, + STATE(1909), 1, + aux_sym_cell_path_repeat1, + STATE(2132), 1, + sym_path, + STATE(2402), 1, + sym_cell_path, + ACTIONS(1901), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -231954,8 +234930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2364), 52, - sym__newline, + ACTIONS(1903), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -231967,38 +234942,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -232007,13 +234979,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21087] = 4, - ACTIONS(247), 1, + [14766] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1778), 1, + STATE(1785), 1, sym_comment, - ACTIONS(4844), 9, + ACTIONS(2410), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -232022,7 +235000,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4842), 52, + aux_sym_unquoted_token1, + ACTIONS(2412), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232034,39 +235021,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -232075,13 +235047,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21159] = 4, - ACTIONS(247), 1, + [14838] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1779), 1, + STATE(1786), 1, sym_comment, - ACTIONS(2366), 9, + ACTIONS(2531), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -232090,7 +235068,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2368), 52, + aux_sym_unquoted_token1, + ACTIONS(2533), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232102,39 +235089,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -232143,13 +235115,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21231] = 4, - ACTIONS(247), 1, + [14910] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1780), 1, + STATE(1787), 1, sym_comment, - ACTIONS(4844), 9, + ACTIONS(2438), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -232158,7 +235136,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4842), 52, + aux_sym_unquoted_token1, + ACTIONS(2440), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232170,39 +235157,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -232211,13 +235183,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21303] = 4, - ACTIONS(247), 1, + [14982] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1781), 1, + STATE(1788), 1, sym_comment, - ACTIONS(4844), 9, + ACTIONS(1628), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -232226,7 +235204,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4842), 52, + aux_sym_unquoted_token1, + ACTIONS(1640), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232238,39 +235225,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -232279,12 +235251,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21375] = 4, - ACTIONS(247), 1, + [15054] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1782), 1, + STATE(1789), 1, sym_comment, - ACTIONS(2473), 16, + ACTIONS(5099), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -232301,7 +235273,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2475), 45, + ACTIONS(5097), 45, + sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, @@ -232321,10 +235295,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -232347,12 +235319,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21447] = 4, - ACTIONS(247), 1, + [15126] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1783), 1, + ACTIONS(5125), 1, + anon_sym_DOT, + STATE(1790), 1, + sym_comment, + STATE(1909), 1, + aux_sym_cell_path_repeat1, + STATE(2132), 1, + sym_path, + STATE(2409), 1, + sym_cell_path, + ACTIONS(1893), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1895), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [15206] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(1791), 1, sym_comment, - ACTIONS(4844), 9, + ACTIONS(2047), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -232362,7 +235406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4842), 52, + ACTIONS(2049), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232415,13 +235459,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21519] = 4, - ACTIONS(247), 1, + [15278] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1784), 1, + STATE(1792), 1, sym_comment, - ACTIONS(4844), 9, + ACTIONS(2418), 16, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -232430,7 +235480,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4842), 52, + aux_sym_unquoted_token1, + ACTIONS(2420), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232442,39 +235501,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -232483,12 +235527,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21591] = 4, - ACTIONS(247), 1, + [15350] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1785), 1, + STATE(1793), 1, sym_comment, - ACTIONS(1991), 16, + ACTIONS(4824), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -232505,7 +235549,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1997), 45, + ACTIONS(4822), 45, + sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, @@ -232525,10 +235571,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -232551,12 +235595,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21663] = 4, - ACTIONS(247), 1, + [15422] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1786), 1, + STATE(1794), 1, sym_comment, - ACTIONS(4844), 9, + ACTIONS(5157), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -232566,7 +235610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4842), 52, + ACTIONS(5155), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232619,12 +235663,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21735] = 4, - ACTIONS(247), 1, + [15494] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1787), 1, + STATE(1795), 1, sym_comment, - ACTIONS(1999), 16, + ACTIONS(1058), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -232641,7 +235685,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2005), 45, + ACTIONS(1060), 45, + sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, @@ -232661,10 +235707,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -232687,12 +235731,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21807] = 4, - ACTIONS(247), 1, + [15566] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1788), 1, + STATE(1796), 1, sym_comment, - ACTIONS(2007), 16, + ACTIONS(4987), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -232709,7 +235753,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2013), 45, + ACTIONS(4985), 45, + sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, @@ -232729,10 +235775,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -232755,13 +235799,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21879] = 4, - ACTIONS(247), 1, + [15638] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1789), 1, + STATE(1797), 1, sym_comment, - ACTIONS(4894), 17, - anon_sym_LPAREN, + ACTIONS(4913), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -232778,8 +235821,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4892), 44, - ts_builtin_sym_end, + ACTIONS(2800), 45, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -232798,9 +235841,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -232823,19 +235867,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21951] = 4, - ACTIONS(247), 1, + [15710] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1790), 1, + STATE(1798), 1, sym_comment, - ACTIONS(2388), 16, - anon_sym_DOLLAR, + ACTIONS(2474), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -232844,14 +235882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2390), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(2476), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -232863,26 +235894,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -232891,12 +235935,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22023] = 4, - ACTIONS(247), 1, + [15782] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1791), 1, + STATE(1799), 1, sym_comment, - ACTIONS(5059), 16, + ACTIONS(2095), 9, + anon_sym_DASH, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2097), 52, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [15854] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(1800), 1, + sym_comment, + ACTIONS(1062), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -232913,7 +236025,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5056), 45, + ACTIONS(1064), 45, + sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, @@ -232933,10 +236047,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -232959,12 +236071,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22095] = 4, - ACTIONS(247), 1, + [15926] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(1801), 1, + sym_comment, + ACTIONS(2502), 9, + anon_sym_DASH, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2504), 52, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [15998] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1792), 1, + STATE(1802), 1, sym_comment, - ACTIONS(2477), 16, + ACTIONS(1909), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -232981,7 +236161,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2479), 45, + ACTIONS(1911), 45, + sym_raw_string_begin, + ts_builtin_sym_end, anon_sym_true, anon_sym_false, anon_sym_null, @@ -233001,10 +236183,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -233027,20 +236207,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22167] = 8, - ACTIONS(247), 1, + [16070] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5012), 1, - anon_sym_DOT, - STATE(1793), 1, + STATE(1803), 1, sym_comment, - STATE(1883), 1, - aux_sym_cell_path_repeat1, - STATE(2107), 1, - sym_path, - STATE(2402), 1, - sym_cell_path, - ACTIONS(1840), 8, + ACTIONS(2398), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -233049,8 +236222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1842), 48, - ts_builtin_sym_end, + ACTIONS(2400), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -233062,6 +236234,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -233098,19 +236275,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22246] = 7, - ACTIONS(247), 1, + [16142] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4956), 1, - anon_sym_DOT, - STATE(1794), 1, + STATE(1804), 1, sym_comment, - STATE(1809), 1, - aux_sym_cell_path_repeat1, - STATE(2042), 1, - sym_path, - ACTIONS(1011), 9, - sym__newline, + ACTIONS(2406), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -233119,7 +236290,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1013), 48, + ACTIONS(2408), 52, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -233131,35 +236303,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -233168,18 +236343,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22323] = 7, - ACTIONS(247), 1, + [16214] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - STATE(1795), 1, + ACTIONS(5125), 1, + anon_sym_DOT, + STATE(1681), 1, + sym_cell_path, + STATE(1805), 1, sym_comment, - STATE(2092), 1, - aux_sym_shebang_repeat1, - STATE(7225), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5062), 9, + STATE(1909), 1, + aux_sym_cell_path_repeat1, + STATE(2132), 1, + sym_path, + ACTIONS(1664), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -233189,7 +236366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5064), 48, + ACTIONS(1668), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -233238,19 +236415,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22400] = 7, - ACTIONS(247), 1, + [16294] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - STATE(1796), 1, + STATE(1806), 1, sym_comment, - STATE(2093), 1, - aux_sym_shebang_repeat1, - STATE(7225), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5062), 9, - sym__newline, + ACTIONS(2551), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -233259,7 +236436,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5064), 48, + aux_sym_unquoted_token1, + ACTIONS(2553), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -233270,36 +236457,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -233308,19 +236483,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22477] = 7, - ACTIONS(247), 1, + [16366] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - STATE(1797), 1, + STATE(1807), 1, sym_comment, - STATE(2097), 1, - aux_sym_shebang_repeat1, - STATE(7225), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5062), 9, - sym__newline, + ACTIONS(2218), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -233329,7 +236504,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5064), 48, + aux_sym_unquoted_token1, + ACTIONS(2220), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -233340,36 +236525,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -233378,19 +236551,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22554] = 7, - ACTIONS(247), 1, + [16438] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - STATE(1798), 1, + STATE(1808), 1, sym_comment, - STATE(2098), 1, - aux_sym_shebang_repeat1, - STATE(7225), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5062), 9, - sym__newline, + ACTIONS(2531), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -233399,7 +236566,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5064), 48, + ACTIONS(2533), 52, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -233411,35 +236579,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -233448,19 +236619,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22631] = 7, - ACTIONS(247), 1, + [16510] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - STATE(1799), 1, + STATE(1809), 1, sym_comment, - STATE(2099), 1, - aux_sym_shebang_repeat1, - STATE(7225), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5062), 9, - sym__newline, + ACTIONS(2422), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -233469,7 +236640,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5064), 48, + aux_sym_unquoted_token1, + ACTIONS(2424), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -233480,36 +236661,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -233518,12 +236687,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22708] = 4, - ACTIONS(247), 1, + [16582] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1800), 1, + STATE(1810), 1, sym_comment, - ACTIONS(2458), 16, + ACTIONS(1038), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -233540,7 +236709,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2460), 44, + ACTIONS(1040), 45, + sym_raw_string_begin, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -233585,19 +236755,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22779] = 7, - ACTIONS(247), 1, + [16654] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - STATE(1801), 1, + STATE(1811), 1, sym_comment, - STATE(2100), 1, - aux_sym_shebang_repeat1, - STATE(7225), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5062), 9, - sym__newline, + ACTIONS(4997), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -233606,7 +236776,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5064), 48, + aux_sym_unquoted_token1, + ACTIONS(4995), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -233617,36 +236797,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -233655,19 +236823,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22856] = 7, - ACTIONS(247), 1, + [16726] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - STATE(1802), 1, + STATE(1812), 1, sym_comment, - STATE(2101), 1, - aux_sym_shebang_repeat1, - STATE(7225), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5062), 9, - sym__newline, + ACTIONS(2434), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -233676,7 +236838,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5064), 48, + ACTIONS(2436), 52, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -233688,35 +236851,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -233725,18 +236891,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22933] = 7, - ACTIONS(247), 1, + [16798] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - STATE(1803), 1, + ACTIONS(5125), 1, + anon_sym_DOT, + STATE(1813), 1, sym_comment, - STATE(2102), 1, - aux_sym_shebang_repeat1, - STATE(7225), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5062), 9, + STATE(1909), 1, + aux_sym_cell_path_repeat1, + STATE(2132), 1, + sym_path, + STATE(2249), 1, + sym_cell_path, + ACTIONS(1909), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -233746,7 +236914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5064), 48, + ACTIONS(1911), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -233795,13 +236963,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23010] = 4, - ACTIONS(247), 1, + [16878] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1804), 1, + STATE(1814), 1, sym_comment, - ACTIONS(1675), 9, - anon_sym_DOT_DOT2, + ACTIONS(2059), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -233810,7 +236978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1677), 51, + ACTIONS(2061), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -233823,7 +236991,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -233852,8 +237023,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -233862,12 +237031,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23081] = 4, - ACTIONS(247), 1, + [16950] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1805), 1, + STATE(1815), 1, sym_comment, - ACTIONS(1034), 16, + ACTIONS(4923), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -233884,8 +237053,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1036), 44, - ts_builtin_sym_end, + ACTIONS(4921), 45, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -233905,6 +237074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, @@ -233929,12 +237099,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23152] = 4, - ACTIONS(247), 1, + [17022] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1806), 1, + STATE(1816), 1, sym_comment, - ACTIONS(2380), 16, + ACTIONS(5115), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -233951,7 +237121,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2382), 44, + ACTIONS(5113), 45, + sym_raw_string_begin, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -233996,18 +237167,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23223] = 7, - ACTIONS(247), 1, + [17094] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - STATE(1807), 1, + ACTIONS(5125), 1, + anon_sym_DOT, + STATE(1817), 1, sym_comment, - STATE(2103), 1, - aux_sym_shebang_repeat1, - STATE(7225), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5062), 9, + STATE(1909), 1, + aux_sym_cell_path_repeat1, + STATE(2132), 1, + sym_path, + STATE(2260), 1, + sym_cell_path, + ACTIONS(1897), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -234017,7 +237190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5064), 48, + ACTIONS(1899), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -234066,84 +237239,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23300] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1808), 1, - sym_comment, - ACTIONS(2384), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2386), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [23371] = 6, - ACTIONS(247), 1, + [17174] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5066), 1, + ACTIONS(5125), 1, anon_sym_DOT, - STATE(2042), 1, - sym_path, - STATE(1809), 2, + STATE(1818), 1, sym_comment, + STATE(1909), 1, aux_sym_cell_path_repeat1, - ACTIONS(1015), 9, + STATE(2005), 1, + sym_cell_path, + STATE(2132), 1, + sym_path, + ACTIONS(1929), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -234153,7 +237262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1017), 48, + ACTIONS(1931), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -234202,12 +237311,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23446] = 4, - ACTIONS(247), 1, + [17254] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1810), 1, + STATE(1819), 1, sym_comment, - ACTIONS(5004), 16, + ACTIONS(1090), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -234224,7 +237333,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5002), 44, + ACTIONS(1092), 45, + sym_raw_string_begin, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -234269,18 +237379,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23517] = 7, - ACTIONS(247), 1, + [17326] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - STATE(1811), 1, + STATE(1820), 1, sym_comment, - STATE(2174), 1, - aux_sym_shebang_repeat1, - STATE(7225), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5069), 9, + ACTIONS(1058), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -234290,7 +237394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5071), 48, + ACTIONS(1060), 52, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -234302,7 +237406,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_if, anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_QMARK2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -234331,6 +237438,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -234339,13 +237447,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23594] = 4, - ACTIONS(247), 1, + [17398] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1812), 1, + STATE(1821), 1, sym_comment, - ACTIONS(2141), 9, - anon_sym_DOT_DOT2, + ACTIONS(5023), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -234354,7 +237468,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2143), 51, + aux_sym_unquoted_token1, + ACTIONS(5021), 45, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -234366,38 +237488,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -234406,20 +237515,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23665] = 8, - ACTIONS(247), 1, + [17470] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5012), 1, - anon_sym_DOT, - STATE(1813), 1, + STATE(1822), 1, sym_comment, - STATE(1883), 1, - aux_sym_cell_path_repeat1, - STATE(2107), 1, - sym_path, - STATE(2416), 1, - sym_cell_path, - ACTIONS(1864), 8, + ACTIONS(2569), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -234428,8 +237536,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1866), 48, + aux_sym_unquoted_token1, + ACTIONS(2571), 45, + sym_raw_string_begin, ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -234441,34 +237557,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -234477,20 +237583,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23744] = 8, - ACTIONS(247), 1, + [17542] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5012), 1, - anon_sym_DOT, - STATE(1814), 1, + STATE(1823), 1, sym_comment, - STATE(1883), 1, - aux_sym_cell_path_repeat1, - STATE(2107), 1, - sym_path, - STATE(2417), 1, - sym_cell_path, - ACTIONS(1868), 8, + ACTIONS(5161), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -234499,8 +237598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1870), 48, - ts_builtin_sym_end, + ACTIONS(5159), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -234512,6 +237610,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -234548,20 +237651,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23823] = 8, - ACTIONS(247), 1, + [17614] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5012), 1, - anon_sym_DOT, - STATE(1815), 1, + STATE(1824), 1, sym_comment, - STATE(1883), 1, - aux_sym_cell_path_repeat1, - STATE(2107), 1, - sym_path, - STATE(2418), 1, - sym_cell_path, - ACTIONS(1872), 8, + ACTIONS(5065), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -234570,8 +237672,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1874), 48, + aux_sym_unquoted_token1, + ACTIONS(5063), 45, + sym_raw_string_begin, ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -234583,34 +237693,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -234619,20 +237719,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23902] = 8, - ACTIONS(247), 1, + [17686] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5012), 1, - anon_sym_DOT, - STATE(1816), 1, + STATE(1825), 1, sym_comment, - STATE(1883), 1, - aux_sym_cell_path_repeat1, - STATE(2107), 1, - sym_path, - STATE(2419), 1, - sym_cell_path, - ACTIONS(1876), 8, + ACTIONS(5073), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -234641,8 +237740,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1878), 48, + aux_sym_unquoted_token1, + ACTIONS(5071), 45, + sym_raw_string_begin, ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -234654,34 +237761,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -234690,20 +237787,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23981] = 8, - ACTIONS(247), 1, + [17758] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5012), 1, - anon_sym_DOT, - STATE(1817), 1, + STATE(1826), 1, sym_comment, - STATE(1883), 1, - aux_sym_cell_path_repeat1, - STATE(2107), 1, - sym_path, - STATE(2420), 1, - sym_cell_path, - ACTIONS(1880), 8, + ACTIONS(1054), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -234712,8 +237808,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1882), 48, + aux_sym_unquoted_token1, + ACTIONS(1056), 45, + sym_raw_string_begin, ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -234722,37 +237826,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_GT_PIPE, anon_sym_o_GT_PIPE, anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -234761,20 +237855,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24060] = 8, - ACTIONS(247), 1, + [17830] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5012), 1, - anon_sym_DOT, - STATE(1818), 1, + STATE(1827), 1, sym_comment, - STATE(1883), 1, - aux_sym_cell_path_repeat1, - STATE(2107), 1, - sym_path, - STATE(2421), 1, - sym_cell_path, - ACTIONS(1884), 8, + ACTIONS(2494), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -234783,8 +237870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1886), 48, - ts_builtin_sym_end, + ACTIONS(2496), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -234796,6 +237882,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -234832,20 +237923,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24139] = 8, - ACTIONS(247), 1, + [17902] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5012), 1, - anon_sym_DOT, - STATE(1819), 1, + STATE(1828), 1, sym_comment, - STATE(1883), 1, - aux_sym_cell_path_repeat1, - STATE(2018), 1, - sym_cell_path, - STATE(2107), 1, - sym_path, - ACTIONS(1641), 8, + ACTIONS(2442), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -234854,8 +237938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1645), 48, - ts_builtin_sym_end, + ACTIONS(2444), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -234867,6 +237950,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -234903,82 +237991,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24218] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - STATE(1820), 1, - sym_comment, - STATE(2177), 1, - aux_sym_shebang_repeat1, - STATE(7225), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5069), 9, - sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5071), 48, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [24295] = 4, - ACTIONS(247), 1, + [17974] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1821), 1, + STATE(1829), 1, sym_comment, - ACTIONS(4736), 16, + ACTIONS(5119), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -234995,7 +238013,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4734), 44, + ACTIONS(5117), 45, + sym_raw_string_begin, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -235040,13 +238059,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24366] = 4, - ACTIONS(247), 1, + [18046] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1822), 1, + STATE(1830), 1, sym_comment, - ACTIONS(4884), 9, - sym__newline, + ACTIONS(5123), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -235055,7 +238080,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4882), 51, + aux_sym_unquoted_token1, + ACTIONS(5121), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -235066,39 +238101,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_if, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -235107,18 +238127,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24437] = 7, - ACTIONS(247), 1, + [18118] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - STATE(1823), 1, + ACTIONS(5125), 1, + anon_sym_DOT, + STATE(1831), 1, sym_comment, - STATE(2182), 1, - aux_sym_shebang_repeat1, - STATE(7225), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5069), 9, + STATE(1909), 1, + aux_sym_cell_path_repeat1, + STATE(2047), 1, + sym_cell_path, + STATE(2132), 1, + sym_path, + ACTIONS(1993), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -235128,7 +238150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5071), 48, + ACTIONS(1995), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -235177,18 +238199,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24514] = 7, - ACTIONS(247), 1, + [18198] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - STATE(1824), 1, + ACTIONS(5125), 1, + anon_sym_DOT, + STATE(1832), 1, sym_comment, - STATE(2186), 1, - aux_sym_shebang_repeat1, - STATE(7225), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5069), 9, + STATE(1909), 1, + aux_sym_cell_path_repeat1, + STATE(2002), 1, + sym_cell_path, + STATE(2132), 1, + sym_path, + ACTIONS(1997), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -235198,7 +238222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5071), 48, + ACTIONS(1999), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -235247,12 +238271,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24591] = 4, - ACTIONS(247), 1, + [18278] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1825), 1, + STATE(1833), 1, sym_comment, - ACTIONS(5030), 16, + ACTIONS(5049), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -235269,7 +238293,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5028), 44, + ACTIONS(5047), 45, + sym_raw_string_begin, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -235314,12 +238339,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24662] = 4, - ACTIONS(247), 1, + [18350] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1826), 1, + STATE(1834), 1, sym_comment, - ACTIONS(5034), 16, + ACTIONS(5069), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -235336,7 +238361,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5032), 44, + ACTIONS(5067), 45, + sym_raw_string_begin, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -235381,12 +238407,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24733] = 4, - ACTIONS(247), 1, + [18422] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1827), 1, + STATE(1835), 1, sym_comment, - ACTIONS(1991), 16, + ACTIONS(2230), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -235403,7 +238429,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1997), 44, + ACTIONS(2232), 45, + sym_raw_string_begin, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -235448,19 +238475,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24804] = 4, - ACTIONS(247), 1, + [18494] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1828), 1, + ACTIONS(5125), 1, + anon_sym_DOT, + STATE(1836), 1, sym_comment, - ACTIONS(2517), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1909), 1, + aux_sym_cell_path_repeat1, + STATE(2012), 1, + sym_cell_path, + STATE(2132), 1, + sym_path, + ACTIONS(2001), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -235469,16 +238498,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2519), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(2003), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [18574] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5125), 1, + anon_sym_DOT, + STATE(1837), 1, + sym_comment, + STATE(1909), 1, + aux_sym_cell_path_repeat1, + STATE(2007), 1, + sym_cell_path, + STATE(2132), 1, + sym_path, + ACTIONS(2005), 9, sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2007), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -235489,24 +238581,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -235515,19 +238619,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24875] = 4, - ACTIONS(247), 1, + [18654] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1829), 1, + ACTIONS(5125), 1, + anon_sym_DOT, + STATE(1838), 1, sym_comment, - ACTIONS(4840), 16, - anon_sym_DOLLAR, + STATE(1909), 1, + aux_sym_cell_path_repeat1, + STATE(2011), 1, + sym_cell_path, + STATE(2132), 1, + sym_path, + ACTIONS(2009), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2011), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [18734] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(1839), 1, + sym_comment, + ACTIONS(2450), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -235536,15 +238706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(4838), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(2452), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -235556,24 +238718,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -235582,12 +238759,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24946] = 4, - ACTIONS(247), 1, + [18806] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1830), 1, + ACTIONS(5125), 1, + anon_sym_DOT, + STATE(1840), 1, sym_comment, - ACTIONS(4894), 9, + STATE(1909), 1, + aux_sym_cell_path_repeat1, + STATE(2013), 1, + sym_cell_path, + STATE(2132), 1, + sym_path, + ACTIONS(2013), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -235597,7 +238782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4892), 51, + ACTIONS(2015), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -235609,10 +238794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_if, anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_LPAREN2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -235649,12 +238831,216 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25017] = 4, - ACTIONS(247), 1, + [18886] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1831), 1, + STATE(1841), 1, + sym_comment, + ACTIONS(2494), 9, + anon_sym_DASH, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2496), 52, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [18958] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(1842), 1, + sym_comment, + ACTIONS(2067), 9, + anon_sym_DASH, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2069), 52, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [19030] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(1843), 1, + sym_comment, + ACTIONS(2561), 9, + anon_sym_DASH, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2563), 52, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [19102] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(1844), 1, sym_comment, - ACTIONS(2521), 16, + ACTIONS(2557), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -235671,7 +239057,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2523), 44, + ACTIONS(2559), 45, + sym_raw_string_begin, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -235716,19 +239103,380 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25088] = 4, - ACTIONS(247), 1, + [19174] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5135), 1, + anon_sym_DOT, + STATE(1693), 1, + sym_path, + STATE(1845), 1, + sym_comment, + STATE(1887), 1, + sym_cell_path, + STATE(1963), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1901), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1903), 49, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [19254] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5135), 1, + anon_sym_DOT, + STATE(1693), 1, + sym_path, + STATE(1846), 1, + sym_comment, + STATE(1891), 1, + sym_cell_path, + STATE(1963), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1893), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1895), 49, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [19334] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5135), 1, + anon_sym_DOT, + STATE(1693), 1, + sym_path, + STATE(1736), 1, + sym_cell_path, + STATE(1847), 1, + sym_comment, + STATE(1963), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1909), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1911), 49, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [19414] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5135), 1, + anon_sym_DOT, + STATE(1693), 1, + sym_path, + STATE(1804), 1, + sym_cell_path, + STATE(1848), 1, + sym_comment, + STATE(1963), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1897), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1899), 49, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [19494] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5135), 1, + anon_sym_DOT, + STATE(1693), 1, + sym_path, + STATE(1843), 1, + sym_cell_path, + STATE(1849), 1, + sym_comment, + STATE(1963), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1929), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1931), 49, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [19574] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1832), 1, + ACTIONS(5135), 1, + anon_sym_DOT, + STATE(1693), 1, + sym_path, + STATE(1746), 1, + sym_cell_path, + STATE(1850), 1, sym_comment, - ACTIONS(2348), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1963), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1993), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -235737,15 +239485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2350), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1995), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -235757,24 +239497,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -235783,20 +239535,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25159] = 8, - ACTIONS(247), 1, + [19654] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5012), 1, + ACTIONS(5135), 1, anon_sym_DOT, - STATE(1833), 1, - sym_comment, - STATE(1883), 1, - aux_sym_cell_path_repeat1, - STATE(2107), 1, + STATE(1693), 1, sym_path, - STATE(2425), 1, + STATE(1756), 1, sym_cell_path, - ACTIONS(1888), 8, + STATE(1851), 1, + sym_comment, + STATE(1963), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1997), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -235805,8 +239557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1890), 48, - ts_builtin_sym_end, + ACTIONS(1999), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -235818,6 +239569,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -235854,20 +239607,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25238] = 8, - ACTIONS(247), 1, + [19734] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5012), 1, + ACTIONS(5135), 1, anon_sym_DOT, - STATE(1834), 1, - sym_comment, - STATE(1883), 1, - aux_sym_cell_path_repeat1, - STATE(2107), 1, + STATE(1693), 1, sym_path, - STATE(2426), 1, + STATE(1757), 1, sym_cell_path, - ACTIONS(1892), 8, + STATE(1852), 1, + sym_comment, + STATE(1963), 1, + aux_sym_cell_path_repeat1, + ACTIONS(2001), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -235876,8 +239629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1894), 48, - ts_builtin_sym_end, + ACTIONS(2003), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -235889,6 +239641,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -235925,20 +239679,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25317] = 8, - ACTIONS(247), 1, + [19814] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5012), 1, + ACTIONS(5135), 1, anon_sym_DOT, - STATE(1835), 1, - sym_comment, - STATE(1883), 1, - aux_sym_cell_path_repeat1, - STATE(2107), 1, + STATE(1693), 1, sym_path, - STATE(2427), 1, + STATE(1777), 1, sym_cell_path, - ACTIONS(1896), 8, + STATE(1853), 1, + sym_comment, + STATE(1963), 1, + aux_sym_cell_path_repeat1, + ACTIONS(2005), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -235947,8 +239701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1898), 48, - ts_builtin_sym_end, + ACTIONS(2007), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -235960,6 +239713,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -235996,20 +239751,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25396] = 8, - ACTIONS(247), 1, + [19894] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5012), 1, + ACTIONS(5135), 1, anon_sym_DOT, - STATE(1836), 1, - sym_comment, - STATE(1883), 1, - aux_sym_cell_path_repeat1, - STATE(2107), 1, + STATE(1693), 1, sym_path, - STATE(2428), 1, + STATE(1783), 1, sym_cell_path, - ACTIONS(1900), 8, + STATE(1854), 1, + sym_comment, + STATE(1963), 1, + aux_sym_cell_path_repeat1, + ACTIONS(2009), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -236018,8 +239773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1902), 48, - ts_builtin_sym_end, + ACTIONS(2011), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -236031,6 +239785,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -236067,19 +239823,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25475] = 4, - ACTIONS(247), 1, + [19974] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1837), 1, + ACTIONS(5135), 1, + anon_sym_DOT, + STATE(1693), 1, + sym_path, + STATE(1791), 1, + sym_cell_path, + STATE(1855), 1, sym_comment, - ACTIONS(1832), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1963), 1, + aux_sym_cell_path_repeat1, + ACTIONS(2013), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -236088,15 +239845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1834), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(2015), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -236108,24 +239857,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -236134,20 +239895,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25546] = 8, - ACTIONS(247), 1, + [20054] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5012), 1, + ACTIONS(5135), 1, anon_sym_DOT, - STATE(1838), 1, - sym_comment, - STATE(1883), 1, - aux_sym_cell_path_repeat1, - STATE(2107), 1, + STATE(1693), 1, sym_path, - STATE(2423), 1, + STATE(1812), 1, sym_cell_path, - ACTIONS(1912), 8, + STATE(1856), 1, + sym_comment, + STATE(1963), 1, + aux_sym_cell_path_repeat1, + ACTIONS(2017), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -236156,8 +239917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1914), 48, - ts_builtin_sym_end, + ACTIONS(2019), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -236169,6 +239929,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -236205,19 +239967,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25625] = 7, - ACTIONS(247), 1, + [20134] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - STATE(1839), 1, + ACTIONS(5135), 1, + anon_sym_DOT, + STATE(1693), 1, + sym_path, + STATE(1814), 1, + sym_cell_path, + STATE(1857), 1, sym_comment, - STATE(2028), 1, - aux_sym_shebang_repeat1, - STATE(7225), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5069), 9, - sym__newline, + STATE(1963), 1, + aux_sym_cell_path_repeat1, + ACTIONS(2021), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -236226,7 +239989,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5071), 48, + ACTIONS(2023), 49, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -236238,35 +240002,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -236275,19 +240039,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25702] = 4, - ACTIONS(247), 1, + [20214] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1840), 1, + ACTIONS(5135), 1, + anon_sym_DOT, + STATE(1693), 1, + sym_path, + STATE(1828), 1, + sym_cell_path, + STATE(1858), 1, sym_comment, - ACTIONS(1848), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1963), 1, + aux_sym_cell_path_repeat1, + ACTIONS(2043), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -236296,15 +240061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1850), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(2045), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -236316,24 +240073,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -236342,20 +240111,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25773] = 8, - ACTIONS(247), 1, + [20294] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5012), 1, + ACTIONS(5135), 1, anon_sym_DOT, - STATE(1841), 1, - sym_comment, - STATE(1883), 1, - aux_sym_cell_path_repeat1, - STATE(2107), 1, + STATE(1693), 1, sym_path, - STATE(2429), 1, + STATE(1839), 1, sym_cell_path, - ACTIONS(1904), 8, + STATE(1859), 1, + sym_comment, + STATE(1963), 1, + aux_sym_cell_path_repeat1, + ACTIONS(2047), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -236364,8 +240133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1906), 48, - ts_builtin_sym_end, + ACTIONS(2049), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -236377,6 +240145,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -236413,20 +240183,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25852] = 8, - ACTIONS(247), 1, + [20374] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5012), 1, + ACTIONS(5135), 1, anon_sym_DOT, + STATE(1693), 1, + sym_path, STATE(1842), 1, + sym_cell_path, + STATE(1860), 1, sym_comment, - STATE(1883), 1, + STATE(1963), 1, aux_sym_cell_path_repeat1, - STATE(2010), 1, - sym_cell_path, - STATE(2107), 1, - sym_path, - ACTIONS(1675), 8, + ACTIONS(2051), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -236435,8 +240205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1677), 48, - ts_builtin_sym_end, + ACTIONS(2053), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -236448,6 +240217,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -236484,20 +240255,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25931] = 8, - ACTIONS(247), 1, + [20454] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5012), 1, + ACTIONS(5135), 1, anon_sym_DOT, - STATE(1843), 1, - sym_comment, - STATE(1883), 1, - aux_sym_cell_path_repeat1, - STATE(2107), 1, + STATE(1693), 1, sym_path, - STATE(2408), 1, + STATE(1861), 1, + sym_comment, + STATE(1882), 1, sym_cell_path, - ACTIONS(1822), 8, + STATE(1963), 1, + aux_sym_cell_path_repeat1, + ACTIONS(2055), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -236506,8 +240277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1826), 48, - ts_builtin_sym_end, + ACTIONS(2057), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -236519,6 +240289,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -236555,19 +240327,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26010] = 4, - ACTIONS(247), 1, + [20534] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1844), 1, + ACTIONS(5135), 1, + anon_sym_DOT, + STATE(1693), 1, + sym_path, + STATE(1862), 1, sym_comment, - ACTIONS(2029), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1884), 1, + sym_cell_path, + STATE(1963), 1, + aux_sym_cell_path_repeat1, + ACTIONS(2059), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -236576,15 +240349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2031), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(2061), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -236596,24 +240361,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -236622,20 +240399,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26081] = 8, - ACTIONS(247), 1, + [20614] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5012), 1, + ACTIONS(5135), 1, anon_sym_DOT, - STATE(1845), 1, - sym_comment, - STATE(1883), 1, - aux_sym_cell_path_repeat1, - STATE(2107), 1, + STATE(1693), 1, sym_path, - STATE(2433), 1, + STATE(1798), 1, sym_cell_path, - ACTIONS(1828), 8, + STATE(1863), 1, + sym_comment, + STATE(1963), 1, + aux_sym_cell_path_repeat1, + ACTIONS(2067), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -236644,8 +240421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1830), 48, - ts_builtin_sym_end, + ACTIONS(2069), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -236657,6 +240433,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -236693,19 +240471,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26160] = 7, - ACTIONS(247), 1, + [20694] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - STATE(1846), 1, + ACTIONS(5135), 1, + anon_sym_DOT, + STATE(1693), 1, + sym_path, + STATE(1799), 1, + sym_cell_path, + STATE(1864), 1, sym_comment, - STATE(2179), 1, - aux_sym_shebang_repeat1, - STATE(7225), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5073), 9, - sym__newline, + STATE(1963), 1, + aux_sym_cell_path_repeat1, + ACTIONS(2083), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -236714,7 +240493,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5075), 48, + ACTIONS(2085), 49, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -236726,35 +240506,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -236763,20 +240543,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26237] = 8, - ACTIONS(247), 1, + [20774] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1079), 1, - anon_sym_DOT_DOT2, - ACTIONS(4572), 1, - aux_sym_record_entry_token1, - STATE(1847), 1, + ACTIONS(5135), 1, + anon_sym_DOT, + STATE(1693), 1, + sym_path, + STATE(1801), 1, + sym_cell_path, + STATE(1865), 1, sym_comment, - ACTIONS(1081), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(4798), 9, - sym__newline, + STATE(1963), 1, + aux_sym_cell_path_repeat1, + ACTIONS(2087), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -236785,7 +240565,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4796), 19, + ACTIONS(2089), 49, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -236796,16 +240577,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(4800), 28, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -236834,19 +240607,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [26316] = 4, - ACTIONS(247), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [20854] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1848), 1, + ACTIONS(5135), 1, + anon_sym_DOT, + STATE(1693), 1, + sym_path, + STATE(1808), 1, + sym_cell_path, + STATE(1866), 1, sym_comment, - ACTIONS(2412), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1963), 1, + aux_sym_cell_path_repeat1, + ACTIONS(2095), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -236855,15 +240637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2414), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(2097), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -236875,24 +240649,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -236901,18 +240687,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26387] = 7, - ACTIONS(247), 1, + [20934] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - STATE(1849), 1, + ACTIONS(5125), 1, + anon_sym_DOT, + STATE(1867), 1, sym_comment, - STATE(2109), 1, - aux_sym_shebang_repeat1, - STATE(7225), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5073), 9, + STATE(1909), 1, + aux_sym_cell_path_repeat1, + STATE(2019), 1, + sym_cell_path, + STATE(2132), 1, + sym_path, + ACTIONS(2017), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -236922,7 +240710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5075), 48, + ACTIONS(2019), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -236971,14 +240759,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26464] = 5, - ACTIONS(247), 1, + [21014] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5077), 1, - anon_sym_LBRACK2, - STATE(1850), 1, + ACTIONS(5125), 1, + anon_sym_DOT, + STATE(1868), 1, sym_comment, - ACTIONS(2313), 9, + STATE(1909), 1, + aux_sym_cell_path_repeat1, + STATE(2020), 1, + sym_cell_path, + STATE(2132), 1, + sym_path, + ACTIONS(2021), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -236988,7 +240782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2317), 50, + ACTIONS(2023), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -237000,9 +240794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_if, anon_sym_LBRACE, - anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -237039,287 +240831,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26537] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1851), 1, - sym_comment, - ACTIONS(2416), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2418), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [26608] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1852), 1, - sym_comment, - ACTIONS(2388), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2390), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [26679] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1853), 1, - sym_comment, - ACTIONS(1864), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1866), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [26750] = 4, - ACTIONS(247), 1, + [21094] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1854), 1, + ACTIONS(5125), 1, + anon_sym_DOT, + STATE(1869), 1, sym_comment, - ACTIONS(2466), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2468), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + STATE(1909), 1, + aux_sym_cell_path_repeat1, + STATE(2022), 1, + sym_cell_path, + STATE(2132), 1, + sym_path, + ACTIONS(2043), 9, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [26821] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1855), 1, - sym_comment, - ACTIONS(2033), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -237328,16 +240854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2035), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(2045), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -237348,24 +240865,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -237374,18 +240903,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26892] = 7, - ACTIONS(247), 1, + [21174] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - STATE(1856), 1, + ACTIONS(5125), 1, + anon_sym_DOT, + STATE(1870), 1, sym_comment, - STATE(2045), 1, - aux_sym_shebang_repeat1, - STATE(7225), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5073), 9, + STATE(1909), 1, + aux_sym_cell_path_repeat1, + STATE(2023), 1, + sym_cell_path, + STATE(2132), 1, + sym_path, + ACTIONS(2047), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -237395,7 +240926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5075), 48, + ACTIONS(2049), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -237444,19 +240975,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26969] = 4, - ACTIONS(247), 1, + [21254] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1857), 1, + ACTIONS(5125), 1, + anon_sym_DOT, + STATE(1871), 1, sym_comment, - ACTIONS(1667), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1909), 1, + aux_sym_cell_path_repeat1, + STATE(2024), 1, + sym_cell_path, + STATE(2132), 1, + sym_path, + ACTIONS(2051), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -237465,16 +240998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1669), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(2053), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -237485,24 +241009,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -237511,19 +241047,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27040] = 4, - ACTIONS(247), 1, + [21334] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1858), 1, + ACTIONS(5125), 1, + anon_sym_DOT, + STATE(1872), 1, sym_comment, - ACTIONS(5059), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1909), 1, + aux_sym_cell_path_repeat1, + STATE(2027), 1, + sym_cell_path, + STATE(2132), 1, + sym_path, + ACTIONS(2055), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -237532,16 +241070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5056), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(2057), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -237552,24 +241081,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -237578,12 +241119,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27111] = 4, - ACTIONS(247), 1, + [21414] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1859), 1, + STATE(1873), 1, sym_comment, - ACTIONS(1872), 16, + ACTIONS(2454), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -237600,7 +241141,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1874), 44, + ACTIONS(2456), 45, + sym_raw_string_begin, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -237645,18 +241187,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27182] = 7, - ACTIONS(247), 1, + [21486] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - STATE(1860), 1, + ACTIONS(5125), 1, + anon_sym_DOT, + STATE(1874), 1, sym_comment, - STATE(2115), 1, - aux_sym_shebang_repeat1, - STATE(7225), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5073), 9, + STATE(1909), 1, + aux_sym_cell_path_repeat1, + STATE(2029), 1, + sym_cell_path, + STATE(2132), 1, + sym_path, + ACTIONS(2059), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -237666,7 +241210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5075), 48, + ACTIONS(2061), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -237715,12 +241259,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27259] = 4, - ACTIONS(247), 1, + [21566] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1861), 1, + STATE(1875), 1, sym_comment, - ACTIONS(1659), 16, + ACTIONS(2565), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -237737,7 +241281,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1661), 44, + ACTIONS(2567), 45, + sym_raw_string_begin, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -237782,19 +241327,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27330] = 4, - ACTIONS(247), 1, + [21638] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1862), 1, + ACTIONS(5125), 1, + anon_sym_DOT, + STATE(1876), 1, sym_comment, - ACTIONS(1876), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1909), 1, + aux_sym_cell_path_repeat1, + STATE(2031), 1, + sym_cell_path, + STATE(2132), 1, + sym_path, + ACTIONS(2083), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -237803,16 +241350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1878), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(2085), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -237823,24 +241361,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -237849,18 +241399,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27401] = 7, - ACTIONS(247), 1, + [21718] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - STATE(1863), 1, + ACTIONS(5125), 1, + anon_sym_DOT, + STATE(1877), 1, sym_comment, - STATE(2078), 1, - aux_sym_shebang_repeat1, - STATE(7225), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5073), 9, + STATE(1909), 1, + aux_sym_cell_path_repeat1, + STATE(2033), 1, + sym_cell_path, + STATE(2132), 1, + sym_path, + ACTIONS(2087), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -237870,7 +241422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5075), 48, + ACTIONS(2089), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -237919,18 +241471,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27478] = 7, - ACTIONS(247), 1, + [21798] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - STATE(1864), 1, + ACTIONS(5125), 1, + anon_sym_DOT, + STATE(1878), 1, sym_comment, - STATE(2104), 1, - aux_sym_shebang_repeat1, - STATE(7225), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5073), 9, + STATE(1909), 1, + aux_sym_cell_path_repeat1, + STATE(2034), 1, + sym_cell_path, + STATE(2132), 1, + sym_path, + ACTIONS(2095), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -237940,7 +241494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5075), 48, + ACTIONS(2097), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -237989,12 +241543,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27555] = 4, - ACTIONS(247), 1, + [21878] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1865), 1, + STATE(1879), 1, + sym_comment, + ACTIONS(1628), 10, + sym__newline, + anon_sym_DASH, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1640), 51, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + aux_sym_record_entry_token1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [21950] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(1880), 1, sym_comment, - ACTIONS(1822), 16, + ACTIONS(2113), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -238011,7 +241633,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1826), 44, + ACTIONS(2119), 45, + sym_raw_string_begin, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -238056,19 +241679,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27626] = 4, - ACTIONS(247), 1, + [22022] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1866), 1, + STATE(1881), 1, sym_comment, - ACTIONS(1721), 16, - anon_sym_DOLLAR, + ACTIONS(1090), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -238077,15 +241694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1723), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1092), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -238097,24 +241706,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -238123,19 +241747,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27697] = 4, - ACTIONS(247), 1, + [22094] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1867), 1, + STATE(1882), 1, sym_comment, - ACTIONS(2328), 16, - anon_sym_DOLLAR, + ACTIONS(2087), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -238144,15 +241762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2330), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(2089), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -238164,24 +241774,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -238190,19 +241815,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27768] = 7, - ACTIONS(247), 1, + [22166] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - STATE(1868), 1, + STATE(1883), 1, sym_comment, - STATE(2029), 1, - aux_sym_shebang_repeat1, - STATE(7225), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5069), 9, + ACTIONS(2418), 10, sym__newline, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -238211,7 +241831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5071), 48, + ACTIONS(2420), 51, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -238222,36 +241842,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + aux_sym_record_entry_token1, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -238260,19 +241883,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27845] = 7, - ACTIONS(247), 1, + [22238] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - STATE(1869), 1, + STATE(1884), 1, sym_comment, - STATE(2126), 1, - aux_sym_shebang_repeat1, - STATE(7225), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5073), 9, + ACTIONS(2470), 9, + anon_sym_DASH, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2472), 52, sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [22310] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(1885), 1, + sym_comment, + ACTIONS(2454), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -238281,7 +241966,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5075), 48, + ACTIONS(2456), 52, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -238293,35 +241979,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -238330,12 +242019,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27922] = 4, - ACTIONS(247), 1, + [22382] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1870), 1, + STATE(1886), 1, sym_comment, - ACTIONS(1058), 16, + ACTIONS(2222), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -238352,7 +242041,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1060), 44, + ACTIONS(2228), 45, + sym_raw_string_begin, ts_builtin_sym_end, anon_sym_true, anon_sym_false, @@ -238397,19 +242087,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27993] = 4, - ACTIONS(247), 1, + [22454] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1871), 1, + STATE(1887), 1, sym_comment, - ACTIONS(1738), 16, - anon_sym_DOLLAR, + ACTIONS(1909), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -238418,15 +242102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1740), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1911), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -238438,24 +242114,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -238464,18 +242155,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28064] = 7, - ACTIONS(247), 1, + [22526] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - STATE(1872), 1, + STATE(1888), 1, sym_comment, - STATE(2030), 1, - aux_sym_shebang_repeat1, - STATE(7225), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5069), 9, + ACTIONS(1062), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -238485,7 +242170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5071), 48, + ACTIONS(1064), 52, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -238497,7 +242182,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_if, anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_QMARK2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -238526,6 +242214,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -238534,86 +242223,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28141] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1873), 1, - sym_comment, - ACTIONS(4992), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(4990), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [28212] = 4, - ACTIONS(247), 1, + [22598] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1874), 1, + STATE(1889), 1, sym_comment, - ACTIONS(2477), 16, - anon_sym_DOLLAR, + ACTIONS(2430), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -238622,15 +242238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2479), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(2432), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -238642,24 +242250,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -238668,19 +242291,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28283] = 4, - ACTIONS(247), 1, + [22670] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1875), 1, + STATE(1890), 1, sym_comment, - ACTIONS(2481), 16, - anon_sym_DOLLAR, + ACTIONS(2478), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -238689,15 +242306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2483), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(2480), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -238709,24 +242318,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -238735,19 +242359,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28354] = 4, - ACTIONS(247), 1, + [22742] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1876), 1, + STATE(1891), 1, sym_comment, - ACTIONS(2485), 16, - anon_sym_DOLLAR, + ACTIONS(1897), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -238756,15 +242374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2487), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1899), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -238776,24 +242386,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -238802,19 +242427,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28425] = 7, - ACTIONS(247), 1, + [22814] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - STATE(1877), 1, + STATE(1892), 1, sym_comment, - STATE(2032), 1, - aux_sym_shebang_repeat1, - STATE(7225), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5079), 9, - sym__newline, + ACTIONS(2547), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -238823,7 +242442,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5081), 48, + ACTIONS(2549), 52, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -238835,35 +242455,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -238872,19 +242495,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28502] = 4, - ACTIONS(247), 1, + [22886] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1878), 1, + STATE(1893), 1, sym_comment, - ACTIONS(2420), 16, - anon_sym_DOLLAR, + ACTIONS(2539), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -238893,15 +242510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2422), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(2541), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -238913,24 +242522,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -238939,19 +242563,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28573] = 4, - ACTIONS(247), 1, + [22958] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1879), 1, + STATE(1894), 1, sym_comment, - ACTIONS(1888), 16, - anon_sym_DOLLAR, + ACTIONS(2543), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -238960,15 +242578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1890), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(2545), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -238980,24 +242590,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -239006,12 +242631,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28644] = 4, - ACTIONS(247), 1, + [23030] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1880), 1, + STATE(1895), 1, sym_comment, - ACTIONS(4996), 16, + ACTIONS(4953), 16, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -239028,8 +242653,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4994), 44, - ts_builtin_sym_end, + ACTIONS(4951), 45, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -239049,6 +242674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, @@ -239073,19 +242699,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28715] = 4, - ACTIONS(247), 1, + [23102] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1881), 1, + STATE(1896), 1, sym_comment, - ACTIONS(2434), 16, - anon_sym_DOLLAR, + ACTIONS(2506), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -239094,15 +242714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2436), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(2508), 52, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -239114,24 +242726,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -239140,19 +242767,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28786] = 4, - ACTIONS(247), 1, + [23174] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1882), 1, + ACTIONS(5149), 1, + anon_sym_DOT, + STATE(1897), 1, sym_comment, - ACTIONS(2438), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1966), 1, + aux_sym_cell_path_repeat1, + STATE(2151), 1, + sym_path, + STATE(2547), 1, + sym_cell_path, + ACTIONS(2051), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -239161,15 +242789,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2440), 44, + ACTIONS(2053), 48, ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -239181,24 +242802,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -239207,18 +242838,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28857] = 7, - ACTIONS(247), 1, + [23253] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5012), 1, + ACTIONS(5149), 1, anon_sym_DOT, - STATE(1883), 1, + STATE(1898), 1, sym_comment, - STATE(1917), 1, + STATE(1966), 1, aux_sym_cell_path_repeat1, - STATE(2107), 1, + STATE(2151), 1, sym_path, - ACTIONS(1011), 8, + STATE(2560), 1, + sym_cell_path, + ACTIONS(2087), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -239227,7 +242860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1013), 49, + ACTIONS(2089), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -239240,7 +242873,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -239277,18 +242909,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28934] = 7, - ACTIONS(247), 1, + [23332] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, + ACTIONS(4433), 1, anon_sym_LPAREN2, - STATE(1884), 1, + STATE(1899), 1, sym_comment, - STATE(2090), 1, + STATE(2234), 1, aux_sym_shebang_repeat1, - STATE(7225), 1, + STATE(7440), 1, sym__expr_parenthesized_immediate, - ACTIONS(5062), 9, + ACTIONS(5163), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -239298,7 +242930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5064), 48, + ACTIONS(5165), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -239347,18 +242979,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [29011] = 7, - ACTIONS(247), 1, + [23409] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - STATE(1885), 1, + STATE(1900), 1, sym_comment, - STATE(2091), 1, - aux_sym_shebang_repeat1, - STATE(7225), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5062), 9, + ACTIONS(4987), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -239368,7 +242994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5064), 48, + ACTIONS(4985), 51, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -239380,7 +243006,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_if, anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -239417,19 +243046,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [29088] = 4, - ACTIONS(247), 1, + [23480] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1886), 1, + STATE(1901), 1, sym_comment, - ACTIONS(5018), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(2105), 9, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -239438,15 +243061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5016), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(2107), 51, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -239458,24 +243073,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -239484,19 +243113,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [29159] = 4, - ACTIONS(247), 1, + [23551] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1887), 1, + ACTIONS(5149), 1, + anon_sym_DOT, + STATE(1902), 1, sym_comment, - ACTIONS(1070), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1966), 1, + aux_sym_cell_path_repeat1, + STATE(2151), 1, + sym_path, + STATE(2541), 1, + sym_cell_path, + ACTIONS(2017), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -239505,15 +243135,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1072), 44, + ACTIONS(2019), 48, ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -239525,24 +243148,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -239551,19 +243184,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [29230] = 7, - ACTIONS(247), 1, + [23630] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - STATE(1888), 1, + ACTIONS(5149), 1, + anon_sym_DOT, + STATE(1903), 1, sym_comment, - STATE(2035), 1, - aux_sym_shebang_repeat1, - STATE(7225), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5079), 9, - sym__newline, + STATE(1966), 1, + aux_sym_cell_path_repeat1, + STATE(2151), 1, + sym_path, + STATE(2542), 1, + sym_cell_path, + ACTIONS(2021), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -239572,7 +243206,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5081), 48, + ACTIONS(2023), 48, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -239583,36 +243219,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -239621,19 +243255,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [29307] = 4, - ACTIONS(247), 1, + [23709] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1889), 1, + ACTIONS(5149), 1, + anon_sym_DOT, + STATE(1904), 1, sym_comment, - ACTIONS(2007), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1966), 1, + aux_sym_cell_path_repeat1, + STATE(2151), 1, + sym_path, + STATE(2545), 1, + sym_cell_path, + ACTIONS(2043), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -239642,15 +243277,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2013), 44, + ACTIONS(2045), 48, ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -239662,24 +243290,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -239688,19 +243326,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [29378] = 4, - ACTIONS(247), 1, + [23788] = 7, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1890), 1, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + STATE(1905), 1, sym_comment, - ACTIONS(1892), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2227), 1, + aux_sym_shebang_repeat1, + STATE(7440), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5163), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -239709,16 +243347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1894), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(5165), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -239729,24 +243358,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -239755,18 +243396,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [29449] = 7, - ACTIONS(247), 1, + [23865] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - STATE(1891), 1, + ACTIONS(5167), 1, + anon_sym_LBRACK2, + STATE(1906), 1, sym_comment, - STATE(2038), 1, - aux_sym_shebang_repeat1, - STATE(7225), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5079), 9, + ACTIONS(2355), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -239776,7 +243413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5081), 48, + ACTIONS(2359), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -239788,7 +243425,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_if, anon_sym_LBRACE, + anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -239825,20 +243464,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [29526] = 8, - ACTIONS(247), 1, + [23938] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5012), 1, + ACTIONS(5149), 1, anon_sym_DOT, - STATE(1883), 1, - aux_sym_cell_path_repeat1, - STATE(1892), 1, + STATE(1907), 1, sym_comment, - STATE(2107), 1, + STATE(1966), 1, + aux_sym_cell_path_repeat1, + STATE(2151), 1, sym_path, - STATE(2411), 1, + STATE(2546), 1, sym_cell_path, - ACTIONS(1832), 8, + ACTIONS(2047), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -239847,7 +243486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1834), 48, + ACTIONS(2049), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -239896,85 +243535,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [29605] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1893), 1, - sym_comment, - ACTIONS(4884), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(4882), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [29676] = 7, - ACTIONS(247), 1, + [24017] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, + ACTIONS(4433), 1, anon_sym_LPAREN2, - STATE(1894), 1, + STATE(1908), 1, sym_comment, - STATE(2041), 1, + STATE(2110), 1, aux_sym_shebang_repeat1, - STATE(7225), 1, + STATE(7440), 1, sym__expr_parenthesized_immediate, - ACTIONS(5079), 9, + ACTIONS(5169), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -239984,7 +243556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5081), 48, + ACTIONS(5171), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -240033,85 +243605,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [29753] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1895), 1, - sym_comment, - ACTIONS(4830), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(4828), 44, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [29824] = 7, - ACTIONS(247), 1, + [24094] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - STATE(1896), 1, + ACTIONS(5125), 1, + anon_sym_DOT, + STATE(1909), 1, sym_comment, - STATE(2047), 1, - aux_sym_shebang_repeat1, - STATE(7225), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5079), 9, + STATE(1956), 1, + aux_sym_cell_path_repeat1, + STATE(2132), 1, + sym_path, + ACTIONS(1027), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -240121,7 +243626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5081), 48, + ACTIONS(1029), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -240170,152 +243675,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [29901] = 4, - ACTIONS(247), 1, + [24171] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1897), 1, + ACTIONS(5173), 1, + anon_sym_DOT, + STATE(1910), 1, sym_comment, - ACTIONS(4916), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(4914), 44, - anon_sym_true, - anon_sym_false, - anon_sym_null, + STATE(2004), 1, + aux_sym_cell_path_repeat1, + STATE(2377), 1, + sym_path, + STATE(2432), 1, + sym_cell_path, + ACTIONS(1670), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [29972] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1898), 1, - sym_comment, - ACTIONS(2338), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2340), 44, - ts_builtin_sym_end, + ACTIONS(1672), 50, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym_wild_card, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [30043] = 7, - ACTIONS(247), 1, + [24250] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, + ACTIONS(4433), 1, anon_sym_LPAREN2, - STATE(1899), 1, + STATE(1911), 1, sym_comment, - STATE(2049), 1, + STATE(2098), 1, aux_sym_shebang_repeat1, - STATE(7225), 1, + STATE(7440), 1, sym__expr_parenthesized_immediate, - ACTIONS(5079), 9, + ACTIONS(5169), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -240325,7 +243767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5081), 48, + ACTIONS(5171), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -240374,18 +243816,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30120] = 7, - ACTIONS(247), 1, + [24327] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, + ACTIONS(4433), 1, anon_sym_LPAREN2, - STATE(1900), 1, + STATE(1912), 1, sym_comment, - STATE(2027), 1, + STATE(2238), 1, aux_sym_shebang_repeat1, - STATE(7225), 1, + STATE(7440), 1, sym__expr_parenthesized_immediate, - ACTIONS(5069), 9, + ACTIONS(5163), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -240395,7 +243837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5071), 48, + ACTIONS(5165), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -240444,153 +243886,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30197] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1901), 1, - sym_comment, - ACTIONS(2019), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2025), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [30268] = 4, - ACTIONS(247), 1, + [24404] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1902), 1, + ACTIONS(1099), 1, + anon_sym_DOT_DOT2, + ACTIONS(4691), 1, + aux_sym_record_entry_token1, + STATE(1913), 1, sym_comment, - ACTIONS(1999), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2005), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(1101), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5139), 9, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [30339] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1903), 1, - sym_comment, - ACTIONS(1900), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -240599,16 +243908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1902), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(5137), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -240619,24 +243919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RBRACE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -240645,19 +243928,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30410] = 4, - ACTIONS(247), 1, + ACTIONS(5127), 28, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [24483] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1904), 1, + ACTIONS(5149), 1, + anon_sym_DOT, + STATE(1914), 1, sym_comment, - ACTIONS(2342), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1966), 1, + aux_sym_cell_path_repeat1, + STATE(2151), 1, + sym_path, + STATE(2522), 1, + sym_cell_path, + ACTIONS(2005), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -240666,15 +243979,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2344), 44, + ACTIONS(2007), 48, ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -240686,24 +243992,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -240712,86 +244028,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30481] = 4, - ACTIONS(247), 1, + [24562] = 7, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1905), 1, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + STATE(1915), 1, sym_comment, - ACTIONS(2462), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2464), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + STATE(2164), 1, + aux_sym_shebang_repeat1, + STATE(7440), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5175), 9, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [30552] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1906), 1, - sym_comment, - ACTIONS(4894), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -240800,16 +244049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(4892), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(5177), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -240820,24 +244060,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -240846,18 +244098,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30623] = 7, - ACTIONS(247), 1, + [24639] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, + ACTIONS(4433), 1, anon_sym_LPAREN2, - STATE(1907), 1, + STATE(1916), 1, sym_comment, - STATE(2127), 1, + STATE(2165), 1, aux_sym_shebang_repeat1, - STATE(7225), 1, + STATE(7440), 1, sym__expr_parenthesized_immediate, - ACTIONS(5069), 9, + ACTIONS(5175), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -240867,7 +244119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5071), 48, + ACTIONS(5177), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -240916,86 +244168,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30700] = 4, - ACTIONS(247), 1, + [24716] = 7, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1908), 1, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + STATE(1917), 1, sym_comment, - ACTIONS(2442), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2444), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + STATE(2169), 1, + aux_sym_shebang_repeat1, + STATE(7440), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5175), 9, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [30771] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1909), 1, - sym_comment, - ACTIONS(2446), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -241004,16 +244189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2448), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(5177), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -241024,24 +244200,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -241050,19 +244238,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30842] = 8, - ACTIONS(247), 1, + [24793] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1079), 1, - anon_sym_DOT_DOT2, - ACTIONS(1083), 1, - aux_sym_record_entry_token1, - STATE(1910), 1, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + STATE(1918), 1, sym_comment, - ACTIONS(1081), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(4798), 9, + STATE(2170), 1, + aux_sym_shebang_repeat1, + STATE(7440), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5175), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -241072,7 +244259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4796), 19, + ACTIONS(5177), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -241083,7 +244270,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -241092,47 +244308,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(4800), 28, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [30921] = 7, - ACTIONS(247), 1, + [24870] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, + ACTIONS(4433), 1, anon_sym_LPAREN2, - STATE(1911), 1, + STATE(1919), 1, sym_comment, - STATE(2051), 1, + STATE(2171), 1, aux_sym_shebang_repeat1, - STATE(7225), 1, + STATE(7440), 1, sym__expr_parenthesized_immediate, - ACTIONS(5079), 9, + ACTIONS(5175), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -241142,7 +244329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5081), 48, + ACTIONS(5177), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -241191,18 +244378,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30998] = 7, - ACTIONS(247), 1, + [24947] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, + ACTIONS(4433), 1, anon_sym_LPAREN2, - STATE(1912), 1, + STATE(1920), 1, sym_comment, - STATE(2054), 1, + STATE(2172), 1, aux_sym_shebang_repeat1, - STATE(7225), 1, + STATE(7440), 1, sym__expr_parenthesized_immediate, - ACTIONS(5079), 9, + ACTIONS(5175), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -241212,7 +244399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5081), 48, + ACTIONS(5177), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -241261,18 +244448,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [31075] = 7, - ACTIONS(247), 1, + [25024] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, + ACTIONS(4433), 1, anon_sym_LPAREN2, - STATE(1913), 1, + STATE(1921), 1, sym_comment, - STATE(2057), 1, + STATE(2176), 1, aux_sym_shebang_repeat1, - STATE(7225), 1, + STATE(7440), 1, sym__expr_parenthesized_immediate, - ACTIONS(5079), 9, + ACTIONS(5175), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -241282,7 +244469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5081), 48, + ACTIONS(5177), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -241331,18 +244518,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [31152] = 7, - ACTIONS(247), 1, + [25101] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, + ACTIONS(1099), 1, + anon_sym_DOT_DOT2, + STATE(1922), 1, + sym_comment, + ACTIONS(1101), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5139), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5137), 21, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(5127), 28, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [25178] = 7, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(4433), 1, anon_sym_LPAREN2, - STATE(1914), 1, + STATE(1923), 1, sym_comment, - STATE(2060), 1, + STATE(2177), 1, aux_sym_shebang_repeat1, - STATE(7225), 1, + STATE(7440), 1, sym__expr_parenthesized_immediate, - ACTIONS(5079), 9, + ACTIONS(5175), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -241352,7 +244609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5081), 48, + ACTIONS(5177), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -241401,19 +244658,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [31229] = 4, - ACTIONS(247), 1, + [25255] = 7, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1915), 1, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + STATE(1924), 1, sym_comment, - ACTIONS(1904), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2178), 1, + aux_sym_shebang_repeat1, + STATE(7440), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5175), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -241422,16 +244679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1906), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(5177), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -241442,24 +244690,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -241468,19 +244728,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [31300] = 4, - ACTIONS(247), 1, + [25332] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1916), 1, + ACTIONS(5149), 1, + anon_sym_DOT, + STATE(1925), 1, sym_comment, - ACTIONS(2450), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1966), 1, + aux_sym_cell_path_repeat1, + STATE(2151), 1, + sym_path, + STATE(2552), 1, + sym_cell_path, + ACTIONS(1897), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -241489,15 +244750,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2452), 44, + ACTIONS(1899), 48, ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -241509,24 +244763,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -241535,17 +244799,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [31371] = 6, - ACTIONS(247), 1, + [25411] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5083), 1, + ACTIONS(5149), 1, anon_sym_DOT, - STATE(2107), 1, - sym_path, - STATE(1917), 2, + STATE(1926), 1, sym_comment, + STATE(1966), 1, aux_sym_cell_path_repeat1, - ACTIONS(1015), 8, + STATE(2151), 1, + sym_path, + STATE(2528), 1, + sym_cell_path, + ACTIONS(2013), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -241554,7 +244821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1017), 49, + ACTIONS(2015), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -241567,7 +244834,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -241604,18 +244870,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [31446] = 7, - ACTIONS(247), 1, + [25490] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, + ACTIONS(4433), 1, anon_sym_LPAREN2, - STATE(1918), 1, + STATE(1927), 1, sym_comment, - STATE(2114), 1, + STATE(2179), 1, aux_sym_shebang_repeat1, - STATE(7225), 1, + STATE(7440), 1, sym__expr_parenthesized_immediate, - ACTIONS(5073), 9, + ACTIONS(5175), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -241625,7 +244891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5075), 48, + ACTIONS(5177), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -241674,18 +244940,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [31523] = 7, - ACTIONS(247), 1, + [25567] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, + ACTIONS(4433), 1, anon_sym_LPAREN2, - STATE(1919), 1, + STATE(1928), 1, sym_comment, - STATE(2064), 1, + STATE(2180), 1, aux_sym_shebang_repeat1, - STATE(7225), 1, + STATE(7440), 1, sym__expr_parenthesized_immediate, - ACTIONS(5079), 9, + ACTIONS(5175), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -241695,7 +244961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5081), 48, + ACTIONS(5177), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -241744,18 +245010,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [31600] = 7, - ACTIONS(247), 1, + [25644] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1099), 1, + anon_sym_DOT_DOT2, + STATE(1929), 1, + sym_comment, + ACTIONS(1101), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1090), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1092), 49, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [25719] = 21, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1345), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1347), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3296), 1, + aux_sym_record_entry_token1, + ACTIONS(3842), 1, + anon_sym_DQUOTE, + ACTIONS(3848), 1, + sym_raw_string_begin, + ACTIONS(4895), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(5179), 1, + anon_sym_DASH_DASH, + STATE(1930), 1, + sym_comment, + STATE(2057), 1, + aux_sym_decl_def_repeat1, + STATE(2813), 1, + sym_long_flag, + STATE(4162), 1, + sym_val_string, + STATE(4187), 1, + sym_cmd_identifier, + STATE(6654), 1, + sym__command_name, + STATE(7312), 1, + sym__val_number_decimal, + ACTIONS(1343), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3844), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4434), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4889), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4893), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4891), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [25824] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, + ACTIONS(4433), 1, anon_sym_LPAREN2, - STATE(1920), 1, + STATE(1931), 1, sym_comment, - STATE(2067), 1, + STATE(2181), 1, aux_sym_shebang_repeat1, - STATE(7225), 1, + STATE(7440), 1, sym__expr_parenthesized_immediate, - ACTIONS(5079), 9, + ACTIONS(5175), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -241765,7 +245184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5081), 48, + ACTIONS(5177), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -241814,85 +245233,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [31677] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1921), 1, - sym_comment, - ACTIONS(2454), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2456), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [31748] = 7, - ACTIONS(247), 1, + [25901] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - STATE(1922), 1, + STATE(1932), 1, sym_comment, - STATE(2070), 1, - aux_sym_shebang_repeat1, - STATE(7225), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5079), 9, + ACTIONS(4997), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -241902,7 +245248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5081), 48, + ACTIONS(4995), 51, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -241914,7 +245260,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_if, anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_LPAREN2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -241951,18 +245300,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [31825] = 7, - ACTIONS(247), 1, + [25972] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, + ACTIONS(4433), 1, anon_sym_LPAREN2, - STATE(1923), 1, + STATE(1933), 1, sym_comment, - STATE(2140), 1, + STATE(2182), 1, aux_sym_shebang_repeat1, - STATE(7225), 1, + STATE(7440), 1, sym__expr_parenthesized_immediate, - ACTIONS(5069), 9, + ACTIONS(5175), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -241972,7 +245321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5071), 48, + ACTIONS(5177), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -242021,18 +245370,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [31902] = 7, - ACTIONS(247), 1, + [26049] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, + ACTIONS(4433), 1, anon_sym_LPAREN2, - STATE(1924), 1, + STATE(1934), 1, sym_comment, - STATE(2150), 1, + STATE(2241), 1, aux_sym_shebang_repeat1, - STATE(7225), 1, + STATE(7440), 1, sym__expr_parenthesized_immediate, - ACTIONS(5069), 9, + ACTIONS(5163), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -242042,7 +245391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5071), 48, + ACTIONS(5165), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -242091,18 +245440,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [31979] = 7, - ACTIONS(247), 1, + [26126] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, + ACTIONS(4433), 1, anon_sym_LPAREN2, - STATE(1925), 1, + STATE(1935), 1, sym_comment, - STATE(2141), 1, + STATE(2184), 1, aux_sym_shebang_repeat1, - STATE(7225), 1, + STATE(7440), 1, sym__expr_parenthesized_immediate, - ACTIONS(5073), 9, + ACTIONS(5181), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -242112,7 +245461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5075), 48, + ACTIONS(5183), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -242161,18 +245510,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [32056] = 7, - ACTIONS(247), 1, + [26203] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, + ACTIONS(4433), 1, anon_sym_LPAREN2, - STATE(1926), 1, + STATE(1936), 1, sym_comment, - STATE(2161), 1, + STATE(2112), 1, aux_sym_shebang_repeat1, - STATE(7225), 1, + STATE(7440), 1, sym__expr_parenthesized_immediate, - ACTIONS(5069), 9, + ACTIONS(5169), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -242182,7 +245531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5071), 48, + ACTIONS(5171), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -242231,18 +245580,377 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [32133] = 7, - ACTIONS(247), 1, + [26280] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, + ACTIONS(5149), 1, + anon_sym_DOT, + STATE(1937), 1, + sym_comment, + STATE(1966), 1, + aux_sym_cell_path_repeat1, + STATE(2151), 1, + sym_path, + STATE(2538), 1, + sym_cell_path, + ACTIONS(1909), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1911), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [26359] = 21, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1345), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1347), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3294), 1, + aux_sym_record_entry_token1, + ACTIONS(3842), 1, + anon_sym_DQUOTE, + ACTIONS(3848), 1, + sym_raw_string_begin, + ACTIONS(4895), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(5179), 1, + anon_sym_DASH_DASH, + STATE(1938), 1, + sym_comment, + STATE(2057), 1, + aux_sym_decl_def_repeat1, + STATE(2813), 1, + sym_long_flag, + STATE(4162), 1, + sym_val_string, + STATE(4187), 1, + sym_cmd_identifier, + STATE(6654), 1, + sym__command_name, + STATE(7312), 1, + sym__val_number_decimal, + ACTIONS(1343), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3844), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4434), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4889), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4893), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4891), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [26464] = 39, + ACTIONS(163), 1, + anon_sym_LPAREN, + ACTIONS(229), 1, + anon_sym_0b, + ACTIONS(233), 1, + sym_val_date, + ACTIONS(235), 1, + anon_sym_DQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(251), 1, + sym_raw_string_begin, + ACTIONS(273), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_DASH, + ACTIONS(3280), 1, + anon_sym_null, + ACTIONS(3294), 1, + aux_sym_record_entry_token1, + ACTIONS(3356), 1, + anon_sym_LBRACK, + ACTIONS(3362), 1, + anon_sym_LBRACE, + ACTIONS(3364), 1, + aux_sym_expr_unary_token1, + ACTIONS(3366), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3368), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3370), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3372), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5185), 1, + anon_sym_DOT_DOT, + STATE(1765), 1, + sym__expr_unary_minus, + STATE(1827), 1, + sym__inter_single_quotes, + STATE(1841), 1, + sym__inter_double_quotes, + STATE(1883), 1, + sym__val_number, + STATE(1939), 1, + sym_comment, + STATE(3556), 1, + sym__val_number_decimal, + STATE(3562), 1, + sym_val_range, + STATE(3594), 1, + sym_expr_parenthesized, + STATE(3649), 1, + sym_val_variable, + STATE(3879), 1, + sym__expr_binary_expression, + STATE(7584), 1, + sym__expression, + ACTIONS(231), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(237), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3278), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5147), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1540), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(1739), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(227), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(1881), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [26605] = 39, + ACTIONS(163), 1, + anon_sym_LPAREN, + ACTIONS(229), 1, + anon_sym_0b, + ACTIONS(233), 1, + sym_val_date, + ACTIONS(235), 1, + anon_sym_DQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(251), 1, + sym_raw_string_begin, + ACTIONS(273), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_DASH, + ACTIONS(3280), 1, + anon_sym_null, + ACTIONS(3294), 1, + aux_sym_record_entry_token1, + ACTIONS(3356), 1, + anon_sym_LBRACK, + ACTIONS(3362), 1, + anon_sym_LBRACE, + ACTIONS(3364), 1, + aux_sym_expr_unary_token1, + ACTIONS(3366), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3368), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3370), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3372), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5185), 1, + anon_sym_DOT_DOT, + STATE(1765), 1, + sym__expr_unary_minus, + STATE(1827), 1, + sym__inter_single_quotes, + STATE(1841), 1, + sym__inter_double_quotes, + STATE(1883), 1, + sym__val_number, + STATE(1940), 1, + sym_comment, + STATE(3556), 1, + sym__val_number_decimal, + STATE(3562), 1, + sym_val_range, + STATE(3594), 1, + sym_expr_parenthesized, + STATE(3649), 1, + sym_val_variable, + STATE(3879), 1, + sym__expr_binary_expression, + STATE(7594), 1, + sym__expression, + ACTIONS(231), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(237), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3278), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5147), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1540), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(1739), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(227), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(1881), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [26746] = 7, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(4433), 1, anon_sym_LPAREN2, - STATE(1927), 1, + STATE(1941), 1, sym_comment, - STATE(2165), 1, + STATE(2187), 1, aux_sym_shebang_repeat1, - STATE(7225), 1, + STATE(7440), 1, sym__expr_parenthesized_immediate, - ACTIONS(5069), 9, + ACTIONS(5181), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -242252,7 +245960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5071), 48, + ACTIONS(5183), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -242301,18 +246009,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [32210] = 7, - ACTIONS(247), 1, + [26823] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, + ACTIONS(4433), 1, anon_sym_LPAREN2, - STATE(1928), 1, + STATE(1942), 1, sym_comment, - STATE(2155), 1, + STATE(2225), 1, aux_sym_shebang_repeat1, - STATE(7225), 1, + STATE(7440), 1, sym__expr_parenthesized_immediate, - ACTIONS(5073), 9, + ACTIONS(5163), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -242322,7 +246030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5075), 48, + ACTIONS(5165), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -242371,20 +246079,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [32287] = 8, - ACTIONS(247), 1, + [26900] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5012), 1, - anon_sym_DOT, - STATE(1883), 1, - aux_sym_cell_path_repeat1, - STATE(1929), 1, + ACTIONS(1099), 1, + anon_sym_DOT_DOT2, + ACTIONS(1103), 1, + aux_sym_record_entry_token1, + STATE(1943), 1, sym_comment, - STATE(2107), 1, - sym_path, - STATE(2422), 1, - sym_cell_path, - ACTIONS(1836), 8, + ACTIONS(1101), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5139), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -242393,9 +246101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1838), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5137), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -242406,6 +246112,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RBRACE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(5127), 28, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -242434,94 +246150,121 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [32366] = 4, - ACTIONS(247), 1, + [26979] = 39, + ACTIONS(163), 1, + anon_sym_LPAREN, + ACTIONS(229), 1, + anon_sym_0b, + ACTIONS(233), 1, + sym_val_date, + ACTIONS(235), 1, + anon_sym_DQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1930), 1, - sym_comment, - ACTIONS(2309), 16, + ACTIONS(251), 1, + sym_raw_string_begin, + ACTIONS(273), 1, anon_sym_DOLLAR, + ACTIONS(401), 1, anon_sym_DASH, - anon_sym_DOT_DOT, + ACTIONS(3280), 1, + anon_sym_null, + ACTIONS(3296), 1, + aux_sym_record_entry_token1, + ACTIONS(3356), 1, + anon_sym_LBRACK, + ACTIONS(3362), 1, + anon_sym_LBRACE, + ACTIONS(3364), 1, + aux_sym_expr_unary_token1, + ACTIONS(3366), 1, aux_sym__val_number_decimal_token1, - anon_sym_0b, + ACTIONS(3368), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3370), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3372), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5185), 1, + anon_sym_DOT_DOT, + STATE(1765), 1, + sym__expr_unary_minus, + STATE(1827), 1, + sym__inter_single_quotes, + STATE(1841), 1, + sym__inter_double_quotes, + STATE(1883), 1, + sym__val_number, + STATE(1944), 1, + sym_comment, + STATE(3556), 1, + sym__val_number_decimal, + STATE(3562), 1, + sym_val_range, + STATE(3594), 1, + sym_expr_parenthesized, + STATE(3649), 1, + sym_val_variable, + STATE(3879), 1, + sym__expr_binary_expression, + STATE(7584), 1, + sym__expression, + ACTIONS(231), 2, anon_sym_0o, anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2311), 44, - ts_builtin_sym_end, + ACTIONS(237), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3278), 2, anon_sym_true, anon_sym_false, - anon_sym_null, + ACTIONS(5147), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1540), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(1739), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(227), 6, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [32437] = 4, - ACTIONS(247), 1, + STATE(1881), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [27120] = 7, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1931), 1, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + STATE(1945), 1, sym_comment, - ACTIONS(1560), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2189), 1, + aux_sym_shebang_repeat1, + STATE(7440), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5181), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -242530,16 +246273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1572), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(5183), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -242550,24 +246284,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -242576,19 +246322,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [32508] = 4, - ACTIONS(247), 1, + [27197] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1932), 1, + ACTIONS(5149), 1, + anon_sym_DOT, + STATE(1946), 1, sym_comment, - ACTIONS(5022), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1966), 1, + aux_sym_cell_path_repeat1, + STATE(2151), 1, + sym_path, + STATE(2550), 1, + sym_cell_path, + ACTIONS(2055), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -242597,15 +246344,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5020), 44, + ACTIONS(2057), 48, ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -242617,24 +246357,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -242643,18 +246393,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [32579] = 7, - ACTIONS(247), 1, + [27276] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, + ACTIONS(4433), 1, anon_sym_LPAREN2, - STATE(1933), 1, + STATE(1947), 1, sym_comment, - STATE(2164), 1, + STATE(2240), 1, aux_sym_shebang_repeat1, - STATE(7225), 1, + STATE(7440), 1, sym__expr_parenthesized_immediate, - ACTIONS(5073), 9, + ACTIONS(5163), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -242664,7 +246414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5075), 48, + ACTIONS(5165), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -242713,19 +246463,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [32656] = 4, - ACTIONS(247), 1, + [27353] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1934), 1, + ACTIONS(5149), 1, + anon_sym_DOT, + STATE(1948), 1, sym_comment, - ACTIONS(2489), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1966), 1, + aux_sym_cell_path_repeat1, + STATE(2151), 1, + sym_path, + STATE(2486), 1, + sym_cell_path, + ACTIONS(2095), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -242734,15 +246485,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2491), 44, + ACTIONS(2097), 48, ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -242754,24 +246498,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -242780,19 +246534,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [32727] = 4, - ACTIONS(247), 1, + [27432] = 7, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1935), 1, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + STATE(1949), 1, sym_comment, - ACTIONS(2493), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2192), 1, + aux_sym_shebang_repeat1, + STATE(7440), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5181), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -242801,16 +246555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2495), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(5183), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -242821,24 +246566,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -242847,19 +246604,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [32798] = 4, - ACTIONS(247), 1, + [27509] = 7, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1936), 1, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + STATE(1950), 1, sym_comment, - ACTIONS(2497), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2196), 1, + aux_sym_shebang_repeat1, + STATE(7440), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5181), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -242868,16 +246625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2499), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(5183), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -242888,24 +246636,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -242914,19 +246674,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [32869] = 4, - ACTIONS(247), 1, + [27586] = 7, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1937), 1, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + STATE(1951), 1, sym_comment, - ACTIONS(2501), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2235), 1, + aux_sym_shebang_repeat1, + STATE(7440), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5163), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -242935,16 +246695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2503), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(5165), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -242955,24 +246706,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -242981,19 +246744,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [32940] = 4, - ACTIONS(247), 1, + [27663] = 7, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1938), 1, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + STATE(1952), 1, sym_comment, - ACTIONS(2505), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2236), 1, + aux_sym_shebang_repeat1, + STATE(7440), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5163), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -243002,16 +246765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2507), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(5165), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -243022,24 +246776,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -243048,19 +246814,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [33011] = 4, - ACTIONS(247), 1, + [27740] = 7, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1939), 1, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + STATE(1953), 1, sym_comment, - ACTIONS(5026), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2198), 1, + aux_sym_shebang_repeat1, + STATE(7440), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5181), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -243069,16 +246835,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5024), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(5183), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -243089,24 +246846,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -243115,19 +246884,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [33082] = 4, - ACTIONS(247), 1, + [27817] = 7, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1940), 1, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + STATE(1954), 1, sym_comment, - ACTIONS(2509), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2101), 1, + aux_sym_shebang_repeat1, + STATE(7440), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5169), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -243136,16 +246905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2511), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(5171), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -243156,24 +246916,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -243182,19 +246954,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [33153] = 4, - ACTIONS(247), 1, + [27894] = 7, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1941), 1, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + STATE(1955), 1, sym_comment, - ACTIONS(2513), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2114), 1, + aux_sym_shebang_repeat1, + STATE(7440), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5169), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -243203,16 +246975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2515), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(5171), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -243223,24 +246986,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -243249,18 +247024,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [33224] = 7, - ACTIONS(247), 1, + [27971] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5006), 1, + ACTIONS(5187), 1, anon_sym_DOT, - STATE(1570), 1, + STATE(2132), 1, sym_path, - STATE(1942), 1, + STATE(1956), 2, sym_comment, - STATE(1943), 1, aux_sym_cell_path_repeat1, - ACTIONS(1011), 8, + ACTIONS(1031), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -243269,8 +247044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1013), 49, - sym__newline, + ACTIONS(1033), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -243282,35 +247056,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -243319,17 +247093,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [33301] = 6, - ACTIONS(247), 1, + [28046] = 21, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5086), 1, - anon_sym_DOT, - STATE(1570), 1, - sym_path, - STATE(1943), 2, + ACTIONS(1345), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1347), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3068), 1, + anon_sym_DQUOTE, + ACTIONS(3074), 1, + sym_raw_string_begin, + ACTIONS(5196), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(5198), 1, + sym__newline, + ACTIONS(5200), 1, + anon_sym_RBRACK, + STATE(1957), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1015), 8, + STATE(2037), 1, + aux_sym_shebang_repeat1, + STATE(2396), 1, + aux_sym_command_list_repeat1, + STATE(7383), 1, + sym__command_name, + STATE(7403), 1, + sym__val_number_decimal, + STATE(7604), 1, + sym_cmd_identifier, + STATE(7605), 1, + sym_val_string, + ACTIONS(1343), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3070), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5521), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5190), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(5194), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(5192), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [28151] = 7, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + STATE(1958), 1, + sym_comment, + STATE(2116), 1, + aux_sym_shebang_repeat1, + STATE(7440), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5169), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -243338,8 +247198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1017), 49, - sym__newline, + ACTIONS(5171), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -243351,35 +247210,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -243388,19 +247247,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [33376] = 4, - ACTIONS(247), 1, + [28228] = 7, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1944), 1, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + STATE(1959), 1, sym_comment, - ACTIONS(1042), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2228), 1, + aux_sym_shebang_repeat1, + STATE(7440), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5163), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -243409,16 +247268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1044), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(5165), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -243429,24 +247279,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -243455,19 +247317,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [33447] = 4, - ACTIONS(247), 1, + [28305] = 7, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1945), 1, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + STATE(1960), 1, sym_comment, - ACTIONS(2305), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2103), 1, + aux_sym_shebang_repeat1, + STATE(7440), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5169), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -243476,16 +247338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2307), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(5171), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -243496,24 +247349,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -243522,19 +247387,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [33518] = 4, - ACTIONS(247), 1, + [28382] = 7, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1946), 1, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + STATE(1961), 1, sym_comment, - ACTIONS(2305), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2118), 1, + aux_sym_shebang_repeat1, + STATE(7440), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5169), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -243543,16 +247408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2307), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(5171), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -243563,24 +247419,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -243589,20 +247457,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [33589] = 8, - ACTIONS(247), 1, + [28459] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5012), 1, + ACTIONS(5149), 1, anon_sym_DOT, - STATE(1883), 1, - aux_sym_cell_path_repeat1, - STATE(1947), 1, + STATE(1962), 1, sym_comment, - STATE(2107), 1, - sym_path, - STATE(2409), 1, + STATE(1966), 1, + aux_sym_cell_path_repeat1, + STATE(2009), 1, sym_cell_path, - ACTIONS(1848), 8, + STATE(2151), 1, + sym_path, + ACTIONS(1664), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -243611,7 +247479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1850), 48, + ACTIONS(1668), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -243660,20 +247528,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [33668] = 8, - ACTIONS(247), 1, + [28538] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5012), 1, + ACTIONS(5135), 1, anon_sym_DOT, - STATE(1883), 1, - aux_sym_cell_path_repeat1, - STATE(1948), 1, - sym_comment, - STATE(2107), 1, + STATE(1693), 1, sym_path, - STATE(2410), 1, - sym_cell_path, - ACTIONS(1852), 8, + STATE(1963), 1, + sym_comment, + STATE(1964), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1027), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -243682,8 +247548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1854), 48, - ts_builtin_sym_end, + ACTIONS(1029), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -243695,6 +247560,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -243731,20 +247598,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [33747] = 8, - ACTIONS(247), 1, + [28615] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5012), 1, + ACTIONS(5202), 1, anon_sym_DOT, - STATE(1883), 1, - aux_sym_cell_path_repeat1, - STATE(1949), 1, - sym_comment, - STATE(2107), 1, + STATE(1693), 1, sym_path, - STATE(2413), 1, - sym_cell_path, - ACTIONS(1856), 8, + STATE(1964), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(1031), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -243753,8 +247617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1858), 48, - ts_builtin_sym_end, + ACTIONS(1033), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -243766,6 +247629,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -243802,20 +247667,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [33826] = 8, - ACTIONS(247), 1, + [28690] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5012), 1, + ACTIONS(5149), 1, anon_sym_DOT, - STATE(1883), 1, - aux_sym_cell_path_repeat1, - STATE(1950), 1, + STATE(1965), 1, sym_comment, - STATE(2107), 1, + STATE(1966), 1, + aux_sym_cell_path_repeat1, + STATE(2151), 1, sym_path, - STATE(2414), 1, + STATE(2526), 1, sym_cell_path, - ACTIONS(1860), 8, + ACTIONS(2009), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -243824,7 +247689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1862), 48, + ACTIONS(2011), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -243873,19 +247738,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [33905] = 4, - ACTIONS(247), 1, + [28769] = 7, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1951), 1, + ACTIONS(5149), 1, + anon_sym_DOT, + STATE(1966), 1, sym_comment, - ACTIONS(5000), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(1980), 1, + aux_sym_cell_path_repeat1, + STATE(2151), 1, + sym_path, + ACTIONS(1027), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -243894,15 +247758,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(4998), 44, + ACTIONS(1029), 49, ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -243914,24 +247771,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -243940,86 +247808,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [33976] = 4, - ACTIONS(247), 1, + [28846] = 39, + ACTIONS(163), 1, + anon_sym_LPAREN, + ACTIONS(229), 1, + anon_sym_0b, + ACTIONS(233), 1, + sym_val_date, + ACTIONS(235), 1, + anon_sym_DQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1952), 1, - sym_comment, - ACTIONS(5038), 16, + ACTIONS(251), 1, + sym_raw_string_begin, + ACTIONS(273), 1, anon_sym_DOLLAR, + ACTIONS(401), 1, anon_sym_DASH, - anon_sym_DOT_DOT, + ACTIONS(3280), 1, + anon_sym_null, + ACTIONS(3296), 1, + aux_sym_record_entry_token1, + ACTIONS(3356), 1, + anon_sym_LBRACK, + ACTIONS(3362), 1, + anon_sym_LBRACE, + ACTIONS(3364), 1, + aux_sym_expr_unary_token1, + ACTIONS(3366), 1, aux_sym__val_number_decimal_token1, - anon_sym_0b, + ACTIONS(3368), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3370), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3372), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5185), 1, + anon_sym_DOT_DOT, + STATE(1765), 1, + sym__expr_unary_minus, + STATE(1827), 1, + sym__inter_single_quotes, + STATE(1841), 1, + sym__inter_double_quotes, + STATE(1883), 1, + sym__val_number, + STATE(1967), 1, + sym_comment, + STATE(3556), 1, + sym__val_number_decimal, + STATE(3562), 1, + sym_val_range, + STATE(3594), 1, + sym_expr_parenthesized, + STATE(3649), 1, + sym_val_variable, + STATE(3879), 1, + sym__expr_binary_expression, + STATE(7594), 1, + sym__expression, + ACTIONS(231), 2, anon_sym_0o, anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5036), 44, - ts_builtin_sym_end, + ACTIONS(237), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3278), 2, anon_sym_true, anon_sym_false, - anon_sym_null, + ACTIONS(5147), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1540), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(1739), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(227), 6, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [34047] = 4, - ACTIONS(247), 1, + STATE(1881), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [28987] = 7, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1953), 1, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + STATE(1968), 1, sym_comment, - ACTIONS(4988), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2226), 1, + aux_sym_shebang_repeat1, + STATE(7440), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5163), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -244028,16 +247931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(4986), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(5165), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -244048,24 +247942,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -244074,19 +247980,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [34118] = 4, - ACTIONS(247), 1, + [29064] = 7, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1954), 1, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + STATE(1969), 1, sym_comment, - ACTIONS(4769), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2230), 1, + aux_sym_shebang_repeat1, + STATE(7440), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5163), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -244095,15 +248001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2753), 44, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(5165), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -244114,25 +248012,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -244141,19 +248050,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [34189] = 4, - ACTIONS(247), 1, + [29141] = 7, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1955), 1, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + STATE(1970), 1, sym_comment, - ACTIONS(1038), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2106), 1, + aux_sym_shebang_repeat1, + STATE(7440), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5169), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -244162,16 +248071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1040), 44, - ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(5171), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -244182,24 +248082,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -244208,19 +248120,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [34260] = 4, - ACTIONS(247), 1, + [29218] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1956), 1, + ACTIONS(5149), 1, + anon_sym_DOT, + STATE(1966), 1, + aux_sym_cell_path_repeat1, + STATE(1971), 1, sym_comment, - ACTIONS(2362), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2151), 1, + sym_path, + STATE(2472), 1, + sym_cell_path, + ACTIONS(1993), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -244229,15 +248142,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2364), 44, + ACTIONS(1995), 48, ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -244249,24 +248155,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -244275,19 +248191,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [34331] = 4, - ACTIONS(247), 1, + [29297] = 7, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1957), 1, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + STATE(1972), 1, sym_comment, - ACTIONS(4860), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2233), 1, + aux_sym_shebang_repeat1, + STATE(7440), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5163), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -244296,15 +248212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(4858), 44, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, + ACTIONS(5165), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -244315,25 +248223,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -244342,19 +248261,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [34402] = 4, - ACTIONS(247), 1, + [29374] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1958), 1, + ACTIONS(5149), 1, + anon_sym_DOT, + STATE(1966), 1, + aux_sym_cell_path_repeat1, + STATE(1973), 1, sym_comment, - ACTIONS(2366), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(2151), 1, + sym_path, + STATE(2463), 1, + sym_cell_path, + ACTIONS(1893), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -244363,15 +248283,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2368), 44, + ACTIONS(1895), 48, ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -244383,24 +248296,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -244409,18 +248332,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [34473] = 7, - ACTIONS(247), 1, + [29453] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, + ACTIONS(4433), 1, anon_sym_LPAREN2, - STATE(1959), 1, + STATE(1974), 1, sym_comment, - STATE(2084), 1, + STATE(2200), 1, aux_sym_shebang_repeat1, - STATE(7225), 1, + STATE(7440), 1, sym__expr_parenthesized_immediate, - ACTIONS(5073), 9, + ACTIONS(5181), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -244430,7 +248353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5075), 48, + ACTIONS(5183), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -244479,85 +248402,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [34550] = 4, - ACTIONS(247), 1, + [29530] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1960), 1, + ACTIONS(5173), 1, + anon_sym_DOT, + STATE(1975), 1, sym_comment, - ACTIONS(5042), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5040), 44, - ts_builtin_sym_end, + STATE(2004), 1, + aux_sym_cell_path_repeat1, + STATE(2377), 1, + sym_path, + STATE(2536), 1, + sym_cell_path, + ACTIONS(1664), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1668), 50, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym_wild_card, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [34621] = 7, - ACTIONS(247), 1, + [29609] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, + ACTIONS(4433), 1, anon_sym_LPAREN2, - STATE(1961), 1, + STATE(1976), 1, sym_comment, - STATE(2172), 1, + STATE(2108), 1, aux_sym_shebang_repeat1, - STATE(7225), 1, + STATE(7440), 1, sym__expr_parenthesized_immediate, - ACTIONS(5073), 9, + ACTIONS(5169), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -244567,7 +248494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5075), 48, + ACTIONS(5171), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -244616,18 +248543,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [34698] = 7, - ACTIONS(247), 1, + [29686] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, + ACTIONS(4433), 1, anon_sym_LPAREN2, - STATE(1962), 1, + STATE(1977), 1, sym_comment, - STATE(2088), 1, + STATE(2094), 1, aux_sym_shebang_repeat1, - STATE(7225), 1, + STATE(7440), 1, sym__expr_parenthesized_immediate, - ACTIONS(5062), 9, + ACTIONS(5169), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -244637,7 +248564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5064), 48, + ACTIONS(5171), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -244686,18 +248613,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [34775] = 7, - ACTIONS(247), 1, + [29763] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, + ACTIONS(5149), 1, + anon_sym_DOT, + STATE(1966), 1, + aux_sym_cell_path_repeat1, + STATE(1978), 1, + sym_comment, + STATE(2006), 1, + sym_cell_path, + STATE(2151), 1, + sym_path, + ACTIONS(1670), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1672), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [29842] = 7, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(4433), 1, anon_sym_LPAREN2, - STATE(1963), 1, + STATE(1979), 1, sym_comment, - STATE(2089), 1, + STATE(2203), 1, aux_sym_shebang_repeat1, - STATE(7225), 1, + STATE(7440), 1, sym__expr_parenthesized_immediate, - ACTIONS(5062), 9, + ACTIONS(5181), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -244707,7 +248705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5064), 48, + ACTIONS(5183), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -244756,19 +248754,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [34852] = 4, - ACTIONS(247), 1, + [29919] = 6, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1964), 1, + ACTIONS(5205), 1, + anon_sym_DOT, + STATE(2151), 1, + sym_path, + STATE(1980), 2, sym_comment, - ACTIONS(2473), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + aux_sym_cell_path_repeat1, + ACTIONS(1031), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -244777,15 +248773,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2475), 44, + ACTIONS(1033), 49, ts_builtin_sym_end, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -244797,24 +248786,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [29994] = 7, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + STATE(1981), 1, + sym_comment, + STATE(2088), 1, + aux_sym_shebang_repeat1, + STATE(7440), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5169), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5171), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -244823,20 +248893,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [34923] = 8, - ACTIONS(247), 1, + [30071] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5012), 1, + ACTIONS(5149), 1, anon_sym_DOT, - STATE(1883), 1, + STATE(1966), 1, aux_sym_cell_path_repeat1, - STATE(1965), 1, + STATE(1982), 1, sym_comment, - STATE(2107), 1, + STATE(2151), 1, sym_path, - STATE(2403), 1, + STATE(2453), 1, sym_cell_path, - ACTIONS(1844), 8, + ACTIONS(1929), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -244845,7 +248915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1846), 48, + ACTIONS(1931), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -244894,20 +248964,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [35002] = 4, - ACTIONS(247), 1, + [30150] = 21, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1966), 1, + ACTIONS(1345), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1347), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3068), 1, + anon_sym_DQUOTE, + ACTIONS(3074), 1, + sym_raw_string_begin, + ACTIONS(5196), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(5198), 1, + sym__newline, + ACTIONS(5208), 1, + anon_sym_RBRACK, + STATE(1983), 1, sym_comment, - ACTIONS(1034), 6, + STATE(2015), 1, + aux_sym_shebang_repeat1, + STATE(2383), 1, + aux_sym_command_list_repeat1, + STATE(6835), 1, + sym__command_name, + STATE(7403), 1, + sym__val_number_decimal, + STATE(7604), 1, + sym_cmd_identifier, + STATE(7605), 1, + sym_val_string, + ACTIONS(1343), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3070), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5521), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5190), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1036), 53, - anon_sym_EQ, + ACTIONS(5194), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(5192), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -244939,37 +249048,89 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + [30255] = 7, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + STATE(1984), 1, + sym_comment, + STATE(2205), 1, + aux_sym_shebang_repeat1, + STATE(7440), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5181), 9, sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5183), 48, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_GT, anon_sym_LBRACE, - anon_sym_RBRACE, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [35072] = 6, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [30332] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2239), 1, + ACTIONS(4433), 1, anon_sym_LPAREN2, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - STATE(1967), 1, + STATE(1985), 1, sym_comment, - ACTIONS(2237), 16, + STATE(2207), 1, + aux_sym_shebang_repeat1, + STATE(7440), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5181), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -244978,6 +249139,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(5183), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -244986,8 +249188,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(2241), 41, + [30409] = 7, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + STATE(1986), 1, + sym_comment, + STATE(2209), 1, + aux_sym_shebang_repeat1, + STATE(7440), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5181), 9, sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5183), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -244999,7 +249221,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [30486] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5149), 1, + anon_sym_DOT, + STATE(1966), 1, + aux_sym_cell_path_repeat1, + STATE(1987), 1, + sym_comment, + STATE(2151), 1, + sym_path, + STATE(2460), 1, + sym_cell_path, + ACTIONS(1901), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1903), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -245028,16 +249321,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [35146] = 6, - ACTIONS(3), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [30565] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2239), 1, + ACTIONS(4433), 1, anon_sym_LPAREN2, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - STATE(1968), 1, + STATE(1988), 1, sym_comment, - ACTIONS(2245), 16, + STATE(2211), 1, + aux_sym_shebang_repeat1, + STATE(7440), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5181), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -245046,6 +249350,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(5183), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -245054,8 +249399,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(2247), 41, + [30642] = 7, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + STATE(1989), 1, + sym_comment, + STATE(2213), 1, + aux_sym_shebang_repeat1, + STATE(7440), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5181), 9, sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5183), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -245067,7 +249432,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [30719] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5149), 1, + anon_sym_DOT, + STATE(1966), 1, + aux_sym_cell_path_repeat1, + STATE(1990), 1, + sym_comment, + STATE(2151), 1, + sym_path, + STATE(2519), 1, + sym_cell_path, + ACTIONS(2001), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2003), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -245096,12 +249532,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [35220] = 4, - ACTIONS(247), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [30798] = 7, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1969), 1, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + STATE(1991), 1, sym_comment, - ACTIONS(2462), 9, + STATE(2237), 1, + aux_sym_shebang_repeat1, + STATE(7440), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5163), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -245111,7 +249561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2464), 50, + ACTIONS(5165), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -245123,9 +249573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_if, anon_sym_LBRACE, - anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -245162,12 +249610,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [35290] = 4, - ACTIONS(247), 1, + [30875] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1970), 1, + ACTIONS(5149), 1, + anon_sym_DOT, + STATE(1966), 1, + aux_sym_cell_path_repeat1, + STATE(1992), 1, sym_comment, - ACTIONS(1038), 8, + STATE(2151), 1, + sym_path, + STATE(2477), 1, + sym_cell_path, + ACTIONS(1997), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -245176,7 +249632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1040), 51, + ACTIONS(1999), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -245189,8 +249645,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACE, - anon_sym_QMARK2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -245219,7 +249673,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -245228,27 +249681,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [35360] = 8, - ACTIONS(247), 1, + [30954] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5089), 1, + ACTIONS(5173), 1, anon_sym_DOT, - STATE(1971), 1, + STATE(1993), 1, sym_comment, - STATE(2125), 1, + STATE(2004), 1, aux_sym_cell_path_repeat1, - STATE(2436), 1, + STATE(2377), 1, sym_path, - STATE(2506), 1, + STATE(2450), 1, sym_cell_path, - ACTIONS(1641), 6, + ACTIONS(1021), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1645), 49, + ACTIONS(1023), 50, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -245298,12 +249752,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [35438] = 4, - ACTIONS(247), 1, + [31033] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1972), 1, + ACTIONS(5149), 1, + anon_sym_DOT, + STATE(1966), 1, + aux_sym_cell_path_repeat1, + STATE(1994), 1, sym_comment, - ACTIONS(1042), 8, + STATE(2151), 1, + sym_path, + STATE(2557), 1, + sym_cell_path, + ACTIONS(2059), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -245312,7 +249774,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1044), 51, + ACTIONS(2061), 48, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -245324,9 +249787,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_QMARK2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -245355,7 +249815,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -245364,12 +249823,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [35508] = 4, - ACTIONS(247), 1, + [31112] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1973), 1, + ACTIONS(5149), 1, + anon_sym_DOT, + STATE(1966), 1, + aux_sym_cell_path_repeat1, + STATE(1995), 1, sym_comment, - ACTIONS(1038), 8, + STATE(2151), 1, + sym_path, + STATE(2558), 1, + sym_cell_path, + ACTIONS(2067), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -245378,7 +249845,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1040), 51, + ACTIONS(2069), 48, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -245390,9 +249858,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_QMARK2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -245421,7 +249886,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -245430,12 +249894,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [35578] = 4, - ACTIONS(247), 1, + [31191] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1974), 1, + STATE(1996), 1, sym_comment, - ACTIONS(1034), 8, + ACTIONS(1670), 9, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -245444,7 +249909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1036), 51, + ACTIONS(1672), 51, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -245458,73 +249923,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_QMARK2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [35648] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(1975), 1, - sym_comment, - ACTIONS(1042), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1044), 51, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACE, - anon_sym_QMARK2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -245553,7 +249951,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - anon_sym_DOT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -245562,12 +249961,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [35718] = 4, - ACTIONS(247), 1, + [31262] = 7, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1976), 1, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + STATE(1997), 1, sym_comment, - ACTIONS(1848), 9, + STATE(2091), 1, + aux_sym_shebang_repeat1, + STATE(7440), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5169), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -245577,7 +249982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1850), 50, + ACTIONS(5171), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -245589,9 +249994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_if, anon_sym_LBRACE, - anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -245628,12 +250031,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [35788] = 4, - ACTIONS(3), 1, + [31339] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1977), 1, + ACTIONS(5149), 1, + anon_sym_DOT, + STATE(1966), 1, + aux_sym_cell_path_repeat1, + STATE(1998), 1, sym_comment, - ACTIONS(2253), 17, + STATE(2151), 1, + sym_path, + STATE(2559), 1, + sym_cell_path, + ACTIONS(2083), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -245642,16 +250053,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token4, - ACTIONS(2255), 42, + ACTIONS(2085), 48, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -245663,9 +250066,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -245694,24 +250094,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [35858] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2225), 1, - anon_sym_LPAREN2, - ACTIONS(2227), 1, - aux_sym_unquoted_token4, - STATE(1978), 1, - sym_comment, - ACTIONS(1070), 16, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -245720,69 +250102,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(1072), 41, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [35932] = 8, - ACTIONS(247), 1, + [31418] = 20, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5089), 1, - anon_sym_DOT, - STATE(1979), 1, + ACTIONS(1345), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1347), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3842), 1, + anon_sym_DQUOTE, + ACTIONS(3848), 1, + sym_raw_string_begin, + ACTIONS(4895), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(5179), 1, + anon_sym_DASH_DASH, + STATE(1999), 1, sym_comment, - STATE(2125), 1, - aux_sym_cell_path_repeat1, - STATE(2436), 1, - sym_path, - STATE(2504), 1, - sym_cell_path, - ACTIONS(1675), 6, + STATE(2685), 1, + aux_sym_decl_def_repeat1, + STATE(2813), 1, + sym_long_flag, + STATE(4162), 1, + sym_val_string, + STATE(4187), 1, + sym_cmd_identifier, + STATE(6657), 1, + sym__command_name, + STATE(7312), 1, + sym__val_number_decimal, + ACTIONS(1343), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3844), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4434), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4889), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1677), 49, + ACTIONS(4893), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4891), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -245814,30 +250184,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [36010] = 4, - ACTIONS(247), 1, + [31520] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1980), 1, + STATE(2000), 1, sym_comment, - ACTIONS(2466), 9, + ACTIONS(2543), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -245847,7 +250199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2468), 50, + ACTIONS(2545), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -245898,12 +250250,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [36080] = 4, - ACTIONS(247), 1, + [31590] = 6, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1981), 1, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + STATE(2001), 1, sym_comment, - ACTIONS(2412), 9, + STATE(7791), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4814), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -245913,7 +250269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2414), 50, + ACTIONS(4812), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -245925,9 +250281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_if, anon_sym_LBRACE, - anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -245964,12 +250318,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [36150] = 4, - ACTIONS(247), 1, + [31664] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1982), 1, + STATE(2002), 1, sym_comment, - ACTIONS(2416), 9, + ACTIONS(2535), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -245979,7 +250333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2418), 50, + ACTIONS(2537), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -246030,27 +250384,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [36220] = 8, - ACTIONS(247), 1, + [31734] = 38, + ACTIONS(219), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(221), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(223), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(225), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(229), 1, + anon_sym_0b, + ACTIONS(233), 1, + sym_val_date, + ACTIONS(235), 1, + anon_sym_DQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5089), 1, + ACTIONS(251), 1, + sym_raw_string_begin, + ACTIONS(401), 1, + anon_sym_DASH, + ACTIONS(3280), 1, + anon_sym_null, + ACTIONS(3356), 1, + anon_sym_LBRACK, + ACTIONS(3362), 1, + anon_sym_LBRACE, + ACTIONS(3412), 1, + aux_sym_expr_unary_token1, + ACTIONS(4973), 1, + anon_sym_LPAREN, + ACTIONS(4975), 1, + anon_sym_DOLLAR, + ACTIONS(5210), 1, + anon_sym_DOT_DOT, + STATE(1765), 1, + sym__expr_unary_minus, + STATE(1827), 1, + sym__inter_single_quotes, + STATE(1841), 1, + sym__inter_double_quotes, + STATE(1883), 1, + sym__val_number, + STATE(2003), 1, + sym_comment, + STATE(3547), 1, + sym__val_number_decimal, + STATE(3562), 1, + sym_val_range, + STATE(3586), 1, + sym_expr_parenthesized, + STATE(3656), 1, + sym_val_variable, + STATE(3894), 1, + sym__expr_binary_expression, + STATE(7620), 1, + sym__expression, + ACTIONS(231), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(237), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3278), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5212), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1540), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(1739), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(227), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(1881), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [31872] = 7, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5173), 1, anon_sym_DOT, - STATE(1983), 1, + STATE(2004), 1, sym_comment, - STATE(2125), 1, + STATE(2021), 1, aux_sym_cell_path_repeat1, - STATE(2436), 1, + STATE(2377), 1, sym_path, - STATE(2511), 1, - sym_cell_path, - ACTIONS(1005), 6, + ACTIONS(1027), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1007), 49, + ACTIONS(1029), 50, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -246100,12 +250553,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [36298] = 4, - ACTIONS(247), 1, + [31948] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1984), 1, + STATE(2005), 1, sym_comment, - ACTIONS(1864), 9, + ACTIONS(2561), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -246115,7 +250568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1866), 50, + ACTIONS(2563), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -246166,12 +250619,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [36368] = 4, - ACTIONS(247), 1, + [32018] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1985), 1, + STATE(2006), 1, + sym_comment, + ACTIONS(2105), 9, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2107), 50, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [32088] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2007), 1, sym_comment, - ACTIONS(1560), 9, + ACTIONS(2017), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -246181,7 +250700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1572), 50, + ACTIONS(2019), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -246232,12 +250751,246 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [36438] = 4, - ACTIONS(247), 1, + [32158] = 38, + ACTIONS(163), 1, + anon_sym_LPAREN, + ACTIONS(229), 1, + anon_sym_0b, + ACTIONS(233), 1, + sym_val_date, + ACTIONS(235), 1, + anon_sym_DQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1986), 1, + ACTIONS(251), 1, + sym_raw_string_begin, + ACTIONS(273), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_DASH, + ACTIONS(3280), 1, + anon_sym_null, + ACTIONS(3356), 1, + anon_sym_LBRACK, + ACTIONS(3362), 1, + anon_sym_LBRACE, + ACTIONS(3364), 1, + aux_sym_expr_unary_token1, + ACTIONS(3366), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3368), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3370), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3372), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5185), 1, + anon_sym_DOT_DOT, + STATE(1765), 1, + sym__expr_unary_minus, + STATE(1827), 1, + sym__inter_single_quotes, + STATE(1841), 1, + sym__inter_double_quotes, + STATE(1883), 1, + sym__val_number, + STATE(2008), 1, + sym_comment, + STATE(3556), 1, + sym__val_number_decimal, + STATE(3562), 1, + sym_val_range, + STATE(3594), 1, + sym_expr_parenthesized, + STATE(3649), 1, + sym_val_variable, + STATE(3879), 1, + sym__expr_binary_expression, + STATE(7418), 1, + sym__expression, + ACTIONS(231), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(237), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3278), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5147), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1540), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(1739), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(227), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(1881), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [32296] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2009), 1, + sym_comment, + ACTIONS(1670), 9, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1672), 50, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [32366] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + STATE(2010), 1, + sym_comment, + STATE(7791), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4846), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(4844), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [32440] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2011), 1, sym_comment, - ACTIONS(1872), 9, + ACTIONS(2043), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -246247,7 +251000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1874), 50, + ACTIONS(2045), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -246298,14 +251051,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [36508] = 5, - ACTIONS(247), 1, + [32510] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5091), 1, - anon_sym_QMARK2, - STATE(1987), 1, + STATE(2012), 1, + sym_comment, + ACTIONS(2466), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2468), 50, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [32580] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2013), 1, sym_comment, - ACTIONS(1022), 9, + ACTIONS(2047), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -246315,7 +251132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1024), 49, + ACTIONS(2049), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -246327,7 +251144,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_if, anon_sym_LBRACE, + anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -246356,6 +251175,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [32650] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2014), 1, + sym_comment, + ACTIONS(1062), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1064), 51, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACE, + anon_sym_QMARK2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -246365,14 +251249,328 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [36580] = 5, - ACTIONS(247), 1, + [32720] = 20, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5093), 1, + ACTIONS(1345), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1347), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3068), 1, + anon_sym_DQUOTE, + ACTIONS(3074), 1, + sym_raw_string_begin, + ACTIONS(5196), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(5198), 1, + sym__newline, + STATE(2015), 1, + sym_comment, + STATE(2387), 1, + aux_sym_command_list_repeat1, + STATE(2744), 1, + aux_sym_shebang_repeat1, + STATE(6968), 1, + sym__command_name, + STATE(7403), 1, + sym__val_number_decimal, + STATE(7604), 1, + sym_cmd_identifier, + STATE(7605), 1, + sym_val_string, + ACTIONS(1343), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3070), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5521), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5190), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(5194), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(5192), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [32822] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2283), 1, + anon_sym_LPAREN2, + ACTIONS(2287), 1, + aux_sym_unquoted_token4, + STATE(2016), 1, + sym_comment, + ACTIONS(2281), 16, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(2285), 41, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [32896] = 38, + ACTIONS(229), 1, + anon_sym_0b, + ACTIONS(233), 1, + sym_val_date, + ACTIONS(235), 1, + anon_sym_DQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(251), 1, + sym_raw_string_begin, + ACTIONS(401), 1, + anon_sym_DASH, + ACTIONS(3280), 1, + anon_sym_null, + ACTIONS(3356), 1, + anon_sym_LBRACK, + ACTIONS(3362), 1, + anon_sym_LBRACE, + ACTIONS(3412), 1, + aux_sym_expr_unary_token1, + ACTIONS(3414), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3416), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3418), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3420), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4973), 1, + anon_sym_LPAREN, + ACTIONS(4975), 1, + anon_sym_DOLLAR, + ACTIONS(4981), 1, + anon_sym_DOT_DOT, + STATE(1765), 1, + sym__expr_unary_minus, + STATE(1827), 1, + sym__inter_single_quotes, + STATE(1841), 1, + sym__inter_double_quotes, + STATE(1883), 1, + sym__val_number, + STATE(2017), 1, + sym_comment, + STATE(3503), 1, + sym__val_number_decimal, + STATE(3542), 1, + sym_val_variable, + STATE(3543), 1, + sym_expr_parenthesized, + STATE(3562), 1, + sym_val_range, + STATE(3895), 1, + sym__expr_binary_expression, + STATE(5736), 1, + sym__expression, + ACTIONS(231), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(237), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3278), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4983), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1540), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(1739), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(227), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(1881), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [33034] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2018), 1, + sym_comment, + ACTIONS(1054), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1056), 51, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACE, anon_sym_QMARK2, - STATE(1988), 1, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [33104] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2019), 1, sym_comment, - ACTIONS(1028), 9, + ACTIONS(2434), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -246382,7 +251580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1030), 49, + ACTIONS(2436), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -246394,7 +251592,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_if, anon_sym_LBRACE, + anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -246423,7 +251623,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -246432,12 +251631,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [36652] = 4, - ACTIONS(247), 1, + [33174] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1989), 1, + STATE(2020), 1, sym_comment, - ACTIONS(1876), 9, + ACTIONS(2059), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -246447,7 +251646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1878), 50, + ACTIONS(2061), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -246498,20 +251697,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [36722] = 4, - ACTIONS(247), 1, + [33244] = 6, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1990), 1, + ACTIONS(5214), 1, + anon_sym_DOT, + STATE(2377), 1, + sym_path, + STATE(2021), 2, sym_comment, - ACTIONS(5097), 6, + aux_sym_cell_path_repeat1, + ACTIONS(1031), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(5095), 53, - anon_sym_EQ, + ACTIONS(1033), 50, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -246551,10 +251755,7 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_GT, - anon_sym_LBRACE, anon_sym_RBRACE, sym_wild_card, aux_sym__val_number_decimal_token1, @@ -246564,12 +251765,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [36792] = 4, - ACTIONS(247), 1, + [33318] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1991), 1, + STATE(2022), 1, sym_comment, - ACTIONS(2420), 9, + ACTIONS(2442), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -246579,7 +251780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2422), 50, + ACTIONS(2444), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -246630,12 +251831,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [36862] = 4, - ACTIONS(247), 1, + [33388] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1992), 1, + STATE(2023), 1, sym_comment, - ACTIONS(1888), 9, + ACTIONS(2450), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -246645,7 +251846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1890), 50, + ACTIONS(2452), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -246696,12 +251897,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [36932] = 4, - ACTIONS(247), 1, + [33458] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1993), 1, + STATE(2024), 1, sym_comment, - ACTIONS(2434), 9, + ACTIONS(2067), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -246711,7 +251912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2436), 50, + ACTIONS(2069), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -246762,17 +251963,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37002] = 6, - ACTIONS(247), 1, + [33528] = 20, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4658), 1, - anon_sym_DOT_DOT2, - STATE(1994), 1, + ACTIONS(1345), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1347), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3842), 1, + anon_sym_DQUOTE, + ACTIONS(3848), 1, + sym_raw_string_begin, + ACTIONS(4895), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(5179), 1, + anon_sym_DASH_DASH, + STATE(2025), 1, sym_comment, - ACTIONS(4660), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1070), 8, + STATE(2685), 1, + aux_sym_decl_def_repeat1, + STATE(2813), 1, + sym_long_flag, + STATE(4162), 1, + sym_val_string, + STATE(4187), 1, + sym_cmd_identifier, + STATE(6207), 1, + sym__command_name, + STATE(7312), 1, + sym__val_number_decimal, + ACTIONS(1343), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3844), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4434), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4889), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4893), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4891), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [33630] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2026), 1, + sym_comment, + ACTIONS(1054), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -246781,8 +252059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1072), 48, - ts_builtin_sym_end, + ACTIONS(1056), 51, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -246794,6 +252071,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_QMARK2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -246822,6 +252102,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -246830,12 +252111,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37076] = 4, - ACTIONS(247), 1, + [33700] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1995), 1, + STATE(2027), 1, sym_comment, - ACTIONS(1892), 9, + ACTIONS(2087), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -246845,7 +252126,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1894), 50, + ACTIONS(2089), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -246896,16 +252177,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37146] = 6, - ACTIONS(247), 1, + [33770] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - STATE(1996), 1, + ACTIONS(1099), 1, + anon_sym_DOT_DOT2, + STATE(2028), 1, sym_comment, - STATE(7682), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4757), 9, + ACTIONS(1101), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1090), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -246915,7 +252197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4755), 48, + ACTIONS(1092), 47, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -246927,7 +252209,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -246964,12 +252245,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37220] = 4, - ACTIONS(247), 1, + [33844] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1997), 1, + STATE(2029), 1, sym_comment, - ACTIONS(1900), 9, + ACTIONS(2470), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -246979,7 +252260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1902), 50, + ACTIONS(2472), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -247030,80 +252311,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37290] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - STATE(1998), 1, - sym_comment, - STATE(7682), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4761), 9, - sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(4759), 48, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [37364] = 4, - ACTIONS(247), 1, + [33914] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(1999), 1, + STATE(2030), 1, sym_comment, - ACTIONS(2442), 9, + ACTIONS(2474), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -247113,7 +252326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2444), 50, + ACTIONS(2476), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -247164,12 +252377,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37434] = 4, - ACTIONS(247), 1, + [33984] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2000), 1, + STATE(2031), 1, sym_comment, - ACTIONS(2446), 9, + ACTIONS(2095), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -247179,7 +252392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2448), 50, + ACTIONS(2097), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -247230,86 +252443,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37504] = 4, - ACTIONS(247), 1, + [34054] = 20, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2001), 1, + ACTIONS(1345), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1347), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3842), 1, + anon_sym_DQUOTE, + ACTIONS(3848), 1, + sym_raw_string_begin, + ACTIONS(4895), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(5179), 1, + anon_sym_DASH_DASH, + STATE(1999), 1, + aux_sym_decl_def_repeat1, + STATE(2032), 1, sym_comment, - ACTIONS(5101), 6, + STATE(2813), 1, + sym_long_flag, + STATE(4162), 1, + sym_val_string, + STATE(4187), 1, + sym_cmd_identifier, + STATE(6680), 1, + sym__command_name, + STATE(7312), 1, + sym__val_number_decimal, + ACTIONS(1343), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3844), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4434), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4889), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(5099), 53, - anon_sym_EQ, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, + ACTIONS(4893), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_GT, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [37574] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2002), 1, - sym_comment, - ACTIONS(1042), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1044), 53, - anon_sym_EQ, + ACTIONS(4891), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -247341,33 +252525,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_GT, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [37644] = 4, - ACTIONS(247), 1, + [34156] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2003), 1, + STATE(2033), 1, sym_comment, - ACTIONS(1904), 9, + ACTIONS(2502), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -247377,7 +252540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1906), 50, + ACTIONS(2504), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -247428,147 +252591,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37714] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4658), 1, - anon_sym_DOT_DOT2, - STATE(2004), 1, - sym_comment, - ACTIONS(4660), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(4798), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(4796), 20, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(4800), 28, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [37790] = 4, - ACTIONS(247), 1, + [34226] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2005), 1, - sym_comment, - ACTIONS(5105), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(5103), 53, - anon_sym_EQ, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_GT, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [37860] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2006), 1, + STATE(2034), 1, sym_comment, - ACTIONS(2450), 9, + ACTIONS(2531), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -247578,7 +252606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2452), 50, + ACTIONS(2533), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -247629,12 +252657,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37930] = 4, - ACTIONS(247), 1, + [34296] = 6, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2007), 1, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + STATE(2035), 1, sym_comment, - ACTIONS(2454), 9, + STATE(7791), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4810), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -247644,7 +252676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2456), 50, + ACTIONS(4808), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -247656,9 +252688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_if, anon_sym_LBRACE, - anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -247695,12 +252725,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [38000] = 4, - ACTIONS(247), 1, + [34370] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2008), 1, + STATE(2036), 1, sym_comment, - ACTIONS(1034), 8, + ACTIONS(1038), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -247709,7 +252739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1036), 51, + ACTIONS(1040), 51, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -247761,20 +252791,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [38070] = 4, - ACTIONS(247), 1, + [34440] = 20, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2009), 1, + ACTIONS(1345), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1347), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3068), 1, + anon_sym_DQUOTE, + ACTIONS(3074), 1, + sym_raw_string_begin, + ACTIONS(5196), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(5198), 1, + sym__newline, + STATE(2037), 1, sym_comment, - ACTIONS(1038), 6, + STATE(2337), 1, + aux_sym_command_list_repeat1, + STATE(2744), 1, + aux_sym_shebang_repeat1, + STATE(7168), 1, + sym__command_name, + STATE(7403), 1, + sym__val_number_decimal, + STATE(7604), 1, + sym_cmd_identifier, + STATE(7605), 1, + sym_val_string, + ACTIONS(1343), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3070), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5521), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5190), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1040), 53, - anon_sym_EQ, + ACTIONS(5194), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(5192), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -247806,34 +252873,180 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + [34542] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2038), 1, + sym_comment, + ACTIONS(2289), 17, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym_unquoted_token4, + ACTIONS(2291), 42, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_GT, - anon_sym_LBRACE, anon_sym_RBRACE, - sym_wild_card, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [34612] = 38, + ACTIONS(163), 1, + anon_sym_LPAREN, + ACTIONS(229), 1, + anon_sym_0b, + ACTIONS(233), 1, + sym_val_date, + ACTIONS(235), 1, + anon_sym_DQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(251), 1, + sym_raw_string_begin, + ACTIONS(273), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_DASH, + ACTIONS(3280), 1, + anon_sym_null, + ACTIONS(3356), 1, + anon_sym_LBRACK, + ACTIONS(3362), 1, + anon_sym_LBRACE, + ACTIONS(3364), 1, + aux_sym_expr_unary_token1, + ACTIONS(3366), 1, aux_sym__val_number_decimal_token1, + ACTIONS(3368), 1, aux_sym__val_number_decimal_token2, + ACTIONS(3370), 1, aux_sym__val_number_decimal_token3, + ACTIONS(3372), 1, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, + ACTIONS(5185), 1, + anon_sym_DOT_DOT, + STATE(1765), 1, + sym__expr_unary_minus, + STATE(1827), 1, + sym__inter_single_quotes, + STATE(1841), 1, + sym__inter_double_quotes, + STATE(1883), 1, + sym__val_number, + STATE(2039), 1, + sym_comment, + STATE(3556), 1, + sym__val_number_decimal, + STATE(3562), 1, + sym_val_range, + STATE(3594), 1, + sym_expr_parenthesized, + STATE(3649), 1, + sym_val_variable, + STATE(3879), 1, + sym__expr_binary_expression, + STATE(7476), 1, + sym__expression, + ACTIONS(231), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(237), 2, sym__str_single_quotes, sym__str_back_ticks, - [38140] = 4, - ACTIONS(247), 1, + ACTIONS(3278), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5147), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1540), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(1739), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(227), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(1881), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [34750] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2010), 1, + ACTIONS(5217), 1, + anon_sym_QMARK2, + STATE(2040), 1, sym_comment, - ACTIONS(2141), 9, - anon_sym_DOT_DOT2, + ACTIONS(1042), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -247842,7 +253055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2143), 50, + ACTIONS(1044), 50, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -247855,6 +253068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -247883,8 +253097,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -247893,13 +253106,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [38210] = 4, - ACTIONS(247), 1, + [34822] = 38, + ACTIONS(229), 1, + anon_sym_0b, + ACTIONS(233), 1, + sym_val_date, + ACTIONS(235), 1, + anon_sym_DQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2011), 1, + ACTIONS(251), 1, + sym_raw_string_begin, + ACTIONS(401), 1, + anon_sym_DASH, + ACTIONS(3280), 1, + anon_sym_null, + ACTIONS(3356), 1, + anon_sym_LBRACK, + ACTIONS(3362), 1, + anon_sym_LBRACE, + ACTIONS(3412), 1, + aux_sym_expr_unary_token1, + ACTIONS(3414), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3416), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3418), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3420), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4973), 1, + anon_sym_LPAREN, + ACTIONS(4975), 1, + anon_sym_DOLLAR, + ACTIONS(4981), 1, + anon_sym_DOT_DOT, + STATE(1765), 1, + sym__expr_unary_minus, + STATE(1827), 1, + sym__inter_single_quotes, + STATE(1841), 1, + sym__inter_double_quotes, + STATE(1883), 1, + sym__val_number, + STATE(2041), 1, sym_comment, - ACTIONS(2517), 9, - sym__newline, + STATE(3503), 1, + sym__val_number_decimal, + STATE(3542), 1, + sym_val_variable, + STATE(3543), 1, + sym_expr_parenthesized, + STATE(3562), 1, + sym_val_range, + STATE(3895), 1, + sym__expr_binary_expression, + STATE(5640), 1, + sym__expression, + ACTIONS(231), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(237), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3278), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4983), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1540), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(1739), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(227), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(1881), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [34960] = 7, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(4776), 1, + anon_sym_DOT_DOT2, + STATE(2042), 1, + sym_comment, + ACTIONS(4778), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5139), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -247908,7 +253225,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2519), 50, + ACTIONS(5137), 20, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -247919,38 +253238,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -247959,20 +253246,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [38280] = 4, - ACTIONS(247), 1, + ACTIONS(5127), 28, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [35036] = 38, + ACTIONS(229), 1, + anon_sym_0b, + ACTIONS(233), 1, + sym_val_date, + ACTIONS(235), 1, + anon_sym_DQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2012), 1, + ACTIONS(251), 1, + sym_raw_string_begin, + ACTIONS(401), 1, + anon_sym_DASH, + ACTIONS(3280), 1, + anon_sym_null, + ACTIONS(3356), 1, + anon_sym_LBRACK, + ACTIONS(3362), 1, + anon_sym_LBRACE, + ACTIONS(3412), 1, + aux_sym_expr_unary_token1, + ACTIONS(3414), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3416), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3418), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3420), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4973), 1, + anon_sym_LPAREN, + ACTIONS(4975), 1, + anon_sym_DOLLAR, + ACTIONS(4981), 1, + anon_sym_DOT_DOT, + STATE(1765), 1, + sym__expr_unary_minus, + STATE(1827), 1, + sym__inter_single_quotes, + STATE(1841), 1, + sym__inter_double_quotes, + STATE(1883), 1, + sym__val_number, + STATE(2043), 1, + sym_comment, + STATE(3503), 1, + sym__val_number_decimal, + STATE(3542), 1, + sym_val_variable, + STATE(3543), 1, + sym_expr_parenthesized, + STATE(3562), 1, + sym_val_range, + STATE(3895), 1, + sym__expr_binary_expression, + STATE(5641), 1, + sym__expression, + ACTIONS(231), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(237), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3278), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4983), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1540), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(1739), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(227), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(1881), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [35174] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5219), 1, + anon_sym_DOT, + STATE(2044), 1, sym_comment, - ACTIONS(5109), 6, + STATE(2229), 1, + aux_sym_cell_path_repeat1, + STATE(2537), 1, + sym_path, + STATE(2611), 1, + sym_cell_path, + ACTIONS(1670), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(5107), 53, - anon_sym_EQ, + ACTIONS(1672), 49, + sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -248012,11 +253437,6 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_GT, - anon_sym_LBRACE, - anon_sym_RBRACE, sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -248025,18 +253445,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [38350] = 6, - ACTIONS(247), 1, + [35252] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1079), 1, - anon_sym_DOT_DOT2, - STATE(2013), 1, + ACTIONS(2295), 1, + anon_sym_LPAREN2, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + STATE(2045), 1, sym_comment, - ACTIONS(1081), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1070), 9, - sym__newline, + ACTIONS(2293), 16, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -248045,46 +253463,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1072), 47, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -248093,22 +253471,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [38424] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2014), 1, - sym_comment, - ACTIONS(2458), 9, + ACTIONS(2297), 41, sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2460), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -248120,75 +253484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [38494] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5111), 1, - anon_sym_QMARK2, - STATE(2015), 1, - sym_comment, - ACTIONS(1022), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1024), 50, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACE, + anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -248217,23 +253513,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - anon_sym_DOT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [38566] = 5, - ACTIONS(247), 1, + [35326] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5113), 1, + ACTIONS(5221), 1, anon_sym_QMARK2, - STATE(2016), 1, + STATE(2046), 1, sym_comment, - ACTIONS(1028), 8, + ACTIONS(1048), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -248242,7 +253529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1030), 50, + ACTIONS(1050), 50, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -248293,16 +253580,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [38638] = 6, - ACTIONS(247), 1, + [35398] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - STATE(2017), 1, + STATE(2047), 1, sym_comment, - STATE(7682), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4749), 9, + ACTIONS(2001), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -248312,7 +253595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4747), 48, + ACTIONS(2003), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -248324,7 +253607,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_if, anon_sym_LBRACE, + anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -248361,13 +253646,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [38712] = 4, - ACTIONS(247), 1, + [35468] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2018), 1, + ACTIONS(2295), 1, + anon_sym_LPAREN2, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + STATE(2048), 1, sym_comment, - ACTIONS(1675), 9, - anon_sym_DOT_DOT2, + ACTIONS(2303), 16, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -248376,8 +253664,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1677), 50, - ts_builtin_sym_end, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(2305), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -248389,6 +253684,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -248417,127 +253714,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [38782] = 39, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(467), 1, - anon_sym_LBRACK, - ACTIONS(469), 1, - anon_sym_LPAREN, - ACTIONS(473), 1, - anon_sym_DOLLAR, - ACTIONS(475), 1, - anon_sym_DASH, - ACTIONS(485), 1, - anon_sym_LBRACE, - ACTIONS(491), 1, - aux_sym_expr_unary_token1, - ACTIONS(495), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(497), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(499), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(501), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(505), 1, - anon_sym_0b, - ACTIONS(509), 1, - sym_val_date, - ACTIONS(511), 1, - anon_sym_DQUOTE, - ACTIONS(515), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(517), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(5117), 1, - anon_sym_null, - ACTIONS(5119), 1, - anon_sym_DOT_DOT, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(1725), 1, - sym__str_double_quotes, - STATE(2014), 1, - sym__val_number, - STATE(2019), 1, - sym_comment, - STATE(2239), 1, - sym__inter_single_quotes, - STATE(2243), 1, - sym__inter_double_quotes, - STATE(2377), 1, - sym__expr_unary_minus, - STATE(3493), 1, - sym__val_number_decimal, - STATE(3518), 1, - sym_expr_parenthesized, - STATE(3526), 1, - sym_val_variable, - STATE(3774), 1, - sym__expr_binary_expression_parenthesized, - STATE(3793), 1, - sym_val_range, - STATE(6176), 1, - sym__expression_parenthesized, - ACTIONS(507), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(513), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5115), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5121), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(2344), 3, - sym_expr_unary, - sym_expr_binary_parenthesized, - sym__value, - ACTIONS(503), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(2221), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [38922] = 6, - ACTIONS(247), 1, + [35542] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - STATE(2020), 1, + STATE(2049), 1, sym_comment, - STATE(7682), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4753), 9, + ACTIONS(2539), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -248547,7 +253729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4751), 48, + ACTIONS(2541), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -248559,7 +253741,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_if, anon_sym_LBRACE, + anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -248596,95 +253780,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [38996] = 39, - ACTIONS(247), 1, + [35612] = 38, + ACTIONS(229), 1, + anon_sym_0b, + ACTIONS(233), 1, + sym_val_date, + ACTIONS(235), 1, + anon_sym_DQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(467), 1, - anon_sym_LBRACK, - ACTIONS(469), 1, - anon_sym_LPAREN, - ACTIONS(473), 1, - anon_sym_DOLLAR, - ACTIONS(475), 1, + ACTIONS(251), 1, + sym_raw_string_begin, + ACTIONS(401), 1, anon_sym_DASH, - ACTIONS(485), 1, + ACTIONS(3280), 1, + anon_sym_null, + ACTIONS(3356), 1, + anon_sym_LBRACK, + ACTIONS(3362), 1, anon_sym_LBRACE, - ACTIONS(491), 1, + ACTIONS(3412), 1, aux_sym_expr_unary_token1, - ACTIONS(495), 1, + ACTIONS(3414), 1, aux_sym__val_number_decimal_token1, - ACTIONS(497), 1, + ACTIONS(3416), 1, aux_sym__val_number_decimal_token2, - ACTIONS(499), 1, + ACTIONS(3418), 1, aux_sym__val_number_decimal_token3, - ACTIONS(501), 1, + ACTIONS(3420), 1, aux_sym__val_number_decimal_token4, - ACTIONS(505), 1, - anon_sym_0b, - ACTIONS(509), 1, - sym_val_date, - ACTIONS(511), 1, - anon_sym_DQUOTE, - ACTIONS(515), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(517), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(5117), 1, - anon_sym_null, - ACTIONS(5119), 1, + ACTIONS(4973), 1, + anon_sym_LPAREN, + ACTIONS(4975), 1, + anon_sym_DOLLAR, + ACTIONS(4981), 1, anon_sym_DOT_DOT, - STATE(1725), 1, - sym__str_double_quotes, - STATE(2014), 1, - sym__val_number, - STATE(2019), 1, - aux_sym_shebang_repeat1, - STATE(2021), 1, - sym_comment, - STATE(2239), 1, + STATE(1765), 1, + sym__expr_unary_minus, + STATE(1827), 1, sym__inter_single_quotes, - STATE(2243), 1, + STATE(1841), 1, sym__inter_double_quotes, - STATE(2377), 1, - sym__expr_unary_minus, - STATE(3493), 1, + STATE(1883), 1, + sym__val_number, + STATE(2050), 1, + sym_comment, + STATE(3503), 1, sym__val_number_decimal, - STATE(3518), 1, - sym_expr_parenthesized, - STATE(3526), 1, + STATE(3542), 1, sym_val_variable, - STATE(3774), 1, - sym__expr_binary_expression_parenthesized, - STATE(3793), 1, + STATE(3543), 1, + sym_expr_parenthesized, + STATE(3562), 1, sym_val_range, - STATE(6386), 1, - sym__expression_parenthesized, - ACTIONS(507), 2, + STATE(3895), 1, + sym__expr_binary_expression, + STATE(5645), 1, + sym__expression, + ACTIONS(231), 2, anon_sym_0o, anon_sym_0x, - ACTIONS(513), 2, + ACTIONS(237), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5115), 2, + ACTIONS(3278), 2, anon_sym_true, anon_sym_false, - ACTIONS(5121), 2, + ACTIONS(4983), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(2344), 3, + STATE(1540), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(1739), 3, sym_expr_unary, - sym_expr_binary_parenthesized, + sym_expr_binary, sym__value, - ACTIONS(503), 6, + ACTIONS(227), 6, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - STATE(2221), 12, + STATE(1881), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -248697,13 +253880,12 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [39136] = 4, - ACTIONS(247), 1, + [35750] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2022), 1, + STATE(2051), 1, sym_comment, - ACTIONS(2521), 9, - sym__newline, + ACTIONS(1062), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -248712,7 +253894,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2523), 50, + ACTIONS(1064), 51, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -248724,37 +253907,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_RBRACE, + anon_sym_QMARK2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -248763,19 +253946,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39206] = 8, - ACTIONS(247), 1, + [35820] = 38, + ACTIONS(229), 1, + anon_sym_0b, + ACTIONS(233), 1, + sym_val_date, + ACTIONS(235), 1, + anon_sym_DQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(251), 1, + sym_raw_string_begin, + ACTIONS(401), 1, + anon_sym_DASH, + ACTIONS(3280), 1, + anon_sym_null, + ACTIONS(3356), 1, + anon_sym_LBRACK, + ACTIONS(3362), 1, + anon_sym_LBRACE, + ACTIONS(3412), 1, + aux_sym_expr_unary_token1, + ACTIONS(3414), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3416), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3418), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3420), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4973), 1, + anon_sym_LPAREN, + ACTIONS(4975), 1, + anon_sym_DOLLAR, + ACTIONS(4981), 1, + anon_sym_DOT_DOT, + STATE(1765), 1, + sym__expr_unary_minus, + STATE(1827), 1, + sym__inter_single_quotes, + STATE(1841), 1, + sym__inter_double_quotes, + STATE(1883), 1, + sym__val_number, + STATE(2052), 1, + sym_comment, + STATE(3503), 1, + sym__val_number_decimal, + STATE(3542), 1, + sym_val_variable, + STATE(3543), 1, + sym_expr_parenthesized, + STATE(3562), 1, + sym_val_range, + STATE(3895), 1, + sym__expr_binary_expression, + STATE(5646), 1, + sym__expression, + ACTIONS(231), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(237), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3278), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4983), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1540), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(1739), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(227), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(1881), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [35958] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1079), 1, + ACTIONS(1099), 1, anon_sym_DOT_DOT2, - ACTIONS(5123), 1, + ACTIONS(5223), 1, sym__newline, - STATE(2023), 1, + STATE(2053), 1, sym_comment, - ACTIONS(1081), 2, + ACTIONS(1101), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5130), 8, + ACTIONS(5230), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -248784,7 +254067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5126), 19, + ACTIONS(5226), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -248804,7 +254087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(5128), 28, + ACTIONS(5228), 28, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -248833,16 +254116,99 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [39284] = 6, - ACTIONS(3), 1, + [36036] = 20, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2231), 1, - anon_sym_LPAREN2, - ACTIONS(2235), 1, - aux_sym_unquoted_token4, - STATE(2024), 1, + ACTIONS(1345), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1347), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3842), 1, + anon_sym_DQUOTE, + ACTIONS(3848), 1, + sym_raw_string_begin, + ACTIONS(4895), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(5179), 1, + anon_sym_DASH_DASH, + STATE(2054), 1, + sym_comment, + STATE(2057), 1, + aux_sym_decl_def_repeat1, + STATE(2813), 1, + sym_long_flag, + STATE(4162), 1, + sym_val_string, + STATE(4187), 1, + sym_cmd_identifier, + STATE(6654), 1, + sym__command_name, + STATE(7312), 1, + sym__val_number_decimal, + ACTIONS(1343), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3844), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4434), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4889), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4893), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4891), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [36138] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(4776), 1, + anon_sym_DOT_DOT2, + STATE(2055), 1, sym_comment, - ACTIONS(2229), 16, + ACTIONS(4778), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1090), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -248851,15 +254217,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(2233), 41, + ACTIONS(1092), 48, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -248871,8 +254230,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -248901,20 +254258,297 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [39358] = 4, - ACTIONS(247), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [36212] = 20, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2025), 1, + ACTIONS(1345), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1347), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3842), 1, + anon_sym_DQUOTE, + ACTIONS(3848), 1, + sym_raw_string_begin, + ACTIONS(4895), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(5179), 1, + anon_sym_DASH_DASH, + STATE(2056), 1, sym_comment, - ACTIONS(5134), 6, + STATE(2059), 1, + aux_sym_decl_def_repeat1, + STATE(2813), 1, + sym_long_flag, + STATE(4162), 1, + sym_val_string, + STATE(4187), 1, + sym_cmd_identifier, + STATE(6662), 1, + sym__command_name, + STATE(7312), 1, + sym__val_number_decimal, + ACTIONS(1343), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3844), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4434), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4889), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, + ACTIONS(4893), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4891), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [36314] = 20, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1345), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1347), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3842), 1, + anon_sym_DQUOTE, + ACTIONS(3848), 1, + sym_raw_string_begin, + ACTIONS(4895), 1, aux_sym_cmd_identifier_token38, - ACTIONS(5132), 53, - anon_sym_EQ, + ACTIONS(5179), 1, + anon_sym_DASH_DASH, + STATE(2057), 1, + sym_comment, + STATE(2685), 1, + aux_sym_decl_def_repeat1, + STATE(2813), 1, + sym_long_flag, + STATE(4162), 1, + sym_val_string, + STATE(4187), 1, + sym_cmd_identifier, + STATE(6663), 1, + sym__command_name, + STATE(7312), 1, + sym__val_number_decimal, + ACTIONS(1343), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3844), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4434), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4889), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4893), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4891), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [36416] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5232), 1, + anon_sym_DOT, + ACTIONS(5234), 1, + aux_sym__immediate_decimal_token2, + STATE(2058), 1, + sym_comment, + ACTIONS(1536), 10, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1538), 47, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [36490] = 20, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1345), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1347), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3842), 1, + anon_sym_DQUOTE, + ACTIONS(3848), 1, + sym_raw_string_begin, + ACTIONS(4895), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(5179), 1, + anon_sym_DASH_DASH, + STATE(2059), 1, + sym_comment, + STATE(2685), 1, + aux_sym_decl_def_repeat1, + STATE(2813), 1, + sym_long_flag, + STATE(4162), 1, + sym_val_string, + STATE(4187), 1, + sym_cmd_identifier, + STATE(6665), 1, + sym__command_name, + STATE(7312), 1, + sym__val_number_decimal, + ACTIONS(1343), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3844), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4434), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4889), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4893), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4891), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -248946,33 +254580,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_GT, - anon_sym_LBRACE, - anon_sym_RBRACE, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [39428] = 4, - ACTIONS(247), 1, + [36592] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2026), 1, + STATE(2060), 1, sym_comment, - ACTIONS(2438), 9, + ACTIONS(2454), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -248982,7 +254595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2440), 50, + ACTIONS(2456), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -249033,15 +254646,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39498] = 5, - ACTIONS(247), 1, + [36662] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2027), 1, + STATE(2061), 1, sym_comment, - STATE(2043), 1, - aux_sym_shebang_repeat1, - ACTIONS(5136), 9, - sym__newline, + ACTIONS(1038), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -249050,73 +254660,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5138), 48, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [39569] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2028), 1, - sym_comment, - STATE(2043), 1, - aux_sym_shebang_repeat1, - ACTIONS(5136), 9, + ACTIONS(1040), 51, sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5138), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -249128,35 +254673,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_RBRACE, + anon_sym_QMARK2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -249165,80 +254712,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39640] = 5, - ACTIONS(247), 1, + [36732] = 38, + ACTIONS(163), 1, + anon_sym_LPAREN, + ACTIONS(229), 1, + anon_sym_0b, + ACTIONS(233), 1, + sym_val_date, + ACTIONS(235), 1, + anon_sym_DQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2029), 1, - sym_comment, - STATE(2043), 1, - aux_sym_shebang_repeat1, - ACTIONS(5136), 9, - sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5138), 48, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + ACTIONS(251), 1, + sym_raw_string_begin, + ACTIONS(273), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_DASH, + ACTIONS(3280), 1, + anon_sym_null, + ACTIONS(3356), 1, + anon_sym_LBRACK, + ACTIONS(3362), 1, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [39711] = 5, - ACTIONS(247), 1, + ACTIONS(3364), 1, + aux_sym_expr_unary_token1, + ACTIONS(3366), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3368), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3370), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3372), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5185), 1, + anon_sym_DOT_DOT, + STATE(1765), 1, + sym__expr_unary_minus, + STATE(1827), 1, + sym__inter_single_quotes, + STATE(1841), 1, + sym__inter_double_quotes, + STATE(1883), 1, + sym__val_number, + STATE(2062), 1, + sym_comment, + STATE(3556), 1, + sym__val_number_decimal, + STATE(3562), 1, + sym_val_range, + STATE(3594), 1, + sym_expr_parenthesized, + STATE(3649), 1, + sym_val_variable, + STATE(3879), 1, + sym__expr_binary_expression, + STATE(7584), 1, + sym__expression, + ACTIONS(231), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(237), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3278), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5147), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1540), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(1739), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(227), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(1881), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [36870] = 6, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2030), 1, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + STATE(2063), 1, sym_comment, - STATE(2043), 1, - aux_sym_shebang_repeat1, - ACTIONS(5136), 9, + STATE(7791), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4850), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -249248,7 +254831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5138), 48, + ACTIONS(4848), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -249297,14 +254880,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39782] = 5, - ACTIONS(247), 1, + [36944] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2031), 1, + ACTIONS(5236), 1, + anon_sym_QMARK2, + STATE(2064), 1, sym_comment, - STATE(2043), 1, - aux_sym_shebang_repeat1, - ACTIONS(5140), 9, + ACTIONS(1042), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -249314,7 +254897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5142), 48, + ACTIONS(1044), 49, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -249355,6 +254938,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -249363,15 +254947,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39853] = 5, - ACTIONS(247), 1, + [37016] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2032), 1, + STATE(2065), 1, sym_comment, - STATE(2043), 1, - aux_sym_shebang_repeat1, - ACTIONS(5144), 9, - sym__newline, + ACTIONS(1058), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -249380,7 +254961,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5146), 48, + ACTIONS(1060), 51, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -249391,36 +254974,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_QMARK2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -249429,278 +255013,636 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39924] = 5, - ACTIONS(247), 1, + [37086] = 20, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2033), 1, + ACTIONS(1345), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1347), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3842), 1, + anon_sym_DQUOTE, + ACTIONS(3848), 1, + sym_raw_string_begin, + ACTIONS(4895), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(5179), 1, + anon_sym_DASH_DASH, + STATE(2025), 1, + aux_sym_decl_def_repeat1, + STATE(2066), 1, sym_comment, - STATE(2087), 1, - aux_sym_shebang_repeat1, - ACTIONS(5148), 9, - sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5150), 48, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + STATE(2813), 1, + sym_long_flag, + STATE(4162), 1, + sym_val_string, + STATE(4187), 1, + sym_cmd_identifier, + STATE(6244), 1, + sym__command_name, + STATE(7312), 1, + sym__val_number_decimal, + ACTIONS(1343), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3844), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4434), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4889), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4893), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4891), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [37188] = 38, + ACTIONS(229), 1, + anon_sym_0b, + ACTIONS(233), 1, + sym_val_date, + ACTIONS(235), 1, + anon_sym_DQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(251), 1, + sym_raw_string_begin, + ACTIONS(401), 1, + anon_sym_DASH, + ACTIONS(3280), 1, + anon_sym_null, + ACTIONS(3356), 1, + anon_sym_LBRACK, + ACTIONS(3362), 1, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [39995] = 5, - ACTIONS(247), 1, + ACTIONS(3412), 1, + aux_sym_expr_unary_token1, + ACTIONS(3414), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3416), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3418), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3420), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4973), 1, + anon_sym_LPAREN, + ACTIONS(4975), 1, + anon_sym_DOLLAR, + ACTIONS(4981), 1, + anon_sym_DOT_DOT, + STATE(1765), 1, + sym__expr_unary_minus, + STATE(1827), 1, + sym__inter_single_quotes, + STATE(1841), 1, + sym__inter_double_quotes, + STATE(1883), 1, + sym__val_number, + STATE(2067), 1, + sym_comment, + STATE(3503), 1, + sym__val_number_decimal, + STATE(3542), 1, + sym_val_variable, + STATE(3543), 1, + sym_expr_parenthesized, + STATE(3562), 1, + sym_val_range, + STATE(3895), 1, + sym__expr_binary_expression, + STATE(5649), 1, + sym__expression, + ACTIONS(231), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(237), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3278), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4983), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1540), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(1739), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(227), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(1881), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [37326] = 38, + ACTIONS(229), 1, + anon_sym_0b, + ACTIONS(233), 1, + sym_val_date, + ACTIONS(235), 1, + anon_sym_DQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2034), 1, + ACTIONS(251), 1, + sym_raw_string_begin, + ACTIONS(401), 1, + anon_sym_DASH, + ACTIONS(3280), 1, + anon_sym_null, + ACTIONS(3356), 1, + anon_sym_LBRACK, + ACTIONS(3362), 1, + anon_sym_LBRACE, + ACTIONS(3412), 1, + aux_sym_expr_unary_token1, + ACTIONS(3414), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3416), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3418), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3420), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4973), 1, + anon_sym_LPAREN, + ACTIONS(4975), 1, + anon_sym_DOLLAR, + ACTIONS(4981), 1, + anon_sym_DOT_DOT, + STATE(1765), 1, + sym__expr_unary_minus, + STATE(1827), 1, + sym__inter_single_quotes, + STATE(1841), 1, + sym__inter_double_quotes, + STATE(1883), 1, + sym__val_number, + STATE(2068), 1, sym_comment, - STATE(2088), 1, - aux_sym_shebang_repeat1, - ACTIONS(5062), 9, - sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5064), 48, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + STATE(3503), 1, + sym__val_number_decimal, + STATE(3542), 1, + sym_val_variable, + STATE(3543), 1, + sym_expr_parenthesized, + STATE(3562), 1, + sym_val_range, + STATE(3895), 1, + sym__expr_binary_expression, + STATE(5737), 1, + sym__expression, + ACTIONS(231), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(237), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3278), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4983), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1540), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(1739), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(227), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(1881), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [37464] = 38, + ACTIONS(229), 1, + anon_sym_0b, + ACTIONS(233), 1, + sym_val_date, + ACTIONS(235), 1, + anon_sym_DQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(251), 1, + sym_raw_string_begin, + ACTIONS(401), 1, + anon_sym_DASH, + ACTIONS(3280), 1, + anon_sym_null, + ACTIONS(3356), 1, + anon_sym_LBRACK, + ACTIONS(3362), 1, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [40066] = 5, - ACTIONS(247), 1, + ACTIONS(3412), 1, + aux_sym_expr_unary_token1, + ACTIONS(3414), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3416), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3418), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3420), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4973), 1, + anon_sym_LPAREN, + ACTIONS(4975), 1, + anon_sym_DOLLAR, + ACTIONS(4981), 1, + anon_sym_DOT_DOT, + STATE(1765), 1, + sym__expr_unary_minus, + STATE(1827), 1, + sym__inter_single_quotes, + STATE(1841), 1, + sym__inter_double_quotes, + STATE(1883), 1, + sym__val_number, + STATE(2069), 1, + sym_comment, + STATE(3503), 1, + sym__val_number_decimal, + STATE(3542), 1, + sym_val_variable, + STATE(3543), 1, + sym_expr_parenthesized, + STATE(3562), 1, + sym_val_range, + STATE(3895), 1, + sym__expr_binary_expression, + STATE(5739), 1, + sym__expression, + ACTIONS(231), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(237), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3278), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4983), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1540), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(1739), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(227), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(1881), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [37602] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2035), 1, + ACTIONS(5219), 1, + anon_sym_DOT, + STATE(2070), 1, sym_comment, - STATE(2043), 1, - aux_sym_shebang_repeat1, - ACTIONS(5144), 9, + STATE(2229), 1, + aux_sym_cell_path_repeat1, + STATE(2537), 1, + sym_path, + STATE(2568), 1, + sym_cell_path, + ACTIONS(1021), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1023), 49, + sym_raw_string_begin, + ts_builtin_sym_end, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5146), 48, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [40137] = 5, - ACTIONS(247), 1, + anon_sym_LBRACK, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [37680] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2036), 1, + ACTIONS(5219), 1, + anon_sym_DOT, + STATE(2071), 1, sym_comment, - STATE(2109), 1, - aux_sym_shebang_repeat1, - ACTIONS(5073), 9, + STATE(2229), 1, + aux_sym_cell_path_repeat1, + STATE(2537), 1, + sym_path, + STATE(2614), 1, + sym_cell_path, + ACTIONS(1664), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1668), 49, + sym_raw_string_begin, + ts_builtin_sym_end, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5075), 48, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_LBRACK, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [37758] = 38, + ACTIONS(163), 1, + anon_sym_LPAREN, + ACTIONS(229), 1, + anon_sym_0b, + ACTIONS(233), 1, + sym_val_date, + ACTIONS(235), 1, + anon_sym_DQUOTE, + ACTIONS(239), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(251), 1, + sym_raw_string_begin, + ACTIONS(273), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + anon_sym_DASH, + ACTIONS(3280), 1, + anon_sym_null, + ACTIONS(3356), 1, + anon_sym_LBRACK, + ACTIONS(3362), 1, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [40208] = 5, - ACTIONS(247), 1, + ACTIONS(3364), 1, + aux_sym_expr_unary_token1, + ACTIONS(3366), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3368), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3370), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3372), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5185), 1, + anon_sym_DOT_DOT, + STATE(1765), 1, + sym__expr_unary_minus, + STATE(1827), 1, + sym__inter_single_quotes, + STATE(1841), 1, + sym__inter_double_quotes, + STATE(1883), 1, + sym__val_number, + STATE(2072), 1, + sym_comment, + STATE(3556), 1, + sym__val_number_decimal, + STATE(3562), 1, + sym_val_range, + STATE(3594), 1, + sym_expr_parenthesized, + STATE(3649), 1, + sym_val_variable, + STATE(3879), 1, + sym__expr_binary_expression, + STATE(7594), 1, + sym__expression, + ACTIONS(231), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(237), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3278), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5147), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1540), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(1739), 3, + sym_expr_unary, + sym_expr_binary, + sym__value, + ACTIONS(227), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(1881), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [37896] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2037), 1, + ACTIONS(5238), 1, + anon_sym_QMARK2, + STATE(2073), 1, sym_comment, - STATE(2089), 1, - aux_sym_shebang_repeat1, - ACTIONS(5062), 9, + ACTIONS(1048), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -249710,7 +255652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5064), 48, + ACTIONS(1050), 49, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -249751,6 +255693,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -249759,15 +255702,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40279] = 5, - ACTIONS(247), 1, + [37968] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2038), 1, + STATE(2074), 1, sym_comment, - STATE(2043), 1, - aux_sym_shebang_repeat1, - ACTIONS(5144), 9, - sym__newline, + ACTIONS(1058), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -249776,7 +255716,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5146), 48, + ACTIONS(1060), 51, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -249788,35 +255729,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_RBRACE, + anon_sym_QMARK2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -249825,15 +255768,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40350] = 5, - ACTIONS(247), 1, + [38038] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2039), 1, + ACTIONS(2273), 1, + anon_sym_LPAREN2, + ACTIONS(2275), 1, + aux_sym_unquoted_token4, + STATE(2075), 1, sym_comment, - STATE(2164), 1, - aux_sym_shebang_repeat1, - ACTIONS(5073), 9, - sym__newline, + ACTIONS(1090), 16, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -249842,47 +255786,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5075), 48, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -249891,24 +255794,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40421] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2040), 1, - sym_comment, - STATE(2090), 1, - aux_sym_shebang_repeat1, - ACTIONS(5062), 9, + ACTIONS(1092), 41, sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5064), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -249920,51 +255807,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [40492] = 5, - ACTIONS(247), 1, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [38112] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2041), 1, + STATE(2076), 1, sym_comment, - STATE(2043), 1, - aux_sym_shebang_repeat1, - ACTIONS(5144), 9, + ACTIONS(1628), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -249974,7 +255851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5146), 48, + ACTIONS(1640), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -249986,7 +255863,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_if, anon_sym_LBRACE, + anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -250023,12 +255902,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40563] = 4, - ACTIONS(247), 1, + [38182] = 6, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2042), 1, + ACTIONS(5240), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5242), 1, + aux_sym__immediate_decimal_token2, + STATE(2077), 1, + sym_comment, + ACTIONS(1528), 11, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + anon_sym_DOT_DOT2, + aux_sym__val_number_decimal_token1, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1530), 46, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [38256] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2078), 1, sym_comment, - ACTIONS(1046), 9, + ACTIONS(2418), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -250038,7 +255985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1048), 49, + ACTIONS(2420), 50, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -250050,7 +255997,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_if, anon_sym_LBRACE, + anon_sym_EQ_GT, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -250079,7 +256028,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -250088,15 +256036,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40632] = 5, - ACTIONS(247), 1, + [38326] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5152), 1, - sym__newline, - STATE(2043), 2, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + STATE(2079), 1, sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1313), 8, + STATE(7421), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5019), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -250105,7 +256054,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1315), 48, + ACTIONS(5017), 48, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -250116,36 +256067,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -250154,16 +256103,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40703] = 6, - ACTIONS(3), 1, + [38399] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2239), 1, + ACTIONS(4433), 1, anon_sym_LPAREN2, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - STATE(2044), 1, + STATE(2080), 1, sym_comment, - ACTIONS(2237), 16, + STATE(7421), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5019), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -250172,15 +256121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(2241), 40, + ACTIONS(5017), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -250221,15 +256162,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [40776] = 5, - ACTIONS(247), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [38472] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(2045), 1, + STATE(2081), 1, sym_comment, - ACTIONS(5155), 9, - sym__newline, + ACTIONS(1066), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -250238,7 +256184,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5157), 48, + ACTIONS(1068), 50, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -250249,36 +256197,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -250287,15 +256235,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40847] = 5, - ACTIONS(247), 1, + [38541] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2046), 1, + STATE(2082), 1, sym_comment, - STATE(2091), 1, - aux_sym_shebang_repeat1, - ACTIONS(5062), 9, - sym__newline, + ACTIONS(1070), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -250304,7 +256249,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5064), 48, + ACTIONS(1072), 50, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -250315,36 +256262,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -250353,15 +256300,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40918] = 5, - ACTIONS(247), 1, + [38610] = 6, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(2047), 1, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + STATE(2083), 1, sym_comment, - ACTIONS(5144), 9, - sym__newline, + STATE(7421), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5019), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -250370,7 +256318,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5146), 48, + ACTIONS(5017), 48, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -250381,36 +256331,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -250419,15 +256367,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40989] = 5, - ACTIONS(247), 1, + [38683] = 6, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2048), 1, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + STATE(2084), 1, sym_comment, - STATE(2092), 1, - aux_sym_shebang_repeat1, - ACTIONS(5062), 9, - sym__newline, + STATE(7421), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5019), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -250436,7 +256385,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5064), 48, + ACTIONS(5017), 48, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -250447,36 +256398,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -250485,15 +256434,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41060] = 5, - ACTIONS(247), 1, + [38756] = 6, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(2049), 1, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + STATE(2085), 1, sym_comment, - ACTIONS(5144), 9, - sym__newline, + STATE(7421), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5019), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -250502,7 +256452,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5146), 48, + ACTIONS(5017), 48, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -250513,36 +256465,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -250551,15 +256501,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41131] = 5, - ACTIONS(247), 1, + [38829] = 6, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2050), 1, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + STATE(2086), 1, sym_comment, - STATE(2093), 1, - aux_sym_shebang_repeat1, - ACTIONS(5062), 9, - sym__newline, + STATE(7421), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5019), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -250568,7 +256519,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5064), 48, + ACTIONS(5017), 48, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -250579,36 +256532,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -250617,14 +256568,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41202] = 5, - ACTIONS(247), 1, + [38902] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(2051), 1, + STATE(2087), 1, sym_comment, - ACTIONS(5144), 9, + STATE(2104), 1, + aux_sym_shebang_repeat1, + ACTIONS(5244), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -250634,7 +256585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5146), 48, + ACTIONS(5246), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -250683,83 +256634,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41273] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5159), 1, - anon_sym_DOT, - STATE(2052), 1, - sym_comment, - STATE(2254), 1, - aux_sym_cell_path_repeat1, - STATE(2478), 1, - sym_path, - STATE(2530), 1, - sym_cell_path, - ACTIONS(1005), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1007), 48, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [41350] = 5, - ACTIONS(247), 1, + [38973] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2053), 1, + STATE(2088), 1, sym_comment, - STATE(2097), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - ACTIONS(5062), 9, + ACTIONS(5248), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -250769,7 +256651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5064), 48, + ACTIONS(5250), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -250818,14 +256700,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41421] = 5, - ACTIONS(247), 1, + [39044] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(2054), 1, + STATE(2089), 1, sym_comment, - ACTIONS(5144), 9, + STATE(2163), 1, + aux_sym_shebang_repeat1, + ACTIONS(5252), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -250835,7 +256717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5146), 48, + ACTIONS(5254), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -250884,81 +256766,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41492] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2239), 1, - anon_sym_LPAREN2, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - STATE(2055), 1, - sym_comment, - ACTIONS(2245), 16, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(2247), 40, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [41565] = 5, - ACTIONS(247), 1, + [39115] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2056), 1, + STATE(2090), 1, sym_comment, - STATE(2098), 1, + STATE(2164), 1, aux_sym_shebang_repeat1, - ACTIONS(5062), 9, + ACTIONS(5175), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -250968,7 +256783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5064), 48, + ACTIONS(5177), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -251017,14 +256832,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41636] = 5, - ACTIONS(247), 1, + [39186] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(2057), 1, + STATE(2091), 1, sym_comment, - ACTIONS(5144), 9, + STATE(2104), 1, + aux_sym_shebang_repeat1, + ACTIONS(5248), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -251034,7 +256849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5146), 48, + ACTIONS(5250), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -251083,81 +256898,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41707] = 6, - ACTIONS(247), 1, + [39257] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - STATE(2058), 1, + STATE(2092), 1, sym_comment, - STATE(7682), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4749), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(4747), 48, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [41780] = 5, - ACTIONS(247), 1, + ACTIONS(1058), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(1060), 51, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym_wild_card, + anon_sym_QMARK2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [39326] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2059), 1, + STATE(2093), 1, sym_comment, - STATE(2099), 1, + STATE(2165), 1, aux_sym_shebang_repeat1, - ACTIONS(5062), 9, + ACTIONS(5175), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -251167,7 +256980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5064), 48, + ACTIONS(5177), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -251216,14 +257029,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41851] = 5, - ACTIONS(247), 1, + [39397] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(2060), 1, + STATE(2094), 1, sym_comment, - ACTIONS(5144), 9, + STATE(2104), 1, + aux_sym_shebang_repeat1, + ACTIONS(5248), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -251233,7 +257046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5146), 48, + ACTIONS(5250), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -251282,123 +257095,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41922] = 6, - ACTIONS(247), 1, + [39468] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - STATE(2061), 1, + STATE(2095), 1, sym_comment, - STATE(7682), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4753), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(4751), 48, - ts_builtin_sym_end, + ACTIONS(1062), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(1064), 51, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [41995] = 20, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1338), 1, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym_wild_card, + anon_sym_QMARK2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(1340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3015), 1, anon_sym_DQUOTE, - ACTIONS(5167), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5169), 1, - sym__newline, - ACTIONS(5171), 1, - anon_sym_RBRACK, - STATE(2062), 1, - sym_comment, - STATE(2303), 1, - aux_sym_shebang_repeat1, - STATE(2494), 1, - aux_sym_command_list_repeat1, - STATE(5413), 1, - sym__str_double_quotes, - STATE(6904), 1, - sym__command_name, - STATE(6913), 1, - sym__val_number_decimal, - STATE(7208), 1, - sym_cmd_identifier, - STATE(7209), 1, - sym_val_string, - ACTIONS(1336), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3017), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5161), 5, + [39537] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2096), 1, + sym_comment, + ACTIONS(1038), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(5165), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5163), 31, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(1040), 51, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -251430,14 +257206,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [42096] = 5, - ACTIONS(247), 1, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym_wild_card, + anon_sym_QMARK2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [39606] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2063), 1, + STATE(2097), 1, sym_comment, - STATE(2100), 1, + STATE(2169), 1, aux_sym_shebang_repeat1, - ACTIONS(5062), 9, + ACTIONS(5175), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -251447,7 +257242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5064), 48, + ACTIONS(5177), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -251496,14 +257291,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42167] = 5, - ACTIONS(247), 1, + [39677] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(2064), 1, + STATE(2098), 1, sym_comment, - ACTIONS(5144), 9, + STATE(2104), 1, + aux_sym_shebang_repeat1, + ACTIONS(5248), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -251513,7 +257308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5146), 48, + ACTIONS(5250), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -251562,14 +257357,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42238] = 5, - ACTIONS(247), 1, + [39748] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2065), 1, + STATE(2099), 1, sym_comment, - STATE(2177), 1, + ACTIONS(1054), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(1056), 51, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym_wild_card, + anon_sym_QMARK2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [39817] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2100), 1, + sym_comment, + STATE(2170), 1, aux_sym_shebang_repeat1, - ACTIONS(5069), 9, + ACTIONS(5175), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -251579,7 +257439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5071), 48, + ACTIONS(5177), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -251628,14 +257488,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42309] = 5, - ACTIONS(247), 1, + [39888] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2066), 1, - sym_comment, STATE(2101), 1, + sym_comment, + STATE(2104), 1, aux_sym_shebang_repeat1, - ACTIONS(5062), 9, + ACTIONS(5248), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -251645,7 +257505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5064), 48, + ACTIONS(5250), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -251694,14 +257554,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42380] = 5, - ACTIONS(247), 1, + [39959] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(2067), 1, + STATE(2102), 1, sym_comment, - ACTIONS(5144), 9, + STATE(2171), 1, + aux_sym_shebang_repeat1, + ACTIONS(5175), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -251711,7 +257571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5146), 48, + ACTIONS(5177), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -251760,14 +257620,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42451] = 5, - ACTIONS(247), 1, + [40030] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2028), 1, - aux_sym_shebang_repeat1, - STATE(2068), 1, + STATE(2103), 1, sym_comment, - ACTIONS(5069), 9, + STATE(2104), 1, + aux_sym_shebang_repeat1, + ACTIONS(5248), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -251777,7 +257637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5071), 48, + ACTIONS(5250), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -251826,15 +257686,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42522] = 5, - ACTIONS(247), 1, + [40101] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2069), 1, + ACTIONS(5256), 1, + sym__newline, + STATE(2104), 2, sym_comment, - STATE(2102), 1, aux_sym_shebang_repeat1, - ACTIONS(5062), 9, - sym__newline, + ACTIONS(1349), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -251843,7 +257703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5064), 48, + ACTIONS(1351), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -251892,14 +257752,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42593] = 5, - ACTIONS(247), 1, + [40172] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(2070), 1, + STATE(2105), 1, sym_comment, - ACTIONS(5144), 9, + STATE(2172), 1, + aux_sym_shebang_repeat1, + ACTIONS(5175), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -251909,7 +257769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5146), 48, + ACTIONS(5177), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -251958,14 +257818,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42664] = 5, - ACTIONS(247), 1, + [40243] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4614), 1, - aux_sym_unquoted_token2, - STATE(2071), 1, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(2106), 1, sym_comment, - ACTIONS(1560), 8, + ACTIONS(5248), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -251974,8 +257835,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1572), 49, - sym__newline, + ACTIONS(5250), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -251987,35 +257847,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -252024,14 +257884,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42735] = 5, - ACTIONS(247), 1, + [40314] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2072), 1, + STATE(2107), 1, sym_comment, - STATE(2103), 1, + STATE(2176), 1, aux_sym_shebang_repeat1, - ACTIONS(5062), 9, + ACTIONS(5175), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -252041,7 +257901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5064), 48, + ACTIONS(5177), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -252090,16 +257950,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42806] = 6, - ACTIONS(247), 1, + [40385] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - STATE(2073), 1, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(2108), 1, sym_comment, - STATE(7682), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4761), 8, + ACTIONS(5248), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -252108,9 +257967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4759), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5250), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -252121,34 +257978,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -252157,14 +258016,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42879] = 5, - ACTIONS(247), 1, + [40456] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2074), 1, + STATE(2109), 1, sym_comment, - STATE(2174), 1, + STATE(2177), 1, aux_sym_shebang_repeat1, - ACTIONS(5069), 9, + ACTIONS(5175), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -252174,7 +258033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5071), 48, + ACTIONS(5177), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -252223,93 +258082,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42950] = 20, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1338), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1340), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3229), 1, - aux_sym_record_entry_token1, - ACTIONS(3860), 1, - anon_sym_DQUOTE, - ACTIONS(4874), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5173), 1, - anon_sym_DASH_DASH, - STATE(1990), 1, - sym_val_string, - STATE(2002), 1, - sym__str_double_quotes, - STATE(2012), 1, - sym_cmd_identifier, - STATE(2075), 1, - sym_comment, - STATE(2375), 1, - aux_sym_decl_def_repeat1, - STATE(2797), 1, - sym_long_flag, - STATE(6446), 1, - sym__command_name, - STATE(7094), 1, - sym__val_number_decimal, - ACTIONS(1336), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3862), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4868), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(4872), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4870), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [43051] = 4, - ACTIONS(247), 1, + [40527] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2076), 1, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(2110), 1, sym_comment, - ACTIONS(1050), 9, + ACTIONS(5248), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -252319,7 +258099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1052), 49, + ACTIONS(5250), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -252360,7 +258140,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -252369,12 +258148,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43120] = 4, - ACTIONS(247), 1, + [40598] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2077), 1, + STATE(2111), 1, sym_comment, - ACTIONS(1054), 9, + STATE(2178), 1, + aux_sym_shebang_repeat1, + ACTIONS(5175), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -252384,7 +258165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1056), 49, + ACTIONS(5177), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -252425,7 +258206,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -252434,14 +258214,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43189] = 5, - ACTIONS(247), 1, + [40669] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2043), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(2078), 1, + STATE(2112), 1, sym_comment, - ACTIONS(5155), 9, + ACTIONS(5248), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -252451,7 +258231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5157), 48, + ACTIONS(5250), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -252500,12 +258280,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43260] = 4, - ACTIONS(247), 1, + [40740] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2079), 1, + STATE(2113), 1, sym_comment, - ACTIONS(1050), 8, + STATE(2179), 1, + aux_sym_shebang_repeat1, + ACTIONS(5175), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -252514,9 +258297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1052), 50, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5177), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -252527,36 +258308,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_LBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -252565,12 +258346,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43329] = 4, - ACTIONS(247), 1, + [40811] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2080), 1, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(2114), 1, sym_comment, - ACTIONS(1054), 8, + ACTIONS(5248), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -252579,9 +258363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1056), 50, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5250), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -252592,36 +258374,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_LBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -252630,227 +258412,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43398] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5175), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5177), 1, - aux_sym__immediate_decimal_token2, - STATE(2081), 1, - sym_comment, - ACTIONS(1540), 11, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT_DOT2, - aux_sym__val_number_decimal_token1, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - ACTIONS(1542), 45, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [43471] = 20, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1338), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1340), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3015), 1, - anon_sym_DQUOTE, - ACTIONS(5167), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5169), 1, - sym__newline, - ACTIONS(5179), 1, - anon_sym_RBRACK, - STATE(2082), 1, - sym_comment, - STATE(2283), 1, - aux_sym_shebang_repeat1, - STATE(2500), 1, - aux_sym_command_list_repeat1, - STATE(5413), 1, - sym__str_double_quotes, - STATE(6860), 1, - sym__command_name, - STATE(6913), 1, - sym__val_number_decimal, - STATE(7208), 1, - sym_cmd_identifier, - STATE(7209), 1, - sym_val_string, - ACTIONS(1336), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3017), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5161), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(5165), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5163), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [43572] = 4, - ACTIONS(3), 1, + [40882] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2083), 1, + STATE(2115), 1, sym_comment, - ACTIONS(2253), 17, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token4, - ACTIONS(2255), 41, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LPAREN2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [43641] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2043), 1, + STATE(2180), 1, aux_sym_shebang_repeat1, - STATE(2084), 1, - sym_comment, - ACTIONS(5155), 9, + ACTIONS(5175), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -252860,7 +258429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5157), 48, + ACTIONS(5177), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -252909,14 +258478,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43712] = 5, - ACTIONS(3), 1, + [40953] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4816), 1, - aux_sym_cmd_identifier_token37, - STATE(2085), 1, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(2116), 1, sym_comment, - ACTIONS(2253), 8, + ACTIONS(5248), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -252925,8 +258495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2255), 49, - sym__newline, + ACTIONS(5250), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -252938,35 +258507,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -252975,14 +258544,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43783] = 5, - ACTIONS(3), 1, + [41024] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4816), 1, - aux_sym_cmd_identifier_token37, - STATE(2086), 1, + STATE(2117), 1, sym_comment, - ACTIONS(2229), 8, + STATE(2181), 1, + aux_sym_shebang_repeat1, + ACTIONS(5175), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -252991,8 +258561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2233), 49, - sym__newline, + ACTIONS(5177), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -253004,35 +258573,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -253041,14 +258610,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43854] = 5, - ACTIONS(247), 1, + [41095] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2043), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(2087), 1, + STATE(2118), 1, sym_comment, - ACTIONS(5181), 9, + ACTIONS(5248), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -253058,7 +258627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5183), 48, + ACTIONS(5250), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -253107,14 +258676,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43925] = 5, - ACTIONS(247), 1, + [41166] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(2088), 1, + ACTIONS(2283), 1, + anon_sym_LPAREN2, + ACTIONS(2287), 1, + aux_sym_unquoted_token4, + STATE(2119), 1, sym_comment, - ACTIONS(5185), 9, + ACTIONS(2281), 17, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -253124,7 +258695,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5187), 48, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(2285), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -253136,7 +258715,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -253165,22 +258743,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [43996] = 5, - ACTIONS(247), 1, + [41239] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(2089), 1, + ACTIONS(2273), 1, + anon_sym_LPAREN2, + ACTIONS(2275), 1, + aux_sym_unquoted_token4, + STATE(2120), 1, sym_comment, - ACTIONS(5185), 9, + ACTIONS(1090), 17, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -253190,7 +258762,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5187), 48, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(1092), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -253202,7 +258782,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -253231,22 +258810,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [44067] = 5, - ACTIONS(247), 1, + [41312] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(2090), 1, + STATE(2121), 1, sym_comment, - ACTIONS(5185), 9, + STATE(2182), 1, + aux_sym_shebang_repeat1, + ACTIONS(5175), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -253256,7 +258827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5187), 48, + ACTIONS(5177), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -253305,14 +258876,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44138] = 5, - ACTIONS(247), 1, + [41383] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(2091), 1, + STATE(2122), 1, sym_comment, - ACTIONS(5185), 9, + STATE(2183), 1, + aux_sym_shebang_repeat1, + ACTIONS(5259), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -253322,7 +258893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5187), 48, + ACTIONS(5261), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -253371,14 +258942,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44209] = 5, - ACTIONS(247), 1, + [41454] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(2092), 1, + STATE(2123), 1, sym_comment, - ACTIONS(5185), 9, + STATE(2184), 1, + aux_sym_shebang_repeat1, + ACTIONS(5181), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -253388,7 +258959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5187), 48, + ACTIONS(5183), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -253437,14 +259008,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44280] = 5, - ACTIONS(247), 1, + [41525] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(2093), 1, + STATE(2124), 1, sym_comment, - ACTIONS(5185), 9, + STATE(2187), 1, + aux_sym_shebang_repeat1, + ACTIONS(5181), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -253454,7 +259025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5187), 48, + ACTIONS(5183), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -253503,14 +259074,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44351] = 5, - ACTIONS(247), 1, + [41596] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5189), 1, - aux_sym_cmd_identifier_token41, - STATE(2094), 1, + ACTIONS(2295), 1, + anon_sym_LPAREN2, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + STATE(2125), 1, sym_comment, - ACTIONS(2237), 8, + ACTIONS(2293), 17, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -253519,8 +259093,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2241), 49, - sym__newline, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(2297), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -253532,51 +259113,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [44422] = 5, - ACTIONS(247), 1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [41669] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5189), 1, - aux_sym_cmd_identifier_token41, - STATE(2095), 1, + ACTIONS(2295), 1, + anon_sym_LPAREN2, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + STATE(2126), 1, sym_comment, - ACTIONS(2245), 8, + ACTIONS(2303), 17, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -253585,8 +259160,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2247), 49, - sym__newline, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(2305), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -253598,51 +259180,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [44493] = 5, - ACTIONS(247), 1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [41742] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2096), 1, + STATE(2127), 1, sym_comment, - STATE(2182), 1, + STATE(2189), 1, aux_sym_shebang_repeat1, - ACTIONS(5069), 9, + ACTIONS(5181), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -253652,7 +259225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5071), 48, + ACTIONS(5183), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -253701,14 +259274,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44564] = 5, - ACTIONS(247), 1, + [41813] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(2097), 1, + STATE(2128), 1, sym_comment, - ACTIONS(5185), 9, + STATE(2192), 1, + aux_sym_shebang_repeat1, + ACTIONS(5181), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -253718,7 +259291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5187), 48, + ACTIONS(5183), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -253767,14 +259340,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44635] = 5, - ACTIONS(247), 1, + [41884] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(2098), 1, + STATE(2129), 1, sym_comment, - ACTIONS(5185), 9, + STATE(2196), 1, + aux_sym_shebang_repeat1, + ACTIONS(5181), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -253784,7 +259357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5187), 48, + ACTIONS(5183), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -253833,14 +259406,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44706] = 5, - ACTIONS(247), 1, + [41955] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(2099), 1, + STATE(2130), 1, sym_comment, - ACTIONS(5185), 9, + STATE(2198), 1, + aux_sym_shebang_repeat1, + ACTIONS(5181), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -253850,7 +259423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5187), 48, + ACTIONS(5183), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -253899,14 +259472,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44777] = 5, - ACTIONS(247), 1, + [42026] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(2100), 1, + STATE(2131), 1, sym_comment, - ACTIONS(5185), 9, + STATE(2200), 1, + aux_sym_shebang_repeat1, + ACTIONS(5181), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -253916,7 +259489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5187), 48, + ACTIONS(5183), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -253965,14 +259538,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44848] = 5, - ACTIONS(247), 1, + [42097] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(2101), 1, + STATE(2132), 1, sym_comment, - ACTIONS(5185), 9, + ACTIONS(1074), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -253982,7 +259553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5187), 48, + ACTIONS(1076), 49, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -254023,6 +259594,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -254031,14 +259603,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44919] = 5, - ACTIONS(247), 1, + [42166] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(2102), 1, + STATE(2133), 1, sym_comment, - ACTIONS(5185), 9, + STATE(2203), 1, + aux_sym_shebang_repeat1, + ACTIONS(5181), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -254048,7 +259620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5187), 48, + ACTIONS(5183), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -254097,14 +259669,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44990] = 5, - ACTIONS(247), 1, + [42237] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(2103), 1, + STATE(2134), 1, sym_comment, - ACTIONS(5185), 9, + STATE(2205), 1, + aux_sym_shebang_repeat1, + ACTIONS(5181), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -254114,7 +259686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5187), 48, + ACTIONS(5183), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -254163,14 +259735,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [45061] = 5, - ACTIONS(247), 1, + [42308] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2043), 1, + STATE(2087), 1, aux_sym_shebang_repeat1, - STATE(2104), 1, + STATE(2135), 1, sym_comment, - ACTIONS(5155), 9, + ACTIONS(5263), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -254180,7 +259752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5157), 48, + ACTIONS(5265), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -254229,210 +259801,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [45132] = 38, - ACTIONS(161), 1, - anon_sym_LPAREN, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(269), 1, - anon_sym_DOLLAR, - ACTIONS(397), 1, - anon_sym_DASH, - ACTIONS(3215), 1, - anon_sym_null, - ACTIONS(3229), 1, - aux_sym_record_entry_token1, - ACTIONS(3265), 1, - anon_sym_LBRACK, - ACTIONS(3271), 1, - anon_sym_LBRACE, - ACTIONS(3275), 1, - aux_sym_expr_unary_token1, - ACTIONS(3279), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3281), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3283), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3285), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5191), 1, - anon_sym_DOT_DOT, - STATE(1418), 1, - sym__str_double_quotes, - STATE(1646), 1, - sym__expr_unary_minus, - STATE(1647), 1, - sym__val_number, - STATE(1729), 1, - sym__inter_single_quotes, - STATE(1732), 1, - sym__inter_double_quotes, - STATE(2105), 1, - sym_comment, - STATE(3507), 1, - sym__val_number_decimal, - STATE(3520), 1, - sym_val_range, - STATE(3556), 1, - sym_expr_parenthesized, - STATE(3559), 1, - sym_val_variable, - STATE(3820), 1, - sym__expr_binary_expression, - STATE(7263), 1, - sym__expression, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3213), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5193), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1687), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1643), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [45269] = 38, - ACTIONS(161), 1, - anon_sym_LPAREN, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(269), 1, - anon_sym_DOLLAR, - ACTIONS(397), 1, - anon_sym_DASH, - ACTIONS(3215), 1, - anon_sym_null, - ACTIONS(3229), 1, - aux_sym_record_entry_token1, - ACTIONS(3265), 1, - anon_sym_LBRACK, - ACTIONS(3271), 1, - anon_sym_LBRACE, - ACTIONS(3275), 1, - aux_sym_expr_unary_token1, - ACTIONS(3279), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3281), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3283), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3285), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5191), 1, - anon_sym_DOT_DOT, - STATE(1418), 1, - sym__str_double_quotes, - STATE(1646), 1, - sym__expr_unary_minus, - STATE(1647), 1, - sym__val_number, - STATE(1729), 1, - sym__inter_single_quotes, - STATE(1732), 1, - sym__inter_double_quotes, - STATE(2106), 1, - sym_comment, - STATE(3507), 1, - sym__val_number_decimal, - STATE(3520), 1, - sym_val_range, - STATE(3556), 1, - sym_expr_parenthesized, - STATE(3559), 1, - sym_val_variable, - STATE(3820), 1, - sym__expr_binary_expression, - STATE(7267), 1, - sym__expression, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3213), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5193), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1687), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1643), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [45406] = 4, - ACTIONS(247), 1, + [42379] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2107), 1, + STATE(2136), 1, sym_comment, - ACTIONS(1046), 8, + ACTIONS(1066), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -254441,9 +259816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1048), 50, - ts_builtin_sym_end, - sym__newline, + ACTIONS(1068), 49, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -254454,35 +259827,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_LBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -254492,14 +259866,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [45475] = 5, - ACTIONS(247), 1, + [42448] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(2108), 1, + STATE(2137), 1, sym_comment, - ACTIONS(5195), 9, + ACTIONS(1070), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -254509,7 +259881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5197), 48, + ACTIONS(1072), 49, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -254550,6 +259922,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -254558,14 +259931,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [45546] = 5, - ACTIONS(247), 1, + [42517] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(2109), 1, + STATE(2138), 1, sym_comment, - ACTIONS(5155), 9, + STATE(2207), 1, + aux_sym_shebang_repeat1, + ACTIONS(5181), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -254575,7 +259948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5157), 48, + ACTIONS(5183), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -254624,13 +259997,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [45617] = 4, + [42588] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2110), 1, + STATE(2139), 1, sym_comment, - ACTIONS(2253), 18, - sym__newline, + ACTIONS(2289), 17, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -254648,7 +260020,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym_unquoted_token4, - ACTIONS(2255), 40, + ACTIONS(2291), 41, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -254659,44 +260033,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_LPAREN2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [45686] = 5, - ACTIONS(247), 1, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [42657] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2029), 1, + STATE(2088), 1, aux_sym_shebang_repeat1, - STATE(2111), 1, + STATE(2140), 1, sym_comment, - ACTIONS(5069), 9, + ACTIONS(5169), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -254706,7 +260079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5071), 48, + ACTIONS(5171), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -254755,14 +260128,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [45757] = 5, - ACTIONS(247), 1, + [42728] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2112), 1, + STATE(2141), 1, sym_comment, - STATE(2186), 1, + STATE(2209), 1, aux_sym_shebang_repeat1, - ACTIONS(5069), 9, + ACTIONS(5181), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -254772,7 +260145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5071), 48, + ACTIONS(5183), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -254821,14 +260194,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [45828] = 5, - ACTIONS(247), 1, + [42799] = 13, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2113), 1, + ACTIONS(1526), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2593), 1, + anon_sym_DOLLAR, + ACTIONS(5267), 1, + anon_sym_LPAREN2, + ACTIONS(5269), 1, + anon_sym_DOT, + ACTIONS(5273), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5275), 1, + aux_sym__immediate_decimal_token5, + STATE(2142), 1, sym_comment, - STATE(2120), 1, - aux_sym_shebang_repeat1, - ACTIONS(5199), 9, + STATE(2676), 1, + sym__immediate_decimal, + ACTIONS(1524), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5271), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2808), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1510), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [42886] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5041), 1, + aux_sym_cmd_identifier_token37, + STATE(2143), 1, + sym_comment, + ACTIONS(1628), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -254838,7 +260285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5201), 48, + ACTIONS(1640), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -254849,36 +260296,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + aux_sym_record_entry_token1, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -254887,14 +260334,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [45899] = 5, - ACTIONS(247), 1, + [42957] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(2114), 1, + STATE(2144), 1, sym_comment, - ACTIONS(5155), 9, + STATE(2211), 1, + aux_sym_shebang_repeat1, + ACTIONS(5181), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -254904,7 +260351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5157), 48, + ACTIONS(5183), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -254953,14 +260400,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [45970] = 5, - ACTIONS(247), 1, + [43028] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2043), 1, + STATE(2091), 1, aux_sym_shebang_repeat1, - STATE(2115), 1, + STATE(2145), 1, sym_comment, - ACTIONS(5155), 9, + ACTIONS(5169), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -254970,7 +260417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5157), 48, + ACTIONS(5171), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -255019,14 +260466,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46041] = 5, - ACTIONS(247), 1, + [43099] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2116), 1, + STATE(2146), 1, sym_comment, - STATE(2179), 1, + STATE(2213), 1, aux_sym_shebang_repeat1, - ACTIONS(5073), 9, + ACTIONS(5181), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -255036,7 +260483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5075), 48, + ACTIONS(5183), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -255085,15 +260532,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46112] = 5, - ACTIONS(247), 1, + [43170] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2117), 1, + STATE(2147), 1, sym_comment, - STATE(2172), 1, - aux_sym_shebang_repeat1, - ACTIONS(5073), 9, - sym__newline, + ACTIONS(4987), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -255102,7 +260546,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5075), 48, + ACTIONS(4985), 50, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -255113,36 +260559,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -255151,79 +260597,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46183] = 4, - ACTIONS(247), 1, + [43239] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2118), 1, - sym_comment, - ACTIONS(4884), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(4882), 52, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [46252] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2027), 1, + STATE(2094), 1, aux_sym_shebang_repeat1, - STATE(2119), 1, + STATE(2148), 1, sym_comment, - ACTIONS(5069), 9, + ACTIONS(5169), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -255233,7 +260614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5071), 48, + ACTIONS(5171), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -255282,14 +260663,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46323] = 5, - ACTIONS(247), 1, + [43310] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2043), 1, + STATE(2098), 1, aux_sym_shebang_repeat1, - STATE(2120), 1, + STATE(2149), 1, sym_comment, - ACTIONS(5203), 9, + ACTIONS(5169), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -255299,7 +260680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5205), 48, + ACTIONS(5171), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -255348,14 +260729,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46394] = 5, - ACTIONS(247), 1, + [43381] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2030), 1, + STATE(2101), 1, aux_sym_shebang_repeat1, - STATE(2121), 1, + STATE(2150), 1, sym_comment, - ACTIONS(5069), 9, + ACTIONS(5169), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -255365,7 +260746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5071), 48, + ACTIONS(5171), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -255414,83 +260795,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46465] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5159), 1, - anon_sym_DOT, - STATE(2122), 1, - sym_comment, - STATE(2254), 1, - aux_sym_cell_path_repeat1, - STATE(2478), 1, - sym_path, - STATE(2552), 1, - sym_cell_path, - ACTIONS(1641), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1645), 48, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [46542] = 5, - ACTIONS(3), 1, + [43452] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4816), 1, - aux_sym_cmd_identifier_token37, - STATE(2123), 1, + STATE(2151), 1, sym_comment, - ACTIONS(1560), 8, + ACTIONS(1074), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -255499,7 +260809,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1572), 49, + ACTIONS(1076), 50, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -255511,8 +260822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -255541,6 +260851,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -255549,14 +260860,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46613] = 5, - ACTIONS(247), 1, + [43521] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2045), 1, + STATE(2103), 1, aux_sym_shebang_repeat1, - STATE(2124), 1, + STATE(2152), 1, sym_comment, - ACTIONS(5073), 9, + ACTIONS(5169), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -255566,7 +260877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5075), 48, + ACTIONS(5171), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -255615,82 +260926,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46684] = 7, - ACTIONS(247), 1, + [43592] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5089), 1, - anon_sym_DOT, - STATE(2125), 1, - sym_comment, - STATE(2131), 1, - aux_sym_cell_path_repeat1, - STATE(2436), 1, - sym_path, - ACTIONS(1011), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1013), 49, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [46759] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2043), 1, + STATE(2106), 1, aux_sym_shebang_repeat1, - STATE(2126), 1, + STATE(2153), 1, sym_comment, - ACTIONS(5155), 9, + ACTIONS(5169), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -255700,7 +260943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5157), 48, + ACTIONS(5171), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -255749,15 +260992,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46830] = 5, - ACTIONS(247), 1, + [43663] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(2127), 1, + STATE(2154), 1, sym_comment, - ACTIONS(5136), 9, - sym__newline, + ACTIONS(4997), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -255766,7 +261006,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5138), 48, + ACTIONS(4995), 50, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -255777,36 +261019,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -255815,14 +261057,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46901] = 5, - ACTIONS(247), 1, + [43732] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2032), 1, + STATE(2108), 1, aux_sym_shebang_repeat1, - STATE(2128), 1, + STATE(2155), 1, sym_comment, - ACTIONS(5079), 9, + ACTIONS(5169), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -255832,7 +261074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5081), 48, + ACTIONS(5171), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -255881,14 +261123,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46972] = 5, - ACTIONS(247), 1, + [43803] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2078), 1, + STATE(2110), 1, aux_sym_shebang_repeat1, - STATE(2129), 1, + STATE(2156), 1, sym_comment, - ACTIONS(5073), 9, + ACTIONS(5169), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -255898,7 +261140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5075), 48, + ACTIONS(5171), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -255947,16 +261189,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47043] = 6, - ACTIONS(247), 1, + [43874] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - STATE(2130), 1, + STATE(2112), 1, + aux_sym_shebang_repeat1, + STATE(2157), 1, sym_comment, - STATE(7230), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4844), 8, + ACTIONS(5169), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -255965,9 +261206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4842), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5171), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -255978,34 +261217,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -256014,24 +261255,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47116] = 6, - ACTIONS(247), 1, + [43945] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5207), 1, - anon_sym_DOT, - STATE(2436), 1, - sym_path, - STATE(2131), 2, + ACTIONS(5234), 1, + aux_sym__immediate_decimal_token2, + STATE(2158), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1015), 6, + ACTIONS(1536), 10, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1017), 49, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1538), 47, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -256068,12 +261311,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - sym_wild_card, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -256081,14 +261321,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [47189] = 5, - ACTIONS(247), 1, + [44016] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2127), 1, + STATE(2114), 1, aux_sym_shebang_repeat1, - STATE(2132), 1, + STATE(2159), 1, sym_comment, - ACTIONS(5069), 9, + ACTIONS(5169), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -256098,7 +261338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5071), 48, + ACTIONS(5171), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -256147,16 +261387,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47260] = 6, - ACTIONS(247), 1, + [44087] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - STATE(2133), 1, + ACTIONS(4770), 1, + aux_sym_unquoted_token2, + STATE(2160), 1, sym_comment, - STATE(7230), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4844), 8, + ACTIONS(1628), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -256165,8 +261403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4842), 48, - ts_builtin_sym_end, + ACTIONS(1640), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256178,6 +261415,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -256214,16 +261453,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47333] = 6, - ACTIONS(247), 1, + [44158] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - STATE(2134), 1, + ACTIONS(5027), 1, + aux_sym_cmd_identifier_token37, + STATE(2161), 1, sym_comment, - STATE(7230), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4844), 8, + ACTIONS(2289), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -256232,8 +261469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4842), 48, - ts_builtin_sym_end, + ACTIONS(2291), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256245,6 +261481,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -256281,14 +261519,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47406] = 5, - ACTIONS(247), 1, + [44229] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2035), 1, + ACTIONS(5027), 1, + aux_sym_cmd_identifier_token37, + STATE(2162), 1, + sym_comment, + ACTIONS(2281), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2285), 49, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [44300] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(2135), 1, + STATE(2163), 1, sym_comment, - ACTIONS(5079), 9, + ACTIONS(5277), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -256298,7 +261602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5081), 48, + ACTIONS(5279), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -256347,16 +261651,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47477] = 6, - ACTIONS(247), 1, + [44371] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(2164), 1, + sym_comment, + ACTIONS(5281), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5283), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [44442] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(2165), 1, + sym_comment, + ACTIONS(5281), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5283), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [44513] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(4433), 1, anon_sym_LPAREN2, - STATE(2136), 1, + STATE(2166), 1, sym_comment, - STATE(7230), 1, + STATE(7791), 1, sym__expr_parenthesized_immediate, - ACTIONS(4844), 8, + ACTIONS(4850), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -256365,7 +261801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4842), 48, + ACTIONS(4848), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -256414,15 +261850,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47550] = 5, - ACTIONS(3), 1, + [44586] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4771), 1, - aux_sym_cmd_identifier_token37, - STATE(2137), 1, + ACTIONS(5285), 1, + aux_sym_cmd_identifier_token41, + STATE(2167), 1, sym_comment, - ACTIONS(1560), 9, - sym__newline, + ACTIONS(2293), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -256431,7 +261866,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1572), 48, + ACTIONS(2297), 49, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -256442,6 +261878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, @@ -256471,7 +261908,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - aux_sym_record_entry_token1, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -256480,15 +261916,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47621] = 5, - ACTIONS(247), 1, + [44657] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2038), 1, - aux_sym_shebang_repeat1, - STATE(2138), 1, + ACTIONS(5285), 1, + aux_sym_cmd_identifier_token41, + STATE(2168), 1, sym_comment, - ACTIONS(5079), 9, - sym__newline, + ACTIONS(2303), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -256497,7 +261932,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5081), 48, + ACTIONS(2305), 49, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -256509,35 +261945,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -256546,79 +261982,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47692] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2139), 1, - sym_comment, - ACTIONS(4894), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(4892), 52, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [47761] = 5, - ACTIONS(247), 1, + [44728] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2043), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(2140), 1, + STATE(2169), 1, sym_comment, - ACTIONS(5136), 9, + ACTIONS(5281), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -256628,7 +261999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5138), 48, + ACTIONS(5283), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -256677,14 +262048,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47832] = 5, - ACTIONS(247), 1, + [44799] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2043), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(2141), 1, + STATE(2170), 1, sym_comment, - ACTIONS(5155), 9, + ACTIONS(5281), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -256694,7 +262065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5157), 48, + ACTIONS(5283), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -256743,14 +262114,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47903] = 5, - ACTIONS(247), 1, + [44870] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2041), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(2142), 1, + STATE(2171), 1, sym_comment, - ACTIONS(5079), 9, + ACTIONS(5281), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -256760,7 +262131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5081), 48, + ACTIONS(5283), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -256809,16 +262180,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47974] = 6, - ACTIONS(3), 1, + [44941] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2231), 1, - anon_sym_LPAREN2, - ACTIONS(2235), 1, - aux_sym_unquoted_token4, - STATE(2143), 1, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(2172), 1, sym_comment, - ACTIONS(2229), 17, + ACTIONS(5281), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -256828,15 +262197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(2233), 39, + ACTIONS(5283), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -256848,6 +262209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -256876,25 +262238,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [48047] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2225), 1, - anon_sym_LPAREN2, - ACTIONS(2227), 1, - aux_sym_unquoted_token4, - STATE(2144), 1, - sym_comment, - ACTIONS(1070), 17, - sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -256903,56 +262246,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(1072), 39, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [48120] = 6, - ACTIONS(247), 1, + [45012] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, + ACTIONS(4433), 1, anon_sym_LPAREN2, - STATE(2145), 1, + STATE(2173), 1, sym_comment, - STATE(7230), 1, + STATE(7791), 1, sym__expr_parenthesized_immediate, - ACTIONS(4844), 8, + ACTIONS(4810), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -256961,7 +262264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4842), 48, + ACTIONS(4808), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -257010,16 +262313,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48193] = 6, - ACTIONS(3), 1, + [45085] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2231), 1, + ACTIONS(4433), 1, anon_sym_LPAREN2, - ACTIONS(2235), 1, - aux_sym_unquoted_token4, - STATE(2146), 1, + STATE(2174), 1, sym_comment, - ACTIONS(2229), 16, + STATE(7791), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4814), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -257028,15 +262331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(2233), 40, + ACTIONS(4812), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -257077,28 +262372,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [48266] = 8, - ACTIONS(247), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [45158] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5159), 1, - anon_sym_DOT, - STATE(2147), 1, + ACTIONS(5287), 1, + aux_sym__immediate_decimal_token2, + STATE(2175), 1, sym_comment, - STATE(2254), 1, - aux_sym_cell_path_repeat1, - STATE(2478), 1, - sym_path, - STATE(2587), 1, - sym_cell_path, - ACTIONS(1675), 6, + ACTIONS(1596), 10, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1677), 48, - ts_builtin_sym_end, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1598), 47, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -257135,10 +262436,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - sym_wild_card, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -257146,14 +262446,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [48343] = 5, - ACTIONS(247), 1, + [45229] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2126), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(2148), 1, + STATE(2176), 1, sym_comment, - ACTIONS(5073), 9, + ACTIONS(5281), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -257163,7 +262463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5075), 48, + ACTIONS(5283), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -257212,16 +262512,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48414] = 6, - ACTIONS(3), 1, + [45300] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2225), 1, - anon_sym_LPAREN2, - ACTIONS(2227), 1, - aux_sym_unquoted_token4, - STATE(2149), 1, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(2177), 1, sym_comment, - ACTIONS(1070), 16, + ACTIONS(5281), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -257230,6 +262529,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(5283), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -257238,9 +262578,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(1072), 40, - ts_builtin_sym_end, + [45371] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(2178), 1, + sym_comment, + ACTIONS(5281), 9, sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5283), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -257251,42 +262606,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [48487] = 5, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [45442] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2043), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(2150), 1, + STATE(2179), 1, sym_comment, - ACTIONS(5136), 9, + ACTIONS(5281), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -257296,7 +262661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5138), 48, + ACTIONS(5283), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -257345,14 +262710,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48558] = 5, - ACTIONS(247), 1, + [45513] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2047), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(2151), 1, + STATE(2180), 1, sym_comment, - ACTIONS(5079), 9, + ACTIONS(5281), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -257362,7 +262727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5081), 48, + ACTIONS(5283), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -257411,14 +262776,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48629] = 5, - ACTIONS(247), 1, + [45584] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2140), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(2152), 1, + STATE(2181), 1, sym_comment, - ACTIONS(5069), 9, + ACTIONS(5281), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -257428,7 +262793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5071), 48, + ACTIONS(5283), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -257477,16 +262842,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48700] = 6, - ACTIONS(247), 1, + [45655] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - STATE(2153), 1, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(2182), 1, sym_comment, - STATE(7230), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4844), 8, + ACTIONS(5281), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -257495,9 +262859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4842), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5283), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -257508,34 +262870,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -257544,16 +262908,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48773] = 6, - ACTIONS(247), 1, + [45726] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - STATE(2154), 1, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(2183), 1, sym_comment, - STATE(7230), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4844), 8, + ACTIONS(5289), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -257562,9 +262925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4842), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5291), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -257575,34 +262936,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -257611,14 +262974,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48846] = 5, - ACTIONS(247), 1, + [45797] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2043), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(2155), 1, + STATE(2184), 1, sym_comment, - ACTIONS(5155), 9, + ACTIONS(5293), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -257628,7 +262991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5157), 48, + ACTIONS(5295), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -257677,14 +263040,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48917] = 5, - ACTIONS(247), 1, + [45868] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2049), 1, - aux_sym_shebang_repeat1, - STATE(2156), 1, + STATE(2185), 1, sym_comment, - ACTIONS(5079), 9, + STATE(2224), 1, + aux_sym_shebang_repeat1, + ACTIONS(5297), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -257694,7 +263057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5081), 48, + ACTIONS(5299), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -257743,14 +263106,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48988] = 5, - ACTIONS(247), 1, + [45939] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2150), 1, - aux_sym_shebang_repeat1, - STATE(2157), 1, + STATE(2186), 1, sym_comment, - ACTIONS(5069), 9, + STATE(2225), 1, + aux_sym_shebang_repeat1, + ACTIONS(5163), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -257760,7 +263123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5071), 48, + ACTIONS(5165), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -257809,293 +263172,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [49059] = 20, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1338), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1340), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3231), 1, - aux_sym_record_entry_token1, - ACTIONS(3860), 1, - anon_sym_DQUOTE, - ACTIONS(4874), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5173), 1, - anon_sym_DASH_DASH, - STATE(1990), 1, - sym_val_string, - STATE(2002), 1, - sym__str_double_quotes, - STATE(2012), 1, - sym_cmd_identifier, - STATE(2158), 1, - sym_comment, - STATE(2375), 1, - aux_sym_decl_def_repeat1, - STATE(2797), 1, - sym_long_flag, - STATE(6446), 1, - sym__command_name, - STATE(7094), 1, - sym__val_number_decimal, - ACTIONS(1336), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3862), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4868), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(4872), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4870), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [49160] = 38, - ACTIONS(161), 1, - anon_sym_LPAREN, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(269), 1, - anon_sym_DOLLAR, - ACTIONS(397), 1, - anon_sym_DASH, - ACTIONS(3215), 1, - anon_sym_null, - ACTIONS(3231), 1, - aux_sym_record_entry_token1, - ACTIONS(3265), 1, - anon_sym_LBRACK, - ACTIONS(3271), 1, - anon_sym_LBRACE, - ACTIONS(3275), 1, - aux_sym_expr_unary_token1, - ACTIONS(3279), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3281), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3283), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3285), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5191), 1, - anon_sym_DOT_DOT, - STATE(1418), 1, - sym__str_double_quotes, - STATE(1646), 1, - sym__expr_unary_minus, - STATE(1647), 1, - sym__val_number, - STATE(1729), 1, - sym__inter_single_quotes, - STATE(1732), 1, - sym__inter_double_quotes, - STATE(2159), 1, - sym_comment, - STATE(3507), 1, - sym__val_number_decimal, - STATE(3520), 1, - sym_val_range, - STATE(3556), 1, - sym_expr_parenthesized, - STATE(3559), 1, - sym_val_variable, - STATE(3820), 1, - sym__expr_binary_expression, - STATE(7263), 1, - sym__expression, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3213), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5193), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1687), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1643), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [49297] = 38, - ACTIONS(161), 1, - anon_sym_LPAREN, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(269), 1, - anon_sym_DOLLAR, - ACTIONS(397), 1, - anon_sym_DASH, - ACTIONS(3215), 1, - anon_sym_null, - ACTIONS(3231), 1, - aux_sym_record_entry_token1, - ACTIONS(3265), 1, - anon_sym_LBRACK, - ACTIONS(3271), 1, - anon_sym_LBRACE, - ACTIONS(3275), 1, - aux_sym_expr_unary_token1, - ACTIONS(3279), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3281), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3283), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3285), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5191), 1, - anon_sym_DOT_DOT, - STATE(1418), 1, - sym__str_double_quotes, - STATE(1646), 1, - sym__expr_unary_minus, - STATE(1647), 1, - sym__val_number, - STATE(1729), 1, - sym__inter_single_quotes, - STATE(1732), 1, - sym__inter_double_quotes, - STATE(2160), 1, - sym_comment, - STATE(3507), 1, - sym__val_number_decimal, - STATE(3520), 1, - sym_val_range, - STATE(3556), 1, - sym_expr_parenthesized, - STATE(3559), 1, - sym_val_variable, - STATE(3820), 1, - sym__expr_binary_expression, - STATE(7267), 1, - sym__expression, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3213), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5193), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1687), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1643), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [49434] = 5, - ACTIONS(247), 1, + [46010] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2043), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(2161), 1, + STATE(2187), 1, sym_comment, - ACTIONS(5136), 9, + ACTIONS(5293), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -258105,7 +263189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5138), 48, + ACTIONS(5295), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -258154,16 +263238,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [49505] = 6, - ACTIONS(3), 1, + [46081] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2239), 1, - anon_sym_LPAREN2, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - STATE(2162), 1, + STATE(2188), 1, sym_comment, - ACTIONS(2237), 17, + STATE(2226), 1, + aux_sym_shebang_repeat1, + ACTIONS(5163), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -258173,6 +263255,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(5165), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -258181,7 +263304,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(2241), 39, + [46152] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(2189), 1, + sym_comment, + ACTIONS(5293), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5295), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -258193,6 +263333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -258221,14 +263362,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [49578] = 5, - ACTIONS(247), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [46223] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2104), 1, + STATE(2116), 1, aux_sym_shebang_repeat1, - STATE(2163), 1, + STATE(2190), 1, sym_comment, - ACTIONS(5073), 9, + ACTIONS(5169), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -258238,7 +263387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5075), 48, + ACTIONS(5171), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -258287,14 +263436,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [49649] = 5, - ACTIONS(247), 1, + [46294] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(2164), 1, + STATE(2191), 1, sym_comment, - ACTIONS(5155), 9, + STATE(2227), 1, + aux_sym_shebang_repeat1, + ACTIONS(5163), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -258304,7 +263453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5157), 48, + ACTIONS(5165), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -258353,14 +263502,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [49720] = 5, - ACTIONS(247), 1, + [46365] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2043), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(2165), 1, + STATE(2192), 1, sym_comment, - ACTIONS(5136), 9, + ACTIONS(5293), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -258370,7 +263519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5138), 48, + ACTIONS(5295), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -258419,14 +263568,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [49791] = 5, - ACTIONS(247), 1, + [46436] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2051), 1, - aux_sym_shebang_repeat1, - STATE(2166), 1, + ACTIONS(5027), 1, + aux_sym_cmd_identifier_token37, + STATE(2193), 1, + sym_comment, + ACTIONS(1628), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1640), 49, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [46507] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2194), 1, sym_comment, - ACTIONS(5079), 9, + STATE(2228), 1, + aux_sym_shebang_repeat1, + ACTIONS(5163), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -258436,7 +263651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5081), 48, + ACTIONS(5165), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -258485,16 +263700,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [49862] = 6, + [46578] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2239), 1, - anon_sym_LPAREN2, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - STATE(2167), 1, + STATE(2195), 1, sym_comment, - ACTIONS(2245), 17, + ACTIONS(2289), 18, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -258512,7 +263723,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(2247), 39, + aux_sym_unquoted_token4, + ACTIONS(2291), 40, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -258524,6 +263736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_LPAREN2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -258552,14 +263765,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [49935] = 5, - ACTIONS(247), 1, + [46647] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2161), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(2168), 1, + STATE(2196), 1, sym_comment, - ACTIONS(5069), 9, + ACTIONS(5293), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -258569,7 +263782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5071), 48, + ACTIONS(5295), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -258618,14 +263831,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50006] = 5, - ACTIONS(247), 1, + [46718] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2114), 1, - aux_sym_shebang_repeat1, - STATE(2169), 1, + STATE(2197), 1, sym_comment, - ACTIONS(5073), 9, + STATE(2230), 1, + aux_sym_shebang_repeat1, + ACTIONS(5163), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -258635,7 +263848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5075), 48, + ACTIONS(5165), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -258684,14 +263897,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50077] = 5, - ACTIONS(247), 1, + [46789] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2054), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(2170), 1, + STATE(2198), 1, sym_comment, - ACTIONS(5079), 9, + ACTIONS(5293), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -258701,7 +263914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5081), 48, + ACTIONS(5295), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -258750,14 +263963,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50148] = 5, - ACTIONS(247), 1, + [46860] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2057), 1, - aux_sym_shebang_repeat1, - STATE(2171), 1, + STATE(2199), 1, sym_comment, - ACTIONS(5079), 9, + STATE(2233), 1, + aux_sym_shebang_repeat1, + ACTIONS(5163), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -258767,7 +263980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5081), 48, + ACTIONS(5165), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -258816,14 +264029,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50219] = 5, - ACTIONS(247), 1, + [46931] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2043), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(2172), 1, + STATE(2200), 1, sym_comment, - ACTIONS(5155), 9, + ACTIONS(5293), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -258833,7 +264046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5157), 48, + ACTIONS(5295), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -258882,14 +264095,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50290] = 5, - ACTIONS(247), 1, + [47002] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2060), 1, + STATE(2118), 1, aux_sym_shebang_repeat1, - STATE(2173), 1, + STATE(2201), 1, sym_comment, - ACTIONS(5079), 9, + ACTIONS(5169), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -258899,7 +264112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5081), 48, + ACTIONS(5171), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -258948,14 +264161,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50361] = 5, - ACTIONS(247), 1, + [47073] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(2174), 1, + STATE(2202), 1, sym_comment, - ACTIONS(5136), 9, + STATE(2234), 1, + aux_sym_shebang_repeat1, + ACTIONS(5163), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -258965,7 +264178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5138), 48, + ACTIONS(5165), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -259014,14 +264227,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50432] = 5, - ACTIONS(247), 1, + [47144] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2165), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(2175), 1, + STATE(2203), 1, + sym_comment, + ACTIONS(5293), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5295), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [47215] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2204), 1, sym_comment, - ACTIONS(5069), 9, + STATE(2235), 1, + aux_sym_shebang_repeat1, + ACTIONS(5163), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -259031,7 +264310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5071), 48, + ACTIONS(5165), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -259080,14 +264359,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50503] = 5, - ACTIONS(247), 1, + [47286] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2064), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(2176), 1, + STATE(2205), 1, sym_comment, - ACTIONS(5079), 9, + ACTIONS(5293), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -259097,7 +264376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5081), 48, + ACTIONS(5295), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -259146,14 +264425,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50574] = 5, - ACTIONS(247), 1, + [47357] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(2177), 1, + STATE(2206), 1, sym_comment, - ACTIONS(5136), 9, + STATE(2236), 1, + aux_sym_shebang_repeat1, + ACTIONS(5163), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -259163,7 +264442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5138), 48, + ACTIONS(5165), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -259212,14 +264491,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50645] = 5, - ACTIONS(247), 1, + [47428] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2067), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(2178), 1, + STATE(2207), 1, sym_comment, - ACTIONS(5079), 9, + ACTIONS(5293), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -259229,7 +264508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5081), 48, + ACTIONS(5295), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -259278,14 +264557,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50716] = 5, - ACTIONS(247), 1, + [47499] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(2179), 1, + STATE(2208), 1, sym_comment, - ACTIONS(5155), 9, + STATE(2237), 1, + aux_sym_shebang_repeat1, + ACTIONS(5163), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -259295,7 +264574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5157), 48, + ACTIONS(5165), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -259344,14 +264623,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50787] = 5, - ACTIONS(247), 1, + [47570] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2070), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(2180), 1, + STATE(2209), 1, sym_comment, - ACTIONS(5079), 9, + ACTIONS(5293), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -259361,7 +264640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5081), 48, + ACTIONS(5295), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -259410,81 +264689,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50858] = 6, - ACTIONS(247), 1, + [47641] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5210), 1, - anon_sym_DOT, - ACTIONS(5212), 1, - aux_sym__immediate_decimal_token2, - STATE(2181), 1, + STATE(2210), 1, sym_comment, - ACTIONS(1518), 10, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - ACTIONS(1520), 46, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [50931] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2043), 1, + STATE(2238), 1, aux_sym_shebang_repeat1, - STATE(2182), 1, - sym_comment, - ACTIONS(5136), 9, + ACTIONS(5163), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -259494,7 +264706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5138), 48, + ACTIONS(5165), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -259543,14 +264755,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [51002] = 5, - ACTIONS(247), 1, + [47712] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2141), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(2183), 1, + STATE(2211), 1, sym_comment, - ACTIONS(5073), 9, + ACTIONS(5293), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -259560,7 +264772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5075), 48, + ACTIONS(5295), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -259609,14 +264821,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [51073] = 5, - ACTIONS(247), 1, + [47783] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2108), 1, - aux_sym_shebang_repeat1, - STATE(2184), 1, + STATE(2212), 1, sym_comment, - ACTIONS(5214), 9, + STATE(2240), 1, + aux_sym_shebang_repeat1, + ACTIONS(5163), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -259626,7 +264838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5216), 48, + ACTIONS(5165), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -259675,14 +264887,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [51144] = 5, - ACTIONS(247), 1, + [47854] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2115), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(2185), 1, + STATE(2213), 1, sym_comment, - ACTIONS(5073), 9, + ACTIONS(5293), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -259692,7 +264904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5075), 48, + ACTIONS(5295), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -259741,14 +264953,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [51215] = 5, - ACTIONS(247), 1, + [47925] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(2186), 1, + STATE(2214), 1, sym_comment, - ACTIONS(5136), 9, + STATE(2241), 1, + aux_sym_shebang_repeat1, + ACTIONS(5163), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -259758,7 +264970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5138), 48, + ACTIONS(5165), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -259807,16 +265019,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [51286] = 6, - ACTIONS(247), 1, + [47996] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, + ACTIONS(4433), 1, anon_sym_LPAREN2, - STATE(2187), 1, + STATE(2215), 1, sym_comment, - STATE(7230), 1, + STATE(7421), 1, sym__expr_parenthesized_immediate, - ACTIONS(4844), 8, + ACTIONS(5019), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -259825,7 +265037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4842), 48, + ACTIONS(5017), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -259874,82 +265086,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [51359] = 5, - ACTIONS(247), 1, + [48069] = 6, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2084), 1, - aux_sym_shebang_repeat1, - STATE(2188), 1, - sym_comment, - ACTIONS(5073), 9, - sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5075), 48, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [51430] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3978), 1, + ACTIONS(4433), 1, anon_sym_LPAREN2, - STATE(2189), 1, + STATE(2216), 1, sym_comment, - STATE(7682), 1, + STATE(7421), 1, sym__expr_parenthesized_immediate, - ACTIONS(4757), 8, + ACTIONS(5019), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -259958,7 +265104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4755), 48, + ACTIONS(5017), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -260007,16 +265153,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [51503] = 6, - ACTIONS(247), 1, + [48142] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, + ACTIONS(4433), 1, anon_sym_LPAREN2, - STATE(2190), 1, + STATE(2217), 1, sym_comment, - STATE(7230), 1, + STATE(7421), 1, sym__expr_parenthesized_immediate, - ACTIONS(4844), 8, + ACTIONS(5019), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -260025,7 +265171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4842), 48, + ACTIONS(5017), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -260074,16 +265220,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [51576] = 6, - ACTIONS(247), 1, + [48215] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3978), 1, + ACTIONS(2283), 1, anon_sym_LPAREN2, - STATE(2191), 1, + ACTIONS(2287), 1, + aux_sym_unquoted_token4, + STATE(2218), 1, sym_comment, - STATE(7230), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4844), 8, + ACTIONS(2281), 16, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -260092,7 +265238,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4842), 48, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(2285), 40, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -260133,24 +265287,148 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [51649] = 6, - ACTIONS(247), 1, + [48288] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, + ACTIONS(5301), 1, + anon_sym_QMARK2, + STATE(2219), 1, + sym_comment, + ACTIONS(1042), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(1044), 50, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [48359] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5303), 1, + anon_sym_QMARK2, + STATE(2220), 1, + sym_comment, + ACTIONS(1048), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(1050), 50, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [48430] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2273), 1, anon_sym_LPAREN2, - STATE(2192), 1, + ACTIONS(2275), 1, + aux_sym_unquoted_token4, + STATE(2221), 1, sym_comment, - STATE(7230), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4844), 8, + ACTIONS(1090), 16, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -260159,7 +265437,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4842), 48, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(1092), 40, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -260200,24 +265486,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [51722] = 6, - ACTIONS(247), 1, + [48503] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, + ACTIONS(4433), 1, anon_sym_LPAREN2, - STATE(2193), 1, + STATE(2222), 1, sym_comment, - STATE(7230), 1, + STATE(7421), 1, sym__expr_parenthesized_immediate, - ACTIONS(4844), 8, + ACTIONS(5019), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -260226,7 +265504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4842), 48, + ACTIONS(5017), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -260275,16 +265553,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [51795] = 6, - ACTIONS(247), 1, + [48576] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, + ACTIONS(4433), 1, anon_sym_LPAREN2, - STATE(2194), 1, + STATE(2223), 1, sym_comment, - STATE(7230), 1, + STATE(7421), 1, sym__expr_parenthesized_immediate, - ACTIONS(4844), 8, + ACTIONS(5019), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -260293,7 +265571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4842), 48, + ACTIONS(5017), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -260342,14 +265620,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [51868] = 5, - ACTIONS(247), 1, + [48649] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2155), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(2195), 1, + STATE(2224), 1, sym_comment, - ACTIONS(5073), 9, + ACTIONS(5305), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -260359,7 +265637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5075), 48, + ACTIONS(5307), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -260408,14 +265686,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [51939] = 5, - ACTIONS(247), 1, + [48720] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2031), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(2196), 1, + STATE(2225), 1, sym_comment, - ACTIONS(5218), 9, + ACTIONS(5309), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -260425,7 +265703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5220), 48, + ACTIONS(5311), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -260474,28 +265752,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [52010] = 9, - ACTIONS(247), 1, + [48791] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2043), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(2197), 1, + STATE(2226), 1, sym_comment, - ACTIONS(5222), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5226), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5228), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5224), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5181), 9, + ACTIONS(5309), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -260505,7 +265769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5183), 37, + ACTIONS(5311), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -260517,6 +265781,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -260543,42 +265818,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [52088] = 12, - ACTIONS(247), 1, + [48862] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5230), 1, - sym__newline, - STATE(2198), 1, - sym_comment, - STATE(2257), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - ACTIONS(5233), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5237), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5239), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5235), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5241), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5243), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5148), 8, + STATE(2227), 1, + sym_comment, + ACTIONS(5309), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -260587,7 +265835,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5150), 27, + ACTIONS(5311), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -260599,6 +265847,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -260607,6 +265866,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -260615,12 +265884,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [52172] = 4, - ACTIONS(247), 1, + [48933] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2199), 1, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(2228), 1, sym_comment, - ACTIONS(2309), 9, + ACTIONS(5309), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -260630,7 +265901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2311), 48, + ACTIONS(5311), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -260679,183 +265950,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [52240] = 18, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5245), 1, - sym__newline, - ACTIONS(5249), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5251), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5253), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5255), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(5257), 1, - aux_sym_expr_binary_parenthesized_token17, - STATE(2200), 1, - sym_comment, - STATE(2362), 1, - aux_sym_shebang_repeat1, - ACTIONS(5233), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5237), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5239), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5247), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5235), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5241), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5243), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5199), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5201), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token18, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [52336] = 7, - ACTIONS(247), 1, + [49004] = 7, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2201), 1, + ACTIONS(5219), 1, + anon_sym_DOT, + STATE(2229), 1, sym_comment, - ACTIONS(5259), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5263), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(5261), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5054), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5052), 41, + STATE(2239), 1, + aux_sym_cell_path_repeat1, + STATE(2537), 1, + sym_path, + ACTIONS(1027), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1029), 49, + sym_raw_string_begin, + ts_builtin_sym_end, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [52410] = 10, - ACTIONS(247), 1, + anon_sym_LBRACK, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [49079] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2202), 1, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(2230), 1, sym_comment, - ACTIONS(5259), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5263), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(5265), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(5261), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5267), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(5269), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - ACTIONS(5054), 8, + ACTIONS(5309), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -260864,8 +266035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5052), 29, - sym__newline, + ACTIONS(5311), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -260877,79 +266047,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [52490] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5271), 1, - sym__newline, - STATE(2203), 1, - sym_comment, - STATE(2295), 1, - aux_sym_shebang_repeat1, - ACTIONS(5233), 2, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5237), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5239), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5235), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5241), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5243), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5214), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5216), 27, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -260958,82 +266066,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [52574] = 16, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5276), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5278), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5280), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5282), 1, - aux_sym_expr_binary_parenthesized_token16, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(2204), 1, - sym_comment, - ACTIONS(5222), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5226), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5228), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5274), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5224), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5284), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5286), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5140), 9, - sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5142), 21, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -261042,14 +266084,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [52666] = 5, + [49150] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4946), 1, - aux_sym_cmd_identifier_token37, - STATE(2205), 1, + ACTIONS(2295), 1, + anon_sym_LPAREN2, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + STATE(2231), 1, sym_comment, - ACTIONS(2229), 8, + ACTIONS(2293), 16, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -261058,7 +266102,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2233), 48, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(2297), 40, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -261099,57 +266151,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [52736] = 15, - ACTIONS(247), 1, + [49223] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5249), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5251), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5271), 1, - sym__newline, - STATE(2206), 1, + ACTIONS(2295), 1, + anon_sym_LPAREN2, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + STATE(2232), 1, sym_comment, - STATE(2380), 1, - aux_sym_shebang_repeat1, - ACTIONS(5233), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5237), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5239), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5247), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5235), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5241), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5243), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5214), 8, + ACTIONS(2303), 16, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -261158,22 +266169,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5216), 23, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -261182,23 +266177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [52826] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5288), 1, - aux_sym_cmd_identifier_token41, - STATE(2207), 1, - sym_comment, - ACTIONS(2237), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2241), 48, + ACTIONS(2305), 40, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -261239,53 +266218,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [52896] = 13, - ACTIONS(247), 1, + [49296] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5292), 1, - aux_sym_expr_binary_token13, - ACTIONS(5294), 1, - aux_sym_expr_binary_token14, - STATE(2208), 1, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(2233), 1, sym_comment, - ACTIONS(5259), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5263), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(5265), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(5290), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(5261), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5267), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(5269), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - ACTIONS(5054), 8, + ACTIONS(5309), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -261294,8 +266235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5052), 25, - sym__newline, + ACTIONS(5311), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -261307,11 +266247,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -261320,17 +266284,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [52982] = 6, - ACTIONS(247), 1, + [49367] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2043), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(2209), 1, + STATE(2234), 1, sym_comment, - ACTIONS(5222), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5203), 9, + ACTIONS(5309), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -261340,7 +266301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5205), 45, + ACTIONS(5311), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -261352,6 +266313,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, @@ -261386,35 +266350,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53054] = 10, - ACTIONS(247), 1, + [49438] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2043), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(2210), 1, + STATE(2235), 1, sym_comment, - ACTIONS(5222), 2, + ACTIONS(5309), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5311), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5226), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5228), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5224), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5286), 6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5195), 9, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [49509] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(2236), 1, + sym_comment, + ACTIONS(5309), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -261424,7 +266433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5197), 31, + ACTIONS(5311), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -261436,6 +266445,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -261448,6 +266468,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -261456,12 +266482,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53134] = 4, - ACTIONS(247), 1, + [49580] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2211), 1, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(2237), 1, sym_comment, - ACTIONS(5046), 9, + ACTIONS(5309), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -261471,7 +266499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5044), 48, + ACTIONS(5311), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -261520,25 +266548,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53202] = 8, - ACTIONS(247), 1, + [49651] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2043), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(2212), 1, + STATE(2238), 1, sym_comment, - ACTIONS(5222), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5226), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5224), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5140), 9, + ACTIONS(5309), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -261548,7 +266565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5142), 39, + ACTIONS(5311), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -261560,6 +266577,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, @@ -261588,43 +266614,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53278] = 12, - ACTIONS(247), 1, + [49722] = 6, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2043), 1, + ACTIONS(5313), 1, + anon_sym_DOT, + STATE(2537), 1, + sym_path, + STATE(2239), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(1031), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1033), 49, + sym_raw_string_begin, + ts_builtin_sym_end, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [49795] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(2213), 1, + STATE(2240), 1, sym_comment, - ACTIONS(5222), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5226), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5228), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5274), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5224), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5284), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5286), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5140), 9, + ACTIONS(5309), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -261634,7 +266698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5142), 25, + ACTIONS(5311), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -261646,12 +266710,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -261660,17 +266747,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53362] = 6, - ACTIONS(247), 1, + [49866] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2043), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(2214), 1, + STATE(2241), 1, sym_comment, - ACTIONS(5222), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5195), 9, + ACTIONS(5309), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -261680,7 +266764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5197), 45, + ACTIONS(5311), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -261692,6 +266776,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, @@ -261726,41 +266813,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53434] = 11, - ACTIONS(247), 1, + [49937] = 6, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2215), 1, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + STATE(2242), 1, sym_comment, - ACTIONS(5259), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5263), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(5265), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(5290), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(5261), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5267), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(5269), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - ACTIONS(5054), 8, + STATE(7421), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5019), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -261769,7 +266831,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5052), 27, + ACTIONS(5017), 48, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -261781,14 +266844,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, aux_sym_expr_binary_token13, aux_sym_expr_binary_token14, aux_sym_expr_binary_token15, aux_sym_expr_binary_token16, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -261797,51 +266880,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53516] = 16, - ACTIONS(247), 1, + [50010] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5249), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5251), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5253), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5296), 1, - sym__newline, - STATE(2216), 1, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + STATE(2243), 1, sym_comment, - STATE(2336), 1, - aux_sym_shebang_repeat1, - ACTIONS(5233), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5237), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5239), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5247), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5235), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5241), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5243), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5199), 8, + STATE(7421), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5019), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -261850,7 +266898,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5201), 22, + ACTIONS(5017), 48, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -261861,10 +266911,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -261873,14 +266947,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53608] = 5, - ACTIONS(247), 1, + [50083] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5288), 1, - aux_sym_cmd_identifier_token41, - STATE(2217), 1, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + STATE(2244), 1, sym_comment, - ACTIONS(2245), 8, + STATE(7791), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4846), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -261889,7 +266965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2247), 48, + ACTIONS(4844), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -261938,19 +267014,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53678] = 7, - ACTIONS(247), 1, + [50156] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5296), 1, + ACTIONS(5316), 1, sym__newline, - STATE(2209), 1, - aux_sym_shebang_repeat1, - STATE(2218), 1, + STATE(2245), 1, sym_comment, - ACTIONS(5233), 2, + STATE(2401), 1, + aux_sym_shebang_repeat1, + ACTIONS(5319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5199), 8, + ACTIONS(5263), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -261959,7 +267035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5201), 45, + ACTIONS(5265), 45, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -262005,47 +267081,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53752] = 14, - ACTIONS(247), 1, + [50230] = 16, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5292), 1, + ACTIONS(5331), 1, aux_sym_expr_binary_token13, - ACTIONS(5294), 1, + ACTIONS(5333), 1, aux_sym_expr_binary_token14, - ACTIONS(5299), 1, + ACTIONS(5335), 1, aux_sym_expr_binary_token15, - STATE(2219), 1, + ACTIONS(5337), 1, + aux_sym_expr_binary_token16, + ACTIONS(5339), 1, + aux_sym_expr_binary_token17, + STATE(2246), 1, sym_comment, - ACTIONS(5259), 2, + ACTIONS(5321), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(5263), 2, + ACTIONS(5325), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(5265), 2, + ACTIONS(5327), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(5290), 2, + ACTIONS(5329), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(5261), 4, + ACTIONS(5323), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(5267), 4, + ACTIONS(5341), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(5269), 6, + ACTIONS(5343), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - ACTIONS(5054), 8, + ACTIONS(5133), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -262054,7 +267134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5052), 24, + ACTIONS(5131), 22, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262068,8 +267148,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -262079,51 +267157,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53840] = 16, - ACTIONS(247), 1, + [50322] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5249), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5251), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5253), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5271), 1, - sym__newline, - STATE(2220), 1, + STATE(2247), 1, sym_comment, - STATE(2277), 1, - aux_sym_shebang_repeat1, - ACTIONS(5233), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5237), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5239), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5247), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5235), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5241), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5243), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5214), 8, + ACTIONS(5321), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5325), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(5327), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(5323), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5343), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(5133), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -262132,45 +267192,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5216), 22, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [53932] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2221), 1, - sym_comment, - ACTIONS(1070), 9, + ACTIONS(5131), 33, sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1072), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -262182,35 +267205,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_RBRACE, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -262219,15 +267226,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [54000] = 5, - ACTIONS(247), 1, + [50400] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4572), 1, - aux_sym_record_entry_token1, - STATE(2222), 1, + STATE(2248), 1, sym_comment, - ACTIONS(1070), 9, - sym__newline, + ACTIONS(5321), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5325), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(5327), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(5323), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5133), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -262236,7 +267254,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1072), 47, + ACTIONS(5131), 39, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -262247,17 +267266,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, aux_sym_expr_binary_token13, @@ -262284,12 +267294,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [54070] = 4, - ACTIONS(247), 1, + [50476] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2223), 1, + STATE(2249), 1, sym_comment, - ACTIONS(2388), 9, + ACTIONS(2569), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -262299,7 +267309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2390), 48, + ACTIONS(2571), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -262330,631 +267340,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [54138] = 19, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1338), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1340), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3860), 1, - anon_sym_DQUOTE, - ACTIONS(4874), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5173), 1, - anon_sym_DASH_DASH, - STATE(1990), 1, - sym_val_string, - STATE(2002), 1, - sym__str_double_quotes, - STATE(2012), 1, - sym_cmd_identifier, - STATE(2224), 1, - sym_comment, - STATE(2286), 1, - aux_sym_decl_def_repeat1, - STATE(2797), 1, - sym_long_flag, - STATE(6596), 1, - sym__command_name, - STATE(7094), 1, - sym__val_number_decimal, - ACTIONS(1336), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3862), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4868), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(4872), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4870), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [54236] = 17, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5249), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5251), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5253), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5255), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(5271), 1, - sym__newline, - STATE(2225), 1, - sym_comment, - STATE(2299), 1, - aux_sym_shebang_repeat1, - ACTIONS(5233), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5237), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5239), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5247), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5235), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5241), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5243), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5214), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5216), 21, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [54330] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5301), 1, - anon_sym_QMARK2, - STATE(2226), 1, - sym_comment, - ACTIONS(1022), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1024), 49, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [54400] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2227), 1, - sym_comment, - ACTIONS(1042), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1044), 50, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - sym_wild_card, - anon_sym_QMARK2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [54468] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5303), 1, - anon_sym_QMARK2, - STATE(2228), 1, - sym_comment, - ACTIONS(1028), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1030), 49, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [54538] = 17, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5230), 1, - sym__newline, - ACTIONS(5249), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5251), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5253), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5255), 1, - aux_sym_expr_binary_parenthesized_token16, - STATE(2229), 1, - sym_comment, - STATE(2281), 1, - aux_sym_shebang_repeat1, - ACTIONS(5233), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5237), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5239), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5247), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5235), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5241), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5243), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5148), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5150), 21, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [54632] = 19, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1338), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1340), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3860), 1, - anon_sym_DQUOTE, - ACTIONS(4874), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5173), 1, - anon_sym_DASH_DASH, - STATE(1990), 1, - sym_val_string, - STATE(2002), 1, - sym__str_double_quotes, - STATE(2012), 1, - sym_cmd_identifier, - STATE(2230), 1, - sym_comment, - STATE(2272), 1, - aux_sym_decl_def_repeat1, - STATE(2797), 1, - sym_long_flag, - STATE(6533), 1, - sym__command_name, - STATE(7094), 1, - sym__val_number_decimal, - ACTIONS(1336), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3862), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4868), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(4872), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4870), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [54730] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2231), 1, - sym_comment, - ACTIONS(1038), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1040), 50, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - sym_wild_card, - anon_sym_QMARK2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [54798] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5292), 1, - aux_sym_expr_binary_token13, - STATE(2232), 1, - sym_comment, - ACTIONS(5259), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5263), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(5265), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(5290), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(5261), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5267), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(5269), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - ACTIONS(5054), 8, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [50544] = 9, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(2250), 1, + sym_comment, + ACTIONS(5345), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5349), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5351), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5347), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5244), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -262963,8 +267389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5052), 26, - sym__newline, + ACTIONS(5246), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -262976,12 +267401,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -262990,109 +267427,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [54882] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2233), 1, - sym_comment, - ACTIONS(1034), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1036), 50, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - sym_wild_card, - anon_sym_QMARK2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [54950] = 13, - ACTIONS(247), 1, + [50622] = 16, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5230), 1, + ACTIONS(5316), 1, sym__newline, - STATE(2234), 1, + ACTIONS(5361), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5363), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5365), 1, + aux_sym_expr_binary_parenthesized_token15, + STATE(2251), 1, sym_comment, - STATE(2259), 1, + STATE(2323), 1, aux_sym_shebang_repeat1, - ACTIONS(5233), 2, + ACTIONS(5319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5237), 2, + ACTIONS(5355), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5239), 2, + ACTIONS(5357), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5247), 2, + ACTIONS(5359), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5235), 4, + ACTIONS(5353), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5241), 4, + ACTIONS(5367), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5243), 6, + ACTIONS(5369), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5148), 8, + ACTIONS(5263), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -263101,7 +267480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5150), 25, + ACTIONS(5265), 22, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -263113,9 +267492,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, @@ -263127,54 +267503,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [55036] = 17, - ACTIONS(247), 1, + [50714] = 17, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5380), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(5386), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(5389), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5392), 1, + anon_sym_DQUOTE, + ACTIONS(5398), 1, + sym_raw_string_begin, + STATE(7403), 1, + sym__val_number_decimal, + STATE(7473), 1, + sym__command_name, + STATE(7604), 1, + sym_cmd_identifier, + STATE(7605), 1, + sym_val_string, + ACTIONS(5383), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(5395), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(2252), 2, + sym_comment, + aux_sym_command_list_repeat1, + STATE(5521), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5371), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(5377), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(5374), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [50808] = 17, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5276), 1, + ACTIONS(5316), 1, + sym__newline, + ACTIONS(5361), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5278), 1, + ACTIONS(5363), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5280), 1, + ACTIONS(5365), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5282), 1, + ACTIONS(5401), 1, aux_sym_expr_binary_parenthesized_token16, - ACTIONS(5305), 1, - aux_sym_expr_binary_parenthesized_token17, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(2235), 1, + STATE(2253), 1, sym_comment, - ACTIONS(5222), 2, + STATE(2339), 1, + aux_sym_shebang_repeat1, + ACTIONS(5319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5226), 2, + ACTIONS(5355), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5228), 2, + ACTIONS(5357), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5274), 2, + ACTIONS(5359), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5224), 4, + ACTIONS(5353), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5284), 4, + ACTIONS(5367), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5286), 6, + ACTIONS(5369), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5140), 9, - sym__newline, + ACTIONS(5263), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -263183,7 +267635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5142), 20, + ACTIONS(5265), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -263195,6 +267647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -263204,19 +267657,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [55130] = 7, - ACTIONS(247), 1, + [50902] = 10, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5307), 1, + ACTIONS(5403), 1, sym__newline, - STATE(2236), 1, + STATE(2254), 1, sym_comment, - STATE(2282), 1, + STATE(2299), 1, aux_sym_shebang_repeat1, - ACTIONS(5233), 2, + ACTIONS(5319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5218), 8, + ACTIONS(5355), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5357), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5353), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5252), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -263225,7 +267689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5220), 45, + ACTIONS(5254), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -263237,14 +267701,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -263271,12 +267727,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [55204] = 4, - ACTIONS(247), 1, + [50982] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2237), 1, + STATE(2255), 1, sym_comment, - ACTIONS(1560), 8, + ACTIONS(1536), 10, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1538), 47, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [51050] = 11, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(2256), 1, + sym_comment, + ACTIONS(5345), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5349), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5351), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5347), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5406), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5408), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5244), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -263285,8 +267834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1572), 49, - sym__newline, + ACTIONS(5246), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -263298,35 +267846,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -263335,12 +267862,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [55272] = 4, - ACTIONS(247), 1, + [51132] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2238), 1, + STATE(2257), 1, sym_comment, - ACTIONS(2342), 9, + ACTIONS(2398), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -263350,7 +267877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2344), 48, + ACTIONS(2400), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -263399,13 +267926,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [55340] = 4, - ACTIONS(247), 1, + [51200] = 18, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2239), 1, - sym_comment, - ACTIONS(2305), 9, + ACTIONS(5361), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5363), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5365), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(5401), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(5410), 1, sym__newline, + ACTIONS(5412), 1, + aux_sym_expr_binary_parenthesized_token17, + STATE(2258), 1, + sym_comment, + STATE(2364), 1, + aux_sym_shebang_repeat1, + ACTIONS(5319), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5355), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5357), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5359), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5353), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5367), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5369), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5263), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -263414,7 +267983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2307), 48, + ACTIONS(5265), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -263426,35 +267995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -263463,15 +268004,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [55408] = 5, - ACTIONS(247), 1, + [51296] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5189), 1, - aux_sym_cmd_identifier_token41, - STATE(2240), 1, - sym_comment, - ACTIONS(2237), 9, + ACTIONS(5403), 1, sym__newline, + STATE(2259), 1, + sym_comment, + STATE(2268), 1, + aux_sym_shebang_repeat1, + ACTIONS(5319), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5252), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -263480,7 +268025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2241), 47, + ACTIONS(5254), 45, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -263492,8 +268037,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, @@ -263528,14 +268071,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [55478] = 5, - ACTIONS(247), 1, + [51370] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5189), 1, - aux_sym_cmd_identifier_token41, - STATE(2241), 1, + STATE(2260), 1, sym_comment, - ACTIONS(2245), 9, + ACTIONS(2406), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -263545,7 +268086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2247), 47, + ACTIONS(2408), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -263557,6 +268098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -263593,76 +268135,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [55548] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2242), 1, - sym_comment, - ACTIONS(2458), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2460), 49, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [55616] = 4, - ACTIONS(247), 1, + [51438] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2243), 1, + STATE(2261), 1, sym_comment, - ACTIONS(2305), 9, + ACTIONS(2506), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -263672,7 +268150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2307), 48, + ACTIONS(2508), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -263721,23 +268199,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [55684] = 7, - ACTIONS(247), 1, + [51506] = 12, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(2244), 1, + ACTIONS(5403), 1, + sym__newline, + STATE(2262), 1, sym_comment, - ACTIONS(5222), 2, + STATE(2279), 1, + aux_sym_shebang_repeat1, + ACTIONS(5319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5224), 4, + ACTIONS(5355), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5357), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5353), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5195), 9, - sym__newline, + ACTIONS(5367), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5369), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5252), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -263746,7 +268243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5197), 41, + ACTIONS(5254), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -263758,10 +268255,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -263770,16 +268263,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -263788,17 +268271,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [55758] = 6, - ACTIONS(247), 1, + [51590] = 18, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2043), 1, + ACTIONS(1345), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1347), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3296), 1, + aux_sym_record_entry_token1, + ACTIONS(3842), 1, + anon_sym_DQUOTE, + ACTIONS(3848), 1, + sym_raw_string_begin, + ACTIONS(4895), 1, + aux_sym_cmd_identifier_token38, + STATE(2263), 1, + sym_comment, + STATE(4162), 1, + sym_val_string, + STATE(4187), 1, + sym_cmd_identifier, + STATE(6271), 1, + sym__command_name, + STATE(7312), 1, + sym__val_number_decimal, + ACTIONS(1343), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3844), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4434), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4889), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4893), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4891), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [51686] = 12, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(2245), 1, + STATE(2264), 1, sym_comment, - ACTIONS(5222), 2, + ACTIONS(5345), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5181), 9, + ACTIONS(5349), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5351), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5414), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5347), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5406), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5408), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5244), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -263808,7 +268395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5183), 45, + ACTIONS(5246), 25, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -263820,32 +268407,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -263854,49 +268421,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [55830] = 15, - ACTIONS(247), 1, + [51770] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5249), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5251), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5296), 1, - sym__newline, - STATE(2246), 1, + ACTIONS(5416), 1, + aux_sym_cmd_identifier_token41, + STATE(2265), 1, sym_comment, - STATE(2326), 1, - aux_sym_shebang_repeat1, - ACTIONS(5233), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5237), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5239), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5247), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5235), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5241), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5243), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5199), 8, + ACTIONS(2293), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -263905,7 +268437,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5201), 23, + ACTIONS(2297), 48, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -263916,11 +268450,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -263929,24 +268486,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [55920] = 8, - ACTIONS(247), 1, + [51840] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5307), 1, + ACTIONS(5418), 1, sym__newline, - STATE(2247), 1, + STATE(2266), 1, sym_comment, - STATE(2274), 1, + STATE(2306), 1, aux_sym_shebang_repeat1, - ACTIONS(5233), 2, + ACTIONS(5319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5235), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5218), 8, + ACTIONS(5259), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -263955,7 +268507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5220), 41, + ACTIONS(5261), 45, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -263967,6 +268519,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, aux_sym_expr_binary_parenthesized_token9, @@ -263997,22 +268553,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [55996] = 7, - ACTIONS(247), 1, + [51914] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2043), 1, + STATE(2267), 1, + sym_comment, + ACTIONS(1528), 10, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1530), 47, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [51982] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(2248), 1, + STATE(2268), 1, sym_comment, - ACTIONS(5222), 2, + ACTIONS(5345), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5224), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5203), 9, + ACTIONS(5277), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -264022,7 +268637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5205), 41, + ACTIONS(5279), 45, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -264034,6 +268649,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, aux_sym_expr_binary_parenthesized_token9, @@ -264064,14 +268683,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [56070] = 5, - ACTIONS(247), 1, + [52054] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4726), 1, - aux_sym_unquoted_token2, - STATE(2249), 1, + ACTIONS(5416), 1, + aux_sym_cmd_identifier_token41, + STATE(2269), 1, sym_comment, - ACTIONS(1560), 8, + ACTIONS(2303), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -264080,7 +268699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1572), 48, + ACTIONS(2305), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -264129,97 +268748,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [56140] = 15, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5292), 1, - aux_sym_expr_binary_token13, - ACTIONS(5294), 1, - aux_sym_expr_binary_token14, - ACTIONS(5299), 1, - aux_sym_expr_binary_token15, - ACTIONS(5310), 1, - aux_sym_expr_binary_token16, - STATE(2250), 1, - sym_comment, - ACTIONS(5259), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5263), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(5265), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(5290), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(5261), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5267), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(5269), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - ACTIONS(5054), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5052), 23, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [56230] = 7, - ACTIONS(247), 1, + [52124] = 7, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2043), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(2251), 1, + STATE(2270), 1, sym_comment, - ACTIONS(5222), 2, + ACTIONS(5345), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5224), 4, + ACTIONS(5347), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5181), 9, + ACTIONS(5277), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -264229,7 +268773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5183), 41, + ACTIONS(5279), 41, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -264271,55 +268815,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [56304] = 18, - ACTIONS(247), 1, + [52198] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5245), 1, - sym__newline, - ACTIONS(5249), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5251), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5253), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5255), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(5257), 1, - aux_sym_expr_binary_parenthesized_token17, - STATE(2252), 1, + STATE(2271), 1, sym_comment, - STATE(2289), 1, - aux_sym_shebang_repeat1, - ACTIONS(5233), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5237), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5239), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5247), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5235), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5241), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5243), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5148), 8, + ACTIONS(2418), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -264328,7 +268829,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5150), 20, + ACTIONS(2420), 49, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -264340,7 +268842,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token18, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -264349,25 +268879,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [56400] = 8, - ACTIONS(247), 1, + [52266] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(2253), 1, + ACTIONS(4842), 1, + aux_sym_unquoted_token2, + STATE(2272), 1, sym_comment, - ACTIONS(5222), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5226), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5224), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5181), 9, + ACTIONS(1628), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -264377,7 +268896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5183), 39, + ACTIONS(1640), 47, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -264389,6 +268908,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, @@ -264417,26 +268944,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [56476] = 7, - ACTIONS(247), 1, + [52336] = 18, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5159), 1, - anon_sym_DOT, - STATE(2254), 1, + ACTIONS(1345), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1347), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3296), 1, + aux_sym_record_entry_token1, + ACTIONS(5427), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(5429), 1, + anon_sym_DQUOTE, + ACTIONS(5433), 1, + sym_raw_string_begin, + STATE(1453), 1, + sym__command_name, + STATE(2273), 1, sym_comment, - STATE(2381), 1, - aux_sym_cell_path_repeat1, - STATE(2478), 1, - sym_path, - ACTIONS(1011), 6, + STATE(2493), 1, + sym_cmd_identifier, + STATE(2494), 1, + sym_val_string, + STATE(7107), 1, + sym__val_number_decimal, + ACTIONS(1343), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(5431), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(2500), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5421), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1013), 48, - ts_builtin_sym_end, + ACTIONS(5425), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(5423), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -264468,43 +269022,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [56550] = 9, - ACTIONS(247), 1, + [52432] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5230), 1, + ACTIONS(5418), 1, sym__newline, - STATE(2253), 1, - aux_sym_shebang_repeat1, - STATE(2255), 1, + STATE(2274), 1, sym_comment, - ACTIONS(5233), 2, + STATE(2311), 1, + aux_sym_shebang_repeat1, + ACTIONS(5319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5237), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5235), 4, + ACTIONS(5353), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5148), 8, + ACTIONS(5259), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -264513,7 +269048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5150), 39, + ACTIONS(5261), 41, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -264525,6 +269060,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, @@ -264553,27 +269090,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [56628] = 9, - ACTIONS(247), 1, + [52508] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5307), 1, - sym__newline, - STATE(2212), 1, - aux_sym_shebang_repeat1, - STATE(2256), 1, + STATE(2275), 1, sym_comment, - ACTIONS(5233), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5237), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5235), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5218), 8, + ACTIONS(2289), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -264582,7 +269105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5220), 39, + ACTIONS(2291), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -264594,6 +269117,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, @@ -264622,40 +269154,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [56706] = 11, - ACTIONS(247), 1, + [52576] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2043), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(2257), 1, + STATE(2276), 1, sym_comment, - ACTIONS(5222), 2, + ACTIONS(5345), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5226), 2, + ACTIONS(5349), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5228), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5224), 4, + ACTIONS(5347), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5284), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5286), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5181), 9, + ACTIONS(5277), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -264665,7 +269182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5183), 27, + ACTIONS(5279), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -264677,6 +269194,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -264685,53 +269204,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [56788] = 13, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5276), 1, - aux_sym_expr_binary_parenthesized_token13, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(2258), 1, - sym_comment, - ACTIONS(5222), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5226), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5228), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5274), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5224), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5284), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5286), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5140), 9, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [52652] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2277), 1, + sym_comment, + ACTIONS(2510), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -264741,7 +269237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5142), 24, + ACTIONS(2512), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -264753,11 +269249,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -264766,44 +269286,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [56874] = 12, - ACTIONS(247), 1, + [52720] = 13, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(2259), 1, + ACTIONS(5403), 1, + sym__newline, + STATE(2278), 1, sym_comment, - ACTIONS(5222), 2, + STATE(2281), 1, + aux_sym_shebang_repeat1, + ACTIONS(5319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5226), 2, + ACTIONS(5355), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5228), 2, + ACTIONS(5357), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5274), 2, + ACTIONS(5359), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5224), 4, + ACTIONS(5353), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5284), 4, + ACTIONS(5367), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5286), 6, + ACTIONS(5369), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5181), 9, - sym__newline, + ACTIONS(5252), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -264812,7 +269333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5183), 25, + ACTIONS(5254), 25, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -264838,35 +269359,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [56958] = 10, - ACTIONS(247), 1, + [52806] = 11, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2043), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(2260), 1, + STATE(2279), 1, sym_comment, - ACTIONS(5222), 2, + ACTIONS(5345), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5226), 2, + ACTIONS(5349), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5228), 2, + ACTIONS(5351), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5224), 4, + ACTIONS(5347), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5286), 6, + ACTIONS(5406), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5408), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5140), 9, + ACTIONS(5277), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -264876,7 +269402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5142), 31, + ACTIONS(5279), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -264896,10 +269422,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -264908,24 +269430,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [57038] = 8, - ACTIONS(247), 1, + [52888] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5296), 1, - sym__newline, - STATE(2248), 1, - aux_sym_shebang_repeat1, - STATE(2261), 1, + ACTIONS(5027), 1, + aux_sym_cmd_identifier_token37, + STATE(2280), 1, sym_comment, - ACTIONS(5233), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5235), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5199), 8, + ACTIONS(2281), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -264934,7 +269447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5201), 41, + ACTIONS(2285), 47, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -264946,6 +269459,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, aux_sym_expr_binary_parenthesized_token9, @@ -264976,42 +269495,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [57114] = 12, - ACTIONS(247), 1, + [52958] = 12, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5307), 1, - sym__newline, - STATE(2262), 1, - sym_comment, - STATE(2328), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - ACTIONS(5233), 2, + STATE(2281), 1, + sym_comment, + ACTIONS(5345), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5237), 2, + ACTIONS(5349), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5239), 2, + ACTIONS(5351), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5235), 4, + ACTIONS(5414), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5347), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5241), 4, + ACTIONS(5406), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5243), 6, + ACTIONS(5408), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5218), 8, + ACTIONS(5277), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -265020,7 +269541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5220), 27, + ACTIONS(5279), 25, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -265032,8 +269553,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, @@ -265048,89 +269567,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [57198] = 16, - ACTIONS(247), 1, + [53042] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5292), 1, - aux_sym_expr_binary_token13, - ACTIONS(5294), 1, - aux_sym_expr_binary_token14, - ACTIONS(5299), 1, - aux_sym_expr_binary_token15, - ACTIONS(5310), 1, - aux_sym_expr_binary_token16, - ACTIONS(5312), 1, - aux_sym_expr_binary_token17, - STATE(2263), 1, - sym_comment, - ACTIONS(5259), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5263), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(5265), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(5290), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(5261), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5267), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(5269), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - ACTIONS(5054), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5052), 22, + ACTIONS(5418), 1, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token18, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [57290] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2264), 1, + STATE(2282), 1, sym_comment, - ACTIONS(2362), 9, - sym__newline, + STATE(2316), 1, + aux_sym_shebang_repeat1, + ACTIONS(5319), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5355), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5353), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5259), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -265139,7 +269596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2364), 48, + ACTIONS(5261), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -265151,15 +269608,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, @@ -265188,12 +269636,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [57358] = 4, - ACTIONS(247), 1, + [53120] = 13, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2265), 1, + ACTIONS(5435), 1, + aux_sym_expr_binary_parenthesized_token13, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(2283), 1, sym_comment, - ACTIONS(2366), 9, + ACTIONS(5345), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5349), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5351), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5414), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5347), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5406), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5408), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5277), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -265203,7 +269684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2368), 48, + ACTIONS(5279), 24, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -265215,35 +269696,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -265252,25 +269709,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [57426] = 8, - ACTIONS(247), 1, + [53206] = 7, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2043), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(2266), 1, + STATE(2284), 1, sym_comment, - ACTIONS(5222), 2, + ACTIONS(5345), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5226), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5224), 4, + ACTIONS(5347), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5203), 9, + ACTIONS(5244), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -265280,7 +269734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5205), 39, + ACTIONS(5246), 41, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -265292,6 +269746,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, @@ -265320,12 +269776,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [57502] = 4, - ACTIONS(247), 1, + [53280] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2267), 1, + ACTIONS(5437), 1, + anon_sym_DOT, + ACTIONS(5439), 1, + aux_sym__immediate_decimal_token2, + STATE(2285), 1, sym_comment, - ACTIONS(4884), 8, + ACTIONS(1538), 7, + sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(1536), 48, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -265334,48 +269832,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4882), 49, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [53352] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5441), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5443), 1, + aux_sym__immediate_decimal_token2, + STATE(2286), 1, + sym_comment, + ACTIONS(1530), 7, + sym_raw_string_begin, anon_sym_LPAREN2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(1528), 48, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -265384,36 +269906,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [57570] = 10, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [53424] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(2268), 1, + STATE(2287), 1, + sym_comment, + ACTIONS(1596), 10, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1598), 47, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [53492] = 12, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5418), 1, + sym__newline, + STATE(2288), 1, sym_comment, - ACTIONS(5222), 2, + STATE(2321), 1, + aux_sym_shebang_repeat1, + ACTIONS(5319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5226), 2, + ACTIONS(5355), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5228), 2, + ACTIONS(5357), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5224), 4, + ACTIONS(5353), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5286), 6, + ACTIONS(5367), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5369), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5203), 9, - sym__newline, + ACTIONS(5259), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -265422,7 +270016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5205), 31, + ACTIONS(5261), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -265442,10 +270036,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -265454,37 +270044,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [57650] = 11, - ACTIONS(247), 1, + [53576] = 14, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5230), 1, - sym__newline, - STATE(2269), 1, - sym_comment, - STATE(2292), 1, + ACTIONS(5435), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5445), 1, + aux_sym_expr_binary_parenthesized_token14, + STATE(2104), 1, aux_sym_shebang_repeat1, - ACTIONS(5233), 2, + STATE(2289), 1, + sym_comment, + ACTIONS(5345), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5237), 2, + ACTIONS(5349), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5239), 2, + ACTIONS(5351), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5235), 4, + ACTIONS(5414), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5347), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5243), 6, + ACTIONS(5406), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5408), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5148), 8, + ACTIONS(5277), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -265493,7 +270094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5150), 31, + ACTIONS(5279), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -265505,18 +270106,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -265525,12 +270118,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [57732] = 4, - ACTIONS(247), 1, + [53664] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2270), 1, + STATE(2290), 1, sym_comment, - ACTIONS(2328), 9, + ACTIONS(5161), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -265540,7 +270133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2330), 48, + ACTIONS(5159), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -265589,47 +270182,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [57800] = 14, - ACTIONS(247), 1, + [53732] = 15, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5230), 1, - sym__newline, - ACTIONS(5249), 1, + ACTIONS(5435), 1, aux_sym_expr_binary_parenthesized_token13, - STATE(2271), 1, - sym_comment, - STATE(2273), 1, + ACTIONS(5445), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5447), 1, + aux_sym_expr_binary_parenthesized_token15, + STATE(2104), 1, aux_sym_shebang_repeat1, - ACTIONS(5233), 2, + STATE(2291), 1, + sym_comment, + ACTIONS(5345), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5237), 2, + ACTIONS(5349), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5239), 2, + ACTIONS(5351), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5247), 2, + ACTIONS(5414), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5235), 4, + ACTIONS(5347), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5241), 4, + ACTIONS(5406), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5243), 6, + ACTIONS(5408), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5148), 8, + ACTIONS(5277), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -265638,7 +270234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5150), 24, + ACTIONS(5279), 22, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -265650,8 +270246,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, @@ -265663,124 +270257,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [57888] = 19, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1338), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1340), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3860), 1, - anon_sym_DQUOTE, - ACTIONS(4874), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5173), 1, - anon_sym_DASH_DASH, - STATE(1990), 1, - sym_val_string, - STATE(2002), 1, - sym__str_double_quotes, - STATE(2012), 1, - sym_cmd_identifier, - STATE(2272), 1, - sym_comment, - STATE(2626), 1, - aux_sym_decl_def_repeat1, - STATE(2797), 1, - sym_long_flag, - STATE(6315), 1, - sym__command_name, - STATE(7094), 1, - sym__val_number_decimal, - ACTIONS(1336), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3862), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4868), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(4872), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4870), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [57986] = 13, - ACTIONS(247), 1, + [53822] = 13, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5276), 1, + ACTIONS(5435), 1, aux_sym_expr_binary_parenthesized_token13, - STATE(2043), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(2273), 1, + STATE(2292), 1, sym_comment, - ACTIONS(5222), 2, + ACTIONS(5345), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5226), 2, + ACTIONS(5349), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5228), 2, + ACTIONS(5351), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5274), 2, + ACTIONS(5414), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5224), 4, + ACTIONS(5347), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5284), 4, + ACTIONS(5406), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5286), 6, + ACTIONS(5408), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5181), 9, + ACTIONS(5244), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -265790,7 +270305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5183), 24, + ACTIONS(5246), 24, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -265815,22 +270330,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58072] = 7, - ACTIONS(247), 1, + [53908] = 16, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2043), 1, + ACTIONS(5435), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5445), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5447), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(5449), 1, + aux_sym_expr_binary_parenthesized_token16, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(2274), 1, + STATE(2293), 1, sym_comment, - ACTIONS(5222), 2, + ACTIONS(5345), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5224), 4, + ACTIONS(5349), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5351), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5414), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5347), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5140), 9, + ACTIONS(5406), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5408), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5277), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -265840,7 +270384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5142), 41, + ACTIONS(5279), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -265852,28 +270396,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -265882,48 +270406,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58146] = 14, - ACTIONS(247), 1, + [54000] = 13, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5276), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5278), 1, - aux_sym_expr_binary_parenthesized_token14, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(2275), 1, + ACTIONS(5418), 1, + sym__newline, + STATE(2294), 1, sym_comment, - ACTIONS(5222), 2, + STATE(2330), 1, + aux_sym_shebang_repeat1, + ACTIONS(5319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5226), 2, + ACTIONS(5355), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5228), 2, + ACTIONS(5357), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5274), 2, + ACTIONS(5359), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5224), 4, + ACTIONS(5353), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5284), 4, + ACTIONS(5367), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5286), 6, + ACTIONS(5369), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5181), 9, - sym__newline, + ACTIONS(5259), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -265932,7 +270453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5183), 23, + ACTIONS(5261), 25, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -265944,6 +270465,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, @@ -265956,45 +270479,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58234] = 13, - ACTIONS(247), 1, + [54086] = 17, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5307), 1, - sym__newline, - STATE(2213), 1, + ACTIONS(5435), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5445), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5447), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(5449), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(5451), 1, + aux_sym_expr_binary_parenthesized_token17, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(2276), 1, + STATE(2295), 1, sym_comment, - ACTIONS(5233), 2, + ACTIONS(5345), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5237), 2, + ACTIONS(5349), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5239), 2, + ACTIONS(5351), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5247), 2, + ACTIONS(5414), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5235), 4, + ACTIONS(5347), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5241), 4, + ACTIONS(5406), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5243), 6, + ACTIONS(5408), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5218), 8, + ACTIONS(5277), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5279), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token18, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [54180] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5027), 1, + aux_sym_cmd_identifier_token37, + STATE(2296), 1, + sym_comment, + ACTIONS(1628), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -266003,7 +270573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5220), 25, + ACTIONS(1640), 47, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -266015,12 +270585,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -266029,49 +270621,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58320] = 15, - ACTIONS(247), 1, + [54250] = 10, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5276), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5278), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5280), 1, - aux_sym_expr_binary_parenthesized_token15, - STATE(2043), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(2277), 1, + STATE(2297), 1, sym_comment, - ACTIONS(5222), 2, + ACTIONS(5345), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5226), 2, + ACTIONS(5349), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5228), 2, + ACTIONS(5351), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5274), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5224), 4, + ACTIONS(5347), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5284), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5286), 6, + ACTIONS(5408), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5195), 9, + ACTIONS(5277), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -266081,7 +270659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5197), 22, + ACTIONS(5279), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -266093,9 +270671,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -266104,50 +270691,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58410] = 15, - ACTIONS(247), 1, + [54330] = 14, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5276), 1, + ACTIONS(5361), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5278), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5280), 1, - aux_sym_expr_binary_parenthesized_token15, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(2278), 1, + ACTIONS(5418), 1, + sym__newline, + STATE(2298), 1, sym_comment, - ACTIONS(5222), 2, + STATE(2336), 1, + aux_sym_shebang_repeat1, + ACTIONS(5319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5226), 2, + ACTIONS(5355), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5228), 2, + ACTIONS(5357), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5274), 2, + ACTIONS(5359), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5224), 4, + ACTIONS(5353), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5284), 4, + ACTIONS(5367), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5286), 6, + ACTIONS(5369), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5181), 9, - sym__newline, + ACTIONS(5259), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -266156,7 +270740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5183), 22, + ACTIONS(5261), 24, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -266168,6 +270752,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, @@ -266179,28 +270765,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58500] = 9, - ACTIONS(247), 1, + [54418] = 9, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2043), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(2279), 1, + STATE(2299), 1, sym_comment, - ACTIONS(5222), 2, + ACTIONS(5345), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5226), 2, + ACTIONS(5349), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5228), 2, + ACTIONS(5351), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5224), 4, + ACTIONS(5347), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5140), 9, + ACTIONS(5277), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -266210,7 +270796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5142), 37, + ACTIONS(5279), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -266248,25 +270834,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58578] = 8, - ACTIONS(247), 1, + [54496] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(2280), 1, + ACTIONS(4691), 1, + aux_sym_record_entry_token1, + STATE(2300), 1, sym_comment, - ACTIONS(5222), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5226), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5224), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5195), 9, + ACTIONS(1090), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -266276,7 +270851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5197), 39, + ACTIONS(1092), 47, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -266287,27 +270862,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -266316,52 +270899,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58654] = 16, - ACTIONS(247), 1, + [54566] = 14, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5276), 1, + ACTIONS(5361), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5278), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5280), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5282), 1, - aux_sym_expr_binary_parenthesized_token16, - STATE(2043), 1, + ACTIONS(5403), 1, + sym__newline, + STATE(2283), 1, aux_sym_shebang_repeat1, - STATE(2281), 1, + STATE(2301), 1, sym_comment, - ACTIONS(5222), 2, + ACTIONS(5319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5226), 2, + ACTIONS(5355), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5228), 2, + ACTIONS(5357), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5274), 2, + ACTIONS(5359), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5224), 4, + ACTIONS(5353), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5284), 4, + ACTIONS(5367), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5286), 6, + ACTIONS(5369), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5181), 9, - sym__newline, + ACTIONS(5252), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -266370,7 +270948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5183), 21, + ACTIONS(5254), 24, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -266382,6 +270960,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, @@ -266392,18 +270973,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58746] = 6, - ACTIONS(247), 1, + [54654] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(2282), 1, + ACTIONS(5453), 1, + anon_sym_LBRACK2, + STATE(2302), 1, sym_comment, - ACTIONS(5222), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5140), 9, - sym__newline, + ACTIONS(2355), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -266412,7 +270989,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5142), 45, + ACTIONS(2359), 48, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -266423,155 +271002,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [54724] = 15, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5361), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5363), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5418), 1, + sym__newline, + STATE(2303), 1, + sym_comment, + STATE(2428), 1, + aux_sym_shebang_repeat1, + ACTIONS(5319), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5355), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5357), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5359), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, + ACTIONS(5353), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5367), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5369), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [58818] = 19, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1338), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1340), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3015), 1, - anon_sym_DQUOTE, - ACTIONS(5167), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5169), 1, - sym__newline, - STATE(2283), 1, - sym_comment, - STATE(2507), 1, - aux_sym_command_list_repeat1, - STATE(2716), 1, - aux_sym_shebang_repeat1, - STATE(5413), 1, - sym__str_double_quotes, - STATE(6913), 1, - sym__val_number_decimal, - STATE(7023), 1, - sym__command_name, - STATE(7208), 1, - sym_cmd_identifier, - STATE(7209), 1, - sym_val_string, - ACTIONS(1336), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3017), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5161), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(5165), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5163), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [58916] = 11, - ACTIONS(247), 1, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5259), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5261), 23, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [54814] = 11, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(2284), 1, + ACTIONS(5316), 1, + sym__newline, + STATE(2304), 1, sym_comment, - ACTIONS(5222), 2, + STATE(2385), 1, + aux_sym_shebang_repeat1, + ACTIONS(5319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5226), 2, + ACTIONS(5355), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5228), 2, + ACTIONS(5357), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5224), 4, + ACTIONS(5353), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5284), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5286), 6, + ACTIONS(5369), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5203), 9, - sym__newline, + ACTIONS(5263), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -266580,7 +271152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5205), 27, + ACTIONS(5265), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -266600,6 +271172,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -266608,27 +271184,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58998] = 9, - ACTIONS(247), 1, + [54896] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5296), 1, + ACTIONS(5403), 1, sym__newline, - STATE(2266), 1, + STATE(2270), 1, aux_sym_shebang_repeat1, - STATE(2285), 1, + STATE(2305), 1, sym_comment, - ACTIONS(5233), 2, + ACTIONS(5319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5237), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5235), 4, + ACTIONS(5353), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5199), 8, + ACTIONS(5252), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -266637,7 +271210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5201), 39, + ACTIONS(5254), 41, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -266649,6 +271222,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, @@ -266677,326 +271252,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [59076] = 19, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1338), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1340), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3860), 1, - anon_sym_DQUOTE, - ACTIONS(4874), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5173), 1, - anon_sym_DASH_DASH, - STATE(1990), 1, - sym_val_string, - STATE(2002), 1, - sym__str_double_quotes, - STATE(2012), 1, - sym_cmd_identifier, - STATE(2286), 1, - sym_comment, - STATE(2626), 1, - aux_sym_decl_def_repeat1, - STATE(2797), 1, - sym_long_flag, - STATE(6406), 1, - sym__command_name, - STATE(7094), 1, - sym__val_number_decimal, - ACTIONS(1336), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3862), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4868), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(4872), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4870), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [59174] = 37, - ACTIONS(161), 1, - anon_sym_LPAREN, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(269), 1, - anon_sym_DOLLAR, - ACTIONS(397), 1, - anon_sym_DASH, - ACTIONS(3215), 1, - anon_sym_null, - ACTIONS(3265), 1, - anon_sym_LBRACK, - ACTIONS(3271), 1, - anon_sym_LBRACE, - ACTIONS(3275), 1, - aux_sym_expr_unary_token1, - ACTIONS(3279), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3281), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3283), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3285), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5191), 1, - anon_sym_DOT_DOT, - STATE(1418), 1, - sym__str_double_quotes, - STATE(1646), 1, - sym__expr_unary_minus, - STATE(1647), 1, - sym__val_number, - STATE(1729), 1, - sym__inter_single_quotes, - STATE(1732), 1, - sym__inter_double_quotes, - STATE(2287), 1, - sym_comment, - STATE(3507), 1, - sym__val_number_decimal, - STATE(3520), 1, - sym_val_range, - STATE(3556), 1, - sym_expr_parenthesized, - STATE(3559), 1, - sym_val_variable, - STATE(3820), 1, - sym__expr_binary_expression, - STATE(7263), 1, - sym__expression, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3213), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5193), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1687), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1643), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [59308] = 37, - ACTIONS(161), 1, - anon_sym_LPAREN, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, + [54972] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(269), 1, - anon_sym_DOLLAR, - ACTIONS(397), 1, - anon_sym_DASH, - ACTIONS(3215), 1, - anon_sym_null, - ACTIONS(3265), 1, - anon_sym_LBRACK, - ACTIONS(3271), 1, - anon_sym_LBRACE, - ACTIONS(3275), 1, - aux_sym_expr_unary_token1, - ACTIONS(3279), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3281), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3283), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3285), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5191), 1, - anon_sym_DOT_DOT, - STATE(1418), 1, - sym__str_double_quotes, - STATE(1646), 1, - sym__expr_unary_minus, - STATE(1647), 1, - sym__val_number, - STATE(1729), 1, - sym__inter_single_quotes, - STATE(1732), 1, - sym__inter_double_quotes, - STATE(2288), 1, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(2306), 1, sym_comment, - STATE(3507), 1, - sym__val_number_decimal, - STATE(3520), 1, - sym_val_range, - STATE(3556), 1, - sym_expr_parenthesized, - STATE(3559), 1, - sym_val_variable, - STATE(3820), 1, - sym__expr_binary_expression, - STATE(7267), 1, - sym__expression, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3213), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5193), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1687), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1643), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [59442] = 17, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5276), 1, + ACTIONS(5345), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5289), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5291), 45, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5278), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5280), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5282), 1, aux_sym_expr_binary_parenthesized_token16, - ACTIONS(5305), 1, aux_sym_expr_binary_parenthesized_token17, - STATE(2043), 1, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [55044] = 14, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5435), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5445), 1, + aux_sym_expr_binary_parenthesized_token14, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(2289), 1, + STATE(2307), 1, sym_comment, - ACTIONS(5222), 2, + ACTIONS(5345), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5226), 2, + ACTIONS(5349), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5228), 2, + ACTIONS(5351), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5274), 2, + ACTIONS(5414), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5224), 4, + ACTIONS(5347), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5284), 4, + ACTIONS(5406), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5286), 6, + ACTIONS(5408), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5181), 9, + ACTIONS(5244), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -267006,7 +271368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5183), 20, + ACTIONS(5246), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -267018,6 +271380,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -267027,14 +271392,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [59536] = 5, - ACTIONS(247), 1, + [55132] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5314), 1, - aux_sym__immediate_decimal_token2, - STATE(2290), 1, + STATE(2308), 1, sym_comment, - ACTIONS(1554), 10, + ACTIONS(1711), 10, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, @@ -267045,7 +271408,8 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token2, - ACTIONS(1556), 46, + ACTIONS(1713), 47, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -267092,133 +271456,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [59606] = 37, - ACTIONS(161), 1, - anon_sym_LPAREN, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, + [55200] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(269), 1, - anon_sym_DOLLAR, - ACTIONS(397), 1, - anon_sym_DASH, - ACTIONS(3215), 1, - anon_sym_null, - ACTIONS(3265), 1, - anon_sym_LBRACK, - ACTIONS(3271), 1, - anon_sym_LBRACE, - ACTIONS(3275), 1, - aux_sym_expr_unary_token1, - ACTIONS(3279), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3281), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3283), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3285), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5191), 1, - anon_sym_DOT_DOT, - STATE(1418), 1, - sym__str_double_quotes, - STATE(1646), 1, - sym__expr_unary_minus, - STATE(1647), 1, - sym__val_number, - STATE(1729), 1, - sym__inter_single_quotes, - STATE(1732), 1, - sym__inter_double_quotes, - STATE(2291), 1, + ACTIONS(5455), 1, + sym__newline, + STATE(2309), 1, sym_comment, - STATE(3507), 1, - sym__val_number_decimal, - STATE(3520), 1, - sym_val_range, - STATE(3556), 1, - sym_expr_parenthesized, - STATE(3559), 1, - sym_val_variable, - STATE(3820), 1, - sym__expr_binary_expression, - STATE(7290), 1, - sym__expression, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3213), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5193), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1687), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1643), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [59740] = 10, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2043), 1, + STATE(2393), 1, aux_sym_shebang_repeat1, - STATE(2292), 1, - sym_comment, - ACTIONS(5222), 2, + ACTIONS(5319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5226), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5228), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5224), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5286), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5181), 9, - sym__newline, + ACTIONS(5297), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -267227,7 +271477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5183), 31, + ACTIONS(5299), 45, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -267239,6 +271489,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -267251,6 +271509,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -267259,48 +271523,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [59820] = 14, - ACTIONS(247), 1, + [55274] = 16, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5276), 1, + ACTIONS(5361), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5278), 1, + ACTIONS(5363), 1, aux_sym_expr_binary_parenthesized_token14, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(2293), 1, + ACTIONS(5365), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(5418), 1, + sym__newline, + STATE(2310), 1, sym_comment, - ACTIONS(5222), 2, + STATE(2347), 1, + aux_sym_shebang_repeat1, + ACTIONS(5319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5226), 2, + ACTIONS(5355), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5228), 2, + ACTIONS(5357), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5274), 2, + ACTIONS(5359), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5224), 4, + ACTIONS(5353), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5284), 4, + ACTIONS(5367), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5286), 6, + ACTIONS(5369), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5140), 9, - sym__newline, + ACTIONS(5259), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -267309,7 +271576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5142), 23, + ACTIONS(5261), 22, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -267321,7 +271588,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, @@ -267333,43 +271599,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [59908] = 12, - ACTIONS(247), 1, + [55366] = 7, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2043), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(2294), 1, + STATE(2311), 1, sym_comment, - ACTIONS(5222), 2, + ACTIONS(5345), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5226), 2, + ACTIONS(5347), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5289), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5291), 41, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5228), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5274), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5224), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5284), 4, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5286), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5203), 9, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [55440] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2312), 1, + sym_comment, + ACTIONS(5458), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -267379,7 +271681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5205), 25, + ACTIONS(5228), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -267391,12 +271693,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -267405,41 +271730,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [59992] = 11, - ACTIONS(247), 1, + [55508] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(2295), 1, + ACTIONS(5455), 1, + sym__newline, + STATE(2313), 1, sym_comment, - ACTIONS(5222), 2, + STATE(2395), 1, + aux_sym_shebang_repeat1, + ACTIONS(5319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5226), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5228), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5224), 4, + ACTIONS(5353), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5284), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5286), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5195), 9, - sym__newline, + ACTIONS(5297), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -267448,7 +271756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5197), 27, + ACTIONS(5299), 41, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -267460,6 +271768,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -267468,6 +271780,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -267476,117 +271798,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [60074] = 37, - ACTIONS(161), 1, - anon_sym_LPAREN, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, + [55584] = 18, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(269), 1, - anon_sym_DOLLAR, - ACTIONS(397), 1, - anon_sym_DASH, - ACTIONS(3215), 1, - anon_sym_null, - ACTIONS(3265), 1, - anon_sym_LBRACK, - ACTIONS(3271), 1, - anon_sym_LBRACE, - ACTIONS(3275), 1, - aux_sym_expr_unary_token1, - ACTIONS(3279), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3281), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3283), 1, + ACTIONS(1345), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3285), 1, + ACTIONS(1347), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5191), 1, - anon_sym_DOT_DOT, - STATE(1418), 1, - sym__str_double_quotes, - STATE(1646), 1, - sym__expr_unary_minus, - STATE(1647), 1, - sym__val_number, - STATE(1729), 1, - sym__inter_single_quotes, - STATE(1732), 1, - sym__inter_double_quotes, - STATE(2296), 1, + ACTIONS(3296), 1, + aux_sym_record_entry_token1, + ACTIONS(3842), 1, + anon_sym_DQUOTE, + ACTIONS(3848), 1, + sym_raw_string_begin, + ACTIONS(4895), 1, + aux_sym_cmd_identifier_token38, + STATE(2314), 1, sym_comment, - STATE(3507), 1, + STATE(4162), 1, + sym_val_string, + STATE(4187), 1, + sym_cmd_identifier, + STATE(5764), 1, + sym__command_name, + STATE(7312), 1, sym__val_number_decimal, - STATE(3520), 1, - sym_val_range, - STATE(3556), 1, - sym_expr_parenthesized, - STATE(3559), 1, - sym_val_variable, - STATE(3820), 1, - sym__expr_binary_expression, - STATE(7231), 1, - sym__expression, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, + ACTIONS(1343), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3844), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3213), 2, + STATE(4434), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4889), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4893), 5, anon_sym_true, anon_sym_false, - ACTIONS(5193), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1687), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, - aux_sym_cmd_identifier_token38, + anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1643), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [60208] = 6, - ACTIONS(247), 1, + ACTIONS(4891), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [55680] = 15, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2297), 1, + ACTIONS(5361), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5363), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5403), 1, + sym__newline, + STATE(2289), 1, + aux_sym_shebang_repeat1, + STATE(2315), 1, sym_comment, - ACTIONS(5259), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5261), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5054), 8, + ACTIONS(5319), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5355), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5357), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5359), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5353), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5367), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5369), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5252), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -267595,8 +271927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5052), 43, - sym__newline, + ACTIONS(5254), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -267608,29 +271939,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -267639,30 +271951,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [60280] = 10, - ACTIONS(247), 1, + [55770] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5230), 1, - sym__newline, - STATE(2197), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(2298), 1, + STATE(2316), 1, sym_comment, - ACTIONS(5233), 2, + ACTIONS(5345), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5237), 2, + ACTIONS(5349), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5239), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5235), 4, + ACTIONS(5347), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5148), 8, + ACTIONS(5289), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -267671,7 +271979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5150), 37, + ACTIONS(5291), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -267683,6 +271991,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -267709,52 +272019,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [60360] = 16, - ACTIONS(247), 1, + [55846] = 17, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5276), 1, + ACTIONS(5361), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5278), 1, + ACTIONS(5363), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5280), 1, + ACTIONS(5365), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5282), 1, + ACTIONS(5401), 1, aux_sym_expr_binary_parenthesized_token16, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(2299), 1, + ACTIONS(5418), 1, + sym__newline, + STATE(2317), 1, sym_comment, - ACTIONS(5222), 2, + STATE(2351), 1, + aux_sym_shebang_repeat1, + ACTIONS(5319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5226), 2, + ACTIONS(5355), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5228), 2, + ACTIONS(5357), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5274), 2, + ACTIONS(5359), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5224), 4, + ACTIONS(5353), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5284), 4, + ACTIONS(5367), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5286), 6, + ACTIONS(5369), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5195), 9, - sym__newline, + ACTIONS(5259), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -267763,7 +272074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5197), 21, + ACTIONS(5261), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -267785,42 +272096,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [60452] = 12, - ACTIONS(247), 1, + [55940] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5296), 1, + ACTIONS(5223), 1, sym__newline, - STATE(2284), 1, - aux_sym_shebang_repeat1, - STATE(2300), 1, + STATE(2318), 1, sym_comment, - ACTIONS(5233), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5237), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5239), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5235), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5241), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5243), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5199), 8, + ACTIONS(5230), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -267829,7 +272112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5201), 27, + ACTIONS(5226), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -267841,14 +272124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, + anon_sym_LBRACE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -267857,47 +272133,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [60536] = 14, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5249), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5307), 1, - sym__newline, - STATE(2258), 1, - aux_sym_shebang_repeat1, - STATE(2301), 1, - sym_comment, - ACTIONS(5233), 2, + ACTIONS(5228), 28, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5237), 2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5239), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5247), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5235), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5241), 4, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5243), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5218), 8, + [56012] = 9, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5455), 1, + sym__newline, + STATE(2319), 1, + sym_comment, + STATE(2397), 1, + aux_sym_shebang_repeat1, + ACTIONS(5319), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5355), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5353), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5297), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -267906,7 +272191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5220), 24, + ACTIONS(5299), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -267918,11 +272203,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -267931,122 +272231,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [60624] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2302), 1, - sym_comment, - ACTIONS(5259), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5263), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(5265), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(5261), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5054), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5052), 39, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [60700] = 19, - ACTIONS(247), 1, + [56090] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1338), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1340), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3015), 1, - anon_sym_DQUOTE, - ACTIONS(5167), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5169), 1, - sym__newline, - STATE(2303), 1, + ACTIONS(4614), 1, + anon_sym_DOT_DOT2, + ACTIONS(5460), 1, + sym_filesize_unit, + ACTIONS(5462), 1, + sym_duration_unit, + ACTIONS(5464), 1, + aux_sym_unquoted_token2, + STATE(2320), 1, sym_comment, - STATE(2495), 1, - aux_sym_command_list_repeat1, - STATE(2716), 1, - aux_sym_shebang_repeat1, - STATE(5413), 1, - sym__str_double_quotes, - STATE(6861), 1, - sym__command_name, - STATE(6913), 1, - sym__val_number_decimal, - STATE(7208), 1, - sym_cmd_identifier, - STATE(7209), 1, - sym_val_string, - ACTIONS(1336), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3017), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5161), 5, + ACTIONS(4616), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1628), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(5165), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5163), 31, + aux_sym_cmd_identifier_token38, + ACTIONS(1640), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -268078,121 +272287,97 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [60798] = 37, - ACTIONS(191), 1, - anon_sym_DOT_DOT, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(397), 1, - anon_sym_DASH, - ACTIONS(3215), 1, - anon_sym_null, - ACTIONS(3265), 1, - anon_sym_LBRACK, - ACTIONS(3271), 1, - anon_sym_LBRACE, - ACTIONS(3315), 1, - aux_sym_expr_unary_token1, - ACTIONS(3317), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3319), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3321), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3323), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4972), 1, - anon_sym_LPAREN, - ACTIONS(4974), 1, - anon_sym_DOLLAR, - STATE(1418), 1, - sym__str_double_quotes, - STATE(1445), 1, - sym_expr_parenthesized, - STATE(1446), 1, - sym_val_variable, - STATE(1646), 1, - sym__expr_unary_minus, - STATE(1647), 1, - sym__val_number, - STATE(1729), 1, - sym__inter_single_quotes, - STATE(1732), 1, - sym__inter_double_quotes, - STATE(2304), 1, - sym_comment, - STATE(2846), 1, - sym__val_number_decimal, - STATE(3520), 1, - sym_val_range, - STATE(3822), 1, - sym__expr_binary_expression, - STATE(5572), 1, - sym__expression, - ACTIONS(213), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3213), 2, anon_sym_true, anon_sym_false, - STATE(1687), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, - aux_sym_cmd_identifier_token38, + anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1643), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [60932] = 8, - ACTIONS(247), 1, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [56168] = 11, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5230), 1, - sym__newline, - STATE(2251), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(2305), 1, + STATE(2321), 1, sym_comment, - ACTIONS(5233), 2, + ACTIONS(5345), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5235), 4, + ACTIONS(5349), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5351), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5347), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5148), 8, + ACTIONS(5406), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5408), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5289), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5291), 27, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [56250] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2322), 1, + sym_comment, + ACTIONS(5157), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -268201,7 +272386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5150), 41, + ACTIONS(5155), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -268213,6 +272398,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, aux_sym_expr_binary_parenthesized_token9, @@ -268243,49 +272435,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [61008] = 15, - ACTIONS(247), 1, + [56318] = 15, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5230), 1, - sym__newline, - ACTIONS(5249), 1, + ACTIONS(5435), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5251), 1, + ACTIONS(5445), 1, aux_sym_expr_binary_parenthesized_token14, - STATE(2275), 1, + ACTIONS(5447), 1, + aux_sym_expr_binary_parenthesized_token15, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(2306), 1, + STATE(2323), 1, sym_comment, - ACTIONS(5233), 2, + ACTIONS(5345), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5237), 2, + ACTIONS(5349), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5239), 2, + ACTIONS(5351), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5247), 2, + ACTIONS(5414), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5235), 4, + ACTIONS(5347), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5241), 4, + ACTIONS(5406), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5243), 6, + ACTIONS(5408), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5148), 8, + ACTIONS(5244), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -268294,7 +272487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5150), 23, + ACTIONS(5246), 22, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -268306,7 +272499,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, @@ -268318,49 +272510,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [61098] = 15, - ACTIONS(247), 1, + [56408] = 12, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5249), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5251), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5307), 1, + ACTIONS(5455), 1, sym__newline, - STATE(2293), 1, - aux_sym_shebang_repeat1, - STATE(2307), 1, + STATE(2324), 1, sym_comment, - ACTIONS(5233), 2, + STATE(2400), 1, + aux_sym_shebang_repeat1, + ACTIONS(5319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5237), 2, + ACTIONS(5355), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5239), 2, + ACTIONS(5357), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5247), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5235), 4, + ACTIONS(5353), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5241), 4, + ACTIONS(5367), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5243), 6, + ACTIONS(5369), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5218), 8, + ACTIONS(5297), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -268369,7 +272554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5220), 23, + ACTIONS(5299), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -268381,6 +272566,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, @@ -268393,55 +272582,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [61188] = 18, - ACTIONS(247), 1, + [56492] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5245), 1, - sym__newline, - ACTIONS(5249), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5251), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5253), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5255), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(5257), 1, - aux_sym_expr_binary_parenthesized_token17, - STATE(2308), 1, + STATE(2325), 1, sym_comment, - STATE(2341), 1, - aux_sym_shebang_repeat1, - ACTIONS(5233), 2, + ACTIONS(2494), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2496), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5237), 2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5239), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5247), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5235), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5241), 4, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5243), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5214), 8, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [56560] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2326), 1, + sym_comment, + ACTIONS(2494), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -268450,7 +272661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5216), 20, + ACTIONS(2496), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -268462,7 +272673,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -268471,53 +272710,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [61284] = 17, - ACTIONS(247), 1, + [56628] = 10, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5249), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5251), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5253), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5255), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(5296), 1, + ACTIONS(5316), 1, sym__newline, - STATE(2309), 1, - sym_comment, - STATE(2347), 1, + STATE(2250), 1, aux_sym_shebang_repeat1, - ACTIONS(5233), 2, + STATE(2327), 1, + sym_comment, + ACTIONS(5319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5237), 2, + ACTIONS(5355), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5239), 2, + ACTIONS(5357), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5247), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5235), 4, + ACTIONS(5353), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5241), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5243), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5199), 8, + ACTIONS(5263), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -268526,7 +272742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5201), 21, + ACTIONS(5265), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -268538,8 +272754,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -268548,305 +272780,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [61378] = 37, - ACTIONS(191), 1, - anon_sym_DOT_DOT, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(397), 1, - anon_sym_DASH, - ACTIONS(3215), 1, - anon_sym_null, - ACTIONS(3265), 1, - anon_sym_LBRACK, - ACTIONS(3271), 1, - anon_sym_LBRACE, - ACTIONS(3315), 1, - aux_sym_expr_unary_token1, - ACTIONS(3317), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3319), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3321), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3323), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4972), 1, - anon_sym_LPAREN, - ACTIONS(4974), 1, - anon_sym_DOLLAR, - STATE(1418), 1, - sym__str_double_quotes, - STATE(1445), 1, - sym_expr_parenthesized, - STATE(1446), 1, - sym_val_variable, - STATE(1646), 1, - sym__expr_unary_minus, - STATE(1647), 1, - sym__val_number, - STATE(1729), 1, - sym__inter_single_quotes, - STATE(1732), 1, - sym__inter_double_quotes, - STATE(2310), 1, - sym_comment, - STATE(2846), 1, - sym__val_number_decimal, - STATE(3520), 1, - sym_val_range, - STATE(3822), 1, - sym__expr_binary_expression, - STATE(5607), 1, - sym__expression, - ACTIONS(213), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3213), 2, - anon_sym_true, - anon_sym_false, - STATE(1687), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1643), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [61512] = 37, - ACTIONS(191), 1, - anon_sym_DOT_DOT, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(397), 1, - anon_sym_DASH, - ACTIONS(3215), 1, - anon_sym_null, - ACTIONS(3265), 1, - anon_sym_LBRACK, - ACTIONS(3271), 1, - anon_sym_LBRACE, - ACTIONS(3315), 1, - aux_sym_expr_unary_token1, - ACTIONS(3317), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3319), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3321), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3323), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4972), 1, - anon_sym_LPAREN, - ACTIONS(4974), 1, - anon_sym_DOLLAR, - STATE(1418), 1, - sym__str_double_quotes, - STATE(1445), 1, - sym_expr_parenthesized, - STATE(1446), 1, - sym_val_variable, - STATE(1646), 1, - sym__expr_unary_minus, - STATE(1647), 1, - sym__val_number, - STATE(1729), 1, - sym__inter_single_quotes, - STATE(1732), 1, - sym__inter_double_quotes, - STATE(2311), 1, - sym_comment, - STATE(2846), 1, - sym__val_number_decimal, - STATE(3520), 1, - sym_val_range, - STATE(3822), 1, - sym__expr_binary_expression, - STATE(5547), 1, - sym__expression, - ACTIONS(213), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3213), 2, - anon_sym_true, - anon_sym_false, - STATE(1687), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1643), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [61646] = 37, - ACTIONS(191), 1, - anon_sym_DOT_DOT, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(397), 1, - anon_sym_DASH, - ACTIONS(3215), 1, - anon_sym_null, - ACTIONS(3265), 1, - anon_sym_LBRACK, - ACTIONS(3271), 1, - anon_sym_LBRACE, - ACTIONS(3315), 1, - aux_sym_expr_unary_token1, - ACTIONS(3317), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3319), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3321), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3323), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4972), 1, - anon_sym_LPAREN, - ACTIONS(4974), 1, - anon_sym_DOLLAR, - STATE(1418), 1, - sym__str_double_quotes, - STATE(1445), 1, - sym_expr_parenthesized, - STATE(1446), 1, - sym_val_variable, - STATE(1646), 1, - sym__expr_unary_minus, - STATE(1647), 1, - sym__val_number, - STATE(1729), 1, - sym__inter_single_quotes, - STATE(1732), 1, - sym__inter_double_quotes, - STATE(2312), 1, - sym_comment, - STATE(2846), 1, - sym__val_number_decimal, - STATE(3520), 1, - sym_val_range, - STATE(3822), 1, - sym__expr_binary_expression, - STATE(5548), 1, - sym__expression, - ACTIONS(213), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3213), 2, - anon_sym_true, - anon_sym_false, - STATE(1687), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1643), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [61780] = 5, - ACTIONS(247), 1, + [56708] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4742), 1, - aux_sym_unquoted_token2, - STATE(2313), 1, + STATE(2328), 1, sym_comment, - ACTIONS(1560), 9, + ACTIONS(5153), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -268856,7 +272795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1572), 47, + ACTIONS(5151), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -268868,6 +272807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -268904,14 +272844,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [61850] = 5, - ACTIONS(247), 1, + [56776] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5316), 1, - aux_sym_cmd_identifier_token41, - STATE(2314), 1, + ACTIONS(4870), 1, + aux_sym_unquoted_token2, + STATE(2329), 1, sym_comment, - ACTIONS(2237), 8, + ACTIONS(1628), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -268920,7 +272860,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2241), 48, + ACTIONS(1640), 48, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268932,7 +272873,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -268969,14 +272909,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [61920] = 5, - ACTIONS(247), 1, + [56846] = 12, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5316), 1, - aux_sym_cmd_identifier_token41, - STATE(2315), 1, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(2330), 1, sym_comment, - ACTIONS(2245), 8, + ACTIONS(5345), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5349), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5351), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5414), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5347), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5406), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5408), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5289), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -268985,8 +272955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2247), 48, - sym__newline, + ACTIONS(5291), 25, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -268997,35 +272966,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -269034,148 +272981,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [61990] = 37, - ACTIONS(191), 1, - anon_sym_DOT_DOT, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, + [56930] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(397), 1, - anon_sym_DASH, - ACTIONS(3215), 1, - anon_sym_null, - ACTIONS(3265), 1, - anon_sym_LBRACK, - ACTIONS(3271), 1, - anon_sym_LBRACE, - ACTIONS(3315), 1, - aux_sym_expr_unary_token1, - ACTIONS(3317), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3319), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3321), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3323), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4972), 1, - anon_sym_LPAREN, - ACTIONS(4974), 1, - anon_sym_DOLLAR, - STATE(1418), 1, - sym__str_double_quotes, - STATE(1445), 1, - sym_expr_parenthesized, - STATE(1446), 1, - sym_val_variable, - STATE(1646), 1, - sym__expr_unary_minus, - STATE(1647), 1, - sym__val_number, - STATE(1729), 1, - sym__inter_single_quotes, - STATE(1732), 1, - sym__inter_double_quotes, - STATE(2316), 1, + STATE(2331), 1, sym_comment, - STATE(2846), 1, - sym__val_number_decimal, - STATE(3520), 1, - sym_val_range, - STATE(3822), 1, - sym__expr_binary_expression, - STATE(5566), 1, - sym__expression, - ACTIONS(213), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3213), 2, - anon_sym_true, - anon_sym_false, - STATE(1687), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1643), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [62124] = 16, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5249), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5251), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5253), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5307), 1, + ACTIONS(2430), 9, sym__newline, - STATE(2317), 1, - sym_comment, - STATE(2335), 1, - aux_sym_shebang_repeat1, - ACTIONS(5233), 2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2432), 48, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5237), 2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5239), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5247), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5235), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5241), 4, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5243), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5218), 8, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [56998] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2332), 1, + sym_comment, + ACTIONS(2478), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -269184,7 +273060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5220), 22, + ACTIONS(2480), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -269196,9 +273072,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -269207,44 +273109,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [62216] = 12, - ACTIONS(247), 1, + [57066] = 16, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2043), 1, + ACTIONS(5361), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5363), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5365), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(5403), 1, + sym__newline, + STATE(2291), 1, aux_sym_shebang_repeat1, - STATE(2318), 1, + STATE(2333), 1, sym_comment, - ACTIONS(5222), 2, + ACTIONS(5319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5226), 2, + ACTIONS(5355), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5228), 2, + ACTIONS(5357), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5274), 2, + ACTIONS(5359), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5224), 4, + ACTIONS(5353), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5284), 4, + ACTIONS(5367), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5286), 6, + ACTIONS(5369), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5195), 9, - sym__newline, + ACTIONS(5252), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -269253,7 +273162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5197), 25, + ACTIONS(5254), 22, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -269265,9 +273174,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, @@ -269279,119 +273185,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [62300] = 13, - ACTIONS(3), 1, + [57158] = 13, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1492), 1, - sym__entry_separator, - ACTIONS(1494), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2553), 1, - anon_sym_DOLLAR, - ACTIONS(5318), 1, - anon_sym_LPAREN2, - ACTIONS(5320), 1, - anon_sym_DOT, - ACTIONS(5324), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5326), 1, - aux_sym__immediate_decimal_token5, - STATE(2319), 1, + ACTIONS(5455), 1, + sym__newline, + STATE(2334), 1, sym_comment, - STATE(2653), 1, - sym__immediate_decimal, - ACTIONS(5322), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2805), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1478), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [62386] = 13, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5276), 1, - aux_sym_expr_binary_parenthesized_token13, - STATE(2043), 1, + STATE(2404), 1, aux_sym_shebang_repeat1, - STATE(2320), 1, - sym_comment, - ACTIONS(5222), 2, + ACTIONS(5319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5226), 2, + ACTIONS(5355), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5228), 2, + ACTIONS(5357), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5274), 2, + ACTIONS(5359), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5224), 4, + ACTIONS(5353), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5284), 4, + ACTIONS(5367), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5286), 6, + ACTIONS(5369), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5203), 9, - sym__newline, + ACTIONS(5297), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -269400,7 +273232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5205), 24, + ACTIONS(5299), 25, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -269412,6 +273244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token13, aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, @@ -269425,53 +273258,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [62472] = 17, - ACTIONS(247), 1, + [57244] = 18, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5249), 1, + ACTIONS(5361), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5251), 1, + ACTIONS(5363), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5253), 1, + ACTIONS(5365), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5255), 1, + ACTIONS(5401), 1, aux_sym_expr_binary_parenthesized_token16, - ACTIONS(5307), 1, + ACTIONS(5410), 1, sym__newline, - STATE(2204), 1, - aux_sym_shebang_repeat1, - STATE(2321), 1, + ACTIONS(5412), 1, + aux_sym_expr_binary_parenthesized_token17, + STATE(2335), 1, sym_comment, - ACTIONS(5233), 2, + STATE(2355), 1, + aux_sym_shebang_repeat1, + ACTIONS(5319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5237), 2, + ACTIONS(5355), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5239), 2, + ACTIONS(5357), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5247), 2, + ACTIONS(5359), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5235), 4, + ACTIONS(5353), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5241), 4, + ACTIONS(5367), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5243), 6, + ACTIONS(5369), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5218), 8, + ACTIONS(5259), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -269480,7 +273315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5220), 21, + ACTIONS(5261), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -269492,7 +273327,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -269502,14 +273336,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [62566] = 5, - ACTIONS(3), 1, + [57340] = 13, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4946), 1, - aux_sym_cmd_identifier_token37, - STATE(2322), 1, + ACTIONS(5435), 1, + aux_sym_expr_binary_parenthesized_token13, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(2336), 1, sym_comment, - ACTIONS(1560), 8, + ACTIONS(5345), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5349), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5351), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5414), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5347), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5406), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5408), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5289), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -269518,9 +273384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1572), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5291), 24, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -269531,34 +273395,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -269567,37 +273409,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [62636] = 11, - ACTIONS(247), 1, + [57426] = 18, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1345), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1347), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3068), 1, + anon_sym_DQUOTE, + ACTIONS(3074), 1, + sym_raw_string_begin, + ACTIONS(5196), 1, + aux_sym_cmd_identifier_token38, + STATE(2252), 1, + aux_sym_command_list_repeat1, + STATE(2337), 1, + sym_comment, + STATE(6853), 1, + sym__command_name, + STATE(7403), 1, + sym__val_number_decimal, + STATE(7604), 1, + sym_cmd_identifier, + STATE(7605), 1, + sym_val_string, + ACTIONS(1343), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3070), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5521), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5190), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(5194), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(5192), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [57522] = 14, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5296), 1, + ACTIONS(5361), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5455), 1, sym__newline, - STATE(2268), 1, - aux_sym_shebang_repeat1, - STATE(2323), 1, + STATE(2338), 1, sym_comment, - ACTIONS(5233), 2, + STATE(2406), 1, + aux_sym_shebang_repeat1, + ACTIONS(5319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5237), 2, + ACTIONS(5355), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5239), 2, + ACTIONS(5357), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5235), 4, + ACTIONS(5359), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5353), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5243), 6, + ACTIONS(5367), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5369), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5199), 8, + ACTIONS(5297), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -269606,7 +273536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5201), 31, + ACTIONS(5299), 24, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -269618,18 +273548,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -269638,45 +273561,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [62718] = 13, - ACTIONS(247), 1, + [57610] = 16, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5296), 1, - sym__newline, - STATE(2294), 1, + ACTIONS(5435), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5445), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5447), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(5449), 1, + aux_sym_expr_binary_parenthesized_token16, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(2324), 1, + STATE(2339), 1, sym_comment, - ACTIONS(5233), 2, + ACTIONS(5345), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5237), 2, + ACTIONS(5349), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5239), 2, + ACTIONS(5351), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5247), 2, + ACTIONS(5414), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5235), 4, + ACTIONS(5347), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5241), 4, + ACTIONS(5406), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5243), 6, + ACTIONS(5408), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5199), 8, + ACTIONS(5244), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -269685,7 +273615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5201), 25, + ACTIONS(5246), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -269697,10 +273627,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, @@ -269711,29 +273637,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [62804] = 9, - ACTIONS(247), 1, + [57702] = 12, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(2325), 1, + ACTIONS(1526), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5466), 1, + anon_sym_DOLLAR, + ACTIONS(5468), 1, + anon_sym_LPAREN2, + ACTIONS(5472), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5474), 1, + aux_sym__immediate_decimal_token5, + STATE(2340), 1, sym_comment, - ACTIONS(5222), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5226), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5228), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5224), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5203), 9, - sym__newline, + STATE(2895), 1, + sym__immediate_decimal, + ACTIONS(1524), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5470), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3001), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1510), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [57786] = 15, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5331), 1, + aux_sym_expr_binary_token13, + ACTIONS(5333), 1, + aux_sym_expr_binary_token14, + ACTIONS(5335), 1, + aux_sym_expr_binary_token15, + ACTIONS(5337), 1, + aux_sym_expr_binary_token16, + STATE(2341), 1, + sym_comment, + ACTIONS(5321), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5325), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(5327), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(5329), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(5323), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5341), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(5343), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(5133), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -269742,7 +273760,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5205), 37, + ACTIONS(5131), 23, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -269754,24 +273773,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_RBRACE, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -269780,47 +273784,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [62882] = 14, - ACTIONS(247), 1, + [57876] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5276), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5278), 1, - aux_sym_expr_binary_parenthesized_token14, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(2326), 1, + STATE(2342), 1, sym_comment, - ACTIONS(5222), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5226), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5228), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5274), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5224), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5284), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5286), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5203), 9, + ACTIONS(2410), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -269830,7 +273799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5205), 23, + ACTIONS(2412), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -269842,88 +273811,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [62970] = 18, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5245), 1, - sym__newline, - ACTIONS(5249), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5251), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5253), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5255), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(5257), 1, - aux_sym_expr_binary_parenthesized_token17, - STATE(2235), 1, - aux_sym_shebang_repeat1, - STATE(2327), 1, - sym_comment, - ACTIONS(5233), 2, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5237), 2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5239), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5247), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5235), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5241), 4, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5243), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5218), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5220), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -269932,40 +273848,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [63066] = 11, - ACTIONS(247), 1, + [57944] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(2328), 1, + STATE(2343), 1, sym_comment, - ACTIONS(5222), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5226), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5228), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5224), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5284), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5286), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5140), 9, + ACTIONS(2438), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -269975,7 +273863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5142), 27, + ACTIONS(2440), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -269987,6 +273875,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -269995,6 +273894,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -270003,19 +273912,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [63148] = 7, - ACTIONS(247), 1, + [58012] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5271), 1, - sym__newline, - STATE(2214), 1, - aux_sym_shebang_repeat1, - STATE(2329), 1, + ACTIONS(5027), 1, + aux_sym_cmd_identifier_token37, + STATE(2344), 1, sym_comment, - ACTIONS(5233), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5214), 8, + ACTIONS(2289), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -270024,7 +273929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5216), 45, + ACTIONS(2291), 47, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -270036,6 +273941,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, @@ -270070,15 +273977,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [63222] = 5, - ACTIONS(247), 1, + [58082] = 15, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2330), 1, + ACTIONS(5361), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5363), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5455), 1, + sym__newline, + STATE(2345), 1, sym_comment, - ACTIONS(5259), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5054), 8, + STATE(2408), 1, + aux_sym_shebang_repeat1, + ACTIONS(5319), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5355), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5357), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5359), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5353), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5367), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5369), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5297), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -270087,8 +274028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5052), 47, - sym__newline, + ACTIONS(5299), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -270100,33 +274040,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -270135,37 +274052,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [63292] = 11, - ACTIONS(247), 1, + [58172] = 11, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5307), 1, + ACTIONS(5418), 1, sym__newline, - STATE(2260), 1, - aux_sym_shebang_repeat1, - STATE(2331), 1, + STATE(2346), 1, sym_comment, - ACTIONS(5233), 2, + STATE(2359), 1, + aux_sym_shebang_repeat1, + ACTIONS(5319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5237), 2, + ACTIONS(5355), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5239), 2, + ACTIONS(5357), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5235), 4, + ACTIONS(5353), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5243), 6, + ACTIONS(5369), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5218), 8, + ACTIONS(5259), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -270174,7 +274091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5220), 31, + ACTIONS(5261), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -270206,45 +274123,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [63374] = 13, - ACTIONS(247), 1, + [58254] = 15, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5276), 1, + ACTIONS(5435), 1, aux_sym_expr_binary_parenthesized_token13, - STATE(2043), 1, + ACTIONS(5445), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5447), 1, + aux_sym_expr_binary_parenthesized_token15, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(2332), 1, + STATE(2347), 1, sym_comment, - ACTIONS(5222), 2, + ACTIONS(5345), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5226), 2, + ACTIONS(5349), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5228), 2, + ACTIONS(5351), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5274), 2, + ACTIONS(5414), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5224), 4, + ACTIONS(5347), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5284), 4, + ACTIONS(5406), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5286), 6, + ACTIONS(5408), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5195), 9, + ACTIONS(5289), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -270254,7 +274175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5197), 24, + ACTIONS(5291), 22, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -270266,8 +274187,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, @@ -270279,14 +274198,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [63460] = 5, - ACTIONS(247), 1, + [58344] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5328), 1, - anon_sym_LBRACK2, - STATE(2333), 1, + ACTIONS(5041), 1, + aux_sym_cmd_identifier_token37, + STATE(2348), 1, sym_comment, - ACTIONS(2313), 8, + ACTIONS(2289), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -270295,8 +274214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2317), 48, - ts_builtin_sym_end, + ACTIONS(2291), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270308,6 +274226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -270344,30 +274263,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [63530] = 10, - ACTIONS(247), 1, + [58414] = 16, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5307), 1, + ACTIONS(5361), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5363), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5365), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(5455), 1, sym__newline, - STATE(2279), 1, - aux_sym_shebang_repeat1, - STATE(2334), 1, + STATE(2349), 1, sym_comment, - ACTIONS(5233), 2, + STATE(2410), 1, + aux_sym_shebang_repeat1, + ACTIONS(5319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5237), 2, + ACTIONS(5355), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5239), 2, + ACTIONS(5357), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5235), 4, + ACTIONS(5359), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5353), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5218), 8, + ACTIONS(5367), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5369), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5297), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -270376,7 +274316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5220), 37, + ACTIONS(5299), 22, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -270388,24 +274328,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -270414,50 +274339,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [63610] = 15, - ACTIONS(247), 1, + [58506] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5276), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5278), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5280), 1, - aux_sym_expr_binary_parenthesized_token15, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(2335), 1, + ACTIONS(5041), 1, + aux_sym_cmd_identifier_token37, + STATE(2350), 1, sym_comment, - ACTIONS(5222), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5226), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5228), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5274), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5224), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5284), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5286), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5140), 9, - sym__newline, + ACTIONS(2281), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -270466,7 +274355,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5142), 22, + ACTIONS(2285), 48, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -270477,10 +274367,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -270489,49 +274404,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [63700] = 15, - ACTIONS(247), 1, + [58576] = 16, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5276), 1, + ACTIONS(5435), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5278), 1, + ACTIONS(5445), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5280), 1, + ACTIONS(5447), 1, aux_sym_expr_binary_parenthesized_token15, - STATE(2043), 1, + ACTIONS(5449), 1, + aux_sym_expr_binary_parenthesized_token16, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(2336), 1, + STATE(2351), 1, sym_comment, - ACTIONS(5222), 2, + ACTIONS(5345), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5226), 2, + ACTIONS(5349), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5228), 2, + ACTIONS(5351), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5274), 2, + ACTIONS(5414), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5224), 4, + ACTIONS(5347), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5284), 4, + ACTIONS(5406), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5286), 6, + ACTIONS(5408), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5203), 9, + ACTIONS(5289), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -270541,7 +274458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5205), 22, + ACTIONS(5291), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -270553,7 +274470,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, @@ -270564,12 +274480,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [63790] = 4, - ACTIONS(247), 1, + [58668] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2337), 1, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(2352), 1, sym_comment, - ACTIONS(2338), 9, + ACTIONS(5345), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5349), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5347), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5244), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -270579,7 +274508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2340), 48, + ACTIONS(5246), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -270591,15 +274520,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, @@ -270628,345 +274548,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [63858] = 37, - ACTIONS(191), 1, - anon_sym_DOT_DOT, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(397), 1, - anon_sym_DASH, - ACTIONS(3215), 1, - anon_sym_null, - ACTIONS(3265), 1, - anon_sym_LBRACK, - ACTIONS(3271), 1, - anon_sym_LBRACE, - ACTIONS(3315), 1, - aux_sym_expr_unary_token1, - ACTIONS(3317), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3319), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3321), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3323), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4972), 1, - anon_sym_LPAREN, - ACTIONS(4974), 1, - anon_sym_DOLLAR, - STATE(1418), 1, - sym__str_double_quotes, - STATE(1445), 1, - sym_expr_parenthesized, - STATE(1446), 1, - sym_val_variable, - STATE(1646), 1, - sym__expr_unary_minus, - STATE(1647), 1, - sym__val_number, - STATE(1729), 1, - sym__inter_single_quotes, - STATE(1732), 1, - sym__inter_double_quotes, - STATE(2338), 1, - sym_comment, - STATE(2846), 1, - sym__val_number_decimal, - STATE(3520), 1, - sym_val_range, - STATE(3822), 1, - sym__expr_binary_expression, - STATE(5615), 1, - sym__expression, - ACTIONS(213), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3213), 2, - anon_sym_true, - anon_sym_false, - STATE(1687), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1643), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [63992] = 37, - ACTIONS(191), 1, - anon_sym_DOT_DOT, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(397), 1, - anon_sym_DASH, - ACTIONS(3215), 1, - anon_sym_null, - ACTIONS(3265), 1, - anon_sym_LBRACK, - ACTIONS(3271), 1, - anon_sym_LBRACE, - ACTIONS(3315), 1, - aux_sym_expr_unary_token1, - ACTIONS(3317), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3319), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3321), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3323), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4972), 1, - anon_sym_LPAREN, - ACTIONS(4974), 1, - anon_sym_DOLLAR, - STATE(1418), 1, - sym__str_double_quotes, - STATE(1445), 1, - sym_expr_parenthesized, - STATE(1446), 1, - sym_val_variable, - STATE(1646), 1, - sym__expr_unary_minus, - STATE(1647), 1, - sym__val_number, - STATE(1729), 1, - sym__inter_single_quotes, - STATE(1732), 1, - sym__inter_double_quotes, - STATE(2339), 1, - sym_comment, - STATE(2846), 1, - sym__val_number_decimal, - STATE(3520), 1, - sym_val_range, - STATE(3822), 1, - sym__expr_binary_expression, - STATE(5551), 1, - sym__expression, - ACTIONS(213), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3213), 2, - anon_sym_true, - anon_sym_false, - STATE(1687), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1643), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [64126] = 37, - ACTIONS(191), 1, - anon_sym_DOT_DOT, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(397), 1, - anon_sym_DASH, - ACTIONS(3215), 1, - anon_sym_null, - ACTIONS(3265), 1, - anon_sym_LBRACK, - ACTIONS(3271), 1, - anon_sym_LBRACE, - ACTIONS(3315), 1, - aux_sym_expr_unary_token1, - ACTIONS(3317), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3319), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3321), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3323), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4972), 1, - anon_sym_LPAREN, - ACTIONS(4974), 1, - anon_sym_DOLLAR, - STATE(1418), 1, - sym__str_double_quotes, - STATE(1445), 1, - sym_expr_parenthesized, - STATE(1446), 1, - sym_val_variable, - STATE(1646), 1, - sym__expr_unary_minus, - STATE(1647), 1, - sym__val_number, - STATE(1729), 1, - sym__inter_single_quotes, - STATE(1732), 1, - sym__inter_double_quotes, - STATE(2340), 1, - sym_comment, - STATE(2846), 1, - sym__val_number_decimal, - STATE(3520), 1, - sym_val_range, - STATE(3822), 1, - sym__expr_binary_expression, - STATE(5559), 1, - sym__expression, - ACTIONS(213), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3213), 2, - anon_sym_true, - anon_sym_false, - STATE(1687), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1643), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [64260] = 17, - ACTIONS(247), 1, + [58744] = 17, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5276), 1, + ACTIONS(5361), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5278), 1, + ACTIONS(5363), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5280), 1, + ACTIONS(5365), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5282), 1, + ACTIONS(5401), 1, aux_sym_expr_binary_parenthesized_token16, - ACTIONS(5305), 1, - aux_sym_expr_binary_parenthesized_token17, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(2341), 1, + ACTIONS(5455), 1, + sym__newline, + STATE(2353), 1, sym_comment, - ACTIONS(5222), 2, + STATE(2412), 1, + aux_sym_shebang_repeat1, + ACTIONS(5319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5226), 2, + ACTIONS(5355), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5228), 2, + ACTIONS(5357), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5274), 2, + ACTIONS(5359), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5224), 4, + ACTIONS(5353), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5284), 4, + ACTIONS(5367), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5286), 6, + ACTIONS(5369), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5195), 9, - sym__newline, + ACTIONS(5297), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -270975,7 +274603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5197), 20, + ACTIONS(5299), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -270987,6 +274615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -270996,147 +274625,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [64354] = 8, - ACTIONS(247), 1, + [58838] = 17, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5271), 1, + ACTIONS(5361), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5363), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5365), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(5401), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(5403), 1, sym__newline, - STATE(2244), 1, + STATE(2293), 1, aux_sym_shebang_repeat1, - STATE(2342), 1, + STATE(2354), 1, sym_comment, - ACTIONS(5233), 2, + ACTIONS(5319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5235), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5214), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5216), 41, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + ACTIONS(5355), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5357), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5359), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, + ACTIONS(5353), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5367), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5369), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [64430] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5212), 1, - aux_sym__immediate_decimal_token2, - STATE(2343), 1, - sym_comment, - ACTIONS(1518), 10, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - ACTIONS(1520), 46, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [64500] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5123), 1, - sym__newline, - STATE(2344), 1, - sym_comment, - ACTIONS(5130), 8, + ACTIONS(5252), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -271145,7 +274680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5126), 20, + ACTIONS(5254), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -271157,7 +274692,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -271166,57 +274702,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(5128), 28, + [58932] = 17, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5435), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5445), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5447), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(5449), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(5451), 1, + aux_sym_expr_binary_parenthesized_token17, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(2355), 1, + sym_comment, + ACTIONS(5345), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5349), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5351), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5414), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, + ACTIONS(5347), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5406), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5408), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [64572] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(2345), 1, - sym_comment, - ACTIONS(5222), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5226), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5228), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5224), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5195), 9, + ACTIONS(5289), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -271226,7 +274758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5197), 37, + ACTIONS(5291), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -271238,24 +274770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -271264,19 +274779,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [64650] = 7, - ACTIONS(247), 1, + [59026] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5230), 1, - sym__newline, - STATE(2245), 1, - aux_sym_shebang_repeat1, - STATE(2346), 1, + STATE(2356), 1, sym_comment, - ACTIONS(5233), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5148), 8, + ACTIONS(1364), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -271285,7 +274794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5150), 45, + ACTIONS(1362), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -271297,6 +274806,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, @@ -271331,89 +274843,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [64724] = 16, - ACTIONS(247), 1, + [59094] = 18, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5276), 1, + ACTIONS(5361), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5278), 1, + ACTIONS(5363), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5280), 1, + ACTIONS(5365), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5282), 1, + ACTIONS(5401), 1, aux_sym_expr_binary_parenthesized_token16, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(2347), 1, + ACTIONS(5410), 1, + sym__newline, + ACTIONS(5412), 1, + aux_sym_expr_binary_parenthesized_token17, + STATE(2357), 1, sym_comment, - ACTIONS(5222), 2, + STATE(2414), 1, + aux_sym_shebang_repeat1, + ACTIONS(5319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5226), 2, + ACTIONS(5355), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5228), 2, + ACTIONS(5357), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5274), 2, + ACTIONS(5359), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5224), 4, + ACTIONS(5353), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5284), 4, + ACTIONS(5367), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5286), 6, + ACTIONS(5369), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5203), 9, - sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5205), 21, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [64816] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2348), 1, - sym_comment, - ACTIONS(2348), 9, - sym__newline, + ACTIONS(5297), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -271422,7 +274900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2350), 48, + ACTIONS(5299), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -271434,35 +274912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -271471,12 +274921,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [64884] = 4, - ACTIONS(247), 1, + [59190] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2349), 1, + STATE(2358), 1, sym_comment, - ACTIONS(1311), 9, + ACTIONS(1090), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -271486,7 +274936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1307), 48, + ACTIONS(1092), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -271535,173 +274985,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [64952] = 4, - ACTIONS(247), 1, + [59258] = 10, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2350), 1, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(2359), 1, sym_comment, - ACTIONS(2380), 9, - sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2382), 48, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, + ACTIONS(5345), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5349), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [65020] = 37, - ACTIONS(217), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(219), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(221), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(223), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(227), 1, - anon_sym_0b, - ACTIONS(231), 1, - sym_val_date, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(397), 1, - anon_sym_DASH, - ACTIONS(3215), 1, - anon_sym_null, - ACTIONS(3265), 1, - anon_sym_LBRACK, - ACTIONS(3271), 1, - anon_sym_LBRACE, - ACTIONS(3315), 1, - aux_sym_expr_unary_token1, - ACTIONS(4972), 1, - anon_sym_LPAREN, - ACTIONS(4974), 1, - anon_sym_DOLLAR, - ACTIONS(5330), 1, - anon_sym_DOT_DOT, - STATE(1418), 1, - sym__str_double_quotes, - STATE(1646), 1, - sym__expr_unary_minus, - STATE(1647), 1, - sym__val_number, - STATE(1729), 1, - sym__inter_single_quotes, - STATE(1732), 1, - sym__inter_double_quotes, - STATE(2351), 1, - sym_comment, - STATE(3504), 1, - sym__val_number_decimal, - STATE(3520), 1, - sym_val_range, - STATE(3564), 1, - sym_expr_parenthesized, - STATE(3565), 1, - sym_val_variable, - STATE(3823), 1, - sym__expr_binary_expression, - STATE(7583), 1, - sym__expression, - ACTIONS(229), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3213), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5332), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1687), 3, - sym_expr_unary, - sym_expr_binary, - sym__value, - ACTIONS(225), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(1643), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [65154] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2352), 1, - sym_comment, - ACTIONS(2384), 9, + ACTIONS(5351), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5347), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5408), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5289), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -271711,7 +275023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2386), 48, + ACTIONS(5291), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -271723,17 +275035,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -271746,12 +275047,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -271760,37 +275055,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [65222] = 11, - ACTIONS(247), 1, + [59338] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5271), 1, + ACTIONS(1558), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5466), 1, + anon_sym_DOLLAR, + ACTIONS(5468), 1, + anon_sym_LPAREN2, + ACTIONS(5472), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5474), 1, + aux_sym__immediate_decimal_token5, + STATE(2360), 1, + sym_comment, + STATE(2885), 1, + sym__immediate_decimal, + ACTIONS(1556), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5470), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3039), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1544), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [59422] = 11, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5455), 1, sym__newline, - STATE(2210), 1, - aux_sym_shebang_repeat1, - STATE(2353), 1, + STATE(2361), 1, sym_comment, - ACTIONS(5233), 2, + STATE(2419), 1, + aux_sym_shebang_repeat1, + ACTIONS(5319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5237), 2, + ACTIONS(5355), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5239), 2, + ACTIONS(5357), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5235), 4, + ACTIONS(5353), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5243), 6, + ACTIONS(5369), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5214), 8, + ACTIONS(5297), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -271799,7 +275166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5216), 31, + ACTIONS(5299), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -271831,27 +275198,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [65304] = 9, - ACTIONS(247), 1, + [59504] = 10, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5271), 1, + ACTIONS(5418), 1, sym__newline, - STATE(2280), 1, - aux_sym_shebang_repeat1, - STATE(2354), 1, + STATE(2362), 1, sym_comment, - ACTIONS(5233), 2, + STATE(2363), 1, + aux_sym_shebang_repeat1, + ACTIONS(5319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5237), 2, + ACTIONS(5355), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5235), 4, + ACTIONS(5357), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5353), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5214), 8, + ACTIONS(5259), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -271860,7 +275230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5216), 39, + ACTIONS(5261), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -271872,8 +275242,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -271900,14 +275268,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [65382] = 5, - ACTIONS(3), 1, + [59584] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4816), 1, - aux_sym_cmd_identifier_token37, - STATE(2355), 1, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(2363), 1, sym_comment, - ACTIONS(2253), 9, + ACTIONS(5345), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5349), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5351), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5347), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5289), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -271917,7 +275299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2255), 47, + ACTIONS(5291), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -271929,16 +275311,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -271965,14 +275337,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [65452] = 5, - ACTIONS(3), 1, + [59662] = 17, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4771), 1, - aux_sym_cmd_identifier_token37, - STATE(2356), 1, + ACTIONS(5435), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5445), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5447), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(5449), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(5451), 1, + aux_sym_expr_binary_parenthesized_token17, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(2364), 1, sym_comment, - ACTIONS(2253), 8, + ACTIONS(5345), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5349), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5351), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5414), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5347), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5406), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5408), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5244), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -271981,8 +275393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2255), 48, - sym__newline, + ACTIONS(5246), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -271993,35 +275404,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -272030,15 +275414,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [65522] = 5, - ACTIONS(3), 1, + [59756] = 10, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4816), 1, - aux_sym_cmd_identifier_token37, - STATE(2357), 1, - sym_comment, - ACTIONS(2229), 9, + ACTIONS(5455), 1, sym__newline, + STATE(2365), 1, + sym_comment, + STATE(2421), 1, + aux_sym_shebang_repeat1, + ACTIONS(5319), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5355), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5357), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5353), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5297), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272047,7 +275446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2233), 47, + ACTIONS(5299), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -272059,16 +275458,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -272095,80 +275484,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [65592] = 5, - ACTIONS(3), 1, + [59836] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4946), 1, - aux_sym_cmd_identifier_token37, - STATE(2358), 1, + STATE(2366), 1, sym_comment, - ACTIONS(2253), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2255), 48, + ACTIONS(1058), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(1060), 50, + sym_raw_string_begin, ts_builtin_sym_end, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [65662] = 5, - ACTIONS(3), 1, + anon_sym_LBRACK, + sym_wild_card, + anon_sym_QMARK2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [59904] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4816), 1, - aux_sym_cmd_identifier_token37, - STATE(2359), 1, - sym_comment, - ACTIONS(1560), 9, + ACTIONS(5316), 1, sym__newline, + STATE(2284), 1, + aux_sym_shebang_repeat1, + STATE(2367), 1, + sym_comment, + ACTIONS(5319), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5353), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5263), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272177,7 +275574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1572), 47, + ACTIONS(5265), 41, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -272189,12 +275586,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, aux_sym_expr_binary_parenthesized_token9, @@ -272225,47 +275616,285 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [65732] = 14, - ACTIONS(247), 1, + [59980] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5249), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5296), 1, + STATE(2368), 1, + sym_comment, + ACTIONS(1062), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(1064), 50, + sym_raw_string_begin, + ts_builtin_sym_end, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, - STATE(2320), 1, - aux_sym_shebang_repeat1, - STATE(2360), 1, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_wild_card, + anon_sym_QMARK2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [60048] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2369), 1, sym_comment, - ACTIONS(5233), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5237), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5239), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5247), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5235), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5241), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5243), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5199), 8, + ACTIONS(1038), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(1040), 50, + sym_raw_string_begin, + ts_builtin_sym_end, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_wild_card, + anon_sym_QMARK2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [60116] = 18, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1345), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1347), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3296), 1, + aux_sym_record_entry_token1, + ACTIONS(3842), 1, + anon_sym_DQUOTE, + ACTIONS(3848), 1, + sym_raw_string_begin, + ACTIONS(4895), 1, + aux_sym_cmd_identifier_token38, + STATE(2370), 1, + sym_comment, + STATE(4162), 1, + sym_val_string, + STATE(4187), 1, + sym_cmd_identifier, + STATE(7312), 1, + sym__val_number_decimal, + STATE(7763), 1, + sym__command_name, + ACTIONS(1343), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3844), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4434), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4889), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4893), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4891), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [60212] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2371), 1, + sym_comment, + ACTIONS(1054), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(1056), 50, + sym_raw_string_begin, + ts_builtin_sym_end, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_wild_card, + anon_sym_QMARK2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [60280] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5285), 1, + aux_sym_cmd_identifier_token41, + STATE(2372), 1, + sym_comment, + ACTIONS(2293), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272274,7 +275903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5201), 24, + ACTIONS(2297), 47, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -272286,11 +275915,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -272299,14 +275951,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [65820] = 5, + [60350] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4771), 1, + ACTIONS(5087), 1, aux_sym_cmd_identifier_token37, - STATE(2361), 1, + STATE(2373), 1, sym_comment, - ACTIONS(2229), 8, + ACTIONS(1628), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272315,7 +275967,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2233), 48, + ACTIONS(1640), 48, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272327,7 +275980,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -272364,110 +276016,391 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [65890] = 17, - ACTIONS(247), 1, + [60420] = 18, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5276), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5278), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5280), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5282), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(5305), 1, - aux_sym_expr_binary_parenthesized_token17, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(2362), 1, + ACTIONS(1345), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1347), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3294), 1, + aux_sym_record_entry_token1, + ACTIONS(3842), 1, + anon_sym_DQUOTE, + ACTIONS(3848), 1, + sym_raw_string_begin, + ACTIONS(4895), 1, + aux_sym_cmd_identifier_token38, + STATE(2374), 1, sym_comment, - ACTIONS(5222), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5226), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5228), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5274), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5224), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5284), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5286), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5203), 9, + STATE(4162), 1, + sym_val_string, + STATE(4187), 1, + sym_cmd_identifier, + STATE(7312), 1, + sym__val_number_decimal, + STATE(7763), 1, + sym__command_name, + ACTIONS(1343), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3844), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4434), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4889), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4893), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4891), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [60516] = 18, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1345), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1347), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3294), 1, + aux_sym_record_entry_token1, + ACTIONS(3842), 1, + anon_sym_DQUOTE, + ACTIONS(3848), 1, + sym_raw_string_begin, + ACTIONS(4895), 1, + aux_sym_cmd_identifier_token38, + STATE(2375), 1, + sym_comment, + STATE(4162), 1, + sym_val_string, + STATE(4187), 1, + sym_cmd_identifier, + STATE(6271), 1, + sym__command_name, + STATE(7312), 1, + sym__val_number_decimal, + ACTIONS(1343), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3844), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4434), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4889), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4893), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4891), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [60612] = 18, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1345), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1347), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3294), 1, + aux_sym_record_entry_token1, + ACTIONS(3842), 1, + anon_sym_DQUOTE, + ACTIONS(3848), 1, + sym_raw_string_begin, + ACTIONS(4895), 1, + aux_sym_cmd_identifier_token38, + STATE(2376), 1, + sym_comment, + STATE(4162), 1, + sym_val_string, + STATE(4187), 1, + sym_cmd_identifier, + STATE(5764), 1, + sym__command_name, + STATE(7312), 1, + sym__val_number_decimal, + ACTIONS(1343), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3844), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4434), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4889), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4893), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4891), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [60708] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2377), 1, + sym_comment, + ACTIONS(1074), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(1076), 50, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5205), 20, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token18, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [65984] = 9, - ACTIONS(247), 1, + anon_sym_RBRACE, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [60776] = 18, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2363), 1, + ACTIONS(1345), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1347), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3294), 1, + aux_sym_record_entry_token1, + ACTIONS(5427), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(5429), 1, + anon_sym_DQUOTE, + ACTIONS(5433), 1, + sym_raw_string_begin, + STATE(1453), 1, + sym__command_name, + STATE(2378), 1, + sym_comment, + STATE(2493), 1, + sym_cmd_identifier, + STATE(2494), 1, + sym_val_string, + STATE(7107), 1, + sym__val_number_decimal, + ACTIONS(1343), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(5431), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(2500), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5421), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(5425), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(5423), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [60872] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1103), 1, + aux_sym_record_entry_token1, + STATE(2379), 1, sym_comment, - ACTIONS(5259), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5263), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(5265), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(5261), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5269), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - ACTIONS(5054), 8, + ACTIONS(1090), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272476,8 +276409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5052), 33, - sym__newline, + ACTIONS(1092), 47, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -272488,8 +276420,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, aux_sym_expr_binary_token13, @@ -272502,6 +276443,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -272510,109 +276457,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [66062] = 4, - ACTIONS(247), 1, + [60942] = 18, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2364), 1, - sym_comment, - ACTIONS(1832), 9, - sym__newline, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1834), 48, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5361), 1, aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5363), 1, aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5365), 1, aux_sym_expr_binary_parenthesized_token15, + ACTIONS(5401), 1, aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [66130] = 13, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5271), 1, + ACTIONS(5410), 1, sym__newline, - STATE(2318), 1, + ACTIONS(5412), 1, + aux_sym_expr_binary_parenthesized_token17, + STATE(2295), 1, aux_sym_shebang_repeat1, - STATE(2365), 1, + STATE(2380), 1, sym_comment, - ACTIONS(5233), 2, + ACTIONS(5319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5237), 2, + ACTIONS(5355), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5239), 2, + ACTIONS(5357), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5247), 2, + ACTIONS(5359), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5235), 4, + ACTIONS(5353), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5241), 4, + ACTIONS(5367), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5243), 6, + ACTIONS(5369), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5214), 8, + ACTIONS(5252), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272621,7 +276514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5216), 25, + ACTIONS(5254), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -272633,11 +276526,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -272647,83 +276535,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [66216] = 10, - ACTIONS(247), 1, + [61038] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5271), 1, + ACTIONS(5316), 1, sym__newline, - STATE(2345), 1, + STATE(2352), 1, aux_sym_shebang_repeat1, - STATE(2366), 1, + STATE(2381), 1, sym_comment, - ACTIONS(5233), 2, + ACTIONS(5319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5237), 2, + ACTIONS(5355), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5239), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5235), 4, + ACTIONS(5353), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5214), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5216), 37, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [66296] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2367), 1, - sym_comment, - ACTIONS(2253), 9, - sym__newline, + ACTIONS(5263), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272732,7 +276564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2255), 48, + ACTIONS(5265), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -272744,15 +276576,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, @@ -272781,12 +276604,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [66364] = 4, - ACTIONS(247), 1, + [61116] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2368), 1, + ACTIONS(5285), 1, + aux_sym_cmd_identifier_token41, + STATE(2382), 1, sym_comment, - ACTIONS(4984), 9, + ACTIONS(2303), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -272796,7 +276621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4982), 48, + ACTIONS(2305), 47, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -272808,7 +276633,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -272845,111 +276669,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [66432] = 4, - ACTIONS(247), 1, + [61186] = 18, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2369), 1, + ACTIONS(1345), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1347), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3068), 1, + anon_sym_DQUOTE, + ACTIONS(3074), 1, + sym_raw_string_begin, + ACTIONS(5196), 1, + aux_sym_cmd_identifier_token38, + STATE(2252), 1, + aux_sym_command_list_repeat1, + STATE(2383), 1, sym_comment, - ACTIONS(4894), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(4892), 49, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LPAREN2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [66500] = 14, - ACTIONS(247), 1, + STATE(6970), 1, + sym__command_name, + STATE(7403), 1, + sym__val_number_decimal, + STATE(7604), 1, + sym_cmd_identifier, + STATE(7605), 1, + sym_val_string, + ACTIONS(1343), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3070), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5521), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5190), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(5194), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(5192), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [61282] = 12, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5249), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5271), 1, + ACTIONS(5316), 1, sym__newline, - STATE(2332), 1, + STATE(2256), 1, aux_sym_shebang_repeat1, - STATE(2370), 1, + STATE(2384), 1, sym_comment, - ACTIONS(5233), 2, + ACTIONS(5319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5237), 2, + ACTIONS(5355), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5239), 2, + ACTIONS(5357), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5247), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5235), 4, + ACTIONS(5353), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5241), 4, + ACTIONS(5367), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5243), 6, + ACTIONS(5369), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5214), 8, + ACTIONS(5263), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -272958,7 +276791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5216), 24, + ACTIONS(5265), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -272970,6 +276803,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, @@ -272983,51 +276819,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [66588] = 16, - ACTIONS(247), 1, + [61366] = 10, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5230), 1, - sym__newline, - ACTIONS(5249), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5251), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5253), 1, - aux_sym_expr_binary_parenthesized_token15, - STATE(2278), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(2371), 1, + STATE(2385), 1, sym_comment, - ACTIONS(5233), 2, + ACTIONS(5345), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5237), 2, + ACTIONS(5349), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5239), 2, + ACTIONS(5351), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5247), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5235), 4, + ACTIONS(5347), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5241), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5243), 6, + ACTIONS(5408), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5148), 8, + ACTIONS(5244), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -273036,7 +276857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5150), 22, + ACTIONS(5246), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -273048,9 +276869,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -273059,92 +276889,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [66680] = 19, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1338), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1340), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3860), 1, - anon_sym_DQUOTE, - ACTIONS(4874), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5173), 1, - anon_sym_DASH_DASH, - STATE(1990), 1, - sym_val_string, - STATE(2002), 1, - sym__str_double_quotes, - STATE(2012), 1, - sym_cmd_identifier, - STATE(2372), 1, - sym_comment, - STATE(2375), 1, - aux_sym_decl_def_repeat1, - STATE(2797), 1, - sym_long_flag, - STATE(6446), 1, - sym__command_name, - STATE(7094), 1, - sym__val_number_decimal, - ACTIONS(1336), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3862), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4868), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(4872), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4870), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [66778] = 4, - ACTIONS(247), 1, + [61446] = 9, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2373), 1, - sym_comment, - ACTIONS(5334), 9, + ACTIONS(5403), 1, sym__newline, + STATE(2276), 1, + aux_sym_shebang_repeat1, + STATE(2386), 1, + sym_comment, + ACTIONS(5319), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5355), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5353), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5252), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -273153,7 +276918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5128), 48, + ACTIONS(5254), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -273165,15 +276930,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, @@ -273202,54 +276958,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [66846] = 19, - ACTIONS(247), 1, + [61524] = 18, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1338), 1, + ACTIONS(1345), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1340), 1, + ACTIONS(1347), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3860), 1, + ACTIONS(3068), 1, anon_sym_DQUOTE, - ACTIONS(4874), 1, + ACTIONS(3074), 1, + sym_raw_string_begin, + ACTIONS(5196), 1, aux_sym_cmd_identifier_token38, - ACTIONS(5173), 1, - anon_sym_DASH_DASH, - STATE(1990), 1, - sym_val_string, - STATE(2002), 1, - sym__str_double_quotes, - STATE(2012), 1, - sym_cmd_identifier, - STATE(2374), 1, + STATE(2252), 1, + aux_sym_command_list_repeat1, + STATE(2387), 1, sym_comment, - STATE(2376), 1, - aux_sym_decl_def_repeat1, - STATE(2797), 1, - sym_long_flag, - STATE(6460), 1, + STATE(7141), 1, sym__command_name, - STATE(7094), 1, + STATE(7403), 1, sym__val_number_decimal, - ACTIONS(1336), 2, + STATE(7604), 1, + sym_cmd_identifier, + STATE(7605), 1, + sym_val_string, + ACTIONS(1343), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3862), 2, + ACTIONS(3070), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4868), 5, + STATE(5521), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5190), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4872), 5, + ACTIONS(5194), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(4870), 31, + ACTIONS(5192), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -273281,54 +277036,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [66944] = 19, - ACTIONS(247), 1, + [61620] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1338), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1340), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3860), 1, - anon_sym_DQUOTE, - ACTIONS(4874), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5173), 1, - anon_sym_DASH_DASH, - STATE(1990), 1, - sym_val_string, - STATE(2002), 1, - sym__str_double_quotes, - STATE(2012), 1, - sym_cmd_identifier, - STATE(2375), 1, + STATE(2388), 1, sym_comment, - STATE(2626), 1, - aux_sym_decl_def_repeat1, - STATE(2797), 1, - sym_long_flag, - STATE(6461), 1, - sym__command_name, - STATE(7094), 1, - sym__val_number_decimal, - ACTIONS(1336), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3862), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4868), 5, + ACTIONS(1066), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4872), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4870), 31, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(1068), 50, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -273360,54 +277082,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [67042] = 19, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1338), 1, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(1340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3860), 1, anon_sym_DQUOTE, - ACTIONS(4874), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5173), 1, - anon_sym_DASH_DASH, - STATE(1990), 1, - sym_val_string, - STATE(2002), 1, - sym__str_double_quotes, - STATE(2012), 1, - sym_cmd_identifier, - STATE(2376), 1, - sym_comment, - STATE(2626), 1, - aux_sym_decl_def_repeat1, - STATE(2797), 1, - sym_long_flag, - STATE(6466), 1, - sym__command_name, - STATE(7094), 1, - sym__val_number_decimal, - ACTIONS(1336), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3862), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4868), 5, + [61688] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2389), 1, + sym_comment, + ACTIONS(1070), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4872), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4870), 31, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(1072), 50, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -273439,13 +277146,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [67140] = 4, - ACTIONS(247), 1, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [61756] = 13, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2377), 1, - sym_comment, - ACTIONS(5010), 9, + ACTIONS(5316), 1, sym__newline, + STATE(2264), 1, + aux_sym_shebang_repeat1, + STATE(2390), 1, + sym_comment, + ACTIONS(5319), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5355), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5357), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5359), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5353), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5367), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5369), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5263), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -273454,7 +277211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5008), 48, + ACTIONS(5265), 25, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -273466,35 +277223,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -273503,30 +277237,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [67208] = 10, - ACTIONS(247), 1, + [61842] = 11, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5296), 1, + ACTIONS(5403), 1, sym__newline, - STATE(2325), 1, + STATE(2297), 1, aux_sym_shebang_repeat1, - STATE(2378), 1, + STATE(2391), 1, sym_comment, - ACTIONS(5233), 2, + ACTIONS(5319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5237), 2, + ACTIONS(5355), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5239), 2, + ACTIONS(5357), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5235), 4, + ACTIONS(5353), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5199), 8, + ACTIONS(5369), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5252), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -273535,7 +277276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5201), 37, + ACTIONS(5254), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -273559,12 +277300,80 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [61924] = 14, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5316), 1, + sym__newline, + ACTIONS(5361), 1, + aux_sym_expr_binary_parenthesized_token13, + STATE(2292), 1, + aux_sym_shebang_repeat1, + STATE(2392), 1, + sym_comment, + ACTIONS(5319), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5355), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5357), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5359), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5353), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5367), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5369), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5263), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5265), 24, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -273573,12 +277382,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [67288] = 4, - ACTIONS(247), 1, + [62012] = 6, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2379), 1, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(2393), 1, sym_comment, - ACTIONS(1822), 9, + ACTIONS(5345), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5305), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -273588,7 +277402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1826), 48, + ACTIONS(5307), 45, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -273600,9 +277414,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, @@ -273637,47 +277448,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [67356] = 14, - ACTIONS(247), 1, + [62084] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5276), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5278), 1, - aux_sym_expr_binary_parenthesized_token14, - STATE(2043), 1, + ACTIONS(5087), 1, + aux_sym_cmd_identifier_token37, + STATE(2394), 1, + sym_comment, + ACTIONS(2281), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2285), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [62154] = 7, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(2380), 1, + STATE(2395), 1, sym_comment, - ACTIONS(5222), 2, + ACTIONS(5345), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5226), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5228), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5274), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5224), 4, + ACTIONS(5347), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5284), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5286), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5195), 9, + ACTIONS(5305), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -273687,7 +277538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5197), 23, + ACTIONS(5307), 41, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -273699,10 +277550,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -273711,25 +277580,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [67444] = 6, - ACTIONS(247), 1, + [62228] = 18, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5336), 1, - anon_sym_DOT, - STATE(2478), 1, - sym_path, - STATE(2381), 2, + ACTIONS(1345), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1347), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3068), 1, + anon_sym_DQUOTE, + ACTIONS(3074), 1, + sym_raw_string_begin, + ACTIONS(5196), 1, + aux_sym_cmd_identifier_token38, + STATE(2252), 1, + aux_sym_command_list_repeat1, + STATE(2396), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1015), 6, + STATE(7174), 1, + sym__command_name, + STATE(7403), 1, + sym__val_number_decimal, + STATE(7604), 1, + sym_cmd_identifier, + STATE(7605), 1, + sym_val_string, + ACTIONS(1343), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3070), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5521), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5190), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1017), 48, - ts_builtin_sym_end, + ACTIONS(5194), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(5192), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -273761,30 +277658,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [67516] = 5, - ACTIONS(247), 1, + [62324] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1083), 1, - aux_sym_record_entry_token1, - STATE(2382), 1, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(2397), 1, sym_comment, - ACTIONS(1070), 9, + ACTIONS(5345), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5349), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5347), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5305), 9, sym__newline, anon_sym_err_GT, anon_sym_out_GT, @@ -273794,7 +277686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1072), 47, + ACTIONS(5307), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -273805,35 +277697,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -273842,12 +277726,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [67586] = 4, - ACTIONS(247), 1, + [62400] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2383), 1, + ACTIONS(5476), 1, + aux_sym_cmd_identifier_token41, + STATE(2398), 1, sym_comment, - ACTIONS(4844), 8, + ACTIONS(2293), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -273856,8 +277742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4842), 48, - ts_builtin_sym_end, + ACTIONS(2297), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273869,6 +277754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -273905,12 +277791,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [67653] = 4, - ACTIONS(247), 1, + [62470] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2384), 1, + ACTIONS(5476), 1, + aux_sym_cmd_identifier_token41, + STATE(2399), 1, sym_comment, - ACTIONS(2305), 8, + ACTIONS(2303), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -273919,8 +277807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2307), 48, - ts_builtin_sym_end, + ACTIONS(2305), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273932,6 +277819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -273968,12 +277856,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [67720] = 4, - ACTIONS(247), 1, + [62540] = 11, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2385), 1, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(2400), 1, sym_comment, - ACTIONS(2458), 8, + ACTIONS(5345), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5349), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5351), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5347), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5406), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5408), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5305), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -273982,9 +277899,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2460), 48, - ts_builtin_sym_end, + ACTIONS(5307), 27, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [62622] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(2401), 1, + sym_comment, + ACTIONS(5345), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5244), 9, sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5246), 45, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -273995,34 +277958,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -274031,12 +277993,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [67787] = 4, - ACTIONS(247), 1, + [62694] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2386), 1, + STATE(2402), 1, sym_comment, - ACTIONS(5046), 8, + ACTIONS(1909), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274045,9 +278008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5044), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(1911), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -274058,34 +278019,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -274094,42 +278057,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [67854] = 14, - ACTIONS(247), 1, + [62762] = 15, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1494), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(3713), 1, - anon_sym_DOLLAR, - ACTIONS(5339), 1, - anon_sym_LPAREN2, - ACTIONS(5341), 1, - anon_sym_DOT, - ACTIONS(5343), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5345), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5347), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5349), 1, - aux_sym__immediate_decimal_token5, - STATE(2387), 1, + ACTIONS(5316), 1, + sym__newline, + ACTIONS(5361), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5363), 1, + aux_sym_expr_binary_parenthesized_token14, + STATE(2307), 1, + aux_sym_shebang_repeat1, + STATE(2403), 1, sym_comment, - STATE(2783), 1, - sym__immediate_decimal, - STATE(2868), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1478), 18, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(5319), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5355), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5357), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5359), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5353), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5367), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5369), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5263), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274138,27 +278108,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1492), 27, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(5265), 23, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -274167,12 +278132,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [67941] = 4, - ACTIONS(247), 1, + [62852] = 12, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2388), 1, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(2404), 1, sym_comment, - ACTIONS(4844), 8, + ACTIONS(5345), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5349), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5351), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5414), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5347), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5406), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5408), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5305), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274181,9 +278178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4842), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5307), 25, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -274194,34 +278189,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -274230,32 +278204,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [68008] = 12, + [62936] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1506), 1, - sym__entry_separator, - ACTIONS(2553), 1, + ACTIONS(2593), 1, anon_sym_DOLLAR, - ACTIONS(5318), 1, + ACTIONS(5267), 1, anon_sym_LPAREN2, - ACTIONS(5351), 1, + ACTIONS(5478), 1, anon_sym_DOT, - ACTIONS(5355), 1, + ACTIONS(5482), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5357), 1, + ACTIONS(5484), 1, aux_sym__immediate_decimal_token5, - STATE(2389), 1, + STATE(2405), 1, sym_comment, - STATE(2803), 1, + STATE(2806), 1, sym__immediate_decimal, - ACTIONS(5353), 2, + ACTIONS(1570), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5480), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, STATE(2802), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1496), 45, + ACTIONS(1560), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -274301,12 +278276,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [68091] = 4, - ACTIONS(247), 1, + [63020] = 13, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2390), 1, + ACTIONS(5435), 1, + aux_sym_expr_binary_parenthesized_token13, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(2406), 1, sym_comment, - ACTIONS(2305), 8, + ACTIONS(5345), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5349), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5351), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5414), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5347), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5406), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5408), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5305), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274315,9 +278324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2307), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5307), 24, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -274328,34 +278335,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -274364,23 +278349,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [68158] = 6, - ACTIONS(3), 1, + [63106] = 14, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5359), 1, + ACTIONS(1526), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(3774), 1, + anon_sym_DOLLAR, + ACTIONS(5486), 1, + anon_sym_LPAREN2, + ACTIONS(5488), 1, anon_sym_DOT, - ACTIONS(5361), 1, - aux_sym__immediate_decimal_token2, - STATE(2391), 1, + ACTIONS(5490), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5492), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5494), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5496), 1, + aux_sym__immediate_decimal_token5, + STATE(2407), 1, sym_comment, - ACTIONS(1520), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - ACTIONS(1518), 48, + STATE(2849), 1, + sym__immediate_decimal, + STATE(2904), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1510), 18, + anon_sym_LPAREN, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1524), 28, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -274389,36 +278404,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -274427,14 +278423,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [68229] = 4, - ACTIONS(247), 1, + [63194] = 14, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2392), 1, + ACTIONS(5435), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5445), 1, + aux_sym_expr_binary_parenthesized_token14, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(2408), 1, sym_comment, - ACTIONS(2462), 8, + ACTIONS(5345), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5349), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5351), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5414), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5347), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5406), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5408), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5305), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274443,9 +278473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2464), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5307), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -274456,97 +278484,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [68296] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5363), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5365), 1, - aux_sym__immediate_decimal_token2, - STATE(2393), 1, - sym_comment, - ACTIONS(1542), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - ACTIONS(1540), 48, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -274555,140 +278497,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [68367] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2394), 1, - sym_comment, - ACTIONS(1518), 10, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - ACTIONS(1520), 46, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [68434] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2395), 1, - sym_comment, - ACTIONS(1540), 10, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - ACTIONS(1542), 46, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [68501] = 4, - ACTIONS(247), 1, + [63282] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2396), 1, + STATE(2409), 1, sym_comment, - ACTIONS(1560), 8, + ACTIONS(1897), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274697,9 +278512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1572), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(1899), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -274710,34 +278523,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -274746,75 +278561,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [68568] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2397), 1, - sym_comment, - ACTIONS(1554), 10, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - ACTIONS(1556), 46, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [68635] = 4, - ACTIONS(247), 1, + [63350] = 15, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2398), 1, + ACTIONS(5435), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5445), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5447), 1, + aux_sym_expr_binary_parenthesized_token15, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(2410), 1, sym_comment, - ACTIONS(2348), 8, + ACTIONS(5345), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5349), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5351), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5414), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5347), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5406), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5408), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5305), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274823,9 +278613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2350), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5307), 22, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -274836,34 +278624,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -274872,12 +278636,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [68702] = 4, - ACTIONS(247), 1, + [63440] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2399), 1, + STATE(2411), 1, sym_comment, - ACTIONS(1070), 8, + ACTIONS(2547), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274886,9 +278651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1072), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(2549), 48, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -274899,34 +278662,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -274935,12 +278700,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [68769] = 4, - ACTIONS(247), 1, + [63508] = 16, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2400), 1, + ACTIONS(5435), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5445), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5447), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(5449), 1, + aux_sym_expr_binary_parenthesized_token16, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(2412), 1, sym_comment, - ACTIONS(4984), 8, + ACTIONS(5345), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5349), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5351), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5414), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5347), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5406), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5408), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5305), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -274949,9 +278754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4982), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5307), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -274962,34 +278765,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -274998,75 +278776,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [68836] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2401), 1, - sym_comment, - ACTIONS(1653), 10, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - ACTIONS(1655), 46, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [68903] = 4, - ACTIONS(247), 1, + [63600] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2402), 1, + STATE(2413), 1, sym_comment, - ACTIONS(1848), 8, + ACTIONS(5321), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5133), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -275075,8 +278793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1850), 48, - ts_builtin_sym_end, + ACTIONS(5131), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -275088,8 +278805,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, + anon_sym_RPAREN, + anon_sym_RBRACE, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, @@ -275124,12 +278841,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [68970] = 4, - ACTIONS(247), 1, + [63670] = 17, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5435), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5445), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5447), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(5449), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(5451), 1, + aux_sym_expr_binary_parenthesized_token17, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(2414), 1, + sym_comment, + ACTIONS(5345), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5349), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5351), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5414), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5347), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5406), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5408), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5305), 9, + sym__newline, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5307), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token18, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [63764] = 6, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2403), 1, + STATE(2415), 1, sym_comment, - ACTIONS(2412), 8, + ACTIONS(5321), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5323), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5133), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -275138,8 +278940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2414), 48, - ts_builtin_sym_end, + ACTIONS(5131), 43, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -275151,12 +278952,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, + anon_sym_RPAREN, + anon_sym_RBRACE, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, aux_sym_expr_binary_token9, @@ -275187,10 +278984,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [69037] = 4, - ACTIONS(247), 1, + [63836] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2404), 1, + ACTIONS(5498), 1, + anon_sym_QMARK2, + STATE(2416), 1, sym_comment, ACTIONS(1042), 7, aux_sym_cmd_identifier_token1, @@ -275201,6 +279000,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token38, anon_sym_DOT, ACTIONS(1044), 49, + sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -275242,7 +279042,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, sym_wild_card, - anon_sym_QMARK2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -275250,75 +279049,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [69104] = 4, - ACTIONS(247), 1, + [63906] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2405), 1, - sym_comment, - ACTIONS(1038), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1040), 49, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - sym_wild_card, + ACTIONS(5500), 1, anon_sym_QMARK2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [69171] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2406), 1, + STATE(2417), 1, sym_comment, - ACTIONS(1034), 7, + ACTIONS(1048), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, @@ -275326,7 +279064,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, anon_sym_DOT, - ACTIONS(1036), 49, + ACTIONS(1050), 49, + sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -275368,7 +279107,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, sym_wild_card, - anon_sym_QMARK2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -275376,75 +279114,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [69238] = 4, - ACTIONS(247), 1, + [63976] = 7, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2407), 1, + STATE(2418), 1, sym_comment, - ACTIONS(2328), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2330), 48, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + ACTIONS(5321), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, + ACTIONS(5325), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(5323), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [69305] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2408), 1, - sym_comment, - ACTIONS(2338), 8, + ACTIONS(5133), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -275453,8 +279139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2340), 48, - ts_builtin_sym_end, + ACTIONS(5131), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -275466,14 +279151,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, + anon_sym_RPAREN, + anon_sym_RBRACE, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, aux_sym_expr_binary_token11, @@ -275502,12 +279181,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [69372] = 4, - ACTIONS(247), 1, + [64050] = 10, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2409), 1, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(2419), 1, sym_comment, - ACTIONS(2416), 8, + ACTIONS(5345), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5349), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5351), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5347), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5408), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5305), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -275516,9 +279219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2418), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5307), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -275529,34 +279230,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -275565,138 +279251,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [69439] = 4, - ACTIONS(247), 1, + [64130] = 10, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2410), 1, + STATE(2420), 1, sym_comment, - ACTIONS(1864), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1866), 48, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + ACTIONS(5321), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, + ACTIONS(5325), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, + ACTIONS(5327), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [69506] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2411), 1, - sym_comment, - ACTIONS(2388), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2390), 48, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, + ACTIONS(5323), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, + ACTIONS(5341), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, + ACTIONS(5343), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [69573] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2412), 1, - sym_comment, - ACTIONS(2342), 8, + ACTIONS(5133), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -275705,8 +279291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2344), 48, - ts_builtin_sym_end, + ACTIONS(5131), 29, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -275718,16 +279303,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, + anon_sym_RPAREN, + anon_sym_RBRACE, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, aux_sym_expr_binary_token13, @@ -275736,16 +279313,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token16, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -275754,12 +279321,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [69640] = 4, - ACTIONS(247), 1, + [64210] = 9, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2413), 1, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(2421), 1, sym_comment, - ACTIONS(1872), 8, + ACTIONS(5345), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5349), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5351), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5347), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5305), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -275768,9 +279352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1874), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5307), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -275781,34 +279363,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -275817,75 +279390,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [69707] = 4, - ACTIONS(247), 1, + [64288] = 11, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2414), 1, + STATE(2422), 1, sym_comment, - ACTIONS(1876), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1878), 48, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + ACTIONS(5321), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, + ACTIONS(5325), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, + ACTIONS(5327), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, + ACTIONS(5329), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, + ACTIONS(5323), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5341), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, + ACTIONS(5343), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [69774] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2415), 1, - sym_comment, - ACTIONS(2517), 8, + ACTIONS(5133), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -275894,8 +279433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2519), 48, - ts_builtin_sym_end, + ACTIONS(5131), 27, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -275907,34 +279445,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, + anon_sym_RPAREN, + anon_sym_RBRACE, aux_sym_expr_binary_token13, aux_sym_expr_binary_token14, aux_sym_expr_binary_token15, aux_sym_expr_binary_token16, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -275943,75 +279461,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [69841] = 4, - ACTIONS(247), 1, + [64370] = 12, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2416), 1, + ACTIONS(5331), 1, + aux_sym_expr_binary_token13, + STATE(2423), 1, sym_comment, - ACTIONS(2420), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2422), 48, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + ACTIONS(5321), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, + ACTIONS(5325), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, + ACTIONS(5327), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, + ACTIONS(5329), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, + ACTIONS(5323), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5341), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, + ACTIONS(5343), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [69908] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2417), 1, - sym_comment, - ACTIONS(1888), 8, + ACTIONS(5133), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276020,8 +279506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1890), 48, - ts_builtin_sym_end, + ACTIONS(5131), 26, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -276033,34 +279518,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, + anon_sym_RPAREN, + anon_sym_RBRACE, aux_sym_expr_binary_token14, aux_sym_expr_binary_token15, aux_sym_expr_binary_token16, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -276069,75 +279533,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [69975] = 4, - ACTIONS(247), 1, + [64454] = 13, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2418), 1, + ACTIONS(5331), 1, + aux_sym_expr_binary_token13, + ACTIONS(5333), 1, + aux_sym_expr_binary_token14, + STATE(2424), 1, sym_comment, - ACTIONS(2434), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2436), 48, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + ACTIONS(5321), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, + ACTIONS(5325), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, + ACTIONS(5327), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, + ACTIONS(5329), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, + ACTIONS(5323), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5341), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, + ACTIONS(5343), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [70042] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2419), 1, - sym_comment, - ACTIONS(2438), 8, + ACTIONS(5133), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276146,8 +279580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2440), 48, - ts_builtin_sym_end, + ACTIONS(5131), 25, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -276159,34 +279592,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, + anon_sym_RPAREN, + anon_sym_RBRACE, aux_sym_expr_binary_token15, aux_sym_expr_binary_token16, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -276195,12 +279606,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [70109] = 4, - ACTIONS(247), 1, + [64540] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2420), 1, + ACTIONS(5087), 1, + aux_sym_cmd_identifier_token37, + STATE(2425), 1, sym_comment, - ACTIONS(1892), 8, + ACTIONS(2289), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276209,7 +279622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1894), 48, + ACTIONS(2291), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -276258,75 +279671,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [70176] = 4, - ACTIONS(247), 1, + [64610] = 14, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2421), 1, + ACTIONS(5331), 1, + aux_sym_expr_binary_token13, + ACTIONS(5333), 1, + aux_sym_expr_binary_token14, + ACTIONS(5335), 1, + aux_sym_expr_binary_token15, + STATE(2426), 1, sym_comment, - ACTIONS(1900), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1902), 48, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + ACTIONS(5321), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, + ACTIONS(5325), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, + ACTIONS(5327), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, + ACTIONS(5329), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, + ACTIONS(5323), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5341), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, + ACTIONS(5343), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [70243] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2422), 1, - sym_comment, - ACTIONS(2521), 8, + ACTIONS(5133), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276335,8 +279720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2523), 48, - ts_builtin_sym_end, + ACTIONS(5131), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -276348,34 +279732,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, + anon_sym_RPAREN, + anon_sym_RBRACE, aux_sym_expr_binary_token16, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -276384,12 +279745,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [70310] = 4, - ACTIONS(247), 1, + [64698] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2423), 1, + STATE(2427), 1, sym_comment, - ACTIONS(1822), 8, + ACTIONS(1628), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276398,8 +279759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1826), 48, - ts_builtin_sym_end, + ACTIONS(1640), 49, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -276411,6 +279771,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -276447,12 +279809,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [70377] = 4, - ACTIONS(247), 1, + [64766] = 14, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2424), 1, + ACTIONS(5435), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5445), 1, + aux_sym_expr_binary_parenthesized_token14, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(2428), 1, sym_comment, - ACTIONS(4844), 8, + ACTIONS(5345), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5349), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5351), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5414), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5347), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5406), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5408), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5289), 9, + sym__newline, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276461,9 +279859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4842), 48, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5291), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -276474,34 +279870,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -276510,12 +279883,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [70444] = 4, - ACTIONS(247), 1, + [64854] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2425), 1, + STATE(2429), 1, sym_comment, - ACTIONS(2442), 8, + ACTIONS(2543), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276524,7 +279897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2444), 48, + ACTIONS(2545), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -276573,12 +279946,304 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [70511] = 4, - ACTIONS(247), 1, + [64921] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2430), 1, + sym_comment, + ACTIONS(1054), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1056), 50, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [64988] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2431), 1, + sym_comment, + ACTIONS(2494), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(2496), 50, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [65055] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2432), 1, + sym_comment, + ACTIONS(2105), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(2107), 50, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [65122] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2433), 1, + sym_comment, + ACTIONS(5502), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(5504), 50, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [65189] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2426), 1, + ACTIONS(5439), 1, + aux_sym__immediate_decimal_token2, + STATE(2434), 1, sym_comment, - ACTIONS(2446), 8, + ACTIONS(1538), 7, + sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(1536), 48, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276587,47 +280252,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2448), 48, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -276636,12 +280260,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [70578] = 4, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [65258] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2427), 1, + ACTIONS(5506), 1, + aux_sym__immediate_decimal_token2, + STATE(2435), 1, sym_comment, - ACTIONS(1904), 8, + ACTIONS(1598), 7, + sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(1596), 48, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276650,47 +280316,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1906), 48, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -276699,12 +280324,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [70645] = 4, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [65327] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2428), 1, + STATE(2436), 1, sym_comment, - ACTIONS(2450), 8, + ACTIONS(2494), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276713,7 +280340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2452), 48, + ACTIONS(2496), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -276762,12 +280389,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [70712] = 4, - ACTIONS(247), 1, + [65394] = 17, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2429), 1, + ACTIONS(1345), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1347), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3842), 1, + anon_sym_DQUOTE, + ACTIONS(3848), 1, + sym_raw_string_begin, + ACTIONS(4895), 1, + aux_sym_cmd_identifier_token38, + STATE(2437), 1, sym_comment, - ACTIONS(2454), 8, + STATE(4162), 1, + sym_val_string, + STATE(4187), 1, + sym_cmd_identifier, + STATE(7312), 1, + sym__val_number_decimal, + STATE(8028), 1, + sym__command_name, + ACTIONS(1343), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3844), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4434), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4889), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4893), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4891), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [65487] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2438), 1, + sym_comment, + ACTIONS(1628), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276776,7 +280479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2456), 48, + ACTIONS(1640), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -276825,12 +280528,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [70779] = 5, - ACTIONS(247), 1, + [65554] = 13, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2430), 1, + ACTIONS(3774), 1, + anon_sym_DOLLAR, + ACTIONS(5486), 1, + anon_sym_LPAREN2, + ACTIONS(5508), 1, + anon_sym_DOT, + ACTIONS(5510), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5512), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5514), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5516), 1, + aux_sym__immediate_decimal_token5, + STATE(2439), 1, sym_comment, - ACTIONS(4798), 8, + STATE(2874), 1, + sym__immediate_decimal, + STATE(2888), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1560), 18, + anon_sym_LPAREN, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276839,19 +280570,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4796), 20, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + aux_sym__unquoted_in_list_token1, + ACTIONS(1570), 28, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -276860,41 +280600,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(4800), 28, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [70848] = 4, - ACTIONS(247), 1, + [65639] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2431), 1, + STATE(2440), 1, sym_comment, - ACTIONS(2366), 8, + ACTIONS(2454), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276903,7 +280614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2368), 48, + ACTIONS(2456), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -276952,12 +280663,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [70915] = 4, - ACTIONS(247), 1, + [65706] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2432), 1, + STATE(2441), 1, sym_comment, - ACTIONS(5010), 8, + ACTIONS(1090), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276966,7 +280677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5008), 48, + ACTIONS(1092), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -277015,75 +280726,809 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [70982] = 4, - ACTIONS(247), 1, + [65773] = 17, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2433), 1, + ACTIONS(1345), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1347), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3842), 1, + anon_sym_DQUOTE, + ACTIONS(3848), 1, + sym_raw_string_begin, + ACTIONS(4895), 1, + aux_sym_cmd_identifier_token38, + STATE(2442), 1, sym_comment, - ACTIONS(1832), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1834), 48, - ts_builtin_sym_end, + STATE(4162), 1, + sym_val_string, + STATE(4187), 1, + sym_cmd_identifier, + STATE(6748), 1, + sym__command_name, + STATE(7312), 1, + sym__val_number_decimal, + ACTIONS(1343), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3844), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4434), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4889), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4893), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4891), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [65866] = 17, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1345), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1347), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3842), 1, + anon_sym_DQUOTE, + ACTIONS(3848), 1, + sym_raw_string_begin, + ACTIONS(4895), 1, + aux_sym_cmd_identifier_token38, + STATE(2443), 1, + sym_comment, + STATE(4162), 1, + sym_val_string, + STATE(4187), 1, + sym_cmd_identifier, + STATE(6721), 1, + sym__command_name, + STATE(7312), 1, + sym__val_number_decimal, + ACTIONS(1343), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3844), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4434), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4889), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4893), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4891), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [65959] = 17, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1345), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1347), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3842), 1, + anon_sym_DQUOTE, + ACTIONS(3848), 1, + sym_raw_string_begin, + ACTIONS(4895), 1, + aux_sym_cmd_identifier_token38, + STATE(2444), 1, + sym_comment, + STATE(4162), 1, + sym_val_string, + STATE(4187), 1, + sym_cmd_identifier, + STATE(6749), 1, + sym__command_name, + STATE(7312), 1, + sym__val_number_decimal, + ACTIONS(1343), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3844), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4434), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4889), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4893), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4891), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [66052] = 17, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1345), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1347), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3842), 1, + anon_sym_DQUOTE, + ACTIONS(3848), 1, + sym_raw_string_begin, + ACTIONS(4895), 1, + aux_sym_cmd_identifier_token38, + STATE(2445), 1, + sym_comment, + STATE(4162), 1, + sym_val_string, + STATE(4187), 1, + sym_cmd_identifier, + STATE(6240), 1, + sym__command_name, + STATE(7312), 1, + sym__val_number_decimal, + ACTIONS(1343), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3844), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4434), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4889), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4893), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4891), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [66145] = 17, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1345), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1347), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3842), 1, + anon_sym_DQUOTE, + ACTIONS(3848), 1, + sym_raw_string_begin, + ACTIONS(4895), 1, + aux_sym_cmd_identifier_token38, + STATE(2446), 1, + sym_comment, + STATE(4162), 1, + sym_val_string, + STATE(4187), 1, + sym_cmd_identifier, + STATE(6241), 1, + sym__command_name, + STATE(7312), 1, + sym__val_number_decimal, + ACTIONS(1343), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3844), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4434), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4889), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4893), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4891), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [66238] = 17, + ACTIONS(111), 1, + anon_sym_DQUOTE, + ACTIONS(123), 1, + sym_raw_string_begin, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1345), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1347), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4967), 1, + aux_sym_cmd_identifier_token38, + STATE(2447), 1, + sym_comment, + STATE(6296), 1, + sym_cmd_identifier, + STATE(6299), 1, + sym_val_string, + STATE(6981), 1, + sym__val_number_decimal, + STATE(7175), 1, + sym__command_name, + ACTIONS(113), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1343), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(2065), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4961), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4965), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4963), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [66331] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2448), 1, + sym_comment, + ACTIONS(2430), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(2432), 50, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [71049] = 4, - ACTIONS(247), 1, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [66398] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2449), 1, + sym_comment, + ACTIONS(2478), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(2480), 50, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [66465] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2450), 1, + sym_comment, + ACTIONS(1078), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1080), 50, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [66532] = 17, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1345), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1347), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3842), 1, + anon_sym_DQUOTE, + ACTIONS(3848), 1, + sym_raw_string_begin, + ACTIONS(4895), 1, + aux_sym_cmd_identifier_token38, + STATE(2451), 1, + sym_comment, + STATE(4162), 1, + sym_val_string, + STATE(4187), 1, + sym_cmd_identifier, + STATE(6366), 1, + sym__command_name, + STATE(7312), 1, + sym__val_number_decimal, + ACTIONS(1343), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3844), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4434), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4889), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4893), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4891), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [66625] = 17, + ACTIONS(111), 1, + anon_sym_DQUOTE, + ACTIONS(123), 1, + sym_raw_string_begin, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1345), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1347), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4967), 1, + aux_sym_cmd_identifier_token38, + STATE(2452), 1, + sym_comment, + STATE(6296), 1, + sym_cmd_identifier, + STATE(6299), 1, + sym_val_string, + STATE(6981), 1, + sym__val_number_decimal, + STATE(7177), 1, + sym__command_name, + ACTIONS(113), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1343), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(2065), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4961), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4965), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4963), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [66718] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2434), 1, + STATE(2453), 1, sym_comment, - ACTIONS(2466), 8, + ACTIONS(2561), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277092,7 +281537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2468), 48, + ACTIONS(2563), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -277141,83 +281586,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [71116] = 4, - ACTIONS(247), 1, + [66785] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2435), 1, + STATE(2454), 1, sym_comment, - ACTIONS(2380), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2382), 48, - ts_builtin_sym_end, + ACTIONS(2410), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(2412), 50, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [71183] = 4, - ACTIONS(247), 1, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [66852] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2436), 1, + STATE(2455), 1, sym_comment, - ACTIONS(1046), 7, + ACTIONS(2438), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1048), 49, + ACTIONS(2440), 50, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -277267,12 +281712,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [71250] = 4, - ACTIONS(247), 1, + [66919] = 11, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2437), 1, + ACTIONS(5518), 1, + anon_sym_LPAREN2, + ACTIONS(5520), 1, + anon_sym_DOT_DOT2, + ACTIONS(5524), 1, + sym_filesize_unit, + ACTIONS(5526), 1, + sym_duration_unit, + ACTIONS(5528), 1, + aux_sym__unquoted_in_list_token2, + STATE(2456), 1, sym_comment, - ACTIONS(2384), 8, + STATE(7447), 1, + sym__expr_parenthesized_immediate, + ACTIONS(1640), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5522), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1628), 46, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277281,47 +281773,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2386), 48, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -277330,12 +281781,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [71317] = 4, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + [67000] = 17, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2438), 1, + ACTIONS(1345), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1347), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3842), 1, + anon_sym_DQUOTE, + ACTIONS(3848), 1, + sym_raw_string_begin, + ACTIONS(4895), 1, + aux_sym_cmd_identifier_token38, + STATE(2457), 1, + sym_comment, + STATE(4162), 1, + sym_val_string, + STATE(4187), 1, + sym_cmd_identifier, + STATE(5764), 1, + sym__command_name, + STATE(7312), 1, + sym__val_number_decimal, + ACTIONS(1343), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3844), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4434), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4889), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4893), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4891), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [67093] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2458), 1, sym_comment, - ACTIONS(5050), 8, + ACTIONS(5157), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277344,7 +281872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4800), 48, + ACTIONS(5155), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -277393,12 +281921,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [71384] = 4, - ACTIONS(247), 1, + [67160] = 17, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2439), 1, + ACTIONS(1345), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1347), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5427), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(5429), 1, + anon_sym_DQUOTE, + ACTIONS(5433), 1, + sym_raw_string_begin, + STATE(1453), 1, + sym__command_name, + STATE(2459), 1, + sym_comment, + STATE(2493), 1, + sym_cmd_identifier, + STATE(2494), 1, + sym_val_string, + STATE(7107), 1, + sym__val_number_decimal, + ACTIONS(1343), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(5431), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(2500), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5421), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(5425), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(5423), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [67253] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2460), 1, sym_comment, - ACTIONS(5054), 8, + ACTIONS(1909), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277407,7 +282011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5052), 48, + ACTIONS(1911), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -277456,78 +282060,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [71451] = 4, - ACTIONS(247), 1, + [67320] = 17, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2440), 1, + ACTIONS(1345), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1347), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3842), 1, + anon_sym_DQUOTE, + ACTIONS(3848), 1, + sym_raw_string_begin, + ACTIONS(4895), 1, + aux_sym_cmd_identifier_token38, + STATE(2461), 1, sym_comment, - ACTIONS(4844), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(4842), 48, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + STATE(4162), 1, + sym_val_string, + STATE(4187), 1, + sym_cmd_identifier, + STATE(7312), 1, + sym__val_number_decimal, + STATE(7908), 1, + sym__command_name, + ACTIONS(1343), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3844), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4434), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4889), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4893), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4891), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [67413] = 15, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5540), 1, + aux_sym_expr_binary_token13, + ACTIONS(5542), 1, + aux_sym_expr_binary_token14, + ACTIONS(5544), 1, + aux_sym_expr_binary_token15, + ACTIONS(5546), 1, + aux_sym_expr_binary_token16, + STATE(2462), 1, + sym_comment, + ACTIONS(5530), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, + ACTIONS(5534), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, + ACTIONS(5536), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, + ACTIONS(5538), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, + ACTIONS(5532), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5548), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, + ACTIONS(5550), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [71518] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2441), 1, - sym_comment, - ACTIONS(5367), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5054), 8, + ACTIONS(5133), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277536,7 +282187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5052), 46, + ACTIONS(5131), 22, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -277549,32 +282200,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -277583,12 +282210,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [71587] = 4, - ACTIONS(247), 1, + [67502] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2442), 1, + STATE(2463), 1, sym_comment, - ACTIONS(4844), 8, + ACTIONS(1897), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277597,7 +282224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4842), 48, + ACTIONS(1899), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -277646,20 +282273,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [71654] = 6, - ACTIONS(247), 1, + [67569] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2443), 1, + STATE(2464), 1, sym_comment, - ACTIONS(5367), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5369), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5054), 8, + ACTIONS(2547), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277668,7 +282287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5052), 42, + ACTIONS(2549), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -277681,6 +282300,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, aux_sym_expr_binary_token9, @@ -277711,12 +282336,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [71725] = 4, - ACTIONS(247), 1, + [67636] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2444), 1, + STATE(2465), 1, sym_comment, - ACTIONS(4844), 8, + ACTIONS(2510), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277725,7 +282350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4842), 48, + ACTIONS(2512), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -277774,20 +282399,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [71792] = 4, - ACTIONS(247), 1, + [67703] = 17, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2445), 1, + ACTIONS(1345), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1347), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3842), 1, + anon_sym_DQUOTE, + ACTIONS(3848), 1, + sym_raw_string_begin, + ACTIONS(4895), 1, + aux_sym_cmd_identifier_token38, + STATE(2466), 1, sym_comment, - ACTIONS(1050), 7, + STATE(4162), 1, + sym_val_string, + STATE(4187), 1, + sym_cmd_identifier, + STATE(6681), 1, + sym__command_name, + STATE(7312), 1, + sym__val_number_decimal, + ACTIONS(1343), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3844), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4434), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4889), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1052), 49, + ACTIONS(4893), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4891), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -277819,38 +282475,121 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, + [67796] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5466), 1, + anon_sym_DOLLAR, + ACTIONS(5468), 1, + anon_sym_LPAREN2, + ACTIONS(5554), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5556), 1, + aux_sym__immediate_decimal_token5, + STATE(2467), 1, + sym_comment, + STATE(2995), 1, + sym__immediate_decimal, + ACTIONS(1570), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5552), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2994), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1560), 45, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - sym_wild_card, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [71859] = 4, - ACTIONS(247), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [67877] = 17, + ACTIONS(111), 1, + anon_sym_DQUOTE, + ACTIONS(123), 1, + sym_raw_string_begin, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2446), 1, + ACTIONS(1345), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1347), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4967), 1, + aux_sym_cmd_identifier_token38, + STATE(2468), 1, sym_comment, - ACTIONS(1054), 7, + STATE(6296), 1, + sym_cmd_identifier, + STATE(6299), 1, + sym_val_string, + STATE(6981), 1, + sym__val_number_decimal, + STATE(7185), 1, + sym__command_name, + ACTIONS(113), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1343), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(2065), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4961), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1056), 49, + ACTIONS(4965), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4963), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -277878,459 +282617,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token29, aux_sym_cmd_identifier_token30, aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [71926] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2447), 1, - sym_comment, - ACTIONS(5367), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5371), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(5369), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5054), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5052), 40, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [71999] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2448), 1, - sym_comment, - ACTIONS(4844), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(4842), 48, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [72066] = 10, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2449), 1, - sym_comment, - ACTIONS(5367), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5371), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(5373), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(5369), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5375), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(5377), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - ACTIONS(5054), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5052), 28, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [72145] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2450), 1, - sym_comment, - ACTIONS(4844), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(4842), 48, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [72212] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2451), 1, - sym_comment, - ACTIONS(5367), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5371), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(5373), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(5379), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(5369), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5375), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(5377), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - ACTIONS(5054), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5052), 26, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [72293] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2452), 1, - sym_comment, - ACTIONS(4844), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(4842), 48, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [72360] = 12, - ACTIONS(247), 1, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [67970] = 13, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5381), 1, - aux_sym_expr_binary_token13, - STATE(2453), 1, + ACTIONS(1526), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5558), 1, + anon_sym_DOLLAR, + ACTIONS(5560), 1, + anon_sym_LPAREN2, + ACTIONS(5562), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5564), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5566), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5568), 1, + aux_sym__immediate_decimal_token5, + STATE(2469), 1, sym_comment, - ACTIONS(5367), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5371), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(5373), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(5379), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(5369), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5375), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(5377), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - ACTIONS(5054), 8, + STATE(3038), 1, + sym__immediate_decimal, + STATE(3045), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1510), 18, + anon_sym_LPAREN, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -278339,24 +282663,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5052), 25, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, + aux_sym__unquoted_in_list_token1, + ACTIONS(1524), 28, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -278365,23 +282693,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [72443] = 5, - ACTIONS(247), 1, + [68055] = 17, + ACTIONS(111), 1, + anon_sym_DQUOTE, + ACTIONS(123), 1, + sym_raw_string_begin, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5383), 1, - anon_sym_QMARK2, - STATE(2454), 1, + ACTIONS(1345), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1347), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4967), 1, + aux_sym_cmd_identifier_token38, + STATE(2470), 1, sym_comment, - ACTIONS(1022), 7, + STATE(6296), 1, + sym_cmd_identifier, + STATE(6299), 1, + sym_val_string, + STATE(6981), 1, + sym__val_number_decimal, + STATE(7193), 1, + sym__command_name, + ACTIONS(113), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1343), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(2065), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4961), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1024), 48, - ts_builtin_sym_end, + ACTIONS(4965), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4963), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -278413,39 +282769,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [72512] = 5, - ACTIONS(247), 1, + [68148] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5385), 1, - anon_sym_QMARK2, - STATE(2455), 1, + STATE(2471), 1, sym_comment, - ACTIONS(1028), 7, + ACTIONS(5570), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1030), 48, - ts_builtin_sym_end, + ACTIONS(5572), 50, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -278485,6 +282822,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -278493,12 +282832,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [72581] = 4, - ACTIONS(247), 1, + [68215] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2456), 1, + STATE(2472), 1, sym_comment, - ACTIONS(2362), 8, + ACTIONS(2001), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -278507,7 +282846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2364), 48, + ACTIONS(2003), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -278556,100 +282895,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [72648] = 9, - ACTIONS(247), 1, + [68282] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4512), 1, - anon_sym_DOT_DOT2, - ACTIONS(5387), 1, - sym_filesize_unit, - ACTIONS(5389), 1, - sym_duration_unit, - ACTIONS(5391), 1, - aux_sym_unquoted_token2, - STATE(2457), 1, + ACTIONS(5466), 1, + anon_sym_DOLLAR, + ACTIONS(5468), 1, + anon_sym_LPAREN2, + ACTIONS(5554), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5556), 1, + aux_sym__immediate_decimal_token5, + STATE(2473), 1, sym_comment, - ACTIONS(4514), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1560), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1572), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, + STATE(3028), 1, + sym__immediate_decimal, + ACTIONS(1610), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5552), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3027), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1608), 45, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [72725] = 12, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [68363] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1492), 1, - sym__entry_separator, - ACTIONS(1494), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5393), 1, + ACTIONS(5466), 1, anon_sym_DOLLAR, - ACTIONS(5395), 1, + ACTIONS(5468), 1, anon_sym_LPAREN2, - ACTIONS(5399), 1, + ACTIONS(5554), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5401), 1, + ACTIONS(5556), 1, aux_sym__immediate_decimal_token5, - STATE(2458), 1, + STATE(2474), 1, sym_comment, - STATE(2882), 1, + STATE(3035), 1, sym__immediate_decimal, - ACTIONS(5397), 2, + ACTIONS(1614), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5552), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2962), 2, + STATE(3031), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1478), 45, + ACTIONS(1612), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -278695,45 +283035,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [72808] = 13, - ACTIONS(247), 1, + [68444] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5381), 1, - aux_sym_expr_binary_token13, - ACTIONS(5403), 1, - aux_sym_expr_binary_token14, - STATE(2459), 1, + ACTIONS(5466), 1, + anon_sym_DOLLAR, + ACTIONS(5468), 1, + anon_sym_LPAREN2, + ACTIONS(5554), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5556), 1, + aux_sym__immediate_decimal_token5, + STATE(2475), 1, sym_comment, - ACTIONS(5367), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5371), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(5373), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(5379), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(5369), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5375), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(5377), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - ACTIONS(5054), 8, + STATE(3037), 1, + sym__immediate_decimal, + ACTIONS(1622), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5552), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3036), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1620), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -278742,23 +283096,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5052), 24, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -278767,12 +283104,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [72893] = 4, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + [68525] = 17, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2460), 1, + ACTIONS(1345), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1347), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3592), 1, + anon_sym_DQUOTE, + ACTIONS(3602), 1, + sym_raw_string_begin, + ACTIONS(4895), 1, + aux_sym_cmd_identifier_token38, + STATE(2476), 1, + sym_comment, + STATE(4162), 1, + sym_val_string, + STATE(4187), 1, + sym_cmd_identifier, + STATE(4877), 1, + sym__command_name, + STATE(7312), 1, + sym__val_number_decimal, + ACTIONS(1343), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3594), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4768), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4889), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4893), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4891), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [68618] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2477), 1, sym_comment, - ACTIONS(4844), 8, + ACTIONS(2535), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -278781,7 +283195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4842), 48, + ACTIONS(2537), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -278830,12 +283244,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [72960] = 4, - ACTIONS(247), 1, + [68685] = 17, + ACTIONS(111), 1, + anon_sym_DQUOTE, + ACTIONS(123), 1, + sym_raw_string_begin, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2461), 1, + ACTIONS(1345), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1347), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4967), 1, + aux_sym_cmd_identifier_token38, + STATE(2478), 1, + sym_comment, + STATE(6086), 1, + sym__command_name, + STATE(6296), 1, + sym_cmd_identifier, + STATE(6299), 1, + sym_val_string, + STATE(6981), 1, + sym__val_number_decimal, + ACTIONS(113), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1343), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(2065), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4961), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4965), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4963), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [68778] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2479), 1, sym_comment, - ACTIONS(2253), 8, + ACTIONS(2430), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -278844,7 +283334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2255), 48, + ACTIONS(2432), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -278893,156 +283383,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [73027] = 14, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5381), 1, - aux_sym_expr_binary_token13, - ACTIONS(5403), 1, - aux_sym_expr_binary_token14, - ACTIONS(5405), 1, - aux_sym_expr_binary_token15, - STATE(2462), 1, - sym_comment, - ACTIONS(5367), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5371), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(5373), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(5379), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(5369), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5375), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(5377), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - ACTIONS(5054), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5052), 23, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [73114] = 12, - ACTIONS(3), 1, + [68845] = 17, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1550), 1, - sym__entry_separator, - ACTIONS(1552), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5393), 1, - anon_sym_DOLLAR, - ACTIONS(5395), 1, - anon_sym_LPAREN2, - ACTIONS(5399), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5401), 1, - aux_sym__immediate_decimal_token5, - STATE(2463), 1, + ACTIONS(1345), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1347), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3842), 1, + anon_sym_DQUOTE, + ACTIONS(3848), 1, + sym_raw_string_begin, + ACTIONS(4895), 1, + aux_sym_cmd_identifier_token38, + STATE(2480), 1, sym_comment, - STATE(2833), 1, - sym__immediate_decimal, - ACTIONS(5397), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2949), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1548), 45, + STATE(4162), 1, + sym_val_string, + STATE(4187), 1, + sym_cmd_identifier, + STATE(7312), 1, + sym__val_number_decimal, + STATE(7726), 1, + sym__command_name, + ACTIONS(1343), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3844), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4434), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4889), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4893), 5, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [73197] = 4, - ACTIONS(247), 1, + ACTIONS(4891), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [68938] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2464), 1, + STATE(2481), 1, sym_comment, - ACTIONS(4844), 8, + ACTIONS(2478), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279051,7 +283473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4842), 48, + ACTIONS(2480), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -279100,26 +283522,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [73264] = 8, - ACTIONS(247), 1, + [69005] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2465), 1, + STATE(2482), 1, sym_comment, - ACTIONS(5367), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5371), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(5373), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(5369), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5054), 8, + ACTIONS(5019), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279128,7 +283536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5052), 38, + ACTIONS(5017), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -279141,6 +283549,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, aux_sym_expr_binary_token13, @@ -279167,49 +283585,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [73339] = 15, - ACTIONS(247), 1, + [69072] = 16, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5381), 1, + ACTIONS(5540), 1, aux_sym_expr_binary_token13, - ACTIONS(5403), 1, + ACTIONS(5542), 1, aux_sym_expr_binary_token14, - ACTIONS(5405), 1, + ACTIONS(5544), 1, aux_sym_expr_binary_token15, - ACTIONS(5407), 1, + ACTIONS(5546), 1, aux_sym_expr_binary_token16, - STATE(2466), 1, + ACTIONS(5574), 1, + aux_sym_expr_binary_token17, + STATE(2483), 1, sym_comment, - ACTIONS(5367), 2, + ACTIONS(5530), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(5371), 2, + ACTIONS(5534), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(5373), 2, + ACTIONS(5536), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(5379), 2, + ACTIONS(5538), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(5369), 4, + ACTIONS(5532), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(5375), 4, + ACTIONS(5548), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(5377), 6, + ACTIONS(5550), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - ACTIONS(5054), 8, + ACTIONS(5133), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279218,7 +283638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5052), 22, + ACTIONS(5131), 21, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -279231,7 +283651,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -279241,12 +283660,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [73428] = 4, - ACTIONS(247), 1, + [69163] = 17, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2467), 1, + ACTIONS(1345), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1347), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3842), 1, + anon_sym_DQUOTE, + ACTIONS(3848), 1, + sym_raw_string_begin, + ACTIONS(4895), 1, + aux_sym_cmd_identifier_token38, + STATE(2484), 1, + sym_comment, + STATE(4162), 1, + sym_val_string, + STATE(4187), 1, + sym_cmd_identifier, + STATE(5931), 1, + sym__command_name, + STATE(7312), 1, + sym__val_number_decimal, + ACTIONS(1343), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3844), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4434), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4889), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4893), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4891), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [69256] = 13, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1558), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5558), 1, + anon_sym_DOLLAR, + ACTIONS(5560), 1, + anon_sym_LPAREN2, + ACTIONS(5562), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5564), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5566), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5568), 1, + aux_sym__immediate_decimal_token5, + STATE(2485), 1, + sym_comment, + STATE(2980), 1, + sym__immediate_decimal, + STATE(3109), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1544), 18, + anon_sym_LPAREN, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1556), 28, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [69341] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2486), 1, sym_comment, - ACTIONS(4844), 8, + ACTIONS(2531), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279255,7 +283822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4842), 48, + ACTIONS(2533), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -279304,51 +283871,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [73495] = 16, - ACTIONS(247), 1, + [69408] = 17, + ACTIONS(111), 1, + anon_sym_DQUOTE, + ACTIONS(123), 1, + sym_raw_string_begin, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5381), 1, - aux_sym_expr_binary_token13, - ACTIONS(5403), 1, - aux_sym_expr_binary_token14, - ACTIONS(5405), 1, - aux_sym_expr_binary_token15, - ACTIONS(5407), 1, - aux_sym_expr_binary_token16, - ACTIONS(5409), 1, - aux_sym_expr_binary_token17, - STATE(2468), 1, + ACTIONS(1345), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1347), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4967), 1, + aux_sym_cmd_identifier_token38, + STATE(2487), 1, sym_comment, - ACTIONS(5367), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5371), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(5373), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(5379), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(5369), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5375), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(5377), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - ACTIONS(5054), 8, + STATE(6035), 1, + sym__command_name, + STATE(6296), 1, + sym_cmd_identifier, + STATE(6299), 1, + sym_val_string, + STATE(6981), 1, + sym__val_number_decimal, + ACTIONS(113), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1343), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(2065), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4961), 5, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + ACTIONS(4965), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4963), 31, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + [69501] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2488), 1, + sym_comment, + ACTIONS(2418), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279357,7 +283961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5052), 21, + ACTIONS(2420), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -279370,7 +283974,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -279379,12 +284010,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [73586] = 4, - ACTIONS(247), 1, + [69568] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2469), 1, + STATE(2489), 1, sym_comment, - ACTIONS(4844), 8, + ACTIONS(5019), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279393,7 +284024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4842), 48, + ACTIONS(5017), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -279442,33 +284073,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [73653] = 9, - ACTIONS(247), 1, + [69635] = 9, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2470), 1, + STATE(2490), 1, sym_comment, - ACTIONS(5367), 2, + ACTIONS(5530), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(5371), 2, + ACTIONS(5534), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(5373), 2, + ACTIONS(5536), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(5369), 4, + ACTIONS(5532), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(5377), 6, + ACTIONS(5550), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - ACTIONS(5054), 8, + ACTIONS(5133), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279477,7 +284108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5052), 32, + ACTIONS(5131), 32, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -279510,12 +284141,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [73730] = 4, - ACTIONS(247), 1, + [69712] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2471), 1, + STATE(2491), 1, sym_comment, - ACTIONS(2309), 8, + ACTIONS(5019), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279524,7 +284155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2311), 48, + ACTIONS(5017), 48, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -279573,50 +284204,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [73797] = 17, - ACTIONS(247), 1, + [69779] = 17, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1338), 1, + ACTIONS(1345), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1340), 1, + ACTIONS(1347), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3231), 1, - aux_sym_record_entry_token1, - ACTIONS(3860), 1, - anon_sym_DQUOTE, - ACTIONS(4874), 1, + ACTIONS(5582), 1, aux_sym_cmd_identifier_token38, - STATE(1546), 1, - sym__command_name, - STATE(1990), 1, - sym_val_string, - STATE(2002), 1, - sym__str_double_quotes, - STATE(2012), 1, - sym_cmd_identifier, - STATE(2472), 1, + ACTIONS(5584), 1, + anon_sym_DQUOTE, + ACTIONS(5588), 1, + sym_raw_string_begin, + STATE(2492), 1, sym_comment, - STATE(7094), 1, + STATE(5650), 1, + sym_cmd_identifier, + STATE(5654), 1, + sym_val_string, + STATE(5720), 1, + sym__command_name, + STATE(6775), 1, sym__val_number_decimal, - ACTIONS(1336), 2, + ACTIONS(1343), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3862), 2, + ACTIONS(5586), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4868), 5, + STATE(5598), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5576), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4872), 5, + ACTIONS(5580), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(4870), 31, + ACTIONS(5578), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -279648,19 +284280,83 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [73889] = 4, - ACTIONS(247), 1, + [69872] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2473), 1, + STATE(2493), 1, + sym_comment, + ACTIONS(5590), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(5592), 50, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [69939] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2494), 1, sym_comment, - ACTIONS(2362), 6, + ACTIONS(5594), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2364), 49, + ACTIONS(5596), 50, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -279710,19 +284406,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [73955] = 4, - ACTIONS(247), 1, + [70006] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2495), 1, + sym_comment, + ACTIONS(2289), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2291), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [70073] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2474), 1, + STATE(2496), 1, sym_comment, - ACTIONS(2366), 6, + ACTIONS(4987), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2368), 49, + ACTIONS(4985), 50, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -279772,58 +284532,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [74021] = 11, - ACTIONS(3), 1, + [70140] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1588), 1, - sym__entry_separator, - ACTIONS(5393), 1, - anon_sym_DOLLAR, - ACTIONS(5395), 1, - anon_sym_LPAREN2, - ACTIONS(5413), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5415), 1, - aux_sym__immediate_decimal_token5, - STATE(2475), 1, + STATE(2497), 1, sym_comment, - STATE(2945), 1, - sym__immediate_decimal, - ACTIONS(5411), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2944), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1586), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(5530), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5534), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(5536), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(5532), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5133), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279832,6 +284560,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(5131), 38, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -279840,21 +284599,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [74101] = 4, - ACTIONS(247), 1, + [70215] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2476), 1, + ACTIONS(5598), 1, + sym__newline, + STATE(2498), 2, + sym_comment, + aux_sym_shebang_repeat1, + ACTIONS(1351), 54, + anon_sym_EQ, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_else, + anon_sym_LBRACE, + anon_sym_catch, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [70282] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2499), 1, sym_comment, - ACTIONS(5101), 6, + ACTIONS(4997), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(5099), 49, - ts_builtin_sym_end, + ACTIONS(4995), 50, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -279894,7 +284715,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_RBRACE, sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -279903,50 +284725,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [74167] = 17, - ACTIONS(247), 1, + [70349] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1338), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1340), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3229), 1, - aux_sym_record_entry_token1, - ACTIONS(3860), 1, - anon_sym_DQUOTE, - ACTIONS(4874), 1, - aux_sym_cmd_identifier_token38, - STATE(1990), 1, - sym_val_string, - STATE(2002), 1, - sym__str_double_quotes, - STATE(2012), 1, - sym_cmd_identifier, - STATE(2477), 1, + STATE(2500), 1, sym_comment, - STATE(6477), 1, - sym__command_name, - STATE(7094), 1, - sym__val_number_decimal, - ACTIONS(1336), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3862), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4868), 5, + ACTIONS(1058), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4872), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4870), 31, + aux_sym_cmd_identifier_token38, + ACTIONS(1060), 50, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -279978,21 +284770,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [74259] = 4, - ACTIONS(247), 1, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [70416] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2478), 1, + STATE(2501), 1, sym_comment, - ACTIONS(1046), 7, + ACTIONS(2494), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1048), 48, - ts_builtin_sym_end, + ACTIONS(2496), 50, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -280032,6 +284841,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -280040,40 +284851,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [74325] = 13, - ACTIONS(247), 1, + [70483] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1552), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5417), 1, - anon_sym_DOLLAR, - ACTIONS(5419), 1, - anon_sym_LPAREN2, - ACTIONS(5421), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5423), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5425), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5427), 1, - aux_sym__immediate_decimal_token5, - STATE(2479), 1, + STATE(2502), 1, sym_comment, - STATE(2985), 1, - sym__immediate_decimal, - STATE(3042), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1548), 18, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(5019), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280082,27 +284865,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1550), 27, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(5017), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -280111,112 +284914,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [74409] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2480), 1, - sym_comment, - ACTIONS(4884), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(4882), 49, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [74475] = 17, - ACTIONS(247), 1, + [70550] = 17, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1338), 1, + ACTIONS(1345), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1340), 1, + ACTIONS(1347), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3229), 1, - aux_sym_record_entry_token1, - ACTIONS(3860), 1, + ACTIONS(3842), 1, anon_sym_DQUOTE, - ACTIONS(4874), 1, + ACTIONS(3848), 1, + sym_raw_string_begin, + ACTIONS(4895), 1, aux_sym_cmd_identifier_token38, - STATE(1990), 1, + STATE(2503), 1, + sym_comment, + STATE(4162), 1, sym_val_string, - STATE(2002), 1, - sym__str_double_quotes, - STATE(2012), 1, + STATE(4187), 1, sym_cmd_identifier, - STATE(2481), 1, - sym_comment, - STATE(5674), 1, + STATE(6421), 1, sym__command_name, - STATE(7094), 1, + STATE(7312), 1, sym__val_number_decimal, - ACTIONS(1336), 2, + ACTIONS(1343), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3862), 2, + ACTIONS(3844), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4868), 5, + STATE(4434), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4889), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4872), 5, + ACTIONS(4893), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(4870), 31, + ACTIONS(4891), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -280248,50 +284990,83 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [74567] = 17, - ACTIONS(247), 1, + [70643] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1338), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1340), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3229), 1, - aux_sym_record_entry_token1, - ACTIONS(3860), 1, - anon_sym_DQUOTE, - ACTIONS(4874), 1, - aux_sym_cmd_identifier_token38, - STATE(1546), 1, - sym__command_name, - STATE(1990), 1, - sym_val_string, - STATE(2002), 1, - sym__str_double_quotes, - STATE(2012), 1, - sym_cmd_identifier, - STATE(2482), 1, + STATE(2504), 1, sym_comment, - STATE(7094), 1, - sym__val_number_decimal, - ACTIONS(1336), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3862), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4868), 5, + ACTIONS(2539), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2541), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [70710] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2505), 1, + sym_comment, + ACTIONS(5601), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4872), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4870), 31, + aux_sym_cmd_identifier_token38, + ACTIONS(5603), 50, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -280323,19 +285098,164 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [74659] = 4, - ACTIONS(247), 1, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [70777] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2483), 1, + STATE(2506), 1, + sym_comment, + ACTIONS(2410), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2412), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [70844] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2507), 1, + sym_comment, + ACTIONS(2438), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2440), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [70911] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2508), 1, sym_comment, - ACTIONS(2380), 6, + ACTIONS(1062), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2382), 49, + ACTIONS(1064), 50, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -280385,20 +285305,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [74725] = 4, - ACTIONS(247), 1, + [70978] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2484), 1, + STATE(2509), 1, + sym_comment, + ACTIONS(5139), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5137), 20, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(5127), 28, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [71047] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2510), 1, + sym_comment, + ACTIONS(5153), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5151), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [71114] = 17, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1345), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1347), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5611), 1, + aux_sym_cmd_identifier_token38, + ACTIONS(5613), 1, + anon_sym_DQUOTE, + ACTIONS(5617), 1, + sym_raw_string_begin, + STATE(1535), 1, + sym__command_name, + STATE(2511), 1, sym_comment, - ACTIONS(5105), 6, + STATE(2617), 1, + sym_cmd_identifier, + STATE(2618), 1, + sym_val_string, + STATE(6773), 1, + sym__val_number_decimal, + ACTIONS(1343), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(5615), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(2615), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5605), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(5103), 49, - ts_builtin_sym_end, + ACTIONS(5609), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(5607), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -280430,57 +285508,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + [71207] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2512), 1, + sym_comment, + ACTIONS(5129), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5127), 48, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [74791] = 13, - ACTIONS(247), 1, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [71274] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3713), 1, - anon_sym_DOLLAR, - ACTIONS(5339), 1, - anon_sym_LPAREN2, - ACTIONS(5429), 1, - anon_sym_DOT, - ACTIONS(5431), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5433), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5435), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5437), 1, - aux_sym__immediate_decimal_token5, - STATE(2485), 1, + STATE(2513), 1, sym_comment, - STATE(2866), 1, - sym__immediate_decimal, - STATE(2865), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1496), 18, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(5133), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280489,27 +285585,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1506), 27, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(5131), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [71341] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2514), 1, + sym_comment, + ACTIONS(5019), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5017), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [71408] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2515), 1, + sym_comment, + ACTIONS(5530), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5133), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5131), 46, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -280518,19 +285761,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [74875] = 4, - ACTIONS(247), 1, + [71477] = 17, + ACTIONS(111), 1, + anon_sym_DQUOTE, + ACTIONS(123), 1, + sym_raw_string_begin, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2486), 1, + ACTIONS(1345), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1347), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4967), 1, + aux_sym_cmd_identifier_token38, + STATE(2516), 1, sym_comment, - ACTIONS(2384), 6, + STATE(6296), 1, + sym_cmd_identifier, + STATE(6299), 1, + sym_val_string, + STATE(6981), 1, + sym__val_number_decimal, + STATE(7255), 1, + sym__command_name, + ACTIONS(113), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1343), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(2065), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4961), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2386), 49, + ACTIONS(4965), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4963), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -280562,68 +285837,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [74941] = 17, - ACTIONS(247), 1, + [71570] = 17, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1338), 1, + ACTIONS(1345), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1340), 1, + ACTIONS(1347), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3231), 1, - aux_sym_record_entry_token1, - ACTIONS(3860), 1, + ACTIONS(3842), 1, anon_sym_DQUOTE, - ACTIONS(4874), 1, + ACTIONS(3848), 1, + sym_raw_string_begin, + ACTIONS(4895), 1, aux_sym_cmd_identifier_token38, - STATE(1990), 1, + STATE(2517), 1, + sym_comment, + STATE(4162), 1, sym_val_string, - STATE(2002), 1, - sym__str_double_quotes, - STATE(2012), 1, + STATE(4187), 1, sym_cmd_identifier, - STATE(2487), 1, - sym_comment, - STATE(7094), 1, + STATE(7312), 1, sym__val_number_decimal, - STATE(7646), 1, + STATE(7763), 1, sym__command_name, - ACTIONS(1336), 2, + ACTIONS(1343), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3862), 2, + ACTIONS(3844), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4868), 5, + STATE(4434), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4889), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4872), 5, + ACTIONS(4893), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(4870), 31, + ACTIONS(4891), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -280655,50 +285913,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [75033] = 17, - ACTIONS(247), 1, + [71663] = 17, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1338), 1, + ACTIONS(1345), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1340), 1, + ACTIONS(1347), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3231), 1, - aux_sym_record_entry_token1, - ACTIONS(3860), 1, + ACTIONS(3842), 1, anon_sym_DQUOTE, - ACTIONS(4874), 1, + ACTIONS(3848), 1, + sym_raw_string_begin, + ACTIONS(4895), 1, aux_sym_cmd_identifier_token38, - STATE(1990), 1, + STATE(2518), 1, + sym_comment, + STATE(4162), 1, sym_val_string, - STATE(2002), 1, - sym__str_double_quotes, - STATE(2012), 1, + STATE(4187), 1, sym_cmd_identifier, - STATE(2488), 1, - sym_comment, - STATE(6477), 1, + STATE(6271), 1, sym__command_name, - STATE(7094), 1, + STATE(7312), 1, sym__val_number_decimal, - ACTIONS(1336), 2, + ACTIONS(1343), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3862), 2, + ACTIONS(3844), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4868), 5, + STATE(4434), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4889), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4872), 5, + ACTIONS(4893), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(4870), 31, + ACTIONS(4891), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -280730,50 +285989,114 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [75125] = 17, - ACTIONS(247), 1, + [71756] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2519), 1, + sym_comment, + ACTIONS(2466), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2468), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [71823] = 17, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1338), 1, + ACTIONS(1345), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1340), 1, + ACTIONS(1347), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3231), 1, - aux_sym_record_entry_token1, - ACTIONS(3860), 1, + ACTIONS(3842), 1, anon_sym_DQUOTE, - ACTIONS(4874), 1, + ACTIONS(3848), 1, + sym_raw_string_begin, + ACTIONS(4895), 1, aux_sym_cmd_identifier_token38, - STATE(1990), 1, + STATE(2520), 1, + sym_comment, + STATE(4162), 1, sym_val_string, - STATE(2002), 1, - sym__str_double_quotes, - STATE(2012), 1, + STATE(4187), 1, sym_cmd_identifier, - STATE(2489), 1, - sym_comment, - STATE(5674), 1, - sym__command_name, - STATE(7094), 1, + STATE(7312), 1, sym__val_number_decimal, - ACTIONS(1336), 2, + STATE(7777), 1, + sym__command_name, + ACTIONS(1343), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3862), 2, + ACTIONS(3844), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4868), 5, + STATE(4434), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4889), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4872), 5, + ACTIONS(4893), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(4870), 31, + ACTIONS(4891), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -280805,20 +286128,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [75217] = 4, - ACTIONS(247), 1, + [71916] = 17, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2490), 1, + ACTIONS(1345), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(1347), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3842), 1, + anon_sym_DQUOTE, + ACTIONS(3848), 1, + sym_raw_string_begin, + ACTIONS(4895), 1, + aux_sym_cmd_identifier_token38, + STATE(2521), 1, sym_comment, - ACTIONS(4894), 6, + STATE(4162), 1, + sym_val_string, + STATE(4187), 1, + sym_cmd_identifier, + STATE(6314), 1, + sym__command_name, + STATE(7312), 1, + sym__val_number_decimal, + ACTIONS(1343), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(3844), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4434), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4889), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(4892), 49, - ts_builtin_sym_end, + ACTIONS(4893), 5, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(4891), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -280850,68 +286204,75 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + [72009] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2522), 1, + sym_comment, + ACTIONS(2017), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2019), 48, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [75283] = 5, - ACTIONS(3), 1, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [72076] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5439), 1, - aux_sym__immediate_decimal_token2, - STATE(2491), 1, + STATE(2523), 1, sym_comment, - ACTIONS(1556), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - ACTIONS(1554), 48, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(5019), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280920,6 +286281,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(5017), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -280928,52 +286330,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [75351] = 17, - ACTIONS(247), 1, + [72143] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1338), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1340), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3229), 1, - aux_sym_record_entry_token1, - ACTIONS(3860), 1, - anon_sym_DQUOTE, - ACTIONS(4874), 1, - aux_sym_cmd_identifier_token38, - STATE(1990), 1, - sym_val_string, - STATE(2002), 1, - sym__str_double_quotes, - STATE(2012), 1, - sym_cmd_identifier, - STATE(2492), 1, + STATE(2524), 1, sym_comment, - STATE(7094), 1, - sym__val_number_decimal, - STATE(7646), 1, - sym__command_name, - ACTIONS(1336), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3862), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4868), 5, + ACTIONS(5161), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5159), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [72210] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2525), 1, + sym_comment, + ACTIONS(1038), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4872), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4870), 31, + aux_sym_cmd_identifier_token38, + ACTIONS(1040), 50, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -281005,58 +286438,101 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [75443] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1572), 1, - sym__entry_separator, - ACTIONS(5441), 1, - anon_sym_LPAREN2, - ACTIONS(5443), 1, - anon_sym_DOT_DOT2, - ACTIONS(5447), 1, - sym_filesize_unit, - ACTIONS(5449), 1, - sym_duration_unit, - ACTIONS(5451), 1, - aux_sym__unquoted_in_list_token2, - STATE(2493), 1, - sym_comment, - STATE(7216), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5445), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1560), 46, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_RPAREN, + anon_sym_RBRACE, + sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + [72277] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2526), 1, + sym_comment, + ACTIONS(2043), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2045), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [72344] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2527), 1, + sym_comment, + ACTIONS(5530), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5532), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5133), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281065,6 +286541,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(5131), 42, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -281073,126 +286584,508 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [75523] = 17, - ACTIONS(247), 1, + [72415] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1338), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1340), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3015), 1, - anon_sym_DQUOTE, - ACTIONS(5167), 1, - aux_sym_cmd_identifier_token38, - STATE(2494), 1, + STATE(2528), 1, sym_comment, - STATE(2508), 1, - aux_sym_command_list_repeat1, - STATE(5413), 1, - sym__str_double_quotes, - STATE(6863), 1, - sym__command_name, - STATE(6913), 1, - sym__val_number_decimal, - STATE(7208), 1, - sym_cmd_identifier, - STATE(7209), 1, - sym_val_string, - ACTIONS(1336), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3017), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5161), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(5165), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5163), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [75615] = 17, - ACTIONS(247), 1, + ACTIONS(2047), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2049), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [72482] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2529), 1, + sym_comment, + ACTIONS(5019), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5017), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [72549] = 7, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2530), 1, + sym_comment, + ACTIONS(5530), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5534), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(5532), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5133), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5131), 40, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [72622] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2531), 1, + sym_comment, + ACTIONS(5019), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5017), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [72689] = 10, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2532), 1, + sym_comment, + ACTIONS(5530), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5534), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(5536), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(5532), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5548), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(5550), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(5133), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5131), 28, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [72768] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2533), 1, + sym_comment, + ACTIONS(5019), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5017), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [72835] = 11, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2534), 1, + sym_comment, + ACTIONS(5530), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5534), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(5536), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(5538), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(5532), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5548), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(5550), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(5133), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5131), 26, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [72916] = 17, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1338), 1, + ACTIONS(1345), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1340), 1, + ACTIONS(1347), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3015), 1, + ACTIONS(3842), 1, anon_sym_DQUOTE, - ACTIONS(5167), 1, + ACTIONS(3848), 1, + sym_raw_string_begin, + ACTIONS(4895), 1, aux_sym_cmd_identifier_token38, - STATE(2495), 1, + STATE(2535), 1, sym_comment, - STATE(2508), 1, - aux_sym_command_list_repeat1, - STATE(5413), 1, - sym__str_double_quotes, - STATE(6658), 1, - sym__command_name, - STATE(6913), 1, - sym__val_number_decimal, - STATE(7208), 1, - sym_cmd_identifier, - STATE(7209), 1, + STATE(4162), 1, sym_val_string, - ACTIONS(1336), 2, + STATE(4187), 1, + sym_cmd_identifier, + STATE(7312), 1, + sym__val_number_decimal, + STATE(7821), 1, + sym__command_name, + ACTIONS(1343), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3017), 2, + ACTIONS(3844), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5161), 5, + STATE(4434), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4889), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(5165), 5, + ACTIONS(4893), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(5163), 31, + ACTIONS(4891), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -281224,21 +287117,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [75707] = 4, - ACTIONS(247), 1, + [73009] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2496), 1, + STATE(2536), 1, sym_comment, - ACTIONS(1050), 7, + ACTIONS(1670), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1052), 48, - ts_builtin_sym_end, + ACTIONS(1672), 50, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -281278,6 +287170,8 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -281286,12 +287180,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [75773] = 4, - ACTIONS(247), 1, + [73076] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2497), 1, + STATE(2537), 1, sym_comment, - ACTIONS(1054), 7, + ACTIONS(1074), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, @@ -281299,7 +287193,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, anon_sym_DOT, - ACTIONS(1056), 48, + ACTIONS(1076), 49, + sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -281348,218 +287243,344 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [75839] = 4, - ACTIONS(247), 1, + [73143] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2498), 1, + STATE(2538), 1, sym_comment, - ACTIONS(2305), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2307), 49, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(2569), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2571), 48, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [75905] = 4, - ACTIONS(247), 1, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [73210] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2499), 1, + STATE(2539), 1, sym_comment, - ACTIONS(5109), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(5107), 49, + ACTIONS(5019), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5017), 48, ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [75971] = 17, - ACTIONS(247), 1, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [73277] = 12, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1338), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1340), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3015), 1, - anon_sym_DQUOTE, - ACTIONS(5167), 1, - aux_sym_cmd_identifier_token38, - STATE(2500), 1, + ACTIONS(5540), 1, + aux_sym_expr_binary_token13, + STATE(2540), 1, sym_comment, - STATE(2508), 1, - aux_sym_command_list_repeat1, - STATE(5413), 1, - sym__str_double_quotes, - STATE(6913), 1, - sym__val_number_decimal, - STATE(7027), 1, - sym__command_name, - STATE(7208), 1, - sym_cmd_identifier, - STATE(7209), 1, - sym_val_string, - ACTIONS(1336), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3017), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5161), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(5165), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5163), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [76063] = 4, - ACTIONS(247), 1, + ACTIONS(5530), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5534), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(5536), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(5538), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(5532), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5548), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(5550), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(5133), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5131), 25, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [73360] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2501), 1, + STATE(2541), 1, + sym_comment, + ACTIONS(2434), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2436), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [73427] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2542), 1, + sym_comment, + ACTIONS(2059), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2061), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [73494] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2543), 1, sym_comment, - ACTIONS(5097), 6, + ACTIONS(1066), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(5095), 49, + anon_sym_DOT, + ACTIONS(1068), 49, + sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -281600,7 +287621,6 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LBRACE, sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -281609,19 +287629,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [76129] = 4, - ACTIONS(247), 1, + [73561] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2502), 1, + STATE(2544), 1, sym_comment, - ACTIONS(2305), 6, + ACTIONS(1070), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2307), 49, + anon_sym_DOT, + ACTIONS(1072), 49, + sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -281661,8 +287684,6 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, @@ -281671,40 +287692,525 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [76195] = 13, - ACTIONS(247), 1, + [73628] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1494), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5417), 1, - anon_sym_DOLLAR, - ACTIONS(5419), 1, - anon_sym_LPAREN2, - ACTIONS(5421), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5423), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5425), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5427), 1, - aux_sym__immediate_decimal_token5, - STATE(2503), 1, + STATE(2545), 1, sym_comment, - STATE(3022), 1, - sym__immediate_decimal, - STATE(3075), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1478), 18, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(2442), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2444), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [73695] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2546), 1, + sym_comment, + ACTIONS(2450), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2452), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [73762] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2547), 1, + sym_comment, + ACTIONS(2067), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2069), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [73829] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2548), 1, + sym_comment, + ACTIONS(5019), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5017), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [73896] = 13, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5540), 1, + aux_sym_expr_binary_token13, + ACTIONS(5542), 1, + aux_sym_expr_binary_token14, + STATE(2549), 1, + sym_comment, + ACTIONS(5530), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5534), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(5536), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(5538), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(5532), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5548), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(5550), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(5133), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5131), 24, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [73981] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2550), 1, + sym_comment, + ACTIONS(2087), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2089), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [74048] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2551), 1, + sym_comment, + ACTIONS(2398), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2400), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [74115] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2552), 1, + sym_comment, + ACTIONS(2406), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2408), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [74182] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2553), 1, + sym_comment, + ACTIONS(2506), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281713,27 +288219,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1492), 27, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(2508), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -281742,113 +288268,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [76279] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2504), 1, - sym_comment, - ACTIONS(2141), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2143), 49, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [76345] = 5, - ACTIONS(3), 1, + [74249] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5361), 1, - aux_sym__immediate_decimal_token2, - STATE(2505), 1, + STATE(2554), 1, sym_comment, - ACTIONS(1520), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - ACTIONS(1518), 48, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(5019), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281857,6 +288282,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(5017), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -281865,188 +288331,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [76413] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2506), 1, - sym_comment, - ACTIONS(1675), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1677), 49, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, + [74316] = 17, + ACTIONS(111), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [76479] = 17, - ACTIONS(247), 1, + ACTIONS(123), 1, + sym_raw_string_begin, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1338), 1, + ACTIONS(1345), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1340), 1, + ACTIONS(1347), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3015), 1, - anon_sym_DQUOTE, - ACTIONS(5167), 1, + ACTIONS(4967), 1, aux_sym_cmd_identifier_token38, - STATE(2507), 1, + STATE(2555), 1, sym_comment, - STATE(2508), 1, - aux_sym_command_list_repeat1, - STATE(5413), 1, - sym__str_double_quotes, - STATE(6913), 1, - sym__val_number_decimal, - STATE(7183), 1, - sym__command_name, - STATE(7208), 1, + STATE(6296), 1, sym_cmd_identifier, - STATE(7209), 1, + STATE(6299), 1, sym_val_string, - ACTIONS(1336), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3017), 2, + STATE(6945), 1, + sym__command_name, + STATE(6981), 1, + sym__val_number_decimal, + ACTIONS(113), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5161), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(5165), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5163), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [76571] = 16, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5462), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5468), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5471), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5474), 1, - anon_sym_DQUOTE, - STATE(5413), 1, - sym__str_double_quotes, - STATE(6913), 1, - sym__val_number_decimal, - STATE(7208), 1, - sym_cmd_identifier, - STATE(7209), 1, - sym_val_string, - STATE(7345), 1, - sym__command_name, - ACTIONS(5465), 2, + ACTIONS(1343), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(5477), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(2508), 2, - sym_comment, - aux_sym_command_list_repeat1, - ACTIONS(5453), 5, + STATE(2065), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4961), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(5459), 5, + ACTIONS(4965), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(5456), 31, + ACTIONS(4963), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -282078,120 +288407,148 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [76661] = 4, - ACTIONS(247), 1, + [74409] = 14, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2509), 1, + ACTIONS(5540), 1, + aux_sym_expr_binary_token13, + ACTIONS(5542), 1, + aux_sym_expr_binary_token14, + ACTIONS(5544), 1, + aux_sym_expr_binary_token15, + STATE(2556), 1, sym_comment, - ACTIONS(5134), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(5132), 49, + ACTIONS(5530), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5534), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(5536), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(5538), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(5532), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5548), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(5550), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(5133), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5131), 23, ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LBRACE, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [76727] = 11, - ACTIONS(3), 1, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [74496] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1506), 1, - sym__entry_separator, - ACTIONS(5393), 1, - anon_sym_DOLLAR, - ACTIONS(5395), 1, - anon_sym_LPAREN2, - ACTIONS(5413), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5415), 1, - aux_sym__immediate_decimal_token5, - STATE(2510), 1, + STATE(2557), 1, sym_comment, - STATE(2961), 1, - sym__immediate_decimal, - ACTIONS(5411), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2960), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1496), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(2470), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2472), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [74563] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2558), 1, + sym_comment, + ACTIONS(2474), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282200,6 +288557,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(2476), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -282208,121 +288606,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [76807] = 4, - ACTIONS(247), 1, + [74630] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2511), 1, + STATE(2559), 1, sym_comment, - ACTIONS(1058), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1060), 49, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(2095), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2097), 48, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - sym_wild_card, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [76873] = 11, - ACTIONS(3), 1, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [74697] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1604), 1, - sym__entry_separator, - ACTIONS(5393), 1, - anon_sym_DOLLAR, - ACTIONS(5395), 1, - anon_sym_LPAREN2, - ACTIONS(5413), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5415), 1, - aux_sym__immediate_decimal_token5, - STATE(2512), 1, + STATE(2560), 1, sym_comment, - STATE(2942), 1, - sym__immediate_decimal, - ACTIONS(5411), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2940), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1602), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(2502), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282331,6 +288683,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(2504), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -282339,59 +288732,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [76953] = 11, - ACTIONS(3), 1, + [74764] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1584), 1, - sym__entry_separator, - ACTIONS(5393), 1, - anon_sym_DOLLAR, - ACTIONS(5395), 1, - anon_sym_LPAREN2, - ACTIONS(5413), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5415), 1, - aux_sym__immediate_decimal_token5, - STATE(2513), 1, + STATE(2561), 1, sym_comment, - STATE(2948), 1, - sym__immediate_decimal, - ACTIONS(5411), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2947), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1576), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(5019), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282400,6 +288746,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(5017), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -282408,49 +288795,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [77033] = 16, - ACTIONS(247), 1, + [74831] = 17, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1338), 1, + ACTIONS(1345), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1340), 1, + ACTIONS(1347), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3860), 1, + ACTIONS(3842), 1, anon_sym_DQUOTE, - ACTIONS(4874), 1, + ACTIONS(3848), 1, + sym_raw_string_begin, + ACTIONS(4895), 1, aux_sym_cmd_identifier_token38, - STATE(1990), 1, + STATE(2562), 1, + sym_comment, + STATE(4162), 1, sym_val_string, - STATE(2002), 1, - sym__str_double_quotes, - STATE(2012), 1, + STATE(4187), 1, sym_cmd_identifier, - STATE(2514), 1, - sym_comment, - STATE(7094), 1, - sym__val_number_decimal, - STATE(7670), 1, + STATE(4877), 1, sym__command_name, - ACTIONS(1336), 2, + STATE(7312), 1, + sym__val_number_decimal, + ACTIONS(1343), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3862), 2, + ACTIONS(3844), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4868), 5, + STATE(4434), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4889), 5, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4872), 5, + ACTIONS(4893), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(4870), 31, + ACTIONS(4891), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -282482,27 +288871,91 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [77122] = 8, - ACTIONS(247), 1, + [74924] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2563), 1, + sym_comment, + ACTIONS(2494), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2496), 48, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [74991] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5480), 1, + ACTIONS(5619), 1, anon_sym_DOT, - STATE(2515), 1, + STATE(2564), 1, sym_comment, - STATE(2604), 1, + STATE(2630), 1, aux_sym_cell_path_repeat1, - STATE(2658), 1, + STATE(2751), 1, sym_path, - STATE(2749), 1, + STATE(2759), 1, sym_cell_path, - ACTIONS(1840), 6, + ACTIONS(1993), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1842), 44, + ACTIONS(1995), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -282547,48 +289000,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [77195] = 16, - ACTIONS(247), 1, + [75065] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1338), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1340), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4131), 1, - anon_sym_DQUOTE, - ACTIONS(5484), 1, - aux_sym_cmd_identifier_token38, - STATE(2516), 1, + STATE(2565), 1, sym_comment, - STATE(4447), 1, - sym_cmd_identifier, - STATE(4452), 1, - sym_val_string, - STATE(4477), 1, - sym__command_name, - STATE(4744), 1, - sym__str_double_quotes, - STATE(7054), 1, - sym__val_number_decimal, - ACTIONS(1336), 2, + ACTIONS(1062), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1064), 49, + sym_raw_string_begin, + ts_builtin_sym_end, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(4133), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1320), 5, + [75131] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2566), 1, + sym_comment, + ACTIONS(2494), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(1322), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(5482), 31, + aux_sym_cmd_identifier_token38, + ACTIONS(2496), 49, + sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -282620,27 +289108,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [77284] = 8, - ACTIONS(247), 1, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [75197] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5480), 1, - anon_sym_DOT, - STATE(2517), 1, + STATE(2567), 1, sym_comment, - STATE(2604), 1, - aux_sym_cell_path_repeat1, - STATE(2658), 1, - sym_path, - STATE(2756), 1, - sym_cell_path, - ACTIONS(1844), 6, + ACTIONS(1038), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1846), 44, + ACTIONS(1040), 49, + sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -282677,7 +289175,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -282685,48 +289186,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [77357] = 16, - ACTIONS(111), 1, - anon_sym_DQUOTE, - ACTIONS(247), 1, + [75263] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1338), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1340), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4966), 1, - aux_sym_cmd_identifier_token38, - STATE(1975), 1, - sym__str_double_quotes, - STATE(2499), 1, - sym_cmd_identifier, - STATE(2501), 1, - sym_val_string, - STATE(2518), 1, + STATE(2568), 1, sym_comment, - STATE(5886), 1, - sym__command_name, - STATE(6971), 1, - sym__val_number_decimal, - ACTIONS(113), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1336), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4960), 5, + ACTIONS(1078), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4964), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4962), 31, + aux_sym_cmd_identifier_token38, + ACTIONS(1080), 49, + sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -282758,20 +289232,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [77446] = 4, - ACTIONS(247), 1, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [75329] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2519), 1, + ACTIONS(5619), 1, + anon_sym_DOT, + STATE(2569), 1, sym_comment, - ACTIONS(1034), 6, + STATE(2630), 1, + aux_sym_cell_path_repeat1, + STATE(2751), 1, + sym_path, + STATE(2765), 1, + sym_cell_path, + ACTIONS(2001), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1036), 48, - ts_builtin_sym_end, + ACTIONS(2003), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -282808,10 +289306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - sym_wild_card, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -282819,19 +289314,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [77511] = 4, - ACTIONS(247), 1, + [75403] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2520), 1, + STATE(2570), 1, sym_comment, - ACTIONS(2305), 6, + ACTIONS(2494), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2307), 48, + ACTIONS(2496), 49, + sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -282880,20 +289376,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [77576] = 4, - ACTIONS(247), 1, + [75469] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2521), 1, + ACTIONS(5619), 1, + anon_sym_DOT, + STATE(2571), 1, sym_comment, - ACTIONS(2305), 6, + STATE(2630), 1, + aux_sym_cell_path_repeat1, + STATE(2751), 1, + sym_path, + STATE(2768), 1, + sym_cell_path, + ACTIONS(2005), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2307), 48, - ts_builtin_sym_end, + ACTIONS(2007), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -282930,10 +289434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - sym_wild_card, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -282941,48 +289442,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [77641] = 16, - ACTIONS(111), 1, - anon_sym_DQUOTE, - ACTIONS(247), 1, + [75543] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1338), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1340), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4966), 1, - aux_sym_cmd_identifier_token38, - STATE(1975), 1, - sym__str_double_quotes, - STATE(2499), 1, - sym_cmd_identifier, - STATE(2501), 1, - sym_val_string, - STATE(2522), 1, + STATE(2572), 1, sym_comment, - STATE(6825), 1, - sym__command_name, - STATE(6971), 1, - sym__val_number_decimal, - ACTIONS(113), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1336), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4960), 5, + ACTIONS(5502), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4964), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4962), 31, + aux_sym_cmd_identifier_token38, + ACTIONS(5504), 49, + sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -283014,48 +289488,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [77730] = 16, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1338), 1, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(1340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3860), 1, anon_sym_DQUOTE, - ACTIONS(4874), 1, - aux_sym_cmd_identifier_token38, - STATE(1990), 1, - sym_val_string, - STATE(2002), 1, - sym__str_double_quotes, - STATE(2012), 1, - sym_cmd_identifier, - STATE(2523), 1, - sym_comment, - STATE(5704), 1, - sym__command_name, - STATE(7094), 1, - sym__val_number_decimal, - ACTIONS(1336), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3862), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4868), 5, + [75609] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5619), 1, + anon_sym_DOT, + STATE(2573), 1, + sym_comment, + STATE(2630), 1, + aux_sym_cell_path_repeat1, + STATE(2751), 1, + sym_path, + STATE(2769), 1, + sym_cell_path, + ACTIONS(2009), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4872), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4870), 31, + aux_sym_cmd_identifier_token38, + ACTIONS(2011), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -283087,27 +289557,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [77819] = 8, - ACTIONS(247), 1, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [75683] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5480), 1, - anon_sym_DOT, - STATE(2524), 1, + STATE(2574), 1, sym_comment, - STATE(2604), 1, - aux_sym_cell_path_repeat1, - STATE(2658), 1, - sym_path, - STATE(2759), 1, - sym_cell_path, - ACTIONS(1848), 6, + ACTIONS(1054), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1850), 44, + ACTIONS(1056), 49, + sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -283144,7 +289621,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -283152,27 +289632,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [77892] = 8, - ACTIONS(247), 1, + [75749] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5480), 1, + ACTIONS(5619), 1, anon_sym_DOT, - STATE(2525), 1, + STATE(2575), 1, sym_comment, - STATE(2604), 1, + STATE(2630), 1, aux_sym_cell_path_repeat1, - STATE(2658), 1, + STATE(2751), 1, sym_path, - STATE(2760), 1, + STATE(2770), 1, sym_cell_path, - ACTIONS(1852), 6, + ACTIONS(2013), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1854), 44, + ACTIONS(2015), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -283217,27 +289698,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [77965] = 8, - ACTIONS(247), 1, + [75823] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5480), 1, + ACTIONS(5619), 1, anon_sym_DOT, - STATE(2526), 1, + STATE(2576), 1, sym_comment, - STATE(2604), 1, + STATE(2630), 1, aux_sym_cell_path_repeat1, - STATE(2658), 1, + STATE(2751), 1, sym_path, - STATE(2765), 1, + STATE(2774), 1, sym_cell_path, - ACTIONS(1856), 6, + ACTIONS(1021), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1858), 44, + ACTIONS(1023), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -283282,27 +289764,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78038] = 8, - ACTIONS(247), 1, + [75897] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5480), 1, + ACTIONS(5619), 1, anon_sym_DOT, - STATE(2527), 1, + STATE(2577), 1, sym_comment, - STATE(2604), 1, + STATE(2630), 1, aux_sym_cell_path_repeat1, - STATE(2658), 1, + STATE(2751), 1, sym_path, - STATE(2767), 1, + STATE(2771), 1, sym_cell_path, - ACTIONS(1860), 6, + ACTIONS(2017), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1862), 44, + ACTIONS(2019), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -283347,48 +289830,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78111] = 16, - ACTIONS(247), 1, + [75971] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1338), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1340), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3860), 1, - anon_sym_DQUOTE, - ACTIONS(4874), 1, - aux_sym_cmd_identifier_token38, - STATE(1990), 1, - sym_val_string, - STATE(2002), 1, - sym__str_double_quotes, - STATE(2012), 1, - sym_cmd_identifier, - STATE(2528), 1, + ACTIONS(5619), 1, + anon_sym_DOT, + STATE(2578), 1, sym_comment, - STATE(6505), 1, - sym__command_name, - STATE(7094), 1, - sym__val_number_decimal, - ACTIONS(1336), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3862), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4868), 5, + STATE(2630), 1, + aux_sym_cell_path_repeat1, + STATE(2751), 1, + sym_path, + STATE(2773), 1, + sym_cell_path, + ACTIONS(2021), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4872), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4870), 31, + aux_sym_cmd_identifier_token38, + ACTIONS(2023), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -283420,48 +289883,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [78200] = 16, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1338), 1, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(1340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3860), 1, anon_sym_DQUOTE, - ACTIONS(4874), 1, - aux_sym_cmd_identifier_token38, - STATE(1990), 1, - sym_val_string, - STATE(2002), 1, - sym__str_double_quotes, - STATE(2012), 1, - sym_cmd_identifier, - STATE(2529), 1, - sym_comment, - STATE(6506), 1, - sym__command_name, - STATE(7094), 1, - sym__val_number_decimal, - ACTIONS(1336), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3862), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4868), 5, + [76045] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5619), 1, + anon_sym_DOT, + STATE(2579), 1, + sym_comment, + STATE(2630), 1, + aux_sym_cell_path_repeat1, + STATE(2751), 1, + sym_path, + STATE(2775), 1, + sym_cell_path, + ACTIONS(2043), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4872), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4870), 31, + aux_sym_cmd_identifier_token38, + ACTIONS(2045), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -283493,20 +289949,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [78289] = 4, - ACTIONS(247), 1, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [76119] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2530), 1, + ACTIONS(5619), 1, + anon_sym_DOT, + STATE(2580), 1, sym_comment, - ACTIONS(1058), 6, + STATE(2630), 1, + aux_sym_cell_path_repeat1, + STATE(2751), 1, + sym_path, + STATE(2776), 1, + sym_cell_path, + ACTIONS(2047), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1060), 48, - ts_builtin_sym_end, + ACTIONS(2049), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -283543,10 +290020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - sym_wild_card, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -283554,20 +290028,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78354] = 4, - ACTIONS(247), 1, + [76193] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2531), 1, + ACTIONS(5619), 1, + anon_sym_DOT, + STATE(2581), 1, sym_comment, - ACTIONS(2362), 6, + STATE(2630), 1, + aux_sym_cell_path_repeat1, + STATE(2751), 1, + sym_path, + STATE(2784), 1, + sym_cell_path, + ACTIONS(2051), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2364), 48, - ts_builtin_sym_end, + ACTIONS(2053), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -283604,10 +290086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - sym_wild_card, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -283615,19 +290094,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78419] = 4, - ACTIONS(247), 1, + [76267] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2532), 1, + STATE(2582), 1, sym_comment, - ACTIONS(2366), 6, + ACTIONS(2410), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2368), 48, + ACTIONS(2412), 49, + sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -283676,48 +290156,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78484] = 16, - ACTIONS(247), 1, + [76333] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1338), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1340), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4966), 1, - aux_sym_cmd_identifier_token38, - ACTIONS(5486), 1, - anon_sym_DQUOTE, - STATE(1594), 1, - sym__command_name, - STATE(2499), 1, - sym_cmd_identifier, - STATE(2501), 1, - sym_val_string, - STATE(2533), 1, + ACTIONS(5619), 1, + anon_sym_DOT, + STATE(2583), 1, sym_comment, - STATE(2550), 1, - sym__str_double_quotes, - STATE(6971), 1, - sym__val_number_decimal, - ACTIONS(1336), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(5488), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4960), 5, + STATE(2630), 1, + aux_sym_cell_path_repeat1, + STATE(2751), 1, + sym_path, + STATE(2786), 1, + sym_cell_path, + ACTIONS(2055), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4964), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4962), 31, + aux_sym_cmd_identifier_token38, + ACTIONS(2057), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -283749,27 +290209,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [78573] = 8, - ACTIONS(247), 1, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [76407] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5480), 1, + ACTIONS(5619), 1, anon_sym_DOT, - STATE(2534), 1, + STATE(2584), 1, sym_comment, - STATE(2604), 1, + STATE(2630), 1, aux_sym_cell_path_repeat1, - STATE(2658), 1, + STATE(2751), 1, sym_path, - STATE(2775), 1, + STATE(2789), 1, sym_cell_path, - ACTIONS(1864), 6, + ACTIONS(2059), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1866), 44, + ACTIONS(2061), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -283814,27 +290288,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78646] = 8, - ACTIONS(247), 1, + [76481] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5480), 1, + ACTIONS(5619), 1, anon_sym_DOT, - STATE(2535), 1, + STATE(2585), 1, sym_comment, - STATE(2604), 1, + STATE(2630), 1, aux_sym_cell_path_repeat1, - STATE(2658), 1, + STATE(2751), 1, sym_path, - STATE(2776), 1, + STATE(2790), 1, sym_cell_path, - ACTIONS(1868), 6, + ACTIONS(2067), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1870), 44, + ACTIONS(2069), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -283879,27 +290354,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78719] = 8, - ACTIONS(247), 1, + [76555] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5480), 1, - anon_sym_DOT, - STATE(2536), 1, + STATE(2586), 1, sym_comment, - STATE(2604), 1, - aux_sym_cell_path_repeat1, - STATE(2658), 1, - sym_path, - STATE(2780), 1, - sym_cell_path, - ACTIONS(1872), 6, + ACTIONS(2438), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1874), 44, + ACTIONS(2440), 49, + sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -283936,7 +290405,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -283944,27 +290416,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78792] = 8, - ACTIONS(247), 1, + [76621] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5480), 1, + ACTIONS(5619), 1, anon_sym_DOT, - STATE(2537), 1, + STATE(2587), 1, sym_comment, - STATE(2604), 1, + STATE(2630), 1, aux_sym_cell_path_repeat1, - STATE(2658), 1, + STATE(2751), 1, sym_path, - STATE(2781), 1, + STATE(2797), 1, sym_cell_path, - ACTIONS(1876), 6, + ACTIONS(2083), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1878), 44, + ACTIONS(2085), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -284009,27 +290482,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78865] = 8, - ACTIONS(247), 1, + [76695] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5480), 1, + ACTIONS(5619), 1, anon_sym_DOT, - STATE(2538), 1, + STATE(2588), 1, sym_comment, - STATE(2604), 1, + STATE(2630), 1, aux_sym_cell_path_repeat1, - STATE(2658), 1, + STATE(2751), 1, sym_path, - STATE(2782), 1, + STATE(2798), 1, sym_cell_path, - ACTIONS(1880), 6, + ACTIONS(2087), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1882), 44, + ACTIONS(2089), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -284074,48 +290548,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78938] = 16, - ACTIONS(247), 1, + [76769] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1338), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1340), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3860), 1, - anon_sym_DQUOTE, - ACTIONS(4874), 1, - aux_sym_cmd_identifier_token38, - STATE(1990), 1, - sym_val_string, - STATE(2002), 1, - sym__str_double_quotes, - STATE(2012), 1, - sym_cmd_identifier, - STATE(2539), 1, + ACTIONS(5619), 1, + anon_sym_DOT, + STATE(2589), 1, sym_comment, - STATE(7094), 1, - sym__val_number_decimal, - STATE(7413), 1, - sym__command_name, - ACTIONS(1336), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3862), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4868), 5, + STATE(2630), 1, + aux_sym_cell_path_repeat1, + STATE(2751), 1, + sym_path, + STATE(2800), 1, + sym_cell_path, + ACTIONS(2095), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4872), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4870), 31, + aux_sym_cmd_identifier_token38, + ACTIONS(2097), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -284147,48 +290601,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [79027] = 16, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1338), 1, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(1340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3860), 1, anon_sym_DQUOTE, - ACTIONS(4874), 1, - aux_sym_cmd_identifier_token38, - STATE(1990), 1, - sym_val_string, - STATE(2002), 1, - sym__str_double_quotes, - STATE(2012), 1, - sym_cmd_identifier, - STATE(2540), 1, - sym_comment, - STATE(6110), 1, - sym__command_name, - STATE(7094), 1, - sym__val_number_decimal, - ACTIONS(1336), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3862), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4868), 5, + [76843] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2590), 1, + sym_comment, + ACTIONS(5601), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4872), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4870), 31, + aux_sym_cmd_identifier_token38, + ACTIONS(5603), 49, + sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -284220,27 +290660,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [79116] = 8, - ACTIONS(247), 1, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [76909] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5480), 1, + ACTIONS(5619), 1, anon_sym_DOT, - STATE(2541), 1, + STATE(2591), 1, sym_comment, - STATE(2604), 1, + STATE(2630), 1, aux_sym_cell_path_repeat1, - STATE(2658), 1, + STATE(2751), 1, sym_path, - STATE(2786), 1, + STATE(2804), 1, sym_cell_path, - ACTIONS(1884), 6, + ACTIONS(1901), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1886), 44, + ACTIONS(1903), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -284285,19 +290742,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [79189] = 4, + [76983] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2542), 1, + ACTIONS(5621), 1, + anon_sym_DOT, + ACTIONS(5623), 1, + aux_sym__immediate_decimal_token2, + STATE(2592), 1, sym_comment, - ACTIONS(1520), 6, + ACTIONS(1717), 5, + sym_raw_string_begin, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, sym__entry_separator, - ACTIONS(1518), 48, + ACTIONS(1715), 48, anon_sym_true, anon_sym_false, anon_sym_null, @@ -284346,27 +290806,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, aux_sym__unquoted_in_list_token2, - [79254] = 8, - ACTIONS(247), 1, + [77053] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5480), 1, - anon_sym_DOT, - STATE(2543), 1, + STATE(2593), 1, sym_comment, - STATE(2604), 1, - aux_sym_cell_path_repeat1, - STATE(2658), 1, - sym_path, - STATE(2790), 1, - sym_cell_path, - ACTIONS(1888), 6, + ACTIONS(1362), 55, + anon_sym_EQ, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_else, + anon_sym_LBRACE, + anon_sym_catch, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [77117] = 12, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5558), 1, + anon_sym_DOLLAR, + ACTIONS(5560), 1, + anon_sym_LPAREN2, + ACTIONS(5625), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5627), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5629), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5631), 1, + aux_sym__immediate_decimal_token5, + STATE(2594), 1, + sym_comment, + STATE(3051), 1, + sym__immediate_decimal, + STATE(3097), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1560), 18, + anon_sym_LPAREN, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1570), 28, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [77199] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2595), 1, + sym_comment, + ACTIONS(5570), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1890), 44, + ACTIONS(5572), 49, + sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -284403,7 +290988,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -284411,92 +290999,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [79327] = 8, - ACTIONS(247), 1, + [77265] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5480), 1, - anon_sym_DOT, - STATE(2544), 1, + STATE(2596), 1, sym_comment, - STATE(2604), 1, - aux_sym_cell_path_repeat1, - STATE(2658), 1, - sym_path, - STATE(2804), 1, - sym_cell_path, - ACTIONS(1892), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1894), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, + ACTIONS(1538), 7, + sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(1536), 48, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [79400] = 8, - ACTIONS(247), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [77331] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5480), 1, + ACTIONS(5619), 1, anon_sym_DOT, - STATE(2545), 1, + STATE(2597), 1, sym_comment, - STATE(2604), 1, + STATE(2630), 1, aux_sym_cell_path_repeat1, - STATE(2658), 1, + STATE(2751), 1, sym_path, - STATE(2808), 1, + STATE(2753), 1, sym_cell_path, - ACTIONS(1896), 6, + ACTIONS(1909), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1898), 44, + ACTIONS(1911), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -284541,165 +291127,296 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [79473] = 8, - ACTIONS(247), 1, + [77405] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5480), 1, + ACTIONS(5633), 1, anon_sym_DOT, - STATE(2546), 1, + ACTIONS(5635), 1, + aux_sym__immediate_decimal_token2, + STATE(2598), 1, sym_comment, - STATE(2604), 1, - aux_sym_cell_path_repeat1, - STATE(2658), 1, - sym_path, - STATE(2814), 1, - sym_cell_path, - ACTIONS(1900), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1902), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, + ACTIONS(1536), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1538), 35, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [79546] = 16, - ACTIONS(247), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [77475] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1338), 1, + ACTIONS(5637), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5639), 1, + aux_sym__immediate_decimal_token2, + STATE(2599), 1, + sym_comment, + ACTIONS(1528), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1530), 35, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(1340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3860), 1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(4874), 1, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [77545] = 12, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5558), 1, + anon_sym_DOLLAR, + ACTIONS(5560), 1, + anon_sym_LPAREN2, + ACTIONS(5625), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5627), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5629), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5631), 1, + aux_sym__immediate_decimal_token5, + STATE(2600), 1, + sym_comment, + STATE(3121), 1, + sym__immediate_decimal, + STATE(3052), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1608), 18, + anon_sym_LPAREN, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1610), 28, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, aux_sym_cmd_identifier_token38, - STATE(1990), 1, - sym_val_string, - STATE(2002), 1, - sym__str_double_quotes, - STATE(2012), 1, - sym_cmd_identifier, - STATE(2547), 1, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [77627] = 12, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5558), 1, + anon_sym_DOLLAR, + ACTIONS(5560), 1, + anon_sym_LPAREN2, + ACTIONS(5625), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5627), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5629), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5631), 1, + aux_sym__immediate_decimal_token5, + STATE(2601), 1, sym_comment, - STATE(6218), 1, - sym__command_name, - STATE(7094), 1, - sym__val_number_decimal, - ACTIONS(1336), 2, + STATE(3065), 1, + sym__immediate_decimal, + STATE(3059), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1612), 18, + anon_sym_LPAREN, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3862), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4868), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(4872), 5, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1614), 28, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(4870), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [79635] = 8, - ACTIONS(247), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [77709] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5480), 1, + ACTIONS(5619), 1, anon_sym_DOT, - STATE(2548), 1, + STATE(2602), 1, sym_comment, - STATE(2604), 1, + STATE(2630), 1, aux_sym_cell_path_repeat1, - STATE(2658), 1, + STATE(2751), 1, sym_path, - STATE(2815), 1, + STATE(2841), 1, sym_cell_path, - ACTIONS(1904), 6, + ACTIONS(1893), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1906), 44, + ACTIONS(1895), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -284744,92 +291461,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [79708] = 16, - ACTIONS(247), 1, + [77783] = 12, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1338), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1340), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3860), 1, - anon_sym_DQUOTE, - ACTIONS(4874), 1, - aux_sym_cmd_identifier_token38, - STATE(1990), 1, - sym_val_string, - STATE(2002), 1, - sym__str_double_quotes, - STATE(2012), 1, - sym_cmd_identifier, - STATE(2549), 1, + ACTIONS(5558), 1, + anon_sym_DOLLAR, + ACTIONS(5560), 1, + anon_sym_LPAREN2, + ACTIONS(5625), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5627), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5629), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5631), 1, + aux_sym__immediate_decimal_token5, + STATE(2603), 1, sym_comment, - STATE(5674), 1, - sym__command_name, - STATE(7094), 1, - sym__val_number_decimal, - ACTIONS(1336), 2, + STATE(3072), 1, + sym__immediate_decimal, + STATE(3067), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1620), 18, + anon_sym_LPAREN, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3862), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4868), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(4872), 5, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1622), 28, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(4870), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [79797] = 4, - ACTIONS(247), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [77865] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2550), 1, + STATE(2604), 1, sym_comment, - ACTIONS(1042), 6, + ACTIONS(2430), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1044), 48, + ACTIONS(2432), 49, + sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -284878,231 +291593,212 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [79862] = 16, - ACTIONS(247), 1, + [77931] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1338), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1340), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3860), 1, - anon_sym_DQUOTE, - ACTIONS(4874), 1, - aux_sym_cmd_identifier_token38, - STATE(1546), 1, - sym__command_name, - STATE(1990), 1, - sym_val_string, - STATE(2002), 1, - sym__str_double_quotes, - STATE(2012), 1, - sym_cmd_identifier, - STATE(2551), 1, + ACTIONS(5641), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5643), 1, + aux_sym__immediate_decimal_token2, + STATE(2605), 1, sym_comment, - STATE(7094), 1, - sym__val_number_decimal, - ACTIONS(1336), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3862), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4868), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(4872), 5, + ACTIONS(1705), 5, + sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1703), 48, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(4870), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [79951] = 4, - ACTIONS(247), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [78001] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2552), 1, + ACTIONS(5645), 1, + anon_sym_DOT, + STATE(2606), 1, sym_comment, - ACTIONS(1675), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1677), 48, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, + STATE(2633), 1, + aux_sym_cell_path_repeat1, + STATE(2710), 1, + sym_path, + STATE(2772), 1, + sym_cell_path, + ACTIONS(1668), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1664), 47, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, anon_sym_LBRACK, - sym_wild_card, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [80016] = 16, - ACTIONS(247), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [78075] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1338), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1340), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3860), 1, - anon_sym_DQUOTE, - ACTIONS(4874), 1, - aux_sym_cmd_identifier_token38, - STATE(1990), 1, - sym_val_string, - STATE(2002), 1, - sym__str_double_quotes, - STATE(2012), 1, - sym_cmd_identifier, - STATE(2553), 1, + STATE(2607), 1, sym_comment, - STATE(6390), 1, - sym__command_name, - STATE(7094), 1, - sym__val_number_decimal, - ACTIONS(1336), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3862), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4868), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(4872), 5, + ACTIONS(1530), 7, + sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(1528), 48, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(4870), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [80105] = 8, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [78141] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5490), 1, - anon_sym_DOT, - STATE(2554), 1, + STATE(2608), 1, sym_comment, - STATE(2605), 1, - aux_sym_cell_path_repeat1, - STATE(2711), 1, - sym_path, - STATE(2828), 1, - sym_cell_path, - ACTIONS(1645), 3, + ACTIONS(1598), 7, + sym_raw_string_begin, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, sym__entry_separator, - ACTIONS(1641), 47, + ACTIONS(1596), 48, anon_sym_true, anon_sym_false, anon_sym_null, @@ -285150,27 +291846,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [80178] = 8, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token2, + [78207] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5480), 1, + ACTIONS(5619), 1, anon_sym_DOT, - STATE(2555), 1, + STATE(2609), 1, sym_comment, - STATE(2604), 1, + STATE(2630), 1, aux_sym_cell_path_repeat1, - STATE(2658), 1, + STATE(2751), 1, sym_path, - STATE(2714), 1, + STATE(2814), 1, sym_cell_path, - ACTIONS(1828), 6, + ACTIONS(1929), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1830), 44, + ACTIONS(1931), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -285215,24 +291913,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [80251] = 8, + [78281] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5490), 1, + ACTIONS(5645), 1, anon_sym_DOT, - STATE(2556), 1, + STATE(2610), 1, sym_comment, - STATE(2605), 1, + STATE(2633), 1, aux_sym_cell_path_repeat1, - STATE(2711), 1, + STATE(2710), 1, sym_path, - STATE(2753), 1, + STATE(2778), 1, sym_cell_path, - ACTIONS(1007), 3, + ACTIONS(1672), 4, + sym_raw_string_begin, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1005), 47, + ACTIONS(1670), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -285280,19 +291979,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [80324] = 4, - ACTIONS(247), 1, + [78355] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2557), 1, + STATE(2611), 1, sym_comment, - ACTIONS(2380), 6, + ACTIONS(2105), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2382), 48, + ACTIONS(2107), 49, + sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -285341,19 +292041,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [80389] = 4, - ACTIONS(247), 1, + [78421] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2558), 1, + STATE(2612), 1, sym_comment, - ACTIONS(2384), 6, + ACTIONS(2478), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2386), 48, + ACTIONS(2480), 49, + sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -285402,48 +292103,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [80454] = 16, - ACTIONS(247), 1, + [78487] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1338), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1340), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3860), 1, - anon_sym_DQUOTE, - ACTIONS(4874), 1, - aux_sym_cmd_identifier_token38, - STATE(1990), 1, - sym_val_string, - STATE(2002), 1, - sym__str_double_quotes, - STATE(2012), 1, - sym_cmd_identifier, - STATE(2559), 1, + ACTIONS(5619), 1, + anon_sym_DOT, + STATE(2613), 1, sym_comment, - STATE(7094), 1, - sym__val_number_decimal, - STATE(7646), 1, - sym__command_name, - ACTIONS(1336), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3862), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4868), 5, + STATE(2630), 1, + aux_sym_cell_path_repeat1, + STATE(2751), 1, + sym_path, + STATE(2852), 1, + sym_cell_path, + ACTIONS(1897), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4872), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4870), 31, + aux_sym_cmd_identifier_token38, + ACTIONS(1899), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -285475,121 +292156,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [80543] = 16, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1338), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1340), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3860), 1, - anon_sym_DQUOTE, - ACTIONS(4874), 1, - aux_sym_cmd_identifier_token38, - STATE(1990), 1, - sym_val_string, - STATE(2002), 1, - sym__str_double_quotes, - STATE(2012), 1, - sym_cmd_identifier, - STATE(2560), 1, - sym_comment, - STATE(6477), 1, - sym__command_name, - STATE(7094), 1, - sym__val_number_decimal, - ACTIONS(1336), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3862), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4868), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(4872), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(4870), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [80632] = 16, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1338), 1, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(1340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3860), 1, anon_sym_DQUOTE, - ACTIONS(4874), 1, - aux_sym_cmd_identifier_token38, - STATE(1990), 1, - sym_val_string, - STATE(2002), 1, - sym__str_double_quotes, - STATE(2012), 1, - sym_cmd_identifier, - STATE(2561), 1, - sym_comment, - STATE(6153), 1, - sym__command_name, - STATE(7094), 1, - sym__val_number_decimal, - ACTIONS(1336), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3862), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4868), 5, + [78561] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2614), 1, + sym_comment, + ACTIONS(1670), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4872), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4870), 31, + aux_sym_cmd_identifier_token38, + ACTIONS(1672), 49, + sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -285621,117 +292215,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [80721] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5417), 1, - anon_sym_DOLLAR, - ACTIONS(5419), 1, - anon_sym_LPAREN2, - ACTIONS(5492), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5494), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5496), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5498), 1, - aux_sym__immediate_decimal_token5, - STATE(2562), 1, - sym_comment, - STATE(3074), 1, - sym__immediate_decimal, - STATE(3069), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1496), 18, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1506), 27, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [80802] = 16, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1338), 1, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(1340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3860), 1, anon_sym_DQUOTE, - ACTIONS(4874), 1, - aux_sym_cmd_identifier_token38, - STATE(1990), 1, - sym_val_string, - STATE(2002), 1, - sym__str_double_quotes, - STATE(2012), 1, - sym_cmd_identifier, - STATE(2563), 1, - sym_comment, - STATE(7094), 1, - sym__val_number_decimal, - STATE(7513), 1, - sym__command_name, - ACTIONS(1336), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3862), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4868), 5, + [78627] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2615), 1, + sym_comment, + ACTIONS(1058), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4872), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4870), 31, + aux_sym_cmd_identifier_token38, + ACTIONS(1060), 49, + sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -285763,121 +292277,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [80891] = 16, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1338), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1340), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3860), 1, - anon_sym_DQUOTE, - ACTIONS(4874), 1, - aux_sym_cmd_identifier_token38, - STATE(1990), 1, - sym_val_string, - STATE(2002), 1, - sym__str_double_quotes, - STATE(2012), 1, - sym_cmd_identifier, - STATE(2564), 1, - sym_comment, - STATE(6541), 1, - sym__command_name, - STATE(7094), 1, - sym__val_number_decimal, - ACTIONS(1336), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3862), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4868), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(4872), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(4870), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [80980] = 16, - ACTIONS(111), 1, - anon_sym_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1338), 1, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(1340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(4966), 1, - aux_sym_cmd_identifier_token38, - STATE(1975), 1, - sym__str_double_quotes, - STATE(2499), 1, - sym_cmd_identifier, - STATE(2501), 1, - sym_val_string, - STATE(2565), 1, - sym_comment, - STATE(6965), 1, - sym__command_name, - STATE(6971), 1, - sym__val_number_decimal, - ACTIONS(113), 2, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1336), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4960), 5, + [78693] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2616), 1, + sym_comment, + ACTIONS(4987), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4964), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4962), 31, + aux_sym_cmd_identifier_token38, + ACTIONS(4985), 49, + sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -285909,121 +292339,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [81069] = 16, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1338), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1340), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3523), 1, - anon_sym_DQUOTE, - ACTIONS(5506), 1, - aux_sym_cmd_identifier_token38, - STATE(2566), 1, - sym_comment, - STATE(4447), 1, - sym_cmd_identifier, - STATE(4452), 1, - sym_val_string, - STATE(4477), 1, - sym__command_name, - STATE(4680), 1, - sym__str_double_quotes, - STATE(6974), 1, - sym__val_number_decimal, - ACTIONS(1336), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3525), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5500), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(5504), 5, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(5502), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [81158] = 16, - ACTIONS(111), 1, - anon_sym_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1338), 1, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(1340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(4966), 1, - aux_sym_cmd_identifier_token38, - STATE(1975), 1, - sym__str_double_quotes, - STATE(2499), 1, - sym_cmd_identifier, - STATE(2501), 1, - sym_val_string, - STATE(2567), 1, - sym_comment, - STATE(5923), 1, - sym__command_name, - STATE(6971), 1, - sym__val_number_decimal, - ACTIONS(113), 2, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1336), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4960), 5, + [78759] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2617), 1, + sym_comment, + ACTIONS(5590), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4964), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4962), 31, + aux_sym_cmd_identifier_token38, + ACTIONS(5592), 49, + sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -286055,88 +292401,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [81247] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2568), 1, - sym_comment, - ACTIONS(1556), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - ACTIONS(1554), 48, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [81312] = 8, - ACTIONS(247), 1, + [78825] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5480), 1, - anon_sym_DOT, - STATE(2569), 1, + STATE(2618), 1, sym_comment, - STATE(2604), 1, - aux_sym_cell_path_repeat1, - STATE(2658), 1, - sym_path, - STATE(2809), 1, - sym_cell_path, - ACTIONS(1912), 6, + ACTIONS(5594), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1914), 44, + ACTIONS(5596), 49, + sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -286173,7 +292468,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -286181,48 +292479,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [81385] = 16, - ACTIONS(247), 1, + [78891] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1338), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1340), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3860), 1, - anon_sym_DQUOTE, - ACTIONS(4874), 1, - aux_sym_cmd_identifier_token38, - STATE(1990), 1, - sym_val_string, - STATE(2002), 1, - sym__str_double_quotes, - STATE(2012), 1, - sym_cmd_identifier, - STATE(2570), 1, + STATE(2619), 1, sym_comment, - STATE(6237), 1, - sym__command_name, - STATE(7094), 1, - sym__val_number_decimal, - ACTIONS(1336), 2, + ACTIONS(1713), 7, + sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(1711), 48, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(3862), 2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4868), 5, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [78957] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2620), 1, + sym_comment, + ACTIONS(4997), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4872), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4870), 31, + aux_sym_cmd_identifier_token38, + ACTIONS(4995), 49, + sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -286254,48 +292587,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [81474] = 16, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1338), 1, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + sym_wild_card, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(1340), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3860), 1, anon_sym_DQUOTE, - ACTIONS(4874), 1, - aux_sym_cmd_identifier_token38, - STATE(1990), 1, - sym_val_string, - STATE(2002), 1, - sym__str_double_quotes, - STATE(2012), 1, - sym_cmd_identifier, - STATE(2571), 1, - sym_comment, - STATE(6238), 1, - sym__command_name, - STATE(7094), 1, - sym__val_number_decimal, - ACTIONS(1336), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3862), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4868), 5, + [79023] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5619), 1, + anon_sym_DOT, + STATE(2621), 1, + sym_comment, + STATE(2630), 1, + aux_sym_cell_path_repeat1, + STATE(2751), 1, + sym_path, + STATE(2760), 1, + sym_cell_path, + ACTIONS(1997), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4872), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4870), 31, + aux_sym_cmd_identifier_token38, + ACTIONS(1999), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -286327,19 +292656,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [81563] = 4, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [79097] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(2572), 1, + ACTIONS(5645), 1, + anon_sym_DOT, + STATE(2622), 1, sym_comment, - ACTIONS(1655), 6, - anon_sym_LPAREN2, + STATE(2633), 1, + aux_sym_cell_path_repeat1, + STATE(2710), 1, + sym_path, + STATE(2855), 1, + sym_cell_path, + ACTIONS(1023), 4, + sym_raw_string_begin, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, sym__entry_separator, - ACTIONS(1653), 48, + ACTIONS(1021), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -286387,90 +292735,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [81628] = 16, - ACTIONS(247), 1, + [79171] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1338), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1340), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3860), 1, - anon_sym_DQUOTE, - ACTIONS(4874), 1, - aux_sym_cmd_identifier_token38, - STATE(1990), 1, - sym_val_string, - STATE(2002), 1, - sym__str_double_quotes, - STATE(2012), 1, - sym_cmd_identifier, - STATE(2573), 1, + ACTIONS(5647), 1, + anon_sym_DOT, + STATE(2710), 1, + sym_path, + STATE(2623), 2, sym_comment, - STATE(7094), 1, - sym__val_number_decimal, - STATE(7624), 1, - sym__command_name, - ACTIONS(1336), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3862), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4868), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(4872), 5, + aux_sym_cell_path_repeat1, + ACTIONS(1033), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1031), 47, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(4870), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [81717] = 6, - ACTIONS(247), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [79240] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5508), 1, + ACTIONS(5650), 1, anon_sym_DOT, - ACTIONS(5510), 1, - aux_sym__immediate_decimal_token2, - STATE(2574), 1, + STATE(2624), 1, sym_comment, - ACTIONS(1518), 18, + STATE(2675), 1, + aux_sym_cell_path_repeat1, + STATE(2787), 1, + sym_path, + STATE(2872), 1, + sym_cell_path, + ACTIONS(1021), 17, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -286488,8 +292829,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1520), 34, + ACTIONS(1023), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -286510,8 +292851,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - sym_filesize_unit, - sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -286524,108 +292863,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [81786] = 16, - ACTIONS(111), 1, - anon_sym_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1338), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1340), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4966), 1, - aux_sym_cmd_identifier_token38, - STATE(1975), 1, - sym__str_double_quotes, - STATE(2499), 1, - sym_cmd_identifier, - STATE(2501), 1, - sym_val_string, - STATE(2575), 1, - sym_comment, - STATE(6971), 1, - sym__val_number_decimal, - STATE(7072), 1, - sym__command_name, - ACTIONS(113), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1336), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4960), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(4964), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4962), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [81875] = 12, - ACTIONS(247), 1, + [79313] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5417), 1, - anon_sym_DOLLAR, - ACTIONS(5419), 1, - anon_sym_LPAREN2, - ACTIONS(5492), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5494), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5496), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5498), 1, - aux_sym__immediate_decimal_token5, - STATE(2576), 1, + ACTIONS(5635), 1, + aux_sym__immediate_decimal_token2, + STATE(2625), 1, sym_comment, - STATE(3085), 1, - sym__immediate_decimal, - STATE(3082), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1602), 18, - anon_sym_LPAREN, + ACTIONS(1536), 18, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -286638,7 +292888,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1604), 27, + aux_sym__unquoted_in_list_token2, + ACTIONS(1538), 35, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -286647,13 +292899,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + sym_filesize_unit, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -286666,35 +292925,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [81956] = 12, - ACTIONS(247), 1, + [79380] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5417), 1, - anon_sym_DOLLAR, - ACTIONS(5419), 1, - anon_sym_LPAREN2, - ACTIONS(5492), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5494), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5496), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5498), 1, - aux_sym__immediate_decimal_token5, - STATE(2577), 1, + ACTIONS(5652), 1, + aux_sym__immediate_decimal_token2, + STATE(2626), 1, sym_comment, - STATE(3032), 1, - sym__immediate_decimal, - STATE(3031), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1586), 18, - anon_sym_LPAREN, + ACTIONS(1596), 18, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -286707,7 +292950,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1588), 27, + aux_sym__unquoted_in_list_token2, + ACTIONS(1598), 35, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -286716,13 +292961,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + sym_filesize_unit, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -286735,35 +292987,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [82037] = 12, - ACTIONS(247), 1, + [79447] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5417), 1, - anon_sym_DOLLAR, - ACTIONS(5419), 1, - anon_sym_LPAREN2, - ACTIONS(5492), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5494), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5496), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5498), 1, - aux_sym__immediate_decimal_token5, - STATE(2578), 1, + ACTIONS(5650), 1, + anon_sym_DOT, + STATE(2627), 1, sym_comment, - STATE(3099), 1, - sym__immediate_decimal, - STATE(3038), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1576), 18, - anon_sym_LPAREN, + STATE(2675), 1, + aux_sym_cell_path_repeat1, + STATE(2787), 1, + sym_path, + STATE(2901), 1, + sym_cell_path, + ACTIONS(1664), 17, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, anon_sym_0b, anon_sym_0o, anon_sym_0x, @@ -286776,7 +293018,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1584), 27, + ACTIONS(1668), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -286785,10 +293028,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -286804,21 +293052,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [82118] = 6, + [79520] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5512), 1, - anon_sym_DOT, - ACTIONS(5514), 1, + ACTIONS(5623), 1, aux_sym__immediate_decimal_token2, - STATE(2579), 1, + STATE(2628), 1, sym_comment, - ACTIONS(1669), 4, + ACTIONS(1717), 5, + sym_raw_string_begin, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1667), 48, + ACTIONS(1715), 48, anon_sym_true, anon_sym_false, anon_sym_null, @@ -286867,100 +293114,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, aux_sym__unquoted_in_list_token2, - [82187] = 16, - ACTIONS(247), 1, + [79587] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1338), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1340), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3860), 1, - anon_sym_DQUOTE, - ACTIONS(4874), 1, - aux_sym_cmd_identifier_token38, - STATE(1990), 1, - sym_val_string, - STATE(2002), 1, - sym__str_double_quotes, - STATE(2012), 1, - sym_cmd_identifier, - STATE(2580), 1, + ACTIONS(5654), 1, + aux_sym__immediate_decimal_token2, + STATE(2629), 1, sym_comment, - STATE(4477), 1, - sym__command_name, - STATE(7094), 1, - sym__val_number_decimal, - ACTIONS(1336), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3862), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4868), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(4872), 5, + ACTIONS(1771), 5, + sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1769), 48, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(4870), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [82276] = 8, - ACTIONS(247), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [79654] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5480), 1, + ACTIONS(5619), 1, anon_sym_DOT, - STATE(2581), 1, + STATE(2630), 1, sym_comment, - STATE(2604), 1, + STATE(2632), 1, aux_sym_cell_path_repeat1, - STATE(2658), 1, + STATE(2751), 1, sym_path, - STATE(2677), 1, - sym_cell_path, - ACTIONS(1832), 6, + ACTIONS(1027), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1834), 44, + ACTIONS(1029), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -287005,88 +293240,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [82349] = 4, - ACTIONS(247), 1, + [79725] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2582), 1, + ACTIONS(5650), 1, + anon_sym_DOT, + STATE(2631), 1, sym_comment, - ACTIONS(1038), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1040), 48, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, + STATE(2675), 1, + aux_sym_cell_path_repeat1, + STATE(2787), 1, + sym_path, + STATE(2875), 1, + sym_cell_path, + ACTIONS(1670), 17, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1672), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, anon_sym_LBRACK, - sym_wild_card, - aux_sym__val_number_decimal_token1, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [82414] = 8, - ACTIONS(247), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [79798] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5480), 1, + ACTIONS(5656), 1, anon_sym_DOT, - STATE(2583), 1, + STATE(2751), 1, + sym_path, + STATE(2632), 2, sym_comment, - STATE(2604), 1, aux_sym_cell_path_repeat1, - STATE(2658), 1, - sym_path, - STATE(2764), 1, - sym_cell_path, - ACTIONS(1822), 6, + ACTIONS(1031), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1826), 44, + ACTIONS(1033), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -287131,24 +293368,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [82487] = 6, - ACTIONS(247), 1, + [79867] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5516), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5518), 1, - aux_sym__immediate_decimal_token2, - STATE(2584), 1, + ACTIONS(5645), 1, + anon_sym_DOT, + STATE(2623), 1, + aux_sym_cell_path_repeat1, + STATE(2633), 1, sym_comment, - ACTIONS(1540), 18, + STATE(2710), 1, + sym_path, + ACTIONS(1029), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1027), 47, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -287157,9 +293423,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1542), 34, + [79938] = 10, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5661), 1, + anon_sym_RBRACK, + ACTIONS(5664), 1, + anon_sym_DOT, + ACTIONS(5666), 1, + sym_raw_string_begin, + STATE(2634), 1, + sym_comment, + STATE(5771), 1, + aux_sym_cell_path_repeat1, + STATE(6329), 1, + sym_path, + STATE(7214), 1, + sym_cell_path, + ACTIONS(1901), 2, + sym__entry_separator, + sym__table_head_separator, + ACTIONS(5659), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -287167,25 +293460,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - sym_filesize_unit, - sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -287194,27 +293497,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [82556] = 8, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + [80014] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5480), 1, - anon_sym_DOT, - STATE(2585), 1, + ACTIONS(5670), 1, + anon_sym_RBRACK, + ACTIONS(5672), 1, + sym__entry_separator, + ACTIONS(5674), 1, + sym_raw_string_begin, + STATE(2635), 1, sym_comment, - STATE(2604), 1, - aux_sym_cell_path_repeat1, - STATE(2658), 1, - sym_path, - STATE(2742), 1, - sym_cell_path, - ACTIONS(1005), 6, + STATE(2686), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(5668), 49, aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1007), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -287222,10 +293520,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -287246,12 +293547,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -287259,48 +293561,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [82629] = 16, - ACTIONS(111), 1, - anon_sym_DQUOTE, - ACTIONS(247), 1, + [80084] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1338), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1340), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4966), 1, - aux_sym_cmd_identifier_token38, - STATE(1975), 1, - sym__str_double_quotes, - STATE(2499), 1, - sym_cmd_identifier, - STATE(2501), 1, - sym_val_string, - STATE(2586), 1, + ACTIONS(5672), 1, + sym__entry_separator, + ACTIONS(5674), 1, + sym_raw_string_begin, + ACTIONS(5676), 1, + anon_sym_RBRACK, + STATE(2636), 1, sym_comment, - STATE(6828), 1, - sym__command_name, - STATE(6971), 1, - sym__val_number_decimal, - ACTIONS(113), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1336), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4960), 5, + STATE(2686), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(5668), 49, aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(4964), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4962), 31, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -287308,55 +293583,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [82718] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2587), 1, - sym_comment, - ACTIONS(2141), 6, - aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2143), 48, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -287377,15 +293610,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - sym_wild_card, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -287393,21 +293624,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [82783] = 6, - ACTIONS(3), 1, + [80154] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5520), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5522), 1, - aux_sym__immediate_decimal_token2, - STATE(2588), 1, + ACTIONS(5678), 1, + anon_sym_DOT, + STATE(2787), 1, + sym_path, + STATE(2637), 2, sym_comment, - ACTIONS(1661), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1659), 48, + aux_sym_cell_path_repeat1, + ACTIONS(1031), 17, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1033), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -287420,32 +293666,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -287454,50 +293686,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [82852] = 16, - ACTIONS(247), 1, + [80222] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1338), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1340), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3860), 1, - anon_sym_DQUOTE, - ACTIONS(4874), 1, - aux_sym_cmd_identifier_token38, - STATE(1990), 1, - sym_val_string, - STATE(2002), 1, - sym__str_double_quotes, - STATE(2012), 1, - sym_cmd_identifier, - STATE(2589), 1, + STATE(2638), 1, sym_comment, - STATE(7094), 1, - sym__val_number_decimal, - STATE(7451), 1, - sym__command_name, - ACTIONS(1336), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(3862), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4868), 5, + ACTIONS(1062), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4872), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4870), 31, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(1064), 46, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -287529,121 +293732,121 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [82941] = 16, - ACTIONS(111), 1, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + anon_sym_QMARK2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, - ACTIONS(247), 1, + sym__str_single_quotes, + sym__str_back_ticks, + [80286] = 30, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1338), 1, + ACTIONS(3296), 1, + aux_sym_record_entry_token1, + ACTIONS(3366), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3368), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3370), 1, aux_sym__val_number_decimal_token3, - ACTIONS(1340), 1, + ACTIONS(3372), 1, aux_sym__val_number_decimal_token4, - ACTIONS(4966), 1, - aux_sym_cmd_identifier_token38, - STATE(1975), 1, - sym__str_double_quotes, - STATE(2499), 1, - sym_cmd_identifier, + ACTIONS(5429), 1, + anon_sym_DQUOTE, + ACTIONS(5433), 1, + sym_raw_string_begin, + ACTIONS(5683), 1, + anon_sym_LPAREN, + ACTIONS(5685), 1, + anon_sym_DOLLAR, + ACTIONS(5687), 1, + anon_sym_DOT_DOT, + ACTIONS(5691), 1, + sym_val_date, + ACTIONS(5693), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5695), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5697), 1, + aux_sym_unquoted_token1, + STATE(2431), 1, + sym__inter_double_quotes, STATE(2501), 1, - sym_val_string, - STATE(2590), 1, + sym__inter_single_quotes, + STATE(2639), 1, sym_comment, - STATE(6791), 1, - sym__command_name, - STATE(6971), 1, + STATE(5868), 1, sym__val_number_decimal, - ACTIONS(113), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1336), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4960), 5, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - ACTIONS(4964), 5, + STATE(7610), 1, + sym_val_bool, + STATE(7848), 1, + sym__val_range, + STATE(7860), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(3350), 2, anon_sym_true, anon_sym_false, - anon_sym_null, + ACTIONS(5431), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5689), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(2500), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5681), 3, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(4962), 31, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - [83030] = 16, - ACTIONS(111), 1, - anon_sym_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1338), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(1340), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4966), 1, - aux_sym_cmd_identifier_token38, - STATE(1975), 1, - sym__str_double_quotes, - STATE(2499), 1, - sym_cmd_identifier, - STATE(2501), 1, + STATE(1449), 5, + sym_expr_parenthesized, + sym_val_variable, sym_val_string, - STATE(2591), 1, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2685), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2687), 9, + anon_sym_null, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [80402] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2640), 1, sym_comment, - STATE(6794), 1, - sym__command_name, - STATE(6971), 1, - sym__val_number_decimal, - ACTIONS(113), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1336), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(4960), 5, + ACTIONS(1038), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, - ACTIONS(4964), 5, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(4962), 31, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(1040), 46, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -287675,27 +293878,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - [83119] = 8, - ACTIONS(247), 1, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + anon_sym_QMARK2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [80466] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5480), 1, - anon_sym_DOT, - STATE(2592), 1, + ACTIONS(5699), 1, + sym_long_flag_identifier, + ACTIONS(5701), 1, + anon_sym_EQ2, + STATE(2641), 1, sym_comment, - STATE(2604), 1, - aux_sym_cell_path_repeat1, - STATE(2658), 1, - sym_path, - STATE(2794), 1, - sym_cell_path, - ACTIONS(1836), 6, + ACTIONS(4939), 9, + sym_raw_string_begin, + aux_sym_cmd_identifier_token39, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4937), 42, aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1838), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -287703,10 +293920,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -287727,37 +293947,39 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [83192] = 8, - ACTIONS(3), 1, + [80534] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5490), 1, - anon_sym_DOT, - STATE(2593), 1, + STATE(2642), 1, sym_comment, - STATE(2605), 1, - aux_sym_cell_path_repeat1, - STATE(2711), 1, - sym_path, - STATE(2733), 1, - sym_cell_path, - ACTIONS(1677), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1675), 47, + ACTIONS(1536), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1538), 35, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -287770,32 +293992,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + sym_filesize_unit, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -287804,20 +294014,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [83265] = 4, + [80598] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2594), 1, - sym_comment, - ACTIONS(1542), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, + ACTIONS(5705), 1, + anon_sym_RBRACK, + ACTIONS(5707), 1, sym__entry_separator, - ACTIONS(1540), 48, + ACTIONS(5709), 1, + sym_raw_string_begin, + STATE(2643), 1, + sym_comment, + STATE(2679), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(5703), 49, anon_sym_true, anon_sym_false, anon_sym_null, @@ -287825,15 +294035,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -287848,6 +294057,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -287865,15 +294077,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [83330] = 5, - ACTIONS(247), 1, + [80668] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5524), 1, - aux_sym__immediate_decimal_token2, - STATE(2595), 1, + STATE(2644), 1, sym_comment, - ACTIONS(1554), 18, + ACTIONS(1528), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -287892,7 +294101,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, aux_sym__unquoted_in_list_token2, - ACTIONS(1556), 34, + ACTIONS(1530), 35, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -287927,24 +294137,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [83396] = 6, - ACTIONS(247), 1, + [80732] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5526), 1, - anon_sym_DOT, - STATE(2658), 1, - sym_path, - STATE(2596), 2, + ACTIONS(5707), 1, + sym__entry_separator, + ACTIONS(5709), 1, + sym_raw_string_begin, + ACTIONS(5711), 1, + anon_sym_RBRACK, + STATE(2645), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1015), 6, + STATE(2679), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(5703), 49, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [80802] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2646), 1, + sym_comment, + ACTIONS(1058), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1017), 44, + anon_sym_DOT, + ACTIONS(1060), 46, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -287982,6 +294252,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, + anon_sym_QMARK2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -287989,142 +294260,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [83464] = 5, - ACTIONS(247), 1, + [80866] = 33, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5510), 1, - aux_sym__immediate_decimal_token2, - STATE(2597), 1, - sym_comment, - ACTIONS(1518), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1520), 34, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(2621), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2623), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3042), 1, anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(3044), 1, anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(3052), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3054), 1, aux_sym__val_number_decimal_token2, + ACTIONS(3056), 1, aux_sym__val_number_decimal_token3, + ACTIONS(3058), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_filesize_unit, - sym_duration_unit, - sym_val_date, + ACTIONS(3062), 1, + anon_sym_0b, + ACTIONS(3068), 1, anon_sym_DQUOTE, + ACTIONS(3074), 1, + sym_raw_string_begin, + ACTIONS(3078), 1, + anon_sym_LBRACK, + ACTIONS(5715), 1, + anon_sym_null, + ACTIONS(5717), 1, + anon_sym_LBRACE, + ACTIONS(5719), 1, + anon_sym_DOT_DOT, + ACTIONS(5723), 1, + sym_val_date, + STATE(2647), 1, + sym_comment, + STATE(5753), 1, + sym__val_number_decimal, + STATE(5774), 1, + sym_val_variable, + STATE(6037), 1, + sym_expr_parenthesized, + STATE(7044), 1, + sym__inter_single_quotes, + STATE(7055), 1, + sym__inter_double_quotes, + STATE(7088), 1, + sym__val_number, + STATE(7478), 1, + sym_block, + ACTIONS(3064), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3070), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [83530] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5514), 1, - aux_sym__immediate_decimal_token2, - STATE(2598), 1, - sym_comment, - ACTIONS(1669), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1667), 48, + ACTIONS(5713), 2, anon_sym_true, anon_sym_false, - anon_sym_null, + ACTIONS(5721), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(5521), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(7492), 2, + sym_val_range, + sym__value, + ACTIONS(3060), 6, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [83596] = 8, - ACTIONS(247), 1, + STATE(6921), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [80988] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5529), 1, - anon_sym_DOT, - STATE(2599), 1, + STATE(2648), 1, sym_comment, - STATE(2610), 1, - aux_sym_cell_path_repeat1, - STATE(2754), 1, - sym_path, - STATE(2858), 1, - sym_cell_path, - ACTIONS(1005), 17, + ACTIONS(1596), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -288142,7 +294372,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1007), 32, + aux_sym__unquoted_in_list_token2, + ACTIONS(1598), 35, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -288163,6 +294395,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + sym_filesize_unit, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -288175,78 +294409,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [83668] = 5, - ACTIONS(3), 1, + [81052] = 33, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5531), 1, - aux_sym__immediate_decimal_token2, - STATE(2600), 1, - sym_comment, - ACTIONS(1723), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1721), 48, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(2621), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2623), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3042), 1, anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(3044), 1, anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + ACTIONS(3052), 1, aux_sym__val_number_decimal_token1, + ACTIONS(3054), 1, aux_sym__val_number_decimal_token2, + ACTIONS(3056), 1, aux_sym__val_number_decimal_token3, + ACTIONS(3058), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, + ACTIONS(3062), 1, anon_sym_0b, + ACTIONS(3068), 1, + anon_sym_DQUOTE, + ACTIONS(3074), 1, + sym_raw_string_begin, + ACTIONS(3078), 1, + anon_sym_LBRACK, + ACTIONS(5715), 1, + anon_sym_null, + ACTIONS(5717), 1, + anon_sym_LBRACE, + ACTIONS(5719), 1, + anon_sym_DOT_DOT, + ACTIONS(5723), 1, + sym_val_date, + STATE(2649), 1, + sym_comment, + STATE(5753), 1, + sym__val_number_decimal, + STATE(5774), 1, + sym_val_variable, + STATE(6117), 1, + sym_expr_parenthesized, + STATE(7044), 1, + sym__inter_single_quotes, + STATE(7055), 1, + sym__inter_double_quotes, + STATE(7088), 1, + sym__val_number, + STATE(7606), 1, + sym_block, + ACTIONS(3064), 2, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, + ACTIONS(3070), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [83734] = 5, - ACTIONS(247), 1, + ACTIONS(5713), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5721), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(5521), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(7539), 2, + sym_val_range, + sym__value, + ACTIONS(3060), 6, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + STATE(6921), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [81174] = 31, + ACTIONS(239), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5533), 1, - anon_sym_QMARK2, - STATE(2601), 1, + ACTIONS(3296), 1, + aux_sym_record_entry_token1, + ACTIONS(3366), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3368), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3370), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3372), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3842), 1, + anon_sym_DQUOTE, + ACTIONS(3846), 1, + aux_sym_unquoted_token1, + ACTIONS(3848), 1, + sym_raw_string_begin, + ACTIONS(4020), 1, + anon_sym_DOLLAR, + ACTIONS(4024), 1, + anon_sym_DOT_DOT, + ACTIONS(5691), 1, + sym_val_date, + ACTIONS(5727), 1, + anon_sym_LPAREN, + STATE(1827), 1, + sym__inter_single_quotes, + STATE(1841), 1, + sym__inter_double_quotes, + STATE(2650), 1, sym_comment, - ACTIONS(1028), 11, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT2, + STATE(5928), 1, + sym__val_number_decimal, + STATE(6417), 1, + sym_unquoted, + STATE(7610), 1, + sym_val_bool, + STATE(7794), 1, + sym__val_range, + STATE(7859), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(3350), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3844), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4026), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(4434), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5725), 3, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + STATE(6415), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(2685), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -288255,40 +294575,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1030), 41, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, + ACTIONS(2687), 9, + anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -288297,20 +294585,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [83800] = 8, - ACTIONS(247), 1, + [81292] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5529), 1, - anon_sym_DOT, - STATE(2602), 1, + STATE(2651), 1, sym_comment, - STATE(2610), 1, - aux_sym_cell_path_repeat1, - STATE(2754), 1, - sym_path, - STATE(2836), 1, - sym_cell_path, - ACTIONS(1641), 17, + ACTIONS(1711), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -288328,7 +294608,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1645), 32, + aux_sym__unquoted_in_list_token2, + ACTIONS(1713), 35, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -288349,6 +294631,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + sym_filesize_unit, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -288361,86 +294645,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [83872] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5535), 1, - anon_sym_QMARK2, - STATE(2603), 1, - sym_comment, - ACTIONS(1022), 11, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1024), 41, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [83938] = 7, - ACTIONS(247), 1, + [81356] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5480), 1, - anon_sym_DOT, - STATE(2596), 1, - aux_sym_cell_path_repeat1, - STATE(2604), 1, + ACTIONS(5672), 1, + sym__entry_separator, + ACTIONS(5674), 1, + sym_raw_string_begin, + ACTIONS(5729), 1, + anon_sym_RBRACK, + STATE(2652), 1, sym_comment, - STATE(2658), 1, - sym_path, - ACTIONS(1011), 6, + STATE(2686), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(5668), 49, aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1013), 44, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -288448,10 +294667,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -288472,12 +294694,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -288485,22 +294708,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [84008] = 7, - ACTIONS(3), 1, + [81426] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5490), 1, + ACTIONS(5731), 1, anon_sym_DOT, - STATE(2605), 1, + ACTIONS(5733), 1, + aux_sym__immediate_decimal_token2, + STATE(2653), 1, sym_comment, - STATE(2606), 1, - aux_sym_cell_path_repeat1, - STATE(2711), 1, - sym_path, - ACTIONS(1013), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1011), 47, + ACTIONS(1715), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1717), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -288513,32 +294750,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -288547,22 +294770,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [84078] = 6, + [81494] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5537), 1, - anon_sym_DOT, - STATE(2711), 1, - sym_path, - STATE(2606), 2, + STATE(2654), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1017), 3, + ACTIONS(1717), 5, + sym_raw_string_begin, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1015), 47, + ACTIONS(1715), 48, anon_sym_true, anon_sym_false, anon_sym_null, @@ -288610,20 +294829,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [84146] = 8, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token2, + [81558] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5529), 1, - anon_sym_DOT, - STATE(2607), 1, + ACTIONS(5735), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5737), 1, + aux_sym__immediate_decimal_token2, + STATE(2655), 1, sym_comment, - STATE(2610), 1, - aux_sym_cell_path_repeat1, - STATE(2754), 1, - sym_path, - STATE(2840), 1, - sym_cell_path, - ACTIONS(1675), 17, + ACTIONS(1703), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -288641,7 +294857,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1677), 32, + aux_sym__unquoted_in_list_token2, + ACTIONS(1705), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -288674,20 +294892,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [84218] = 4, - ACTIONS(247), 1, + [81626] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2608), 1, + ACTIONS(5672), 1, + sym__entry_separator, + ACTIONS(5674), 1, + sym_raw_string_begin, + ACTIONS(5739), 1, + anon_sym_RBRACK, + STATE(2656), 1, sym_comment, - ACTIONS(1042), 7, + STATE(2686), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(5668), 49, aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1044), 45, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -288695,10 +294914,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -288719,13 +294941,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_QMARK2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -288733,15 +294955,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [84281] = 4, + [81696] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5540), 1, + STATE(2657), 1, + sym_comment, + ACTIONS(1705), 5, + sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1703), 48, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [81760] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5672), 1, sym__entry_separator, - STATE(2609), 2, + ACTIONS(5674), 1, + sym_raw_string_begin, + ACTIONS(5741), 1, + anon_sym_RBRACK, + STATE(2658), 1, sym_comment, + STATE(2686), 1, aux_sym__multiple_types_repeat1, - ACTIONS(2319), 50, + ACTIONS(5668), 49, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -288784,86 +295071,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_RBRACK, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [84344] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5529), 1, - anon_sym_DOT, - STATE(2610), 1, - sym_comment, - STATE(2616), 1, - aux_sym_cell_path_repeat1, - STATE(2754), 1, - sym_path, - ACTIONS(1011), 17, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1013), 32, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [84413] = 4, + [81830] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2611), 1, + STATE(2659), 1, sym_comment, - ACTIONS(1044), 3, + ACTIONS(1771), 5, + sym_raw_string_begin, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1042), 49, + ACTIONS(1769), 48, anon_sym_true, anon_sym_false, anon_sym_null, @@ -288877,9 +295103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_QMARK2, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -288913,16 +295137,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [84476] = 4, + aux_sym__unquoted_in_list_token2, + [81894] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2612), 1, + STATE(2660), 1, sym_comment, - ACTIONS(1040), 3, + ACTIONS(1828), 5, + sym_raw_string_begin, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1038), 49, + ACTIONS(1826), 48, anon_sym_true, anon_sym_false, anon_sym_null, @@ -288936,9 +295163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_QMARK2, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -288972,16 +295197,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [84539] = 4, + aux_sym__unquoted_in_list_token2, + [81958] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2613), 1, + STATE(2661), 1, sym_comment, - ACTIONS(1036), 3, + ACTIONS(1060), 4, + sym_raw_string_begin, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1034), 49, + ACTIONS(1058), 49, anon_sym_true, anon_sym_false, anon_sym_null, @@ -289031,79 +295258,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [84602] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5545), 1, - anon_sym_RBRACK, - ACTIONS(5547), 1, - sym__entry_separator, - STATE(2609), 1, - aux_sym__multiple_types_repeat1, - STATE(2614), 1, - sym_comment, - ACTIONS(5543), 49, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [84669] = 6, + [82022] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5547), 1, + ACTIONS(5672), 1, sym__entry_separator, - ACTIONS(5549), 1, + ACTIONS(5674), 1, + sym_raw_string_begin, + ACTIONS(5743), 1, anon_sym_RBRACK, - STATE(2609), 1, - aux_sym__multiple_types_repeat1, - STATE(2615), 1, + STATE(2662), 1, sym_comment, - ACTIONS(5543), 49, + STATE(2686), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(5668), 49, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -289153,21 +295321,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [84736] = 6, - ACTIONS(247), 1, + [82092] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5551), 1, - anon_sym_DOT, - STATE(2754), 1, - sym_path, - STATE(2616), 2, + ACTIONS(5745), 1, + sym__newline, + STATE(2663), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1015), 17, + ACTIONS(5748), 2, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(1364), 15, + anon_sym_DOLLAR, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -289181,7 +295347,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1017), 32, + ACTIONS(1362), 35, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -289189,66 +295356,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [84803] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5554), 1, - sym__entry_separator, - STATE(2617), 2, - sym_comment, - aux_sym__multiple_types_repeat1, - ACTIONS(2319), 50, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -289256,36 +295375,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, anon_sym_DOT_DOT_DOT_LBRACK, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, anon_sym_o_GT_GT, anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [84866] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5547), 1, - sym__entry_separator, - ACTIONS(5557), 1, - anon_sym_RBRACK, - STATE(2609), 1, - aux_sym__multiple_types_repeat1, - STATE(2618), 1, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [82160] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5750), 1, + anon_sym_QMARK2, + STATE(2664), 1, sym_comment, - ACTIONS(5543), 49, + ACTIONS(1042), 7, aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(1044), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -289293,13 +295407,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -289320,13 +295431,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -289334,19 +295444,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [84933] = 6, - ACTIONS(3), 1, + [82226] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5547), 1, - sym__entry_separator, - ACTIONS(5559), 1, - anon_sym_RBRACK, - STATE(2609), 1, - aux_sym__multiple_types_repeat1, - STATE(2619), 1, + ACTIONS(5752), 1, + anon_sym_QMARK2, + STATE(2665), 1, sym_comment, - ACTIONS(5543), 49, + ACTIONS(1048), 7, aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(1050), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -289354,13 +295468,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -289381,13 +295492,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -289395,18 +295505,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [85000] = 6, + [82292] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5547), 1, + ACTIONS(5672), 1, sym__entry_separator, - ACTIONS(5561), 1, + ACTIONS(5674), 1, + sym_raw_string_begin, + ACTIONS(5754), 1, anon_sym_RBRACK, - STATE(2609), 1, - aux_sym__multiple_types_repeat1, - STATE(2620), 1, + STATE(2666), 1, sym_comment, - ACTIONS(5543), 49, + STATE(2686), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(5668), 49, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -289456,18 +295568,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [85067] = 6, + [82362] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5565), 1, - anon_sym_RBRACK, - ACTIONS(5567), 1, - sym__entry_separator, - STATE(2617), 1, - aux_sym__multiple_types_repeat1, - STATE(2621), 1, + ACTIONS(1526), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1790), 1, + anon_sym_LPAREN2, + ACTIONS(5756), 1, + anon_sym_DOT_DOT2, + STATE(2667), 1, sym_comment, - ACTIONS(5563), 49, + ACTIONS(1796), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5758), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1788), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -289475,14 +295593,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -289497,9 +295615,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -289517,18 +295632,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [85134] = 6, + [82434] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, - sym__entry_separator, - ACTIONS(5569), 1, - anon_sym_RBRACK, - STATE(2617), 1, - aux_sym__multiple_types_repeat1, - STATE(2622), 1, + STATE(2668), 1, sym_comment, - ACTIONS(5563), 49, + ACTIONS(1064), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1062), 49, anon_sym_true, anon_sym_false, anon_sym_null, @@ -289536,14 +295650,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -289558,9 +295675,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -289578,73 +295692,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [85201] = 6, + [82498] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5547), 1, - sym__entry_separator, - ACTIONS(5571), 1, - anon_sym_RBRACK, - STATE(2609), 1, - aux_sym__multiple_types_repeat1, - STATE(2623), 1, + STATE(2669), 1, sym_comment, - ACTIONS(5543), 49, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, + ACTIONS(1040), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1038), 49, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [85268] = 4, - ACTIONS(247), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [82562] = 30, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2624), 1, + ACTIONS(3294), 1, + aux_sym_record_entry_token1, + ACTIONS(3366), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3368), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3370), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3372), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5429), 1, + anon_sym_DQUOTE, + ACTIONS(5433), 1, + sym_raw_string_begin, + ACTIONS(5683), 1, + anon_sym_LPAREN, + ACTIONS(5685), 1, + anon_sym_DOLLAR, + ACTIONS(5687), 1, + anon_sym_DOT_DOT, + ACTIONS(5691), 1, + sym_val_date, + ACTIONS(5693), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5695), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5697), 1, + aux_sym_unquoted_token1, + STATE(2431), 1, + sym__inter_double_quotes, + STATE(2501), 1, + sym__inter_single_quotes, + STATE(2670), 1, sym_comment, - ACTIONS(1038), 7, + STATE(5868), 1, + sym__val_number_decimal, + STATE(7610), 1, + sym_val_bool, + STATE(7848), 1, + sym__val_range, + STATE(7860), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(3350), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5431), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5689), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(2500), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5681), 3, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + STATE(1449), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2685), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2687), 9, + anon_sym_null, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [82678] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2671), 1, + sym_comment, + ACTIONS(1054), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, @@ -289652,7 +295851,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, anon_sym_DOT, - ACTIONS(1040), 45, + ACTIONS(1056), 46, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -289698,144 +295898,229 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [85331] = 4, - ACTIONS(247), 1, + [82742] = 31, + ACTIONS(239), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2625), 1, + ACTIONS(3294), 1, + aux_sym_record_entry_token1, + ACTIONS(3366), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3368), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3370), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3372), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3842), 1, + anon_sym_DQUOTE, + ACTIONS(3846), 1, + aux_sym_unquoted_token1, + ACTIONS(3848), 1, + sym_raw_string_begin, + ACTIONS(4020), 1, + anon_sym_DOLLAR, + ACTIONS(4024), 1, + anon_sym_DOT_DOT, + ACTIONS(5691), 1, + sym_val_date, + ACTIONS(5727), 1, + anon_sym_LPAREN, + STATE(1827), 1, + sym__inter_single_quotes, + STATE(1841), 1, + sym__inter_double_quotes, + STATE(2672), 1, sym_comment, - ACTIONS(1034), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, + STATE(5928), 1, + sym__val_number_decimal, + STATE(6417), 1, + sym_unquoted, + STATE(7610), 1, + sym_val_bool, + STATE(7794), 1, + sym__val_range, + STATE(7859), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(3350), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3844), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4026), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(4434), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5725), 3, aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1036), 45, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + STATE(6415), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(2685), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2687), 9, + anon_sym_null, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [82860] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2673), 1, + sym_comment, + ACTIONS(1056), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1054), 49, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [85394] = 6, - ACTIONS(247), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [82924] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5577), 1, - anon_sym_DASH_DASH, - STATE(2797), 1, - sym_long_flag, - STATE(2626), 2, + ACTIONS(5760), 1, + anon_sym_DOT, + ACTIONS(5762), 1, + aux_sym__immediate_decimal_token2, + STATE(2674), 1, sym_comment, - aux_sym_decl_def_repeat1, - ACTIONS(5573), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(5575), 43, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, + ACTIONS(1717), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1715), 47, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [85461] = 9, - ACTIONS(247), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [82992] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5580), 1, - anon_sym_DOT_DOT2, - ACTIONS(5584), 1, - sym_filesize_unit, - ACTIONS(5586), 1, - sym_duration_unit, - ACTIONS(5588), 1, - aux_sym__unquoted_in_list_token2, - STATE(2627), 1, + ACTIONS(5650), 1, + anon_sym_DOT, + STATE(2637), 1, + aux_sym_cell_path_repeat1, + STATE(2675), 1, sym_comment, - ACTIONS(5582), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1560), 16, + STATE(2787), 1, + sym_path, + ACTIONS(1027), 17, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -289851,7 +296136,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1572), 30, + ACTIONS(1029), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -289864,6 +296150,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -289882,20 +296170,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [85534] = 6, + [83062] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5590), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5592), 1, - aux_sym__immediate_decimal_token2, - STATE(2628), 1, + ACTIONS(1844), 1, + anon_sym_LPAREN2, + ACTIONS(1852), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5764), 1, + anon_sym_DOT_DOT2, + STATE(2676), 1, sym_comment, - ACTIONS(1661), 3, + ACTIONS(1850), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5766), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1659), 47, + ACTIONS(1842), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -289909,7 +296201,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -289943,79 +296234,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [85601] = 6, - ACTIONS(247), 1, + [83134] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5594), 1, - sym_long_flag_identifier, - ACTIONS(5596), 1, - anon_sym_EQ2, - STATE(2629), 1, + ACTIONS(5768), 1, + anon_sym_QMARK2, + STATE(2677), 1, sym_comment, - ACTIONS(4810), 8, + ACTIONS(1044), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1042), 48, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, - anon_sym_DASH_DASH, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4808), 42, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_decimal_token1, - [85668] = 6, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [83200] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, - sym__entry_separator, - ACTIONS(5598), 1, - anon_sym_RBRACK, - STATE(2617), 1, - aux_sym__multiple_types_repeat1, - STATE(2630), 1, + ACTIONS(5770), 1, + anon_sym_QMARK2, + STATE(2678), 1, sym_comment, - ACTIONS(5563), 49, + ACTIONS(1050), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1048), 48, anon_sym_true, anon_sym_false, anon_sym_null, @@ -290023,14 +296315,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -290045,9 +296339,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -290065,81 +296356,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [85735] = 5, - ACTIONS(247), 1, + [83266] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5600), 1, - anon_sym_QMARK2, - STATE(2631), 1, + ACTIONS(2368), 1, + sym_raw_string_begin, + ACTIONS(5772), 1, + sym__entry_separator, + STATE(2679), 2, sym_comment, - ACTIONS(1028), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1030), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, + aux_sym__multiple_types_repeat1, + ACTIONS(2363), 50, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [85800] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5602), 1, - anon_sym_DOT, - STATE(2632), 1, - sym_comment, - STATE(2642), 1, - aux_sym_cell_path_repeat1, - STATE(2655), 1, - sym_path, - ACTIONS(1011), 11, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT2, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -290148,37 +296408,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1013), 38, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -290187,20 +296416,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [85869] = 4, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + [83332] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2633), 1, + ACTIONS(5707), 1, + sym__entry_separator, + ACTIONS(5709), 1, + sym_raw_string_begin, + ACTIONS(5775), 1, + anon_sym_RBRACK, + STATE(2679), 1, + aux_sym__multiple_types_repeat1, + STATE(2680), 1, sym_comment, - ACTIONS(1518), 18, + ACTIONS(5703), 49, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -290209,9 +296471,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1520), 34, + [83402] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5777), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5779), 1, + aux_sym__immediate_decimal_token2, + STATE(2681), 1, + sym_comment, + ACTIONS(1705), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1703), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -290224,20 +296507,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - sym_filesize_unit, - sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -290246,12 +296541,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [85932] = 4, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + [83470] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2634), 1, + ACTIONS(5781), 1, + anon_sym_QMARK2, + STATE(2682), 1, sym_comment, - ACTIONS(1050), 11, + ACTIONS(1042), 11, anon_sym_GT, anon_sym_DASH, anon_sym_LT2, @@ -290263,7 +296561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1052), 41, + ACTIONS(1044), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -290305,12 +296603,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [85995] = 4, - ACTIONS(247), 1, + [83536] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2635), 1, + ACTIONS(5783), 1, + anon_sym_QMARK2, + STATE(2683), 1, sym_comment, - ACTIONS(1054), 11, + ACTIONS(1048), 11, anon_sym_GT, anon_sym_DASH, anon_sym_LT2, @@ -290322,7 +296622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1056), 41, + ACTIONS(1050), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -290364,20 +296664,303 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [86058] = 4, - ACTIONS(247), 1, + [83602] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5672), 1, + sym__entry_separator, + ACTIONS(5674), 1, + sym_raw_string_begin, + ACTIONS(5785), 1, + anon_sym_RBRACK, + STATE(2684), 1, + sym_comment, + STATE(2686), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(5668), 49, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [83672] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5791), 1, + anon_sym_DASH_DASH, + STATE(2813), 1, + sym_long_flag, + STATE(2685), 2, + sym_comment, + aux_sym_decl_def_repeat1, + ACTIONS(5787), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(5789), 44, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [83740] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2368), 1, + sym_raw_string_begin, + ACTIONS(5794), 1, + sym__entry_separator, + STATE(2686), 2, + sym_comment, + aux_sym__multiple_types_repeat1, + ACTIONS(2363), 50, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_RBRACK, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [83806] = 9, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5797), 1, + anon_sym_DOT_DOT2, + ACTIONS(5801), 1, + sym_filesize_unit, + ACTIONS(5803), 1, + sym_duration_unit, + ACTIONS(5805), 1, + aux_sym__unquoted_in_list_token2, + STATE(2687), 1, + sym_comment, + ACTIONS(5799), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1628), 16, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1640), 31, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [83880] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2636), 1, + ACTIONS(5707), 1, + sym__entry_separator, + ACTIONS(5709), 1, + sym_raw_string_begin, + ACTIONS(5807), 1, + anon_sym_RBRACK, + STATE(2679), 1, + aux_sym__multiple_types_repeat1, + STATE(2688), 1, sym_comment, - ACTIONS(1540), 18, + ACTIONS(5703), 49, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -290386,9 +296969,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1542), 34, + [83950] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2689), 1, + sym_comment, + ACTIONS(1068), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1066), 48, anon_sym_true, anon_sym_false, anon_sym_null, @@ -290401,20 +297001,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - sym_filesize_unit, - sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -290423,16 +297036,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [86121] = 4, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + [84013] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2637), 1, + STATE(2690), 1, + sym_comment, + ACTIONS(1066), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(1068), 45, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [84076] = 9, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1903), 1, + sym__table_head_separator, + ACTIONS(5809), 1, + anon_sym_DOT, + STATE(2691), 1, sym_comment, - ACTIONS(1554), 18, + STATE(6689), 1, + aux_sym_cell_path_repeat1, + STATE(7323), 1, + sym_path, + STATE(7819), 1, + sym_cell_path, + ACTIONS(5659), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -290446,8 +297126,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1556), 34, + ACTIONS(5666), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -290460,16 +297140,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - sym_filesize_unit, - sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -290482,18 +297160,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [86184] = 6, + [84149] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5547), 1, - sym__entry_separator, - ACTIONS(5604), 1, - anon_sym_RBRACK, - STATE(2609), 1, - aux_sym__multiple_types_repeat1, - STATE(2638), 1, + STATE(2692), 1, sym_comment, - ACTIONS(5543), 49, + ACTIONS(2291), 4, + sym_raw_string_begin, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2289), 48, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -290536,25 +297213,81 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym_unquoted_token4, + [84212] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + STATE(2693), 1, + sym_comment, + ACTIONS(2297), 4, + sym_raw_string_begin, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [86251] = 6, + ACTIONS(2293), 47, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + [84277] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5547), 1, - sym__entry_separator, - ACTIONS(5606), 1, - anon_sym_RBRACK, - STATE(2609), 1, - aux_sym__multiple_types_repeat1, - STATE(2639), 1, + STATE(2694), 1, sym_comment, - ACTIONS(5543), 49, + ACTIONS(2404), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2402), 50, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -290597,6 +297330,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_RBRACK, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -290604,31 +297338,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [86318] = 4, - ACTIONS(247), 1, + [84340] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2640), 1, + ACTIONS(5811), 1, + anon_sym_DOT, + ACTIONS(5813), 1, + aux_sym__immediate_decimal_token2, + STATE(2695), 1, sym_comment, - ACTIONS(1653), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1655), 34, + ACTIONS(1717), 3, + sym_raw_string_begin, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1715), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -290641,20 +297364,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - sym_filesize_unit, - sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -290663,18 +297397,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [86381] = 6, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [84407] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5608), 1, - anon_sym_DOT, - ACTIONS(5610), 1, - aux_sym__immediate_decimal_token2, - STATE(2641), 1, + ACTIONS(5672), 1, + sym__entry_separator, + ACTIONS(5674), 1, + sym_raw_string_begin, + STATE(2686), 1, + aux_sym__multiple_types_repeat1, + STATE(2696), 1, + sym_comment, + ACTIONS(5668), 49, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [84474] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2697), 1, sym_comment, - ACTIONS(1667), 18, + ACTIONS(1058), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -290690,8 +297484,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1669), 32, + ACTIONS(1060), 34, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -290704,6 +297498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_QMARK2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, @@ -290724,78 +297519,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [86448] = 6, - ACTIONS(247), 1, + [84537] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5612), 1, - anon_sym_DOT, - STATE(2655), 1, - sym_path, - STATE(2642), 2, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + STATE(2698), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1015), 11, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1017), 38, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DOLLAR, + ACTIONS(2305), 4, + sym_raw_string_begin, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2303), 47, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [86515] = 4, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + [84602] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2643), 1, - sym_comment, - ACTIONS(1669), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(5707), 1, sym__entry_separator, - ACTIONS(1667), 48, + ACTIONS(5709), 1, + sym_raw_string_begin, + STATE(2679), 1, + aux_sym__multiple_types_repeat1, + STATE(2699), 1, + sym_comment, + ACTIONS(5703), 49, anon_sym_true, anon_sym_false, anon_sym_null, @@ -290803,15 +297598,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -290826,6 +297620,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -290843,19 +297640,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [86578] = 6, - ACTIONS(247), 1, + [84669] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5615), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5617), 1, - aux_sym__immediate_decimal_token2, - STATE(2644), 1, + STATE(2700), 1, sym_comment, - ACTIONS(1659), 18, + ACTIONS(1062), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -290871,8 +297664,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1661), 32, + ACTIONS(1064), 34, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -290885,6 +297678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_QMARK2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, @@ -290905,47 +297699,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [86645] = 4, - ACTIONS(3), 1, + [84732] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2645), 1, + STATE(2701), 1, sym_comment, - ACTIONS(1661), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1659), 48, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(1038), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -290954,27 +297722,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [86708] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2646), 1, - sym_comment, - ACTIONS(1723), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1721), 48, + ACTIONS(1040), 34, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -290987,32 +297737,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, + anon_sym_QMARK2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -291021,49 +297758,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [86771] = 4, - ACTIONS(3), 1, + [84795] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2647), 1, + ACTIONS(5815), 1, + aux_sym__immediate_decimal_token2, + STATE(2702), 1, sym_comment, - ACTIONS(1740), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1738), 48, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(1769), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -291072,43 +297782,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, aux_sym__unquoted_in_list_token2, - [86834] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5619), 1, - sym__newline, - STATE(2648), 1, - sym_comment, - ACTIONS(5622), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(1311), 15, - anon_sym_DOLLAR, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1307), 34, + ACTIONS(1771), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -291116,12 +297793,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -291132,9 +297810,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -291143,20 +297818,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [86901] = 6, + [84860] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5817), 1, + anon_sym_LBRACK2, + STATE(2703), 1, + sym_comment, + ACTIONS(2355), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(2359), 45, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [84925] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5624), 1, - anon_sym_DOT, - ACTIONS(5626), 1, + ACTIONS(5819), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5821), 1, aux_sym__immediate_decimal_token2, - STATE(2649), 1, + STATE(2704), 1, sym_comment, - ACTIONS(1669), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(1705), 3, + sym_raw_string_begin, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1667), 47, + ACTIONS(1703), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -291170,7 +297905,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -291204,49 +297938,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [86968] = 5, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token2, + [84992] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5628), 1, - anon_sym_QMARK2, - STATE(2650), 1, + ACTIONS(5823), 1, + anon_sym_DOT, + ACTIONS(5825), 1, + aux_sym__immediate_decimal_token2, + STATE(2705), 1, sym_comment, - ACTIONS(1024), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1022), 48, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(1715), 17, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -291255,27 +297965,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [87033] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5630), 1, - anon_sym_QMARK2, - STATE(2651), 1, - sym_comment, - ACTIONS(1030), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1028), 48, + ACTIONS(1717), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -291288,33 +297980,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -291323,53 +298000,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [87098] = 8, - ACTIONS(3), 1, + [85059] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1494), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1780), 1, - anon_sym_LPAREN2, - ACTIONS(1786), 1, - sym__entry_separator, - ACTIONS(5632), 1, - anon_sym_DOT_DOT2, - STATE(2652), 1, + STATE(2706), 1, sym_comment, - ACTIONS(5634), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1778), 46, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(1054), 18, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -291378,32 +298023,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [87169] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1790), 1, - anon_sym_LPAREN2, - ACTIONS(1796), 1, - sym__entry_separator, - ACTIONS(1798), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5636), 1, - anon_sym_DOT_DOT2, - STATE(2653), 1, - sym_comment, - ACTIONS(5638), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1788), 46, + ACTIONS(1056), 34, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -291416,31 +298038,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, + anon_sym_QMARK2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -291449,26 +298059,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [87240] = 9, + [85122] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5642), 1, - anon_sym_RBRACK, - ACTIONS(5645), 1, + ACTIONS(5827), 1, anon_sym_DOT, - STATE(2654), 1, + STATE(2707), 1, sym_comment, - STATE(5635), 1, + STATE(2836), 1, aux_sym_cell_path_repeat1, - STATE(6603), 1, + STATE(2946), 1, sym_path, - STATE(6924), 1, + STATE(3002), 1, sym_cell_path, - ACTIONS(1828), 2, + ACTIONS(1023), 2, + sym_raw_string_begin, sym__entry_separator, - sym__table_head_separator, - ACTIONS(5640), 45, + ACTIONS(1021), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -291476,6 +298083,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, @@ -291514,137 +298122,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [87313] = 4, - ACTIONS(247), 1, + [85193] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2655), 1, - sym_comment, - ACTIONS(1046), 11, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1048), 41, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, + ACTIONS(5827), 1, anon_sym_DOT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [87376] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5647), 1, - anon_sym_QMARK2, - STATE(2656), 1, + STATE(2708), 1, sym_comment, - ACTIONS(1022), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1024), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [87441] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5567), 1, + STATE(2836), 1, + aux_sym_cell_path_repeat1, + STATE(2946), 1, + sym_path, + STATE(2961), 1, + sym_cell_path, + ACTIONS(1931), 2, + sym_raw_string_begin, sym__entry_separator, - ACTIONS(5649), 1, - anon_sym_RBRACK, - STATE(2617), 1, - aux_sym__multiple_types_repeat1, - STATE(2657), 1, - sym_comment, - ACTIONS(5563), 49, + ACTIONS(1929), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -291652,14 +298146,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -291674,9 +298168,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -291689,85 +298180,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_GT_GT, anon_sym_e_GT_GT, anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [87508] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2658), 1, - sym_comment, - ACTIONS(1046), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1048), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [87570] = 9, - ACTIONS(247), 1, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [85264] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1830), 1, - sym__table_head_separator, - ACTIONS(5653), 1, - anon_sym_DOT, - STATE(2659), 1, + ACTIONS(5829), 1, + sym__newline, + STATE(2709), 2, sym_comment, - STATE(2714), 1, - sym_cell_path, - STATE(6495), 1, - aux_sym_cell_path_repeat1, - STATE(6916), 1, - sym_path, - ACTIONS(5640), 14, + aux_sym_shebang_repeat1, + ACTIONS(1349), 15, + anon_sym_DOLLAR, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -291782,7 +298209,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(5651), 32, + ACTIONS(1351), 35, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -291790,13 +298218,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -291807,6 +298234,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -291815,82 +298245,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [87642] = 4, + [85329] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2660), 1, + STATE(2710), 1, sym_comment, - ACTIONS(2255), 3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2253), 48, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym_unquoted_token4, - [87704] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1914), 1, + ACTIONS(1076), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(5657), 1, - anon_sym_RBRACK, - ACTIONS(5660), 1, - anon_sym_DOT, - STATE(2661), 1, - sym_comment, - STATE(2761), 1, - aux_sym_cell_path_repeat1, - STATE(2890), 1, - sym_path, - STATE(2993), 1, - sym_cell_path, - ACTIONS(5655), 45, + ACTIONS(1074), 48, anon_sym_true, anon_sym_false, anon_sym_null, @@ -291898,11 +298263,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -291936,74 +298304,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [87776] = 5, + [85392] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2227), 1, - aux_sym_unquoted_token4, - STATE(2662), 1, + ACTIONS(5827), 1, + anon_sym_DOT, + STATE(2711), 1, sym_comment, - ACTIONS(1072), 3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(1070), 47, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, + STATE(2836), 1, + aux_sym_cell_path_repeat1, + STATE(2946), 1, + sym_path, + STATE(2963), 1, + sym_cell_path, + ACTIONS(1995), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1993), 46, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - [87840] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2663), 1, - sym_comment, - ACTIONS(1038), 11, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT2, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -292012,39 +298358,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1040), 40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_QMARK2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -292053,18 +298366,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [87902] = 5, + aux_sym__unquoted_in_list_token1, + [85463] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5626), 1, - aux_sym__immediate_decimal_token2, - STATE(2664), 1, + ACTIONS(5827), 1, + anon_sym_DOT, + STATE(2712), 1, sym_comment, - ACTIONS(1669), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + STATE(2836), 1, + aux_sym_cell_path_repeat1, + STATE(2946), 1, + sym_path, + STATE(2964), 1, + sym_cell_path, + ACTIONS(1999), 2, + sym_raw_string_begin, sym__entry_separator, - ACTIONS(1667), 47, + ACTIONS(1997), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -292078,7 +298397,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -292112,99 +298430,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [87966] = 30, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3229), 1, - aux_sym_record_entry_token1, - ACTIONS(3279), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3281), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3283), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3285), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3860), 1, - anon_sym_DQUOTE, - ACTIONS(3864), 1, - aux_sym_unquoted_token1, - ACTIONS(4003), 1, - anon_sym_DOLLAR, - ACTIONS(4397), 1, - anon_sym_DOT_DOT, - ACTIONS(5664), 1, - anon_sym_LPAREN, - ACTIONS(5666), 1, - sym_val_date, - STATE(1729), 1, - sym__inter_single_quotes, - STATE(1732), 1, - sym__inter_double_quotes, - STATE(2002), 1, - sym__str_double_quotes, - STATE(2665), 1, - sym_comment, - STATE(5858), 1, - sym__val_number_decimal, - STATE(6124), 1, - sym_unquoted, - STATE(7538), 1, - sym_val_bool, - STATE(7681), 1, - sym__val_range, - STATE(7695), 1, - sym__unquoted_anonymous_prefix, - ACTIONS(3259), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3862), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4399), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5662), 3, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - STATE(6112), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(2643), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2645), 9, - anon_sym_null, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [88080] = 4, - ACTIONS(3), 1, + [85534] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2410), 1, - sym__entry_separator, - STATE(2666), 1, + ACTIONS(5464), 1, + aux_sym_unquoted_token2, + STATE(2713), 1, sym_comment, - ACTIONS(2408), 50, + ACTIONS(1628), 6, aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1640), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -292212,13 +298453,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -292239,14 +298477,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_RBRACK, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -292254,18 +298490,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [88142] = 5, + [85599] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5668), 1, - aux_sym__immediate_decimal_token2, - STATE(2667), 1, + ACTIONS(5827), 1, + anon_sym_DOT, + STATE(2714), 1, sym_comment, - ACTIONS(1723), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + STATE(2836), 1, + aux_sym_cell_path_repeat1, + STATE(2946), 1, + sym_path, + STATE(2965), 1, + sym_cell_path, + ACTIONS(2003), 2, + sym_raw_string_begin, sym__entry_separator, - ACTIONS(1721), 47, + ACTIONS(2001), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -292279,7 +298520,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -292313,16 +298553,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [88206] = 5, + [85670] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, - sym__entry_separator, - STATE(2617), 1, - aux_sym__multiple_types_repeat1, - STATE(2668), 1, + ACTIONS(5827), 1, + anon_sym_DOT, + STATE(2715), 1, sym_comment, - ACTIONS(5563), 49, + STATE(2836), 1, + aux_sym_cell_path_repeat1, + STATE(2946), 1, + sym_path, + STATE(2966), 1, + sym_cell_path, + ACTIONS(2007), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2005), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -292330,14 +298577,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -292352,9 +298599,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -292372,105 +298616,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [88270] = 32, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2571), 1, - anon_sym_0b, - ACTIONS(2581), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2583), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2995), 1, - anon_sym_LPAREN, - ACTIONS(2997), 1, - anon_sym_DOLLAR, - ACTIONS(3005), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3007), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3009), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3011), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3015), 1, - anon_sym_DQUOTE, - ACTIONS(3023), 1, - anon_sym_LBRACK, - ACTIONS(5672), 1, - anon_sym_null, - ACTIONS(5674), 1, - anon_sym_LBRACE, - ACTIONS(5676), 1, - anon_sym_DOT_DOT, - ACTIONS(5680), 1, - sym_val_date, - STATE(495), 1, - sym__inter_single_quotes, - STATE(556), 1, - sym__inter_double_quotes, - STATE(2669), 1, - sym_comment, - STATE(2915), 1, - sym__val_number, - STATE(5413), 1, - sym__str_double_quotes, - STATE(5586), 1, - sym__val_number_decimal, - STATE(5719), 1, - sym_val_variable, - STATE(5974), 1, - sym_expr_parenthesized, - STATE(7343), 1, - sym_block, - ACTIONS(2573), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3017), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5670), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5678), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(7372), 2, - sym_val_range, - sym__value, - ACTIONS(2569), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(521), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [88388] = 6, + [85741] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5682), 1, + ACTIONS(5827), 1, anon_sym_DOT, - ACTIONS(5684), 1, - aux_sym__immediate_decimal_token2, - STATE(2670), 1, + STATE(2716), 1, sym_comment, - ACTIONS(1669), 2, - anon_sym_LPAREN2, + STATE(2836), 1, + aux_sym_cell_path_repeat1, + STATE(2946), 1, + sym_path, + STATE(2967), 1, + sym_cell_path, + ACTIONS(2011), 2, + sym_raw_string_begin, sym__entry_separator, - ACTIONS(1667), 47, + ACTIONS(2009), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -292517,159 +298679,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [88454] = 32, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2571), 1, - anon_sym_0b, - ACTIONS(2581), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2583), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2995), 1, - anon_sym_LPAREN, - ACTIONS(2997), 1, - anon_sym_DOLLAR, - ACTIONS(3005), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3007), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3009), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3011), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3015), 1, - anon_sym_DQUOTE, - ACTIONS(3023), 1, - anon_sym_LBRACK, - ACTIONS(5672), 1, - anon_sym_null, - ACTIONS(5674), 1, - anon_sym_LBRACE, - ACTIONS(5676), 1, - anon_sym_DOT_DOT, - ACTIONS(5680), 1, - sym_val_date, - STATE(495), 1, - sym__inter_single_quotes, - STATE(556), 1, - sym__inter_double_quotes, - STATE(2671), 1, - sym_comment, - STATE(2915), 1, - sym__val_number, - STATE(5413), 1, - sym__str_double_quotes, - STATE(5586), 1, - sym__val_number_decimal, - STATE(5719), 1, - sym_val_variable, - STATE(5978), 1, - sym_expr_parenthesized, - STATE(7198), 1, - sym_block, - ACTIONS(2573), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3017), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5670), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5678), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(7233), 2, - sym_val_range, - sym__value, - ACTIONS(2569), 6, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - STATE(521), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [88572] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2672), 1, - sym_comment, - ACTIONS(1050), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1052), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [88634] = 4, + [85812] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2410), 1, - sym__entry_separator, - STATE(2673), 1, + STATE(2717), 1, sym_comment, - ACTIONS(2408), 50, + ACTIONS(2404), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2402), 50, anon_sym_true, anon_sym_false, anon_sym_null, @@ -292720,133 +298738,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [88696] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5391), 1, - aux_sym_unquoted_token2, - STATE(2674), 1, - sym_comment, - ACTIONS(1560), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1572), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [88760] = 5, + [85875] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5547), 1, - sym__entry_separator, - STATE(2609), 1, - aux_sym__multiple_types_repeat1, - STATE(2675), 1, + ACTIONS(5827), 1, + anon_sym_DOT, + STATE(2718), 1, sym_comment, - ACTIONS(5543), 49, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, + STATE(2836), 1, + aux_sym_cell_path_repeat1, + STATE(2946), 1, + sym_path, + STATE(2968), 1, + sym_cell_path, + ACTIONS(2015), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2013), 46, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [88824] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2676), 1, - sym_comment, - ACTIONS(1034), 11, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -292855,39 +298792,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1036), 40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_QMARK2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -292896,76 +298800,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [88886] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2677), 1, - sym_comment, - ACTIONS(2388), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2390), 45, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - sym__table_head_separator, - [88948] = 6, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + [85946] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5686), 1, - anon_sym_DOT, - ACTIONS(5688), 1, - aux_sym__immediate_decimal_token2, - STATE(2678), 1, + ACTIONS(5832), 1, + anon_sym_QMARK2, + STATE(2719), 1, sym_comment, - ACTIONS(1667), 17, + ACTIONS(1048), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -292981,7 +298827,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1669), 32, + ACTIONS(1050), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -293014,198 +298861,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [89014] = 5, - ACTIONS(247), 1, + [86011] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5690), 1, - anon_sym_LBRACK2, - STATE(2679), 1, + ACTIONS(5827), 1, + anon_sym_DOT, + STATE(2720), 1, sym_comment, - ACTIONS(2313), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2317), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, + STATE(2836), 1, + aux_sym_cell_path_repeat1, + STATE(2946), 1, + sym_path, + STATE(2969), 1, + sym_cell_path, + ACTIONS(2019), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2017), 46, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [89078] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2680), 1, - sym_comment, - ACTIONS(1054), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - anon_sym_DOT, - ACTIONS(1056), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [89140] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - STATE(2681), 1, - sym_comment, - ACTIONS(2241), 3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2237), 47, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - [89204] = 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [86082] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1838), 1, - sym__entry_separator, - ACTIONS(5660), 1, + ACTIONS(5827), 1, anon_sym_DOT, - STATE(2682), 1, + STATE(2721), 1, sym_comment, - STATE(2761), 1, + STATE(2836), 1, aux_sym_cell_path_repeat1, - STATE(2890), 1, + STATE(2946), 1, sym_path, - STATE(2930), 1, + STATE(2970), 1, sym_cell_path, - ACTIONS(1836), 46, + ACTIONS(2023), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2021), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -293252,82 +298987,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [89274] = 5, + [86153] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - STATE(2683), 1, + ACTIONS(5834), 1, + aux_sym__immediate_decimal_token2, + STATE(2722), 1, sym_comment, - ACTIONS(2247), 3, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2245), 47, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, + ACTIONS(1771), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1769), 47, anon_sym_true, anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - [89338] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5692), 1, - anon_sym_QMARK2, - STATE(2684), 1, - sym_comment, - ACTIONS(1022), 18, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -293336,8 +299038,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1024), 32, + [86218] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5827), 1, + anon_sym_DOT, + STATE(2723), 1, + sym_comment, + STATE(2836), 1, + aux_sym_cell_path_repeat1, + STATE(2946), 1, + sym_path, + STATE(2971), 1, + sym_cell_path, + ACTIONS(2045), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2043), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -293350,18 +299076,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -293370,17 +299109,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [89402] = 5, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + [86289] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5694), 1, - anon_sym_QMARK2, - STATE(2685), 1, + ACTIONS(5836), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5838), 1, + aux_sym__immediate_decimal_token2, + STATE(2724), 1, sym_comment, - ACTIONS(1028), 18, + ACTIONS(1703), 17, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -293396,7 +299137,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1030), 32, + ACTIONS(1705), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -293429,33 +299171,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [89466] = 5, - ACTIONS(247), 1, + [86356] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5610), 1, - aux_sym__immediate_decimal_token2, - STATE(2686), 1, + ACTIONS(5827), 1, + anon_sym_DOT, + STATE(2725), 1, sym_comment, - ACTIONS(1667), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1669), 32, + STATE(2836), 1, + aux_sym_cell_path_repeat1, + STATE(2946), 1, + sym_path, + STATE(2972), 1, + sym_cell_path, + ACTIONS(2049), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2047), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -293468,18 +299200,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -293488,81 +299233,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [89530] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5696), 1, - anon_sym_EQ2, - STATE(2687), 1, - sym_comment, - ACTIONS(4900), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(4898), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [89594] = 8, + aux_sym__unquoted_in_list_token1, + [86427] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1842), 1, - sym__entry_separator, - ACTIONS(5660), 1, + ACTIONS(5827), 1, anon_sym_DOT, - STATE(2688), 1, + STATE(2726), 1, sym_comment, - STATE(2761), 1, + STATE(2836), 1, aux_sym_cell_path_repeat1, - STATE(2890), 1, + STATE(2946), 1, sym_path, - STATE(2954), 1, + STATE(2973), 1, sym_cell_path, - ACTIONS(1840), 46, + ACTIONS(2053), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2051), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -293609,22 +299297,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [89664] = 8, + [86498] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1846), 1, - sym__entry_separator, - ACTIONS(5660), 1, + ACTIONS(5827), 1, anon_sym_DOT, - STATE(2689), 1, + STATE(2727), 1, sym_comment, - STATE(2761), 1, + STATE(2836), 1, aux_sym_cell_path_repeat1, - STATE(2890), 1, + STATE(2946), 1, sym_path, - STATE(2955), 1, + STATE(2974), 1, sym_cell_path, - ACTIONS(1844), 46, + ACTIONS(2057), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2055), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -293671,22 +299360,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [89734] = 8, + [86569] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1850), 1, - sym__entry_separator, - ACTIONS(5660), 1, + ACTIONS(5827), 1, anon_sym_DOT, - STATE(2690), 1, + STATE(2728), 1, sym_comment, - STATE(2761), 1, + STATE(2836), 1, aux_sym_cell_path_repeat1, - STATE(2890), 1, + STATE(2946), 1, sym_path, - STATE(2924), 1, + STATE(2975), 1, sym_cell_path, - ACTIONS(1848), 46, + ACTIONS(2061), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2059), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -293733,21 +299423,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [89804] = 5, - ACTIONS(247), 1, + [86640] = 30, + ACTIONS(111), 1, + anon_sym_DQUOTE, + ACTIONS(115), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(117), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(123), 1, + sym_raw_string_begin, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5698), 1, - sym__newline, - STATE(2691), 2, - sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1313), 15, + ACTIONS(3306), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT, + ACTIONS(3322), 1, + aux_sym_unquoted_token1, + ACTIONS(3366), 1, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(3368), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3370), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3372), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5691), 1, + sym_val_date, + ACTIONS(5842), 1, + anon_sym_LPAREN, + ACTIONS(5844), 1, + anon_sym_DOT_DOT, + STATE(2436), 1, + sym__inter_double_quotes, + STATE(2563), 1, + sym__inter_single_quotes, + STATE(2729), 1, + sym_comment, + STATE(5889), 1, + sym__val_number_decimal, + STATE(7097), 1, + sym_unquoted, + STATE(7610), 1, + sym_val_bool, + STATE(7622), 1, + sym__unquoted_anonymous_prefix, + STATE(7869), 1, + sym__val_range, + ACTIONS(113), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3350), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5846), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(2065), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5840), 3, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + STATE(7086), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(2685), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -293756,34 +299498,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1315), 34, - anon_sym_true, - anon_sym_false, + ACTIONS(2687), 9, anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [86755] = 29, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(3366), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3368), 1, aux_sym__val_number_decimal_token2, + ACTIONS(3370), 1, aux_sym__val_number_decimal_token3, + ACTIONS(3372), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, + ACTIONS(5429), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(5433), 1, + sym_raw_string_begin, + ACTIONS(5683), 1, + anon_sym_LPAREN, + ACTIONS(5685), 1, + anon_sym_DOLLAR, + ACTIONS(5687), 1, + anon_sym_DOT_DOT, + ACTIONS(5691), 1, + sym_val_date, + ACTIONS(5693), 1, anon_sym_DOLLAR_SQUOTE, + ACTIONS(5695), 1, anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, + ACTIONS(5697), 1, + aux_sym_unquoted_token1, + STATE(2431), 1, + sym__inter_double_quotes, + STATE(2501), 1, + sym__inter_single_quotes, + STATE(2730), 1, + sym_comment, + STATE(5868), 1, + sym__val_number_decimal, + STATE(7610), 1, + sym_val_bool, + STATE(7848), 1, + sym__val_range, + STATE(7860), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(3350), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5431), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5689), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(2500), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5681), 3, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + STATE(1475), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2685), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2687), 9, + anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -293792,22 +299592,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [89868] = 8, + [86868] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1854), 1, - sym__entry_separator, - ACTIONS(5660), 1, + ACTIONS(5827), 1, anon_sym_DOT, - STATE(2692), 1, + STATE(2731), 1, sym_comment, - STATE(2761), 1, + STATE(2836), 1, aux_sym_cell_path_repeat1, - STATE(2890), 1, + STATE(2946), 1, sym_path, - STATE(2927), 1, + STATE(2976), 1, sym_cell_path, - ACTIONS(1852), 46, + ACTIONS(2069), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2067), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -293854,22 +299655,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [89938] = 8, + [86939] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1858), 1, - sym__entry_separator, - ACTIONS(5660), 1, + ACTIONS(5827), 1, anon_sym_DOT, - STATE(2693), 1, + STATE(2732), 1, sym_comment, - STATE(2761), 1, + STATE(2836), 1, aux_sym_cell_path_repeat1, - STATE(2890), 1, + STATE(2946), 1, sym_path, - STATE(2967), 1, + STATE(2977), 1, sym_cell_path, - ACTIONS(1856), 46, + ACTIONS(2085), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2083), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -293916,81 +299718,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [90008] = 5, - ACTIONS(3), 1, + [87010] = 30, + ACTIONS(239), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2235), 1, - aux_sym_unquoted_token4, - STATE(2694), 1, - sym_comment, - ACTIONS(2233), 3, + ACTIONS(3366), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3368), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3370), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3372), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3842), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2229), 47, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, + ACTIONS(3846), 1, + aux_sym_unquoted_token1, + ACTIONS(3848), 1, + sym_raw_string_begin, + ACTIONS(4020), 1, + anon_sym_DOLLAR, + ACTIONS(4024), 1, + anon_sym_DOT_DOT, + ACTIONS(5691), 1, + sym_val_date, + ACTIONS(5727), 1, + anon_sym_LPAREN, + STATE(1827), 1, + sym__inter_single_quotes, + STATE(1841), 1, + sym__inter_double_quotes, + STATE(2733), 1, + sym_comment, + STATE(5928), 1, + sym__val_number_decimal, + STATE(6417), 1, + sym_unquoted, + STATE(7610), 1, + sym_val_bool, + STATE(7794), 1, + sym__val_range, + STATE(7859), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(3350), 2, anon_sym_true, anon_sym_false, - anon_sym_null, + ACTIONS(3844), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4026), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(4434), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5725), 3, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - [90072] = 8, + STATE(6415), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(2685), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2687), 9, + anon_sym_null, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [87125] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1866), 1, - sym__entry_separator, - ACTIONS(5660), 1, + ACTIONS(5827), 1, anon_sym_DOT, - STATE(2695), 1, + STATE(2734), 1, sym_comment, - STATE(2761), 1, + STATE(2836), 1, aux_sym_cell_path_repeat1, - STATE(2890), 1, + STATE(2946), 1, sym_path, - STATE(2951), 1, + STATE(2978), 1, sym_cell_path, - ACTIONS(1864), 46, + ACTIONS(2089), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2087), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -294037,22 +299866,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [90142] = 8, + [87196] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1870), 1, - sym__entry_separator, - ACTIONS(5660), 1, + ACTIONS(5827), 1, anon_sym_DOT, - STATE(2696), 1, + STATE(2735), 1, sym_comment, - STATE(2761), 1, + STATE(2836), 1, aux_sym_cell_path_repeat1, - STATE(2890), 1, + STATE(2946), 1, sym_path, - STATE(2952), 1, + STATE(2979), 1, sym_cell_path, - ACTIONS(1868), 46, + ACTIONS(2097), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2095), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -294099,22 +299929,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [90212] = 8, - ACTIONS(3), 1, + [87267] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1874), 1, - sym__entry_separator, - ACTIONS(5660), 1, - anon_sym_DOT, - STATE(2697), 1, + ACTIONS(5733), 1, + aux_sym__immediate_decimal_token2, + STATE(2736), 1, sym_comment, - STATE(2761), 1, - aux_sym_cell_path_repeat1, - STATE(2890), 1, - sym_path, - STATE(2957), 1, - sym_cell_path, - ACTIONS(1872), 46, + ACTIONS(1715), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1717), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -294127,31 +299969,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -294160,23 +299989,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [90282] = 8, + [87332] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1878), 1, - sym__entry_separator, - ACTIONS(5660), 1, - anon_sym_DOT, - STATE(2698), 1, + STATE(2737), 1, sym_comment, - STATE(2761), 1, - aux_sym_cell_path_repeat1, - STATE(2890), 1, - sym_path, - STATE(2964), 1, - sym_cell_path, - ACTIONS(1876), 46, + ACTIONS(1072), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1070), 48, anon_sym_true, anon_sym_false, anon_sym_null, @@ -294190,6 +300013,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -294223,22 +300048,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [90352] = 8, + [87395] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1882), 1, - sym__entry_separator, - ACTIONS(5660), 1, - anon_sym_DOT, - STATE(2699), 1, + ACTIONS(5762), 1, + aux_sym__immediate_decimal_token2, + STATE(2738), 1, sym_comment, - STATE(2761), 1, - aux_sym_cell_path_repeat1, - STATE(2890), 1, - sym_path, - STATE(2902), 1, - sym_cell_path, - ACTIONS(1880), 46, + ACTIONS(1717), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1715), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -294252,6 +300074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -294285,22 +300108,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [90422] = 8, + [87460] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1886), 1, + ACTIONS(1895), 1, sym__entry_separator, - ACTIONS(5660), 1, + ACTIONS(5827), 1, anon_sym_DOT, - STATE(2700), 1, + ACTIONS(5850), 1, + anon_sym_RBRACK, + ACTIONS(5853), 1, + sym_raw_string_begin, + STATE(2739), 1, sym_comment, - STATE(2761), 1, + STATE(2836), 1, aux_sym_cell_path_repeat1, - STATE(2890), 1, + STATE(2946), 1, sym_path, - STATE(2911), 1, + STATE(3041), 1, sym_cell_path, - ACTIONS(1884), 46, + ACTIONS(5848), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -294308,7 +300135,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, @@ -294347,51 +300173,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [90492] = 8, - ACTIONS(3), 1, + [87535] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1890), 1, - sym__entry_separator, - ACTIONS(5660), 1, - anon_sym_DOT, - STATE(2701), 1, + STATE(2740), 1, sym_comment, - STATE(2761), 1, - aux_sym_cell_path_repeat1, - STATE(2890), 1, - sym_path, - STATE(2914), 1, - sym_cell_path, - ACTIONS(1888), 46, + ACTIONS(1070), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(1072), 45, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + [87598] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2741), 1, + sym_comment, + ACTIONS(1066), 11, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -294400,6 +300249,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(1068), 41, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -294408,52 +300291,312 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [90562] = 8, + [87661] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5855), 1, + anon_sym_EQ2, + STATE(2742), 1, + sym_comment, + ACTIONS(4991), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(4989), 45, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [87726] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1894), 1, - sym__entry_separator, - ACTIONS(5660), 1, - anon_sym_DOT, - STATE(2702), 1, + ACTIONS(2275), 1, + aux_sym_unquoted_token4, + STATE(2743), 1, sym_comment, - STATE(2761), 1, - aux_sym_cell_path_repeat1, - STATE(2890), 1, - sym_path, - STATE(2906), 1, - sym_cell_path, - ACTIONS(1892), 46, + ACTIONS(1092), 4, + sym_raw_string_begin, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(1090), 47, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, + [87791] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5857), 1, + sym__newline, + STATE(2744), 2, + sym_comment, + aux_sym_shebang_repeat1, + ACTIONS(1349), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1351), 44, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [87856] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2287), 1, + aux_sym_unquoted_token4, + STATE(2745), 1, + sym_comment, + ACTIONS(2285), 4, + sym_raw_string_begin, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2281), 47, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + [87921] = 29, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(3366), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3368), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3370), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3372), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5613), 1, anon_sym_DQUOTE, + ACTIONS(5617), 1, + sym_raw_string_begin, + ACTIONS(5691), 1, + sym_val_date, + ACTIONS(5862), 1, + anon_sym_LPAREN, + ACTIONS(5864), 1, + anon_sym_DOLLAR, + ACTIONS(5866), 1, + anon_sym_DOT_DOT, + ACTIONS(5870), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5872), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5874), 1, + aux_sym_unquoted_token1, + STATE(2566), 1, + sym__inter_single_quotes, + STATE(2570), 1, + sym__inter_double_quotes, + STATE(2746), 1, + sym_comment, + STATE(5894), 1, + sym__val_number_decimal, + STATE(7610), 1, + sym_val_bool, + STATE(7776), 1, + sym__unquoted_anonymous_prefix, + STATE(7834), 1, + sym__val_range, + ACTIONS(3350), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5615), 2, sym__str_single_quotes, sym__str_back_ticks, + ACTIONS(5868), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(2615), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5860), 3, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + STATE(1505), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2685), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -294462,6 +300605,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(2687), 9, + anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -294470,52 +300615,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [90632] = 8, - ACTIONS(3), 1, + [88034] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1898), 1, - sym__entry_separator, - ACTIONS(5660), 1, - anon_sym_DOT, - STATE(2703), 1, + STATE(2747), 1, sym_comment, - STATE(2761), 1, - aux_sym_cell_path_repeat1, - STATE(2890), 1, - sym_path, - STATE(2907), 1, - sym_cell_path, - ACTIONS(1896), 46, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(1070), 11, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1072), 41, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_if, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [88097] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5876), 1, + anon_sym_QMARK2, + STATE(2748), 1, + sym_comment, + ACTIONS(1042), 18, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -294524,31 +300699,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [90702] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1902), 1, - sym__entry_separator, - ACTIONS(5660), 1, - anon_sym_DOT, - STATE(2704), 1, - sym_comment, - STATE(2761), 1, - aux_sym_cell_path_repeat1, - STATE(2890), 1, - sym_path, - STATE(2969), 1, - sym_cell_path, - ACTIONS(1900), 46, + ACTIONS(1044), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -294561,31 +300714,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -294594,52 +300734,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [90772] = 8, - ACTIONS(3), 1, + [88162] = 29, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1906), 1, - sym__entry_separator, - ACTIONS(5660), 1, - anon_sym_DOT, - STATE(2705), 1, - sym_comment, - STATE(2761), 1, - aux_sym_cell_path_repeat1, - STATE(2890), 1, - sym_path, - STATE(2916), 1, - sym_cell_path, - ACTIONS(1904), 46, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + ACTIONS(3366), 1, aux_sym__val_number_decimal_token1, + ACTIONS(3368), 1, aux_sym__val_number_decimal_token2, + ACTIONS(3370), 1, aux_sym__val_number_decimal_token3, + ACTIONS(3372), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, + ACTIONS(5613), 1, anon_sym_DQUOTE, + ACTIONS(5617), 1, + sym_raw_string_begin, + ACTIONS(5691), 1, + sym_val_date, + ACTIONS(5862), 1, + anon_sym_LPAREN, + ACTIONS(5864), 1, + anon_sym_DOLLAR, + ACTIONS(5866), 1, + anon_sym_DOT_DOT, + ACTIONS(5870), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5872), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5874), 1, + aux_sym_unquoted_token1, + STATE(2566), 1, + sym__inter_single_quotes, + STATE(2570), 1, + sym__inter_double_quotes, + STATE(2749), 1, + sym_comment, + STATE(5894), 1, + sym__val_number_decimal, + STATE(7610), 1, + sym_val_bool, + STATE(7776), 1, + sym__unquoted_anonymous_prefix, + STATE(7834), 1, + sym__val_range, + ACTIONS(3350), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5615), 2, sym__str_single_quotes, sym__str_back_ticks, + ACTIONS(5868), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(2615), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5860), 3, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + STATE(1511), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2685), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -294648,6 +300808,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(2687), 9, + anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -294656,72 +300818,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [90842] = 29, - ACTIONS(247), 1, + [88275] = 29, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3229), 1, - aux_sym_record_entry_token1, - ACTIONS(3279), 1, + ACTIONS(3366), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3281), 1, + ACTIONS(3368), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3283), 1, + ACTIONS(3370), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3285), 1, + ACTIONS(3372), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3860), 1, + ACTIONS(5429), 1, anon_sym_DQUOTE, - ACTIONS(3864), 1, - aux_sym_unquoted_token1, - ACTIONS(4397), 1, - anon_sym_DOT_DOT, - ACTIONS(5666), 1, - sym_val_date, - ACTIONS(5701), 1, + ACTIONS(5433), 1, + sym_raw_string_begin, + ACTIONS(5683), 1, anon_sym_LPAREN, - ACTIONS(5703), 1, + ACTIONS(5685), 1, anon_sym_DOLLAR, - ACTIONS(5705), 1, + ACTIONS(5687), 1, + anon_sym_DOT_DOT, + ACTIONS(5691), 1, + sym_val_date, + ACTIONS(5693), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(5707), 1, + ACTIONS(5695), 1, anon_sym_DOLLAR_DQUOTE, - STATE(2002), 1, - sym__str_double_quotes, - STATE(2498), 1, - sym__inter_single_quotes, - STATE(2502), 1, + ACTIONS(5697), 1, + aux_sym_unquoted_token1, + STATE(2431), 1, sym__inter_double_quotes, - STATE(2706), 1, + STATE(2501), 1, + sym__inter_single_quotes, + STATE(2750), 1, sym_comment, - STATE(5858), 1, + STATE(5868), 1, sym__val_number_decimal, - STATE(7538), 1, + STATE(7610), 1, sym_val_bool, - STATE(7681), 1, + STATE(7848), 1, sym__val_range, - STATE(7695), 1, + STATE(7860), 1, sym__unquoted_anonymous_prefix, - ACTIONS(3259), 2, + ACTIONS(3350), 2, anon_sym_true, anon_sym_false, - ACTIONS(3862), 2, + ACTIONS(5431), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4399), 2, + ACTIONS(5689), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(5662), 3, + STATE(2500), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5681), 3, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - STATE(1544), 5, + STATE(1449), 5, sym_expr_parenthesized, sym_val_variable, sym_val_string, sym_val_interpolated, sym_unquoted, - ACTIONS(2643), 8, + ACTIONS(2685), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -294730,7 +300892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2645), 9, + ACTIONS(2687), 9, anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -294740,18 +300902,252 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [90954] = 5, - ACTIONS(247), 1, + [88388] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5709), 1, - aux_sym__immediate_decimal_token2, - STATE(2707), 1, + STATE(2751), 1, + sym_comment, + ACTIONS(1074), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + anon_sym_DOT, + ACTIONS(1076), 45, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [88451] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2752), 1, + sym_comment, + ACTIONS(1074), 11, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1076), 41, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [88514] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2753), 1, + sym_comment, + ACTIONS(2569), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(2571), 45, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [88576] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2754), 1, + sym_comment, + ACTIONS(5077), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(5075), 45, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [88638] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5878), 1, + sym__newline, + STATE(2755), 2, sym_comment, - ACTIONS(1721), 18, + aux_sym_shebang_repeat1, + ACTIONS(1349), 16, + anon_sym_DOLLAR, + anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -294764,9 +301160,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1723), 32, + aux_sym_unquoted_token1, + ACTIONS(1351), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -294774,13 +301170,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -294791,6 +301185,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -294799,48 +301195,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [91018] = 6, - ACTIONS(3), 1, + [88702] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5711), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5713), 1, - aux_sym__immediate_decimal_token2, - STATE(2708), 1, + STATE(2756), 1, sym_comment, - ACTIONS(1661), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1659), 47, + ACTIONS(2510), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(2512), 45, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + [88764] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2757), 1, + sym_comment, + ACTIONS(1066), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -294849,32 +301276,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [91084] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1007), 1, - sym__entry_separator, - ACTIONS(5660), 1, - anon_sym_DOT, - STATE(2709), 1, - sym_comment, - STATE(2761), 1, - aux_sym_cell_path_repeat1, - STATE(2890), 1, - sym_path, - STATE(3010), 1, - sym_cell_path, - ACTIONS(1005), 46, + ACTIONS(1068), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -294887,31 +301291,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -294920,72 +301311,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [91154] = 29, - ACTIONS(247), 1, + [88826] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3231), 1, - aux_sym_record_entry_token1, - ACTIONS(3279), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3281), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3283), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3285), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3860), 1, - anon_sym_DQUOTE, - ACTIONS(3864), 1, - aux_sym_unquoted_token1, - ACTIONS(4397), 1, - anon_sym_DOT_DOT, - ACTIONS(5666), 1, - sym_val_date, - ACTIONS(5701), 1, - anon_sym_LPAREN, - ACTIONS(5703), 1, - anon_sym_DOLLAR, - ACTIONS(5705), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5707), 1, - anon_sym_DOLLAR_DQUOTE, - STATE(2002), 1, - sym__str_double_quotes, - STATE(2498), 1, - sym__inter_single_quotes, - STATE(2502), 1, - sym__inter_double_quotes, - STATE(2710), 1, + STATE(2758), 1, sym_comment, - STATE(5858), 1, - sym__val_number_decimal, - STATE(7538), 1, - sym_val_bool, - STATE(7681), 1, - sym__val_range, - STATE(7695), 1, - sym__unquoted_anonymous_prefix, - ACTIONS(3259), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3862), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4399), 2, + ACTIONS(1070), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(5662), 3, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - STATE(1544), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2643), 8, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -294994,26 +301334,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2645), 9, - anon_sym_null, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [91266] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2711), 1, - sym_comment, - ACTIONS(1048), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1046), 48, + aux_sym__unquoted_in_list_token1, + ACTIONS(1072), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -295026,33 +301349,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -295061,105 +301369,195 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [91328] = 30, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, + [88888] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3231), 1, - aux_sym_record_entry_token1, - ACTIONS(3279), 1, + STATE(2759), 1, + sym_comment, + ACTIONS(2001), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(2003), 45, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, - ACTIONS(3281), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3283), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3285), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3860), 1, anon_sym_DQUOTE, - ACTIONS(3864), 1, - aux_sym_unquoted_token1, - ACTIONS(4003), 1, - anon_sym_DOLLAR, - ACTIONS(4397), 1, - anon_sym_DOT_DOT, - ACTIONS(5664), 1, - anon_sym_LPAREN, - ACTIONS(5666), 1, - sym_val_date, - STATE(1729), 1, - sym__inter_single_quotes, - STATE(1732), 1, - sym__inter_double_quotes, - STATE(2002), 1, - sym__str_double_quotes, - STATE(2712), 1, + sym__str_single_quotes, + sym__str_back_ticks, + [88950] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2760), 1, sym_comment, - STATE(5858), 1, - sym__val_number_decimal, - STATE(6124), 1, - sym_unquoted, - STATE(7538), 1, - sym_val_bool, - STATE(7681), 1, - sym__val_range, - STATE(7695), 1, - sym__unquoted_anonymous_prefix, - ACTIONS(3259), 2, + ACTIONS(2535), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(2537), 45, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, - ACTIONS(3862), 2, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4399), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5662), 3, + [89012] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2761), 1, + sym_comment, + ACTIONS(1090), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, + ACTIONS(1092), 45, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - STATE(6112), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(2643), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2645), 9, - anon_sym_null, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [91442] = 6, - ACTIONS(247), 1, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [89074] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5715), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5717), 1, - aux_sym__immediate_decimal_token2, - STATE(2713), 1, + ACTIONS(5881), 1, + anon_sym_DOT, + STATE(2762), 1, sym_comment, - ACTIONS(1659), 17, + STATE(2884), 1, + aux_sym_cell_path_repeat1, + STATE(3021), 1, + sym_path, + STATE(3078), 1, + sym_cell_path, + ACTIONS(5848), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -295173,7 +301571,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1661), 32, + ACTIONS(5853), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -295186,8 +301585,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -295198,27 +301597,260 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [91508] = 4, - ACTIONS(247), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [89144] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2763), 1, + sym_comment, + ACTIONS(2494), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(2496), 45, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [89206] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2764), 1, + sym_comment, + ACTIONS(5061), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(5059), 45, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [89268] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2765), 1, + sym_comment, + ACTIONS(2466), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(2468), 45, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [89330] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2766), 1, + sym_comment, + ACTIONS(1062), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1064), 45, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [89392] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2714), 1, + STATE(2767), 1, sym_comment, - ACTIONS(1832), 6, + ACTIONS(2494), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1834), 45, + ACTIONS(2496), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -295263,20 +301895,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - sym__table_head_separator, - [91570] = 4, - ACTIONS(247), 1, + [89454] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2715), 1, + STATE(2768), 1, sym_comment, - ACTIONS(5022), 6, + ACTIONS(2017), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(5020), 45, + ACTIONS(2019), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -295314,7 +301946,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, - anon_sym_LBRACE, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -295322,22 +301953,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [91632] = 5, - ACTIONS(247), 1, + [89516] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5719), 1, - sym__newline, - STATE(2716), 2, + STATE(2769), 1, sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1313), 6, + ACTIONS(2043), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1315), 43, + ACTIONS(2045), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -295374,6 +302003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -295381,19 +302011,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [91696] = 4, - ACTIONS(247), 1, + [89578] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2717), 1, + STATE(2770), 1, sym_comment, - ACTIONS(5026), 6, + ACTIONS(2047), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(5024), 45, + ACTIONS(2049), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -295431,7 +302062,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, - anon_sym_LBRACE, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -295439,74 +302069,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [91758] = 4, - ACTIONS(247), 1, + [89640] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2718), 1, + STATE(2771), 1, sym_comment, - ACTIONS(1042), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1044), 33, + ACTIONS(2434), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(2436), 45, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [91820] = 4, + [89702] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2719), 1, + STATE(2772), 1, sym_comment, - ACTIONS(1052), 3, + ACTIONS(1672), 4, + sym_raw_string_begin, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1050), 48, + ACTIONS(1670), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -295521,7 +302152,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -295555,19 +302185,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [91882] = 4, - ACTIONS(247), 1, + [89764] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2720), 1, + STATE(2773), 1, sym_comment, - ACTIONS(5030), 6, + ACTIONS(2059), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(5028), 45, + ACTIONS(2061), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -295605,7 +302236,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, - anon_sym_LBRACE, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -295613,89 +302243,197 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [91944] = 4, - ACTIONS(247), 1, + [89826] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2721), 1, + STATE(2774), 1, sym_comment, - ACTIONS(1038), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1040), 33, + ACTIONS(1078), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1080), 45, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [89888] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2775), 1, + sym_comment, + ACTIONS(2442), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, + ACTIONS(2444), 45, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [92006] = 4, - ACTIONS(247), 1, + [89950] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2722), 1, + STATE(2776), 1, sym_comment, - ACTIONS(1034), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + ACTIONS(2450), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(2452), 45, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1036), 33, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [90012] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5885), 1, + anon_sym_RBRACK, + ACTIONS(5887), 1, + anon_sym_DOT_DOT2, + ACTIONS(5891), 1, + sym__entry_separator, + ACTIONS(5893), 1, + sym_raw_string_begin, + STATE(2777), 1, + sym_comment, + ACTIONS(5889), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5883), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -295703,24 +302441,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -295729,16 +302478,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [92068] = 4, + aux_sym__unquoted_in_list_token1, + [90082] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2723), 1, + STATE(2778), 1, sym_comment, - ACTIONS(1056), 3, + ACTIONS(2107), 4, + sym_raw_string_begin, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1054), 48, + ACTIONS(2105), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -295753,7 +302504,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -295787,73 +302537,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [92130] = 4, - ACTIONS(247), 1, + [90144] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2724), 1, + ACTIONS(1092), 1, + sym__entry_separator, + ACTIONS(5887), 1, + anon_sym_DOT_DOT2, + ACTIONS(5897), 1, + anon_sym_RBRACK, + ACTIONS(5900), 1, + sym_raw_string_begin, + STATE(2779), 1, sym_comment, - ACTIONS(5034), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(5032), 45, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, + ACTIONS(5889), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5895), 45, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [92192] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2725), 1, - sym_comment, - ACTIONS(1042), 11, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -295862,39 +302590,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1044), 40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_QMARK2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -295903,22 +302598,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [92254] = 8, + aux_sym__unquoted_in_list_token1, + [90214] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1862), 1, - sym__entry_separator, - ACTIONS(5660), 1, - anon_sym_DOT, - STATE(2726), 1, + STATE(2780), 1, sym_comment, - STATE(2761), 1, - aux_sym_cell_path_repeat1, - STATE(2890), 1, - sym_path, - STATE(2903), 1, - sym_cell_path, - ACTIONS(1860), 46, + ACTIONS(1717), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1715), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -295932,6 +302623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -295965,35 +302657,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [92324] = 8, - ACTIONS(247), 1, + [90276] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5722), 1, - anon_sym_DOT, - STATE(2727), 1, + ACTIONS(5902), 1, + anon_sym_DOT_DOT2, + STATE(2781), 1, sym_comment, - STATE(2861), 1, - aux_sym_cell_path_repeat1, - STATE(3000), 1, - sym_path, - STATE(3029), 1, - sym_cell_path, - ACTIONS(1844), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1846), 32, + ACTIONS(2228), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5904), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2222), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -296006,18 +302683,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -296026,21 +302716,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [92393] = 7, + aux_sym__unquoted_in_list_token1, + [90342] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5726), 1, - anon_sym_RBRACK, - ACTIONS(5728), 1, - anon_sym_DOT_DOT2, - ACTIONS(5732), 1, - sym__entry_separator, - STATE(2728), 1, + ACTIONS(5813), 1, + aux_sym__immediate_decimal_token2, + STATE(2782), 1, sym_comment, - ACTIONS(5730), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5724), 45, + ACTIONS(1717), 3, + sym_raw_string_begin, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1715), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -296048,6 +302736,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, @@ -296086,19 +302775,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [92460] = 4, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token2, + [90406] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2729), 1, + STATE(2783), 1, sym_comment, - ACTIONS(2466), 6, + ACTIONS(2430), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2468), 44, + ACTIONS(2432), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -296143,80 +302834,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [92521] = 8, - ACTIONS(247), 1, + [90468] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5722), 1, - anon_sym_DOT, - STATE(2730), 1, + STATE(2784), 1, sym_comment, - STATE(2861), 1, - aux_sym_cell_path_repeat1, - STATE(3000), 1, - sym_path, - STATE(3049), 1, - sym_cell_path, - ACTIONS(1888), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1890), 32, + ACTIONS(2067), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(2069), 45, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [90530] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2785), 1, + sym_comment, + ACTIONS(2478), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, + ACTIONS(2480), 45, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [92590] = 4, - ACTIONS(247), 1, + [90592] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2731), 1, + STATE(2786), 1, sym_comment, - ACTIONS(1042), 6, + ACTIONS(2087), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1044), 44, + ACTIONS(2089), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -296261,21 +303008,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [92651] = 8, - ACTIONS(247), 1, + [90654] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5722), 1, - anon_sym_DOT, - STATE(2732), 1, + STATE(2787), 1, sym_comment, - STATE(2861), 1, - aux_sym_cell_path_repeat1, - STATE(3000), 1, - sym_path, - STATE(3050), 1, - sym_cell_path, - ACTIONS(1892), 14, + ACTIONS(1074), 18, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -296289,7 +303032,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1894), 32, + ACTIONS(1076), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -296302,8 +303046,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -296322,46 +303066,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [92720] = 4, - ACTIONS(3), 1, + [90716] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2733), 1, + ACTIONS(5881), 1, + anon_sym_DOT, + STATE(2788), 1, sym_comment, - ACTIONS(2143), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(2141), 47, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, + STATE(2884), 1, + aux_sym_cell_path_repeat1, + STATE(3021), 1, + sym_path, + STATE(3069), 1, + sym_cell_path, + ACTIONS(5908), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -296370,106 +303093,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [92781] = 28, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3279), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3281), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3283), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3285), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5486), 1, - anon_sym_DQUOTE, - ACTIONS(5666), 1, - sym_val_date, - ACTIONS(5736), 1, - anon_sym_LPAREN, - ACTIONS(5738), 1, - anon_sym_DOLLAR, - ACTIONS(5740), 1, - anon_sym_DOT_DOT, - ACTIONS(5744), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5746), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5748), 1, - aux_sym_unquoted_token1, - STATE(2520), 1, - sym__inter_single_quotes, - STATE(2521), 1, - sym__inter_double_quotes, - STATE(2550), 1, - sym__str_double_quotes, - STATE(2734), 1, - sym_comment, - STATE(5656), 1, - sym__val_number_decimal, - STATE(7497), 1, - sym__val_range, - STATE(7538), 1, - sym_val_bool, - STATE(7605), 1, - sym__unquoted_anonymous_prefix, - ACTIONS(3259), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5488), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5742), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5734), 3, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - STATE(1606), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2643), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2645), 9, - anon_sym_null, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [92890] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2735), 1, - sym_comment, - ACTIONS(1661), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1659), 47, + ACTIONS(5906), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -296482,32 +303108,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -296516,140 +303128,194 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [92951] = 6, - ACTIONS(3), 1, + [90786] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2025), 1, - sym__entry_separator, - ACTIONS(5750), 1, - anon_sym_DOT_DOT2, - STATE(2736), 1, + STATE(2789), 1, sym_comment, - ACTIONS(5752), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2019), 46, + ACTIONS(2470), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(2472), 45, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [93016] = 8, - ACTIONS(247), 1, + [90848] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5722), 1, - anon_sym_DOT, - STATE(2737), 1, + STATE(2790), 1, sym_comment, - STATE(2861), 1, - aux_sym_cell_path_repeat1, - STATE(3000), 1, - sym_path, - STATE(3047), 1, - sym_cell_path, - ACTIONS(1880), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1882), 32, + ACTIONS(2474), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(2476), 45, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [90910] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2791), 1, + sym_comment, + ACTIONS(1054), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(1056), 45, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [93085] = 4, - ACTIONS(247), 1, + [90972] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2738), 1, + STATE(2792), 1, sym_comment, - ACTIONS(1311), 6, + ACTIONS(1364), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1307), 44, + ACTIONS(1362), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -296694,21 +303360,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [93146] = 8, - ACTIONS(247), 1, + [91034] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5722), 1, - anon_sym_DOT, - STATE(2739), 1, + STATE(2793), 1, sym_comment, - STATE(2861), 1, - aux_sym_cell_path_repeat1, - STATE(3000), 1, - sym_path, - STATE(3051), 1, - sym_cell_path, - ACTIONS(1896), 14, + ACTIONS(1703), 18, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -296722,7 +303383,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1898), 32, + aux_sym__unquoted_in_list_token2, + ACTIONS(1705), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -296735,8 +303398,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -296755,21 +303418,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [93215] = 7, + [91096] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1072), 1, - sym__entry_separator, - ACTIONS(5728), 1, - anon_sym_DOT_DOT2, - ACTIONS(5756), 1, - anon_sym_RBRACK, - STATE(2740), 1, + STATE(2794), 1, sym_comment, - ACTIONS(5730), 2, + ACTIONS(1705), 4, + sym_raw_string_begin, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5754), 45, + sym__entry_separator, + ACTIONS(1703), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -296777,11 +303436,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -296815,19 +303476,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [93282] = 4, - ACTIONS(247), 1, + [91158] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2741), 1, + STATE(2795), 1, sym_comment, - ACTIONS(1038), 6, + ACTIONS(2454), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1040), 44, + ACTIONS(2456), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -296872,19 +303534,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [93343] = 4, - ACTIONS(247), 1, + [91220] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2742), 1, + STATE(2796), 1, sym_comment, - ACTIONS(1058), 6, + ACTIONS(2410), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1060), 44, + ACTIONS(2412), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -296929,19 +303592,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [93404] = 4, - ACTIONS(247), 1, + [91282] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2743), 1, + STATE(2797), 1, sym_comment, - ACTIONS(2328), 6, + ACTIONS(2095), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2330), 44, + ACTIONS(2097), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -296986,19 +303650,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [93465] = 4, - ACTIONS(247), 1, + [91344] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2744), 1, + STATE(2798), 1, sym_comment, - ACTIONS(1034), 6, + ACTIONS(2502), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1036), 44, + ACTIONS(2504), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -297043,135 +303708,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [93526] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2745), 1, - sym_comment, - ACTIONS(1723), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1721), 47, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [93587] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5759), 1, - anon_sym_DOT, - ACTIONS(5761), 1, - aux_sym__immediate_decimal_token2, - STATE(2746), 1, - sym_comment, - ACTIONS(1518), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1520), 46, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LPAREN2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [93652] = 4, - ACTIONS(247), 1, + [91406] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2747), 1, + STATE(2799), 1, sym_comment, - ACTIONS(2348), 6, + ACTIONS(2438), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2350), 44, + ACTIONS(2440), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -297216,19 +303766,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [93713] = 4, - ACTIONS(247), 1, + [91468] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2748), 1, + STATE(2800), 1, sym_comment, - ACTIONS(2342), 6, + ACTIONS(2531), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2344), 44, + ACTIONS(2533), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -297273,82 +303824,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [93774] = 4, - ACTIONS(247), 1, + [91530] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2749), 1, + STATE(2801), 1, sym_comment, - ACTIONS(1848), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1850), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, + ACTIONS(2220), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(2218), 47, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [93835] = 8, - ACTIONS(247), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [91592] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5722), 1, - anon_sym_DOT, - STATE(2750), 1, + ACTIONS(5910), 1, + anon_sym_DOT_DOT2, + STATE(2802), 1, sym_comment, - STATE(2861), 1, - aux_sym_cell_path_repeat1, - STATE(3000), 1, - sym_path, - STATE(3090), 1, - sym_cell_path, - ACTIONS(5655), 14, + ACTIONS(2240), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5912), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2234), 46, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -297357,8 +303933,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(5763), 32, + [91658] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5914), 1, + aux_sym__immediate_decimal_token2, + STATE(2803), 1, + sym_comment, + ACTIONS(1771), 3, + sym_raw_string_begin, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1769), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -297371,18 +303966,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -297391,78 +303999,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [93904] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5765), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5767), 1, - aux_sym__immediate_decimal_token2, - STATE(2751), 1, - sym_comment, - ACTIONS(1540), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1542), 46, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LPAREN2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [93969] = 4, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [91722] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2752), 1, + STATE(2804), 1, sym_comment, - ACTIONS(1560), 6, + ACTIONS(1909), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1572), 44, + ACTIONS(1911), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -297507,16 +304059,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94030] = 4, + [91784] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2805), 1, + sym_comment, + ACTIONS(1364), 15, + anon_sym_DOLLAR, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1362), 36, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [91846] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2753), 1, + ACTIONS(5916), 1, + anon_sym_DOT_DOT2, + STATE(2806), 1, sym_comment, - ACTIONS(1060), 3, + ACTIONS(2119), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5918), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1058), 47, + ACTIONS(2113), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -297530,7 +304144,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -297564,21 +304177,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [94091] = 4, - ACTIONS(247), 1, + [91912] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2754), 1, + STATE(2807), 1, sym_comment, - ACTIONS(1046), 18, + ACTIONS(2232), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(2230), 47, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -297587,8 +304226,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1048), 32, + [91974] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5920), 1, + anon_sym_DOT_DOT2, + STATE(2808), 1, + sym_comment, + ACTIONS(2212), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5922), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2206), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -297601,18 +304261,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -297621,76 +304294,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [94152] = 4, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + [92040] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2755), 1, + ACTIONS(5825), 1, + aux_sym__immediate_decimal_token2, + STATE(2809), 1, sym_comment, - ACTIONS(4884), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(4882), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, + ACTIONS(1715), 17, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1717), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94213] = 4, - ACTIONS(247), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [92104] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2756), 1, + STATE(2810), 1, sym_comment, - ACTIONS(2412), 6, + ACTIONS(1038), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2414), 44, + ACTIONS(1040), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -297735,31 +304412,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94274] = 4, - ACTIONS(247), 1, + [92166] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2757), 1, + STATE(2811), 1, sym_comment, - ACTIONS(1659), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1661), 32, + ACTIONS(1828), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1826), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -297772,18 +304435,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -297792,19 +304469,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [94335] = 4, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + [92228] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2758), 1, + STATE(2812), 1, sym_comment, - ACTIONS(2458), 6, + ACTIONS(2543), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2460), 44, + ACTIONS(2545), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -297849,19 +304528,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94396] = 4, - ACTIONS(247), 1, + [92290] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2759), 1, + STATE(2813), 1, sym_comment, - ACTIONS(2416), 6, + ACTIONS(5924), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2418), 44, + ACTIONS(5926), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -297906,19 +304586,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94457] = 4, - ACTIONS(247), 1, + [92352] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2760), 1, + STATE(2814), 1, sym_comment, - ACTIONS(1864), 6, + ACTIONS(2561), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1866), 44, + ACTIONS(2563), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -297963,77 +304644,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94518] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1013), 1, - sym__entry_separator, - ACTIONS(5660), 1, - anon_sym_DOT, - STATE(2761), 1, - sym_comment, - STATE(2823), 1, - aux_sym_cell_path_repeat1, - STATE(2890), 1, - sym_path, - ACTIONS(1011), 46, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [94585] = 5, + [92414] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5684), 1, - aux_sym__immediate_decimal_token2, - STATE(2762), 1, + STATE(2815), 1, sym_comment, - ACTIONS(1669), 2, - anon_sym_LPAREN2, + ACTIONS(1771), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1667), 47, + ACTIONS(1769), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -298047,6 +304668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -298080,135 +304702,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [94648] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5769), 1, - sym__newline, - STATE(2763), 2, - sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1313), 16, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1315), 32, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [94711] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2764), 1, - sym_comment, - ACTIONS(2338), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2340), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [94772] = 4, - ACTIONS(247), 1, + [92476] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2765), 1, + STATE(2816), 1, sym_comment, - ACTIONS(1872), 6, + ACTIONS(1628), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1874), 44, + ACTIONS(1640), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -298253,20 +304760,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94833] = 8, - ACTIONS(247), 1, + [92538] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5722), 1, + ACTIONS(5881), 1, anon_sym_DOT, - STATE(2766), 1, + STATE(2817), 1, sym_comment, - STATE(2861), 1, + STATE(2884), 1, aux_sym_cell_path_repeat1, - STATE(3000), 1, + STATE(3021), 1, sym_path, - STATE(3072), 1, + STATE(3082), 1, sym_cell_path, - ACTIONS(1005), 14, + ACTIONS(1021), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -298281,7 +304788,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1007), 32, + ACTIONS(1023), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -298314,19 +304822,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [94902] = 4, - ACTIONS(247), 1, + [92608] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2767), 1, + STATE(2818), 1, sym_comment, - ACTIONS(1876), 6, + ACTIONS(2418), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1878), 44, + ACTIONS(2420), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -298371,17 +304880,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94963] = 5, - ACTIONS(3), 1, + [92670] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5772), 1, - aux_sym__immediate_decimal_token2, - STATE(2768), 1, + ACTIONS(1526), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5928), 1, + anon_sym_DOT_DOT2, + STATE(2819), 1, sym_comment, - ACTIONS(1723), 2, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1721), 47, + ACTIONS(5930), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1788), 16, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1796), 31, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -298394,31 +304923,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -298427,19 +304941,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [95026] = 4, - ACTIONS(247), 1, + [92738] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2769), 1, + ACTIONS(5881), 1, + anon_sym_DOT, + STATE(2820), 1, sym_comment, - ACTIONS(1050), 18, + STATE(2884), 1, + aux_sym_cell_path_repeat1, + STATE(3021), 1, + sym_path, + STATE(3095), 1, + sym_cell_path, + ACTIONS(1993), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -298453,7 +304969,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1052), 32, + ACTIONS(1995), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -298466,8 +304983,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -298486,126 +305003,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [95087] = 4, - ACTIONS(247), 1, + [92808] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2770), 1, + ACTIONS(5881), 1, + anon_sym_DOT, + STATE(2821), 1, sym_comment, - ACTIONS(4894), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(4892), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, + STATE(2884), 1, + aux_sym_cell_path_repeat1, + STATE(3021), 1, + sym_path, + STATE(3098), 1, + sym_cell_path, + ACTIONS(1997), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1999), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [95148] = 28, - ACTIONS(247), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [92878] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3279), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3281), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3283), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3285), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5486), 1, - anon_sym_DQUOTE, - ACTIONS(5666), 1, - sym_val_date, - ACTIONS(5736), 1, - anon_sym_LPAREN, - ACTIONS(5738), 1, - anon_sym_DOLLAR, - ACTIONS(5740), 1, - anon_sym_DOT_DOT, - ACTIONS(5744), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5746), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5748), 1, - aux_sym_unquoted_token1, - STATE(2520), 1, - sym__inter_single_quotes, - STATE(2521), 1, - sym__inter_double_quotes, - STATE(2550), 1, - sym__str_double_quotes, - STATE(2771), 1, + ACTIONS(5881), 1, + anon_sym_DOT, + STATE(2822), 1, sym_comment, - STATE(5656), 1, - sym__val_number_decimal, - STATE(7497), 1, - sym__val_range, - STATE(7538), 1, - sym_val_bool, - STATE(7605), 1, - sym__unquoted_anonymous_prefix, - ACTIONS(3259), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5488), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5742), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5734), 3, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - STATE(1593), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2643), 8, + STATE(2884), 1, + aux_sym_cell_path_repeat1, + STATE(3021), 1, + sym_path, + STATE(3100), 1, + sym_cell_path, + ACTIONS(2001), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -298614,8 +305092,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2645), 9, + aux_sym__unquoted_in_list_token1, + ACTIONS(2003), 33, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -298624,18 +305127,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [95257] = 5, - ACTIONS(247), 1, + [92948] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5688), 1, - aux_sym__immediate_decimal_token2, - STATE(2772), 1, + ACTIONS(5932), 1, + sym__newline, + STATE(2823), 2, sym_comment, - ACTIONS(1667), 17, + aux_sym_shebang_repeat1, + ACTIONS(1349), 16, + anon_sym_DOLLAR, + anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -298648,8 +305151,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1669), 32, + aux_sym_unquoted_token1, + ACTIONS(1351), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -298657,13 +305161,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -298674,6 +305176,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -298682,20 +305186,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [95320] = 8, - ACTIONS(247), 1, + [93012] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5722), 1, + ACTIONS(5881), 1, anon_sym_DOT, - STATE(2773), 1, + STATE(2824), 1, sym_comment, - STATE(2861), 1, + STATE(2884), 1, aux_sym_cell_path_repeat1, - STATE(3000), 1, + STATE(3021), 1, sym_path, - STATE(3054), 1, + STATE(3101), 1, sym_cell_path, - ACTIONS(1904), 14, + ACTIONS(2005), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -298710,7 +305214,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1906), 32, + ACTIONS(2007), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -298743,20 +305248,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [95389] = 8, - ACTIONS(247), 1, + [93082] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5722), 1, + ACTIONS(5881), 1, anon_sym_DOT, - STATE(2774), 1, + STATE(2825), 1, sym_comment, - STATE(2861), 1, + STATE(2884), 1, aux_sym_cell_path_repeat1, - STATE(3000), 1, + STATE(3021), 1, sym_path, - STATE(3053), 1, + STATE(3104), 1, sym_cell_path, - ACTIONS(1900), 14, + ACTIONS(2009), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -298771,7 +305276,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1902), 32, + ACTIONS(2011), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -298804,187 +305310,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [95458] = 4, - ACTIONS(247), 1, + [93152] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2775), 1, + ACTIONS(5881), 1, + anon_sym_DOT, + STATE(2826), 1, sym_comment, - ACTIONS(2420), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2422), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + STATE(2884), 1, + aux_sym_cell_path_repeat1, + STATE(3021), 1, + sym_path, + STATE(3106), 1, + sym_cell_path, + ACTIONS(2013), 14, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [95519] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2776), 1, - sym_comment, - ACTIONS(1888), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(1890), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(2015), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [95580] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2777), 1, - sym_comment, - ACTIONS(1070), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1072), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [95641] = 4, - ACTIONS(247), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [93222] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2778), 1, + ACTIONS(5881), 1, + anon_sym_DOT, + STATE(2827), 1, sym_comment, - ACTIONS(1721), 18, + STATE(2884), 1, + aux_sym_cell_path_repeat1, + STATE(3021), 1, + sym_path, + STATE(3110), 1, + sym_cell_path, + ACTIONS(2017), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -298998,8 +305400,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1723), 32, + ACTIONS(2019), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -299012,8 +305414,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -299032,16 +305434,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [95702] = 4, - ACTIONS(3), 1, + [93292] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2779), 1, + ACTIONS(5881), 1, + anon_sym_DOT, + STATE(2828), 1, sym_comment, - ACTIONS(2031), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(2029), 47, + STATE(2884), 1, + aux_sym_cell_path_repeat1, + STATE(3021), 1, + sym_path, + STATE(3111), 1, + sym_cell_path, + ACTIONS(2021), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(2023), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -299054,32 +305476,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -299088,192 +305496,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [95763] = 4, - ACTIONS(247), 1, + [93362] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2780), 1, + ACTIONS(5935), 1, + aux_sym__immediate_decimal_token2, + STATE(2829), 1, sym_comment, - ACTIONS(2434), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2436), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + ACTIONS(1769), 17, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [95824] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2781), 1, - sym_comment, - ACTIONS(2438), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2440), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1771), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [95885] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2782), 1, - sym_comment, - ACTIONS(1892), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1894), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [95946] = 7, - ACTIONS(247), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [93426] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1798), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5774), 1, - anon_sym_DOT_DOT2, - STATE(2783), 1, + STATE(2830), 1, sym_comment, - ACTIONS(5776), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1788), 16, + ACTIONS(1769), 18, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -299289,7 +305578,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1796), 30, + aux_sym__unquoted_in_list_token2, + ACTIONS(1771), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -299302,6 +305593,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -299320,297 +305613,198 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [96013] = 4, - ACTIONS(247), 1, + [93488] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2784), 1, + ACTIONS(5881), 1, + anon_sym_DOT, + STATE(2831), 1, sym_comment, - ACTIONS(2517), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2519), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + STATE(2884), 1, + aux_sym_cell_path_repeat1, + STATE(3021), 1, + sym_path, + STATE(3114), 1, + sym_cell_path, + ACTIONS(2043), 14, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [96074] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2785), 1, - sym_comment, - ACTIONS(2462), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2464), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(2045), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [96135] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2786), 1, - sym_comment, - ACTIONS(1900), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1902), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [96196] = 4, - ACTIONS(247), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [93558] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2787), 1, + ACTIONS(5881), 1, + anon_sym_DOT, + STATE(2832), 1, sym_comment, - ACTIONS(2305), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2307), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, + STATE(2884), 1, + aux_sym_cell_path_repeat1, + STATE(3021), 1, + sym_path, + STATE(3115), 1, + sym_cell_path, + ACTIONS(2047), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(2049), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [96257] = 4, - ACTIONS(247), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [93628] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2788), 1, + ACTIONS(5881), 1, + anon_sym_DOT, + STATE(2833), 1, sym_comment, - ACTIONS(2305), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2307), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, + STATE(2884), 1, + aux_sym_cell_path_repeat1, + STATE(3021), 1, + sym_path, + STATE(3116), 1, + sym_cell_path, + ACTIONS(2051), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(2053), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [96318] = 4, - ACTIONS(247), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [93698] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2789), 1, + STATE(2834), 1, sym_comment, - ACTIONS(1738), 18, + ACTIONS(1826), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -299629,7 +305823,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, aux_sym__unquoted_in_list_token2, - ACTIONS(1740), 32, + ACTIONS(1828), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -299662,19 +305857,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [96379] = 4, - ACTIONS(247), 1, + [93760] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2790), 1, + STATE(2835), 1, sym_comment, - ACTIONS(2442), 6, + ACTIONS(4997), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2444), 44, + ACTIONS(4995), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -299719,16 +305915,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [96440] = 4, + [93822] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2791), 1, + ACTIONS(5827), 1, + anon_sym_DOT, + STATE(2836), 1, sym_comment, - ACTIONS(1740), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + STATE(2854), 1, + aux_sym_cell_path_repeat1, + STATE(2946), 1, + sym_path, + ACTIONS(1029), 2, + sym_raw_string_begin, sym__entry_separator, - ACTIONS(1738), 47, + ACTIONS(1027), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -299742,7 +305943,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -299771,189 +305971,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_GT_GT, anon_sym_e_GT_GT, anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [96501] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2792), 1, - sym_comment, - ACTIONS(2362), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2364), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [96562] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2793), 1, - sym_comment, - ACTIONS(2366), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2368), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [96623] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2794), 1, - sym_comment, - ACTIONS(2521), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2523), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [96684] = 4, - ACTIONS(247), 1, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [93890] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2795), 1, + ACTIONS(5881), 1, + anon_sym_DOT, + STATE(2837), 1, sym_comment, - ACTIONS(1311), 15, - anon_sym_DOLLAR, + STATE(2884), 1, + aux_sym_cell_path_repeat1, + STATE(3021), 1, + sym_path, + STATE(3119), 1, + sym_cell_path, + ACTIONS(2055), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -299968,21 +306004,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1307), 35, + ACTIONS(2057), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -299993,9 +306030,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -300004,18 +306038,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [96745] = 5, - ACTIONS(247), 1, + [93960] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5778), 1, - aux_sym__immediate_decimal_token2, - STATE(2796), 1, + ACTIONS(5881), 1, + anon_sym_DOT, + STATE(2838), 1, sym_comment, - ACTIONS(1721), 17, + STATE(2884), 1, + aux_sym_cell_path_repeat1, + STATE(3021), 1, + sym_path, + STATE(3124), 1, + sym_cell_path, + ACTIONS(2059), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -300029,7 +306066,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1723), 32, + ACTIONS(2061), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -300042,8 +306080,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -300062,19 +306100,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [96808] = 4, - ACTIONS(247), 1, + [94030] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2797), 1, + STATE(2839), 1, sym_comment, - ACTIONS(5780), 6, + ACTIONS(4987), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(5782), 44, + ACTIONS(4985), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -300119,20 +306158,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [96869] = 8, - ACTIONS(247), 1, + [94092] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5722), 1, + ACTIONS(5881), 1, anon_sym_DOT, - STATE(2798), 1, + STATE(2840), 1, sym_comment, - STATE(2861), 1, + STATE(2884), 1, aux_sym_cell_path_repeat1, - STATE(3000), 1, + STATE(3021), 1, sym_path, - STATE(3048), 1, + STATE(3056), 1, sym_cell_path, - ACTIONS(1884), 14, + ACTIONS(2067), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -300147,7 +306186,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1886), 32, + ACTIONS(2069), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -300180,158 +306220,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [96938] = 29, - ACTIONS(111), 1, - anon_sym_DQUOTE, - ACTIONS(115), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(117), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3241), 1, - anon_sym_DOLLAR, - ACTIONS(3279), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3281), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3283), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3285), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5666), 1, - sym_val_date, - ACTIONS(5740), 1, - anon_sym_DOT_DOT, - ACTIONS(5748), 1, - aux_sym_unquoted_token1, - ACTIONS(5784), 1, - anon_sym_LPAREN, - STATE(1975), 1, - sym__str_double_quotes, - STATE(2384), 1, - sym__inter_single_quotes, - STATE(2390), 1, - sym__inter_double_quotes, - STATE(2799), 1, - sym_comment, - STATE(5656), 1, - sym__val_number_decimal, - STATE(6786), 1, - sym_unquoted, - STATE(7497), 1, - sym__val_range, - STATE(7538), 1, - sym_val_bool, - STATE(7605), 1, - sym__unquoted_anonymous_prefix, - ACTIONS(113), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3259), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5742), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5734), 3, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - STATE(6707), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(2643), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2645), 9, - anon_sym_null, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [97049] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2800), 1, - sym_comment, - ACTIONS(2380), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token38, - ACTIONS(2382), 44, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [97110] = 4, - ACTIONS(247), 1, + [94162] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2801), 1, + STATE(2841), 1, sym_comment, - ACTIONS(2384), 6, + ACTIONS(1897), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2386), 44, + ACTIONS(1899), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -300376,48 +306278,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [97171] = 6, - ACTIONS(3), 1, + [94224] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1997), 1, - sym__entry_separator, - ACTIONS(5786), 1, - anon_sym_DOT_DOT2, - STATE(2802), 1, + ACTIONS(5881), 1, + anon_sym_DOT, + STATE(2842), 1, sym_comment, - ACTIONS(5788), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1991), 46, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, + STATE(2884), 1, + aux_sym_cell_path_repeat1, + STATE(3021), 1, + sym_path, + STATE(3060), 1, + sym_cell_path, + ACTIONS(2083), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -300426,28 +306305,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [97236] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2005), 1, - sym__entry_separator, - ACTIONS(5790), 1, - anon_sym_DOT_DOT2, - STATE(2803), 1, - sym_comment, - ACTIONS(5792), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1999), 46, + ACTIONS(2085), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -300460,31 +306320,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -300493,20 +306340,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [97301] = 4, - ACTIONS(247), 1, + [94294] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2804), 1, + STATE(2843), 1, sym_comment, - ACTIONS(2446), 6, + ACTIONS(2547), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2448), 44, + ACTIONS(2549), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -300551,19 +306398,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [97362] = 6, - ACTIONS(3), 1, + [94356] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2013), 1, - sym__entry_separator, - ACTIONS(5794), 1, - anon_sym_DOT_DOT2, - STATE(2805), 1, + ACTIONS(5881), 1, + anon_sym_DOT, + STATE(2844), 1, sym_comment, - ACTIONS(5796), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2007), 46, + STATE(2884), 1, + aux_sym_cell_path_repeat1, + STATE(3021), 1, + sym_path, + STATE(3066), 1, + sym_cell_path, + ACTIONS(2087), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(2089), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -300576,31 +306440,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -300609,17 +306460,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [97427] = 4, - ACTIONS(247), 1, + [94426] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2806), 1, + ACTIONS(5881), 1, + anon_sym_DOT, + STATE(2845), 1, sym_comment, - ACTIONS(1667), 18, + STATE(2884), 1, + aux_sym_cell_path_repeat1, + STATE(3021), 1, + sym_path, + STATE(3057), 1, + sym_cell_path, + ACTIONS(2095), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -300633,8 +306488,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1669), 32, + ACTIONS(2097), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -300647,8 +306502,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -300667,76 +306522,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [97488] = 4, - ACTIONS(247), 1, + [94496] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2807), 1, + STATE(2846), 1, sym_comment, - ACTIONS(1054), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1056), 32, + ACTIONS(2398), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token38, + ACTIONS(2400), 45, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [97549] = 4, - ACTIONS(247), 1, + [94558] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2808), 1, + STATE(2847), 1, sym_comment, - ACTIONS(1904), 6, + ACTIONS(2506), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1906), 44, + ACTIONS(2508), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -300781,19 +306638,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [97610] = 4, - ACTIONS(247), 1, + [94620] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2809), 1, + STATE(2848), 1, sym_comment, - ACTIONS(1822), 6, + ACTIONS(2539), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(1826), 44, + ACTIONS(2541), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -300838,21 +306696,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [97671] = 8, - ACTIONS(247), 1, + [94682] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5722), 1, - anon_sym_DOT, - STATE(2810), 1, + ACTIONS(1852), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5937), 1, + anon_sym_DOT_DOT2, + STATE(2849), 1, sym_comment, - STATE(2861), 1, - aux_sym_cell_path_repeat1, - STATE(3000), 1, - sym_path, - STATE(3092), 1, - sym_cell_path, - ACTIONS(1840), 14, + ACTIONS(5939), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1842), 16, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -300866,7 +306725,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1842), 32, + ACTIONS(1850), 31, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -300879,8 +306739,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -300899,19 +306757,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [97740] = 4, - ACTIONS(247), 1, + [94750] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2811), 1, + STATE(2850), 1, sym_comment, - ACTIONS(2309), 6, + ACTIONS(1058), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2311), 44, + ACTIONS(1060), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -300956,137 +306815,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [97801] = 4, - ACTIONS(3), 1, + [94812] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2812), 1, + STATE(2851), 1, sym_comment, - ACTIONS(2035), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(2033), 47, - anon_sym_true, - anon_sym_false, - anon_sym_null, + ACTIONS(5085), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [97862] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5722), 1, - anon_sym_DOT, - STATE(2813), 1, - sym_comment, - STATE(2861), 1, - aux_sym_cell_path_repeat1, - STATE(3000), 1, - sym_path, - STATE(3046), 1, - sym_cell_path, - ACTIONS(1876), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1878), 32, + ACTIONS(5083), 45, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, anon_sym_true, anon_sym_false, anon_sym_null, - aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [97931] = 4, - ACTIONS(247), 1, + [94874] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2814), 1, + STATE(2852), 1, sym_comment, - ACTIONS(2450), 6, + ACTIONS(2406), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2452), 44, + ACTIONS(2408), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -301131,19 +306931,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [97992] = 4, - ACTIONS(247), 1, + [94936] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2815), 1, + STATE(2853), 1, sym_comment, - ACTIONS(2454), 6, + ACTIONS(5053), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token38, - ACTIONS(2456), 44, + ACTIONS(5051), 45, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -301188,25 +306989,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [98053] = 8, - ACTIONS(247), 1, + [94998] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5722), 1, + ACTIONS(5941), 1, anon_sym_DOT, - STATE(2816), 1, + STATE(2946), 1, + sym_path, + ACTIONS(1033), 2, + sym_raw_string_begin, + sym__entry_separator, + STATE(2854), 2, sym_comment, - STATE(2861), 1, aux_sym_cell_path_repeat1, - STATE(3000), 1, - sym_path, - STATE(3033), 1, - sym_cell_path, - ACTIONS(1848), 14, + ACTIONS(1031), 46, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -301215,8 +307040,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1850), 32, + [95064] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2855), 1, + sym_comment, + ACTIONS(1080), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1078), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -301229,18 +307072,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -301249,21 +307106,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [98122] = 8, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + [95126] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5722), 1, - anon_sym_DOT, - STATE(2817), 1, + STATE(2856), 1, sym_comment, - STATE(2861), 1, - aux_sym_cell_path_repeat1, - STATE(3000), 1, - sym_path, - STATE(3034), 1, - sym_cell_path, - ACTIONS(1852), 14, + ACTIONS(1715), 18, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -301277,7 +307130,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1854), 32, + aux_sym__unquoted_in_list_token2, + ACTIONS(1717), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -301290,8 +307145,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -301310,20 +307165,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [98191] = 8, - ACTIONS(247), 1, + [95188] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5722), 1, + ACTIONS(5881), 1, anon_sym_DOT, - STATE(2818), 1, + STATE(2857), 1, sym_comment, - STATE(2861), 1, + STATE(2884), 1, aux_sym_cell_path_repeat1, - STATE(3000), 1, + STATE(3021), 1, sym_path, - STATE(3039), 1, + STATE(3088), 1, sym_cell_path, - ACTIONS(1856), 14, + ACTIONS(1929), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -301338,7 +307193,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1858), 32, + ACTIONS(1931), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -301371,26 +307227,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [98260] = 7, - ACTIONS(247), 1, + [95258] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1494), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5798), 1, - anon_sym_DOT_DOT2, - STATE(2819), 1, + STATE(2858), 1, sym_comment, - ACTIONS(5800), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1778), 16, + ACTIONS(1705), 3, + sym_raw_string_begin, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1703), 47, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -301399,8 +307274,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1786), 30, + aux_sym__unquoted_in_list_token2, + [95319] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2859), 1, + sym_comment, + ACTIONS(2291), 3, + sym_raw_string_begin, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(2289), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -301413,16 +307306,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -301431,25 +307339,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [98327] = 8, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token4, + [95380] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5722), 1, - anon_sym_DOT, - STATE(2820), 1, + ACTIONS(1092), 1, + sym__entry_separator, + ACTIONS(2273), 1, + anon_sym_LPAREN2, + ACTIONS(2275), 1, + aux_sym__unquoted_in_list_token4, + ACTIONS(5897), 1, + anon_sym_RBRACK, + ACTIONS(5900), 1, + sym_raw_string_begin, + STATE(2860), 1, sym_comment, - STATE(2861), 1, - aux_sym_cell_path_repeat1, - STATE(3000), 1, - sym_path, - STATE(3041), 1, - sym_cell_path, - ACTIONS(1860), 14, + ACTIONS(5895), 45, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -301458,20 +307393,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1862), 32, + [95449] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2861), 1, + sym_comment, + ACTIONS(1364), 16, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1362), 34, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_LBRACE, + aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -301484,6 +307449,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -301492,16 +307459,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [98396] = 4, - ACTIONS(3), 1, + [95510] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2821), 1, + STATE(2862), 1, sym_comment, - ACTIONS(1669), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1667), 47, + ACTIONS(1769), 17, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1771), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -301514,24 +307496,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [95571] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2863), 1, + sym_comment, + ACTIONS(2218), 17, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -301540,6 +307538,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(2220), 33, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -301548,70 +307573,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [98457] = 28, - ACTIONS(247), 1, + [95632] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3279), 1, + ACTIONS(2295), 1, + anon_sym_LPAREN2, + ACTIONS(2299), 1, + aux_sym__unquoted_in_list_token4, + STATE(2864), 1, + sym_comment, + ACTIONS(2297), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2293), 46, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - ACTIONS(3281), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3283), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3285), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3860), 1, - anon_sym_DQUOTE, - ACTIONS(3864), 1, - aux_sym_unquoted_token1, - ACTIONS(4397), 1, - anon_sym_DOT_DOT, - ACTIONS(5666), 1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, - ACTIONS(5701), 1, - anon_sym_LPAREN, - ACTIONS(5703), 1, - anon_sym_DOLLAR, - ACTIONS(5705), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5707), 1, - anon_sym_DOLLAR_DQUOTE, - STATE(2002), 1, - sym__str_double_quotes, - STATE(2498), 1, - sym__inter_single_quotes, - STATE(2502), 1, - sym__inter_double_quotes, - STATE(2822), 1, - sym_comment, - STATE(5858), 1, - sym__val_number_decimal, - STATE(7538), 1, - sym_val_bool, - STATE(7681), 1, - sym__val_range, - STATE(7695), 1, - sym__unquoted_anonymous_prefix, - ACTIONS(3259), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3862), 2, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4399), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5662), 3, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - STATE(1544), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2643), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -301620,8 +307623,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2645), 9, - anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -301630,19 +307631,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [98566] = 6, + aux_sym__unquoted_in_list_token1, + [95697] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1017), 1, - sym__entry_separator, - ACTIONS(5802), 1, - anon_sym_DOT, - STATE(2890), 1, - sym_path, - STATE(2823), 2, + ACTIONS(2295), 1, + anon_sym_LPAREN2, + ACTIONS(2299), 1, + aux_sym__unquoted_in_list_token4, + STATE(2865), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1015), 46, + ACTIONS(2305), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2303), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -301689,21 +307691,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [98631] = 8, - ACTIONS(247), 1, + [95762] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5722), 1, - anon_sym_DOT, - STATE(2824), 1, + STATE(2866), 1, sym_comment, - STATE(2861), 1, - aux_sym_cell_path_repeat1, - STATE(3000), 1, - sym_path, - STATE(3043), 1, - sym_cell_path, - ACTIONS(1864), 14, + ACTIONS(1826), 17, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -301717,7 +307714,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1866), 32, + ACTIONS(1828), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -301730,8 +307728,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -301750,70 +307748,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [98700] = 29, - ACTIONS(237), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(239), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(247), 1, + [95823] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3279), 1, + STATE(2867), 1, + sym_comment, + ACTIONS(1060), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1058), 48, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_QMARK2, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - ACTIONS(3281), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3283), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3285), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3860), 1, - anon_sym_DQUOTE, - ACTIONS(3864), 1, - aux_sym_unquoted_token1, - ACTIONS(4003), 1, - anon_sym_DOLLAR, - ACTIONS(4397), 1, - anon_sym_DOT_DOT, - ACTIONS(5664), 1, - anon_sym_LPAREN, - ACTIONS(5666), 1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, - STATE(1729), 1, - sym__inter_single_quotes, - STATE(1732), 1, - sym__inter_double_quotes, - STATE(2002), 1, - sym__str_double_quotes, - STATE(2825), 1, - sym_comment, - STATE(5858), 1, - sym__val_number_decimal, - STATE(6124), 1, - sym_unquoted, - STATE(7538), 1, - sym_val_bool, - STATE(7681), 1, - sym__val_range, - STATE(7695), 1, - sym__unquoted_anonymous_prefix, - ACTIONS(3259), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3862), 2, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4399), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5662), 3, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - STATE(6112), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(2643), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -301822,8 +307796,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2645), 9, - anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -301832,17 +307804,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [98811] = 5, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + [95884] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5805), 1, - sym__newline, - STATE(2826), 2, + ACTIONS(5944), 1, + anon_sym_DOT, + ACTIONS(5946), 1, + aux_sym__immediate_decimal_token2, + STATE(2868), 1, sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1313), 16, - anon_sym_DOLLAR, - anon_sym_DASH, + ACTIONS(1715), 15, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -301856,8 +307828,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1315), 32, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1717), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -301865,9 +307839,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_LBRACE, - aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -301880,8 +307856,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -301890,69 +307864,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [98874] = 28, - ACTIONS(247), 1, + [95949] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5948), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5950), 1, + aux_sym__immediate_decimal_token2, + STATE(2869), 1, + sym_comment, + ACTIONS(1528), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1530), 46, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [96014] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3279), 1, + STATE(2870), 1, + sym_comment, + ACTIONS(1064), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1062), 48, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_QMARK2, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - ACTIONS(3281), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3283), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3285), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3860), 1, - anon_sym_DQUOTE, - ACTIONS(3864), 1, - aux_sym_unquoted_token1, - ACTIONS(4397), 1, - anon_sym_DOT_DOT, - ACTIONS(5666), 1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, - ACTIONS(5701), 1, - anon_sym_LPAREN, - ACTIONS(5703), 1, - anon_sym_DOLLAR, - ACTIONS(5705), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5707), 1, - anon_sym_DOLLAR_DQUOTE, - STATE(2002), 1, - sym__str_double_quotes, - STATE(2498), 1, - sym__inter_single_quotes, - STATE(2502), 1, - sym__inter_double_quotes, - STATE(2827), 1, - sym_comment, - STATE(5858), 1, - sym__val_number_decimal, - STATE(7538), 1, - sym_val_bool, - STATE(7681), 1, - sym__val_range, - STATE(7695), 1, - sym__unquoted_anonymous_prefix, - ACTIONS(3259), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3862), 2, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4399), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5662), 3, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - STATE(1516), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2643), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -301961,8 +307971,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2645), 9, - anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -301971,16 +307979,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [98983] = 4, + aux_sym__unquoted_in_list_token1, + [96075] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2828), 1, + STATE(2871), 1, sym_comment, - ACTIONS(1677), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(1040), 2, + sym_raw_string_begin, sym__entry_separator, - ACTIONS(1675), 47, + ACTIONS(1038), 48, anon_sym_true, anon_sym_false, anon_sym_null, @@ -301994,7 +308002,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, + anon_sym_QMARK2, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -302028,21 +308037,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [99044] = 8, - ACTIONS(247), 1, + [96136] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5722), 1, - anon_sym_DOT, - STATE(2829), 1, + STATE(2872), 1, sym_comment, - STATE(2861), 1, - aux_sym_cell_path_repeat1, - STATE(3000), 1, - sym_path, - STATE(3044), 1, - sym_cell_path, - ACTIONS(1868), 14, + ACTIONS(1078), 17, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -302056,7 +308060,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1870), 32, + ACTIONS(1080), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -302069,8 +308074,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -302089,21 +308094,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [99113] = 8, - ACTIONS(247), 1, + [96197] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5722), 1, - anon_sym_DOT, - STATE(2830), 1, + ACTIONS(5952), 1, + anon_sym_DOT_DOT2, + STATE(2873), 1, sym_comment, - STATE(2861), 1, - aux_sym_cell_path_repeat1, - STATE(3000), 1, - sym_path, - STATE(3045), 1, - sym_cell_path, - ACTIONS(1872), 14, + ACTIONS(5954), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5895), 16, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -302117,7 +308121,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1874), 32, + ACTIONS(5900), 31, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -302130,8 +308135,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -302150,21 +308153,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [99182] = 8, - ACTIONS(247), 1, + [96262] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5722), 1, - anon_sym_DOT, - STATE(2831), 1, + ACTIONS(5956), 1, + anon_sym_DOT_DOT2, + STATE(2874), 1, sym_comment, - STATE(2861), 1, - aux_sym_cell_path_repeat1, - STATE(3000), 1, - sym_path, - STATE(3062), 1, - sym_cell_path, - ACTIONS(5810), 14, + ACTIONS(5958), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2113), 16, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -302178,7 +308180,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(5808), 32, + ACTIONS(2119), 31, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -302191,8 +308194,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -302211,21 +308212,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [99251] = 8, - ACTIONS(247), 1, + [96327] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5722), 1, - anon_sym_DOT, - STATE(2832), 1, + STATE(2875), 1, sym_comment, - STATE(2861), 1, - aux_sym_cell_path_repeat1, - STATE(3000), 1, - sym_path, - STATE(3079), 1, - sym_cell_path, - ACTIONS(1836), 14, + ACTIONS(2105), 17, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -302239,7 +308235,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1838), 32, + ACTIONS(2107), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -302252,8 +308249,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -302272,18 +308269,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [99320] = 6, + [96388] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2299), 1, - anon_sym_LPAREN2, - ACTIONS(2301), 1, - sym__entry_separator, - ACTIONS(2303), 1, - aux_sym__unquoted_in_list_token2, - STATE(2833), 1, + ACTIONS(5960), 1, + anon_sym_DOT, + ACTIONS(5962), 1, + aux_sym__immediate_decimal_token2, + STATE(2876), 1, sym_comment, - ACTIONS(2297), 46, + ACTIONS(1717), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1715), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -302330,73 +308328,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [99384] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5812), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5814), 1, - aux_sym__immediate_decimal_token2, - STATE(2834), 1, - sym_comment, - ACTIONS(1540), 3, - sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1542), 44, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LPAREN2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [99448] = 4, - ACTIONS(247), 1, + [96453] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2835), 1, + STATE(2877), 1, sym_comment, - ACTIONS(1311), 16, - anon_sym_DOLLAR, - anon_sym_DASH, + ACTIONS(2230), 17, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -302409,21 +308350,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1307), 33, + aux_sym__unquoted_in_list_token1, + ACTIONS(2232), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -302434,8 +308377,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -302444,14 +308385,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [99508] = 4, - ACTIONS(247), 1, + [96514] = 6, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2836), 1, + ACTIONS(5964), 1, + anon_sym_DOT_DOT2, + STATE(2878), 1, sym_comment, - ACTIONS(1675), 17, + ACTIONS(5966), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2222), 16, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -302467,7 +308412,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1677), 32, + ACTIONS(2228), 31, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -302480,8 +308426,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -302500,20 +308444,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [99568] = 4, - ACTIONS(247), 1, + [96579] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2837), 1, + ACTIONS(1558), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2337), 1, + anon_sym_LPAREN2, + STATE(2879), 1, sym_comment, - ACTIONS(2029), 17, + ACTIONS(2339), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2335), 46, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -302522,8 +308494,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2031), 32, + [96644] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2880), 1, + sym_comment, + ACTIONS(1056), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1054), 48, anon_sym_true, anon_sym_false, anon_sym_null, @@ -302536,18 +308524,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_QMARK2, + anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -302556,75 +308559,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [99628] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5816), 1, - aux_sym__immediate_decimal_token2, - STATE(2838), 1, - sym_comment, - ACTIONS(1554), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1556), 46, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LPAREN2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [99690] = 6, + aux_sym__unquoted_in_list_token1, + [96705] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1669), 1, - sym__entry_separator, - ACTIONS(5818), 1, - anon_sym_DOT, - ACTIONS(5820), 1, + ACTIONS(5968), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5970), 1, aux_sym__immediate_decimal_token2, - STATE(2839), 1, + STATE(2881), 1, sym_comment, - ACTIONS(1667), 46, + ACTIONS(1705), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1703), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -302671,20 +308619,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [99754] = 4, - ACTIONS(247), 1, + [96770] = 9, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2840), 1, + ACTIONS(5518), 1, + anon_sym_LPAREN2, + ACTIONS(5885), 1, + anon_sym_RBRACK, + ACTIONS(5891), 1, + sym__entry_separator, + ACTIONS(5974), 1, + anon_sym_COMMA, + ACTIONS(5976), 1, + sym_raw_string_begin, + STATE(2882), 1, sym_comment, - ACTIONS(2141), 17, + STATE(7593), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5972), 44, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -302693,8 +308672,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2143), 32, + [96841] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1526), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1790), 1, + anon_sym_LPAREN2, + STATE(2883), 1, + sym_comment, + ACTIONS(1796), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1788), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -302707,18 +308706,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -302727,16 +308739,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [99814] = 4, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + [96906] = 7, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2841), 1, + ACTIONS(5881), 1, + anon_sym_DOT, + STATE(2884), 1, sym_comment, - ACTIONS(2033), 17, + STATE(2887), 1, + aux_sym_cell_path_repeat1, + STATE(3021), 1, + sym_path, + ACTIONS(1027), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -302750,7 +308766,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2035), 32, + ACTIONS(1029), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -302763,8 +308780,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -302783,15 +308800,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [99874] = 4, + [96973] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2842), 1, - sym_comment, - ACTIONS(2255), 2, + ACTIONS(2248), 1, anon_sym_LPAREN2, + ACTIONS(2252), 1, + aux_sym__unquoted_in_list_token2, + STATE(2885), 1, + sym_comment, + ACTIONS(2250), 2, + sym_raw_string_begin, sym__entry_separator, - ACTIONS(2253), 47, + ACTIONS(2246), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -302838,17 +308859,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token4, - [99934] = 6, - ACTIONS(247), 1, + [97038] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5822), 1, + ACTIONS(5978), 1, anon_sym_DOT, - ACTIONS(5824), 1, + ACTIONS(5980), 1, aux_sym__immediate_decimal_token2, - STATE(2843), 1, + STATE(2886), 1, + sym_comment, + ACTIONS(1536), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1538), 46, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [97103] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5982), 1, + anon_sym_DOT, + STATE(3021), 1, + sym_path, + STATE(2887), 2, sym_comment, - ACTIONS(1667), 15, + aux_sym_cell_path_repeat1, + ACTIONS(1031), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -302863,8 +308943,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1669), 32, + ACTIONS(1033), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -302897,15 +308977,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [99998] = 4, + [97168] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5985), 1, + anon_sym_DOT_DOT2, + STATE(2888), 1, + sym_comment, + ACTIONS(5987), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2234), 16, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(2240), 31, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [97233] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2844), 1, + STATE(2889), 1, sym_comment, - ACTIONS(1669), 2, + ACTIONS(1717), 3, + sym_raw_string_begin, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1667), 47, + ACTIONS(1715), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -302953,15 +309093,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, aux_sym__unquoted_in_list_token2, - [100058] = 4, + [97294] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2845), 1, + STATE(2890), 1, sym_comment, - ACTIONS(1661), 2, + ACTIONS(1771), 3, + sym_raw_string_begin, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1659), 47, + ACTIONS(1769), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -303009,23 +309150,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, aux_sym__unquoted_in_list_token2, - [100118] = 8, - ACTIONS(247), 1, + [97355] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1560), 1, - anon_sym_DASH, - ACTIONS(4773), 1, - anon_sym_DOT_DOT2, - ACTIONS(5826), 1, - sym_filesize_unit, - ACTIONS(5828), 1, - sym_duration_unit, - STATE(2846), 1, + ACTIONS(5989), 1, + anon_sym_DOT, + STATE(2752), 1, + sym_path, + STATE(2891), 2, sym_comment, - ACTIONS(4775), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1572), 43, + aux_sym_cell_path_repeat1, + ACTIONS(1031), 11, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1033), 36, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -303039,45 +309186,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_LBRACE, + anon_sym_in, anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [100186] = 4, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [97420] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2847), 1, + ACTIONS(5992), 1, + anon_sym_QMARK2, + STATE(2892), 1, sym_comment, - ACTIONS(1723), 2, - anon_sym_LPAREN2, + ACTIONS(1044), 2, + sym_raw_string_begin, sym__entry_separator, - ACTIONS(1721), 47, + ACTIONS(1042), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -303091,6 +309233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -303124,16 +309267,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [100246] = 4, + [97483] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2848), 1, + STATE(2893), 1, sym_comment, - ACTIONS(1740), 2, + ACTIONS(1828), 3, + sym_raw_string_begin, anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1738), 47, + ACTIONS(1826), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -303181,68 +309324,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, aux_sym__unquoted_in_list_token2, - [100306] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2849), 1, - sym_comment, - ACTIONS(1667), 17, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1669), 32, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [100366] = 4, - ACTIONS(247), 1, + [97544] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2850), 1, + STATE(2894), 1, sym_comment, - ACTIONS(1659), 17, + ACTIONS(1703), 17, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -303260,7 +309347,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1661), 32, + ACTIONS(1705), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -303293,20 +309381,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [100426] = 7, + [97605] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1072), 1, - sym__entry_separator, - ACTIONS(2225), 1, + ACTIONS(1844), 1, anon_sym_LPAREN2, - ACTIONS(2227), 1, - aux_sym__unquoted_in_list_token4, - ACTIONS(5756), 1, - anon_sym_RBRACK, - STATE(2851), 1, + ACTIONS(1852), 1, + aux_sym__unquoted_in_list_token2, + STATE(2895), 1, sym_comment, - ACTIONS(5754), 45, + ACTIONS(1850), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1842), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -303314,6 +309401,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, @@ -303352,30 +309440,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [100492] = 4, - ACTIONS(247), 1, + [97670] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2852), 1, + ACTIONS(5994), 1, + anon_sym_QMARK2, + STATE(2896), 1, sym_comment, - ACTIONS(1721), 17, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1723), 32, + ACTIONS(1050), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1048), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -303388,53 +309463,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [100552] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5441), 1, - anon_sym_LPAREN2, - ACTIONS(5726), 1, - anon_sym_RBRACK, - ACTIONS(5732), 1, - sym__entry_separator, - ACTIONS(5832), 1, - anon_sym_COMMA, - STATE(2853), 1, - sym_comment, - STATE(7234), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5830), 44, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -303468,14 +309498,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [100620] = 4, - ACTIONS(247), 1, + [97733] = 6, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2854), 1, + ACTIONS(5952), 1, + anon_sym_DOT_DOT2, + STATE(2897), 1, sym_comment, - ACTIONS(1738), 17, + ACTIONS(5954), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5883), 16, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -303491,7 +309525,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1740), 32, + ACTIONS(5893), 31, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -303504,8 +309539,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -303524,16 +309557,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [100680] = 6, - ACTIONS(247), 1, + [97798] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5834), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5836), 1, - aux_sym__immediate_decimal_token2, - STATE(2855), 1, + STATE(2898), 1, sym_comment, - ACTIONS(1659), 15, + ACTIONS(1364), 16, + anon_sym_DOLLAR, + anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -303547,20 +309578,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1661), 32, + aux_sym_unquoted_token1, + ACTIONS(1362), 34, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -303574,6 +309604,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [97859] = 7, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5996), 1, + anon_sym_DOT, + STATE(2752), 1, + sym_path, + STATE(2891), 1, + aux_sym_cell_path_repeat1, + STATE(2899), 1, + sym_comment, + ACTIONS(1027), 11, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1029), 36, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -303582,16 +309674,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [100744] = 5, + [97926] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1024), 1, - sym__entry_separator, - ACTIONS(5838), 1, - anon_sym_QMARK2, - STATE(2856), 1, + ACTIONS(2283), 1, + anon_sym_LPAREN2, + ACTIONS(2287), 1, + aux_sym__unquoted_in_list_token4, + STATE(2900), 1, sym_comment, - ACTIONS(1022), 47, + ACTIONS(2285), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2281), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -303605,7 +309700,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -303620,89 +309714,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0x, sym_val_date, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [100806] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5840), 1, - anon_sym_DOT, - ACTIONS(5842), 1, - aux_sym__immediate_decimal_token2, - STATE(2857), 1, - sym_comment, - ACTIONS(1518), 3, - sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1520), 44, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LPAREN2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [100870] = 4, - ACTIONS(247), 1, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [97991] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2858), 1, + STATE(2901), 1, sym_comment, - ACTIONS(1058), 17, + ACTIONS(1670), 17, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -303720,7 +309756,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1060), 32, + ACTIONS(1672), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -303753,76 +309790,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [100930] = 6, - ACTIONS(247), 1, + [98052] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5844), 1, - anon_sym_DOT, - ACTIONS(5846), 1, - aux_sym__immediate_decimal_token2, - STATE(2859), 1, + STATE(2902), 1, sym_comment, - ACTIONS(1518), 2, + ACTIONS(1715), 17, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1520), 45, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LPAREN2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [100994] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2231), 1, - anon_sym_LPAREN2, - ACTIONS(2233), 1, - sym__entry_separator, - ACTIONS(2235), 1, - aux_sym__unquoted_in_list_token4, - STATE(2860), 1, - sym_comment, - ACTIONS(2229), 46, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1717), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -303835,31 +309827,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -303868,19 +309847,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [101058] = 7, - ACTIONS(247), 1, + [98113] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5722), 1, - anon_sym_DOT, - STATE(2861), 1, + ACTIONS(5998), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6000), 1, + aux_sym__immediate_decimal_token2, + STATE(2903), 1, sym_comment, - STATE(2867), 1, - aux_sym_cell_path_repeat1, - STATE(3000), 1, - sym_path, - ACTIONS(1011), 14, + ACTIONS(1703), 15, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -303895,7 +309871,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1013), 32, + aux_sym__unquoted_in_list_token2, + ACTIONS(1705), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -303928,47 +309906,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [101124] = 6, - ACTIONS(3), 1, + [98178] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2239), 1, - anon_sym_LPAREN2, - ACTIONS(2241), 1, - sym__entry_separator, - ACTIONS(2243), 1, - aux_sym__unquoted_in_list_token4, - STATE(2862), 1, + ACTIONS(6002), 1, + anon_sym_DOT_DOT2, + STATE(2904), 1, sym_comment, - ACTIONS(2237), 46, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(6004), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2206), 16, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -303977,27 +309932,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [101188] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2239), 1, - anon_sym_LPAREN2, - ACTIONS(2243), 1, - aux_sym__unquoted_in_list_token4, - ACTIONS(2247), 1, - sym__entry_separator, - STATE(2863), 1, - sym_comment, - ACTIONS(2245), 46, + ACTIONS(2212), 31, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -304010,31 +309947,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -304043,17 +309965,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [101252] = 5, + [98243] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2317), 1, - sym__entry_separator, - ACTIONS(5848), 1, - anon_sym_LBRACK2, - STATE(2864), 1, + ACTIONS(1844), 1, + anon_sym_LPAREN2, + ACTIONS(1852), 1, + aux_sym__unquoted_in_list_token2, + STATE(2905), 1, sym_comment, - ACTIONS(2313), 47, + ACTIONS(2279), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2277), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -304066,7 +309990,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -304101,20 +310024,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [101314] = 6, - ACTIONS(247), 1, + [98308] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5850), 1, - anon_sym_DOT_DOT2, - STATE(2865), 1, + ACTIONS(6006), 1, + anon_sym_QMARK2, + STATE(2906), 1, sym_comment, - ACTIONS(5852), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1991), 16, + ACTIONS(1042), 15, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -304128,7 +310047,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1997), 30, + ACTIONS(1044), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -304141,6 +310061,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -304159,34 +310081,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [101378] = 6, - ACTIONS(247), 1, + [98370] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5854), 1, - anon_sym_DOT_DOT2, - STATE(2866), 1, + ACTIONS(6010), 1, + anon_sym_RBRACE, + ACTIONS(6012), 1, + sym__entry_separator, + ACTIONS(6014), 1, + sym_raw_string_begin, + STATE(2907), 1, sym_comment, - ACTIONS(5856), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1999), 16, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(2005), 30, + STATE(2948), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(6008), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -304194,21 +310102,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -304217,32 +310139,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [101442] = 6, - ACTIONS(247), 1, + aux_sym_unquoted_token1, + [98436] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5858), 1, - anon_sym_DOT, - STATE(3000), 1, - sym_path, - STATE(2867), 2, + ACTIONS(6012), 1, + sym__entry_separator, + ACTIONS(6014), 1, + sym_raw_string_begin, + ACTIONS(6016), 1, + anon_sym_RBRACE, + STATE(2908), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1015), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1017), 32, + STATE(2948), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(6008), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -304250,23 +310161,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym__, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -304275,34 +310198,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [101506] = 6, - ACTIONS(247), 1, + aux_sym_unquoted_token1, + [98502] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5861), 1, - anon_sym_DOT_DOT2, - STATE(2868), 1, + ACTIONS(6018), 1, + aux_sym__immediate_decimal_token2, + STATE(2909), 1, sym_comment, - ACTIONS(5863), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2007), 16, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(2013), 30, + ACTIONS(1771), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1769), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -304315,16 +310222,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -304333,14 +310255,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [101570] = 4, + aux_sym__unquoted_in_list_token1, + [98564] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1044), 1, + ACTIONS(6012), 1, sym__entry_separator, - STATE(2869), 1, + ACTIONS(6014), 1, + sym_raw_string_begin, + ACTIONS(6020), 1, + anon_sym_RBRACE, + STATE(2910), 1, sym_comment, - ACTIONS(1042), 48, + STATE(2948), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(6008), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -304348,14 +310277,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym__, anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -304388,15 +310314,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [101630] = 4, + aux_sym_unquoted_token1, + [98630] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1040), 1, + ACTIONS(6012), 1, sym__entry_separator, - STATE(2870), 1, + ACTIONS(6014), 1, + sym_raw_string_begin, + ACTIONS(6022), 1, + anon_sym_RBRACE, + STATE(2911), 1, sym_comment, - ACTIONS(1038), 48, + STATE(2948), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(6008), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -304404,14 +310336,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym__, anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -304444,15 +310373,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [101690] = 4, + aux_sym_unquoted_token1, + [98696] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1036), 1, + ACTIONS(6012), 1, sym__entry_separator, - STATE(2871), 1, + ACTIONS(6014), 1, + sym_raw_string_begin, + ACTIONS(6024), 1, + anon_sym_RBRACE, + STATE(2912), 1, sym_comment, - ACTIONS(1034), 48, + STATE(2948), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(6008), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -304460,14 +310395,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym__, anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -304500,19 +310432,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [101750] = 6, + aux_sym_unquoted_token1, + [98762] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1661), 1, + ACTIONS(6012), 1, sym__entry_separator, - ACTIONS(5865), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5867), 1, - aux_sym__immediate_decimal_token2, - STATE(2872), 1, + ACTIONS(6014), 1, + sym_raw_string_begin, + ACTIONS(6026), 1, + anon_sym_RBRACE, + STATE(2913), 1, sym_comment, - ACTIONS(1659), 46, + STATE(2948), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(6008), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -304520,11 +310454,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -304558,141 +310491,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [101814] = 10, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - ACTIONS(4606), 1, - anon_sym_DOT_DOT2, - ACTIONS(4614), 1, - aux_sym_unquoted_token2, - ACTIONS(5869), 1, - sym_filesize_unit, - ACTIONS(5871), 1, - sym_duration_unit, - STATE(2873), 1, - sym_comment, - STATE(7282), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4608), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1572), 41, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [101886] = 6, - ACTIONS(247), 1, + aux_sym_unquoted_token1, + [98828] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5873), 1, - anon_sym_DOT, - ACTIONS(5875), 1, + ACTIONS(6028), 1, aux_sym__immediate_decimal_token2, - STATE(2874), 1, - sym_comment, - ACTIONS(1518), 2, - aux_sym_cmd_identifier_token41, - anon_sym_DOT_DOT2, - ACTIONS(1520), 45, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [101950] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5877), 1, - anon_sym_DOT_DOT2, - STATE(2875), 1, + STATE(2914), 1, sym_comment, - ACTIONS(5879), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2019), 16, + ACTIONS(1769), 15, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -304706,7 +310514,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2025), 30, + aux_sym__unquoted_in_list_token2, + ACTIONS(1771), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -304719,6 +310529,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -304737,19 +310549,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [102014] = 6, - ACTIONS(247), 1, + [98890] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5881), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5883), 1, + ACTIONS(6030), 1, + anon_sym_DOT, + ACTIONS(6032), 1, aux_sym__immediate_decimal_token2, - STATE(2876), 1, + STATE(2915), 1, sym_comment, - ACTIONS(1540), 2, + ACTIONS(1536), 2, aux_sym_cmd_identifier_token41, anon_sym_DOT_DOT2, - ACTIONS(1542), 45, + ACTIONS(1538), 45, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -304795,20 +310607,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [102078] = 6, - ACTIONS(247), 1, + [98954] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5885), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5887), 1, + ACTIONS(6034), 1, + anon_sym_LBRACK2, + STATE(2916), 1, + sym_comment, + ACTIONS(2359), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2355), 46, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [99016] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5980), 1, aux_sym__immediate_decimal_token2, - STATE(2877), 1, + STATE(2917), 1, sym_comment, - ACTIONS(1540), 2, + ACTIONS(1536), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1542), 45, - ts_builtin_sym_end, + ACTIONS(1538), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -304820,6 +310686,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, @@ -304853,14 +310721,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [102142] = 4, - ACTIONS(247), 1, + [99078] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2878), 1, + ACTIONS(6036), 1, + sym__newline, + STATE(2918), 2, sym_comment, - ACTIONS(1311), 16, + aux_sym_shebang_repeat1, + ACTIONS(1349), 15, anon_sym_DOLLAR, - anon_sym_DASH, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -304874,19 +310744,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1307), 33, + aux_sym__unquoted_in_list_token1, + ACTIONS(1351), 32, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, - aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -304909,18 +310778,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [102202] = 6, + [99140] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1494), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1780), 1, - anon_sym_LPAREN2, - ACTIONS(1786), 1, + ACTIONS(6012), 1, sym__entry_separator, - STATE(2879), 1, + ACTIONS(6014), 1, + sym_raw_string_begin, + ACTIONS(6039), 1, + anon_sym_RBRACE, + STATE(2919), 1, sym_comment, - ACTIONS(1778), 46, + STATE(2948), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(6008), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -304928,11 +310799,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -304966,19 +310836,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [102266] = 6, - ACTIONS(3), 1, + aux_sym_unquoted_token1, + [99206] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1790), 1, + ACTIONS(6041), 1, + anon_sym_DOT, + ACTIONS(6043), 1, + aux_sym__immediate_decimal_token2, + STATE(2920), 1, + sym_comment, + ACTIONS(1536), 3, + sym__newline, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1538), 44, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(1798), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2289), 1, - sym__entry_separator, - STATE(2880), 1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [99270] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6045), 1, + anon_sym_QMARK2, + STATE(2921), 1, sym_comment, - ACTIONS(2287), 46, + ACTIONS(1048), 15, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1050), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -304991,31 +310932,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -305024,76 +310952,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [102330] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5761), 1, - aux_sym__immediate_decimal_token2, - STATE(2881), 1, - sym_comment, - ACTIONS(1518), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1520), 46, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LPAREN2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [102392] = 6, + [99332] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1790), 1, - anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(6012), 1, sym__entry_separator, - ACTIONS(1798), 1, - aux_sym__unquoted_in_list_token2, - STATE(2882), 1, + ACTIONS(6014), 1, + sym_raw_string_begin, + ACTIONS(6047), 1, + anon_sym_RBRACE, + STATE(2922), 1, sym_comment, - ACTIONS(1788), 46, + STATE(2948), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(6008), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -305101,11 +310973,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -305139,19 +311010,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [102456] = 6, + aux_sym_unquoted_token1, + [99398] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1552), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2293), 1, - anon_sym_LPAREN2, - ACTIONS(2295), 1, + ACTIONS(6012), 1, sym__entry_separator, - STATE(2883), 1, + ACTIONS(6014), 1, + sym_raw_string_begin, + ACTIONS(6049), 1, + anon_sym_RBRACE, + STATE(2923), 1, sym_comment, - ACTIONS(2291), 46, + STATE(2948), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(6008), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -305159,11 +311032,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -305197,35 +311069,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [102520] = 6, - ACTIONS(247), 1, + aux_sym_unquoted_token1, + [99464] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5891), 1, - anon_sym_DOT_DOT2, - STATE(2884), 1, + ACTIONS(6012), 1, + sym__entry_separator, + ACTIONS(6014), 1, + sym_raw_string_begin, + ACTIONS(6051), 1, + anon_sym_RBRACE, + STATE(2924), 1, sym_comment, - ACTIONS(5893), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5724), 16, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(5889), 30, + STATE(2948), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(6008), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -305233,21 +311091,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -305256,20 +311128,193 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [102584] = 6, - ACTIONS(247), 1, + aux_sym_unquoted_token1, + [99530] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5891), 1, + ACTIONS(6053), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6055), 1, + aux_sym__immediate_decimal_token2, + STATE(2925), 1, + sym_comment, + ACTIONS(1528), 3, + sym__newline, anon_sym_DOT_DOT2, - STATE(2885), 1, + aux_sym_unquoted_token2, + ACTIONS(1530), 44, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LPAREN2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [99594] = 10, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + ACTIONS(4762), 1, + anon_sym_DOT_DOT2, + ACTIONS(4770), 1, + aux_sym_unquoted_token2, + ACTIONS(6057), 1, + sym_filesize_unit, + ACTIONS(6059), 1, + sym_duration_unit, + STATE(2926), 1, + sym_comment, + STATE(7534), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4764), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1640), 41, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [99666] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6061), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6063), 1, + aux_sym__immediate_decimal_token2, + STATE(2927), 1, sym_comment, - ACTIONS(5893), 2, + ACTIONS(1528), 2, + aux_sym_cmd_identifier_token41, + anon_sym_DOT_DOT2, + ACTIONS(1530), 45, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5754), 16, + sym_filesize_unit, + sym_duration_unit, + [99730] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2928), 1, + sym_comment, + ACTIONS(1058), 15, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -305283,7 +311328,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(5895), 30, + ACTIONS(1060), 34, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -305296,6 +311342,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_QMARK2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -305314,46 +311363,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [102648] = 5, - ACTIONS(3), 1, + [99790] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6065), 1, + anon_sym_DOT, + ACTIONS(6067), 1, + aux_sym__immediate_decimal_token2, + STATE(2929), 1, + sym_comment, + ACTIONS(1536), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1538), 45, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [99854] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1030), 1, - sym__entry_separator, - ACTIONS(5897), 1, - anon_sym_QMARK2, - STATE(2886), 1, + STATE(2930), 1, sym_comment, - ACTIONS(1028), 47, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(1062), 15, anon_sym_DOT_DOT, anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -305362,27 +311441,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [102710] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5901), 1, - anon_sym_RBRACE, - ACTIONS(5903), 1, - sym__entry_separator, - STATE(2887), 1, - sym_comment, - STATE(2925), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(5899), 45, + ACTIONS(1064), 34, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -305390,35 +311451,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym__, - anon_sym_DOT_DOT, + anon_sym_QMARK2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -305427,13 +311477,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [102773] = 4, - ACTIONS(247), 1, + [99914] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2888), 1, + STATE(2931), 1, sym_comment, - ACTIONS(1042), 15, + ACTIONS(1038), 15, anon_sym_DOT_DOT, anon_sym_DOT, aux_sym__val_number_decimal_token1, @@ -305449,7 +311498,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1044), 33, + ACTIONS(1040), 34, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -305483,20 +311533,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [102832] = 6, - ACTIONS(247), 1, + [99974] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5905), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5907), 1, - aux_sym__immediate_decimal_token2, - STATE(2889), 1, + STATE(2932), 1, sym_comment, - ACTIONS(1540), 3, - aux_sym_cmd_identifier_token41, + ACTIONS(1058), 11, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1060), 38, sym__newline, - anon_sym_DOT_DOT2, - ACTIONS(1542), 43, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -305508,46 +311563,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [102895] = 4, - ACTIONS(3), 1, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_QMARK2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [100034] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1048), 1, - sym__entry_separator, - STATE(2890), 1, + STATE(2933), 1, sym_comment, - ACTIONS(1046), 47, + ACTIONS(1054), 15, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1056), 34, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -305560,32 +311624,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT, + anon_sym_QMARK2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -305594,19 +311645,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [102954] = 6, + [100094] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5903), 1, - sym__entry_separator, - ACTIONS(5909), 1, - anon_sym_RBRACE, - STATE(2891), 1, + ACTIONS(5962), 1, + aux_sym__immediate_decimal_token2, + STATE(2934), 1, sym_comment, - STATE(2925), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(5899), 45, + ACTIONS(1717), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1715), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -305614,10 +311663,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -305651,47 +311701,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [103017] = 6, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + [100156] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5903), 1, - sym__entry_separator, - ACTIONS(5911), 1, - anon_sym_RBRACE, - STATE(2892), 1, + STATE(2935), 1, sym_comment, - STATE(2925), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(5899), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(1062), 11, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -305700,6 +311719,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(1064), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_QMARK2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -305708,19 +311758,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [103080] = 6, + [100216] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5903), 1, - sym__entry_separator, - ACTIONS(5913), 1, - anon_sym_RBRACE, - STATE(2893), 1, + ACTIONS(5528), 1, + aux_sym__unquoted_in_list_token2, + STATE(2936), 1, sym_comment, - STATE(2925), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(5899), 45, + ACTIONS(1640), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1628), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -305728,10 +311776,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -305765,19 +311814,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [103143] = 6, + aux_sym__unquoted_in_list_token1, + [100278] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5903), 1, - sym__entry_separator, - ACTIONS(5915), 1, - anon_sym_RBRACE, - STATE(2894), 1, + STATE(2937), 1, sym_comment, - STATE(2925), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(5899), 45, + ACTIONS(6071), 3, + sym_raw_string_begin, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(6069), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -305785,10 +311832,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -305822,19 +311870,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [103206] = 6, + aux_sym__unquoted_in_list_token1, + [100338] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5903), 1, - sym__entry_separator, - ACTIONS(5917), 1, - anon_sym_RBRACE, - STATE(2895), 1, + STATE(2938), 1, sym_comment, - STATE(2925), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(5899), 45, + ACTIONS(1072), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1070), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -305842,11 +311887,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym__, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -305879,47 +311926,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [103269] = 6, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + [100398] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5903), 1, - sym__entry_separator, - ACTIONS(5919), 1, - anon_sym_RBRACE, - STATE(2896), 1, + STATE(2939), 1, sym_comment, - STATE(2925), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(5899), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(1038), 11, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -305928,6 +311944,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(1040), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_QMARK2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -305936,16 +311983,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [103332] = 4, - ACTIONS(247), 1, + [100458] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2897), 1, + ACTIONS(6073), 1, + aux_sym__immediate_decimal_token2, + STATE(2940), 1, sym_comment, - ACTIONS(1653), 2, + ACTIONS(1596), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1655), 46, + ACTIONS(1598), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -305992,44 +312040,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [103391] = 4, - ACTIONS(3), 1, + [100520] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1052), 1, - sym__entry_separator, - STATE(2898), 1, + ACTIONS(6075), 1, + anon_sym_DOT, + ACTIONS(6077), 1, + aux_sym__immediate_decimal_token2, + STATE(2941), 1, sym_comment, - ACTIONS(1050), 47, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(1715), 14, anon_sym_DOT_DOT, - anon_sym_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -306038,23 +312063,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [103450] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2487), 1, - sym__entry_separator, - STATE(2899), 1, - sym_comment, - ACTIONS(2485), 47, + ACTIONS(1717), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -306067,24 +312078,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [100584] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2942), 1, + sym_comment, + ACTIONS(1054), 11, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -306093,6 +312115,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(1056), 38, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_QMARK2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -306101,15 +312154,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [103509] = 4, + [100644] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1056), 1, - sym__entry_separator, - STATE(2900), 1, + STATE(2943), 1, sym_comment, - ACTIONS(1054), 47, + ACTIONS(6081), 3, + sym_raw_string_begin, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(6079), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -306123,7 +312177,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -306157,16 +312210,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [103568] = 5, - ACTIONS(247), 1, + [100704] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5921), 1, + ACTIONS(6083), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6085), 1, + aux_sym__immediate_decimal_token2, + STATE(2944), 1, + sym_comment, + ACTIONS(1528), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1530), 45, + ts_builtin_sym_end, sym__newline, - STATE(2901), 2, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [100768] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5946), 1, + aux_sym__immediate_decimal_token2, + STATE(2945), 1, sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1313), 15, - anon_sym_DOLLAR, + ACTIONS(1715), 15, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -306181,7 +312290,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1315), 31, + aux_sym__unquoted_in_list_token2, + ACTIONS(1717), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -306189,7 +312300,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -306203,8 +312317,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -306213,14 +312325,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [103629] = 4, + [100830] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1894), 1, - sym__entry_separator, - STATE(2902), 1, + STATE(2946), 1, sym_comment, - ACTIONS(1892), 47, + ACTIONS(1076), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1074), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -306233,8 +312346,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -306268,44 +312381,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [103688] = 4, - ACTIONS(3), 1, + [100890] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1878), 1, - sym__entry_separator, - STATE(2903), 1, + ACTIONS(6087), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6089), 1, + aux_sym__immediate_decimal_token2, + STATE(2947), 1, sym_comment, - ACTIONS(1876), 47, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(1703), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -306314,27 +312404,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [103747] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5903), 1, - sym__entry_separator, - ACTIONS(5924), 1, - anon_sym_RBRACE, - STATE(2904), 1, - sym_comment, - STATE(2925), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(5899), 45, + ACTIONS(1705), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -306342,35 +312414,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym__, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -306379,19 +312439,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [103810] = 6, + [100954] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5903), 1, + ACTIONS(2368), 1, + sym_raw_string_begin, + ACTIONS(6091), 1, sym__entry_separator, - ACTIONS(5926), 1, - anon_sym_RBRACE, - STATE(2905), 1, + STATE(2948), 2, sym_comment, - STATE(2925), 1, aux_sym__multiple_types_repeat1, - ACTIONS(5899), 45, + ACTIONS(2363), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -306402,6 +312460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -306437,14 +312496,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym_unquoted_token1, - [103873] = 4, + [101016] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2448), 1, + ACTIONS(6012), 1, sym__entry_separator, - STATE(2906), 1, + ACTIONS(6014), 1, + sym_raw_string_begin, + ACTIONS(6094), 1, + anon_sym_RBRACE, + STATE(2948), 1, + aux_sym__multiple_types_repeat1, + STATE(2949), 1, sym_comment, - ACTIONS(2446), 47, + ACTIONS(6008), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -306452,12 +312517,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -306491,15 +312554,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [103932] = 4, + aux_sym_unquoted_token1, + [101082] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1906), 1, + ACTIONS(6012), 1, sym__entry_separator, - STATE(2907), 1, + ACTIONS(6014), 1, + sym_raw_string_begin, + ACTIONS(6096), 1, + anon_sym_RBRACE, + STATE(2948), 1, + aux_sym__multiple_types_repeat1, + STATE(2950), 1, sym_comment, - ACTIONS(1904), 47, + ACTIONS(6008), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -306507,12 +312576,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -306546,183 +312613,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [103991] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5928), 1, - aux_sym__immediate_decimal_token2, - STATE(2908), 1, - sym_comment, - ACTIONS(1721), 15, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1723), 32, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [104052] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5846), 1, - aux_sym__immediate_decimal_token2, - STATE(2909), 1, - sym_comment, - ACTIONS(1518), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1520), 45, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LPAREN2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [104113] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5930), 1, - aux_sym__immediate_decimal_token2, - STATE(2910), 1, - sym_comment, - ACTIONS(1554), 3, - sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1556), 44, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LPAREN2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [104174] = 4, + aux_sym_unquoted_token1, + [101148] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1902), 1, - sym__entry_separator, - STATE(2911), 1, + STATE(2951), 1, sym_comment, - ACTIONS(1900), 47, + ACTIONS(1068), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1066), 47, anon_sym_true, anon_sym_false, anon_sym_null, @@ -306735,8 +312635,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, + anon_sym_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -306770,70 +312670,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [104233] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5932), 1, - aux_sym__immediate_decimal_token2, - STATE(2912), 1, - sym_comment, - ACTIONS(1554), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1556), 45, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LPAREN2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [104294] = 4, + [101208] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1572), 1, - sym__entry_separator, - STATE(2913), 1, + STATE(2952), 1, sym_comment, - ACTIONS(1560), 47, + ACTIONS(1771), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1769), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -306846,7 +312691,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -306881,14 +312725,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [104353] = 4, + [101267] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2444), 1, - sym__entry_separator, - STATE(2914), 1, + STATE(2953), 1, sym_comment, - ACTIONS(2442), 47, + ACTIONS(1060), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1058), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -306901,7 +312746,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -306936,44 +312780,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [104412] = 4, - ACTIONS(3), 1, + [101326] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2460), 1, - sym__entry_separator, - STATE(2915), 1, + STATE(2954), 1, sym_comment, - ACTIONS(2458), 47, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(1066), 15, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -306982,23 +312800,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [104471] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2456), 1, - sym__entry_separator, - STATE(2916), 1, - sym_comment, - ACTIONS(2454), 47, + ACTIONS(1068), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -307011,32 +312815,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -307045,15 +312835,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [104530] = 5, - ACTIONS(247), 1, + [101385] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5934), 1, - anon_sym_QMARK2, - STATE(2917), 1, + STATE(2955), 1, sym_comment, - ACTIONS(1022), 15, + ACTIONS(1070), 15, anon_sym_DOT_DOT, anon_sym_DOT, aux_sym__val_number_decimal_token1, @@ -307069,7 +312856,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1024), 32, + ACTIONS(1072), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -307102,30 +312890,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [104591] = 5, - ACTIONS(247), 1, + [101444] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5936), 1, - anon_sym_QMARK2, - STATE(2918), 1, + STATE(2956), 1, sym_comment, - ACTIONS(1028), 15, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1030), 32, + ACTIONS(2541), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2539), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -307138,18 +312911,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -307158,15 +312944,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [104652] = 4, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + [101503] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2919), 1, + ACTIONS(6043), 1, + aux_sym__immediate_decimal_token2, + STATE(2957), 1, sym_comment, - ACTIONS(5940), 2, + ACTIONS(1536), 3, + sym__newline, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1538), 44, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_LPAREN2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [101564] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5885), 1, + anon_sym_RBRACK, + ACTIONS(5891), 1, sym__entry_separator, - ACTIONS(5938), 46, + ACTIONS(5893), 1, + sym_raw_string_begin, + STATE(2958), 1, + sym_comment, + ACTIONS(5883), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -307174,7 +313020,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, @@ -307213,15 +313058,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [104711] = 4, + [101627] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2920), 1, - sym_comment, - ACTIONS(5944), 2, - anon_sym_LPAREN2, + ACTIONS(1092), 1, sym__entry_separator, - ACTIONS(5942), 46, + ACTIONS(5897), 1, + anon_sym_RBRACK, + ACTIONS(5900), 1, + sym_raw_string_begin, + STATE(2959), 1, + sym_comment, + ACTIONS(5895), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -307229,7 +313077,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, @@ -307268,14 +313115,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [104770] = 4, + [101690] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2464), 1, - sym__entry_separator, - STATE(2921), 1, + STATE(2960), 1, sym_comment, - ACTIONS(2462), 47, + ACTIONS(2545), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2543), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -307288,7 +313136,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -307323,14 +313170,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [104829] = 4, + [101749] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2025), 1, - sym__entry_separator, - STATE(2922), 1, + STATE(2961), 1, sym_comment, - ACTIONS(2019), 47, + ACTIONS(2563), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2561), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -307343,7 +313191,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -307378,30 +313225,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [104888] = 5, - ACTIONS(247), 1, + [101808] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5824), 1, - aux_sym__immediate_decimal_token2, - STATE(2923), 1, + STATE(2962), 1, sym_comment, - ACTIONS(1667), 15, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1669), 32, + ACTIONS(1040), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1038), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -307414,18 +313246,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -307434,14 +313279,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [104949] = 4, + aux_sym__unquoted_in_list_token1, + [101867] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2418), 1, - sym__entry_separator, - STATE(2924), 1, + STATE(2963), 1, sym_comment, - ACTIONS(2416), 47, + ACTIONS(2003), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2001), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -307454,7 +313301,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -307489,15 +313335,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [105008] = 4, + [101926] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5946), 1, - sym__entry_separator, - STATE(2925), 2, + STATE(2964), 1, sym_comment, - aux_sym__multiple_types_repeat1, - ACTIONS(2319), 46, + ACTIONS(2537), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2535), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -307505,11 +313351,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -307543,17 +313389,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [105067] = 5, + aux_sym__unquoted_in_list_token1, + [101985] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1669), 1, - sym__entry_separator, - ACTIONS(5820), 1, - aux_sym__immediate_decimal_token2, - STATE(2926), 1, + STATE(2965), 1, sym_comment, - ACTIONS(1667), 46, + ACTIONS(2468), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2466), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -307600,14 +313445,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [105128] = 4, + [102044] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1866), 1, - sym__entry_separator, - STATE(2927), 1, + STATE(2966), 1, sym_comment, - ACTIONS(1864), 47, + ACTIONS(2019), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2017), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -307620,7 +313466,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -307655,18 +313500,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [105187] = 6, + [102103] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5903), 1, - sym__entry_separator, - ACTIONS(5949), 1, - anon_sym_RBRACE, - STATE(2925), 1, - aux_sym__multiple_types_repeat1, - STATE(2928), 1, + STATE(2967), 1, sym_comment, - ACTIONS(5899), 45, + ACTIONS(2045), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2043), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -307674,10 +313516,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -307711,72 +313554,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [105250] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5951), 1, - anon_sym_DOT, - ACTIONS(5953), 1, - aux_sym__immediate_decimal_token2, - STATE(2929), 1, - sym_comment, - ACTIONS(1518), 2, - aux_sym_cmd_identifier_token41, - anon_sym_DOT_DOT2, - ACTIONS(1520), 44, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [105313] = 4, + aux_sym__unquoted_in_list_token1, + [102162] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2523), 1, - sym__entry_separator, - STATE(2930), 1, + STATE(2968), 1, sym_comment, - ACTIONS(2521), 47, + ACTIONS(2049), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2047), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -307789,7 +313576,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -307824,16 +313610,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [105372] = 5, + [102221] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1723), 1, - sym__entry_separator, - ACTIONS(5955), 1, - aux_sym__immediate_decimal_token2, - STATE(2931), 1, + STATE(2969), 1, sym_comment, - ACTIONS(1721), 46, + ACTIONS(2436), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2434), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -307880,14 +313665,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [105433] = 4, + [102280] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2519), 1, - sym__entry_separator, - STATE(2932), 1, + STATE(2970), 1, sym_comment, - ACTIONS(2517), 47, + ACTIONS(2061), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2059), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -307900,7 +313686,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -307935,14 +313720,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [105492] = 4, + [102339] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2483), 1, - sym__entry_separator, - STATE(2933), 1, + STATE(2971), 1, sym_comment, - ACTIONS(2481), 47, + ACTIONS(2444), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2442), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -307955,7 +313741,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -307990,70 +313775,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [105551] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5875), 1, - aux_sym__immediate_decimal_token2, - STATE(2934), 1, - sym_comment, - ACTIONS(1518), 2, - aux_sym_cmd_identifier_token41, - anon_sym_DOT_DOT2, - ACTIONS(1520), 45, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [105612] = 4, + [102398] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2468), 1, - sym__entry_separator, - STATE(2935), 1, + STATE(2972), 1, sym_comment, - ACTIONS(2466), 47, + ACTIONS(2452), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2450), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -308066,7 +313796,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -308101,14 +313830,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [105671] = 4, + [102457] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2479), 1, - sym__entry_separator, - STATE(2936), 1, + STATE(2973), 1, sym_comment, - ACTIONS(2477), 47, + ACTIONS(2069), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2067), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -308121,7 +313851,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -308156,89 +313885,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [105730] = 10, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - ACTIONS(4606), 1, - anon_sym_DOT_DOT2, - ACTIONS(4726), 1, - aux_sym_unquoted_token2, - ACTIONS(5957), 1, - sym_filesize_unit, - ACTIONS(5959), 1, - sym_duration_unit, - STATE(2937), 1, - sym_comment, - STATE(7229), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4608), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1572), 40, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [105801] = 4, - ACTIONS(247), 1, + [102516] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2938), 1, + STATE(2974), 1, sym_comment, - ACTIONS(1034), 15, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1036), 33, + ACTIONS(2089), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2087), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -308251,19 +313906,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_QMARK2, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -308272,70 +313939,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [105860] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5961), 1, - aux_sym__immediate_decimal_token2, - STATE(2939), 1, - sym_comment, - ACTIONS(1554), 2, - aux_sym_cmd_identifier_token41, - anon_sym_DOT_DOT2, - ACTIONS(1556), 45, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [105921] = 4, + aux_sym__unquoted_in_list_token1, + [102575] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2491), 1, - sym__entry_separator, - STATE(2940), 1, + STATE(2975), 1, sym_comment, - ACTIONS(2489), 47, + ACTIONS(2472), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2470), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -308348,7 +313961,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -308383,31 +313995,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [105980] = 6, - ACTIONS(247), 1, + [102634] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5963), 1, - anon_sym_DOT, - ACTIONS(5965), 1, - aux_sym__immediate_decimal_token2, - STATE(2941), 1, + STATE(2976), 1, sym_comment, - ACTIONS(1667), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1669), 32, + ACTIONS(2476), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2474), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -308420,18 +314016,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -308440,14 +314049,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [106043] = 4, + aux_sym__unquoted_in_list_token1, + [102693] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2495), 1, - sym__entry_separator, - STATE(2942), 1, + STATE(2977), 1, sym_comment, - ACTIONS(2493), 47, + ACTIONS(2097), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2095), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -308460,7 +314071,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -308495,76 +314105,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [106102] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1560), 1, - sym__newline, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - ACTIONS(4606), 1, - anon_sym_DOT_DOT2, - ACTIONS(4742), 1, - aux_sym_unquoted_token2, - ACTIONS(5967), 1, - sym_filesize_unit, - ACTIONS(5969), 1, - sym_duration_unit, - STATE(2943), 1, - sym_comment, - STATE(7224), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4608), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1572), 39, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [106175] = 4, + [102752] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2499), 1, - sym__entry_separator, - STATE(2944), 1, + STATE(2978), 1, sym_comment, - ACTIONS(2497), 47, + ACTIONS(2504), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2502), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -308577,7 +314126,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -308612,14 +314160,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [106234] = 4, + [102811] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2503), 1, - sym__entry_separator, - STATE(2945), 1, + STATE(2979), 1, sym_comment, - ACTIONS(2501), 47, + ACTIONS(2533), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2531), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -308632,7 +314181,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -308667,71 +314215,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [106293] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5971), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5973), 1, - aux_sym__immediate_decimal_token2, - STATE(2946), 1, - sym_comment, - ACTIONS(1540), 2, - aux_sym_cmd_identifier_token41, - anon_sym_DOT_DOT2, - ACTIONS(1542), 44, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [106356] = 4, - ACTIONS(3), 1, + [102870] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2507), 1, - sym__entry_separator, - STATE(2947), 1, + ACTIONS(2252), 1, + aux_sym__unquoted_in_list_token2, + STATE(2980), 1, sym_comment, - ACTIONS(2505), 47, + ACTIONS(2246), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(2250), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -308744,24 +314251,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [102931] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5805), 1, + aux_sym__unquoted_in_list_token2, + STATE(2981), 1, + sym_comment, + ACTIONS(1628), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -308770,6 +314292,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1640), 33, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -308778,28 +314327,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [106415] = 4, + [102992] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2511), 1, - sym__entry_separator, - STATE(2948), 1, + ACTIONS(2287), 1, + aux_sym__unquoted_in_list_token4, + STATE(2982), 1, sym_comment, - ACTIONS(2509), 47, + ACTIONS(2285), 9, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2281), 38, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -308814,9 +314366,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -308834,14 +314383,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [106474] = 4, + [103053] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2515), 1, - sym__entry_separator, - STATE(2949), 1, + STATE(2983), 1, sym_comment, - ACTIONS(2513), 47, + ACTIONS(1064), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1062), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -308854,7 +314404,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -308889,15 +314438,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [106533] = 4, - ACTIONS(247), 1, + [103112] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2950), 1, + STATE(2984), 1, sym_comment, - ACTIONS(1518), 2, + ACTIONS(1528), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1520), 46, + ACTIONS(1530), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -308944,82 +314493,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [106592] = 4, + [103171] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6098), 1, + aux_sym__immediate_decimal_token2, + STATE(2985), 1, + sym_comment, + ACTIONS(1596), 3, + sym__newline, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1598), 44, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LPAREN2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [103232] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2422), 1, - sym__entry_separator, - STATE(2951), 1, + ACTIONS(2299), 1, + aux_sym__unquoted_in_list_token4, + STATE(2986), 1, sym_comment, - ACTIONS(2420), 47, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(2297), 9, + sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [106651] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1890), 1, - sym__entry_separator, - STATE(2952), 1, - sym_comment, - ACTIONS(1888), 47, + ACTIONS(2293), 38, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -309034,9 +314588,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -309054,15 +314605,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [106710] = 4, - ACTIONS(247), 1, + [103293] = 6, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2953), 1, + ACTIONS(6100), 1, + anon_sym_DOT, + ACTIONS(6102), 1, + aux_sym__immediate_decimal_token2, + STATE(2987), 1, sym_comment, - ACTIONS(1554), 2, + ACTIONS(1536), 2, + aux_sym_cmd_identifier_token41, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1556), 46, + ACTIONS(1538), 44, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -309074,9 +314630,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -309109,125 +314662,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [106769] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1850), 1, - sym__entry_separator, - STATE(2954), 1, - sym_comment, - ACTIONS(1848), 47, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [106828] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2414), 1, - sym__entry_separator, - STATE(2955), 1, - sym_comment, - ACTIONS(2412), 47, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [106887] = 4, - ACTIONS(247), 1, + [103356] = 6, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2956), 1, + ACTIONS(6104), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6106), 1, + aux_sym__immediate_decimal_token2, + STATE(2988), 1, sym_comment, - ACTIONS(1540), 2, + ACTIONS(1528), 2, + aux_sym_cmd_identifier_token41, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1542), 46, + ACTIONS(1530), 44, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -309239,9 +314687,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -309274,156 +314719,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [106946] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2436), 1, - sym__entry_separator, - STATE(2957), 1, - sym_comment, - ACTIONS(2434), 47, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [107005] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5903), 1, - sym__entry_separator, - ACTIONS(5975), 1, - anon_sym_RBRACE, - STATE(2925), 1, - aux_sym__multiple_types_repeat1, - STATE(2958), 1, - sym_comment, - ACTIONS(5899), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [107068] = 4, - ACTIONS(3), 1, + [103419] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2475), 1, - sym__entry_separator, - STATE(2959), 1, + STATE(2989), 1, sym_comment, - ACTIONS(2473), 47, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(1769), 15, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -309432,23 +314738,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [107127] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1997), 1, - sym__entry_separator, - STATE(2960), 1, - sym_comment, - ACTIONS(1991), 47, + aux_sym__unquoted_in_list_token2, + ACTIONS(1771), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -309461,32 +314754,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -309495,15 +314774,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [107186] = 4, + [103478] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2005), 1, - sym__entry_separator, - STATE(2961), 1, + STATE(2990), 1, sym_comment, - ACTIONS(1999), 47, + ACTIONS(2567), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2565), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -309516,7 +314795,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -309551,14 +314829,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [107245] = 4, + [103537] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6108), 1, + aux_sym__immediate_decimal_token2, + STATE(2991), 1, + sym_comment, + ACTIONS(1596), 2, + aux_sym_cmd_identifier_token41, + anon_sym_DOT_DOT2, + ACTIONS(1598), 45, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [103598] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2013), 1, - sym__entry_separator, - STATE(2962), 1, + STATE(2992), 1, sym_comment, - ACTIONS(2007), 47, + ACTIONS(1717), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1715), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -309571,7 +314906,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -309606,46 +314940,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [107304] = 6, - ACTIONS(3), 1, + [103657] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5903), 1, - sym__entry_separator, - ACTIONS(5977), 1, - anon_sym_RBRACE, - STATE(2925), 1, - aux_sym__multiple_types_repeat1, - STATE(2963), 1, + ACTIONS(1526), 1, + aux_sym__unquoted_in_list_token2, + STATE(2993), 1, sym_comment, - ACTIONS(5899), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym__, + ACTIONS(1788), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -309654,23 +314961,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [107367] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2440), 1, - sym__entry_separator, - STATE(2964), 1, - sym_comment, - ACTIONS(2438), 47, + aux_sym__unquoted_in_list_token1, + ACTIONS(1796), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -309683,32 +314976,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -309717,17 +314996,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [107426] = 5, + [103718] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1572), 1, - sym__entry_separator, - ACTIONS(5451), 1, - aux_sym__unquoted_in_list_token2, - STATE(2965), 1, + STATE(2994), 1, sym_comment, - ACTIONS(1560), 46, + ACTIONS(2240), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2234), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -309774,71 +315051,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [107487] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5979), 1, - anon_sym_DOT, - ACTIONS(5981), 1, - aux_sym__immediate_decimal_token2, - STATE(2966), 1, - sym_comment, - ACTIONS(1518), 3, - aux_sym_cmd_identifier_token41, - sym__newline, - anon_sym_DOT_DOT2, - ACTIONS(1520), 43, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [107550] = 4, + [103777] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1874), 1, - sym__entry_separator, - STATE(2967), 1, + STATE(2995), 1, sym_comment, - ACTIONS(1872), 47, + ACTIONS(2119), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2113), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -309851,7 +315072,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -309886,14 +315106,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [107609] = 4, - ACTIONS(247), 1, + [103836] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2968), 1, + ACTIONS(6110), 1, + anon_sym_LBRACK2, + STATE(2996), 1, sym_comment, - ACTIONS(1038), 15, + ACTIONS(2355), 15, + anon_sym_LBRACK, anon_sym_DOT_DOT, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -309907,20 +315129,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1040), 33, + ACTIONS(2359), 32, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_QMARK2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, @@ -309941,14 +315162,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [107668] = 4, + [103897] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2452), 1, - sym__entry_separator, - STATE(2969), 1, + STATE(2997), 1, sym_comment, - ACTIONS(2450), 47, + ACTIONS(1828), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1826), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -309961,7 +315183,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -309996,111 +315217,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [107727] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5842), 1, - aux_sym__immediate_decimal_token2, - STATE(2970), 1, - sym_comment, - ACTIONS(1518), 3, - sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1520), 44, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LPAREN2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [107788] = 6, - ACTIONS(247), 1, + [103956] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5983), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5985), 1, - aux_sym__immediate_decimal_token2, - STATE(2971), 1, + ACTIONS(2299), 1, + aux_sym__unquoted_in_list_token4, + STATE(2998), 1, sym_comment, - ACTIONS(1659), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1661), 32, + ACTIONS(2305), 9, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2303), 38, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -310109,16 +315272,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [107851] = 5, + aux_sym__unquoted_in_list_token1, + [104017] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1072), 1, - sym__entry_separator, - ACTIONS(5756), 1, - anon_sym_RBRACK, - STATE(2972), 1, + STATE(2999), 1, sym_comment, - ACTIONS(5754), 45, + ACTIONS(2228), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2222), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -310126,6 +315289,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, @@ -310164,16 +315328,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [107911] = 5, - ACTIONS(247), 1, + [104076] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5987), 1, - sym__newline, - STATE(2973), 2, + STATE(3000), 1, sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1313), 15, - anon_sym__, + ACTIONS(1364), 15, + anon_sym_DOLLAR, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -310187,17 +315348,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1315), 30, + aux_sym__unquoted_in_list_token1, + ACTIONS(1362), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -310211,6 +315373,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -310219,29 +315383,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [107971] = 5, - ACTIONS(247), 1, + [104135] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1494), 1, - aux_sym__unquoted_in_list_token2, - STATE(2974), 1, + STATE(3001), 1, sym_comment, - ACTIONS(1778), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1786), 32, + ACTIONS(2212), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2206), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -310254,18 +315404,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -310274,29 +315437,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [108031] = 5, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + [104194] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5990), 1, - aux_sym__immediate_decimal_token2, - STATE(2975), 1, + STATE(3002), 1, sym_comment, - ACTIONS(1721), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1723), 32, + ACTIONS(1080), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1078), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -310309,18 +315459,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -310329,30 +315492,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [108091] = 5, + aux_sym__unquoted_in_list_token1, + [104253] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2235), 1, - aux_sym__unquoted_in_list_token4, - STATE(2976), 1, + STATE(3003), 1, sym_comment, - ACTIONS(2233), 8, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2229), 38, + ACTIONS(1056), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1054), 46, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -310367,6 +315528,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -310384,15 +315548,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [108151] = 4, - ACTIONS(247), 1, + [104312] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2977), 1, + ACTIONS(6067), 1, + aux_sym__immediate_decimal_token2, + STATE(3004), 1, sym_comment, - ACTIONS(1540), 2, - aux_sym_cmd_identifier_token41, + ACTIONS(1536), 2, anon_sym_DOT_DOT2, - ACTIONS(1542), 45, + aux_sym_unquoted_token2, + ACTIONS(1538), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -310404,8 +315571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -310438,16 +315604,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [108209] = 4, - ACTIONS(247), 1, + [104373] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2978), 1, + STATE(3005), 1, + sym_comment, + ACTIONS(1826), 15, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1828), 33, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [104432] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6032), 1, + aux_sym__immediate_decimal_token2, + STATE(3006), 1, sym_comment, - ACTIONS(1518), 2, + ACTIONS(1536), 2, + aux_sym_cmd_identifier_token41, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1520), 45, - ts_builtin_sym_end, + ACTIONS(1538), 45, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -310459,7 +315681,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LPAREN2, + anon_sym_RPAREN, + anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -310492,18 +315715,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [108267] = 5, - ACTIONS(247), 1, + [104493] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5992), 1, - aux_sym__immediate_decimal_token2, - STATE(2979), 1, - sym_comment, - ACTIONS(1554), 3, - aux_sym_cmd_identifier_token41, + ACTIONS(6112), 1, sym__newline, + STATE(3007), 2, + sym_comment, + aux_sym_shebang_repeat1, + ACTIONS(1349), 15, + anon_sym__, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1351), 31, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [104554] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3008), 1, + sym_comment, + ACTIONS(1596), 2, anon_sym_DOT_DOT2, - ACTIONS(1556), 43, + aux_sym_unquoted_token2, + ACTIONS(1598), 46, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -310515,47 +315792,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + anon_sym_RBRACE, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [108327] = 4, - ACTIONS(247), 1, + [104613] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2980), 1, + STATE(3009), 1, sym_comment, - ACTIONS(1554), 2, - aux_sym_cmd_identifier_token41, + ACTIONS(2553), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2551), 46, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [104672] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3010), 1, + sym_comment, + ACTIONS(1711), 2, anon_sym_DOT_DOT2, - ACTIONS(1556), 45, + aux_sym_unquoted_token2, + ACTIONS(1713), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -310569,6 +315903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -310601,16 +315936,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [108385] = 5, + [104731] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5726), 1, - anon_sym_RBRACK, - ACTIONS(5732), 1, - sym__entry_separator, - STATE(2981), 1, + STATE(3011), 1, sym_comment, - ACTIONS(5724), 45, + ACTIONS(2424), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2422), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -310618,6 +315952,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, @@ -310656,15 +315991,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [108445] = 4, - ACTIONS(247), 1, + [104790] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2982), 1, + STATE(3012), 1, sym_comment, - ACTIONS(1653), 2, - aux_sym_cmd_identifier_token41, + ACTIONS(2291), 9, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2289), 39, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DOLLAR, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token4, + [104849] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3013), 1, + sym_comment, + ACTIONS(1536), 2, anon_sym_DOT_DOT2, - ACTIONS(1655), 45, + aux_sym_unquoted_token2, + ACTIONS(1538), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -310678,6 +316068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -310710,28 +316101,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [108503] = 4, - ACTIONS(247), 1, + [104908] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2983), 1, + STATE(3014), 1, sym_comment, - ACTIONS(1667), 15, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1669), 32, + ACTIONS(2559), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2557), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -310744,18 +316122,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -310764,19 +316155,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [108561] = 5, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + [104967] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5588), 1, - aux_sym__unquoted_in_list_token2, - STATE(2984), 1, + STATE(3015), 1, sym_comment, - ACTIONS(1560), 14, + ACTIONS(1640), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1628), 46, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -310785,8 +316202,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1572), 32, + [105026] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6115), 1, + anon_sym_DOT, + ACTIONS(6117), 1, + aux_sym__immediate_decimal_token2, + STATE(3016), 1, + sym_comment, + ACTIONS(1536), 3, + aux_sym_cmd_identifier_token41, + sym__newline, + anon_sym_DOT_DOT2, + ACTIONS(1538), 43, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [105089] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3017), 1, + sym_comment, + ACTIONS(2404), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2402), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -310794,23 +316284,36 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym__, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -310819,14 +316322,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [108621] = 5, - ACTIONS(247), 1, + aux_sym_unquoted_token1, + [105148] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2303), 1, - aux_sym__unquoted_in_list_token2, - STATE(2985), 1, + STATE(3018), 1, sym_comment, - ACTIONS(2297), 14, + ACTIONS(1715), 15, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -310841,7 +316343,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2301), 32, + aux_sym__unquoted_in_list_token2, + ACTIONS(1717), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -310874,12 +316378,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [108681] = 4, - ACTIONS(247), 1, + [105207] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2986), 1, + ACTIONS(6077), 1, + aux_sym__immediate_decimal_token2, + STATE(3019), 1, sym_comment, - ACTIONS(1721), 15, + ACTIONS(1715), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -310894,8 +316400,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1723), 32, + ACTIONS(1717), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -310928,12 +316434,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [108739] = 4, - ACTIONS(247), 1, + [105268] = 6, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2987), 1, + ACTIONS(6119), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6121), 1, + aux_sym__immediate_decimal_token2, + STATE(3020), 1, + sym_comment, + ACTIONS(1528), 3, + aux_sym_cmd_identifier_token41, + sym__newline, + anon_sym_DOT_DOT2, + ACTIONS(1530), 43, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [105331] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3021), 1, sym_comment, - ACTIONS(1050), 15, + ACTIONS(1074), 15, anon_sym_DOT_DOT, anon_sym_DOT, aux_sym__val_number_decimal_token1, @@ -310949,7 +316512,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1052), 32, + ACTIONS(1076), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -310982,28 +316546,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [108797] = 4, - ACTIONS(247), 1, + [105390] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2988), 1, + STATE(3022), 1, sym_comment, - ACTIONS(1054), 15, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1056), 32, + ACTIONS(1705), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1703), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -311016,18 +316567,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -311036,14 +316600,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [108855] = 5, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token1, + [105449] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5965), 1, - aux_sym__immediate_decimal_token2, - STATE(2989), 1, + ACTIONS(1558), 1, + aux_sym__unquoted_in_list_token2, + STATE(3023), 1, sym_comment, - ACTIONS(1667), 14, + ACTIONS(2335), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -311058,7 +316623,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1669), 32, + ACTIONS(2339), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -311091,16 +316657,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [108915] = 4, - ACTIONS(247), 1, + [105510] = 10, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + ACTIONS(4762), 1, + anon_sym_DOT_DOT2, + ACTIONS(4870), 1, + aux_sym_unquoted_token2, + ACTIONS(6123), 1, + sym_filesize_unit, + ACTIONS(6125), 1, + sym_duration_unit, + STATE(3024), 1, + sym_comment, + STATE(7420), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4764), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1640), 40, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [105581] = 11, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2990), 1, - sym_comment, - ACTIONS(1554), 3, + ACTIONS(1628), 1, sym__newline, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + ACTIONS(4762), 1, anon_sym_DOT_DOT2, + ACTIONS(4842), 1, aux_sym_unquoted_token2, - ACTIONS(1556), 44, + ACTIONS(6127), 1, + sym_filesize_unit, + ACTIONS(6129), 1, + sym_duration_unit, + STATE(3025), 1, + sym_comment, + STATE(7439), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4764), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1640), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -311112,7 +316752,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_LPAREN2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -311141,22 +316780,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [108973] = 4, - ACTIONS(247), 1, + [105654] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2991), 1, + STATE(3026), 1, sym_comment, - ACTIONS(1311), 15, + ACTIONS(2220), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2218), 46, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -311165,32 +316826,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1307), 32, + [105713] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3027), 1, + sym_comment, + ACTIONS(2500), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2498), 46, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -311199,74 +316889,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [109031] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4773), 1, - anon_sym_DOT_DOT2, - ACTIONS(4816), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(5994), 1, - sym_filesize_unit, - ACTIONS(5996), 1, - sym_duration_unit, - STATE(2992), 1, - sym_comment, - ACTIONS(4775), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1572), 41, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [109097] = 5, + aux_sym__unquoted_in_list_token1, + [105772] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1826), 1, - sym__entry_separator, - ACTIONS(6000), 1, - anon_sym_RBRACK, - STATE(2993), 1, + STATE(3028), 1, sym_comment, - ACTIONS(5998), 45, + ACTIONS(2428), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2426), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -311274,6 +316906,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, @@ -311312,30 +316945,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [109157] = 5, + [105831] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2243), 1, - aux_sym__unquoted_in_list_token4, - STATE(2994), 1, + STATE(3029), 1, sym_comment, - ACTIONS(2241), 8, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2237), 38, + ACTIONS(2420), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2418), 46, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -311350,6 +316980,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -311367,14 +317000,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [109217] = 4, + [105890] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1044), 1, - sym__entry_separator, - STATE(2995), 1, + STATE(3030), 1, sym_comment, - ACTIONS(1042), 46, + ACTIONS(2232), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2230), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -311421,68 +317055,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [109275] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(2996), 1, - sym_comment, - ACTIONS(1540), 3, - sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1542), 44, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LPAREN2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [109333] = 4, + [105949] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1669), 1, - sym__entry_separator, - STATE(2997), 1, + STATE(3031), 1, sym_comment, - ACTIONS(1667), 46, + ACTIONS(2448), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2446), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -311529,12 +317110,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [109391] = 4, - ACTIONS(247), 1, + [106008] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(2998), 1, + ACTIONS(1852), 1, + aux_sym__unquoted_in_list_token2, + STATE(3032), 1, sym_comment, - ACTIONS(1659), 15, + ACTIONS(2277), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -311549,8 +317132,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1661), 32, + ACTIONS(2279), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -311583,73 +317166,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [109449] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6003), 1, - aux_sym__immediate_decimal_token2, - STATE(2999), 1, - sym_comment, - ACTIONS(1554), 2, - aux_sym_cmd_identifier_token41, - anon_sym_DOT_DOT2, - ACTIONS(1556), 44, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [109509] = 4, - ACTIONS(247), 1, + [106069] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3000), 1, + STATE(3033), 1, sym_comment, - ACTIONS(1046), 15, + ACTIONS(2456), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2454), 46, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -311658,8 +317212,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1048), 32, + [106128] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6012), 1, + sym__entry_separator, + ACTIONS(6014), 1, + sym_raw_string_begin, + STATE(2948), 1, + aux_sym__multiple_types_repeat1, + STATE(3034), 1, + sym_comment, + ACTIONS(6008), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -311667,23 +317240,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym__, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -311692,14 +317277,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [109567] = 4, + aux_sym_unquoted_token1, + [106191] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2410), 1, - sym__entry_separator, - STATE(3001), 1, + STATE(3035), 1, sym_comment, - ACTIONS(2408), 46, + ACTIONS(2488), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2486), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -311707,11 +317294,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -311745,15 +317332,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [109625] = 4, + aux_sym__unquoted_in_list_token1, + [106250] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1661), 1, - sym__entry_separator, - STATE(3002), 1, + STATE(3036), 1, sym_comment, - ACTIONS(1659), 46, + ACTIONS(2416), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2414), 46, anon_sym_true, anon_sym_false, anon_sym_null, @@ -311800,30 +317388,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [109683] = 5, + [106309] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2243), 1, - aux_sym__unquoted_in_list_token4, - STATE(3003), 1, + STATE(3037), 1, sym_comment, - ACTIONS(2247), 8, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2245), 38, + ACTIONS(2484), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2482), 46, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -311838,6 +317423,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -311855,28 +317443,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [109743] = 4, - ACTIONS(3), 1, + [106368] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3004), 1, + ACTIONS(1852), 1, + aux_sym__unquoted_in_list_token2, + STATE(3038), 1, sym_comment, - ACTIONS(2255), 8, + ACTIONS(1842), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1850), 33, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2253), 39, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [106429] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3039), 1, + sym_comment, + ACTIONS(2526), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2524), 46, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -311891,6 +317534,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -311908,16 +317554,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token4, - [109801] = 4, - ACTIONS(247), 1, + [106488] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3005), 1, + ACTIONS(6131), 1, + aux_sym__immediate_decimal_token2, + STATE(3040), 1, sym_comment, - ACTIONS(1653), 2, + ACTIONS(1596), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1655), 45, + ACTIONS(1598), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -311963,14 +317610,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [109859] = 4, + [106549] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1036), 1, + ACTIONS(1899), 1, sym__entry_separator, - STATE(3006), 1, + ACTIONS(6135), 1, + anon_sym_RBRACK, + ACTIONS(6138), 1, + sym_raw_string_begin, + STATE(3041), 1, sym_comment, - ACTIONS(1034), 46, + ACTIONS(6133), 45, anon_sym_true, anon_sym_false, anon_sym_null, @@ -311978,7 +317629,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, @@ -312017,26 +317667,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [109917] = 4, + [106612] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1723), 1, - sym__entry_separator, - STATE(3007), 1, + ACTIONS(2275), 1, + aux_sym__unquoted_in_list_token4, + STATE(3042), 1, sym_comment, - ACTIONS(1721), 46, + ACTIONS(5900), 9, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5895), 38, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -312051,9 +317706,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -312071,14 +317723,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [109975] = 5, - ACTIONS(247), 1, + [106673] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1552), 1, - aux_sym__unquoted_in_list_token2, - STATE(3008), 1, + ACTIONS(6140), 1, + aux_sym__immediate_decimal_token2, + STATE(3043), 1, sym_comment, - ACTIONS(2291), 14, + ACTIONS(1769), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -312093,7 +317745,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2295), 32, + ACTIONS(1771), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -312126,69 +317779,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [110035] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5953), 1, - aux_sym__immediate_decimal_token2, - STATE(3009), 1, - sym_comment, - ACTIONS(1518), 2, - aux_sym_cmd_identifier_token41, - anon_sym_DOT_DOT2, - ACTIONS(1520), 44, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [110095] = 4, - ACTIONS(3), 1, + [106734] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1060), 1, - sym__entry_separator, - STATE(3010), 1, + STATE(3044), 1, sym_comment, - ACTIONS(1058), 46, + ACTIONS(1703), 15, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1705), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -312201,31 +317814,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -312234,16 +317834,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [110153] = 5, - ACTIONS(247), 1, + [106793] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6005), 1, - anon_sym_LBRACK2, - STATE(3011), 1, + STATE(3045), 1, sym_comment, - ACTIONS(2313), 15, - anon_sym_LBRACK, + ACTIONS(2206), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -312258,13 +317854,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2317), 31, + ACTIONS(2212), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, @@ -312290,16 +317888,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [110213] = 4, - ACTIONS(247), 1, + [106851] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3012), 1, + STATE(3046), 1, sym_comment, - ACTIONS(1554), 2, + ACTIONS(1711), 2, + aux_sym_cmd_identifier_token41, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1556), 45, - ts_builtin_sym_end, + ACTIONS(1713), 45, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -312311,7 +317908,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LPAREN2, + anon_sym_RPAREN, + anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -312344,70 +317942,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [110271] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1040), 1, - sym__entry_separator, - STATE(3013), 1, - sym_comment, - ACTIONS(1038), 46, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [110329] = 4, - ACTIONS(247), 1, + [106909] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3014), 1, + STATE(3047), 1, sym_comment, - ACTIONS(1653), 3, + ACTIONS(1536), 3, sym__newline, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1655), 44, + ACTIONS(1538), 44, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -312452,127 +317996,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [110387] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2227), 1, - aux_sym__unquoted_in_list_token4, - STATE(3015), 1, - sym_comment, - ACTIONS(5895), 8, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5754), 38, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DOLLAR, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [110447] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1740), 1, - sym__entry_separator, - STATE(3016), 1, - sym_comment, - ACTIONS(1738), 46, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [110505] = 5, - ACTIONS(247), 1, + [106967] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5981), 1, - aux_sym__immediate_decimal_token2, - STATE(3017), 1, + STATE(3048), 1, sym_comment, - ACTIONS(1518), 3, - aux_sym_cmd_identifier_token41, + ACTIONS(1596), 3, sym__newline, anon_sym_DOT_DOT2, - ACTIONS(1520), 43, + aux_sym_unquoted_token2, + ACTIONS(1598), 44, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -312584,6 +318017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_LPAREN2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -312616,70 +318050,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [110565] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2031), 1, - sym__entry_separator, - STATE(3018), 1, - sym_comment, - ACTIONS(2029), 46, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [110623] = 4, - ACTIONS(247), 1, + [107025] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3019), 1, + STATE(3049), 1, sym_comment, - ACTIONS(1540), 2, + ACTIONS(1536), 2, + aux_sym_cmd_identifier_token41, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1542), 45, - ts_builtin_sym_end, + ACTIONS(1538), 45, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -312691,7 +318070,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LPAREN2, + anon_sym_RPAREN, + anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -312724,14 +318104,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [110681] = 5, - ACTIONS(247), 1, + [107083] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1798), 1, - aux_sym__unquoted_in_list_token2, - STATE(3020), 1, + STATE(3050), 1, sym_comment, - ACTIONS(2287), 14, + ACTIONS(2230), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -312746,7 +318124,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2289), 32, + ACTIONS(2232), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -312779,14 +318158,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [110741] = 4, - ACTIONS(3), 1, + [107141] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2035), 1, - sym__entry_separator, - STATE(3021), 1, + STATE(3051), 1, sym_comment, - ACTIONS(2033), 46, + ACTIONS(2113), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(2119), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -312799,31 +318192,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -312832,15 +318212,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [110799] = 5, - ACTIONS(247), 1, + [107199] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1798), 1, - aux_sym__unquoted_in_list_token2, - STATE(3022), 1, + STATE(3052), 1, sym_comment, - ACTIONS(1788), 14, + ACTIONS(2498), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -312855,7 +318232,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1796), 32, + ACTIONS(2500), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -312888,69 +318266,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [110859] = 4, - ACTIONS(247), 1, + [107257] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3023), 1, - sym_comment, - ACTIONS(1518), 3, - sym__newline, + ACTIONS(5027), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(5029), 1, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1520), 44, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_LPAREN2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(6142), 1, sym_filesize_unit, + ACTIONS(6144), 1, sym_duration_unit, - [110917] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3024), 1, + STATE(3053), 1, sym_comment, - ACTIONS(1518), 2, - aux_sym_cmd_identifier_token41, - anon_sym_DOT_DOT2, - ACTIONS(1520), 45, + ACTIONS(5031), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1640), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -312992,71 +318324,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [110975] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5903), 1, - sym__entry_separator, - STATE(2925), 1, - aux_sym__multiple_types_repeat1, - STATE(3025), 1, - sym_comment, - ACTIONS(5899), 45, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [111035] = 4, - ACTIONS(247), 1, + [107323] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3026), 1, + STATE(3054), 1, sym_comment, - ACTIONS(1738), 15, + ACTIONS(5895), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -313071,8 +318344,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1740), 32, + ACTIONS(5900), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -313105,12 +318378,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [111093] = 4, - ACTIONS(247), 1, + [107381] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3027), 1, + STATE(3055), 1, sym_comment, - ACTIONS(2477), 14, + ACTIONS(1364), 15, + anon_sym__, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -313124,18 +318398,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(2479), 32, + aux_sym_unquoted_token1, + ACTIONS(1362), 32, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, @@ -313158,12 +318432,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [111150] = 4, - ACTIONS(247), 1, + [107439] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3028), 1, + STATE(3056), 1, sym_comment, - ACTIONS(1659), 14, + ACTIONS(2474), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -313178,7 +318452,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1661), 32, + ACTIONS(2476), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -313211,12 +318486,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [111207] = 4, - ACTIONS(247), 1, + [107497] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3029), 1, + STATE(3057), 1, sym_comment, - ACTIONS(2412), 14, + ACTIONS(2531), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -313231,7 +318506,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2414), 32, + ACTIONS(2533), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -313264,16 +318540,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [111264] = 4, - ACTIONS(247), 1, + [107555] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3030), 1, + ACTIONS(6102), 1, + aux_sym__immediate_decimal_token2, + STATE(3058), 1, sym_comment, - ACTIONS(1554), 3, + ACTIONS(1536), 2, aux_sym_cmd_identifier_token41, - sym__newline, anon_sym_DOT_DOT2, - ACTIONS(1556), 43, + ACTIONS(1538), 44, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -313284,45 +318563,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [111321] = 4, - ACTIONS(247), 1, + [107615] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3031), 1, + STATE(3059), 1, sym_comment, - ACTIONS(2497), 14, + ACTIONS(2446), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -313337,7 +318615,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2499), 32, + ACTIONS(2448), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -313370,12 +318649,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [111378] = 4, - ACTIONS(247), 1, + [107673] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3032), 1, + STATE(3060), 1, sym_comment, - ACTIONS(2501), 14, + ACTIONS(2095), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -313390,7 +318669,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2503), 32, + ACTIONS(2097), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -313423,12 +318703,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [111435] = 4, - ACTIONS(247), 1, + [107731] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3033), 1, + STATE(3061), 1, sym_comment, - ACTIONS(2416), 14, + ACTIONS(2539), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -313443,7 +318723,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2418), 32, + ACTIONS(2541), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -313476,12 +318757,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [111492] = 4, - ACTIONS(247), 1, + [107789] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3034), 1, + STATE(3062), 1, sym_comment, - ACTIONS(1864), 14, + ACTIONS(6148), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -313496,7 +318777,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1866), 32, + ACTIONS(6146), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -313529,12 +318811,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [111549] = 4, - ACTIONS(247), 1, + [107847] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3035), 1, + STATE(3063), 1, + sym_comment, + ACTIONS(1711), 3, + sym__newline, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1713), 44, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LPAREN2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [107905] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3064), 1, sym_comment, - ACTIONS(2481), 14, + ACTIONS(6148), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -313549,7 +318885,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2483), 32, + ACTIONS(6146), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -313582,12 +318919,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [111606] = 4, - ACTIONS(247), 1, + [107963] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3036), 1, + STATE(3065), 1, sym_comment, - ACTIONS(1721), 14, + ACTIONS(2486), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -313602,7 +318939,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1723), 32, + ACTIONS(2488), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -313635,65 +318973,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [111663] = 4, - ACTIONS(247), 1, + [108021] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3037), 1, + STATE(3066), 1, sym_comment, - ACTIONS(1653), 3, - aux_sym_cmd_identifier_token41, - sym__newline, - anon_sym_DOT_DOT2, - ACTIONS(1655), 43, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [111720] = 4, - ACTIONS(247), 1, + ACTIONS(2502), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(2504), 33, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [108079] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3038), 1, + STATE(3067), 1, sym_comment, - ACTIONS(2505), 14, + ACTIONS(2414), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -313708,7 +319047,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2507), 32, + ACTIONS(2416), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -313741,12 +319081,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [111777] = 4, - ACTIONS(247), 1, + [108137] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3039), 1, + STATE(3068), 1, + sym_comment, + ACTIONS(1528), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1530), 45, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [108195] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3069), 1, sym_comment, - ACTIONS(1872), 14, + ACTIONS(6152), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -313761,7 +319155,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1874), 32, + ACTIONS(6150), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -313794,12 +319189,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [111834] = 4, - ACTIONS(247), 1, + [108253] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3040), 1, + ACTIONS(6117), 1, + aux_sym__immediate_decimal_token2, + STATE(3070), 1, + sym_comment, + ACTIONS(1536), 3, + aux_sym_cmd_identifier_token41, + sym__newline, + anon_sym_DOT_DOT2, + ACTIONS(1538), 43, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [108313] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3071), 1, sym_comment, - ACTIONS(1738), 14, + ACTIONS(2218), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -313814,7 +319264,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1740), 32, + ACTIONS(2220), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -313847,12 +319298,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [111891] = 4, - ACTIONS(247), 1, + [108371] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3041), 1, + STATE(3072), 1, sym_comment, - ACTIONS(1876), 14, + ACTIONS(2482), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -313867,7 +319318,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1878), 32, + ACTIONS(2484), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -313900,12 +319352,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [111948] = 4, - ACTIONS(247), 1, + [108429] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3042), 1, + STATE(3073), 1, sym_comment, - ACTIONS(2513), 14, + ACTIONS(2543), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -313920,7 +319372,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2515), 32, + ACTIONS(2545), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -313953,12 +319406,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [112005] = 4, - ACTIONS(247), 1, + [108487] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3043), 1, + STATE(3074), 1, sym_comment, - ACTIONS(2420), 14, + ACTIONS(1715), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -313973,7 +319426,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2422), 32, + ACTIONS(1717), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -314006,12 +319460,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [112062] = 4, - ACTIONS(247), 1, + [108545] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3044), 1, + STATE(3075), 1, sym_comment, - ACTIONS(1888), 14, + ACTIONS(6156), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -314026,7 +319480,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1890), 32, + ACTIONS(6154), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -314059,12 +319514,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [112119] = 4, - ACTIONS(247), 1, + [108603] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3045), 1, + STATE(3076), 1, sym_comment, - ACTIONS(2434), 14, + ACTIONS(2557), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -314079,7 +319534,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2436), 32, + ACTIONS(2559), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -314112,65 +319568,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [112176] = 4, - ACTIONS(247), 1, + [108661] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3046), 1, + STATE(3077), 1, sym_comment, - ACTIONS(2438), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(2440), 32, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [112233] = 4, - ACTIONS(247), 1, + ACTIONS(1536), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1538), 45, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [108719] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3047), 1, + STATE(3078), 1, sym_comment, - ACTIONS(1892), 14, + ACTIONS(6133), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -314185,7 +319642,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1894), 32, + ACTIONS(6138), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -314218,12 +319676,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [112290] = 4, - ACTIONS(247), 1, + [108777] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3048), 1, + STATE(3079), 1, sym_comment, - ACTIONS(1900), 14, + ACTIONS(5883), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -314238,7 +319696,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1902), 32, + ACTIONS(5893), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -314271,65 +319730,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [112347] = 4, - ACTIONS(247), 1, + [108835] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3049), 1, + STATE(3080), 1, sym_comment, - ACTIONS(2442), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(2444), 32, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [112404] = 4, - ACTIONS(247), 1, + ACTIONS(1596), 2, + aux_sym_cmd_identifier_token41, + anon_sym_DOT_DOT2, + ACTIONS(1598), 45, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [108893] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3050), 1, + STATE(3081), 1, sym_comment, - ACTIONS(2446), 14, + ACTIONS(1826), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -314344,7 +319804,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2448), 32, + ACTIONS(1828), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -314377,12 +319838,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [112461] = 4, - ACTIONS(247), 1, + [108951] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3051), 1, + STATE(3082), 1, sym_comment, - ACTIONS(1904), 14, + ACTIONS(1078), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -314397,7 +319858,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1906), 32, + ACTIONS(1080), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -314430,65 +319892,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [112518] = 4, - ACTIONS(247), 1, + [109009] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3052), 1, - sym_comment, - ACTIONS(6009), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(6007), 32, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, + ACTIONS(6158), 1, anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [112575] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3053), 1, + STATE(3083), 1, sym_comment, - ACTIONS(2450), 14, + ACTIONS(5972), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -314503,7 +319914,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2452), 32, + ACTIONS(5976), 32, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -314513,7 +319925,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, @@ -314536,12 +319947,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [112632] = 4, - ACTIONS(247), 1, + [109069] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3054), 1, + STATE(3084), 1, sym_comment, - ACTIONS(2454), 14, + ACTIONS(1062), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -314556,7 +319967,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2456), 32, + ACTIONS(1064), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -314589,12 +320001,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [112689] = 4, - ACTIONS(247), 1, + [109127] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3055), 1, + STATE(3085), 1, sym_comment, - ACTIONS(5942), 14, + ACTIONS(1703), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -314609,7 +320021,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(5944), 32, + ACTIONS(1705), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -314642,65 +320055,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [112746] = 4, - ACTIONS(247), 1, + [109185] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3056), 1, + ACTIONS(6160), 1, + aux_sym__immediate_decimal_token2, + STATE(3086), 1, sym_comment, - ACTIONS(1042), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1044), 32, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [112803] = 4, - ACTIONS(247), 1, + ACTIONS(1596), 3, + aux_sym_cmd_identifier_token41, + sym__newline, + anon_sym_DOT_DOT2, + ACTIONS(1598), 43, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [109245] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3057), 1, + STATE(3087), 1, sym_comment, - ACTIONS(1038), 14, + ACTIONS(1054), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -314715,7 +320130,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1040), 32, + ACTIONS(1056), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -314748,12 +320164,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [112860] = 4, - ACTIONS(247), 1, + [109303] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3058), 1, + STATE(3088), 1, sym_comment, - ACTIONS(6009), 14, + ACTIONS(2561), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -314768,7 +320184,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6007), 32, + ACTIONS(2563), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -314801,12 +320218,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [112917] = 4, - ACTIONS(247), 1, + [109361] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3059), 1, + STATE(3089), 1, sym_comment, - ACTIONS(2019), 14, + ACTIONS(1628), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -314821,7 +320238,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2025), 32, + ACTIONS(1640), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -314854,66 +320272,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [112974] = 5, - ACTIONS(247), 1, + [109419] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6013), 1, - anon_sym_COMMA, - STATE(3060), 1, + STATE(3090), 1, sym_comment, - ACTIONS(5830), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(6011), 31, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [113033] = 4, - ACTIONS(247), 1, + ACTIONS(1528), 3, + sym__newline, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1530), 44, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_LPAREN2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [109477] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3061), 1, + STATE(3091), 1, sym_comment, - ACTIONS(1034), 14, + ACTIONS(6069), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -314928,7 +320346,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1036), 32, + ACTIONS(6071), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -314961,12 +320380,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [113090] = 4, - ACTIONS(247), 1, + [109535] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3062), 1, + STATE(3092), 1, sym_comment, - ACTIONS(6017), 14, + ACTIONS(6164), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -314981,7 +320400,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6015), 32, + ACTIONS(6162), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -315014,13 +320434,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [113147] = 4, - ACTIONS(247), 1, + [109593] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3063), 1, + STATE(3093), 1, sym_comment, - ACTIONS(1311), 15, - anon_sym__, + ACTIONS(2565), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -315034,17 +320453,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1307), 31, + aux_sym__unquoted_in_list_token1, + ACTIONS(2567), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, @@ -315067,12 +320488,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [113204] = 4, - ACTIONS(247), 1, + [109651] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3064), 1, + STATE(3094), 1, sym_comment, - ACTIONS(5938), 14, + ACTIONS(2418), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -315087,7 +320508,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(5940), 32, + ACTIONS(2420), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -315120,12 +320542,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [113261] = 4, - ACTIONS(247), 1, + [109709] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3065), 1, + STATE(3095), 1, sym_comment, - ACTIONS(5640), 14, + ACTIONS(2001), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -315140,7 +320562,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(5651), 32, + ACTIONS(2003), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -315173,15 +320596,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [113318] = 4, - ACTIONS(247), 1, + [109767] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3066), 1, + ACTIONS(6166), 1, + aux_sym__immediate_decimal_token2, + STATE(3096), 1, sym_comment, - ACTIONS(1518), 2, + ACTIONS(1596), 2, aux_sym_cmd_identifier_token41, anon_sym_DOT_DOT2, - ACTIONS(1520), 44, + ACTIONS(1598), 44, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -315226,12 +320651,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [113375] = 4, - ACTIONS(247), 1, + [109827] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3067), 1, + STATE(3097), 1, + sym_comment, + ACTIONS(2234), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(2240), 33, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [109885] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3098), 1, sym_comment, - ACTIONS(2029), 14, + ACTIONS(2535), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -315246,7 +320725,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2031), 32, + ACTIONS(2537), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -315279,12 +320759,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [113432] = 4, - ACTIONS(247), 1, + [109943] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3068), 1, + STATE(3099), 1, sym_comment, - ACTIONS(2473), 14, + ACTIONS(5659), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -315299,7 +320779,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2475), 32, + ACTIONS(5666), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -315332,12 +320813,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [113489] = 4, - ACTIONS(247), 1, + [110001] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3069), 1, + STATE(3100), 1, sym_comment, - ACTIONS(1991), 14, + ACTIONS(2466), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -315352,7 +320833,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1997), 32, + ACTIONS(2468), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -315385,70 +320867,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [113546] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1560), 1, - sym__newline, - ACTIONS(4773), 1, - anon_sym_DOT_DOT2, - ACTIONS(4816), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(6019), 1, - sym_filesize_unit, - ACTIONS(6021), 1, - sym_duration_unit, - STATE(3070), 1, - sym_comment, - ACTIONS(4775), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1572), 39, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [113613] = 4, - ACTIONS(247), 1, + [110059] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3071), 1, + STATE(3101), 1, sym_comment, - ACTIONS(2517), 14, + ACTIONS(2017), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -315463,7 +320887,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2519), 32, + ACTIONS(2019), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -315496,12 +320921,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [113670] = 4, - ACTIONS(247), 1, + [110117] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3072), 1, + STATE(3102), 1, sym_comment, - ACTIONS(1058), 14, + ACTIONS(2551), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -315516,7 +320941,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1060), 32, + ACTIONS(2553), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -315549,65 +320975,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [113727] = 4, - ACTIONS(247), 1, + [110175] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3073), 1, + STATE(3103), 1, sym_comment, - ACTIONS(1540), 2, - aux_sym_cmd_identifier_token41, - anon_sym_DOT_DOT2, - ACTIONS(1542), 44, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [113784] = 4, - ACTIONS(247), 1, + ACTIONS(1038), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1040), 33, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [110233] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3074), 1, + STATE(3104), 1, sym_comment, - ACTIONS(1999), 14, + ACTIONS(2043), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -315622,7 +321049,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2005), 32, + ACTIONS(2045), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -315655,12 +321083,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [113841] = 4, - ACTIONS(247), 1, + [110291] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3075), 1, + STATE(3105), 1, sym_comment, - ACTIONS(2007), 14, + ACTIONS(2222), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -315675,7 +321103,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2013), 32, + ACTIONS(2228), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -315708,12 +321137,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [113898] = 4, - ACTIONS(247), 1, + [110349] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3076), 1, + STATE(3106), 1, sym_comment, - ACTIONS(2033), 14, + ACTIONS(2047), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -315728,7 +321157,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2035), 32, + ACTIONS(2049), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -315761,15 +321191,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [113955] = 4, - ACTIONS(247), 1, + [110407] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3077), 1, + STATE(3107), 1, sym_comment, - ACTIONS(1554), 2, - aux_sym_cmd_identifier_token41, + ACTIONS(1596), 2, anon_sym_DOT_DOT2, - ACTIONS(1556), 44, + aux_sym_unquoted_token2, + ACTIONS(1598), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -315782,6 +321212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -315814,118 +321245,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [114012] = 4, - ACTIONS(247), 1, + [110465] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3078), 1, - sym_comment, - ACTIONS(1518), 3, - aux_sym_cmd_identifier_token41, - sym__newline, - anon_sym_DOT_DOT2, - ACTIONS(1520), 43, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [114069] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3079), 1, - sym_comment, - ACTIONS(2521), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(2523), 32, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [114126] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3080), 1, + STATE(3108), 1, sym_comment, - ACTIONS(2466), 14, + ACTIONS(6079), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -315940,7 +321265,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2468), 32, + ACTIONS(6081), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -315973,12 +321299,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [114183] = 4, - ACTIONS(247), 1, + [110523] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3081), 1, + STATE(3109), 1, sym_comment, - ACTIONS(6025), 14, + ACTIONS(2524), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -315993,7 +321319,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6023), 32, + ACTIONS(2526), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -316026,12 +321353,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [114240] = 4, - ACTIONS(247), 1, + [110581] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3082), 1, + STATE(3110), 1, sym_comment, - ACTIONS(2489), 14, + ACTIONS(2434), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -316046,7 +321373,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2491), 32, + ACTIONS(2436), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -316079,12 +321407,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [114297] = 4, - ACTIONS(247), 1, + [110639] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3083), 1, + STATE(3111), 1, sym_comment, - ACTIONS(1560), 14, + ACTIONS(2059), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -316099,7 +321427,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1572), 32, + ACTIONS(2061), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -316132,12 +321461,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [114354] = 4, - ACTIONS(247), 1, + [110697] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3084), 1, + STATE(3112), 1, sym_comment, - ACTIONS(1667), 14, + ACTIONS(1528), 2, + aux_sym_cmd_identifier_token41, + anon_sym_DOT_DOT2, + ACTIONS(1530), 45, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [110755] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3113), 1, + sym_comment, + ACTIONS(2422), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -316152,7 +321535,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1669), 32, + ACTIONS(2424), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -316185,12 +321569,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [114411] = 4, - ACTIONS(247), 1, + [110813] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3085), 1, + STATE(3114), 1, sym_comment, - ACTIONS(2493), 14, + ACTIONS(2442), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -316205,7 +321589,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2495), 32, + ACTIONS(2444), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -316238,12 +321623,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [114468] = 4, - ACTIONS(247), 1, + [110871] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3086), 1, + STATE(3115), 1, sym_comment, - ACTIONS(2485), 14, + ACTIONS(2450), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -316258,7 +321643,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2487), 32, + ACTIONS(2452), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -316291,65 +321677,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [114525] = 4, - ACTIONS(247), 1, + [110929] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3087), 1, - sym_comment, - ACTIONS(1540), 3, - aux_sym_cmd_identifier_token41, - sym__newline, - anon_sym_DOT_DOT2, - ACTIONS(1542), 43, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [114582] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3088), 1, + STATE(3116), 1, sym_comment, - ACTIONS(2458), 14, + ACTIONS(2067), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -316364,7 +321697,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2460), 32, + ACTIONS(2069), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -316397,12 +321731,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [114639] = 4, - ACTIONS(247), 1, + [110987] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3089), 1, + STATE(3117), 1, sym_comment, - ACTIONS(6029), 14, + ACTIONS(2454), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -316417,7 +321751,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6027), 32, + ACTIONS(2456), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -316450,12 +321785,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [114696] = 4, - ACTIONS(247), 1, + [111045] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3090), 1, + STATE(3118), 1, sym_comment, - ACTIONS(5998), 14, + ACTIONS(1711), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1713), 45, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [111103] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3119), 1, + sym_comment, + ACTIONS(2087), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -316470,7 +321859,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6031), 32, + ACTIONS(2089), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -316503,65 +321893,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [114753] = 4, - ACTIONS(247), 1, + [111161] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3091), 1, + STATE(3120), 1, sym_comment, - ACTIONS(1653), 2, - aux_sym_cmd_identifier_token41, - anon_sym_DOT_DOT2, - ACTIONS(1655), 44, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [114810] = 4, - ACTIONS(247), 1, + ACTIONS(6170), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(6168), 33, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [111219] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3092), 1, + STATE(3121), 1, sym_comment, - ACTIONS(1848), 14, + ACTIONS(2426), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -316576,7 +321967,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1850), 32, + ACTIONS(2428), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -316609,12 +322001,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [114867] = 4, - ACTIONS(247), 1, + [111277] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3093), 1, + STATE(3122), 1, sym_comment, - ACTIONS(5724), 14, + ACTIONS(1058), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -316629,7 +322021,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(5889), 32, + ACTIONS(1060), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -316662,12 +322055,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [114924] = 4, - ACTIONS(247), 1, + [111335] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3094), 1, + STATE(3123), 1, sym_comment, - ACTIONS(6035), 14, + ACTIONS(1769), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -316682,7 +322075,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6033), 32, + ACTIONS(1771), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -316715,12 +322109,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [114981] = 4, - ACTIONS(247), 1, + [111393] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3095), 1, + STATE(3124), 1, sym_comment, - ACTIONS(6039), 14, + ACTIONS(2470), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -316735,7 +322129,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6037), 32, + ACTIONS(2472), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -316768,12 +322163,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [115038] = 4, - ACTIONS(247), 1, + [111451] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3096), 1, + STATE(3125), 1, sym_comment, - ACTIONS(5754), 14, + ACTIONS(6174), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -316788,7 +322183,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(5895), 32, + ACTIONS(6172), 33, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -316821,23 +322217,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [115095] = 8, - ACTIONS(247), 1, + [111509] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4946), 1, + STATE(3126), 1, + sym_comment, + ACTIONS(1536), 3, aux_sym_cmd_identifier_token41, - ACTIONS(4948), 1, + sym__newline, anon_sym_DOT_DOT2, - ACTIONS(6041), 1, + ACTIONS(1538), 43, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym_filesize_unit, - ACTIONS(6043), 1, sym_duration_unit, - STATE(3097), 1, + [111566] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3127), 1, sym_comment, - ACTIONS(4950), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1572), 40, + ACTIONS(1528), 2, + aux_sym_cmd_identifier_token41, + anon_sym_DOT_DOT2, + ACTIONS(1530), 44, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -316878,65 +322319,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [115160] = 4, - ACTIONS(247), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [111623] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3098), 1, + STATE(3128), 1, sym_comment, - ACTIONS(2462), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(2464), 32, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [115217] = 4, - ACTIONS(247), 1, + ACTIONS(1528), 3, + aux_sym_cmd_identifier_token41, + sym__newline, + anon_sym_DOT_DOT2, + ACTIONS(1530), 43, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [111680] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3099), 1, + STATE(3129), 1, sym_comment, - ACTIONS(2509), 14, + ACTIONS(6178), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -316951,7 +322396,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2511), 32, + ACTIONS(6176), 32, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -316961,7 +322407,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, @@ -316984,14 +322429,344 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [115274] = 4, - ACTIONS(247), 1, + [111737] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2245), 1, - anon_sym_DASH, - STATE(3100), 1, + STATE(3130), 1, + sym_comment, + ACTIONS(1536), 2, + aux_sym_cmd_identifier_token41, + anon_sym_DOT_DOT2, + ACTIONS(1538), 44, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [111794] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3131), 1, + sym_comment, + ACTIONS(1711), 2, + aux_sym_cmd_identifier_token41, + anon_sym_DOT_DOT2, + ACTIONS(1713), 44, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [111851] = 9, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1628), 1, + sym__newline, + ACTIONS(5027), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(5029), 1, + anon_sym_DOT_DOT2, + ACTIONS(6180), 1, + sym_filesize_unit, + ACTIONS(6182), 1, + sym_duration_unit, + STATE(3132), 1, + sym_comment, + ACTIONS(5031), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1640), 39, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [111918] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3133), 1, + sym_comment, + ACTIONS(1596), 2, + aux_sym_cmd_identifier_token41, + anon_sym_DOT_DOT2, + ACTIONS(1598), 44, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [111975] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3134), 1, sym_comment, - ACTIONS(2247), 44, + ACTIONS(1711), 3, + aux_sym_cmd_identifier_token41, + sym__newline, + anon_sym_DOT_DOT2, + ACTIONS(1713), 43, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [112032] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3135), 1, + sym_comment, + ACTIONS(1596), 3, + aux_sym_cmd_identifier_token41, + sym__newline, + anon_sym_DOT_DOT2, + ACTIONS(1598), 43, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [112089] = 7, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5029), 1, + anon_sym_DOT_DOT2, + ACTIONS(6184), 1, + sym_filesize_unit, + ACTIONS(6186), 1, + sym_duration_unit, + STATE(3136), 1, + sym_comment, + ACTIONS(5031), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1640), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -317004,10 +322779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -317036,37 +322808,94 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [115330] = 14, - ACTIONS(247), 1, + [112152] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6045), 1, + ACTIONS(5087), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(5089), 1, + anon_sym_DOT_DOT2, + ACTIONS(6188), 1, + sym_filesize_unit, + ACTIONS(6190), 1, + sym_duration_unit, + STATE(3137), 1, + sym_comment, + ACTIONS(5091), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1640), 40, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [112217] = 14, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6192), 1, anon_sym_COLON, - ACTIONS(6047), 1, + ACTIONS(6194), 1, anon_sym_LBRACK, - ACTIONS(6053), 1, + ACTIONS(6200), 1, anon_sym_list, - ACTIONS(6055), 1, + ACTIONS(6202), 1, anon_sym_LBRACE, - STATE(3101), 1, + STATE(3138), 1, sym_comment, - STATE(6589), 1, + STATE(7164), 1, sym_block, - STATE(7363), 1, + STATE(7471), 1, sym_returns, - STATE(7489), 1, + STATE(7831), 1, sym__one_type, - STATE(7590), 1, + STATE(7841), 1, sym__multiple_types, - STATE(7717), 1, + STATE(7842), 1, sym__type_annotation, - ACTIONS(6051), 2, + ACTIONS(6198), 2, anon_sym_table, anon_sym_record, - STATE(6559), 3, + STATE(6678), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6049), 31, + ACTIONS(6196), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -317098,37 +322927,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [115406] = 14, - ACTIONS(247), 1, + [112293] = 14, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6045), 1, + ACTIONS(6192), 1, anon_sym_COLON, - ACTIONS(6047), 1, + ACTIONS(6194), 1, anon_sym_LBRACK, - ACTIONS(6053), 1, + ACTIONS(6200), 1, anon_sym_list, - ACTIONS(6055), 1, + ACTIONS(6202), 1, anon_sym_LBRACE, - STATE(3102), 1, + STATE(3139), 1, sym_comment, - STATE(6590), 1, + STATE(6847), 1, sym_block, - STATE(7192), 1, + STATE(7413), 1, sym_returns, - STATE(7489), 1, + STATE(7831), 1, sym__one_type, - STATE(7590), 1, + STATE(7841), 1, sym__multiple_types, - STATE(7717), 1, + STATE(7842), 1, sym__type_annotation, - ACTIONS(6051), 2, + ACTIONS(6198), 2, anon_sym_table, anon_sym_record, - STATE(6559), 3, + STATE(6678), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6049), 31, + ACTIONS(6196), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -317160,37 +322989,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [115482] = 14, - ACTIONS(247), 1, + [112369] = 14, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6045), 1, + ACTIONS(6192), 1, anon_sym_COLON, - ACTIONS(6047), 1, + ACTIONS(6194), 1, anon_sym_LBRACK, - ACTIONS(6053), 1, + ACTIONS(6200), 1, anon_sym_list, - ACTIONS(6055), 1, + ACTIONS(6202), 1, anon_sym_LBRACE, - STATE(3103), 1, + STATE(3140), 1, sym_comment, - STATE(6269), 1, + STATE(7042), 1, sym_block, - STATE(7331), 1, + STATE(7578), 1, sym_returns, - STATE(7489), 1, + STATE(7831), 1, sym__one_type, - STATE(7590), 1, + STATE(7841), 1, sym__multiple_types, - STATE(7717), 1, + STATE(7842), 1, sym__type_annotation, - ACTIONS(6051), 2, + ACTIONS(6198), 2, anon_sym_table, anon_sym_record, - STATE(6559), 3, + STATE(6678), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6049), 31, + ACTIONS(6196), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -317222,37 +323051,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [115558] = 14, - ACTIONS(247), 1, + [112445] = 14, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6045), 1, + ACTIONS(6192), 1, anon_sym_COLON, - ACTIONS(6047), 1, + ACTIONS(6194), 1, anon_sym_LBRACK, - ACTIONS(6053), 1, + ACTIONS(6200), 1, anon_sym_list, - ACTIONS(6055), 1, + ACTIONS(6202), 1, anon_sym_LBRACE, - STATE(3104), 1, + STATE(3141), 1, sym_comment, - STATE(6272), 1, + STATE(7029), 1, sym_block, - STATE(7332), 1, + STATE(7576), 1, sym_returns, - STATE(7489), 1, + STATE(7831), 1, sym__one_type, - STATE(7590), 1, + STATE(7841), 1, sym__multiple_types, - STATE(7717), 1, + STATE(7842), 1, sym__type_annotation, - ACTIONS(6051), 2, + ACTIONS(6198), 2, anon_sym_table, anon_sym_record, - STATE(6559), 3, + STATE(6678), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6049), 31, + ACTIONS(6196), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -317284,37 +323113,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [115634] = 14, - ACTIONS(247), 1, + [112521] = 14, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6045), 1, + ACTIONS(6192), 1, anon_sym_COLON, - ACTIONS(6047), 1, + ACTIONS(6194), 1, anon_sym_LBRACK, - ACTIONS(6053), 1, + ACTIONS(6200), 1, anon_sym_list, - ACTIONS(6057), 1, + ACTIONS(6202), 1, anon_sym_LBRACE, - STATE(3105), 1, + STATE(3142), 1, sym_comment, - STATE(6739), 1, + STATE(7163), 1, sym_block, - STATE(7190), 1, + STATE(7468), 1, sym_returns, - STATE(7489), 1, + STATE(7831), 1, sym__one_type, - STATE(7590), 1, + STATE(7841), 1, sym__multiple_types, - STATE(7717), 1, + STATE(7842), 1, sym__type_annotation, - ACTIONS(6051), 2, + ACTIONS(6198), 2, anon_sym_table, anon_sym_record, - STATE(6559), 3, + STATE(6678), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6049), 31, + ACTIONS(6196), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -317346,20 +323175,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [115710] = 8, - ACTIONS(247), 1, + [112597] = 14, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5006), 1, - anon_sym_DOT, - STATE(1570), 1, - sym_path, - STATE(1659), 1, - sym_cell_path, - STATE(1942), 1, - aux_sym_cell_path_repeat1, - STATE(3106), 1, + ACTIONS(6192), 1, + anon_sym_COLON, + ACTIONS(6194), 1, + anon_sym_LBRACK, + ACTIONS(6200), 1, + anon_sym_list, + ACTIONS(6202), 1, + anon_sym_LBRACE, + STATE(3143), 1, + sym_comment, + STATE(6880), 1, + sym_block, + STATE(7572), 1, + sym_returns, + STATE(7831), 1, + sym__one_type, + STATE(7841), 1, + sym__multiple_types, + STATE(7842), 1, + sym__type_annotation, + ACTIONS(6198), 2, + anon_sym_table, + anon_sym_record, + STATE(6678), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6196), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [112673] = 7, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5089), 1, + anon_sym_DOT_DOT2, + ACTIONS(6204), 1, + sym_filesize_unit, + ACTIONS(6206), 1, + sym_duration_unit, + STATE(3144), 1, sym_comment, - ACTIONS(6059), 13, + ACTIONS(5091), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1640), 40, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -317371,9 +323264,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(1914), 28, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -317402,14 +323292,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [115774] = 4, - ACTIONS(247), 1, + [112735] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2229), 1, - anon_sym_DASH, - STATE(3107), 1, + ACTIONS(5135), 1, + anon_sym_DOT, + STATE(1693), 1, + sym_path, + STATE(1891), 1, + sym_cell_path, + STATE(1963), 1, + aux_sym_cell_path_repeat1, + STATE(3145), 1, sym_comment, - ACTIONS(2233), 44, + ACTIONS(6208), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -317422,10 +323318,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, + ACTIONS(1895), 28, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -317454,37 +323348,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [115830] = 14, - ACTIONS(247), 1, + [112799] = 14, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6045), 1, + ACTIONS(6192), 1, anon_sym_COLON, - ACTIONS(6047), 1, + ACTIONS(6194), 1, anon_sym_LBRACK, - ACTIONS(6053), 1, + ACTIONS(6200), 1, anon_sym_list, - ACTIONS(6055), 1, + ACTIONS(6211), 1, anon_sym_LBRACE, - STATE(3108), 1, + STATE(3146), 1, sym_comment, - STATE(6504), 1, + STATE(6424), 1, sym_block, - STATE(7341), 1, + STATE(7461), 1, sym_returns, - STATE(7489), 1, + STATE(7831), 1, sym__one_type, - STATE(7590), 1, + STATE(7841), 1, sym__multiple_types, - STATE(7717), 1, + STATE(7842), 1, sym__type_annotation, - ACTIONS(6051), 2, + ACTIONS(6198), 2, anon_sym_table, anon_sym_record, - STATE(6559), 3, + STATE(6678), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6049), 31, + ACTIONS(6196), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -317516,37 +323410,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [115906] = 14, - ACTIONS(247), 1, + [112875] = 14, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6045), 1, + ACTIONS(6192), 1, anon_sym_COLON, - ACTIONS(6047), 1, + ACTIONS(6194), 1, anon_sym_LBRACK, - ACTIONS(6053), 1, + ACTIONS(6200), 1, anon_sym_list, - ACTIONS(6055), 1, + ACTIONS(6211), 1, anon_sym_LBRACE, - STATE(3109), 1, + STATE(3147), 1, sym_comment, - STATE(6509), 1, + STATE(6652), 1, sym_block, - STATE(7342), 1, + STATE(7464), 1, sym_returns, - STATE(7489), 1, + STATE(7831), 1, sym__one_type, - STATE(7590), 1, + STATE(7841), 1, sym__multiple_types, - STATE(7717), 1, + STATE(7842), 1, sym__type_annotation, - ACTIONS(6051), 2, + ACTIONS(6198), 2, anon_sym_table, anon_sym_record, - STATE(6559), 3, + STATE(6678), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6049), 31, + ACTIONS(6196), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -317578,144 +323472,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [115982] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4948), 1, - anon_sym_DOT_DOT2, - ACTIONS(6062), 1, - sym_filesize_unit, - ACTIONS(6064), 1, - sym_duration_unit, - STATE(3110), 1, - sym_comment, - ACTIONS(4950), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1572), 40, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [116044] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3111), 1, - sym_comment, - ACTIONS(6068), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(6066), 31, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [116100] = 14, - ACTIONS(247), 1, + [112951] = 14, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6045), 1, + ACTIONS(6192), 1, anon_sym_COLON, - ACTIONS(6047), 1, + ACTIONS(6194), 1, anon_sym_LBRACK, - ACTIONS(6053), 1, + ACTIONS(6200), 1, anon_sym_list, - ACTIONS(6057), 1, + ACTIONS(6211), 1, anon_sym_LBRACE, - STATE(3112), 1, + STATE(3148), 1, sym_comment, - STATE(6712), 1, + STATE(6443), 1, sym_block, - STATE(7259), 1, + STATE(7454), 1, sym_returns, - STATE(7489), 1, + STATE(7831), 1, sym__one_type, - STATE(7590), 1, + STATE(7841), 1, sym__multiple_types, - STATE(7717), 1, + STATE(7842), 1, sym__type_annotation, - ACTIONS(6051), 2, + ACTIONS(6198), 2, anon_sym_table, anon_sym_record, - STATE(6559), 3, + STATE(6678), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6049), 31, + ACTIONS(6196), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -317747,37 +323534,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [116176] = 14, - ACTIONS(247), 1, + [113027] = 14, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6045), 1, + ACTIONS(6192), 1, anon_sym_COLON, - ACTIONS(6047), 1, + ACTIONS(6194), 1, anon_sym_LBRACK, - ACTIONS(6053), 1, + ACTIONS(6200), 1, anon_sym_list, - ACTIONS(6057), 1, + ACTIONS(6211), 1, anon_sym_LBRACE, - STATE(3113), 1, + STATE(3149), 1, sym_comment, - STATE(6982), 1, + STATE(6452), 1, sym_block, - STATE(7269), 1, + STATE(7455), 1, sym_returns, - STATE(7489), 1, + STATE(7831), 1, sym__one_type, - STATE(7590), 1, + STATE(7841), 1, sym__multiple_types, - STATE(7717), 1, + STATE(7842), 1, sym__type_annotation, - ACTIONS(6051), 2, + ACTIONS(6198), 2, anon_sym_table, anon_sym_record, - STATE(6559), 3, + STATE(6678), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6049), 31, + ACTIONS(6196), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -317809,37 +323596,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [116252] = 14, - ACTIONS(247), 1, + [113103] = 14, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6045), 1, + ACTIONS(6192), 1, anon_sym_COLON, - ACTIONS(6047), 1, + ACTIONS(6194), 1, anon_sym_LBRACK, - ACTIONS(6053), 1, + ACTIONS(6200), 1, anon_sym_list, - ACTIONS(6057), 1, + ACTIONS(6211), 1, anon_sym_LBRACE, - STATE(3114), 1, + STATE(3150), 1, sym_comment, - STATE(6983), 1, + STATE(6544), 1, sym_block, - STATE(7271), 1, + STATE(7483), 1, sym_returns, - STATE(7489), 1, + STATE(7831), 1, sym__one_type, - STATE(7590), 1, + STATE(7841), 1, sym__multiple_types, - STATE(7717), 1, + STATE(7842), 1, sym__type_annotation, - ACTIONS(6051), 2, + ACTIONS(6198), 2, anon_sym_table, anon_sym_record, - STATE(6559), 3, + STATE(6678), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6049), 31, + ACTIONS(6196), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -317871,37 +323658,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [116328] = 14, - ACTIONS(247), 1, + [113179] = 14, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6045), 1, + ACTIONS(6192), 1, anon_sym_COLON, - ACTIONS(6047), 1, + ACTIONS(6194), 1, anon_sym_LBRACK, - ACTIONS(6053), 1, + ACTIONS(6200), 1, anon_sym_list, - ACTIONS(6057), 1, + ACTIONS(6211), 1, anon_sym_LBRACE, - STATE(3115), 1, + STATE(3151), 1, sym_comment, - STATE(6669), 1, + STATE(6571), 1, sym_block, - STATE(7333), 1, + STATE(7485), 1, sym_returns, - STATE(7489), 1, + STATE(7831), 1, sym__one_type, - STATE(7590), 1, + STATE(7841), 1, sym__multiple_types, - STATE(7717), 1, + STATE(7842), 1, sym__type_annotation, - ACTIONS(6051), 2, + ACTIONS(6198), 2, anon_sym_table, anon_sym_record, - STATE(6559), 3, + STATE(6678), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6049), 31, + ACTIONS(6196), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -317933,97 +323720,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [116404] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6070), 1, - anon_sym_DOLLAR, - ACTIONS(6072), 1, - anon_sym_LPAREN2, - ACTIONS(6074), 1, - anon_sym_DOT, - ACTIONS(6078), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6080), 1, - aux_sym__immediate_decimal_token5, - STATE(3116), 1, - sym_comment, - STATE(3379), 1, - sym__immediate_decimal, - ACTIONS(6076), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3377), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1496), 9, - anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1506), 26, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [116476] = 14, - ACTIONS(247), 1, + [113255] = 14, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6045), 1, + ACTIONS(6192), 1, anon_sym_COLON, - ACTIONS(6047), 1, + ACTIONS(6194), 1, anon_sym_LBRACK, - ACTIONS(6053), 1, + ACTIONS(6200), 1, anon_sym_list, - ACTIONS(6055), 1, + ACTIONS(6211), 1, anon_sym_LBRACE, - STATE(3117), 1, + STATE(3152), 1, sym_comment, - STATE(6147), 1, + STATE(6740), 1, sym_block, - STATE(7350), 1, + STATE(7452), 1, sym_returns, - STATE(7489), 1, + STATE(7831), 1, sym__one_type, - STATE(7590), 1, + STATE(7841), 1, sym__multiple_types, - STATE(7717), 1, + STATE(7842), 1, sym__type_annotation, - ACTIONS(6051), 2, + ACTIONS(6198), 2, anon_sym_table, anon_sym_record, - STATE(6559), 3, + STATE(6678), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6049), 31, + ACTIONS(6196), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -318055,37 +323782,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [116552] = 14, - ACTIONS(247), 1, + [113331] = 14, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6045), 1, + ACTIONS(6192), 1, anon_sym_COLON, - ACTIONS(6047), 1, + ACTIONS(6194), 1, anon_sym_LBRACK, - ACTIONS(6053), 1, + ACTIONS(6200), 1, anon_sym_list, - ACTIONS(6055), 1, + ACTIONS(6211), 1, anon_sym_LBRACE, - STATE(3118), 1, + STATE(3153), 1, sym_comment, - STATE(6150), 1, + STATE(6736), 1, sym_block, - STATE(7188), 1, + STATE(7451), 1, sym_returns, - STATE(7489), 1, + STATE(7831), 1, sym__one_type, - STATE(7590), 1, + STATE(7841), 1, sym__multiple_types, - STATE(7717), 1, + STATE(7842), 1, sym__type_annotation, - ACTIONS(6051), 2, + ACTIONS(6198), 2, anon_sym_table, anon_sym_record, - STATE(6559), 3, + STATE(6678), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6049), 31, + ACTIONS(6196), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -318117,99 +323844,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [116628] = 14, - ACTIONS(247), 1, + [113407] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6045), 1, - anon_sym_COLON, - ACTIONS(6047), 1, - anon_sym_LBRACK, - ACTIONS(6053), 1, - anon_sym_list, - ACTIONS(6057), 1, - anon_sym_LBRACE, - STATE(3119), 1, + ACTIONS(2293), 1, + anon_sym_DASH, + STATE(3154), 1, sym_comment, - STATE(6734), 1, - sym_block, - STATE(7300), 1, - sym_returns, - STATE(7489), 1, - sym__one_type, - STATE(7590), 1, - sym__multiple_types, - STATE(7717), 1, - sym__type_annotation, - ACTIONS(6051), 2, - anon_sym_table, - anon_sym_record, - STATE(6559), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6049), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [116704] = 14, - ACTIONS(247), 1, + ACTIONS(2297), 44, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [113463] = 14, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6045), 1, + ACTIONS(6192), 1, anon_sym_COLON, - ACTIONS(6047), 1, + ACTIONS(6194), 1, anon_sym_LBRACK, - ACTIONS(6053), 1, + ACTIONS(6200), 1, anon_sym_list, - ACTIONS(6057), 1, + ACTIONS(6202), 1, anon_sym_LBRACE, - STATE(3120), 1, + STATE(3155), 1, sym_comment, - STATE(6701), 1, + STATE(7269), 1, sym_block, - STATE(7218), 1, + STATE(7551), 1, sym_returns, - STATE(7489), 1, + STATE(7831), 1, sym__one_type, - STATE(7590), 1, + STATE(7841), 1, sym__multiple_types, - STATE(7717), 1, + STATE(7842), 1, sym__type_annotation, - ACTIONS(6051), 2, + ACTIONS(6198), 2, anon_sym_table, anon_sym_record, - STATE(6559), 3, + STATE(6678), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6049), 31, + ACTIONS(6196), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -318241,37 +323958,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [116780] = 14, - ACTIONS(247), 1, + [113539] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6045), 1, + ACTIONS(2303), 1, + anon_sym_DASH, + STATE(3156), 1, + sym_comment, + ACTIONS(2305), 44, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [113595] = 14, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6192), 1, anon_sym_COLON, - ACTIONS(6047), 1, + ACTIONS(6194), 1, anon_sym_LBRACK, - ACTIONS(6053), 1, + ACTIONS(6200), 1, anon_sym_list, - ACTIONS(6057), 1, + ACTIONS(6202), 1, anon_sym_LBRACE, - STATE(3121), 1, + STATE(3157), 1, sym_comment, - STATE(6661), 1, + STATE(7287), 1, sym_block, - STATE(7253), 1, + STATE(7558), 1, sym_returns, - STATE(7489), 1, + STATE(7831), 1, sym__one_type, - STATE(7590), 1, + STATE(7841), 1, sym__multiple_types, - STATE(7717), 1, + STATE(7842), 1, sym__type_annotation, - ACTIONS(6051), 2, + ACTIONS(6198), 2, anon_sym_table, anon_sym_record, - STATE(6559), 3, + STATE(6678), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6049), 31, + ACTIONS(6196), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -318303,14 +324072,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [116856] = 4, - ACTIONS(247), 1, + [113671] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2237), 1, + ACTIONS(2281), 1, anon_sym_DASH, - STATE(3122), 1, + STATE(3158), 1, sym_comment, - ACTIONS(2241), 44, + ACTIONS(2285), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -318355,20 +324124,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [116912] = 8, - ACTIONS(247), 1, + [113727] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5012), 1, + ACTIONS(5125), 1, anon_sym_DOT, - STATE(1883), 1, + ACTIONS(6213), 1, + sym__newline, + STATE(1909), 1, aux_sym_cell_path_repeat1, - STATE(2107), 1, + STATE(2132), 1, sym_path, - STATE(2423), 1, + STATE(2409), 1, sym_cell_path, - STATE(3123), 1, + STATE(3159), 1, + sym_comment, + ACTIONS(6208), 11, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + ACTIONS(1895), 28, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [113792] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5149), 1, + anon_sym_DOT, + STATE(1966), 1, + aux_sym_cell_path_repeat1, + STATE(2151), 1, + sym_path, + STATE(2463), 1, + sym_cell_path, + STATE(3160), 1, sym_comment, - ACTIONS(6059), 12, + ACTIONS(6208), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -318381,7 +324206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - ACTIONS(1914), 28, + ACTIONS(1895), 28, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -318410,29 +324235,223 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [116975] = 11, - ACTIONS(247), 1, + [113855] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6072), 1, + ACTIONS(2283), 1, anon_sym_LPAREN2, - ACTIONS(6078), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6080), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6082), 1, - anon_sym_DOLLAR, - STATE(3124), 1, + ACTIONS(2287), 1, + aux_sym_unquoted_token4, + STATE(3161), 1, sym_comment, - STATE(3427), 1, - sym__immediate_decimal, - ACTIONS(6084), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3402), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1496), 9, + ACTIONS(2285), 41, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [113911] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2295), 1, + anon_sym_LPAREN2, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + STATE(3162), 1, + sym_comment, + ACTIONS(2297), 41, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [113967] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2295), 1, + anon_sym_LPAREN2, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + STATE(3163), 1, + sym_comment, + ACTIONS(2305), 41, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [114023] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2289), 1, + aux_sym_unquoted_token4, + STATE(3164), 1, + sym_comment, + ACTIONS(2291), 42, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [114077] = 7, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6216), 1, + anon_sym_DOT, + STATE(3165), 1, + sym_comment, + STATE(3167), 1, + aux_sym_cell_path_repeat1, + STATE(3337), 1, + sym_path, + ACTIONS(1027), 10, anon_sym_DASH, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -318441,7 +324460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1506), 26, + ACTIONS(1029), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -318455,11 +324474,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_DASH_DASH, + anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -318468,22 +324491,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [117044] = 9, - ACTIONS(247), 1, + [114137] = 12, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4956), 1, - anon_sym_DOT, - ACTIONS(6086), 1, + ACTIONS(3766), 1, sym__newline, - STATE(1794), 1, - aux_sym_cell_path_repeat1, - STATE(2042), 1, + ACTIONS(6200), 1, + anon_sym_list, + ACTIONS(6218), 1, + anon_sym_RBRACK, + STATE(3166), 1, + sym_comment, + STATE(3180), 1, + aux_sym_shebang_repeat1, + STATE(3346), 1, + aux_sym__multiple_types_repeat2, + STATE(7139), 1, + sym__one_type, + STATE(7870), 1, + sym__type_annotation, + ACTIONS(6198), 2, + anon_sym_table, + anon_sym_record, + STATE(6678), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6196), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [114207] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6220), 1, + anon_sym_DOT, + STATE(3337), 1, sym_path, - STATE(2379), 1, - sym_cell_path, - STATE(3125), 1, + STATE(3167), 2, sym_comment, - ACTIONS(6059), 11, + aux_sym_cell_path_repeat1, + ACTIONS(1031), 10, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1033), 30, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -318495,58 +324583,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - ACTIONS(1914), 28, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [117109] = 11, - ACTIONS(247), 1, + anon_sym_DASH_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [114265] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6072), 1, - anon_sym_LPAREN2, - ACTIONS(6078), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6080), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6082), 1, - anon_sym_DOLLAR, - STATE(3126), 1, + STATE(3168), 1, sym_comment, - STATE(3423), 1, - sym__immediate_decimal, - ACTIONS(6084), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3421), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1586), 9, + ACTIONS(1078), 10, anon_sym_DASH, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -318555,7 +324617,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1588), 26, + ACTIONS(1080), 33, + anon_sym_EQ, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -318567,13 +324630,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, anon_sym_RPAREN, + anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_in, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -318582,29 +324651,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [117178] = 11, - ACTIONS(247), 1, + [114319] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6072), 1, + ACTIONS(2273), 1, anon_sym_LPAREN2, - ACTIONS(6078), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6080), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6082), 1, - anon_sym_DOLLAR, - STATE(3127), 1, + ACTIONS(2275), 1, + aux_sym_unquoted_token4, + STATE(3169), 1, sym_comment, - STATE(3419), 1, - sym__immediate_decimal, - ACTIONS(6084), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3381), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1602), 9, + ACTIONS(1092), 41, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [114375] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3170), 1, + sym_comment, + ACTIONS(1058), 11, anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -318613,7 +324719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1604), 26, + ACTIONS(1060), 31, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -318627,11 +324733,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_DASH_DASH, + anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_QMARK2, anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -318640,29 +324751,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [117247] = 11, - ACTIONS(247), 1, + [114428] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6072), 1, - anon_sym_LPAREN2, - ACTIONS(6078), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6080), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6082), 1, - anon_sym_DOLLAR, - STATE(3128), 1, + ACTIONS(6223), 1, + anon_sym_QMARK2, + STATE(3171), 1, sym_comment, - STATE(3426), 1, - sym__immediate_decimal, - ACTIONS(6084), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3425), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1576), 9, + ACTIONS(1042), 11, anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -318671,7 +324770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1584), 26, + ACTIONS(1044), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -318685,11 +324784,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_DASH_DASH, + anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -318698,16 +324801,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [117316] = 5, - ACTIONS(3), 1, + [114483] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2225), 1, - anon_sym_LPAREN2, - ACTIONS(2227), 1, - aux_sym_unquoted_token4, - STATE(3129), 1, + ACTIONS(6225), 1, + anon_sym_QMARK2, + STATE(3172), 1, sym_comment, - ACTIONS(1072), 41, + ACTIONS(1048), 11, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1050), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -318720,7 +324833,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [114538] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2289), 1, + aux_sym_unquoted_token4, + STATE(3173), 1, + sym_comment, + ACTIONS(2291), 41, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -318749,14 +324900,81 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [117372] = 4, - ACTIONS(247), 1, + [114591] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3130), 1, + ACTIONS(1090), 1, + sym__newline, + ACTIONS(2273), 1, + anon_sym_LPAREN2, + ACTIONS(2275), 1, + aux_sym_unquoted_token4, + STATE(3174), 1, sym_comment, - ACTIONS(1058), 10, - anon_sym_DASH, - anon_sym_DOT_DOT2, + ACTIONS(1092), 39, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [114648] = 12, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6227), 1, + anon_sym_DOLLAR, + ACTIONS(6229), 1, + anon_sym_LPAREN2, + ACTIONS(6231), 1, + anon_sym_DOT, + ACTIONS(6235), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6237), 1, + aux_sym__immediate_decimal_token5, + STATE(3175), 1, + sym_comment, + STATE(3535), 1, + sym__immediate_decimal, + ACTIONS(6233), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3533), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1560), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -318765,8 +324983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1060), 33, - anon_sym_EQ, + ACTIONS(1570), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -318778,19 +324995,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_COLON, anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -318799,17 +325008,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [117426] = 6, - ACTIONS(247), 1, + [114717] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6089), 1, + ACTIONS(6216), 1, anon_sym_DOT, - STATE(3242), 1, - sym_path, - STATE(3131), 2, - sym_comment, + STATE(3165), 1, aux_sym_cell_path_repeat1, - ACTIONS(1015), 10, + STATE(3168), 1, + sym_cell_path, + STATE(3176), 1, + sym_comment, + STATE(3337), 1, + sym_path, + ACTIONS(1021), 10, anon_sym_DASH, anon_sym_DOT_DOT2, anon_sym_err_GT, @@ -318820,7 +325032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1017), 30, + ACTIONS(1023), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -318834,10 +325046,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and, anon_sym_xor, anon_sym_or, @@ -318851,29 +325061,324 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [117484] = 7, - ACTIONS(247), 1, + [114778] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6092), 1, - anon_sym_DOT, - STATE(3131), 1, - aux_sym_cell_path_repeat1, - STATE(3132), 1, + ACTIONS(2281), 1, + sym__newline, + ACTIONS(2283), 1, + anon_sym_LPAREN2, + ACTIONS(2287), 1, + aux_sym_unquoted_token4, + STATE(3177), 1, + sym_comment, + ACTIONS(2285), 39, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [114835] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2293), 1, + sym__newline, + ACTIONS(2295), 1, + anon_sym_LPAREN2, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + STATE(3178), 1, + sym_comment, + ACTIONS(2297), 39, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [114892] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2295), 1, + anon_sym_LPAREN2, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + ACTIONS(2303), 1, + sym__newline, + STATE(3179), 1, + sym_comment, + ACTIONS(2305), 39, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [114949] = 11, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(6200), 1, + anon_sym_list, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(3180), 1, + sym_comment, + STATE(3340), 1, + aux_sym__multiple_types_repeat2, + STATE(6753), 1, + sym__one_type, + STATE(7870), 1, + sym__type_annotation, + ACTIONS(6198), 2, + anon_sym_table, + anon_sym_record, + STATE(6678), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6196), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [115016] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5027), 1, + aux_sym_cmd_identifier_token37, + STATE(3181), 1, + sym_comment, + ACTIONS(2291), 41, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [115069] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5027), 1, + aux_sym_cmd_identifier_token37, + STATE(3182), 1, + sym_comment, + ACTIONS(2285), 41, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [115122] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2273), 1, + anon_sym_LPAREN2, + ACTIONS(2275), 1, + aux_sym_unquoted_token4, + STATE(3183), 1, sym_comment, - STATE(3242), 1, - sym_path, - ACTIONS(1011), 10, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1013), 30, + ACTIONS(1092), 40, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -318885,35 +325390,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [117544] = 5, - ACTIONS(3), 1, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [115177] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2239), 1, - anon_sym_LPAREN2, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - STATE(3133), 1, + ACTIONS(5285), 1, + aux_sym_cmd_identifier_token41, + STATE(3184), 1, sym_comment, - ACTIONS(2241), 41, + ACTIONS(2297), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -318955,16 +325467,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [117600] = 5, - ACTIONS(3), 1, + [115230] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2239), 1, - anon_sym_LPAREN2, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - STATE(3134), 1, + ACTIONS(5285), 1, + aux_sym_cmd_identifier_token41, + STATE(3185), 1, sym_comment, - ACTIONS(2247), 41, + ACTIONS(2305), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -319006,14 +325516,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [117656] = 4, + [115283] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2253), 1, - aux_sym_unquoted_token4, - STATE(3135), 1, + ACTIONS(5027), 1, + aux_sym_cmd_identifier_token37, + STATE(3186), 1, sym_comment, - ACTIONS(2255), 42, + ACTIONS(1640), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -319027,7 +325537,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -319056,74 +325565,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [117710] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(6053), 1, - anon_sym_list, - ACTIONS(6094), 1, - anon_sym_RBRACK, - STATE(3136), 1, - sym_comment, - STATE(3148), 1, - aux_sym_shebang_repeat1, - STATE(3308), 1, - aux_sym__multiple_types_repeat2, - STATE(6968), 1, - sym__one_type, - STATE(7704), 1, - sym__type_annotation, - ACTIONS(6051), 2, - anon_sym_table, - anon_sym_record, - STATE(6559), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6049), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [117780] = 5, + [115336] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2231), 1, + ACTIONS(2283), 1, anon_sym_LPAREN2, - ACTIONS(2235), 1, + ACTIONS(2287), 1, aux_sym_unquoted_token4, - STATE(3137), 1, + STATE(3187), 1, sym_comment, - ACTIONS(2233), 41, + ACTIONS(2285), 40, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -319135,8 +325587,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -319165,18 +325615,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [117836] = 6, + [115391] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1070), 1, + STATE(3188), 1, + sym_comment, + ACTIONS(2289), 2, sym__newline, - ACTIONS(2225), 1, - anon_sym_LPAREN2, - ACTIONS(2227), 1, aux_sym_unquoted_token4, - STATE(3138), 1, - sym_comment, - ACTIONS(1072), 39, + ACTIONS(2291), 40, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -319188,6 +325635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_LPAREN2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -319216,16 +325664,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [117893] = 6, - ACTIONS(247), 1, + [115444] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6096), 1, + ACTIONS(6239), 1, anon_sym_DOT, - ACTIONS(6098), 1, + ACTIONS(6241), 1, aux_sym__immediate_decimal_token2, - STATE(3139), 1, + STATE(3189), 1, sym_comment, - ACTIONS(1667), 10, + ACTIONS(1715), 10, anon_sym_DASH, anon_sym_DOT_DOT2, anon_sym_err_GT, @@ -319236,7 +325684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1669), 30, + ACTIONS(1717), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -319267,69 +325715,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [117950] = 6, - ACTIONS(3), 1, + [115501] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2229), 1, - sym__newline, - ACTIONS(2231), 1, - anon_sym_LPAREN2, - ACTIONS(2235), 1, - aux_sym_unquoted_token4, - STATE(3140), 1, + ACTIONS(6243), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6245), 1, + aux_sym__immediate_decimal_token2, + STATE(3190), 1, sym_comment, - ACTIONS(2233), 39, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [118007] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2239), 1, - anon_sym_LPAREN2, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - ACTIONS(2245), 1, + ACTIONS(1703), 10, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1705), 30, sym__newline, - STATE(3141), 1, - sym_comment, - ACTIONS(2247), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -319341,44 +325748,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [118064] = 5, + anon_sym_DASH_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [115558] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2239), 1, + ACTIONS(2295), 1, anon_sym_LPAREN2, - ACTIONS(2243), 1, + ACTIONS(2299), 1, aux_sym_unquoted_token4, - STATE(3142), 1, + STATE(3191), 1, sym_comment, - ACTIONS(2241), 40, + ACTIONS(2297), 40, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -319419,16 +325816,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [118119] = 5, + [115613] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2239), 1, + ACTIONS(2295), 1, anon_sym_LPAREN2, - ACTIONS(2243), 1, + ACTIONS(2299), 1, aux_sym_unquoted_token4, - STATE(3143), 1, + STATE(3192), 1, sym_comment, - ACTIONS(2247), 40, + ACTIONS(2305), 40, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -319469,18 +325866,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [118174] = 6, - ACTIONS(3), 1, + [115668] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2237), 1, - sym__newline, - ACTIONS(2239), 1, - anon_sym_LPAREN2, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - STATE(3144), 1, + STATE(3193), 1, sym_comment, - ACTIONS(2241), 39, + ACTIONS(1062), 11, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1064), 31, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -319492,38 +325896,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [118231] = 4, - ACTIONS(247), 1, + anon_sym_DASH_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_QMARK2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [115721] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3145), 1, + STATE(3194), 1, sym_comment, ACTIONS(1038), 11, anon_sym_DASH, @@ -319569,12 +325964,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [118284] = 4, - ACTIONS(247), 1, + [115774] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3146), 1, + STATE(3195), 1, sym_comment, - ACTIONS(1034), 11, + ACTIONS(1054), 11, anon_sym_DASH, anon_sym_DOT_DOT2, anon_sym_DOT, @@ -319586,7 +325981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1036), 31, + ACTIONS(1056), 31, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -319618,15 +326013,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [118337] = 4, - ACTIONS(3), 1, + [115827] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3147), 1, + ACTIONS(4770), 1, + aux_sym_unquoted_token2, + STATE(3196), 1, sym_comment, - ACTIONS(2253), 2, + ACTIONS(1640), 41, sym__newline, - aux_sym_unquoted_token4, - ACTIONS(2255), 40, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -319638,7 +326033,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_LPAREN2, + anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [115880] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1628), 1, + sym__newline, + ACTIONS(5027), 1, + aux_sym_cmd_identifier_token37, + STATE(3197), 1, + sym_comment, + ACTIONS(1640), 39, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -319667,31 +326111,64 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [118390] = 11, - ACTIONS(247), 1, + [115934] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(6053), 1, - anon_sym_list, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(3148), 1, + STATE(3198), 1, sym_comment, - STATE(3311), 1, - aux_sym__multiple_types_repeat2, - STATE(6867), 1, - sym__one_type, - STATE(7704), 1, - sym__type_annotation, - ACTIONS(6051), 2, + ACTIONS(6247), 41, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, anon_sym_record, - STATE(6559), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6049), 31, + anon_sym_list, + anon_sym_LBRACE, + anon_sym_RBRACE, + [115984] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3199), 1, + sym_comment, + ACTIONS(6249), 41, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -319721,16 +326198,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_range, anon_sym_signature, anon_sym_string, + anon_sym_table, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [118457] = 4, - ACTIONS(247), 1, + anon_sym_record, + anon_sym_list, + anon_sym_LBRACE, + anon_sym_RBRACE, + [116034] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5189), 1, - aux_sym_cmd_identifier_token41, - STATE(3149), 1, + STATE(3200), 1, sym_comment, - ACTIONS(2241), 41, + ACTIONS(1066), 11, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1068), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -319743,50 +326235,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_if, + anon_sym_LBRACE, anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [118510] = 8, - ACTIONS(247), 1, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [116086] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5602), 1, - anon_sym_DOT, - STATE(2632), 1, - aux_sym_cell_path_repeat1, - STATE(2655), 1, - sym_path, - STATE(3130), 1, - sym_cell_path, - STATE(3150), 1, + STATE(3201), 1, sym_comment, - ACTIONS(1005), 9, + ACTIONS(1070), 11, anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_DOT, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -319795,7 +326270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1007), 29, + ACTIONS(1072), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -319808,15 +326283,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_in, + anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_as, + anon_sym_EQ_GT, anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -319825,16 +326301,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [118571] = 4, - ACTIONS(3), 1, + [116138] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2253), 1, - aux_sym_unquoted_token4, - STATE(3151), 1, - sym_comment, - ACTIONS(2255), 41, - ts_builtin_sym_end, + ACTIONS(1628), 1, sym__newline, + ACTIONS(4842), 1, + aux_sym_unquoted_token2, + STATE(3202), 1, + sym_comment, + ACTIONS(1640), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -319845,47 +326321,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LPAREN2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [118624] = 6, - ACTIONS(247), 1, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [116192] = 11, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6100), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6102), 1, - aux_sym__immediate_decimal_token2, - STATE(3152), 1, + ACTIONS(6229), 1, + anon_sym_LPAREN2, + ACTIONS(6235), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6237), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6251), 1, + anon_sym_DOLLAR, + STATE(3203), 1, sym_comment, - ACTIONS(1659), 10, - anon_sym_DASH, - anon_sym_DOT_DOT2, + STATE(3425), 1, + sym__immediate_decimal, + ACTIONS(6253), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3424), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1608), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -319894,7 +326380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1661), 30, + ACTIONS(1610), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -319907,16 +326393,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_if, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -319925,31 +326405,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [118681] = 12, - ACTIONS(247), 1, + [116258] = 11, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6070), 1, - anon_sym_DOLLAR, - ACTIONS(6072), 1, + ACTIONS(6229), 1, anon_sym_LPAREN2, - ACTIONS(6078), 1, + ACTIONS(6235), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6080), 1, + ACTIONS(6237), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6104), 1, - anon_sym_DOT, - STATE(3153), 1, + ACTIONS(6251), 1, + anon_sym_DOLLAR, + STATE(3204), 1, sym_comment, - STATE(3474), 1, + STATE(3428), 1, sym__immediate_decimal, - ACTIONS(6076), 2, + ACTIONS(6253), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3366), 2, + STATE(3427), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1478), 9, - anon_sym_DASH, + ACTIONS(1612), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -319958,7 +326435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1492), 23, + ACTIONS(1614), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -319971,9 +326448,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -319982,22 +326460,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [118750] = 8, - ACTIONS(247), 1, + [116324] = 11, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6092), 1, - anon_sym_DOT, - STATE(3130), 1, - sym_cell_path, - STATE(3132), 1, - aux_sym_cell_path_repeat1, - STATE(3154), 1, + ACTIONS(6229), 1, + anon_sym_LPAREN2, + ACTIONS(6235), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6237), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6251), 1, + anon_sym_DOLLAR, + STATE(3205), 1, sym_comment, - STATE(3242), 1, - sym_path, - ACTIONS(1005), 10, - anon_sym_DASH, - anon_sym_DOT_DOT2, + STATE(3431), 1, + sym__immediate_decimal, + ACTIONS(6253), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3430), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1620), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -320006,7 +326490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1007), 28, + ACTIONS(1622), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -320019,14 +326503,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -320035,163 +326515,311 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [118811] = 4, - ACTIONS(247), 1, + [116390] = 10, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5189), 1, - aux_sym_cmd_identifier_token41, - STATE(3155), 1, + ACTIONS(6200), 1, + anon_sym_list, + ACTIONS(6255), 1, + anon_sym_GT, + ACTIONS(6257), 1, + anon_sym_AT, + STATE(3206), 1, + sym_comment, + STATE(7008), 1, + sym__all_type, + STATE(7984), 1, + sym_param_cmd, + ACTIONS(6198), 2, + anon_sym_table, + anon_sym_record, + STATE(7560), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6196), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [116454] = 10, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6194), 1, + anon_sym_LBRACK, + ACTIONS(6200), 1, + anon_sym_list, + STATE(3207), 1, + sym_comment, + STATE(7842), 1, + sym__type_annotation, + STATE(7888), 1, + sym__one_type, + STATE(7900), 1, + sym__multiple_types, + ACTIONS(6198), 2, + anon_sym_table, + anon_sym_record, + STATE(6678), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6196), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [116518] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3208), 1, sym_comment, - ACTIONS(2247), 41, + ACTIONS(6259), 41, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RPAREN, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_LBRACE, anon_sym_RBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [118864] = 5, - ACTIONS(3), 1, + [116568] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2225), 1, - anon_sym_LPAREN2, - ACTIONS(2227), 1, - aux_sym_unquoted_token4, - STATE(3156), 1, + STATE(3209), 1, sym_comment, - ACTIONS(1072), 40, - ts_builtin_sym_end, + ACTIONS(6261), 41, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [118919] = 5, - ACTIONS(247), 1, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_LBRACE, + anon_sym_RBRACE, + [116618] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6106), 1, - anon_sym_QMARK2, - STATE(3157), 1, + STATE(3210), 1, sym_comment, - ACTIONS(1022), 11, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1024), 30, + ACTIONS(6263), 41, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_if, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_LBRACE, + anon_sym_RBRACE, + [116668] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3211), 1, + sym_comment, + ACTIONS(6265), 41, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [118974] = 4, - ACTIONS(247), 1, + [116718] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4614), 1, - aux_sym_unquoted_token2, - STATE(3158), 1, + ACTIONS(5087), 1, + aux_sym_cmd_identifier_token37, + STATE(3212), 1, sym_comment, - ACTIONS(1572), 41, + ACTIONS(2291), 40, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -320203,8 +326831,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -320233,63 +326859,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [119027] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3159), 1, - sym_comment, - ACTIONS(1042), 11, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1044), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_QMARK2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [119080] = 4, + [116770] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4816), 1, + ACTIONS(5087), 1, aux_sym_cmd_identifier_token37, - STATE(3160), 1, + STATE(3213), 1, sym_comment, - ACTIONS(2255), 41, + ACTIONS(2285), 40, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -320301,8 +326879,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -320331,64 +326907,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [119133] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6108), 1, - anon_sym_QMARK2, - STATE(3161), 1, - sym_comment, - ACTIONS(1028), 11, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1030), 30, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [119188] = 4, - ACTIONS(3), 1, + [116822] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4816), 1, - aux_sym_cmd_identifier_token37, - STATE(3162), 1, + ACTIONS(5416), 1, + aux_sym_cmd_identifier_token41, + STATE(3214), 1, sym_comment, - ACTIONS(2233), 41, + ACTIONS(2297), 40, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -320400,8 +326927,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -320430,16 +326955,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [119241] = 5, - ACTIONS(3), 1, + [116874] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2231), 1, - anon_sym_LPAREN2, - ACTIONS(2235), 1, - aux_sym_unquoted_token4, - STATE(3163), 1, + ACTIONS(5416), 1, + aux_sym_cmd_identifier_token41, + STATE(3215), 1, sym_comment, - ACTIONS(2233), 40, + ACTIONS(2305), 40, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -320480,14 +327003,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [119296] = 4, - ACTIONS(3), 1, + [116926] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4816), 1, - aux_sym_cmd_identifier_token37, - STATE(3164), 1, + STATE(3216), 1, sym_comment, - ACTIONS(1572), 41, + ACTIONS(5107), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -320501,6 +327022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, + ACTIONS(2549), 28, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -320529,25 +327051,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [119349] = 4, - ACTIONS(247), 1, + [116978] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3165), 1, - sym_comment, - ACTIONS(1054), 11, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1056), 30, + ACTIONS(2289), 1, sym__newline, + ACTIONS(5027), 1, + aux_sym_cmd_identifier_token37, + STATE(3217), 1, + sym_comment, + ACTIONS(2291), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -320559,113 +327072,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [119401] = 10, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5296), 1, - sym__newline, - STATE(3166), 1, - sym_comment, - STATE(3196), 1, - aux_sym_shebang_repeat1, - ACTIONS(6110), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6114), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6116), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6112), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6118), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5201), 23, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - [119465] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5195), 1, - sym__newline, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(3167), 1, - sym_comment, - ACTIONS(6120), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6124), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6126), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6122), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5197), 29, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -320684,30 +327100,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [119527] = 9, - ACTIONS(247), 1, + [117032] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5296), 1, + ACTIONS(2281), 1, sym__newline, - STATE(3168), 1, + ACTIONS(5027), 1, + aux_sym_cmd_identifier_token37, + STATE(3218), 1, sym_comment, - STATE(3197), 1, - aux_sym_shebang_repeat1, - ACTIONS(6110), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6114), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6116), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6112), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5201), 29, + ACTIONS(2285), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -320719,48 +327121,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [119589] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5307), 1, - sym__newline, - STATE(3169), 1, - sym_comment, - STATE(3198), 1, - aux_sym_shebang_repeat1, - ACTIONS(6110), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5220), 37, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, @@ -320787,20 +327149,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [119645] = 5, - ACTIONS(247), 1, + [117086] = 11, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3170), 1, + ACTIONS(6229), 1, + anon_sym_LPAREN2, + ACTIONS(6235), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6237), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6251), 1, + anon_sym_DOLLAR, + STATE(3219), 1, sym_comment, - ACTIONS(6128), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6130), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5052), 35, + STATE(3423), 1, + sym__immediate_decimal, + ACTIONS(6253), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3463), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1560), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1570), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -320814,46 +327193,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [119699] = 7, - ACTIONS(247), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [117152] = 10, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6200), 1, + anon_sym_list, + ACTIONS(6257), 1, + anon_sym_AT, + ACTIONS(6267), 1, + anon_sym_GT, + STATE(3220), 1, + sym_comment, + STATE(7138), 1, + sym__all_type, + STATE(8029), 1, + sym_param_cmd, + ACTIONS(6198), 2, + anon_sym_table, + anon_sym_record, + STATE(7560), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6196), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [117216] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5307), 1, + ACTIONS(2293), 1, sym__newline, - STATE(3171), 1, + ACTIONS(5285), 1, + aux_sym_cmd_identifier_token41, + STATE(3221), 1, sym_comment, - STATE(3200), 1, - aux_sym_shebang_repeat1, - ACTIONS(6110), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6112), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5220), 33, + ACTIONS(2297), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -320865,6 +327279,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, aux_sym_expr_binary_parenthesized_token9, @@ -320887,27 +327307,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [119757] = 8, - ACTIONS(247), 1, + [117270] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5307), 1, + ACTIONS(2303), 1, sym__newline, - STATE(3172), 1, + ACTIONS(5285), 1, + aux_sym_cmd_identifier_token41, + STATE(3222), 1, sym_comment, - STATE(3202), 1, - aux_sym_shebang_repeat1, - ACTIONS(6110), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6114), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6112), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5220), 31, + ACTIONS(2305), 39, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -320919,73 +327328,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [119817] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5307), 1, - sym__newline, - STATE(3173), 1, - sym_comment, - STATE(3204), 1, - aux_sym_shebang_repeat1, - ACTIONS(6110), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6114), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6116), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6112), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6132), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6118), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5220), 19, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -320994,45 +327346,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [119883] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5307), 1, - sym__newline, - STATE(3174), 1, - sym_comment, - STATE(3206), 1, - aux_sym_shebang_repeat1, - ACTIONS(6110), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6114), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6116), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6134), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6112), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6132), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6118), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5220), 17, + [117324] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3223), 1, + sym_comment, + ACTIONS(6269), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5131), 39, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -321044,53 +327377,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - [119951] = 13, - ACTIONS(247), 1, + anon_sym_RBRACE, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [117376] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5307), 1, - sym__newline, - ACTIONS(6136), 1, - aux_sym_expr_binary_parenthesized_token13, - STATE(3175), 1, + STATE(3224), 1, sym_comment, - STATE(3208), 1, - aux_sym_shebang_repeat1, - ACTIONS(6110), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6114), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6116), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6134), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6112), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6132), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6118), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5220), 16, + ACTIONS(6269), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6271), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5131), 35, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -321102,42 +327430,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - [120021] = 10, - ACTIONS(247), 1, + anon_sym_RBRACE, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [117430] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5195), 1, - sym__newline, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(3176), 1, + STATE(3225), 1, sym_comment, - ACTIONS(6120), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6124), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6126), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6122), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6138), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5197), 23, + ACTIONS(6269), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6273), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6271), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5131), 33, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -321149,61 +327482,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - [120085] = 14, - ACTIONS(247), 1, + anon_sym_RBRACE, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [117486] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5307), 1, - sym__newline, - ACTIONS(6136), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6140), 1, - aux_sym_expr_binary_parenthesized_token14, - STATE(3177), 1, + STATE(3226), 1, sym_comment, - STATE(3210), 1, - aux_sym_shebang_repeat1, - ACTIONS(6110), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6114), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6116), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6134), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6112), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6132), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6118), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5220), 15, + ACTIONS(6269), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6273), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6275), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6271), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6277), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(6279), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(5131), 21, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -321215,55 +327547,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - [120157] = 15, - ACTIONS(247), 1, + anon_sym_RBRACE, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + [117548] = 10, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5307), 1, - sym__newline, - ACTIONS(6136), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6140), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6142), 1, - aux_sym_expr_binary_parenthesized_token15, - STATE(3178), 1, + STATE(3227), 1, sym_comment, - STATE(3212), 1, - aux_sym_shebang_repeat1, - ACTIONS(6110), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6114), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6116), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6134), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6112), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6132), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6118), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5220), 14, + ACTIONS(6269), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6273), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6275), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6281), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(6271), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6277), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(6279), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(5131), 19, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -321275,41 +327603,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - [120231] = 9, - ACTIONS(247), 1, + anon_sym_RBRACE, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + [117612] = 11, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3179), 1, + ACTIONS(6283), 1, + aux_sym_expr_binary_token13, + STATE(3228), 1, sym_comment, - ACTIONS(6128), 2, + ACTIONS(6269), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6144), 2, + ACTIONS(6273), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6146), 2, + ACTIONS(6275), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6130), 4, + ACTIONS(6281), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(6271), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6148), 4, + ACTIONS(6277), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6150), 6, + ACTIONS(6279), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - ACTIONS(5052), 21, + ACTIONS(5131), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -321323,61 +327660,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, aux_sym_expr_binary_token14, aux_sym_expr_binary_token15, aux_sym_expr_binary_token16, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - [120293] = 16, - ACTIONS(247), 1, + [117678] = 12, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5307), 1, - sym__newline, - ACTIONS(6136), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6140), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6142), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6152), 1, - aux_sym_expr_binary_parenthesized_token16, - STATE(3180), 1, + ACTIONS(6283), 1, + aux_sym_expr_binary_token13, + ACTIONS(6285), 1, + aux_sym_expr_binary_token14, + STATE(3229), 1, sym_comment, - STATE(3214), 1, - aux_sym_shebang_repeat1, - ACTIONS(6110), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6114), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6116), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6134), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6112), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6132), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6118), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5220), 13, + ACTIONS(6269), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6273), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6275), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6281), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(6271), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6277), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(6279), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(5131), 17, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -321389,57 +327716,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - [120369] = 17, - ACTIONS(247), 1, + anon_sym_RBRACE, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + [117746] = 13, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5245), 1, - sym__newline, - ACTIONS(6136), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6140), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6142), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6152), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6154), 1, - aux_sym_expr_binary_parenthesized_token17, - STATE(3181), 1, + ACTIONS(6283), 1, + aux_sym_expr_binary_token13, + ACTIONS(6285), 1, + aux_sym_expr_binary_token14, + ACTIONS(6287), 1, + aux_sym_expr_binary_token15, + STATE(3230), 1, sym_comment, - STATE(3216), 1, - aux_sym_shebang_repeat1, - ACTIONS(6110), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6114), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6116), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6134), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6112), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6132), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6118), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5220), 12, + ACTIONS(6269), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6273), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6275), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6281), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(6271), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6277), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(6279), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(5131), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -321451,38 +327774,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token18, - [120447] = 10, - ACTIONS(247), 1, + anon_sym_RBRACE, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + [117816] = 14, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5307), 1, - sym__newline, - STATE(3182), 1, + ACTIONS(6283), 1, + aux_sym_expr_binary_token13, + ACTIONS(6285), 1, + aux_sym_expr_binary_token14, + ACTIONS(6287), 1, + aux_sym_expr_binary_token15, + ACTIONS(6289), 1, + aux_sym_expr_binary_token16, + STATE(3231), 1, sym_comment, - STATE(3218), 1, - aux_sym_shebang_repeat1, - ACTIONS(6110), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6114), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6116), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6112), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6118), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5220), 23, + ACTIONS(6269), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6273), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6275), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6281), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(6271), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6277), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(6279), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(5131), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -321494,53 +327833,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - [120511] = 10, - ACTIONS(247), 1, + anon_sym_RBRACE, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + [117888] = 15, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3183), 1, + ACTIONS(6283), 1, + aux_sym_expr_binary_token13, + ACTIONS(6285), 1, + aux_sym_expr_binary_token14, + ACTIONS(6287), 1, + aux_sym_expr_binary_token15, + ACTIONS(6289), 1, + aux_sym_expr_binary_token16, + ACTIONS(6291), 1, + aux_sym_expr_binary_token17, + STATE(3232), 1, sym_comment, - ACTIONS(6128), 2, + ACTIONS(6269), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6144), 2, + ACTIONS(6273), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6146), 2, + ACTIONS(6275), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6156), 2, + ACTIONS(6281), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(6130), 4, + ACTIONS(6271), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6148), 4, + ACTIONS(6277), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6150), 6, + ACTIONS(6279), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - ACTIONS(5052), 19, + ACTIONS(5131), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -321554,36 +327894,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - [120575] = 9, - ACTIONS(247), 1, + [117962] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5307), 1, - sym__newline, - STATE(3184), 1, + STATE(3233), 1, sym_comment, - STATE(3220), 1, - aux_sym_shebang_repeat1, - ACTIONS(6110), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6114), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6116), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6112), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5220), 29, + ACTIONS(6269), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6273), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6275), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6271), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6279), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(5131), 25, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -321595,61 +327934,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [120637] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6158), 1, + anon_sym_RBRACE, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, aux_sym_expr_binary_token13, - STATE(3185), 1, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + [118022] = 7, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3234), 1, sym_comment, - ACTIONS(6128), 2, + ACTIONS(6269), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6144), 2, + ACTIONS(6273), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6146), 2, + ACTIONS(6275), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6156), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(6130), 4, + ACTIONS(6271), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6148), 4, + ACTIONS(5131), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6150), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - ACTIONS(5052), 18, + [118080] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(4870), 1, + aux_sym_unquoted_token2, + STATE(3235), 1, + sym_comment, + ACTIONS(1640), 40, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -321661,26 +328018,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, aux_sym_expr_binary_token14, aux_sym_expr_binary_token15, aux_sym_expr_binary_token16, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - [120703] = 6, - ACTIONS(247), 1, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [118132] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5203), 1, + ACTIONS(5316), 1, sym__newline, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(3186), 1, + STATE(3236), 1, sym_comment, - ACTIONS(6120), 2, + STATE(3249), 1, + aux_sym_shebang_repeat1, + ACTIONS(6293), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5205), 37, + ACTIONS(5265), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -321718,24 +328096,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [120759] = 7, - ACTIONS(247), 1, + [118188] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5203), 1, + ACTIONS(5316), 1, sym__newline, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(3187), 1, + STATE(3237), 1, sym_comment, - ACTIONS(6120), 2, + STATE(3251), 1, + aux_sym_shebang_repeat1, + ACTIONS(6293), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6122), 4, + ACTIONS(6295), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5205), 33, + ACTIONS(5265), 33, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -321769,27 +328147,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [120817] = 8, - ACTIONS(247), 1, + [118246] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5203), 1, + ACTIONS(5316), 1, sym__newline, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(3188), 1, + STATE(3238), 1, sym_comment, - ACTIONS(6120), 2, + STATE(3253), 1, + aux_sym_shebang_repeat1, + ACTIONS(6293), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6124), 2, + ACTIONS(6297), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6122), 4, + ACTIONS(6295), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5205), 31, + ACTIONS(5265), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -321821,42 +328199,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [120877] = 11, - ACTIONS(247), 1, + [118306] = 11, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5203), 1, + ACTIONS(5316), 1, sym__newline, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(3189), 1, + STATE(3239), 1, sym_comment, - ACTIONS(6120), 2, + STATE(3255), 1, + aux_sym_shebang_repeat1, + ACTIONS(6293), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6124), 2, + ACTIONS(6297), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6126), 2, + ACTIONS(6299), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6122), 4, + ACTIONS(6295), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6160), 4, + ACTIONS(6301), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6138), 6, + ACTIONS(6303), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5205), 19, + ACTIONS(5265), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -321876,45 +328254,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [120943] = 12, - ACTIONS(247), 1, + [118372] = 12, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5203), 1, + ACTIONS(5316), 1, sym__newline, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(3190), 1, + STATE(3240), 1, sym_comment, - ACTIONS(6120), 2, + STATE(3257), 1, + aux_sym_shebang_repeat1, + ACTIONS(6293), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6124), 2, + ACTIONS(6297), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6126), 2, + ACTIONS(6299), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6162), 2, + ACTIONS(6305), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6122), 4, + ACTIONS(6295), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6160), 4, + ACTIONS(6301), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6138), 6, + ACTIONS(6303), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5205), 17, + ACTIONS(5265), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -321932,47 +328310,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [121011] = 13, - ACTIONS(247), 1, + [118440] = 13, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5203), 1, + ACTIONS(5316), 1, sym__newline, - ACTIONS(6164), 1, + ACTIONS(6307), 1, aux_sym_expr_binary_parenthesized_token13, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(3191), 1, + STATE(3241), 1, sym_comment, - ACTIONS(6120), 2, + STATE(3259), 1, + aux_sym_shebang_repeat1, + ACTIONS(6293), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6124), 2, + ACTIONS(6297), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6126), 2, + ACTIONS(6299), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6162), 2, + ACTIONS(6305), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6122), 4, + ACTIONS(6295), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6160), 4, + ACTIONS(6301), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6138), 6, + ACTIONS(6303), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5205), 16, + ACTIONS(5265), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -321989,49 +328367,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [121081] = 14, - ACTIONS(247), 1, + [118510] = 14, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5203), 1, + ACTIONS(5316), 1, sym__newline, - ACTIONS(6164), 1, + ACTIONS(6307), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6166), 1, + ACTIONS(6309), 1, aux_sym_expr_binary_parenthesized_token14, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(3192), 1, + STATE(3242), 1, sym_comment, - ACTIONS(6120), 2, + STATE(3261), 1, + aux_sym_shebang_repeat1, + ACTIONS(6293), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6124), 2, + ACTIONS(6297), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6126), 2, + ACTIONS(6299), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6162), 2, + ACTIONS(6305), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6122), 4, + ACTIONS(6295), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6160), 4, + ACTIONS(6301), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6138), 6, + ACTIONS(6303), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5205), 15, + ACTIONS(5265), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -322047,51 +328425,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [121153] = 15, - ACTIONS(247), 1, + [118582] = 15, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5203), 1, + ACTIONS(5316), 1, sym__newline, - ACTIONS(6164), 1, + ACTIONS(6307), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6166), 1, + ACTIONS(6309), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6168), 1, + ACTIONS(6311), 1, aux_sym_expr_binary_parenthesized_token15, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(3193), 1, + STATE(3243), 1, sym_comment, - ACTIONS(6120), 2, + STATE(3263), 1, + aux_sym_shebang_repeat1, + ACTIONS(6293), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6124), 2, + ACTIONS(6297), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6126), 2, + ACTIONS(6299), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6162), 2, + ACTIONS(6305), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6122), 4, + ACTIONS(6295), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6160), 4, + ACTIONS(6301), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6138), 6, + ACTIONS(6303), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5205), 14, + ACTIONS(5265), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -322106,53 +328484,53 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [121227] = 16, - ACTIONS(247), 1, + [118656] = 16, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5203), 1, + ACTIONS(5316), 1, sym__newline, - ACTIONS(6164), 1, + ACTIONS(6307), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6166), 1, + ACTIONS(6309), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6168), 1, + ACTIONS(6311), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6170), 1, + ACTIONS(6313), 1, aux_sym_expr_binary_parenthesized_token16, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(3194), 1, + STATE(3244), 1, sym_comment, - ACTIONS(6120), 2, + STATE(3265), 1, + aux_sym_shebang_repeat1, + ACTIONS(6293), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6124), 2, + ACTIONS(6297), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6126), 2, + ACTIONS(6299), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6162), 2, + ACTIONS(6305), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6122), 4, + ACTIONS(6295), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6160), 4, + ACTIONS(6301), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6138), 6, + ACTIONS(6303), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5205), 13, + ACTIONS(5265), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -322166,55 +328544,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [121303] = 17, - ACTIONS(247), 1, + [118732] = 17, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5203), 1, + ACTIONS(5410), 1, sym__newline, - ACTIONS(6164), 1, + ACTIONS(6307), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6166), 1, + ACTIONS(6309), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6168), 1, + ACTIONS(6311), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6170), 1, + ACTIONS(6313), 1, aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6172), 1, + ACTIONS(6315), 1, aux_sym_expr_binary_parenthesized_token17, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(3195), 1, + STATE(3245), 1, sym_comment, - ACTIONS(6120), 2, + STATE(3267), 1, + aux_sym_shebang_repeat1, + ACTIONS(6293), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6124), 2, + ACTIONS(6297), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6126), 2, + ACTIONS(6299), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6162), 2, + ACTIONS(6305), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6122), 4, + ACTIONS(6295), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6160), 4, + ACTIONS(6301), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6138), 6, + ACTIONS(6303), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5205), 12, + ACTIONS(5265), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -322227,37 +328605,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, aux_sym_expr_binary_parenthesized_token18, - [121381] = 10, - ACTIONS(247), 1, + [118810] = 10, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5203), 1, + ACTIONS(5316), 1, sym__newline, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(3196), 1, + STATE(3246), 1, sym_comment, - ACTIONS(6120), 2, + STATE(3269), 1, + aux_sym_shebang_repeat1, + ACTIONS(6293), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6124), 2, + ACTIONS(6297), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6126), 2, + ACTIONS(6299), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6122), 4, + ACTIONS(6295), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6138), 6, + ACTIONS(6303), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5205), 23, + ACTIONS(5265), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -322281,30 +328659,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - [121445] = 9, - ACTIONS(247), 1, + [118874] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5203), 1, + ACTIONS(5316), 1, sym__newline, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(3197), 1, + STATE(3247), 1, sym_comment, - ACTIONS(6120), 2, + STATE(3271), 1, + aux_sym_shebang_repeat1, + ACTIONS(6293), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6124), 2, + ACTIONS(6297), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6126), 2, + ACTIONS(6299), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6122), 4, + ACTIONS(6295), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5205), 29, + ACTIONS(5265), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -322334,19 +328712,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [121507] = 6, - ACTIONS(247), 1, + [118936] = 10, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5140), 1, + ACTIONS(6200), 1, + anon_sym_list, + ACTIONS(6257), 1, + anon_sym_AT, + ACTIONS(6317), 1, + anon_sym_GT, + STATE(3248), 1, + sym_comment, + STATE(6807), 1, + sym__all_type, + STATE(8034), 1, + sym_param_cmd, + ACTIONS(6198), 2, + anon_sym_table, + anon_sym_record, + STATE(7560), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6196), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [119000] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5244), 1, sym__newline, - STATE(2043), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(3198), 1, + STATE(3249), 1, sym_comment, - ACTIONS(6120), 2, + ACTIONS(6319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5142), 37, + ACTIONS(5246), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -322384,19 +328816,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [121563] = 6, - ACTIONS(247), 1, + [119056] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5230), 1, + ACTIONS(5403), 1, sym__newline, - STATE(3199), 1, + STATE(3250), 1, sym_comment, - STATE(3222), 1, + STATE(3285), 1, aux_sym_shebang_repeat1, - ACTIONS(6110), 2, + ACTIONS(6293), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5150), 37, + ACTIONS(5254), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -322434,24 +328866,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [121619] = 7, - ACTIONS(247), 1, + [119112] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5140), 1, + ACTIONS(5244), 1, sym__newline, - STATE(2043), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(3200), 1, + STATE(3251), 1, sym_comment, - ACTIONS(6120), 2, + ACTIONS(6319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6122), 4, + ACTIONS(6321), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5142), 33, + ACTIONS(5246), 33, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -322485,24 +328917,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [121677] = 7, - ACTIONS(247), 1, + [119170] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5230), 1, + ACTIONS(5403), 1, sym__newline, - STATE(3201), 1, + STATE(3252), 1, sym_comment, - STATE(3223), 1, + STATE(3286), 1, aux_sym_shebang_repeat1, - ACTIONS(6110), 2, + ACTIONS(6293), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6112), 4, + ACTIONS(6295), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5150), 33, + ACTIONS(5254), 33, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -322536,27 +328968,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [121735] = 8, - ACTIONS(247), 1, + [119228] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5140), 1, + ACTIONS(5244), 1, sym__newline, - STATE(2043), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(3202), 1, + STATE(3253), 1, sym_comment, - ACTIONS(6120), 2, + ACTIONS(6319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6124), 2, + ACTIONS(6323), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6122), 4, + ACTIONS(6321), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5142), 31, + ACTIONS(5246), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -322588,27 +329020,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [121795] = 8, - ACTIONS(247), 1, + [119288] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5230), 1, + ACTIONS(5403), 1, sym__newline, - STATE(3203), 1, + STATE(3254), 1, sym_comment, - STATE(3224), 1, + STATE(3287), 1, aux_sym_shebang_repeat1, - ACTIONS(6110), 2, + ACTIONS(6293), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6114), 2, + ACTIONS(6297), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6112), 4, + ACTIONS(6295), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5150), 31, + ACTIONS(5254), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -322640,42 +329072,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [121855] = 11, - ACTIONS(247), 1, + [119348] = 11, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5140), 1, + ACTIONS(5244), 1, sym__newline, - STATE(2043), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(3204), 1, + STATE(3255), 1, sym_comment, - ACTIONS(6120), 2, + ACTIONS(6319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6124), 2, + ACTIONS(6323), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6126), 2, + ACTIONS(6325), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6122), 4, + ACTIONS(6321), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6160), 4, + ACTIONS(6327), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6138), 6, + ACTIONS(6329), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5142), 19, + ACTIONS(5246), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -322695,42 +329127,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [121921] = 11, - ACTIONS(247), 1, + [119414] = 11, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5230), 1, + ACTIONS(5403), 1, sym__newline, - STATE(3205), 1, + STATE(3256), 1, sym_comment, - STATE(3225), 1, + STATE(3288), 1, aux_sym_shebang_repeat1, - ACTIONS(6110), 2, + ACTIONS(6293), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6114), 2, + ACTIONS(6297), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6116), 2, + ACTIONS(6299), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6112), 4, + ACTIONS(6295), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6132), 4, + ACTIONS(6301), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6118), 6, + ACTIONS(6303), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5150), 19, + ACTIONS(5254), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -322750,45 +329182,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [121987] = 12, - ACTIONS(247), 1, + [119480] = 12, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5140), 1, + ACTIONS(5244), 1, sym__newline, - STATE(2043), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(3206), 1, + STATE(3257), 1, sym_comment, - ACTIONS(6120), 2, + ACTIONS(6319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6124), 2, + ACTIONS(6323), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6126), 2, + ACTIONS(6325), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6162), 2, + ACTIONS(6331), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6122), 4, + ACTIONS(6321), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6160), 4, + ACTIONS(6327), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6138), 6, + ACTIONS(6329), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5142), 17, + ACTIONS(5246), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -322806,45 +329238,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [122055] = 12, - ACTIONS(247), 1, + [119548] = 12, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5230), 1, + ACTIONS(5403), 1, sym__newline, - STATE(3207), 1, + STATE(3258), 1, sym_comment, - STATE(3226), 1, + STATE(3289), 1, aux_sym_shebang_repeat1, - ACTIONS(6110), 2, + ACTIONS(6293), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6114), 2, + ACTIONS(6297), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6116), 2, + ACTIONS(6299), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6134), 2, + ACTIONS(6305), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6112), 4, + ACTIONS(6295), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6132), 4, + ACTIONS(6301), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6118), 6, + ACTIONS(6303), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5150), 17, + ACTIONS(5254), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -322862,47 +329294,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [122123] = 13, - ACTIONS(247), 1, + [119616] = 13, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5140), 1, + ACTIONS(5244), 1, sym__newline, - ACTIONS(6164), 1, + ACTIONS(6333), 1, aux_sym_expr_binary_parenthesized_token13, - STATE(2043), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(3208), 1, + STATE(3259), 1, sym_comment, - ACTIONS(6120), 2, + ACTIONS(6319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6124), 2, + ACTIONS(6323), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6126), 2, + ACTIONS(6325), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6162), 2, + ACTIONS(6331), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6122), 4, + ACTIONS(6321), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6160), 4, + ACTIONS(6327), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6138), 6, + ACTIONS(6329), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5142), 16, + ACTIONS(5246), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -322919,47 +329351,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [122193] = 13, - ACTIONS(247), 1, + [119686] = 13, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5230), 1, + ACTIONS(5403), 1, sym__newline, - ACTIONS(6136), 1, + ACTIONS(6307), 1, aux_sym_expr_binary_parenthesized_token13, - STATE(3209), 1, + STATE(3260), 1, sym_comment, - STATE(3227), 1, + STATE(3290), 1, aux_sym_shebang_repeat1, - ACTIONS(6110), 2, + ACTIONS(6293), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6114), 2, + ACTIONS(6297), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6116), 2, + ACTIONS(6299), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6134), 2, + ACTIONS(6305), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6112), 4, + ACTIONS(6295), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6132), 4, + ACTIONS(6301), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6118), 6, + ACTIONS(6303), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5150), 16, + ACTIONS(5254), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -322976,49 +329408,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [122263] = 14, - ACTIONS(247), 1, + [119756] = 14, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5140), 1, + ACTIONS(5244), 1, sym__newline, - ACTIONS(6164), 1, + ACTIONS(6333), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6166), 1, + ACTIONS(6335), 1, aux_sym_expr_binary_parenthesized_token14, - STATE(2043), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(3210), 1, + STATE(3261), 1, sym_comment, - ACTIONS(6120), 2, + ACTIONS(6319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6124), 2, + ACTIONS(6323), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6126), 2, + ACTIONS(6325), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6162), 2, + ACTIONS(6331), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6122), 4, + ACTIONS(6321), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6160), 4, + ACTIONS(6327), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6138), 6, + ACTIONS(6329), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5142), 15, + ACTIONS(5246), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -323034,49 +329466,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [122335] = 14, - ACTIONS(247), 1, + [119828] = 14, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5230), 1, + ACTIONS(5403), 1, sym__newline, - ACTIONS(6136), 1, + ACTIONS(6307), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6140), 1, + ACTIONS(6309), 1, aux_sym_expr_binary_parenthesized_token14, - STATE(3211), 1, + STATE(3262), 1, sym_comment, - STATE(3228), 1, + STATE(3291), 1, aux_sym_shebang_repeat1, - ACTIONS(6110), 2, + ACTIONS(6293), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6114), 2, + ACTIONS(6297), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6116), 2, + ACTIONS(6299), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6134), 2, + ACTIONS(6305), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6112), 4, + ACTIONS(6295), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6132), 4, + ACTIONS(6301), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6118), 6, + ACTIONS(6303), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5150), 15, + ACTIONS(5254), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -323092,51 +329524,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [122407] = 15, - ACTIONS(247), 1, + [119900] = 15, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5140), 1, + ACTIONS(5244), 1, sym__newline, - ACTIONS(6164), 1, + ACTIONS(6333), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6166), 1, + ACTIONS(6335), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6168), 1, + ACTIONS(6337), 1, aux_sym_expr_binary_parenthesized_token15, - STATE(2043), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(3212), 1, + STATE(3263), 1, sym_comment, - ACTIONS(6120), 2, + ACTIONS(6319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6124), 2, + ACTIONS(6323), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6126), 2, + ACTIONS(6325), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6162), 2, + ACTIONS(6331), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6122), 4, + ACTIONS(6321), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6160), 4, + ACTIONS(6327), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6138), 6, + ACTIONS(6329), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5142), 14, + ACTIONS(5246), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -323151,51 +329583,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [122481] = 15, - ACTIONS(247), 1, + [119974] = 15, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5230), 1, + ACTIONS(5403), 1, sym__newline, - ACTIONS(6136), 1, + ACTIONS(6307), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6140), 1, + ACTIONS(6309), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6142), 1, + ACTIONS(6311), 1, aux_sym_expr_binary_parenthesized_token15, - STATE(3213), 1, + STATE(3264), 1, sym_comment, - STATE(3229), 1, + STATE(3292), 1, aux_sym_shebang_repeat1, - ACTIONS(6110), 2, + ACTIONS(6293), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6114), 2, + ACTIONS(6297), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6116), 2, + ACTIONS(6299), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6134), 2, + ACTIONS(6305), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6112), 4, + ACTIONS(6295), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6132), 4, + ACTIONS(6301), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6118), 6, + ACTIONS(6303), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5150), 14, + ACTIONS(5254), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -323210,53 +329642,53 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [122555] = 16, - ACTIONS(247), 1, + [120048] = 16, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5140), 1, + ACTIONS(5244), 1, sym__newline, - ACTIONS(6164), 1, + ACTIONS(6333), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6166), 1, + ACTIONS(6335), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6168), 1, + ACTIONS(6337), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6170), 1, + ACTIONS(6339), 1, aux_sym_expr_binary_parenthesized_token16, - STATE(2043), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(3214), 1, + STATE(3265), 1, sym_comment, - ACTIONS(6120), 2, + ACTIONS(6319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6124), 2, + ACTIONS(6323), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6126), 2, + ACTIONS(6325), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6162), 2, + ACTIONS(6331), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6122), 4, + ACTIONS(6321), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6160), 4, + ACTIONS(6327), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6138), 6, + ACTIONS(6329), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5142), 13, + ACTIONS(5246), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -323270,53 +329702,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [122631] = 16, - ACTIONS(247), 1, + [120124] = 16, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5230), 1, + ACTIONS(5403), 1, sym__newline, - ACTIONS(6136), 1, + ACTIONS(6307), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6140), 1, + ACTIONS(6309), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6142), 1, + ACTIONS(6311), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6152), 1, + ACTIONS(6313), 1, aux_sym_expr_binary_parenthesized_token16, - STATE(3215), 1, + STATE(3266), 1, sym_comment, - STATE(3230), 1, + STATE(3293), 1, aux_sym_shebang_repeat1, - ACTIONS(6110), 2, + ACTIONS(6293), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6114), 2, + ACTIONS(6297), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6116), 2, + ACTIONS(6299), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6134), 2, + ACTIONS(6305), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6112), 4, + ACTIONS(6295), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6132), 4, + ACTIONS(6301), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6118), 6, + ACTIONS(6303), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5150), 13, + ACTIONS(5254), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -323330,55 +329762,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [122707] = 17, - ACTIONS(247), 1, + [120200] = 17, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5140), 1, + ACTIONS(5244), 1, sym__newline, - ACTIONS(6164), 1, + ACTIONS(6333), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6166), 1, + ACTIONS(6335), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6168), 1, + ACTIONS(6337), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6170), 1, + ACTIONS(6339), 1, aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6172), 1, + ACTIONS(6341), 1, aux_sym_expr_binary_parenthesized_token17, - STATE(2043), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(3216), 1, + STATE(3267), 1, sym_comment, - ACTIONS(6120), 2, + ACTIONS(6319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6124), 2, + ACTIONS(6323), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6126), 2, + ACTIONS(6325), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6162), 2, + ACTIONS(6331), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6122), 4, + ACTIONS(6321), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6160), 4, + ACTIONS(6327), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6138), 6, + ACTIONS(6329), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5142), 12, + ACTIONS(5246), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -323391,55 +329823,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, aux_sym_expr_binary_parenthesized_token18, - [122785] = 17, - ACTIONS(247), 1, + [120278] = 17, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5245), 1, + ACTIONS(5410), 1, sym__newline, - ACTIONS(6136), 1, + ACTIONS(6307), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6140), 1, + ACTIONS(6309), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6142), 1, + ACTIONS(6311), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6152), 1, + ACTIONS(6313), 1, aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6154), 1, + ACTIONS(6315), 1, aux_sym_expr_binary_parenthesized_token17, - STATE(3217), 1, + STATE(3268), 1, sym_comment, - STATE(3231), 1, + STATE(3294), 1, aux_sym_shebang_repeat1, - ACTIONS(6110), 2, + ACTIONS(6293), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6114), 2, + ACTIONS(6297), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6116), 2, + ACTIONS(6299), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6134), 2, + ACTIONS(6305), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6112), 4, + ACTIONS(6295), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6132), 4, + ACTIONS(6301), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6118), 6, + ACTIONS(6303), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5150), 12, + ACTIONS(5254), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -323452,37 +329884,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, aux_sym_expr_binary_parenthesized_token18, - [122863] = 10, - ACTIONS(247), 1, + [120356] = 10, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5140), 1, + ACTIONS(5244), 1, sym__newline, - STATE(2043), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(3218), 1, + STATE(3269), 1, sym_comment, - ACTIONS(6120), 2, + ACTIONS(6319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6124), 2, + ACTIONS(6323), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6126), 2, + ACTIONS(6325), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6122), 4, + ACTIONS(6321), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6138), 6, + ACTIONS(6329), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5142), 23, + ACTIONS(5246), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -323506,37 +329938,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - [122927] = 10, - ACTIONS(247), 1, + [120420] = 10, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5230), 1, + ACTIONS(5403), 1, sym__newline, - STATE(3219), 1, + STATE(3270), 1, sym_comment, - STATE(3232), 1, + STATE(3295), 1, aux_sym_shebang_repeat1, - ACTIONS(6110), 2, + ACTIONS(6293), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6114), 2, + ACTIONS(6297), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6116), 2, + ACTIONS(6299), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6112), 4, + ACTIONS(6295), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6118), 6, + ACTIONS(6303), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5150), 23, + ACTIONS(5254), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -323560,30 +329992,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - [122991] = 9, - ACTIONS(247), 1, + [120484] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5140), 1, + ACTIONS(5244), 1, sym__newline, - STATE(2043), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(3220), 1, + STATE(3271), 1, sym_comment, - ACTIONS(6120), 2, + ACTIONS(6319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6124), 2, + ACTIONS(6323), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6126), 2, + ACTIONS(6325), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6122), 4, + ACTIONS(6321), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5142), 29, + ACTIONS(5246), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -323613,30 +330045,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [123053] = 9, - ACTIONS(247), 1, + [120546] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5230), 1, + ACTIONS(5403), 1, sym__newline, - STATE(3221), 1, + STATE(3272), 1, sym_comment, - STATE(3233), 1, + STATE(3296), 1, aux_sym_shebang_repeat1, - ACTIONS(6110), 2, + ACTIONS(6293), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6114), 2, + ACTIONS(6297), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6116), 2, + ACTIONS(6299), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6112), 4, + ACTIONS(6295), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5150), 29, + ACTIONS(5254), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -323666,19 +330098,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [123115] = 6, - ACTIONS(247), 1, + [120608] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5181), 1, + ACTIONS(5418), 1, sym__newline, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(3222), 1, + STATE(3273), 1, sym_comment, - ACTIONS(6120), 2, + STATE(3297), 1, + aux_sym_shebang_repeat1, + ACTIONS(6293), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5183), 37, + ACTIONS(5261), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -323716,24 +330148,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [123171] = 7, - ACTIONS(247), 1, + [120664] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5181), 1, + ACTIONS(5418), 1, sym__newline, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(3223), 1, + STATE(3274), 1, sym_comment, - ACTIONS(6120), 2, + STATE(3299), 1, + aux_sym_shebang_repeat1, + ACTIONS(6293), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6122), 4, + ACTIONS(6295), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5183), 33, + ACTIONS(5261), 33, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -323767,27 +330199,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [123229] = 8, - ACTIONS(247), 1, + [120722] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5181), 1, + ACTIONS(5418), 1, sym__newline, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(3224), 1, + STATE(3275), 1, sym_comment, - ACTIONS(6120), 2, + STATE(3301), 1, + aux_sym_shebang_repeat1, + ACTIONS(6293), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6124), 2, + ACTIONS(6297), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6122), 4, + ACTIONS(6295), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5183), 31, + ACTIONS(5261), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -323819,42 +330251,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [123289] = 11, - ACTIONS(247), 1, + [120782] = 11, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5181), 1, + ACTIONS(5418), 1, sym__newline, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(3225), 1, + STATE(3276), 1, sym_comment, - ACTIONS(6120), 2, + STATE(3303), 1, + aux_sym_shebang_repeat1, + ACTIONS(6293), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6124), 2, + ACTIONS(6297), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6126), 2, + ACTIONS(6299), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6122), 4, + ACTIONS(6295), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6160), 4, + ACTIONS(6301), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6138), 6, + ACTIONS(6303), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5183), 19, + ACTIONS(5261), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -323874,45 +330306,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [123355] = 12, - ACTIONS(247), 1, + [120848] = 12, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5181), 1, + ACTIONS(5418), 1, sym__newline, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(3226), 1, + STATE(3277), 1, sym_comment, - ACTIONS(6120), 2, + STATE(3305), 1, + aux_sym_shebang_repeat1, + ACTIONS(6293), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6124), 2, + ACTIONS(6297), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6126), 2, + ACTIONS(6299), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6162), 2, + ACTIONS(6305), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6122), 4, + ACTIONS(6295), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6160), 4, + ACTIONS(6301), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6138), 6, + ACTIONS(6303), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5183), 17, + ACTIONS(5261), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -323930,106 +330362,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [123423] = 13, - ACTIONS(247), 1, + [120916] = 13, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5181), 1, + ACTIONS(5418), 1, sym__newline, - ACTIONS(6164), 1, + ACTIONS(6307), 1, aux_sym_expr_binary_parenthesized_token13, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(3227), 1, + STATE(3278), 1, sym_comment, - ACTIONS(6120), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6124), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6126), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6162), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6122), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6160), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6138), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5183), 16, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - [123493] = 14, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5181), 1, - sym__newline, - ACTIONS(6164), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6166), 1, - aux_sym_expr_binary_parenthesized_token14, - STATE(2043), 1, + STATE(3307), 1, aux_sym_shebang_repeat1, - STATE(3228), 1, - sym_comment, - ACTIONS(6120), 2, + ACTIONS(6293), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6124), 2, + ACTIONS(6297), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6126), 2, + ACTIONS(6299), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6162), 2, + ACTIONS(6305), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6122), 4, + ACTIONS(6295), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6160), 4, + ACTIONS(6301), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6138), 6, + ACTIONS(6303), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5183), 15, + ACTIONS(5261), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -324041,268 +330414,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - [123565] = 15, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5181), 1, - sym__newline, - ACTIONS(6164), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6166), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6168), 1, aux_sym_expr_binary_parenthesized_token15, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(3229), 1, - sym_comment, - ACTIONS(6120), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6124), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6126), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6162), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6122), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6160), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6138), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5183), 14, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [123639] = 16, - ACTIONS(247), 1, + [120986] = 14, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5181), 1, + ACTIONS(5418), 1, sym__newline, - ACTIONS(6164), 1, + ACTIONS(6307), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6166), 1, + ACTIONS(6309), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6168), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6170), 1, - aux_sym_expr_binary_parenthesized_token16, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(3230), 1, + STATE(3279), 1, sym_comment, - ACTIONS(6120), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6124), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6126), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6162), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6122), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6160), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6138), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5183), 13, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - [123715] = 17, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5181), 1, - sym__newline, - ACTIONS(6164), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6166), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6168), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6170), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6172), 1, - aux_sym_expr_binary_parenthesized_token17, - STATE(2043), 1, + STATE(3309), 1, aux_sym_shebang_repeat1, - STATE(3231), 1, - sym_comment, - ACTIONS(6120), 2, + ACTIONS(6293), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6124), 2, + ACTIONS(6297), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6126), 2, + ACTIONS(6299), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6162), 2, + ACTIONS(6305), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6122), 4, + ACTIONS(6295), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6160), 4, + ACTIONS(6301), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6138), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5183), 12, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token18, - [123793] = 10, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5181), 1, - sym__newline, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(3232), 1, - sym_comment, - ACTIONS(6120), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6124), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6126), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6122), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6138), 6, + ACTIONS(6303), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5183), 23, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - [123857] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5181), 1, - sym__newline, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(3233), 1, - sym_comment, - ACTIONS(6120), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6124), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6126), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6122), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5183), 29, + ACTIONS(5261), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -324314,782 +330473,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [123919] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6158), 1, - aux_sym_expr_binary_token13, - ACTIONS(6174), 1, - aux_sym_expr_binary_token14, - STATE(3234), 1, - sym_comment, - ACTIONS(6128), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6144), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6146), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6156), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(6130), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6148), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(6150), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - ACTIONS(5052), 17, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - [123987] = 13, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6158), 1, - aux_sym_expr_binary_token13, - ACTIONS(6174), 1, - aux_sym_expr_binary_token14, - ACTIONS(6176), 1, - aux_sym_expr_binary_token15, - STATE(3235), 1, - sym_comment, - ACTIONS(6128), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6144), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6146), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6156), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(6130), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6148), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(6150), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - ACTIONS(5052), 16, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - [124057] = 14, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6158), 1, - aux_sym_expr_binary_token13, - ACTIONS(6174), 1, - aux_sym_expr_binary_token14, - ACTIONS(6176), 1, - aux_sym_expr_binary_token15, - ACTIONS(6178), 1, - aux_sym_expr_binary_token16, - STATE(3236), 1, - sym_comment, - ACTIONS(6128), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6144), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6146), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6156), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(6130), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6148), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(6150), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - ACTIONS(5052), 15, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - [124129] = 15, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6158), 1, - aux_sym_expr_binary_token13, - ACTIONS(6174), 1, - aux_sym_expr_binary_token14, - ACTIONS(6176), 1, - aux_sym_expr_binary_token15, - ACTIONS(6178), 1, - aux_sym_expr_binary_token16, - ACTIONS(6180), 1, - aux_sym_expr_binary_token17, - STATE(3237), 1, - sym_comment, - ACTIONS(6128), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6144), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6146), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6156), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(6130), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6148), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(6150), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - ACTIONS(5052), 14, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token18, - [124203] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3238), 1, - sym_comment, - ACTIONS(6128), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6144), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6146), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6130), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6150), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - ACTIONS(5052), 25, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - [124263] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3239), 1, - sym_comment, - ACTIONS(6128), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6144), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6146), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6130), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5052), 31, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [124321] = 5, - ACTIONS(247), 1, + [121058] = 15, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1560), 1, + ACTIONS(5418), 1, sym__newline, - ACTIONS(4742), 1, - aux_sym_unquoted_token2, - STATE(3240), 1, - sym_comment, - ACTIONS(1572), 39, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6307), 1, aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6309), 1, aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6311), 1, aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [124375] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3241), 1, - sym_comment, - ACTIONS(6182), 41, - sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_LBRACE, - anon_sym_RBRACE, - [124425] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3242), 1, - sym_comment, - ACTIONS(1046), 11, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1048), 30, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [124477] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3243), 1, - sym_comment, - ACTIONS(6184), 41, - sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_LBRACE, - anon_sym_RBRACE, - [124527] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6098), 1, - aux_sym__immediate_decimal_token2, - STATE(3244), 1, - sym_comment, - ACTIONS(1667), 10, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1669), 30, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [124581] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2237), 1, - sym__newline, - ACTIONS(5189), 1, - aux_sym_cmd_identifier_token41, - STATE(3245), 1, + STATE(3280), 1, sym_comment, - ACTIONS(2241), 39, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + STATE(3311), 1, + aux_sym_shebang_repeat1, + ACTIONS(6293), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6297), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6299), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6305), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [124635] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2245), 1, - sym__newline, - ACTIONS(5189), 1, - aux_sym_cmd_identifier_token41, - STATE(3246), 1, - sym_comment, - ACTIONS(2247), 39, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6295), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6301), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6303), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [124689] = 10, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6053), 1, - anon_sym_list, - ACTIONS(6186), 1, - anon_sym_GT, - ACTIONS(6188), 1, - anon_sym_AT, - STATE(3247), 1, - sym_comment, - STATE(6767), 1, - sym__all_type, - STATE(7474), 1, - sym_param_cmd, - ACTIONS(6051), 2, - anon_sym_table, - anon_sym_record, - STATE(5544), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6049), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [124753] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6072), 1, - anon_sym_LPAREN2, - ACTIONS(6078), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6080), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6082), 1, - anon_sym_DOLLAR, - STATE(3248), 1, - sym_comment, - STATE(3527), 1, - sym__immediate_decimal, - ACTIONS(6084), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3393), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1478), 9, - anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1492), 23, - sym__newline, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5261), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -325101,27 +330533,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [124819] = 5, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [121132] = 16, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2253), 1, + ACTIONS(5418), 1, sym__newline, - ACTIONS(4816), 1, - aux_sym_cmd_identifier_token37, - STATE(3249), 1, + ACTIONS(6307), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6309), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6311), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6313), 1, + aux_sym_expr_binary_parenthesized_token16, + STATE(3281), 1, sym_comment, - ACTIONS(2255), 39, + STATE(3313), 1, + aux_sym_shebang_repeat1, + ACTIONS(6293), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6297), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6299), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6305), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6295), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6301), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6303), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5261), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -325133,44 +330594,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [121208] = 17, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5410), 1, + sym__newline, + ACTIONS(6307), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6309), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6311), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6313), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(6315), 1, + aux_sym_expr_binary_parenthesized_token17, + STATE(3282), 1, + sym_comment, + STATE(3315), 1, + aux_sym_shebang_repeat1, + ACTIONS(6293), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6297), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6299), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6305), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6295), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6301), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6303), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [124873] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2229), 1, - sym__newline, - ACTIONS(4816), 1, - aux_sym_cmd_identifier_token37, - STATE(3250), 1, - sym_comment, - ACTIONS(2233), 39, + ACTIONS(5261), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -325182,16 +330656,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token18, + [121286] = 10, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5418), 1, + sym__newline, + STATE(3283), 1, + sym_comment, + STATE(3317), 1, + aux_sym_shebang_repeat1, + ACTIONS(6293), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6297), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6299), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6295), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6303), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5261), 23, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + [121350] = 9, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5418), 1, + sym__newline, + STATE(3284), 1, + sym_comment, + STATE(3319), 1, + aux_sym_shebang_repeat1, + ACTIONS(6293), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6297), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6299), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6295), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5261), 29, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -325210,19 +330764,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [124927] = 6, - ACTIONS(247), 1, + [121412] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5271), 1, + ACTIONS(5277), 1, sym__newline, - STATE(3251), 1, - sym_comment, - STATE(3280), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - ACTIONS(6110), 2, + STATE(3285), 1, + sym_comment, + ACTIONS(6319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5216), 37, + ACTIONS(5279), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -325260,24 +330814,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [124983] = 7, - ACTIONS(247), 1, + [121468] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5271), 1, + ACTIONS(5277), 1, sym__newline, - STATE(3252), 1, - sym_comment, - STATE(3282), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - ACTIONS(6110), 2, + STATE(3286), 1, + sym_comment, + ACTIONS(6319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6112), 4, + ACTIONS(6321), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5216), 33, + ACTIONS(5279), 33, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -325311,27 +330865,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [125041] = 8, - ACTIONS(247), 1, + [121526] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5271), 1, + ACTIONS(5277), 1, sym__newline, - STATE(3253), 1, - sym_comment, - STATE(3284), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - ACTIONS(6110), 2, + STATE(3287), 1, + sym_comment, + ACTIONS(6319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6114), 2, + ACTIONS(6323), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6112), 4, + ACTIONS(6321), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5216), 31, + ACTIONS(5279), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -325363,42 +330917,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [125101] = 11, - ACTIONS(247), 1, + [121586] = 11, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5271), 1, + ACTIONS(5277), 1, sym__newline, - STATE(3254), 1, - sym_comment, - STATE(3287), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - ACTIONS(6110), 2, + STATE(3288), 1, + sym_comment, + ACTIONS(6319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6114), 2, + ACTIONS(6323), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6116), 2, + ACTIONS(6325), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6112), 4, + ACTIONS(6321), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6132), 4, + ACTIONS(6327), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6118), 6, + ACTIONS(6329), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5216), 19, + ACTIONS(5279), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -325418,100 +330972,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [125167] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6072), 1, - anon_sym_LPAREN2, - ACTIONS(6078), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6080), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6082), 1, - anon_sym_DOLLAR, - STATE(3255), 1, - sym_comment, - STATE(3524), 1, - sym__immediate_decimal, - ACTIONS(6084), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3401), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1548), 9, - anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1550), 23, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [125233] = 12, - ACTIONS(247), 1, + [121652] = 12, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5271), 1, + ACTIONS(5277), 1, sym__newline, - STATE(3256), 1, - sym_comment, - STATE(3289), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - ACTIONS(6110), 2, + STATE(3289), 1, + sym_comment, + ACTIONS(6319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6114), 2, + ACTIONS(6323), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6116), 2, + ACTIONS(6325), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6134), 2, + ACTIONS(6331), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6112), 4, + ACTIONS(6321), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6132), 4, + ACTIONS(6327), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6118), 6, + ACTIONS(6329), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5216), 17, + ACTIONS(5279), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -325529,73 +331028,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [125301] = 13, - ACTIONS(247), 1, + [121720] = 13, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5271), 1, + ACTIONS(5277), 1, sym__newline, - ACTIONS(6136), 1, + ACTIONS(6333), 1, aux_sym_expr_binary_parenthesized_token13, - STATE(3257), 1, - sym_comment, - STATE(3291), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - ACTIONS(6110), 2, + STATE(3290), 1, + sym_comment, + ACTIONS(6319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6114), 2, + ACTIONS(6323), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6116), 2, + ACTIONS(6325), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6134), 2, + ACTIONS(6331), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6112), 4, + ACTIONS(6321), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6132), 4, + ACTIONS(6327), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6118), 6, + ACTIONS(6329), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5216), 16, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - [125371] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1560), 1, - sym__newline, - ACTIONS(4816), 1, - aux_sym_cmd_identifier_token37, - STATE(3258), 1, - sym_comment, - ACTIONS(1572), 39, + ACTIONS(5279), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -325607,173 +331080,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [125425] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4946), 1, - aux_sym_cmd_identifier_token37, - STATE(3259), 1, - sym_comment, - ACTIONS(1572), 40, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [125477] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5288), 1, - aux_sym_cmd_identifier_token41, - STATE(3260), 1, - sym_comment, - ACTIONS(2241), 40, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [125529] = 14, - ACTIONS(247), 1, + [121790] = 14, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5271), 1, + ACTIONS(5277), 1, sym__newline, - ACTIONS(6136), 1, + ACTIONS(6333), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6140), 1, + ACTIONS(6335), 1, aux_sym_expr_binary_parenthesized_token14, - STATE(3261), 1, - sym_comment, - STATE(3293), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - ACTIONS(6110), 2, + STATE(3291), 1, + sym_comment, + ACTIONS(6319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6114), 2, + ACTIONS(6323), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6116), 2, + ACTIONS(6325), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6134), 2, + ACTIONS(6331), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6112), 4, + ACTIONS(6321), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6132), 4, + ACTIONS(6327), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6118), 6, + ACTIONS(6329), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5216), 15, + ACTIONS(5279), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -325789,51 +331143,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [125601] = 15, - ACTIONS(247), 1, + [121862] = 15, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5271), 1, + ACTIONS(5277), 1, sym__newline, - ACTIONS(6136), 1, + ACTIONS(6333), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6140), 1, + ACTIONS(6335), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6142), 1, + ACTIONS(6337), 1, aux_sym_expr_binary_parenthesized_token15, - STATE(3262), 1, - sym_comment, - STATE(3295), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - ACTIONS(6110), 2, + STATE(3292), 1, + sym_comment, + ACTIONS(6319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6114), 2, + ACTIONS(6323), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6116), 2, + ACTIONS(6325), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6134), 2, + ACTIONS(6331), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6112), 4, + ACTIONS(6321), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6132), 4, + ACTIONS(6327), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6118), 6, + ACTIONS(6329), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5216), 14, + ACTIONS(5279), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -325848,53 +331202,53 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [125675] = 16, - ACTIONS(247), 1, + [121936] = 16, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5271), 1, + ACTIONS(5277), 1, sym__newline, - ACTIONS(6136), 1, + ACTIONS(6333), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6140), 1, + ACTIONS(6335), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6142), 1, + ACTIONS(6337), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6152), 1, + ACTIONS(6339), 1, aux_sym_expr_binary_parenthesized_token16, - STATE(3263), 1, - sym_comment, - STATE(3297), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - ACTIONS(6110), 2, + STATE(3293), 1, + sym_comment, + ACTIONS(6319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6114), 2, + ACTIONS(6323), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6116), 2, + ACTIONS(6325), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6134), 2, + ACTIONS(6331), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6112), 4, + ACTIONS(6321), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6132), 4, + ACTIONS(6327), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6118), 6, + ACTIONS(6329), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5216), 13, + ACTIONS(5279), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -325908,55 +331262,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [125751] = 17, - ACTIONS(247), 1, + [122012] = 17, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5245), 1, + ACTIONS(5277), 1, sym__newline, - ACTIONS(6136), 1, + ACTIONS(6333), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6140), 1, + ACTIONS(6335), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6142), 1, + ACTIONS(6337), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6152), 1, + ACTIONS(6339), 1, aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6154), 1, + ACTIONS(6341), 1, aux_sym_expr_binary_parenthesized_token17, - STATE(3264), 1, - sym_comment, - STATE(3300), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - ACTIONS(6110), 2, + STATE(3294), 1, + sym_comment, + ACTIONS(6319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6114), 2, + ACTIONS(6323), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6116), 2, + ACTIONS(6325), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6134), 2, + ACTIONS(6331), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6112), 4, + ACTIONS(6321), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6132), 4, + ACTIONS(6327), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6118), 6, + ACTIONS(6329), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5216), 12, + ACTIONS(5279), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -325969,37 +331323,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, aux_sym_expr_binary_parenthesized_token18, - [125829] = 10, - ACTIONS(247), 1, + [122090] = 10, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5271), 1, + ACTIONS(5277), 1, sym__newline, - STATE(3176), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(3265), 1, + STATE(3295), 1, sym_comment, - ACTIONS(6110), 2, + ACTIONS(6319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6114), 2, + ACTIONS(6323), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6116), 2, + ACTIONS(6325), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6112), 4, + ACTIONS(6321), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6118), 6, + ACTIONS(6329), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5216), 23, + ACTIONS(5279), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -326023,503 +331377,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - [125893] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3266), 1, - sym_comment, - ACTIONS(6190), 41, - sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_LBRACE, - anon_sym_RBRACE, - [125943] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3267), 1, - sym_comment, - ACTIONS(6192), 41, - sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_LBRACE, - anon_sym_RBRACE, - [125993] = 9, - ACTIONS(247), 1, + [122154] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5271), 1, + ACTIONS(5277), 1, sym__newline, - STATE(3167), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(3268), 1, + STATE(3296), 1, sym_comment, - ACTIONS(6110), 2, + ACTIONS(6319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6114), 2, + ACTIONS(6323), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6116), 2, + ACTIONS(6325), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6112), 4, + ACTIONS(6321), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5216), 29, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [126055] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3269), 1, - sym_comment, - ACTIONS(1050), 11, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1052), 30, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [126107] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3270), 1, - sym_comment, - ACTIONS(6194), 41, - sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_LBRACE, - anon_sym_RBRACE, - [126157] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3271), 1, - sym_comment, - ACTIONS(6196), 41, - sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_LBRACE, - anon_sym_RBRACE, - [126207] = 10, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6047), 1, - anon_sym_LBRACK, - ACTIONS(6053), 1, - anon_sym_list, - STATE(3272), 1, - sym_comment, - STATE(7578), 1, - sym__one_type, - STATE(7587), 1, - sym__multiple_types, - STATE(7717), 1, - sym__type_annotation, - ACTIONS(6051), 2, - anon_sym_table, - anon_sym_record, - STATE(6559), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6049), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [126271] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3273), 1, - sym_comment, - ACTIONS(5056), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2311), 28, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [126323] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4946), 1, - aux_sym_cmd_identifier_token37, - STATE(3274), 1, - sym_comment, - ACTIONS(2255), 40, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [126375] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4946), 1, - aux_sym_cmd_identifier_token37, - STATE(3275), 1, - sym_comment, - ACTIONS(2233), 40, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [126427] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3276), 1, - sym_comment, - ACTIONS(6128), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5052), 39, - sym__newline, + ACTIONS(5279), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -326531,202 +331412,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [126479] = 10, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6053), 1, - anon_sym_list, - ACTIONS(6188), 1, - anon_sym_AT, - ACTIONS(6198), 1, - anon_sym_GT, - STATE(3277), 1, - sym_comment, - STATE(6647), 1, - sym__all_type, - STATE(7664), 1, - sym_param_cmd, - ACTIONS(6051), 2, - anon_sym_table, - anon_sym_record, - STATE(5544), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6049), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [126543] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5288), 1, - aux_sym_cmd_identifier_token41, - STATE(3278), 1, - sym_comment, - ACTIONS(2247), 40, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [126595] = 10, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6053), 1, - anon_sym_list, - ACTIONS(6188), 1, - anon_sym_AT, - ACTIONS(6200), 1, - anon_sym_GT, - STATE(3279), 1, - sym_comment, - STATE(6747), 1, - sym__all_type, - STATE(7436), 1, - sym_param_cmd, - ACTIONS(6051), 2, - anon_sym_table, - anon_sym_record, - STATE(5544), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6049), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [126659] = 6, - ACTIONS(247), 1, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [122216] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5195), 1, + ACTIONS(5289), 1, sym__newline, - STATE(2043), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(3280), 1, + STATE(3297), 1, sym_comment, - ACTIONS(6120), 2, + ACTIONS(6319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5197), 37, + ACTIONS(5291), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -326764,19 +331480,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [126715] = 6, - ACTIONS(247), 1, + [122272] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5296), 1, + ACTIONS(5455), 1, sym__newline, - STATE(3186), 1, - aux_sym_shebang_repeat1, - STATE(3281), 1, + STATE(3298), 1, sym_comment, - ACTIONS(6110), 2, + STATE(3321), 1, + aux_sym_shebang_repeat1, + ACTIONS(6293), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5201), 37, + ACTIONS(5299), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -326814,24 +331530,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [126771] = 7, - ACTIONS(247), 1, + [122328] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5195), 1, + ACTIONS(5289), 1, sym__newline, - STATE(2043), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(3282), 1, + STATE(3299), 1, sym_comment, - ACTIONS(6120), 2, + ACTIONS(6319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6122), 4, + ACTIONS(6321), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5197), 33, + ACTIONS(5291), 33, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -326865,24 +331581,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [126829] = 7, - ACTIONS(247), 1, + [122386] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5296), 1, + ACTIONS(5455), 1, sym__newline, - STATE(3187), 1, - aux_sym_shebang_repeat1, - STATE(3283), 1, + STATE(3300), 1, sym_comment, - ACTIONS(6110), 2, + STATE(3322), 1, + aux_sym_shebang_repeat1, + ACTIONS(6293), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6112), 4, + ACTIONS(6295), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5201), 33, + ACTIONS(5299), 33, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -326916,27 +331632,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [126887] = 8, - ACTIONS(247), 1, + [122444] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5195), 1, + ACTIONS(5289), 1, sym__newline, - STATE(2043), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(3284), 1, + STATE(3301), 1, sym_comment, - ACTIONS(6120), 2, + ACTIONS(6319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6124), 2, + ACTIONS(6323), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6122), 4, + ACTIONS(6321), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5197), 31, + ACTIONS(5291), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -326968,26 +331684,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [126947] = 5, - ACTIONS(247), 1, + [122504] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6202), 1, - aux_sym__immediate_decimal_token2, - STATE(3285), 1, - sym_comment, - ACTIONS(1721), 10, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1723), 30, + ACTIONS(5455), 1, sym__newline, + STATE(3302), 1, + sym_comment, + STATE(3323), 1, + aux_sym_shebang_repeat1, + ACTIONS(6293), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6297), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6295), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5299), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -326999,45 +331716,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [127001] = 8, - ACTIONS(247), 1, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [122564] = 11, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5296), 1, + ACTIONS(5289), 1, sym__newline, - STATE(3188), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(3286), 1, + STATE(3303), 1, sym_comment, - ACTIONS(6110), 2, + ACTIONS(6319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6114), 2, + ACTIONS(6323), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6112), 4, + ACTIONS(6325), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6321), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5201), 31, + ACTIONS(6327), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6329), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5291), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -327049,8 +331783,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -327059,52 +331791,100 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, + [122630] = 11, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5455), 1, + sym__newline, + STATE(3304), 1, + sym_comment, + STATE(3324), 1, + aux_sym_shebang_repeat1, + ACTIONS(6293), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6297), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6299), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6295), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6301), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6303), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [127061] = 11, - ACTIONS(247), 1, + ACTIONS(5299), 19, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [122696] = 12, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5195), 1, + ACTIONS(5289), 1, sym__newline, - STATE(2043), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(3287), 1, + STATE(3305), 1, sym_comment, - ACTIONS(6120), 2, + ACTIONS(6319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6124), 2, + ACTIONS(6323), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6126), 2, + ACTIONS(6325), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6122), 4, + ACTIONS(6331), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6321), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6160), 4, + ACTIONS(6327), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6138), 6, + ACTIONS(6329), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5197), 19, + ACTIONS(5291), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -327116,50 +331896,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [127127] = 11, - ACTIONS(247), 1, + [122764] = 12, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5296), 1, + ACTIONS(5455), 1, sym__newline, - STATE(3189), 1, - aux_sym_shebang_repeat1, - STATE(3288), 1, + STATE(3306), 1, sym_comment, - ACTIONS(6110), 2, + STATE(3325), 1, + aux_sym_shebang_repeat1, + ACTIONS(6293), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6114), 2, + ACTIONS(6297), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6116), 2, + ACTIONS(6299), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6112), 4, + ACTIONS(6305), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6295), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6132), 4, + ACTIONS(6301), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6118), 6, + ACTIONS(6303), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5201), 19, + ACTIONS(5299), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -327171,53 +331952,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [127193] = 12, - ACTIONS(247), 1, + [122832] = 13, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5195), 1, + ACTIONS(5289), 1, sym__newline, - STATE(2043), 1, + ACTIONS(6333), 1, + aux_sym_expr_binary_parenthesized_token13, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(3289), 1, + STATE(3307), 1, sym_comment, - ACTIONS(6120), 2, + ACTIONS(6319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6124), 2, + ACTIONS(6323), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6126), 2, + ACTIONS(6325), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6162), 2, + ACTIONS(6331), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6122), 4, + ACTIONS(6321), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6160), 4, + ACTIONS(6327), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6138), 6, + ACTIONS(6329), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5197), 17, + ACTIONS(5291), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -327229,51 +332010,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token13, aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [127261] = 12, - ACTIONS(247), 1, + [122902] = 13, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5296), 1, + ACTIONS(5455), 1, sym__newline, - STATE(3190), 1, - aux_sym_shebang_repeat1, - STATE(3290), 1, + ACTIONS(6307), 1, + aux_sym_expr_binary_parenthesized_token13, + STATE(3308), 1, sym_comment, - ACTIONS(6110), 2, + STATE(3326), 1, + aux_sym_shebang_repeat1, + ACTIONS(6293), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6114), 2, + ACTIONS(6297), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6116), 2, + ACTIONS(6299), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6134), 2, + ACTIONS(6305), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6112), 4, + ACTIONS(6295), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6132), 4, + ACTIONS(6301), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6118), 6, + ACTIONS(6303), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5201), 17, + ACTIONS(5299), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -327285,53 +332067,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - aux_sym_expr_binary_parenthesized_token13, aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [127329] = 13, - ACTIONS(247), 1, + [122972] = 14, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5195), 1, + ACTIONS(5289), 1, sym__newline, - ACTIONS(6164), 1, + ACTIONS(6333), 1, aux_sym_expr_binary_parenthesized_token13, - STATE(2043), 1, + ACTIONS(6335), 1, + aux_sym_expr_binary_parenthesized_token14, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(3291), 1, + STATE(3309), 1, sym_comment, - ACTIONS(6120), 2, + ACTIONS(6319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6124), 2, + ACTIONS(6323), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6126), 2, + ACTIONS(6325), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6162), 2, + ACTIONS(6331), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6122), 4, + ACTIONS(6321), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6160), 4, + ACTIONS(6327), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6138), 6, + ACTIONS(6329), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5197), 16, + ACTIONS(5291), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -327343,52 +332126,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [123044] = 14, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5455), 1, + sym__newline, + ACTIONS(6307), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6309), 1, aux_sym_expr_binary_parenthesized_token14, + STATE(3310), 1, + sym_comment, + STATE(3327), 1, + aux_sym_shebang_repeat1, + ACTIONS(6293), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6297), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6299), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6305), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6295), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6301), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6303), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5299), 15, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [127399] = 13, - ACTIONS(247), 1, + [123116] = 15, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5296), 1, + ACTIONS(5289), 1, sym__newline, - ACTIONS(6136), 1, + ACTIONS(6333), 1, aux_sym_expr_binary_parenthesized_token13, - STATE(3191), 1, + ACTIONS(6335), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6337), 1, + aux_sym_expr_binary_parenthesized_token15, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(3292), 1, + STATE(3311), 1, sym_comment, - ACTIONS(6110), 2, + ACTIONS(6319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6114), 2, + ACTIONS(6323), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6116), 2, + ACTIONS(6325), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6134), 2, + ACTIONS(6331), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6112), 4, + ACTIONS(6321), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6132), 4, + ACTIONS(6327), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6118), 6, + ACTIONS(6329), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5201), 16, + ACTIONS(5291), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -327400,54 +332244,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [123190] = 15, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5455), 1, + sym__newline, + ACTIONS(6307), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6309), 1, aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6311), 1, aux_sym_expr_binary_parenthesized_token15, + STATE(3312), 1, + sym_comment, + STATE(3328), 1, + aux_sym_shebang_repeat1, + ACTIONS(6293), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6297), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6299), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6305), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6295), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6301), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6303), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5299), 14, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [127469] = 14, - ACTIONS(247), 1, + [123264] = 16, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5195), 1, + ACTIONS(5289), 1, sym__newline, - ACTIONS(6164), 1, + ACTIONS(6333), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6166), 1, + ACTIONS(6335), 1, aux_sym_expr_binary_parenthesized_token14, - STATE(2043), 1, + ACTIONS(6337), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6339), 1, + aux_sym_expr_binary_parenthesized_token16, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(3293), 1, + STATE(3313), 1, sym_comment, - ACTIONS(6120), 2, + ACTIONS(6319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6124), 2, + ACTIONS(6323), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6126), 2, + ACTIONS(6325), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6162), 2, + ACTIONS(6331), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6122), 4, + ACTIONS(6321), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6160), 4, + ACTIONS(6327), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6138), 6, + ACTIONS(6329), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5197), 15, + ACTIONS(5291), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -327459,53 +332364,221 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [123340] = 16, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5455), 1, + sym__newline, + ACTIONS(6307), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6309), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6311), 1, aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6313), 1, aux_sym_expr_binary_parenthesized_token16, + STATE(3314), 1, + sym_comment, + STATE(3329), 1, + aux_sym_shebang_repeat1, + ACTIONS(6293), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6297), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6299), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6305), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6295), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6301), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6303), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5299), 13, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [127541] = 14, - ACTIONS(247), 1, + [123416] = 17, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5296), 1, + ACTIONS(5289), 1, sym__newline, - ACTIONS(6136), 1, + ACTIONS(6333), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6140), 1, + ACTIONS(6335), 1, aux_sym_expr_binary_parenthesized_token14, - STATE(3192), 1, + ACTIONS(6337), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6339), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(6341), 1, + aux_sym_expr_binary_parenthesized_token17, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(3294), 1, + STATE(3315), 1, + sym_comment, + ACTIONS(6319), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6323), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6325), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6331), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6321), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6327), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6329), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5291), 12, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token18, + [123494] = 17, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5410), 1, + sym__newline, + ACTIONS(6307), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6309), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6311), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6313), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(6315), 1, + aux_sym_expr_binary_parenthesized_token17, + STATE(3316), 1, sym_comment, - ACTIONS(6110), 2, + STATE(3330), 1, + aux_sym_shebang_repeat1, + ACTIONS(6293), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6114), 2, + ACTIONS(6297), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6116), 2, + ACTIONS(6299), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6134), 2, + ACTIONS(6305), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6112), 4, + ACTIONS(6295), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6132), 4, + ACTIONS(6301), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6118), 6, + ACTIONS(6303), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5299), 12, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token18, + [123572] = 10, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5289), 1, + sym__newline, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(3317), 1, + sym_comment, + ACTIONS(6319), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6323), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6325), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6321), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6329), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5201), 15, + ACTIONS(5291), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -327517,55 +332590,191 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [127613] = 15, - ACTIONS(247), 1, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + [123636] = 10, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5195), 1, + ACTIONS(5455), 1, sym__newline, - ACTIONS(6164), 1, + STATE(3318), 1, + sym_comment, + STATE(3331), 1, + aux_sym_shebang_repeat1, + ACTIONS(6293), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6297), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6299), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6295), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6303), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5299), 23, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6166), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6168), 1, aux_sym_expr_binary_parenthesized_token15, - STATE(2043), 1, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + [123700] = 9, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5289), 1, + sym__newline, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(3295), 1, + STATE(3319), 1, sym_comment, - ACTIONS(6120), 2, + ACTIONS(6319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6124), 2, + ACTIONS(6323), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6126), 2, + ACTIONS(6325), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6162), 2, + ACTIONS(6321), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5291), 29, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6122), 4, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [123762] = 9, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5455), 1, + sym__newline, + STATE(3320), 1, + sym_comment, + STATE(3332), 1, + aux_sym_shebang_repeat1, + ACTIONS(6293), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6297), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6299), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6295), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6160), 4, + ACTIONS(5299), 29, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6138), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5197), 14, + [123824] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5305), 1, + sym__newline, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(3321), 1, + sym_comment, + ACTIONS(6319), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5307), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -327577,54 +332786,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [127687] = 15, - ACTIONS(247), 1, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [123880] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5296), 1, + ACTIONS(5305), 1, sym__newline, - ACTIONS(6136), 1, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(3322), 1, + sym_comment, + ACTIONS(6319), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6321), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5307), 33, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6140), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6142), 1, aux_sym_expr_binary_parenthesized_token15, - STATE(3193), 1, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [123938] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5305), 1, + sym__newline, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(3296), 1, + STATE(3323), 1, sym_comment, - ACTIONS(6110), 2, + ACTIONS(6319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6114), 2, + ACTIONS(6323), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6116), 2, + ACTIONS(6321), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5307), 31, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6134), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6112), 4, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [123998] = 11, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5305), 1, + sym__newline, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(3324), 1, + sym_comment, + ACTIONS(6319), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6323), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6325), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6321), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6132), 4, + ACTIONS(6327), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6118), 6, + ACTIONS(6329), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5201), 14, + ACTIONS(5307), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -327636,56 +332962,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [127761] = 16, - ACTIONS(247), 1, + [124064] = 12, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5195), 1, + ACTIONS(5305), 1, sym__newline, - ACTIONS(6164), 1, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(3325), 1, + sym_comment, + ACTIONS(6319), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6323), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6325), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6331), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6321), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6327), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6329), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5307), 17, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6166), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6168), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6170), 1, aux_sym_expr_binary_parenthesized_token16, - STATE(2043), 1, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [124132] = 13, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5305), 1, + sym__newline, + ACTIONS(6333), 1, + aux_sym_expr_binary_parenthesized_token13, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(3297), 1, + STATE(3326), 1, sym_comment, - ACTIONS(6120), 2, + ACTIONS(6319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6124), 2, + ACTIONS(6323), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6126), 2, + ACTIONS(6325), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6162), 2, + ACTIONS(6331), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6122), 4, + ACTIONS(6321), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6160), 4, + ACTIONS(6327), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6138), 6, + ACTIONS(6329), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5197), 13, + ACTIONS(5307), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -327697,18 +333078,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [127837] = 4, - ACTIONS(247), 1, + [124202] = 14, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4726), 1, - aux_sym_unquoted_token2, - STATE(3298), 1, - sym_comment, - ACTIONS(1572), 40, - ts_builtin_sym_end, + ACTIONS(5305), 1, sym__newline, + ACTIONS(6333), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6335), 1, + aux_sym_expr_binary_parenthesized_token14, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(3327), 1, + sym_comment, + ACTIONS(6319), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6323), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6325), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6331), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6321), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6327), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6329), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5307), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -327719,81 +333136,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [127889] = 16, - ACTIONS(247), 1, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [124274] = 15, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5296), 1, + ACTIONS(5305), 1, sym__newline, - ACTIONS(6136), 1, + ACTIONS(6333), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6140), 1, + ACTIONS(6335), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6142), 1, + ACTIONS(6337), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6152), 1, - aux_sym_expr_binary_parenthesized_token16, - STATE(3194), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(3299), 1, + STATE(3328), 1, sym_comment, - ACTIONS(6110), 2, + ACTIONS(6319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6114), 2, + ACTIONS(6323), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6116), 2, + ACTIONS(6325), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6134), 2, + ACTIONS(6331), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6112), 4, + ACTIONS(6321), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6132), 4, + ACTIONS(6327), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6118), 6, + ACTIONS(6329), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5201), 13, + ACTIONS(5307), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -327805,57 +333197,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [127965] = 17, - ACTIONS(247), 1, + [124348] = 16, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5195), 1, + ACTIONS(5305), 1, sym__newline, - ACTIONS(6164), 1, + ACTIONS(6333), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6166), 1, + ACTIONS(6335), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6168), 1, + ACTIONS(6337), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6170), 1, + ACTIONS(6339), 1, aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6172), 1, - aux_sym_expr_binary_parenthesized_token17, - STATE(2043), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(3300), 1, + STATE(3329), 1, sym_comment, - ACTIONS(6120), 2, + ACTIONS(6319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6124), 2, + ACTIONS(6323), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6126), 2, + ACTIONS(6325), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6162), 2, + ACTIONS(6331), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6122), 4, + ACTIONS(6321), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6160), 4, + ACTIONS(6327), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6138), 6, + ACTIONS(6329), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5197), 12, + ACTIONS(5307), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -327867,56 +333258,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [128043] = 17, - ACTIONS(247), 1, + [124424] = 17, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5245), 1, + ACTIONS(5305), 1, sym__newline, - ACTIONS(6136), 1, + ACTIONS(6333), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6140), 1, + ACTIONS(6335), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6142), 1, + ACTIONS(6337), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6152), 1, + ACTIONS(6339), 1, aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6154), 1, + ACTIONS(6341), 1, aux_sym_expr_binary_parenthesized_token17, - STATE(3195), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(3301), 1, + STATE(3330), 1, sym_comment, - ACTIONS(6110), 2, + ACTIONS(6319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6114), 2, + ACTIONS(6323), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6116), 2, + ACTIONS(6325), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6134), 2, + ACTIONS(6331), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6112), 4, + ACTIONS(6321), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6132), 4, + ACTIONS(6327), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6118), 6, + ACTIONS(6329), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5201), 12, + ACTIONS(5307), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -327929,24 +333321,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, aux_sym_expr_binary_parenthesized_token18, - [128121] = 6, - ACTIONS(247), 1, + [124502] = 10, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3302), 1, - sym_comment, - ACTIONS(6128), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6144), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6130), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5052), 33, + ACTIONS(5305), 1, sym__newline, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(3331), 1, + sym_comment, + ACTIONS(6319), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6323), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6325), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6321), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6329), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5307), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -327958,101 +333363,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [128177] = 9, - ACTIONS(247), 1, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + [124566] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, + ACTIONS(5305), 1, sym__newline, - ACTIONS(6053), 1, - anon_sym_list, - STATE(3303), 1, - sym_comment, - STATE(3305), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(6947), 1, - sym__type_annotation, - ACTIONS(6051), 2, - anon_sym_table, - anon_sym_record, - STATE(6559), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6049), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [128238] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3304), 1, + STATE(3332), 1, sym_comment, - ACTIONS(6204), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6208), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6210), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6206), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5052), 30, - ts_builtin_sym_end, - sym__newline, + ACTIONS(6319), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6323), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6325), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6321), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5307), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -328063,45 +333409,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [128295] = 9, - ACTIONS(247), 1, + anon_sym_RPAREN, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [124628] = 10, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(6053), 1, + ACTIONS(6200), 1, anon_sym_list, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(3305), 1, + ACTIONS(6257), 1, + anon_sym_AT, + ACTIONS(6343), 1, + anon_sym_GT, + STATE(3333), 1, sym_comment, - STATE(6838), 1, - sym__type_annotation, - ACTIONS(6051), 2, + STATE(7070), 1, + sym__all_type, + STATE(8057), 1, + sym_param_cmd, + ACTIONS(6198), 2, anon_sym_table, anon_sym_record, - STATE(6559), 3, + STATE(7560), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6049), 31, + ACTIONS(6196), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -328133,23 +333482,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [128356] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6212), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6214), 1, - aux_sym__immediate_decimal_token2, - STATE(3306), 1, - sym_comment, - ACTIONS(1540), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1542), 35, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_LPAREN2, + [124692] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5087), 1, + aux_sym_cmd_identifier_token37, + STATE(3334), 1, + sym_comment, + ACTIONS(1640), 40, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -328178,17 +333530,122 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, + [124744] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6241), 1, + aux_sym__immediate_decimal_token2, + STATE(3335), 1, + sym_comment, + ACTIONS(1715), 10, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1717), 30, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [128411] = 4, - ACTIONS(247), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [124798] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3307), 1, + ACTIONS(6345), 1, + aux_sym__immediate_decimal_token2, + STATE(3336), 1, sym_comment, - ACTIONS(5056), 12, - ts_builtin_sym_end, + ACTIONS(1769), 10, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1771), 30, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [124852] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3337), 1, + sym_comment, + ACTIONS(1074), 11, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_DOT, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1076), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -328200,56 +333657,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - ACTIONS(2311), 28, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [124904] = 14, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6357), 1, + aux_sym_expr_binary_token13, + ACTIONS(6359), 1, + aux_sym_expr_binary_token14, + ACTIONS(6361), 1, + aux_sym_expr_binary_token15, + ACTIONS(6363), 1, + aux_sym_expr_binary_token16, + STATE(3338), 1, + sym_comment, + ACTIONS(6347), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, + ACTIONS(6351), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, + ACTIONS(6353), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, + ACTIONS(6355), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, + ACTIONS(6349), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6365), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, + ACTIONS(6367), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [128462] = 9, - ACTIONS(247), 1, + ACTIONS(5131), 14, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + [124975] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6053), 1, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(6200), 1, anon_sym_list, - STATE(3308), 1, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(3339), 1, sym_comment, - STATE(3312), 1, - aux_sym__multiple_types_repeat2, - STATE(6877), 1, - sym__one_type, - STATE(7704), 1, + STATE(7089), 1, sym__type_annotation, - ACTIONS(6051), 2, + ACTIONS(6198), 2, anon_sym_table, anon_sym_record, - STATE(6559), 3, + STATE(6678), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6049), 31, + ACTIONS(6196), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -328281,27 +333785,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [128523] = 9, - ACTIONS(247), 1, + [125036] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(6053), 1, + ACTIONS(6200), 1, anon_sym_list, - STATE(3309), 1, + STATE(3340), 1, sym_comment, - STATE(3325), 1, - aux_sym_shebang_repeat1, - STATE(7011), 1, + STATE(3341), 1, + aux_sym__multiple_types_repeat2, + STATE(6783), 1, + sym__one_type, + STATE(7870), 1, sym__type_annotation, - ACTIONS(6051), 2, + ACTIONS(6198), 2, anon_sym_table, anon_sym_record, - STATE(6559), 3, + STATE(6678), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6049), 31, + ACTIONS(6196), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -328333,75 +333837,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [128584] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5059), 1, - sym__newline, - STATE(3310), 1, - sym_comment, - ACTIONS(5056), 11, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - ACTIONS(2311), 28, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [128637] = 9, - ACTIONS(247), 1, + [125097] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6053), 1, + ACTIONS(6375), 1, anon_sym_list, - STATE(3311), 1, - sym_comment, - STATE(3312), 1, - aux_sym__multiple_types_repeat2, - STATE(6940), 1, + STATE(7466), 1, sym__one_type, - STATE(7704), 1, + STATE(7870), 1, sym__type_annotation, - ACTIONS(6051), 2, + ACTIONS(6372), 2, anon_sym_table, anon_sym_record, - STATE(6559), 3, + STATE(3341), 2, + sym_comment, + aux_sym__multiple_types_repeat2, + STATE(6678), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6049), 31, + ACTIONS(6369), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -328433,26 +333888,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [128698] = 8, - ACTIONS(247), 1, + [125156] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3342), 1, + sym_comment, + ACTIONS(5107), 12, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + ACTIONS(2549), 28, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [125207] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6222), 1, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(6200), 1, anon_sym_list, - STATE(7238), 1, - sym__one_type, - STATE(7704), 1, + STATE(3343), 1, + sym_comment, + STATE(3371), 1, + aux_sym_shebang_repeat1, + STATE(7093), 1, sym__type_annotation, - ACTIONS(6219), 2, + ACTIONS(6198), 2, anon_sym_table, anon_sym_record, - STATE(3312), 2, - sym_comment, - aux_sym__multiple_types_repeat2, - STATE(6559), 3, + STATE(6678), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6216), 31, + ACTIONS(6196), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -328484,117 +333987,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [128757] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3313), 1, - sym_comment, - ACTIONS(1667), 10, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1669), 30, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [128808] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3314), 1, - sym_comment, - ACTIONS(1659), 10, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1661), 30, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [128859] = 4, - ACTIONS(247), 1, + [125268] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3315), 1, + STATE(3344), 1, sym_comment, - ACTIONS(2029), 10, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2031), 30, + ACTIONS(2285), 40, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -328606,42 +334005,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [128910] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6225), 1, - anon_sym_DOT, - ACTIONS(6227), 1, - aux_sym__immediate_decimal_token2, - STATE(3316), 1, - sym_comment, - ACTIONS(1518), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1520), 35, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -328670,16 +334033,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [128965] = 4, - ACTIONS(247), 1, + [125317] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3317), 1, + STATE(3345), 1, sym_comment, - ACTIONS(1738), 10, + ACTIONS(2218), 10, anon_sym_DASH, anon_sym_DOT_DOT2, anon_sym_err_GT, @@ -328690,7 +334049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1740), 30, + ACTIONS(2220), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -328721,27 +334080,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [129016] = 9, - ACTIONS(247), 1, + [125368] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(6233), 1, + ACTIONS(6200), 1, anon_sym_list, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(3318), 1, + STATE(3341), 1, + aux_sym__multiple_types_repeat2, + STATE(3346), 1, sym_comment, - STATE(4754), 1, + STATE(6759), 1, + sym__one_type, + STATE(7870), 1, sym__type_annotation, - ACTIONS(6231), 2, + ACTIONS(6198), 2, anon_sym_table, anon_sym_record, - STATE(4822), 3, + STATE(6678), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6229), 31, + ACTIONS(6196), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -328773,27 +334132,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [129077] = 9, - ACTIONS(247), 1, + [125429] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3347), 1, + sym_comment, + ACTIONS(2230), 10, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2232), 30, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [125480] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5110), 1, + sym__newline, + STATE(3348), 1, + sym_comment, + ACTIONS(5107), 11, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + ACTIONS(2549), 28, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [125533] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, + ACTIONS(3766), 1, sym__newline, - ACTIONS(6233), 1, + ACTIONS(6382), 1, anon_sym_list, - STATE(3319), 1, + STATE(3349), 1, sym_comment, - STATE(3338), 1, + STATE(3364), 1, aux_sym_shebang_repeat1, - STATE(4755), 1, + STATE(4734), 1, sym__type_annotation, - ACTIONS(6231), 2, + ACTIONS(6380), 2, anon_sym_table, anon_sym_record, - STATE(4822), 3, + STATE(4947), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6229), 31, + ACTIONS(6378), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -328825,59 +334279,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [129138] = 4, - ACTIONS(247), 1, + [125594] = 6, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3320), 1, + ACTIONS(6384), 1, + anon_sym_DOT, + ACTIONS(6386), 1, + aux_sym__immediate_decimal_token2, + STATE(3350), 1, sym_comment, - ACTIONS(2033), 10, + ACTIONS(1536), 11, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2035), 30, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_if, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token2, + ACTIONS(1538), 27, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [129189] = 3, - ACTIONS(247), 1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [125649] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3321), 1, + STATE(3351), 1, sym_comment, - ACTIONS(2233), 40, + ACTIONS(6347), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5131), 38, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -328890,8 +334349,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, @@ -328918,15 +334375,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [129238] = 4, - ACTIONS(247), 1, + [125700] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3322), 1, + STATE(3352), 1, sym_comment, - ACTIONS(6204), 2, + ACTIONS(6347), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(5052), 38, + ACTIONS(6349), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5131), 34, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -328939,10 +334401,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, aux_sym_expr_binary_token9, @@ -328965,20 +334423,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [129289] = 5, - ACTIONS(247), 1, + [125753] = 6, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3323), 1, + STATE(3353), 1, sym_comment, - ACTIONS(6204), 2, + ACTIONS(6347), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6206), 4, + ACTIONS(6351), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6349), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(5052), 34, + ACTIONS(5131), 32, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -328991,8 +334452,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, aux_sym_expr_binary_token11, @@ -329013,23 +334472,41 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [129342] = 6, - ACTIONS(247), 1, + [125808] = 10, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3324), 1, + STATE(3354), 1, sym_comment, - ACTIONS(6204), 2, + ACTIONS(6347), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6208), 2, + ACTIONS(6351), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6206), 4, + ACTIONS(6353), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6355), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(6349), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(5052), 32, + ACTIONS(6365), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(6367), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(5131), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -329042,110 +334519,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, aux_sym_expr_binary_token13, aux_sym_expr_binary_token14, aux_sym_expr_binary_token15, aux_sym_expr_binary_token16, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [129397] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(6053), 1, - anon_sym_list, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(3325), 1, - sym_comment, - STATE(6939), 1, - sym__type_annotation, - ACTIONS(6051), 2, - anon_sym_table, - anon_sym_record, - STATE(6559), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6049), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [129458] = 9, - ACTIONS(247), 1, + [125871] = 11, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3326), 1, + ACTIONS(6357), 1, + aux_sym_expr_binary_token13, + STATE(3355), 1, sym_comment, - ACTIONS(6204), 2, + ACTIONS(6347), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6208), 2, + ACTIONS(6351), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6210), 2, + ACTIONS(6353), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6206), 4, + ACTIONS(6355), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(6349), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6235), 4, + ACTIONS(6365), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6237), 6, + ACTIONS(6367), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - ACTIONS(5052), 20, + ACTIONS(5131), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -329158,49 +334574,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, aux_sym_expr_binary_token14, aux_sym_expr_binary_token15, aux_sym_expr_binary_token16, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - [129519] = 10, - ACTIONS(247), 1, + [125936] = 12, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3327), 1, + ACTIONS(6357), 1, + aux_sym_expr_binary_token13, + ACTIONS(6359), 1, + aux_sym_expr_binary_token14, + STATE(3356), 1, sym_comment, - ACTIONS(6204), 2, + ACTIONS(6347), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6208), 2, + ACTIONS(6351), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6210), 2, + ACTIONS(6353), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6239), 2, + ACTIONS(6355), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(6206), 4, + ACTIONS(6349), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6235), 4, + ACTIONS(6365), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6237), 6, + ACTIONS(6367), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - ACTIONS(5052), 18, + ACTIONS(5131), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -329213,49 +334630,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, aux_sym_expr_binary_token15, aux_sym_expr_binary_token16, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - [129582] = 11, - ACTIONS(247), 1, + [126003] = 13, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6241), 1, + ACTIONS(6357), 1, aux_sym_expr_binary_token13, - STATE(3328), 1, + ACTIONS(6359), 1, + aux_sym_expr_binary_token14, + ACTIONS(6361), 1, + aux_sym_expr_binary_token15, + STATE(3357), 1, sym_comment, - ACTIONS(6204), 2, + ACTIONS(6347), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6208), 2, + ACTIONS(6351), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6210), 2, + ACTIONS(6353), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6239), 2, + ACTIONS(6355), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(6206), 4, + ACTIONS(6349), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6235), 4, + ACTIONS(6365), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6237), 6, + ACTIONS(6367), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - ACTIONS(5052), 17, + ACTIONS(5131), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -329268,50 +334687,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, aux_sym_expr_binary_token16, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - [129647] = 12, - ACTIONS(247), 1, + [126072] = 15, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6241), 1, + ACTIONS(6357), 1, aux_sym_expr_binary_token13, - ACTIONS(6243), 1, + ACTIONS(6359), 1, aux_sym_expr_binary_token14, - STATE(3329), 1, + ACTIONS(6361), 1, + aux_sym_expr_binary_token15, + ACTIONS(6363), 1, + aux_sym_expr_binary_token16, + ACTIONS(6388), 1, + aux_sym_expr_binary_token17, + STATE(3358), 1, sym_comment, - ACTIONS(6204), 2, + ACTIONS(6347), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6208), 2, + ACTIONS(6351), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6210), 2, + ACTIONS(6353), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6239), 2, + ACTIONS(6355), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(6206), 4, + ACTIONS(6349), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6235), 4, + ACTIONS(6365), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6237), 6, + ACTIONS(6367), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - ACTIONS(5052), 16, + ACTIONS(5131), 13, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -329324,51 +334747,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - [129714] = 13, - ACTIONS(247), 1, + [126145] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6241), 1, + STATE(3359), 1, + sym_comment, + ACTIONS(6347), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6351), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6353), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6349), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6367), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(5131), 24, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, aux_sym_expr_binary_token13, - ACTIONS(6243), 1, aux_sym_expr_binary_token14, - ACTIONS(6245), 1, aux_sym_expr_binary_token15, - STATE(3330), 1, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + [126204] = 7, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3360), 1, sym_comment, - ACTIONS(6204), 2, + ACTIONS(6347), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6208), 2, + ACTIONS(6351), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6210), 2, + ACTIONS(6353), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6239), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(6206), 4, + ACTIONS(6349), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6235), 4, + ACTIONS(5131), 30, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6237), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - ACTIONS(5052), 15, + [126261] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3361), 1, + sym_comment, + ACTIONS(2297), 40, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -329381,53 +334867,250 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, aux_sym_expr_binary_token16, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - [129783] = 14, - ACTIONS(247), 1, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [126310] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6241), 1, + STATE(3362), 1, + sym_comment, + ACTIONS(2305), 40, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, aux_sym_expr_binary_token13, - ACTIONS(6243), 1, aux_sym_expr_binary_token14, - ACTIONS(6245), 1, aux_sym_expr_binary_token15, - ACTIONS(6247), 1, aux_sym_expr_binary_token16, - STATE(3331), 1, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [126359] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6390), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6392), 1, + aux_sym__immediate_decimal_token2, + STATE(3363), 1, + sym_comment, + ACTIONS(1528), 11, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token2, + ACTIONS(1530), 27, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [126414] = 9, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(6382), 1, + anon_sym_list, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(3364), 1, + sym_comment, + STATE(4843), 1, + sym__type_annotation, + ACTIONS(6380), 2, + anon_sym_table, + anon_sym_record, + STATE(4947), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6378), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [126475] = 9, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(6382), 1, + anon_sym_list, + STATE(3365), 1, + sym_comment, + STATE(3368), 1, + aux_sym_shebang_repeat1, + STATE(4733), 1, + sym__type_annotation, + ACTIONS(6380), 2, + anon_sym_table, + anon_sym_record, + STATE(4947), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6378), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [126536] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3366), 1, sym_comment, - ACTIONS(6204), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6208), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6210), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6239), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(6206), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6235), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(6237), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - ACTIONS(5052), 14, - ts_builtin_sym_end, + ACTIONS(1715), 10, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1717), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -329439,16 +335122,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - [129854] = 4, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [126587] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3332), 1, + ACTIONS(5996), 1, + anon_sym_DOT, + STATE(2752), 1, + sym_path, + STATE(2899), 1, + aux_sym_cell_path_repeat1, + STATE(3168), 1, + sym_cell_path, + STATE(3367), 1, sym_comment, - ACTIONS(1721), 10, + ACTIONS(1021), 9, anon_sym_DASH, - anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -329457,7 +335164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1723), 30, + ACTIONS(1023), 27, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -329471,15 +335178,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_if, - anon_sym_LBRACE, + anon_sym_in, anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -329488,27 +335192,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [129905] = 9, - ACTIONS(247), 1, + [126646] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, + ACTIONS(3766), 1, sym__newline, - ACTIONS(6233), 1, + ACTIONS(6382), 1, anon_sym_list, - STATE(3318), 1, + STATE(2498), 1, aux_sym_shebang_repeat1, - STATE(3333), 1, + STATE(3368), 1, sym_comment, - STATE(4752), 1, + STATE(4820), 1, sym__type_annotation, - ACTIONS(6231), 2, + ACTIONS(6380), 2, anon_sym_table, anon_sym_record, - STATE(4822), 3, + STATE(4947), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6229), 31, + ACTIONS(6378), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -329540,184 +335244,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [129966] = 15, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6241), 1, - aux_sym_expr_binary_token13, - ACTIONS(6243), 1, - aux_sym_expr_binary_token14, - ACTIONS(6245), 1, - aux_sym_expr_binary_token15, - ACTIONS(6247), 1, - aux_sym_expr_binary_token16, - ACTIONS(6249), 1, - aux_sym_expr_binary_token17, - STATE(3334), 1, - sym_comment, - ACTIONS(6204), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6208), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6210), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6239), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(6206), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6235), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(6237), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - ACTIONS(5052), 13, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token18, - [130039] = 3, - ACTIONS(247), 1, + [126707] = 9, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3335), 1, - sym_comment, - ACTIONS(2241), 40, - ts_builtin_sym_end, + ACTIONS(3766), 1, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [130088] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3336), 1, + ACTIONS(6200), 1, + anon_sym_list, + STATE(3339), 1, + aux_sym_shebang_repeat1, + STATE(3369), 1, sym_comment, - ACTIONS(2247), 40, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [130137] = 8, - ACTIONS(247), 1, + STATE(7170), 1, + sym__type_annotation, + ACTIONS(6198), 2, + anon_sym_table, + anon_sym_record, + STATE(6678), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6196), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [126768] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3337), 1, + STATE(3370), 1, sym_comment, - ACTIONS(6204), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6208), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6210), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6206), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6237), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - ACTIONS(5052), 24, - ts_builtin_sym_end, + ACTIONS(1703), 10, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1705), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -329729,39 +335324,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - [130196] = 9, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [126819] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, + ACTIONS(3766), 1, sym__newline, - ACTIONS(6233), 1, + ACTIONS(6200), 1, anon_sym_list, - STATE(749), 1, + STATE(2498), 1, aux_sym_shebang_repeat1, - STATE(3338), 1, + STATE(3371), 1, sym_comment, - STATE(4777), 1, + STATE(7101), 1, sym__type_annotation, - ACTIONS(6231), 2, + ACTIONS(6198), 2, anon_sym_table, anon_sym_record, - STATE(4822), 3, + STATE(6678), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6229), 31, + ACTIONS(6196), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -329793,148 +335395,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [130257] = 6, - ACTIONS(247), 1, + [126880] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6251), 1, - anon_sym_DOT, - ACTIONS(6253), 1, - aux_sym__immediate_decimal_token2, - STATE(3339), 1, - sym_comment, - ACTIONS(1518), 3, - sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1520), 34, - anon_sym_LBRACE, - anon_sym_LPAREN2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [130311] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6255), 1, - anon_sym_DOT, - ACTIONS(6257), 1, - aux_sym__immediate_decimal_token2, - STATE(3340), 1, + STATE(3372), 1, sym_comment, - ACTIONS(1518), 2, + ACTIONS(1769), 10, + anon_sym_DASH, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1520), 35, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_LPAREN2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [130365] = 22, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3229), 1, - aux_sym_record_entry_token1, - ACTIONS(3279), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3281), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3283), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3285), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3864), 1, - aux_sym_unquoted_token1, - ACTIONS(4397), 1, - anon_sym_DOT_DOT, - ACTIONS(5666), 1, - sym_val_date, - ACTIONS(6082), 1, - anon_sym_DOLLAR, - STATE(3341), 1, - sym_comment, - STATE(5689), 1, - sym_val_variable, - STATE(5690), 1, - sym_unquoted, - STATE(5858), 1, - sym__val_number_decimal, - STATE(7538), 1, - sym_val_bool, - STATE(7681), 1, - sym__val_range, - STATE(7695), 1, - sym__unquoted_anonymous_prefix, - ACTIONS(3259), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4399), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5662), 3, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(2643), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -329943,8 +335411,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2645), 9, - anon_sym_null, + ACTIONS(1771), 30, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -329953,21 +335442,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [130451] = 6, - ACTIONS(247), 1, + [126931] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6259), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6261), 1, + ACTIONS(6394), 1, + anon_sym_DOT, + ACTIONS(6396), 1, aux_sym__immediate_decimal_token2, - STATE(3342), 1, + STATE(3373), 1, sym_comment, - ACTIONS(1540), 2, + ACTIONS(1536), 3, + anon_sym_DASH, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1542), 35, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(1538), 35, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, @@ -330001,26 +335491,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [130505] = 8, - ACTIONS(247), 1, + [126986] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6263), 1, - anon_sym_DOT, - STATE(3343), 1, + ACTIONS(6398), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6400), 1, + aux_sym__immediate_decimal_token2, + STATE(3374), 1, sym_comment, - STATE(3371), 1, - aux_sym_cell_path_repeat1, - STATE(3434), 1, - sym_path, - STATE(3472), 1, - sym_cell_path, - ACTIONS(1005), 2, + ACTIONS(1528), 3, anon_sym_DASH, anon_sym_DOT_DOT2, - ACTIONS(1007), 33, + aux_sym_unquoted_token2, + ACTIONS(1530), 35, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_EQ_GT, + anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -330051,52 +335538,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [130563] = 22, - ACTIONS(247), 1, + sym_filesize_unit, + sym_duration_unit, + [127041] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3231), 1, - aux_sym_record_entry_token1, - ACTIONS(3279), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3281), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3283), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3285), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3864), 1, - aux_sym_unquoted_token1, - ACTIONS(4397), 1, - anon_sym_DOT_DOT, - ACTIONS(5666), 1, - sym_val_date, - ACTIONS(6082), 1, - anon_sym_DOLLAR, - STATE(3344), 1, + STATE(3375), 1, sym_comment, - STATE(5689), 1, - sym_val_variable, - STATE(5690), 1, - sym_unquoted, - STATE(5858), 1, - sym__val_number_decimal, - STATE(7538), 1, - sym_val_bool, - STATE(7681), 1, - sym__val_range, - STATE(7695), 1, - sym__unquoted_anonymous_prefix, - ACTIONS(3259), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4399), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5662), 3, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - ACTIONS(2643), 8, + ACTIONS(1826), 10, + anon_sym_DASH, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -330105,8 +335556,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2645), 9, - anon_sym_null, + ACTIONS(1828), 30, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -330115,131 +335587,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [130649] = 5, - ACTIONS(247), 1, + [127092] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6227), 1, - aux_sym__immediate_decimal_token2, - STATE(3345), 1, + STATE(3376), 1, sym_comment, - ACTIONS(1518), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1520), 35, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_LPAREN2, + ACTIONS(6347), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, + ACTIONS(6351), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, + ACTIONS(6353), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [130701] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1560), 1, - anon_sym_DASH, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - ACTIONS(4606), 1, - anon_sym_DOT_DOT2, - ACTIONS(4614), 1, - aux_sym_unquoted_token2, - ACTIONS(6265), 1, - sym_filesize_unit, - ACTIONS(6267), 1, - sym_duration_unit, - STATE(3346), 1, - sym_comment, - STATE(7282), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4608), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1572), 30, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, + ACTIONS(6349), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, + ACTIONS(6365), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, + ACTIONS(6367), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [130765] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6269), 1, - aux_sym__immediate_decimal_token2, - STATE(3347), 1, - sym_comment, - ACTIONS(1554), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1556), 35, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_LPAREN2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, + ACTIONS(5131), 20, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, aux_sym_expr_binary_token13, @@ -330248,130 +335639,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token16, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [130817] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6271), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6273), 1, - aux_sym__immediate_decimal_token2, - STATE(3348), 1, - sym_comment, - ACTIONS(1540), 11, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token2, - ACTIONS(1542), 26, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_filesize_unit, - sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [130871] = 6, - ACTIONS(247), 1, + [127153] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6275), 1, + ACTIONS(6402), 1, anon_sym_DOT, - ACTIONS(6277), 1, + ACTIONS(6404), 1, aux_sym__immediate_decimal_token2, - STATE(3349), 1, + STATE(3377), 1, sym_comment, - ACTIONS(1518), 11, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, + ACTIONS(1536), 3, + sym__newline, anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, aux_sym_unquoted_token2, - ACTIONS(1520), 26, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(1538), 34, anon_sym_LBRACE, - aux_sym_expr_unary_token1, + anon_sym_LPAREN2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, sym_filesize_unit, sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [130925] = 6, - ACTIONS(247), 1, + [127207] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6279), 1, + ACTIONS(6406), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6281), 1, + ACTIONS(6408), 1, aux_sym__immediate_decimal_token2, - STATE(3350), 1, + STATE(3378), 1, sym_comment, - ACTIONS(1540), 3, + ACTIONS(1528), 3, sym__newline, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1542), 34, + ACTIONS(1530), 34, anon_sym_LBRACE, anon_sym_LPAREN2, aux_sym_expr_binary_parenthesized_token1, @@ -330406,23 +335735,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [130979] = 8, - ACTIONS(247), 1, + [127261] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6263), 1, + ACTIONS(6410), 1, anon_sym_DOT, - STATE(1375), 1, + STATE(1426), 1, sym_cell_path, - STATE(3351), 1, + STATE(3379), 1, sym_comment, - STATE(3371), 1, + STATE(3405), 1, aux_sym_cell_path_repeat1, - STATE(3434), 1, + STATE(3494), 1, sym_path, - ACTIONS(1675), 2, + ACTIONS(1670), 2, anon_sym_DASH, anon_sym_DOT_DOT2, - ACTIONS(1677), 33, + ACTIONS(1672), 33, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_EQ_GT, @@ -330456,71 +335785,70 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [131037] = 6, - ACTIONS(247), 1, + [127319] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6098), 1, + ACTIONS(6412), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6283), 1, - anon_sym_DOT, - STATE(3352), 1, + STATE(3380), 1, sym_comment, - ACTIONS(1667), 9, + ACTIONS(1596), 11, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1669), 28, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_if, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token2, + ACTIONS(1598), 27, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [131091] = 8, - ACTIONS(247), 1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [127371] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6263), 1, + ACTIONS(6410), 1, anon_sym_DOT, - STATE(1371), 1, - sym_cell_path, - STATE(3353), 1, + STATE(3381), 1, sym_comment, - STATE(3371), 1, + STATE(3405), 1, aux_sym_cell_path_repeat1, - STATE(3434), 1, + STATE(3494), 1, sym_path, - ACTIONS(1641), 2, + STATE(3532), 1, + sym_cell_path, + ACTIONS(1021), 2, anon_sym_DASH, anon_sym_DOT_DOT2, - ACTIONS(1645), 33, + ACTIONS(1023), 33, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_EQ_GT, @@ -330554,20 +335882,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [131149] = 6, - ACTIONS(247), 1, + [127429] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6285), 1, + ACTIONS(6414), 1, anon_sym_DOT, - ACTIONS(6287), 1, + ACTIONS(6416), 1, aux_sym__immediate_decimal_token2, - STATE(3354), 1, + STATE(3382), 1, sym_comment, - ACTIONS(1518), 2, + ACTIONS(1536), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1520), 34, - anon_sym_LBRACE, + ACTIONS(1538), 35, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, @@ -330576,222 +335905,77 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [131202] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6253), 1, - aux_sym__immediate_decimal_token2, - STATE(3355), 1, - sym_comment, - ACTIONS(1518), 3, - sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1520), 34, - anon_sym_LBRACE, - anon_sym_LPAREN2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [131253] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6053), 1, - anon_sym_list, - STATE(3356), 1, - sym_comment, - STATE(7533), 1, - sym__type_annotation, - ACTIONS(6051), 2, - anon_sym_table, - anon_sym_record, - STATE(6559), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6049), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [131308] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6289), 1, - anon_sym_DOLLAR, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(6293), 1, - anon_sym_DOT, - ACTIONS(6297), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6299), 1, - aux_sym__immediate_decimal_token5, - STATE(3357), 1, - sym_comment, - STATE(3572), 1, - sym__immediate_decimal, - ACTIONS(6295), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3571), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1478), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1492), 20, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [131373] = 21, - ACTIONS(247), 1, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [127483] = 22, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3279), 1, + ACTIONS(3296), 1, + aux_sym_record_entry_token1, + ACTIONS(3366), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3281), 1, + ACTIONS(3368), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3283), 1, + ACTIONS(3370), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3285), 1, + ACTIONS(3372), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5666), 1, - sym_val_date, - ACTIONS(5740), 1, - anon_sym_DOT_DOT, - ACTIONS(5748), 1, + ACTIONS(3846), 1, aux_sym_unquoted_token1, - ACTIONS(6301), 1, + ACTIONS(4024), 1, + anon_sym_DOT_DOT, + ACTIONS(5691), 1, + sym_val_date, + ACTIONS(6418), 1, anon_sym_DOLLAR, - STATE(3358), 1, + STATE(3383), 1, sym_comment, - STATE(5656), 1, - sym__val_number_decimal, - STATE(5943), 1, + STATE(5830), 1, sym_val_variable, - STATE(6049), 1, + STATE(5833), 1, sym_unquoted, - STATE(7497), 1, - sym__val_range, - STATE(7538), 1, + STATE(5928), 1, + sym__val_number_decimal, + STATE(7610), 1, sym_val_bool, - STATE(7605), 1, + STATE(7794), 1, + sym__val_range, + STATE(7859), 1, sym__unquoted_anonymous_prefix, - ACTIONS(3259), 2, + ACTIONS(3350), 2, anon_sym_true, anon_sym_false, - ACTIONS(5742), 2, + ACTIONS(4026), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(5734), 3, + ACTIONS(5725), 3, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(2643), 8, + ACTIONS(2685), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -330800,7 +335984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2645), 9, + ACTIONS(2687), 9, anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -330810,19 +335994,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [131456] = 4, - ACTIONS(247), 1, + [127569] = 11, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3359), 1, - sym_comment, - ACTIONS(1653), 3, + ACTIONS(1628), 1, anon_sym_DASH, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + ACTIONS(4762), 1, anon_sym_DOT_DOT2, + ACTIONS(4770), 1, aux_sym_unquoted_token2, - ACTIONS(1655), 35, + ACTIONS(6420), 1, + sym_filesize_unit, + ACTIONS(6422), 1, + sym_duration_unit, + STATE(3384), 1, + sym_comment, + STATE(7534), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4764), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1640), 30, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -330851,132 +336047,52 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [131505] = 5, - ACTIONS(247), 1, + [127633] = 22, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6303), 1, - aux_sym__immediate_decimal_token2, - STATE(3360), 1, - sym_comment, - ACTIONS(1554), 11, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + ACTIONS(3294), 1, + aux_sym_record_entry_token1, + ACTIONS(3366), 1, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token2, - ACTIONS(1556), 26, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(3368), 1, aux_sym__val_number_decimal_token2, + ACTIONS(3370), 1, aux_sym__val_number_decimal_token3, + ACTIONS(3372), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_filesize_unit, - sym_duration_unit, + ACTIONS(3846), 1, + aux_sym_unquoted_token1, + ACTIONS(4024), 1, + anon_sym_DOT_DOT, + ACTIONS(5691), 1, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [131556] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1560), 1, - sym__newline, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - ACTIONS(4606), 1, - anon_sym_DOT_DOT2, - ACTIONS(4742), 1, - aux_sym_unquoted_token2, - ACTIONS(6305), 1, - sym_filesize_unit, - ACTIONS(6307), 1, - sym_duration_unit, - STATE(3361), 1, - sym_comment, - STATE(7224), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4608), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1572), 29, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [131619] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3945), 1, - anon_sym_DOT, - ACTIONS(6289), 1, + ACTIONS(6418), 1, anon_sym_DOLLAR, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(6297), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6299), 1, - aux_sym__immediate_decimal_token5, - STATE(3362), 1, + STATE(3385), 1, sym_comment, - STATE(3570), 1, - sym__immediate_decimal, - ACTIONS(6295), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3569), 2, - sym__expr_parenthesized_immediate, + STATE(5830), 1, sym_val_variable, - ACTIONS(1496), 8, + STATE(5833), 1, + sym_unquoted, + STATE(5928), 1, + sym__val_number_decimal, + STATE(7610), 1, + sym_val_bool, + STATE(7794), 1, + sym__val_range, + STATE(7859), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(3350), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4026), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5725), 3, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(2685), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -330985,19 +336101,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1506), 20, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + ACTIONS(2687), 9, + anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -331006,69 +336111,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [131684] = 5, - ACTIONS(247), 1, + [127719] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6309), 1, + ACTIONS(6424), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6426), 1, aux_sym__immediate_decimal_token2, - STATE(3363), 1, + STATE(3386), 1, sym_comment, - ACTIONS(1554), 3, - sym__newline, + ACTIONS(1528), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1556), 34, - anon_sym_LBRACE, - anon_sym_LPAREN2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [131735] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6311), 1, - anon_sym_DOT, - STATE(3434), 1, - sym_path, - ACTIONS(1015), 2, - anon_sym_DASH, - anon_sym_DOT_DOT2, - STATE(3364), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1017), 33, - anon_sym_DASH_DASH, - anon_sym_LBRACE, + ACTIONS(1530), 35, + anon_sym_PIPE, anon_sym_EQ_GT, + anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -331099,16 +336157,74 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [131788] = 4, - ACTIONS(247), 1, + sym_filesize_unit, + sym_duration_unit, + [127773] = 12, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3365), 1, + ACTIONS(6227), 1, + anon_sym_DOLLAR, + ACTIONS(6229), 1, + anon_sym_LPAREN2, + ACTIONS(6235), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6237), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6428), 1, + anon_sym_DOT, + STATE(3387), 1, + sym_comment, + STATE(3601), 1, + sym__immediate_decimal, + ACTIONS(6233), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3534), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1510), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1524), 21, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [127839] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6430), 1, + aux_sym__immediate_decimal_token2, + STATE(3388), 1, sym_comment, - ACTIONS(1518), 3, + ACTIONS(1596), 3, anon_sym_DASH, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1520), 35, + ACTIONS(1598), 35, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_LPAREN2, @@ -331144,64 +336260,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [131837] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6314), 1, - anon_sym_DOT_DOT2, - STATE(3366), 1, - sym_comment, - ACTIONS(6316), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2007), 9, - anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2013), 26, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [131890] = 6, - ACTIONS(247), 1, + [127891] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6318), 1, - anon_sym_DOT_DOT2, - STATE(3367), 1, + ACTIONS(6241), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6432), 1, + anon_sym_DOT, + STATE(3389), 1, sym_comment, - ACTIONS(6320), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2019), 9, + ACTIONS(1715), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -331211,7 +336279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2025), 26, + ACTIONS(1717), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -331225,8 +336293,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_DASH_DASH, + anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and, anon_sym_xor, anon_sym_or, @@ -331238,19 +336308,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [131943] = 5, - ACTIONS(247), 1, + [127945] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6322), 1, + ACTIONS(6396), 1, aux_sym__immediate_decimal_token2, - STATE(3368), 1, + STATE(3390), 1, sym_comment, - ACTIONS(1554), 2, + ACTIONS(1536), 3, + anon_sym_DASH, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1556), 35, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(1538), 35, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, @@ -331284,19 +336355,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [131994] = 4, - ACTIONS(247), 1, + [127997] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3369), 1, + ACTIONS(6386), 1, + aux_sym__immediate_decimal_token2, + STATE(3391), 1, sym_comment, - ACTIONS(1554), 3, + ACTIONS(1536), 11, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, aux_sym_unquoted_token2, - ACTIONS(1556), 35, + ACTIONS(1538), 27, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [128049] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6410), 1, + anon_sym_DOT, + STATE(1399), 1, + sym_cell_path, + STATE(3392), 1, + sym_comment, + STATE(3405), 1, + aux_sym_cell_path_repeat1, + STATE(3494), 1, + sym_path, + ACTIONS(1664), 2, + anon_sym_DASH, + anon_sym_DOT_DOT2, + ACTIONS(1668), 33, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_LPAREN2, + anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -331327,21 +336452,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [132043] = 6, - ACTIONS(247), 1, + [128107] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6324), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6326), 1, - aux_sym__immediate_decimal_token2, - STATE(3370), 1, + STATE(3393), 1, sym_comment, - ACTIONS(1540), 2, + ACTIONS(1536), 3, + anon_sym_DASH, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1542), 34, + ACTIONS(1538), 35, + anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_LPAREN2, aux_sym_expr_binary_token1, @@ -331376,24 +336497,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [132096] = 7, - ACTIONS(247), 1, + [128156] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6263), 1, - anon_sym_DOT, - STATE(3364), 1, - aux_sym_cell_path_repeat1, - STATE(3371), 1, + ACTIONS(6438), 1, + anon_sym_list, + STATE(3394), 1, sym_comment, - STATE(3434), 1, - sym_path, - ACTIONS(1011), 2, - anon_sym_DASH, + STATE(5371), 1, + sym__all_type, + ACTIONS(6436), 2, + anon_sym_table, + anon_sym_record, + STATE(5585), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6434), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [128211] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6440), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6442), 1, + aux_sym__immediate_decimal_token2, + STATE(3395), 1, + sym_comment, + ACTIONS(1528), 2, anon_sym_DOT_DOT2, - ACTIONS(1013), 33, - anon_sym_DASH_DASH, + aux_sym_unquoted_token2, + ACTIONS(1530), 34, anon_sym_LBRACE, - anon_sym_EQ_GT, + anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -331424,50 +336590,150 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [132151] = 21, - ACTIONS(247), 1, + sym_filesize_unit, + sym_duration_unit, + [128264] = 12, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6444), 1, + anon_sym_DOLLAR, + ACTIONS(6446), 1, + anon_sym_LPAREN2, + ACTIONS(6448), 1, + anon_sym_DOT, + ACTIONS(6452), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6454), 1, + aux_sym__immediate_decimal_token5, + STATE(3396), 1, + sym_comment, + STATE(3706), 1, + sym__immediate_decimal, + ACTIONS(6450), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3694), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1510), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1524), 20, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [128329] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3279), 1, + STATE(3397), 1, + sym_comment, + ACTIONS(1528), 11, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - ACTIONS(3281), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + aux_sym_unquoted_token2, + ACTIONS(1530), 27, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, - ACTIONS(3283), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3285), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3864), 1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [128378] = 21, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(3322), 1, aux_sym_unquoted_token1, - ACTIONS(4397), 1, - anon_sym_DOT_DOT, - ACTIONS(5666), 1, + ACTIONS(3366), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3368), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3370), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3372), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5691), 1, sym_val_date, - ACTIONS(6082), 1, + ACTIONS(5844), 1, + anon_sym_DOT_DOT, + ACTIONS(6456), 1, anon_sym_DOLLAR, - STATE(3372), 1, + STATE(3398), 1, sym_comment, - STATE(5689), 1, - sym_val_variable, - STATE(5690), 1, - sym_unquoted, - STATE(5858), 1, + STATE(5889), 1, sym__val_number_decimal, - STATE(7538), 1, + STATE(5989), 1, + sym_unquoted, + STATE(6183), 1, + sym_val_variable, + STATE(7610), 1, sym_val_bool, - STATE(7681), 1, - sym__val_range, - STATE(7695), 1, + STATE(7622), 1, sym__unquoted_anonymous_prefix, - ACTIONS(3259), 2, + STATE(7869), 1, + sym__val_range, + ACTIONS(3350), 2, anon_sym_true, anon_sym_false, - ACTIONS(4399), 2, + ACTIONS(5846), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(5662), 3, + ACTIONS(5840), 3, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - ACTIONS(2643), 8, + ACTIONS(2685), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -331476,7 +336742,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2645), 9, + ACTIONS(2687), 9, anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -331486,68 +336752,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [132234] = 4, - ACTIONS(247), 1, + [128461] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3373), 1, + ACTIONS(6404), 1, + aux_sym__immediate_decimal_token2, + STATE(3399), 1, sym_comment, - ACTIONS(1540), 3, - anon_sym_DASH, + ACTIONS(1536), 3, + sym__newline, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1542), 35, - anon_sym_DASH_DASH, + ACTIONS(1538), 34, anon_sym_LBRACE, anon_sym_LPAREN2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [132283] = 7, - ACTIONS(247), 1, + [128512] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6332), 1, - anon_sym_list, - STATE(3374), 1, + ACTIONS(6458), 1, + sym__entry_separator, + STATE(3400), 2, sym_comment, - STATE(7279), 1, - sym__type_annotation, - ACTIONS(6330), 2, - anon_sym_table, - anon_sym_record, - STATE(7256), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6328), 31, + aux_sym__multiple_types_repeat1, + ACTIONS(2363), 36, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -331577,25 +336838,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_range, anon_sym_signature, anon_sym_string, + anon_sym_table, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [132338] = 7, - ACTIONS(247), 1, + anon_sym_record, + anon_sym_list, + [128561] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6053), 1, + ACTIONS(6465), 1, anon_sym_list, - STATE(3375), 1, + STATE(3401), 1, sym_comment, - STATE(5477), 1, - sym__all_type, - ACTIONS(6051), 2, + STATE(7456), 1, + sym__type_annotation, + ACTIONS(6463), 2, anon_sym_table, anon_sym_record, - STATE(5544), 3, + STATE(7430), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6049), 31, + ACTIONS(6461), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -331627,19 +336891,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [132393] = 5, - ACTIONS(247), 1, + [128616] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6257), 1, + ACTIONS(6467), 1, aux_sym__immediate_decimal_token2, - STATE(3376), 1, + STATE(3402), 1, sym_comment, - ACTIONS(1518), 2, + ACTIONS(1596), 3, + sym__newline, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1520), 35, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(1598), 34, + anon_sym_LBRACE, + anon_sym_LPAREN2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [128667] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6469), 1, + anon_sym_DOT, + ACTIONS(6471), 1, + aux_sym__immediate_decimal_token2, + STATE(3403), 1, + sym_comment, + ACTIONS(1536), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1538), 34, + anon_sym_LBRACE, anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, @@ -331673,18 +336984,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [132444] = 6, - ACTIONS(247), 1, + [128720] = 21, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6334), 1, - anon_sym_DOT_DOT2, - STATE(3377), 1, + ACTIONS(3366), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3368), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3370), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3372), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3846), 1, + aux_sym_unquoted_token1, + ACTIONS(4024), 1, + anon_sym_DOT_DOT, + ACTIONS(5691), 1, + sym_val_date, + ACTIONS(6418), 1, + anon_sym_DOLLAR, + STATE(3404), 1, sym_comment, - ACTIONS(6336), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1991), 9, - anon_sym_DASH, + STATE(5830), 1, + sym_val_variable, + STATE(5833), 1, + sym_unquoted, + STATE(5928), 1, + sym__val_number_decimal, + STATE(7610), 1, + sym_val_bool, + STATE(7794), 1, + sym__val_range, + STATE(7859), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(3350), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4026), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5725), 3, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + ACTIONS(2685), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -331693,25 +337036,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1997), 26, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + ACTIONS(2687), 9, + anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -331720,23 +337046,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [132497] = 7, - ACTIONS(247), 1, + [128803] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6053), 1, + ACTIONS(6410), 1, + anon_sym_DOT, + STATE(3405), 1, + sym_comment, + STATE(3411), 1, + aux_sym_cell_path_repeat1, + STATE(3494), 1, + sym_path, + ACTIONS(1027), 2, + anon_sym_DASH, + anon_sym_DOT_DOT2, + ACTIONS(1029), 33, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [128858] = 7, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6200), 1, anon_sym_list, - STATE(3378), 1, + STATE(3406), 1, sym_comment, - STATE(5475), 1, - sym__all_type, - ACTIONS(6051), 2, + STATE(7798), 1, + sym__type_annotation, + ACTIONS(6198), 2, anon_sym_table, anon_sym_record, - STATE(5544), 3, + STATE(6678), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6049), 31, + ACTIONS(6196), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -331768,73 +337142,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [132552] = 6, - ACTIONS(247), 1, + [128913] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6338), 1, + ACTIONS(4614), 1, anon_sym_DOT_DOT2, - STATE(3379), 1, + ACTIONS(6473), 1, + sym_filesize_unit, + ACTIONS(6475), 1, + sym_duration_unit, + ACTIONS(6477), 1, + aux_sym_unquoted_token2, + STATE(3407), 1, sym_comment, - ACTIONS(6340), 2, + ACTIONS(4616), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1999), 9, - anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2005), 26, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [132605] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6277), 1, - aux_sym__immediate_decimal_token2, - STATE(3380), 1, - sym_comment, - ACTIONS(1518), 11, + ACTIONS(1628), 9, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - aux_sym_unquoted_token2, - ACTIONS(1520), 26, + ACTIONS(1640), 23, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -331845,72 +337180,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_LBRACE, aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - sym_filesize_unit, - sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [132656] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3381), 1, - sym_comment, - ACTIONS(2489), 9, - anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2491), 28, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [132704] = 4, - ACTIONS(247), 1, + [128972] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3382), 1, + STATE(3408), 1, sym_comment, - ACTIONS(1540), 11, + ACTIONS(1536), 11, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -331922,7 +337209,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token2, - ACTIONS(1542), 26, + ACTIONS(1538), 27, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -331949,69 +337237,120 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [132752] = 10, - ACTIONS(247), 1, + [129021] = 11, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, + ACTIONS(1628), 1, + sym__newline, + ACTIONS(4433), 1, anon_sym_LPAREN2, - ACTIONS(4606), 1, + ACTIONS(4762), 1, anon_sym_DOT_DOT2, - ACTIONS(4614), 1, + ACTIONS(4842), 1, aux_sym_unquoted_token2, - ACTIONS(6342), 1, + ACTIONS(6479), 1, sym_filesize_unit, - ACTIONS(6344), 1, + ACTIONS(6481), 1, sym_duration_unit, - STATE(3383), 1, + STATE(3409), 1, sym_comment, - STATE(7282), 1, + STATE(7439), 1, sym__expr_parenthesized_immediate, - ACTIONS(4608), 2, + ACTIONS(4764), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1572), 29, + ACTIONS(1640), 29, anon_sym_LBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [132812] = 5, - ACTIONS(247), 1, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [129084] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6287), 1, - aux_sym__immediate_decimal_token2, - STATE(3384), 1, + STATE(3410), 1, sym_comment, - ACTIONS(1518), 2, + ACTIONS(1711), 11, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, aux_sym_unquoted_token2, - ACTIONS(1520), 34, + ACTIONS(1713), 27, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [129133] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6483), 1, + anon_sym_DOT, + STATE(3494), 1, + sym_path, + ACTIONS(1031), 2, + anon_sym_DASH, + anon_sym_DOT_DOT2, + STATE(3411), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(1033), 33, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_LPAREN2, + anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -332042,17 +337381,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [132862] = 4, - ACTIONS(247), 1, + [129186] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3385), 1, + ACTIONS(6416), 1, + aux_sym__immediate_decimal_token2, + STATE(3412), 1, sym_comment, - ACTIONS(1554), 2, + ACTIONS(1536), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1556), 35, + ACTIONS(1538), 35, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_LPAREN2, @@ -332088,56 +337427,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [132910] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3386), 1, - sym_comment, - ACTIONS(1554), 3, - sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1556), 34, - anon_sym_LBRACE, - anon_sym_LPAREN2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [132958] = 4, - ACTIONS(247), 1, + [129237] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3387), 1, + STATE(3413), 1, sym_comment, - ACTIONS(1518), 11, + ACTIONS(1596), 11, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -332149,7 +337444,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, aux_sym_unquoted_token2, - ACTIONS(1520), 26, + ACTIONS(1598), 27, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -332176,72 +337472,76 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [133006] = 4, - ACTIONS(247), 1, + [129286] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3388), 1, + ACTIONS(6486), 1, + aux_sym__immediate_decimal_token2, + STATE(3414), 1, sym_comment, - ACTIONS(1653), 3, - sym__newline, + ACTIONS(1596), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1655), 34, - anon_sym_LBRACE, + ACTIONS(1598), 35, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_LPAREN2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [133054] = 11, - ACTIONS(247), 1, + [129337] = 12, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6291), 1, + ACTIONS(6444), 1, + anon_sym_DOLLAR, + ACTIONS(6446), 1, anon_sym_LPAREN2, - ACTIONS(6297), 1, + ACTIONS(6452), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6299), 1, + ACTIONS(6454), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6301), 1, - anon_sym_DOLLAR, - STATE(3389), 1, + ACTIONS(6488), 1, + anon_sym_DOT, + STATE(3415), 1, sym_comment, - STATE(3835), 1, + STATE(3708), 1, sym__immediate_decimal, - ACTIONS(6346), 2, + ACTIONS(6450), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1889), 2, + STATE(3703), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1478), 8, + ACTIONS(1560), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -332250,7 +337550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1492), 20, + ACTIONS(1570), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -332271,16 +337571,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [133116] = 4, - ACTIONS(3), 1, + [129402] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6348), 1, - sym__entry_separator, - STATE(3390), 2, + STATE(3416), 1, sym_comment, - aux_sym__multiple_types_repeat1, - ACTIONS(2319), 35, - anon_sym_RBRACK, + ACTIONS(1528), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1530), 35, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [129451] = 7, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6438), 1, + anon_sym_list, + STATE(3417), 1, + sym_comment, + STATE(5374), 1, + sym__all_type, + ACTIONS(6436), 2, + anon_sym_table, + anon_sym_record, + STATE(5585), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6434), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -332310,71 +337662,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_range, anon_sym_signature, anon_sym_string, - anon_sym_table, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - [133164] = 9, - ACTIONS(247), 1, + [129506] = 11, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6229), 1, + anon_sym_LPAREN2, + ACTIONS(6235), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6237), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6251), 1, + anon_sym_DOLLAR, + STATE(3418), 1, + sym_comment, + STATE(3574), 1, + sym__immediate_decimal, + ACTIONS(6253), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3422), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1510), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1524), 21, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [129569] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4512), 1, + STATE(3419), 1, + sym_comment, + ACTIONS(1596), 3, + anon_sym_DASH, anon_sym_DOT_DOT2, - ACTIONS(6351), 1, - sym_filesize_unit, - ACTIONS(6353), 1, - sym_duration_unit, - ACTIONS(6355), 1, aux_sym_unquoted_token2, - STATE(3391), 1, - sym_comment, - ACTIONS(4514), 2, + ACTIONS(1598), 35, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1560), 9, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1572), 22, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [133222] = 4, - ACTIONS(247), 1, + sym_filesize_unit, + sym_duration_unit, + [129618] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3392), 1, + STATE(3420), 1, sym_comment, - ACTIONS(1653), 2, + ACTIONS(1711), 3, + anon_sym_DASH, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1655), 35, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(1713), 35, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, @@ -332408,13 +337806,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [133270] = 4, - ACTIONS(247), 1, + [129667] = 11, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3393), 1, + ACTIONS(6229), 1, + anon_sym_LPAREN2, + ACTIONS(6235), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6237), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6251), 1, + anon_sym_DOLLAR, + STATE(3421), 1, sym_comment, - ACTIONS(2007), 9, - anon_sym_DASH, + STATE(3564), 1, + sym__immediate_decimal, + ACTIONS(6253), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3433), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1544), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -332423,7 +337836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2013), 28, + ACTIONS(1556), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -332436,14 +337849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_if, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -332452,56 +337858,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [133318] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3394), 1, - sym_comment, - ACTIONS(1554), 11, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - aux_sym_unquoted_token2, - ACTIONS(1556), 26, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_filesize_unit, - sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [133366] = 4, - ACTIONS(247), 1, + [129730] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3395), 1, + STATE(3422), 1, sym_comment, - ACTIONS(2485), 9, + ACTIONS(2206), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -332511,7 +337873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2487), 28, + ACTIONS(2212), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -332540,12 +337902,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [133414] = 4, - ACTIONS(247), 1, + [129778] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3396), 1, + STATE(3423), 1, sym_comment, - ACTIONS(2473), 9, + ACTIONS(2113), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -332555,7 +337917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2475), 28, + ACTIONS(2119), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -332584,28 +337946,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [133462] = 11, - ACTIONS(247), 1, + [129826] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(6297), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6299), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6301), 1, - anon_sym_DOLLAR, - STATE(1935), 1, - sym__immediate_decimal, - STATE(3397), 1, + STATE(3424), 1, sym_comment, - ACTIONS(6346), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1934), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1602), 8, + ACTIONS(2498), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -332614,8 +337961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1604), 20, - ts_builtin_sym_end, + ACTIONS(2500), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -332627,6 +337973,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -332635,12 +337990,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [133524] = 4, - ACTIONS(247), 1, + [129874] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3398), 1, + STATE(3425), 1, sym_comment, - ACTIONS(2019), 9, + ACTIONS(2426), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -332650,7 +338005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2025), 28, + ACTIONS(2428), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -332679,18 +338034,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [133572] = 6, + [129922] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6357), 1, + ACTIONS(6490), 1, anon_sym_RBRACK, - ACTIONS(6361), 1, + ACTIONS(6494), 1, sym__entry_separator, - STATE(3390), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(3399), 1, + STATE(3426), 1, sym_comment, - ACTIONS(6359), 34, + ACTIONS(6492), 34, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -332725,56 +338080,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var_DASHwith_DASHopt_DASHtype, anon_sym_record, anon_sym_list, - [133624] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3400), 1, - sym_comment, - ACTIONS(1540), 3, - sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1542), 34, - anon_sym_LBRACE, - anon_sym_LPAREN2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [133672] = 4, - ACTIONS(247), 1, + [129974] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3401), 1, + STATE(3427), 1, sym_comment, - ACTIONS(2513), 9, + ACTIONS(2446), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -332784,7 +338095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2515), 28, + ACTIONS(2448), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -332813,12 +338124,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [133720] = 4, - ACTIONS(247), 1, + [130022] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3402), 1, + STATE(3428), 1, sym_comment, - ACTIONS(1991), 9, + ACTIONS(2486), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -332828,7 +338139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1997), 28, + ACTIONS(2488), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -332857,28 +338168,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [133768] = 10, - ACTIONS(247), 1, + [130070] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - ACTIONS(4606), 1, + STATE(3429), 1, + sym_comment, + ACTIONS(1536), 2, anon_sym_DOT_DOT2, - ACTIONS(4614), 1, aux_sym_unquoted_token2, - ACTIONS(6363), 1, - sym_filesize_unit, - ACTIONS(6365), 1, - sym_duration_unit, - STATE(3403), 1, - sym_comment, - STATE(7282), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4608), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1572), 29, + ACTIONS(1538), 35, + anon_sym_PIPE, anon_sym_EQ_GT, + anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -332907,72 +338208,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [133828] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3404), 1, - sym_comment, - ACTIONS(1518), 3, - sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1520), 34, - anon_sym_LBRACE, - anon_sym_LPAREN2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [133876] = 11, - ACTIONS(247), 1, + [130118] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(6297), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6299), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6301), 1, - anon_sym_DOLLAR, - STATE(1937), 1, - sym__immediate_decimal, - STATE(3405), 1, + STATE(3430), 1, sym_comment, - ACTIONS(6346), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1936), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1586), 8, + ACTIONS(2414), 9, + anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -332981,8 +338227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1588), 20, - ts_builtin_sym_end, + ACTIONS(2416), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -332994,6 +338239,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -333002,21 +338256,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [133938] = 5, - ACTIONS(247), 1, + [130166] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6367), 1, - anon_sym_QMARK2, - STATE(3406), 1, + STATE(3431), 1, sym_comment, - ACTIONS(1022), 3, + ACTIONS(2482), 9, anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1024), 33, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2484), 28, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH_DASH, + anon_sym_if, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [130214] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3432), 1, + sym_comment, + ACTIONS(1528), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1530), 35, + anon_sym_PIPE, anon_sym_EQ_GT, + anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -333047,60 +338342,61 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [133988] = 5, - ACTIONS(247), 1, + sym_filesize_unit, + sym_duration_unit, + [130262] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6369), 1, - anon_sym_QMARK2, - STATE(3407), 1, + STATE(3433), 1, sym_comment, - ACTIONS(1028), 3, + ACTIONS(2524), 9, anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1030), 33, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2526), 28, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH_DASH, + anon_sym_if, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [134038] = 4, - ACTIONS(247), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [130310] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3408), 1, + STATE(3434), 1, sym_comment, - ACTIONS(1518), 2, + ACTIONS(1596), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1520), 35, + ACTIONS(1598), 35, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_LPAREN2, @@ -333136,64 +338432,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [134086] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6361), 1, - sym__entry_separator, - ACTIONS(6371), 1, - anon_sym_RBRACK, - STATE(3390), 1, - aux_sym__multiple_types_repeat1, - STATE(3409), 1, - sym_comment, - ACTIONS(6359), 34, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - [134138] = 6, + [130358] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6361), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(6373), 1, + ACTIONS(6496), 1, anon_sym_RBRACK, - STATE(3390), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(3410), 1, + STATE(3435), 1, sym_comment, - ACTIONS(6359), 34, + ACTIONS(6492), 34, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -333228,69 +338478,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var_DASHwith_DASHopt_DASHtype, anon_sym_record, anon_sym_list, - [134190] = 11, - ACTIONS(247), 1, + [130410] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(6297), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6299), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6301), 1, - anon_sym_DOLLAR, - STATE(1940), 1, - sym__immediate_decimal, - STATE(3411), 1, + STATE(3436), 1, sym_comment, - ACTIONS(6346), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1938), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1576), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1584), 20, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + ACTIONS(1711), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1713), 35, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [134252] = 6, + anon_sym_EQ_GT, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [130458] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6361), 1, + ACTIONS(2404), 1, sym__entry_separator, - ACTIONS(6375), 1, - anon_sym_RBRACK, - STATE(3390), 1, - aux_sym__multiple_types_repeat1, - STATE(3412), 1, + STATE(3437), 1, sym_comment, - ACTIONS(6359), 34, + ACTIONS(2402), 36, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -333325,107 +338566,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var_DASHwith_DASHopt_DASHtype, anon_sym_record, anon_sym_list, - [134304] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(6297), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6299), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6301), 1, - anon_sym_DOLLAR, - STATE(1902), 1, - sym__immediate_decimal, - STATE(3413), 1, - sym_comment, - ACTIONS(6346), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1827), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1496), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1506), 20, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [134366] = 4, - ACTIONS(247), 1, + [130506] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3414), 1, + ACTIONS(6471), 1, + aux_sym__immediate_decimal_token2, + STATE(3438), 1, sym_comment, - ACTIONS(1653), 11, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, + ACTIONS(1536), 2, anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, aux_sym_unquoted_token2, - ACTIONS(1655), 26, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(1538), 34, anon_sym_LBRACE, - aux_sym_expr_unary_token1, + anon_sym_LPAREN2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, sym_filesize_unit, sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [134414] = 4, - ACTIONS(247), 1, + [130556] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3415), 1, + STATE(3439), 1, sym_comment, - ACTIONS(2477), 9, + ACTIONS(2222), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -333435,7 +338626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2479), 28, + ACTIONS(2228), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -333464,28 +338655,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [134462] = 11, - ACTIONS(247), 1, + [130604] = 11, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6291), 1, + ACTIONS(6446), 1, anon_sym_LPAREN2, - ACTIONS(6297), 1, + ACTIONS(6452), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6299), 1, + ACTIONS(6454), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6301), 1, + ACTIONS(6456), 1, anon_sym_DOLLAR, - STATE(3416), 1, + STATE(3440), 1, sym_comment, - STATE(3818), 1, + STATE(3666), 1, sym__immediate_decimal, - ACTIONS(6346), 2, + ACTIONS(6498), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1941), 2, + STATE(3665), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1548), 8, + ACTIONS(1608), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -333494,7 +338685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1550), 20, + ACTIONS(1610), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -333515,12 +338706,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [134524] = 4, - ACTIONS(247), 1, + [130666] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3417), 1, + STATE(3441), 1, sym_comment, - ACTIONS(2481), 9, + ACTIONS(2551), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -333530,7 +338721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2483), 28, + ACTIONS(2553), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -333559,20 +338750,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [134572] = 4, - ACTIONS(247), 1, + [130714] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3418), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(6500), 1, + anon_sym_RBRACK, + STATE(3400), 1, + aux_sym__multiple_types_repeat1, + STATE(3442), 1, + sym_comment, + ACTIONS(6492), 34, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + [130766] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6502), 1, + anon_sym_QMARK2, + STATE(3443), 1, sym_comment, ACTIONS(1042), 3, anon_sym_DASH, anon_sym_DOT_DOT2, anon_sym_DOT, - ACTIONS(1044), 34, + ACTIONS(1044), 33, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_EQ_GT, - anon_sym_QMARK2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -333603,64 +338841,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [134620] = 4, - ACTIONS(247), 1, + [130816] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3419), 1, + ACTIONS(6504), 1, + anon_sym_QMARK2, + STATE(3444), 1, sym_comment, - ACTIONS(2493), 9, + ACTIONS(1048), 3, anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2495), 28, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1050), 33, anon_sym_DASH_DASH, - anon_sym_if, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [134668] = 4, - ACTIONS(247), 1, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [130866] = 10, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3420), 1, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + ACTIONS(4762), 1, + anon_sym_DOT_DOT2, + ACTIONS(4770), 1, + aux_sym_unquoted_token2, + ACTIONS(6506), 1, + sym_filesize_unit, + ACTIONS(6508), 1, + sym_duration_unit, + STATE(3445), 1, sym_comment, - ACTIONS(1034), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1036), 34, - anon_sym_DASH_DASH, - anon_sym_LBRACE, + STATE(7534), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4764), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1640), 29, anon_sym_EQ_GT, - anon_sym_QMARK2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -333689,15 +338936,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [134716] = 4, - ACTIONS(247), 1, + [130926] = 11, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3421), 1, + ACTIONS(6446), 1, + anon_sym_LPAREN2, + ACTIONS(6452), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6454), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6456), 1, + anon_sym_DOLLAR, + STATE(3446), 1, sym_comment, - ACTIONS(2497), 9, - anon_sym_DASH, + STATE(3668), 1, + sym__immediate_decimal, + ACTIONS(6498), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3667), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1612), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -333706,7 +338966,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2499), 28, + ACTIONS(1614), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -333718,15 +338979,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -333735,58 +338987,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [134764] = 5, - ACTIONS(247), 1, + [130988] = 11, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6377), 1, - aux_sym__immediate_decimal_token2, - STATE(3422), 1, - sym_comment, - ACTIONS(1554), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1556), 34, - anon_sym_LBRACE, + ACTIONS(6446), 1, anon_sym_LPAREN2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [134814] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3423), 1, + ACTIONS(6452), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6454), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6456), 1, + anon_sym_DOLLAR, + STATE(3447), 1, sym_comment, - ACTIONS(2501), 9, - anon_sym_DASH, + STATE(3690), 1, + sym__immediate_decimal, + ACTIONS(6498), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3781), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1560), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -333795,7 +339017,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2503), 28, + ACTIONS(1570), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -333807,15 +339030,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -333824,57 +339038,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [134862] = 4, - ACTIONS(247), 1, + [131050] = 11, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3424), 1, + ACTIONS(6446), 1, + anon_sym_LPAREN2, + ACTIONS(6452), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6454), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6456), 1, + anon_sym_DOLLAR, + STATE(3448), 1, sym_comment, - ACTIONS(1540), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1542), 35, + STATE(3672), 1, + sym__immediate_decimal, + ACTIONS(6498), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3671), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1620), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1622), 20, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_LPAREN2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [134910] = 4, - ACTIONS(247), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [131112] = 11, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3425), 1, + ACTIONS(6446), 1, + anon_sym_LPAREN2, + ACTIONS(6452), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6454), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6456), 1, + anon_sym_DOLLAR, + STATE(3449), 1, sym_comment, - ACTIONS(2505), 9, - anon_sym_DASH, + STATE(3880), 1, + sym__immediate_decimal, + ACTIONS(6498), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3707), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1510), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -333883,7 +339119,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2507), 28, + ACTIONS(1524), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -333895,15 +339132,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -333912,13 +339140,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [134958] = 4, - ACTIONS(247), 1, + [131174] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3426), 1, + STATE(3450), 1, sym_comment, - ACTIONS(2509), 9, - anon_sym_DASH, + ACTIONS(1536), 3, + sym__newline, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1538), 34, + anon_sym_LBRACE, + anon_sym_LPAREN2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [131222] = 11, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6446), 1, + anon_sym_LPAREN2, + ACTIONS(6452), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6454), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6456), 1, + anon_sym_DOLLAR, + STATE(3451), 1, + sym_comment, + STATE(3888), 1, + sym__immediate_decimal, + ACTIONS(6498), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3673), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1544), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -333927,7 +339214,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2511), 28, + ACTIONS(1556), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -333939,15 +339227,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and, - anon_sym_xor, - anon_sym_or, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -333956,12 +339235,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [135006] = 4, - ACTIONS(247), 1, + [131284] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3427), 1, + STATE(3452), 1, + sym_comment, + ACTIONS(1528), 3, + sym__newline, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1530), 34, + anon_sym_LBRACE, + anon_sym_LPAREN2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [131332] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3453), 1, sym_comment, - ACTIONS(1999), 9, + ACTIONS(2422), 9, anon_sym_DASH, anon_sym_err_GT, anon_sym_out_GT, @@ -333971,7 +339294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2005), 28, + ACTIONS(2424), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -334000,202 +339323,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [135054] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3428), 1, - sym_comment, - ACTIONS(1038), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1040), 34, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_QMARK2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [135102] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1852), 1, - anon_sym_DASH, - ACTIONS(6379), 1, - anon_sym_DOT, - STATE(1570), 1, - sym_path, - STATE(1690), 1, - sym_cell_path, - STATE(3429), 1, - sym_comment, - STATE(3476), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1854), 31, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [135157] = 4, - ACTIONS(247), 1, + [131380] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3430), 1, + STATE(3454), 1, sym_comment, - ACTIONS(1653), 2, + ACTIONS(1596), 3, + sym__newline, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1655), 34, + ACTIONS(1598), 34, anon_sym_LBRACE, anon_sym_LPAREN2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [135204] = 4, - ACTIONS(247), 1, + [131428] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3431), 1, + STATE(3455), 1, sym_comment, - ACTIONS(1540), 2, + ACTIONS(1711), 3, + sym__newline, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1542), 34, + ACTIONS(1713), 34, anon_sym_LBRACE, anon_sym_LPAREN2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [135251] = 8, - ACTIONS(247), 1, + [131476] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1836), 1, + STATE(3456), 1, + sym_comment, + ACTIONS(1058), 3, anon_sym_DASH, - ACTIONS(6379), 1, + anon_sym_DOT_DOT2, anon_sym_DOT, - STATE(1570), 1, - sym_path, - STATE(1680), 1, - sym_cell_path, - STATE(3432), 1, - sym_comment, - STATE(3476), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1838), 31, + ACTIONS(1060), 34, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_EQ_GT, + anon_sym_QMARK2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -334224,15 +339453,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [135306] = 4, - ACTIONS(247), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [131524] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3433), 1, + ACTIONS(6510), 1, + aux_sym__immediate_decimal_token2, + STATE(3457), 1, sym_comment, - ACTIONS(1518), 2, + ACTIONS(1596), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1520), 34, + ACTIONS(1598), 34, anon_sym_LBRACE, anon_sym_LPAREN2, aux_sym_expr_binary_token1, @@ -334267,19 +339500,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [135353] = 4, - ACTIONS(247), 1, + [131574] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3434), 1, + STATE(3458), 1, sym_comment, - ACTIONS(1046), 3, + ACTIONS(1062), 3, anon_sym_DASH, anon_sym_DOT_DOT2, anon_sym_DOT, - ACTIONS(1048), 33, + ACTIONS(1064), 34, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_EQ_GT, + anon_sym_QMARK2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -334310,25 +339544,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [135400] = 8, - ACTIONS(247), 1, + [131622] = 10, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1876), 1, - anon_sym_DASH, - ACTIONS(6379), 1, - anon_sym_DOT, - STATE(1570), 1, - sym_path, - STATE(1703), 1, - sym_cell_path, - STATE(3435), 1, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + ACTIONS(4762), 1, + anon_sym_DOT_DOT2, + ACTIONS(4770), 1, + aux_sym_unquoted_token2, + ACTIONS(6512), 1, + sym_filesize_unit, + ACTIONS(6514), 1, + sym_duration_unit, + STATE(3459), 1, sym_comment, - STATE(3476), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1878), 31, - anon_sym_DASH_DASH, + STATE(7534), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4764), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1640), 29, anon_sym_LBRACE, - anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -334357,25 +339594,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [135455] = 8, - ACTIONS(247), 1, + [131682] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1872), 1, + STATE(3460), 1, + sym_comment, + ACTIONS(1038), 3, anon_sym_DASH, - ACTIONS(6379), 1, + anon_sym_DOT_DOT2, anon_sym_DOT, - STATE(1570), 1, - sym_path, - STATE(1701), 1, - sym_cell_path, - STATE(3436), 1, - sym_comment, - STATE(3476), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1874), 31, + ACTIONS(1040), 34, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_EQ_GT, + anon_sym_QMARK2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -334404,64 +339636,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [135510] = 8, - ACTIONS(247), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [131730] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1840), 1, - anon_sym_DASH, - ACTIONS(6379), 1, - anon_sym_DOT, - STATE(1570), 1, - sym_path, - STATE(1684), 1, - sym_cell_path, - STATE(3437), 1, + STATE(3461), 1, sym_comment, - STATE(3476), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1842), 31, + ACTIONS(2565), 9, + anon_sym_DASH, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2567), 28, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH_DASH, + anon_sym_if, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [135565] = 4, - ACTIONS(247), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [131778] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3438), 1, + STATE(3462), 1, sym_comment, - ACTIONS(1554), 2, + ACTIONS(1054), 3, + anon_sym_DASH, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1556), 34, + anon_sym_DOT, + ACTIONS(1056), 34, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_LPAREN2, + anon_sym_EQ_GT, + anon_sym_QMARK2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -334492,24 +339726,242 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [135612] = 8, - ACTIONS(247), 1, + [131826] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3463), 1, + sym_comment, + ACTIONS(2234), 9, + anon_sym_DASH, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2240), 28, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [131874] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1880), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(6516), 1, + anon_sym_RBRACK, + STATE(3400), 1, + aux_sym__multiple_types_repeat1, + STATE(3464), 1, + sym_comment, + ACTIONS(6492), 34, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + [131926] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3465), 1, + sym_comment, + ACTIONS(2557), 9, anon_sym_DASH, - ACTIONS(6379), 1, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2559), 28, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [131974] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6518), 1, anon_sym_DOT, - STATE(1570), 1, + STATE(3466), 1, + sym_comment, + STATE(3527), 1, + aux_sym_cell_path_repeat1, + STATE(3584), 1, sym_path, - STATE(1704), 1, + STATE(3621), 1, sym_cell_path, - STATE(3439), 1, + ACTIONS(1929), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1931), 25, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [132029] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6520), 1, + anon_sym_DOT, + ACTIONS(6522), 1, + aux_sym__immediate_decimal_token2, + STATE(3467), 1, sym_comment, - STATE(3476), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1882), 31, + ACTIONS(1715), 9, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1717), 25, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [132080] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3468), 1, + sym_comment, + ACTIONS(1066), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1068), 33, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_EQ_GT, @@ -334541,22 +339993,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [135667] = 8, - ACTIONS(247), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [132127] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1884), 1, + STATE(3469), 1, + sym_comment, + ACTIONS(1070), 3, anon_sym_DASH, - ACTIONS(6379), 1, + anon_sym_DOT_DOT2, anon_sym_DOT, - STATE(1570), 1, - sym_path, - STATE(1705), 1, - sym_cell_path, - STATE(3440), 1, - sym_comment, - STATE(3476), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1886), 31, + ACTIONS(1072), 33, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_EQ_GT, @@ -334588,22 +340036,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [135722] = 8, - ACTIONS(247), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [132174] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6494), 1, + sym__entry_separator, + STATE(3400), 1, + aux_sym__multiple_types_repeat1, + STATE(3470), 1, + sym_comment, + ACTIONS(6492), 34, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + [132223] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1904), 1, + ACTIONS(1993), 1, anon_sym_DASH, - ACTIONS(6379), 1, + ACTIONS(6524), 1, anon_sym_DOT, - STATE(1570), 1, + STATE(1693), 1, sym_path, - STATE(1715), 1, + STATE(1746), 1, sym_cell_path, - STATE(3441), 1, + STATE(3471), 1, sym_comment, - STATE(3476), 1, + STATE(3531), 1, aux_sym_cell_path_repeat1, - ACTIONS(1906), 31, + ACTIONS(1995), 31, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_EQ_GT, @@ -334635,22 +340129,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [135777] = 8, - ACTIONS(247), 1, + [132278] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1856), 1, + ACTIONS(1997), 1, anon_sym_DASH, - ACTIONS(6379), 1, + ACTIONS(6524), 1, anon_sym_DOT, - STATE(1570), 1, + STATE(1693), 1, sym_path, - STATE(1691), 1, + STATE(1756), 1, sym_cell_path, - STATE(3442), 1, + STATE(3472), 1, sym_comment, - STATE(3476), 1, + STATE(3531), 1, aux_sym_cell_path_repeat1, - ACTIONS(1858), 31, + ACTIONS(1999), 31, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_EQ_GT, @@ -334682,22 +340176,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [135832] = 8, - ACTIONS(247), 1, + [132333] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1641), 1, + ACTIONS(1893), 1, anon_sym_DASH, - ACTIONS(6379), 1, + ACTIONS(6524), 1, anon_sym_DOT, - STATE(1371), 1, - sym_cell_path, - STATE(1570), 1, + STATE(1693), 1, sym_path, - STATE(3443), 1, + STATE(1891), 1, + sym_cell_path, + STATE(3473), 1, sym_comment, - STATE(3476), 1, + STATE(3531), 1, aux_sym_cell_path_repeat1, - ACTIONS(1645), 31, + ACTIONS(1895), 31, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_EQ_GT, @@ -334729,22 +340223,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [135887] = 8, - ACTIONS(247), 1, + [132388] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1822), 1, + ACTIONS(1021), 1, anon_sym_DASH, - ACTIONS(6379), 1, + ACTIONS(6524), 1, anon_sym_DOT, - STATE(1570), 1, + STATE(1693), 1, sym_path, - STATE(1670), 1, - sym_cell_path, - STATE(3444), 1, + STATE(3474), 1, sym_comment, - STATE(3476), 1, + STATE(3531), 1, aux_sym_cell_path_repeat1, - ACTIONS(1826), 31, + STATE(3532), 1, + sym_cell_path, + ACTIONS(1023), 31, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_EQ_GT, @@ -334776,22 +340270,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [135942] = 8, - ACTIONS(247), 1, + [132443] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1868), 1, + ACTIONS(2001), 1, anon_sym_DASH, - ACTIONS(6379), 1, + ACTIONS(6524), 1, anon_sym_DOT, - STATE(1570), 1, + STATE(1693), 1, sym_path, - STATE(1700), 1, + STATE(1757), 1, sym_cell_path, - STATE(3445), 1, + STATE(3475), 1, sym_comment, - STATE(3476), 1, + STATE(3531), 1, aux_sym_cell_path_repeat1, - ACTIONS(1870), 31, + ACTIONS(2003), 31, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_EQ_GT, @@ -334810,74 +340304,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token13, aux_sym_expr_binary_token14, aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [135997] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6381), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6383), 1, - aux_sym__immediate_decimal_token2, - STATE(3446), 1, - sym_comment, - ACTIONS(1659), 9, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1661), 25, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [136048] = 4, - ACTIONS(247), 1, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [132498] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3447), 1, - sym_comment, - ACTIONS(1054), 3, + ACTIONS(2005), 1, anon_sym_DASH, - anon_sym_DOT_DOT2, + ACTIONS(6524), 1, anon_sym_DOT, - ACTIONS(1056), 33, + STATE(1693), 1, + sym_path, + STATE(1777), 1, + sym_cell_path, + STATE(3476), 1, + sym_comment, + STATE(3531), 1, + aux_sym_cell_path_repeat1, + ACTIONS(2007), 31, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_EQ_GT, @@ -334909,24 +340364,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [136095] = 8, - ACTIONS(247), 1, + [132553] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1892), 1, + ACTIONS(2009), 1, anon_sym_DASH, - ACTIONS(6379), 1, + ACTIONS(6524), 1, anon_sym_DOT, - STATE(1570), 1, + STATE(1693), 1, sym_path, - STATE(1710), 1, + STATE(1783), 1, sym_cell_path, - STATE(3448), 1, + STATE(3477), 1, sym_comment, - STATE(3476), 1, + STATE(3531), 1, aux_sym_cell_path_repeat1, - ACTIONS(1894), 31, + ACTIONS(2011), 31, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_EQ_GT, @@ -334958,22 +340411,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [136150] = 8, - ACTIONS(247), 1, + [132608] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1896), 1, + ACTIONS(2013), 1, anon_sym_DASH, - ACTIONS(6379), 1, + ACTIONS(6524), 1, anon_sym_DOT, - STATE(1570), 1, + STATE(1693), 1, sym_path, - STATE(1711), 1, + STATE(1791), 1, sym_cell_path, - STATE(3449), 1, + STATE(3478), 1, sym_comment, - STATE(3476), 1, + STATE(3531), 1, aux_sym_cell_path_repeat1, - ACTIONS(1898), 31, + ACTIONS(2015), 31, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_EQ_GT, @@ -335005,22 +340458,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [136205] = 8, - ACTIONS(247), 1, + [132663] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1005), 1, + ACTIONS(1664), 1, anon_sym_DASH, - ACTIONS(6379), 1, + ACTIONS(6524), 1, anon_sym_DOT, - STATE(1570), 1, + STATE(1399), 1, + sym_cell_path, + STATE(1693), 1, sym_path, - STATE(3450), 1, + STATE(3479), 1, sym_comment, - STATE(3472), 1, - sym_cell_path, - STATE(3476), 1, + STATE(3531), 1, aux_sym_cell_path_repeat1, - ACTIONS(1007), 31, + ACTIONS(1668), 31, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_EQ_GT, @@ -335052,22 +340505,69 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [136260] = 8, - ACTIONS(247), 1, + [132718] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1848), 1, - anon_sym_DASH, - ACTIONS(6379), 1, + ACTIONS(6518), 1, anon_sym_DOT, - STATE(1570), 1, + STATE(3480), 1, + sym_comment, + STATE(3527), 1, + aux_sym_cell_path_repeat1, + STATE(3584), 1, sym_path, - STATE(1689), 1, + STATE(3591), 1, sym_cell_path, - STATE(3451), 1, + ACTIONS(1893), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1895), 25, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [132773] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1670), 1, + anon_sym_DASH, + ACTIONS(6524), 1, + anon_sym_DOT, + STATE(1426), 1, + sym_cell_path, + STATE(1693), 1, + sym_path, + STATE(3481), 1, sym_comment, - STATE(3476), 1, + STATE(3531), 1, aux_sym_cell_path_repeat1, - ACTIONS(1850), 31, + ACTIONS(1672), 31, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_EQ_GT, @@ -335099,25 +340599,64 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [136315] = 8, - ACTIONS(247), 1, + [132828] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1828), 1, - anon_sym_DASH, - ACTIONS(6379), 1, + ACTIONS(6518), 1, anon_sym_DOT, - STATE(1570), 1, + STATE(3482), 1, + sym_comment, + STATE(3527), 1, + aux_sym_cell_path_repeat1, + STATE(3584), 1, sym_path, - STATE(1652), 1, + STATE(3648), 1, sym_cell_path, - STATE(3452), 1, + ACTIONS(1897), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1899), 25, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [132883] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3483), 1, sym_comment, - STATE(3476), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1830), 31, - anon_sym_DASH_DASH, + ACTIONS(1711), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1713), 34, anon_sym_LBRACE, - anon_sym_EQ_GT, + anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -335146,109 +340685,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [136370] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6361), 1, - sym__entry_separator, - STATE(3390), 1, - aux_sym__multiple_types_repeat1, - STATE(3453), 1, - sym_comment, - ACTIONS(6359), 34, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - [136419] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2410), 1, - sym__entry_separator, - STATE(3454), 1, - sym_comment, - ACTIONS(2408), 35, - anon_sym_RBRACK, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - [136466] = 8, - ACTIONS(247), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [132930] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1832), 1, + ACTIONS(1909), 1, anon_sym_DASH, - ACTIONS(6379), 1, + ACTIONS(6524), 1, anon_sym_DOT, - STATE(1570), 1, + STATE(1693), 1, sym_path, - STATE(1668), 1, + STATE(1736), 1, sym_cell_path, - STATE(3455), 1, + STATE(3484), 1, sym_comment, - STATE(3476), 1, + STATE(3531), 1, aux_sym_cell_path_repeat1, - ACTIONS(1834), 31, + ACTIONS(1911), 31, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_EQ_GT, @@ -335280,25 +340736,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [136521] = 8, - ACTIONS(247), 1, + [132985] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1675), 1, - anon_sym_DASH, - ACTIONS(6379), 1, - anon_sym_DOT, - STATE(1375), 1, - sym_cell_path, - STATE(1570), 1, - sym_path, - STATE(3456), 1, + STATE(3485), 1, sym_comment, - STATE(3476), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1677), 31, - anon_sym_DASH_DASH, + ACTIONS(1528), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1530), 34, anon_sym_LBRACE, - anon_sym_EQ_GT, + anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -335327,22 +340775,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [136576] = 8, - ACTIONS(247), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [133032] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1864), 1, + ACTIONS(1897), 1, anon_sym_DASH, - ACTIONS(6379), 1, + ACTIONS(6524), 1, anon_sym_DOT, - STATE(1570), 1, + STATE(1693), 1, sym_path, - STATE(1698), 1, + STATE(1804), 1, sym_cell_path, - STATE(3457), 1, + STATE(3486), 1, sym_comment, - STATE(3476), 1, + STATE(3531), 1, aux_sym_cell_path_repeat1, - ACTIONS(1866), 31, + ACTIONS(1899), 31, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_EQ_GT, @@ -335374,22 +340826,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [136631] = 8, - ACTIONS(247), 1, + [133087] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1888), 1, + ACTIONS(1901), 1, anon_sym_DASH, - ACTIONS(6379), 1, + ACTIONS(6524), 1, anon_sym_DOT, - STATE(1570), 1, + STATE(1693), 1, sym_path, - STATE(1707), 1, + STATE(1887), 1, sym_cell_path, - STATE(3458), 1, + STATE(3487), 1, sym_comment, - STATE(3476), 1, + STATE(3531), 1, aux_sym_cell_path_repeat1, - ACTIONS(1890), 31, + ACTIONS(1903), 31, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_EQ_GT, @@ -335421,25 +340873,64 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [136686] = 8, - ACTIONS(247), 1, + [133142] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1860), 1, - anon_sym_DASH, - ACTIONS(6379), 1, + ACTIONS(6518), 1, anon_sym_DOT, - STATE(1570), 1, + STATE(3488), 1, + sym_comment, + STATE(3527), 1, + aux_sym_cell_path_repeat1, + STATE(3584), 1, sym_path, - STATE(1697), 1, + STATE(3613), 1, sym_cell_path, - STATE(3459), 1, + ACTIONS(1901), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1903), 25, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [133197] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3489), 1, sym_comment, - STATE(3476), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1862), 31, - anon_sym_DASH_DASH, + ACTIONS(1596), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1598), 34, anon_sym_LBRACE, - anon_sym_EQ_GT, + anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -335468,16 +340959,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [136741] = 6, - ACTIONS(247), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [133244] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6385), 1, - anon_sym_DOT, - ACTIONS(6387), 1, + ACTIONS(6526), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6528), 1, aux_sym__immediate_decimal_token2, - STATE(3460), 1, + STATE(3490), 1, sym_comment, - ACTIONS(1667), 9, + ACTIONS(1703), 9, anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, @@ -335487,7 +340982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1669), 25, + ACTIONS(1705), 25, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -335513,25 +341008,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [136792] = 8, - ACTIONS(247), 1, + [133295] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1912), 1, - anon_sym_DASH, - ACTIONS(6379), 1, - anon_sym_DOT, - STATE(1570), 1, - sym_path, - STATE(1659), 1, - sym_cell_path, - STATE(3461), 1, + STATE(3491), 1, sym_comment, - STATE(3476), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1914), 31, - anon_sym_DASH_DASH, + ACTIONS(1536), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1538), 34, anon_sym_LBRACE, - anon_sym_EQ_GT, + anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -335560,69 +341047,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [136847] = 8, - ACTIONS(247), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [133342] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1900), 1, - anon_sym_DASH, - ACTIONS(6379), 1, + ACTIONS(6518), 1, anon_sym_DOT, - STATE(1570), 1, - sym_path, - STATE(1713), 1, - sym_cell_path, - STATE(3462), 1, + STATE(3492), 1, sym_comment, - STATE(3476), 1, + STATE(3527), 1, aux_sym_cell_path_repeat1, - ACTIONS(1902), 31, - anon_sym_DASH_DASH, + STATE(3584), 1, + sym_path, + STATE(3619), 1, + sym_cell_path, + ACTIONS(1909), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1911), 25, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [136902] = 8, - ACTIONS(247), 1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [133397] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1844), 1, + ACTIONS(2095), 1, anon_sym_DASH, - ACTIONS(6379), 1, + ACTIONS(6524), 1, anon_sym_DOT, - STATE(1570), 1, + STATE(1693), 1, sym_path, - STATE(1688), 1, + STATE(1808), 1, sym_cell_path, - STATE(3463), 1, + STATE(3493), 1, sym_comment, - STATE(3476), 1, + STATE(3531), 1, aux_sym_cell_path_repeat1, - ACTIONS(1846), 31, + ACTIONS(2097), 31, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_EQ_GT, @@ -335654,16 +341145,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [136957] = 4, - ACTIONS(247), 1, + [133452] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3464), 1, + STATE(3494), 1, sym_comment, - ACTIONS(1050), 3, + ACTIONS(1074), 3, anon_sym_DASH, anon_sym_DOT_DOT2, anon_sym_DOT, - ACTIONS(1052), 33, + ACTIONS(1076), 33, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_EQ_GT, @@ -335697,62 +341188,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token28, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [137004] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3465), 1, - sym_comment, - ACTIONS(2458), 3, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT2, - ACTIONS(2460), 32, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_QMARK2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, - [137050] = 8, - ACTIONS(247), 1, + [133499] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6389), 1, + ACTIONS(6518), 1, anon_sym_DOT, - STATE(3466), 1, + STATE(3495), 1, sym_comment, - STATE(3500), 1, + STATE(3527), 1, aux_sym_cell_path_repeat1, - STATE(3543), 1, + STATE(3584), 1, sym_path, - STATE(3732), 1, + STATE(3623), 1, sym_cell_path, - ACTIONS(1880), 7, + ACTIONS(1997), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -335760,7 +341209,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1882), 24, + ACTIONS(1999), 25, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -335785,20 +341235,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [137104] = 8, - ACTIONS(247), 1, + [133554] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6389), 1, + ACTIONS(6518), 1, anon_sym_DOT, - STATE(3467), 1, + STATE(3496), 1, sym_comment, - STATE(3500), 1, + STATE(3527), 1, aux_sym_cell_path_repeat1, - STATE(3543), 1, + STATE(3584), 1, sym_path, - STATE(3737), 1, + STATE(3624), 1, sym_cell_path, - ACTIONS(1896), 7, + ACTIONS(2001), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -335806,7 +341256,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1898), 24, + ACTIONS(2003), 25, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -335831,20 +341282,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [137158] = 8, - ACTIONS(247), 1, + [133609] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6389), 1, + ACTIONS(6518), 1, anon_sym_DOT, - STATE(3468), 1, + STATE(3497), 1, sym_comment, - STATE(3500), 1, + STATE(3527), 1, aux_sym_cell_path_repeat1, - STATE(3543), 1, + STATE(3584), 1, sym_path, - STATE(3672), 1, + STATE(3625), 1, sym_cell_path, - ACTIONS(1005), 7, + ACTIONS(2005), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -335852,7 +341303,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1007), 24, + ACTIONS(2007), 25, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -335877,20 +341329,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [137212] = 8, - ACTIONS(247), 1, + [133664] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6389), 1, + ACTIONS(6518), 1, anon_sym_DOT, - STATE(3469), 1, + STATE(3498), 1, sym_comment, - STATE(3500), 1, + STATE(3527), 1, aux_sym_cell_path_repeat1, - STATE(3543), 1, + STATE(3584), 1, sym_path, - STATE(3692), 1, + STATE(3661), 1, sym_cell_path, - ACTIONS(1828), 7, + ACTIONS(2009), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -335898,7 +341350,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1830), 24, + ACTIONS(2011), 25, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -335923,20 +341376,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [137266] = 8, - ACTIONS(247), 1, + [133719] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6389), 1, + ACTIONS(6518), 1, anon_sym_DOT, - STATE(3470), 1, + STATE(3499), 1, sym_comment, - STATE(3500), 1, + STATE(3527), 1, aux_sym_cell_path_repeat1, - STATE(3543), 1, + STATE(3584), 1, sym_path, - STATE(3740), 1, + STATE(3627), 1, sym_cell_path, - ACTIONS(1904), 7, + ACTIONS(2013), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -335944,7 +341397,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1906), 24, + ACTIONS(2015), 25, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -335969,20 +341423,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [137320] = 8, - ACTIONS(247), 1, + [133774] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6389), 1, + ACTIONS(6518), 1, anon_sym_DOT, - STATE(3471), 1, - sym_comment, STATE(3500), 1, + sym_comment, + STATE(3527), 1, aux_sym_cell_path_repeat1, - STATE(3543), 1, + STATE(3584), 1, sym_path, - STATE(3739), 1, + STATE(3628), 1, sym_cell_path, - ACTIONS(1900), 7, + ACTIONS(2017), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -335990,7 +341444,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1902), 24, + ACTIONS(2019), 25, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -336015,62 +341470,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [137374] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3472), 1, - sym_comment, - ACTIONS(1058), 2, - anon_sym_DASH, - anon_sym_DOT_DOT2, - ACTIONS(1060), 33, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [137420] = 8, - ACTIONS(247), 1, + [133829] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6389), 1, + ACTIONS(6518), 1, anon_sym_DOT, - STATE(3473), 1, + STATE(3501), 1, sym_comment, - STATE(3500), 1, + STATE(3527), 1, aux_sym_cell_path_repeat1, - STATE(3543), 1, + STATE(3584), 1, sym_path, - STATE(3725), 1, + STATE(3629), 1, sym_cell_path, - ACTIONS(1856), 7, + ACTIONS(2021), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -336078,7 +341491,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1858), 24, + ACTIONS(2023), 25, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -336103,64 +341517,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [137474] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6391), 1, - anon_sym_DOT_DOT2, - STATE(3474), 1, - sym_comment, - ACTIONS(6393), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1788), 9, - anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1796), 23, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [137524] = 8, - ACTIONS(247), 1, + [133884] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6389), 1, + ACTIONS(6518), 1, anon_sym_DOT, - STATE(3475), 1, + STATE(3502), 1, sym_comment, - STATE(3500), 1, + STATE(3527), 1, aux_sym_cell_path_repeat1, - STATE(3543), 1, + STATE(3584), 1, sym_path, - STATE(3682), 1, + STATE(3630), 1, sym_cell_path, - ACTIONS(1822), 7, + ACTIONS(2043), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -336168,7 +341538,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1826), 24, + ACTIONS(2045), 25, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -336193,23 +341564,25 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [137578] = 7, - ACTIONS(247), 1, + [133939] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1011), 1, + ACTIONS(1628), 1, anon_sym_DASH, - ACTIONS(6379), 1, - anon_sym_DOT, - STATE(1570), 1, - sym_path, - STATE(3476), 1, + ACTIONS(6184), 1, + sym_filesize_unit, + ACTIONS(6186), 1, + sym_duration_unit, + ACTIONS(6530), 1, + anon_sym_DOT_DOT2, + STATE(3503), 1, sym_comment, - STATE(3490), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1013), 31, + ACTIONS(6532), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1640), 30, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -336238,20 +341611,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [137630] = 8, - ACTIONS(247), 1, + [133994] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6389), 1, + ACTIONS(6518), 1, anon_sym_DOT, - STATE(3477), 1, + STATE(3504), 1, sym_comment, - STATE(3500), 1, + STATE(3527), 1, aux_sym_cell_path_repeat1, - STATE(3543), 1, + STATE(3584), 1, sym_path, - STATE(3722), 1, + STATE(3631), 1, sym_cell_path, - ACTIONS(1840), 7, + ACTIONS(2047), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -336259,7 +341632,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1842), 24, + ACTIONS(2049), 25, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -336284,20 +341658,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [137684] = 8, - ACTIONS(247), 1, + [134049] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6389), 1, + ACTIONS(6518), 1, anon_sym_DOT, - STATE(3478), 1, + STATE(3505), 1, sym_comment, - STATE(3500), 1, + STATE(3527), 1, aux_sym_cell_path_repeat1, - STATE(3543), 1, + STATE(3584), 1, sym_path, - STATE(3730), 1, + STATE(3632), 1, sym_cell_path, - ACTIONS(1872), 7, + ACTIONS(2051), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -336305,7 +341679,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1874), 24, + ACTIONS(2053), 25, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -336330,20 +341705,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [137738] = 8, - ACTIONS(247), 1, + [134104] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6389), 1, + ACTIONS(6518), 1, anon_sym_DOT, - STATE(3479), 1, + STATE(3506), 1, sym_comment, - STATE(3500), 1, + STATE(3527), 1, aux_sym_cell_path_repeat1, - STATE(3543), 1, + STATE(3584), 1, sym_path, - STATE(3678), 1, + STATE(3633), 1, sym_cell_path, - ACTIONS(1912), 7, + ACTIONS(2055), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -336351,7 +341726,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1914), 24, + ACTIONS(2057), 25, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -336376,63 +341752,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [137792] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6387), 1, - aux_sym__immediate_decimal_token2, - STATE(3480), 1, - sym_comment, - ACTIONS(1667), 9, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1669), 25, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [137840] = 8, - ACTIONS(247), 1, + [134159] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6389), 1, + ACTIONS(6518), 1, anon_sym_DOT, - STATE(3481), 1, + STATE(3507), 1, sym_comment, - STATE(3500), 1, + STATE(3527), 1, aux_sym_cell_path_repeat1, - STATE(3543), 1, + STATE(3584), 1, sym_path, - STATE(3567), 1, + STATE(3634), 1, sym_cell_path, - ACTIONS(1844), 7, + ACTIONS(2059), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -336440,7 +341773,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1846), 24, + ACTIONS(2061), 25, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -336465,20 +341799,114 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [137894] = 8, - ACTIONS(247), 1, + [134214] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6389), 1, + ACTIONS(2017), 1, + anon_sym_DASH, + ACTIONS(6524), 1, anon_sym_DOT, - STATE(3482), 1, + STATE(1693), 1, + sym_path, + STATE(1812), 1, + sym_cell_path, + STATE(3508), 1, sym_comment, - STATE(3500), 1, + STATE(3531), 1, aux_sym_cell_path_repeat1, - STATE(3543), 1, + ACTIONS(2019), 31, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [134269] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(2021), 1, + anon_sym_DASH, + ACTIONS(6524), 1, + anon_sym_DOT, + STATE(1693), 1, sym_path, - STATE(3731), 1, + STATE(1814), 1, + sym_cell_path, + STATE(3509), 1, + sym_comment, + STATE(3531), 1, + aux_sym_cell_path_repeat1, + ACTIONS(2023), 31, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [134324] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6518), 1, + anon_sym_DOT, + STATE(3510), 1, + sym_comment, + STATE(3527), 1, + aux_sym_cell_path_repeat1, + STATE(3584), 1, + sym_path, + STATE(3635), 1, sym_cell_path, - ACTIONS(1876), 7, + ACTIONS(2067), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -336486,7 +341914,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1878), 24, + ACTIONS(2069), 25, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -336511,62 +341940,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [137948] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3483), 1, - sym_comment, - ACTIONS(1560), 3, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT2, - ACTIONS(1572), 32, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_QMARK2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, - [137994] = 8, - ACTIONS(247), 1, + [134379] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6389), 1, + ACTIONS(6518), 1, anon_sym_DOT, - STATE(3484), 1, + STATE(3511), 1, sym_comment, - STATE(3500), 1, + STATE(3527), 1, aux_sym_cell_path_repeat1, - STATE(3543), 1, + STATE(3584), 1, sym_path, - STATE(3723), 1, + STATE(3636), 1, sym_cell_path, - ACTIONS(1848), 7, + ACTIONS(2083), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -336574,7 +341961,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1850), 24, + ACTIONS(2085), 25, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -336599,20 +341987,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [138048] = 8, - ACTIONS(247), 1, + [134434] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6389), 1, + ACTIONS(6518), 1, anon_sym_DOT, - STATE(3485), 1, + STATE(3512), 1, sym_comment, - STATE(3500), 1, + STATE(3527), 1, aux_sym_cell_path_repeat1, - STATE(3543), 1, + STATE(3584), 1, sym_path, - STATE(3736), 1, + STATE(3637), 1, sym_cell_path, - ACTIONS(1892), 7, + ACTIONS(2087), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -336620,7 +342008,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1894), 24, + ACTIONS(2089), 25, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -336645,20 +342034,20 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [138102] = 8, - ACTIONS(247), 1, + [134489] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6389), 1, + ACTIONS(6518), 1, anon_sym_DOT, - STATE(3486), 1, + STATE(3513), 1, sym_comment, - STATE(3500), 1, + STATE(3527), 1, aux_sym_cell_path_repeat1, - STATE(3543), 1, + STATE(3584), 1, sym_path, - STATE(3734), 1, + STATE(3638), 1, sym_cell_path, - ACTIONS(1884), 7, + ACTIONS(2095), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -336666,7 +342055,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1886), 24, + ACTIONS(2097), 25, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -336691,20 +342081,161 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [138156] = 8, - ACTIONS(247), 1, + [134544] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6389), 1, + ACTIONS(1929), 1, + anon_sym_DASH, + ACTIONS(6524), 1, anon_sym_DOT, - STATE(3487), 1, + STATE(1693), 1, + sym_path, + STATE(1843), 1, + sym_cell_path, + STATE(3514), 1, sym_comment, - STATE(3500), 1, + STATE(3531), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1931), 31, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [134599] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(2043), 1, + anon_sym_DASH, + ACTIONS(6524), 1, + anon_sym_DOT, + STATE(1693), 1, + sym_path, + STATE(1828), 1, + sym_cell_path, + STATE(3515), 1, + sym_comment, + STATE(3531), 1, + aux_sym_cell_path_repeat1, + ACTIONS(2045), 31, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [134654] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(2047), 1, + anon_sym_DASH, + ACTIONS(6524), 1, + anon_sym_DOT, + STATE(1693), 1, + sym_path, + STATE(1839), 1, + sym_cell_path, + STATE(3516), 1, + sym_comment, + STATE(3531), 1, + aux_sym_cell_path_repeat1, + ACTIONS(2049), 31, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [134709] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6518), 1, + anon_sym_DOT, + STATE(3517), 1, + sym_comment, + STATE(3527), 1, aux_sym_cell_path_repeat1, - STATE(3543), 1, + STATE(3584), 1, sym_path, - STATE(3727), 1, + STATE(3599), 1, sym_cell_path, - ACTIONS(1864), 7, + ACTIONS(1021), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -336712,7 +342243,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1866), 24, + ACTIONS(1023), 25, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -336737,111 +342269,210 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [138210] = 8, - ACTIONS(247), 1, + [134764] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6389), 1, + ACTIONS(2051), 1, + anon_sym_DASH, + ACTIONS(6524), 1, anon_sym_DOT, - STATE(3488), 1, + STATE(1693), 1, + sym_path, + STATE(1842), 1, + sym_cell_path, + STATE(3518), 1, sym_comment, - STATE(3500), 1, + STATE(3531), 1, aux_sym_cell_path_repeat1, - STATE(3543), 1, + ACTIONS(2053), 31, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [134819] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(2055), 1, + anon_sym_DASH, + ACTIONS(6524), 1, + anon_sym_DOT, + STATE(1693), 1, sym_path, - STATE(3728), 1, + STATE(1882), 1, sym_cell_path, - ACTIONS(1868), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1870), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, + STATE(3519), 1, + sym_comment, + STATE(3531), 1, + aux_sym_cell_path_repeat1, + ACTIONS(2057), 31, + anon_sym_DASH_DASH, anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [138264] = 8, - ACTIONS(247), 1, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [134874] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6389), 1, + ACTIONS(2059), 1, + anon_sym_DASH, + ACTIONS(6524), 1, anon_sym_DOT, - STATE(3489), 1, + STATE(1693), 1, + sym_path, + STATE(1884), 1, + sym_cell_path, + STATE(3520), 1, sym_comment, - STATE(3500), 1, + STATE(3531), 1, aux_sym_cell_path_repeat1, - STATE(3543), 1, + ACTIONS(2061), 31, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [134929] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(2067), 1, + anon_sym_DASH, + ACTIONS(6524), 1, + anon_sym_DOT, + STATE(1693), 1, sym_path, - STATE(3693), 1, + STATE(1798), 1, sym_cell_path, - ACTIONS(1832), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1834), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, + STATE(3521), 1, + sym_comment, + STATE(3531), 1, + aux_sym_cell_path_repeat1, + ACTIONS(2069), 31, + anon_sym_DASH_DASH, anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [138318] = 6, - ACTIONS(247), 1, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [134984] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1015), 1, + ACTIONS(2083), 1, anon_sym_DASH, - ACTIONS(6395), 1, + ACTIONS(6524), 1, anon_sym_DOT, - STATE(1570), 1, + STATE(1693), 1, sym_path, - STATE(3490), 2, + STATE(1799), 1, + sym_cell_path, + STATE(3522), 1, sym_comment, + STATE(3531), 1, aux_sym_cell_path_repeat1, - ACTIONS(1017), 31, + ACTIONS(2085), 31, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_EQ_GT, @@ -336873,64 +342504,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [138368] = 6, - ACTIONS(247), 1, + [135039] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6398), 1, - anon_sym_DOT_DOT2, - STATE(3491), 1, - sym_comment, - ACTIONS(6400), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1778), 9, + ACTIONS(2087), 1, anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1786), 23, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + ACTIONS(6524), 1, + anon_sym_DOT, + STATE(1693), 1, + sym_path, + STATE(1801), 1, + sym_cell_path, + STATE(3523), 1, + sym_comment, + STATE(3531), 1, + aux_sym_cell_path_repeat1, + ACTIONS(2089), 31, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [138418] = 8, - ACTIONS(247), 1, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [135094] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6389), 1, + ACTIONS(6518), 1, anon_sym_DOT, - STATE(3492), 1, + STATE(3524), 1, sym_comment, - STATE(3500), 1, + STATE(3527), 1, aux_sym_cell_path_repeat1, - STATE(3543), 1, + STATE(3584), 1, sym_path, - STATE(3726), 1, + STATE(3622), 1, sym_cell_path, - ACTIONS(1860), 7, + ACTIONS(1993), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -336938,7 +342572,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1862), 24, + ACTIONS(1995), 25, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -336963,23 +342598,66 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [138472] = 8, - ACTIONS(247), 1, + [135149] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1560), 1, + ACTIONS(6522), 1, + aux_sym__immediate_decimal_token2, + STATE(3525), 1, + sym_comment, + ACTIONS(1715), 9, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1717), 25, + ts_builtin_sym_end, sym__newline, - ACTIONS(6402), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [135197] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1628), 1, + sym__newline, + ACTIONS(6534), 1, anon_sym_DOT_DOT2, - ACTIONS(6406), 1, + ACTIONS(6538), 1, sym_filesize_unit, - ACTIONS(6408), 1, + ACTIONS(6540), 1, sym_duration_unit, - STATE(3493), 1, + STATE(3526), 1, sym_comment, - ACTIONS(6404), 2, + ACTIONS(6536), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1572), 29, + ACTIONS(1640), 29, anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, @@ -337009,20 +342687,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [138526] = 8, - ACTIONS(247), 1, + [135251] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6389), 1, + ACTIONS(6518), 1, anon_sym_DOT, - STATE(3494), 1, + STATE(3527), 1, sym_comment, - STATE(3500), 1, + STATE(3538), 1, aux_sym_cell_path_repeat1, - STATE(3543), 1, + STATE(3584), 1, sym_path, - STATE(3720), 1, - sym_cell_path, - ACTIONS(1836), 7, + ACTIONS(1027), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -337030,7 +342706,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1838), 24, + ACTIONS(1029), 25, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -337055,158 +342732,61 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [138580] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6410), 1, - aux_sym__immediate_decimal_token2, - STATE(3495), 1, - sym_comment, - ACTIONS(1721), 9, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1723), 25, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [138628] = 8, - ACTIONS(247), 1, + [135303] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6389), 1, - anon_sym_DOT, - STATE(3496), 1, + ACTIONS(6542), 1, + anon_sym_LPAREN2, + ACTIONS(6544), 1, + anon_sym_EQ2, + ACTIONS(6546), 1, + sym_short_flag_identifier, + STATE(3528), 1, sym_comment, - STATE(3500), 1, - aux_sym_cell_path_repeat1, - STATE(3543), 1, - sym_path, - STATE(3735), 1, - sym_cell_path, - ACTIONS(1888), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1890), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(4927), 13, + sym_raw_string_begin, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_LBRACE, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [138682] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6389), 1, - anon_sym_DOT, - STATE(3497), 1, - sym_comment, - STATE(3500), 1, - aux_sym_cell_path_repeat1, - STATE(3543), 1, - sym_path, - STATE(3724), 1, - sym_cell_path, - ACTIONS(1852), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1854), 24, + ACTIONS(4925), 19, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [138736] = 4, - ACTIONS(247), 1, + [135355] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3498), 1, + STATE(3529), 1, sym_comment, - ACTIONS(1721), 9, - anon_sym_DOT_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1723), 25, - ts_builtin_sym_end, + ACTIONS(2418), 3, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT2, + ACTIONS(2420), 32, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -337218,25 +342798,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_QMARK2, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [138781] = 4, - ACTIONS(247), 1, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, + [135401] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3499), 1, + ACTIONS(6548), 1, + aux_sym__immediate_decimal_token2, + STATE(3530), 1, sym_comment, - ACTIONS(1738), 9, + ACTIONS(1769), 9, anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, @@ -337246,7 +342836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1740), 25, + ACTIONS(1771), 25, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -337272,57 +342862,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [138826] = 7, - ACTIONS(247), 1, + [135449] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6389), 1, + ACTIONS(1027), 1, + anon_sym_DASH, + ACTIONS(6524), 1, anon_sym_DOT, - STATE(3500), 1, + STATE(1693), 1, + sym_path, + STATE(3531), 1, sym_comment, - STATE(3506), 1, + STATE(3539), 1, aux_sym_cell_path_repeat1, - STATE(3543), 1, - sym_path, - ACTIONS(1011), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1013), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(1029), 31, + anon_sym_DASH_DASH, anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [138877] = 4, - ACTIONS(247), 1, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [135501] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3501), 1, + STATE(3532), 1, sym_comment, - ACTIONS(1659), 9, + ACTIONS(1078), 2, + anon_sym_DASH, + anon_sym_DOT_DOT2, + ACTIONS(1080), 33, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [135547] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6550), 1, anon_sym_DOT_DOT2, + STATE(3533), 1, + sym_comment, + ACTIONS(6552), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2234), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -337331,8 +342968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1661), 25, - ts_builtin_sym_end, + ACTIONS(2240), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -337344,11 +342980,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -337357,57 +342993,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [138922] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6412), 1, - anon_sym_LPAREN2, - ACTIONS(6414), 1, - anon_sym_EQ2, - ACTIONS(6416), 1, - sym_short_flag_identifier, - STATE(3502), 1, - sym_comment, - ACTIONS(4783), 12, - anon_sym_LBRACK, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4781), 19, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - [138973] = 4, - ACTIONS(247), 1, + [135597] = 6, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3503), 1, - sym_comment, - ACTIONS(2029), 9, + ACTIONS(6554), 1, anon_sym_DOT_DOT2, + STATE(3534), 1, + sym_comment, + ACTIONS(6556), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2206), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -337416,8 +343012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2031), 25, - ts_builtin_sym_end, + ACTIONS(2212), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -337429,11 +343024,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -337442,57 +343037,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [139018] = 7, - ACTIONS(247), 1, + [135647] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5826), 1, - sym_filesize_unit, - ACTIONS(5828), 1, - sym_duration_unit, - ACTIONS(6418), 1, + ACTIONS(6558), 1, anon_sym_DOT_DOT2, - STATE(3504), 1, + STATE(3535), 1, sym_comment, - ACTIONS(6420), 2, + ACTIONS(6560), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1572), 29, - anon_sym_EQ_GT, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [139069] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3505), 1, - sym_comment, - ACTIONS(2033), 9, - anon_sym_DOT_DOT2, + ACTIONS(2113), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -337501,8 +343056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2035), 25, - ts_builtin_sym_end, + ACTIONS(2119), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -337514,11 +343068,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -337527,100 +343081,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [139114] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6422), 1, - anon_sym_DOT, - STATE(3543), 1, - sym_path, - STATE(3506), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1015), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1017), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [139163] = 7, - ACTIONS(247), 1, + [135697] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5826), 1, - sym_filesize_unit, - ACTIONS(5828), 1, - sym_duration_unit, - ACTIONS(6425), 1, + ACTIONS(6562), 1, anon_sym_DOT_DOT2, - STATE(3507), 1, + STATE(3536), 1, sym_comment, - ACTIONS(6427), 2, + ACTIONS(6564), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1572), 29, - anon_sym_LBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [139214] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3508), 1, - sym_comment, - ACTIONS(1667), 9, - anon_sym_DOT_DOT2, + ACTIONS(2222), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -337629,8 +343100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1669), 25, - ts_builtin_sym_end, + ACTIONS(2228), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -337642,11 +343112,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -337655,22 +343125,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [139259] = 4, - ACTIONS(247), 1, + [135747] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3509), 1, + STATE(3537), 1, sym_comment, - ACTIONS(2291), 9, + ACTIONS(1628), 3, + anon_sym_GT, anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2295), 24, + anon_sym_LT2, + ACTIONS(1640), 32, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -337683,114 +343147,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_in, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [139303] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3510), 1, - sym_comment, - ACTIONS(1038), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1040), 25, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_QMARK2, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [139347] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6429), 1, + anon_sym_as, anon_sym_QMARK2, - STATE(3511), 1, - sym_comment, - ACTIONS(1028), 8, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1030), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [139393] = 4, - ACTIONS(247), 1, + [135793] = 6, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3512), 1, + ACTIONS(6566), 1, + anon_sym_DOT, + STATE(3584), 1, + sym_path, + STATE(3538), 2, sym_comment, - ACTIONS(1042), 8, + aux_sym_cell_path_repeat1, + ACTIONS(1031), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1044), 25, + ACTIONS(1033), 25, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -337800,7 +343196,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_QMARK2, aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -337812,106 +343207,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, sym_val_date, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [139437] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6431), 1, - anon_sym_DOT, - STATE(3677), 1, - sym_path, - STATE(3513), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1015), 3, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT2, - ACTIONS(1017), 27, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - [139485] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3514), 1, - sym_comment, - ACTIONS(2253), 3, - anon_sym_DASH_DASH, - anon_sym_DASH, - aux_sym_unquoted_token4, - ACTIONS(2255), 30, - anon_sym_LBRACE, - anon_sym_LPAREN2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [139529] = 6, - ACTIONS(3), 1, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [135843] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2239), 1, - anon_sym_LPAREN2, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - STATE(3515), 1, + ACTIONS(1031), 1, + anon_sym_DASH, + ACTIONS(6569), 1, + anon_sym_DOT, + STATE(1693), 1, + sym_path, + STATE(3539), 2, sym_comment, - ACTIONS(2237), 2, + aux_sym_cell_path_repeat1, + ACTIONS(1033), 31, anon_sym_DASH_DASH, - anon_sym_DASH, - ACTIONS(2241), 29, anon_sym_LBRACE, + anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -337940,19 +343255,102 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [139577] = 6, - ACTIONS(3), 1, + [135893] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2231), 1, - anon_sym_LPAREN2, - ACTIONS(2235), 1, - aux_sym_unquoted_token4, - STATE(3516), 1, + STATE(3540), 1, sym_comment, - ACTIONS(2229), 2, - anon_sym_DASH_DASH, + ACTIONS(2218), 9, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2220), 25, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [135938] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3541), 1, + sym_comment, + ACTIONS(1054), 8, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1056), 26, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK2, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [135983] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1090), 1, anon_sym_DASH, - ACTIONS(2233), 29, + ACTIONS(6572), 1, + anon_sym_DOT_DOT2, + STATE(3542), 1, + sym_comment, + ACTIONS(6574), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1092), 30, + anon_sym_DASH_DASH, anon_sym_LBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, @@ -337982,20 +343380,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [139625] = 6, - ACTIONS(3), 1, + [136032] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2239), 1, - anon_sym_LPAREN2, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - STATE(3517), 1, + ACTIONS(5139), 1, + anon_sym_DASH, + ACTIONS(6572), 1, + anon_sym_DOT_DOT2, + STATE(3543), 1, sym_comment, - ACTIONS(2245), 2, + ACTIONS(5137), 2, anon_sym_DASH_DASH, - anon_sym_DASH, - ACTIONS(2247), 29, anon_sym_LBRACE, + ACTIONS(6574), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5127), 28, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -338024,55 +343424,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [139673] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5123), 1, - sym__newline, - ACTIONS(5126), 1, - anon_sym_LBRACE, - ACTIONS(6434), 1, - anon_sym_DOT_DOT2, - STATE(3518), 1, - sym_comment, - ACTIONS(6436), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5128), 28, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [139723] = 4, - ACTIONS(247), 1, + [136083] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3519), 1, + STATE(3544), 1, sym_comment, - ACTIONS(1034), 8, + ACTIONS(1062), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -338081,7 +343438,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1036), 25, + ACTIONS(1064), 26, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -338107,56 +343465,54 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [139767] = 4, - ACTIONS(247), 1, + [136128] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3520), 1, + STATE(3545), 1, sym_comment, - ACTIONS(4798), 9, + ACTIONS(1058), 8, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(4796), 24, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1060), 26, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [139811] = 6, - ACTIONS(247), 1, + anon_sym_QMARK2, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [136173] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6387), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6438), 1, - anon_sym_DOT, - STATE(3521), 1, + STATE(3546), 1, sym_comment, - ACTIONS(1667), 8, + ACTIONS(1715), 9, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -338165,7 +343521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1669), 23, + ACTIONS(1717), 25, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -338181,6 +343537,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -338189,20 +343547,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [139859] = 6, - ACTIONS(3), 1, + [136218] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2225), 1, - anon_sym_LPAREN2, - ACTIONS(2227), 1, - aux_sym_unquoted_token4, - STATE(3522), 1, + ACTIONS(6184), 1, + sym_filesize_unit, + ACTIONS(6186), 1, + sym_duration_unit, + ACTIONS(6576), 1, + anon_sym_DOT_DOT2, + STATE(3547), 1, sym_comment, - ACTIONS(1070), 2, - anon_sym_DASH_DASH, - anon_sym_DASH, - ACTIONS(1072), 29, - anon_sym_LBRACE, + ACTIONS(6578), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1640), 29, + anon_sym_EQ_GT, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -338231,13 +343591,181 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [139907] = 4, - ACTIONS(247), 1, + [136269] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3523), 1, + ACTIONS(6580), 1, + anon_sym_QMARK2, + STATE(3548), 1, + sym_comment, + ACTIONS(1042), 8, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1044), 25, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [136316] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3549), 1, + sym_comment, + ACTIONS(1038), 8, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1040), 26, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_QMARK2, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [136361] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6582), 1, + anon_sym_QMARK2, + STATE(3550), 1, + sym_comment, + ACTIONS(1048), 8, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1050), 25, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [136408] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6584), 1, + sym_long_flag_identifier, + ACTIONS(6586), 1, + anon_sym_EQ2, + STATE(3551), 1, sym_comment, - ACTIONS(2287), 9, + ACTIONS(4937), 16, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token40, + anon_sym_DOLLAR, anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + ACTIONS(4939), 16, + sym_raw_string_begin, + aux_sym_cmd_identifier_token39, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [136457] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3552), 1, + sym_comment, + ACTIONS(2230), 9, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -338246,7 +343774,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2289), 24, + ACTIONS(2232), 25, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -338258,11 +343787,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -338271,13 +343800,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [139951] = 4, - ACTIONS(247), 1, + [136502] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3524), 1, + STATE(3553), 1, sym_comment, - ACTIONS(2297), 9, - anon_sym_DASH, + ACTIONS(1703), 9, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -338286,7 +343815,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2301), 24, + ACTIONS(1705), 25, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -338298,11 +343828,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -338311,13 +343841,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [139995] = 4, - ACTIONS(247), 1, + [136547] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3525), 1, + STATE(3554), 1, sym_comment, - ACTIONS(1778), 9, - anon_sym_DASH, + ACTIONS(1826), 9, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -338326,7 +343856,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1786), 24, + ACTIONS(1828), 25, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -338338,11 +343869,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -338351,55 +343882,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [140039] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1070), 1, - sym__newline, - ACTIONS(6434), 1, - anon_sym_DOT_DOT2, - STATE(3526), 1, - sym_comment, - ACTIONS(6436), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1072), 29, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [140087] = 4, - ACTIONS(247), 1, + [136592] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3527), 1, + STATE(3555), 1, sym_comment, - ACTIONS(1788), 9, - anon_sym_DASH, + ACTIONS(1769), 9, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -338408,7 +343897,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1796), 24, + ACTIONS(1771), 25, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -338420,11 +343910,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -338433,20 +343923,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [140131] = 7, - ACTIONS(247), 1, + [136637] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6379), 1, - anon_sym_DOT, - STATE(1217), 1, - sym_cell_path, - STATE(1570), 1, - sym_path, - STATE(3476), 1, - aux_sym_cell_path_repeat1, - STATE(3528), 1, + ACTIONS(6184), 1, + sym_filesize_unit, + ACTIONS(6186), 1, + sym_duration_unit, + ACTIONS(6588), 1, + anon_sym_DOT_DOT2, + STATE(3556), 1, sym_comment, - ACTIONS(1007), 29, + ACTIONS(6536), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1640), 29, anon_sym_LBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, @@ -338476,14 +343967,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [140181] = 5, - ACTIONS(247), 1, + [136688] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6440), 1, - anon_sym_QMARK2, - STATE(3529), 1, + ACTIONS(6590), 1, + anon_sym_DOT, + STATE(3744), 1, + sym_path, + STATE(3557), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(1031), 3, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT2, + ACTIONS(1033), 27, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + [136736] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3558), 1, sym_comment, - ACTIONS(1022), 8, + ACTIONS(1066), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -338492,7 +344023,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1024), 24, + ACTIONS(1068), 25, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -338517,17 +344049,28 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [140227] = 6, - ACTIONS(247), 1, + [136780] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6442), 1, - sym_long_flag_identifier, - ACTIONS(6444), 1, - anon_sym_EQ2, - STATE(3530), 1, + STATE(3559), 1, sym_comment, - ACTIONS(4810), 15, + ACTIONS(1070), 8, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + anon_sym_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1072), 25, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -338537,21 +344080,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(4808), 16, + [136824] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2275), 1, + aux_sym_unquoted_token4, + STATE(3560), 1, + sym_comment, + ACTIONS(1092), 10, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1090), 22, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, @@ -338559,23 +344130,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, sym_val_date, - [140275] = 7, - ACTIONS(247), 1, + [136870] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6446), 1, - anon_sym_DOT, - STATE(3513), 1, - aux_sym_cell_path_repeat1, - STATE(3531), 1, + ACTIONS(2273), 1, + anon_sym_LPAREN2, + ACTIONS(2275), 1, + aux_sym_unquoted_token4, + STATE(3561), 1, sym_comment, - STATE(3677), 1, - sym_path, - ACTIONS(1011), 3, - anon_sym_GT, + ACTIONS(1090), 2, + anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_LT2, - ACTIONS(1013), 27, - ts_builtin_sym_end, + ACTIONS(1092), 29, + anon_sym_LBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [136918] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3562), 1, + sym_comment, + ACTIONS(5139), 9, + anon_sym_DASH, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5137), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -338587,32 +344199,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - [140325] = 4, - ACTIONS(247), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [136962] = 6, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3532), 1, + ACTIONS(1090), 1, + sym__newline, + ACTIONS(6593), 1, + anon_sym_DOT_DOT2, + STATE(3563), 1, sym_comment, - ACTIONS(1038), 3, - anon_sym_GT, + ACTIONS(6595), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1092), 29, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [137010] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3564), 1, + sym_comment, + ACTIONS(2246), 9, anon_sym_DASH, - anon_sym_LT2, - ACTIONS(1040), 29, - ts_builtin_sym_end, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2250), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -338624,31 +344281,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_as, - anon_sym_QMARK2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, - [140368] = 5, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [137054] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2227), 1, + ACTIONS(2287), 1, aux_sym_unquoted_token4, - STATE(3533), 1, + STATE(3565), 1, sym_comment, - ACTIONS(1072), 9, + ACTIONS(2285), 10, + sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -338658,7 +344312,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(1070), 22, + ACTIONS(2281), 22, anon_sym_true, anon_sym_false, anon_sym_null, @@ -338681,14 +344335,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, sym_val_date, - [140413] = 5, + [137100] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2235), 1, + ACTIONS(2299), 1, aux_sym_unquoted_token4, - STATE(3534), 1, + STATE(3566), 1, sym_comment, - ACTIONS(2233), 9, + ACTIONS(2297), 10, + sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -338698,7 +344353,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2229), 22, + ACTIONS(2293), 22, anon_sym_true, anon_sym_false, anon_sym_null, @@ -338721,14 +344376,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, sym_val_date, - [140458] = 5, + [137146] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2243), 1, + ACTIONS(2299), 1, aux_sym_unquoted_token4, - STATE(3535), 1, + STATE(3567), 1, sym_comment, - ACTIONS(2241), 9, + ACTIONS(2305), 10, + sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, @@ -338738,7 +344394,7 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - ACTIONS(2237), 22, + ACTIONS(2303), 22, anon_sym_true, anon_sym_false, anon_sym_null, @@ -338761,59 +344417,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, sym_val_date, - [140503] = 5, - ACTIONS(3), 1, + [137192] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - STATE(3536), 1, + ACTIONS(6522), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6597), 1, + anon_sym_DOT, + STATE(3568), 1, sym_comment, - ACTIONS(2247), 9, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2245), 22, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DOLLAR, + ACTIONS(1715), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1717), 23, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [137240] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3569), 1, + sym_comment, + ACTIONS(1788), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - [140548] = 6, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1796), 24, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [137284] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2229), 1, - anon_sym_EQ_GT, - ACTIONS(2231), 1, + ACTIONS(2283), 1, anon_sym_LPAREN2, - ACTIONS(2235), 1, + ACTIONS(2287), 1, aux_sym_unquoted_token4, - STATE(3537), 1, + STATE(3570), 1, sym_comment, - ACTIONS(2233), 29, - anon_sym_PIPE, + ACTIONS(2281), 2, + anon_sym_DASH_DASH, + anon_sym_DASH, + ACTIONS(2285), 29, + anon_sym_LBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -338842,19 +344541,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [140595] = 6, + [137332] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2237), 1, - anon_sym_EQ_GT, - ACTIONS(2239), 1, + ACTIONS(2295), 1, anon_sym_LPAREN2, - ACTIONS(2243), 1, + ACTIONS(2299), 1, aux_sym_unquoted_token4, - STATE(3538), 1, + STATE(3571), 1, sym_comment, - ACTIONS(2241), 29, - anon_sym_PIPE, + ACTIONS(2293), 2, + anon_sym_DASH_DASH, + anon_sym_DASH, + ACTIONS(2297), 29, + anon_sym_LBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -338883,19 +344583,227 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [140642] = 6, + [137380] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2239), 1, + ACTIONS(2295), 1, anon_sym_LPAREN2, - ACTIONS(2243), 1, + ACTIONS(2299), 1, aux_sym_unquoted_token4, - ACTIONS(2245), 1, + STATE(3572), 1, + sym_comment, + ACTIONS(2303), 2, + anon_sym_DASH_DASH, + anon_sym_DASH, + ACTIONS(2305), 29, + anon_sym_LBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [137428] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3573), 1, + sym_comment, + ACTIONS(2277), 9, + anon_sym_DASH, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2279), 24, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_EQ_GT, - STATE(3539), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [137472] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3574), 1, + sym_comment, + ACTIONS(1842), 9, + anon_sym_DASH, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1850), 24, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [137516] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6599), 1, + anon_sym_LBRACK2, + STATE(3575), 1, + sym_comment, + ACTIONS(2355), 8, + anon_sym_LBRACK, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2359), 24, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [137562] = 7, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6601), 1, + anon_sym_DOT, + STATE(3557), 1, + aux_sym_cell_path_repeat1, + STATE(3576), 1, sym_comment, - ACTIONS(2247), 29, + STATE(3744), 1, + sym_path, + ACTIONS(1027), 3, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT2, + ACTIONS(1029), 27, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + [137612] = 7, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6524), 1, + anon_sym_DOT, + STATE(1275), 1, + sym_cell_path, + STATE(1693), 1, + sym_path, + STATE(3531), 1, + aux_sym_cell_path_repeat1, + STATE(3577), 1, + sym_comment, + ACTIONS(1023), 29, + anon_sym_LBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -338924,120 +344832,103 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [140689] = 4, - ACTIONS(3), 1, + [137662] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3540), 1, + ACTIONS(6603), 1, + anon_sym_EQ2, + STATE(3578), 1, sym_comment, - ACTIONS(2255), 9, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2253), 23, + ACTIONS(4947), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4945), 25, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, - aux_sym_unquoted_token4, - [140732] = 27, - ACTIONS(247), 1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [137708] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3403), 1, + ACTIONS(6477), 1, + aux_sym_unquoted_token2, + STATE(3579), 1, + sym_comment, + ACTIONS(1628), 7, + anon_sym_DOLLAR, anon_sym_DASH, - ACTIONS(3409), 1, - aux_sym_expr_unary_token1, - ACTIONS(3421), 1, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1640), 25, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, - ACTIONS(6448), 1, - sym_identifier, - ACTIONS(6454), 1, - sym__newline, - ACTIONS(6456), 1, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, anon_sym_LPAREN, - ACTIONS(6458), 1, - anon_sym_DOLLAR, - ACTIONS(6460), 1, anon_sym_LBRACE, - ACTIONS(6462), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6464), 1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token2, - ACTIONS(6466), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6468), 1, aux_sym__val_number_decimal_token4, - STATE(3465), 1, - sym__val_number, - STATE(3483), 1, - sym__val_number_decimal, - STATE(3541), 1, - sym_comment, - STATE(3829), 1, - sym_expr_parenthesized, - STATE(4039), 1, - aux_sym_shebang_repeat1, - STATE(4267), 1, - sym_val_number, - STATE(4358), 1, - sym__expr_unary_minus, - STATE(4499), 1, - sym__binary_predicate_parenthesized, - STATE(4500), 1, - sym__predicate, - STATE(4889), 1, - sym_val_closure, - ACTIONS(6450), 2, - anon_sym_true, - anon_sym_false, - STATE(4480), 2, - sym_expr_unary, - sym_val_bool, - STATE(5134), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6452), 5, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [140821] = 6, - ACTIONS(3), 1, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [137754] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1070), 1, + ACTIONS(5223), 1, sym__newline, - ACTIONS(2225), 1, - anon_sym_LPAREN2, - ACTIONS(2227), 1, - aux_sym_unquoted_token4, - STATE(3542), 1, - sym_comment, - ACTIONS(1072), 29, + ACTIONS(5226), 1, anon_sym_LBRACE, + ACTIONS(6593), 1, + anon_sym_DOT_DOT2, + STATE(3580), 1, + sym_comment, + ACTIONS(6595), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5228), 28, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, aux_sym_expr_binary_parenthesized_token3, @@ -339066,60 +344957,103 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [140868] = 4, - ACTIONS(247), 1, + [137804] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3543), 1, + STATE(3581), 1, sym_comment, - ACTIONS(1046), 8, - anon_sym_DOLLAR, + ACTIONS(2335), 9, anon_sym_DASH, - anon_sym_DOT_DOT, - anon_sym_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1048), 24, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2339), 24, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [137848] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3582), 1, + sym_comment, + ACTIONS(2291), 10, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2289), 23, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [140911] = 4, - ACTIONS(247), 1, + aux_sym_unquoted_token4, + [137892] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3544), 1, + ACTIONS(6605), 1, + anon_sym_EQ2, + STATE(3583), 1, sym_comment, - ACTIONS(1050), 8, + ACTIONS(4991), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, - anon_sym_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1052), 24, + ACTIONS(4989), 25, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -339144,12 +345078,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [140954] = 4, - ACTIONS(247), 1, + [137938] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3545), 1, + STATE(3584), 1, sym_comment, - ACTIONS(1054), 8, + ACTIONS(1074), 8, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -339158,7 +345092,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1056), 24, + ACTIONS(1076), 25, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -339183,16 +345118,17 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [140997] = 4, + [137982] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3546), 1, + STATE(3585), 1, sym_comment, - ACTIONS(2253), 2, - anon_sym_EQ_GT, + ACTIONS(2289), 3, + anon_sym_DASH_DASH, + anon_sym_DASH, aux_sym_unquoted_token4, - ACTIONS(2255), 30, - anon_sym_PIPE, + ACTIONS(2291), 30, + anon_sym_LBRACE, anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, @@ -339222,59 +345158,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [141040] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2229), 1, - sym__newline, - ACTIONS(2231), 1, - anon_sym_LPAREN2, - ACTIONS(2235), 1, - aux_sym_unquoted_token4, - STATE(3547), 1, - sym_comment, - ACTIONS(2233), 29, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [141087] = 5, - ACTIONS(247), 1, + [138026] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1560), 1, - anon_sym_DASH, - ACTIONS(4614), 1, - aux_sym_unquoted_token2, - STATE(3548), 1, + ACTIONS(5137), 1, + anon_sym_EQ_GT, + ACTIONS(6607), 1, + anon_sym_DOT_DOT2, + STATE(3586), 1, sym_comment, - ACTIONS(1572), 30, - anon_sym_DASH_DASH, - anon_sym_LBRACE, + ACTIONS(6609), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5127), 28, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -339303,97 +345199,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [141132] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2239), 1, - anon_sym_LPAREN2, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - ACTIONS(2245), 1, - sym__newline, - STATE(3549), 1, - sym_comment, - ACTIONS(2247), 29, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [141179] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3550), 1, - sym_comment, - ACTIONS(2253), 2, - sym__newline, - aux_sym_unquoted_token4, - ACTIONS(2255), 30, - anon_sym_LBRACE, - anon_sym_LPAREN2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [141222] = 4, - ACTIONS(247), 1, + [138073] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3551), 1, + ACTIONS(5996), 1, + anon_sym_DOT, + STATE(2752), 1, + sym_path, + STATE(2899), 1, + aux_sym_cell_path_repeat1, + STATE(3587), 1, sym_comment, - ACTIONS(1042), 3, + STATE(3780), 1, + sym_cell_path, + ACTIONS(1664), 2, anon_sym_GT, - anon_sym_DASH, anon_sym_LT2, - ACTIONS(1044), 29, - ts_builtin_sym_end, + ACTIONS(1668), 26, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339405,10 +345227,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, + anon_sym_RPAREN, anon_sym_in, - anon_sym_as, - anon_sym_QMARK2, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, @@ -339421,63 +345242,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_DOT, - [141265] = 4, - ACTIONS(247), 1, + [138124] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3552), 1, + STATE(3588), 1, sym_comment, - ACTIONS(1034), 3, - anon_sym_GT, + ACTIONS(4997), 7, + anon_sym_DOLLAR, anon_sym_DASH, - anon_sym_LT2, - ACTIONS(1036), 29, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_as, - anon_sym_QMARK2, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, - [141308] = 8, - ACTIONS(247), 1, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4995), 25, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [138167] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3589), 1, + sym_comment, + ACTIONS(5085), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(5083), 25, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [138210] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5602), 1, + ACTIONS(5996), 1, anon_sym_DOT, - STATE(2632), 1, - aux_sym_cell_path_repeat1, - STATE(2655), 1, + STATE(2752), 1, sym_path, - STATE(3553), 1, + STATE(2899), 1, + aux_sym_cell_path_repeat1, + STATE(3590), 1, sym_comment, - STATE(3729), 1, + STATE(3790), 1, sym_cell_path, - ACTIONS(1641), 2, + ACTIONS(1670), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(1645), 26, + ACTIONS(1672), 26, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339504,57 +345363,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - [141359] = 8, - ACTIONS(247), 1, + [138261] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5602), 1, - anon_sym_DOT, - STATE(2632), 1, - aux_sym_cell_path_repeat1, - STATE(2655), 1, - sym_path, - STATE(3554), 1, + STATE(3591), 1, sym_comment, - STATE(3574), 1, - sym_cell_path, - ACTIONS(1675), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(1677), 26, + ACTIONS(1897), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1899), 25, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [138304] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3592), 1, + sym_comment, + ACTIONS(2289), 2, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - [141410] = 5, - ACTIONS(247), 1, + aux_sym_unquoted_token4, + ACTIONS(2291), 30, + anon_sym_LBRACE, + anon_sym_LPAREN2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [138347] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6470), 1, - anon_sym_EQ2, - STATE(3555), 1, + STATE(3593), 1, sym_comment, - ACTIONS(4942), 7, + ACTIONS(2547), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -339562,7 +345454,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4940), 24, + ACTIONS(2549), 25, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -339587,19 +345480,19 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [141455] = 6, - ACTIONS(247), 1, + [138390] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4796), 1, + ACTIONS(5137), 1, anon_sym_LBRACE, - ACTIONS(6472), 1, + ACTIONS(6611), 1, anon_sym_DOT_DOT2, - STATE(3556), 1, + STATE(3594), 1, sym_comment, - ACTIONS(6474), 2, + ACTIONS(6595), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(4800), 28, + ACTIONS(5127), 28, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -339628,98 +345521,101 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [141502] = 5, - ACTIONS(247), 1, + [138437] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6476), 1, - anon_sym_QMARK2, - STATE(3557), 1, + ACTIONS(2281), 1, + anon_sym_EQ_GT, + ACTIONS(2283), 1, + anon_sym_LPAREN2, + ACTIONS(2287), 1, + aux_sym_unquoted_token4, + STATE(3595), 1, sym_comment, - ACTIONS(1022), 3, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT2, - ACTIONS(1024), 28, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + ACTIONS(2285), 29, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, - [141547] = 5, - ACTIONS(247), 1, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [138484] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6478), 1, - anon_sym_QMARK2, - STATE(3558), 1, + ACTIONS(2293), 1, + anon_sym_EQ_GT, + ACTIONS(2295), 1, + anon_sym_LPAREN2, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + STATE(3596), 1, sym_comment, - ACTIONS(1028), 3, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT2, - ACTIONS(1030), 28, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + ACTIONS(2297), 29, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, - [141592] = 5, - ACTIONS(247), 1, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [138531] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6472), 1, - anon_sym_DOT_DOT2, - STATE(3559), 1, + ACTIONS(2295), 1, + anon_sym_LPAREN2, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + ACTIONS(2303), 1, + anon_sym_EQ_GT, + STATE(3597), 1, sym_comment, - ACTIONS(6474), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1072), 29, - anon_sym_LBRACE, + ACTIONS(2305), 29, + anon_sym_PIPE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -339748,15 +345644,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [141637] = 5, - ACTIONS(247), 1, + [138578] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6480), 1, - anon_sym_LBRACK2, - STATE(3560), 1, + STATE(3598), 1, sym_comment, - ACTIONS(2313), 8, - anon_sym_LBRACK, + ACTIONS(2510), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -339764,13 +345657,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2317), 23, + ACTIONS(2512), 25, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_LBRACE, aux_sym_expr_unary_token1, @@ -339788,14 +345683,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [141682] = 5, - ACTIONS(247), 1, + [138621] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6482), 1, - anon_sym_EQ2, - STATE(3561), 1, + STATE(3599), 1, sym_comment, - ACTIONS(4900), 7, + ACTIONS(1078), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -339803,7 +345696,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(4898), 24, + ACTIONS(1080), 25, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -339828,14 +345722,12 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [141727] = 5, - ACTIONS(247), 1, + [138664] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6355), 1, - aux_sym_unquoted_token2, - STATE(3562), 1, + STATE(3600), 1, sym_comment, - ACTIONS(1560), 7, + ACTIONS(5077), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -339843,7 +345735,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(1572), 24, + ACTIONS(5075), 25, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -339868,121 +345761,58 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [141772] = 27, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3403), 1, - anon_sym_DASH, - ACTIONS(3409), 1, - aux_sym_expr_unary_token1, - ACTIONS(3421), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(6448), 1, - sym_identifier, - ACTIONS(6454), 1, - sym__newline, - ACTIONS(6456), 1, - anon_sym_LPAREN, - ACTIONS(6458), 1, - anon_sym_DOLLAR, - ACTIONS(6460), 1, - anon_sym_LBRACE, - ACTIONS(6462), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6464), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6466), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6468), 1, - aux_sym__val_number_decimal_token4, - STATE(3465), 1, - sym__val_number, - STATE(3483), 1, - sym__val_number_decimal, - STATE(3541), 1, - aux_sym_shebang_repeat1, - STATE(3563), 1, - sym_comment, - STATE(3829), 1, - sym_expr_parenthesized, - STATE(4267), 1, - sym_val_number, - STATE(4304), 1, - sym__predicate, - STATE(4358), 1, - sym__expr_unary_minus, - STATE(4490), 1, - sym__binary_predicate_parenthesized, - STATE(4878), 1, - sym_val_closure, - ACTIONS(6450), 2, - anon_sym_true, - anon_sym_false, - STATE(4480), 2, - sym_expr_unary, - sym_val_bool, - STATE(5134), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6452), 5, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - [141861] = 6, - ACTIONS(247), 1, + [138707] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4796), 1, - anon_sym_EQ_GT, - ACTIONS(6484), 1, + ACTIONS(6613), 1, anon_sym_DOT_DOT2, - STATE(3564), 1, + STATE(3601), 1, sym_comment, - ACTIONS(6486), 2, + ACTIONS(6615), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(4800), 28, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [141908] = 5, - ACTIONS(247), 1, + ACTIONS(1842), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1850), 21, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [138754] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6484), 1, - anon_sym_DOT_DOT2, - STATE(3565), 1, + STATE(3602), 1, sym_comment, - ACTIONS(6486), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1072), 29, + ACTIONS(2289), 2, anon_sym_EQ_GT, + aux_sym_unquoted_token4, + ACTIONS(2291), 30, + anon_sym_PIPE, + anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -340011,53 +345841,168 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [141953] = 6, - ACTIONS(3), 1, + [138797] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2237), 1, - sym__newline, - ACTIONS(2239), 1, - anon_sym_LPAREN2, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - STATE(3566), 1, + STATE(3603), 1, + sym_comment, + ACTIONS(5053), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(5051), 25, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [138840] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3604), 1, sym_comment, - ACTIONS(2241), 29, + ACTIONS(1628), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1640), 25, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [142000] = 4, - ACTIONS(247), 1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [138883] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3605), 1, + sym_comment, + ACTIONS(1090), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1092), 25, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [138926] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3606), 1, + sym_comment, + ACTIONS(1058), 3, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT2, + ACTIONS(1060), 29, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_as, + anon_sym_QMARK2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, + [138969] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3567), 1, + STATE(3607), 1, sym_comment, - ACTIONS(2412), 7, + ACTIONS(2418), 7, anon_sym_DOLLAR, anon_sym_DASH, anon_sym_DOT_DOT, @@ -340065,7 +346010,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - ACTIONS(2414), 24, + ACTIONS(2420), 25, + sym_raw_string_begin, anon_sym_true, anon_sym_false, anon_sym_null, @@ -340090,184 +346036,133 @@ static const uint16_t ts_small_parse_table[] = { sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - [142042] = 4, - ACTIONS(3), 1, + [139012] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2253), 1, - aux_sym_unquoted_token4, - STATE(3568), 1, + STATE(3608), 1, sym_comment, - ACTIONS(2255), 30, + ACTIONS(2454), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2456), 25, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_LPAREN2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [142084] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6488), 1, - anon_sym_DOT_DOT2, - STATE(3569), 1, - sym_comment, - ACTIONS(6490), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1991), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1997), 20, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [142130] = 6, - ACTIONS(247), 1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [139055] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6492), 1, - anon_sym_DOT_DOT2, - STATE(3570), 1, + STATE(3609), 1, sym_comment, - ACTIONS(6494), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1999), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2005), 20, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [142176] = 6, - ACTIONS(247), 1, + ACTIONS(5061), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(5059), 25, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [139098] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6496), 1, - anon_sym_DOT_DOT2, - STATE(3571), 1, + STATE(3610), 1, sym_comment, - ACTIONS(6498), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2007), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2013), 20, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [142222] = 6, - ACTIONS(247), 1, + ACTIONS(5099), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(5097), 25, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [139141] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6500), 1, - anon_sym_DOT_DOT2, - STATE(3572), 1, + STATE(3611), 1, sym_comment, - ACTIONS(6502), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1788), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1796), 20, + ACTIONS(1062), 3, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT2, + ACTIONS(1064), 29, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -340280,63 +346175,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [142268] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1560), 1, - sym__newline, - ACTIONS(4742), 1, - aux_sym_unquoted_token2, - STATE(3573), 1, - sym_comment, - ACTIONS(1572), 29, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [142312] = 4, - ACTIONS(247), 1, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_as, + anon_sym_QMARK2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, + [139184] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3574), 1, + STATE(3612), 1, sym_comment, - ACTIONS(2141), 3, + ACTIONS(1038), 3, anon_sym_GT, + anon_sym_DASH, anon_sym_LT2, - anon_sym_DOT_DOT2, - ACTIONS(2143), 28, + ACTIONS(1040), 29, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340348,9 +346214,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_in, - anon_sym_RBRACE, + anon_sym_as, + anon_sym_QMARK2, anon_sym_and, anon_sym_xor, anon_sym_or, @@ -340363,882 +346230,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [142354] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5271), 1, - sym__newline, - STATE(3575), 1, - sym_comment, - STATE(3587), 1, - aux_sym_shebang_repeat1, - ACTIONS(6504), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5216), 27, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [142400] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5271), 1, - sym__newline, - STATE(3576), 1, - sym_comment, - STATE(3589), 1, - aux_sym_shebang_repeat1, - ACTIONS(6504), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6506), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5216), 23, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [142448] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5271), 1, - sym__newline, - STATE(3577), 1, - sym_comment, - STATE(3591), 1, - aux_sym_shebang_repeat1, - ACTIONS(6504), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6508), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6506), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5216), 21, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [142498] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5271), 1, - sym__newline, - STATE(3578), 1, - sym_comment, - STATE(3593), 1, - aux_sym_shebang_repeat1, - ACTIONS(6504), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6508), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6510), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6506), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6512), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6514), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5216), 9, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - [142554] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5271), 1, - sym__newline, - STATE(3579), 1, - sym_comment, - STATE(3595), 1, - aux_sym_shebang_repeat1, - ACTIONS(6504), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6508), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6510), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6516), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6506), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6512), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6514), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5216), 7, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - [142612] = 13, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5271), 1, - sym__newline, - ACTIONS(6518), 1, - aux_sym_expr_binary_parenthesized_token13, - STATE(3580), 1, - sym_comment, - STATE(3597), 1, - aux_sym_shebang_repeat1, - ACTIONS(6504), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6508), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6510), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6516), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6506), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6512), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5216), 6, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6514), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [142672] = 14, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5271), 1, - sym__newline, - ACTIONS(6518), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6520), 1, - aux_sym_expr_binary_parenthesized_token14, - STATE(3581), 1, - sym_comment, - STATE(3599), 1, - aux_sym_shebang_repeat1, - ACTIONS(6504), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6508), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6510), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6516), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6506), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6512), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5216), 5, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6514), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [142734] = 15, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5271), 1, - sym__newline, - ACTIONS(6518), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6520), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6522), 1, - aux_sym_expr_binary_parenthesized_token15, - STATE(3582), 1, - sym_comment, - STATE(3601), 1, - aux_sym_shebang_repeat1, - ACTIONS(6504), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6508), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6510), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6516), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5216), 4, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6506), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6512), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6514), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [142798] = 16, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5271), 1, - sym__newline, - ACTIONS(6518), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6520), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6522), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6524), 1, - aux_sym_expr_binary_parenthesized_token16, - STATE(3583), 1, - sym_comment, - STATE(3603), 1, - aux_sym_shebang_repeat1, - ACTIONS(6504), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6508), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6510), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6516), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5216), 3, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6506), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6512), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6514), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [142864] = 17, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5245), 1, - sym__newline, - ACTIONS(6518), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6520), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6522), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6524), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6526), 1, - aux_sym_expr_binary_parenthesized_token17, - STATE(3584), 1, - sym_comment, - STATE(3605), 1, - aux_sym_shebang_repeat1, - ACTIONS(5216), 2, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6504), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6508), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6510), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6516), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6506), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6512), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6514), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [142932] = 10, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5271), 1, - sym__newline, - STATE(3585), 1, - sym_comment, - STATE(3607), 1, - aux_sym_shebang_repeat1, - ACTIONS(6504), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6508), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6510), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6506), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6514), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5216), 13, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - [142986] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5271), 1, - sym__newline, - STATE(3586), 1, - sym_comment, - STATE(3609), 1, - aux_sym_shebang_repeat1, - ACTIONS(6504), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6508), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6510), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6506), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5216), 19, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [143038] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5195), 1, - sym__newline, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(3587), 1, - sym_comment, - ACTIONS(6528), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5197), 27, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [143084] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5296), 1, - sym__newline, - STATE(3588), 1, - sym_comment, - STATE(3623), 1, - aux_sym_shebang_repeat1, - ACTIONS(6504), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5201), 27, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [143130] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5195), 1, - sym__newline, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(3589), 1, - sym_comment, - ACTIONS(6528), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6530), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5197), 23, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [143178] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5296), 1, - sym__newline, - STATE(3590), 1, - sym_comment, - STATE(3624), 1, - aux_sym_shebang_repeat1, - ACTIONS(6504), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6506), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5201), 23, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [143226] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5195), 1, - sym__newline, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(3591), 1, - sym_comment, - ACTIONS(6528), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6532), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6530), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5197), 21, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [143276] = 8, - ACTIONS(247), 1, + anon_sym_DOT, + [139227] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5296), 1, - sym__newline, - STATE(3592), 1, + STATE(3613), 1, sym_comment, - STATE(3625), 1, - aux_sym_shebang_repeat1, - ACTIONS(6504), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6508), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6506), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5201), 21, + ACTIONS(1909), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(1911), 25, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [143326] = 11, - ACTIONS(247), 1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [139270] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5195), 1, + ACTIONS(2281), 1, sym__newline, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(3593), 1, + ACTIONS(2283), 1, + anon_sym_LPAREN2, + ACTIONS(2287), 1, + aux_sym_unquoted_token4, + STATE(3614), 1, sym_comment, - ACTIONS(6528), 2, + ACTIONS(2285), 29, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6532), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6534), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6530), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6536), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6538), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5197), 9, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - [143382] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5296), 1, - sym__newline, - STATE(3594), 1, - sym_comment, - STATE(3626), 1, - aux_sym_shebang_repeat1, - ACTIONS(6504), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6508), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6510), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6506), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6512), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6514), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5201), 9, - anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -341247,1290 +346301,1494 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [143438] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5195), 1, - sym__newline, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(3595), 1, - sym_comment, - ACTIONS(6528), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6532), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6534), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6540), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6530), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6536), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6538), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5197), 7, + [139317] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3615), 1, + sym_comment, + ACTIONS(2539), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2541), 25, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - [143496] = 12, - ACTIONS(247), 1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [139360] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5296), 1, + STATE(3616), 1, + sym_comment, + ACTIONS(1054), 3, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT2, + ACTIONS(1056), 29, + ts_builtin_sym_end, sym__newline, - STATE(3596), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_as, + anon_sym_QMARK2, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, + [139403] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6617), 1, + anon_sym_QMARK2, + STATE(3617), 1, sym_comment, - STATE(3627), 1, - aux_sym_shebang_repeat1, - ACTIONS(6504), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6508), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6510), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6516), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6506), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6512), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6514), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5201), 7, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - [143554] = 13, - ACTIONS(247), 1, + ACTIONS(1042), 3, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT2, + ACTIONS(1044), 28, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, + [139448] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5195), 1, + ACTIONS(6619), 1, + anon_sym_QMARK2, + STATE(3618), 1, + sym_comment, + ACTIONS(1048), 3, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT2, + ACTIONS(1050), 28, + ts_builtin_sym_end, sym__newline, - ACTIONS(6542), 1, - aux_sym_expr_binary_parenthesized_token13, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(3597), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, + [139493] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3619), 1, sym_comment, - ACTIONS(6528), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6532), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6534), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6540), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6530), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6536), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5197), 6, + ACTIONS(2569), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2571), 25, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6538), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [143614] = 13, - ACTIONS(247), 1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [139536] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5296), 1, - sym__newline, - ACTIONS(6518), 1, - aux_sym_expr_binary_parenthesized_token13, - STATE(3598), 1, + STATE(3620), 1, sym_comment, - STATE(3628), 1, - aux_sym_shebang_repeat1, - ACTIONS(6504), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6508), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6510), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6516), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6506), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6512), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5201), 6, + ACTIONS(2543), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2545), 25, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6514), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [143674] = 14, - ACTIONS(247), 1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [139579] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5195), 1, - sym__newline, - ACTIONS(6542), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6544), 1, - aux_sym_expr_binary_parenthesized_token14, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(3599), 1, + STATE(3621), 1, sym_comment, - ACTIONS(6528), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6532), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6534), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6540), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6530), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6536), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5197), 5, + ACTIONS(2561), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2563), 25, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6538), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [143736] = 14, - ACTIONS(247), 1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [139622] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5296), 1, - sym__newline, - ACTIONS(6518), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6520), 1, - aux_sym_expr_binary_parenthesized_token14, - STATE(3600), 1, + STATE(3622), 1, sym_comment, - STATE(3629), 1, - aux_sym_shebang_repeat1, - ACTIONS(6504), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6508), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6510), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6516), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6506), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6512), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5201), 5, + ACTIONS(2001), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2003), 25, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6514), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [143798] = 15, - ACTIONS(247), 1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [139665] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5195), 1, - sym__newline, - ACTIONS(6542), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6544), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6546), 1, - aux_sym_expr_binary_parenthesized_token15, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(3601), 1, + STATE(3623), 1, sym_comment, - ACTIONS(6528), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6532), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6534), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6540), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5197), 4, + ACTIONS(2535), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2537), 25, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6530), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6536), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6538), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [143862] = 15, - ACTIONS(247), 1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [139708] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5296), 1, - sym__newline, - ACTIONS(6518), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6520), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6522), 1, - aux_sym_expr_binary_parenthesized_token15, - STATE(3602), 1, + STATE(3624), 1, sym_comment, - STATE(3630), 1, - aux_sym_shebang_repeat1, - ACTIONS(6504), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6508), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6510), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6516), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5201), 4, + ACTIONS(2466), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2468), 25, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6506), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6512), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6514), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [143926] = 16, - ACTIONS(247), 1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [139751] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5195), 1, - sym__newline, - ACTIONS(6542), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6544), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6546), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6548), 1, - aux_sym_expr_binary_parenthesized_token16, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(3603), 1, + STATE(3625), 1, sym_comment, - ACTIONS(6528), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6532), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6534), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6540), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5197), 3, + ACTIONS(2017), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2019), 25, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6530), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6536), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6538), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [143992] = 16, - ACTIONS(247), 1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [139794] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5296), 1, + ACTIONS(6621), 1, + anon_sym_DOT_DOT2, + STATE(3626), 1, + sym_comment, + ACTIONS(6623), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1788), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1796), 21, sym__newline, - ACTIONS(6518), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6520), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6522), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6524), 1, - aux_sym_expr_binary_parenthesized_token16, - STATE(3604), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [139841] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3627), 1, + sym_comment, + ACTIONS(2047), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2049), 25, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [139884] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3628), 1, + sym_comment, + ACTIONS(2434), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2436), 25, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [139927] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3629), 1, + sym_comment, + ACTIONS(2059), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2061), 25, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [139970] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3630), 1, sym_comment, + ACTIONS(2442), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2444), 25, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [140013] = 4, + ACTIONS(249), 1, + anon_sym_POUND, STATE(3631), 1, - aux_sym_shebang_repeat1, - ACTIONS(6504), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6508), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6510), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6516), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5201), 3, + sym_comment, + ACTIONS(2450), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2452), 25, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6506), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6512), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6514), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [144058] = 17, - ACTIONS(247), 1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [140056] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5195), 1, - sym__newline, - ACTIONS(6542), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6544), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6546), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6548), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6550), 1, - aux_sym_expr_binary_parenthesized_token17, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(3605), 1, + STATE(3632), 1, sym_comment, - ACTIONS(5197), 2, + ACTIONS(2067), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2069), 25, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6528), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6532), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6534), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6540), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6530), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6536), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6538), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [144126] = 17, - ACTIONS(247), 1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [140099] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5245), 1, - sym__newline, - ACTIONS(6518), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6520), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6522), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6524), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6526), 1, - aux_sym_expr_binary_parenthesized_token17, - STATE(3606), 1, + STATE(3633), 1, sym_comment, - STATE(3632), 1, - aux_sym_shebang_repeat1, - ACTIONS(5201), 2, + ACTIONS(2087), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2089), 25, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6504), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6508), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6510), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6516), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6506), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6512), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6514), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [144194] = 10, - ACTIONS(247), 1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [140142] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5195), 1, - sym__newline, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(3607), 1, + STATE(3634), 1, sym_comment, - ACTIONS(6528), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6532), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6534), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6530), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6538), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5197), 13, + ACTIONS(2470), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2472), 25, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - [144248] = 10, - ACTIONS(247), 1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [140185] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5296), 1, - sym__newline, - STATE(3608), 1, + STATE(3635), 1, sym_comment, - STATE(3633), 1, - aux_sym_shebang_repeat1, - ACTIONS(6504), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6508), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6510), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6506), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6514), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5201), 13, + ACTIONS(2474), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2476), 25, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - [144302] = 9, - ACTIONS(247), 1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [140228] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5195), 1, - sym__newline, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(3609), 1, + STATE(3636), 1, sym_comment, - ACTIONS(6528), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6532), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6534), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6530), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5197), 19, + ACTIONS(2095), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2097), 25, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [144354] = 9, - ACTIONS(247), 1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [140271] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5296), 1, - sym__newline, - STATE(3610), 1, + STATE(3637), 1, sym_comment, - STATE(3634), 1, - aux_sym_shebang_repeat1, - ACTIONS(6504), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6508), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6510), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6506), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5201), 19, + ACTIONS(2502), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2504), 25, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [144406] = 6, - ACTIONS(247), 1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [140314] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5307), 1, - sym__newline, - STATE(3611), 1, + STATE(3638), 1, sym_comment, - STATE(3635), 1, - aux_sym_shebang_repeat1, - ACTIONS(6504), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5220), 27, + ACTIONS(2531), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2533), 25, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [144452] = 7, - ACTIONS(247), 1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [140357] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5307), 1, - sym__newline, - STATE(3612), 1, + STATE(3639), 1, sym_comment, - STATE(3637), 1, - aux_sym_shebang_repeat1, - ACTIONS(6504), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6506), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5220), 23, + ACTIONS(2494), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2496), 25, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [144500] = 8, - ACTIONS(247), 1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [140400] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5307), 1, - sym__newline, - STATE(3613), 1, + STATE(3640), 1, sym_comment, - STATE(3639), 1, - aux_sym_shebang_repeat1, - ACTIONS(6504), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6508), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6506), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5220), 21, + ACTIONS(2494), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2496), 25, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [144550] = 11, - ACTIONS(247), 1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [140443] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5307), 1, - sym__newline, - STATE(3614), 1, - sym_comment, STATE(3641), 1, - aux_sym_shebang_repeat1, - ACTIONS(6504), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6508), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6510), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6506), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6512), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6514), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5220), 9, + sym_comment, + ACTIONS(2398), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2400), 25, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - [144606] = 12, - ACTIONS(247), 1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [140486] = 27, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5307), 1, + ACTIONS(3468), 1, + anon_sym_DASH, + ACTIONS(3474), 1, + aux_sym_expr_unary_token1, + ACTIONS(3486), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(6625), 1, + sym_identifier, + ACTIONS(6631), 1, sym__newline, - STATE(3615), 1, + ACTIONS(6633), 1, + anon_sym_LPAREN, + ACTIONS(6635), 1, + anon_sym_DOLLAR, + ACTIONS(6637), 1, + anon_sym_LBRACE, + ACTIONS(6639), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6641), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6643), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6645), 1, + aux_sym__val_number_decimal_token4, + STATE(3529), 1, + sym__val_number, + STATE(3537), 1, + sym__val_number_decimal, + STATE(3642), 1, sym_comment, - STATE(3643), 1, + STATE(3898), 1, + sym_expr_parenthesized, + STATE(4106), 1, aux_sym_shebang_repeat1, - ACTIONS(6504), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6508), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6510), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6516), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6506), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6512), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6514), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5220), 7, + STATE(4336), 1, + sym_val_number, + STATE(4449), 1, + sym__binary_predicate_parenthesized, + STATE(4450), 1, + sym__predicate, + STATE(4482), 1, + sym__expr_unary_minus, + STATE(4878), 1, + sym_val_closure, + ACTIONS(6627), 2, + anon_sym_true, + anon_sym_false, + STATE(4377), 2, + sym_expr_unary, + sym_val_bool, + STATE(5196), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(6629), 5, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + [140575] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3643), 1, + sym_comment, + ACTIONS(2430), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2432), 25, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - [144664] = 13, - ACTIONS(247), 1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [140618] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5307), 1, - sym__newline, - ACTIONS(6518), 1, - aux_sym_expr_binary_parenthesized_token13, - STATE(3616), 1, + STATE(3644), 1, sym_comment, - STATE(3645), 1, - aux_sym_shebang_repeat1, - ACTIONS(6504), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6508), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6510), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6516), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6506), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6512), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5220), 6, + ACTIONS(2478), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2480), 25, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6514), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [144724] = 14, - ACTIONS(247), 1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [140661] = 27, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5307), 1, + ACTIONS(3468), 1, + anon_sym_DASH, + ACTIONS(3474), 1, + aux_sym_expr_unary_token1, + ACTIONS(3486), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(6625), 1, + sym_identifier, + ACTIONS(6631), 1, sym__newline, - ACTIONS(6518), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6520), 1, - aux_sym_expr_binary_parenthesized_token14, - STATE(3617), 1, - sym_comment, - STATE(3647), 1, + ACTIONS(6633), 1, + anon_sym_LPAREN, + ACTIONS(6635), 1, + anon_sym_DOLLAR, + ACTIONS(6637), 1, + anon_sym_LBRACE, + ACTIONS(6639), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6641), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6643), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6645), 1, + aux_sym__val_number_decimal_token4, + STATE(3529), 1, + sym__val_number, + STATE(3537), 1, + sym__val_number_decimal, + STATE(3642), 1, aux_sym_shebang_repeat1, - ACTIONS(6504), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6508), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6510), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6516), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6506), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6512), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5220), 5, + STATE(3645), 1, + sym_comment, + STATE(3898), 1, + sym_expr_parenthesized, + STATE(4336), 1, + sym_val_number, + STATE(4440), 1, + sym__predicate, + STATE(4457), 1, + sym__binary_predicate_parenthesized, + STATE(4482), 1, + sym__expr_unary_minus, + STATE(4926), 1, + sym_val_closure, + ACTIONS(6627), 2, + anon_sym_true, + anon_sym_false, + STATE(4377), 2, + sym_expr_unary, + sym_val_bool, + STATE(5196), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(6629), 5, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + [140750] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3646), 1, + sym_comment, + ACTIONS(2410), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2412), 25, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6514), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [144786] = 15, - ACTIONS(247), 1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [140793] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5307), 1, - sym__newline, - ACTIONS(6518), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6520), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6522), 1, - aux_sym_expr_binary_parenthesized_token15, - STATE(3618), 1, + STATE(3647), 1, sym_comment, - STATE(3649), 1, - aux_sym_shebang_repeat1, - ACTIONS(6504), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6508), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6510), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6516), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5220), 4, + ACTIONS(2438), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2440), 25, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6506), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6512), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6514), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [144850] = 16, - ACTIONS(247), 1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [140836] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5307), 1, - sym__newline, - ACTIONS(6518), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6520), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6522), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6524), 1, - aux_sym_expr_binary_parenthesized_token16, - STATE(3619), 1, + STATE(3648), 1, sym_comment, - STATE(3651), 1, - aux_sym_shebang_repeat1, - ACTIONS(6504), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6508), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6510), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6516), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5220), 3, + ACTIONS(2406), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2408), 25, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6506), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6512), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6514), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [144916] = 17, - ACTIONS(247), 1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [140879] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5245), 1, - sym__newline, - ACTIONS(6518), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6520), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6522), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6524), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6526), 1, - aux_sym_expr_binary_parenthesized_token17, - STATE(3620), 1, + ACTIONS(6611), 1, + anon_sym_DOT_DOT2, + STATE(3649), 1, + sym_comment, + ACTIONS(6595), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1092), 29, + anon_sym_LBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [140924] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3650), 1, sym_comment, - STATE(3653), 1, - aux_sym_shebang_repeat1, - ACTIONS(5220), 2, + ACTIONS(2506), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2508), 25, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6504), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6508), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6510), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6516), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6506), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6512), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6514), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [144984] = 10, - ACTIONS(247), 1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [140967] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5307), 1, + ACTIONS(2293), 1, sym__newline, - STATE(3621), 1, + ACTIONS(2295), 1, + anon_sym_LPAREN2, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + STATE(3651), 1, sym_comment, - STATE(3655), 1, - aux_sym_shebang_repeat1, - ACTIONS(6504), 2, + ACTIONS(2297), 29, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6508), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6510), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6506), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6514), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5220), 13, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - [145038] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5307), 1, - sym__newline, - STATE(3622), 1, - sym_comment, - STATE(3657), 1, - aux_sym_shebang_repeat1, - ACTIONS(6504), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6508), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6510), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6506), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5220), 19, - anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -342549,20 +347807,99 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [145090] = 6, - ACTIONS(247), 1, + [141014] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3652), 1, + sym_comment, + ACTIONS(5065), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(5063), 25, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [141057] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3653), 1, + sym_comment, + ACTIONS(5073), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(5071), 25, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [141100] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5203), 1, + ACTIONS(2295), 1, + anon_sym_LPAREN2, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + ACTIONS(2303), 1, sym__newline, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(3623), 1, + STATE(3654), 1, sym_comment, - ACTIONS(6528), 2, + ACTIONS(2305), 29, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5205), 27, - anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, @@ -342589,25 +347926,222 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [145136] = 7, - ACTIONS(247), 1, + [141147] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1628), 1, + anon_sym_DASH, + ACTIONS(4770), 1, + aux_sym_unquoted_token2, + STATE(3655), 1, + sym_comment, + ACTIONS(1640), 30, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [141192] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6607), 1, + anon_sym_DOT_DOT2, + STATE(3656), 1, + sym_comment, + ACTIONS(6609), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1092), 29, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [141237] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3657), 1, + sym_comment, + ACTIONS(5049), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(5047), 25, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [141280] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3658), 1, + sym_comment, + ACTIONS(5069), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(5067), 25, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [141323] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3659), 1, + sym_comment, + ACTIONS(4987), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(4985), 25, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [141366] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5203), 1, + ACTIONS(1090), 1, sym__newline, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(3624), 1, + ACTIONS(2273), 1, + anon_sym_LPAREN2, + ACTIONS(2275), 1, + aux_sym_unquoted_token4, + STATE(3660), 1, sym_comment, - ACTIONS(6528), 2, + ACTIONS(1092), 29, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6530), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5205), 23, - anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, aux_sym_expr_binary_parenthesized_token9, @@ -342630,84 +348164,115 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [145184] = 8, - ACTIONS(247), 1, + [141413] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5203), 1, - sym__newline, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(3625), 1, + STATE(3661), 1, sym_comment, - ACTIONS(6528), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6532), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6530), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5205), 21, + ACTIONS(2043), 7, + anon_sym_DOLLAR, + anon_sym_DASH, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + ACTIONS(2045), 25, + sym_raw_string_begin, + anon_sym_true, + anon_sym_false, + anon_sym_null, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [145234] = 11, - ACTIONS(247), 1, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + [141456] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5133), 1, + anon_sym_DASH, + STATE(3662), 1, + sym_comment, + ACTIONS(6647), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5131), 28, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [141500] = 10, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5203), 1, + ACTIONS(5305), 1, sym__newline, - STATE(2043), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(3626), 1, + STATE(3663), 1, sym_comment, - ACTIONS(6528), 2, + ACTIONS(6649), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6532), 2, + ACTIONS(6653), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6534), 2, + ACTIONS(6655), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6530), 4, + ACTIONS(6651), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6536), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6538), 6, + ACTIONS(6657), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5205), 9, + ACTIONS(5307), 13, anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, @@ -342717,366 +348282,228 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [145290] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5203), 1, - sym__newline, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(3627), 1, - sym_comment, - ACTIONS(6528), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6532), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6534), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6540), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6530), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6536), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6538), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5205), 7, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - [145348] = 13, - ACTIONS(247), 1, + [141554] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5203), 1, + ACTIONS(5305), 1, sym__newline, - ACTIONS(6542), 1, - aux_sym_expr_binary_parenthesized_token13, - STATE(2043), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(3628), 1, + STATE(3664), 1, sym_comment, - ACTIONS(6528), 2, + ACTIONS(6649), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6532), 2, + ACTIONS(6653), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6534), 2, + ACTIONS(6655), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6540), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6530), 4, + ACTIONS(6651), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6536), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5205), 6, + ACTIONS(5307), 19, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6538), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [145408] = 14, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5203), 1, - sym__newline, - ACTIONS(6542), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6544), 1, - aux_sym_expr_binary_parenthesized_token14, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(3629), 1, - sym_comment, - ACTIONS(6528), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6532), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6534), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6540), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6530), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6536), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5205), 5, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6538), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [145470] = 15, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5203), 1, - sym__newline, - ACTIONS(6542), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6544), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6546), 1, aux_sym_expr_binary_parenthesized_token15, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(3630), 1, - sym_comment, - ACTIONS(6528), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6532), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6534), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6540), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5205), 4, - anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6530), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6536), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6538), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [145534] = 16, - ACTIONS(247), 1, + [141606] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5203), 1, + STATE(3665), 1, + sym_comment, + ACTIONS(2498), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2500), 23, + ts_builtin_sym_end, sym__newline, - ACTIONS(6542), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6544), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6546), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6548), 1, - aux_sym_expr_binary_parenthesized_token16, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(3631), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [141648] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3666), 1, sym_comment, - ACTIONS(6528), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6532), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6534), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6540), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5205), 3, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6530), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6536), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6538), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [145600] = 17, - ACTIONS(247), 1, + ACTIONS(2426), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2428), 23, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [141690] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5203), 1, + STATE(3667), 1, + sym_comment, + ACTIONS(2446), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2448), 23, + ts_builtin_sym_end, sym__newline, - ACTIONS(6542), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6544), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6546), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6548), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6550), 1, - aux_sym_expr_binary_parenthesized_token17, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(3632), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [141732] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3668), 1, sym_comment, - ACTIONS(5205), 2, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6528), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6532), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6534), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6540), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6530), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6536), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6538), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [145668] = 10, - ACTIONS(247), 1, + ACTIONS(2486), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2488), 23, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [141774] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5203), 1, + ACTIONS(5316), 1, sym__newline, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(3633), 1, + STATE(3669), 1, sym_comment, - ACTIONS(6528), 2, + STATE(3697), 1, + aux_sym_shebang_repeat1, + ACTIONS(6659), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6532), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6534), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6530), 4, + ACTIONS(6661), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6538), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5205), 13, + ACTIONS(5265), 23, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - [145722] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5203), 1, - sym__newline, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(3634), 1, - sym_comment, - ACTIONS(6528), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6532), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6530), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5205), 19, - anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -343095,26 +348522,222 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [145774] = 6, - ACTIONS(247), 1, + [141822] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5140), 1, + ACTIONS(6601), 1, + anon_sym_DOT, + STATE(3576), 1, + aux_sym_cell_path_repeat1, + STATE(3670), 1, + sym_comment, + STATE(3744), 1, + sym_path, + STATE(3838), 1, + sym_cell_path, + ACTIONS(1670), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(1672), 25, + ts_builtin_sym_end, sym__newline, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(3635), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_in, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + [141872] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3671), 1, + sym_comment, + ACTIONS(2414), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2416), 23, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [141914] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3672), 1, + sym_comment, + ACTIONS(2482), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2484), 23, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [141956] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3673), 1, + sym_comment, + ACTIONS(2524), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2526), 23, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [141998] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3674), 1, + sym_comment, + ACTIONS(2551), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2553), 23, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [142040] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5316), 1, + sym__newline, + STATE(3675), 1, sym_comment, - ACTIONS(6528), 2, + STATE(3699), 1, + aux_sym_shebang_repeat1, + ACTIONS(6659), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5142), 27, - anon_sym_LBRACE, + ACTIONS(6663), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6661), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5265), 21, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, @@ -343135,69 +348758,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [145820] = 6, - ACTIONS(247), 1, + [142090] = 11, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5230), 1, + ACTIONS(5316), 1, sym__newline, - STATE(3636), 1, + STATE(3676), 1, sym_comment, - STATE(3659), 1, + STATE(3701), 1, aux_sym_shebang_repeat1, - ACTIONS(6504), 2, + ACTIONS(6659), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5150), 27, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6663), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6665), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6661), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6667), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6669), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [145866] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5140), 1, - sym__newline, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(3637), 1, - sym_comment, - ACTIONS(6528), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6530), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5142), 23, + ACTIONS(5265), 9, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, @@ -343206,844 +348803,1056 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [145914] = 7, - ACTIONS(247), 1, + [142146] = 12, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5230), 1, + ACTIONS(5316), 1, sym__newline, - STATE(3638), 1, + STATE(3677), 1, sym_comment, - STATE(3660), 1, + STATE(3704), 1, aux_sym_shebang_repeat1, - ACTIONS(6504), 2, + ACTIONS(6659), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6506), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5150), 23, - anon_sym_LBRACE, + ACTIONS(6663), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6665), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6671), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6661), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6667), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6669), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [145962] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5140), 1, - sym__newline, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(3639), 1, - sym_comment, - ACTIONS(6528), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6532), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6530), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5142), 21, + ACTIONS(5265), 7, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [146012] = 8, - ACTIONS(247), 1, + [142204] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5230), 1, + STATE(3678), 1, + sym_comment, + ACTIONS(2422), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2424), 23, + ts_builtin_sym_end, sym__newline, - STATE(3640), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [142246] = 13, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5316), 1, + sym__newline, + ACTIONS(6673), 1, + aux_sym_expr_binary_parenthesized_token13, + STATE(3679), 1, sym_comment, - STATE(3661), 1, + STATE(3709), 1, aux_sym_shebang_repeat1, - ACTIONS(6504), 2, + ACTIONS(6659), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6508), 2, + ACTIONS(6663), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6506), 4, + ACTIONS(6665), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6671), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6661), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5150), 21, + ACTIONS(6667), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5265), 6, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6669), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [146062] = 11, - ACTIONS(247), 1, + [142306] = 14, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5140), 1, + ACTIONS(5316), 1, sym__newline, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(3641), 1, + ACTIONS(6673), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6675), 1, + aux_sym_expr_binary_parenthesized_token14, + STATE(3680), 1, sym_comment, - ACTIONS(6528), 2, + STATE(3711), 1, + aux_sym_shebang_repeat1, + ACTIONS(6659), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6532), 2, + ACTIONS(6663), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6534), 2, + ACTIONS(6665), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6530), 4, + ACTIONS(6671), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6661), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6536), 4, + ACTIONS(6667), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6538), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5142), 9, + ACTIONS(5265), 5, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [146118] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5230), 1, - sym__newline, - STATE(3642), 1, - sym_comment, - STATE(3662), 1, - aux_sym_shebang_repeat1, - ACTIONS(6504), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6508), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6510), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6506), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6512), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6514), 6, + ACTIONS(6669), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5150), 9, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, + [142368] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3681), 1, + sym_comment, + ACTIONS(2557), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2559), 23, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [142410] = 15, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5316), 1, + sym__newline, + ACTIONS(6673), 1, aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6675), 1, aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6677), 1, aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - [146174] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5140), 1, - sym__newline, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(3643), 1, + STATE(3682), 1, sym_comment, - ACTIONS(6528), 2, + STATE(3713), 1, + aux_sym_shebang_repeat1, + ACTIONS(6659), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6532), 2, + ACTIONS(6663), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6534), 2, + ACTIONS(6665), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6540), 2, + ACTIONS(6671), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6530), 4, + ACTIONS(5265), 4, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6661), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6536), 4, + ACTIONS(6667), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6538), 6, + ACTIONS(6669), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5142), 7, - anon_sym_LBRACE, + [142474] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6679), 1, + anon_sym_DOT_DOT2, + STATE(3683), 1, + sym_comment, + ACTIONS(6681), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2222), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2228), 20, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [142520] = 16, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5316), 1, + sym__newline, + ACTIONS(6673), 1, aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6675), 1, aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6677), 1, aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6683), 1, aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - [146232] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5230), 1, - sym__newline, - STATE(3644), 1, + STATE(3684), 1, sym_comment, - STATE(3744), 1, + STATE(3715), 1, aux_sym_shebang_repeat1, - ACTIONS(6504), 2, + ACTIONS(6659), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6508), 2, + ACTIONS(6663), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6510), 2, + ACTIONS(6665), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6516), 2, + ACTIONS(6671), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6506), 4, + ACTIONS(5265), 3, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6661), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6512), 4, + ACTIONS(6667), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6514), 6, + ACTIONS(6669), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5150), 7, + [142586] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2283), 1, + anon_sym_LPAREN2, + ACTIONS(2287), 1, + aux_sym_unquoted_token4, + STATE(3685), 1, + sym_comment, + ACTIONS(2285), 29, anon_sym_LBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [142630] = 17, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5410), 1, + sym__newline, + ACTIONS(6673), 1, aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6675), 1, aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6677), 1, aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6683), 1, aux_sym_expr_binary_parenthesized_token16, + ACTIONS(6685), 1, aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - [146290] = 13, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5140), 1, - sym__newline, - ACTIONS(6542), 1, - aux_sym_expr_binary_parenthesized_token13, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(3645), 1, + STATE(3686), 1, sym_comment, - ACTIONS(6528), 2, + STATE(3717), 1, + aux_sym_shebang_repeat1, + ACTIONS(5265), 2, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6659), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6532), 2, + ACTIONS(6663), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6534), 2, + ACTIONS(6665), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6540), 2, + ACTIONS(6671), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6530), 4, + ACTIONS(6661), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6536), 4, + ACTIONS(6667), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5142), 6, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6538), 6, + ACTIONS(6669), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [146350] = 13, - ACTIONS(247), 1, + [142698] = 10, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5230), 1, + ACTIONS(5316), 1, sym__newline, - ACTIONS(6518), 1, - aux_sym_expr_binary_parenthesized_token13, - STATE(3646), 1, + STATE(3687), 1, sym_comment, - STATE(3664), 1, + STATE(3730), 1, aux_sym_shebang_repeat1, - ACTIONS(6504), 2, + ACTIONS(6659), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6508), 2, + ACTIONS(6663), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6510), 2, + ACTIONS(6665), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6516), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6506), 4, + ACTIONS(6661), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6512), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5150), 6, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6514), 6, + ACTIONS(6669), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [146410] = 14, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5140), 1, - sym__newline, - ACTIONS(6542), 1, + ACTIONS(5265), 13, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6544), 1, aux_sym_expr_binary_parenthesized_token14, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(3647), 1, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + [142752] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2273), 1, + anon_sym_LPAREN2, + ACTIONS(2275), 1, + aux_sym_unquoted_token4, + STATE(3688), 1, + sym_comment, + ACTIONS(1092), 29, + anon_sym_LBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [142796] = 9, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5316), 1, + sym__newline, + STATE(3689), 1, sym_comment, - ACTIONS(6528), 2, + STATE(3732), 1, + aux_sym_shebang_repeat1, + ACTIONS(6659), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6532), 2, + ACTIONS(6663), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6534), 2, + ACTIONS(6665), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6540), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6530), 4, + ACTIONS(6661), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6536), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5142), 5, + ACTIONS(5265), 19, anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6538), 6, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [146472] = 14, - ACTIONS(247), 1, + [142848] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5230), 1, + STATE(3690), 1, + sym_comment, + ACTIONS(2113), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2119), 23, + ts_builtin_sym_end, sym__newline, - ACTIONS(6518), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6520), 1, - aux_sym_expr_binary_parenthesized_token14, - STATE(3648), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [142890] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5316), 1, + sym__newline, + STATE(3691), 1, sym_comment, - STATE(3665), 1, + STATE(3692), 1, aux_sym_shebang_repeat1, - ACTIONS(6504), 2, + ACTIONS(6659), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6508), 2, + ACTIONS(5265), 27, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6510), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6516), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6506), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6512), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5150), 5, - anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6514), 6, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [146534] = 15, - ACTIONS(247), 1, + [142936] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5140), 1, + ACTIONS(5244), 1, sym__newline, - ACTIONS(6542), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6544), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6546), 1, - aux_sym_expr_binary_parenthesized_token15, - STATE(2043), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(3649), 1, + STATE(3692), 1, sym_comment, - ACTIONS(6528), 2, + ACTIONS(6649), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6532), 2, + ACTIONS(5246), 27, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6540), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5142), 4, - anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6530), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6536), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6538), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [146598] = 15, - ACTIONS(247), 1, + [142982] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5230), 1, + ACTIONS(5403), 1, sym__newline, - ACTIONS(6518), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6520), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6522), 1, - aux_sym_expr_binary_parenthesized_token15, - STATE(3650), 1, + STATE(3693), 1, sym_comment, - STATE(3666), 1, + STATE(3748), 1, aux_sym_shebang_repeat1, - ACTIONS(6504), 2, + ACTIONS(6659), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6508), 2, + ACTIONS(5254), 27, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6510), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6516), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5150), 4, - anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6506), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6512), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6514), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [146662] = 16, - ACTIONS(247), 1, + [143028] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6687), 1, + anon_sym_DOT_DOT2, + STATE(3694), 1, + sym_comment, + ACTIONS(6689), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2206), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2212), 20, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [143074] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5140), 1, + STATE(3695), 1, + sym_comment, + ACTIONS(2565), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2567), 23, + ts_builtin_sym_end, sym__newline, - ACTIONS(6542), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6544), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6546), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6548), 1, - aux_sym_expr_binary_parenthesized_token16, - STATE(2043), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [143116] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6691), 1, + anon_sym_DOT_DOT2, + STATE(3696), 1, + sym_comment, + ACTIONS(6693), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1788), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1796), 20, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [143162] = 7, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5244), 1, + sym__newline, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(3651), 1, + STATE(3697), 1, sym_comment, - ACTIONS(6528), 2, + ACTIONS(6649), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6532), 2, + ACTIONS(6651), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5246), 23, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6534), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6540), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5142), 3, - anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6530), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6536), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6538), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [146728] = 16, - ACTIONS(247), 1, + [143210] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5230), 1, + ACTIONS(5403), 1, sym__newline, - ACTIONS(6518), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6520), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6522), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6524), 1, - aux_sym_expr_binary_parenthesized_token16, - STATE(3652), 1, + STATE(3698), 1, sym_comment, - STATE(3667), 1, + STATE(3749), 1, aux_sym_shebang_repeat1, - ACTIONS(6504), 2, + ACTIONS(6659), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6508), 2, + ACTIONS(6661), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5254), 23, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6510), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6516), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5150), 3, - anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6506), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6512), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6514), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [146794] = 17, - ACTIONS(247), 1, + [143258] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5140), 1, + ACTIONS(5244), 1, sym__newline, - ACTIONS(6542), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6544), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6546), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6548), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6550), 1, - aux_sym_expr_binary_parenthesized_token17, - STATE(2043), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(3653), 1, + STATE(3699), 1, sym_comment, - ACTIONS(5142), 2, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6528), 2, + ACTIONS(6649), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6532), 2, + ACTIONS(6653), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6534), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6540), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6530), 4, + ACTIONS(6651), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6536), 4, + ACTIONS(5246), 21, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6538), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [146862] = 17, - ACTIONS(247), 1, + [143308] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5245), 1, + ACTIONS(5403), 1, sym__newline, - ACTIONS(6518), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6520), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6522), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6524), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6526), 1, - aux_sym_expr_binary_parenthesized_token17, - STATE(3654), 1, + STATE(3700), 1, sym_comment, - STATE(3668), 1, + STATE(3750), 1, aux_sym_shebang_repeat1, - ACTIONS(5150), 2, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6504), 2, + ACTIONS(6659), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6508), 2, + ACTIONS(6663), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6510), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6516), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6506), 4, + ACTIONS(6661), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6512), 4, + ACTIONS(5254), 21, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6514), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [146930] = 10, - ACTIONS(247), 1, + [143358] = 11, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5140), 1, + ACTIONS(5244), 1, sym__newline, - STATE(2043), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(3655), 1, + STATE(3701), 1, sym_comment, - ACTIONS(6528), 2, + ACTIONS(6649), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6532), 2, + ACTIONS(6653), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6534), 2, + ACTIONS(6655), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6530), 4, + ACTIONS(6651), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6538), 6, + ACTIONS(6695), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6657), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5142), 13, + ACTIONS(5246), 9, anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, @@ -344053,41 +349862,42 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - [146984] = 10, - ACTIONS(247), 1, + [143414] = 11, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5230), 1, + ACTIONS(5403), 1, sym__newline, - STATE(3656), 1, + STATE(3702), 1, sym_comment, - STATE(3669), 1, + STATE(3752), 1, aux_sym_shebang_repeat1, - ACTIONS(6504), 2, + ACTIONS(6659), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6508), 2, + ACTIONS(6663), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6510), 2, + ACTIONS(6665), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6506), 4, + ACTIONS(6661), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6514), 6, + ACTIONS(6667), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6669), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5150), 13, + ACTIONS(5254), 9, anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, @@ -344097,1605 +349907,711 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - [147038] = 9, - ACTIONS(247), 1, + [143470] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5140), 1, + ACTIONS(6697), 1, + anon_sym_DOT_DOT2, + STATE(3703), 1, + sym_comment, + ACTIONS(6699), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2234), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2240), 20, + ts_builtin_sym_end, sym__newline, - STATE(2043), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [143516] = 12, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5244), 1, + sym__newline, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(3657), 1, + STATE(3704), 1, sym_comment, - ACTIONS(6528), 2, + ACTIONS(6649), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6532), 2, + ACTIONS(6653), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6534), 2, + ACTIONS(6655), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6530), 4, + ACTIONS(6701), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6651), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5142), 19, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6695), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6657), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [147090] = 9, - ACTIONS(247), 1, + ACTIONS(5246), 7, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [143574] = 12, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5230), 1, + ACTIONS(5403), 1, sym__newline, - STATE(3658), 1, + STATE(3705), 1, sym_comment, - STATE(3670), 1, + STATE(3755), 1, aux_sym_shebang_repeat1, - ACTIONS(6504), 2, + ACTIONS(6659), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6508), 2, + ACTIONS(6663), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6510), 2, + ACTIONS(6665), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6506), 4, + ACTIONS(6671), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6661), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5150), 19, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6667), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6669), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [147142] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5181), 1, - sym__newline, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(3659), 1, - sym_comment, - ACTIONS(6528), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5183), 27, + ACTIONS(5254), 7, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [147188] = 7, - ACTIONS(247), 1, + [143632] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5181), 1, + ACTIONS(6703), 1, + anon_sym_DOT_DOT2, + STATE(3706), 1, + sym_comment, + ACTIONS(6705), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1842), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1850), 20, + ts_builtin_sym_end, sym__newline, - STATE(2043), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [143678] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3707), 1, + sym_comment, + ACTIONS(2206), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2212), 23, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [143720] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6707), 1, + anon_sym_DOT_DOT2, + STATE(3708), 1, + sym_comment, + ACTIONS(6709), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2113), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2119), 20, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [143766] = 13, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5244), 1, + sym__newline, + ACTIONS(6711), 1, + aux_sym_expr_binary_parenthesized_token13, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(3660), 1, + STATE(3709), 1, sym_comment, - ACTIONS(6528), 2, + ACTIONS(6649), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6530), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5183), 23, - anon_sym_LBRACE, + ACTIONS(6653), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6655), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6701), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [147236] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5181), 1, - sym__newline, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(3661), 1, - sym_comment, - ACTIONS(6528), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6532), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6530), 4, + ACTIONS(6651), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5183), 21, + ACTIONS(6695), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5246), 6, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6657), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [147286] = 11, - ACTIONS(247), 1, + [143826] = 13, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5181), 1, + ACTIONS(5403), 1, sym__newline, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(3662), 1, + ACTIONS(6673), 1, + aux_sym_expr_binary_parenthesized_token13, + STATE(3710), 1, sym_comment, - ACTIONS(6528), 2, + STATE(3756), 1, + aux_sym_shebang_repeat1, + ACTIONS(6659), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6532), 2, + ACTIONS(6663), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6534), 2, + ACTIONS(6665), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6530), 4, + ACTIONS(6671), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6661), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6536), 4, + ACTIONS(6667), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6538), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5183), 9, + ACTIONS(5254), 6, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - [147342] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2239), 1, - anon_sym_LPAREN2, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - STATE(3663), 1, - sym_comment, - ACTIONS(2247), 29, - anon_sym_LBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [147386] = 13, - ACTIONS(247), 1, + ACTIONS(6669), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [143886] = 14, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5181), 1, + ACTIONS(5244), 1, sym__newline, - ACTIONS(6542), 1, + ACTIONS(6711), 1, aux_sym_expr_binary_parenthesized_token13, - STATE(2043), 1, + ACTIONS(6713), 1, + aux_sym_expr_binary_parenthesized_token14, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(3664), 1, + STATE(3711), 1, sym_comment, - ACTIONS(6528), 2, + ACTIONS(6649), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6532), 2, + ACTIONS(6653), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6534), 2, + ACTIONS(6655), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6540), 2, + ACTIONS(6701), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6530), 4, + ACTIONS(6651), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6536), 4, + ACTIONS(6695), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5183), 6, + ACTIONS(5246), 5, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token14, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6538), 6, + ACTIONS(6657), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [147446] = 14, - ACTIONS(247), 1, + [143948] = 14, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5181), 1, + ACTIONS(5403), 1, sym__newline, - ACTIONS(6542), 1, + ACTIONS(6673), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6544), 1, + ACTIONS(6675), 1, aux_sym_expr_binary_parenthesized_token14, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(3665), 1, + STATE(3712), 1, sym_comment, - ACTIONS(6528), 2, + STATE(3757), 1, + aux_sym_shebang_repeat1, + ACTIONS(6659), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6532), 2, + ACTIONS(6663), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6534), 2, + ACTIONS(6665), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6540), 2, + ACTIONS(6671), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6530), 4, + ACTIONS(6661), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6536), 4, + ACTIONS(6667), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5183), 5, + ACTIONS(5254), 5, anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token15, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6538), 6, + ACTIONS(6669), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [147508] = 15, - ACTIONS(247), 1, + [144010] = 15, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5181), 1, + ACTIONS(5244), 1, sym__newline, - ACTIONS(6542), 1, + ACTIONS(6711), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6544), 1, + ACTIONS(6713), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6546), 1, + ACTIONS(6715), 1, aux_sym_expr_binary_parenthesized_token15, - STATE(2043), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(3666), 1, + STATE(3713), 1, sym_comment, - ACTIONS(6528), 2, + ACTIONS(6649), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6532), 2, + ACTIONS(6653), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6534), 2, + ACTIONS(6655), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6540), 2, + ACTIONS(6701), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5183), 4, + ACTIONS(5246), 4, anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6530), 4, + ACTIONS(6651), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6536), 4, + ACTIONS(6695), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6538), 6, + ACTIONS(6657), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [147572] = 16, - ACTIONS(247), 1, + [144074] = 15, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5181), 1, + ACTIONS(5403), 1, sym__newline, - ACTIONS(6542), 1, + ACTIONS(6673), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6544), 1, + ACTIONS(6675), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6546), 1, + ACTIONS(6677), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6548), 1, - aux_sym_expr_binary_parenthesized_token16, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(3667), 1, + STATE(3714), 1, sym_comment, - ACTIONS(6528), 2, + STATE(3758), 1, + aux_sym_shebang_repeat1, + ACTIONS(6659), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6532), 2, + ACTIONS(6663), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6534), 2, + ACTIONS(6665), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6540), 2, + ACTIONS(6671), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5183), 3, + ACTIONS(5254), 4, anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6530), 4, + ACTIONS(6661), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6536), 4, + ACTIONS(6667), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6538), 6, + ACTIONS(6669), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [147638] = 17, - ACTIONS(247), 1, + [144138] = 16, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5181), 1, + ACTIONS(5244), 1, sym__newline, - ACTIONS(6542), 1, + ACTIONS(6711), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6544), 1, + ACTIONS(6713), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6546), 1, + ACTIONS(6715), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6548), 1, + ACTIONS(6717), 1, aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6550), 1, - aux_sym_expr_binary_parenthesized_token17, - STATE(2043), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(3668), 1, + STATE(3715), 1, sym_comment, - ACTIONS(5183), 2, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token18, - ACTIONS(6528), 2, + ACTIONS(6649), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6532), 2, + ACTIONS(6653), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6534), 2, + ACTIONS(6655), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6540), 2, + ACTIONS(6701), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6530), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6536), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6538), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [147706] = 10, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5181), 1, - sym__newline, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(3669), 1, - sym_comment, - ACTIONS(6528), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6532), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6534), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6530), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6538), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5183), 13, + ACTIONS(5246), 3, anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, aux_sym_expr_binary_parenthesized_token17, aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - [147760] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5181), 1, - sym__newline, - STATE(2043), 1, - aux_sym_shebang_repeat1, - STATE(3670), 1, - sym_comment, - ACTIONS(6528), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6532), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6534), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6530), 4, + ACTIONS(6651), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5183), 19, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6695), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6657), 6, aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [147812] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3671), 1, - sym_comment, - ACTIONS(4988), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4986), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [147854] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3672), 1, - sym_comment, - ACTIONS(1058), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1060), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [147896] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1070), 1, - anon_sym_EQ_GT, - ACTIONS(2225), 1, - anon_sym_LPAREN2, - ACTIONS(2227), 1, - aux_sym_unquoted_token4, - STATE(3673), 1, - sym_comment, - ACTIONS(1072), 28, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [147942] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3674), 1, - sym_comment, - ACTIONS(1560), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1572), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [147984] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3675), 1, - sym_comment, - ACTIONS(1070), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1072), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [148026] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3676), 1, - sym_comment, - ACTIONS(2458), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2460), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [148068] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3677), 1, - sym_comment, - ACTIONS(1046), 3, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT2, - ACTIONS(1048), 28, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, - [148110] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3678), 1, - sym_comment, - ACTIONS(1822), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1826), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [148152] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3679), 1, - sym_comment, - ACTIONS(2309), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2311), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [148194] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3680), 1, - sym_comment, - ACTIONS(4992), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4990), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [148236] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3681), 1, - sym_comment, - ACTIONS(2328), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2330), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [148278] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3682), 1, - sym_comment, - ACTIONS(2338), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2340), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [148320] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3683), 1, - sym_comment, - ACTIONS(2342), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2344), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [148362] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3684), 1, - sym_comment, - ACTIONS(4996), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4994), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [148404] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3685), 1, - sym_comment, - ACTIONS(1050), 3, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT2, - ACTIONS(1052), 28, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, - [148446] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3686), 1, - sym_comment, - ACTIONS(1054), 3, - anon_sym_GT, - anon_sym_DASH, - anon_sym_LT2, - ACTIONS(1056), 28, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, - [148488] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3687), 1, - sym_comment, - ACTIONS(2348), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2350), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [148530] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3688), 1, - sym_comment, - ACTIONS(5000), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4998), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [148572] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3689), 1, - sym_comment, - ACTIONS(5004), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5002), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [148614] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3690), 1, - sym_comment, - ACTIONS(4884), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4882), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [148656] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3691), 1, - sym_comment, - ACTIONS(4894), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(4892), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [148698] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3692), 1, - sym_comment, - ACTIONS(1832), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1834), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [148740] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3693), 1, - sym_comment, - ACTIONS(2388), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2390), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [148782] = 5, - ACTIONS(3), 1, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [144204] = 16, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2231), 1, - anon_sym_LPAREN2, - ACTIONS(2235), 1, - aux_sym_unquoted_token4, - STATE(3694), 1, + ACTIONS(5403), 1, + sym__newline, + ACTIONS(6673), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6675), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6677), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6683), 1, + aux_sym_expr_binary_parenthesized_token16, + STATE(3716), 1, sym_comment, - ACTIONS(2233), 29, + STATE(3759), 1, + aux_sym_shebang_repeat1, + ACTIONS(6659), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6663), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6665), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6671), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5254), 3, anon_sym_LBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [148826] = 5, - ACTIONS(247), 1, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6661), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6667), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6669), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [144270] = 17, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5054), 1, - anon_sym_DASH, - STATE(3695), 1, + ACTIONS(5244), 1, + sym__newline, + ACTIONS(6711), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6713), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6715), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6717), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(6719), 1, + aux_sym_expr_binary_parenthesized_token17, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(3717), 1, sym_comment, - ACTIONS(6552), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5052), 28, - anon_sym_DASH_DASH, + ACTIONS(5246), 2, anon_sym_LBRACE, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [148870] = 6, - ACTIONS(247), 1, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6649), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6653), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6655), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6701), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6651), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6695), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6657), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [144338] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5054), 1, + ACTIONS(5133), 1, anon_sym_DASH, - STATE(3696), 1, + STATE(3718), 1, sym_comment, - ACTIONS(6552), 2, + ACTIONS(6647), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6554), 4, + ACTIONS(6721), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(5052), 24, + ACTIONS(5131), 24, anon_sym_DASH_DASH, anon_sym_LBRACE, aux_sym_expr_binary_token7, @@ -345720,25 +350636,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [148916] = 7, - ACTIONS(247), 1, + [144384] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5054), 1, + ACTIONS(5133), 1, anon_sym_DASH, - STATE(3697), 1, + STATE(3719), 1, sym_comment, - ACTIONS(6552), 2, + ACTIONS(6647), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6556), 2, + ACTIONS(6723), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6554), 4, + ACTIONS(6721), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(5052), 22, + ACTIONS(5131), 22, anon_sym_DASH_DASH, anon_sym_LBRACE, aux_sym_expr_binary_token9, @@ -345761,40 +350677,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [148964] = 10, - ACTIONS(247), 1, + [144432] = 10, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5054), 1, + ACTIONS(5133), 1, anon_sym_DASH, - STATE(3698), 1, + STATE(3720), 1, sym_comment, - ACTIONS(6552), 2, + ACTIONS(6647), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6556), 2, + ACTIONS(6723), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6558), 2, + ACTIONS(6725), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6554), 4, + ACTIONS(6721), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6560), 4, + ACTIONS(6727), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6562), 6, + ACTIONS(6729), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - ACTIONS(5052), 10, + ACTIONS(5131), 10, anon_sym_DASH_DASH, anon_sym_LBRACE, aux_sym_expr_binary_token11, @@ -345805,43 +350721,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token16, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - [149018] = 11, - ACTIONS(247), 1, + [144486] = 11, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5054), 1, + ACTIONS(5133), 1, anon_sym_DASH, - STATE(3699), 1, + STATE(3721), 1, sym_comment, - ACTIONS(6552), 2, + ACTIONS(6647), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6556), 2, + ACTIONS(6723), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6558), 2, + ACTIONS(6725), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6564), 2, + ACTIONS(6731), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(6554), 4, + ACTIONS(6721), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6560), 4, + ACTIONS(6727), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6562), 6, + ACTIONS(6729), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - ACTIONS(5052), 8, + ACTIONS(5131), 8, anon_sym_DASH_DASH, anon_sym_LBRACE, aux_sym_expr_binary_token13, @@ -345850,45 +350766,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token16, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - [149074] = 12, - ACTIONS(247), 1, + [144542] = 12, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5054), 1, + ACTIONS(5133), 1, anon_sym_DASH, - ACTIONS(6566), 1, + ACTIONS(6733), 1, aux_sym_expr_binary_token13, - STATE(3700), 1, + STATE(3722), 1, sym_comment, - ACTIONS(6552), 2, + ACTIONS(6647), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6556), 2, + ACTIONS(6723), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6558), 2, + ACTIONS(6725), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6564), 2, + ACTIONS(6731), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(6554), 4, + ACTIONS(6721), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6560), 4, + ACTIONS(6727), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6562), 6, + ACTIONS(6729), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - ACTIONS(5052), 7, + ACTIONS(5131), 7, anon_sym_DASH_DASH, anon_sym_LBRACE, aux_sym_expr_binary_token14, @@ -345896,229 +350812,229 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token16, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - [149132] = 13, - ACTIONS(247), 1, + [144600] = 13, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5054), 1, + ACTIONS(5133), 1, anon_sym_DASH, - ACTIONS(6566), 1, + ACTIONS(6733), 1, aux_sym_expr_binary_token13, - ACTIONS(6568), 1, + ACTIONS(6735), 1, aux_sym_expr_binary_token14, - STATE(3701), 1, + STATE(3723), 1, sym_comment, - ACTIONS(6552), 2, + ACTIONS(6647), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6556), 2, + ACTIONS(6723), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6558), 2, + ACTIONS(6725), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6564), 2, + ACTIONS(6731), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(6554), 4, + ACTIONS(6721), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6560), 4, + ACTIONS(6727), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(5052), 6, + ACTIONS(5131), 6, anon_sym_DASH_DASH, anon_sym_LBRACE, aux_sym_expr_binary_token15, aux_sym_expr_binary_token16, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - ACTIONS(6562), 6, + ACTIONS(6729), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [149192] = 14, - ACTIONS(247), 1, + [144660] = 14, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5054), 1, + ACTIONS(5133), 1, anon_sym_DASH, - ACTIONS(6566), 1, + ACTIONS(6733), 1, aux_sym_expr_binary_token13, - ACTIONS(6568), 1, + ACTIONS(6735), 1, aux_sym_expr_binary_token14, - ACTIONS(6570), 1, + ACTIONS(6737), 1, aux_sym_expr_binary_token15, - STATE(3702), 1, + STATE(3724), 1, sym_comment, - ACTIONS(6552), 2, + ACTIONS(6647), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6556), 2, + ACTIONS(6723), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6558), 2, + ACTIONS(6725), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6564), 2, + ACTIONS(6731), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(6554), 4, + ACTIONS(6721), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6560), 4, + ACTIONS(6727), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(5052), 5, + ACTIONS(5131), 5, anon_sym_DASH_DASH, anon_sym_LBRACE, aux_sym_expr_binary_token16, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - ACTIONS(6562), 6, + ACTIONS(6729), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [149254] = 15, - ACTIONS(247), 1, + [144722] = 15, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5054), 1, + ACTIONS(5133), 1, anon_sym_DASH, - ACTIONS(6566), 1, + ACTIONS(6733), 1, aux_sym_expr_binary_token13, - ACTIONS(6568), 1, + ACTIONS(6735), 1, aux_sym_expr_binary_token14, - ACTIONS(6570), 1, + ACTIONS(6737), 1, aux_sym_expr_binary_token15, - ACTIONS(6572), 1, + ACTIONS(6739), 1, aux_sym_expr_binary_token16, - STATE(3703), 1, + STATE(3725), 1, sym_comment, - ACTIONS(6552), 2, + ACTIONS(6647), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6556), 2, + ACTIONS(6723), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6558), 2, + ACTIONS(6725), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6564), 2, + ACTIONS(6731), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(5052), 4, + ACTIONS(5131), 4, anon_sym_DASH_DASH, anon_sym_LBRACE, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - ACTIONS(6554), 4, + ACTIONS(6721), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6560), 4, + ACTIONS(6727), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6562), 6, + ACTIONS(6729), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [149318] = 16, - ACTIONS(247), 1, + [144786] = 16, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5054), 1, + ACTIONS(5133), 1, anon_sym_DASH, - ACTIONS(6566), 1, + ACTIONS(6733), 1, aux_sym_expr_binary_token13, - ACTIONS(6568), 1, + ACTIONS(6735), 1, aux_sym_expr_binary_token14, - ACTIONS(6570), 1, + ACTIONS(6737), 1, aux_sym_expr_binary_token15, - ACTIONS(6572), 1, + ACTIONS(6739), 1, aux_sym_expr_binary_token16, - ACTIONS(6574), 1, + ACTIONS(6741), 1, aux_sym_expr_binary_token17, - STATE(3704), 1, + STATE(3726), 1, sym_comment, - ACTIONS(6552), 2, + ACTIONS(6647), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6556), 2, + ACTIONS(6723), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6558), 2, + ACTIONS(6725), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6564), 2, + ACTIONS(6731), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(5052), 3, + ACTIONS(5131), 3, anon_sym_DASH_DASH, anon_sym_LBRACE, aux_sym_expr_binary_token18, - ACTIONS(6554), 4, + ACTIONS(6721), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6560), 4, + ACTIONS(6727), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6562), 6, + ACTIONS(6729), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [149384] = 9, - ACTIONS(247), 1, + [144852] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5054), 1, + ACTIONS(5133), 1, anon_sym_DASH, - STATE(3705), 1, + STATE(3727), 1, sym_comment, - ACTIONS(6552), 2, + ACTIONS(6647), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6556), 2, + ACTIONS(6723), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6558), 2, + ACTIONS(6725), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6554), 4, + ACTIONS(6721), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6562), 6, + ACTIONS(6729), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - ACTIONS(5052), 14, + ACTIONS(5131), 14, anon_sym_DASH_DASH, anon_sym_LBRACE, aux_sym_expr_binary_token11, @@ -346133,28 +351049,28 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - [149436] = 8, - ACTIONS(247), 1, + [144904] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5054), 1, + ACTIONS(5133), 1, anon_sym_DASH, - STATE(3706), 1, + STATE(3728), 1, sym_comment, - ACTIONS(6552), 2, + ACTIONS(6647), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6556), 2, + ACTIONS(6723), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6558), 2, + ACTIONS(6725), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6554), 4, + ACTIONS(6721), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(5052), 20, + ACTIONS(5131), 20, anon_sym_DASH_DASH, anon_sym_LBRACE, aux_sym_expr_binary_token11, @@ -346175,17 +351091,991 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [149486] = 5, + [144954] = 17, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5410), 1, + sym__newline, + ACTIONS(6673), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6675), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6677), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6683), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(6685), 1, + aux_sym_expr_binary_parenthesized_token17, + STATE(3729), 1, + sym_comment, + STATE(3760), 1, + aux_sym_shebang_repeat1, + ACTIONS(5254), 2, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6659), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6663), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6665), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6671), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6661), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6667), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6669), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [145022] = 10, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5244), 1, + sym__newline, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(3730), 1, + sym_comment, + ACTIONS(6649), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6653), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6655), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6651), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6657), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5246), 13, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + [145076] = 10, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5403), 1, + sym__newline, + STATE(3731), 1, + sym_comment, + STATE(3761), 1, + aux_sym_shebang_repeat1, + ACTIONS(6659), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6663), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6665), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6661), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6669), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5254), 13, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + [145130] = 9, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5244), 1, + sym__newline, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(3732), 1, + sym_comment, + ACTIONS(6649), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6653), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6655), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6651), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5246), 19, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [145182] = 9, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5403), 1, + sym__newline, + STATE(3733), 1, + sym_comment, + STATE(3762), 1, + aux_sym_shebang_repeat1, + ACTIONS(6659), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6663), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6665), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6661), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5254), 19, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [145234] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5418), 1, + sym__newline, + STATE(3734), 1, + sym_comment, + STATE(3763), 1, + aux_sym_shebang_repeat1, + ACTIONS(6659), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5261), 27, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [145280] = 7, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5418), 1, + sym__newline, + STATE(3735), 1, + sym_comment, + STATE(3765), 1, + aux_sym_shebang_repeat1, + ACTIONS(6659), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6661), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5261), 23, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [145328] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5418), 1, + sym__newline, + STATE(3736), 1, + sym_comment, + STATE(3767), 1, + aux_sym_shebang_repeat1, + ACTIONS(6659), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6663), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6661), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5261), 21, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [145378] = 11, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5418), 1, + sym__newline, + STATE(3737), 1, + sym_comment, + STATE(3769), 1, + aux_sym_shebang_repeat1, + ACTIONS(6659), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6663), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6665), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6661), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6667), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6669), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5261), 9, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [145434] = 17, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5305), 1, + sym__newline, + ACTIONS(6711), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6713), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6715), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6717), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(6719), 1, + aux_sym_expr_binary_parenthesized_token17, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(3738), 1, + sym_comment, + ACTIONS(5307), 2, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6649), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6653), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6655), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6701), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6651), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6695), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6657), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [145502] = 13, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5418), 1, + sym__newline, + ACTIONS(6673), 1, + aux_sym_expr_binary_parenthesized_token13, + STATE(3739), 1, + sym_comment, + STATE(3774), 1, + aux_sym_shebang_repeat1, + ACTIONS(6659), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6663), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6665), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6671), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6661), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6667), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5261), 6, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6669), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [145562] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3740), 1, + sym_comment, + ACTIONS(2222), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2228), 23, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [145604] = 14, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5418), 1, + sym__newline, + ACTIONS(6673), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6675), 1, + aux_sym_expr_binary_parenthesized_token14, + STATE(3741), 1, + sym_comment, + STATE(3776), 1, + aux_sym_shebang_repeat1, + ACTIONS(6659), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6663), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6665), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6671), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6661), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6667), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5261), 5, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6669), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [145666] = 15, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5418), 1, + sym__newline, + ACTIONS(6673), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6675), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6677), 1, + aux_sym_expr_binary_parenthesized_token15, + STATE(3742), 1, + sym_comment, + STATE(3778), 1, + aux_sym_shebang_repeat1, + ACTIONS(6659), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6663), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6665), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6671), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5261), 4, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6661), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6667), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6669), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [145730] = 16, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5418), 1, + sym__newline, + ACTIONS(6673), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6675), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6677), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6683), 1, + aux_sym_expr_binary_parenthesized_token16, + STATE(3743), 1, + sym_comment, + STATE(3782), 1, + aux_sym_shebang_repeat1, + ACTIONS(6659), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6663), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6665), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6671), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5261), 3, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6661), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6667), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6669), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [145796] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3744), 1, + sym_comment, + ACTIONS(1074), 3, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT2, + ACTIONS(1076), 28, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, + [145838] = 17, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5410), 1, + sym__newline, + ACTIONS(6673), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6675), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6677), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6683), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(6685), 1, + aux_sym_expr_binary_parenthesized_token17, + STATE(3745), 1, + sym_comment, + STATE(3784), 1, + aux_sym_shebang_repeat1, + ACTIONS(5261), 2, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6659), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6663), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6665), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6671), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6661), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6667), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6669), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [145906] = 10, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5418), 1, + sym__newline, + STATE(3746), 1, + sym_comment, + STATE(3786), 1, + aux_sym_shebang_repeat1, + ACTIONS(6659), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6663), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6665), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6661), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6669), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5261), 13, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + [145960] = 9, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5418), 1, + sym__newline, + STATE(3747), 1, + sym_comment, + STATE(3788), 1, + aux_sym_shebang_repeat1, + ACTIONS(6659), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6663), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6665), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6661), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5261), 19, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [146012] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5277), 1, + sym__newline, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(3748), 1, + sym_comment, + ACTIONS(6649), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5279), 27, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [146058] = 7, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5277), 1, + sym__newline, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(3749), 1, + sym_comment, + ACTIONS(6649), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6651), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5279), 23, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [146106] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5277), 1, + sym__newline, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(3750), 1, + sym_comment, + ACTIONS(6649), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6653), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6651), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5279), 21, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [146156] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2225), 1, - anon_sym_LPAREN2, - ACTIONS(2227), 1, + ACTIONS(2289), 1, aux_sym_unquoted_token4, - STATE(3707), 1, + STATE(3751), 1, sym_comment, - ACTIONS(1072), 29, + ACTIONS(2291), 30, anon_sym_LBRACE, + anon_sym_LPAREN2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -346214,23 +352104,99 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [149530] = 8, - ACTIONS(247), 1, + [146198] = 11, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6446), 1, + ACTIONS(5277), 1, + sym__newline, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(3752), 1, + sym_comment, + ACTIONS(6649), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6653), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6655), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6651), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6695), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6657), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5279), 9, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [146254] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3753), 1, + sym_comment, + ACTIONS(1066), 3, + anon_sym_GT, + anon_sym_DASH, + anon_sym_LT2, + ACTIONS(1068), 28, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_DOT, - STATE(3531), 1, - aux_sym_cell_path_repeat1, - STATE(3677), 1, - sym_path, - STATE(3708), 1, + [146296] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3754), 1, sym_comment, - STATE(3745), 1, - sym_cell_path, - ACTIONS(1641), 2, + ACTIONS(1070), 3, anon_sym_GT, + anon_sym_DASH, anon_sym_LT2, - ACTIONS(1645), 25, + ACTIONS(1072), 28, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -346243,7 +352209,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, anon_sym_in, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, @@ -346256,328 +352224,1150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - [149580] = 4, - ACTIONS(247), 1, + anon_sym_DOT, + [146338] = 12, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3709), 1, + ACTIONS(5277), 1, + sym__newline, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(3755), 1, sym_comment, - ACTIONS(2305), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2307), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(6649), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6653), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6655), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6701), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6651), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6695), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6657), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5279), 7, anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [149622] = 4, - ACTIONS(247), 1, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [146396] = 13, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3710), 1, + ACTIONS(5277), 1, + sym__newline, + ACTIONS(6711), 1, + aux_sym_expr_binary_parenthesized_token13, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(3756), 1, sym_comment, - ACTIONS(2305), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2307), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(6649), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6653), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6655), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6701), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6651), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6695), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5279), 6, anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [149664] = 4, - ACTIONS(247), 1, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6657), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [146456] = 14, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3711), 1, + ACTIONS(5277), 1, + sym__newline, + ACTIONS(6711), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6713), 1, + aux_sym_expr_binary_parenthesized_token14, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(3757), 1, sym_comment, - ACTIONS(2462), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2464), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(6649), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6653), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6655), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6701), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6651), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6695), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5279), 5, anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [149706] = 4, - ACTIONS(247), 1, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6657), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [146518] = 15, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3712), 1, + ACTIONS(5277), 1, + sym__newline, + ACTIONS(6711), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6713), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6715), 1, + aux_sym_expr_binary_parenthesized_token15, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(3758), 1, sym_comment, - ACTIONS(2362), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2364), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(6649), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6653), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6655), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6701), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5279), 4, anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [149748] = 4, - ACTIONS(247), 1, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6651), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6695), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6657), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [146582] = 16, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3713), 1, + ACTIONS(5277), 1, + sym__newline, + ACTIONS(6711), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6713), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6715), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6717), 1, + aux_sym_expr_binary_parenthesized_token16, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(3759), 1, sym_comment, - ACTIONS(2366), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2368), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(6649), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6653), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6655), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6701), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5279), 3, anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [149790] = 4, - ACTIONS(247), 1, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6651), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6695), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6657), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [146648] = 17, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3714), 1, + ACTIONS(5277), 1, + sym__newline, + ACTIONS(6711), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6713), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6715), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6717), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(6719), 1, + aux_sym_expr_binary_parenthesized_token17, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(3760), 1, sym_comment, - ACTIONS(2466), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2468), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(5279), 2, anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [149832] = 4, - ACTIONS(247), 1, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6649), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6653), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6655), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6701), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6651), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6695), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6657), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [146716] = 10, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3715), 1, + ACTIONS(5277), 1, + sym__newline, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(3761), 1, sym_comment, - ACTIONS(2380), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2382), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(6649), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6653), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6655), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6651), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6657), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5279), 13, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + [146770] = 9, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5277), 1, + sym__newline, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(3762), 1, + sym_comment, + ACTIONS(6649), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6653), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6655), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6651), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5279), 19, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [146822] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5289), 1, + sym__newline, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(3763), 1, + sym_comment, + ACTIONS(6649), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5291), 27, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [146868] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5455), 1, + sym__newline, + STATE(3764), 1, + sym_comment, + STATE(3793), 1, + aux_sym_shebang_repeat1, + ACTIONS(6659), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5299), 27, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [146914] = 7, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5289), 1, + sym__newline, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(3765), 1, + sym_comment, + ACTIONS(6649), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6651), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5291), 23, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [146962] = 7, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5455), 1, + sym__newline, + STATE(3766), 1, + sym_comment, + STATE(3794), 1, + aux_sym_shebang_repeat1, + ACTIONS(6659), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6661), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5299), 23, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [147010] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5289), 1, + sym__newline, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(3767), 1, + sym_comment, + ACTIONS(6649), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6653), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6651), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5291), 21, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [147060] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5455), 1, + sym__newline, + STATE(3768), 1, + sym_comment, + STATE(3795), 1, + aux_sym_shebang_repeat1, + ACTIONS(6659), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6663), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6661), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5299), 21, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [147110] = 11, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5289), 1, + sym__newline, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(3769), 1, + sym_comment, + ACTIONS(6649), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6653), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6655), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6651), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6695), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6657), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5291), 9, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [147166] = 11, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5455), 1, + sym__newline, + STATE(3770), 1, + sym_comment, + STATE(3796), 1, + aux_sym_shebang_repeat1, + ACTIONS(6659), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6663), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6665), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6661), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6667), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6669), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5299), 9, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [147222] = 12, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5289), 1, + sym__newline, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(3771), 1, + sym_comment, + ACTIONS(6649), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6653), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6655), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6701), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6651), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6695), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6657), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5291), 7, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [147280] = 12, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5455), 1, + sym__newline, + STATE(3772), 1, + sym_comment, + STATE(3799), 1, + aux_sym_shebang_repeat1, + ACTIONS(6659), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6663), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6665), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6671), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6661), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6667), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6669), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5299), 7, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [147338] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1628), 1, + sym__newline, + ACTIONS(4842), 1, + aux_sym_unquoted_token2, + STATE(3773), 1, + sym_comment, + ACTIONS(1640), 29, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [147382] = 13, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5289), 1, + sym__newline, + ACTIONS(6711), 1, + aux_sym_expr_binary_parenthesized_token13, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(3774), 1, + sym_comment, + ACTIONS(6649), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6653), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6655), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6701), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6651), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6695), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5291), 6, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6657), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [147442] = 13, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5455), 1, + sym__newline, + ACTIONS(6673), 1, + aux_sym_expr_binary_parenthesized_token13, + STATE(3775), 1, + sym_comment, + STATE(3800), 1, + aux_sym_shebang_repeat1, + ACTIONS(6659), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6663), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6665), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6671), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6661), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6667), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5299), 6, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6669), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [147502] = 14, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5289), 1, + sym__newline, + ACTIONS(6711), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6713), 1, + aux_sym_expr_binary_parenthesized_token14, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(3776), 1, + sym_comment, + ACTIONS(6649), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6653), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6655), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6701), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6651), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6695), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5291), 5, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6657), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [147564] = 14, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5455), 1, + sym__newline, + ACTIONS(6673), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6675), 1, + aux_sym_expr_binary_parenthesized_token14, + STATE(3777), 1, + sym_comment, + STATE(3801), 1, + aux_sym_shebang_repeat1, + ACTIONS(6659), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6663), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6665), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6671), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6661), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6667), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5299), 5, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6669), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [147626] = 15, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5289), 1, + sym__newline, + ACTIONS(6711), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6713), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6715), 1, + aux_sym_expr_binary_parenthesized_token15, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(3778), 1, + sym_comment, + ACTIONS(6649), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6653), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6655), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6701), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5291), 4, anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [149874] = 4, - ACTIONS(247), 1, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6651), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6695), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6657), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [147690] = 15, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3716), 1, + ACTIONS(5455), 1, + sym__newline, + ACTIONS(6673), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6675), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6677), 1, + aux_sym_expr_binary_parenthesized_token15, + STATE(3779), 1, sym_comment, - ACTIONS(2384), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2386), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, + STATE(3802), 1, + aux_sym_shebang_repeat1, + ACTIONS(6659), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6663), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6665), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6671), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5299), 4, anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [149916] = 8, - ACTIONS(247), 1, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6661), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6667), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6669), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [147754] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6446), 1, - anon_sym_DOT, - STATE(3531), 1, - aux_sym_cell_path_repeat1, - STATE(3677), 1, - sym_path, - STATE(3717), 1, + STATE(3780), 1, sym_comment, - STATE(3750), 1, - sym_cell_path, - ACTIONS(1675), 2, + ACTIONS(1670), 3, anon_sym_GT, anon_sym_LT2, - ACTIONS(1677), 25, - ts_builtin_sym_end, + anon_sym_DOT_DOT2, + ACTIONS(1672), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -346589,7 +353379,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_in, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, @@ -346602,133 +353394,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - [149966] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3718), 1, - sym_comment, - ACTIONS(2517), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2519), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [150008] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6576), 1, - anon_sym_DOT_DOT2, - STATE(3719), 1, - sym_comment, - ACTIONS(6578), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2019), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2025), 20, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [150054] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3720), 1, - sym_comment, - ACTIONS(2521), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2523), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [150096] = 6, - ACTIONS(247), 1, + [147796] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6580), 1, - anon_sym_DOT_DOT2, - STATE(3721), 1, + STATE(3781), 1, sym_comment, - ACTIONS(6582), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1778), 8, + ACTIONS(2234), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -346737,7 +353410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1786), 20, + ACTIONS(2240), 23, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -346750,6 +353423,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -346758,815 +353434,351 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [150142] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3722), 1, - sym_comment, - ACTIONS(1848), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1850), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [150184] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3723), 1, - sym_comment, - ACTIONS(2416), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2418), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [150226] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3724), 1, - sym_comment, - ACTIONS(1864), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1866), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [150268] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3725), 1, - sym_comment, - ACTIONS(1872), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1874), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [150310] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3726), 1, - sym_comment, - ACTIONS(1876), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1878), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [150352] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3727), 1, - sym_comment, - ACTIONS(2420), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2422), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [150394] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3728), 1, - sym_comment, - ACTIONS(1888), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1890), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [150436] = 4, - ACTIONS(247), 1, + [147838] = 16, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3729), 1, - sym_comment, - ACTIONS(1675), 3, - anon_sym_GT, - anon_sym_LT2, - anon_sym_DOT_DOT2, - ACTIONS(1677), 28, + ACTIONS(5289), 1, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [150478] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3730), 1, - sym_comment, - ACTIONS(2434), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2436), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [150520] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3731), 1, - sym_comment, - ACTIONS(2438), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2440), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [150562] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3732), 1, - sym_comment, - ACTIONS(1892), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1894), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [150604] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3733), 1, - sym_comment, - ACTIONS(5022), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5020), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [150646] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3734), 1, - sym_comment, - ACTIONS(1900), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1902), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [150688] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3735), 1, + ACTIONS(6711), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6713), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6715), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6717), 1, + aux_sym_expr_binary_parenthesized_token16, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(3782), 1, sym_comment, - ACTIONS(2442), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2444), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(6649), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6653), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6655), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6701), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5291), 3, anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [150730] = 4, - ACTIONS(247), 1, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6651), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6695), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6657), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [147904] = 16, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3736), 1, + ACTIONS(5455), 1, + sym__newline, + ACTIONS(6673), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6675), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6677), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6683), 1, + aux_sym_expr_binary_parenthesized_token16, + STATE(3783), 1, sym_comment, - ACTIONS(2446), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2448), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, + STATE(3803), 1, + aux_sym_shebang_repeat1, + ACTIONS(6659), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6663), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6665), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6671), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5299), 3, anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [150772] = 4, - ACTIONS(247), 1, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6661), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6667), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6669), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [147970] = 17, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3737), 1, + ACTIONS(5289), 1, + sym__newline, + ACTIONS(6711), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6713), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6715), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6717), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(6719), 1, + aux_sym_expr_binary_parenthesized_token17, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(3784), 1, sym_comment, - ACTIONS(1904), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(1906), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(5291), 2, anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [150814] = 4, - ACTIONS(247), 1, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6649), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6653), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6655), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6701), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6651), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6695), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6657), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [148038] = 17, + ACTIONS(249), 1, anon_sym_POUND, + ACTIONS(5410), 1, + sym__newline, + ACTIONS(6673), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6675), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6677), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6683), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(6685), 1, + aux_sym_expr_binary_parenthesized_token17, STATE(3738), 1, + aux_sym_shebang_repeat1, + STATE(3785), 1, sym_comment, - ACTIONS(5026), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5024), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [150856] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3739), 1, - sym_comment, - ACTIONS(2450), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2452), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(5299), 2, anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [150898] = 4, - ACTIONS(247), 1, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6659), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6663), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6665), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6671), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6661), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6667), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6669), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [148106] = 10, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3740), 1, + ACTIONS(5289), 1, + sym__newline, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(3786), 1, sym_comment, - ACTIONS(2454), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(2456), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(6649), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6653), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6655), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6651), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6657), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5291), 13, anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [150940] = 4, - ACTIONS(247), 1, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + [148160] = 10, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3741), 1, + ACTIONS(5455), 1, + sym__newline, + STATE(3663), 1, + aux_sym_shebang_repeat1, + STATE(3787), 1, sym_comment, - ACTIONS(5030), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5028), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(6659), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6663), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6665), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6661), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6669), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5299), 13, anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [150982] = 4, - ACTIONS(247), 1, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + [148214] = 9, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3742), 1, + ACTIONS(5289), 1, + sym__newline, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(3788), 1, sym_comment, - ACTIONS(5034), 7, - anon_sym_DOLLAR, - anon_sym_DASH, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - ACTIONS(5032), 24, - anon_sym_true, - anon_sym_false, - anon_sym_null, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_LBRACK, - anon_sym_LPAREN, + ACTIONS(6649), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6653), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6655), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6651), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5291), 19, anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - [151024] = 5, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [148266] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2239), 1, + ACTIONS(1090), 1, + anon_sym_EQ_GT, + ACTIONS(2273), 1, anon_sym_LPAREN2, - ACTIONS(2243), 1, + ACTIONS(2275), 1, aux_sym_unquoted_token4, - STATE(3743), 1, + STATE(3789), 1, sym_comment, - ACTIONS(2241), 29, - anon_sym_LBRACE, + ACTIONS(1092), 28, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -347595,62 +353807,104 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [151068] = 12, - ACTIONS(247), 1, + [148312] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3790), 1, + sym_comment, + ACTIONS(2105), 3, + anon_sym_GT, + anon_sym_LT2, + anon_sym_DOT_DOT2, + ACTIONS(2107), 28, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [148354] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5181), 1, + ACTIONS(5455), 1, sym__newline, - STATE(2043), 1, + STATE(3664), 1, aux_sym_shebang_repeat1, - STATE(3744), 1, + STATE(3791), 1, sym_comment, - ACTIONS(6528), 2, + ACTIONS(6659), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6532), 2, + ACTIONS(6663), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6534), 2, + ACTIONS(6665), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6540), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6530), 4, + ACTIONS(6661), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6536), 4, + ACTIONS(5299), 19, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6538), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - ACTIONS(5183), 7, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - [151126] = 4, - ACTIONS(247), 1, + [148406] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3745), 1, + ACTIONS(6601), 1, + anon_sym_DOT, + STATE(3576), 1, + aux_sym_cell_path_repeat1, + STATE(3744), 1, + sym_path, + STATE(3792), 1, sym_comment, - ACTIONS(1675), 3, + STATE(3827), 1, + sym_cell_path, + ACTIONS(1664), 2, anon_sym_GT, anon_sym_LT2, - anon_sym_DOT_DOT2, - ACTIONS(1677), 27, + ACTIONS(1668), 25, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -347676,125 +353930,224 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [151167] = 17, - ACTIONS(247), 1, + [148456] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5245), 1, + ACTIONS(5305), 1, sym__newline, - ACTIONS(6164), 1, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(3793), 1, + sym_comment, + ACTIONS(6649), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5307), 27, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6166), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6168), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6170), 1, aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6172), 1, aux_sym_expr_binary_parenthesized_token17, - ACTIONS(6584), 1, aux_sym_expr_binary_parenthesized_token18, - STATE(2043), 1, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [148502] = 7, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5305), 1, + sym__newline, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(3746), 1, + STATE(3794), 1, sym_comment, - ACTIONS(6120), 2, + ACTIONS(6649), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6124), 2, + ACTIONS(6651), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5307), 23, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6126), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6162), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6122), 4, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [148550] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5305), 1, + sym__newline, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(3795), 1, + sym_comment, + ACTIONS(6649), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6653), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6651), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6160), 4, + ACTIONS(5307), 21, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6138), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [151234] = 25, - ACTIONS(247), 1, + [148600] = 11, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3403), 1, - anon_sym_DASH, - ACTIONS(3409), 1, - aux_sym_expr_unary_token1, - ACTIONS(3421), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(6448), 1, - sym_identifier, - ACTIONS(6454), 1, + ACTIONS(5305), 1, sym__newline, - ACTIONS(6456), 1, - anon_sym_LPAREN, - ACTIONS(6458), 1, - anon_sym_DOLLAR, - ACTIONS(6462), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6464), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6466), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6468), 1, - aux_sym__val_number_decimal_token4, - STATE(3465), 1, - sym__val_number, - STATE(3483), 1, - sym__val_number_decimal, - STATE(3747), 1, - sym_comment, - STATE(3829), 1, - sym_expr_parenthesized, - STATE(4039), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(4267), 1, - sym_val_number, - STATE(4354), 1, - sym__binary_predicate_parenthesized, - STATE(4355), 1, - sym__predicate, - STATE(4358), 1, - sym__expr_unary_minus, - ACTIONS(6450), 2, - anon_sym_true, - anon_sym_false, - STATE(4480), 2, - sym_expr_unary, - sym_val_bool, - STATE(5134), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6452), 5, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - [151317] = 4, - ACTIONS(247), 1, + STATE(3796), 1, + sym_comment, + ACTIONS(6649), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6653), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6655), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6651), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6695), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6657), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5307), 9, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [148656] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4614), 1, - aux_sym_unquoted_token2, - STATE(3748), 1, + ACTIONS(2295), 1, + anon_sym_LPAREN2, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + STATE(3797), 1, sym_comment, - ACTIONS(1572), 29, - anon_sym_EQ_GT, + ACTIONS(2297), 29, + anon_sym_LBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [148700] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2295), 1, + anon_sym_LPAREN2, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + STATE(3798), 1, + sym_comment, + ACTIONS(2305), 29, + anon_sym_LBRACE, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, aux_sym_expr_binary_token3, @@ -347823,1045 +354176,1244 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [151358] = 17, - ACTIONS(247), 1, + [148744] = 12, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5245), 1, + ACTIONS(5305), 1, sym__newline, - ACTIONS(5249), 1, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(3799), 1, + sym_comment, + ACTIONS(6649), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6653), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6655), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6701), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6651), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6695), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6657), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5307), 7, + anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5251), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5253), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5255), 1, aux_sym_expr_binary_parenthesized_token16, - ACTIONS(5257), 1, aux_sym_expr_binary_parenthesized_token17, - ACTIONS(6586), 1, aux_sym_expr_binary_parenthesized_token18, - STATE(3749), 1, + [148802] = 13, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5305), 1, + sym__newline, + ACTIONS(6711), 1, + aux_sym_expr_binary_parenthesized_token13, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(3800), 1, sym_comment, - STATE(3785), 1, + ACTIONS(6649), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6653), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6655), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6701), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6651), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6695), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5307), 6, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6657), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [148862] = 14, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5305), 1, + sym__newline, + ACTIONS(6711), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6713), 1, + aux_sym_expr_binary_parenthesized_token14, + STATE(2104), 1, aux_sym_shebang_repeat1, - ACTIONS(5233), 2, + STATE(3801), 1, + sym_comment, + ACTIONS(6649), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5237), 2, + ACTIONS(6653), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5239), 2, + ACTIONS(6655), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5247), 2, + ACTIONS(6701), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5235), 4, + ACTIONS(6651), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5241), 4, + ACTIONS(6695), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5243), 6, + ACTIONS(5307), 5, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6657), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [151425] = 4, - ACTIONS(247), 1, + [148924] = 15, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3750), 1, + ACTIONS(5305), 1, + sym__newline, + ACTIONS(6711), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6713), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6715), 1, + aux_sym_expr_binary_parenthesized_token15, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(3802), 1, sym_comment, - ACTIONS(2141), 3, - anon_sym_GT, - anon_sym_LT2, - anon_sym_DOT_DOT2, - ACTIONS(2143), 27, - ts_builtin_sym_end, + ACTIONS(6649), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6653), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6655), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6701), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5307), 4, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6651), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6695), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6657), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [148988] = 16, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5305), 1, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_in, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [151466] = 25, - ACTIONS(247), 1, + ACTIONS(6711), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6713), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6715), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6717), 1, + aux_sym_expr_binary_parenthesized_token16, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(3803), 1, + sym_comment, + ACTIONS(6649), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6653), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6655), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6701), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5307), 3, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + ACTIONS(6651), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6695), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6657), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [149054] = 12, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3403), 1, + ACTIONS(5418), 1, + sym__newline, + STATE(3771), 1, + aux_sym_shebang_repeat1, + STATE(3804), 1, + sym_comment, + ACTIONS(6659), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6663), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6665), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6671), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6661), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6667), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6669), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + ACTIONS(5261), 7, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + [149112] = 25, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(3468), 1, anon_sym_DASH, - ACTIONS(3409), 1, + ACTIONS(3474), 1, aux_sym_expr_unary_token1, - ACTIONS(3421), 1, + ACTIONS(3486), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6448), 1, + ACTIONS(6625), 1, sym_identifier, - ACTIONS(6454), 1, + ACTIONS(6631), 1, sym__newline, - ACTIONS(6456), 1, + ACTIONS(6633), 1, anon_sym_LPAREN, - ACTIONS(6458), 1, + ACTIONS(6635), 1, anon_sym_DOLLAR, - ACTIONS(6462), 1, + ACTIONS(6639), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6464), 1, + ACTIONS(6641), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6466), 1, + ACTIONS(6643), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6468), 1, + ACTIONS(6645), 1, aux_sym__val_number_decimal_token4, - STATE(3465), 1, + STATE(3529), 1, sym__val_number, - STATE(3483), 1, + STATE(3537), 1, sym__val_number_decimal, - STATE(3751), 1, + STATE(3805), 1, sym_comment, - STATE(3829), 1, + STATE(3898), 1, sym_expr_parenthesized, - STATE(4039), 1, + STATE(4106), 1, aux_sym_shebang_repeat1, - STATE(4267), 1, + STATE(4336), 1, sym_val_number, - STATE(4330), 1, + STATE(4482), 1, + sym__expr_unary_minus, + STATE(4519), 1, sym__binary_predicate_parenthesized, - STATE(4332), 1, + STATE(4520), 1, sym__predicate, - STATE(4358), 1, - sym__expr_unary_minus, - ACTIONS(6450), 2, + ACTIONS(6627), 2, anon_sym_true, anon_sym_false, - STATE(4480), 2, + STATE(4377), 2, sym_expr_unary, sym_val_bool, - STATE(5134), 2, + STATE(5196), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6452), 5, + ACTIONS(6629), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [151549] = 25, - ACTIONS(247), 1, + [149195] = 25, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3403), 1, + ACTIONS(3468), 1, anon_sym_DASH, - ACTIONS(3409), 1, + ACTIONS(3474), 1, aux_sym_expr_unary_token1, - ACTIONS(3421), 1, + ACTIONS(3486), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6448), 1, + ACTIONS(6625), 1, sym_identifier, - ACTIONS(6454), 1, + ACTIONS(6631), 1, sym__newline, - ACTIONS(6456), 1, + ACTIONS(6633), 1, anon_sym_LPAREN, - ACTIONS(6458), 1, + ACTIONS(6635), 1, anon_sym_DOLLAR, - ACTIONS(6462), 1, + ACTIONS(6639), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6464), 1, + ACTIONS(6641), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6466), 1, + ACTIONS(6643), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6468), 1, + ACTIONS(6645), 1, aux_sym__val_number_decimal_token4, - STATE(3465), 1, + STATE(3529), 1, sym__val_number, - STATE(3483), 1, + STATE(3537), 1, sym__val_number_decimal, - STATE(3752), 1, + STATE(3806), 1, sym_comment, - STATE(3829), 1, - sym_expr_parenthesized, - STATE(4039), 1, + STATE(3835), 1, aux_sym_shebang_repeat1, - STATE(4267), 1, + STATE(3898), 1, + sym_expr_parenthesized, + STATE(4336), 1, sym_val_number, - STATE(4358), 1, + STATE(4378), 1, + sym__predicate, + STATE(4482), 1, sym__expr_unary_minus, - STATE(4375), 1, + STATE(4570), 1, sym__binary_predicate_parenthesized, - STATE(4376), 1, - sym__predicate, - ACTIONS(6450), 2, + ACTIONS(6627), 2, anon_sym_true, anon_sym_false, - STATE(4480), 2, + STATE(4377), 2, sym_expr_unary, sym_val_bool, - STATE(5134), 2, + STATE(5196), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6452), 5, + ACTIONS(6629), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [151632] = 25, - ACTIONS(247), 1, + [149278] = 25, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3403), 1, + ACTIONS(3468), 1, anon_sym_DASH, - ACTIONS(3409), 1, + ACTIONS(3474), 1, aux_sym_expr_unary_token1, - ACTIONS(3421), 1, + ACTIONS(3486), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6448), 1, + ACTIONS(6625), 1, sym_identifier, - ACTIONS(6454), 1, + ACTIONS(6631), 1, sym__newline, - ACTIONS(6456), 1, + ACTIONS(6633), 1, anon_sym_LPAREN, - ACTIONS(6458), 1, + ACTIONS(6635), 1, anon_sym_DOLLAR, - ACTIONS(6462), 1, + ACTIONS(6639), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6464), 1, + ACTIONS(6641), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6466), 1, + ACTIONS(6643), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6468), 1, + ACTIONS(6645), 1, aux_sym__val_number_decimal_token4, - STATE(3465), 1, + STATE(3529), 1, sym__val_number, - STATE(3483), 1, + STATE(3537), 1, sym__val_number_decimal, - STATE(3753), 1, + STATE(3807), 1, sym_comment, - STATE(3765), 1, + STATE(3824), 1, aux_sym_shebang_repeat1, - STATE(3829), 1, + STATE(3898), 1, sym_expr_parenthesized, - STATE(4267), 1, + STATE(4336), 1, sym_val_number, - STATE(4358), 1, - sym__expr_unary_minus, - STATE(4377), 1, + STATE(4388), 1, sym__binary_predicate_parenthesized, - STATE(4378), 1, + STATE(4392), 1, sym__predicate, - ACTIONS(6450), 2, + STATE(4482), 1, + sym__expr_unary_minus, + ACTIONS(6627), 2, anon_sym_true, anon_sym_false, - STATE(4480), 2, + STATE(4377), 2, sym_expr_unary, sym_val_bool, - STATE(5134), 2, + STATE(5196), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6452), 5, + ACTIONS(6629), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [151715] = 25, - ACTIONS(247), 1, + [149361] = 25, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3403), 1, + ACTIONS(3468), 1, anon_sym_DASH, - ACTIONS(3409), 1, + ACTIONS(3474), 1, aux_sym_expr_unary_token1, - ACTIONS(3421), 1, + ACTIONS(3486), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6448), 1, + ACTIONS(6625), 1, sym_identifier, - ACTIONS(6454), 1, + ACTIONS(6631), 1, sym__newline, - ACTIONS(6456), 1, + ACTIONS(6633), 1, anon_sym_LPAREN, - ACTIONS(6458), 1, + ACTIONS(6635), 1, anon_sym_DOLLAR, - ACTIONS(6462), 1, + ACTIONS(6639), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6464), 1, + ACTIONS(6641), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6466), 1, + ACTIONS(6643), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6468), 1, + ACTIONS(6645), 1, aux_sym__val_number_decimal_token4, - STATE(3465), 1, + STATE(3529), 1, sym__val_number, - STATE(3483), 1, + STATE(3537), 1, sym__val_number_decimal, - STATE(3754), 1, + STATE(3808), 1, sym_comment, - STATE(3767), 1, + STATE(3818), 1, aux_sym_shebang_repeat1, - STATE(3829), 1, + STATE(3898), 1, sym_expr_parenthesized, - STATE(4267), 1, + STATE(4336), 1, sym_val_number, - STATE(4358), 1, - sym__expr_unary_minus, - STATE(4382), 1, + STATE(4396), 1, sym__binary_predicate_parenthesized, - STATE(4383), 1, + STATE(4413), 1, sym__predicate, - ACTIONS(6450), 2, + STATE(4482), 1, + sym__expr_unary_minus, + ACTIONS(6627), 2, anon_sym_true, anon_sym_false, - STATE(4480), 2, + STATE(4377), 2, sym_expr_unary, sym_val_bool, - STATE(5134), 2, + STATE(5196), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6452), 5, + ACTIONS(6629), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [151798] = 25, - ACTIONS(247), 1, + [149444] = 25, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3403), 1, + ACTIONS(3468), 1, anon_sym_DASH, - ACTIONS(3409), 1, + ACTIONS(3474), 1, aux_sym_expr_unary_token1, - ACTIONS(3421), 1, + ACTIONS(3486), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6448), 1, + ACTIONS(6625), 1, sym_identifier, - ACTIONS(6454), 1, + ACTIONS(6631), 1, sym__newline, - ACTIONS(6456), 1, + ACTIONS(6633), 1, anon_sym_LPAREN, - ACTIONS(6458), 1, + ACTIONS(6635), 1, anon_sym_DOLLAR, - ACTIONS(6462), 1, + ACTIONS(6639), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6464), 1, + ACTIONS(6641), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6466), 1, + ACTIONS(6643), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6468), 1, + ACTIONS(6645), 1, aux_sym__val_number_decimal_token4, - STATE(3465), 1, + STATE(3529), 1, sym__val_number, - STATE(3483), 1, + STATE(3537), 1, sym__val_number_decimal, - STATE(3755), 1, + STATE(3809), 1, sym_comment, - STATE(3829), 1, + STATE(3898), 1, sym_expr_parenthesized, - STATE(4039), 1, + STATE(4106), 1, aux_sym_shebang_repeat1, - STATE(4267), 1, + STATE(4336), 1, sym_val_number, - STATE(4358), 1, + STATE(4482), 1, sym__expr_unary_minus, - STATE(4359), 1, + STATE(4483), 1, sym__binary_predicate_parenthesized, - STATE(4410), 1, + STATE(4491), 1, sym__predicate, - ACTIONS(6450), 2, + ACTIONS(6627), 2, anon_sym_true, anon_sym_false, - STATE(4480), 2, + STATE(4377), 2, sym_expr_unary, sym_val_bool, - STATE(5134), 2, + STATE(5196), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6452), 5, + ACTIONS(6629), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [151881] = 25, - ACTIONS(247), 1, + [149527] = 25, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3403), 1, + ACTIONS(3468), 1, anon_sym_DASH, - ACTIONS(3409), 1, + ACTIONS(3474), 1, aux_sym_expr_unary_token1, - ACTIONS(3421), 1, + ACTIONS(3486), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6448), 1, + ACTIONS(6625), 1, sym_identifier, - ACTIONS(6454), 1, + ACTIONS(6631), 1, sym__newline, - ACTIONS(6456), 1, + ACTIONS(6633), 1, anon_sym_LPAREN, - ACTIONS(6458), 1, + ACTIONS(6635), 1, anon_sym_DOLLAR, - ACTIONS(6462), 1, + ACTIONS(6639), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6464), 1, + ACTIONS(6641), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6466), 1, + ACTIONS(6643), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6468), 1, + ACTIONS(6645), 1, aux_sym__val_number_decimal_token4, - STATE(3465), 1, + STATE(3529), 1, sym__val_number, - STATE(3483), 1, + STATE(3537), 1, sym__val_number_decimal, - STATE(3756), 1, + STATE(3810), 1, sym_comment, - STATE(3769), 1, + STATE(3825), 1, aux_sym_shebang_repeat1, - STATE(3829), 1, + STATE(3898), 1, sym_expr_parenthesized, - STATE(4267), 1, + STATE(4336), 1, sym_val_number, - STATE(4358), 1, - sym__expr_unary_minus, - STATE(4384), 1, + STATE(4419), 1, sym__binary_predicate_parenthesized, - STATE(4386), 1, + STATE(4422), 1, sym__predicate, - ACTIONS(6450), 2, + STATE(4482), 1, + sym__expr_unary_minus, + ACTIONS(6627), 2, anon_sym_true, anon_sym_false, - STATE(4480), 2, + STATE(4377), 2, sym_expr_unary, sym_val_bool, - STATE(5134), 2, + STATE(5196), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6452), 5, + ACTIONS(6629), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [151964] = 25, - ACTIONS(247), 1, + [149610] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(2281), 1, + sym__newline, + STATE(3811), 1, + sym_comment, + ACTIONS(2285), 29, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [149651] = 25, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3403), 1, + ACTIONS(3468), 1, anon_sym_DASH, - ACTIONS(3409), 1, + ACTIONS(3474), 1, aux_sym_expr_unary_token1, - ACTIONS(3421), 1, + ACTIONS(3486), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6448), 1, + ACTIONS(6625), 1, sym_identifier, - ACTIONS(6454), 1, + ACTIONS(6631), 1, sym__newline, - ACTIONS(6456), 1, + ACTIONS(6633), 1, anon_sym_LPAREN, - ACTIONS(6458), 1, + ACTIONS(6635), 1, anon_sym_DOLLAR, - ACTIONS(6462), 1, + ACTIONS(6639), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6464), 1, + ACTIONS(6641), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6466), 1, + ACTIONS(6643), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6468), 1, + ACTIONS(6645), 1, aux_sym__val_number_decimal_token4, - STATE(3465), 1, + STATE(3529), 1, sym__val_number, - STATE(3483), 1, + STATE(3537), 1, sym__val_number_decimal, - STATE(3757), 1, + STATE(3812), 1, sym_comment, - STATE(3829), 1, - sym_expr_parenthesized, - STATE(4039), 1, + STATE(3817), 1, aux_sym_shebang_repeat1, - STATE(4267), 1, + STATE(3898), 1, + sym_expr_parenthesized, + STATE(4336), 1, sym_val_number, - STATE(4358), 1, + STATE(4482), 1, sym__expr_unary_minus, - STATE(4392), 1, + STATE(4537), 1, sym__binary_predicate_parenthesized, - STATE(4393), 1, + STATE(4538), 1, sym__predicate, - ACTIONS(6450), 2, + ACTIONS(6627), 2, anon_sym_true, anon_sym_false, - STATE(4480), 2, + STATE(4377), 2, sym_expr_unary, sym_val_bool, - STATE(5134), 2, + STATE(5196), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6452), 5, + ACTIONS(6629), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [152047] = 25, - ACTIONS(247), 1, + [149734] = 25, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3403), 1, + ACTIONS(3468), 1, anon_sym_DASH, - ACTIONS(3409), 1, + ACTIONS(3474), 1, aux_sym_expr_unary_token1, - ACTIONS(3421), 1, + ACTIONS(3486), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6448), 1, + ACTIONS(6625), 1, sym_identifier, - ACTIONS(6454), 1, + ACTIONS(6631), 1, sym__newline, - ACTIONS(6456), 1, + ACTIONS(6633), 1, anon_sym_LPAREN, - ACTIONS(6458), 1, + ACTIONS(6635), 1, anon_sym_DOLLAR, - ACTIONS(6462), 1, + ACTIONS(6639), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6464), 1, + ACTIONS(6641), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6466), 1, + ACTIONS(6643), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6468), 1, + ACTIONS(6645), 1, aux_sym__val_number_decimal_token4, - STATE(3465), 1, + STATE(3529), 1, sym__val_number, - STATE(3483), 1, + STATE(3537), 1, sym__val_number_decimal, - STATE(3758), 1, + STATE(3813), 1, sym_comment, - STATE(3829), 1, - sym_expr_parenthesized, - STATE(4039), 1, + STATE(3815), 1, aux_sym_shebang_repeat1, - STATE(4267), 1, + STATE(3898), 1, + sym_expr_parenthesized, + STATE(4336), 1, sym_val_number, - STATE(4358), 1, + STATE(4482), 1, sym__expr_unary_minus, - STATE(4417), 1, + STATE(4528), 1, sym__binary_predicate_parenthesized, - STATE(4419), 1, + STATE(4531), 1, sym__predicate, - ACTIONS(6450), 2, + ACTIONS(6627), 2, anon_sym_true, anon_sym_false, - STATE(4480), 2, + STATE(4377), 2, sym_expr_unary, sym_val_bool, - STATE(5134), 2, + STATE(5196), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6452), 5, + ACTIONS(6629), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [152130] = 25, - ACTIONS(247), 1, + [149817] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3421), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(3451), 1, + ACTIONS(4770), 1, + aux_sym_unquoted_token2, + STATE(3814), 1, + sym_comment, + ACTIONS(1640), 29, + anon_sym_EQ_GT, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [149858] = 25, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(3468), 1, anon_sym_DASH, - ACTIONS(3457), 1, + ACTIONS(3474), 1, aux_sym_expr_unary_token1, - ACTIONS(6448), 1, + ACTIONS(3486), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(6625), 1, sym_identifier, - ACTIONS(6458), 1, + ACTIONS(6631), 1, + sym__newline, + ACTIONS(6633), 1, + anon_sym_LPAREN, + ACTIONS(6635), 1, anon_sym_DOLLAR, - ACTIONS(6462), 1, + ACTIONS(6639), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6464), 1, + ACTIONS(6641), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6466), 1, + ACTIONS(6643), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6468), 1, + ACTIONS(6645), 1, aux_sym__val_number_decimal_token4, - ACTIONS(6590), 1, - anon_sym_LPAREN, - ACTIONS(6592), 1, - anon_sym_LBRACE, - STATE(3465), 1, + STATE(3529), 1, sym__val_number, - STATE(3483), 1, + STATE(3537), 1, sym__val_number_decimal, - STATE(3759), 1, + STATE(3815), 1, sym_comment, - STATE(3841), 1, + STATE(3898), 1, sym_expr_parenthesized, - STATE(4267), 1, + STATE(4106), 1, + aux_sym_shebang_repeat1, + STATE(4336), 1, sym_val_number, - STATE(4553), 1, + STATE(4482), 1, sym__expr_unary_minus, - STATE(4593), 1, - sym__binary_predicate, - STATE(4595), 1, + STATE(4562), 1, + sym__binary_predicate_parenthesized, + STATE(4563), 1, sym__predicate, - STATE(5120), 1, - sym_val_closure, - ACTIONS(6588), 2, + ACTIONS(6627), 2, anon_sym_true, anon_sym_false, - STATE(4526), 2, + STATE(4377), 2, sym_expr_unary, sym_val_bool, - STATE(5115), 2, + STATE(5196), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6452), 5, + ACTIONS(6629), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [152213] = 25, - ACTIONS(247), 1, + [149941] = 25, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3403), 1, + ACTIONS(3468), 1, anon_sym_DASH, - ACTIONS(3409), 1, + ACTIONS(3474), 1, aux_sym_expr_unary_token1, - ACTIONS(3421), 1, + ACTIONS(3486), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6448), 1, + ACTIONS(6625), 1, sym_identifier, - ACTIONS(6454), 1, + ACTIONS(6631), 1, sym__newline, - ACTIONS(6456), 1, + ACTIONS(6633), 1, anon_sym_LPAREN, - ACTIONS(6458), 1, + ACTIONS(6635), 1, anon_sym_DOLLAR, - ACTIONS(6462), 1, + ACTIONS(6639), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6464), 1, + ACTIONS(6641), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6466), 1, + ACTIONS(6643), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6468), 1, + ACTIONS(6645), 1, aux_sym__val_number_decimal_token4, - STATE(3465), 1, + STATE(3529), 1, sym__val_number, - STATE(3483), 1, + STATE(3537), 1, sym__val_number_decimal, - STATE(3760), 1, + STATE(3816), 1, sym_comment, - STATE(3829), 1, + STATE(3898), 1, sym_expr_parenthesized, - STATE(4039), 1, + STATE(4106), 1, aux_sym_shebang_repeat1, - STATE(4267), 1, + STATE(4336), 1, sym_val_number, - STATE(4358), 1, + STATE(4379), 1, + sym__predicate, + STATE(4482), 1, sym__expr_unary_minus, - STATE(4396), 1, + STATE(4493), 1, sym__binary_predicate_parenthesized, - STATE(4400), 1, - sym__predicate, - ACTIONS(6450), 2, + ACTIONS(6627), 2, anon_sym_true, anon_sym_false, - STATE(4480), 2, + STATE(4377), 2, sym_expr_unary, sym_val_bool, - STATE(5134), 2, + STATE(5196), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6452), 5, + ACTIONS(6629), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [152296] = 25, - ACTIONS(247), 1, + [150024] = 25, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3403), 1, + ACTIONS(3468), 1, anon_sym_DASH, - ACTIONS(3409), 1, + ACTIONS(3474), 1, aux_sym_expr_unary_token1, - ACTIONS(3421), 1, + ACTIONS(3486), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6448), 1, + ACTIONS(6625), 1, sym_identifier, - ACTIONS(6456), 1, + ACTIONS(6631), 1, + sym__newline, + ACTIONS(6633), 1, anon_sym_LPAREN, - ACTIONS(6458), 1, + ACTIONS(6635), 1, anon_sym_DOLLAR, - ACTIONS(6460), 1, - anon_sym_LBRACE, - ACTIONS(6462), 1, + ACTIONS(6639), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6464), 1, + ACTIONS(6641), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6466), 1, + ACTIONS(6643), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6468), 1, + ACTIONS(6645), 1, aux_sym__val_number_decimal_token4, - STATE(3465), 1, + STATE(3529), 1, sym__val_number, - STATE(3483), 1, + STATE(3537), 1, sym__val_number_decimal, - STATE(3761), 1, + STATE(3817), 1, sym_comment, - STATE(3829), 1, + STATE(3898), 1, sym_expr_parenthesized, - STATE(4267), 1, + STATE(4106), 1, + aux_sym_shebang_repeat1, + STATE(4336), 1, sym_val_number, - STATE(4358), 1, - sym__expr_unary_minus, - STATE(4478), 1, - sym__binary_predicate, - STATE(4479), 1, + STATE(4386), 1, + sym__binary_predicate_parenthesized, + STATE(4390), 1, sym__predicate, - STATE(4941), 1, - sym_val_closure, - ACTIONS(6450), 2, + STATE(4482), 1, + sym__expr_unary_minus, + ACTIONS(6627), 2, anon_sym_true, anon_sym_false, - STATE(4480), 2, + STATE(4377), 2, sym_expr_unary, sym_val_bool, - STATE(5134), 2, + STATE(5196), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6452), 5, + ACTIONS(6629), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [152379] = 25, - ACTIONS(247), 1, + [150107] = 25, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3403), 1, + ACTIONS(3468), 1, anon_sym_DASH, - ACTIONS(3409), 1, + ACTIONS(3474), 1, aux_sym_expr_unary_token1, - ACTIONS(3421), 1, + ACTIONS(3486), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6448), 1, + ACTIONS(6625), 1, sym_identifier, - ACTIONS(6454), 1, + ACTIONS(6631), 1, sym__newline, - ACTIONS(6456), 1, + ACTIONS(6633), 1, anon_sym_LPAREN, - ACTIONS(6458), 1, + ACTIONS(6635), 1, anon_sym_DOLLAR, - ACTIONS(6462), 1, + ACTIONS(6639), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6464), 1, + ACTIONS(6641), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6466), 1, + ACTIONS(6643), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6468), 1, + ACTIONS(6645), 1, aux_sym__val_number_decimal_token4, - STATE(3465), 1, + STATE(3529), 1, sym__val_number, - STATE(3483), 1, + STATE(3537), 1, sym__val_number_decimal, - STATE(3762), 1, + STATE(3818), 1, sym_comment, - STATE(3829), 1, + STATE(3898), 1, sym_expr_parenthesized, - STATE(4039), 1, + STATE(4106), 1, aux_sym_shebang_repeat1, - STATE(4267), 1, + STATE(4336), 1, sym_val_number, - STATE(4358), 1, - sym__expr_unary_minus, - STATE(4408), 1, + STATE(4436), 1, sym__binary_predicate_parenthesized, - STATE(4412), 1, + STATE(4482), 1, + sym__expr_unary_minus, + STATE(4549), 1, sym__predicate, - ACTIONS(6450), 2, + ACTIONS(6627), 2, anon_sym_true, anon_sym_false, - STATE(4480), 2, + STATE(4377), 2, sym_expr_unary, sym_val_bool, - STATE(5134), 2, + STATE(5196), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6452), 5, + ACTIONS(6629), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - [152462] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2237), 1, - sym__newline, - STATE(3763), 1, - sym_comment, - ACTIONS(2241), 29, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [152503] = 25, - ACTIONS(247), 1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + [150190] = 25, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3403), 1, + ACTIONS(3468), 1, anon_sym_DASH, - ACTIONS(3409), 1, + ACTIONS(3474), 1, aux_sym_expr_unary_token1, - ACTIONS(3421), 1, + ACTIONS(3486), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6448), 1, + ACTIONS(6625), 1, sym_identifier, - ACTIONS(6454), 1, + ACTIONS(6631), 1, sym__newline, - ACTIONS(6456), 1, + ACTIONS(6633), 1, anon_sym_LPAREN, - ACTIONS(6458), 1, + ACTIONS(6635), 1, anon_sym_DOLLAR, - ACTIONS(6462), 1, + ACTIONS(6639), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6464), 1, + ACTIONS(6641), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6466), 1, + ACTIONS(6643), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6468), 1, + ACTIONS(6645), 1, aux_sym__val_number_decimal_token4, - STATE(3465), 1, + STATE(3529), 1, sym__val_number, - STATE(3483), 1, + STATE(3537), 1, sym__val_number_decimal, - STATE(3747), 1, - aux_sym_shebang_repeat1, - STATE(3764), 1, + STATE(3819), 1, sym_comment, - STATE(3829), 1, + STATE(3898), 1, sym_expr_parenthesized, - STATE(4267), 1, + STATE(4106), 1, + aux_sym_shebang_repeat1, + STATE(4336), 1, sym_val_number, - STATE(4358), 1, - sym__expr_unary_minus, - STATE(4413), 1, + STATE(4459), 1, sym__binary_predicate_parenthesized, - STATE(4415), 1, + STATE(4462), 1, sym__predicate, - ACTIONS(6450), 2, + STATE(4482), 1, + sym__expr_unary_minus, + ACTIONS(6627), 2, anon_sym_true, anon_sym_false, - STATE(4480), 2, + STATE(4377), 2, sym_expr_unary, sym_val_bool, - STATE(5134), 2, + STATE(5196), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6452), 5, + ACTIONS(6629), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [152586] = 25, - ACTIONS(247), 1, + [150273] = 25, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3403), 1, + ACTIONS(3468), 1, anon_sym_DASH, - ACTIONS(3409), 1, + ACTIONS(3474), 1, aux_sym_expr_unary_token1, - ACTIONS(3421), 1, + ACTIONS(3486), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6448), 1, + ACTIONS(6625), 1, sym_identifier, - ACTIONS(6454), 1, + ACTIONS(6631), 1, sym__newline, - ACTIONS(6456), 1, + ACTIONS(6633), 1, anon_sym_LPAREN, - ACTIONS(6458), 1, + ACTIONS(6635), 1, anon_sym_DOLLAR, - ACTIONS(6462), 1, + ACTIONS(6639), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6464), 1, + ACTIONS(6641), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6466), 1, + ACTIONS(6643), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6468), 1, + ACTIONS(6645), 1, aux_sym__val_number_decimal_token4, - STATE(3465), 1, + STATE(3529), 1, sym__val_number, - STATE(3483), 1, + STATE(3537), 1, sym__val_number_decimal, - STATE(3765), 1, + STATE(3819), 1, + aux_sym_shebang_repeat1, + STATE(3820), 1, sym_comment, - STATE(3829), 1, + STATE(3898), 1, sym_expr_parenthesized, - STATE(4039), 1, - aux_sym_shebang_repeat1, - STATE(4267), 1, + STATE(4336), 1, sym_val_number, - STATE(4329), 1, - sym__binary_predicate_parenthesized, - STATE(4331), 1, + STATE(4387), 1, sym__predicate, - STATE(4358), 1, + STATE(4477), 1, + sym__binary_predicate_parenthesized, + STATE(4482), 1, sym__expr_unary_minus, - ACTIONS(6450), 2, + ACTIONS(6627), 2, anon_sym_true, anon_sym_false, - STATE(4480), 2, + STATE(4377), 2, sym_expr_unary, sym_val_bool, - STATE(5134), 2, + STATE(5196), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6452), 5, + ACTIONS(6629), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [152669] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2245), 1, - sym__newline, - STATE(3766), 1, - sym_comment, - ACTIONS(2247), 29, - anon_sym_LBRACE, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - aux_sym_expr_binary_parenthesized_token13, - aux_sym_expr_binary_parenthesized_token14, - aux_sym_expr_binary_parenthesized_token15, - aux_sym_expr_binary_parenthesized_token16, - aux_sym_expr_binary_parenthesized_token17, - aux_sym_expr_binary_parenthesized_token18, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [152710] = 25, - ACTIONS(247), 1, + [150356] = 25, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3403), 1, + ACTIONS(3468), 1, anon_sym_DASH, - ACTIONS(3409), 1, + ACTIONS(3474), 1, aux_sym_expr_unary_token1, - ACTIONS(3421), 1, + ACTIONS(3486), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6448), 1, + ACTIONS(6625), 1, sym_identifier, - ACTIONS(6454), 1, + ACTIONS(6631), 1, sym__newline, - ACTIONS(6456), 1, + ACTIONS(6633), 1, anon_sym_LPAREN, - ACTIONS(6458), 1, + ACTIONS(6635), 1, anon_sym_DOLLAR, - ACTIONS(6462), 1, + ACTIONS(6639), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6464), 1, + ACTIONS(6641), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6466), 1, + ACTIONS(6643), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6468), 1, + ACTIONS(6645), 1, aux_sym__val_number_decimal_token4, - STATE(3465), 1, + STATE(3529), 1, sym__val_number, - STATE(3483), 1, + STATE(3537), 1, sym__val_number_decimal, - STATE(3767), 1, + STATE(3821), 1, sym_comment, - STATE(3829), 1, - sym_expr_parenthesized, - STATE(4039), 1, + STATE(3823), 1, aux_sym_shebang_repeat1, - STATE(4267), 1, - sym_val_number, + STATE(3898), 1, + sym_expr_parenthesized, STATE(4336), 1, + sym_val_number, + STATE(4415), 1, sym__binary_predicate_parenthesized, - STATE(4337), 1, + STATE(4421), 1, sym__predicate, - STATE(4358), 1, + STATE(4482), 1, sym__expr_unary_minus, - ACTIONS(6450), 2, + ACTIONS(6627), 2, anon_sym_true, anon_sym_false, - STATE(4480), 2, + STATE(4377), 2, sym_expr_unary, sym_val_bool, - STATE(5134), 2, + STATE(5196), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6452), 5, + ACTIONS(6629), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [152793] = 4, - ACTIONS(247), 1, + [150439] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2229), 1, + ACTIONS(2303), 1, sym__newline, - STATE(3768), 1, + STATE(3822), 1, sym_comment, - ACTIONS(2233), 29, + ACTIONS(2305), 29, anon_sym_LBRACE, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, @@ -348891,712 +355443,741 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [152834] = 25, - ACTIONS(247), 1, + [150480] = 25, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3403), 1, + ACTIONS(3468), 1, anon_sym_DASH, - ACTIONS(3409), 1, + ACTIONS(3474), 1, aux_sym_expr_unary_token1, - ACTIONS(3421), 1, + ACTIONS(3486), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6448), 1, + ACTIONS(6625), 1, sym_identifier, - ACTIONS(6454), 1, + ACTIONS(6631), 1, sym__newline, - ACTIONS(6456), 1, + ACTIONS(6633), 1, anon_sym_LPAREN, - ACTIONS(6458), 1, + ACTIONS(6635), 1, anon_sym_DOLLAR, - ACTIONS(6462), 1, + ACTIONS(6639), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6464), 1, + ACTIONS(6641), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6466), 1, + ACTIONS(6643), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6468), 1, + ACTIONS(6645), 1, aux_sym__val_number_decimal_token4, - STATE(3465), 1, + STATE(3529), 1, sym__val_number, - STATE(3483), 1, + STATE(3537), 1, sym__val_number_decimal, - STATE(3769), 1, + STATE(3823), 1, sym_comment, - STATE(3829), 1, + STATE(3898), 1, sym_expr_parenthesized, - STATE(4039), 1, + STATE(4106), 1, aux_sym_shebang_repeat1, - STATE(4267), 1, + STATE(4336), 1, sym_val_number, - STATE(4343), 1, + STATE(4467), 1, sym__binary_predicate_parenthesized, - STATE(4344), 1, + STATE(4479), 1, sym__predicate, - STATE(4358), 1, + STATE(4482), 1, sym__expr_unary_minus, - ACTIONS(6450), 2, + ACTIONS(6627), 2, anon_sym_true, anon_sym_false, - STATE(4480), 2, + STATE(4377), 2, sym_expr_unary, sym_val_bool, - STATE(5134), 2, + STATE(5196), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6452), 5, + ACTIONS(6629), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [152917] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4614), 1, - aux_sym_unquoted_token2, - STATE(3770), 1, - sym_comment, - ACTIONS(1572), 29, - anon_sym_LBRACE, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [152958] = 25, - ACTIONS(247), 1, + [150563] = 25, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3403), 1, + ACTIONS(3468), 1, anon_sym_DASH, - ACTIONS(3409), 1, + ACTIONS(3474), 1, aux_sym_expr_unary_token1, - ACTIONS(3421), 1, + ACTIONS(3486), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6448), 1, + ACTIONS(6625), 1, sym_identifier, - ACTIONS(6454), 1, + ACTIONS(6631), 1, sym__newline, - ACTIONS(6456), 1, + ACTIONS(6633), 1, anon_sym_LPAREN, - ACTIONS(6458), 1, + ACTIONS(6635), 1, anon_sym_DOLLAR, - ACTIONS(6462), 1, + ACTIONS(6639), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6464), 1, + ACTIONS(6641), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6466), 1, + ACTIONS(6643), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6468), 1, + ACTIONS(6645), 1, aux_sym__val_number_decimal_token4, - STATE(3465), 1, + STATE(3529), 1, sym__val_number, - STATE(3483), 1, + STATE(3537), 1, sym__val_number_decimal, - STATE(3755), 1, - aux_sym_shebang_repeat1, - STATE(3771), 1, + STATE(3824), 1, sym_comment, - STATE(3829), 1, + STATE(3898), 1, sym_expr_parenthesized, - STATE(4267), 1, + STATE(4106), 1, + aux_sym_shebang_repeat1, + STATE(4336), 1, sym_val_number, - STATE(4358), 1, - sym__expr_unary_minus, - STATE(4420), 1, + STATE(4456), 1, sym__binary_predicate_parenthesized, - STATE(4421), 1, + STATE(4482), 1, + sym__expr_unary_minus, + STATE(4540), 1, sym__predicate, - ACTIONS(6450), 2, + ACTIONS(6627), 2, anon_sym_true, anon_sym_false, - STATE(4480), 2, + STATE(4377), 2, sym_expr_unary, sym_val_bool, - STATE(5134), 2, + STATE(5196), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6452), 5, + ACTIONS(6629), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [153041] = 25, - ACTIONS(247), 1, + [150646] = 25, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3403), 1, + ACTIONS(3468), 1, anon_sym_DASH, - ACTIONS(3409), 1, + ACTIONS(3474), 1, aux_sym_expr_unary_token1, - ACTIONS(3421), 1, + ACTIONS(3486), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6448), 1, + ACTIONS(6625), 1, sym_identifier, - ACTIONS(6454), 1, + ACTIONS(6631), 1, sym__newline, - ACTIONS(6456), 1, + ACTIONS(6633), 1, anon_sym_LPAREN, - ACTIONS(6458), 1, + ACTIONS(6635), 1, anon_sym_DOLLAR, - ACTIONS(6462), 1, + ACTIONS(6639), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6464), 1, + ACTIONS(6641), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6466), 1, + ACTIONS(6643), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6468), 1, + ACTIONS(6645), 1, aux_sym__val_number_decimal_token4, - STATE(3465), 1, + STATE(3529), 1, sym__val_number, - STATE(3483), 1, + STATE(3537), 1, sym__val_number_decimal, - STATE(3758), 1, - aux_sym_shebang_repeat1, - STATE(3772), 1, + STATE(3825), 1, sym_comment, - STATE(3829), 1, + STATE(3898), 1, sym_expr_parenthesized, - STATE(4267), 1, + STATE(4106), 1, + aux_sym_shebang_repeat1, + STATE(4336), 1, sym_val_number, - STATE(4358), 1, + STATE(4412), 1, + sym__predicate, + STATE(4482), 1, sym__expr_unary_minus, - STATE(4424), 1, + STATE(4584), 1, sym__binary_predicate_parenthesized, - STATE(4427), 1, - sym__predicate, - ACTIONS(6450), 2, + ACTIONS(6627), 2, anon_sym_true, anon_sym_false, - STATE(4480), 2, + STATE(4377), 2, sym_expr_unary, sym_val_bool, - STATE(5134), 2, + STATE(5196), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6452), 5, + ACTIONS(6629), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [153124] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3773), 1, - sym_comment, - STATE(4810), 1, - sym_redirection, - ACTIONS(6596), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(6598), 8, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(6594), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [153169] = 17, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5245), 1, - sym__newline, - ACTIONS(6518), 1, - aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6520), 1, - aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6522), 1, - aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6524), 1, - aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6526), 1, - aux_sym_expr_binary_parenthesized_token17, - ACTIONS(6600), 1, - aux_sym_expr_binary_parenthesized_token18, - STATE(3774), 1, - sym_comment, - STATE(3778), 1, - aux_sym_shebang_repeat1, - ACTIONS(6504), 2, - aux_sym_expr_binary_parenthesized_token1, - aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6508), 2, - aux_sym_expr_binary_parenthesized_token7, - aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6510), 2, - aux_sym_expr_binary_parenthesized_token9, - aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6516), 2, - aux_sym_expr_binary_parenthesized_token11, - aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6506), 4, - aux_sym_expr_binary_parenthesized_token3, - aux_sym_expr_binary_parenthesized_token4, - aux_sym_expr_binary_parenthesized_token5, - aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6512), 4, - aux_sym_expr_binary_parenthesized_token19, - aux_sym_expr_binary_parenthesized_token20, - aux_sym_expr_binary_parenthesized_token21, - aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6514), 6, - aux_sym_expr_binary_parenthesized_token23, - aux_sym_expr_binary_parenthesized_token24, - aux_sym_expr_binary_parenthesized_token25, - aux_sym_expr_binary_parenthesized_token26, - aux_sym_expr_binary_parenthesized_token27, - aux_sym_expr_binary_parenthesized_token28, - [153236] = 25, - ACTIONS(247), 1, + [150729] = 25, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3403), 1, + ACTIONS(3468), 1, anon_sym_DASH, - ACTIONS(3409), 1, + ACTIONS(3474), 1, aux_sym_expr_unary_token1, - ACTIONS(3421), 1, + ACTIONS(3486), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6448), 1, + ACTIONS(6625), 1, sym_identifier, - ACTIONS(6454), 1, + ACTIONS(6631), 1, sym__newline, - ACTIONS(6456), 1, + ACTIONS(6633), 1, anon_sym_LPAREN, - ACTIONS(6458), 1, + ACTIONS(6635), 1, anon_sym_DOLLAR, - ACTIONS(6462), 1, + ACTIONS(6639), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6464), 1, + ACTIONS(6641), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6466), 1, + ACTIONS(6643), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6468), 1, + ACTIONS(6645), 1, aux_sym__val_number_decimal_token4, - STATE(3465), 1, + STATE(3529), 1, sym__val_number, - STATE(3483), 1, + STATE(3537), 1, sym__val_number_decimal, - STATE(3775), 1, - sym_comment, - STATE(3784), 1, + STATE(3816), 1, aux_sym_shebang_repeat1, - STATE(3829), 1, + STATE(3826), 1, + sym_comment, + STATE(3898), 1, sym_expr_parenthesized, - STATE(4267), 1, + STATE(4336), 1, sym_val_number, - STATE(4358), 1, + STATE(4482), 1, sym__expr_unary_minus, - STATE(4422), 1, + STATE(4535), 1, sym__binary_predicate_parenthesized, - STATE(4423), 1, + STATE(4536), 1, sym__predicate, - ACTIONS(6450), 2, + ACTIONS(6627), 2, anon_sym_true, anon_sym_false, - STATE(4480), 2, + STATE(4377), 2, sym_expr_unary, sym_val_bool, - STATE(5134), 2, + STATE(5196), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6452), 5, + ACTIONS(6629), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [153319] = 25, - ACTIONS(247), 1, + [150812] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3827), 1, + sym_comment, + ACTIONS(1670), 3, + anon_sym_GT, + anon_sym_LT2, + anon_sym_DOT_DOT2, + ACTIONS(1672), 27, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_in, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [150853] = 25, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3403), 1, + ACTIONS(3468), 1, anon_sym_DASH, - ACTIONS(3409), 1, + ACTIONS(3474), 1, aux_sym_expr_unary_token1, - ACTIONS(3421), 1, + ACTIONS(3486), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6448), 1, + ACTIONS(6625), 1, sym_identifier, - ACTIONS(6454), 1, + ACTIONS(6631), 1, sym__newline, - ACTIONS(6456), 1, + ACTIONS(6633), 1, anon_sym_LPAREN, - ACTIONS(6458), 1, + ACTIONS(6635), 1, anon_sym_DOLLAR, - ACTIONS(6462), 1, + ACTIONS(6639), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6464), 1, + ACTIONS(6641), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6466), 1, + ACTIONS(6643), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6468), 1, + ACTIONS(6645), 1, aux_sym__val_number_decimal_token4, - STATE(3465), 1, + STATE(3529), 1, sym__val_number, - STATE(3483), 1, + STATE(3537), 1, sym__val_number_decimal, - STATE(3751), 1, - aux_sym_shebang_repeat1, - STATE(3776), 1, + STATE(3828), 1, sym_comment, - STATE(3829), 1, + STATE(3842), 1, + aux_sym_shebang_repeat1, + STATE(3898), 1, sym_expr_parenthesized, - STATE(4267), 1, + STATE(4336), 1, sym_val_number, - STATE(4358), 1, - sym__expr_unary_minus, - STATE(4444), 1, + STATE(4424), 1, sym__binary_predicate_parenthesized, - STATE(4453), 1, + STATE(4441), 1, sym__predicate, - ACTIONS(6450), 2, + STATE(4482), 1, + sym__expr_unary_minus, + ACTIONS(6627), 2, anon_sym_true, anon_sym_false, - STATE(4480), 2, + STATE(4377), 2, sym_expr_unary, sym_val_bool, - STATE(5134), 2, + STATE(5196), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6452), 5, + ACTIONS(6629), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [153402] = 25, - ACTIONS(247), 1, + [150936] = 17, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5410), 1, + sym__newline, + ACTIONS(6673), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6675), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6677), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6683), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(6685), 1, + aux_sym_expr_binary_parenthesized_token17, + ACTIONS(6743), 1, + aux_sym_expr_binary_parenthesized_token18, + STATE(3829), 1, + sym_comment, + STATE(3831), 1, + aux_sym_shebang_repeat1, + ACTIONS(6659), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6663), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6665), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6671), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6661), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6667), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6669), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [151003] = 25, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3403), 1, + ACTIONS(3486), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(3518), 1, anon_sym_DASH, - ACTIONS(3409), 1, + ACTIONS(3524), 1, aux_sym_expr_unary_token1, - ACTIONS(3421), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(6448), 1, + ACTIONS(6625), 1, sym_identifier, - ACTIONS(6454), 1, - sym__newline, - ACTIONS(6456), 1, - anon_sym_LPAREN, - ACTIONS(6458), 1, + ACTIONS(6635), 1, anon_sym_DOLLAR, - ACTIONS(6462), 1, + ACTIONS(6639), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6464), 1, + ACTIONS(6641), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6466), 1, + ACTIONS(6643), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6468), 1, + ACTIONS(6645), 1, aux_sym__val_number_decimal_token4, - STATE(3465), 1, + ACTIONS(6747), 1, + anon_sym_LPAREN, + ACTIONS(6749), 1, + anon_sym_LBRACE, + STATE(3529), 1, sym__val_number, - STATE(3483), 1, + STATE(3537), 1, sym__val_number_decimal, - STATE(3752), 1, - aux_sym_shebang_repeat1, - STATE(3777), 1, + STATE(3830), 1, sym_comment, - STATE(3829), 1, + STATE(3902), 1, sym_expr_parenthesized, - STATE(4267), 1, + STATE(4336), 1, sym_val_number, - STATE(4358), 1, - sym__expr_unary_minus, - STATE(4466), 1, - sym__binary_predicate_parenthesized, - STATE(4467), 1, + STATE(4589), 1, sym__predicate, - ACTIONS(6450), 2, + STATE(4619), 1, + sym__expr_unary_minus, + STATE(4687), 1, + sym__binary_predicate, + STATE(5121), 1, + sym_val_closure, + ACTIONS(6745), 2, anon_sym_true, anon_sym_false, - STATE(4480), 2, + STATE(4590), 2, sym_expr_unary, sym_val_bool, - STATE(5134), 2, + STATE(5107), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6452), 5, + ACTIONS(6629), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [153485] = 17, - ACTIONS(247), 1, + [151086] = 17, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5245), 1, + ACTIONS(5410), 1, sym__newline, - ACTIONS(6542), 1, + ACTIONS(6711), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6544), 1, + ACTIONS(6713), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6546), 1, + ACTIONS(6715), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6548), 1, + ACTIONS(6717), 1, aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6550), 1, + ACTIONS(6719), 1, aux_sym_expr_binary_parenthesized_token17, - ACTIONS(6602), 1, + ACTIONS(6751), 1, aux_sym_expr_binary_parenthesized_token18, - STATE(2043), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(3778), 1, + STATE(3831), 1, sym_comment, - ACTIONS(6528), 2, + ACTIONS(6649), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6532), 2, + ACTIONS(6653), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6534), 2, + ACTIONS(6655), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6540), 2, + ACTIONS(6701), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6530), 4, + ACTIONS(6651), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6536), 4, + ACTIONS(6695), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6538), 6, + ACTIONS(6657), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [153552] = 25, - ACTIONS(247), 1, + [151153] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3832), 1, + sym_comment, + STATE(5027), 1, + sym_redirection, + ACTIONS(6755), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(6757), 8, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(6753), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [151198] = 25, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3403), 1, + ACTIONS(3468), 1, anon_sym_DASH, - ACTIONS(3409), 1, + ACTIONS(3474), 1, aux_sym_expr_unary_token1, - ACTIONS(3421), 1, + ACTIONS(3486), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6448), 1, + ACTIONS(6625), 1, sym_identifier, - ACTIONS(6454), 1, - sym__newline, - ACTIONS(6456), 1, + ACTIONS(6633), 1, anon_sym_LPAREN, - ACTIONS(6458), 1, + ACTIONS(6635), 1, anon_sym_DOLLAR, - ACTIONS(6462), 1, + ACTIONS(6637), 1, + anon_sym_LBRACE, + ACTIONS(6639), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6464), 1, + ACTIONS(6641), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6466), 1, + ACTIONS(6643), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6468), 1, + ACTIONS(6645), 1, aux_sym__val_number_decimal_token4, - STATE(3465), 1, + STATE(3529), 1, sym__val_number, - STATE(3483), 1, + STATE(3537), 1, sym__val_number_decimal, - STATE(3757), 1, - aux_sym_shebang_repeat1, - STATE(3779), 1, + STATE(3833), 1, sym_comment, - STATE(3829), 1, + STATE(3898), 1, sym_expr_parenthesized, - STATE(4267), 1, + STATE(4336), 1, sym_val_number, - STATE(4358), 1, - sym__expr_unary_minus, STATE(4473), 1, - sym__binary_predicate_parenthesized, - STATE(4475), 1, + sym__binary_predicate, + STATE(4474), 1, sym__predicate, - ACTIONS(6450), 2, + STATE(4482), 1, + sym__expr_unary_minus, + STATE(5024), 1, + sym_val_closure, + ACTIONS(6627), 2, anon_sym_true, anon_sym_false, - STATE(4480), 2, + STATE(4377), 2, sym_expr_unary, sym_val_bool, - STATE(5134), 2, + STATE(5196), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6452), 5, + ACTIONS(6629), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [153635] = 25, - ACTIONS(247), 1, + [151281] = 17, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3403), 1, - anon_sym_DASH, - ACTIONS(3409), 1, - aux_sym_expr_unary_token1, - ACTIONS(3421), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(6448), 1, - sym_identifier, - ACTIONS(6454), 1, + ACTIONS(5361), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(5363), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(5365), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(5401), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(5410), 1, sym__newline, - ACTIONS(6456), 1, - anon_sym_LPAREN, - ACTIONS(6458), 1, - anon_sym_DOLLAR, - ACTIONS(6462), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6464), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6466), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6468), 1, - aux_sym__val_number_decimal_token4, - STATE(3465), 1, - sym__val_number, - STATE(3483), 1, - sym__val_number_decimal, - STATE(3760), 1, - aux_sym_shebang_repeat1, - STATE(3780), 1, + ACTIONS(5412), 1, + aux_sym_expr_binary_parenthesized_token17, + ACTIONS(6759), 1, + aux_sym_expr_binary_parenthesized_token18, + STATE(3834), 1, sym_comment, - STATE(3829), 1, - sym_expr_parenthesized, - STATE(4267), 1, - sym_val_number, - STATE(4358), 1, - sym__expr_unary_minus, - STATE(4484), 1, - sym__binary_predicate_parenthesized, - STATE(4485), 1, - sym__predicate, - ACTIONS(6450), 2, - anon_sym_true, - anon_sym_false, - STATE(4480), 2, - sym_expr_unary, - sym_val_bool, - STATE(5134), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6452), 5, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - [153718] = 25, - ACTIONS(247), 1, + STATE(3845), 1, + aux_sym_shebang_repeat1, + ACTIONS(5319), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(5355), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(5357), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(5359), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(5353), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(5367), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(5369), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [151348] = 25, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3403), 1, + ACTIONS(3468), 1, anon_sym_DASH, - ACTIONS(3409), 1, + ACTIONS(3474), 1, aux_sym_expr_unary_token1, - ACTIONS(3421), 1, + ACTIONS(3486), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6448), 1, + ACTIONS(6625), 1, sym_identifier, - ACTIONS(6454), 1, + ACTIONS(6631), 1, sym__newline, - ACTIONS(6456), 1, + ACTIONS(6633), 1, anon_sym_LPAREN, - ACTIONS(6458), 1, + ACTIONS(6635), 1, anon_sym_DOLLAR, - ACTIONS(6462), 1, + ACTIONS(6639), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6464), 1, + ACTIONS(6641), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6466), 1, + ACTIONS(6643), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6468), 1, + ACTIONS(6645), 1, aux_sym__val_number_decimal_token4, - STATE(3465), 1, + STATE(3529), 1, sym__val_number, - STATE(3483), 1, + STATE(3537), 1, sym__val_number_decimal, - STATE(3762), 1, - aux_sym_shebang_repeat1, - STATE(3781), 1, + STATE(3835), 1, sym_comment, - STATE(3829), 1, + STATE(3898), 1, sym_expr_parenthesized, - STATE(4267), 1, + STATE(4106), 1, + aux_sym_shebang_repeat1, + STATE(4336), 1, sym_val_number, - STATE(4358), 1, + STATE(4482), 1, sym__expr_unary_minus, - STATE(4487), 1, + STATE(4525), 1, sym__binary_predicate_parenthesized, - STATE(4488), 1, + STATE(4526), 1, sym__predicate, - ACTIONS(6450), 2, + ACTIONS(6627), 2, anon_sym_true, anon_sym_false, - STATE(4480), 2, + STATE(4377), 2, sym_expr_unary, sym_val_bool, - STATE(5134), 2, + STATE(5196), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6452), 5, + ACTIONS(6629), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [153801] = 6, - ACTIONS(247), 1, + [151431] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3782), 1, + ACTIONS(4770), 1, + aux_sym_unquoted_token2, + STATE(3836), 1, sym_comment, - STATE(4950), 1, + ACTIONS(1640), 29, + anon_sym_LBRACE, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [151472] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3837), 1, + sym_comment, + STATE(4869), 1, sym_redirection, - ACTIONS(6596), 8, + ACTIONS(6755), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -349605,7 +356186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(6598), 8, + ACTIONS(6757), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -349614,7 +356195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(6604), 13, + ACTIONS(6761), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -349628,182 +356209,583 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [153846] = 17, - ACTIONS(247), 1, + [151517] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3838), 1, + sym_comment, + ACTIONS(2105), 3, + anon_sym_GT, + anon_sym_LT2, + anon_sym_DOT_DOT2, + ACTIONS(2107), 27, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_in, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [151558] = 17, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5245), 1, + ACTIONS(5410), 1, sym__newline, - ACTIONS(6136), 1, + ACTIONS(6307), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(6140), 1, + ACTIONS(6309), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(6142), 1, + ACTIONS(6311), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(6152), 1, + ACTIONS(6313), 1, aux_sym_expr_binary_parenthesized_token16, - ACTIONS(6154), 1, + ACTIONS(6315), 1, aux_sym_expr_binary_parenthesized_token17, - ACTIONS(6606), 1, + ACTIONS(6763), 1, aux_sym_expr_binary_parenthesized_token18, - STATE(3746), 1, + STATE(3839), 1, + sym_comment, + STATE(3841), 1, aux_sym_shebang_repeat1, - STATE(3783), 1, + ACTIONS(6293), 2, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + ACTIONS(6297), 2, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + ACTIONS(6299), 2, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + ACTIONS(6305), 2, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + ACTIONS(6295), 4, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + ACTIONS(6301), 4, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + ACTIONS(6303), 6, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [151625] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(2293), 1, + sym__newline, + STATE(3840), 1, + sym_comment, + ACTIONS(2297), 29, + anon_sym_LBRACE, + aux_sym_expr_binary_parenthesized_token1, + aux_sym_expr_binary_parenthesized_token2, + aux_sym_expr_binary_parenthesized_token3, + aux_sym_expr_binary_parenthesized_token4, + aux_sym_expr_binary_parenthesized_token5, + aux_sym_expr_binary_parenthesized_token6, + aux_sym_expr_binary_parenthesized_token7, + aux_sym_expr_binary_parenthesized_token8, + aux_sym_expr_binary_parenthesized_token9, + aux_sym_expr_binary_parenthesized_token10, + aux_sym_expr_binary_parenthesized_token11, + aux_sym_expr_binary_parenthesized_token12, + aux_sym_expr_binary_parenthesized_token13, + aux_sym_expr_binary_parenthesized_token14, + aux_sym_expr_binary_parenthesized_token15, + aux_sym_expr_binary_parenthesized_token16, + aux_sym_expr_binary_parenthesized_token17, + aux_sym_expr_binary_parenthesized_token18, + aux_sym_expr_binary_parenthesized_token19, + aux_sym_expr_binary_parenthesized_token20, + aux_sym_expr_binary_parenthesized_token21, + aux_sym_expr_binary_parenthesized_token22, + aux_sym_expr_binary_parenthesized_token23, + aux_sym_expr_binary_parenthesized_token24, + aux_sym_expr_binary_parenthesized_token25, + aux_sym_expr_binary_parenthesized_token26, + aux_sym_expr_binary_parenthesized_token27, + aux_sym_expr_binary_parenthesized_token28, + [151666] = 17, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5410), 1, + sym__newline, + ACTIONS(6333), 1, + aux_sym_expr_binary_parenthesized_token13, + ACTIONS(6335), 1, + aux_sym_expr_binary_parenthesized_token14, + ACTIONS(6337), 1, + aux_sym_expr_binary_parenthesized_token15, + ACTIONS(6339), 1, + aux_sym_expr_binary_parenthesized_token16, + ACTIONS(6341), 1, + aux_sym_expr_binary_parenthesized_token17, + ACTIONS(6765), 1, + aux_sym_expr_binary_parenthesized_token18, + STATE(2104), 1, + aux_sym_shebang_repeat1, + STATE(3841), 1, sym_comment, - ACTIONS(6110), 2, + ACTIONS(6319), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(6114), 2, + ACTIONS(6323), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(6116), 2, + ACTIONS(6325), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(6134), 2, + ACTIONS(6331), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(6112), 4, + ACTIONS(6321), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(6132), 4, + ACTIONS(6327), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(6118), 6, + ACTIONS(6329), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [153913] = 25, - ACTIONS(247), 1, + [151733] = 25, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3403), 1, + ACTIONS(3468), 1, anon_sym_DASH, - ACTIONS(3409), 1, + ACTIONS(3474), 1, aux_sym_expr_unary_token1, - ACTIONS(3421), 1, + ACTIONS(3486), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6448), 1, + ACTIONS(6625), 1, sym_identifier, - ACTIONS(6454), 1, + ACTIONS(6631), 1, sym__newline, - ACTIONS(6456), 1, + ACTIONS(6633), 1, anon_sym_LPAREN, - ACTIONS(6458), 1, + ACTIONS(6635), 1, anon_sym_DOLLAR, - ACTIONS(6462), 1, + ACTIONS(6639), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6464), 1, + ACTIONS(6641), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6466), 1, + ACTIONS(6643), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6468), 1, + ACTIONS(6645), 1, aux_sym__val_number_decimal_token4, - STATE(3465), 1, + STATE(3529), 1, sym__val_number, - STATE(3483), 1, + STATE(3537), 1, sym__val_number_decimal, - STATE(3784), 1, + STATE(3842), 1, sym_comment, - STATE(3829), 1, + STATE(3898), 1, sym_expr_parenthesized, - STATE(4039), 1, + STATE(4106), 1, aux_sym_shebang_repeat1, - STATE(4267), 1, + STATE(4336), 1, sym_val_number, - STATE(4319), 1, + STATE(4445), 1, sym__binary_predicate_parenthesized, - STATE(4322), 1, + STATE(4452), 1, sym__predicate, - STATE(4358), 1, + STATE(4482), 1, sym__expr_unary_minus, - ACTIONS(6450), 2, + ACTIONS(6627), 2, + anon_sym_true, + anon_sym_false, + STATE(4377), 2, + sym_expr_unary, + sym_val_bool, + STATE(5196), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(6629), 5, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + [151816] = 25, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(3468), 1, + anon_sym_DASH, + ACTIONS(3474), 1, + aux_sym_expr_unary_token1, + ACTIONS(3486), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(6625), 1, + sym_identifier, + ACTIONS(6631), 1, + sym__newline, + ACTIONS(6633), 1, + anon_sym_LPAREN, + ACTIONS(6635), 1, + anon_sym_DOLLAR, + ACTIONS(6639), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6641), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6643), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6645), 1, + aux_sym__val_number_decimal_token4, + STATE(3529), 1, + sym__val_number, + STATE(3537), 1, + sym__val_number_decimal, + STATE(3809), 1, + aux_sym_shebang_repeat1, + STATE(3843), 1, + sym_comment, + STATE(3898), 1, + sym_expr_parenthesized, + STATE(4336), 1, + sym_val_number, + STATE(4463), 1, + sym__binary_predicate_parenthesized, + STATE(4482), 1, + sym__expr_unary_minus, + STATE(4546), 1, + sym__predicate, + ACTIONS(6627), 2, + anon_sym_true, + anon_sym_false, + STATE(4377), 2, + sym_expr_unary, + sym_val_bool, + STATE(5196), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(6629), 5, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + [151899] = 25, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(3468), 1, + anon_sym_DASH, + ACTIONS(3474), 1, + aux_sym_expr_unary_token1, + ACTIONS(3486), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(6625), 1, + sym_identifier, + ACTIONS(6631), 1, + sym__newline, + ACTIONS(6633), 1, + anon_sym_LPAREN, + ACTIONS(6635), 1, + anon_sym_DOLLAR, + ACTIONS(6639), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6641), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6643), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6645), 1, + aux_sym__val_number_decimal_token4, + STATE(3529), 1, + sym__val_number, + STATE(3537), 1, + sym__val_number_decimal, + STATE(3805), 1, + aux_sym_shebang_repeat1, + STATE(3844), 1, + sym_comment, + STATE(3898), 1, + sym_expr_parenthesized, + STATE(4336), 1, + sym_val_number, + STATE(4482), 1, + sym__expr_unary_minus, + STATE(4552), 1, + sym__binary_predicate_parenthesized, + STATE(4569), 1, + sym__predicate, + ACTIONS(6627), 2, anon_sym_true, anon_sym_false, - STATE(4480), 2, + STATE(4377), 2, sym_expr_unary, sym_val_bool, - STATE(5134), 2, + STATE(5196), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6452), 5, + ACTIONS(6629), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [153996] = 17, - ACTIONS(247), 1, + [151982] = 17, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5245), 1, + ACTIONS(5410), 1, sym__newline, - ACTIONS(5276), 1, + ACTIONS(5435), 1, aux_sym_expr_binary_parenthesized_token13, - ACTIONS(5278), 1, + ACTIONS(5445), 1, aux_sym_expr_binary_parenthesized_token14, - ACTIONS(5280), 1, + ACTIONS(5447), 1, aux_sym_expr_binary_parenthesized_token15, - ACTIONS(5282), 1, + ACTIONS(5449), 1, aux_sym_expr_binary_parenthesized_token16, - ACTIONS(5305), 1, + ACTIONS(5451), 1, aux_sym_expr_binary_parenthesized_token17, - ACTIONS(6608), 1, + ACTIONS(6767), 1, aux_sym_expr_binary_parenthesized_token18, - STATE(2043), 1, + STATE(2104), 1, aux_sym_shebang_repeat1, - STATE(3785), 1, + STATE(3845), 1, sym_comment, - ACTIONS(5222), 2, + ACTIONS(5345), 2, aux_sym_expr_binary_parenthesized_token1, aux_sym_expr_binary_parenthesized_token2, - ACTIONS(5226), 2, + ACTIONS(5349), 2, aux_sym_expr_binary_parenthesized_token7, aux_sym_expr_binary_parenthesized_token8, - ACTIONS(5228), 2, + ACTIONS(5351), 2, aux_sym_expr_binary_parenthesized_token9, aux_sym_expr_binary_parenthesized_token10, - ACTIONS(5274), 2, + ACTIONS(5414), 2, aux_sym_expr_binary_parenthesized_token11, aux_sym_expr_binary_parenthesized_token12, - ACTIONS(5224), 4, + ACTIONS(5347), 4, aux_sym_expr_binary_parenthesized_token3, aux_sym_expr_binary_parenthesized_token4, aux_sym_expr_binary_parenthesized_token5, aux_sym_expr_binary_parenthesized_token6, - ACTIONS(5284), 4, + ACTIONS(5406), 4, aux_sym_expr_binary_parenthesized_token19, aux_sym_expr_binary_parenthesized_token20, aux_sym_expr_binary_parenthesized_token21, aux_sym_expr_binary_parenthesized_token22, - ACTIONS(5286), 6, + ACTIONS(5408), 6, aux_sym_expr_binary_parenthesized_token23, aux_sym_expr_binary_parenthesized_token24, aux_sym_expr_binary_parenthesized_token25, aux_sym_expr_binary_parenthesized_token26, aux_sym_expr_binary_parenthesized_token27, aux_sym_expr_binary_parenthesized_token28, - [154063] = 6, - ACTIONS(247), 1, + [152049] = 9, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3786), 1, + STATE(3846), 1, + sym_comment, + ACTIONS(6769), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6773), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6775), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6771), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6777), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(6779), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(5131), 9, + anon_sym_LBRACE, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + [152099] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3847), 1, + sym_comment, + STATE(5138), 1, + sym_redirection, + ACTIONS(6755), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(6757), 8, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(6781), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [152143] = 12, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6785), 1, + aux_sym_expr_binary_token13, + ACTIONS(6787), 1, + aux_sym_expr_binary_token14, + STATE(3848), 1, + sym_comment, + ACTIONS(6769), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6773), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6775), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6783), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(6771), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6777), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(5131), 5, + anon_sym_LBRACE, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + ACTIONS(6779), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [152199] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3849), 1, sym_comment, - ACTIONS(6610), 2, + ACTIONS(6769), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6614), 2, + ACTIONS(6773), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6612), 4, + ACTIONS(6775), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6771), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(5052), 21, + ACTIONS(6779), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + ACTIONS(5131), 13, + anon_sym_LBRACE, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + [152247] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3850), 1, + sym_comment, + ACTIONS(6769), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5131), 27, anon_sym_LBRACE, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, aux_sym_expr_binary_token11, @@ -349824,71 +356806,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [154107] = 15, - ACTIONS(247), 1, + [152287] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6620), 1, - aux_sym_expr_binary_token13, - ACTIONS(6622), 1, - aux_sym_expr_binary_token14, - ACTIONS(6624), 1, - aux_sym_expr_binary_token15, - ACTIONS(6626), 1, - aux_sym_expr_binary_token16, - ACTIONS(6628), 1, - aux_sym_expr_binary_token17, - STATE(3787), 1, + STATE(3851), 1, sym_comment, - ACTIONS(5052), 2, - anon_sym_LBRACE, - aux_sym_expr_binary_token18, - ACTIONS(6610), 2, + ACTIONS(6769), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6614), 2, + ACTIONS(6773), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6616), 2, + ACTIONS(6775), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6618), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(6612), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6630), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(6632), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [154169] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3788), 1, - sym_comment, - ACTIONS(6634), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5052), 27, - anon_sym_EQ_GT, + ACTIONS(6771), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, + ACTIONS(5131), 19, + anon_sym_LBRACE, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, aux_sym_expr_binary_token13, @@ -349907,14 +356845,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [154209] = 6, - ACTIONS(247), 1, + [152333] = 6, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3789), 1, + STATE(3852), 1, sym_comment, - STATE(5078), 1, + STATE(5170), 1, sym_redirection, - ACTIONS(6596), 8, + ACTIONS(6789), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -349923,7 +356861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(6598), 8, + ACTIONS(6791), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -349932,7 +356870,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(6636), 12, + ACTIONS(6753), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -349944,22 +356883,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [154253] = 5, - ACTIONS(247), 1, + [152377] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3790), 1, + STATE(3853), 1, sym_comment, - ACTIONS(6634), 2, + ACTIONS(6769), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6638), 4, + ACTIONS(6771), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(5052), 23, - anon_sym_EQ_GT, + ACTIONS(5131), 23, + anon_sym_LBRACE, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, aux_sym_expr_binary_token9, @@ -349982,95 +356920,95 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [154295] = 13, - ACTIONS(247), 1, + [152419] = 13, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6620), 1, + ACTIONS(6785), 1, aux_sym_expr_binary_token13, - ACTIONS(6622), 1, + ACTIONS(6787), 1, aux_sym_expr_binary_token14, - ACTIONS(6624), 1, + ACTIONS(6793), 1, aux_sym_expr_binary_token15, - STATE(3791), 1, + STATE(3854), 1, sym_comment, - ACTIONS(6610), 2, + ACTIONS(6769), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6614), 2, + ACTIONS(6773), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6616), 2, + ACTIONS(6775), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6618), 2, + ACTIONS(6783), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(5052), 4, + ACTIONS(5131), 4, anon_sym_LBRACE, aux_sym_expr_binary_token16, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - ACTIONS(6612), 4, + ACTIONS(6771), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6630), 4, + ACTIONS(6777), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6632), 6, + ACTIONS(6779), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [154353] = 6, - ACTIONS(247), 1, + [152477] = 6, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3792), 1, + STATE(3855), 1, sym_comment, - ACTIONS(6634), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6640), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6638), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5052), 21, - anon_sym_EQ_GT, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [154397] = 4, - ACTIONS(247), 1, + STATE(5185), 1, + sym_redirection, + ACTIONS(6789), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(6791), 8, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(6761), 12, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [152521] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3793), 1, + STATE(3856), 1, sym_comment, - ACTIONS(5130), 8, + ACTIONS(5230), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -350079,7 +357017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5126), 21, + ACTIONS(5226), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -350101,184 +357039,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [154437] = 9, - ACTIONS(247), 1, + [152561] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3794), 1, + STATE(3857), 1, sym_comment, - ACTIONS(6634), 2, + ACTIONS(6795), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6640), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6642), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6638), 4, + ACTIONS(5131), 27, + anon_sym_EQ_GT, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6644), 4, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6646), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - ACTIONS(5052), 9, - anon_sym_EQ_GT, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - [154487] = 10, - ACTIONS(247), 1, + [152601] = 10, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3795), 1, + STATE(3858), 1, sym_comment, - ACTIONS(6634), 2, + ACTIONS(6769), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6640), 2, + ACTIONS(6773), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6642), 2, + ACTIONS(6775), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6648), 2, + ACTIONS(6783), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(6638), 4, + ACTIONS(6771), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6644), 4, + ACTIONS(6777), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6646), 6, + ACTIONS(6779), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - ACTIONS(5052), 7, - anon_sym_EQ_GT, + ACTIONS(5131), 7, + anon_sym_LBRACE, aux_sym_expr_binary_token13, aux_sym_expr_binary_token14, aux_sym_expr_binary_token15, aux_sym_expr_binary_token16, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - [154539] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3796), 1, - sym_comment, - STATE(5063), 1, - sym_redirection, - ACTIONS(6596), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(6598), 8, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(6650), 12, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [154583] = 11, - ACTIONS(247), 1, + [152653] = 14, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6620), 1, + ACTIONS(6785), 1, aux_sym_expr_binary_token13, - STATE(3797), 1, + ACTIONS(6787), 1, + aux_sym_expr_binary_token14, + ACTIONS(6793), 1, + aux_sym_expr_binary_token15, + ACTIONS(6797), 1, + aux_sym_expr_binary_token16, + STATE(3859), 1, sym_comment, - ACTIONS(6610), 2, + ACTIONS(6769), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6614), 2, + ACTIONS(6773), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6616), 2, + ACTIONS(6775), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6618), 2, + ACTIONS(6783), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(6612), 4, + ACTIONS(5131), 3, + anon_sym_LBRACE, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + ACTIONS(6771), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6630), 4, + ACTIONS(6777), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(5052), 6, - anon_sym_LBRACE, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - ACTIONS(6632), 6, + ACTIONS(6779), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [154637] = 4, - ACTIONS(247), 1, + [152713] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3798), 1, + STATE(3860), 1, sym_comment, - ACTIONS(6610), 2, + ACTIONS(6795), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(5052), 27, - anon_sym_LBRACE, + ACTIONS(6799), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, + ACTIONS(5131), 23, + anon_sym_EQ_GT, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, aux_sym_expr_binary_token9, @@ -350301,204 +357200,124 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [154677] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3799), 1, - sym_comment, - STATE(5150), 1, - sym_redirection, - ACTIONS(6652), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(6654), 8, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(6594), 12, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [154721] = 11, - ACTIONS(247), 1, + [152755] = 15, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6656), 1, + ACTIONS(6785), 1, aux_sym_expr_binary_token13, - STATE(3800), 1, + ACTIONS(6787), 1, + aux_sym_expr_binary_token14, + ACTIONS(6793), 1, + aux_sym_expr_binary_token15, + ACTIONS(6797), 1, + aux_sym_expr_binary_token16, + ACTIONS(6801), 1, + aux_sym_expr_binary_token17, + STATE(3861), 1, sym_comment, - ACTIONS(6634), 2, + ACTIONS(5131), 2, + anon_sym_LBRACE, + aux_sym_expr_binary_token18, + ACTIONS(6769), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6640), 2, + ACTIONS(6773), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6642), 2, + ACTIONS(6775), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6648), 2, + ACTIONS(6783), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(6638), 4, + ACTIONS(6771), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6644), 4, + ACTIONS(6777), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(5052), 6, - anon_sym_EQ_GT, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - ACTIONS(6646), 6, + ACTIONS(6779), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [154775] = 12, - ACTIONS(247), 1, + [152817] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6656), 1, - aux_sym_expr_binary_token13, - ACTIONS(6658), 1, - aux_sym_expr_binary_token14, - STATE(3801), 1, + STATE(3862), 1, sym_comment, - ACTIONS(6634), 2, + ACTIONS(6795), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6640), 2, + ACTIONS(6803), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6642), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6648), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(6638), 4, + ACTIONS(6799), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6644), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(5052), 5, + ACTIONS(5131), 21, anon_sym_EQ_GT, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - ACTIONS(6646), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [154831] = 13, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6656), 1, - aux_sym_expr_binary_token13, - ACTIONS(6658), 1, - aux_sym_expr_binary_token14, - ACTIONS(6660), 1, - aux_sym_expr_binary_token15, - STATE(3802), 1, - sym_comment, - ACTIONS(6634), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6640), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6642), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6648), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(5052), 4, - anon_sym_EQ_GT, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, aux_sym_expr_binary_token16, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - ACTIONS(6638), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(6644), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6646), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [154889] = 8, - ACTIONS(247), 1, + [152861] = 9, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3803), 1, + STATE(3863), 1, sym_comment, - ACTIONS(6610), 2, + ACTIONS(6795), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6614), 2, + ACTIONS(6803), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6616), 2, + ACTIONS(6805), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6612), 4, + ACTIONS(6799), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6632), 6, + ACTIONS(6807), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(6809), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - ACTIONS(5052), 13, - anon_sym_LBRACE, + ACTIONS(5131), 9, + anon_sym_EQ_GT, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, aux_sym_expr_binary_token13, @@ -350507,283 +357326,200 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token16, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - [154937] = 14, - ACTIONS(247), 1, + [152911] = 10, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6656), 1, - aux_sym_expr_binary_token13, - ACTIONS(6658), 1, - aux_sym_expr_binary_token14, - ACTIONS(6660), 1, - aux_sym_expr_binary_token15, - ACTIONS(6662), 1, - aux_sym_expr_binary_token16, - STATE(3804), 1, + STATE(3864), 1, sym_comment, - ACTIONS(6634), 2, + ACTIONS(6795), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6640), 2, + ACTIONS(6803), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6642), 2, + ACTIONS(6805), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6648), 2, + ACTIONS(6811), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(5052), 3, - anon_sym_EQ_GT, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - ACTIONS(6638), 4, + ACTIONS(6799), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6644), 4, + ACTIONS(6807), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6646), 6, + ACTIONS(6809), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [154997] = 15, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6656), 1, + ACTIONS(5131), 7, + anon_sym_EQ_GT, aux_sym_expr_binary_token13, - ACTIONS(6658), 1, aux_sym_expr_binary_token14, - ACTIONS(6660), 1, aux_sym_expr_binary_token15, - ACTIONS(6662), 1, aux_sym_expr_binary_token16, - ACTIONS(6664), 1, aux_sym_expr_binary_token17, - STATE(3805), 1, - sym_comment, - ACTIONS(5052), 2, - anon_sym_EQ_GT, aux_sym_expr_binary_token18, - ACTIONS(6634), 2, + [152963] = 11, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6813), 1, + aux_sym_expr_binary_token13, + STATE(3865), 1, + sym_comment, + ACTIONS(6795), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6640), 2, + ACTIONS(6803), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6642), 2, + ACTIONS(6805), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6648), 2, + ACTIONS(6811), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(6638), 4, + ACTIONS(6799), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6644), 4, + ACTIONS(6807), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6646), 6, + ACTIONS(5131), 6, + anon_sym_EQ_GT, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + ACTIONS(6809), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [155059] = 8, - ACTIONS(247), 1, + [153017] = 12, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3806), 1, + ACTIONS(6813), 1, + aux_sym_expr_binary_token13, + ACTIONS(6815), 1, + aux_sym_expr_binary_token14, + STATE(3866), 1, sym_comment, - ACTIONS(6634), 2, + ACTIONS(6795), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6640), 2, + ACTIONS(6803), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6642), 2, + ACTIONS(6805), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6638), 4, + ACTIONS(6811), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(6799), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6646), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - ACTIONS(5052), 13, - anon_sym_EQ_GT, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, + ACTIONS(6807), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - [155107] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3807), 1, - sym_comment, - STATE(5023), 1, - sym_redirection, - ACTIONS(6652), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(6654), 8, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(6604), 12, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [155151] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3808), 1, - sym_comment, - ACTIONS(6634), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(6640), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(6642), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6638), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5052), 19, + ACTIONS(5131), 5, anon_sym_EQ_GT, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, aux_sym_expr_binary_token15, aux_sym_expr_binary_token16, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, + ACTIONS(6809), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [155197] = 10, - ACTIONS(247), 1, + [153073] = 13, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3809), 1, + ACTIONS(6813), 1, + aux_sym_expr_binary_token13, + ACTIONS(6815), 1, + aux_sym_expr_binary_token14, + ACTIONS(6817), 1, + aux_sym_expr_binary_token15, + STATE(3867), 1, sym_comment, - ACTIONS(6610), 2, + ACTIONS(6795), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6614), 2, + ACTIONS(6803), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6616), 2, + ACTIONS(6805), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6618), 2, + ACTIONS(6811), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(6612), 4, + ACTIONS(5131), 4, + anon_sym_EQ_GT, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + ACTIONS(6799), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6630), 4, + ACTIONS(6807), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6632), 6, + ACTIONS(6809), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - ACTIONS(5052), 7, - anon_sym_LBRACE, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, - [155249] = 7, - ACTIONS(247), 1, + [153131] = 6, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3810), 1, + STATE(3868), 1, sym_comment, - ACTIONS(6610), 2, + ACTIONS(6769), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6614), 2, + ACTIONS(6773), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6616), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(6612), 4, + ACTIONS(6771), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(5052), 19, + ACTIONS(5131), 21, anon_sym_LBRACE, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, aux_sym_expr_binary_token13, @@ -350802,122 +357538,127 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [155295] = 14, - ACTIONS(247), 1, + [153175] = 14, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6620), 1, + ACTIONS(6813), 1, aux_sym_expr_binary_token13, - ACTIONS(6622), 1, + ACTIONS(6815), 1, aux_sym_expr_binary_token14, - ACTIONS(6624), 1, + ACTIONS(6817), 1, aux_sym_expr_binary_token15, - ACTIONS(6626), 1, + ACTIONS(6819), 1, aux_sym_expr_binary_token16, - STATE(3811), 1, + STATE(3869), 1, sym_comment, - ACTIONS(6610), 2, + ACTIONS(6795), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6614), 2, + ACTIONS(6803), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6616), 2, + ACTIONS(6805), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6618), 2, + ACTIONS(6811), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(5052), 3, - anon_sym_LBRACE, + ACTIONS(5131), 3, + anon_sym_EQ_GT, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - ACTIONS(6612), 4, + ACTIONS(6799), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6630), 4, + ACTIONS(6807), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6632), 6, + ACTIONS(6809), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [155355] = 5, - ACTIONS(247), 1, + [153235] = 15, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3812), 1, + ACTIONS(6813), 1, + aux_sym_expr_binary_token13, + ACTIONS(6815), 1, + aux_sym_expr_binary_token14, + ACTIONS(6817), 1, + aux_sym_expr_binary_token15, + ACTIONS(6819), 1, + aux_sym_expr_binary_token16, + ACTIONS(6821), 1, + aux_sym_expr_binary_token17, + STATE(3870), 1, sym_comment, - ACTIONS(6610), 2, + ACTIONS(5131), 2, + anon_sym_EQ_GT, + aux_sym_expr_binary_token18, + ACTIONS(6795), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6612), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5052), 23, - anon_sym_LBRACE, + ACTIONS(6803), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, + ACTIONS(6805), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, + ACTIONS(6811), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - aux_sym_expr_binary_token13, - aux_sym_expr_binary_token14, - aux_sym_expr_binary_token15, - aux_sym_expr_binary_token16, - aux_sym_expr_binary_token17, - aux_sym_expr_binary_token18, + ACTIONS(6799), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6807), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, + ACTIONS(6809), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [155397] = 9, - ACTIONS(247), 1, + [153297] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3813), 1, + STATE(3871), 1, sym_comment, - ACTIONS(6610), 2, + ACTIONS(6795), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6614), 2, + ACTIONS(6803), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6616), 2, + ACTIONS(6805), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6612), 4, + ACTIONS(6799), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6630), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(6632), 6, + ACTIONS(6809), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - ACTIONS(5052), 9, - anon_sym_LBRACE, + ACTIONS(5131), 13, + anon_sym_EQ_GT, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, aux_sym_expr_binary_token13, @@ -350926,56 +357667,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_expr_binary_token16, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - [155447] = 12, - ACTIONS(247), 1, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + [153345] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6620), 1, - aux_sym_expr_binary_token13, - ACTIONS(6622), 1, - aux_sym_expr_binary_token14, - STATE(3814), 1, + STATE(3872), 1, sym_comment, - ACTIONS(6610), 2, + ACTIONS(6795), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6614), 2, + ACTIONS(6803), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6616), 2, + ACTIONS(6805), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6618), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(6612), 4, + ACTIONS(6799), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6630), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(5052), 5, - anon_sym_LBRACE, + ACTIONS(5131), 19, + anon_sym_EQ_GT, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + aux_sym_expr_binary_token13, + aux_sym_expr_binary_token14, aux_sym_expr_binary_token15, aux_sym_expr_binary_token16, aux_sym_expr_binary_token17, aux_sym_expr_binary_token18, - ACTIONS(6632), 6, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [155503] = 4, - ACTIONS(247), 1, + [153391] = 6, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3815), 1, + STATE(3873), 1, sym_comment, - ACTIONS(2291), 8, + STATE(5119), 1, + sym_redirection, + ACTIONS(6755), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -350984,8 +357726,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2295), 20, - ts_builtin_sym_end, + ACTIONS(6757), 8, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(6823), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -350997,236 +357747,202 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [155542] = 23, - ACTIONS(247), 1, + anon_sym_RPAREN, + [153435] = 11, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6785), 1, + aux_sym_expr_binary_token13, + STATE(3874), 1, + sym_comment, + ACTIONS(6769), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(6773), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(6775), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(6783), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(6771), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(6777), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(5131), 6, + anon_sym_LBRACE, + aux_sym_expr_binary_token14, + aux_sym_expr_binary_token15, + aux_sym_expr_binary_token16, + aux_sym_expr_binary_token17, + aux_sym_expr_binary_token18, + ACTIONS(6779), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [153489] = 23, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3403), 1, + ACTIONS(3468), 1, anon_sym_DASH, - ACTIONS(3409), 1, + ACTIONS(3474), 1, aux_sym_expr_unary_token1, - ACTIONS(3421), 1, + ACTIONS(3486), 1, aux_sym_cmd_identifier_token39, - ACTIONS(6448), 1, + ACTIONS(6625), 1, sym_identifier, - ACTIONS(6456), 1, + ACTIONS(6633), 1, anon_sym_LPAREN, - ACTIONS(6458), 1, + ACTIONS(6635), 1, anon_sym_DOLLAR, - ACTIONS(6462), 1, + ACTIONS(6639), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6464), 1, + ACTIONS(6641), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6466), 1, + ACTIONS(6643), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6468), 1, + ACTIONS(6645), 1, aux_sym__val_number_decimal_token4, - STATE(3465), 1, + STATE(3529), 1, sym__val_number, - STATE(3483), 1, + STATE(3537), 1, sym__val_number_decimal, - STATE(3816), 1, + STATE(3875), 1, sym_comment, - STATE(3829), 1, + STATE(3898), 1, sym_expr_parenthesized, - STATE(4267), 1, + STATE(4336), 1, sym_val_number, - STATE(4358), 1, + STATE(4482), 1, sym__expr_unary_minus, - STATE(4397), 1, + STATE(4578), 1, sym__binary_predicate, - STATE(4398), 1, + STATE(4579), 1, sym__predicate, - ACTIONS(6450), 2, + ACTIONS(6627), 2, anon_sym_true, anon_sym_false, - STATE(4480), 2, + STATE(4377), 2, sym_expr_unary, sym_val_bool, - STATE(5134), 2, + STATE(5196), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6452), 5, + ACTIONS(6629), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [155619] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3817), 1, - sym_comment, - ACTIONS(1778), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1786), 20, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [155658] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3818), 1, - sym_comment, - ACTIONS(2297), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(2301), 20, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [155697] = 15, - ACTIONS(247), 1, + [153566] = 15, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6158), 1, + ACTIONS(5540), 1, aux_sym_expr_binary_token13, - ACTIONS(6174), 1, + ACTIONS(5542), 1, aux_sym_expr_binary_token14, - ACTIONS(6176), 1, + ACTIONS(5544), 1, aux_sym_expr_binary_token15, - ACTIONS(6178), 1, + ACTIONS(5546), 1, aux_sym_expr_binary_token16, - ACTIONS(6180), 1, + ACTIONS(5574), 1, aux_sym_expr_binary_token17, - ACTIONS(6666), 1, + ACTIONS(6825), 1, aux_sym_expr_binary_token18, - STATE(3819), 1, + STATE(3876), 1, sym_comment, - ACTIONS(6128), 2, + ACTIONS(5530), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6144), 2, + ACTIONS(5534), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6146), 2, + ACTIONS(5536), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6156), 2, + ACTIONS(5538), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(6130), 4, + ACTIONS(5532), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6148), 4, + ACTIONS(5548), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6150), 6, + ACTIONS(5550), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [155758] = 15, - ACTIONS(247), 1, + [153627] = 15, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6620), 1, + ACTIONS(6357), 1, aux_sym_expr_binary_token13, - ACTIONS(6622), 1, + ACTIONS(6359), 1, aux_sym_expr_binary_token14, - ACTIONS(6624), 1, + ACTIONS(6361), 1, aux_sym_expr_binary_token15, - ACTIONS(6626), 1, + ACTIONS(6363), 1, aux_sym_expr_binary_token16, - ACTIONS(6628), 1, + ACTIONS(6388), 1, aux_sym_expr_binary_token17, - ACTIONS(6668), 1, + ACTIONS(6827), 1, aux_sym_expr_binary_token18, - STATE(3820), 1, + STATE(3877), 1, sym_comment, - ACTIONS(6610), 2, + ACTIONS(6347), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6614), 2, + ACTIONS(6351), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6616), 2, + ACTIONS(6353), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6618), 2, + ACTIONS(6355), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(6612), 4, + ACTIONS(6349), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6630), 4, + ACTIONS(6365), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6632), 6, + ACTIONS(6367), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [155819] = 4, - ACTIONS(247), 1, + [153688] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3821), 1, + STATE(3878), 1, sym_comment, - ACTIONS(4798), 8, + ACTIONS(2277), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -351235,7 +357951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4796), 20, + ACTIONS(2279), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -351256,390 +357972,446 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [155858] = 15, - ACTIONS(247), 1, + [153727] = 15, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6566), 1, + ACTIONS(6785), 1, aux_sym_expr_binary_token13, - ACTIONS(6568), 1, + ACTIONS(6787), 1, aux_sym_expr_binary_token14, - ACTIONS(6570), 1, + ACTIONS(6793), 1, aux_sym_expr_binary_token15, - ACTIONS(6572), 1, + ACTIONS(6797), 1, aux_sym_expr_binary_token16, - ACTIONS(6574), 1, + ACTIONS(6801), 1, aux_sym_expr_binary_token17, - ACTIONS(6670), 1, + ACTIONS(6829), 1, aux_sym_expr_binary_token18, - STATE(3822), 1, + STATE(3879), 1, sym_comment, - ACTIONS(6552), 2, + ACTIONS(6769), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6556), 2, + ACTIONS(6773), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6558), 2, + ACTIONS(6775), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6564), 2, + ACTIONS(6783), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(6554), 4, + ACTIONS(6771), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6560), 4, + ACTIONS(6777), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6562), 6, + ACTIONS(6779), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [155919] = 15, - ACTIONS(247), 1, + [153788] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3880), 1, + sym_comment, + ACTIONS(1842), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1850), 20, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [153827] = 15, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6656), 1, + ACTIONS(6283), 1, aux_sym_expr_binary_token13, - ACTIONS(6658), 1, + ACTIONS(6285), 1, aux_sym_expr_binary_token14, - ACTIONS(6660), 1, + ACTIONS(6287), 1, aux_sym_expr_binary_token15, - ACTIONS(6662), 1, + ACTIONS(6289), 1, aux_sym_expr_binary_token16, - ACTIONS(6664), 1, + ACTIONS(6291), 1, aux_sym_expr_binary_token17, - ACTIONS(6672), 1, + ACTIONS(6831), 1, aux_sym_expr_binary_token18, - STATE(3823), 1, + STATE(3881), 1, sym_comment, - ACTIONS(6634), 2, + ACTIONS(6269), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6640), 2, + ACTIONS(6273), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6642), 2, + ACTIONS(6275), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6648), 2, + ACTIONS(6281), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(6638), 4, + ACTIONS(6271), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6644), 4, + ACTIONS(6277), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6646), 6, + ACTIONS(6279), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [155980] = 23, - ACTIONS(247), 1, + [153888] = 23, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3403), 1, + ACTIONS(3486), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(3518), 1, anon_sym_DASH, - ACTIONS(3409), 1, + ACTIONS(3524), 1, aux_sym_expr_unary_token1, - ACTIONS(3421), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(6448), 1, + ACTIONS(6625), 1, sym_identifier, - ACTIONS(6456), 1, - anon_sym_LPAREN, - ACTIONS(6458), 1, + ACTIONS(6635), 1, anon_sym_DOLLAR, - ACTIONS(6462), 1, + ACTIONS(6639), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6464), 1, + ACTIONS(6641), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6466), 1, + ACTIONS(6643), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6468), 1, + ACTIONS(6645), 1, aux_sym__val_number_decimal_token4, - STATE(3465), 1, + ACTIONS(6747), 1, + anon_sym_LPAREN, + STATE(3529), 1, sym__val_number, - STATE(3483), 1, + STATE(3537), 1, sym__val_number_decimal, - STATE(3824), 1, + STATE(3882), 1, sym_comment, - STATE(3829), 1, + STATE(3902), 1, sym_expr_parenthesized, - STATE(4267), 1, + STATE(4336), 1, sym_val_number, - STATE(4358), 1, - sym__expr_unary_minus, - STATE(4380), 1, + STATE(4591), 1, sym__binary_predicate, - STATE(4387), 1, + STATE(4619), 1, + sym__expr_unary_minus, + STATE(4678), 1, sym__predicate, - ACTIONS(6450), 2, + ACTIONS(6745), 2, anon_sym_true, anon_sym_false, - STATE(4480), 2, + STATE(4590), 2, sym_expr_unary, sym_val_bool, - STATE(5134), 2, + STATE(5107), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6452), 5, + ACTIONS(6629), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [156057] = 23, - ACTIONS(247), 1, + [153965] = 23, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3403), 1, + ACTIONS(3486), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(3518), 1, anon_sym_DASH, - ACTIONS(3409), 1, + ACTIONS(3524), 1, aux_sym_expr_unary_token1, - ACTIONS(3421), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(6448), 1, + ACTIONS(6625), 1, sym_identifier, - ACTIONS(6456), 1, - anon_sym_LPAREN, - ACTIONS(6458), 1, + ACTIONS(6635), 1, anon_sym_DOLLAR, - ACTIONS(6462), 1, + ACTIONS(6639), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6464), 1, + ACTIONS(6641), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6466), 1, + ACTIONS(6643), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6468), 1, + ACTIONS(6645), 1, aux_sym__val_number_decimal_token4, - STATE(3465), 1, + ACTIONS(6747), 1, + anon_sym_LPAREN, + STATE(3529), 1, sym__val_number, - STATE(3483), 1, + STATE(3537), 1, sym__val_number_decimal, - STATE(3825), 1, + STATE(3883), 1, sym_comment, - STATE(3829), 1, + STATE(3902), 1, sym_expr_parenthesized, - STATE(4267), 1, + STATE(4336), 1, sym_val_number, - STATE(4358), 1, - sym__expr_unary_minus, - STATE(4388), 1, + STATE(4609), 1, sym__binary_predicate, - STATE(4389), 1, + STATE(4619), 1, + sym__expr_unary_minus, + STATE(4621), 1, sym__predicate, - ACTIONS(6450), 2, + ACTIONS(6745), 2, anon_sym_true, anon_sym_false, - STATE(4480), 2, + STATE(4590), 2, sym_expr_unary, sym_val_bool, - STATE(5134), 2, + STATE(5107), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6452), 5, + ACTIONS(6629), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [156134] = 23, - ACTIONS(247), 1, + [154042] = 15, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3403), 1, - anon_sym_DASH, - ACTIONS(3409), 1, - aux_sym_expr_unary_token1, - ACTIONS(3421), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(6448), 1, - sym_identifier, - ACTIONS(6456), 1, - anon_sym_LPAREN, - ACTIONS(6458), 1, - anon_sym_DOLLAR, - ACTIONS(6462), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6464), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6466), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6468), 1, - aux_sym__val_number_decimal_token4, - STATE(3465), 1, - sym__val_number, - STATE(3483), 1, - sym__val_number_decimal, - STATE(3826), 1, + ACTIONS(5331), 1, + aux_sym_expr_binary_token13, + ACTIONS(5333), 1, + aux_sym_expr_binary_token14, + ACTIONS(5335), 1, + aux_sym_expr_binary_token15, + ACTIONS(5337), 1, + aux_sym_expr_binary_token16, + ACTIONS(5339), 1, + aux_sym_expr_binary_token17, + ACTIONS(6833), 1, + aux_sym_expr_binary_token18, + STATE(3884), 1, sym_comment, - STATE(3829), 1, - sym_expr_parenthesized, - STATE(4267), 1, - sym_val_number, - STATE(4358), 1, - sym__expr_unary_minus, - STATE(4399), 1, - sym__binary_predicate, - STATE(4401), 1, - sym__predicate, - ACTIONS(6450), 2, - anon_sym_true, - anon_sym_false, - STATE(4480), 2, - sym_expr_unary, - sym_val_bool, - STATE(5134), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6452), 5, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - [156211] = 23, - ACTIONS(247), 1, + ACTIONS(5321), 2, + aux_sym_expr_binary_token1, + aux_sym_expr_binary_token2, + ACTIONS(5325), 2, + aux_sym_expr_binary_token7, + aux_sym_expr_binary_token8, + ACTIONS(5327), 2, + aux_sym_expr_binary_token9, + aux_sym_expr_binary_token10, + ACTIONS(5329), 2, + aux_sym_expr_binary_token11, + aux_sym_expr_binary_token12, + ACTIONS(5323), 4, + aux_sym_expr_binary_token3, + aux_sym_expr_binary_token4, + aux_sym_expr_binary_token5, + aux_sym_expr_binary_token6, + ACTIONS(5341), 4, + aux_sym_expr_binary_token19, + aux_sym_expr_binary_token20, + aux_sym_expr_binary_token21, + aux_sym_expr_binary_token22, + ACTIONS(5343), 6, + aux_sym_expr_binary_token23, + aux_sym_expr_binary_token24, + aux_sym_expr_binary_token25, + aux_sym_expr_binary_token26, + aux_sym_expr_binary_token27, + aux_sym_expr_binary_token28, + [154103] = 23, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3403), 1, + ACTIONS(3486), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(3518), 1, anon_sym_DASH, - ACTIONS(3409), 1, + ACTIONS(3524), 1, aux_sym_expr_unary_token1, - ACTIONS(3421), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(6448), 1, + ACTIONS(6625), 1, sym_identifier, - ACTIONS(6456), 1, - anon_sym_LPAREN, - ACTIONS(6458), 1, + ACTIONS(6635), 1, anon_sym_DOLLAR, - ACTIONS(6462), 1, + ACTIONS(6639), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6464), 1, + ACTIONS(6641), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6466), 1, + ACTIONS(6643), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6468), 1, + ACTIONS(6645), 1, aux_sym__val_number_decimal_token4, - STATE(3465), 1, + ACTIONS(6747), 1, + anon_sym_LPAREN, + STATE(3529), 1, sym__val_number, - STATE(3483), 1, + STATE(3537), 1, sym__val_number_decimal, - STATE(3827), 1, + STATE(3885), 1, sym_comment, - STATE(3829), 1, + STATE(3902), 1, sym_expr_parenthesized, - STATE(4267), 1, + STATE(4336), 1, sym_val_number, - STATE(4358), 1, + STATE(4592), 1, + sym__predicate, + STATE(4619), 1, sym__expr_unary_minus, - STATE(4402), 1, + STATE(4684), 1, sym__binary_predicate, - STATE(4403), 1, - sym__predicate, - ACTIONS(6450), 2, + ACTIONS(6745), 2, anon_sym_true, anon_sym_false, - STATE(4480), 2, + STATE(4590), 2, sym_expr_unary, sym_val_bool, - STATE(5134), 2, + STATE(5107), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6452), 5, + ACTIONS(6629), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [156288] = 23, - ACTIONS(247), 1, + [154180] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3886), 1, + sym_comment, + ACTIONS(1788), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1796), 20, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [154219] = 23, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3403), 1, + ACTIONS(3486), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(3518), 1, anon_sym_DASH, - ACTIONS(3409), 1, + ACTIONS(3524), 1, aux_sym_expr_unary_token1, - ACTIONS(3421), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(6448), 1, + ACTIONS(6625), 1, sym_identifier, - ACTIONS(6456), 1, - anon_sym_LPAREN, - ACTIONS(6458), 1, + ACTIONS(6635), 1, anon_sym_DOLLAR, - ACTIONS(6462), 1, + ACTIONS(6639), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6464), 1, + ACTIONS(6641), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6466), 1, + ACTIONS(6643), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6468), 1, + ACTIONS(6645), 1, aux_sym__val_number_decimal_token4, - STATE(3465), 1, + ACTIONS(6747), 1, + anon_sym_LPAREN, + STATE(3529), 1, sym__val_number, - STATE(3483), 1, + STATE(3537), 1, sym__val_number_decimal, - STATE(3828), 1, + STATE(3887), 1, sym_comment, - STATE(3829), 1, + STATE(3902), 1, sym_expr_parenthesized, - STATE(4267), 1, + STATE(4336), 1, sym_val_number, - STATE(4358), 1, + STATE(4619), 1, sym__expr_unary_minus, - STATE(4404), 1, + STATE(4651), 1, sym__binary_predicate, - STATE(4409), 1, + STATE(4667), 1, sym__predicate, - ACTIONS(6450), 2, + ACTIONS(6745), 2, anon_sym_true, anon_sym_false, - STATE(4480), 2, + STATE(4590), 2, sym_expr_unary, sym_val_bool, - STATE(5134), 2, + STATE(5107), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6452), 5, + ACTIONS(6629), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [156365] = 7, - ACTIONS(247), 1, + [154296] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3829), 1, + STATE(3888), 1, sym_comment, - ACTIONS(6676), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6682), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6678), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6680), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6674), 16, + ACTIONS(2246), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2250), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -351651,17 +358423,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [156410] = 4, - ACTIONS(247), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [154335] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3830), 1, + STATE(3889), 1, sym_comment, - ACTIONS(2287), 8, + ACTIONS(2335), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -351670,7 +358445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2289), 20, + ACTIONS(2339), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -351691,525 +358466,613 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [156449] = 23, - ACTIONS(247), 1, + [154374] = 23, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3421), 1, + ACTIONS(3486), 1, aux_sym_cmd_identifier_token39, - ACTIONS(3451), 1, + ACTIONS(3518), 1, anon_sym_DASH, - ACTIONS(3457), 1, + ACTIONS(3524), 1, aux_sym_expr_unary_token1, - ACTIONS(6448), 1, + ACTIONS(6625), 1, + sym_identifier, + ACTIONS(6635), 1, + anon_sym_DOLLAR, + ACTIONS(6639), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6641), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6643), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6645), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(6747), 1, + anon_sym_LPAREN, + STATE(3529), 1, + sym__val_number, + STATE(3537), 1, + sym__val_number_decimal, + STATE(3890), 1, + sym_comment, + STATE(3902), 1, + sym_expr_parenthesized, + STATE(4336), 1, + sym_val_number, + STATE(4595), 1, + sym__binary_predicate, + STATE(4608), 1, + sym__predicate, + STATE(4619), 1, + sym__expr_unary_minus, + ACTIONS(6745), 2, + anon_sym_true, + anon_sym_false, + STATE(4590), 2, + sym_expr_unary, + sym_val_bool, + STATE(5107), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(6629), 5, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + [154451] = 23, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(3468), 1, + anon_sym_DASH, + ACTIONS(3474), 1, + aux_sym_expr_unary_token1, + ACTIONS(3486), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(6625), 1, + sym_identifier, + ACTIONS(6633), 1, + anon_sym_LPAREN, + ACTIONS(6635), 1, + anon_sym_DOLLAR, + ACTIONS(6639), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6641), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6643), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6645), 1, + aux_sym__val_number_decimal_token4, + STATE(3529), 1, + sym__val_number, + STATE(3537), 1, + sym__val_number_decimal, + STATE(3891), 1, + sym_comment, + STATE(3898), 1, + sym_expr_parenthesized, + STATE(4336), 1, + sym_val_number, + STATE(4482), 1, + sym__expr_unary_minus, + STATE(4565), 1, + sym__binary_predicate, + STATE(4571), 1, + sym__predicate, + ACTIONS(6627), 2, + anon_sym_true, + anon_sym_false, + STATE(4377), 2, + sym_expr_unary, + sym_val_bool, + STATE(5196), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(6629), 5, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + [154528] = 23, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(3468), 1, + anon_sym_DASH, + ACTIONS(3474), 1, + aux_sym_expr_unary_token1, + ACTIONS(3486), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(6625), 1, + sym_identifier, + ACTIONS(6633), 1, + anon_sym_LPAREN, + ACTIONS(6635), 1, + anon_sym_DOLLAR, + ACTIONS(6639), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6641), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(6643), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(6645), 1, + aux_sym__val_number_decimal_token4, + STATE(3529), 1, + sym__val_number, + STATE(3537), 1, + sym__val_number_decimal, + STATE(3892), 1, + sym_comment, + STATE(3898), 1, + sym_expr_parenthesized, + STATE(4336), 1, + sym_val_number, + STATE(4482), 1, + sym__expr_unary_minus, + STATE(4574), 1, + sym__binary_predicate, + STATE(4575), 1, + sym__predicate, + ACTIONS(6627), 2, + anon_sym_true, + anon_sym_false, + STATE(4377), 2, + sym_expr_unary, + sym_val_bool, + STATE(5196), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(6629), 5, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + [154605] = 23, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(3468), 1, + anon_sym_DASH, + ACTIONS(3474), 1, + aux_sym_expr_unary_token1, + ACTIONS(3486), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(6625), 1, sym_identifier, - ACTIONS(6458), 1, + ACTIONS(6633), 1, + anon_sym_LPAREN, + ACTIONS(6635), 1, anon_sym_DOLLAR, - ACTIONS(6462), 1, + ACTIONS(6639), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6464), 1, + ACTIONS(6641), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6466), 1, + ACTIONS(6643), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6468), 1, + ACTIONS(6645), 1, aux_sym__val_number_decimal_token4, - ACTIONS(6590), 1, - anon_sym_LPAREN, - STATE(3465), 1, + STATE(3529), 1, sym__val_number, - STATE(3483), 1, + STATE(3537), 1, sym__val_number_decimal, - STATE(3831), 1, + STATE(3893), 1, sym_comment, - STATE(3841), 1, + STATE(3898), 1, sym_expr_parenthesized, - STATE(4267), 1, + STATE(4336), 1, sym_val_number, - STATE(4553), 1, + STATE(4482), 1, sym__expr_unary_minus, - STATE(4618), 1, + STATE(4576), 1, sym__binary_predicate, - STATE(4619), 1, + STATE(4577), 1, sym__predicate, - ACTIONS(6588), 2, + ACTIONS(6627), 2, anon_sym_true, anon_sym_false, - STATE(4526), 2, + STATE(4377), 2, sym_expr_unary, sym_val_bool, - STATE(5115), 2, + STATE(5196), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6452), 5, + ACTIONS(6629), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [156526] = 15, - ACTIONS(247), 1, + [154682] = 15, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5381), 1, + ACTIONS(6813), 1, aux_sym_expr_binary_token13, - ACTIONS(5403), 1, + ACTIONS(6815), 1, aux_sym_expr_binary_token14, - ACTIONS(5405), 1, + ACTIONS(6817), 1, aux_sym_expr_binary_token15, - ACTIONS(5407), 1, + ACTIONS(6819), 1, aux_sym_expr_binary_token16, - ACTIONS(5409), 1, + ACTIONS(6821), 1, aux_sym_expr_binary_token17, - ACTIONS(6684), 1, + ACTIONS(6835), 1, aux_sym_expr_binary_token18, - STATE(3832), 1, + STATE(3894), 1, sym_comment, - ACTIONS(5367), 2, + ACTIONS(6795), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(5371), 2, + ACTIONS(6803), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(5373), 2, + ACTIONS(6805), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(5379), 2, + ACTIONS(6811), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(5369), 4, + ACTIONS(6799), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(5375), 4, + ACTIONS(6807), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(5377), 6, + ACTIONS(6809), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [156587] = 15, - ACTIONS(247), 1, + [154743] = 15, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6241), 1, + ACTIONS(6733), 1, aux_sym_expr_binary_token13, - ACTIONS(6243), 1, + ACTIONS(6735), 1, aux_sym_expr_binary_token14, - ACTIONS(6245), 1, + ACTIONS(6737), 1, aux_sym_expr_binary_token15, - ACTIONS(6247), 1, + ACTIONS(6739), 1, aux_sym_expr_binary_token16, - ACTIONS(6249), 1, + ACTIONS(6741), 1, aux_sym_expr_binary_token17, - ACTIONS(6686), 1, + ACTIONS(6837), 1, aux_sym_expr_binary_token18, - STATE(3833), 1, + STATE(3895), 1, sym_comment, - ACTIONS(6204), 2, + ACTIONS(6647), 2, aux_sym_expr_binary_token1, aux_sym_expr_binary_token2, - ACTIONS(6208), 2, + ACTIONS(6723), 2, aux_sym_expr_binary_token7, aux_sym_expr_binary_token8, - ACTIONS(6210), 2, + ACTIONS(6725), 2, aux_sym_expr_binary_token9, aux_sym_expr_binary_token10, - ACTIONS(6239), 2, + ACTIONS(6731), 2, aux_sym_expr_binary_token11, aux_sym_expr_binary_token12, - ACTIONS(6206), 4, + ACTIONS(6721), 4, aux_sym_expr_binary_token3, aux_sym_expr_binary_token4, aux_sym_expr_binary_token5, aux_sym_expr_binary_token6, - ACTIONS(6235), 4, + ACTIONS(6727), 4, aux_sym_expr_binary_token19, aux_sym_expr_binary_token20, aux_sym_expr_binary_token21, aux_sym_expr_binary_token22, - ACTIONS(6237), 6, + ACTIONS(6729), 6, aux_sym_expr_binary_token23, aux_sym_expr_binary_token24, aux_sym_expr_binary_token25, aux_sym_expr_binary_token26, aux_sym_expr_binary_token27, aux_sym_expr_binary_token28, - [156648] = 23, - ACTIONS(247), 1, + [154804] = 23, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3421), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(3451), 1, + ACTIONS(3468), 1, anon_sym_DASH, - ACTIONS(3457), 1, + ACTIONS(3474), 1, aux_sym_expr_unary_token1, - ACTIONS(6448), 1, + ACTIONS(3486), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(6625), 1, sym_identifier, - ACTIONS(6458), 1, + ACTIONS(6633), 1, + anon_sym_LPAREN, + ACTIONS(6635), 1, anon_sym_DOLLAR, - ACTIONS(6462), 1, + ACTIONS(6639), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6464), 1, + ACTIONS(6641), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6466), 1, + ACTIONS(6643), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6468), 1, + ACTIONS(6645), 1, aux_sym__val_number_decimal_token4, - ACTIONS(6590), 1, - anon_sym_LPAREN, - STATE(3465), 1, + STATE(3529), 1, sym__val_number, - STATE(3483), 1, + STATE(3537), 1, sym__val_number_decimal, - STATE(3834), 1, + STATE(3896), 1, sym_comment, - STATE(3841), 1, + STATE(3898), 1, sym_expr_parenthesized, - STATE(4267), 1, + STATE(4336), 1, sym_val_number, - STATE(4553), 1, + STATE(4482), 1, sym__expr_unary_minus, - STATE(4620), 1, + STATE(4580), 1, sym__binary_predicate, - STATE(4624), 1, + STATE(4581), 1, sym__predicate, - ACTIONS(6588), 2, + ACTIONS(6627), 2, anon_sym_true, anon_sym_false, - STATE(4526), 2, + STATE(4377), 2, sym_expr_unary, sym_val_bool, - STATE(5115), 2, + STATE(5196), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6452), 5, + ACTIONS(6629), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [156725] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3835), 1, - sym_comment, - ACTIONS(1788), 8, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(1796), 20, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [156764] = 15, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5292), 1, - aux_sym_expr_binary_token13, - ACTIONS(5294), 1, - aux_sym_expr_binary_token14, - ACTIONS(5299), 1, - aux_sym_expr_binary_token15, - ACTIONS(5310), 1, - aux_sym_expr_binary_token16, - ACTIONS(5312), 1, - aux_sym_expr_binary_token17, - ACTIONS(6688), 1, - aux_sym_expr_binary_token18, - STATE(3836), 1, - sym_comment, - ACTIONS(5259), 2, - aux_sym_expr_binary_token1, - aux_sym_expr_binary_token2, - ACTIONS(5263), 2, - aux_sym_expr_binary_token7, - aux_sym_expr_binary_token8, - ACTIONS(5265), 2, - aux_sym_expr_binary_token9, - aux_sym_expr_binary_token10, - ACTIONS(5290), 2, - aux_sym_expr_binary_token11, - aux_sym_expr_binary_token12, - ACTIONS(5261), 4, - aux_sym_expr_binary_token3, - aux_sym_expr_binary_token4, - aux_sym_expr_binary_token5, - aux_sym_expr_binary_token6, - ACTIONS(5267), 4, - aux_sym_expr_binary_token19, - aux_sym_expr_binary_token20, - aux_sym_expr_binary_token21, - aux_sym_expr_binary_token22, - ACTIONS(5269), 6, - aux_sym_expr_binary_token23, - aux_sym_expr_binary_token24, - aux_sym_expr_binary_token25, - aux_sym_expr_binary_token26, - aux_sym_expr_binary_token27, - aux_sym_expr_binary_token28, - [156825] = 23, - ACTIONS(247), 1, + [154881] = 23, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3421), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(3451), 1, + ACTIONS(3468), 1, anon_sym_DASH, - ACTIONS(3457), 1, + ACTIONS(3474), 1, aux_sym_expr_unary_token1, - ACTIONS(6448), 1, + ACTIONS(3486), 1, + aux_sym_cmd_identifier_token39, + ACTIONS(6625), 1, sym_identifier, - ACTIONS(6458), 1, + ACTIONS(6633), 1, + anon_sym_LPAREN, + ACTIONS(6635), 1, anon_sym_DOLLAR, - ACTIONS(6462), 1, + ACTIONS(6639), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6464), 1, + ACTIONS(6641), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6466), 1, + ACTIONS(6643), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6468), 1, + ACTIONS(6645), 1, aux_sym__val_number_decimal_token4, - ACTIONS(6590), 1, - anon_sym_LPAREN, - STATE(3465), 1, + STATE(3529), 1, sym__val_number, - STATE(3483), 1, + STATE(3537), 1, sym__val_number_decimal, - STATE(3837), 1, + STATE(3897), 1, sym_comment, - STATE(3841), 1, + STATE(3898), 1, sym_expr_parenthesized, - STATE(4267), 1, + STATE(4336), 1, sym_val_number, - STATE(4553), 1, + STATE(4482), 1, sym__expr_unary_minus, - STATE(4628), 1, + STATE(4582), 1, sym__binary_predicate, - STATE(4629), 1, + STATE(4583), 1, sym__predicate, - ACTIONS(6588), 2, + ACTIONS(6627), 2, anon_sym_true, anon_sym_false, - STATE(4526), 2, + STATE(4377), 2, sym_expr_unary, sym_val_bool, - STATE(5115), 2, + STATE(5196), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6452), 5, + ACTIONS(6629), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [156902] = 23, - ACTIONS(247), 1, + [154958] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3421), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(3451), 1, - anon_sym_DASH, - ACTIONS(3457), 1, - aux_sym_expr_unary_token1, - ACTIONS(6448), 1, - sym_identifier, - ACTIONS(6458), 1, - anon_sym_DOLLAR, - ACTIONS(6462), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6464), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6466), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6468), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(6590), 1, - anon_sym_LPAREN, - STATE(3465), 1, - sym__val_number, - STATE(3483), 1, - sym__val_number_decimal, - STATE(3838), 1, + STATE(3898), 1, sym_comment, - STATE(3841), 1, - sym_expr_parenthesized, - STATE(4267), 1, - sym_val_number, - STATE(4553), 1, - sym__expr_unary_minus, - STATE(4630), 1, - sym__binary_predicate, - STATE(4631), 1, - sym__predicate, - ACTIONS(6588), 2, - anon_sym_true, - anon_sym_false, - STATE(4526), 2, - sym_expr_unary, - sym_val_bool, - STATE(5115), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(6452), 5, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - [156979] = 23, - ACTIONS(247), 1, + ACTIONS(6841), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(6847), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(6843), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(6845), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6839), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [155003] = 23, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3421), 1, + ACTIONS(3486), 1, aux_sym_cmd_identifier_token39, - ACTIONS(3451), 1, + ACTIONS(3518), 1, anon_sym_DASH, - ACTIONS(3457), 1, + ACTIONS(3524), 1, aux_sym_expr_unary_token1, - ACTIONS(6448), 1, + ACTIONS(6625), 1, sym_identifier, - ACTIONS(6458), 1, + ACTIONS(6635), 1, anon_sym_DOLLAR, - ACTIONS(6462), 1, + ACTIONS(6639), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6464), 1, + ACTIONS(6641), 1, aux_sym__val_number_decimal_token2, - ACTIONS(6466), 1, + ACTIONS(6643), 1, aux_sym__val_number_decimal_token3, - ACTIONS(6468), 1, + ACTIONS(6645), 1, aux_sym__val_number_decimal_token4, - ACTIONS(6590), 1, + ACTIONS(6747), 1, anon_sym_LPAREN, - STATE(3465), 1, + STATE(3529), 1, sym__val_number, - STATE(3483), 1, + STATE(3537), 1, sym__val_number_decimal, - STATE(3839), 1, + STATE(3899), 1, sym_comment, - STATE(3841), 1, + STATE(3902), 1, sym_expr_parenthesized, - STATE(4267), 1, + STATE(4336), 1, sym_val_number, - STATE(4553), 1, + STATE(4619), 1, sym__expr_unary_minus, STATE(4632), 1, sym__binary_predicate, - STATE(4634), 1, + STATE(4649), 1, sym__predicate, - ACTIONS(6588), 2, + ACTIONS(6745), 2, anon_sym_true, anon_sym_false, - STATE(4526), 2, + STATE(4590), 2, sym_expr_unary, sym_val_bool, - STATE(5115), 2, + STATE(5107), 2, sym__where_predicate_lhs, sym_val_variable, - ACTIONS(6452), 5, + ACTIONS(6629), 5, aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token40, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, - [157056] = 23, - ACTIONS(247), 1, + [155080] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3421), 1, - aux_sym_cmd_identifier_token39, - ACTIONS(3451), 1, - anon_sym_DASH, - ACTIONS(3457), 1, - aux_sym_expr_unary_token1, - ACTIONS(6448), 1, - sym_identifier, - ACTIONS(6458), 1, + STATE(3900), 1, + sym_comment, + ACTIONS(5139), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5137), 20, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [155119] = 12, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1526), 1, + aux_sym_unquoted_token2, + ACTIONS(6227), 1, anon_sym_DOLLAR, - ACTIONS(6462), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6464), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6466), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(6468), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(6590), 1, - anon_sym_LPAREN, - STATE(3465), 1, - sym__val_number, - STATE(3483), 1, - sym__val_number_decimal, - STATE(3840), 1, + ACTIONS(6229), 1, + anon_sym_LPAREN2, + ACTIONS(6849), 1, + anon_sym_DOT, + ACTIONS(6853), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6855), 1, + aux_sym__immediate_decimal_token5, + STATE(3901), 1, sym_comment, - STATE(3841), 1, - sym_expr_parenthesized, - STATE(4267), 1, - sym_val_number, - STATE(4553), 1, - sym__expr_unary_minus, - STATE(4557), 1, - sym__predicate, - STATE(4613), 1, - sym__binary_predicate, - ACTIONS(6588), 2, - anon_sym_true, - anon_sym_false, - STATE(4526), 2, - sym_expr_unary, - sym_val_bool, - STATE(5115), 2, - sym__where_predicate_lhs, + STATE(4013), 1, + sym__immediate_decimal, + ACTIONS(6851), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3534), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(6452), 5, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - [157133] = 7, - ACTIONS(247), 1, + ACTIONS(1524), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [155173] = 7, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3841), 1, + STATE(3902), 1, sym_comment, - ACTIONS(6690), 2, + ACTIONS(6857), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(6696), 2, + ACTIONS(6863), 2, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - ACTIONS(6692), 4, + ACTIONS(6859), 4, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, anon_sym_ends_DASHwith, - ACTIONS(6694), 4, + ACTIONS(6861), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6674), 15, + ACTIONS(6839), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -352225,32 +359088,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [157177] = 12, - ACTIONS(247), 1, + [155217] = 11, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1494), 1, + ACTIONS(1526), 1, aux_sym_unquoted_token2, - ACTIONS(6070), 1, - anon_sym_DOLLAR, - ACTIONS(6072), 1, + ACTIONS(6229), 1, anon_sym_LPAREN2, - ACTIONS(6698), 1, - anon_sym_DOT, - ACTIONS(6702), 1, + ACTIONS(6251), 1, + anon_sym_DOLLAR, + ACTIONS(6867), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6704), 1, + ACTIONS(6869), 1, aux_sym__immediate_decimal_token5, - STATE(3842), 1, + STATE(3903), 1, sym_comment, - STATE(3967), 1, + STATE(4194), 1, sym__immediate_decimal, - ACTIONS(6700), 2, + ACTIONS(6865), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3366), 2, + STATE(3422), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1492), 16, + ACTIONS(1524), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -352267,30 +359128,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [157231] = 11, - ACTIONS(247), 1, + [155268] = 12, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1494), 1, + ACTIONS(1526), 1, aux_sym_unquoted_token2, - ACTIONS(6072), 1, + ACTIONS(6446), 1, anon_sym_LPAREN2, - ACTIONS(6082), 1, + ACTIONS(6871), 1, anon_sym_DOLLAR, - ACTIONS(6708), 1, + ACTIONS(6873), 1, + anon_sym_DOT, + ACTIONS(6877), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6710), 1, + ACTIONS(6879), 1, aux_sym__immediate_decimal_token5, - STATE(3843), 1, + STATE(3904), 1, sym_comment, - STATE(4212), 1, + STATE(4088), 1, sym__immediate_decimal, - ACTIONS(6706), 2, + ACTIONS(6875), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3393), 2, + STATE(4274), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1492), 16, + ACTIONS(1524), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -352302,38 +359166,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - [157282] = 12, - ACTIONS(247), 1, + [155321] = 11, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1494), 1, + ACTIONS(1558), 1, aux_sym_unquoted_token2, - ACTIONS(6291), 1, + ACTIONS(6229), 1, anon_sym_LPAREN2, - ACTIONS(6712), 1, + ACTIONS(6251), 1, anon_sym_DOLLAR, - ACTIONS(6714), 1, - anon_sym_DOT, - ACTIONS(6718), 1, + ACTIONS(6867), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6720), 1, + ACTIONS(6869), 1, aux_sym__immediate_decimal_token5, - STATE(3844), 1, + STATE(3905), 1, sym_comment, - STATE(4031), 1, + STATE(4278), 1, sym__immediate_decimal, - ACTIONS(6716), 2, + ACTIONS(6865), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4182), 2, + STATE(3433), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1492), 15, - ts_builtin_sym_end, + ACTIONS(1556), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -352345,33 +359204,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - [157335] = 11, - ACTIONS(247), 1, + [155372] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1552), 1, - aux_sym_unquoted_token2, - ACTIONS(6072), 1, - anon_sym_LPAREN2, - ACTIONS(6082), 1, - anon_sym_DOLLAR, - ACTIONS(6708), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6710), 1, - aux_sym__immediate_decimal_token5, - STATE(3845), 1, - sym_comment, - STATE(4178), 1, - sym__immediate_decimal, - ACTIONS(6706), 2, + ACTIONS(6881), 1, aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3401), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1550), 16, + ACTIONS(6883), 1, + aux_sym__immediate_decimal_token2, + STATE(3906), 1, + sym_comment, + ACTIONS(1528), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1530), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -352388,30 +359238,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [157386] = 11, - ACTIONS(247), 1, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [155412] = 11, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1494), 1, + ACTIONS(1558), 1, aux_sym_unquoted_token2, - ACTIONS(6291), 1, + ACTIONS(6446), 1, anon_sym_LPAREN2, - ACTIONS(6722), 1, + ACTIONS(6885), 1, anon_sym_DOLLAR, - ACTIONS(6726), 1, + ACTIONS(6889), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6728), 1, + ACTIONS(6891), 1, aux_sym__immediate_decimal_token5, - STATE(3846), 1, + STATE(3907), 1, sym_comment, - STATE(4301), 1, + STATE(4352), 1, sym__immediate_decimal, - ACTIONS(6724), 2, + ACTIONS(6887), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4547), 2, + STATE(3673), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1492), 15, + ACTIONS(1556), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -352427,30 +359282,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [157436] = 11, - ACTIONS(247), 1, + [155462] = 11, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1552), 1, + ACTIONS(1526), 1, aux_sym_unquoted_token2, - ACTIONS(6291), 1, + ACTIONS(6446), 1, anon_sym_LPAREN2, - ACTIONS(6722), 1, + ACTIONS(6885), 1, anon_sym_DOLLAR, - ACTIONS(6726), 1, + ACTIONS(6889), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6728), 1, + ACTIONS(6891), 1, aux_sym__immediate_decimal_token5, - STATE(3847), 1, + STATE(3908), 1, sym_comment, - STATE(4228), 1, + STATE(4314), 1, sym__immediate_decimal, - ACTIONS(6724), 2, + ACTIONS(6887), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4598), 2, + STATE(3707), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1550), 15, + ACTIONS(1524), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -352466,35 +359321,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [157486] = 14, + [155512] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1492), 1, + ACTIONS(1524), 1, sym__space, - ACTIONS(1494), 1, + ACTIONS(1526), 1, aux_sym_unquoted_token2, - ACTIONS(2051), 1, + ACTIONS(1947), 1, anon_sym_DOLLAR, - ACTIONS(6730), 1, + ACTIONS(6893), 1, anon_sym_LPAREN2, - ACTIONS(6732), 1, + ACTIONS(6895), 1, anon_sym_DOT, - ACTIONS(6734), 1, + ACTIONS(6897), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6736), 1, + ACTIONS(6899), 1, aux_sym__immediate_decimal_token3, - ACTIONS(6738), 1, + ACTIONS(6901), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6740), 1, + ACTIONS(6903), 1, aux_sym__immediate_decimal_token5, - STATE(3848), 1, + STATE(3909), 1, sym_comment, - STATE(4076), 1, + STATE(4137), 1, sym__immediate_decimal, - STATE(4292), 2, + STATE(4354), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1478), 13, + ACTIONS(1510), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -352508,19 +359363,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [157542] = 6, - ACTIONS(247), 1, + [155568] = 11, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6742), 1, + ACTIONS(6446), 1, + anon_sym_LPAREN2, + ACTIONS(6452), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6454), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6488), 1, + anon_sym_DOT, + ACTIONS(6871), 1, + anon_sym_DOLLAR, + STATE(3910), 1, + sym_comment, + STATE(4273), 1, + sym__immediate_decimal, + ACTIONS(6450), 2, aux_sym__immediate_decimal_token1, - ACTIONS(6744), 1, + aux_sym__immediate_decimal_token3, + STATE(4272), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1570), 15, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [155618] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6905), 1, + anon_sym_DOT, + ACTIONS(6907), 1, aux_sym__immediate_decimal_token2, - STATE(3849), 1, + STATE(3911), 1, sym_comment, - ACTIONS(1540), 2, + ACTIONS(1536), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1542), 21, + ACTIONS(1538), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -352542,19 +359436,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [157582] = 6, - ACTIONS(247), 1, + [155658] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6746), 1, + ACTIONS(2047), 1, + anon_sym_DASH, + ACTIONS(5996), 1, anon_sym_DOT, - ACTIONS(6748), 1, - aux_sym__immediate_decimal_token2, - STATE(3850), 1, + STATE(2752), 1, + sym_path, + STATE(2899), 1, + aux_sym_cell_path_repeat1, + STATE(3912), 1, sym_comment, - ACTIONS(1518), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1520), 21, + STATE(4071), 1, + sym_cell_path, + ACTIONS(2049), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -352567,40 +359464,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [157622] = 11, - ACTIONS(247), 1, + [155701] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6291), 1, + ACTIONS(1556), 1, + sym__space, + ACTIONS(1558), 1, + aux_sym_unquoted_token2, + ACTIONS(4273), 1, + anon_sym_DOLLAR, + ACTIONS(6893), 1, anon_sym_LPAREN2, - ACTIONS(6297), 1, + ACTIONS(6909), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6911), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(6913), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6299), 1, + ACTIONS(6915), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6712), 1, - anon_sym_DOLLAR, - ACTIONS(6750), 1, - anon_sym_DOT, - STATE(3851), 1, + STATE(3913), 1, sym_comment, - STATE(4181), 1, + STATE(4543), 1, sym__immediate_decimal, - ACTIONS(6295), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4180), 2, + STATE(4846), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1506), 15, - ts_builtin_sym_end, + ACTIONS(1544), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [155754] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(2013), 1, + anon_sym_DASH, + ACTIONS(5996), 1, + anon_sym_DOT, + STATE(2752), 1, + sym_path, + STATE(2899), 1, + aux_sym_cell_path_repeat1, + STATE(3914), 1, + sym_comment, + STATE(4067), 1, + sym_cell_path, + ACTIONS(2015), 19, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [155797] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(2017), 1, + anon_sym_DASH, + ACTIONS(5996), 1, + anon_sym_DOT, + STATE(2752), 1, + sym_path, + STATE(2899), 1, + aux_sym_cell_path_repeat1, + STATE(3915), 1, + sym_comment, + STATE(4068), 1, + sym_cell_path, + ACTIONS(2019), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -352612,22 +359573,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [157672] = 6, - ACTIONS(247), 1, + [155840] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6752), 1, + ACTIONS(6917), 1, anon_sym_DOT, - ACTIONS(6754), 1, + ACTIONS(6919), 1, aux_sym__immediate_decimal_token2, - STATE(3852), 1, + STATE(3916), 1, sym_comment, - ACTIONS(1518), 2, + ACTIONS(1536), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1520), 20, + ACTIONS(1538), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -352648,22 +359614,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [157711] = 8, - ACTIONS(247), 1, + [155879] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1822), 1, + ACTIONS(2021), 1, anon_sym_DASH, - ACTIONS(5602), 1, + ACTIONS(5996), 1, anon_sym_DOT, - STATE(2632), 1, - aux_sym_cell_path_repeat1, - STATE(2655), 1, + STATE(2752), 1, sym_path, - STATE(3853), 1, + STATE(2899), 1, + aux_sym_cell_path_repeat1, + STATE(3917), 1, sym_comment, - STATE(3996), 1, + STATE(4069), 1, sym_cell_path, - ACTIONS(1826), 19, + ACTIONS(2023), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -352683,22 +359649,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [157754] = 8, - ACTIONS(247), 1, + [155922] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1832), 1, + ACTIONS(2043), 1, anon_sym_DASH, - ACTIONS(5602), 1, + ACTIONS(5996), 1, anon_sym_DOT, - STATE(2632), 1, - aux_sym_cell_path_repeat1, - STATE(2655), 1, + STATE(2752), 1, sym_path, - STATE(3854), 1, + STATE(2899), 1, + aux_sym_cell_path_repeat1, + STATE(3918), 1, sym_comment, - STATE(3992), 1, + STATE(4070), 1, sym_cell_path, - ACTIONS(1834), 19, + ACTIONS(2045), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -352718,22 +359684,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [157797] = 8, - ACTIONS(247), 1, + [155965] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1876), 1, + ACTIONS(1901), 1, anon_sym_DASH, - ACTIONS(5602), 1, + ACTIONS(5996), 1, anon_sym_DOT, - STATE(2632), 1, - aux_sym_cell_path_repeat1, - STATE(2655), 1, + STATE(2752), 1, sym_path, - STATE(3855), 1, + STATE(2899), 1, + aux_sym_cell_path_repeat1, + STATE(3919), 1, sym_comment, - STATE(4016), 1, + STATE(4082), 1, sym_cell_path, - ACTIONS(1878), 19, + ACTIONS(1903), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -352753,17 +359719,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [157840] = 5, - ACTIONS(247), 1, + [156008] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6756), 1, + ACTIONS(6907), 1, aux_sym__immediate_decimal_token2, - STATE(3856), 1, + STATE(3920), 1, sym_comment, - ACTIONS(1554), 2, + ACTIONS(1536), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1556), 21, + ACTIONS(1538), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -352785,33 +359751,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [157877] = 13, - ACTIONS(3), 1, + [156045] = 10, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1492), 1, - sym__space, - ACTIONS(1494), 1, - aux_sym_unquoted_token2, - ACTIONS(4283), 1, - anon_sym_DOLLAR, - ACTIONS(6730), 1, + ACTIONS(4433), 1, anon_sym_LPAREN2, - ACTIONS(6758), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6760), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(6762), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6764), 1, - aux_sym__immediate_decimal_token5, - STATE(3857), 1, + ACTIONS(6921), 1, + anon_sym_DOT_DOT2, + ACTIONS(6925), 1, + sym_filesize_unit, + ACTIONS(6927), 1, + sym_duration_unit, + ACTIONS(6929), 1, + aux_sym_unquoted_token2, + STATE(3921), 1, sym_comment, - STATE(4506), 1, - sym__immediate_decimal, - STATE(4671), 2, + STATE(7586), 1, sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1478), 13, + ACTIONS(6923), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1640), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -352825,22 +359785,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [157930] = 8, - ACTIONS(247), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [156092] = 14, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1880), 1, - anon_sym_DASH, - ACTIONS(5602), 1, + ACTIONS(1526), 1, + aux_sym_unquoted_token2, + ACTIONS(2131), 1, + anon_sym_DOLLAR, + ACTIONS(6931), 1, + anon_sym_LPAREN2, + ACTIONS(6933), 1, anon_sym_DOT, - STATE(2632), 1, - aux_sym_cell_path_repeat1, - STATE(2655), 1, - sym_path, - STATE(3858), 1, + ACTIONS(6935), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6937), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(6939), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6941), 1, + aux_sym__immediate_decimal_token5, + STATE(3922), 1, sym_comment, - STATE(4017), 1, - sym_cell_path, - ACTIONS(1882), 19, + STATE(4156), 1, + sym__immediate_decimal, + ACTIONS(1524), 2, + ts_builtin_sym_end, + sym__space, + STATE(4383), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1510), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -352852,30 +359829,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [157973] = 8, - ACTIONS(247), 1, + [156147] = 10, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1888), 1, - anon_sym_DASH, - ACTIONS(5602), 1, - anon_sym_DOT, - STATE(2632), 1, - aux_sym_cell_path_repeat1, - STATE(2655), 1, - sym_path, - STATE(3859), 1, + ACTIONS(6446), 1, + anon_sym_LPAREN2, + ACTIONS(6452), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6454), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6885), 1, + anon_sym_DOLLAR, + STATE(3690), 1, + sym__immediate_decimal, + STATE(3923), 1, sym_comment, - STATE(4021), 1, - sym_cell_path, - ACTIONS(1890), 19, + ACTIONS(6498), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3781), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1570), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -352887,30 +359863,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [158016] = 8, - ACTIONS(247), 1, + [156194] = 10, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1892), 1, - anon_sym_DASH, - ACTIONS(5602), 1, - anon_sym_DOT, - STATE(2632), 1, - aux_sym_cell_path_repeat1, - STATE(2655), 1, - sym_path, - STATE(3860), 1, + ACTIONS(6446), 1, + anon_sym_LPAREN2, + ACTIONS(6452), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6454), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6885), 1, + anon_sym_DOLLAR, + STATE(3666), 1, + sym__immediate_decimal, + STATE(3924), 1, sym_comment, - STATE(4022), 1, - sym_cell_path, - ACTIONS(1894), 19, + ACTIONS(6498), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3665), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1610), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -352922,30 +359900,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [158059] = 8, - ACTIONS(247), 1, + [156241] = 10, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1896), 1, - anon_sym_DASH, - ACTIONS(5602), 1, - anon_sym_DOT, - STATE(2632), 1, - aux_sym_cell_path_repeat1, - STATE(2655), 1, - sym_path, - STATE(3861), 1, + ACTIONS(6446), 1, + anon_sym_LPAREN2, + ACTIONS(6452), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6454), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6885), 1, + anon_sym_DOLLAR, + STATE(3668), 1, + sym__immediate_decimal, + STATE(3925), 1, sym_comment, - STATE(4023), 1, - sym_cell_path, - ACTIONS(1898), 19, + ACTIONS(6498), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3667), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1614), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -352957,30 +359937,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [158102] = 8, - ACTIONS(247), 1, + [156288] = 10, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1836), 1, - anon_sym_DASH, - ACTIONS(5602), 1, - anon_sym_DOT, - STATE(2632), 1, - aux_sym_cell_path_repeat1, - STATE(2655), 1, - sym_path, - STATE(3862), 1, + ACTIONS(6446), 1, + anon_sym_LPAREN2, + ACTIONS(6452), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6454), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6885), 1, + anon_sym_DOLLAR, + STATE(3672), 1, + sym__immediate_decimal, + STATE(3926), 1, sym_comment, - STATE(4000), 1, - sym_cell_path, - ACTIONS(1838), 19, + ACTIONS(6498), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3671), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1622), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -352992,30 +359974,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [158145] = 8, - ACTIONS(247), 1, + [156335] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1900), 1, + ACTIONS(1993), 1, anon_sym_DASH, - ACTIONS(5602), 1, + ACTIONS(5996), 1, anon_sym_DOT, - STATE(2632), 1, - aux_sym_cell_path_repeat1, - STATE(2655), 1, + STATE(2752), 1, sym_path, - STATE(3863), 1, + STATE(2899), 1, + aux_sym_cell_path_repeat1, + STATE(3927), 1, sym_comment, - STATE(4025), 1, + STATE(4061), 1, sym_cell_path, - ACTIONS(1902), 19, + ACTIONS(1995), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -353035,22 +360012,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [158188] = 8, - ACTIONS(247), 1, + [156378] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1904), 1, - anon_sym_DASH, - ACTIONS(5602), 1, - anon_sym_DOT, - STATE(2632), 1, - aux_sym_cell_path_repeat1, - STATE(2655), 1, - sym_path, - STATE(3864), 1, + ACTIONS(6943), 1, + aux_sym__immediate_decimal_token2, + STATE(3928), 1, sym_comment, - STATE(4026), 1, - sym_cell_path, - ACTIONS(1906), 19, + ACTIONS(1596), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1598), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -353063,27 +360035,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, anon_sym_RBRACE, - anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [158231] = 6, - ACTIONS(247), 1, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [156415] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6766), 1, + ACTIONS(1524), 1, + sym__space, + ACTIONS(1526), 1, + aux_sym_unquoted_token2, + ACTIONS(4273), 1, + anon_sym_DOLLAR, + ACTIONS(6893), 1, + anon_sym_LPAREN2, + ACTIONS(6909), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6768), 1, - aux_sym__immediate_decimal_token2, - STATE(3865), 1, + ACTIONS(6911), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(6913), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6915), 1, + aux_sym__immediate_decimal_token5, + STATE(3929), 1, sym_comment, - ACTIONS(1540), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1542), 20, - ts_builtin_sym_end, + STATE(4489), 1, + sym__immediate_decimal, + STATE(4755), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1510), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -353095,30 +360082,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [158270] = 8, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [156468] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1868), 1, + ACTIONS(1929), 1, anon_sym_DASH, - ACTIONS(5602), 1, + ACTIONS(5996), 1, anon_sym_DOT, - STATE(2632), 1, - aux_sym_cell_path_repeat1, - STATE(2655), 1, + STATE(2752), 1, sym_path, - STATE(3866), 1, + STATE(2899), 1, + aux_sym_cell_path_repeat1, + STATE(3930), 1, sym_comment, - STATE(4014), 1, + STATE(4057), 1, sym_cell_path, - ACTIONS(1870), 19, + ACTIONS(1931), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -353138,63 +360119,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [158313] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1494), 1, - aux_sym_unquoted_token2, - ACTIONS(2170), 1, - anon_sym_DOLLAR, - ACTIONS(6770), 1, - anon_sym_LPAREN2, - ACTIONS(6772), 1, - anon_sym_DOT, - ACTIONS(6774), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6776), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(6778), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6780), 1, - aux_sym__immediate_decimal_token5, - STATE(3867), 1, - sym_comment, - STATE(4167), 1, - sym__immediate_decimal, - ACTIONS(1492), 2, - ts_builtin_sym_end, - sym__space, - STATE(4462), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1478), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [158368] = 8, - ACTIONS(247), 1, + [156511] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1872), 1, + ACTIONS(1997), 1, anon_sym_DASH, - ACTIONS(5602), 1, + ACTIONS(5996), 1, anon_sym_DOT, - STATE(2632), 1, - aux_sym_cell_path_repeat1, - STATE(2655), 1, + STATE(2752), 1, sym_path, - STATE(3868), 1, + STATE(2899), 1, + aux_sym_cell_path_repeat1, + STATE(3931), 1, sym_comment, - STATE(4015), 1, + STATE(4062), 1, sym_cell_path, - ACTIONS(1874), 19, + ACTIONS(1999), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -353214,29 +360154,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [158411] = 10, - ACTIONS(247), 1, + [156554] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(6297), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6299), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6722), 1, - anon_sym_DOLLAR, - STATE(3869), 1, + ACTIONS(2001), 1, + anon_sym_DASH, + ACTIONS(5996), 1, + anon_sym_DOT, + STATE(2752), 1, + sym_path, + STATE(2899), 1, + aux_sym_cell_path_repeat1, + STATE(3932), 1, sym_comment, - STATE(4521), 1, - sym__immediate_decimal, - ACTIONS(6346), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4558), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1506), 15, - ts_builtin_sym_end, + STATE(4063), 1, + sym_cell_path, + ACTIONS(2003), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -353248,25 +360181,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [158458] = 8, - ACTIONS(247), 1, + [156597] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1884), 1, + ACTIONS(2005), 1, anon_sym_DASH, - ACTIONS(5602), 1, + ACTIONS(5996), 1, anon_sym_DOT, - STATE(2632), 1, - aux_sym_cell_path_repeat1, - STATE(2655), 1, + STATE(2752), 1, sym_path, - STATE(3870), 1, + STATE(2899), 1, + aux_sym_cell_path_repeat1, + STATE(3933), 1, sym_comment, - STATE(4019), 1, + STATE(4064), 1, sym_cell_path, - ACTIONS(1886), 19, + ACTIONS(2007), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -353286,22 +360224,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [158501] = 8, - ACTIONS(247), 1, + [156640] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1840), 1, + ACTIONS(2051), 1, anon_sym_DASH, - ACTIONS(5602), 1, + ACTIONS(5996), 1, anon_sym_DOT, - STATE(2632), 1, - aux_sym_cell_path_repeat1, - STATE(2655), 1, + STATE(2752), 1, sym_path, - STATE(3871), 1, + STATE(2899), 1, + aux_sym_cell_path_repeat1, + STATE(3934), 1, sym_comment, - STATE(4002), 1, + STATE(4072), 1, sym_cell_path, - ACTIONS(1842), 19, + ACTIONS(2053), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -353321,22 +360259,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [158544] = 8, - ACTIONS(247), 1, + [156683] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1844), 1, + ACTIONS(2055), 1, anon_sym_DASH, - ACTIONS(5602), 1, + ACTIONS(5996), 1, anon_sym_DOT, - STATE(2632), 1, - aux_sym_cell_path_repeat1, - STATE(2655), 1, + STATE(2752), 1, sym_path, - STATE(3872), 1, + STATE(2899), 1, + aux_sym_cell_path_repeat1, + STATE(3935), 1, sym_comment, - STATE(4004), 1, + STATE(4074), 1, sym_cell_path, - ACTIONS(1846), 19, + ACTIONS(2057), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -353356,22 +360294,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [158587] = 8, - ACTIONS(247), 1, + [156726] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1848), 1, + ACTIONS(1909), 1, anon_sym_DASH, - ACTIONS(5602), 1, + ACTIONS(5996), 1, anon_sym_DOT, - STATE(2632), 1, - aux_sym_cell_path_repeat1, - STATE(2655), 1, + STATE(2752), 1, sym_path, - STATE(3873), 1, + STATE(2899), 1, + aux_sym_cell_path_repeat1, + STATE(3936), 1, sym_comment, - STATE(4005), 1, + STATE(4087), 1, sym_cell_path, - ACTIONS(1850), 19, + ACTIONS(1911), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -353391,22 +360329,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [158630] = 8, - ACTIONS(247), 1, + [156769] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1852), 1, + ACTIONS(1897), 1, anon_sym_DASH, - ACTIONS(5602), 1, + ACTIONS(5996), 1, anon_sym_DOT, - STATE(2632), 1, - aux_sym_cell_path_repeat1, - STATE(2655), 1, + STATE(2752), 1, sym_path, - STATE(3874), 1, + STATE(2899), 1, + aux_sym_cell_path_repeat1, + STATE(3937), 1, sym_comment, - STATE(4006), 1, + STATE(4054), 1, sym_cell_path, - ACTIONS(1854), 19, + ACTIONS(1899), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -353426,22 +360364,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [158673] = 8, - ACTIONS(247), 1, + [156812] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1856), 1, + ACTIONS(2009), 1, anon_sym_DASH, - ACTIONS(5602), 1, + ACTIONS(5996), 1, anon_sym_DOT, - STATE(2632), 1, - aux_sym_cell_path_repeat1, - STATE(2655), 1, + STATE(2752), 1, sym_path, - STATE(3875), 1, + STATE(2899), 1, + aux_sym_cell_path_repeat1, + STATE(3938), 1, sym_comment, - STATE(4008), 1, + STATE(4065), 1, sym_cell_path, - ACTIONS(1858), 19, + ACTIONS(2011), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -353461,22 +360399,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [158716] = 8, - ACTIONS(247), 1, + [156855] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1912), 1, + ACTIONS(2059), 1, anon_sym_DASH, - ACTIONS(5602), 1, + ACTIONS(5996), 1, anon_sym_DOT, - STATE(2632), 1, - aux_sym_cell_path_repeat1, - STATE(2655), 1, + STATE(2752), 1, sym_path, - STATE(3876), 1, + STATE(2899), 1, + aux_sym_cell_path_repeat1, + STATE(3939), 1, sym_comment, - STATE(3988), 1, + STATE(4075), 1, sym_cell_path, - ACTIONS(1914), 19, + ACTIONS(2061), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -353496,27 +360434,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [158759] = 10, - ACTIONS(247), 1, + [156898] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - ACTIONS(6782), 1, - anon_sym_DOT_DOT2, - ACTIONS(6786), 1, - sym_filesize_unit, - ACTIONS(6788), 1, - sym_duration_unit, - ACTIONS(6790), 1, - aux_sym_unquoted_token2, - STATE(3877), 1, + ACTIONS(2067), 1, + anon_sym_DASH, + ACTIONS(5996), 1, + anon_sym_DOT, + STATE(2752), 1, + sym_path, + STATE(2899), 1, + aux_sym_cell_path_repeat1, + STATE(3940), 1, sym_comment, - STATE(7254), 1, - sym__expr_parenthesized_immediate, - ACTIONS(6784), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1572), 16, + STATE(4076), 1, + sym_cell_path, + ACTIONS(2069), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -353529,26 +360462,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [158806] = 8, - ACTIONS(247), 1, + [156941] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1860), 1, + ACTIONS(2083), 1, anon_sym_DASH, - ACTIONS(5602), 1, + ACTIONS(5996), 1, anon_sym_DOT, - STATE(2632), 1, - aux_sym_cell_path_repeat1, - STATE(2655), 1, + STATE(2752), 1, sym_path, - STATE(3878), 1, + STATE(2899), 1, + aux_sym_cell_path_repeat1, + STATE(3941), 1, sym_comment, - STATE(4009), 1, + STATE(4077), 1, sym_cell_path, - ACTIONS(1862), 19, + ACTIONS(2085), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -353568,22 +360504,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [158849] = 8, - ACTIONS(247), 1, + [156984] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1864), 1, + ACTIONS(2087), 1, anon_sym_DASH, - ACTIONS(5602), 1, + ACTIONS(5996), 1, anon_sym_DOT, - STATE(2632), 1, - aux_sym_cell_path_repeat1, - STATE(2655), 1, + STATE(2752), 1, sym_path, - STATE(3879), 1, + STATE(2899), 1, + aux_sym_cell_path_repeat1, + STATE(3942), 1, sym_comment, - STATE(4012), 1, + STATE(4113), 1, sym_cell_path, - ACTIONS(1866), 19, + ACTIONS(2089), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -353603,17 +360539,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [158892] = 5, - ACTIONS(247), 1, + [157027] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6748), 1, - aux_sym__immediate_decimal_token2, - STATE(3880), 1, + ACTIONS(2095), 1, + anon_sym_DASH, + ACTIONS(5996), 1, + anon_sym_DOT, + STATE(2752), 1, + sym_path, + STATE(2899), 1, + aux_sym_cell_path_repeat1, + STATE(3943), 1, sym_comment, - ACTIONS(1518), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1520), 21, + STATE(4079), 1, + sym_cell_path, + ACTIONS(2097), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -353626,38 +360567,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [158929] = 10, - ACTIONS(247), 1, + [157070] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6291), 1, + ACTIONS(1570), 1, + sym__space, + ACTIONS(1947), 1, + anon_sym_DOLLAR, + ACTIONS(6893), 1, anon_sym_LPAREN2, - ACTIONS(6297), 1, + ACTIONS(6897), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6899), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(6901), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6299), 1, + ACTIONS(6903), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6722), 1, - anon_sym_DOLLAR, - STATE(3881), 1, + ACTIONS(6945), 1, + anon_sym_DOT, + STATE(3944), 1, sym_comment, - STATE(4563), 1, + STATE(4350), 1, sym__immediate_decimal, - ACTIONS(6346), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4559), 2, + STATE(4349), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1604), 15, - ts_builtin_sym_end, + ACTIONS(1560), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -353669,31 +360612,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [158976] = 10, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [157123] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(6297), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6299), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6722), 1, - anon_sym_DOLLAR, - STATE(3882), 1, - sym_comment, - STATE(4568), 1, - sym__immediate_decimal, - ACTIONS(6346), 2, + ACTIONS(6947), 1, aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4567), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1588), 15, + ACTIONS(6949), 1, + aux_sym__immediate_decimal_token2, + STATE(3945), 1, + sym_comment, + ACTIONS(1528), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1530), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -353709,29 +360642,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [159023] = 10, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6291), 1, anon_sym_LPAREN2, - ACTIONS(6297), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6299), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6722), 1, - anon_sym_DOLLAR, - STATE(3883), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [157162] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1893), 1, + anon_sym_DASH, + ACTIONS(5996), 1, + anon_sym_DOT, + STATE(2752), 1, + sym_path, + STATE(2899), 1, + aux_sym_cell_path_repeat1, + STATE(3946), 1, sym_comment, - STATE(4590), 1, - sym__immediate_decimal, - ACTIONS(6346), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4588), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1584), 15, - ts_builtin_sym_end, + STATE(4050), 1, + sym_cell_path, + ACTIONS(1895), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -353743,36 +360674,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [159070] = 13, + [157205] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1550), 1, + ACTIONS(1614), 1, sym__space, - ACTIONS(1552), 1, - aux_sym_unquoted_token2, - ACTIONS(4283), 1, + ACTIONS(4273), 1, anon_sym_DOLLAR, - ACTIONS(6730), 1, + ACTIONS(6893), 1, anon_sym_LPAREN2, - ACTIONS(6758), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6760), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(6762), 1, + ACTIONS(6901), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6764), 1, + ACTIONS(6903), 1, aux_sym__immediate_decimal_token5, - STATE(3884), 1, + ACTIONS(6951), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6953), 1, + aux_sym__immediate_decimal_token3, + STATE(3947), 1, sym_comment, - STATE(4310), 1, + STATE(4838), 1, sym__immediate_decimal, - STATE(4796), 2, + STATE(4835), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1548), 13, + ACTIONS(1612), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -353786,33 +360720,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [159123] = 13, + [157255] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1506), 1, - sym__space, - ACTIONS(2051), 1, + ACTIONS(1558), 1, + aux_sym_unquoted_token2, + ACTIONS(4237), 1, anon_sym_DOLLAR, - ACTIONS(6730), 1, + ACTIONS(6931), 1, anon_sym_LPAREN2, - ACTIONS(6734), 1, + ACTIONS(6955), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6736), 1, + ACTIONS(6957), 1, aux_sym__immediate_decimal_token3, - ACTIONS(6738), 1, + ACTIONS(6959), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6740), 1, + ACTIONS(6961), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6792), 1, - anon_sym_DOT, - STATE(3885), 1, + STATE(3948), 1, sym_comment, - STATE(4239), 1, + STATE(4600), 1, sym__immediate_decimal, - STATE(4253), 2, + ACTIONS(1556), 2, + ts_builtin_sym_end, + sym__space, + STATE(5003), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1496), 13, + ACTIONS(1544), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -353824,24 +360759,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [159176] = 8, - ACTIONS(247), 1, + [157307] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1828), 1, - anon_sym_DASH, - ACTIONS(5602), 1, - anon_sym_DOT, - STATE(2632), 1, - aux_sym_cell_path_repeat1, - STATE(2655), 1, - sym_path, - STATE(3886), 1, + STATE(3949), 1, sym_comment, - STATE(4040), 1, - sym_cell_path, - ACTIONS(1830), 19, + ACTIONS(1528), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1530), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -353854,54 +360780,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, anon_sym_RBRACE, - anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [159219] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6794), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6796), 1, - aux_sym__immediate_decimal_token2, - STATE(3887), 1, - sym_comment, - ACTIONS(1542), 6, - sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(1540), 15, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [159257] = 4, - ACTIONS(247), 1, + [157341] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3888), 1, + STATE(3950), 1, sym_comment, - ACTIONS(1518), 2, + ACTIONS(1711), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1520), 21, + ACTIONS(1713), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -353923,15 +360819,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [159291] = 4, - ACTIONS(247), 1, + [157375] = 13, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3889), 1, - sym_comment, - ACTIONS(1540), 2, - anon_sym_DOT_DOT2, + ACTIONS(1526), 1, aux_sym_unquoted_token2, - ACTIONS(1542), 21, + ACTIONS(4237), 1, + anon_sym_DOLLAR, + ACTIONS(6931), 1, + anon_sym_LPAREN2, + ACTIONS(6955), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6957), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(6959), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6961), 1, + aux_sym__immediate_decimal_token5, + STATE(3951), 1, + sym_comment, + STATE(4681), 1, + sym__immediate_decimal, + ACTIONS(1524), 2, + ts_builtin_sym_end, + sym__space, + STATE(4982), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1510), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -353943,33 +360858,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [159325] = 6, + [157427] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6798), 1, - anon_sym_DOT, - ACTIONS(6800), 1, - aux_sym__immediate_decimal_token2, - STATE(3890), 1, - sym_comment, - ACTIONS(1520), 6, + ACTIONS(1570), 1, sym__space, + ACTIONS(4273), 1, + anon_sym_DOLLAR, + ACTIONS(6893), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1518), 15, + ACTIONS(6901), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6903), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6951), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6953), 1, + aux_sym__immediate_decimal_token3, + STATE(3952), 1, + sym_comment, + STATE(4753), 1, + sym__immediate_decimal, + STATE(4743), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1560), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -353983,20 +360896,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [159363] = 5, - ACTIONS(247), 1, + [157477] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6754), 1, - aux_sym__immediate_decimal_token2, - STATE(3891), 1, + ACTIONS(2131), 1, + anon_sym_DOLLAR, + ACTIONS(6931), 1, + anon_sym_LPAREN2, + ACTIONS(6935), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6937), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(6939), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6941), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6963), 1, + anon_sym_DOT, + STATE(3953), 1, sym_comment, - ACTIONS(1518), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1520), 20, + STATE(4381), 1, + sym__immediate_decimal, + ACTIONS(1570), 2, ts_builtin_sym_end, + sym__space, + STATE(4380), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1560), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -354008,23 +360935,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, + [157529] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6965), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6967), 1, + aux_sym__immediate_decimal_token2, + STATE(3954), 1, + sym_comment, + ACTIONS(1530), 6, + sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [159399] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3892), 1, - sym_comment, - ACTIONS(1554), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1556), 21, + ACTIONS(1528), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -354038,26 +360965,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [159433] = 5, - ACTIONS(247), 1, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [157567] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6802), 1, - aux_sym__immediate_decimal_token2, - STATE(3893), 1, + STATE(3955), 1, sym_comment, - ACTIONS(1554), 2, + ACTIONS(1536), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1556), 20, - ts_builtin_sym_end, + ACTIONS(1538), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -354069,6 +360987,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, @@ -354077,19 +360997,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [159469] = 6, - ACTIONS(247), 1, + [157601] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6804), 1, - anon_sym_DOT, - ACTIONS(6806), 1, - aux_sym__immediate_decimal_token2, - STATE(3894), 1, + ACTIONS(1622), 1, + sym__space, + ACTIONS(4273), 1, + anon_sym_DOLLAR, + ACTIONS(6893), 1, + anon_sym_LPAREN2, + ACTIONS(6901), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6903), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6951), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6953), 1, + aux_sym__immediate_decimal_token3, + STATE(3956), 1, sym_comment, - ACTIONS(1667), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1669), 19, + STATE(4845), 1, + sym__immediate_decimal, + STATE(4839), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1620), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -354103,40 +361035,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [159507] = 13, - ACTIONS(3), 1, + [157651] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2170), 1, - anon_sym_DOLLAR, - ACTIONS(6770), 1, - anon_sym_LPAREN2, - ACTIONS(6774), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6776), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(6778), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6780), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6808), 1, + ACTIONS(1664), 1, + anon_sym_DOT_DOT2, + ACTIONS(6216), 1, anon_sym_DOT, - STATE(3895), 1, + STATE(3165), 1, + aux_sym_cell_path_repeat1, + STATE(3337), 1, + sym_path, + STATE(3780), 1, + sym_cell_path, + STATE(3957), 1, sym_comment, - STATE(4461), 1, - sym__immediate_decimal, - ACTIONS(1506), 2, - ts_builtin_sym_end, - sym__space, - STATE(4460), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1496), 11, + ACTIONS(1668), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -354148,15 +361062,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [159559] = 4, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [157693] = 6, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3896), 1, + ACTIONS(6969), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6971), 1, + aux_sym__immediate_decimal_token2, + STATE(3958), 1, sym_comment, - ACTIONS(1653), 2, + ACTIONS(1703), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1655), 21, + ACTIONS(1705), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -354176,33 +361101,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [159593] = 12, - ACTIONS(3), 1, + [157731] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1604), 1, - sym__space, - ACTIONS(4283), 1, - anon_sym_DOLLAR, - ACTIONS(6730), 1, - anon_sym_LPAREN2, - ACTIONS(6738), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6740), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6810), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6812), 1, - aux_sym__immediate_decimal_token3, - STATE(3897), 1, + ACTIONS(6973), 1, + anon_sym_DOT, + ACTIONS(6975), 1, + aux_sym__immediate_decimal_token2, + STATE(3959), 1, sym_comment, - STATE(4737), 1, - sym__immediate_decimal, - STATE(4736), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1602), 13, + ACTIONS(1715), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1717), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -354216,31 +361127,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [159643] = 12, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [157769] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, + ACTIONS(1610), 1, sym__space, - ACTIONS(4283), 1, + ACTIONS(4273), 1, anon_sym_DOLLAR, - ACTIONS(6730), 1, + ACTIONS(6893), 1, anon_sym_LPAREN2, - ACTIONS(6738), 1, + ACTIONS(6901), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6740), 1, + ACTIONS(6903), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6810), 1, + ACTIONS(6951), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6812), 1, + ACTIONS(6953), 1, aux_sym__immediate_decimal_token3, - STATE(3898), 1, + STATE(3960), 1, sym_comment, - STATE(4742), 1, + STATE(4834), 1, sym__immediate_decimal, - STATE(4740), 2, + STATE(4833), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1586), 13, + ACTIONS(1608), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -354254,31 +361171,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [159693] = 12, - ACTIONS(3), 1, + [157819] = 10, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1584), 1, - sym__space, - ACTIONS(4283), 1, - anon_sym_DOLLAR, - ACTIONS(6730), 1, + ACTIONS(4433), 1, anon_sym_LPAREN2, - ACTIONS(6738), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6740), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6810), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6812), 1, - aux_sym__immediate_decimal_token3, - STATE(3899), 1, + ACTIONS(6977), 1, + anon_sym_DOT_DOT2, + ACTIONS(6981), 1, + sym_filesize_unit, + ACTIONS(6983), 1, + sym_duration_unit, + ACTIONS(6985), 1, + aux_sym_unquoted_token2, + STATE(3961), 1, sym_comment, - STATE(4748), 1, - sym__immediate_decimal, - STATE(4743), 2, + STATE(7472), 1, sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1576), 13, + ACTIONS(6979), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1640), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -354290,36 +361204,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [159743] = 13, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [157865] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1494), 1, - aux_sym_unquoted_token2, - ACTIONS(4247), 1, - anon_sym_DOLLAR, - ACTIONS(6770), 1, - anon_sym_LPAREN2, - ACTIONS(6814), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6816), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(6818), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6820), 1, - aux_sym__immediate_decimal_token5, - STATE(3900), 1, + ACTIONS(1670), 1, + anon_sym_DOT_DOT2, + ACTIONS(6216), 1, + anon_sym_DOT, + STATE(3165), 1, + aux_sym_cell_path_repeat1, + STATE(3337), 1, + sym_path, + STATE(3790), 1, + sym_cell_path, + STATE(3962), 1, sym_comment, - STATE(4578), 1, - sym__immediate_decimal, - ACTIONS(1492), 2, - ts_builtin_sym_end, - sym__space, - STATE(4916), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1478), 11, + ACTIONS(1672), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -354331,19 +361234,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [159795] = 6, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [157907] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6822), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6824), 1, - aux_sym__immediate_decimal_token2, - STATE(3901), 1, + STATE(3963), 1, sym_comment, - ACTIONS(1659), 2, + ACTIONS(1596), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1661), 19, + ACTIONS(1598), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -354363,34 +361269,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [159833] = 13, + sym_filesize_unit, + sym_duration_unit, + [157941] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1552), 1, - aux_sym_unquoted_token2, - ACTIONS(4247), 1, - anon_sym_DOLLAR, - ACTIONS(6770), 1, - anon_sym_LPAREN2, - ACTIONS(6814), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6816), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(6818), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6820), 1, - aux_sym__immediate_decimal_token5, - STATE(3902), 1, + ACTIONS(6987), 1, + anon_sym_DOT, + ACTIONS(6989), 1, + aux_sym__immediate_decimal_token2, + STATE(3964), 1, sym_comment, - STATE(4609), 1, - sym__immediate_decimal, - ACTIONS(1550), 2, - ts_builtin_sym_end, + ACTIONS(1538), 6, sym__space, - STATE(4891), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1548), 11, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1536), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -354402,22 +361299,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [159885] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1641), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - ACTIONS(6092), 1, - anon_sym_DOT, - STATE(3132), 1, - aux_sym_cell_path_repeat1, - STATE(3242), 1, - sym_path, - STATE(3729), 1, - sym_cell_path, - STATE(3903), 1, + aux_sym_unquoted_token2, + [157979] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6991), 1, + aux_sym__immediate_decimal_token2, + STATE(3965), 1, sym_comment, - ACTIONS(1645), 18, + ACTIONS(1596), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1598), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -354429,29 +361326,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [159927] = 8, - ACTIONS(247), 1, + sym_filesize_unit, + sym_duration_unit, + [158015] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1675), 1, - anon_sym_DOT_DOT2, - ACTIONS(6092), 1, - anon_sym_DOT, - STATE(3132), 1, - aux_sym_cell_path_repeat1, - STATE(3242), 1, - sym_path, - STATE(3574), 1, - sym_cell_path, - STATE(3904), 1, + ACTIONS(6919), 1, + aux_sym__immediate_decimal_token2, + STATE(3966), 1, sym_comment, - ACTIONS(1677), 18, + ACTIONS(1536), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1538), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -354463,38 +361357,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [159969] = 12, - ACTIONS(3), 1, + sym_filesize_unit, + sym_duration_unit, + [158051] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1506), 1, - sym__space, - ACTIONS(4283), 1, - anon_sym_DOLLAR, - ACTIONS(6730), 1, - anon_sym_LPAREN2, - ACTIONS(6738), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6740), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6810), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6812), 1, - aux_sym__immediate_decimal_token3, - STATE(3905), 1, + ACTIONS(1901), 1, + anon_sym_DASH, + ACTIONS(6601), 1, + anon_sym_DOT, + STATE(3576), 1, + aux_sym_cell_path_repeat1, + STATE(3744), 1, + sym_path, + STATE(3967), 1, sym_comment, - STATE(4669), 1, - sym__immediate_decimal, - STATE(4668), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1496), 13, + STATE(4228), 1, + sym_cell_path, + ACTIONS(1903), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -354506,29 +361393,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [160019] = 10, - ACTIONS(247), 1, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [158092] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - ACTIONS(6826), 1, + ACTIONS(1670), 1, anon_sym_DOT_DOT2, - ACTIONS(6830), 1, - sym_filesize_unit, - ACTIONS(6832), 1, - sym_duration_unit, - ACTIONS(6834), 1, - aux_sym_unquoted_token2, - STATE(3906), 1, + ACTIONS(6993), 1, + anon_sym_DOT, + STATE(3838), 1, + sym_cell_path, + STATE(3968), 1, sym_comment, - STATE(7247), 1, - sym__expr_parenthesized_immediate, - ACTIONS(6828), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1572), 15, + STATE(4029), 1, + aux_sym_cell_path_repeat1, + STATE(4141), 1, + sym_path, + ACTIONS(1672), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -354544,22 +361429,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [160065] = 8, - ACTIONS(247), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [158133] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1900), 1, + ACTIONS(1021), 1, anon_sym_DASH, - ACTIONS(6446), 1, + ACTIONS(6601), 1, anon_sym_DOT, - STATE(3531), 1, + STATE(3576), 1, aux_sym_cell_path_repeat1, - STATE(3677), 1, + STATE(3744), 1, sym_path, - STATE(3907), 1, + STATE(3969), 1, sym_comment, - STATE(4205), 1, + STATE(4021), 1, sym_cell_path, - ACTIONS(1902), 17, + ACTIONS(1023), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -354577,22 +361464,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [160106] = 8, - ACTIONS(247), 1, + [158174] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1832), 1, + ACTIONS(1929), 1, anon_sym_DASH, - ACTIONS(6446), 1, + ACTIONS(6601), 1, anon_sym_DOT, - STATE(3531), 1, + STATE(3576), 1, aux_sym_cell_path_repeat1, - STATE(3677), 1, + STATE(3744), 1, sym_path, - STATE(3908), 1, + STATE(3970), 1, sym_comment, - STATE(4107), 1, + STATE(4232), 1, sym_cell_path, - ACTIONS(1834), 17, + ACTIONS(1931), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -354610,16 +361497,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [160147] = 4, - ACTIONS(247), 1, + [158215] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3909), 1, + ACTIONS(6975), 1, + aux_sym__immediate_decimal_token2, + STATE(3971), 1, sym_comment, - ACTIONS(1540), 2, + ACTIONS(1715), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1542), 20, - ts_builtin_sym_end, + ACTIONS(1717), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -354631,53 +361519,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [160180] = 5, - ACTIONS(3), 1, + [158250] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6836), 1, + ACTIONS(6995), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6997), 1, aux_sym__immediate_decimal_token2, - STATE(3910), 1, - sym_comment, - ACTIONS(1556), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1554), 15, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [160215] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3911), 1, + STATE(3972), 1, sym_comment, - ACTIONS(1554), 2, + ACTIONS(1703), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1556), 20, + ACTIONS(1705), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -354696,34 +361558,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [160248] = 12, + [158287] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4247), 1, + ACTIONS(4237), 1, anon_sym_DOLLAR, - ACTIONS(6770), 1, + ACTIONS(6931), 1, anon_sym_LPAREN2, - ACTIONS(6778), 1, + ACTIONS(6939), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6780), 1, + ACTIONS(6941), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6838), 1, + ACTIONS(6999), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6840), 1, + ACTIONS(7001), 1, aux_sym__immediate_decimal_token3, - STATE(3912), 1, + STATE(3973), 1, sym_comment, - STATE(4880), 1, + STATE(4981), 1, sym__immediate_decimal, - ACTIONS(1584), 2, + ACTIONS(1570), 2, ts_builtin_sym_end, sym__space, - STATE(4813), 2, + STATE(4980), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1576), 11, + ACTIONS(1560), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -354735,22 +361595,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [160297] = 8, - ACTIONS(247), 1, + [158336] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1868), 1, - anon_sym_DASH, - ACTIONS(6446), 1, + ACTIONS(1664), 1, + anon_sym_DOT_DOT2, + ACTIONS(6993), 1, anon_sym_DOT, - STATE(3531), 1, + STATE(3827), 1, + sym_cell_path, + STATE(3974), 1, + sym_comment, + STATE(4029), 1, aux_sym_cell_path_repeat1, - STATE(3677), 1, + STATE(4141), 1, sym_path, - STATE(3913), 1, - sym_comment, - STATE(4157), 1, - sym_cell_path, - ACTIONS(1870), 17, + ACTIONS(1668), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -354763,27 +361623,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [160338] = 8, - ACTIONS(247), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [158377] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1852), 1, + ACTIONS(1993), 1, anon_sym_DASH, - ACTIONS(6446), 1, + ACTIONS(6601), 1, anon_sym_DOT, - STATE(3531), 1, + STATE(3576), 1, aux_sym_cell_path_repeat1, - STATE(3677), 1, + STATE(3744), 1, sym_path, - STATE(3914), 1, + STATE(3975), 1, sym_comment, - STATE(4143), 1, + STATE(4239), 1, sym_cell_path, - ACTIONS(1854), 17, + ACTIONS(1995), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -354801,22 +361661,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [160379] = 8, - ACTIONS(247), 1, + [158418] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1872), 1, + ACTIONS(1997), 1, anon_sym_DASH, - ACTIONS(6446), 1, + ACTIONS(6601), 1, anon_sym_DOT, - STATE(3531), 1, + STATE(3576), 1, aux_sym_cell_path_repeat1, - STATE(3677), 1, + STATE(3744), 1, sym_path, - STATE(3915), 1, + STATE(3976), 1, sym_comment, - STATE(4171), 1, + STATE(4242), 1, sym_cell_path, - ACTIONS(1874), 17, + ACTIONS(1999), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -354834,22 +361694,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [160420] = 8, - ACTIONS(247), 1, + [158459] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(7003), 1, + aux_sym__immediate_decimal_token2, + STATE(3977), 1, + sym_comment, + ACTIONS(1769), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1771), 19, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [158494] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(3978), 1, + sym_comment, + ACTIONS(1528), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1530), 20, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [158527] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1856), 1, + ACTIONS(2001), 1, anon_sym_DASH, - ACTIONS(6446), 1, + ACTIONS(6601), 1, anon_sym_DOT, - STATE(3531), 1, + STATE(3576), 1, aux_sym_cell_path_repeat1, - STATE(3677), 1, + STATE(3744), 1, sym_path, - STATE(3916), 1, + STATE(3979), 1, sym_comment, - STATE(4145), 1, + STATE(4243), 1, sym_cell_path, - ACTIONS(1858), 17, + ACTIONS(2003), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -354867,22 +361786,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [160461] = 8, - ACTIONS(247), 1, + [158568] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1860), 1, + ACTIONS(2005), 1, anon_sym_DASH, - ACTIONS(6446), 1, + ACTIONS(6601), 1, anon_sym_DOT, - STATE(3531), 1, + STATE(3576), 1, aux_sym_cell_path_repeat1, - STATE(3677), 1, + STATE(3744), 1, sym_path, - STATE(3917), 1, + STATE(3980), 1, sym_comment, - STATE(4147), 1, + STATE(4244), 1, sym_cell_path, - ACTIONS(1862), 17, + ACTIONS(2007), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -354900,22 +361819,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [160502] = 8, - ACTIONS(247), 1, + [158609] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1864), 1, + ACTIONS(2009), 1, anon_sym_DASH, - ACTIONS(6446), 1, + ACTIONS(6601), 1, anon_sym_DOT, - STATE(3531), 1, + STATE(3576), 1, aux_sym_cell_path_repeat1, - STATE(3677), 1, + STATE(3744), 1, sym_path, - STATE(3918), 1, + STATE(3981), 1, sym_comment, - STATE(4153), 1, + STATE(4245), 1, sym_cell_path, - ACTIONS(1866), 17, + ACTIONS(2011), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -354933,24 +361852,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [160543] = 6, - ACTIONS(3), 1, + [158650] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6842), 1, + ACTIONS(2013), 1, + anon_sym_DASH, + ACTIONS(6601), 1, anon_sym_DOT, - ACTIONS(6844), 1, - aux_sym__immediate_decimal_token2, - STATE(3919), 1, + STATE(3576), 1, + aux_sym_cell_path_repeat1, + STATE(3744), 1, + sym_path, + STATE(3982), 1, sym_comment, - ACTIONS(1520), 7, + STATE(4248), 1, + sym_cell_path, + ACTIONS(2015), 17, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1518), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -354962,19 +361880,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [160580] = 5, - ACTIONS(247), 1, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [158691] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6846), 1, - aux_sym__immediate_decimal_token2, - STATE(3920), 1, + ACTIONS(2017), 1, + anon_sym_DASH, + ACTIONS(6601), 1, + anon_sym_DOT, + STATE(3576), 1, + aux_sym_cell_path_repeat1, + STATE(3744), 1, + sym_path, + STATE(3983), 1, sym_comment, - ACTIONS(1721), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1723), 19, + STATE(4250), 1, + sym_cell_path, + ACTIONS(2019), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -354986,40 +361913,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [160615] = 12, - ACTIONS(3), 1, + [158732] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4247), 1, - anon_sym_DOLLAR, - ACTIONS(6770), 1, - anon_sym_LPAREN2, - ACTIONS(6778), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6780), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6838), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6840), 1, - aux_sym__immediate_decimal_token3, - STATE(3921), 1, + ACTIONS(2021), 1, + anon_sym_DASH, + ACTIONS(6601), 1, + anon_sym_DOT, + STATE(3576), 1, + aux_sym_cell_path_repeat1, + STATE(3744), 1, + sym_path, + STATE(3984), 1, sym_comment, - STATE(4914), 1, - sym__immediate_decimal, - ACTIONS(1506), 2, + STATE(4251), 1, + sym_cell_path, + ACTIONS(2023), 17, ts_builtin_sym_end, - sym__space, - STATE(4999), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1496), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -355031,15 +361946,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [160664] = 4, - ACTIONS(247), 1, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [158773] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3922), 1, + STATE(3985), 1, sym_comment, - ACTIONS(1653), 2, + ACTIONS(1536), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1655), 20, + ACTIONS(1538), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -355060,22 +361980,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [160697] = 8, - ACTIONS(247), 1, + [158806] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1836), 1, + ACTIONS(2059), 1, anon_sym_DASH, - ACTIONS(6446), 1, + ACTIONS(6601), 1, anon_sym_DOT, - STATE(3531), 1, + STATE(3576), 1, aux_sym_cell_path_repeat1, - STATE(3677), 1, + STATE(3744), 1, sym_path, - STATE(3923), 1, + STATE(3986), 1, sym_comment, - STATE(4121), 1, + STATE(4268), 1, sym_cell_path, - ACTIONS(1838), 17, + ACTIONS(2061), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -355093,32 +362013,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [160738] = 12, + [158847] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4247), 1, - anon_sym_DOLLAR, - ACTIONS(6770), 1, - anon_sym_LPAREN2, - ACTIONS(6778), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6780), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6838), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6840), 1, - aux_sym__immediate_decimal_token3, - STATE(3924), 1, + ACTIONS(7005), 1, + anon_sym_DOT, + ACTIONS(7007), 1, + aux_sym__immediate_decimal_token2, + STATE(3987), 1, sym_comment, - STATE(4995), 1, - sym__immediate_decimal, - ACTIONS(1604), 2, + ACTIONS(1538), 7, ts_builtin_sym_end, sym__space, - STATE(4954), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1602), 11, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1536), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -355130,22 +362042,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [160787] = 8, - ACTIONS(247), 1, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [158884] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1876), 1, + ACTIONS(2055), 1, anon_sym_DASH, - ACTIONS(6446), 1, + ACTIONS(6601), 1, anon_sym_DOT, - STATE(3531), 1, + STATE(3576), 1, aux_sym_cell_path_repeat1, - STATE(3677), 1, + STATE(3744), 1, sym_path, - STATE(3925), 1, + STATE(3988), 1, sym_comment, - STATE(4172), 1, + STATE(4263), 1, sym_cell_path, - ACTIONS(1878), 17, + ACTIONS(2057), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -355163,22 +362077,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [160828] = 8, - ACTIONS(247), 1, + [158925] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1005), 1, - anon_sym_DOT_DOT2, - ACTIONS(6848), 1, - anon_sym_DOT, - STATE(3926), 1, + STATE(3989), 1, sym_comment, - STATE(3951), 1, - aux_sym_cell_path_repeat1, - STATE(3953), 1, - sym_cell_path, - STATE(4081), 1, - sym_path, - ACTIONS(1007), 17, + ACTIONS(1596), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1598), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -355194,63 +362101,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [160869] = 14, - ACTIONS(247), 1, + sym_filesize_unit, + sym_duration_unit, + [158958] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1494), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(6850), 1, - anon_sym_DOLLAR, - ACTIONS(6852), 1, - anon_sym_LPAREN2, - ACTIONS(6854), 1, - anon_sym_DOT, - ACTIONS(6856), 1, + ACTIONS(7009), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6858), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(6860), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6862), 1, - aux_sym__immediate_decimal_token5, - STATE(3927), 1, + ACTIONS(7011), 1, + aux_sym__immediate_decimal_token2, + STATE(3990), 1, sym_comment, - STATE(4277), 1, - sym__immediate_decimal, - ACTIONS(1478), 2, - sym_identifier, - anon_sym_DASH, - STATE(4531), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1492), 9, - anon_sym_EQ, + ACTIONS(1530), 7, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1528), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [160922] = 8, - ACTIONS(247), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [158995] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1005), 1, + ACTIONS(1897), 1, anon_sym_DASH, - ACTIONS(6446), 1, + ACTIONS(6601), 1, anon_sym_DOT, - STATE(3531), 1, + STATE(3576), 1, aux_sym_cell_path_repeat1, - STATE(3677), 1, + STATE(3744), 1, sym_path, - STATE(3928), 1, + STATE(3991), 1, sym_comment, - STATE(3953), 1, + STATE(4224), 1, sym_cell_path, - ACTIONS(1007), 17, + ACTIONS(1899), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -355268,22 +362170,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [160963] = 8, - ACTIONS(247), 1, + [159036] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1880), 1, - anon_sym_DASH, - ACTIONS(6446), 1, + ACTIONS(1021), 1, + anon_sym_DOT_DOT2, + ACTIONS(6993), 1, anon_sym_DOT, - STATE(3531), 1, - aux_sym_cell_path_repeat1, - STATE(3677), 1, - sym_path, - STATE(3929), 1, + STATE(3992), 1, sym_comment, - STATE(4173), 1, + STATE(4021), 1, sym_cell_path, - ACTIONS(1882), 17, + STATE(4029), 1, + aux_sym_cell_path_repeat1, + STATE(4141), 1, + sym_path, + ACTIONS(1023), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -355296,27 +362198,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [161004] = 8, - ACTIONS(247), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [159077] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1884), 1, + ACTIONS(2087), 1, anon_sym_DASH, - ACTIONS(6446), 1, + ACTIONS(6601), 1, anon_sym_DOT, - STATE(3531), 1, + STATE(3576), 1, aux_sym_cell_path_repeat1, - STATE(3677), 1, + STATE(3744), 1, sym_path, - STATE(3930), 1, + STATE(3993), 1, sym_comment, - STATE(4184), 1, + STATE(4280), 1, sym_cell_path, - ACTIONS(1886), 17, + ACTIONS(2089), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -355334,22 +362236,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [161045] = 8, - ACTIONS(247), 1, + [159118] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1675), 1, - anon_sym_DOT_DOT2, - ACTIONS(6848), 1, + ACTIONS(1909), 1, + anon_sym_DASH, + ACTIONS(6601), 1, anon_sym_DOT, - STATE(3750), 1, - sym_cell_path, - STATE(3931), 1, - sym_comment, - STATE(3951), 1, + STATE(3576), 1, aux_sym_cell_path_repeat1, - STATE(4081), 1, + STATE(3744), 1, sym_path, - ACTIONS(1677), 17, + STATE(3994), 1, + sym_comment, + STATE(4182), 1, + sym_cell_path, + ACTIONS(1911), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -355362,27 +362264,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [161086] = 8, - ACTIONS(247), 1, + [159159] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1888), 1, + ACTIONS(2095), 1, anon_sym_DASH, - ACTIONS(6446), 1, + ACTIONS(6601), 1, anon_sym_DOT, - STATE(3531), 1, + STATE(3576), 1, aux_sym_cell_path_repeat1, - STATE(3677), 1, + STATE(3744), 1, sym_path, - STATE(3932), 1, + STATE(3995), 1, sym_comment, - STATE(4188), 1, + STATE(4227), 1, sym_cell_path, - ACTIONS(1890), 17, + ACTIONS(2097), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -355400,23 +362302,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [161127] = 8, - ACTIONS(247), 1, + [159200] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1892), 1, - anon_sym_DASH, - ACTIONS(6446), 1, - anon_sym_DOT, - STATE(3531), 1, - aux_sym_cell_path_repeat1, - STATE(3677), 1, - sym_path, - STATE(3933), 1, + ACTIONS(1640), 1, + sym__space, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + ACTIONS(7013), 1, + anon_sym_DOT_DOT2, + ACTIONS(7017), 1, + sym_filesize_unit, + ACTIONS(7019), 1, + sym_duration_unit, + ACTIONS(7021), 1, + aux_sym_unquoted_token2, + STATE(3996), 1, sym_comment, - STATE(4190), 1, - sym_cell_path, - ACTIONS(1894), 17, - ts_builtin_sym_end, + STATE(7582), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7015), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1628), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -355428,27 +362336,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [161168] = 8, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [159247] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1896), 1, - anon_sym_DASH, - ACTIONS(6446), 1, - anon_sym_DOT, - STATE(3531), 1, - aux_sym_cell_path_repeat1, - STATE(3677), 1, - sym_path, - STATE(3934), 1, + STATE(3997), 1, sym_comment, - STATE(4191), 1, - sym_cell_path, - ACTIONS(1898), 17, + ACTIONS(1711), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1713), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -355461,34 +362359,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [161209] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1572), 1, - sym__space, - ACTIONS(3978), 1, anon_sym_LPAREN2, - ACTIONS(6864), 1, - anon_sym_DOT_DOT2, - ACTIONS(6868), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym_filesize_unit, - ACTIONS(6870), 1, sym_duration_unit, - ACTIONS(6872), 1, - aux_sym_unquoted_token2, - STATE(3935), 1, + [159280] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6989), 1, + aux_sym__immediate_decimal_token2, + STATE(3998), 1, sym_comment, - STATE(7369), 1, - sym__expr_parenthesized_immediate, - ACTIONS(6866), 2, + ACTIONS(1538), 6, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1560), 13, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1536), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -355502,32 +362395,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [161256] = 12, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [159315] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4247), 1, + ACTIONS(4237), 1, anon_sym_DOLLAR, - ACTIONS(6770), 1, + ACTIONS(6931), 1, anon_sym_LPAREN2, - ACTIONS(6778), 1, + ACTIONS(6939), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6780), 1, + ACTIONS(6941), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6838), 1, + ACTIONS(6999), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6840), 1, + ACTIONS(7001), 1, aux_sym__immediate_decimal_token3, - STATE(3936), 1, + STATE(3999), 1, sym_comment, - STATE(4991), 1, + STATE(4998), 1, sym__immediate_decimal, - ACTIONS(1588), 2, + ACTIONS(1610), 2, ts_builtin_sym_end, sym__space, - STATE(4910), 2, + STATE(4997), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1586), 11, + ACTIONS(1608), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -355539,24 +362434,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [161305] = 6, + [159364] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6874), 1, + ACTIONS(4237), 1, + anon_sym_DOLLAR, + ACTIONS(6931), 1, + anon_sym_LPAREN2, + ACTIONS(6939), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6941), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6999), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6876), 1, - aux_sym__immediate_decimal_token2, - STATE(3937), 1, + ACTIONS(7001), 1, + aux_sym__immediate_decimal_token3, + STATE(4000), 1, sym_comment, - ACTIONS(1542), 7, + STATE(5000), 1, + sym__immediate_decimal, + ACTIONS(1614), 2, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1540), 13, + STATE(4999), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1612), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -355568,21 +362471,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [161342] = 6, - ACTIONS(247), 1, + [159413] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6878), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6880), 1, - aux_sym__immediate_decimal_token2, - STATE(3938), 1, + ACTIONS(2051), 1, + anon_sym_DASH, + ACTIONS(6601), 1, + anon_sym_DOT, + STATE(3576), 1, + aux_sym_cell_path_repeat1, + STATE(3744), 1, + sym_path, + STATE(4001), 1, sym_comment, - ACTIONS(1659), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1661), 18, + STATE(4256), 1, + sym_cell_path, + ACTIONS(2053), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -355595,28 +362499,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [161379] = 8, - ACTIONS(247), 1, + [159454] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1822), 1, + ACTIONS(1893), 1, anon_sym_DASH, - ACTIONS(6446), 1, + ACTIONS(6601), 1, anon_sym_DOT, - STATE(3531), 1, + STATE(3576), 1, aux_sym_cell_path_repeat1, - STATE(3677), 1, + STATE(3744), 1, sym_path, - STATE(3939), 1, + STATE(4002), 1, sym_comment, - STATE(4111), 1, + STATE(4208), 1, sym_cell_path, - ACTIONS(1826), 17, + ACTIONS(1895), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -355634,21 +362537,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [161420] = 5, + [159495] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6800), 1, - aux_sym__immediate_decimal_token2, - STATE(3940), 1, + ACTIONS(4237), 1, + anon_sym_DOLLAR, + ACTIONS(6931), 1, + anon_sym_LPAREN2, + ACTIONS(6939), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6941), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6999), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7001), 1, + aux_sym__immediate_decimal_token3, + STATE(4003), 1, sym_comment, - ACTIONS(1520), 6, + STATE(5002), 1, + sym__immediate_decimal, + ACTIONS(1622), 2, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1518), 15, + STATE(5001), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1620), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -355660,26 +362574,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + [159544] = 14, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1526), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(7023), 1, + anon_sym_DOLLAR, + ACTIONS(7025), 1, + anon_sym_LPAREN2, + ACTIONS(7027), 1, + anon_sym_DOT, + ACTIONS(7029), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7031), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7033), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7035), 1, + aux_sym__immediate_decimal_token5, + STATE(4004), 1, + sym_comment, + STATE(4375), 1, + sym__immediate_decimal, + ACTIONS(1510), 2, + sym_identifier, + anon_sym_DASH, + STATE(4682), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1524), 9, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [161455] = 8, - ACTIONS(247), 1, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [159597] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1912), 1, + ACTIONS(2067), 1, anon_sym_DASH, - ACTIONS(6446), 1, + ACTIONS(6601), 1, anon_sym_DOT, - STATE(3531), 1, + STATE(3576), 1, aux_sym_cell_path_repeat1, - STATE(3677), 1, + STATE(3744), 1, sym_path, - STATE(3941), 1, + STATE(4005), 1, sym_comment, - STATE(4098), 1, + STATE(4276), 1, sym_cell_path, - ACTIONS(1914), 17, + ACTIONS(2069), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -355697,22 +362646,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [161496] = 8, - ACTIONS(247), 1, + [159638] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1904), 1, + ACTIONS(2043), 1, anon_sym_DASH, - ACTIONS(6446), 1, + ACTIONS(6601), 1, anon_sym_DOT, - STATE(3531), 1, + STATE(3576), 1, aux_sym_cell_path_repeat1, - STATE(3677), 1, + STATE(3744), 1, sym_path, - STATE(3942), 1, + STATE(4006), 1, sym_comment, - STATE(4206), 1, + STATE(4253), 1, sym_cell_path, - ACTIONS(1906), 17, + ACTIONS(2045), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -355730,15 +362679,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [161537] = 4, - ACTIONS(247), 1, + [159679] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3943), 1, + ACTIONS(2047), 1, + anon_sym_DASH, + ACTIONS(6601), 1, + anon_sym_DOT, + STATE(3576), 1, + aux_sym_cell_path_repeat1, + STATE(3744), 1, + sym_path, + STATE(4007), 1, sym_comment, - ACTIONS(1518), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1520), 20, + STATE(4254), 1, + sym_cell_path, + ACTIONS(2049), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -355751,30 +362707,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, + [159720] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7037), 1, + aux_sym__immediate_decimal_token2, + STATE(4008), 1, + sym_comment, + ACTIONS(1598), 6, + sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [161570] = 8, - ACTIONS(247), 1, + ACTIONS(1596), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [159755] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1840), 1, + ACTIONS(2083), 1, anon_sym_DASH, - ACTIONS(6446), 1, + ACTIONS(6601), 1, anon_sym_DOT, - STATE(3531), 1, + STATE(3576), 1, aux_sym_cell_path_repeat1, - STATE(3677), 1, + STATE(3744), 1, sym_path, - STATE(3944), 1, + STATE(4009), 1, sym_comment, - STATE(4131), 1, + STATE(4277), 1, sym_cell_path, - ACTIONS(1842), 17, + ACTIONS(2085), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -355792,19 +362775,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [161611] = 6, - ACTIONS(247), 1, + [159796] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6882), 1, + ACTIONS(7039), 1, anon_sym_DOT, - ACTIONS(6884), 1, + ACTIONS(7041), 1, aux_sym__immediate_decimal_token2, - STATE(3945), 1, + STATE(4010), 1, sym_comment, - ACTIONS(1667), 2, + ACTIONS(1715), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1669), 18, + ACTIONS(1717), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -355823,22 +362806,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [161648] = 8, - ACTIONS(247), 1, + [159833] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1844), 1, - anon_sym_DASH, - ACTIONS(6446), 1, + ACTIONS(1031), 1, + anon_sym_DOT_DOT2, + ACTIONS(7043), 1, anon_sym_DOT, - STATE(3531), 1, - aux_sym_cell_path_repeat1, - STATE(3677), 1, + STATE(4141), 1, sym_path, - STATE(3946), 1, + STATE(4011), 2, sym_comment, - STATE(4140), 1, - sym_cell_path, - ACTIONS(1846), 17, + aux_sym_cell_path_repeat1, + ACTIONS(1033), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -355851,28 +362831,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [161689] = 8, - ACTIONS(247), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [159869] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1828), 1, - anon_sym_DASH, - ACTIONS(6446), 1, + ACTIONS(7046), 1, anon_sym_DOT, - STATE(3531), 1, - aux_sym_cell_path_repeat1, - STATE(3677), 1, - sym_path, - STATE(3947), 1, + ACTIONS(7048), 1, + aux_sym__immediate_decimal_token2, + STATE(4012), 1, sym_comment, - STATE(4163), 1, - sym_cell_path, - ACTIONS(1830), 17, - ts_builtin_sym_end, + ACTIONS(1717), 4, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1715), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -355884,28 +362862,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [161730] = 8, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [159905] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1848), 1, - anon_sym_DASH, - ACTIONS(6446), 1, - anon_sym_DOT, - STATE(3531), 1, - aux_sym_cell_path_repeat1, - STATE(3677), 1, - sym_path, - STATE(3948), 1, + ACTIONS(1844), 1, + anon_sym_LPAREN2, + ACTIONS(1852), 1, + aux_sym_unquoted_token2, + ACTIONS(7050), 1, + anon_sym_DOT_DOT2, + STATE(4013), 1, sym_comment, - STATE(4142), 1, - sym_cell_path, - ACTIONS(1850), 17, - ts_builtin_sym_end, + ACTIONS(7052), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1850), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -355917,22 +362892,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - [161771] = 5, - ACTIONS(247), 1, + [159943] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6806), 1, + ACTIONS(7054), 1, aux_sym__immediate_decimal_token2, - STATE(3949), 1, + STATE(4014), 1, sym_comment, - ACTIONS(1667), 2, + ACTIONS(1769), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1669), 19, + ACTIONS(1771), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -355944,31 +362920,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [161806] = 8, - ACTIONS(247), 1, + [159977] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1641), 1, + ACTIONS(1526), 1, + aux_sym_unquoted_token2, + ACTIONS(1790), 1, + anon_sym_LPAREN2, + ACTIONS(7056), 1, anon_sym_DOT_DOT2, - ACTIONS(6848), 1, - anon_sym_DOT, - STATE(3745), 1, - sym_cell_path, - STATE(3950), 1, + STATE(4015), 1, sym_comment, - STATE(3951), 1, - aux_sym_cell_path_repeat1, - STATE(4081), 1, - sym_path, - ACTIONS(1645), 17, - ts_builtin_sym_end, + ACTIONS(7058), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1796), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -355980,26 +362952,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [161847] = 7, - ACTIONS(247), 1, + [160015] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1011), 1, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + ACTIONS(7060), 1, anon_sym_DOT_DOT2, - ACTIONS(6848), 1, - anon_sym_DOT, - STATE(3951), 1, + ACTIONS(7064), 1, + sym_filesize_unit, + ACTIONS(7066), 1, + sym_duration_unit, + ACTIONS(7068), 1, + aux_sym_unquoted_token2, + STATE(4016), 1, sym_comment, - STATE(3976), 1, - aux_sym_cell_path_repeat1, - STATE(4081), 1, - sym_path, - ACTIONS(1013), 17, + STATE(7416), 1, + sym__expr_parenthesized_immediate, + ACTIONS(1640), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(7062), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1628), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -356011,23 +362992,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [161885] = 5, - ACTIONS(247), 1, + [160061] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6884), 1, - aux_sym__immediate_decimal_token2, - STATE(3952), 1, + ACTIONS(4997), 1, + anon_sym_DASH, + STATE(4017), 1, sym_comment, - ACTIONS(1667), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1669), 18, - ts_builtin_sym_end, + ACTIONS(4995), 20, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -356039,22 +363011,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [161919] = 4, - ACTIONS(247), 1, + [160093] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3953), 1, + STATE(4018), 1, sym_comment, - ACTIONS(1058), 2, - anon_sym_DASH, + ACTIONS(1715), 2, anon_sym_DOT_DOT2, - ACTIONS(1060), 19, - ts_builtin_sym_end, + aux_sym_unquoted_token2, + ACTIONS(1717), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -356066,26 +363040,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [161951] = 4, + [160125] = 13, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1558), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(7025), 1, + anon_sym_LPAREN2, + ACTIONS(7070), 1, + anon_sym_DOLLAR, + ACTIONS(7072), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7074), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7076), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7078), 1, + aux_sym__immediate_decimal_token5, + STATE(4019), 1, + sym_comment, + STATE(4790), 1, + sym__immediate_decimal, + ACTIONS(1544), 2, + sym_identifier, + anon_sym_DASH, + STATE(5161), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1556), 9, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [160175] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(3954), 1, + ACTIONS(7080), 1, + anon_sym_DOT, + STATE(4020), 1, sym_comment, - ACTIONS(1556), 6, + STATE(4096), 1, + aux_sym_cell_path_repeat1, + STATE(4176), 1, + sym_path, + STATE(4310), 1, + sym_cell_path, + ACTIONS(1668), 3, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1554), 15, + ACTIONS(1664), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -356100,18 +363117,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [161983] = 5, - ACTIONS(247), 1, + [160215] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6886), 1, - aux_sym__immediate_decimal_token2, - STATE(3955), 1, + STATE(4021), 1, sym_comment, - ACTIONS(1721), 2, + ACTIONS(1078), 2, + anon_sym_DASH, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1723), 18, + ACTIONS(1080), 19, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -356124,27 +363138,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [162017] = 6, - ACTIONS(3), 1, + [160247] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6888), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6890), 1, + ACTIONS(7082), 1, + anon_sym_DOT, + ACTIONS(7084), 1, aux_sym__immediate_decimal_token2, - STATE(3956), 1, + STATE(4022), 1, sym_comment, - ACTIONS(1661), 4, - sym__space, + ACTIONS(1536), 6, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_list_token2, + ACTIONS(1538), 13, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1659), 15, + [160283] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(4987), 1, + anon_sym_DASH, + STATE(4023), 1, + sym_comment, + ACTIONS(4985), 20, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -356157,18 +363195,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [162053] = 4, - ACTIONS(247), 1, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_LPAREN2, + [160315] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3957), 1, + STATE(4024), 1, sym_comment, - ACTIONS(1667), 2, + ACTIONS(1703), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1669), 19, + ACTIONS(1705), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -356188,15 +363231,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [162085] = 4, - ACTIONS(247), 1, + [160347] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3958), 1, + STATE(4025), 1, sym_comment, - ACTIONS(1659), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1661), 19, + ACTIONS(1713), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1711), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -356210,25 +363257,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [162117] = 4, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [160379] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3959), 1, + ACTIONS(7086), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7088), 1, + aux_sym__immediate_decimal_token2, + STATE(4026), 1, sym_comment, - ACTIONS(1655), 6, + ACTIONS(1705), 4, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1653), 15, + ACTIONS(1703), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -356244,14 +363289,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [162149] = 4, - ACTIONS(247), 1, + [160415] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4884), 1, - anon_sym_DASH, - STATE(3960), 1, + ACTIONS(7041), 1, + aux_sym__immediate_decimal_token2, + STATE(4027), 1, sym_comment, - ACTIONS(4882), 20, + ACTIONS(1715), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1717), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -356263,23 +363312,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, anon_sym_LPAREN2, - [162181] = 4, - ACTIONS(247), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [160449] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4894), 1, + ACTIONS(2355), 1, anon_sym_DASH, - STATE(3961), 1, + ACTIONS(7090), 1, + anon_sym_LBRACK2, + STATE(4028), 1, sym_comment, - ACTIONS(4892), 20, + ACTIONS(2359), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -356299,17 +363347,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - [162213] = 5, - ACTIONS(247), 1, + [160483] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2313), 1, - anon_sym_DASH, - ACTIONS(6892), 1, - anon_sym_LBRACK2, - STATE(3962), 1, + ACTIONS(1027), 1, + anon_sym_DOT_DOT2, + ACTIONS(6993), 1, + anon_sym_DOT, + STATE(4011), 1, + aux_sym_cell_path_repeat1, + STATE(4029), 1, sym_comment, - ACTIONS(2317), 19, + STATE(4141), 1, + sym_path, + ACTIONS(1029), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -356321,60 +363373,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [162247] = 13, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1494), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(6852), 1, - anon_sym_LPAREN2, - ACTIONS(6894), 1, - anon_sym_DOLLAR, - ACTIONS(6896), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6898), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(6900), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6902), 1, - aux_sym__immediate_decimal_token5, - STATE(3963), 1, - sym_comment, - STATE(4670), 1, - sym__immediate_decimal, - ACTIONS(1478), 2, - sym_identifier, - anon_sym_DASH, - STATE(5093), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1492), 9, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [162297] = 4, - ACTIONS(247), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [160521] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3964), 1, + STATE(4030), 1, sym_comment, - ACTIONS(1721), 2, + ACTIONS(1769), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1723), 19, + ACTIONS(1771), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -356394,21 +363406,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [162329] = 6, + [160553] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6904), 1, + ACTIONS(7080), 1, anon_sym_DOT, - ACTIONS(6906), 1, - aux_sym__immediate_decimal_token2, - STATE(3965), 1, + STATE(4031), 1, sym_comment, - ACTIONS(1669), 4, + STATE(4096), 1, + aux_sym_cell_path_repeat1, + STATE(4176), 1, + sym_path, + STATE(4320), 1, + sym_cell_path, + ACTIONS(1672), 3, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1667), 15, + ACTIONS(1670), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -356423,50 +363438,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [162365] = 4, - ACTIONS(247), 1, + [160593] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3966), 1, + STATE(4032), 1, sym_comment, - ACTIONS(1738), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1740), 19, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [162397] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1790), 1, + ACTIONS(1538), 6, + sym__space, anon_sym_LPAREN2, - ACTIONS(1798), 1, - aux_sym_unquoted_token2, - ACTIONS(6908), 1, - anon_sym_DOT_DOT2, - STATE(3967), 1, - sym_comment, - ACTIONS(6910), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1796), 16, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1536), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -356480,27 +363464,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [162435] = 8, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [160625] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6912), 1, - anon_sym_DOT, - STATE(3968), 1, + ACTIONS(7092), 1, + aux_sym__immediate_decimal_token2, + STATE(4033), 1, sym_comment, - STATE(4010), 1, - aux_sym_cell_path_repeat1, - STATE(4152), 1, - sym_path, - STATE(4270), 1, - sym_cell_path, - ACTIONS(1645), 3, + ACTIONS(1598), 7, + ts_builtin_sym_end, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1641), 14, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1596), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -356512,37 +363493,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_DOT_DOT2, - [162475] = 13, - ACTIONS(247), 1, + aux_sym_unquoted_token2, + [160659] = 13, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1552), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(6852), 1, - anon_sym_LPAREN2, - ACTIONS(6894), 1, + ACTIONS(7023), 1, anon_sym_DOLLAR, - ACTIONS(6896), 1, + ACTIONS(7025), 1, + anon_sym_LPAREN2, + ACTIONS(7029), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6898), 1, + ACTIONS(7031), 1, aux_sym__immediate_decimal_token3, - ACTIONS(6900), 1, + ACTIONS(7033), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6902), 1, + ACTIONS(7035), 1, aux_sym__immediate_decimal_token5, - STATE(3969), 1, + ACTIONS(7094), 1, + anon_sym_DOT, + STATE(4034), 1, sym_comment, - STATE(4644), 1, + STATE(4680), 1, sym__immediate_decimal, - ACTIONS(1548), 2, + ACTIONS(1560), 2, sym_identifier, anon_sym_DASH, - STATE(5108), 2, + STATE(4679), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1550), 9, + ACTIONS(1570), 9, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -356552,24 +363532,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [162525] = 8, - ACTIONS(3), 1, + [160709] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6912), 1, - anon_sym_DOT, - STATE(3970), 1, + STATE(4035), 1, sym_comment, - STATE(4010), 1, - aux_sym_cell_path_repeat1, - STATE(4152), 1, - sym_path, - STATE(4266), 1, - sym_cell_path, - ACTIONS(1677), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1675), 14, + ACTIONS(1826), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1828), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -356583,24 +363554,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [162565] = 6, - ACTIONS(247), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [160741] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6914), 1, - anon_sym_DOT, - ACTIONS(6916), 1, + ACTIONS(7096), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7098), 1, aux_sym__immediate_decimal_token2, - STATE(3971), 1, + STATE(4036), 1, sym_comment, - ACTIONS(1518), 6, + ACTIONS(1528), 6, sym_identifier, anon_sym_DASH, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, aux_sym__unquoted_in_list_token2, - ACTIONS(1520), 13, + ACTIONS(1530), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -356614,23 +363590,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [162601] = 6, - ACTIONS(247), 1, + [160777] = 13, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6918), 1, + ACTIONS(1526), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(7025), 1, + anon_sym_LPAREN2, + ACTIONS(7070), 1, + anon_sym_DOLLAR, + ACTIONS(7072), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6920), 1, - aux_sym__immediate_decimal_token2, - STATE(3972), 1, + ACTIONS(7074), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7076), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7078), 1, + aux_sym__immediate_decimal_token5, + STATE(4037), 1, sym_comment, - ACTIONS(1540), 6, + STATE(4844), 1, + sym__immediate_decimal, + ACTIONS(1510), 2, sym_identifier, anon_sym_DASH, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_list_token2, - ACTIONS(1542), 13, + STATE(5091), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1524), 9, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -356638,25 +363625,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [162637] = 4, + [160827] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3973), 1, + STATE(4038), 1, sym_comment, - ACTIONS(1520), 6, + ACTIONS(1530), 6, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(1518), 15, + ACTIONS(1528), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -356672,145 +363655,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [162669] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6844), 1, - aux_sym__immediate_decimal_token2, - STATE(3974), 1, - sym_comment, - ACTIONS(1520), 7, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1518), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [162703] = 4, + [160859] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3975), 1, + STATE(4039), 1, sym_comment, - ACTIONS(1542), 6, + ACTIONS(1598), 6, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(1540), 15, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [162735] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1015), 1, - anon_sym_DOT_DOT2, - ACTIONS(6922), 1, - anon_sym_DOT, - STATE(4081), 1, - sym_path, - STATE(3976), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1017), 17, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [162771] = 13, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6850), 1, - anon_sym_DOLLAR, - ACTIONS(6852), 1, - anon_sym_LPAREN2, - ACTIONS(6856), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6858), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(6860), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6862), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6925), 1, - anon_sym_DOT, - STATE(3977), 1, - sym_comment, - STATE(4556), 1, - sym__immediate_decimal, - ACTIONS(1496), 2, - sym_identifier, - anon_sym_DASH, - STATE(4525), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1506), 9, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [162821] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1494), 1, - aux_sym_unquoted_token2, - ACTIONS(1780), 1, - anon_sym_LPAREN2, - ACTIONS(6927), 1, - anon_sym_DOT_DOT2, - STATE(3978), 1, - sym_comment, - ACTIONS(6929), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1786), 16, + ACTIONS(1596), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -356824,62 +363681,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [162859] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - ACTIONS(6931), 1, anon_sym_DOT_DOT2, - ACTIONS(6935), 1, - sym_filesize_unit, - ACTIONS(6937), 1, - sym_duration_unit, - ACTIONS(6939), 1, aux_sym_unquoted_token2, - STATE(3979), 1, - sym_comment, - STATE(7281), 1, - sym__expr_parenthesized_immediate, - ACTIONS(1572), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(6933), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1560), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [162905] = 8, + [160891] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6912), 1, + ACTIONS(7080), 1, anon_sym_DOT, - STATE(3980), 1, + STATE(4040), 1, sym_comment, - STATE(4010), 1, + STATE(4096), 1, aux_sym_cell_path_repeat1, - STATE(4152), 1, + STATE(4176), 1, sym_path, - STATE(4272), 1, + STATE(4343), 1, sym_cell_path, - ACTIONS(1007), 3, + ACTIONS(1023), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1005), 14, + ACTIONS(1021), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -356894,14 +363715,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - [162945] = 5, + [160931] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6941), 1, + ACTIONS(7007), 1, aux_sym__immediate_decimal_token2, - STATE(3981), 1, + STATE(4041), 1, sym_comment, - ACTIONS(1556), 7, + ACTIONS(1538), 7, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, @@ -356909,7 +363730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(1554), 13, + ACTIONS(1536), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -356923,18 +363744,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [162979] = 6, - ACTIONS(247), 1, + [160965] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1667), 1, - aux_sym_unquoted_token2, - ACTIONS(6943), 1, - anon_sym_DOT, - ACTIONS(6945), 1, - aux_sym__immediate_decimal_token2, - STATE(3982), 1, + ACTIONS(2410), 1, + anon_sym_DASH, + STATE(4042), 1, sym_comment, - ACTIONS(1669), 17, + ACTIONS(2412), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -356947,20 +363764,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - [163014] = 4, - ACTIONS(247), 1, + [160996] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3983), 1, + STATE(4043), 1, sym_comment, - ACTIONS(1038), 2, + ACTIONS(1058), 2, anon_sym_DOT_DOT2, anon_sym_DOT, - ACTIONS(1040), 18, + ACTIONS(1060), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -356979,15 +363798,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [163045] = 4, - ACTIONS(247), 1, + [161027] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3984), 1, + STATE(4044), 1, sym_comment, - ACTIONS(1034), 2, + ACTIONS(1062), 2, anon_sym_DOT_DOT2, anon_sym_DOT, - ACTIONS(1036), 18, + ACTIONS(1064), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -357006,15 +363825,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [163076] = 4, - ACTIONS(247), 1, + [161058] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(3985), 1, + STATE(4045), 1, sym_comment, - ACTIONS(1738), 2, + ACTIONS(1038), 2, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1740), 18, + anon_sym_DOT, + ACTIONS(1040), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -357027,113 +363846,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_QMARK2, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [163107] = 8, - ACTIONS(3), 1, + [161089] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6947), 1, - anon_sym_DOT, - STATE(3986), 1, + STATE(4046), 1, sym_comment, - STATE(4090), 1, - aux_sym_cell_path_repeat1, - STATE(4280), 1, - sym_path, - STATE(4474), 1, - sym_cell_path, - ACTIONS(1645), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1641), 12, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + ACTIONS(1054), 2, anon_sym_DOT_DOT2, - [163146] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6852), 1, - anon_sym_LPAREN2, - ACTIONS(6860), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6862), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6894), 1, - anon_sym_DOLLAR, - ACTIONS(6949), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6951), 1, - aux_sym__immediate_decimal_token3, - STATE(3987), 1, - sym_comment, - STATE(5105), 1, - sym__immediate_decimal, - ACTIONS(1586), 2, - sym_identifier, - anon_sym_DASH, - STATE(5104), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1588), 9, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [163193] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1822), 1, - anon_sym_DASH, - STATE(3988), 1, - sym_comment, - ACTIONS(1826), 19, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [163224] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2309), 1, - anon_sym_DASH, - STATE(3989), 1, - sym_comment, - ACTIONS(2311), 19, + anon_sym_DOT, + ACTIONS(1056), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -357145,53 +363873,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, + anon_sym_QMARK2, anon_sym_and, anon_sym_xor, anon_sym_or, - [163255] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6947), 1, - anon_sym_DOT, - STATE(3990), 1, - sym_comment, - STATE(4090), 1, - aux_sym_cell_path_repeat1, - STATE(4280), 1, - sym_path, - STATE(4489), 1, - sym_cell_path, - ACTIONS(1677), 4, - ts_builtin_sym_end, - sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1675), 12, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - [163294] = 4, - ACTIONS(247), 1, + [161120] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2466), 1, + ACTIONS(1090), 1, anon_sym_DASH, - STATE(3991), 1, + STATE(4047), 1, sym_comment, - ACTIONS(2468), 19, + ACTIONS(1092), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -357211,14 +363906,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [163325] = 4, - ACTIONS(247), 1, + [161151] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2388), 1, + ACTIONS(2454), 1, anon_sym_DASH, - STATE(3992), 1, + STATE(4048), 1, sym_comment, - ACTIONS(2390), 19, + ACTIONS(2456), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -357238,22 +363933,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [163356] = 6, + [161182] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6953), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6955), 1, - aux_sym__immediate_decimal_token2, - STATE(3993), 1, + ACTIONS(7100), 1, + anon_sym_DOT, + STATE(4049), 1, sym_comment, - ACTIONS(1661), 5, + STATE(4123), 1, + aux_sym_cell_path_repeat1, + STATE(4374), 1, + sym_path, + STATE(4550), 1, + sym_cell_path, + ACTIONS(1023), 4, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1659), 13, + ACTIONS(1021), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -357266,69 +363964,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [163391] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(3994), 1, - sym_comment, - ACTIONS(1721), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1723), 18, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [163422] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2328), 1, - anon_sym_DASH, - STATE(3995), 1, - sym_comment, - ACTIONS(2330), 19, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [163453] = 4, - ACTIONS(247), 1, + [161221] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2338), 1, + ACTIONS(1897), 1, anon_sym_DASH, - STATE(3996), 1, + STATE(4050), 1, sym_comment, - ACTIONS(2340), 19, + ACTIONS(1899), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -357348,14 +363991,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [163484] = 4, - ACTIONS(247), 1, + [161252] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2342), 1, + ACTIONS(2547), 1, anon_sym_DASH, - STATE(3997), 1, + STATE(4051), 1, sym_comment, - ACTIONS(2344), 19, + ACTIONS(2549), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -357375,14 +364018,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [163515] = 4, - ACTIONS(247), 1, + [161283] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2517), 1, + ACTIONS(2539), 1, anon_sym_DASH, - STATE(3998), 1, + STATE(4052), 1, sym_comment, - ACTIONS(2519), 19, + ACTIONS(2541), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -357402,48 +364045,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [163546] = 11, - ACTIONS(247), 1, + [161314] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5441), 1, - anon_sym_LPAREN2, - ACTIONS(6957), 1, - anon_sym_DOT_DOT2, - ACTIONS(6961), 1, - sym_filesize_unit, - ACTIONS(6963), 1, - sym_duration_unit, - ACTIONS(6965), 1, - aux_sym__unquoted_in_list_token2, - STATE(3999), 1, - sym_comment, - STATE(7361), 1, - sym__expr_parenthesized_immediate, - ACTIONS(1560), 2, - sym_identifier, - anon_sym_DASH, - ACTIONS(6959), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1572), 10, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [163591] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2521), 1, + ACTIONS(2398), 1, anon_sym_DASH, - STATE(4000), 1, + STATE(4053), 1, sym_comment, - ACTIONS(2523), 19, + ACTIONS(2400), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -357463,14 +364072,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [163622] = 4, - ACTIONS(247), 1, + [161345] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2348), 1, + ACTIONS(2406), 1, anon_sym_DASH, - STATE(4001), 1, + STATE(4054), 1, sym_comment, - ACTIONS(2350), 19, + ACTIONS(2408), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -357490,14 +364099,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [163653] = 4, - ACTIONS(247), 1, + [161376] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1848), 1, + ACTIONS(2506), 1, anon_sym_DASH, - STATE(4002), 1, + STATE(4055), 1, sym_comment, - ACTIONS(1850), 19, + ACTIONS(2508), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -357517,19 +364126,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [163684] = 5, - ACTIONS(3), 1, + [161407] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6906), 1, - aux_sym__immediate_decimal_token2, - STATE(4003), 1, + ACTIONS(2543), 1, + anon_sym_DASH, + STATE(4056), 1, sym_comment, - ACTIONS(1669), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1667), 15, + ACTIONS(2545), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -357542,17 +364146,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [163717] = 4, - ACTIONS(247), 1, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [161438] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2412), 1, + ACTIONS(2561), 1, anon_sym_DASH, - STATE(4004), 1, + STATE(4057), 1, sym_comment, - ACTIONS(2414), 19, + ACTIONS(2563), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -357572,14 +364180,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [163748] = 4, - ACTIONS(247), 1, + [161469] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2416), 1, + ACTIONS(2510), 1, anon_sym_DASH, - STATE(4005), 1, + STATE(4058), 1, sym_comment, - ACTIONS(2418), 19, + ACTIONS(2512), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -357599,14 +364207,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [163779] = 4, - ACTIONS(247), 1, + [161500] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1864), 1, - anon_sym_DASH, - STATE(4006), 1, + ACTIONS(1715), 1, + aux_sym_unquoted_token2, + ACTIONS(7102), 1, + anon_sym_DOT, + ACTIONS(7104), 1, + aux_sym__immediate_decimal_token2, + STATE(4059), 1, sym_comment, - ACTIONS(1866), 19, + ACTIONS(1717), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -357619,56 +364231,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, anon_sym_RBRACE, - anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [163810] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6852), 1, anon_sym_LPAREN2, - ACTIONS(6860), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6862), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6894), 1, - anon_sym_DOLLAR, - ACTIONS(6949), 1, + [161535] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7106), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6951), 1, - aux_sym__immediate_decimal_token3, - STATE(4007), 1, + ACTIONS(7108), 1, + aux_sym__immediate_decimal_token2, + STATE(4060), 1, sym_comment, - STATE(5107), 1, - sym__immediate_decimal, - ACTIONS(1576), 2, - sym_identifier, + ACTIONS(1705), 5, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1703), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [161570] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(2001), 1, anon_sym_DASH, - STATE(5106), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1584), 9, - anon_sym_EQ, + STATE(4061), 1, + sym_comment, + ACTIONS(2003), 19, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [163857] = 4, - ACTIONS(247), 1, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [161601] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1872), 1, + ACTIONS(2535), 1, anon_sym_DASH, - STATE(4008), 1, + STATE(4062), 1, sym_comment, - ACTIONS(1874), 19, + ACTIONS(2537), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -357688,14 +364319,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [163888] = 4, - ACTIONS(247), 1, + [161632] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1876), 1, + ACTIONS(2466), 1, anon_sym_DASH, - STATE(4009), 1, + STATE(4063), 1, sym_comment, - ACTIONS(1878), 19, + ACTIONS(2468), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -357715,22 +364346,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [163919] = 7, - ACTIONS(3), 1, + [161663] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6912), 1, - anon_sym_DOT, - STATE(4010), 1, + ACTIONS(2017), 1, + anon_sym_DASH, + STATE(4064), 1, sym_comment, - STATE(4033), 1, - aux_sym_cell_path_repeat1, - STATE(4152), 1, - sym_path, - ACTIONS(1013), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1011), 14, + ACTIONS(2019), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -357743,16 +364366,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [163956] = 4, - ACTIONS(247), 1, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [161694] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2305), 1, + ACTIONS(2043), 1, anon_sym_DASH, - STATE(4011), 1, + STATE(4065), 1, sym_comment, - ACTIONS(2307), 19, + ACTIONS(2045), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -357772,14 +364400,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [163987] = 4, - ACTIONS(247), 1, + [161725] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2420), 1, + ACTIONS(7084), 1, + aux_sym__immediate_decimal_token2, + STATE(4066), 1, + sym_comment, + ACTIONS(1536), 6, + sym_identifier, anon_sym_DASH, - STATE(4012), 1, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_list_token2, + ACTIONS(1538), 13, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [161758] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(2047), 1, + anon_sym_DASH, + STATE(4067), 1, sym_comment, - ACTIONS(2422), 19, + ACTIONS(2049), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -357799,22 +364455,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [164018] = 7, - ACTIONS(247), 1, + [161789] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1494), 1, - aux_sym_unquoted_token2, - ACTIONS(1780), 1, - anon_sym_LPAREN2, - ACTIONS(6967), 1, - anon_sym_DOT_DOT2, - STATE(4013), 1, + ACTIONS(2434), 1, + anon_sym_DASH, + STATE(4068), 1, sym_comment, - ACTIONS(6969), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1786), 15, - ts_builtin_sym_end, + ACTIONS(2436), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -357826,17 +364474,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [164055] = 4, - ACTIONS(247), 1, + [161820] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1888), 1, + ACTIONS(2059), 1, anon_sym_DASH, - STATE(4014), 1, + STATE(4069), 1, sym_comment, - ACTIONS(1890), 19, + ACTIONS(2061), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -357856,14 +364509,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [164086] = 4, - ACTIONS(247), 1, + [161851] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2434), 1, + ACTIONS(2442), 1, anon_sym_DASH, - STATE(4015), 1, + STATE(4070), 1, sym_comment, - ACTIONS(2436), 19, + ACTIONS(2444), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -357883,14 +364536,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [164117] = 4, - ACTIONS(247), 1, + [161882] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2438), 1, + ACTIONS(2450), 1, anon_sym_DASH, - STATE(4016), 1, + STATE(4071), 1, sym_comment, - ACTIONS(2440), 19, + ACTIONS(2452), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -357910,14 +364563,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [164148] = 4, - ACTIONS(247), 1, + [161913] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1892), 1, + ACTIONS(2067), 1, anon_sym_DASH, - STATE(4017), 1, + STATE(4072), 1, sym_comment, - ACTIONS(1894), 19, + ACTIONS(2069), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -357937,20 +364590,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [164179] = 4, - ACTIONS(3), 1, + [161944] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4018), 1, + ACTIONS(7110), 1, + aux_sym__immediate_decimal_token2, + STATE(4073), 1, sym_comment, - ACTIONS(1655), 7, - ts_builtin_sym_end, - sym__space, + ACTIONS(1596), 6, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_list_token2, + ACTIONS(1598), 13, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1653), 13, + [161977] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(2087), 1, + anon_sym_DASH, + STATE(4074), 1, + sym_comment, + ACTIONS(2089), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -357962,16 +364637,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [164210] = 4, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [162008] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1900), 1, + ACTIONS(2470), 1, anon_sym_DASH, - STATE(4019), 1, + STATE(4075), 1, sym_comment, - ACTIONS(1902), 19, + ACTIONS(2472), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -357991,42 +364672,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [164241] = 5, - ACTIONS(247), 1, + [162039] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6916), 1, - aux_sym__immediate_decimal_token2, - STATE(4020), 1, - sym_comment, - ACTIONS(1518), 6, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_list_token2, - ACTIONS(1520), 13, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [164274] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2442), 1, + ACTIONS(2474), 1, anon_sym_DASH, - STATE(4021), 1, + STATE(4076), 1, sym_comment, - ACTIONS(2444), 19, + ACTIONS(2476), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -358046,14 +364699,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [164305] = 4, - ACTIONS(247), 1, + [162070] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2446), 1, + ACTIONS(2095), 1, anon_sym_DASH, - STATE(4022), 1, + STATE(4077), 1, sym_comment, - ACTIONS(2448), 19, + ACTIONS(2097), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -358073,14 +364726,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [164336] = 4, - ACTIONS(247), 1, + [162101] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7100), 1, + anon_sym_DOT, + STATE(4078), 1, + sym_comment, + STATE(4123), 1, + aux_sym_cell_path_repeat1, + STATE(4374), 1, + sym_path, + STATE(4417), 1, + sym_cell_path, + ACTIONS(1672), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1670), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DOT_DOT2, + [162140] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1904), 1, + ACTIONS(2531), 1, anon_sym_DASH, - STATE(4023), 1, + STATE(4079), 1, sym_comment, - ACTIONS(1906), 19, + ACTIONS(2533), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -358100,49 +364784,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [164367] = 12, - ACTIONS(247), 1, + [162171] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6852), 1, - anon_sym_LPAREN2, - ACTIONS(6860), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6862), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6894), 1, - anon_sym_DOLLAR, - ACTIONS(6949), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6951), 1, - aux_sym__immediate_decimal_token3, - STATE(4024), 1, + ACTIONS(7112), 1, + anon_sym_DOT, + ACTIONS(7114), 1, + aux_sym__immediate_decimal_token2, + STATE(4080), 1, sym_comment, - STATE(5103), 1, - sym__immediate_decimal, - ACTIONS(1602), 2, - sym_identifier, - anon_sym_DASH, - STATE(5102), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1604), 9, - anon_sym_EQ, + ACTIONS(1717), 5, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1715), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [164414] = 4, - ACTIONS(247), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [162206] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2450), 1, - anon_sym_DASH, - STATE(4025), 1, + STATE(4081), 1, sym_comment, - ACTIONS(2452), 19, + ACTIONS(1538), 7, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1536), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -358154,22 +364838,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [164445] = 4, - ACTIONS(247), 1, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [162237] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2454), 1, + ACTIONS(1909), 1, anon_sym_DASH, - STATE(4026), 1, + STATE(4082), 1, sym_comment, - ACTIONS(2456), 19, + ACTIONS(1911), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -358189,14 +364867,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [164476] = 4, - ACTIONS(247), 1, + [162268] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2362), 1, - anon_sym_DASH, - STATE(4027), 1, + STATE(4083), 1, sym_comment, - ACTIONS(2364), 19, + ACTIONS(1715), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1717), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -358208,20 +364888,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [164507] = 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [162299] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4028), 1, + STATE(4084), 1, sym_comment, - ACTIONS(1520), 7, + ACTIONS(1530), 7, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, @@ -358229,7 +364907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(1518), 13, + ACTIONS(1528), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -358243,21 +364921,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [164538] = 5, - ACTIONS(247), 1, + [162330] = 12, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6971), 1, - aux_sym__immediate_decimal_token2, - STATE(4029), 1, + ACTIONS(7025), 1, + anon_sym_LPAREN2, + ACTIONS(7033), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7035), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7070), 1, + anon_sym_DOLLAR, + ACTIONS(7116), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7118), 1, + aux_sym__immediate_decimal_token3, + STATE(4085), 1, sym_comment, - ACTIONS(1554), 6, + STATE(5088), 1, + sym__immediate_decimal, + ACTIONS(1560), 2, sym_identifier, anon_sym_DASH, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_list_token2, - ACTIONS(1556), 13, + STATE(5082), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1570), 9, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -358265,20 +364954,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + [162377] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4086), 1, + sym_comment, + ACTIONS(1598), 7, + ts_builtin_sym_end, + sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [164571] = 4, - ACTIONS(247), 1, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1596), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [162408] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2366), 1, + ACTIONS(2569), 1, anon_sym_DASH, - STATE(4030), 1, + STATE(4087), 1, sym_comment, - ACTIONS(2368), 19, + ACTIONS(2571), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -358298,21 +365010,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [164602] = 7, - ACTIONS(247), 1, + [162439] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1790), 1, + ACTIONS(1844), 1, anon_sym_LPAREN2, - ACTIONS(1798), 1, + ACTIONS(1852), 1, aux_sym_unquoted_token2, - ACTIONS(6973), 1, + ACTIONS(7120), 1, anon_sym_DOT_DOT2, - STATE(4031), 1, + STATE(4088), 1, sym_comment, - ACTIONS(6975), 2, + ACTIONS(7122), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1796), 15, + ACTIONS(1850), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -358328,18 +365040,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [164639] = 6, - ACTIONS(247), 1, + [162476] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1659), 1, - aux_sym_unquoted_token2, - ACTIONS(6977), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6979), 1, - aux_sym__immediate_decimal_token2, - STATE(4032), 1, + STATE(4089), 1, sym_comment, - ACTIONS(1661), 17, + ACTIONS(1703), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1705), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -358351,27 +365061,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, anon_sym_LPAREN2, - [164674] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6981), 1, - anon_sym_DOT, - STATE(4152), 1, - sym_path, - STATE(4033), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1017), 3, - sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1015), 14, + [162507] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(4090), 1, + sym_comment, + ACTIONS(1769), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1771), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -358383,20 +365088,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [164709] = 5, - ACTIONS(247), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [162538] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6984), 1, - anon_sym_QMARK2, - STATE(4034), 1, + STATE(4091), 1, sym_comment, - ACTIONS(1022), 2, + ACTIONS(1826), 2, anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1024), 17, + aux_sym_unquoted_token2, + ACTIONS(1828), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -358412,24 +365118,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [164742] = 6, + [162569] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6986), 1, - anon_sym_DOT, - ACTIONS(6988), 1, - aux_sym__immediate_decimal_token2, - STATE(4035), 1, + STATE(4092), 1, sym_comment, - ACTIONS(1669), 5, + ACTIONS(1713), 7, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1667), 13, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1711), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -358443,20 +365148,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [164777] = 4, + [162600] = 12, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(7025), 1, + anon_sym_LPAREN2, + ACTIONS(7033), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7035), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7070), 1, + anon_sym_DOLLAR, + ACTIONS(7116), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7118), 1, + aux_sym__immediate_decimal_token3, + STATE(4093), 1, + sym_comment, + STATE(5153), 1, + sym__immediate_decimal, + ACTIONS(1608), 2, + sym_identifier, + anon_sym_DASH, + STATE(5150), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1610), 9, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [162647] = 12, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(7025), 1, + anon_sym_LPAREN2, + ACTIONS(7033), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7035), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7070), 1, + anon_sym_DOLLAR, + ACTIONS(7116), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7118), 1, + aux_sym__immediate_decimal_token3, + STATE(4094), 1, + sym_comment, + STATE(5157), 1, + sym__immediate_decimal, + ACTIONS(1612), 2, + sym_identifier, + anon_sym_DASH, + STATE(5156), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1614), 9, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [162694] = 12, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(7025), 1, + anon_sym_LPAREN2, + ACTIONS(7033), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7035), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7070), 1, + anon_sym_DOLLAR, + ACTIONS(7116), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7118), 1, + aux_sym__immediate_decimal_token3, + STATE(4095), 1, + sym_comment, + STATE(5160), 1, + sym__immediate_decimal, + ACTIONS(1620), 2, + sym_identifier, + anon_sym_DASH, + STATE(5159), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1622), 9, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [162741] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(4036), 1, + ACTIONS(7080), 1, + anon_sym_DOT, + STATE(4096), 1, sym_comment, - ACTIONS(1542), 7, - ts_builtin_sym_end, + STATE(4097), 1, + aux_sym_cell_path_repeat1, + STATE(4176), 1, + sym_path, + ACTIONS(1029), 3, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1540), 13, + ACTIONS(1027), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -358468,20 +365280,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [164808] = 5, - ACTIONS(247), 1, + [162778] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6990), 1, - anon_sym_QMARK2, - STATE(4037), 1, - sym_comment, - ACTIONS(1028), 2, - anon_sym_DOT_DOT2, + ACTIONS(7124), 1, anon_sym_DOT, - ACTIONS(1030), 17, - ts_builtin_sym_end, + STATE(4176), 1, + sym_path, + STATE(4097), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(1033), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1031), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -358493,79 +365309,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [164841] = 9, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [162813] = 11, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1572), 1, - sym__space, - ACTIONS(4512), 1, + ACTIONS(5518), 1, + anon_sym_LPAREN2, + ACTIONS(7127), 1, anon_sym_DOT_DOT2, - ACTIONS(6868), 1, + ACTIONS(7131), 1, sym_filesize_unit, - ACTIONS(6870), 1, + ACTIONS(7133), 1, sym_duration_unit, - ACTIONS(6872), 1, - aux_sym_unquoted_token2, - STATE(4038), 1, + ACTIONS(7135), 1, + aux_sym__unquoted_in_list_token2, + STATE(4098), 1, sym_comment, - ACTIONS(4514), 2, + STATE(7518), 1, + sym__expr_parenthesized_immediate, + ACTIONS(1628), 2, + sym_identifier, + anon_sym_DASH, + ACTIONS(7129), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1560), 13, + ACTIONS(1640), 10, + anon_sym_EQ, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [164882] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6992), 1, - sym__newline, - STATE(4039), 2, - sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1315), 8, - aux_sym_cmd_identifier_token39, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(1313), 10, - anon_sym_true, - anon_sym_false, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, - sym_identifier, - anon_sym_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - [164915] = 4, - ACTIONS(247), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [162858] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1832), 1, - anon_sym_DASH, - STATE(4040), 1, + ACTIONS(1526), 1, + aux_sym_unquoted_token2, + ACTIONS(1790), 1, + anon_sym_LPAREN2, + ACTIONS(7137), 1, + anon_sym_DOT_DOT2, + STATE(4099), 1, sym_comment, - ACTIONS(1834), 19, + ACTIONS(7139), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1796), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -358577,33 +365373,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [164946] = 8, + [162895] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6947), 1, - anon_sym_DOT, - STATE(4041), 1, + ACTIONS(7048), 1, + aux_sym__immediate_decimal_token2, + STATE(4100), 1, sym_comment, - STATE(4090), 1, - aux_sym_cell_path_repeat1, - STATE(4280), 1, - sym_path, - STATE(4507), 1, - sym_cell_path, - ACTIONS(1007), 4, - ts_builtin_sym_end, + ACTIONS(1717), 4, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1005), 12, + ACTIONS(1715), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -358615,15 +365400,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - [164985] = 4, - ACTIONS(247), 1, + aux_sym_unquoted_token2, + [162928] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1070), 1, + ACTIONS(2494), 1, anon_sym_DASH, - STATE(4042), 1, + STATE(4101), 1, sym_comment, - ACTIONS(1072), 19, + ACTIONS(2496), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -358643,49 +365431,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [165016] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6852), 1, - anon_sym_LPAREN2, - ACTIONS(6860), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6862), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6894), 1, - anon_sym_DOLLAR, - ACTIONS(6949), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6951), 1, - aux_sym__immediate_decimal_token3, - STATE(4043), 1, - sym_comment, - STATE(5092), 1, - sym__immediate_decimal, - ACTIONS(1496), 2, - sym_identifier, - anon_sym_DASH, - STATE(5155), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1506), 9, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [165063] = 4, - ACTIONS(247), 1, + [162959] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2380), 1, + ACTIONS(2494), 1, anon_sym_DASH, - STATE(4044), 1, + STATE(4102), 1, sym_comment, - ACTIONS(2382), 19, + ACTIONS(2496), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -358705,14 +365458,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [165094] = 4, - ACTIONS(247), 1, + [162990] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2384), 1, + ACTIONS(2430), 1, anon_sym_DASH, - STATE(4045), 1, + STATE(4103), 1, sym_comment, - ACTIONS(2386), 19, + ACTIONS(2432), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -358732,14 +365485,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [165125] = 4, - ACTIONS(247), 1, + [163021] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2462), 1, + ACTIONS(2478), 1, anon_sym_DASH, - STATE(4046), 1, + STATE(4104), 1, sym_comment, - ACTIONS(2464), 19, + ACTIONS(2480), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -358759,16 +365512,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [165156] = 4, - ACTIONS(247), 1, + [163052] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4047), 1, + ACTIONS(2438), 1, + anon_sym_DASH, + STATE(4105), 1, sym_comment, - ACTIONS(1042), 2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1044), 18, - ts_builtin_sym_end, + ACTIONS(2440), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -358780,22 +365531,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_QMARK2, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [165187] = 4, - ACTIONS(247), 1, + [163083] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4048), 1, + ACTIONS(7141), 1, + sym__newline, + STATE(4106), 2, sym_comment, - ACTIONS(1667), 2, - anon_sym_DOT_DOT2, + aux_sym_shebang_repeat1, + ACTIONS(1351), 8, + aux_sym_cmd_identifier_token39, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(1349), 10, + anon_sym_true, + anon_sym_false, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token40, + sym_identifier, + anon_sym_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + [163116] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1703), 1, aux_sym_unquoted_token2, - ACTIONS(1669), 18, - ts_builtin_sym_end, + ACTIONS(7144), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7146), 1, + aux_sym__immediate_decimal_token2, + STATE(4107), 1, + sym_comment, + ACTIONS(1705), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -358807,25 +365590,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [165218] = 5, + [163151] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6995), 1, - aux_sym__immediate_decimal_token2, - STATE(4049), 1, - sym_comment, - ACTIONS(1723), 4, + ACTIONS(1640), 1, sym__space, - anon_sym_LPAREN2, + ACTIONS(4614), 1, + anon_sym_DOT_DOT2, + ACTIONS(7017), 1, + sym_filesize_unit, + ACTIONS(7019), 1, + sym_duration_unit, + ACTIONS(7021), 1, + aux_sym_unquoted_token2, + STATE(4108), 1, + sym_comment, + ACTIONS(4616), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1721), 15, + ACTIONS(1628), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -358839,22 +365628,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [165251] = 4, + [163192] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4050), 1, + ACTIONS(7148), 1, + aux_sym__immediate_decimal_token2, + STATE(4109), 1, sym_comment, - ACTIONS(1556), 7, - ts_builtin_sym_end, + ACTIONS(1771), 4, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1554), 13, + ACTIONS(1769), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -358866,17 +365652,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [165282] = 4, - ACTIONS(247), 1, + [163225] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4051), 1, + ACTIONS(7150), 1, + anon_sym_QMARK2, + STATE(4110), 1, sym_comment, - ACTIONS(1659), 2, + ACTIONS(1042), 2, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1661), 18, + anon_sym_DOT, + ACTIONS(1044), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -358892,17 +365682,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [165313] = 4, - ACTIONS(247), 1, + [163258] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2305), 1, - anon_sym_DASH, - STATE(4052), 1, + ACTIONS(7152), 1, + anon_sym_QMARK2, + STATE(4111), 1, sym_comment, - ACTIONS(2307), 19, + ACTIONS(1048), 2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1050), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -358914,25 +365707,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [165344] = 5, - ACTIONS(247), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [163291] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1079), 1, - anon_sym_DOT_DOT2, - STATE(4053), 1, + ACTIONS(7100), 1, + anon_sym_DOT, + STATE(4112), 1, sym_comment, - ACTIONS(1081), 2, + STATE(4123), 1, + aux_sym_cell_path_repeat1, + STATE(4374), 1, + sym_path, + STATE(4513), 1, + sym_cell_path, + ACTIONS(1668), 4, + ts_builtin_sym_end, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(6997), 16, + ACTIONS(1664), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -358944,22 +365742,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [165376] = 5, - ACTIONS(247), 1, + anon_sym_DOT_DOT2, + [163330] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2313), 1, + ACTIONS(2502), 1, anon_sym_DASH, - ACTIONS(6999), 1, - anon_sym_LBRACK2, - STATE(4054), 1, + STATE(4113), 1, sym_comment, - ACTIONS(2317), 17, - ts_builtin_sym_end, + ACTIONS(2504), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -358971,22 +365762,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [165408] = 5, - ACTIONS(247), 1, + [163361] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1079), 1, - anon_sym_DOT_DOT2, - STATE(4055), 1, + STATE(4114), 1, sym_comment, - ACTIONS(1081), 2, + ACTIONS(1064), 3, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1072), 16, + ACTIONS(1062), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -359000,24 +365793,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [165440] = 6, - ACTIONS(247), 1, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [163391] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7001), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7003), 1, - aux_sym__immediate_decimal_token2, - STATE(4056), 1, + STATE(4115), 1, sym_comment, - ACTIONS(1659), 4, + ACTIONS(1596), 6, sym_identifier, anon_sym_DASH, anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, aux_sym__unquoted_in_list_token2, - ACTIONS(1661), 13, + ACTIONS(1598), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -359031,16 +365822,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [165474] = 4, + [163421] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4057), 1, + ACTIONS(7114), 1, + aux_sym__immediate_decimal_token2, + STATE(4116), 1, sym_comment, - ACTIONS(1044), 3, + ACTIONS(1717), 5, + ts_builtin_sym_end, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1042), 16, + ACTIONS(1715), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -359052,21 +365847,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_QMARK2, anon_sym_DOT_DOT2, - anon_sym_DOT, - [165504] = 4, + aux_sym_unquoted_token2, + [163453] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4058), 1, + STATE(4117), 1, sym_comment, - ACTIONS(1040), 3, + ACTIONS(1056), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1038), 16, + ACTIONS(1054), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -359083,69 +365875,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_DOT_DOT2, anon_sym_DOT, - [165534] = 4, - ACTIONS(3), 1, + [163483] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4059), 1, + STATE(4118), 1, sym_comment, - ACTIONS(1036), 3, - sym__space, + ACTIONS(1711), 6, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_list_token2, + ACTIONS(1713), 13, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1034), 16, + [163513] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(7154), 1, + anon_sym_DOT, + STATE(4119), 1, + sym_comment, + STATE(4281), 1, + aux_sym_cell_path_repeat1, + STATE(4418), 1, + sym_path, + STATE(4587), 1, + sym_cell_path, + ACTIONS(1021), 2, + anon_sym_DASH, + anon_sym_DOT_DOT2, + ACTIONS(1023), 13, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [165564] = 4, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [163551] = 6, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4060), 1, + ACTIONS(7156), 1, + anon_sym_DOT, + ACTIONS(7158), 1, + aux_sym__immediate_decimal_token2, + STATE(4120), 1, sym_comment, - ACTIONS(1669), 4, - sym__space, + ACTIONS(1715), 4, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1717), 13, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1667), 15, + [163585] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(7160), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7162), 1, + aux_sym__immediate_decimal_token2, + STATE(4121), 1, + sym_comment, + ACTIONS(1703), 4, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1705), 13, + anon_sym_EQ, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [165594] = 5, - ACTIONS(247), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [163619] = 9, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1079), 1, + ACTIONS(4614), 1, anon_sym_DOT_DOT2, - STATE(4061), 1, + ACTIONS(7064), 1, + sym_filesize_unit, + ACTIONS(7066), 1, + sym_duration_unit, + ACTIONS(7068), 1, + aux_sym_unquoted_token2, + STATE(4122), 1, sym_comment, - ACTIONS(1081), 2, + ACTIONS(1640), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4616), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(6997), 16, + ACTIONS(1628), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -359157,22 +366018,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [165626] = 5, - ACTIONS(247), 1, + [163659] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1079), 1, - anon_sym_DOT_DOT2, - STATE(4062), 1, + ACTIONS(7100), 1, + anon_sym_DOT, + STATE(4123), 1, sym_comment, - ACTIONS(1081), 2, + STATE(4132), 1, + aux_sym_cell_path_repeat1, + STATE(4374), 1, + sym_path, + ACTIONS(1029), 4, + ts_builtin_sym_end, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(6997), 16, + ACTIONS(1027), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -359184,22 +366046,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [165658] = 4, + anon_sym_DOT_DOT2, + [163695] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4063), 1, + ACTIONS(7164), 1, + aux_sym__immediate_decimal_token2, + STATE(4124), 1, sym_comment, - ACTIONS(1661), 4, + ACTIONS(1771), 5, + ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1659), 15, + ACTIONS(1769), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -359211,146 +366072,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [165688] = 6, - ACTIONS(247), 1, + [163727] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1659), 1, - aux_sym_unquoted_token2, - ACTIONS(7005), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7007), 1, - aux_sym__immediate_decimal_token2, - STATE(4064), 1, + ACTIONS(7154), 1, + anon_sym_DOT, + STATE(4125), 1, sym_comment, - ACTIONS(1661), 16, - ts_builtin_sym_end, + STATE(4281), 1, + aux_sym_cell_path_repeat1, + STATE(4418), 1, + sym_path, + STATE(4602), 1, + sym_cell_path, + ACTIONS(1664), 2, + anon_sym_DASH, + anon_sym_DOT_DOT2, + ACTIONS(1668), 13, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_LPAREN2, - [165722] = 4, - ACTIONS(247), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [163765] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4065), 1, + STATE(4126), 1, sym_comment, - ACTIONS(1307), 9, - aux_sym_cmd_identifier_token39, - sym__newline, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - aux_sym_expr_unary_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - ACTIONS(1311), 10, - anon_sym_true, - anon_sym_false, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, + ACTIONS(1536), 6, sym_identifier, anon_sym_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - [165752] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4884), 1, - anon_sym_DASH, - STATE(4066), 1, - sym_comment, - ACTIONS(4882), 18, - ts_builtin_sym_end, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_list_token2, + ACTIONS(1538), 13, + anon_sym_EQ, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, anon_sym_LPAREN2, - [165782] = 14, - ACTIONS(247), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [163795] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2551), 1, - anon_sym_COMMA, - ACTIONS(7011), 1, - anon_sym_EQ, - ACTIONS(7013), 1, - sym__newline, - ACTIONS(7015), 1, - anon_sym_COLON, - ACTIONS(7017), 1, - anon_sym_LPAREN, - ACTIONS(7019), 1, - anon_sym_DASH, - STATE(4067), 1, + ACTIONS(7154), 1, + anon_sym_DOT, + STATE(4127), 1, sym_comment, - STATE(4238), 1, - sym_flag_capsule, - STATE(4241), 1, - aux_sym_parameter_repeat1, - STATE(5176), 1, - aux_sym_parameter_repeat2, - STATE(6106), 1, - aux_sym_shebang_repeat1, - STATE(5000), 2, - sym_param_type, - sym_param_value, - ACTIONS(7009), 7, + STATE(4281), 1, + aux_sym_cell_path_repeat1, + STATE(4418), 1, + sym_path, + STATE(4611), 1, + sym_cell_path, + ACTIONS(1670), 2, + anon_sym_DASH, + anon_sym_DOT_DOT2, + ACTIONS(1672), 13, + anon_sym_EQ, sym_identifier, + sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [165832] = 9, - ACTIONS(3), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [163833] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4512), 1, - anon_sym_DOT_DOT2, - ACTIONS(6935), 1, - sym_filesize_unit, - ACTIONS(6937), 1, - sym_duration_unit, - ACTIONS(6939), 1, + ACTIONS(1703), 1, aux_sym_unquoted_token2, - STATE(4068), 1, + ACTIONS(7166), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7168), 1, + aux_sym__immediate_decimal_token2, + STATE(4128), 1, sym_comment, - ACTIONS(1572), 2, + ACTIONS(1705), 16, ts_builtin_sym_end, - sym__space, - ACTIONS(4514), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1560), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -359362,17 +366184,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [165872] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_LPAREN2, + [163867] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4069), 1, + ACTIONS(7170), 1, + anon_sym_QMARK2, + STATE(4129), 1, sym_comment, - ACTIONS(1723), 4, + ACTIONS(1044), 3, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1721), 15, + ACTIONS(1042), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -359387,21 +366214,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [165902] = 5, + anon_sym_DOT, + [163899] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7021), 1, - aux_sym__immediate_decimal_token2, - STATE(4070), 1, + ACTIONS(7172), 1, + anon_sym_QMARK2, + STATE(4130), 1, sym_comment, - ACTIONS(1723), 5, - ts_builtin_sym_end, + ACTIONS(1050), 3, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1721), 13, + ACTIONS(1048), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -359413,49 +366238,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [165934] = 8, + anon_sym_DOT, + [163931] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1494), 1, + ACTIONS(1526), 1, aux_sym_unquoted_token2, - ACTIONS(1780), 1, + ACTIONS(1790), 1, anon_sym_LPAREN2, - ACTIONS(1786), 1, + ACTIONS(1796), 1, sym__space, - ACTIONS(7023), 1, + ACTIONS(7174), 1, anon_sym_DOT_DOT2, - STATE(4071), 1, - sym_comment, - ACTIONS(7025), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1778), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [165972] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4072), 1, + STATE(4131), 1, sym_comment, - ACTIONS(1740), 4, - sym__space, - anon_sym_LPAREN2, + ACTIONS(7176), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1738), 15, + ACTIONS(1788), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -359466,54 +366269,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_err_PLUSout_GT_PIPE, anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [166002] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7027), 1, - anon_sym_DOT, - STATE(4073), 1, - sym_comment, - STATE(4150), 1, - aux_sym_cell_path_repeat1, - STATE(4469), 1, - sym_path, - STATE(4538), 1, - sym_cell_path, - ACTIONS(1675), 2, - anon_sym_DASH, - anon_sym_DOT_DOT2, - ACTIONS(1677), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [166040] = 6, - ACTIONS(247), 1, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [163969] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1667), 1, - aux_sym_unquoted_token2, - ACTIONS(7029), 1, + ACTIONS(7178), 1, anon_sym_DOT, - ACTIONS(7031), 1, - aux_sym__immediate_decimal_token2, - STATE(4074), 1, + STATE(4374), 1, + sym_path, + STATE(4132), 2, sym_comment, - ACTIONS(1669), 16, + aux_sym_cell_path_repeat1, + ACTIONS(1033), 4, ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1031), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -359525,18 +366299,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_LPAREN2, - [166074] = 4, - ACTIONS(247), 1, + anon_sym_DOT_DOT2, + [164003] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4894), 1, + ACTIONS(2355), 1, anon_sym_DASH, - STATE(4075), 1, + ACTIONS(7181), 1, + anon_sym_LBRACK2, + STATE(4133), 1, sym_comment, - ACTIONS(4892), 18, + ACTIONS(2359), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -359554,24 +366327,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - [166104] = 8, + [164035] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1790), 1, - anon_sym_LPAREN2, - ACTIONS(1796), 1, - sym__space, - ACTIONS(1798), 1, - aux_sym_unquoted_token2, - ACTIONS(7033), 1, - anon_sym_DOT_DOT2, - STATE(4076), 1, + STATE(4134), 1, sym_comment, - ACTIONS(7035), 2, + ACTIONS(1060), 3, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1788), 13, + ACTIONS(1058), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -359585,18 +366350,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [166142] = 5, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [164065] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7037), 1, - anon_sym_QMARK2, - STATE(4077), 1, + STATE(4135), 1, sym_comment, - ACTIONS(1024), 3, + ACTIONS(1717), 4, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1022), 15, + ACTIONS(1715), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -359611,20 +366378,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - anon_sym_DOT, - [166174] = 4, - ACTIONS(247), 1, + aux_sym_unquoted_token2, + [164095] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4078), 1, + STATE(4136), 1, sym_comment, - ACTIONS(1518), 6, + ACTIONS(1528), 6, sym_identifier, anon_sym_DASH, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, aux_sym__unquoted_in_list_token2, - ACTIONS(1520), 13, + ACTIONS(1530), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -359638,20 +366405,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [166204] = 5, + [164125] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6988), 1, - aux_sym__immediate_decimal_token2, - STATE(4079), 1, + ACTIONS(1844), 1, + anon_sym_LPAREN2, + ACTIONS(1850), 1, + sym__space, + ACTIONS(1852), 1, + aux_sym_unquoted_token2, + ACTIONS(7183), 1, + anon_sym_DOT_DOT2, + STATE(4137), 1, sym_comment, - ACTIONS(1669), 5, - ts_builtin_sym_end, + ACTIONS(7185), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1842), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [164163] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4138), 1, + sym_comment, + ACTIONS(1705), 4, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1667), 13, + ACTIONS(1703), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -359663,43 +366457,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [166236] = 4, - ACTIONS(247), 1, + [164193] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4080), 1, + ACTIONS(1715), 1, + aux_sym_unquoted_token2, + ACTIONS(7104), 1, + aux_sym__immediate_decimal_token2, + STATE(4139), 1, sym_comment, - ACTIONS(1540), 6, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_list_token2, - ACTIONS(1542), 13, - anon_sym_EQ, + ACTIONS(1717), 17, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_LPAREN2, + [164225] = 14, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(2591), 1, + anon_sym_COMMA, + ACTIONS(7189), 1, + anon_sym_EQ, + ACTIONS(7191), 1, + sym__newline, + ACTIONS(7193), 1, anon_sym_COLON, + ACTIONS(7195), 1, + anon_sym_LPAREN, + ACTIONS(7197), 1, + anon_sym_DASH, + STATE(4140), 1, + sym_comment, + STATE(4346), 1, + sym_flag_capsule, + STATE(4347), 1, + aux_sym_parameter_repeat1, + STATE(5236), 1, + aux_sym_parameter_repeat2, + STATE(6229), 1, + aux_sym_shebang_repeat1, + STATE(5174), 2, + sym_param_type, + sym_param_value, + ACTIONS(7187), 7, + sym_identifier, + anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [166266] = 4, - ACTIONS(247), 1, + [164275] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4081), 1, + STATE(4141), 1, sym_comment, - ACTIONS(1046), 2, + ACTIONS(1074), 2, anon_sym_DOT_DOT2, anon_sym_DOT, - ACTIONS(1048), 17, + ACTIONS(1076), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -359717,70 +366550,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [166296] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4082), 1, - sym_comment, - ACTIONS(1554), 6, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_list_token2, - ACTIONS(1556), 13, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [166326] = 4, - ACTIONS(247), 1, + [164305] = 6, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4083), 1, + ACTIONS(1715), 1, + aux_sym_unquoted_token2, + ACTIONS(7199), 1, + anon_sym_DOT, + ACTIONS(7201), 1, + aux_sym__immediate_decimal_token2, + STATE(4142), 1, sym_comment, - ACTIONS(1653), 6, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_list_token2, - ACTIONS(1655), 13, - anon_sym_EQ, + ACTIONS(1717), 16, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [166356] = 5, + [164339] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7039), 1, - anon_sym_QMARK2, - STATE(4084), 1, + STATE(4143), 1, sym_comment, - ACTIONS(1030), 3, + ACTIONS(1771), 4, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1028), 15, + ACTIONS(1769), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -359795,47 +366603,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - anon_sym_DOT, - [166388] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7027), 1, - anon_sym_DOT, - STATE(4085), 1, - sym_comment, - STATE(4150), 1, - aux_sym_cell_path_repeat1, - STATE(4469), 1, - sym_path, - STATE(4611), 1, - sym_cell_path, - ACTIONS(1005), 2, - anon_sym_DASH, - anon_sym_DOT_DOT2, - ACTIONS(1007), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [166426] = 5, - ACTIONS(247), 1, + aux_sym_unquoted_token2, + [164369] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1721), 1, + ACTIONS(1769), 1, aux_sym_unquoted_token2, - ACTIONS(7041), 1, + ACTIONS(7203), 1, aux_sym__immediate_decimal_token2, - STATE(4086), 1, + STATE(4144), 1, sym_comment, - ACTIONS(1723), 17, + ACTIONS(1771), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -359853,44 +366631,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_LPAREN2, - [166458] = 6, - ACTIONS(247), 1, + [164401] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7043), 1, - anon_sym_DOT, - ACTIONS(7045), 1, - aux_sym__immediate_decimal_token2, - STATE(4087), 1, + STATE(4145), 1, sym_comment, - ACTIONS(1667), 4, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1669), 13, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + ACTIONS(1828), 4, + sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [166492] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4088), 1, - sym_comment, - ACTIONS(1050), 2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1052), 17, - ts_builtin_sym_end, + ACTIONS(1826), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -359902,20 +366653,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [166522] = 4, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [164431] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4089), 1, + STATE(4146), 1, sym_comment, - ACTIONS(1054), 2, + ACTIONS(1066), 2, anon_sym_DOT_DOT2, anon_sym_DOT, - ACTIONS(1056), 17, + ACTIONS(1068), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -359933,23 +366683,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [166552] = 7, - ACTIONS(3), 1, + [164461] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6947), 1, - anon_sym_DOT, - STATE(4090), 1, + STATE(4147), 1, sym_comment, - STATE(4091), 1, - aux_sym_cell_path_repeat1, - STATE(4280), 1, - sym_path, - ACTIONS(1013), 4, + ACTIONS(1070), 2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1072), 17, ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1011), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -359961,23 +366704,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - [166588] = 6, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [164491] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7047), 1, - anon_sym_DOT, - STATE(4280), 1, - sym_path, - STATE(4091), 2, + ACTIONS(1099), 1, + anon_sym_DOT_DOT2, + STATE(4148), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1017), 4, - ts_builtin_sym_end, - sym__space, + ACTIONS(1101), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1015), 12, + ACTIONS(7205), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -359989,47 +366731,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - [166622] = 8, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [164523] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7027), 1, - anon_sym_DOT, - STATE(4092), 1, - sym_comment, - STATE(4150), 1, - aux_sym_cell_path_repeat1, - STATE(4469), 1, - sym_path, - STATE(4520), 1, - sym_cell_path, - ACTIONS(1641), 2, - anon_sym_DASH, + ACTIONS(1099), 1, anon_sym_DOT_DOT2, - ACTIONS(1645), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + STATE(4149), 1, + sym_comment, + ACTIONS(1101), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [166660] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1667), 1, - aux_sym_unquoted_token2, - ACTIONS(6945), 1, - aux_sym__immediate_decimal_token2, - STATE(4093), 1, - sym_comment, - ACTIONS(1669), 17, + ACTIONS(7205), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -360046,18 +366763,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - [166692] = 4, - ACTIONS(3), 1, + [164555] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4094), 1, + ACTIONS(4987), 1, + anon_sym_DASH, + STATE(4150), 1, sym_comment, - ACTIONS(1040), 4, + ACTIONS(4985), 18, ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1038), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -360069,25 +366783,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [166721] = 8, - ACTIONS(3), 1, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_LPAREN2, + [164585] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1677), 1, - sym__space, - ACTIONS(7050), 1, - anon_sym_DOT, - STATE(4095), 1, + ACTIONS(1099), 1, + anon_sym_DOT_DOT2, + STATE(4151), 1, sym_comment, - STATE(4215), 1, - aux_sym_cell_path_repeat1, - STATE(4266), 1, - sym_cell_path, - STATE(4566), 1, - sym_path, - ACTIONS(1675), 13, + ACTIONS(1101), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7205), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -360101,16 +366813,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [166758] = 5, - ACTIONS(247), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [164617] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - STATE(4096), 1, + STATE(4152), 1, sym_comment, - STATE(7257), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7052), 16, + ACTIONS(1040), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1038), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -360124,17 +366839,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [166789] = 4, - ACTIONS(247), 1, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [164647] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2462), 1, + ACTIONS(4997), 1, anon_sym_DASH, - STATE(4097), 1, + STATE(4153), 1, sym_comment, - ACTIONS(2464), 17, + ACTIONS(4995), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -360152,15 +366867,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [166818] = 4, - ACTIONS(247), 1, + anon_sym_LPAREN2, + [164677] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1822), 1, + STATE(4154), 1, + sym_comment, + ACTIONS(1362), 9, + aux_sym_cmd_identifier_token39, + sym__newline, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + ACTIONS(1364), 10, + anon_sym_true, + anon_sym_false, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token40, + sym_identifier, anon_sym_DASH, - STATE(4098), 1, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + [164707] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1099), 1, + anon_sym_DOT_DOT2, + STATE(4155), 1, sym_comment, - ACTIONS(1826), 17, - ts_builtin_sym_end, + ACTIONS(1101), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1092), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -360172,20 +366916,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - [166847] = 4, - ACTIONS(247), 1, + [164739] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2309), 1, - anon_sym_DASH, - STATE(4099), 1, + ACTIONS(1844), 1, + anon_sym_LPAREN2, + ACTIONS(1852), 1, + aux_sym_unquoted_token2, + ACTIONS(7207), 1, + anon_sym_DOT_DOT2, + STATE(4156), 1, sym_comment, - ACTIONS(2311), 17, + ACTIONS(1850), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(7209), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1842), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -360197,53 +366950,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [166876] = 8, + [164776] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1906), 1, + ACTIONS(1899), 1, sym__space, - ACTIONS(7050), 1, + ACTIONS(7211), 1, anon_sym_DOT, - STATE(4100), 1, + STATE(4157), 1, sym_comment, - STATE(4215), 1, + STATE(4334), 1, aux_sym_cell_path_repeat1, - STATE(4566), 1, + STATE(4689), 1, sym_path, - STATE(4715), 1, + STATE(4853), 1, sym_cell_path, - ACTIONS(1904), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [166913] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7054), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7056), 1, - aux_sym__immediate_decimal_token2, - STATE(4101), 1, - sym_comment, - ACTIONS(1661), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1659), 14, + ACTIONS(1897), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -360257,23 +366979,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - aux_sym_unquoted_token2, - [166946] = 8, + [164813] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1902), 1, + ACTIONS(1911), 1, sym__space, - ACTIONS(7050), 1, + ACTIONS(7211), 1, anon_sym_DOT, - STATE(4102), 1, + STATE(4158), 1, sym_comment, - STATE(4215), 1, + STATE(4334), 1, aux_sym_cell_path_repeat1, - STATE(4566), 1, + STATE(4689), 1, sym_path, - STATE(4648), 1, + STATE(4861), 1, sym_cell_path, - ACTIONS(1900), 13, + ACTIONS(1909), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -360287,16 +367008,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [166983] = 5, - ACTIONS(247), 1, + [164850] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, + ACTIONS(1526), 1, + aux_sym_unquoted_token2, + ACTIONS(1790), 1, anon_sym_LPAREN2, - STATE(4103), 1, + STATE(4159), 1, sym_comment, - STATE(7257), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7052), 16, + ACTIONS(1796), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -360313,18 +367034,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [167014] = 4, + [164881] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4104), 1, + ACTIONS(7213), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7215), 1, + aux_sym__immediate_decimal_token2, + STATE(4160), 1, sym_comment, - ACTIONS(1661), 5, - ts_builtin_sym_end, + ACTIONS(1705), 2, sym__space, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1659), 13, + ACTIONS(1703), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -360336,24 +367058,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, + anon_sym_RPAREN, + anon_sym_RBRACE, aux_sym_unquoted_token2, - [167043] = 8, + [164914] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1870), 1, + ACTIONS(1931), 1, sym__space, - ACTIONS(7050), 1, + ACTIONS(7211), 1, anon_sym_DOT, - STATE(4105), 1, + STATE(4161), 1, sym_comment, - STATE(4215), 1, + STATE(4334), 1, aux_sym_cell_path_repeat1, - STATE(4566), 1, + STATE(4689), 1, sym_path, - STATE(4776), 1, + STATE(4779), 1, sym_cell_path, - ACTIONS(1868), 13, + ACTIONS(1929), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -360367,15 +367090,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [167080] = 4, - ACTIONS(247), 1, + [164951] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2466), 1, + ACTIONS(5594), 1, anon_sym_DASH, - STATE(4106), 1, + STATE(4162), 1, sym_comment, - ACTIONS(2468), 17, + ACTIONS(5596), 17, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [164980] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(7217), 1, + anon_sym_DOT, + STATE(4418), 1, + sym_path, + ACTIONS(1031), 2, + anon_sym_DASH, + anon_sym_DOT_DOT2, + STATE(4163), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(1033), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [165013] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4164), 1, + sym_comment, + ACTIONS(1771), 5, ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1769), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -360387,20 +367165,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [167109] = 4, - ACTIONS(247), 1, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [165042] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2388), 1, - anon_sym_DASH, - STATE(4107), 1, + STATE(4165), 1, + sym_comment, + ACTIONS(1078), 3, + anon_sym_GT, + anon_sym_LT2, + anon_sym_DOT_DOT2, + ACTIONS(1080), 15, + anon_sym_PIPE, + anon_sym_in, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [165071] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1526), 1, + aux_sym_unquoted_token2, + ACTIONS(1790), 1, + anon_sym_LPAREN2, + ACTIONS(7220), 1, + anon_sym_DOT_DOT2, + STATE(4166), 1, sym_comment, - ACTIONS(2390), 17, + ACTIONS(1796), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(7222), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1788), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -360412,27 +367221,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [167138] = 8, + [165108] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1874), 1, + ACTIONS(2073), 1, sym__space, - ACTIONS(7050), 1, + ACTIONS(7211), 1, anon_sym_DOT, - STATE(4108), 1, + STATE(4167), 1, sym_comment, - STATE(4215), 1, + STATE(4334), 1, aux_sym_cell_path_repeat1, - STATE(4566), 1, + STATE(4689), 1, sym_path, - STATE(4780), 1, + STATE(4793), 1, sym_cell_path, - ACTIONS(1872), 13, + ACTIONS(2071), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -360446,22 +367250,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [167175] = 8, + [165145] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5601), 1, + anon_sym_DASH, + STATE(4168), 1, + sym_comment, + ACTIONS(5603), 17, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [165174] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1854), 1, - sym__space, - ACTIONS(7050), 1, - anon_sym_DOT, - STATE(4109), 1, + ACTIONS(2273), 1, + anon_sym_LPAREN2, + ACTIONS(2275), 1, + aux_sym_unquoted_token4, + STATE(4169), 1, sym_comment, - STATE(4215), 1, - aux_sym_cell_path_repeat1, - STATE(4566), 1, - sym_path, - STATE(4805), 1, - sym_cell_path, - ACTIONS(1852), 13, + ACTIONS(1090), 3, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1092), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -360475,15 +367302,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [167212] = 4, - ACTIONS(247), 1, + [165207] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2328), 1, - anon_sym_DASH, - STATE(4110), 1, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + STATE(4170), 1, sym_comment, - ACTIONS(2330), 17, - ts_builtin_sym_end, + STATE(7791), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4808), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -360495,19 +367323,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - [167241] = 4, - ACTIONS(247), 1, + [165238] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2338), 1, - anon_sym_DASH, - STATE(4111), 1, + ACTIONS(1715), 1, + aux_sym_unquoted_token2, + ACTIONS(7201), 1, + aux_sym__immediate_decimal_token2, + STATE(4171), 1, sym_comment, - ACTIONS(2340), 17, + ACTIONS(1717), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -360520,27 +367350,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [167270] = 8, + anon_sym_LPAREN2, + [165269] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1858), 1, + ACTIONS(7224), 1, + anon_sym_QMARK2, + STATE(4172), 1, + sym_comment, + ACTIONS(1044), 4, + ts_builtin_sym_end, sym__space, - ACTIONS(7050), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1042), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DOT_DOT2, anon_sym_DOT, - STATE(4112), 1, + [165300] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1995), 1, + sym__space, + ACTIONS(7211), 1, + anon_sym_DOT, + STATE(4173), 1, sym_comment, - STATE(4215), 1, + STATE(4334), 1, aux_sym_cell_path_repeat1, - STATE(4566), 1, + STATE(4689), 1, sym_path, - STATE(4710), 1, + STATE(4840), 1, sym_cell_path, - ACTIONS(1856), 13, + ACTIONS(1993), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -360554,22 +367409,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [167307] = 8, + [165337] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(7226), 1, + aux_sym__immediate_decimal_token2, + STATE(4174), 1, + sym_comment, + ACTIONS(1769), 4, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1771), 13, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [165368] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1886), 1, + ACTIONS(7228), 1, + anon_sym_QMARK2, + STATE(4175), 1, + sym_comment, + ACTIONS(1050), 4, + ts_builtin_sym_end, sym__space, - ACTIONS(7050), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1048), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DOT_DOT2, anon_sym_DOT, - STATE(4113), 1, + [165399] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4176), 1, sym_comment, - STATE(4215), 1, - aux_sym_cell_path_repeat1, - STATE(4566), 1, - sym_path, - STATE(4789), 1, - sym_cell_path, - ACTIONS(1884), 13, + ACTIONS(1076), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1074), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -360583,15 +367484,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [167344] = 4, - ACTIONS(247), 1, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [165428] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2380), 1, - anon_sym_DASH, - STATE(4114), 1, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + STATE(4177), 1, sym_comment, - ACTIONS(2382), 17, - ts_builtin_sym_end, + STATE(7791), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4812), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -360603,20 +367507,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - [167373] = 4, - ACTIONS(247), 1, + [165459] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2342), 1, - anon_sym_DASH, - STATE(4115), 1, + ACTIONS(2015), 1, + sym__space, + ACTIONS(7211), 1, + anon_sym_DOT, + STATE(4178), 1, sym_comment, - ACTIONS(2344), 17, - ts_builtin_sym_end, + STATE(4334), 1, + aux_sym_cell_path_repeat1, + STATE(4689), 1, + sym_path, + STATE(4704), 1, + sym_cell_path, + ACTIONS(2013), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -360628,27 +367539,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [167402] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + [165496] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1862), 1, + ACTIONS(2019), 1, sym__space, - ACTIONS(7050), 1, + ACTIONS(7211), 1, anon_sym_DOT, - STATE(4116), 1, + STATE(4179), 1, sym_comment, - STATE(4215), 1, + STATE(4334), 1, aux_sym_cell_path_repeat1, - STATE(4566), 1, + STATE(4689), 1, sym_path, - STATE(4745), 1, + STATE(4735), 1, sym_cell_path, - ACTIONS(1860), 13, + ACTIONS(2017), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -360662,16 +367570,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [167439] = 4, + [165533] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4117), 1, - sym_comment, - ACTIONS(1052), 3, + ACTIONS(2023), 1, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1050), 15, + ACTIONS(7211), 1, + anon_sym_DOT, + STATE(4180), 1, + sym_comment, + STATE(4334), 1, + aux_sym_cell_path_repeat1, + STATE(4689), 1, + sym_path, + STATE(4799), 1, + sym_cell_path, + ACTIONS(2021), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -360685,16 +367599,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, + [165570] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2045), 1, + sym__space, + ACTIONS(7211), 1, anon_sym_DOT, - [167468] = 4, - ACTIONS(247), 1, + STATE(4181), 1, + sym_comment, + STATE(4334), 1, + aux_sym_cell_path_repeat1, + STATE(4689), 1, + sym_path, + STATE(4726), 1, + sym_cell_path, + ACTIONS(2043), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [165607] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2458), 1, + ACTIONS(2569), 1, anon_sym_DASH, - STATE(4118), 1, + STATE(4182), 1, sym_comment, - ACTIONS(2460), 17, + ACTIONS(2571), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -360712,14 +367653,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [167497] = 4, - ACTIONS(247), 1, + [165636] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2517), 1, - anon_sym_DASH, - STATE(4119), 1, + ACTIONS(1769), 1, + aux_sym_unquoted_token2, + ACTIONS(7230), 1, + aux_sym__immediate_decimal_token2, + STATE(4183), 1, sym_comment, - ACTIONS(2519), 17, + ACTIONS(1771), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -360732,22 +367675,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [167526] = 4, + anon_sym_LPAREN2, + [165667] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4120), 1, + STATE(4184), 1, sym_comment, - ACTIONS(1036), 4, - ts_builtin_sym_end, + ACTIONS(1068), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1034), 14, + ACTIONS(1066), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -360759,18 +367700,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_QMARK2, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, anon_sym_DOT, - [167555] = 4, - ACTIONS(247), 1, + [165696] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2521), 1, + ACTIONS(5502), 1, anon_sym_DASH, - STATE(4121), 1, + STATE(4185), 1, sym_comment, - ACTIONS(2523), 17, - ts_builtin_sym_end, + ACTIONS(5504), 17, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [165725] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4186), 1, + sym_comment, + ACTIONS(1072), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1070), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -360782,22 +367750,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [165754] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5590), 1, + anon_sym_DASH, + STATE(4187), 1, + sym_comment, + ACTIONS(5592), 17, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [167584] = 4, + anon_sym_LBRACE, + anon_sym_RBRACE, + [165783] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4122), 1, + STATE(4188), 1, sym_comment, - ACTIONS(2253), 4, + ACTIONS(2289), 4, anon_sym_and, anon_sym_xor, anon_sym_or, aux_sym_unquoted_token4, - ACTIONS(2255), 14, + ACTIONS(2291), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -360812,18 +367804,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_LPAREN2, - [167613] = 4, + [165812] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4123), 1, - sym_comment, - ACTIONS(1723), 5, - ts_builtin_sym_end, + ACTIONS(1999), 1, sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1721), 13, + ACTIONS(7211), 1, + anon_sym_DOT, + STATE(4189), 1, + sym_comment, + STATE(4334), 1, + aux_sym_cell_path_repeat1, + STATE(4689), 1, + sym_path, + STATE(4772), 1, + sym_cell_path, + ACTIONS(1997), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -360835,17 +367831,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [167642] = 4, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [165849] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2348), 1, - anon_sym_DASH, - STATE(4124), 1, + ACTIONS(2049), 1, + sym__space, + ACTIONS(7211), 1, + anon_sym_DOT, + STATE(4190), 1, sym_comment, - ACTIONS(2350), 17, - ts_builtin_sym_end, + STATE(4334), 1, + aux_sym_cell_path_repeat1, + STATE(4689), 1, + sym_path, + STATE(4805), 1, + sym_cell_path, + ACTIONS(2047), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -360857,24 +367860,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [167671] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [165886] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7058), 1, + ACTIONS(7211), 1, anon_sym_DOT, - ACTIONS(7060), 1, - aux_sym__immediate_decimal_token2, - STATE(4125), 1, - sym_comment, - ACTIONS(1669), 2, + ACTIONS(7234), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(1667), 14, + STATE(4191), 1, + sym_comment, + STATE(4334), 1, + aux_sym_cell_path_repeat1, + STATE(4689), 1, + sym_path, + STATE(4806), 1, + sym_cell_path, + ACTIONS(7232), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -360888,48 +367891,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - aux_sym_unquoted_token2, - [167704] = 4, - ACTIONS(247), 1, + [165923] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1667), 1, - aux_sym_unquoted_token2, - STATE(4126), 1, + ACTIONS(5570), 1, + anon_sym_DASH, + STATE(4192), 1, sym_comment, - ACTIONS(1669), 17, + ACTIONS(5572), 17, + anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_LPAREN2, - [167733] = 8, - ACTIONS(3), 1, + [165952] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1645), 1, - sym__space, - ACTIONS(7050), 1, - anon_sym_DOT, - STATE(4127), 1, + ACTIONS(1844), 1, + anon_sym_LPAREN2, + ACTIONS(1852), 1, + aux_sym_unquoted_token2, + STATE(4193), 1, sym_comment, - STATE(4215), 1, - aux_sym_cell_path_repeat1, - STATE(4270), 1, - sym_cell_path, - STATE(4566), 1, - sym_path, - ACTIONS(1641), 13, + ACTIONS(2279), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -360943,15 +367939,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [167770] = 4, - ACTIONS(247), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [165983] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2384), 1, - anon_sym_DASH, - STATE(4128), 1, + ACTIONS(1844), 1, + anon_sym_LPAREN2, + ACTIONS(1852), 1, + aux_sym_unquoted_token2, + STATE(4194), 1, sym_comment, - ACTIONS(2386), 17, - ts_builtin_sym_end, + ACTIONS(1850), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -360963,27 +367963,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - [167799] = 8, + [166014] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1842), 1, + ACTIONS(2053), 1, sym__space, - ACTIONS(7050), 1, + ACTIONS(7211), 1, anon_sym_DOT, - STATE(4129), 1, + STATE(4195), 1, sym_comment, - STATE(4215), 1, + STATE(4334), 1, aux_sym_cell_path_repeat1, - STATE(4566), 1, + STATE(4689), 1, sym_path, - STATE(4666), 1, + STATE(4694), 1, sym_cell_path, - ACTIONS(1840), 13, + ACTIONS(2051), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -360997,14 +367997,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [167836] = 4, - ACTIONS(247), 1, + [166051] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1070), 1, + ACTIONS(1090), 1, anon_sym_DASH, - STATE(4130), 1, + STATE(4196), 1, sym_comment, - ACTIONS(1072), 17, + ACTIONS(1092), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -361022,15 +368022,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [167865] = 4, - ACTIONS(247), 1, + [166080] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1848), 1, - anon_sym_DASH, - STATE(4131), 1, + ACTIONS(2057), 1, + sym__space, + ACTIONS(7211), 1, + anon_sym_DOT, + STATE(4197), 1, sym_comment, - ACTIONS(1850), 17, - ts_builtin_sym_end, + STATE(4334), 1, + aux_sym_cell_path_repeat1, + STATE(4689), 1, + sym_path, + STATE(4742), 1, + sym_cell_path, + ACTIONS(2055), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -361042,21 +368049,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [167894] = 5, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [166117] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1552), 1, - aux_sym_unquoted_token2, - ACTIONS(2293), 1, - anon_sym_LPAREN2, - STATE(4132), 1, + ACTIONS(2454), 1, + anon_sym_DASH, + STATE(4198), 1, sym_comment, - ACTIONS(2295), 16, + ACTIONS(2456), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -361068,27 +368071,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [167925] = 8, + [166146] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1878), 1, + ACTIONS(2061), 1, sym__space, - ACTIONS(7050), 1, + ACTIONS(7211), 1, anon_sym_DOT, - STATE(4133), 1, + STATE(4199), 1, sym_comment, - STATE(4215), 1, + STATE(4334), 1, aux_sym_cell_path_repeat1, - STATE(4566), 1, + STATE(4689), 1, sym_path, - STATE(4782), 1, + STATE(4746), 1, sym_cell_path, - ACTIONS(1876), 13, + ACTIONS(2059), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -361102,16 +368105,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [167962] = 5, - ACTIONS(247), 1, + [166183] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, + ACTIONS(4433), 1, anon_sym_LPAREN2, - STATE(4134), 1, + STATE(4200), 1, sym_comment, - STATE(7682), 1, + STATE(7791), 1, sym__expr_parenthesized_immediate, - ACTIONS(4755), 16, + ACTIONS(4844), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -361128,16 +368131,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [167993] = 5, - ACTIONS(247), 1, + [166214] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, + ACTIONS(4433), 1, anon_sym_LPAREN2, - STATE(4135), 1, + STATE(4201), 1, sym_comment, - STATE(7682), 1, + STATE(7791), 1, sym__expr_parenthesized_immediate, - ACTIONS(4759), 16, + ACTIONS(4848), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -361154,18 +368157,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [168024] = 4, + [166245] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4136), 1, + STATE(4202), 1, sym_comment, - ACTIONS(1740), 5, + ACTIONS(1828), 5, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1738), 13, + ACTIONS(1826), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -361179,16 +368182,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [168053] = 5, - ACTIONS(247), 1, + [166274] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - STATE(4137), 1, + ACTIONS(1023), 1, + sym__space, + ACTIONS(7211), 1, + anon_sym_DOT, + STATE(4203), 1, sym_comment, - STATE(7682), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4747), 16, + STATE(4334), 1, + aux_sym_cell_path_repeat1, + STATE(4343), 1, + sym_cell_path, + STATE(4689), 1, + sym_path, + ACTIONS(1021), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -361202,19 +368211,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [168084] = 5, - ACTIONS(247), 1, + [166311] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - STATE(4138), 1, + ACTIONS(2077), 1, + sym__space, + ACTIONS(7211), 1, + anon_sym_DOT, + STATE(4204), 1, sym_comment, - STATE(7682), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4751), 16, + STATE(4334), 1, + aux_sym_cell_path_repeat1, + STATE(4689), 1, + sym_path, + STATE(4795), 1, + sym_cell_path, + ACTIONS(2075), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -361228,25 +368240,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [168115] = 8, + [166348] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1830), 1, + ACTIONS(2069), 1, sym__space, - ACTIONS(7050), 1, + ACTIONS(7211), 1, anon_sym_DOT, - STATE(4139), 1, + STATE(4205), 1, sym_comment, - STATE(4215), 1, + STATE(4334), 1, aux_sym_cell_path_repeat1, - STATE(4566), 1, + STATE(4689), 1, sym_path, - STATE(4751), 1, + STATE(4864), 1, sym_cell_path, - ACTIONS(1828), 13, + ACTIONS(2067), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -361260,41 +368269,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [168152] = 4, - ACTIONS(247), 1, + [166385] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2412), 1, - anon_sym_DASH, - STATE(4140), 1, + ACTIONS(2283), 1, + anon_sym_LPAREN2, + ACTIONS(2287), 1, + aux_sym_unquoted_token4, + STATE(4206), 1, sym_comment, - ACTIONS(2414), 17, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, + ACTIONS(2281), 3, anon_sym_and, anon_sym_xor, anon_sym_or, - [168181] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4141), 1, - sym_comment, - ACTIONS(1056), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1054), 15, + ACTIONS(2285), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -361308,17 +368296,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [168210] = 4, - ACTIONS(247), 1, + [166418] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2416), 1, - anon_sym_DASH, - STATE(4142), 1, + ACTIONS(2085), 1, + sym__space, + ACTIONS(7211), 1, + anon_sym_DOT, + STATE(4207), 1, sym_comment, - ACTIONS(2418), 17, - ts_builtin_sym_end, + STATE(4334), 1, + aux_sym_cell_path_repeat1, + STATE(4689), 1, + sym_path, + STATE(4829), 1, + sym_cell_path, + ACTIONS(2083), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -361330,19 +368323,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [168239] = 4, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [166455] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1864), 1, + ACTIONS(1897), 1, anon_sym_DASH, - STATE(4143), 1, + STATE(4208), 1, sym_comment, - ACTIONS(1866), 17, + ACTIONS(1899), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -361360,18 +368350,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [168268] = 4, - ACTIONS(3), 1, + [166484] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4144), 1, + ACTIONS(7236), 1, + anon_sym_DOT_DOT2, + STATE(4209), 1, sym_comment, - ACTIONS(1669), 5, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, + ACTIONS(7238), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1667), 13, + ACTIONS(7205), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -361383,16 +368373,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [168297] = 4, - ACTIONS(247), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [166515] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1872), 1, + ACTIONS(2547), 1, anon_sym_DASH, - STATE(4145), 1, + STATE(4210), 1, sym_comment, - ACTIONS(1874), 17, + ACTIONS(2549), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -361410,17 +368401,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [168326] = 5, - ACTIONS(247), 1, + [166544] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1667), 1, - aux_sym_unquoted_token2, - ACTIONS(7031), 1, - aux_sym__immediate_decimal_token2, - STATE(4146), 1, + ACTIONS(2295), 1, + anon_sym_LPAREN2, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + STATE(4211), 1, sym_comment, - ACTIONS(1669), 16, - ts_builtin_sym_end, + ACTIONS(2293), 3, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(2297), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -361432,19 +368426,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [166577] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2295), 1, + anon_sym_LPAREN2, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + STATE(4212), 1, + sym_comment, + ACTIONS(2303), 3, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - [168357] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1876), 1, - anon_sym_DASH, - STATE(4147), 1, - sym_comment, - ACTIONS(1878), 17, - ts_builtin_sym_end, + ACTIONS(2305), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -361456,20 +368453,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [168386] = 4, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [166610] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1560), 1, - anon_sym_DASH, - STATE(4148), 1, + ACTIONS(1715), 1, + aux_sym_unquoted_token2, + STATE(4213), 1, sym_comment, - ACTIONS(1572), 17, - ts_builtin_sym_end, + ACTIONS(1717), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -361481,27 +368474,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - [168415] = 8, + anon_sym_LPAREN2, + [166639] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1846), 1, + ACTIONS(2089), 1, sym__space, - ACTIONS(7050), 1, + ACTIONS(7211), 1, anon_sym_DOT, - STATE(4149), 1, + STATE(4214), 1, sym_comment, - STATE(4215), 1, + STATE(4334), 1, aux_sym_cell_path_repeat1, - STATE(4566), 1, + STATE(4689), 1, sym_path, - STATE(4747), 1, + STATE(4709), 1, sym_cell_path, - ACTIONS(1844), 13, + ACTIONS(2087), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -361515,50 +368509,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [168452] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7027), 1, - anon_sym_DOT, - STATE(4150), 1, - sym_comment, - STATE(4159), 1, - aux_sym_cell_path_repeat1, - STATE(4469), 1, - sym_path, - ACTIONS(1011), 2, - anon_sym_DASH, - anon_sym_DOT_DOT2, - ACTIONS(1013), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [168487] = 8, + [166676] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1834), 1, + ACTIONS(2003), 1, sym__space, - ACTIONS(7050), 1, + ACTIONS(7211), 1, anon_sym_DOT, - STATE(4151), 1, - sym_comment, STATE(4215), 1, + sym_comment, + STATE(4334), 1, aux_sym_cell_path_repeat1, - STATE(4566), 1, + STATE(4689), 1, sym_path, - STATE(4678), 1, + STATE(4821), 1, sym_cell_path, - ACTIONS(1832), 13, + ACTIONS(2001), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -361572,16 +368538,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [168524] = 4, - ACTIONS(3), 1, + [166713] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4152), 1, + ACTIONS(2494), 1, + anon_sym_DASH, + STATE(4216), 1, sym_comment, - ACTIONS(1048), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1046), 15, + ACTIONS(2496), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -361593,18 +368558,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [168553] = 4, - ACTIONS(247), 1, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [166742] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2420), 1, + ACTIONS(2539), 1, anon_sym_DASH, - STATE(4153), 1, + STATE(4217), 1, sym_comment, - ACTIONS(2422), 17, + ACTIONS(2541), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -361622,22 +368588,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [168582] = 8, - ACTIONS(3), 1, + [166771] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1850), 1, - sym__space, - ACTIONS(7050), 1, - anon_sym_DOT, - STATE(4154), 1, + ACTIONS(2494), 1, + anon_sym_DASH, + STATE(4218), 1, sym_comment, - STATE(4215), 1, - aux_sym_cell_path_repeat1, - STATE(4566), 1, - sym_path, - STATE(4646), 1, - sym_cell_path, - ACTIONS(1848), 13, + ACTIONS(2496), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -361649,24 +368608,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [168619] = 8, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [166800] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1894), 1, + ACTIONS(2097), 1, sym__space, - ACTIONS(7050), 1, + ACTIONS(7211), 1, anon_sym_DOT, - STATE(4155), 1, + STATE(4219), 1, sym_comment, - STATE(4215), 1, + STATE(4334), 1, aux_sym_cell_path_repeat1, - STATE(4566), 1, + STATE(4689), 1, sym_path, - STATE(4790), 1, + STATE(4815), 1, sym_cell_path, - ACTIONS(1892), 13, + ACTIONS(2095), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -361680,14 +368642,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [168656] = 4, - ACTIONS(247), 1, + [166837] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2305), 1, - anon_sym_DASH, - STATE(4156), 1, + ACTIONS(7236), 1, + anon_sym_DOT_DOT2, + STATE(4220), 1, sym_comment, - ACTIONS(2307), 17, + ACTIONS(7238), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7205), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -361700,20 +368665,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [168685] = 4, - ACTIONS(247), 1, + [166868] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1888), 1, - anon_sym_DASH, - STATE(4157), 1, + ACTIONS(2007), 1, + sym__space, + ACTIONS(7211), 1, + anon_sym_DOT, + STATE(4221), 1, sym_comment, - ACTIONS(1890), 17, - ts_builtin_sym_end, + STATE(4334), 1, + aux_sym_cell_path_repeat1, + STATE(4689), 1, + sym_path, + STATE(4841), 1, + sym_cell_path, + ACTIONS(2005), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -361725,25 +368695,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [168714] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [166905] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2225), 1, - anon_sym_LPAREN2, - ACTIONS(2227), 1, - aux_sym_unquoted_token4, - STATE(4158), 1, + ACTIONS(1703), 1, + aux_sym_unquoted_token2, + STATE(4222), 1, sym_comment, - ACTIONS(1070), 3, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1072), 13, + ACTIONS(1705), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -361757,75 +368718,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [168747] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7062), 1, - anon_sym_DOT, - STATE(4469), 1, - sym_path, - ACTIONS(1015), 2, - anon_sym_DASH, - anon_sym_DOT_DOT2, - STATE(4159), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1017), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [168780] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7065), 1, - aux_sym__immediate_decimal_token2, - STATE(4160), 1, - sym_comment, - ACTIONS(1721), 4, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1723), 13, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [168811] = 8, - ACTIONS(3), 1, + [166934] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1838), 1, - sym__space, - ACTIONS(7050), 1, - anon_sym_DOT, - STATE(4161), 1, + ACTIONS(2398), 1, + anon_sym_DASH, + STATE(4223), 1, sym_comment, - STATE(4215), 1, - aux_sym_cell_path_repeat1, - STATE(4566), 1, - sym_path, - STATE(4802), 1, - sym_cell_path, - ACTIONS(1836), 13, + ACTIONS(2400), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -361837,16 +368742,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [168848] = 4, - ACTIONS(247), 1, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [166963] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1659), 1, - aux_sym_unquoted_token2, - STATE(4162), 1, + ACTIONS(2406), 1, + anon_sym_DASH, + STATE(4224), 1, sym_comment, - ACTIONS(1661), 17, + ACTIONS(2408), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -361858,20 +368767,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - [168877] = 4, - ACTIONS(247), 1, + [166992] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1832), 1, + ACTIONS(2506), 1, anon_sym_DASH, - STATE(4163), 1, + STATE(4225), 1, sym_comment, - ACTIONS(1834), 17, + ACTIONS(2508), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -361889,22 +368797,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [168906] = 8, + [167021] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1949), 1, + ACTIONS(1668), 1, sym__space, - ACTIONS(7050), 1, + ACTIONS(7211), 1, anon_sym_DOT, - STATE(4164), 1, + STATE(4226), 1, sym_comment, - STATE(4215), 1, + STATE(4310), 1, + sym_cell_path, + STATE(4334), 1, aux_sym_cell_path_repeat1, - STATE(4566), 1, + STATE(4689), 1, sym_path, - STATE(4760), 1, - sym_cell_path, - ACTIONS(1947), 13, + ACTIONS(1664), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -361918,22 +368826,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [168943] = 8, - ACTIONS(3), 1, + [167058] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7050), 1, - anon_sym_DOT, - ACTIONS(7069), 1, - sym__space, - STATE(4165), 1, + ACTIONS(2531), 1, + anon_sym_DASH, + STATE(4227), 1, sym_comment, - STATE(4215), 1, - aux_sym_cell_path_repeat1, - STATE(4566), 1, - sym_path, - STATE(4761), 1, - sym_cell_path, - ACTIONS(7067), 13, + ACTIONS(2533), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -361945,19 +368846,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [168980] = 5, - ACTIONS(247), 1, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [167087] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7071), 1, - anon_sym_DOT_DOT2, - STATE(4166), 1, + ACTIONS(1909), 1, + anon_sym_DASH, + STATE(4228), 1, sym_comment, - ACTIONS(7073), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1072), 15, + ACTIONS(1911), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -361970,27 +368871,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [169011] = 8, - ACTIONS(3), 1, + [167116] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1790), 1, - anon_sym_LPAREN2, - ACTIONS(1798), 1, - aux_sym_unquoted_token2, - ACTIONS(7075), 1, - anon_sym_DOT_DOT2, - STATE(4167), 1, + ACTIONS(2543), 1, + anon_sym_DASH, + STATE(4229), 1, sym_comment, - ACTIONS(1796), 2, + ACTIONS(2545), 17, ts_builtin_sym_end, - sym__space, - ACTIONS(7077), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1788), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362002,22 +368896,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [169048] = 8, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [167145] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1882), 1, + ACTIONS(2011), 1, sym__space, - ACTIONS(7050), 1, + ACTIONS(7211), 1, anon_sym_DOT, - STATE(4168), 1, + STATE(4230), 1, sym_comment, - STATE(4215), 1, + STATE(4334), 1, aux_sym_cell_path_repeat1, - STATE(4566), 1, + STATE(4689), 1, sym_path, - STATE(4783), 1, + STATE(4856), 1, sym_cell_path, - ACTIONS(1880), 13, + ACTIONS(2009), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362031,20 +368930,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [169085] = 6, + [167182] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2231), 1, + STATE(4231), 1, + sym_comment, + ACTIONS(1705), 5, + ts_builtin_sym_end, + sym__space, anon_sym_LPAREN2, - ACTIONS(2235), 1, - aux_sym_unquoted_token4, - STATE(4169), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1703), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [167211] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(2561), 1, + anon_sym_DASH, + STATE(4232), 1, sym_comment, - ACTIONS(2229), 3, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(2233), 13, + ACTIONS(2563), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362056,24 +368975,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [169118] = 8, - ACTIONS(3), 1, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [167240] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1866), 1, - sym__space, - ACTIONS(7050), 1, - anon_sym_DOT, - STATE(4170), 1, + ACTIONS(1769), 1, + aux_sym_unquoted_token2, + STATE(4233), 1, sym_comment, - STATE(4215), 1, - aux_sym_cell_path_repeat1, - STATE(4566), 1, - sym_path, - STATE(4773), 1, - sym_cell_path, - ACTIONS(1864), 13, + ACTIONS(1771), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362087,14 +369001,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [169155] = 4, - ACTIONS(247), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_LPAREN2, + [167269] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2434), 1, + ACTIONS(2510), 1, anon_sym_DASH, - STATE(4171), 1, + STATE(4234), 1, sym_comment, - ACTIONS(2436), 17, + ACTIONS(2512), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -362112,14 +369030,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [169184] = 4, - ACTIONS(247), 1, + [167298] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2438), 1, + ACTIONS(2430), 1, anon_sym_DASH, - STATE(4172), 1, + STATE(4235), 1, sym_comment, - ACTIONS(2440), 17, + ACTIONS(2432), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -362137,14 +369055,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [169213] = 4, - ACTIONS(247), 1, + [167327] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1892), 1, + ACTIONS(2478), 1, anon_sym_DASH, - STATE(4173), 1, + STATE(4236), 1, sym_comment, - ACTIONS(1894), 17, + ACTIONS(2480), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -362162,20 +369080,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [169242] = 6, + [167356] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2239), 1, - anon_sym_LPAREN2, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - STATE(4174), 1, + ACTIONS(1895), 1, + sym__space, + ACTIONS(7211), 1, + anon_sym_DOT, + STATE(4237), 1, sym_comment, - ACTIONS(2237), 3, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(2241), 13, + STATE(4334), 1, + aux_sym_cell_path_repeat1, + STATE(4689), 1, + sym_path, + STATE(4741), 1, + sym_cell_path, + ACTIONS(1893), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362189,20 +369109,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [169275] = 6, - ACTIONS(3), 1, + [167393] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2239), 1, - anon_sym_LPAREN2, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - STATE(4175), 1, + ACTIONS(1826), 1, + aux_sym_unquoted_token2, + STATE(4238), 1, sym_comment, - ACTIONS(2245), 3, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(2247), 13, + ACTIONS(1828), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362216,16 +369130,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [169308] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3978), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_LPAREN2, - STATE(4176), 1, + [167422] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(2001), 1, + anon_sym_DASH, + STATE(4239), 1, sym_comment, - STATE(7257), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7052), 16, + ACTIONS(2003), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362237,23 +369154,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [169339] = 5, - ACTIONS(247), 1, + [167451] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7079), 1, - anon_sym_DOT_DOT2, - STATE(4177), 1, + ACTIONS(7158), 1, + aux_sym__immediate_decimal_token2, + STATE(4240), 1, sym_comment, - ACTIONS(7081), 2, + ACTIONS(1715), 4, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1717), 13, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2025), 15, - ts_builtin_sym_end, + [167482] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1558), 1, + aux_sym_unquoted_token2, + ACTIONS(2337), 1, + anon_sym_LPAREN2, + STATE(4241), 1, + sym_comment, + ACTIONS(2339), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362265,19 +369206,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - [169370] = 5, - ACTIONS(247), 1, + [167513] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2299), 1, - anon_sym_LPAREN2, - ACTIONS(2303), 1, - aux_sym_unquoted_token2, - STATE(4178), 1, + ACTIONS(2535), 1, + anon_sym_DASH, + STATE(4242), 1, sym_comment, - ACTIONS(2301), 16, + ACTIONS(2537), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362289,19 +369231,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [169401] = 4, - ACTIONS(247), 1, + [167542] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2362), 1, + ACTIONS(2466), 1, anon_sym_DASH, - STATE(4179), 1, + STATE(4243), 1, sym_comment, - ACTIONS(2364), 17, + ACTIONS(2468), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -362319,17 +369261,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [169430] = 5, - ACTIONS(247), 1, + [167571] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7083), 1, - anon_sym_DOT_DOT2, - STATE(4180), 1, + ACTIONS(2017), 1, + anon_sym_DASH, + STATE(4244), 1, sym_comment, - ACTIONS(7085), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1997), 15, + ACTIONS(2019), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -362342,20 +369281,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [169461] = 5, - ACTIONS(247), 1, + [167600] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7087), 1, - anon_sym_DOT_DOT2, - STATE(4181), 1, + ACTIONS(2043), 1, + anon_sym_DASH, + STATE(4245), 1, sym_comment, - ACTIONS(7089), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2005), 15, + ACTIONS(2045), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -362368,21 +369306,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [169492] = 5, - ACTIONS(247), 1, + [167629] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7091), 1, - anon_sym_DOT_DOT2, - STATE(4182), 1, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + STATE(4246), 1, sym_comment, - ACTIONS(7093), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2013), 15, - ts_builtin_sym_end, + STATE(7587), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7240), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362394,17 +369332,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - [169523] = 4, - ACTIONS(247), 1, + [167660] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2366), 1, - anon_sym_DASH, - STATE(4183), 1, + ACTIONS(7236), 1, + anon_sym_DOT_DOT2, + STATE(4247), 1, sym_comment, - ACTIONS(2368), 17, + ACTIONS(7238), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7205), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -362417,19 +369360,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [169552] = 4, - ACTIONS(247), 1, + [167691] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1900), 1, + ACTIONS(2047), 1, anon_sym_DASH, - STATE(4184), 1, + STATE(4248), 1, sym_comment, - ACTIONS(1902), 17, + ACTIONS(2049), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -362447,24 +369388,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [169581] = 8, + [167720] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1494), 1, - aux_sym_unquoted_token2, - ACTIONS(1780), 1, - anon_sym_LPAREN2, - ACTIONS(7095), 1, - anon_sym_DOT_DOT2, - STATE(4185), 1, - sym_comment, - ACTIONS(1786), 2, - ts_builtin_sym_end, + ACTIONS(2081), 1, sym__space, - ACTIONS(7097), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1778), 11, + ACTIONS(7211), 1, + anon_sym_DOT, + STATE(4249), 1, + sym_comment, + STATE(4334), 1, + aux_sym_cell_path_repeat1, + STATE(4689), 1, + sym_path, + STATE(4738), 1, + sym_cell_path, + ACTIONS(2079), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362476,14 +369415,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [169618] = 4, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [167757] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1721), 1, - aux_sym_unquoted_token2, - STATE(4186), 1, + ACTIONS(2434), 1, + anon_sym_DASH, + STATE(4250), 1, sym_comment, - ACTIONS(1723), 17, + ACTIONS(2436), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362495,22 +369437,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - [169647] = 5, - ACTIONS(247), 1, + [167786] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1721), 1, - aux_sym_unquoted_token2, - ACTIONS(7099), 1, - aux_sym__immediate_decimal_token2, - STATE(4187), 1, + ACTIONS(2059), 1, + anon_sym_DASH, + STATE(4251), 1, sym_comment, - ACTIONS(1723), 16, + ACTIONS(2061), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -362523,16 +369462,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, + [167815] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4252), 1, + sym_comment, + ACTIONS(1717), 5, + ts_builtin_sym_end, + sym__space, anon_sym_LPAREN2, - [169678] = 4, - ACTIONS(247), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1715), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [167844] = 4, + ACTIONS(249), 1, anon_sym_POUND, ACTIONS(2442), 1, anon_sym_DASH, - STATE(4188), 1, + STATE(4253), 1, sym_comment, ACTIONS(2444), 17, ts_builtin_sym_end, @@ -362552,17 +369517,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [169707] = 5, - ACTIONS(247), 1, + [167873] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7071), 1, - anon_sym_DOT_DOT2, - STATE(4189), 1, + ACTIONS(2450), 1, + anon_sym_DASH, + STATE(4254), 1, sym_comment, - ACTIONS(7073), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(6997), 15, + ACTIONS(2452), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -362575,18 +369537,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [169738] = 4, - ACTIONS(247), 1, + [167902] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2446), 1, - anon_sym_DASH, - STATE(4190), 1, + ACTIONS(7211), 1, + anon_sym_DOT, + ACTIONS(7244), 1, + sym__space, + STATE(4255), 1, sym_comment, - ACTIONS(2448), 17, - ts_builtin_sym_end, + STATE(4334), 1, + aux_sym_cell_path_repeat1, + STATE(4689), 1, + sym_path, + STATE(4778), 1, + sym_cell_path, + ACTIONS(7242), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362598,19 +369569,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [169767] = 4, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [167939] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1904), 1, + ACTIONS(2067), 1, anon_sym_DASH, - STATE(4191), 1, + STATE(4256), 1, sym_comment, - ACTIONS(1906), 17, + ACTIONS(2069), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -362628,22 +369596,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [169796] = 8, + [167968] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1937), 1, + STATE(4257), 1, + sym_comment, + ACTIONS(1060), 4, + ts_builtin_sym_end, sym__space, - ACTIONS(7050), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1058), 14, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, anon_sym_DOT, - STATE(4192), 1, + [167997] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + STATE(4258), 1, sym_comment, - STATE(4215), 1, - aux_sym_cell_path_repeat1, - STATE(4566), 1, - sym_path, - STATE(4730), 1, - sym_cell_path, - ACTIONS(1935), 13, + STATE(7587), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7240), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362657,22 +369644,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [169833] = 8, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [168028] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1914), 1, + ACTIONS(1903), 1, sym__space, - ACTIONS(7050), 1, + ACTIONS(7211), 1, anon_sym_DOT, - STATE(4193), 1, + STATE(4259), 1, sym_comment, - STATE(4215), 1, + STATE(4334), 1, aux_sym_cell_path_repeat1, - STATE(4566), 1, + STATE(4689), 1, sym_path, - STATE(4792), 1, + STATE(4724), 1, sym_cell_path, - ACTIONS(1912), 13, + ACTIONS(1901), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362686,17 +369676,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [169870] = 5, - ACTIONS(247), 1, + [168065] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7071), 1, - anon_sym_DOT_DOT2, - STATE(4194), 1, + ACTIONS(1628), 1, + anon_sym_DASH, + STATE(4260), 1, sym_comment, - ACTIONS(7073), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(6997), 15, + ACTIONS(1640), 17, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -362709,20 +369696,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [169901] = 5, - ACTIONS(247), 1, + [168094] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7071), 1, + ACTIONS(7236), 1, anon_sym_DOT_DOT2, - STATE(4195), 1, + STATE(4261), 1, sym_comment, - ACTIONS(7073), 2, + ACTIONS(7238), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(6997), 15, + ACTIONS(1092), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -362738,42 +369727,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [169932] = 5, - ACTIONS(247), 1, + [168125] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7045), 1, - aux_sym__immediate_decimal_token2, - STATE(4196), 1, + ACTIONS(1672), 1, + sym__space, + ACTIONS(7211), 1, + anon_sym_DOT, + STATE(4262), 1, sym_comment, - ACTIONS(1667), 4, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1669), 13, - anon_sym_EQ, + STATE(4320), 1, + sym_cell_path, + STATE(4334), 1, + aux_sym_cell_path_repeat1, + STATE(4689), 1, + sym_path, + ACTIONS(1670), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [169963] = 5, - ACTIONS(247), 1, + anon_sym_RBRACE, + [168162] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1494), 1, - aux_sym_unquoted_token2, - ACTIONS(1780), 1, - anon_sym_LPAREN2, - STATE(4197), 1, + ACTIONS(2087), 1, + anon_sym_DASH, + STATE(4263), 1, sym_comment, - ACTIONS(1786), 16, + ACTIONS(2089), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362785,19 +369776,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [169994] = 4, - ACTIONS(247), 1, + [168191] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1738), 1, - aux_sym_unquoted_token2, - STATE(4198), 1, + STATE(4264), 1, sym_comment, - ACTIONS(1740), 17, + ACTIONS(1064), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1062), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362809,53 +369803,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_LPAREN2, - [170023] = 4, - ACTIONS(247), 1, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [168220] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4199), 1, + ACTIONS(7246), 1, + anon_sym_DOT, + ACTIONS(7248), 1, + aux_sym__immediate_decimal_token2, + STATE(4265), 1, sym_comment, - ACTIONS(1058), 3, - anon_sym_GT, - anon_sym_LT2, - anon_sym_DOT_DOT2, - ACTIONS(1060), 15, + ACTIONS(1717), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1715), 14, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_in, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [170052] = 8, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_unquoted_token2, + [168253] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1826), 1, + STATE(4266), 1, + sym_comment, + ACTIONS(1040), 4, + ts_builtin_sym_end, sym__space, - ACTIONS(7050), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1038), 14, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, anon_sym_DOT, - STATE(4200), 1, + [168282] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + STATE(4267), 1, sym_comment, - STATE(4215), 1, - aux_sym_cell_path_repeat1, - STATE(4566), 1, - sym_path, - STATE(4689), 1, - sym_cell_path, - ACTIONS(1822), 13, + STATE(7587), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7240), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362869,19 +369881,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [170089] = 5, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [168313] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7101), 1, - anon_sym_QMARK2, - STATE(4201), 1, + ACTIONS(2470), 1, + anon_sym_DASH, + STATE(4268), 1, sym_comment, - ACTIONS(1024), 4, + ACTIONS(2472), 17, ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1022), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362893,21 +369904,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [170120] = 5, - ACTIONS(3), 1, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [168342] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7103), 1, - anon_sym_QMARK2, - STATE(4202), 1, + ACTIONS(2410), 1, + anon_sym_DASH, + STATE(4269), 1, sym_comment, - ACTIONS(1030), 4, + ACTIONS(2412), 17, ts_builtin_sym_end, - sym__space, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [168371] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(7250), 1, + anon_sym_DOT_DOT2, + STATE(4270), 1, + sym_comment, + ACTIONS(7252), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1028), 13, + ACTIONS(2228), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362919,24 +369957,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [170151] = 8, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [168402] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1890), 1, - sym__space, - ACTIONS(7050), 1, - anon_sym_DOT, - STATE(4203), 1, + ACTIONS(2438), 1, + anon_sym_DASH, + STATE(4271), 1, sym_comment, - STATE(4215), 1, - aux_sym_cell_path_repeat1, - STATE(4566), 1, - sym_path, - STATE(4707), 1, - sym_cell_path, - ACTIONS(1888), 13, + ACTIONS(2440), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362948,24 +369980,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [170188] = 8, - ACTIONS(3), 1, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [168431] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1945), 1, - sym__space, - ACTIONS(7050), 1, - anon_sym_DOT, - STATE(4204), 1, + ACTIONS(7254), 1, + anon_sym_DOT_DOT2, + STATE(4272), 1, sym_comment, - STATE(4215), 1, - aux_sym_cell_path_repeat1, - STATE(4566), 1, - sym_path, - STATE(4732), 1, - sym_cell_path, - ACTIONS(1943), 13, + ACTIONS(7256), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2240), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362977,16 +370008,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [170225] = 4, - ACTIONS(247), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [168462] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2450), 1, - anon_sym_DASH, - STATE(4205), 1, + ACTIONS(7258), 1, + anon_sym_DOT_DOT2, + STATE(4273), 1, sym_comment, - ACTIONS(2452), 17, + ACTIONS(7260), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2119), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -362999,19 +370034,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [170254] = 4, - ACTIONS(247), 1, + [168493] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2454), 1, - anon_sym_DASH, - STATE(4206), 1, + ACTIONS(7262), 1, + anon_sym_DOT_DOT2, + STATE(4274), 1, sym_comment, - ACTIONS(2456), 17, + ACTIONS(7264), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2212), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -363024,22 +370060,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [170283] = 4, + [168524] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4207), 1, + STATE(4275), 1, sym_comment, - ACTIONS(1044), 4, + ACTIONS(1056), 4, ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1042), 14, + ACTIONS(1054), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363054,22 +370088,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_DOT_DOT2, anon_sym_DOT, - [170312] = 8, - ACTIONS(3), 1, + [168553] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1898), 1, - sym__space, - ACTIONS(7050), 1, - anon_sym_DOT, - STATE(4208), 1, + ACTIONS(2474), 1, + anon_sym_DASH, + STATE(4276), 1, sym_comment, - STATE(4215), 1, - aux_sym_cell_path_repeat1, - STATE(4566), 1, - sym_path, - STATE(4676), 1, - sym_cell_path, - ACTIONS(1896), 13, + ACTIONS(2476), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363081,24 +370108,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [170349] = 8, - ACTIONS(3), 1, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [168582] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7050), 1, - anon_sym_DOT, - ACTIONS(7107), 1, - sym__space, - STATE(4209), 1, + ACTIONS(2095), 1, + anon_sym_DASH, + STATE(4277), 1, sym_comment, - STATE(4215), 1, - aux_sym_cell_path_repeat1, - STATE(4566), 1, - sym_path, - STATE(4733), 1, - sym_cell_path, - ACTIONS(7105), 13, + ACTIONS(2097), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363110,18 +370133,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [170386] = 5, - ACTIONS(247), 1, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [168611] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1790), 1, + ACTIONS(2248), 1, anon_sym_LPAREN2, - ACTIONS(1798), 1, + ACTIONS(2252), 1, aux_sym_unquoted_token2, - STATE(4210), 1, + STATE(4278), 1, sym_comment, - ACTIONS(2289), 16, + ACTIONS(2250), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363138,22 +370164,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [170417] = 8, - ACTIONS(3), 1, + [168642] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1007), 1, - sym__space, - ACTIONS(7050), 1, - anon_sym_DOT, - STATE(4211), 1, + ACTIONS(2418), 1, + anon_sym_DASH, + STATE(4279), 1, sym_comment, - STATE(4215), 1, - aux_sym_cell_path_repeat1, - STATE(4272), 1, - sym_cell_path, - STATE(4566), 1, - sym_path, - ACTIONS(1005), 13, + ACTIONS(2420), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363165,18 +370184,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [170454] = 5, - ACTIONS(247), 1, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [168671] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1790), 1, - anon_sym_LPAREN2, - ACTIONS(1798), 1, - aux_sym_unquoted_token2, - STATE(4212), 1, + ACTIONS(2502), 1, + anon_sym_DASH, + STATE(4280), 1, sym_comment, - ACTIONS(1796), 16, + ACTIONS(2504), 17, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363188,19 +370209,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [170485] = 4, - ACTIONS(247), 1, + [168700] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2305), 1, + ACTIONS(7154), 1, + anon_sym_DOT, + STATE(4163), 1, + aux_sym_cell_path_repeat1, + STATE(4281), 1, + sym_comment, + STATE(4418), 1, + sym_path, + ACTIONS(1027), 2, anon_sym_DASH, - STATE(4213), 1, + anon_sym_DOT_DOT2, + ACTIONS(1029), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [168735] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1826), 1, + aux_sym_unquoted_token2, + STATE(4282), 1, sym_comment, - ACTIONS(2307), 17, + ACTIONS(1828), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -363213,24 +370262,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH_DASH, - anon_sym_as, anon_sym_and, anon_sym_xor, anon_sym_or, - [170514] = 6, + anon_sym_LPAREN2, + [168763] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1017), 1, - sym__space, - ACTIONS(7109), 1, - anon_sym_DOT, - STATE(4566), 1, - sym_path, - STATE(4214), 2, + STATE(4283), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1015), 13, + ACTIONS(2232), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2230), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363244,20 +370289,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [170546] = 7, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + [168791] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1013), 1, - sym__space, - ACTIONS(7050), 1, - anon_sym_DOT, - STATE(4214), 1, - aux_sym_cell_path_repeat1, - STATE(4215), 1, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + STATE(4284), 1, sym_comment, - STATE(4566), 1, - sym_path, - ACTIONS(1011), 13, + STATE(7479), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7240), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363269,46 +370312,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [170580] = 5, - ACTIONS(247), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [168821] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7112), 1, - anon_sym_QMARK2, - STATE(4216), 1, - sym_comment, - ACTIONS(1028), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, + ACTIONS(7266), 1, anon_sym_DOT, - ACTIONS(1030), 13, - anon_sym_EQ, - sym_identifier, + STATE(4285), 1, + sym_comment, + STATE(4513), 1, + sym_cell_path, + STATE(4534), 1, + aux_sym_cell_path_repeat1, + STATE(4727), 1, + sym_path, + ACTIONS(1668), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1664), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [170610] = 6, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [168857] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7116), 1, + ACTIONS(2228), 1, sym__space, - ACTIONS(7118), 1, + ACTIONS(7268), 1, anon_sym_DOT_DOT2, - STATE(4217), 1, + STATE(4286), 1, sym_comment, - ACTIONS(7120), 2, + ACTIONS(7270), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7114), 13, + ACTIONS(2222), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363322,44 +370369,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [170642] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4218), 1, - sym_comment, - ACTIONS(1659), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1661), 14, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [170670] = 6, + [168889] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7122), 1, + ACTIONS(7266), 1, anon_sym_DOT, - ACTIONS(7124), 1, - aux_sym__immediate_decimal_token2, - STATE(4219), 1, + STATE(4287), 1, sym_comment, - ACTIONS(1669), 3, + STATE(4534), 1, + aux_sym_cell_path_repeat1, + STATE(4727), 1, + sym_path, + STATE(5047), 1, + sym_cell_path, + ACTIONS(2061), 2, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(1667), 12, + ACTIONS(2059), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363371,24 +370397,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_unquoted_token2, - [170702] = 8, + [168925] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7126), 1, + ACTIONS(7266), 1, anon_sym_DOT, - STATE(4220), 1, + STATE(4288), 1, sym_comment, - STATE(4448), 1, + STATE(4534), 1, aux_sym_cell_path_repeat1, - STATE(4804), 1, + STATE(4727), 1, sym_path, - STATE(4911), 1, + STATE(5017), 1, sym_cell_path, - ACTIONS(1850), 2, + ACTIONS(1895), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1848), 11, + ACTIONS(1893), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363400,23 +370425,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [170738] = 8, + [168961] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7126), 1, + ACTIONS(7266), 1, anon_sym_DOT, - STATE(4221), 1, + STATE(4289), 1, sym_comment, - STATE(4448), 1, + STATE(4534), 1, aux_sym_cell_path_repeat1, - STATE(4804), 1, + STATE(4727), 1, sym_path, - STATE(4892), 1, + STATE(5023), 1, sym_cell_path, - ACTIONS(1914), 2, + ACTIONS(1899), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1912), 11, + ACTIONS(1897), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363428,23 +370453,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [170774] = 8, + [168997] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2161), 1, + anon_sym_DQUOTE, + ACTIONS(2165), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2167), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2175), 1, + sym_raw_string_begin, + ACTIONS(4237), 1, + anon_sym_DOLLAR, + ACTIONS(4919), 1, + anon_sym_LPAREN, + ACTIONS(7272), 1, + sym__unquoted_naive, + STATE(4290), 1, + sym_comment, + STATE(5011), 1, + sym__inter_single_quotes, + STATE(5012), 1, + sym__inter_double_quotes, + ACTIONS(2163), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4660), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4950), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [169045] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7126), 1, + ACTIONS(7266), 1, anon_sym_DOT, - STATE(4222), 1, + STATE(4291), 1, sym_comment, - STATE(4448), 1, + STATE(4534), 1, aux_sym_cell_path_repeat1, - STATE(4804), 1, + STATE(4727), 1, sym_path, - STATE(4865), 1, + STATE(5040), 1, sym_cell_path, - ACTIONS(1854), 2, + ACTIONS(2023), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1852), 11, + ACTIONS(2021), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363456,16 +370515,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [170810] = 5, - ACTIONS(247), 1, + [169081] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1552), 1, - aux_sym_unquoted_token2, - ACTIONS(2293), 1, + ACTIONS(4433), 1, anon_sym_LPAREN2, - STATE(4223), 1, + STATE(4292), 1, sym_comment, - ACTIONS(2295), 15, + STATE(7479), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7240), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -363481,19 +370540,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [170840] = 6, + [169111] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2025), 1, - sym__space, - ACTIONS(7128), 1, - anon_sym_DOT_DOT2, - STATE(4224), 1, + ACTIONS(7266), 1, + anon_sym_DOT, + STATE(4293), 1, sym_comment, - ACTIONS(7130), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2019), 13, + STATE(4534), 1, + aux_sym_cell_path_repeat1, + STATE(4727), 1, + sym_path, + STATE(4870), 1, + sym_cell_path, + ACTIONS(2073), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2071), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363505,18 +370568,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [170872] = 4, - ACTIONS(247), 1, + [169147] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4225), 1, + STATE(4294), 1, sym_comment, - ACTIONS(1042), 3, + ACTIONS(1058), 3, anon_sym_DASH, anon_sym_DOT_DOT2, anon_sym_DOT, - ACTIONS(1044), 14, + ACTIONS(1060), 14, anon_sym_EQ, sym_identifier, sym__newline, @@ -363531,16 +370592,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [170900] = 4, - ACTIONS(247), 1, + [169175] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4226), 1, + ACTIONS(7266), 1, + anon_sym_DOT, + STATE(4295), 1, sym_comment, - ACTIONS(1038), 3, + STATE(4534), 1, + aux_sym_cell_path_repeat1, + STATE(4727), 1, + sym_path, + STATE(4871), 1, + sym_cell_path, + ACTIONS(2077), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2075), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [169211] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(7274), 1, + anon_sym_QMARK2, + STATE(4296), 1, + sym_comment, + ACTIONS(1042), 3, anon_sym_DASH, anon_sym_DOT_DOT2, anon_sym_DOT, - ACTIONS(1040), 14, + ACTIONS(1044), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -363552,18 +370643,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_QMARK2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [170928] = 4, - ACTIONS(247), 1, + [169241] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1659), 1, - aux_sym_unquoted_token2, - STATE(4227), 1, + ACTIONS(7266), 1, + anon_sym_DOT, + STATE(4297), 1, sym_comment, - ACTIONS(1661), 16, + STATE(4534), 1, + aux_sym_cell_path_repeat1, + STATE(4727), 1, + sym_path, + STATE(4872), 1, + sym_cell_path, + ACTIONS(7234), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(7232), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363575,21 +370673,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_LPAREN2, - [170956] = 5, - ACTIONS(247), 1, + [169277] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2299), 1, - anon_sym_LPAREN2, - ACTIONS(2303), 1, - aux_sym_unquoted_token2, - STATE(4228), 1, + ACTIONS(7276), 1, + anon_sym_QMARK2, + STATE(4298), 1, + sym_comment, + ACTIONS(1048), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1050), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [169307] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7266), 1, + anon_sym_DOT, + STATE(4299), 1, sym_comment, - ACTIONS(2301), 15, + STATE(4534), 1, + aux_sym_cell_path_repeat1, + STATE(4727), 1, + sym_path, + STATE(5048), 1, + sym_cell_path, + ACTIONS(2069), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2067), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363601,26 +370726,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [170986] = 8, + [169343] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7126), 1, + ACTIONS(7266), 1, anon_sym_DOT, - STATE(4229), 1, + STATE(4300), 1, sym_comment, - STATE(4448), 1, + STATE(4534), 1, aux_sym_cell_path_repeat1, - STATE(4804), 1, + STATE(4727), 1, sym_path, - STATE(4921), 1, + STATE(5041), 1, sym_cell_path, - ACTIONS(1838), 2, + ACTIONS(2045), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1836), 11, + ACTIONS(2043), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363632,23 +370754,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [171022] = 8, + [169379] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7126), 1, - anon_sym_DOT, - STATE(4230), 1, + ACTIONS(3504), 1, + sym_raw_string_begin, + ACTIONS(4153), 1, + anon_sym_DOLLAR, + ACTIONS(6633), 1, + anon_sym_LPAREN, + ACTIONS(7278), 1, + anon_sym_DQUOTE, + ACTIONS(7282), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(7284), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(7286), 1, + sym__unquoted_naive, + STATE(1827), 1, + sym__inter_single_quotes, + STATE(1841), 1, + sym__inter_double_quotes, + STATE(4301), 1, sym_comment, - STATE(4448), 1, - aux_sym_cell_path_repeat1, - STATE(4507), 1, - sym_cell_path, - STATE(4804), 1, - sym_path, - ACTIONS(1007), 2, + ACTIONS(7280), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(2932), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4879), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [169427] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4302), 1, + sym_comment, + ACTIONS(1068), 4, ts_builtin_sym_end, sym__space, - ACTIONS(1005), 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1066), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363660,20 +370810,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [171058] = 6, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [169455] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(4303), 1, + sym_comment, + ACTIONS(1715), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1717), 14, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [169483] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2239), 1, + ACTIONS(4433), 1, anon_sym_LPAREN2, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - STATE(4231), 1, + STATE(4304), 1, sym_comment, - ACTIONS(2237), 3, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(2241), 12, + STATE(7479), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7240), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -363686,21 +370858,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [171090] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2239), 1, - anon_sym_LPAREN2, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - STATE(4232), 1, - sym_comment, - ACTIONS(2245), 3, anon_sym_and, anon_sym_xor, anon_sym_or, - ACTIONS(2247), 12, + [169513] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4305), 1, + sym_comment, + ACTIONS(1072), 4, ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1070), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363712,16 +370883,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [171122] = 5, - ACTIONS(247), 1, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [169541] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - STATE(4233), 1, + STATE(4306), 1, sym_comment, - STATE(7682), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4759), 15, + ACTIONS(2289), 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + aux_sym_unquoted_token4, + ACTIONS(2291), 13, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -363734,34 +370908,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [171152] = 12, - ACTIONS(247), 1, + anon_sym_LPAREN2, + [169569] = 12, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2551), 1, + ACTIONS(2591), 1, anon_sym_COMMA, - ACTIONS(7011), 1, + ACTIONS(7189), 1, anon_sym_EQ, - ACTIONS(7013), 1, + ACTIONS(7191), 1, sym__newline, - ACTIONS(7015), 1, + ACTIONS(7193), 1, anon_sym_COLON, - ACTIONS(7134), 1, + ACTIONS(7290), 1, anon_sym_DASH, - STATE(4234), 1, + STATE(4307), 1, sym_comment, - STATE(4237), 1, + STATE(4345), 1, aux_sym_parameter_repeat1, - STATE(5173), 1, + STATE(5232), 1, aux_sym_parameter_repeat2, - STATE(6106), 1, + STATE(6229), 1, aux_sym_shebang_repeat1, - STATE(5000), 2, + STATE(5174), 2, sym_param_type, sym_param_value, - ACTIONS(7132), 7, + ACTIONS(7288), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -363769,51 +370941,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [171196] = 8, + [169613] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7126), 1, + ACTIONS(7266), 1, anon_sym_DOT, - STATE(4235), 1, + STATE(4308), 1, sym_comment, - STATE(4448), 1, + STATE(4534), 1, aux_sym_cell_path_repeat1, - STATE(4804), 1, - sym_path, - STATE(4915), 1, + STATE(4550), 1, sym_cell_path, - ACTIONS(1858), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1856), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [171232] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7126), 1, - anon_sym_DOT, - STATE(4236), 1, - sym_comment, - STATE(4448), 1, - aux_sym_cell_path_repeat1, - STATE(4804), 1, + STATE(4727), 1, sym_path, - STATE(4886), 1, - sym_cell_path, - ACTIONS(1862), 2, + ACTIONS(1023), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1860), 11, + ACTIONS(1021), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363825,63 +370969,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [171268] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2551), 1, - anon_sym_COMMA, - ACTIONS(7011), 1, - anon_sym_EQ, - ACTIONS(7013), 1, - sym__newline, - ACTIONS(7015), 1, - anon_sym_COLON, - ACTIONS(7138), 1, - anon_sym_DASH, - STATE(4237), 1, - sym_comment, - STATE(4311), 1, - aux_sym_parameter_repeat1, - STATE(5196), 1, - aux_sym_parameter_repeat2, - STATE(6106), 1, - aux_sym_shebang_repeat1, - STATE(5000), 2, - sym_param_type, - sym_param_value, - ACTIONS(7136), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [171312] = 12, - ACTIONS(247), 1, + [169649] = 12, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2551), 1, + ACTIONS(2591), 1, anon_sym_COMMA, - ACTIONS(7011), 1, + ACTIONS(7189), 1, anon_sym_EQ, - ACTIONS(7013), 1, + ACTIONS(7191), 1, sym__newline, - ACTIONS(7015), 1, + ACTIONS(7193), 1, anon_sym_COLON, - ACTIONS(7142), 1, + ACTIONS(7294), 1, anon_sym_DASH, - STATE(4238), 1, + STATE(4309), 1, sym_comment, - STATE(4300), 1, + STATE(4397), 1, aux_sym_parameter_repeat1, - STATE(5159), 1, + STATE(5233), 1, aux_sym_parameter_repeat2, - STATE(6106), 1, + STATE(6229), 1, aux_sym_shebang_repeat1, - STATE(5000), 2, + STATE(5174), 2, sym_param_type, sym_param_value, - ACTIONS(7140), 7, + ACTIONS(7292), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -363889,19 +371001,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [171356] = 6, + [169693] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2005), 1, - sym__space, - ACTIONS(7144), 1, - anon_sym_DOT_DOT2, - STATE(4239), 1, + STATE(4310), 1, sym_comment, - ACTIONS(7146), 2, + ACTIONS(1672), 3, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1999), 13, + ACTIONS(1670), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363915,17 +371024,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [171388] = 5, - ACTIONS(247), 1, + anon_sym_DOT_DOT2, + [169721] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1494), 1, - aux_sym_unquoted_token2, - ACTIONS(1780), 1, - anon_sym_LPAREN2, - STATE(4240), 1, + ACTIONS(7296), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7298), 1, + aux_sym__immediate_decimal_token2, + STATE(4311), 1, sym_comment, - ACTIONS(1786), 15, + ACTIONS(1705), 3, ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1703), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363937,51 +371050,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [171418] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2551), 1, - anon_sym_COMMA, - ACTIONS(7011), 1, - anon_sym_EQ, - ACTIONS(7013), 1, - sym__newline, - ACTIONS(7015), 1, - anon_sym_COLON, - ACTIONS(7150), 1, - anon_sym_DASH, - STATE(4241), 1, - sym_comment, - STATE(4311), 1, - aux_sym_parameter_repeat1, - STATE(5161), 1, - aux_sym_parameter_repeat2, - STATE(6106), 1, - aux_sym_shebang_repeat1, - STATE(5000), 2, - sym_param_type, - sym_param_value, - ACTIONS(7148), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [171462] = 4, - ACTIONS(247), 1, + aux_sym_unquoted_token2, + [169753] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4242), 1, + STATE(4312), 1, sym_comment, - ACTIONS(1738), 3, + ACTIONS(1703), 3, anon_sym_DASH, anon_sym_DOT_DOT2, aux_sym__unquoted_in_list_token2, - ACTIONS(1740), 14, + ACTIONS(1705), 14, anon_sym_EQ, sym_identifier, sym__newline, @@ -363996,14 +371075,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [171490] = 4, - ACTIONS(247), 1, + [169781] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1721), 1, + ACTIONS(1844), 1, + anon_sym_LPAREN2, + ACTIONS(1852), 1, aux_sym_unquoted_token2, - STATE(4243), 1, + STATE(4313), 1, sym_comment, - ACTIONS(1723), 16, + ACTIONS(2279), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -364019,15 +371100,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - [171518] = 4, - ACTIONS(247), 1, + [169811] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1738), 1, + ACTIONS(1844), 1, + anon_sym_LPAREN2, + ACTIONS(1852), 1, aux_sym_unquoted_token2, - STATE(4244), 1, + STATE(4314), 1, sym_comment, - ACTIONS(1740), 16, + ACTIONS(1850), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -364043,43 +371125,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - anon_sym_LPAREN2, - [171546] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7152), 1, - aux_sym__immediate_decimal_token2, - STATE(4245), 1, - sym_comment, - ACTIONS(1723), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1721), 14, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_unquoted_token2, - [171576] = 5, + [169841] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7060), 1, - aux_sym__immediate_decimal_token2, - STATE(4246), 1, + ACTIONS(7266), 1, + anon_sym_DOT, + STATE(4315), 1, sym_comment, - ACTIONS(1669), 2, + STATE(4534), 1, + aux_sym_cell_path_repeat1, + STATE(4727), 1, + sym_path, + STATE(5026), 1, + sym_cell_path, + ACTIONS(1931), 2, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(1667), 14, + ACTIONS(1929), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364091,48 +371153,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_unquoted_token2, - [171606] = 8, + [169877] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7126), 1, + ACTIONS(7266), 1, anon_sym_DOT, - STATE(4247), 1, + STATE(4316), 1, sym_comment, - STATE(4448), 1, + STATE(4534), 1, aux_sym_cell_path_repeat1, - STATE(4804), 1, + STATE(4727), 1, sym_path, - STATE(4992), 1, + STATE(4973), 1, sym_cell_path, - ACTIONS(1834), 2, + ACTIONS(1911), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1832), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [171642] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - STATE(4248), 1, - sym_comment, - STATE(7682), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4751), 15, - ts_builtin_sym_end, + ACTIONS(1909), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364144,24 +371181,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [171672] = 6, + [169913] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2225), 1, - anon_sym_LPAREN2, - ACTIONS(2227), 1, - aux_sym_unquoted_token4, - STATE(4249), 1, + ACTIONS(7266), 1, + anon_sym_DOT, + STATE(4317), 1, sym_comment, - ACTIONS(1070), 3, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(1072), 12, + STATE(4417), 1, + sym_cell_path, + STATE(4534), 1, + aux_sym_cell_path_repeat1, + STATE(4727), 1, + sym_path, + ACTIONS(1672), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(1670), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364173,16 +371209,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [171704] = 4, - ACTIONS(247), 1, + [169949] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4250), 1, + STATE(4318), 1, sym_comment, - ACTIONS(1034), 3, + ACTIONS(1769), 3, anon_sym_DASH, anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1036), 14, + aux_sym__unquoted_in_list_token2, + ACTIONS(1771), 14, anon_sym_EQ, sym_identifier, sym__newline, @@ -364194,102 +371230,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [171732] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7126), 1, - anon_sym_DOT, - STATE(4251), 1, - sym_comment, - STATE(4448), 1, - aux_sym_cell_path_repeat1, - STATE(4804), 1, - sym_path, - STATE(4931), 1, - sym_cell_path, - ACTIONS(1866), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1864), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [171768] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5602), 1, - anon_sym_DOT, - ACTIONS(7158), 1, - anon_sym_QMARK2, - STATE(2632), 1, - aux_sym_cell_path_repeat1, - STATE(2655), 1, - sym_path, - STATE(4252), 1, - sym_comment, - STATE(5118), 1, - sym_cell_path, - ACTIONS(7154), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(7156), 10, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - [171806] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1997), 1, - sym__space, - ACTIONS(7160), 1, - anon_sym_DOT_DOT2, - STATE(4253), 1, - sym_comment, - ACTIONS(7162), 2, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1991), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [171838] = 4, - ACTIONS(247), 1, + [169977] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4254), 1, + STATE(4319), 1, sym_comment, - ACTIONS(1667), 3, + ACTIONS(1826), 3, anon_sym_DASH, anon_sym_DOT_DOT2, aux_sym__unquoted_in_list_token2, - ACTIONS(1669), 14, + ACTIONS(1828), 14, anon_sym_EQ, sym_identifier, sym__newline, @@ -364304,23 +371257,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [171866] = 8, + [170005] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7126), 1, - anon_sym_DOT, - STATE(4255), 1, + STATE(4320), 1, sym_comment, - STATE(4448), 1, - aux_sym_cell_path_repeat1, - STATE(4804), 1, - sym_path, - STATE(4882), 1, - sym_cell_path, - ACTIONS(1830), 2, - ts_builtin_sym_end, + ACTIONS(2107), 3, sym__space, - ACTIONS(1828), 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2105), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364332,14 +371278,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [171902] = 4, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [170033] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1667), 1, + ACTIONS(1715), 1, aux_sym_unquoted_token2, - STATE(4256), 1, + STATE(4321), 1, sym_comment, - ACTIONS(1669), 16, + ACTIONS(1717), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -364356,51 +371305,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_or, anon_sym_LPAREN2, - [171930] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1494), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1778), 1, - anon_sym_DASH, - ACTIONS(1780), 1, - anon_sym_LPAREN2, - ACTIONS(7164), 1, - anon_sym_DOT_DOT2, - STATE(4257), 1, - sym_comment, - ACTIONS(7166), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1786), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [171966] = 8, + [170061] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7126), 1, + ACTIONS(7266), 1, anon_sym_DOT, - STATE(4258), 1, + STATE(4322), 1, sym_comment, - STATE(4448), 1, + STATE(4534), 1, aux_sym_cell_path_repeat1, - STATE(4804), 1, + STATE(4727), 1, sym_path, - STATE(4932), 1, + STATE(5049), 1, sym_cell_path, - ACTIONS(1937), 2, + ACTIONS(2085), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1935), 11, + ACTIONS(2083), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364412,23 +371333,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [172002] = 8, - ACTIONS(3), 1, + [170097] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7126), 1, - anon_sym_DOT, - STATE(4259), 1, + ACTIONS(1703), 1, + aux_sym_unquoted_token2, + STATE(4323), 1, sym_comment, - STATE(4448), 1, - aux_sym_cell_path_repeat1, - STATE(4804), 1, - sym_path, - STATE(4933), 1, - sym_cell_path, - ACTIONS(1870), 2, + ACTIONS(1705), 16, ts_builtin_sym_end, - sym__space, - ACTIONS(1868), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364440,17 +371353,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [172038] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3978), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, anon_sym_LPAREN2, - STATE(4260), 1, + [170125] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7266), 1, + anon_sym_DOT, + STATE(4324), 1, sym_comment, - STATE(7262), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7052), 15, + STATE(4534), 1, + aux_sym_cell_path_repeat1, + STATE(4727), 1, + sym_path, + STATE(5050), 1, + sym_cell_path, + ACTIONS(2089), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2087), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364462,26 +371385,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [172068] = 8, + [170161] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1977), 1, + anon_sym_DQUOTE, + ACTIONS(1981), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(1983), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1991), 1, + sym_raw_string_begin, + ACTIONS(4273), 1, + anon_sym_DOLLAR, + ACTIONS(4876), 1, + anon_sym_LPAREN, + ACTIONS(7300), 1, + sym__unquoted_naive, + STATE(4325), 1, + sym_comment, + STATE(4787), 1, + sym__inter_single_quotes, + STATE(4810), 1, + sym__inter_double_quotes, + ACTIONS(1979), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4414), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4703), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [170209] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7126), 1, + ACTIONS(7266), 1, anon_sym_DOT, - STATE(4261), 1, + STATE(4326), 1, sym_comment, - STATE(4448), 1, + STATE(4534), 1, aux_sym_cell_path_repeat1, - STATE(4804), 1, + STATE(4727), 1, sym_path, - STATE(4845), 1, + STATE(5042), 1, sym_cell_path, - ACTIONS(1945), 2, + ACTIONS(2049), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1943), 11, + ACTIONS(2047), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364493,14 +371447,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [172104] = 4, - ACTIONS(247), 1, + [170245] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6790), 1, + ACTIONS(1769), 1, aux_sym_unquoted_token2, - STATE(4262), 1, + STATE(4327), 1, sym_comment, - ACTIONS(1572), 16, + ACTIONS(1771), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364512,28 +371467,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - [172132] = 8, + anon_sym_LPAREN2, + [170273] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7126), 1, - anon_sym_DOT, - STATE(4263), 1, + ACTIONS(7302), 1, + aux_sym__immediate_decimal_token2, + STATE(4328), 1, sym_comment, - STATE(4448), 1, - aux_sym_cell_path_repeat1, - STATE(4474), 1, - sym_cell_path, - STATE(4804), 1, - sym_path, - ACTIONS(1645), 2, - ts_builtin_sym_end, + ACTIONS(1771), 2, sym__space, - ACTIONS(1641), 11, + anon_sym_LPAREN2, + ACTIONS(1769), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364545,23 +371493,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [172168] = 8, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_unquoted_token2, + [170303] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7126), 1, - anon_sym_DOT, - STATE(4264), 1, + ACTIONS(6929), 1, + aux_sym_unquoted_token2, + STATE(4329), 1, sym_comment, - STATE(4448), 1, - aux_sym_cell_path_repeat1, - STATE(4804), 1, - sym_path, - STATE(4858), 1, - sym_cell_path, - ACTIONS(7107), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7105), 11, + ACTIONS(1640), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364573,44 +371515,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [172204] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [170331] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7126), 1, - anon_sym_DOT, - STATE(4265), 1, - sym_comment, - STATE(4448), 1, - aux_sym_cell_path_repeat1, - STATE(4804), 1, - sym_path, - STATE(4946), 1, - sym_cell_path, - ACTIONS(1874), 2, - ts_builtin_sym_end, + ACTIONS(1092), 1, sym__space, - ACTIONS(1872), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [172240] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4266), 1, + ACTIONS(7304), 1, + anon_sym_DOT_DOT2, + STATE(4330), 1, sym_comment, - ACTIONS(2143), 3, - sym__space, + ACTIONS(7306), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2141), 14, + ACTIONS(1090), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364624,26 +371546,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [172268] = 9, - ACTIONS(247), 1, + [170363] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(123), 1, + sym_raw_string_begin, + ACTIONS(3306), 1, + anon_sym_DOLLAR, + ACTIONS(5842), 1, + anon_sym_LPAREN, + ACTIONS(7308), 1, + anon_sym_DQUOTE, + ACTIONS(7312), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(7314), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(7316), 1, + sym__unquoted_naive, + STATE(2436), 1, + sym__inter_double_quotes, + STATE(2563), 1, + sym__inter_single_quotes, + STATE(4331), 1, + sym_comment, + ACTIONS(7310), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(2065), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(5072), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [170411] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5602), 1, + ACTIONS(5996), 1, anon_sym_DOT, - ACTIONS(7172), 1, + ACTIONS(7322), 1, anon_sym_QMARK2, - STATE(2632), 1, - aux_sym_cell_path_repeat1, - STATE(2655), 1, + STATE(2752), 1, sym_path, - STATE(4267), 1, + STATE(2899), 1, + aux_sym_cell_path_repeat1, + STATE(4332), 1, sym_comment, - STATE(5121), 1, + STATE(5093), 1, sym_cell_path, - ACTIONS(7168), 2, + ACTIONS(7318), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(7170), 10, + ACTIONS(7320), 10, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, @@ -364654,23 +371609,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - [172306] = 8, + [170449] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7126), 1, + ACTIONS(7266), 1, anon_sym_DOT, - STATE(4268), 1, + STATE(4333), 1, sym_comment, - STATE(4448), 1, + STATE(4534), 1, aux_sym_cell_path_repeat1, - STATE(4804), 1, + STATE(4727), 1, sym_path, - STATE(4966), 1, + STATE(4881), 1, sym_cell_path, - ACTIONS(1842), 2, + ACTIONS(2081), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1840), 11, + ACTIONS(2079), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364682,44 +371637,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [172342] = 8, + [170485] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7126), 1, + ACTIONS(1029), 1, + sym__space, + ACTIONS(7211), 1, anon_sym_DOT, - STATE(4269), 1, + STATE(4334), 1, sym_comment, - STATE(4448), 1, + STATE(4366), 1, aux_sym_cell_path_repeat1, - STATE(4804), 1, + STATE(4689), 1, sym_path, - STATE(4990), 1, - sym_cell_path, - ACTIONS(1846), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1844), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [172378] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4270), 1, - sym_comment, - ACTIONS(1677), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1675), 14, + ACTIONS(1027), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364733,24 +371664,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [172406] = 8, + [170519] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7126), 1, + ACTIONS(7266), 1, anon_sym_DOT, - STATE(4271), 1, + STATE(4335), 1, sym_comment, - STATE(4448), 1, + STATE(4534), 1, aux_sym_cell_path_repeat1, - STATE(4804), 1, + STATE(4727), 1, sym_path, - STATE(4948), 1, + STATE(4882), 1, sym_cell_path, - ACTIONS(1878), 2, + ACTIONS(7244), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1876), 11, + ACTIONS(7242), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364762,16 +371692,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [172442] = 4, + [170555] = 9, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5996), 1, + anon_sym_DOT, + ACTIONS(7328), 1, + anon_sym_QMARK2, + STATE(2752), 1, + sym_path, + STATE(2899), 1, + aux_sym_cell_path_repeat1, + STATE(4336), 1, + sym_comment, + STATE(5106), 1, + sym_cell_path, + ACTIONS(7324), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(7326), 10, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + [170593] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4272), 1, + ACTIONS(7330), 1, + anon_sym_DOT, + ACTIONS(7332), 1, + aux_sym__immediate_decimal_token2, + STATE(4337), 1, sym_comment, - ACTIONS(1060), 3, + ACTIONS(1717), 3, + ts_builtin_sym_end, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1058), 14, + anon_sym_LPAREN2, + ACTIONS(1715), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364783,19 +371746,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [172470] = 5, - ACTIONS(247), 1, + aux_sym_unquoted_token2, + [170625] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, + ACTIONS(1558), 1, + aux_sym_unquoted_token2, + ACTIONS(2337), 1, anon_sym_LPAREN2, - STATE(4273), 1, + STATE(4338), 1, sym_comment, - STATE(7262), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7052), 15, + ACTIONS(2339), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -364811,21 +371772,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [172500] = 6, + [170655] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2231), 1, - anon_sym_LPAREN2, - ACTIONS(2235), 1, - aux_sym_unquoted_token4, - STATE(4274), 1, + ACTIONS(7266), 1, + anon_sym_DOT, + STATE(4339), 1, sym_comment, - ACTIONS(2229), 3, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - ACTIONS(2233), 12, + STATE(4534), 1, + aux_sym_cell_path_repeat1, + STATE(4727), 1, + sym_path, + STATE(5043), 1, + sym_cell_path, + ACTIONS(2053), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2051), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364837,17 +371800,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [172532] = 5, - ACTIONS(247), 1, + [170691] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - STATE(4275), 1, + ACTIONS(7266), 1, + anon_sym_DOT, + STATE(4340), 1, sym_comment, - STATE(7262), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7052), 15, + STATE(4534), 1, + aux_sym_cell_path_repeat1, + STATE(4727), 1, + sym_path, + STATE(5044), 1, + sym_cell_path, + ACTIONS(2057), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2055), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364859,26 +371828,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [172562] = 8, + [170727] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7126), 1, + ACTIONS(7266), 1, anon_sym_DOT, - STATE(4276), 1, + STATE(4341), 1, sym_comment, - STATE(4448), 1, + STATE(4534), 1, aux_sym_cell_path_repeat1, - STATE(4804), 1, + STATE(4727), 1, sym_path, - STATE(4959), 1, + STATE(5029), 1, sym_cell_path, - ACTIONS(1882), 2, + ACTIONS(1995), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1880), 11, + ACTIONS(1993), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364890,51 +371856,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [172598] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1788), 1, - anon_sym_DASH, - ACTIONS(1790), 1, - anon_sym_LPAREN2, - ACTIONS(1798), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(7174), 1, - anon_sym_DOT_DOT2, - STATE(4277), 1, - sym_comment, - ACTIONS(7176), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1796), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [172634] = 8, + [170763] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7126), 1, + ACTIONS(7266), 1, anon_sym_DOT, - STATE(4278), 1, + STATE(4342), 1, sym_comment, - STATE(4448), 1, + STATE(4534), 1, aux_sym_cell_path_repeat1, - STATE(4804), 1, + STATE(4727), 1, sym_path, - STATE(4817), 1, + STATE(5031), 1, sym_cell_path, - ACTIONS(1886), 2, + ACTIONS(1999), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1884), 11, + ACTIONS(1997), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364946,20 +371884,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [172670] = 6, + [170799] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7178), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7180), 1, - aux_sym__immediate_decimal_token2, - STATE(4279), 1, + STATE(4343), 1, sym_comment, - ACTIONS(1661), 3, - ts_builtin_sym_end, + ACTIONS(1080), 3, sym__space, - anon_sym_LPAREN2, - ACTIONS(1659), 12, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1078), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364971,18 +371905,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_unquoted_token2, - [172702] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [170827] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4280), 1, + ACTIONS(7266), 1, + anon_sym_DOT, + STATE(4344), 1, sym_comment, - ACTIONS(1048), 4, + STATE(4534), 1, + aux_sym_cell_path_repeat1, + STATE(4727), 1, + sym_path, + STATE(5051), 1, + sym_cell_path, + ACTIONS(2097), 2, ts_builtin_sym_end, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1046), 13, + ACTIONS(2095), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364994,49 +371936,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [172730] = 4, - ACTIONS(247), 1, + [170863] = 12, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4281), 1, - sym_comment, - ACTIONS(1721), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1723), 14, + ACTIONS(2591), 1, + anon_sym_COMMA, + ACTIONS(7189), 1, anon_sym_EQ, - sym_identifier, + ACTIONS(7191), 1, sym__newline, + ACTIONS(7193), 1, + anon_sym_COLON, + ACTIONS(7336), 1, + anon_sym_DASH, + STATE(4345), 1, + sym_comment, + STATE(4397), 1, + aux_sym_parameter_repeat1, + STATE(5247), 1, + aux_sym_parameter_repeat2, + STATE(6229), 1, + aux_sym_shebang_repeat1, + STATE(5174), 2, + sym_param_type, + sym_param_value, + ACTIONS(7334), 7, + sym_identifier, anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [170907] = 12, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(2591), 1, + anon_sym_COMMA, + ACTIONS(7189), 1, + anon_sym_EQ, + ACTIONS(7191), 1, + sym__newline, + ACTIONS(7193), 1, anon_sym_COLON, + ACTIONS(7340), 1, + anon_sym_DASH, + STATE(4309), 1, + aux_sym_parameter_repeat1, + STATE(4346), 1, + sym_comment, + STATE(5231), 1, + aux_sym_parameter_repeat2, + STATE(6229), 1, + aux_sym_shebang_repeat1, + STATE(5174), 2, + sym_param_type, + sym_param_value, + ACTIONS(7338), 7, + sym_identifier, + anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [170951] = 12, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(2591), 1, anon_sym_COMMA, + ACTIONS(7189), 1, + anon_sym_EQ, + ACTIONS(7191), 1, + sym__newline, + ACTIONS(7193), 1, + anon_sym_COLON, + ACTIONS(7344), 1, + anon_sym_DASH, + STATE(4347), 1, + sym_comment, + STATE(4397), 1, + aux_sym_parameter_repeat1, + STATE(5249), 1, + aux_sym_parameter_repeat2, + STATE(6229), 1, + aux_sym_shebang_repeat1, + STATE(5174), 2, + sym_param_type, + sym_param_value, + ACTIONS(7342), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [172758] = 8, + [170995] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7126), 1, - anon_sym_DOT, - STATE(4282), 1, + ACTIONS(2273), 1, + anon_sym_LPAREN2, + ACTIONS(2275), 1, + aux_sym_unquoted_token4, + STATE(4348), 1, sym_comment, - STATE(4448), 1, - aux_sym_cell_path_repeat1, - STATE(4489), 1, - sym_cell_path, - STATE(4804), 1, - sym_path, - ACTIONS(1677), 2, + ACTIONS(1090), 3, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(1092), 12, ts_builtin_sym_end, - sym__space, - ACTIONS(1675), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365048,23 +372058,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [172794] = 8, + [171027] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7126), 1, - anon_sym_DOT, - STATE(4283), 1, - sym_comment, - STATE(4448), 1, - aux_sym_cell_path_repeat1, - STATE(4804), 1, - sym_path, - STATE(4863), 1, - sym_cell_path, - ACTIONS(1949), 2, - ts_builtin_sym_end, + ACTIONS(2240), 1, sym__space, - ACTIONS(1947), 11, + ACTIONS(7346), 1, + anon_sym_DOT_DOT2, + STATE(4349), 1, + sym_comment, + ACTIONS(7348), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2234), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365076,23 +372082,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [172830] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + [171059] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7126), 1, - anon_sym_DOT, - STATE(4284), 1, - sym_comment, - STATE(4448), 1, - aux_sym_cell_path_repeat1, - STATE(4804), 1, - sym_path, - STATE(4819), 1, - sym_cell_path, - ACTIONS(1890), 2, - ts_builtin_sym_end, + ACTIONS(2119), 1, sym__space, - ACTIONS(1888), 11, + ACTIONS(7350), 1, + anon_sym_DOT_DOT2, + STATE(4350), 1, + sym_comment, + ACTIONS(7352), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2113), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365104,16 +372108,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [172866] = 5, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [171091] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, + STATE(4351), 1, + sym_comment, + ACTIONS(1062), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1064), 14, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_QMARK2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [171119] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(2248), 1, anon_sym_LPAREN2, - STATE(4285), 1, + ACTIONS(2252), 1, + aux_sym_unquoted_token2, + STATE(4352), 1, sym_comment, - STATE(7682), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4755), 15, + ACTIONS(2250), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -365129,41 +372159,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [172896] = 5, - ACTIONS(247), 1, + [171149] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, + ACTIONS(1526), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1788), 1, + anon_sym_DASH, + ACTIONS(1790), 1, anon_sym_LPAREN2, - STATE(4286), 1, + ACTIONS(7354), 1, + anon_sym_DOT_DOT2, + STATE(4353), 1, sym_comment, - STATE(7682), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4747), 15, - ts_builtin_sym_end, + ACTIONS(7356), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1796), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [172926] = 4, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [171185] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4287), 1, - sym_comment, - ACTIONS(2035), 3, + ACTIONS(2212), 1, sym__space, + ACTIONS(7358), 1, + anon_sym_DOT_DOT2, + STATE(4354), 1, + sym_comment, + ACTIONS(7360), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2033), 14, + ACTIONS(2206), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365177,18 +372213,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [172954] = 4, + [171217] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4288), 1, + ACTIONS(7266), 1, + anon_sym_DOT, + STATE(4355), 1, sym_comment, - ACTIONS(1052), 4, + STATE(4534), 1, + aux_sym_cell_path_repeat1, + STATE(4727), 1, + sym_path, + STATE(5035), 1, + sym_cell_path, + ACTIONS(2003), 2, ts_builtin_sym_end, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1050), 13, + ACTIONS(2001), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365200,19 +372241,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [172982] = 4, + [171253] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4289), 1, + ACTIONS(7266), 1, + anon_sym_DOT, + STATE(4356), 1, sym_comment, - ACTIONS(1056), 4, + STATE(4534), 1, + aux_sym_cell_path_repeat1, + STATE(4727), 1, + sym_path, + STATE(5036), 1, + sym_cell_path, + ACTIONS(2007), 2, ts_builtin_sym_end, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1054), 13, + ACTIONS(2005), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365224,25 +372269,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [173010] = 8, + [171289] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7126), 1, + ACTIONS(7266), 1, anon_sym_DOT, - STATE(4290), 1, + STATE(4357), 1, sym_comment, - STATE(4448), 1, + STATE(4534), 1, aux_sym_cell_path_repeat1, - STATE(4804), 1, + STATE(4727), 1, sym_path, - STATE(4814), 1, + STATE(5037), 1, sym_cell_path, - ACTIONS(1826), 2, + ACTIONS(2011), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1822), 11, + ACTIONS(2009), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365254,18 +372297,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [173046] = 4, + [171325] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4291), 1, + ACTIONS(7266), 1, + anon_sym_DOT, + STATE(4358), 1, sym_comment, - ACTIONS(2253), 4, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - aux_sym_unquoted_token4, - ACTIONS(2255), 13, + STATE(4534), 1, + aux_sym_cell_path_repeat1, + STATE(4727), 1, + sym_path, + STATE(5038), 1, + sym_cell_path, + ACTIONS(2015), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2013), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365277,20 +372325,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LPAREN2, - [173074] = 6, - ACTIONS(3), 1, + [171361] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2013), 1, - sym__space, - ACTIONS(7182), 1, - anon_sym_DOT_DOT2, - STATE(4292), 1, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + STATE(4359), 1, sym_comment, - ACTIONS(7184), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2007), 13, + STATE(7791), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4844), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365302,25 +372347,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [173106] = 8, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [171391] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7126), 1, - anon_sym_DOT, - STATE(4293), 1, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + STATE(4360), 1, sym_comment, - STATE(4448), 1, - aux_sym_cell_path_repeat1, - STATE(4804), 1, - sym_path, - STATE(4823), 1, - sym_cell_path, - ACTIONS(1894), 2, + STATE(7791), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4848), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(1892), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365332,23 +372372,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [173142] = 8, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [171421] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7126), 1, + STATE(4361), 1, + sym_comment, + ACTIONS(1038), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, anon_sym_DOT, - STATE(4294), 1, + ACTIONS(1040), 14, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_QMARK2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [171449] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4362), 1, sym_comment, - STATE(4448), 1, - aux_sym_cell_path_repeat1, - STATE(4804), 1, - sym_path, - STATE(4824), 1, - sym_cell_path, - ACTIONS(1898), 2, - ts_builtin_sym_end, + ACTIONS(2220), 3, sym__space, - ACTIONS(1896), 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2218), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365360,23 +372420,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [173178] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [171477] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7126), 1, - anon_sym_DOT, - STATE(4295), 1, - sym_comment, - STATE(4448), 1, - aux_sym_cell_path_repeat1, - STATE(4804), 1, - sym_path, - STATE(4834), 1, - sym_cell_path, - ACTIONS(1902), 2, - ts_builtin_sym_end, + ACTIONS(7304), 1, + anon_sym_DOT_DOT2, + ACTIONS(7364), 1, sym__space, - ACTIONS(1900), 11, + STATE(4363), 1, + sym_comment, + ACTIONS(7306), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7362), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365388,41 +372447,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [173214] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7186), 1, - anon_sym_QMARK2, - STATE(4296), 1, - sym_comment, - ACTIONS(1022), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1024), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [173244] = 5, - ACTIONS(247), 1, + anon_sym_RBRACE, + [171509] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1790), 1, + ACTIONS(4433), 1, anon_sym_LPAREN2, - ACTIONS(1798), 1, - aux_sym_unquoted_token2, - STATE(4297), 1, + STATE(4364), 1, sym_comment, - ACTIONS(2289), 15, + STATE(7791), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4808), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -365438,23 +372474,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [173274] = 8, + [171539] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7126), 1, + ACTIONS(7266), 1, anon_sym_DOT, - STATE(4298), 1, + STATE(4365), 1, sym_comment, - STATE(4448), 1, + STATE(4534), 1, aux_sym_cell_path_repeat1, - STATE(4804), 1, + STATE(4727), 1, sym_path, - STATE(4836), 1, + STATE(5039), 1, sym_cell_path, - ACTIONS(1906), 2, + ACTIONS(2019), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1904), 11, + ACTIONS(2017), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365466,23 +372502,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [173310] = 8, + [171575] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7126), 1, + ACTIONS(1033), 1, + sym__space, + ACTIONS(7366), 1, anon_sym_DOT, - STATE(4299), 1, + STATE(4689), 1, + sym_path, + STATE(4366), 2, sym_comment, - STATE(4448), 1, aux_sym_cell_path_repeat1, - STATE(4804), 1, - sym_path, - STATE(4864), 1, - sym_cell_path, - ACTIONS(7069), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7067), 11, + ACTIONS(1031), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365494,48 +372526,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [173346] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2551), 1, - anon_sym_COMMA, - ACTIONS(7011), 1, - anon_sym_EQ, - ACTIONS(7013), 1, - sym__newline, - ACTIONS(7015), 1, - anon_sym_COLON, - ACTIONS(7190), 1, - anon_sym_DASH, - STATE(4300), 1, - sym_comment, - STATE(4311), 1, - aux_sym_parameter_repeat1, - STATE(5167), 1, - aux_sym_parameter_repeat2, - STATE(6106), 1, - aux_sym_shebang_repeat1, - STATE(5000), 2, - sym_param_type, - sym_param_value, - ACTIONS(7188), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [173390] = 5, - ACTIONS(247), 1, + anon_sym_RBRACE, + [171607] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1790), 1, + ACTIONS(4433), 1, anon_sym_LPAREN2, - ACTIONS(1798), 1, - aux_sym_unquoted_token2, - STATE(4301), 1, + STATE(4367), 1, sym_comment, - ACTIONS(1796), 15, + STATE(7791), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4812), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -365551,16 +372553,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [173420] = 4, + [171637] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4302), 1, + ACTIONS(7248), 1, + aux_sym__immediate_decimal_token2, + STATE(4368), 1, sym_comment, - ACTIONS(2031), 3, + ACTIONS(1717), 2, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2029), 14, + anon_sym_LPAREN2, + ACTIONS(1715), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365574,49 +372577,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [173448] = 6, + aux_sym_unquoted_token2, + [171667] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1072), 1, - sym__space, - ACTIONS(7118), 1, - anon_sym_DOT_DOT2, - STATE(4303), 1, + ACTIONS(2283), 1, + anon_sym_LPAREN2, + ACTIONS(2287), 1, + aux_sym_unquoted_token4, + STATE(4369), 1, sym_comment, - ACTIONS(7120), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1070), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [173480] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(7194), 1, + ACTIONS(2281), 3, anon_sym_and, - ACTIONS(7196), 1, anon_sym_xor, - ACTIONS(7198), 1, anon_sym_or, - STATE(4304), 1, - sym_comment, - STATE(4498), 1, - aux_sym_shebang_repeat1, - ACTIONS(7192), 11, + ACTIONS(2285), 12, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -365627,23 +372604,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [173515] = 8, - ACTIONS(247), 1, + [171699] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1912), 1, + STATE(4370), 1, + sym_comment, + ACTIONS(1054), 3, anon_sym_DASH, - ACTIONS(7200), 1, + anon_sym_DOT_DOT2, anon_sym_DOT, - STATE(4305), 1, - sym_comment, - STATE(4612), 1, - aux_sym_cell_path_repeat1, - STATE(4849), 1, - sym_path, - STATE(4951), 1, - sym_cell_path, - ACTIONS(1914), 11, + ACTIONS(1056), 14, anon_sym_EQ, sym_identifier, sym__newline, @@ -365655,18 +372625,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [173550] = 6, + anon_sym_QMARK2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [171727] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1552), 1, - aux_sym_unquoted_token2, - ACTIONS(2293), 1, - anon_sym_LPAREN2, - ACTIONS(2295), 1, - sym__space, - STATE(4306), 1, + ACTIONS(7266), 1, + anon_sym_DOT, + STATE(4371), 1, sym_comment, - ACTIONS(2291), 13, + STATE(4534), 1, + aux_sym_cell_path_repeat1, + STATE(4727), 1, + sym_path, + STATE(5057), 1, + sym_cell_path, + ACTIONS(1903), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1901), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365678,47 +372656,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [173581] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5602), 1, - anon_sym_DOT, - STATE(2632), 1, - aux_sym_cell_path_repeat1, - STATE(2655), 1, - sym_path, - STATE(4307), 1, - sym_comment, - STATE(5122), 1, - sym_cell_path, - ACTIONS(7202), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(7204), 10, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - [173616] = 6, + [171763] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3978), 1, + ACTIONS(2295), 1, anon_sym_LPAREN2, - ACTIONS(4755), 1, - sym__space, - STATE(4308), 1, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + STATE(4372), 1, sym_comment, - STATE(7682), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4757), 13, + ACTIONS(2293), 3, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(2297), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365730,20 +372682,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [173647] = 6, + [171795] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3978), 1, + ACTIONS(2295), 1, anon_sym_LPAREN2, - ACTIONS(4759), 1, - sym__space, - STATE(4309), 1, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + STATE(4373), 1, sym_comment, - STATE(7682), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4761), 13, + ACTIONS(2303), 3, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + ACTIONS(2305), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365755,20 +372708,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [173678] = 6, + [171827] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2299), 1, - anon_sym_LPAREN2, - ACTIONS(2301), 1, - sym__space, - ACTIONS(2303), 1, - aux_sym_unquoted_token2, - STATE(4310), 1, + STATE(4374), 1, sym_comment, - ACTIONS(2297), 13, + ACTIONS(1076), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1074), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365780,48 +372730,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [173709] = 9, - ACTIONS(247), 1, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [171855] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7208), 1, - anon_sym_EQ, - ACTIONS(7211), 1, - sym__newline, - ACTIONS(7214), 1, - anon_sym_COLON, - ACTIONS(7217), 1, + ACTIONS(1842), 1, anon_sym_DASH, - STATE(6106), 1, - aux_sym_shebang_repeat1, - STATE(4311), 2, + ACTIONS(1844), 1, + anon_sym_LPAREN2, + ACTIONS(1852), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(7369), 1, + anon_sym_DOT_DOT2, + STATE(4375), 1, sym_comment, - aux_sym_parameter_repeat1, - STATE(5000), 2, - sym_param_type, - sym_param_value, - ACTIONS(7206), 8, + ACTIONS(7371), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1850), 11, + anon_sym_EQ, sym_identifier, + sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [173746] = 6, - ACTIONS(3), 1, + [171891] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, + ACTIONS(1526), 1, + aux_sym_unquoted_token2, + ACTIONS(1790), 1, anon_sym_LPAREN2, - ACTIONS(4747), 1, - sym__space, - STATE(4312), 1, + STATE(4376), 1, sym_comment, - STATE(7682), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4749), 13, + ACTIONS(1796), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365833,20 +372782,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [173777] = 6, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [171921] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - ACTIONS(4751), 1, - sym__space, - STATE(4313), 1, + STATE(4377), 1, sym_comment, - STATE(7682), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4753), 13, + ACTIONS(6839), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365860,15 +372804,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [173808] = 4, - ACTIONS(247), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [171946] = 7, + ACTIONS(249), 1, anon_sym_POUND, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(4314), 1, - sym_comment, - ACTIONS(7219), 15, + ACTIONS(3766), 1, sym__newline, + ACTIONS(7375), 1, + anon_sym_and, + ACTIONS(7377), 1, + anon_sym_xor, + STATE(4378), 1, + sym_comment, + STATE(4523), 1, + aux_sym_shebang_repeat1, + ACTIONS(7373), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -365880,18 +372832,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, anon_sym_or, - [173835] = 4, - ACTIONS(247), 1, + [171979] = 6, + ACTIONS(249), 1, anon_sym_POUND, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(4315), 1, - sym_comment, - ACTIONS(7221), 15, + ACTIONS(7375), 1, + anon_sym_and, + ACTIONS(7379), 1, sym__newline, + STATE(4379), 1, + sym_comment, + STATE(4403), 1, + aux_sym_shebang_repeat1, + ACTIONS(7382), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -365903,17 +372856,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, anon_sym_xor, anon_sym_or, - [173862] = 4, - ACTIONS(247), 1, + [172010] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(4316), 1, + ACTIONS(7384), 1, + anon_sym_DOT_DOT2, + STATE(4380), 1, sym_comment, - ACTIONS(7221), 15, + ACTIONS(2240), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7386), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2234), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365925,18 +372883,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [173889] = 4, - ACTIONS(247), 1, + [172041] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(4317), 1, + ACTIONS(7388), 1, + anon_sym_DOT_DOT2, + STATE(4381), 1, sym_comment, - ACTIONS(7219), 15, + ACTIONS(2119), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7390), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2113), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365948,20 +372908,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [173916] = 5, - ACTIONS(247), 1, + [172072] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7223), 1, + ACTIONS(7394), 1, anon_sym_and, - STATE(749), 1, + ACTIONS(7396), 1, + anon_sym_xor, + STATE(2498), 1, aux_sym_shebang_repeat1, - STATE(4318), 1, + STATE(4382), 1, sym_comment, - ACTIONS(7221), 14, + ACTIONS(7392), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365974,16 +372932,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor, anon_sym_or, - [173945] = 4, - ACTIONS(247), 1, + [172103] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4315), 1, - aux_sym_shebang_repeat1, - STATE(4319), 1, + ACTIONS(7398), 1, + anon_sym_DOT_DOT2, + STATE(4383), 1, sym_comment, - ACTIONS(7225), 15, + ACTIONS(2212), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7400), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2206), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365995,20 +372958,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [173972] = 5, - ACTIONS(247), 1, + [172134] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7227), 1, + ACTIONS(7402), 1, anon_sym_and, - STATE(749), 1, + ACTIONS(7404), 1, + anon_sym_xor, + STATE(2498), 1, aux_sym_shebang_repeat1, - STATE(4320), 1, + STATE(4384), 1, sym_comment, - ACTIONS(7221), 14, + ACTIONS(7392), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366021,21 +372982,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor, - anon_sym_or, - [174001] = 6, - ACTIONS(247), 1, + anon_sym_or, + [172165] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1021), 1, + anon_sym_DASH, + ACTIONS(7406), 1, + anon_sym_DOT, + STATE(4385), 1, + sym_comment, + STATE(4587), 1, + sym_cell_path, + STATE(4610), 1, + aux_sym_cell_path_repeat1, + STATE(4893), 1, + sym_path, + ACTIONS(1023), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [172200] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7223), 1, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(7408), 1, anon_sym_and, - ACTIONS(7229), 1, + ACTIONS(7410), 1, anon_sym_xor, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(4321), 1, + STATE(4386), 1, sym_comment, - ACTIONS(7221), 13, - sym__newline, + STATE(4404), 1, + aux_sym_shebang_repeat1, + ACTIONS(7382), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -366048,15 +373036,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or, - [174032] = 4, - ACTIONS(247), 1, + [172233] = 6, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4316), 1, - aux_sym_shebang_repeat1, - STATE(4322), 1, - sym_comment, - ACTIONS(7225), 15, + ACTIONS(7375), 1, + anon_sym_and, + ACTIONS(7412), 1, sym__newline, + STATE(4387), 1, + sym_comment, + STATE(4458), 1, + aux_sym_shebang_repeat1, + ACTIONS(7415), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -366068,21 +373059,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, anon_sym_xor, anon_sym_or, - [174059] = 6, - ACTIONS(247), 1, + [172264] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7227), 1, - anon_sym_and, - ACTIONS(7231), 1, - anon_sym_xor, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(4323), 1, + STATE(4388), 1, sym_comment, - ACTIONS(7221), 13, + STATE(4544), 1, + aux_sym_shebang_repeat1, + ACTIONS(7373), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366095,17 +373081,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and, + anon_sym_xor, anon_sym_or, - [174090] = 5, - ACTIONS(247), 1, + [172291] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7223), 1, - anon_sym_and, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(4324), 1, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + ACTIONS(4808), 1, + sym__space, + STATE(4389), 1, sym_comment, - ACTIONS(7219), 14, + STATE(7791), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4810), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366118,17 +373108,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor, - anon_sym_or, - [174119] = 4, - ACTIONS(247), 1, + anon_sym_RBRACE, + [172322] = 7, + ACTIONS(249), 1, anon_sym_POUND, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(4325), 1, - sym_comment, - ACTIONS(7233), 15, + ACTIONS(3766), 1, sym__newline, + ACTIONS(7375), 1, + anon_sym_and, + ACTIONS(7377), 1, + anon_sym_xor, + STATE(4390), 1, + sym_comment, + STATE(4405), 1, + aux_sym_shebang_repeat1, + ACTIONS(7382), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -366140,25 +373134,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, anon_sym_or, - [174146] = 8, - ACTIONS(247), 1, + [172355] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1822), 1, + ACTIONS(1897), 1, anon_sym_DASH, - ACTIONS(7200), 1, + ACTIONS(7406), 1, anon_sym_DOT, - STATE(4326), 1, + STATE(4391), 1, sym_comment, - STATE(4612), 1, + STATE(4610), 1, aux_sym_cell_path_repeat1, - STATE(4849), 1, + STATE(4893), 1, sym_path, - STATE(4922), 1, + STATE(4897), 1, sym_cell_path, - ACTIONS(1826), 11, + ACTIONS(1899), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -366170,14 +373162,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [174181] = 4, - ACTIONS(247), 1, + [172390] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(4327), 1, + STATE(4392), 1, sym_comment, - ACTIONS(7233), 15, + STATE(4443), 1, + aux_sym_shebang_repeat1, + ACTIONS(7373), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366193,16 +373185,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [174208] = 5, - ACTIONS(247), 1, + [172417] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7227), 1, - anon_sym_and, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(4328), 1, + ACTIONS(7332), 1, + aux_sym__immediate_decimal_token2, + STATE(4393), 1, + sym_comment, + ACTIONS(1717), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1715), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_unquoted_token2, + [172446] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5996), 1, + anon_sym_DOT, + STATE(2752), 1, + sym_path, + STATE(2899), 1, + aux_sym_cell_path_repeat1, + STATE(4394), 1, + sym_comment, + STATE(5067), 1, + sym_cell_path, + ACTIONS(7417), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(7419), 10, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + [172481] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(4395), 1, sym_comment, - ACTIONS(7219), 14, + ACTIONS(5159), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366215,17 +373254,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, anon_sym_xor, anon_sym_or, - [174237] = 4, - ACTIONS(247), 1, + [172506] = 6, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4329), 1, + ACTIONS(7408), 1, + anon_sym_and, + ACTIONS(7421), 1, + sym__newline, + STATE(4396), 1, sym_comment, - STATE(4335), 1, + STATE(4476), 1, aux_sym_shebang_repeat1, - ACTIONS(7235), 15, - sym__newline, + ACTIONS(7373), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -366237,21 +373281,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, anon_sym_xor, anon_sym_or, - [174264] = 6, - ACTIONS(247), 1, + [172537] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7237), 1, + ACTIONS(7426), 1, + anon_sym_EQ, + ACTIONS(7429), 1, sym__newline, - ACTIONS(7240), 1, - anon_sym_and, - STATE(4318), 1, + ACTIONS(7432), 1, + anon_sym_COLON, + ACTIONS(7435), 1, + anon_sym_DASH, + STATE(6229), 1, aux_sym_shebang_repeat1, - STATE(4330), 1, + STATE(4397), 2, + sym_comment, + aux_sym_parameter_repeat1, + STATE(5174), 2, + sym_param_type, + sym_param_value, + ACTIONS(7424), 8, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [172574] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(4398), 1, sym_comment, - ACTIONS(7225), 13, + ACTIONS(7437), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -366263,16 +373331,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and, anon_sym_xor, anon_sym_or, - [174295] = 4, - ACTIONS(247), 1, + [172601] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4331), 1, + STATE(4399), 1, sym_comment, - STATE(4338), 1, - aux_sym_shebang_repeat1, - ACTIONS(7235), 15, + ACTIONS(2291), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366285,21 +373352,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - [174322] = 6, - ACTIONS(247), 1, + [172626] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7194), 1, - anon_sym_and, - ACTIONS(7237), 1, - sym__newline, - STATE(4320), 1, + STATE(2498), 1, aux_sym_shebang_repeat1, - STATE(4332), 1, + STATE(4400), 1, sym_comment, - ACTIONS(7225), 13, + ACTIONS(7437), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -366311,18 +373376,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and, anon_sym_xor, anon_sym_or, - [174353] = 5, - ACTIONS(247), 1, + [172653] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7223), 1, + ACTIONS(7394), 1, anon_sym_and, - STATE(749), 1, + STATE(2498), 1, aux_sym_shebang_repeat1, - STATE(4333), 1, + STATE(4401), 1, sym_comment, - ACTIONS(7233), 14, + ACTIONS(7437), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366337,16 +373403,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor, anon_sym_or, - [174382] = 5, - ACTIONS(247), 1, + [172682] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(7439), 1, + anon_sym_DOT, + ACTIONS(7441), 1, + aux_sym__immediate_decimal_token2, + STATE(4402), 1, + sym_comment, + ACTIONS(1715), 3, + sym_identifier, + anon_sym_DASH, + aux_sym__unquoted_in_list_token2, + ACTIONS(1717), 11, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [172713] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7227), 1, + ACTIONS(7402), 1, anon_sym_and, - STATE(749), 1, + STATE(2498), 1, aux_sym_shebang_repeat1, - STATE(4334), 1, + STATE(4403), 1, sym_comment, - ACTIONS(7233), 14, + ACTIONS(7437), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366361,14 +373452,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor, anon_sym_or, - [174411] = 4, - ACTIONS(247), 1, + [172742] = 6, + ACTIONS(249), 1, anon_sym_POUND, - STATE(749), 1, + ACTIONS(7394), 1, + anon_sym_and, + ACTIONS(7396), 1, + anon_sym_xor, + STATE(2498), 1, aux_sym_shebang_repeat1, - STATE(4335), 1, + STATE(4404), 1, sym_comment, - ACTIONS(7242), 15, + ACTIONS(7437), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366381,21 +373476,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, anon_sym_or, - [174438] = 6, - ACTIONS(247), 1, + [172773] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7240), 1, + ACTIONS(7402), 1, anon_sym_and, - ACTIONS(7244), 1, - sym__newline, - STATE(4336), 1, - sym_comment, - STATE(4339), 1, + ACTIONS(7404), 1, + anon_sym_xor, + STATE(2498), 1, aux_sym_shebang_repeat1, - ACTIONS(7235), 13, + STATE(4405), 1, + sym_comment, + ACTIONS(7437), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -366407,20 +373501,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor, anon_sym_or, - [174469] = 6, - ACTIONS(247), 1, + [172804] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7194), 1, - anon_sym_and, - ACTIONS(7244), 1, - sym__newline, - STATE(4337), 1, - sym_comment, - STATE(4340), 1, + STATE(2498), 1, aux_sym_shebang_repeat1, - ACTIONS(7235), 13, + STATE(4406), 1, + sym_comment, + ACTIONS(7437), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -366432,16 +373522,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and, anon_sym_xor, anon_sym_or, - [174500] = 4, - ACTIONS(247), 1, + [172831] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(749), 1, + STATE(2498), 1, aux_sym_shebang_repeat1, - STATE(4338), 1, + STATE(4407), 1, sym_comment, - ACTIONS(7242), 15, + ACTIONS(7437), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366457,16 +373548,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [174527] = 5, - ACTIONS(247), 1, + [172858] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7223), 1, + ACTIONS(7394), 1, anon_sym_and, - STATE(749), 1, + STATE(2498), 1, aux_sym_shebang_repeat1, - STATE(4339), 1, + STATE(4408), 1, sym_comment, - ACTIONS(7242), 14, + ACTIONS(7437), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366481,16 +373572,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor, anon_sym_or, - [174556] = 5, - ACTIONS(247), 1, + [172887] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7227), 1, + ACTIONS(7402), 1, anon_sym_and, - STATE(749), 1, + STATE(2498), 1, aux_sym_shebang_repeat1, - STATE(4340), 1, + STATE(4409), 1, sym_comment, - ACTIONS(7242), 14, + ACTIONS(7437), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366505,18 +373596,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor, anon_sym_or, - [174585] = 6, - ACTIONS(247), 1, + [172916] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7223), 1, + ACTIONS(7394), 1, anon_sym_and, - ACTIONS(7229), 1, + ACTIONS(7396), 1, anon_sym_xor, - STATE(749), 1, + STATE(2498), 1, aux_sym_shebang_repeat1, - STATE(4341), 1, + STATE(4410), 1, sym_comment, - ACTIONS(7233), 13, + ACTIONS(7437), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366530,18 +373621,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or, - [174616] = 6, - ACTIONS(247), 1, + [172947] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7227), 1, + ACTIONS(7402), 1, anon_sym_and, - ACTIONS(7231), 1, + ACTIONS(7404), 1, anon_sym_xor, - STATE(749), 1, + STATE(2498), 1, aux_sym_shebang_repeat1, - STATE(4342), 1, + STATE(4411), 1, sym_comment, - ACTIONS(7233), 13, + ACTIONS(7437), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366555,20 +373646,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or, - [174647] = 7, - ACTIONS(247), 1, + [172978] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, + ACTIONS(3766), 1, sym__newline, - ACTIONS(7240), 1, + ACTIONS(7375), 1, anon_sym_and, - ACTIONS(7247), 1, + ACTIONS(7377), 1, anon_sym_xor, - STATE(4343), 1, + STATE(4412), 1, sym_comment, - STATE(4361), 1, + STATE(4429), 1, aux_sym_shebang_repeat1, - ACTIONS(7235), 12, + ACTIONS(7443), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -366581,20 +373672,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or, - [174680] = 7, - ACTIONS(247), 1, + [173011] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(7194), 1, + ACTIONS(7375), 1, anon_sym_and, - ACTIONS(7196), 1, - anon_sym_xor, - STATE(4344), 1, + ACTIONS(7421), 1, + sym__newline, + STATE(4413), 1, sym_comment, - STATE(4362), 1, + STATE(4430), 1, aux_sym_shebang_repeat1, - ACTIONS(7235), 12, + ACTIONS(7373), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -366606,15 +373695,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_xor, anon_sym_or, - [174713] = 4, - ACTIONS(247), 1, + [173042] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(4345), 1, + STATE(4414), 1, sym_comment, - ACTIONS(7221), 15, + ACTIONS(1060), 2, + sym__space, + anon_sym_DOT, + ACTIONS(1058), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366627,18 +373718,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_QMARK2, + [173069] = 7, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(7408), 1, anon_sym_and, + ACTIONS(7410), 1, anon_sym_xor, - anon_sym_or, - [174740] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(4346), 1, + STATE(4415), 1, sym_comment, - ACTIONS(7221), 15, - sym__newline, + STATE(4465), 1, + aux_sym_shebang_repeat1, + ACTIONS(7415), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -366650,19 +373745,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, anon_sym_or, - [174767] = 5, - ACTIONS(247), 1, + [173102] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7223), 1, + ACTIONS(7402), 1, anon_sym_and, - STATE(749), 1, + STATE(2498), 1, aux_sym_shebang_repeat1, - STATE(4347), 1, + STATE(4416), 1, sym_comment, - ACTIONS(7221), 14, + ACTIONS(7392), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366677,16 +373770,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor, anon_sym_or, - [174796] = 5, - ACTIONS(247), 1, + [173131] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7227), 1, - anon_sym_and, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(4348), 1, + STATE(4417), 1, sym_comment, - ACTIONS(7221), 14, + ACTIONS(2107), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2105), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366698,24 +373792,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_xor, - anon_sym_or, - [174825] = 6, - ACTIONS(247), 1, + anon_sym_DOT_DOT2, + [173158] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7249), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7251), 1, - aux_sym__immediate_decimal_token2, - STATE(4349), 1, + STATE(4418), 1, sym_comment, - ACTIONS(1659), 3, - sym_identifier, + ACTIONS(1074), 3, anon_sym_DASH, - aux_sym__unquoted_in_list_token2, - ACTIONS(1661), 11, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1076), 13, anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -366725,20 +373814,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [174856] = 6, - ACTIONS(247), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [173185] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7223), 1, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(7408), 1, anon_sym_and, - ACTIONS(7229), 1, + ACTIONS(7410), 1, anon_sym_xor, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(4350), 1, + STATE(4419), 1, sym_comment, - ACTIONS(7221), 13, - sym__newline, + STATE(4566), 1, + aux_sym_shebang_repeat1, + ACTIONS(7373), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -366751,18 +373842,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or, - [174887] = 6, - ACTIONS(247), 1, + [173218] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7227), 1, - anon_sym_and, - ACTIONS(7231), 1, - anon_sym_xor, - STATE(749), 1, + STATE(2498), 1, aux_sym_shebang_repeat1, - STATE(4351), 1, + STATE(4420), 1, sym_comment, - ACTIONS(7221), 13, + ACTIONS(7445), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366775,16 +373862,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and, + anon_sym_xor, anon_sym_or, - [174918] = 4, - ACTIONS(247), 1, + [173245] = 7, + ACTIONS(249), 1, anon_sym_POUND, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(4352), 1, - sym_comment, - ACTIONS(7233), 15, + ACTIONS(3766), 1, sym__newline, + ACTIONS(7375), 1, + anon_sym_and, + ACTIONS(7377), 1, + anon_sym_xor, + STATE(4421), 1, + sym_comment, + STATE(4466), 1, + aux_sym_shebang_repeat1, + ACTIONS(7415), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -366796,18 +373890,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, anon_sym_or, - [174945] = 4, - ACTIONS(247), 1, + [173278] = 7, + ACTIONS(249), 1, anon_sym_POUND, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(4353), 1, - sym_comment, - ACTIONS(7233), 15, + ACTIONS(3766), 1, sym__newline, + ACTIONS(7375), 1, + anon_sym_and, + ACTIONS(7377), 1, + anon_sym_xor, + STATE(4422), 1, + sym_comment, + STATE(4568), 1, + aux_sym_shebang_repeat1, + ACTIONS(7373), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -366819,17 +373916,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, anon_sym_or, - [174972] = 4, - ACTIONS(247), 1, + [173311] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4354), 1, - sym_comment, - STATE(4367), 1, + STATE(2498), 1, aux_sym_shebang_repeat1, - ACTIONS(7235), 15, + STATE(4423), 1, + sym_comment, + ACTIONS(7445), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366845,14 +373940,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [174999] = 4, - ACTIONS(247), 1, + [173338] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4355), 1, + STATE(4424), 1, sym_comment, - STATE(4368), 1, + STATE(4433), 1, aux_sym_shebang_repeat1, - ACTIONS(7235), 15, + ACTIONS(7415), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366868,16 +373963,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [175026] = 5, - ACTIONS(247), 1, + [173365] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7223), 1, - anon_sym_and, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(4356), 1, + STATE(4425), 1, sym_comment, - ACTIONS(7233), 14, + ACTIONS(2220), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2218), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366889,19 +373985,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_xor, - anon_sym_or, - [175055] = 5, - ACTIONS(247), 1, + anon_sym_DOT_DOT2, + [173392] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7227), 1, + ACTIONS(7394), 1, anon_sym_and, - STATE(749), 1, + STATE(2498), 1, aux_sym_shebang_repeat1, - STATE(4357), 1, + STATE(4426), 1, sym_comment, - ACTIONS(7233), 14, + ACTIONS(7445), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366916,12 +374010,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor, anon_sym_or, - [175084] = 3, - ACTIONS(247), 1, + [173421] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4358), 1, + ACTIONS(7402), 1, + anon_sym_and, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(4427), 1, sym_comment, - ACTIONS(5008), 16, + ACTIONS(7445), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366934,41 +374032,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, anon_sym_xor, anon_sym_or, - [175109] = 6, - ACTIONS(247), 1, + [173450] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7240), 1, + ACTIONS(7394), 1, anon_sym_and, - ACTIONS(7244), 1, - sym__newline, - STATE(4359), 1, - sym_comment, - STATE(4369), 1, - aux_sym_shebang_repeat1, - ACTIONS(7235), 13, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + ACTIONS(7396), 1, anon_sym_xor, - anon_sym_or, - [175140] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4360), 1, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(4428), 1, sym_comment, - ACTIONS(6997), 16, + ACTIONS(7445), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366981,22 +374058,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, anon_sym_or, - [175165] = 6, - ACTIONS(247), 1, + [173481] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7223), 1, + ACTIONS(7402), 1, anon_sym_and, - ACTIONS(7229), 1, + ACTIONS(7404), 1, anon_sym_xor, - STATE(749), 1, + STATE(2498), 1, aux_sym_shebang_repeat1, - STATE(4361), 1, + STATE(4429), 1, sym_comment, - ACTIONS(7242), 13, + ACTIONS(7445), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367010,18 +374084,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or, - [175196] = 6, - ACTIONS(247), 1, + [173512] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7227), 1, + ACTIONS(7402), 1, anon_sym_and, - ACTIONS(7231), 1, - anon_sym_xor, - STATE(749), 1, + STATE(2498), 1, aux_sym_shebang_repeat1, - STATE(4362), 1, + STATE(4430), 1, sym_comment, - ACTIONS(7242), 13, + ACTIONS(7447), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367034,13 +374106,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_xor, anon_sym_or, - [175227] = 3, - ACTIONS(247), 1, + [173541] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4363), 1, + ACTIONS(4939), 1, + sym__space, + ACTIONS(7449), 1, + sym_long_flag_identifier, + ACTIONS(7451), 1, + anon_sym_EQ2, + STATE(4431), 1, sym_comment, - ACTIONS(7052), 16, + ACTIONS(4937), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367054,15 +374133,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [175252] = 3, - ACTIONS(247), 1, + [173572] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4364), 1, + ACTIONS(7453), 1, + aux_sym__immediate_decimal_token2, + STATE(4432), 1, sym_comment, - ACTIONS(6997), 16, + ACTIONS(1771), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1769), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367074,17 +374156,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [175277] = 3, - ACTIONS(247), 1, + aux_sym_unquoted_token2, + [173601] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4365), 1, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(4433), 1, sym_comment, - ACTIONS(7052), 16, + ACTIONS(7392), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367097,40 +374177,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - [175302] = 3, - ACTIONS(247), 1, + [173628] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4366), 1, + ACTIONS(1058), 1, + anon_sym_DASH, + STATE(4434), 1, sym_comment, - ACTIONS(6997), 16, + ACTIONS(1060), 15, + anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [175327] = 4, - ACTIONS(247), 1, + anon_sym_QMARK2, + anon_sym_DOT, + [173655] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(4367), 1, + ACTIONS(2283), 1, + anon_sym_LPAREN2, + ACTIONS(2285), 1, + sym__space, + ACTIONS(2287), 1, + aux_sym_unquoted_token4, + STATE(4435), 1, sym_comment, - ACTIONS(7242), 15, + ACTIONS(2281), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367143,18 +374227,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [175354] = 4, - ACTIONS(247), 1, + anon_sym_RBRACE, + [173686] = 6, + ACTIONS(249), 1, anon_sym_POUND, - STATE(749), 1, + ACTIONS(7408), 1, + anon_sym_and, + ACTIONS(7455), 1, + sym__newline, + STATE(4426), 1, aux_sym_shebang_repeat1, - STATE(4368), 1, + STATE(4436), 1, sym_comment, - ACTIONS(7242), 15, - sym__newline, + ACTIONS(7443), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -367166,19 +374251,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, anon_sym_xor, anon_sym_or, - [175381] = 5, - ACTIONS(247), 1, + [173717] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7223), 1, + ACTIONS(7394), 1, anon_sym_and, - STATE(749), 1, + ACTIONS(7396), 1, + anon_sym_xor, + ACTIONS(7460), 1, + anon_sym_or, + STATE(2498), 1, aux_sym_shebang_repeat1, - STATE(4369), 1, + STATE(4437), 1, sym_comment, - ACTIONS(7242), 14, + ACTIONS(7458), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367191,18 +374279,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor, - anon_sym_or, - [175410] = 5, - ACTIONS(247), 1, + [173750] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7227), 1, - anon_sym_and, - STATE(749), 1, + STATE(2498), 1, aux_sym_shebang_repeat1, - STATE(4370), 1, + STATE(4438), 1, sym_comment, - ACTIONS(7242), 14, + ACTIONS(7392), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367215,20 +374299,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and, anon_sym_xor, anon_sym_or, - [175439] = 6, - ACTIONS(247), 1, + [173777] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7223), 1, - anon_sym_and, - ACTIONS(7229), 1, - anon_sym_xor, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(4371), 1, + STATE(4439), 1, sym_comment, - ACTIONS(7242), 13, + ACTIONS(2291), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(2289), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367241,20 +374323,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or, - [175470] = 6, - ACTIONS(247), 1, + anon_sym_RBRACE, + aux_sym_unquoted_token4, + [173804] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7227), 1, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(7375), 1, anon_sym_and, - ACTIONS(7231), 1, + ACTIONS(7377), 1, anon_sym_xor, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(4372), 1, + ACTIONS(7464), 1, + anon_sym_or, + STATE(4440), 1, sym_comment, - ACTIONS(7242), 13, - sym__newline, + STATE(4442), 1, + aux_sym_shebang_repeat1, + ACTIONS(7462), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -367266,19 +374352,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or, - [175501] = 6, - ACTIONS(247), 1, + [173839] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7223), 1, - anon_sym_and, - ACTIONS(7229), 1, - anon_sym_xor, - STATE(749), 1, + STATE(4438), 1, aux_sym_shebang_repeat1, - STATE(4373), 1, + STATE(4441), 1, sym_comment, - ACTIONS(7219), 13, + ACTIONS(7415), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367291,19 +374372,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and, + anon_sym_xor, anon_sym_or, - [175532] = 6, - ACTIONS(247), 1, + [173866] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7227), 1, + ACTIONS(7402), 1, anon_sym_and, - ACTIONS(7231), 1, + ACTIONS(7404), 1, anon_sym_xor, - STATE(749), 1, + ACTIONS(7466), 1, + anon_sym_or, + STATE(2498), 1, aux_sym_shebang_repeat1, - STATE(4374), 1, + STATE(4442), 1, sym_comment, - ACTIONS(7219), 13, + ACTIONS(7458), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367316,21 +374401,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or, - [175563] = 7, - ACTIONS(247), 1, + [173899] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(7240), 1, - anon_sym_and, - ACTIONS(7247), 1, - anon_sym_xor, - STATE(4321), 1, + STATE(2498), 1, aux_sym_shebang_repeat1, - STATE(4375), 1, + STATE(4443), 1, sym_comment, - ACTIONS(7225), 12, + ACTIONS(7447), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -367342,21 +374421,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and, + anon_sym_xor, anon_sym_or, - [175596] = 7, - ACTIONS(247), 1, + [173926] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(7194), 1, + ACTIONS(7394), 1, anon_sym_and, - ACTIONS(7196), 1, + ACTIONS(7396), 1, anon_sym_xor, - STATE(4323), 1, + ACTIONS(7460), 1, + anon_sym_or, + STATE(2498), 1, aux_sym_shebang_repeat1, - STATE(4376), 1, + STATE(4444), 1, sym_comment, - ACTIONS(7225), 12, + ACTIONS(7468), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -367368,15 +374450,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or, - [175629] = 4, - ACTIONS(247), 1, + [173959] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4325), 1, + STATE(4406), 1, aux_sym_shebang_repeat1, - STATE(4377), 1, + STATE(4445), 1, sym_comment, - ACTIONS(7253), 15, + ACTIONS(7382), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367392,14 +374473,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [175656] = 4, - ACTIONS(247), 1, + [173986] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4327), 1, + STATE(2498), 1, aux_sym_shebang_repeat1, - STATE(4378), 1, + STATE(4446), 1, sym_comment, - ACTIONS(7253), 15, + ACTIONS(7445), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367415,12 +374496,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [175683] = 3, - ACTIONS(247), 1, + [174013] = 7, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4379), 1, + ACTIONS(7402), 1, + anon_sym_and, + ACTIONS(7404), 1, + anon_sym_xor, + ACTIONS(7466), 1, + anon_sym_or, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(4447), 1, sym_comment, - ACTIONS(7052), 16, + ACTIONS(7468), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367433,16 +374522,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [175708] = 3, - ACTIONS(247), 1, + [174046] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4380), 1, + ACTIONS(7470), 1, + anon_sym_DOT_DOT2, + STATE(4448), 1, sym_comment, - ACTIONS(7255), 16, + ACTIONS(7364), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7472), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7362), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367454,26 +374547,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + [174077] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(7408), 1, anon_sym_and, + ACTIONS(7410), 1, anon_sym_xor, + ACTIONS(7476), 1, anon_sym_or, - [175733] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7257), 1, - anon_sym_DOT_DOT2, - STATE(4381), 1, + STATE(4444), 1, + aux_sym_shebang_repeat1, + STATE(4449), 1, sym_comment, - ACTIONS(2025), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7259), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2019), 11, - sym__newline, + ACTIONS(7474), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -367484,18 +374573,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [175764] = 6, - ACTIONS(247), 1, + anon_sym_RPAREN, + [174112] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7240), 1, - anon_sym_and, - ACTIONS(7261), 1, + ACTIONS(3766), 1, sym__newline, - STATE(4333), 1, + ACTIONS(7375), 1, + anon_sym_and, + ACTIONS(7377), 1, + anon_sym_xor, + ACTIONS(7464), 1, + anon_sym_or, + STATE(4447), 1, aux_sym_shebang_repeat1, - STATE(4382), 1, + STATE(4450), 1, sym_comment, - ACTIONS(7253), 13, + ACTIONS(7474), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -367507,20 +374601,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor, - anon_sym_or, - [175795] = 6, - ACTIONS(247), 1, + [174147] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7194), 1, - anon_sym_and, - ACTIONS(7261), 1, - sym__newline, - STATE(4334), 1, - aux_sym_shebang_repeat1, - STATE(4383), 1, + STATE(4451), 1, sym_comment, - ACTIONS(7253), 13, + ACTIONS(1771), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1769), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -367532,22 +374622,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor, - anon_sym_or, - [175826] = 7, - ACTIONS(247), 1, + anon_sym_RBRACE, + aux_sym_unquoted_token2, + [174174] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(7240), 1, - anon_sym_and, - ACTIONS(7247), 1, - anon_sym_xor, - STATE(4341), 1, + STATE(4407), 1, aux_sym_shebang_repeat1, - STATE(4384), 1, + STATE(4452), 1, sym_comment, - ACTIONS(7253), 12, + ACTIONS(7382), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -367559,13 +374644,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and, + anon_sym_xor, anon_sym_or, - [175859] = 3, - ACTIONS(247), 1, + [174201] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4385), 1, + STATE(4453), 1, sym_comment, - ACTIONS(5044), 16, + ACTIONS(5155), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367582,20 +374669,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [175884] = 7, - ACTIONS(247), 1, + [174226] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(7194), 1, - anon_sym_and, - ACTIONS(7196), 1, - anon_sym_xor, - STATE(4342), 1, - aux_sym_shebang_repeat1, - STATE(4386), 1, + ACTIONS(1526), 1, + aux_sym_unquoted_token2, + ACTIONS(1790), 1, + anon_sym_LPAREN2, + ACTIONS(1796), 1, + sym__space, + STATE(4454), 1, sym_comment, - ACTIONS(7253), 12, + ACTIONS(1788), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -367607,13 +374693,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or, - [175917] = 3, - ACTIONS(247), 1, + anon_sym_RBRACE, + [174257] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4387), 1, + ACTIONS(7394), 1, + anon_sym_and, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(4455), 1, sym_comment, - ACTIONS(7255), 16, + ACTIONS(7392), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367626,18 +374716,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, anon_sym_xor, anon_sym_or, - [175942] = 4, - ACTIONS(247), 1, + [174286] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7264), 1, - anon_sym_and, - STATE(4388), 1, + STATE(4420), 1, + aux_sym_shebang_repeat1, + STATE(4456), 1, sym_comment, - ACTIONS(7255), 15, + ACTIONS(7443), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367650,18 +374738,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_and, anon_sym_xor, anon_sym_or, - [175969] = 4, - ACTIONS(247), 1, + [174313] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7266), 1, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(7408), 1, anon_sym_and, - STATE(4389), 1, + ACTIONS(7410), 1, + anon_sym_xor, + ACTIONS(7476), 1, + anon_sym_or, + STATE(4437), 1, + aux_sym_shebang_repeat1, + STATE(4457), 1, sym_comment, - ACTIONS(7255), 15, - sym__newline, + ACTIONS(7462), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -367673,17 +374768,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_xor, - anon_sym_or, - [175996] = 4, - ACTIONS(247), 1, + [174348] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(749), 1, + ACTIONS(7402), 1, + anon_sym_and, + STATE(2498), 1, aux_sym_shebang_repeat1, - STATE(4390), 1, + STATE(4458), 1, sym_comment, - ACTIONS(7219), 15, + ACTIONS(7392), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367696,18 +374790,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, anon_sym_xor, anon_sym_or, - [176023] = 4, - ACTIONS(247), 1, + [174377] = 6, + ACTIONS(249), 1, anon_sym_POUND, - STATE(749), 1, + ACTIONS(7379), 1, + sym__newline, + ACTIONS(7408), 1, + anon_sym_and, + STATE(4408), 1, aux_sym_shebang_repeat1, - STATE(4391), 1, + STATE(4459), 1, sym_comment, - ACTIONS(7219), 15, - sym__newline, + ACTIONS(7382), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -367719,17 +374815,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, anon_sym_xor, anon_sym_or, - [176050] = 4, - ACTIONS(247), 1, + [174408] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4345), 1, - aux_sym_shebang_repeat1, - STATE(4392), 1, + STATE(4460), 1, sym_comment, - ACTIONS(7225), 15, + ACTIONS(1705), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1703), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367742,17 +374838,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [176077] = 4, - ACTIONS(247), 1, + anon_sym_RBRACE, + aux_sym_unquoted_token2, + [174435] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4346), 1, - aux_sym_shebang_repeat1, - STATE(4393), 1, + ACTIONS(1092), 1, + sym__space, + ACTIONS(2273), 1, + anon_sym_LPAREN2, + ACTIONS(2275), 1, + aux_sym_unquoted_token4, + STATE(4461), 1, sym_comment, - ACTIONS(7225), 15, + ACTIONS(1090), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367765,20 +374864,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [176104] = 5, - ACTIONS(247), 1, + anon_sym_RBRACE, + [174466] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7223), 1, + ACTIONS(7375), 1, anon_sym_and, - STATE(749), 1, + ACTIONS(7379), 1, + sym__newline, + STATE(4409), 1, aux_sym_shebang_repeat1, - STATE(4394), 1, + STATE(4462), 1, sym_comment, - ACTIONS(7219), 14, - sym__newline, + ACTIONS(7382), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -367792,16 +374890,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor, anon_sym_or, - [176133] = 5, - ACTIONS(247), 1, + [174497] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7227), 1, - anon_sym_and, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(4395), 1, + STATE(4463), 1, sym_comment, - ACTIONS(7219), 14, + STATE(4471), 1, + aux_sym_shebang_repeat1, + ACTIONS(7373), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367814,20 +374910,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and, anon_sym_xor, anon_sym_or, - [176162] = 6, - ACTIONS(247), 1, + [174524] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7237), 1, - sym__newline, - ACTIONS(7240), 1, - anon_sym_and, - STATE(4347), 1, - aux_sym_shebang_repeat1, - STATE(4396), 1, + ACTIONS(7470), 1, + anon_sym_DOT_DOT2, + STATE(4464), 1, sym_comment, - ACTIONS(7225), 13, + ACTIONS(1092), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7472), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1090), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -367838,19 +374938,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_xor, - anon_sym_or, - [176193] = 5, - ACTIONS(247), 1, + [174555] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7264), 1, + ACTIONS(7394), 1, anon_sym_and, - ACTIONS(7268), 1, + ACTIONS(7396), 1, anon_sym_xor, - STATE(4397), 1, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(4465), 1, sym_comment, - ACTIONS(7255), 14, + ACTIONS(7392), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367863,18 +374962,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_or, - [176222] = 5, - ACTIONS(247), 1, + [174586] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7266), 1, + ACTIONS(7402), 1, anon_sym_and, - ACTIONS(7270), 1, + ACTIONS(7404), 1, anon_sym_xor, - STATE(4398), 1, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(4466), 1, sym_comment, - ACTIONS(7255), 14, + ACTIONS(7392), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367887,15 +374987,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_or, - [176251] = 3, - ACTIONS(247), 1, + [174617] = 7, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4399), 1, - sym_comment, - ACTIONS(7255), 16, + ACTIONS(3766), 1, sym__newline, + ACTIONS(7408), 1, + anon_sym_and, + ACTIONS(7410), 1, + anon_sym_xor, + STATE(4410), 1, + aux_sym_shebang_repeat1, + STATE(4467), 1, + sym_comment, + ACTIONS(7382), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -367907,22 +375013,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, anon_sym_or, - [176276] = 6, - ACTIONS(247), 1, + [174650] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7194), 1, - anon_sym_and, - ACTIONS(7237), 1, - sym__newline, - STATE(4348), 1, - aux_sym_shebang_repeat1, - STATE(4400), 1, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + ACTIONS(4812), 1, + sym__space, + STATE(4468), 1, sym_comment, - ACTIONS(7225), 13, + STATE(7791), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4814), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -367934,14 +375038,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor, - anon_sym_or, - [176307] = 3, - ACTIONS(247), 1, + anon_sym_RBRACE, + [174681] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4401), 1, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(4469), 1, sym_comment, - ACTIONS(7255), 16, + ACTIONS(7445), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367954,18 +375059,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - [176332] = 4, - ACTIONS(247), 1, + [174708] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7264), 1, - anon_sym_and, - STATE(4402), 1, + ACTIONS(5996), 1, + anon_sym_DOT, + STATE(2752), 1, + sym_path, + STATE(2899), 1, + aux_sym_cell_path_repeat1, + STATE(4165), 1, + sym_cell_path, + STATE(4470), 1, + sym_comment, + ACTIONS(1021), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(1023), 10, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + [174743] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(4471), 1, sym_comment, - ACTIONS(7255), 15, + ACTIONS(7447), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367978,17 +375109,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_and, anon_sym_xor, anon_sym_or, - [176359] = 4, - ACTIONS(247), 1, + [174770] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7266), 1, - anon_sym_and, - STATE(4403), 1, + ACTIONS(4927), 1, + sym__space, + ACTIONS(7478), 1, + anon_sym_EQ2, + ACTIONS(7480), 1, + sym_short_flag_identifier, + STATE(4472), 1, sym_comment, - ACTIONS(7255), 15, + ACTIONS(4925), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368002,18 +375137,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_xor, - anon_sym_or, - [176386] = 5, - ACTIONS(247), 1, + [174801] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7264), 1, + ACTIONS(7484), 1, anon_sym_and, - ACTIONS(7268), 1, + ACTIONS(7486), 1, anon_sym_xor, - STATE(4404), 1, + ACTIONS(7488), 1, + anon_sym_or, + STATE(4473), 1, sym_comment, - ACTIONS(7255), 14, + ACTIONS(7482), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368027,19 +375162,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_or, - [176415] = 6, - ACTIONS(247), 1, + [174832] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7223), 1, + ACTIONS(7490), 1, anon_sym_and, - ACTIONS(7229), 1, + ACTIONS(7492), 1, anon_sym_xor, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(4405), 1, + ACTIONS(7494), 1, + anon_sym_or, + STATE(4474), 1, sym_comment, - ACTIONS(7219), 13, + ACTIONS(7482), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368052,23 +375186,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or, - [176446] = 8, - ACTIONS(247), 1, + anon_sym_RBRACE, + [174863] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1828), 1, + ACTIONS(1901), 1, anon_sym_DASH, - ACTIONS(7200), 1, + ACTIONS(7406), 1, anon_sym_DOT, - STATE(4406), 1, + STATE(4475), 1, sym_comment, - STATE(4612), 1, + STATE(4610), 1, aux_sym_cell_path_repeat1, - STATE(4849), 1, + STATE(4893), 1, sym_path, - STATE(4900), 1, + STATE(4923), 1, sym_cell_path, - ACTIONS(1830), 11, + ACTIONS(1903), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -368080,18 +375214,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [176481] = 6, - ACTIONS(247), 1, + [174898] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7227), 1, + ACTIONS(7394), 1, anon_sym_and, - ACTIONS(7231), 1, - anon_sym_xor, - STATE(749), 1, + STATE(2498), 1, aux_sym_shebang_repeat1, - STATE(4407), 1, + STATE(4476), 1, sym_comment, - ACTIONS(7219), 13, + ACTIONS(7447), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368104,21 +375236,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_xor, anon_sym_or, - [176512] = 7, - ACTIONS(247), 1, + [174927] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(7240), 1, + ACTIONS(7408), 1, anon_sym_and, - ACTIONS(7247), 1, - anon_sym_xor, - STATE(4350), 1, + ACTIONS(7412), 1, + sym__newline, + STATE(4455), 1, aux_sym_shebang_repeat1, - STATE(4408), 1, + STATE(4477), 1, sym_comment, - ACTIONS(7225), 12, + ACTIONS(7415), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -368130,43 +375261,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or, - [176545] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7266), 1, - anon_sym_and, - ACTIONS(7270), 1, anon_sym_xor, - STATE(4409), 1, - sym_comment, - ACTIONS(7255), 14, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_or, - [176574] = 6, - ACTIONS(247), 1, + [174958] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7194), 1, - anon_sym_and, - ACTIONS(7244), 1, - sym__newline, - STATE(4370), 1, + STATE(2498), 1, aux_sym_shebang_repeat1, - STATE(4410), 1, + STATE(4478), 1, sym_comment, - ACTIONS(7235), 13, + ACTIONS(7447), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -368178,49 +375283,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and, anon_sym_xor, anon_sym_or, - [176605] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1832), 1, - anon_sym_DASH, - ACTIONS(7200), 1, - anon_sym_DOT, - STATE(4411), 1, - sym_comment, - STATE(4612), 1, - aux_sym_cell_path_repeat1, - STATE(4849), 1, - sym_path, - STATE(4994), 1, - sym_cell_path, - ACTIONS(1834), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [176640] = 7, - ACTIONS(247), 1, + [174985] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, + ACTIONS(3766), 1, sym__newline, - ACTIONS(7194), 1, + ACTIONS(7375), 1, anon_sym_and, - ACTIONS(7196), 1, + ACTIONS(7377), 1, anon_sym_xor, - STATE(4351), 1, + STATE(4411), 1, aux_sym_shebang_repeat1, - STATE(4412), 1, + STATE(4479), 1, sym_comment, - ACTIONS(7225), 12, + ACTIONS(7382), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -368233,14 +375312,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or, - [176673] = 4, - ACTIONS(247), 1, + [175018] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4352), 1, - aux_sym_shebang_repeat1, - STATE(4413), 1, + STATE(4480), 1, sym_comment, - ACTIONS(7253), 15, + ACTIONS(2232), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2230), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368252,22 +375334,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DOT_DOT2, + [175045] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1062), 1, + anon_sym_DASH, + STATE(4481), 1, + sym_comment, + ACTIONS(1064), 15, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [176700] = 6, - ACTIONS(247), 1, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_DOT, + [175072] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7223), 1, - anon_sym_and, - ACTIONS(7229), 1, - anon_sym_xor, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(4414), 1, + STATE(4482), 1, sym_comment, - ACTIONS(7233), 13, + ACTIONS(5151), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368280,15 +375376,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, anon_sym_or, - [176731] = 4, - ACTIONS(247), 1, + [175097] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4353), 1, + STATE(4446), 1, aux_sym_shebang_repeat1, - STATE(4415), 1, + STATE(4483), 1, sym_comment, - ACTIONS(7253), 15, + ACTIONS(7443), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368304,18 +375403,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [176758] = 5, + [175124] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7272), 1, - aux_sym__immediate_decimal_token2, - STATE(4416), 1, - sym_comment, - ACTIONS(1723), 3, - ts_builtin_sym_end, - sym__space, + ACTIONS(1844), 1, anon_sym_LPAREN2, - ACTIONS(1721), 12, + ACTIONS(1852), 1, + aux_sym_unquoted_token2, + ACTIONS(2279), 1, + sym__space, + STATE(4484), 1, + sym_comment, + ACTIONS(2277), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368327,21 +375426,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_unquoted_token2, - [176787] = 7, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [175155] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(7240), 1, - anon_sym_and, - ACTIONS(7247), 1, - anon_sym_xor, - STATE(4371), 1, - aux_sym_shebang_repeat1, - STATE(4417), 1, + ACTIONS(7496), 1, + anon_sym_DOT_DOT2, + STATE(4485), 1, sym_comment, - ACTIONS(7235), 12, + ACTIONS(2228), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7498), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2222), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -368352,24 +375453,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_or, - [176820] = 8, - ACTIONS(247), 1, + [175186] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1836), 1, + ACTIONS(1909), 1, anon_sym_DASH, - ACTIONS(7200), 1, + ACTIONS(7406), 1, anon_sym_DOT, - STATE(4418), 1, + STATE(4486), 1, sym_comment, - STATE(4612), 1, + STATE(4610), 1, aux_sym_cell_path_repeat1, - STATE(4849), 1, + STATE(4893), 1, sym_path, - STATE(4977), 1, + STATE(4927), 1, sym_cell_path, - ACTIONS(1838), 11, + ACTIONS(1911), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -368381,20 +375480,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [176855] = 7, - ACTIONS(247), 1, + [175221] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(7194), 1, - anon_sym_and, - ACTIONS(7196), 1, - anon_sym_xor, - STATE(4372), 1, - aux_sym_shebang_repeat1, - STATE(4419), 1, + ACTIONS(2295), 1, + anon_sym_LPAREN2, + ACTIONS(2297), 1, + sym__space, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + STATE(4487), 1, sym_comment, - ACTIONS(7235), 12, + ACTIONS(2293), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -368406,19 +375504,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or, - [176888] = 6, - ACTIONS(247), 1, + anon_sym_RBRACE, + [175252] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(4488), 1, + sym_comment, + ACTIONS(1066), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1068), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [175279] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7240), 1, - anon_sym_and, - ACTIONS(7261), 1, - sym__newline, - STATE(4356), 1, - aux_sym_shebang_repeat1, - STATE(4420), 1, + ACTIONS(1844), 1, + anon_sym_LPAREN2, + ACTIONS(1850), 1, + sym__space, + ACTIONS(1852), 1, + aux_sym_unquoted_token2, + STATE(4489), 1, sym_comment, - ACTIONS(7253), 13, + ACTIONS(1842), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -368430,41 +375552,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor, - anon_sym_or, - [176919] = 6, - ACTIONS(247), 1, + anon_sym_RBRACE, + [175310] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7194), 1, - anon_sym_and, - ACTIONS(7261), 1, - sym__newline, - STATE(4357), 1, - aux_sym_shebang_repeat1, - STATE(4421), 1, + STATE(4490), 1, sym_comment, - ACTIONS(7253), 13, - anon_sym_SEMI, + ACTIONS(1070), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + anon_sym_DOT, + ACTIONS(1072), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_xor, - anon_sym_or, - [176950] = 4, - ACTIONS(247), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [175337] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4314), 1, + STATE(4469), 1, aux_sym_shebang_repeat1, - STATE(4422), 1, + STATE(4491), 1, sym_comment, - ACTIONS(7274), 15, + ACTIONS(7443), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368480,14 +375599,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [176977] = 4, - ACTIONS(247), 1, + [175364] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4317), 1, - aux_sym_shebang_repeat1, - STATE(4423), 1, + ACTIONS(2295), 1, + anon_sym_LPAREN2, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + ACTIONS(2305), 1, + sym__space, + STATE(4492), 1, sym_comment, - ACTIONS(7274), 15, + ACTIONS(2303), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368500,23 +375623,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [177004] = 7, - ACTIONS(247), 1, + anon_sym_RBRACE, + [175395] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, + ACTIONS(7379), 1, sym__newline, - ACTIONS(7240), 1, + ACTIONS(7408), 1, anon_sym_and, - ACTIONS(7247), 1, - anon_sym_xor, - STATE(4414), 1, + STATE(4401), 1, aux_sym_shebang_repeat1, - STATE(4424), 1, + STATE(4493), 1, sym_comment, - ACTIONS(7253), 12, + ACTIONS(7382), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -368528,25 +375647,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_xor, anon_sym_or, - [177037] = 8, - ACTIONS(247), 1, + [175426] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1840), 1, - anon_sym_DASH, - ACTIONS(7200), 1, - anon_sym_DOT, - STATE(4425), 1, + ACTIONS(7500), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7502), 1, + aux_sym__immediate_decimal_token2, + STATE(4494), 1, sym_comment, - STATE(4612), 1, - aux_sym_cell_path_repeat1, - STATE(4818), 1, - sym_cell_path, - STATE(4849), 1, - sym_path, - ACTIONS(1842), 11, - anon_sym_EQ, + ACTIONS(1703), 3, sym_identifier, + anon_sym_DASH, + aux_sym__unquoted_in_list_token2, + ACTIONS(1705), 11, + anon_sym_EQ, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -368556,22 +375673,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [177072] = 8, - ACTIONS(247), 1, + anon_sym_LPAREN2, + [175457] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1844), 1, + ACTIONS(1929), 1, anon_sym_DASH, - ACTIONS(7200), 1, + ACTIONS(7406), 1, anon_sym_DOT, - STATE(4426), 1, + STATE(4495), 1, sym_comment, - STATE(4612), 1, + STATE(4610), 1, aux_sym_cell_path_repeat1, - STATE(4828), 1, - sym_cell_path, - STATE(4849), 1, + STATE(4893), 1, sym_path, - ACTIONS(1846), 11, + STATE(4901), 1, + sym_cell_path, + ACTIONS(1931), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -368583,20 +375701,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [177107] = 7, - ACTIONS(247), 1, + [175492] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(7194), 1, + ACTIONS(7402), 1, anon_sym_and, - ACTIONS(7196), 1, - anon_sym_xor, - STATE(4427), 1, - sym_comment, - STATE(4511), 1, + STATE(2498), 1, aux_sym_shebang_repeat1, - ACTIONS(7253), 12, + STATE(4496), 1, + sym_comment, + ACTIONS(7445), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -368608,50 +375723,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_xor, anon_sym_or, - [177140] = 8, - ACTIONS(247), 1, + [175521] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1848), 1, - anon_sym_DASH, - ACTIONS(7200), 1, - anon_sym_DOT, - STATE(4428), 1, + STATE(4497), 1, sym_comment, - STATE(4612), 1, - aux_sym_cell_path_repeat1, - STATE(4849), 1, - sym_path, - STATE(4894), 1, - sym_cell_path, - ACTIONS(1850), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(1064), 2, + sym__space, + anon_sym_DOT, + ACTIONS(1062), 14, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [177175] = 8, - ACTIONS(247), 1, + anon_sym_RBRACE, + anon_sym_QMARK2, + [175548] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1852), 1, + ACTIONS(1993), 1, anon_sym_DASH, - ACTIONS(7200), 1, + ACTIONS(7406), 1, anon_sym_DOT, - STATE(4429), 1, + STATE(4498), 1, sym_comment, - STATE(4612), 1, + STATE(4610), 1, aux_sym_cell_path_repeat1, - STATE(4849), 1, + STATE(4893), 1, sym_path, - STATE(4896), 1, + STATE(4902), 1, sym_cell_path, - ACTIONS(1854), 11, + ACTIONS(1995), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -368663,22 +375775,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [177210] = 8, - ACTIONS(247), 1, + [175583] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1856), 1, + ACTIONS(1997), 1, anon_sym_DASH, - ACTIONS(7200), 1, + ACTIONS(7406), 1, anon_sym_DOT, - STATE(4430), 1, + STATE(4499), 1, sym_comment, - STATE(4612), 1, + STATE(4610), 1, aux_sym_cell_path_repeat1, - STATE(4849), 1, + STATE(4893), 1, sym_path, - STATE(4898), 1, + STATE(4903), 1, sym_cell_path, - ACTIONS(1858), 11, + ACTIONS(1999), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -368690,22 +375802,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [177245] = 8, - ACTIONS(247), 1, + [175618] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1860), 1, + ACTIONS(2001), 1, anon_sym_DASH, - ACTIONS(7200), 1, + ACTIONS(7406), 1, anon_sym_DOT, - STATE(4431), 1, + STATE(4500), 1, sym_comment, - STATE(4612), 1, + STATE(4610), 1, aux_sym_cell_path_repeat1, - STATE(4849), 1, + STATE(4893), 1, sym_path, - STATE(4901), 1, + STATE(4904), 1, sym_cell_path, - ACTIONS(1862), 11, + ACTIONS(2003), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -368717,22 +375829,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [177280] = 8, - ACTIONS(247), 1, + [175653] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1864), 1, + ACTIONS(2005), 1, anon_sym_DASH, - ACTIONS(7200), 1, + ACTIONS(7406), 1, anon_sym_DOT, - STATE(4432), 1, + STATE(4501), 1, sym_comment, - STATE(4612), 1, + STATE(4610), 1, aux_sym_cell_path_repeat1, - STATE(4849), 1, + STATE(4893), 1, sym_path, - STATE(4918), 1, + STATE(4905), 1, sym_cell_path, - ACTIONS(1866), 11, + ACTIONS(2007), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -368744,22 +375856,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [177315] = 8, - ACTIONS(247), 1, + [175688] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1868), 1, + ACTIONS(2009), 1, anon_sym_DASH, - ACTIONS(7200), 1, + ACTIONS(7406), 1, anon_sym_DOT, - STATE(4433), 1, + STATE(4502), 1, sym_comment, - STATE(4612), 1, + STATE(4610), 1, aux_sym_cell_path_repeat1, - STATE(4849), 1, + STATE(4893), 1, sym_path, - STATE(4927), 1, + STATE(4906), 1, sym_cell_path, - ACTIONS(1870), 11, + ACTIONS(2011), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -368771,22 +375883,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [177350] = 8, - ACTIONS(247), 1, + [175723] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1872), 1, + ACTIONS(2013), 1, anon_sym_DASH, - ACTIONS(7200), 1, + ACTIONS(7406), 1, anon_sym_DOT, - STATE(4434), 1, + STATE(4503), 1, sym_comment, - STATE(4612), 1, + STATE(4610), 1, aux_sym_cell_path_repeat1, - STATE(4849), 1, + STATE(4893), 1, sym_path, - STATE(4929), 1, + STATE(4907), 1, sym_cell_path, - ACTIONS(1874), 11, + ACTIONS(2015), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -368798,22 +375910,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [177385] = 8, - ACTIONS(247), 1, + [175758] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(7394), 1, + anon_sym_and, + ACTIONS(7396), 1, + anon_sym_xor, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(4504), 1, + sym_comment, + ACTIONS(7445), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_or, + [175789] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1876), 1, + ACTIONS(2017), 1, anon_sym_DASH, - ACTIONS(7200), 1, + ACTIONS(7406), 1, anon_sym_DOT, - STATE(4435), 1, + STATE(4505), 1, sym_comment, - STATE(4612), 1, + STATE(4610), 1, aux_sym_cell_path_repeat1, - STATE(4849), 1, + STATE(4893), 1, sym_path, - STATE(4980), 1, + STATE(4908), 1, sym_cell_path, - ACTIONS(1878), 11, + ACTIONS(2019), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -368825,22 +375962,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [177420] = 8, - ACTIONS(247), 1, + [175824] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1880), 1, + ACTIONS(2021), 1, anon_sym_DASH, - ACTIONS(7200), 1, + ACTIONS(7406), 1, anon_sym_DOT, - STATE(4436), 1, + STATE(4506), 1, sym_comment, - STATE(4612), 1, + STATE(4610), 1, aux_sym_cell_path_repeat1, - STATE(4826), 1, - sym_cell_path, - STATE(4849), 1, + STATE(4893), 1, sym_path, - ACTIONS(1882), 11, + STATE(4909), 1, + sym_cell_path, + ACTIONS(2023), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -368852,22 +375989,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [177455] = 8, - ACTIONS(247), 1, + [175859] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1884), 1, + ACTIONS(2043), 1, anon_sym_DASH, - ACTIONS(7200), 1, + ACTIONS(7406), 1, anon_sym_DOT, - STATE(4437), 1, + STATE(4507), 1, sym_comment, - STATE(4612), 1, + STATE(4610), 1, aux_sym_cell_path_repeat1, - STATE(4831), 1, - sym_cell_path, - STATE(4849), 1, + STATE(4893), 1, sym_path, - ACTIONS(1886), 11, + STATE(4910), 1, + sym_cell_path, + ACTIONS(2045), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -368879,17 +376016,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [177490] = 4, - ACTIONS(3), 1, + [175894] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4438), 1, + ACTIONS(7394), 1, + anon_sym_and, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(4508), 1, sym_comment, - ACTIONS(2035), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2033), 12, + ACTIONS(7447), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368901,50 +376037,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - [177517] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1888), 1, - anon_sym_DASH, - ACTIONS(7200), 1, - anon_sym_DOT, - STATE(4439), 1, - sym_comment, - STATE(4612), 1, - aux_sym_cell_path_repeat1, - STATE(4832), 1, - sym_cell_path, - STATE(4849), 1, - sym_path, - ACTIONS(1890), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [177552] = 8, - ACTIONS(247), 1, + anon_sym_xor, + anon_sym_or, + [175923] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1892), 1, + ACTIONS(2047), 1, anon_sym_DASH, - ACTIONS(7200), 1, + ACTIONS(7406), 1, anon_sym_DOT, - STATE(4440), 1, + STATE(4509), 1, sym_comment, - STATE(4612), 1, + STATE(4610), 1, aux_sym_cell_path_repeat1, - STATE(4849), 1, + STATE(4893), 1, sym_path, - STATE(4861), 1, + STATE(4911), 1, sym_cell_path, - ACTIONS(1894), 11, + ACTIONS(2049), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -368956,22 +376067,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [177587] = 8, - ACTIONS(247), 1, + [175958] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1896), 1, + ACTIONS(2051), 1, anon_sym_DASH, - ACTIONS(7200), 1, + ACTIONS(7406), 1, anon_sym_DOT, - STATE(4441), 1, + STATE(4510), 1, sym_comment, - STATE(4612), 1, + STATE(4610), 1, aux_sym_cell_path_repeat1, - STATE(4849), 1, + STATE(4893), 1, sym_path, - STATE(4868), 1, + STATE(4912), 1, sym_cell_path, - ACTIONS(1898), 11, + ACTIONS(2053), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -368983,22 +376094,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [177622] = 8, - ACTIONS(247), 1, + [175993] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1900), 1, + ACTIONS(2055), 1, anon_sym_DASH, - ACTIONS(7200), 1, + ACTIONS(7406), 1, anon_sym_DOT, - STATE(4442), 1, + STATE(4511), 1, sym_comment, - STATE(4612), 1, + STATE(4610), 1, aux_sym_cell_path_repeat1, - STATE(4849), 1, + STATE(4893), 1, sym_path, - STATE(4869), 1, + STATE(4913), 1, sym_cell_path, - ACTIONS(1902), 11, + ACTIONS(2057), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -369010,22 +376121,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [177657] = 8, - ACTIONS(247), 1, + [176028] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1904), 1, + ACTIONS(2059), 1, anon_sym_DASH, - ACTIONS(7200), 1, + ACTIONS(7406), 1, anon_sym_DOT, - STATE(4443), 1, + STATE(4512), 1, sym_comment, - STATE(4612), 1, + STATE(4610), 1, aux_sym_cell_path_repeat1, - STATE(4849), 1, + STATE(4893), 1, sym_path, - STATE(4879), 1, + STATE(4914), 1, sym_cell_path, - ACTIONS(1906), 11, + ACTIONS(2061), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -369037,65 +376148,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [177692] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7240), 1, - anon_sym_and, - ACTIONS(7276), 1, - sym__newline, - STATE(4324), 1, - aux_sym_shebang_repeat1, - STATE(4444), 1, - sym_comment, - ACTIONS(7274), 13, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_xor, - anon_sym_or, - [177723] = 6, + [176063] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1494), 1, - aux_sym_unquoted_token2, - ACTIONS(1780), 1, - anon_sym_LPAREN2, - ACTIONS(1786), 1, - sym__space, - STATE(4445), 1, - sym_comment, - ACTIONS(1778), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [177754] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6834), 1, - aux_sym_unquoted_token2, - STATE(4446), 1, + STATE(4513), 1, sym_comment, - ACTIONS(1572), 15, + ACTIONS(1672), 4, ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1670), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369107,17 +376170,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [177781] = 4, - ACTIONS(247), 1, + anon_sym_DOT_DOT2, + [176090] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5109), 1, + ACTIONS(2067), 1, anon_sym_DASH, - STATE(4447), 1, + ACTIONS(7406), 1, + anon_sym_DOT, + STATE(4514), 1, sym_comment, - ACTIONS(5107), 15, + STATE(4610), 1, + aux_sym_cell_path_repeat1, + STATE(4893), 1, + sym_path, + STATE(4915), 1, + sym_cell_path, + ACTIONS(2069), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -369127,50 +376196,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_GT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [177808] = 7, - ACTIONS(3), 1, + [176125] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7126), 1, + ACTIONS(2083), 1, + anon_sym_DASH, + ACTIONS(7406), 1, anon_sym_DOT, - STATE(4448), 1, + STATE(4515), 1, sym_comment, - STATE(4450), 1, + STATE(4610), 1, aux_sym_cell_path_repeat1, - STATE(4804), 1, + STATE(4893), 1, sym_path, - ACTIONS(1013), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1011), 11, + STATE(4916), 1, + sym_cell_path, + ACTIONS(2085), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [177841] = 6, - ACTIONS(3), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [176160] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4810), 1, - sym__space, - ACTIONS(7279), 1, - sym_long_flag_identifier, - ACTIONS(7281), 1, - anon_sym_EQ2, - STATE(4449), 1, + ACTIONS(7402), 1, + anon_sym_and, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(4516), 1, sym_comment, - ACTIONS(4808), 13, + ACTIONS(7447), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369183,65 +376247,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [177872] = 6, - ACTIONS(3), 1, + anon_sym_xor, + anon_sym_or, + [176189] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7283), 1, + ACTIONS(2087), 1, + anon_sym_DASH, + ACTIONS(7406), 1, anon_sym_DOT, - STATE(4804), 1, - sym_path, - ACTIONS(1017), 2, - ts_builtin_sym_end, - sym__space, - STATE(4450), 2, + STATE(4517), 1, sym_comment, + STATE(4610), 1, aux_sym_cell_path_repeat1, - ACTIONS(1015), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [177903] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1669), 1, - sym__space, - ACTIONS(6906), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7286), 1, - anon_sym_DOT, - STATE(4451), 1, - sym_comment, - ACTIONS(1667), 13, + STATE(4893), 1, + sym_path, + STATE(4917), 1, + sym_cell_path, + ACTIONS(2089), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [177934] = 4, - ACTIONS(247), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [176224] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5097), 1, + ACTIONS(2095), 1, anon_sym_DASH, - STATE(4452), 1, + ACTIONS(7406), 1, + anon_sym_DOT, + STATE(4518), 1, sym_comment, - ACTIONS(5095), 15, + STATE(4610), 1, + aux_sym_cell_path_repeat1, + STATE(4893), 1, + sym_path, + STATE(4918), 1, + sym_cell_path, + ACTIONS(2097), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -369251,24 +376301,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_GT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [177961] = 6, - ACTIONS(247), 1, + [176259] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7194), 1, + ACTIONS(7408), 1, anon_sym_and, - ACTIONS(7276), 1, + ACTIONS(7455), 1, sym__newline, - STATE(4328), 1, - aux_sym_shebang_repeat1, - STATE(4453), 1, + STATE(4519), 1, sym_comment, - ACTIONS(7274), 13, + STATE(4586), 1, + aux_sym_shebang_repeat1, + ACTIONS(7443), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -369282,13 +376328,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor, anon_sym_or, - [177992] = 3, - ACTIONS(247), 1, + [176290] = 6, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4454), 1, - sym_comment, - ACTIONS(2255), 16, + ACTIONS(7375), 1, + anon_sym_and, + ACTIONS(7455), 1, sym__newline, + STATE(4496), 1, + aux_sym_shebang_repeat1, + STATE(4520), 1, + sym_comment, + ACTIONS(7443), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -369300,22 +376351,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and, anon_sym_xor, anon_sym_or, - [178017] = 6, - ACTIONS(3), 1, + [176321] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2231), 1, - anon_sym_LPAREN2, - ACTIONS(2233), 1, - sym__space, - ACTIONS(2235), 1, - aux_sym_unquoted_token4, - STATE(4455), 1, + ACTIONS(7394), 1, + anon_sym_and, + ACTIONS(7396), 1, + anon_sym_xor, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(4521), 1, sym_comment, - ACTIONS(2229), 13, + ACTIONS(7447), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369328,19 +376377,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [178048] = 6, - ACTIONS(3), 1, + anon_sym_or, + [176352] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1072), 1, - sym__space, - ACTIONS(2225), 1, - anon_sym_LPAREN2, - ACTIONS(2227), 1, - aux_sym_unquoted_token4, - STATE(4456), 1, + ACTIONS(7402), 1, + anon_sym_and, + ACTIONS(7404), 1, + anon_sym_xor, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(4522), 1, sym_comment, - ACTIONS(1070), 13, + ACTIONS(7445), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369353,66 +376402,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [178079] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7288), 1, - anon_sym_DOT_DOT2, - STATE(4457), 1, - sym_comment, - ACTIONS(1072), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7290), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1070), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [178110] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7288), 1, - anon_sym_DOT_DOT2, - STATE(4458), 1, - sym_comment, - ACTIONS(7116), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7290), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7114), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [178141] = 4, - ACTIONS(3), 1, + anon_sym_or, + [176383] = 6, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4459), 1, + ACTIONS(7402), 1, + anon_sym_and, + ACTIONS(7404), 1, + anon_sym_xor, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(4523), 1, sym_comment, - ACTIONS(2255), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(2253), 14, + ACTIONS(7447), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369425,92 +376427,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_unquoted_token4, - [178168] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7292), 1, - anon_sym_DOT_DOT2, - STATE(4460), 1, - sym_comment, - ACTIONS(1997), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7294), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1991), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [178199] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7296), 1, - anon_sym_DOT_DOT2, - STATE(4461), 1, - sym_comment, - ACTIONS(2005), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7298), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1999), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [178230] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7300), 1, - anon_sym_DOT_DOT2, - STATE(4462), 1, - sym_comment, - ACTIONS(2013), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7302), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2007), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [178261] = 4, - ACTIONS(3), 1, + anon_sym_or, + [176414] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4463), 1, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(4524), 1, sym_comment, - ACTIONS(1669), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1667), 14, + ACTIONS(7392), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369523,100 +376448,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_unquoted_token2, - [178288] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1005), 1, - anon_sym_DASH, - ACTIONS(7200), 1, - anon_sym_DOT, - STATE(4464), 1, - sym_comment, - STATE(4611), 1, - sym_cell_path, - STATE(4612), 1, - aux_sym_cell_path_repeat1, - STATE(4849), 1, - sym_path, - ACTIONS(1007), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [178323] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7304), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7306), 1, - aux_sym__immediate_decimal_token2, - STATE(4465), 1, - sym_comment, - ACTIONS(1540), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(1542), 12, - anon_sym_in, - anon_sym_QMARK2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, - [178354] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(7240), 1, anon_sym_and, - ACTIONS(7247), 1, anon_sym_xor, - STATE(4373), 1, - aux_sym_shebang_repeat1, - STATE(4466), 1, - sym_comment, - ACTIONS(7274), 12, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_or, - [178387] = 7, - ACTIONS(247), 1, + [176441] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, + ACTIONS(3766), 1, sym__newline, - ACTIONS(7194), 1, + ACTIONS(7408), 1, anon_sym_and, - ACTIONS(7196), 1, + ACTIONS(7410), 1, anon_sym_xor, - STATE(4374), 1, + STATE(4504), 1, aux_sym_shebang_repeat1, - STATE(4467), 1, + STATE(4525), 1, sym_comment, - ACTIONS(7274), 12, + ACTIONS(7443), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -369629,91 +376477,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or, - [178420] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5602), 1, - anon_sym_DOT, - STATE(2632), 1, - aux_sym_cell_path_repeat1, - STATE(2655), 1, - sym_path, - STATE(4199), 1, - sym_cell_path, - STATE(4468), 1, - sym_comment, - ACTIONS(1005), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(1007), 10, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - [178455] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4469), 1, - sym_comment, - ACTIONS(1046), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1048), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [178482] = 3, - ACTIONS(247), 1, + [176474] = 7, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4470), 1, - sym_comment, - ACTIONS(4982), 16, + ACTIONS(3766), 1, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(7375), 1, anon_sym_and, + ACTIONS(7377), 1, anon_sym_xor, - anon_sym_or, - [178507] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2239), 1, - anon_sym_LPAREN2, - ACTIONS(2241), 1, - sym__space, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - STATE(4471), 1, + STATE(4522), 1, + aux_sym_shebang_repeat1, + STATE(4526), 1, sym_comment, - ACTIONS(2237), 13, - sym__newline, + ACTIONS(7443), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -369725,19 +376502,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [178538] = 6, + anon_sym_or, + [176507] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2239), 1, + ACTIONS(1558), 1, + aux_sym_unquoted_token2, + ACTIONS(2337), 1, anon_sym_LPAREN2, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - ACTIONS(2247), 1, + ACTIONS(2339), 1, sym__space, - STATE(4472), 1, + STATE(4527), 1, sym_comment, - ACTIONS(2245), 13, + ACTIONS(2335), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369751,14 +376528,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [178569] = 4, - ACTIONS(247), 1, + [176538] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4390), 1, + STATE(4524), 1, aux_sym_shebang_repeat1, - STATE(4473), 1, + STATE(4528), 1, sym_comment, - ACTIONS(7274), 15, + ACTIONS(7415), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369774,37 +376551,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [178596] = 4, - ACTIONS(3), 1, + [176565] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4474), 1, + ACTIONS(6985), 1, + aux_sym_unquoted_token2, + STATE(4529), 1, sym_comment, - ACTIONS(1677), 4, + ACTIONS(1640), 15, ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1675), 12, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - [178623] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4391), 1, - aux_sym_shebang_repeat1, - STATE(4475), 1, - sym_comment, - ACTIONS(7274), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369816,22 +376571,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_and, anon_sym_xor, anon_sym_or, - [178650] = 6, + [176592] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4783), 1, - sym__space, - ACTIONS(7308), 1, - anon_sym_EQ2, - ACTIONS(7310), 1, - sym_short_flag_identifier, - STATE(4476), 1, + STATE(4530), 1, sym_comment, - ACTIONS(4781), 13, + ACTIONS(1040), 2, + sym__space, + anon_sym_DOT, + ACTIONS(1038), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369845,41 +376596,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [178681] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7314), 1, - anon_sym_DASH, - STATE(4477), 1, - sym_comment, - ACTIONS(7312), 15, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [178708] = 6, - ACTIONS(247), 1, + anon_sym_QMARK2, + [176619] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7264), 1, - anon_sym_and, - ACTIONS(7268), 1, - anon_sym_xor, - ACTIONS(7318), 1, - anon_sym_or, - STATE(4478), 1, + STATE(4531), 1, sym_comment, - ACTIONS(7316), 13, + STATE(4539), 1, + aux_sym_shebang_repeat1, + ACTIONS(7415), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369892,19 +376617,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [178739] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7266), 1, anon_sym_and, - ACTIONS(7270), 1, anon_sym_xor, - ACTIONS(7320), 1, anon_sym_or, - STATE(4479), 1, + [176646] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + ACTIONS(4844), 1, + sym__space, + STATE(4532), 1, sym_comment, - ACTIONS(7316), 13, + STATE(7791), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4846), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369918,12 +376645,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [178770] = 3, - ACTIONS(247), 1, + [176677] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4480), 1, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + ACTIONS(4848), 1, + sym__space, + STATE(4533), 1, sym_comment, - ACTIONS(6674), 16, + STATE(7791), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4850), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369937,18 +376670,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [178795] = 4, + [176708] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(4481), 1, + ACTIONS(7266), 1, + anon_sym_DOT, + STATE(4534), 1, sym_comment, - ACTIONS(1661), 2, + STATE(4542), 1, + aux_sym_cell_path_repeat1, + STATE(4727), 1, + sym_path, + ACTIONS(1029), 2, + ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(1659), 14, + ACTIONS(1027), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369960,67 +376696,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_unquoted_token2, - [178822] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4482), 1, - sym_comment, - ACTIONS(1050), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1052), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [178849] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4483), 1, - sym_comment, - ACTIONS(1054), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - anon_sym_DOT, - ACTIONS(1056), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [178876] = 6, - ACTIONS(247), 1, + [176741] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7240), 1, + ACTIONS(7408), 1, anon_sym_and, - ACTIONS(7276), 1, + ACTIONS(7412), 1, sym__newline, - STATE(4394), 1, - aux_sym_shebang_repeat1, - STATE(4484), 1, + STATE(4535), 1, sym_comment, - ACTIONS(7274), 13, + STATE(4573), 1, + aux_sym_shebang_repeat1, + ACTIONS(7415), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -370034,18 +376721,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor, anon_sym_or, - [178907] = 6, - ACTIONS(247), 1, + [176772] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7194), 1, + ACTIONS(7375), 1, anon_sym_and, - ACTIONS(7276), 1, + ACTIONS(7412), 1, sym__newline, - STATE(4395), 1, + STATE(4416), 1, aux_sym_shebang_repeat1, - STATE(4485), 1, + STATE(4536), 1, sym_comment, - ACTIONS(7274), 13, + ACTIONS(7415), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -370059,19 +376746,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor, anon_sym_or, - [178938] = 6, - ACTIONS(3), 1, + [176803] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - ACTIONS(7324), 1, - sym__space, - STATE(4486), 1, - sym_comment, - STATE(7370), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7322), 13, + ACTIONS(3766), 1, sym__newline, + ACTIONS(7408), 1, + anon_sym_and, + ACTIONS(7410), 1, + anon_sym_xor, + STATE(4382), 1, + aux_sym_shebang_repeat1, + STATE(4537), 1, + sym_comment, + ACTIONS(7415), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -370083,21 +376771,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [178969] = 7, - ACTIONS(247), 1, + anon_sym_or, + [176836] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, + ACTIONS(3766), 1, sym__newline, - ACTIONS(7240), 1, + ACTIONS(7375), 1, anon_sym_and, - ACTIONS(7247), 1, + ACTIONS(7377), 1, anon_sym_xor, - STATE(4405), 1, + STATE(4384), 1, aux_sym_shebang_repeat1, - STATE(4487), 1, + STATE(4538), 1, sym_comment, - ACTIONS(7274), 12, + ACTIONS(7415), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -370110,20 +376798,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or, - [179002] = 7, - ACTIONS(247), 1, + [176869] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(7194), 1, - anon_sym_and, - ACTIONS(7196), 1, - anon_sym_xor, - STATE(4407), 1, + STATE(2498), 1, aux_sym_shebang_repeat1, - STATE(4488), 1, + STATE(4539), 1, sym_comment, - ACTIONS(7274), 12, + ACTIONS(7392), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -370135,18 +376818,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and, + anon_sym_xor, anon_sym_or, - [179035] = 4, - ACTIONS(3), 1, + [176896] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4489), 1, + STATE(4423), 1, + aux_sym_shebang_repeat1, + STATE(4540), 1, sym_comment, - ACTIONS(2143), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2141), 12, + ACTIONS(7443), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370158,23 +376840,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - [179062] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(7240), 1, + anon_sym_RPAREN, anon_sym_and, - ACTIONS(7247), 1, anon_sym_xor, - ACTIONS(7326), 1, anon_sym_or, - STATE(4490), 1, + [176923] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4541), 1, sym_comment, - STATE(4497), 1, - aux_sym_shebang_repeat1, - ACTIONS(7192), 11, + ACTIONS(1828), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1826), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -370186,17 +376865,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [179097] = 5, + anon_sym_RBRACE, + aux_sym_unquoted_token2, + [176950] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7328), 1, - anon_sym_QMARK2, - STATE(4491), 1, - sym_comment, - ACTIONS(1024), 2, - sym__space, + ACTIONS(7504), 1, anon_sym_DOT, - ACTIONS(1022), 13, + STATE(4727), 1, + sym_path, + ACTIONS(1033), 2, + ts_builtin_sym_end, + sym__space, + STATE(4542), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(1031), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370208,19 +376892,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [179126] = 5, + [176981] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7330), 1, - anon_sym_QMARK2, - STATE(4492), 1, - sym_comment, - ACTIONS(1030), 2, + ACTIONS(2248), 1, + anon_sym_LPAREN2, + ACTIONS(2250), 1, sym__space, - anon_sym_DOT, - ACTIONS(1028), 13, + ACTIONS(2252), 1, + aux_sym_unquoted_token2, + STATE(4543), 1, + sym_comment, + ACTIONS(2246), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370234,15 +376917,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [179155] = 4, - ACTIONS(3), 1, + [177012] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4493), 1, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(4544), 1, sym_comment, - ACTIONS(1723), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1721), 14, + ACTIONS(7447), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370255,20 +376937,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_unquoted_token2, - [179182] = 5, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [177039] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7124), 1, - aux_sym__immediate_decimal_token2, - STATE(4494), 1, + STATE(4545), 1, sym_comment, - ACTIONS(1669), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1667), 12, + ACTIONS(7205), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370280,21 +376957,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_unquoted_token2, - [179211] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7223), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, - ACTIONS(7229), 1, anon_sym_xor, - ACTIONS(7334), 1, anon_sym_or, - STATE(749), 1, + [177064] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(4478), 1, aux_sym_shebang_repeat1, - STATE(4495), 1, + STATE(4546), 1, sym_comment, - ACTIONS(7332), 12, + ACTIONS(7373), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370307,15 +376982,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [179244] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [177091] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1054), 1, + anon_sym_DASH, + STATE(4547), 1, + sym_comment, + ACTIONS(1056), 15, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_DOT, + [177118] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4496), 1, + ACTIONS(7507), 1, + anon_sym_QMARK2, + STATE(4548), 1, sym_comment, - ACTIONS(1740), 2, + ACTIONS(1044), 2, sym__space, - anon_sym_LPAREN2, - ACTIONS(1738), 14, + anon_sym_DOT, + ACTIONS(1042), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370329,22 +377032,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - aux_sym_unquoted_token2, - [179271] = 7, - ACTIONS(247), 1, + [177147] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7223), 1, + ACTIONS(7375), 1, anon_sym_and, - ACTIONS(7229), 1, - anon_sym_xor, - ACTIONS(7334), 1, - anon_sym_or, - STATE(749), 1, + ACTIONS(7455), 1, + sym__newline, + STATE(4427), 1, aux_sym_shebang_repeat1, - STATE(4497), 1, + STATE(4549), 1, sym_comment, - ACTIONS(7336), 12, - sym__newline, + ACTIONS(7443), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -370356,20 +377055,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [179304] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7227), 1, - anon_sym_and, - ACTIONS(7231), 1, anon_sym_xor, - ACTIONS(7338), 1, anon_sym_or, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(4498), 1, + [177178] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4550), 1, sym_comment, - ACTIONS(7336), 12, + ACTIONS(1080), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1078), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370381,23 +377079,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [179337] = 8, - ACTIONS(247), 1, + anon_sym_DOT_DOT2, + [177205] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, + STATE(4551), 1, + sym_comment, + ACTIONS(7240), 16, sym__newline, - ACTIONS(7240), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, - ACTIONS(7247), 1, anon_sym_xor, - ACTIONS(7326), 1, anon_sym_or, - STATE(4495), 1, + [177230] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(7408), 1, + anon_sym_and, + ACTIONS(7421), 1, + sym__newline, + STATE(4508), 1, aux_sym_shebang_repeat1, - STATE(4499), 1, + STATE(4552), 1, sym_comment, - ACTIONS(7340), 11, + ACTIONS(7373), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -370409,22 +377125,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [179372] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(7194), 1, - anon_sym_and, - ACTIONS(7196), 1, anon_sym_xor, - ACTIONS(7198), 1, anon_sym_or, - STATE(4500), 1, + [177261] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(4553), 1, sym_comment, - STATE(4510), 1, - aux_sym_shebang_repeat1, - ACTIONS(7340), 11, + ACTIONS(7205), 16, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -370436,15 +377145,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [179407] = 4, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [177286] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4501), 1, + ACTIONS(7509), 1, + anon_sym_QMARK2, + STATE(4554), 1, sym_comment, - ACTIONS(1044), 2, + ACTIONS(1050), 2, sym__space, anon_sym_DOT, - ACTIONS(1042), 14, + ACTIONS(1048), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370458,24 +377173,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_QMARK2, - [179434] = 8, - ACTIONS(247), 1, + [177315] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5602), 1, + ACTIONS(5996), 1, anon_sym_DOT, - STATE(2632), 1, - aux_sym_cell_path_repeat1, - STATE(2655), 1, + STATE(2752), 1, sym_path, - STATE(4502), 1, + STATE(2899), 1, + aux_sym_cell_path_repeat1, + STATE(4555), 1, sym_comment, - STATE(5117), 1, + STATE(5195), 1, sym_cell_path, - ACTIONS(7342), 2, + ACTIONS(7511), 2, anon_sym_GT, anon_sym_LT2, - ACTIONS(7344), 10, + ACTIONS(7513), 10, anon_sym_in, anon_sym_not_DASHin, anon_sym_starts_DASHwith, @@ -370486,18 +377200,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_BANG_TILDE, - [179469] = 6, + [177350] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1790), 1, + ACTIONS(4433), 1, anon_sym_LPAREN2, - ACTIONS(1798), 1, - aux_sym_unquoted_token2, - ACTIONS(2289), 1, + ACTIONS(7517), 1, sym__space, - STATE(4503), 1, + STATE(4556), 1, sym_comment, - ACTIONS(2287), 13, + STATE(7583), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7515), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370511,15 +377225,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [179500] = 4, + [177381] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(7519), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7521), 1, + aux_sym__immediate_decimal_token2, + STATE(4557), 1, + sym_comment, + ACTIONS(1528), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(1530), 12, + anon_sym_in, + anon_sym_QMARK2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, + [177412] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4504), 1, + STATE(4558), 1, sym_comment, - ACTIONS(1040), 2, + ACTIONS(1717), 2, sym__space, - anon_sym_DOT, - ACTIONS(1038), 14, + anon_sym_LPAREN2, + ACTIONS(1715), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370533,44 +377272,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_QMARK2, - [179527] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7346), 1, - anon_sym_DOT, - ACTIONS(7348), 1, - aux_sym__immediate_decimal_token2, - STATE(4505), 1, - sym_comment, - ACTIONS(1667), 3, - sym_identifier, - anon_sym_DASH, - aux_sym__unquoted_in_list_token2, - ACTIONS(1669), 11, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [179558] = 6, + aux_sym_unquoted_token2, + [177439] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1790), 1, - anon_sym_LPAREN2, - ACTIONS(1796), 1, - sym__space, - ACTIONS(1798), 1, - aux_sym_unquoted_token2, - STATE(4506), 1, + STATE(4559), 1, sym_comment, - ACTIONS(1788), 13, + ACTIONS(1056), 2, + sym__space, + anon_sym_DOT, + ACTIONS(1054), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370584,17 +377295,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [179589] = 4, - ACTIONS(3), 1, + anon_sym_QMARK2, + [177466] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4507), 1, + STATE(4560), 1, sym_comment, - ACTIONS(1060), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1058), 12, + ACTIONS(7240), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370606,18 +377313,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - [179616] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [177491] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4508), 1, + STATE(4561), 1, sym_comment, - ACTIONS(2031), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2029), 12, + ACTIONS(7205), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370629,16 +377335,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - [179643] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [177516] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4509), 1, + STATE(4398), 1, + aux_sym_shebang_repeat1, + STATE(4562), 1, sym_comment, - ACTIONS(1036), 2, - sym__space, - anon_sym_DOT, - ACTIONS(1034), 14, + ACTIONS(7382), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370651,22 +377360,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_QMARK2, - [179670] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7227), 1, anon_sym_and, - ACTIONS(7231), 1, anon_sym_xor, - ACTIONS(7338), 1, anon_sym_or, - STATE(749), 1, + [177543] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(4400), 1, aux_sym_shebang_repeat1, - STATE(4510), 1, + STATE(4563), 1, sym_comment, - ACTIONS(7332), 12, + ACTIONS(7382), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370679,18 +377383,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [179703] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7227), 1, anon_sym_and, - ACTIONS(7231), 1, anon_sym_xor, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(4511), 1, + anon_sym_or, + [177570] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(4564), 1, sym_comment, - ACTIONS(7233), 13, + ACTIONS(7240), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370703,14 +377404,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, anon_sym_or, - [179734] = 3, - ACTIONS(247), 1, + [177595] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4512), 1, + STATE(4565), 1, sym_comment, - ACTIONS(6997), 15, - ts_builtin_sym_end, + ACTIONS(7523), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370722,18 +377425,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - [179758] = 4, - ACTIONS(3), 1, + [177620] = 6, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4513), 1, + ACTIONS(7394), 1, + anon_sym_and, + ACTIONS(7396), 1, + anon_sym_xor, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(4566), 1, sym_comment, - ACTIONS(4882), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(4884), 13, + ACTIONS(7447), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370746,17 +377454,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [179784] = 5, - ACTIONS(3), 1, + anon_sym_or, + [177651] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7352), 1, - sym__space, - STATE(4514), 1, + ACTIONS(1893), 1, + anon_sym_DASH, + ACTIONS(7406), 1, + anon_sym_DOT, + STATE(4567), 1, sym_comment, - STATE(4572), 1, - aux_sym_command_repeat1, - ACTIONS(7350), 13, + STATE(4610), 1, + aux_sym_cell_path_repeat1, + STATE(4891), 1, + sym_cell_path, + STATE(4893), 1, + sym_path, + ACTIONS(1895), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [177686] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(7402), 1, + anon_sym_and, + ACTIONS(7404), 1, + anon_sym_xor, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(4568), 1, + sym_comment, + ACTIONS(7447), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370769,23 +377506,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [179812] = 7, - ACTIONS(247), 1, + anon_sym_or, + [177717] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7354), 1, + ACTIONS(7375), 1, + anon_sym_and, + ACTIONS(7421), 1, sym__newline, - STATE(715), 1, - aux_sym__pipe_separator, - STATE(4515), 1, - sym_comment, - STATE(5192), 1, + STATE(4516), 1, aux_sym_shebang_repeat1, - ACTIONS(7357), 3, + STATE(4569), 1, + sym_comment, + ACTIONS(7373), 13, anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2950), 9, + anon_sym_xor, + anon_sym_or, + [177748] = 7, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(7408), 1, + anon_sym_and, + ACTIONS(7410), 1, + anon_sym_xor, + STATE(4521), 1, + aux_sym_shebang_repeat1, + STATE(4570), 1, + sym_comment, + ACTIONS(7373), 12, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -370795,15 +377556,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [179844] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_or, + [177781] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4516), 1, + STATE(4571), 1, sym_comment, - ACTIONS(4892), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(4894), 13, + ACTIONS(7523), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370817,40 +377577,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [179870] = 6, - ACTIONS(247), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [177806] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7361), 1, + ACTIONS(1038), 1, anon_sym_DASH, - ACTIONS(7363), 1, - anon_sym_DOT_DOT2, - STATE(4517), 1, + STATE(4572), 1, sym_comment, - ACTIONS(7365), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7359), 11, + ACTIONS(1040), 15, anon_sym_EQ, sym_identifier, sym__newline, - anon_sym_PIPE, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + anon_sym_GT, anon_sym_DASH_DASH, - [179900] = 4, - ACTIONS(3), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_DOT, + [177833] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4518), 1, + ACTIONS(7394), 1, + anon_sym_and, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(4573), 1, sym_comment, - ACTIONS(1740), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1738), 12, + ACTIONS(7392), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370862,20 +377624,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_unquoted_token2, - [179926] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_xor, + anon_sym_or, + [177862] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7367), 1, - anon_sym_EQ2, - ACTIONS(7369), 1, - sym_short_flag_identifier, - STATE(4519), 1, + ACTIONS(7484), 1, + anon_sym_and, + STATE(4574), 1, sym_comment, - ACTIONS(4783), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4781), 11, + ACTIONS(7523), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370887,35 +377646,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [179956] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4520), 1, - sym_comment, - ACTIONS(1675), 2, - anon_sym_DASH, - anon_sym_DOT_DOT2, - ACTIONS(1677), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [179982] = 3, - ACTIONS(247), 1, + anon_sym_RBRACE, + anon_sym_xor, + anon_sym_or, + [177889] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4521), 1, + ACTIONS(7490), 1, + anon_sym_and, + STATE(4575), 1, sym_comment, - ACTIONS(2005), 15, - ts_builtin_sym_end, + ACTIONS(7523), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370927,63 +377669,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_xor, anon_sym_or, - [180006] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1070), 1, - anon_sym_DASH, - ACTIONS(7363), 1, - anon_sym_DOT_DOT2, - STATE(4522), 1, - sym_comment, - ACTIONS(7365), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1072), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [180036] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7371), 1, - aux_sym__immediate_decimal_token2, - STATE(4523), 1, - sym_comment, - ACTIONS(1721), 3, - sym_identifier, - anon_sym_DASH, - aux_sym__unquoted_in_list_token2, - ACTIONS(1723), 11, - anon_sym_EQ, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [180064] = 3, - ACTIONS(247), 1, + [177916] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4524), 1, + ACTIONS(7484), 1, + anon_sym_and, + ACTIONS(7486), 1, + anon_sym_xor, + STATE(4576), 1, sym_comment, - ACTIONS(2475), 15, - ts_builtin_sym_end, + ACTIONS(7523), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370995,40 +377694,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_or, - [180088] = 6, - ACTIONS(247), 1, + [177945] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1991), 1, - anon_sym_DASH, - ACTIONS(7373), 1, - anon_sym_DOT_DOT2, - STATE(4525), 1, + ACTIONS(7490), 1, + anon_sym_and, + ACTIONS(7492), 1, + anon_sym_xor, + STATE(4577), 1, sym_comment, - ACTIONS(7375), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1997), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(7523), 14, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [180118] = 3, - ACTIONS(247), 1, + anon_sym_RBRACE, + anon_sym_or, + [177974] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4526), 1, + STATE(4578), 1, sym_comment, - ACTIONS(6674), 15, - ts_builtin_sym_end, + ACTIONS(7523), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371040,43 +377738,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and, anon_sym_xor, anon_sym_or, - [180142] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7377), 1, - anon_sym_DOT, - ACTIONS(7379), 1, - aux_sym__immediate_decimal_token2, - STATE(4527), 1, - sym_comment, - ACTIONS(1518), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1520), 10, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [180172] = 4, - ACTIONS(3), 1, + [177999] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4528), 1, + STATE(4579), 1, sym_comment, - ACTIONS(1040), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT, - ACTIONS(1038), 12, + ACTIONS(7523), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371088,20 +377760,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_QMARK2, - [180198] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [178024] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - STATE(4529), 1, + ACTIONS(7484), 1, + anon_sym_and, + STATE(4580), 1, sym_comment, - STATE(7286), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7324), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7322), 11, + ACTIONS(7523), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371113,13 +377784,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [180228] = 3, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_xor, + anon_sym_or, + [178051] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4530), 1, + ACTIONS(7490), 1, + anon_sym_and, + STATE(4581), 1, sym_comment, - ACTIONS(2479), 15, - ts_builtin_sym_end, + ACTIONS(7523), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371131,43 +377807,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_xor, anon_sym_or, - [180252] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2007), 1, - anon_sym_DASH, - ACTIONS(7381), 1, - anon_sym_DOT_DOT2, - STATE(4531), 1, - sym_comment, - ACTIONS(7383), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2013), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [180282] = 5, - ACTIONS(3), 1, + [178078] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1572), 1, - sym__space, - ACTIONS(6872), 1, - aux_sym_unquoted_token2, - STATE(4532), 1, + ACTIONS(7484), 1, + anon_sym_and, + ACTIONS(7486), 1, + anon_sym_xor, + STATE(4582), 1, sym_comment, - ACTIONS(1560), 13, + ACTIONS(7523), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371181,13 +377834,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [180310] = 3, - ACTIONS(247), 1, + anon_sym_or, + [178107] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4533), 1, + ACTIONS(7490), 1, + anon_sym_and, + ACTIONS(7492), 1, + anon_sym_xor, + STATE(4583), 1, sym_comment, - ACTIONS(2483), 15, - ts_builtin_sym_end, + ACTIONS(7523), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371199,52 +377856,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_or, - [180334] = 17, - ACTIONS(247), 1, + [178136] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7385), 1, - sym_identifier, - ACTIONS(7387), 1, + ACTIONS(3766), 1, sym__newline, - ACTIONS(7389), 1, - anon_sym_PIPE, - ACTIONS(7391), 1, - anon_sym_DOLLAR, - ACTIONS(7393), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7395), 1, - anon_sym_DASH_DASH, - ACTIONS(7397), 1, - anon_sym_DASH, - STATE(4067), 1, - sym_param_long_flag, - STATE(4234), 1, - sym__param_name, - STATE(4534), 1, - sym_comment, - STATE(4874), 1, - aux_sym_parameter_parens_repeat1, - STATE(5085), 1, - sym_param_rest, - STATE(5094), 1, - sym_param_opt, - STATE(5095), 1, - sym_param_short_flag, - STATE(5255), 1, + ACTIONS(7408), 1, + anon_sym_and, + ACTIONS(7410), 1, + anon_sym_xor, + STATE(4428), 1, aux_sym_shebang_repeat1, - STATE(5403), 1, - sym_parameter, - [180386] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4535), 1, + STATE(4584), 1, sym_comment, - ACTIONS(2487), 15, - ts_builtin_sym_end, - sym__newline, + ACTIONS(7443), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -371255,46 +377883,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, + anon_sym_RPAREN, anon_sym_or, - [180410] = 6, - ACTIONS(247), 1, + [178169] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7399), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7401), 1, + ACTIONS(1717), 1, + sym__space, + ACTIONS(7048), 1, aux_sym__immediate_decimal_token2, - STATE(4536), 1, + ACTIONS(7525), 1, + anon_sym_DOT, + STATE(4585), 1, sym_comment, - ACTIONS(1540), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1542), 10, + ACTIONS(1715), 13, sym__newline, anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [180440] = 6, - ACTIONS(3), 1, + [178200] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1494), 1, - aux_sym_unquoted_token2, - ACTIONS(1780), 1, - anon_sym_LPAREN2, - STATE(4537), 1, + ACTIONS(7394), 1, + anon_sym_and, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(4586), 1, sym_comment, - ACTIONS(1786), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1778), 11, + ACTIONS(7445), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371306,15 +377931,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [180470] = 4, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_xor, + anon_sym_or, + [178229] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4538), 1, + STATE(4587), 1, sym_comment, - ACTIONS(2141), 2, + ACTIONS(1078), 2, anon_sym_DASH, anon_sym_DOT_DOT2, - ACTIONS(2143), 13, + ACTIONS(1080), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -371328,42 +377956,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [180496] = 6, - ACTIONS(3), 1, + [178255] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - STATE(4539), 1, - sym_comment, - STATE(7682), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4755), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4757), 11, + ACTIONS(7527), 1, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [180526] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7352), 1, - sym__space, - STATE(4540), 1, + STATE(727), 1, + aux_sym__pipe_separator, + STATE(4588), 1, sym_comment, - STATE(4603), 1, - aux_sym_command_repeat1, - ACTIONS(7403), 13, - sym__newline, + STATE(5265), 1, + aux_sym_shebang_repeat1, + ACTIONS(7530), 3, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(3015), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -371373,52 +377981,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [180554] = 13, - ACTIONS(3), 1, + [178287] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3241), 1, - anon_sym_DOLLAR, - ACTIONS(5784), 1, - anon_sym_LPAREN, - ACTIONS(7405), 1, - anon_sym_DQUOTE, - ACTIONS(7409), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(7411), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(7413), 1, - sym__unquoted_naive, - STATE(1975), 1, - sym__str_double_quotes, - STATE(2384), 1, - sym__inter_single_quotes, - STATE(2390), 1, - sym__inter_double_quotes, - STATE(4541), 1, - sym_comment, - ACTIONS(7407), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5123), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [180598] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - STATE(4542), 1, + ACTIONS(7532), 1, + anon_sym_and, + ACTIONS(7534), 1, + anon_sym_xor, + ACTIONS(7536), 1, + anon_sym_or, + STATE(4589), 1, sym_comment, - STATE(7682), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4759), 2, + ACTIONS(7482), 12, ts_builtin_sym_end, - sym__space, - ACTIONS(4761), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371430,105 +378005,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [180628] = 17, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7385), 1, - sym_identifier, - ACTIONS(7387), 1, - sym__newline, - ACTIONS(7391), 1, - anon_sym_DOLLAR, - ACTIONS(7393), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7395), 1, - anon_sym_DASH_DASH, - ACTIONS(7397), 1, - anon_sym_DASH, - ACTIONS(7415), 1, - anon_sym_RBRACK, - STATE(4067), 1, - sym_param_long_flag, - STATE(4234), 1, - sym__param_name, - STATE(4543), 1, - sym_comment, - STATE(4552), 1, - aux_sym_shebang_repeat1, - STATE(4956), 1, - aux_sym_parameter_parens_repeat1, - STATE(5085), 1, - sym_param_rest, - STATE(5094), 1, - sym_param_opt, - STATE(5095), 1, - sym_param_short_flag, - STATE(5403), 1, - sym_parameter, - [180680] = 17, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7385), 1, - sym_identifier, - ACTIONS(7387), 1, - sym__newline, - ACTIONS(7391), 1, - anon_sym_DOLLAR, - ACTIONS(7393), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7395), 1, - anon_sym_DASH_DASH, - ACTIONS(7397), 1, - anon_sym_DASH, - ACTIONS(7417), 1, - anon_sym_RPAREN, - STATE(4067), 1, - sym_param_long_flag, - STATE(4234), 1, - sym__param_name, - STATE(4544), 1, - sym_comment, - STATE(4625), 1, - aux_sym_shebang_repeat1, - STATE(4925), 1, - aux_sym_parameter_parens_repeat1, - STATE(5085), 1, - sym_param_rest, - STATE(5094), 1, - sym_param_opt, - STATE(5095), 1, - sym_param_short_flag, - STATE(5403), 1, - sym_parameter, - [180732] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7419), 1, - aux_sym__immediate_decimal_token2, - STATE(4545), 1, - sym_comment, - ACTIONS(1554), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(1556), 12, - anon_sym_in, - anon_sym_QMARK2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, - [180760] = 3, - ACTIONS(247), 1, + [178317] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4546), 1, + STATE(4590), 1, sym_comment, - ACTIONS(2025), 15, + ACTIONS(6839), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -371544,12 +378026,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [180784] = 3, - ACTIONS(247), 1, + [178341] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4547), 1, + ACTIONS(7538), 1, + anon_sym_and, + ACTIONS(7540), 1, + anon_sym_xor, + STATE(4591), 1, sym_comment, - ACTIONS(2013), 15, + ACTIONS(7523), 13, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -371562,19 +378048,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, anon_sym_or, - [180808] = 4, - ACTIONS(3), 1, + [178369] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4548), 1, + STATE(4592), 1, sym_comment, - ACTIONS(1036), 3, + ACTIONS(7523), 15, ts_builtin_sym_end, - sym__space, - anon_sym_DOT, - ACTIONS(1034), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371586,20 +378067,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_QMARK2, - [180834] = 6, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [178393] = 17, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(7542), 1, + sym_identifier, + ACTIONS(7544), 1, + sym__newline, + ACTIONS(7546), 1, + anon_sym_RBRACK, + ACTIONS(7548), 1, + anon_sym_DOLLAR, + ACTIONS(7550), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7552), 1, + anon_sym_DASH_DASH, + ACTIONS(7554), 1, + anon_sym_DASH, + STATE(4140), 1, + sym_param_long_flag, + STATE(4307), 1, + sym__param_name, + STATE(4593), 1, + sym_comment, + STATE(4966), 1, + aux_sym_parameter_parens_repeat1, + STATE(5203), 1, + sym_param_rest, + STATE(5209), 1, + sym_param_opt, + STATE(5210), 1, + sym_param_short_flag, + STATE(5350), 1, + aux_sym_shebang_repeat1, + STATE(5522), 1, + sym_parameter, + [178445] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2231), 1, - anon_sym_LPAREN2, - ACTIONS(2235), 1, - aux_sym_unquoted_token4, - STATE(4549), 1, + STATE(4594), 1, sym_comment, - ACTIONS(2233), 2, - ts_builtin_sym_end, + ACTIONS(4995), 2, sym__space, - ACTIONS(2229), 11, + anon_sym_LPAREN2, + ACTIONS(4997), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371611,19 +378125,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [180864] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [178471] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2239), 1, - anon_sym_LPAREN2, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - STATE(4550), 1, + ACTIONS(7538), 1, + anon_sym_and, + STATE(4595), 1, sym_comment, - ACTIONS(2241), 2, + ACTIONS(7523), 14, ts_builtin_sym_end, - sym__space, - ACTIONS(2237), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371635,19 +378147,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [180894] = 6, - ACTIONS(3), 1, + anon_sym_xor, + anon_sym_or, + [178497] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2239), 1, - anon_sym_LPAREN2, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - STATE(4551), 1, + STATE(4596), 1, sym_comment, - ACTIONS(2247), 2, + ACTIONS(2291), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(2245), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371659,48 +378167,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [180924] = 17, - ACTIONS(247), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [178521] = 17, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7385), 1, + ACTIONS(7542), 1, sym_identifier, - ACTIONS(7387), 1, + ACTIONS(7544), 1, sym__newline, - ACTIONS(7391), 1, + ACTIONS(7548), 1, anon_sym_DOLLAR, - ACTIONS(7393), 1, + ACTIONS(7550), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7395), 1, + ACTIONS(7552), 1, anon_sym_DASH_DASH, - ACTIONS(7397), 1, + ACTIONS(7554), 1, anon_sym_DASH, - ACTIONS(7421), 1, - anon_sym_RBRACK, - STATE(4067), 1, + ACTIONS(7556), 1, + anon_sym_RPAREN, + STATE(4140), 1, sym_param_long_flag, - STATE(4234), 1, + STATE(4307), 1, sym__param_name, - STATE(4552), 1, + STATE(4597), 1, sym_comment, - STATE(4947), 1, + STATE(4967), 1, aux_sym_parameter_parens_repeat1, - STATE(5085), 1, + STATE(5203), 1, sym_param_rest, - STATE(5094), 1, + STATE(5209), 1, sym_param_opt, - STATE(5095), 1, + STATE(5210), 1, sym_param_short_flag, - STATE(5255), 1, + STATE(5350), 1, aux_sym_shebang_repeat1, - STATE(5403), 1, + STATE(5522), 1, sym_parameter, - [180976] = 3, - ACTIONS(247), 1, + [178573] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4553), 1, + ACTIONS(1640), 1, + sym__space, + ACTIONS(7021), 1, + aux_sym_unquoted_token2, + STATE(4598), 1, sym_comment, - ACTIONS(5008), 15, - ts_builtin_sym_end, + ACTIONS(1628), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371712,21 +378226,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [181000] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [178601] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(7558), 1, + aux_sym__immediate_decimal_token2, + STATE(4599), 1, + sym_comment, + ACTIONS(1536), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(1538), 12, + anon_sym_in, + anon_sym_QMARK2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, + [178629] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7423), 1, - sym__space, - ACTIONS(7425), 1, - aux_sym_record_entry_token1, - STATE(4554), 1, + ACTIONS(2248), 1, + anon_sym_LPAREN2, + ACTIONS(2252), 1, + aux_sym_unquoted_token2, + STATE(4600), 1, sym_comment, - STATE(4572), 1, - aux_sym_command_repeat1, - ACTIONS(7350), 12, + ACTIONS(2250), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2246), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371738,17 +378275,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - [181030] = 4, - ACTIONS(3), 1, + [178659] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4555), 1, + STATE(4601), 1, sym_comment, - ACTIONS(1723), 3, + ACTIONS(7205), 15, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1721), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371760,20 +378293,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_unquoted_token2, - [181056] = 6, - ACTIONS(247), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [178683] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1999), 1, + STATE(4602), 1, + sym_comment, + ACTIONS(1670), 2, anon_sym_DASH, - ACTIONS(7427), 1, anon_sym_DOT_DOT2, - STATE(4556), 1, - sym_comment, - ACTIONS(7429), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2005), 11, + ACTIONS(1672), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -371785,17 +378316,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [181086] = 5, - ACTIONS(247), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [178709] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7431), 1, - anon_sym_and, - ACTIONS(7433), 1, - anon_sym_xor, - STATE(4557), 1, + STATE(4603), 1, sym_comment, - ACTIONS(7255), 13, + ACTIONS(1771), 3, ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1769), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371807,62 +378339,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_or, - [181114] = 3, - ACTIONS(247), 1, + aux_sym_unquoted_token2, + [178735] = 17, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4558), 1, - sym_comment, - ACTIONS(1997), 15, - ts_builtin_sym_end, + ACTIONS(7542), 1, + sym_identifier, + ACTIONS(7544), 1, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [181138] = 3, - ACTIONS(247), 1, + ACTIONS(7548), 1, + anon_sym_DOLLAR, + ACTIONS(7550), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7552), 1, + anon_sym_DASH_DASH, + ACTIONS(7554), 1, + anon_sym_DASH, + ACTIONS(7560), 1, + anon_sym_RBRACK, + STATE(4140), 1, + sym_param_long_flag, + STATE(4307), 1, + sym__param_name, + STATE(4604), 1, + sym_comment, + STATE(4960), 1, + aux_sym_parameter_parens_repeat1, + STATE(5203), 1, + sym_param_rest, + STATE(5209), 1, + sym_param_opt, + STATE(5210), 1, + sym_param_short_flag, + STATE(5350), 1, + aux_sym_shebang_repeat1, + STATE(5522), 1, + sym_parameter, + [178787] = 6, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4559), 1, + ACTIONS(7564), 1, + anon_sym_DASH, + ACTIONS(7566), 1, + anon_sym_DOT_DOT2, + STATE(4605), 1, sym_comment, - ACTIONS(2491), 15, - ts_builtin_sym_end, + ACTIONS(7568), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7562), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [181162] = 6, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [178817] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - STATE(4560), 1, + STATE(4606), 1, sym_comment, - STATE(7682), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4747), 2, + ACTIONS(2291), 3, ts_builtin_sym_end, sym__space, - ACTIONS(4749), 11, + anon_sym_LPAREN2, + ACTIONS(2289), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371874,19 +378420,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [181192] = 6, - ACTIONS(3), 1, + aux_sym_unquoted_token4, + [178843] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - STATE(4561), 1, + STATE(4607), 1, sym_comment, - STATE(7682), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4751), 2, + ACTIONS(7240), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(4753), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371898,19 +378439,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [181222] = 6, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [178867] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2225), 1, - anon_sym_LPAREN2, - ACTIONS(2227), 1, - aux_sym_unquoted_token4, - STATE(4562), 1, + ACTIONS(7532), 1, + anon_sym_and, + STATE(4608), 1, sym_comment, - ACTIONS(1072), 2, + ACTIONS(7523), 14, ts_builtin_sym_end, - sym__space, - ACTIONS(1070), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371922,12 +378462,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [181252] = 3, - ACTIONS(247), 1, + anon_sym_xor, + anon_sym_or, + [178893] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4563), 1, + ACTIONS(7538), 1, + anon_sym_and, + ACTIONS(7540), 1, + anon_sym_xor, + STATE(4609), 1, sym_comment, - ACTIONS(2495), 15, + ACTIONS(7523), 13, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -371940,41 +378486,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, anon_sym_or, - [181276] = 5, - ACTIONS(3), 1, + [178921] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7352), 1, - sym__space, - STATE(4540), 1, - aux_sym_command_repeat1, - STATE(4564), 1, + ACTIONS(1027), 1, + anon_sym_DASH, + ACTIONS(7406), 1, + anon_sym_DOT, + STATE(4610), 1, sym_comment, - ACTIONS(7435), 13, + STATE(4657), 1, + aux_sym_cell_path_repeat1, + STATE(4893), 1, + sym_path, + ACTIONS(1029), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [181304] = 4, - ACTIONS(247), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [178953] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4565), 1, + STATE(4611), 1, sym_comment, - ACTIONS(2029), 2, + ACTIONS(2105), 2, anon_sym_DASH, anon_sym_DOT_DOT2, - ACTIONS(2031), 13, + ACTIONS(2107), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -371988,15 +378534,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [181330] = 4, + [178979] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4566), 1, + STATE(4612), 1, sym_comment, - ACTIONS(1048), 2, + ACTIONS(1072), 2, sym__space, anon_sym_DOT, - ACTIONS(1046), 13, + ACTIONS(1070), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372010,13 +378556,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [181356] = 3, - ACTIONS(247), 1, + [179005] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4567), 1, + ACTIONS(7572), 1, + sym__space, + STATE(4613), 1, sym_comment, - ACTIONS(2499), 15, - ts_builtin_sym_end, + STATE(4668), 1, + aux_sym_command_repeat1, + ACTIONS(7570), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372028,61 +378577,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [181380] = 3, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [179033] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4568), 1, + ACTIONS(7574), 1, + aux_sym__immediate_decimal_token2, + STATE(4614), 1, sym_comment, - ACTIONS(2503), 15, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [181404] = 4, - ACTIONS(3), 1, + ACTIONS(1596), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(1598), 12, + anon_sym_in, + anon_sym_QMARK2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, + [179061] = 6, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4569), 1, - sym_comment, - ACTIONS(1052), 2, - sym__space, + ACTIONS(7576), 1, anon_sym_DOT, - ACTIONS(1050), 13, + ACTIONS(7578), 1, + aux_sym__immediate_decimal_token2, + STATE(4615), 1, + sym_comment, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1538), 10, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_RBRACE, - [181430] = 4, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [179091] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4570), 1, - sym_comment, - ACTIONS(1056), 2, + ACTIONS(7572), 1, sym__space, - anon_sym_DOT, - ACTIONS(1054), 13, + STATE(4616), 1, + sym_comment, + STATE(4629), 1, + aux_sym_command_repeat1, + ACTIONS(7580), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372096,18 +378649,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [181456] = 5, - ACTIONS(3), 1, + [179119] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7437), 1, - anon_sym_QMARK2, - STATE(4571), 1, + STATE(4617), 1, sym_comment, - ACTIONS(1024), 3, + ACTIONS(5159), 15, ts_builtin_sym_end, - sym__space, - anon_sym_DOT, - ACTIONS(1022), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372119,18 +378667,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [181484] = 5, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [179143] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7352), 1, - sym__space, - STATE(4572), 1, - sym_comment, - STATE(4603), 1, - aux_sym_command_repeat1, - ACTIONS(7439), 13, + ACTIONS(7582), 1, sym__newline, + STATE(727), 1, + aux_sym__pipe_separator, + STATE(4618), 1, + sym_comment, + STATE(5265), 1, + aux_sym_shebang_repeat1, + ACTIONS(7585), 3, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(3015), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -372140,42 +378695,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [181512] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7363), 1, - anon_sym_DOT_DOT2, - ACTIONS(7443), 1, - anon_sym_DASH, - STATE(4573), 1, - sym_comment, - ACTIONS(7365), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7441), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [181542] = 4, - ACTIONS(3), 1, + [179175] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4574), 1, + STATE(4619), 1, sym_comment, - ACTIONS(1669), 3, + ACTIONS(5151), 15, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1667), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372187,20 +378713,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_unquoted_token2, - [181568] = 6, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [179199] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1790), 1, - anon_sym_LPAREN2, - ACTIONS(1798), 1, + ACTIONS(7587), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7589), 1, + aux_sym__immediate_decimal_token2, + STATE(4620), 1, + sym_comment, + ACTIONS(1528), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - STATE(4575), 1, + ACTIONS(1530), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [179229] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(7532), 1, + anon_sym_and, + ACTIONS(7534), 1, + anon_sym_xor, + STATE(4621), 1, sym_comment, - ACTIONS(2289), 2, + ACTIONS(7523), 13, ts_builtin_sym_end, - sym__space, - ACTIONS(2287), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372212,19 +378762,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [181598] = 6, + anon_sym_or, + [179257] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7445), 1, - sym_long_flag_identifier, - ACTIONS(7447), 1, - anon_sym_EQ2, - STATE(4576), 1, + STATE(4622), 1, sym_comment, - ACTIONS(4810), 2, + ACTIONS(1828), 3, ts_builtin_sym_end, sym__space, - ACTIONS(4808), 11, + anon_sym_LPAREN2, + ACTIONS(1826), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372236,12 +378784,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [181628] = 3, - ACTIONS(247), 1, + aux_sym_unquoted_token2, + [179283] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4577), 1, + STATE(4623), 1, sym_comment, - ACTIONS(2255), 15, + ACTIONS(7205), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -372257,19 +378806,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [181652] = 6, + [179307] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1790), 1, + ACTIONS(2283), 1, anon_sym_LPAREN2, - ACTIONS(1798), 1, - aux_sym_unquoted_token2, - STATE(4578), 1, + ACTIONS(2287), 1, + aux_sym_unquoted_token4, + STATE(4624), 1, sym_comment, - ACTIONS(1796), 2, + ACTIONS(2285), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1788), 11, + ACTIONS(2281), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372281,21 +378830,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [181682] = 6, - ACTIONS(247), 1, + [179337] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2019), 1, - anon_sym_DASH, - ACTIONS(7449), 1, - anon_sym_DOT_DOT2, - STATE(4579), 1, + ACTIONS(7591), 1, + aux_sym__immediate_decimal_token2, + STATE(4625), 1, sym_comment, - ACTIONS(7451), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2025), 11, - anon_sym_EQ, + ACTIONS(1769), 3, sym_identifier, + anon_sym_DASH, + aux_sym__unquoted_in_list_token2, + ACTIONS(1771), 11, + anon_sym_EQ, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -372305,88 +378852,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [181712] = 17, - ACTIONS(247), 1, + anon_sym_LPAREN2, + [179365] = 17, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7385), 1, + ACTIONS(7542), 1, sym_identifier, - ACTIONS(7387), 1, + ACTIONS(7544), 1, sym__newline, - ACTIONS(7391), 1, + ACTIONS(7548), 1, anon_sym_DOLLAR, - ACTIONS(7393), 1, + ACTIONS(7550), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7395), 1, + ACTIONS(7552), 1, anon_sym_DASH_DASH, - ACTIONS(7397), 1, + ACTIONS(7554), 1, anon_sym_DASH, - ACTIONS(7453), 1, - anon_sym_RBRACK, - STATE(4067), 1, + ACTIONS(7593), 1, + anon_sym_RPAREN, + STATE(4140), 1, sym_param_long_flag, - STATE(4234), 1, + STATE(4307), 1, sym__param_name, - STATE(4580), 1, + STATE(4626), 1, sym_comment, - STATE(4621), 1, - aux_sym_shebang_repeat1, STATE(4961), 1, aux_sym_parameter_parens_repeat1, - STATE(5085), 1, + STATE(5203), 1, sym_param_rest, - STATE(5094), 1, + STATE(5209), 1, sym_param_opt, - STATE(5095), 1, + STATE(5210), 1, sym_param_short_flag, - STATE(5403), 1, - sym_parameter, - [181764] = 17, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7385), 1, - sym_identifier, - ACTIONS(7387), 1, - sym__newline, - ACTIONS(7391), 1, - anon_sym_DOLLAR, - ACTIONS(7393), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7395), 1, - anon_sym_DASH_DASH, - ACTIONS(7397), 1, - anon_sym_DASH, - ACTIONS(7455), 1, - anon_sym_RPAREN, - STATE(4067), 1, - sym_param_long_flag, - STATE(4234), 1, - sym__param_name, - STATE(4581), 1, - sym_comment, - STATE(4623), 1, + STATE(5350), 1, aux_sym_shebang_repeat1, - STATE(4964), 1, - aux_sym_parameter_parens_repeat1, - STATE(5085), 1, - sym_param_rest, - STATE(5094), 1, - sym_param_opt, - STATE(5095), 1, - sym_param_short_flag, - STATE(5403), 1, + STATE(5522), 1, sym_parameter, - [181816] = 6, + [179417] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7423), 1, - sym__space, - ACTIONS(7457), 1, - aux_sym_record_entry_token1, - STATE(4572), 1, - aux_sym_command_repeat1, - STATE(4582), 1, + ACTIONS(2273), 1, + anon_sym_LPAREN2, + ACTIONS(2275), 1, + aux_sym_unquoted_token4, + STATE(4627), 1, sym_comment, - ACTIONS(7350), 12, + ACTIONS(1092), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1090), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372398,20 +378912,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - [181846] = 6, - ACTIONS(3), 1, + [179447] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6988), 1, + ACTIONS(7558), 1, aux_sym__immediate_decimal_token2, - ACTIONS(7459), 1, + ACTIONS(7595), 1, anon_sym_DOT, - STATE(4583), 1, + STATE(4628), 1, sym_comment, - ACTIONS(1669), 2, - ts_builtin_sym_end, + ACTIONS(1536), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(1538), 11, + anon_sym_in, + anon_sym_QMARK2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + [179477] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7572), 1, sym__space, - ACTIONS(1667), 11, + STATE(4629), 1, + sym_comment, + STATE(4674), 1, + aux_sym_command_repeat1, + ACTIONS(7598), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372423,16 +378957,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [181876] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [179505] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4584), 1, + STATE(4630), 1, sym_comment, - ACTIONS(2255), 3, + ACTIONS(1040), 3, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(2253), 12, + anon_sym_DOT, + ACTIONS(1038), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372444,67 +378980,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_unquoted_token4, - [181902] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4585), 1, - sym_comment, - ACTIONS(2033), 2, - anon_sym_DASH, - anon_sym_DOT_DOT2, - ACTIONS(2035), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [181928] = 14, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7461), 1, - sym_identifier, - ACTIONS(7466), 1, - anon_sym_DOLLAR, - ACTIONS(7469), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7472), 1, - anon_sym_DASH_DASH, - ACTIONS(7475), 1, - anon_sym_DASH, - STATE(4067), 1, - sym_param_long_flag, - STATE(4234), 1, - sym__param_name, - STATE(5085), 1, - sym_param_rest, - STATE(5094), 1, - sym_param_opt, - STATE(5095), 1, - sym_param_short_flag, - STATE(5403), 1, - sym_parameter, - STATE(4586), 2, - sym_comment, - aux_sym_parameter_parens_repeat1, - ACTIONS(7464), 3, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - [181974] = 3, - ACTIONS(247), 1, + anon_sym_QMARK2, + [179531] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4587), 1, + STATE(4631), 1, sym_comment, - ACTIONS(5044), 15, + ACTIONS(7240), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -372520,12 +379002,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [181998] = 3, - ACTIONS(247), 1, + [179555] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4588), 1, + STATE(4632), 1, sym_comment, - ACTIONS(2507), 15, + ACTIONS(7523), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -372541,44 +379023,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [182022] = 13, + [179579] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2200), 1, - anon_sym_DQUOTE, - ACTIONS(2204), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2206), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4247), 1, - anon_sym_DOLLAR, - ACTIONS(4890), 1, - anon_sym_LPAREN, - ACTIONS(7478), 1, - sym__unquoted_naive, - STATE(4589), 1, - sym_comment, - STATE(4626), 1, - sym__str_double_quotes, - STATE(4866), 1, - sym__inter_single_quotes, - STATE(4872), 1, - sym__inter_double_quotes, - ACTIONS(2202), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4890), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [182066] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4590), 1, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + STATE(4633), 1, sym_comment, - ACTIONS(2511), 15, + STATE(7791), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4808), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(4810), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372590,25 +379047,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [182090] = 7, - ACTIONS(247), 1, + [179609] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7480), 1, - sym__newline, - STATE(715), 1, - aux_sym__pipe_separator, - STATE(4591), 1, + ACTIONS(7600), 1, + anon_sym_EQ2, + ACTIONS(7602), 1, + sym_short_flag_identifier, + STATE(4634), 1, sym_comment, - STATE(5192), 1, - aux_sym_shebang_repeat1, - ACTIONS(7483), 3, + ACTIONS(4927), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4925), 11, + sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2950), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -372618,54 +379071,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [182122] = 17, - ACTIONS(247), 1, + [179639] = 17, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7385), 1, + ACTIONS(7542), 1, sym_identifier, - ACTIONS(7387), 1, + ACTIONS(7544), 1, sym__newline, - ACTIONS(7391), 1, + ACTIONS(7548), 1, anon_sym_DOLLAR, - ACTIONS(7393), 1, + ACTIONS(7550), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7395), 1, + ACTIONS(7552), 1, anon_sym_DASH_DASH, - ACTIONS(7397), 1, + ACTIONS(7554), 1, anon_sym_DASH, - ACTIONS(7485), 1, - anon_sym_PIPE, - STATE(4067), 1, + ACTIONS(7604), 1, + anon_sym_RBRACK, + STATE(4140), 1, sym_param_long_flag, - STATE(4234), 1, + STATE(4307), 1, sym__param_name, - STATE(4534), 1, + STATE(4593), 1, aux_sym_shebang_repeat1, - STATE(4592), 1, + STATE(4635), 1, sym_comment, - STATE(4949), 1, + STATE(5055), 1, aux_sym_parameter_parens_repeat1, - STATE(5085), 1, + STATE(5203), 1, sym_param_rest, - STATE(5094), 1, + STATE(5209), 1, sym_param_opt, - STATE(5095), 1, + STATE(5210), 1, sym_param_short_flag, - STATE(5403), 1, + STATE(5522), 1, sym_parameter, - [182174] = 6, - ACTIONS(247), 1, + [179691] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7487), 1, - anon_sym_and, - ACTIONS(7489), 1, - anon_sym_xor, - ACTIONS(7491), 1, - anon_sym_or, - STATE(4593), 1, + ACTIONS(2359), 1, + sym__space, + ACTIONS(7606), 1, + anon_sym_LBRACK2, + STATE(4636), 1, sym_comment, - ACTIONS(7316), 12, - ts_builtin_sym_end, + ACTIONS(2355), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372677,19 +379127,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [182204] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [179719] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1552), 1, - aux_sym_unquoted_token2, - ACTIONS(2293), 1, - anon_sym_LPAREN2, - STATE(4594), 1, + STATE(4637), 1, sym_comment, - ACTIONS(2295), 2, + ACTIONS(1064), 3, ts_builtin_sym_end, sym__space, - ACTIONS(2291), 11, + anon_sym_DOT, + ACTIONS(1062), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372701,19 +379150,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [182234] = 6, - ACTIONS(247), 1, + anon_sym_QMARK2, + [179745] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7431), 1, - anon_sym_and, - ACTIONS(7433), 1, - anon_sym_xor, - ACTIONS(7493), 1, - anon_sym_or, - STATE(4595), 1, + ACTIONS(7566), 1, + anon_sym_DOT_DOT2, + ACTIONS(7610), 1, + anon_sym_DASH, + STATE(4638), 1, + sym_comment, + ACTIONS(7568), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7608), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [179775] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4639), 1, sym_comment, - ACTIONS(7316), 12, + ACTIONS(1717), 3, ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1715), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372725,37 +379196,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [182264] = 3, - ACTIONS(247), 1, + aux_sym_unquoted_token2, + [179801] = 6, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4596), 1, + ACTIONS(7566), 1, + anon_sym_DOT_DOT2, + ACTIONS(7614), 1, + anon_sym_DASH, + STATE(4640), 1, sym_comment, - ACTIONS(5016), 15, + ACTIONS(7568), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7612), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_else, - anon_sym_RBRACE, - anon_sym_catch, - [182288] = 5, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [179831] = 17, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(7542), 1, + sym_identifier, + ACTIONS(7544), 1, + sym__newline, + ACTIONS(7548), 1, + anon_sym_DOLLAR, + ACTIONS(7550), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7552), 1, + anon_sym_DASH_DASH, + ACTIONS(7554), 1, + anon_sym_DASH, + ACTIONS(7616), 1, + anon_sym_RPAREN, + STATE(4140), 1, + sym_param_long_flag, + STATE(4307), 1, + sym__param_name, + STATE(4597), 1, + aux_sym_shebang_repeat1, + STATE(4641), 1, + sym_comment, + STATE(5056), 1, + aux_sym_parameter_parens_repeat1, + STATE(5203), 1, + sym_param_rest, + STATE(5209), 1, + sym_param_opt, + STATE(5210), 1, + sym_param_short_flag, + STATE(5522), 1, + sym_parameter, + [179883] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2317), 1, + ACTIONS(7618), 1, sym__space, - ACTIONS(7495), 1, - anon_sym_LBRACK2, - STATE(4597), 1, + ACTIONS(7620), 1, + aux_sym_record_entry_token1, + STATE(4629), 1, + aux_sym_command_repeat1, + STATE(4642), 1, sym_comment, - ACTIONS(2313), 13, + ACTIONS(7580), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372767,15 +379279,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_RBRACE, - [182316] = 3, - ACTIONS(247), 1, + [179913] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4598), 1, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + STATE(4643), 1, sym_comment, - ACTIONS(2515), 15, + STATE(7791), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4812), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(4814), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372787,40 +379304,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [182340] = 3, - ACTIONS(247), 1, + [179943] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4599), 1, + ACTIONS(1558), 1, + aux_sym_unquoted_token2, + ACTIONS(2337), 1, + anon_sym_LPAREN2, + STATE(4644), 1, sym_comment, - ACTIONS(6997), 15, + ACTIONS(2339), 2, ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [182364] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4940), 1, sym__space, - ACTIONS(7497), 1, - anon_sym_EQ2, - STATE(4600), 1, - sym_comment, - ACTIONS(4942), 13, + ACTIONS(2335), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372832,41 +379328,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [182392] = 5, - ACTIONS(3), 1, + [179973] = 17, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4898), 1, - sym__space, - ACTIONS(7499), 1, - anon_sym_EQ2, - STATE(4601), 1, - sym_comment, - ACTIONS(4900), 13, + ACTIONS(7542), 1, + sym_identifier, + ACTIONS(7544), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(7548), 1, + anon_sym_DOLLAR, + ACTIONS(7550), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7552), 1, + anon_sym_DASH_DASH, + ACTIONS(7554), 1, + anon_sym_DASH, + ACTIONS(7622), 1, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [182420] = 4, + STATE(4140), 1, + sym_param_long_flag, + STATE(4307), 1, + sym__param_name, + STATE(4645), 1, + sym_comment, + STATE(4658), 1, + aux_sym_shebang_repeat1, + STATE(4953), 1, + aux_sym_parameter_parens_repeat1, + STATE(5203), 1, + sym_param_rest, + STATE(5209), 1, + sym_param_opt, + STATE(5210), 1, + sym_param_short_flag, + STATE(5522), 1, + sym_parameter, + [180025] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4602), 1, + STATE(4646), 1, sym_comment, - ACTIONS(1661), 3, + ACTIONS(1705), 3, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, - ACTIONS(1659), 12, + ACTIONS(1703), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372879,34 +379385,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, aux_sym_unquoted_token2, - [182446] = 4, - ACTIONS(3), 1, + [180051] = 14, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7503), 1, - sym__space, - STATE(4603), 2, + ACTIONS(7624), 1, + sym_identifier, + ACTIONS(7629), 1, + anon_sym_DOLLAR, + ACTIONS(7632), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7635), 1, + anon_sym_DASH_DASH, + ACTIONS(7638), 1, + anon_sym_DASH, + STATE(4140), 1, + sym_param_long_flag, + STATE(4307), 1, + sym__param_name, + STATE(5203), 1, + sym_param_rest, + STATE(5209), 1, + sym_param_opt, + STATE(5210), 1, + sym_param_short_flag, + STATE(5522), 1, + sym_parameter, + STATE(4647), 2, sym_comment, - aux_sym_command_repeat1, - ACTIONS(7501), 13, - sym__newline, - anon_sym_SEMI, + aux_sym_parameter_parens_repeat1, + ACTIONS(7627), 3, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [182472] = 3, - ACTIONS(247), 1, + [180097] = 17, + ACTIONS(249), 1, anon_sym_POUND, + ACTIONS(7542), 1, + sym_identifier, + ACTIONS(7544), 1, + sym__newline, + ACTIONS(7548), 1, + anon_sym_DOLLAR, + ACTIONS(7550), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7552), 1, + anon_sym_DASH_DASH, + ACTIONS(7554), 1, + anon_sym_DASH, + ACTIONS(7641), 1, + anon_sym_RBRACK, + STATE(4140), 1, + sym_param_long_flag, + STATE(4307), 1, + sym__param_name, STATE(4604), 1, + aux_sym_shebang_repeat1, + STATE(4648), 1, + sym_comment, + STATE(4955), 1, + aux_sym_parameter_parens_repeat1, + STATE(5203), 1, + sym_param_rest, + STATE(5209), 1, + sym_param_opt, + STATE(5210), 1, + sym_param_short_flag, + STATE(5522), 1, + sym_parameter, + [180149] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(4649), 1, sym_comment, - ACTIONS(7052), 15, + ACTIONS(7523), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -372922,12 +379473,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [182496] = 3, - ACTIONS(247), 1, + [180173] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4605), 1, + STATE(4650), 1, + sym_comment, + ACTIONS(2218), 2, + anon_sym_DASH, + anon_sym_DOT_DOT2, + ACTIONS(2220), 13, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [180199] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(7538), 1, + anon_sym_and, + STATE(4651), 1, sym_comment, - ACTIONS(6997), 15, + ACTIONS(7523), 14, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -372940,100 +379515,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, anon_sym_xor, anon_sym_or, - [182520] = 13, + [180225] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2081), 1, - anon_sym_DQUOTE, - ACTIONS(2085), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2087), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4283), 1, - anon_sym_DOLLAR, - ACTIONS(4908), 1, - anon_sym_LPAREN, - ACTIONS(7506), 1, - sym__unquoted_naive, - STATE(4501), 1, - sym__str_double_quotes, - STATE(4606), 1, - sym_comment, - STATE(4767), 1, - sym__inter_single_quotes, - STATE(4768), 1, - sym__inter_double_quotes, - ACTIONS(2083), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4662), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [182564] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7508), 1, - anon_sym_DOT, - ACTIONS(7511), 1, - aux_sym__immediate_decimal_token2, - STATE(4607), 1, - sym_comment, - ACTIONS(1518), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(1520), 11, - anon_sym_in, - anon_sym_QMARK2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - [182594] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7511), 1, - aux_sym__immediate_decimal_token2, - STATE(4608), 1, - sym_comment, - ACTIONS(1518), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(1520), 12, - anon_sym_in, + ACTIONS(7643), 1, anon_sym_QMARK2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, - [182622] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2299), 1, - anon_sym_LPAREN2, - ACTIONS(2303), 1, - aux_sym_unquoted_token2, - STATE(4609), 1, + STATE(4652), 1, sym_comment, - ACTIONS(2301), 2, + ACTIONS(1044), 3, ts_builtin_sym_end, sym__space, - ACTIONS(2297), 11, + anon_sym_DOT, + ACTIONS(1042), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373045,13 +379540,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [182652] = 3, - ACTIONS(247), 1, + [180253] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4610), 1, + ACTIONS(7645), 1, + anon_sym_QMARK2, + STATE(4653), 1, sym_comment, - ACTIONS(7052), 15, + ACTIONS(1050), 3, ts_builtin_sym_end, + sym__space, + anon_sym_DOT, + ACTIONS(1048), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373063,18 +379563,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [182676] = 4, - ACTIONS(247), 1, + [180281] = 6, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4611), 1, - sym_comment, - ACTIONS(1058), 2, + ACTIONS(2222), 1, anon_sym_DASH, + ACTIONS(7647), 1, anon_sym_DOT_DOT2, - ACTIONS(1060), 13, + STATE(4654), 1, + sym_comment, + ACTIONS(7649), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2228), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -373086,22 +379587,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [182702] = 7, - ACTIONS(247), 1, + [180311] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1011), 1, - anon_sym_DASH, - ACTIONS(7200), 1, - anon_sym_DOT, - STATE(4612), 1, + STATE(4655), 1, sym_comment, - STATE(4622), 1, - aux_sym_cell_path_repeat1, - STATE(4849), 1, - sym_path, - ACTIONS(1013), 11, + ACTIONS(2230), 2, + anon_sym_DASH, + anon_sym_DOT_DOT2, + ACTIONS(2232), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -373113,17 +379607,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [182734] = 5, - ACTIONS(247), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [180337] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7487), 1, - anon_sym_and, - ACTIONS(7489), 1, - anon_sym_xor, - STATE(4613), 1, + ACTIONS(7618), 1, + sym__space, + ACTIONS(7651), 1, + aux_sym_record_entry_token1, + STATE(4629), 1, + aux_sym_command_repeat1, + STATE(4656), 1, sym_comment, - ACTIONS(7255), 13, - ts_builtin_sym_end, + ACTIONS(7580), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373135,20 +379632,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_or, - [182762] = 5, - ACTIONS(247), 1, + anon_sym_RBRACE, + [180367] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7348), 1, - aux_sym__immediate_decimal_token2, - STATE(4614), 1, - sym_comment, - ACTIONS(1667), 3, - sym_identifier, + ACTIONS(1031), 1, anon_sym_DASH, - aux_sym__unquoted_in_list_token2, - ACTIONS(1669), 11, + ACTIONS(7653), 1, + anon_sym_DOT, + STATE(4893), 1, + sym_path, + STATE(4657), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(1033), 11, anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -373158,38 +379657,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [182790] = 6, - ACTIONS(247), 1, + [180397] = 17, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7363), 1, - anon_sym_DOT_DOT2, - ACTIONS(7515), 1, + ACTIONS(7542), 1, + sym_identifier, + ACTIONS(7544), 1, + sym__newline, + ACTIONS(7548), 1, + anon_sym_DOLLAR, + ACTIONS(7550), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7552), 1, + anon_sym_DASH_DASH, + ACTIONS(7554), 1, anon_sym_DASH, - STATE(4615), 1, + ACTIONS(7656), 1, + anon_sym_PIPE, + STATE(4140), 1, + sym_param_long_flag, + STATE(4307), 1, + sym__param_name, + STATE(4658), 1, + sym_comment, + STATE(4949), 1, + aux_sym_parameter_parens_repeat1, + STATE(5203), 1, + sym_param_rest, + STATE(5209), 1, + sym_param_opt, + STATE(5210), 1, + sym_param_short_flag, + STATE(5350), 1, + aux_sym_shebang_repeat1, + STATE(5522), 1, + sym_parameter, + [180449] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4659), 1, + sym_comment, + ACTIONS(1056), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT, + ACTIONS(1054), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_QMARK2, + [180475] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4660), 1, + sym_comment, + ACTIONS(1060), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT, + ACTIONS(1058), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_QMARK2, + [180501] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4945), 1, + sym__space, + ACTIONS(7658), 1, + anon_sym_EQ2, + STATE(4661), 1, + sym_comment, + ACTIONS(4947), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [180529] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4989), 1, + sym__space, + ACTIONS(7660), 1, + anon_sym_EQ2, + STATE(4662), 1, sym_comment, - ACTIONS(7365), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7513), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(4991), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [182820] = 3, - ACTIONS(247), 1, + anon_sym_RBRACE, + [180557] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4616), 1, + STATE(4663), 1, sym_comment, - ACTIONS(4982), 15, - ts_builtin_sym_end, + ACTIONS(5113), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373201,16 +379799,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [182844] = 3, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_else, + anon_sym_RBRACE, + anon_sym_catch, + [180581] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4617), 1, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + STATE(4664), 1, sym_comment, - ACTIONS(7052), 15, + STATE(7791), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4848), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(4850), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373222,15 +379827,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [182868] = 3, - ACTIONS(247), 1, + [180611] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4618), 1, + STATE(4665), 1, sym_comment, - ACTIONS(7255), 15, + ACTIONS(7205), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -373246,13 +379848,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [182892] = 3, - ACTIONS(247), 1, + [180635] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4619), 1, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + STATE(4666), 1, sym_comment, - ACTIONS(7255), 15, + STATE(7417), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7517), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(7515), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373264,17 +379872,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [182916] = 4, - ACTIONS(247), 1, + [180665] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7487), 1, + ACTIONS(7532), 1, anon_sym_and, - STATE(4620), 1, + STATE(4667), 1, sym_comment, - ACTIONS(7255), 14, + ACTIONS(7523), 14, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -373289,109 +379894,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_xor, anon_sym_or, - [182942] = 17, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7385), 1, - sym_identifier, - ACTIONS(7387), 1, - sym__newline, - ACTIONS(7391), 1, - anon_sym_DOLLAR, - ACTIONS(7393), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7395), 1, - anon_sym_DASH_DASH, - ACTIONS(7397), 1, - anon_sym_DASH, - ACTIONS(7517), 1, - anon_sym_RBRACK, - STATE(4067), 1, - sym_param_long_flag, - STATE(4234), 1, - sym__param_name, - STATE(4621), 1, - sym_comment, - STATE(4887), 1, - aux_sym_parameter_parens_repeat1, - STATE(5085), 1, - sym_param_rest, - STATE(5094), 1, - sym_param_opt, - STATE(5095), 1, - sym_param_short_flag, - STATE(5255), 1, - aux_sym_shebang_repeat1, - STATE(5403), 1, - sym_parameter, - [182994] = 6, - ACTIONS(247), 1, + [180691] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1015), 1, - anon_sym_DASH, - ACTIONS(7519), 1, - anon_sym_DOT, - STATE(4849), 1, - sym_path, - STATE(4622), 2, + ACTIONS(7572), 1, + sym__space, + STATE(4668), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1017), 11, - anon_sym_EQ, - sym_identifier, + STATE(4674), 1, + aux_sym_command_repeat1, + ACTIONS(7662), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [183024] = 17, - ACTIONS(247), 1, + anon_sym_RBRACE, + [180719] = 17, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7385), 1, + ACTIONS(7542), 1, sym_identifier, - ACTIONS(7387), 1, + ACTIONS(7544), 1, sym__newline, - ACTIONS(7391), 1, + ACTIONS(7548), 1, anon_sym_DOLLAR, - ACTIONS(7393), 1, + ACTIONS(7550), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7395), 1, + ACTIONS(7552), 1, anon_sym_DASH_DASH, - ACTIONS(7397), 1, + ACTIONS(7554), 1, anon_sym_DASH, - ACTIONS(7522), 1, + ACTIONS(7664), 1, anon_sym_RPAREN, - STATE(4067), 1, + STATE(4140), 1, sym_param_long_flag, - STATE(4234), 1, + STATE(4307), 1, sym__param_name, - STATE(4623), 1, + STATE(4626), 1, + aux_sym_shebang_repeat1, + STATE(4669), 1, sym_comment, - STATE(4895), 1, + STATE(4957), 1, aux_sym_parameter_parens_repeat1, - STATE(5085), 1, + STATE(5203), 1, sym_param_rest, - STATE(5094), 1, + STATE(5209), 1, sym_param_opt, - STATE(5095), 1, + STATE(5210), 1, sym_param_short_flag, - STATE(5255), 1, - aux_sym_shebang_repeat1, - STATE(5403), 1, + STATE(5522), 1, sym_parameter, - [183076] = 4, - ACTIONS(247), 1, + [180771] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7431), 1, - anon_sym_and, - STATE(4624), 1, + ACTIONS(2295), 1, + anon_sym_LPAREN2, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + STATE(4670), 1, sym_comment, - ACTIONS(7255), 14, + ACTIONS(2297), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2293), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373403,53 +379976,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_xor, - anon_sym_or, - [183102] = 17, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7385), 1, - sym_identifier, - ACTIONS(7387), 1, - sym__newline, - ACTIONS(7391), 1, - anon_sym_DOLLAR, - ACTIONS(7393), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7395), 1, - anon_sym_DASH_DASH, - ACTIONS(7397), 1, - anon_sym_DASH, - ACTIONS(7524), 1, - anon_sym_RPAREN, - STATE(4067), 1, - sym_param_long_flag, - STATE(4234), 1, - sym__param_name, - STATE(4625), 1, - sym_comment, - STATE(4986), 1, - aux_sym_parameter_parens_repeat1, - STATE(5085), 1, - sym_param_rest, - STATE(5094), 1, - sym_param_opt, - STATE(5095), 1, - sym_param_short_flag, - STATE(5255), 1, - aux_sym_shebang_repeat1, - STATE(5403), 1, - sym_parameter, - [183154] = 4, + [180801] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4626), 1, + ACTIONS(2295), 1, + anon_sym_LPAREN2, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + STATE(4671), 1, sym_comment, - ACTIONS(1044), 3, + ACTIONS(2305), 2, ts_builtin_sym_end, sym__space, - anon_sym_DOT, - ACTIONS(1042), 12, + ACTIONS(2303), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373461,49 +380000,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_QMARK2, - [183180] = 13, + [180831] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4003), 1, - anon_sym_DOLLAR, - ACTIONS(6456), 1, - anon_sym_LPAREN, - ACTIONS(7526), 1, - anon_sym_DQUOTE, - ACTIONS(7530), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(7532), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(7534), 1, - sym__unquoted_naive, - STATE(1675), 1, - sym__str_double_quotes, - STATE(1729), 1, - sym__inter_single_quotes, - STATE(1732), 1, - sym__inter_double_quotes, - STATE(4627), 1, - sym_comment, - ACTIONS(7528), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(4923), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [183224] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7487), 1, - anon_sym_and, - ACTIONS(7489), 1, - anon_sym_xor, - STATE(4628), 1, + STATE(4672), 1, sym_comment, - ACTIONS(7255), 13, - ts_builtin_sym_end, + ACTIONS(1068), 2, + sym__space, + anon_sym_DOT, + ACTIONS(1066), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373515,18 +380020,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_or, - [183252] = 5, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [180857] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7431), 1, - anon_sym_and, - ACTIONS(7433), 1, - anon_sym_xor, - STATE(4629), 1, + ACTIONS(7114), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7666), 1, + anon_sym_DOT, + STATE(4673), 1, sym_comment, - ACTIONS(7255), 13, + ACTIONS(1717), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(1715), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373538,14 +380046,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_or, - [183280] = 3, - ACTIONS(247), 1, + [180887] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4630), 1, + ACTIONS(7670), 1, + sym__space, + STATE(4674), 2, sym_comment, - ACTIONS(7255), 15, - ts_builtin_sym_end, + aux_sym_command_repeat1, + ACTIONS(7668), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373557,15 +380066,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - [183304] = 3, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [180913] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4631), 1, + STATE(4675), 1, sym_comment, - ACTIONS(7255), 15, + ACTIONS(7240), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -373581,15 +380089,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_or, - [183328] = 4, - ACTIONS(247), 1, + [180937] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7487), 1, - anon_sym_and, - STATE(4632), 1, + ACTIONS(1844), 1, + anon_sym_LPAREN2, + ACTIONS(1852), 1, + aux_sym_unquoted_token2, + STATE(4676), 1, sym_comment, - ACTIONS(7255), 14, + ACTIONS(2279), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2277), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373601,14 +380113,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_xor, - anon_sym_or, - [183354] = 3, - ACTIONS(247), 1, + [180967] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4633), 1, + STATE(4677), 1, sym_comment, - ACTIONS(7536), 15, + ACTIONS(4985), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(4987), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373621,17 +380134,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_else, anon_sym_RBRACE, - anon_sym_catch, - [183378] = 4, - ACTIONS(247), 1, + [180993] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7431), 1, + ACTIONS(7532), 1, anon_sym_and, - STATE(4634), 1, + ACTIONS(7534), 1, + anon_sym_xor, + STATE(4678), 1, sym_comment, - ACTIONS(7255), 14, + ACTIONS(7523), 13, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -373644,20 +380157,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_xor, anon_sym_or, - [183404] = 5, + [181021] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(2234), 1, + anon_sym_DASH, + ACTIONS(7673), 1, + anon_sym_DOT_DOT2, + STATE(4679), 1, + sym_comment, + ACTIONS(7675), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2240), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [181051] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(2113), 1, + anon_sym_DASH, + ACTIONS(7677), 1, + anon_sym_DOT_DOT2, + STATE(4680), 1, + sym_comment, + ACTIONS(7679), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2119), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [181081] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7538), 1, - anon_sym_QMARK2, - STATE(4635), 1, + ACTIONS(1844), 1, + anon_sym_LPAREN2, + ACTIONS(1852), 1, + aux_sym_unquoted_token2, + STATE(4681), 1, sym_comment, - ACTIONS(1030), 3, + ACTIONS(1850), 2, ts_builtin_sym_end, sym__space, - anon_sym_DOT, - ACTIONS(1028), 11, + ACTIONS(1842), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373669,14 +380230,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [183432] = 4, + [181111] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(2206), 1, + anon_sym_DASH, + ACTIONS(7681), 1, + anon_sym_DOT_DOT2, + STATE(4682), 1, + sym_comment, + ACTIONS(7683), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2212), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [181141] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5099), 1, - sym__space, - STATE(4636), 1, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + STATE(4683), 1, sym_comment, - ACTIONS(5101), 13, + STATE(7791), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4844), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4846), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373688,19 +380278,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [183457] = 5, - ACTIONS(3), 1, + [181171] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6939), 1, - aux_sym_unquoted_token2, - STATE(4637), 1, + STATE(4684), 1, sym_comment, - ACTIONS(1572), 2, + ACTIONS(7523), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(1560), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373712,14 +380296,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [183484] = 3, - ACTIONS(3), 1, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [181195] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4638), 1, + STATE(4685), 1, sym_comment, - ACTIONS(5101), 14, + ACTIONS(7685), 15, sym__newline, - sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -373730,22 +380316,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_else, anon_sym_RBRACE, - aux_sym_record_entry_token1, - [183507] = 6, - ACTIONS(247), 1, + anon_sym_catch, + [181219] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7043), 1, - anon_sym_DOT, - ACTIONS(7045), 1, - aux_sym__immediate_decimal_token2, - STATE(4639), 1, - sym_comment, - ACTIONS(1667), 2, - sym_identifier, + ACTIONS(1090), 1, anon_sym_DASH, - ACTIONS(1669), 10, + ACTIONS(7566), 1, + anon_sym_DOT_DOT2, + STATE(4686), 1, + sym_comment, + ACTIONS(7568), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1092), 11, anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -373755,14 +380344,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [183536] = 4, - ACTIONS(3), 1, + [181249] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7542), 1, - sym__space, - STATE(4640), 1, + ACTIONS(7538), 1, + anon_sym_and, + ACTIONS(7540), 1, + anon_sym_xor, + ACTIONS(7687), 1, + anon_sym_or, + STATE(4687), 1, sym_comment, - ACTIONS(7540), 13, + ACTIONS(7482), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373774,18 +380368,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [183561] = 4, + [181279] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4641), 1, + ACTIONS(1526), 1, + aux_sym_unquoted_token2, + ACTIONS(1790), 1, + anon_sym_LPAREN2, + STATE(4688), 1, sym_comment, - ACTIONS(1052), 3, + ACTIONS(1796), 2, ts_builtin_sym_end, sym__space, - anon_sym_DOT, - ACTIONS(1050), 11, + ACTIONS(1788), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373797,16 +380392,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [183586] = 4, + [181309] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4642), 1, + STATE(4689), 1, sym_comment, - ACTIONS(1056), 3, - ts_builtin_sym_end, + ACTIONS(1076), 2, sym__space, anon_sym_DOT, - ACTIONS(1054), 11, + ACTIONS(1074), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373818,63 +380412,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [183611] = 6, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [181335] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7544), 1, - anon_sym_DOT, - ACTIONS(7546), 1, - aux_sym__immediate_decimal_token2, - STATE(4643), 1, + ACTIONS(7689), 1, + sym_long_flag_identifier, + ACTIONS(7691), 1, + anon_sym_EQ2, + STATE(4690), 1, sym_comment, - ACTIONS(1518), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1520), 9, + ACTIONS(4939), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(4937), 11, sym__newline, anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [183640] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2297), 1, - anon_sym_DASH, - ACTIONS(2299), 1, - anon_sym_LPAREN2, - ACTIONS(2303), 1, - aux_sym__unquoted_in_list_token2, - STATE(4644), 1, - sym_comment, - ACTIONS(2301), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [183669] = 4, - ACTIONS(247), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [181365] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4645), 1, + ACTIONS(7441), 1, + aux_sym__immediate_decimal_token2, + STATE(4691), 1, sym_comment, - ACTIONS(1659), 2, + ACTIONS(1715), 3, + sym_identifier, anon_sym_DASH, aux_sym__unquoted_in_list_token2, - ACTIONS(1661), 12, + ACTIONS(1717), 11, anon_sym_EQ, - sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -373885,14 +380461,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LPAREN2, - [183694] = 4, - ACTIONS(3), 1, + [181393] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2418), 1, - sym__space, - STATE(4646), 1, + STATE(4692), 1, sym_comment, - ACTIONS(2416), 13, + ACTIONS(5155), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373904,38 +380479,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [183719] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4647), 1, - sym_comment, - ACTIONS(1518), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(1520), 12, - anon_sym_in, - anon_sym_QMARK2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, - [183744] = 4, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + [181417] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2452), 1, + ACTIONS(7693), 1, + sym__newline, + ACTIONS(7696), 1, sym__space, - STATE(4648), 1, + STATE(4693), 2, sym_comment, - ACTIONS(2450), 13, - sym__newline, + aux_sym__command_parenthesized_repeat1, + ACTIONS(7699), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -373947,38 +380504,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [183769] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5441), 1, - anon_sym_LPAREN2, - ACTIONS(7550), 1, - anon_sym_DASH, - STATE(4649), 1, - sym_comment, - STATE(7567), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7548), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [183798] = 4, + [181444] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7554), 1, + ACTIONS(2069), 1, sym__space, - STATE(4650), 1, + STATE(4694), 1, sym_comment, - ACTIONS(7552), 13, + ACTIONS(2067), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373992,17 +380525,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [183823] = 5, - ACTIONS(247), 1, + [181469] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7556), 1, - anon_sym_QMARK2, - STATE(4651), 1, + ACTIONS(7701), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7703), 1, + aux_sym__immediate_decimal_token2, + STATE(4695), 1, sym_comment, - ACTIONS(1022), 2, + ACTIONS(1528), 3, anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1024), 11, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1530), 9, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [181498] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(4696), 1, + sym_comment, + ACTIONS(1769), 2, + anon_sym_DASH, + aux_sym__unquoted_in_list_token2, + ACTIONS(1771), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -374014,17 +380568,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [183850] = 5, - ACTIONS(247), 1, + anon_sym_LPAREN2, + [181523] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7558), 1, + ACTIONS(7705), 1, anon_sym_QMARK2, - STATE(4652), 1, + STATE(4697), 1, sym_comment, - ACTIONS(1028), 2, + ACTIONS(1042), 2, anon_sym_DASH, anon_sym_DOT, - ACTIONS(1030), 11, + ACTIONS(1044), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -374036,18 +380591,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [183877] = 6, - ACTIONS(247), 1, + [181550] = 14, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1790), 1, + ACTIONS(3970), 1, + anon_sym_DOLLAR, + ACTIONS(7707), 1, + sym__newline, + ACTIONS(7709), 1, + sym__space, + ACTIONS(7711), 1, + anon_sym_DASH_DASH, + ACTIONS(7713), 1, + anon_sym_DASH, + ACTIONS(7715), 1, + anon_sym_LBRACE, + STATE(1680), 1, + sym_block, + STATE(1686), 1, + sym_val_closure, + STATE(4698), 1, + sym_comment, + STATE(5730), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(7467), 1, + sym__flag, + STATE(717), 2, + sym__blosure, + sym_val_variable, + STATE(4826), 2, + sym_short_flag, + sym_long_flag, + [181595] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5518), 1, anon_sym_LPAREN2, - ACTIONS(1798), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2287), 1, + ACTIONS(7564), 1, anon_sym_DASH, - STATE(4653), 1, + STATE(4699), 1, sym_comment, - ACTIONS(2289), 11, + STATE(7525), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7562), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -374059,18 +380645,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [183906] = 6, - ACTIONS(247), 1, + [181624] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7560), 1, + ACTIONS(7717), 1, + ts_builtin_sym_end, + ACTIONS(7719), 1, + sym__space, + STATE(4700), 1, + sym_comment, + STATE(4728), 1, + aux_sym_command_repeat1, + ACTIONS(7570), 11, sym__newline, - ACTIONS(7565), 1, - anon_sym_else, - STATE(4654), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [181653] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2432), 1, + sym__space, + STATE(4701), 1, sym_comment, - STATE(4734), 1, - aux_sym_shebang_repeat1, - ACTIONS(7563), 11, + ACTIONS(2430), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -374082,18 +380688,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [183935] = 6, - ACTIONS(247), 1, + anon_sym_RBRACE, + [181678] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3067), 1, + ACTIONS(7721), 1, + anon_sym_QMARK2, + STATE(4702), 1, + sym_comment, + ACTIONS(1048), 2, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(1050), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - ACTIONS(7567), 1, - anon_sym_else, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(4655), 1, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [181705] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7725), 1, + sym__space, + STATE(4703), 1, sym_comment, - ACTIONS(1315), 11, + ACTIONS(7723), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -374105,18 +380731,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [183964] = 6, - ACTIONS(247), 1, + anon_sym_RBRACE, + [181730] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3067), 1, + ACTIONS(2049), 1, + sym__space, + STATE(4704), 1, + sym_comment, + ACTIONS(2047), 13, sym__newline, - ACTIONS(7570), 1, - anon_sym_catch, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(4656), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [181755] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3970), 1, + anon_sym_DOLLAR, + ACTIONS(7707), 1, + sym__newline, + ACTIONS(7709), 1, + sym__space, + ACTIONS(7711), 1, + anon_sym_DASH_DASH, + ACTIONS(7713), 1, + anon_sym_DASH, + ACTIONS(7715), 1, + anon_sym_LBRACE, + STATE(1680), 1, + sym_block, + STATE(1686), 1, + sym_val_closure, + STATE(4705), 1, + sym_comment, + STATE(5730), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(7467), 1, + sym__flag, + STATE(714), 2, + sym__blosure, + sym_val_variable, + STATE(4826), 2, + sym_short_flag, + sym_long_flag, + [181800] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5047), 1, + sym__space, + STATE(4706), 1, sym_comment, - ACTIONS(1315), 11, + ACTIONS(5049), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -374128,58 +380804,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [183993] = 4, - ACTIONS(247), 1, + anon_sym_RBRACE, + [181825] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4657), 1, + ACTIONS(5067), 1, + sym__space, + STATE(4707), 1, sym_comment, - ACTIONS(1667), 2, - anon_sym_DASH, - aux_sym__unquoted_in_list_token2, - ACTIONS(1669), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(5069), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [184018] = 6, - ACTIONS(247), 1, + anon_sym_RBRACE, + [181850] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7573), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7575), 1, - aux_sym__immediate_decimal_token2, - STATE(4658), 1, + ACTIONS(2228), 1, + sym__space, + STATE(4708), 1, sym_comment, - ACTIONS(1540), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1542), 9, - ts_builtin_sym_end, + ACTIONS(2222), 13, sym__newline, anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [184047] = 4, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [181875] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2475), 1, + ACTIONS(2504), 1, sym__space, - STATE(4659), 1, + STATE(4709), 1, sym_comment, - ACTIONS(2473), 13, + ACTIONS(2502), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374193,18 +380868,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [184072] = 6, - ACTIONS(247), 1, + [181900] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5441), 1, + ACTIONS(5518), 1, anon_sym_LPAREN2, - ACTIONS(7579), 1, + ACTIONS(7729), 1, anon_sym_DASH, - STATE(4660), 1, + STATE(4710), 1, sym_comment, - STATE(7567), 1, + STATE(7657), 1, sym__expr_parenthesized_immediate, - ACTIONS(7577), 11, + ACTIONS(7727), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -374216,18 +380891,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [184101] = 6, - ACTIONS(247), 1, + [181929] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7581), 1, - sym__newline, - ACTIONS(7586), 1, - anon_sym_else, - STATE(4661), 1, + ACTIONS(2541), 1, + sym__space, + STATE(4711), 1, sym_comment, - STATE(4712), 1, - aux_sym_shebang_repeat1, - ACTIONS(7584), 11, + ACTIONS(2539), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -374239,16 +380911,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [184130] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [181954] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7590), 1, - sym__space, - STATE(4662), 1, - sym_comment, - ACTIONS(7588), 13, + ACTIONS(7731), 1, sym__newline, + STATE(726), 1, + aux_sym__pipe_separator, + STATE(4712), 1, + sym_comment, + STATE(5265), 1, + aux_sym_shebang_repeat1, + ACTIONS(7734), 2, anon_sym_SEMI, + anon_sym_RPAREN, + ACTIONS(3015), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -374258,21 +380936,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [184155] = 6, - ACTIONS(247), 1, + [181985] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3067), 1, + ACTIONS(7527), 1, sym__newline, - ACTIONS(7592), 1, - anon_sym_else, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(4663), 1, + STATE(727), 1, + aux_sym__pipe_separator, + STATE(4713), 1, sym_comment, - ACTIONS(1315), 11, + STATE(5265), 1, + aux_sym_shebang_repeat1, + ACTIONS(7530), 2, + ts_builtin_sym_end, anon_sym_SEMI, + ACTIONS(3015), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -374282,14 +380960,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [184184] = 3, - ACTIONS(247), 1, + [182016] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4664), 1, - sym_comment, - ACTIONS(7536), 14, + ACTIONS(7719), 1, + sym__space, + ACTIONS(7736), 1, ts_builtin_sym_end, + STATE(4714), 1, + sym_comment, + STATE(4762), 1, + aux_sym_command_repeat1, + ACTIONS(7580), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374301,16 +380983,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_else, - anon_sym_catch, - [184207] = 4, + [182045] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(4715), 1, + sym_comment, + ACTIONS(1826), 2, + anon_sym_DASH, + aux_sym__unquoted_in_list_token2, + ACTIONS(1828), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [182070] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2519), 1, + ACTIONS(2400), 1, sym__space, - STATE(4665), 1, + STATE(4716), 1, sym_comment, - ACTIONS(2517), 13, + ACTIONS(2398), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374324,15 +381025,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [184232] = 4, - ACTIONS(3), 1, + [182095] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1850), 1, - sym__space, - STATE(4666), 1, - sym_comment, - ACTIONS(1848), 13, + ACTIONS(5598), 1, sym__newline, + ACTIONS(7738), 1, + anon_sym_else, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(4717), 1, + sym_comment, + ACTIONS(1351), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -374344,15 +381048,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [184257] = 4, + [182124] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5103), 1, + ACTIONS(1092), 1, sym__space, - STATE(4667), 1, + STATE(4718), 1, sym_comment, - ACTIONS(5105), 13, + ACTIONS(1090), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374366,14 +381069,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [184282] = 4, - ACTIONS(3), 1, + [182149] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1997), 1, - sym__space, - STATE(4668), 1, + STATE(4719), 1, sym_comment, - ACTIONS(1991), 13, + ACTIONS(7685), 14, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374385,16 +381087,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [184307] = 4, + anon_sym_else, + anon_sym_catch, + [182172] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2005), 1, + ACTIONS(5572), 1, sym__space, - STATE(4669), 1, + STATE(4720), 1, sym_comment, - ACTIONS(1999), 13, + ACTIONS(5570), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374408,18 +381110,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [184332] = 6, - ACTIONS(247), 1, + [182197] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1788), 1, + ACTIONS(7156), 1, + anon_sym_DOT, + ACTIONS(7158), 1, + aux_sym__immediate_decimal_token2, + STATE(4721), 1, + sym_comment, + ACTIONS(1715), 2, + sym_identifier, anon_sym_DASH, - ACTIONS(1790), 1, + ACTIONS(1717), 10, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [182226] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5518), 1, anon_sym_LPAREN2, - ACTIONS(1798), 1, - aux_sym__unquoted_in_list_token2, - STATE(4670), 1, + ACTIONS(7743), 1, + anon_sym_DASH, + STATE(4722), 1, sym_comment, - ACTIONS(1796), 11, + STATE(7657), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7741), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -374431,14 +381156,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [184361] = 4, + [182255] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2013), 1, + ACTIONS(2412), 1, sym__space, - STATE(4671), 1, + STATE(4723), 1, sym_comment, - ACTIONS(2007), 13, + ACTIONS(2410), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374452,14 +381177,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [184386] = 3, + [182280] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4672), 1, + ACTIONS(1911), 1, + sym__space, + STATE(4724), 1, sym_comment, - ACTIONS(5134), 14, + ACTIONS(1909), 13, sym__newline, - sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -374470,63 +381196,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_RBRACE, - aux_sym_record_entry_token1, - [184409] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4673), 1, - sym_comment, - ACTIONS(1540), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(1542), 12, - anon_sym_in, - anon_sym_QMARK2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, - [184434] = 5, + [182305] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7595), 1, - anon_sym_EQ2, - STATE(4674), 1, - sym_comment, - ACTIONS(4898), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4900), 11, + ACTIONS(7745), 1, sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [184461] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7597), 1, - ts_builtin_sym_end, - ACTIONS(7599), 1, + ACTIONS(7747), 1, sym__space, - STATE(4675), 2, + STATE(4693), 1, + aux_sym__command_parenthesized_repeat1, + STATE(4725), 1, sym_comment, - aux_sym_command_repeat1, - ACTIONS(7501), 11, - sym__newline, + ACTIONS(7749), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -374537,14 +381220,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [184488] = 4, + anon_sym_RPAREN, + [182334] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1906), 1, + ACTIONS(2444), 1, sym__space, - STATE(4676), 1, + STATE(4726), 1, sym_comment, - ACTIONS(1904), 13, + ACTIONS(2442), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374558,14 +381242,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [184513] = 4, + [182359] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7604), 1, - sym__space, - STATE(4677), 1, + STATE(4727), 1, sym_comment, - ACTIONS(7602), 13, + ACTIONS(1076), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT, + ACTIONS(1074), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374577,16 +381263,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [184538] = 4, + [182384] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2390), 1, + ACTIONS(7719), 1, sym__space, - STATE(4678), 1, + ACTIONS(7751), 1, + ts_builtin_sym_end, + STATE(4728), 1, sym_comment, - ACTIONS(2388), 13, + STATE(4789), 1, + aux_sym_command_repeat1, + ACTIONS(7662), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374598,16 +381286,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [184563] = 4, + [182413] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4990), 1, + ACTIONS(2508), 1, sym__space, - STATE(4679), 1, + STATE(4729), 1, sym_comment, - ACTIONS(4992), 13, + ACTIONS(2506), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374621,15 +381307,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [184588] = 4, - ACTIONS(247), 1, + [182438] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4680), 1, - sym_comment, - ACTIONS(1042), 2, + ACTIONS(7755), 1, + anon_sym_LT, + ACTIONS(7757), 1, anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1044), 12, + STATE(4730), 1, + sym_comment, + ACTIONS(7753), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -374639,18 +381326,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_QMARK2, - [184613] = 4, + [182465] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4994), 1, - sym__space, - STATE(4681), 1, + STATE(4731), 1, sym_comment, - ACTIONS(4996), 13, + ACTIONS(5570), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -374661,17 +381347,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_RBRACE, - [184638] = 4, - ACTIONS(247), 1, + aux_sym_record_entry_token1, + [182488] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4682), 1, + STATE(4732), 1, sym_comment, - ACTIONS(1038), 2, + ACTIONS(1703), 2, anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1040), 12, + aux_sym__unquoted_in_list_token2, + ACTIONS(1705), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -374683,16 +381369,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_QMARK2, - [184663] = 4, - ACTIONS(247), 1, + anon_sym_LPAREN2, + [182513] = 6, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4683), 1, + ACTIONS(7761), 1, + anon_sym_AT, + ACTIONS(7763), 1, + anon_sym_DASH, + STATE(4733), 1, sym_comment, - ACTIONS(1034), 2, + STATE(5081), 1, + sym_param_cmd, + ACTIONS(7759), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [182542] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(7761), 1, + anon_sym_AT, + ACTIONS(7767), 1, anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1036), 12, + STATE(4734), 1, + sym_comment, + STATE(5075), 1, + sym_param_cmd, + ACTIONS(7765), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -374704,46 +381416,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_QMARK2, - [184688] = 14, + [182571] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3881), 1, - anon_sym_DOLLAR, - ACTIONS(7606), 1, - sym__newline, - ACTIONS(7608), 1, + ACTIONS(2436), 1, sym__space, - ACTIONS(7610), 1, - anon_sym_DASH_DASH, - ACTIONS(7612), 1, + STATE(4735), 1, + sym_comment, + ACTIONS(2434), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [182596] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(7757), 1, anon_sym_DASH, - ACTIONS(7614), 1, - anon_sym_LBRACE, - STATE(1693), 1, - sym_block, - STATE(1694), 1, - sym_val_closure, - STATE(4684), 1, + ACTIONS(7769), 1, + anon_sym_LT, + STATE(4736), 1, sym_comment, - STATE(5564), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(7236), 1, - sym__flag, - STATE(703), 2, - sym__blosure, - sym_val_variable, - STATE(4716), 2, - sym_short_flag, - sym_long_flag, - [184733] = 4, - ACTIONS(3), 1, + ACTIONS(7753), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [182623] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1572), 1, - sym__space, - STATE(4685), 1, + STATE(4737), 1, sym_comment, - ACTIONS(1560), 13, + ACTIONS(5113), 14, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374755,16 +381477,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [184758] = 4, + anon_sym_else, + anon_sym_catch, + [182646] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2330), 1, + ACTIONS(2522), 1, sym__space, - STATE(4686), 1, + STATE(4738), 1, sym_comment, - ACTIONS(2328), 13, + ACTIONS(2520), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374778,14 +381500,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [184783] = 4, - ACTIONS(247), 1, + [182671] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7618), 1, - anon_sym_catch, - STATE(4687), 1, + ACTIONS(2567), 1, + sym__space, + STATE(4739), 1, sym_comment, - ACTIONS(7616), 13, + ACTIONS(2565), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374799,18 +381521,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [184808] = 6, - ACTIONS(247), 1, + [182696] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7620), 1, - sym__newline, - ACTIONS(7625), 1, - anon_sym_else, - STATE(4688), 1, + ACTIONS(2456), 1, + sym__space, + STATE(4740), 1, sym_comment, - STATE(4757), 1, - aux_sym_shebang_repeat1, - ACTIONS(7623), 11, + ACTIONS(2454), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -374822,14 +381541,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [184837] = 4, + anon_sym_RBRACE, + [182721] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2340), 1, + ACTIONS(1899), 1, sym__space, - STATE(4689), 1, + STATE(4741), 1, sym_comment, - ACTIONS(2338), 13, + ACTIONS(1897), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374843,14 +381563,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [184862] = 3, + [182746] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4690), 1, + ACTIONS(2089), 1, + sym__space, + STATE(4742), 1, sym_comment, - ACTIONS(5105), 14, + ACTIONS(2087), 13, sym__newline, - sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -374861,39 +381582,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_RBRACE, - aux_sym_record_entry_token1, - [184885] = 6, + [182771] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2239), 1, - anon_sym_LPAREN2, - ACTIONS(2243), 1, - aux_sym__unquoted_in_list_token4, - STATE(4691), 1, + ACTIONS(2240), 1, + sym__space, + STATE(4743), 1, sym_comment, - ACTIONS(2241), 5, + ACTIONS(2234), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2237), 7, - anon_sym_EQ, - sym_identifier, - anon_sym_COLON, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DASH, - [184914] = 4, + anon_sym_RBRACE, + [182796] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5020), 1, + ACTIONS(1640), 1, sym__space, - STATE(4692), 1, + STATE(4744), 1, sym_comment, - ACTIONS(5022), 13, + ACTIONS(1628), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374907,14 +381626,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [184939] = 4, + [182821] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5024), 1, + ACTIONS(2549), 1, sym__space, - STATE(4693), 1, + STATE(4745), 1, sym_comment, - ACTIONS(5026), 13, + ACTIONS(2547), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374928,61 +381647,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [184964] = 6, + [182846] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2239), 1, - anon_sym_LPAREN2, - ACTIONS(2243), 1, - aux_sym__unquoted_in_list_token4, - STATE(4694), 1, + ACTIONS(2472), 1, + sym__space, + STATE(4746), 1, sym_comment, - ACTIONS(2247), 5, + ACTIONS(2470), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2245), 7, - anon_sym_EQ, - sym_identifier, - anon_sym_COLON, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DASH, - [184993] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4695), 1, - sym_comment, - ACTIONS(1554), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(1556), 12, - anon_sym_in, - anon_sym_QMARK2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, - [185018] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [182871] = 6, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4696), 1, - sym_comment, - ACTIONS(4882), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(4884), 11, + ACTIONS(7771), 1, sym__newline, + ACTIONS(7776), 1, + anon_sym_else, + STATE(4747), 1, + sym_comment, + STATE(4831), 1, + aux_sym_shebang_repeat1, + ACTIONS(7774), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -374993,18 +381690,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [185043] = 6, - ACTIONS(247), 1, + anon_sym_RPAREN, + [182900] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5441), 1, - anon_sym_LPAREN2, - ACTIONS(7361), 1, + ACTIONS(2355), 1, anon_sym_DASH, - STATE(4697), 1, + ACTIONS(7778), 1, + anon_sym_LBRACK2, + STATE(4748), 1, sym_comment, - STATE(7366), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7359), 11, + ACTIONS(2359), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -375016,21 +381712,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [185072] = 7, - ACTIONS(247), 1, + anon_sym_LBRACE, + [182927] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7627), 1, + ACTIONS(2283), 1, + anon_sym_LPAREN2, + ACTIONS(2287), 1, + aux_sym__unquoted_in_list_token4, + STATE(4749), 1, + sym_comment, + ACTIONS(2285), 5, sym__newline, - STATE(716), 1, - aux_sym__pipe_separator, - STATE(4698), 1, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(2281), 7, + anon_sym_EQ, + sym_identifier, + anon_sym_COLON, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DASH, + [182956] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4750), 1, sym_comment, - STATE(5192), 1, - aux_sym_shebang_repeat1, - ACTIONS(7630), 2, + ACTIONS(5601), 14, + sym__newline, + sym__space, anon_sym_SEMI, - anon_sym_RPAREN, - ACTIONS(2950), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -375040,18 +381754,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [185103] = 6, - ACTIONS(247), 1, + anon_sym_RBRACE, + aux_sym_record_entry_token1, + [182979] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3067), 1, - sym__newline, - ACTIONS(7632), 1, - anon_sym_else, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(4699), 1, + ACTIONS(7780), 1, + anon_sym_EQ2, + STATE(4751), 1, sym_comment, - ACTIONS(1315), 11, + ACTIONS(4989), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4991), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -375062,15 +381778,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [185132] = 4, + [183006] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2479), 1, + ACTIONS(7784), 1, sym__space, - STATE(4700), 1, + STATE(4752), 1, sym_comment, - ACTIONS(2477), 13, + ACTIONS(7782), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375084,21 +381799,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [185157] = 7, - ACTIONS(247), 1, + [183031] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7635), 1, - sym__newline, - STATE(716), 1, - aux_sym__pipe_separator, - STATE(4701), 1, + ACTIONS(2119), 1, + sym__space, + STATE(4753), 1, sym_comment, - STATE(5192), 1, - aux_sym_shebang_repeat1, - ACTIONS(7638), 2, + ACTIONS(2113), 13, + sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - ACTIONS(2950), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -375108,36 +381818,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [185188] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7379), 1, - aux_sym__immediate_decimal_token2, - STATE(4702), 1, - sym_comment, - ACTIONS(1518), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1520), 10, - sym__newline, - anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_DASH_DASH, anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [185215] = 4, + [183056] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2483), 1, + ACTIONS(7364), 1, sym__space, - STATE(4703), 1, + STATE(4754), 1, sym_comment, - ACTIONS(2481), 13, + ACTIONS(7362), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375151,14 +381841,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [185240] = 4, + [183081] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2487), 1, + ACTIONS(2212), 1, sym__space, - STATE(4704), 1, + STATE(4755), 1, sym_comment, - ACTIONS(2485), 13, + ACTIONS(2206), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375172,18 +381862,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [185265] = 6, - ACTIONS(247), 1, + [183106] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7640), 1, + ACTIONS(7745), 1, sym__newline, - ACTIONS(7645), 1, - anon_sym_catch, - STATE(4705), 1, + ACTIONS(7747), 1, + sym__space, + STATE(4693), 1, + aux_sym__command_parenthesized_repeat1, + STATE(4756), 1, sym_comment, - STATE(4738), 1, - aux_sym_shebang_repeat1, - ACTIONS(7643), 11, + ACTIONS(7786), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -375195,14 +381885,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [185294] = 4, + [183135] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2344), 1, + ACTIONS(5051), 1, sym__space, - STATE(4706), 1, + STATE(4757), 1, sym_comment, - ACTIONS(2342), 13, + ACTIONS(5053), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375216,14 +381906,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [185319] = 4, + [183160] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2444), 1, - sym__space, - STATE(4707), 1, + STATE(4758), 1, sym_comment, - ACTIONS(2442), 13, + ACTIONS(4995), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(4997), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375235,16 +381927,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [185344] = 4, + [183185] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7649), 1, + ACTIONS(5059), 1, sym__space, - STATE(4708), 1, + STATE(4759), 1, sym_comment, - ACTIONS(7647), 13, + ACTIONS(5061), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375258,18 +381948,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [185369] = 6, + [183210] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7651), 1, - sym__newline, - ACTIONS(7653), 1, + STATE(4760), 1, + sym_comment, + ACTIONS(1068), 3, + ts_builtin_sym_end, sym__space, - STATE(4709), 1, + anon_sym_DOT, + ACTIONS(1066), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [183235] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4761), 1, sym_comment, - STATE(4756), 1, - aux_sym__command_parenthesized_repeat1, - ACTIONS(7655), 11, + ACTIONS(1072), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT, + ACTIONS(1070), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -375280,15 +381990,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [185398] = 4, + [183260] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1874), 1, + ACTIONS(7719), 1, sym__space, - STATE(4710), 1, + ACTIONS(7788), 1, + ts_builtin_sym_end, + STATE(4762), 1, sym_comment, - ACTIONS(1872), 13, + STATE(4789), 1, + aux_sym_command_repeat1, + ACTIONS(7598), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375300,17 +382013,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [185423] = 4, - ACTIONS(247), 1, + [183289] = 6, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4711), 1, - sym_comment, - ACTIONS(1721), 2, - anon_sym_DASH, + ACTIONS(1526), 1, aux_sym__unquoted_in_list_token2, - ACTIONS(1723), 12, + ACTIONS(1788), 1, + anon_sym_DASH, + ACTIONS(1790), 1, + anon_sym_LPAREN2, + STATE(4763), 1, + sym_comment, + ACTIONS(1796), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -375322,20 +382036,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + [183318] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2273), 1, anon_sym_LPAREN2, - [185448] = 6, - ACTIONS(247), 1, + ACTIONS(2275), 1, + aux_sym__unquoted_in_list_token4, + STATE(4764), 1, + sym_comment, + ACTIONS(1092), 5, + sym__newline, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1090), 7, + anon_sym_EQ, + sym_identifier, + anon_sym_COLON, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DASH, + [183347] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7657), 1, + ACTIONS(7790), 1, sym__newline, - ACTIONS(7662), 1, - anon_sym_else, - STATE(4655), 1, - aux_sym_shebang_repeat1, - STATE(4712), 1, + STATE(726), 1, + aux_sym__pipe_separator, + STATE(4765), 1, sym_comment, - ACTIONS(7660), 11, + STATE(5265), 1, + aux_sym_shebang_repeat1, + ACTIONS(7793), 2, anon_sym_SEMI, + anon_sym_RPAREN, + ACTIONS(3015), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -375345,50 +382083,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + [183378] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(7578), 1, + aux_sym__immediate_decimal_token2, + STATE(4766), 1, + sym_comment, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1538), 10, + sym__newline, + anon_sym_SEMI, anon_sym_RPAREN, - [185477] = 14, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [183405] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3881), 1, - anon_sym_DOLLAR, - ACTIONS(7606), 1, + STATE(4767), 1, + sym_comment, + ACTIONS(2291), 6, sym__newline, - ACTIONS(7608), 1, - sym__space, - ACTIONS(7610), 1, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LPAREN2, + ACTIONS(2289), 8, + anon_sym_EQ, + sym_identifier, + anon_sym_COLON, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - ACTIONS(7612), 1, anon_sym_DASH, - ACTIONS(7614), 1, - anon_sym_LBRACE, - STATE(1693), 1, - sym_block, - STATE(1694), 1, - sym_val_closure, - STATE(4713), 1, - sym_comment, - STATE(5564), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(7236), 1, - sym__flag, - STATE(707), 2, - sym__blosure, - sym_val_variable, - STATE(4716), 2, - sym_short_flag, - sym_long_flag, - [185522] = 6, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token4, + [183430] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7664), 1, + STATE(4768), 1, + sym_comment, + ACTIONS(1058), 2, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(1060), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - ACTIONS(7669), 1, - anon_sym_catch, - STATE(4714), 1, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_QMARK2, + [183455] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7797), 1, + sym__space, + STATE(4769), 1, sym_comment, - STATE(4753), 1, - aux_sym_shebang_repeat1, - ACTIONS(7667), 11, + ACTIONS(7795), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -375400,14 +382167,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [185551] = 4, + anon_sym_RBRACE, + [183480] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2456), 1, - sym__space, - STATE(4715), 1, + STATE(4770), 1, sym_comment, - ACTIONS(2454), 13, + ACTIONS(4985), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(4987), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375419,16 +382189,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [185576] = 4, + [183505] = 12, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1526), 1, + aux_sym_unquoted_token2, + ACTIONS(3616), 1, + anon_sym_DOLLAR, + ACTIONS(6229), 1, + anon_sym_LPAREN2, + ACTIONS(7799), 1, + anon_sym_DOT, + ACTIONS(7803), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7805), 1, + aux_sym__immediate_decimal_token5, + STATE(4771), 1, + sym_comment, + STATE(5677), 1, + sym__immediate_decimal, + ACTIONS(7801), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(5976), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1524), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [183546] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4986), 1, + ACTIONS(2537), 1, sym__space, - STATE(4716), 1, + STATE(4772), 1, sym_comment, - ACTIONS(4988), 13, + ACTIONS(2535), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375442,17 +382239,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [185601] = 5, - ACTIONS(3), 1, + [183571] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7671), 1, - anon_sym_EQ2, - STATE(4717), 1, + STATE(4773), 1, sym_comment, - ACTIONS(4940), 2, - ts_builtin_sym_end, + ACTIONS(1711), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(1713), 12, + anon_sym_in, + anon_sym_QMARK2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, + [183596] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7809), 1, sym__space, - ACTIONS(4942), 11, + STATE(4774), 1, + sym_comment, + ACTIONS(7807), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375464,38 +382279,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [185628] = 5, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [183621] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7675), 1, - anon_sym_LT, - ACTIONS(7677), 1, - anon_sym_DASH, - STATE(4718), 1, + STATE(4775), 1, sym_comment, - ACTIONS(7673), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(1596), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(1598), 12, + anon_sym_in, + anon_sym_QMARK2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, + [183646] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5598), 1, sym__newline, + ACTIONS(7811), 1, + anon_sym_catch, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(4776), 1, + sym_comment, + ACTIONS(1351), 11, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [185655] = 5, - ACTIONS(247), 1, + [183675] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7677), 1, + ACTIONS(5518), 1, + anon_sym_LPAREN2, + ACTIONS(7816), 1, anon_sym_DASH, - ACTIONS(7679), 1, - anon_sym_LT, - STATE(4719), 1, + STATE(4777), 1, sym_comment, - ACTIONS(7673), 12, + STATE(7657), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7814), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -375505,45 +382346,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [185682] = 4, - ACTIONS(247), 1, + [183704] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4720), 1, + ACTIONS(7820), 1, + sym__space, + STATE(4778), 1, sym_comment, - ACTIONS(1653), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(1655), 12, - anon_sym_in, - anon_sym_QMARK2, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_DOT, - [185707] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7480), 1, + ACTIONS(7818), 13, sym__newline, - STATE(715), 1, - aux_sym__pipe_separator, - STATE(4721), 1, - sym_comment, - STATE(5192), 1, - aux_sym_shebang_repeat1, - ACTIONS(7483), 2, - ts_builtin_sym_end, anon_sym_SEMI, - ACTIONS(2950), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -375553,14 +382367,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [185738] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [183729] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4998), 1, + ACTIONS(2563), 1, sym__space, - STATE(4722), 1, + STATE(4779), 1, sym_comment, - ACTIONS(5000), 13, + ACTIONS(2561), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375574,121 +382390,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [185763] = 4, - ACTIONS(247), 1, + [183754] = 6, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4723), 1, - sym_comment, - ACTIONS(1738), 2, - anon_sym_DASH, - aux_sym__unquoted_in_list_token2, - ACTIONS(1740), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(7822), 1, sym__newline, + ACTIONS(7827), 1, + anon_sym_else, + STATE(4780), 1, + sym_comment, + STATE(4836), 1, + aux_sym_shebang_repeat1, + ACTIONS(7825), 11, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [185788] = 5, - ACTIONS(247), 1, + [183783] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7681), 1, + ACTIONS(7829), 1, + anon_sym_DOT, + ACTIONS(7831), 1, aux_sym__immediate_decimal_token2, - STATE(4724), 1, + STATE(4781), 1, sym_comment, - ACTIONS(1554), 3, + ACTIONS(1536), 3, anon_sym_DASH, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1556), 10, + ACTIONS(1538), 9, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_RBRACE, anon_sym_as, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [185815] = 4, - ACTIONS(3), 1, + [183812] = 7, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4725), 1, + ACTIONS(7582), 1, + sym__newline, + STATE(727), 1, + aux_sym__pipe_separator, + STATE(4782), 1, + sym_comment, + STATE(5265), 1, + aux_sym_shebang_repeat1, + ACTIONS(7585), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(3015), 9, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [183843] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(4783), 1, sym_comment, - ACTIONS(2255), 6, + ACTIONS(1062), 2, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(1064), 12, + anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_LPAREN2, - ACTIONS(2253), 8, - anon_sym_EQ, - sym_identifier, - anon_sym_COLON, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DASH, - aux_sym__unquoted_in_list_token4, - [185840] = 4, - ACTIONS(3), 1, + anon_sym_QMARK2, + [183868] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5002), 1, - sym__space, - STATE(4726), 1, + STATE(4784), 1, sym_comment, - ACTIONS(5004), 13, + ACTIONS(1715), 2, + anon_sym_DASH, + aux_sym__unquoted_in_list_token2, + ACTIONS(1717), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [185865] = 4, - ACTIONS(247), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [183893] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1034), 1, + ACTIONS(1558), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2335), 1, anon_sym_DASH, - STATE(4727), 1, + ACTIONS(2337), 1, + anon_sym_LPAREN2, + STATE(4785), 1, sym_comment, - ACTIONS(1036), 13, + ACTIONS(2339), 11, anon_sym_EQ, sym_identifier, sym__newline, + anon_sym_PIPE, anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_GT, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_QMARK2, - anon_sym_DOT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [185890] = 4, + [183922] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2025), 1, + ACTIONS(7745), 1, + sym__newline, + ACTIONS(7747), 1, sym__space, - STATE(4728), 1, + STATE(4756), 1, + aux_sym__command_parenthesized_repeat1, + STATE(4786), 1, sym_comment, - ACTIONS(2019), 13, - sym__newline, + ACTIONS(7833), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -375700,19 +382548,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [185915] = 6, - ACTIONS(247), 1, + [183951] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7683), 1, - sym__newline, - ACTIONS(7688), 1, - anon_sym_else, - STATE(4729), 1, + ACTIONS(2496), 1, + sym__space, + STATE(4787), 1, sym_comment, - STATE(4803), 1, - aux_sym_shebang_repeat1, - ACTIONS(7686), 11, + ACTIONS(2494), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -375724,14 +382568,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [185944] = 4, + anon_sym_RBRACE, + [183976] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1949), 1, + ACTIONS(2440), 1, sym__space, - STATE(4730), 1, + STATE(4788), 1, sym_comment, - ACTIONS(1947), 13, + ACTIONS(2438), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375745,13 +382590,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [185969] = 3, - ACTIONS(247), 1, + [184001] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4731), 1, - sym_comment, - ACTIONS(5016), 14, + ACTIONS(7835), 1, ts_builtin_sym_end, + ACTIONS(7837), 1, + sym__space, + STATE(4789), 2, + sym_comment, + aux_sym_command_repeat1, + ACTIONS(7668), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375763,16 +382612,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_else, - anon_sym_catch, - [185992] = 4, + [184028] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(2246), 1, + anon_sym_DASH, + ACTIONS(2248), 1, + anon_sym_LPAREN2, + ACTIONS(2252), 1, + aux_sym__unquoted_in_list_token2, + STATE(4790), 1, + sym_comment, + ACTIONS(2250), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [184057] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2402), 1, + ACTIONS(7842), 1, sym__space, - STATE(4732), 1, + STATE(4791), 1, sym_comment, - ACTIONS(2400), 13, + ACTIONS(7840), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375786,15 +382656,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [186017] = 4, - ACTIONS(3), 1, + [184082] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7069), 1, - sym__space, - STATE(4733), 1, - sym_comment, - ACTIONS(7067), 13, + ACTIONS(7844), 1, sym__newline, + ACTIONS(7849), 1, + anon_sym_catch, + STATE(4792), 1, + sym_comment, + STATE(4818), 1, + aux_sym_shebang_repeat1, + ACTIONS(7847), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -375806,19 +382679,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [186042] = 6, - ACTIONS(247), 1, + [184111] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7690), 1, - sym__newline, - ACTIONS(7695), 1, - anon_sym_else, - STATE(4663), 1, - aux_sym_shebang_repeat1, - STATE(4734), 1, + ACTIONS(2081), 1, + sym__space, + STATE(4793), 1, sym_comment, - ACTIONS(7693), 11, + ACTIONS(2079), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -375830,18 +382699,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [186071] = 6, - ACTIONS(247), 1, + anon_sym_RBRACE, + [184136] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7697), 1, + ACTIONS(7851), 1, sym__newline, - ACTIONS(7702), 1, - anon_sym_else, - STATE(4688), 1, - aux_sym_shebang_repeat1, - STATE(4735), 1, + ACTIONS(7856), 1, + anon_sym_catch, + STATE(4794), 1, sym_comment, - ACTIONS(7700), 11, + STATE(4832), 1, + aux_sym_shebang_repeat1, + ACTIONS(7854), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -375853,14 +382723,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [186100] = 4, + [184165] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2491), 1, + ACTIONS(2518), 1, sym__space, - STATE(4736), 1, + STATE(4795), 1, sym_comment, - ACTIONS(2489), 13, + ACTIONS(2516), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375874,14 +382744,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [186125] = 4, + [184190] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2495), 1, + ACTIONS(2420), 1, sym__space, - STATE(4737), 1, + STATE(4796), 1, sym_comment, - ACTIONS(2493), 13, + ACTIONS(2418), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375895,18 +382765,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [186150] = 6, - ACTIONS(247), 1, + [184215] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7704), 1, + STATE(4797), 1, + sym_comment, + ACTIONS(1038), 2, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(1040), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - ACTIONS(7709), 1, - anon_sym_catch, - STATE(4656), 1, - aux_sym_shebang_repeat1, - STATE(4738), 1, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_QMARK2, + [184240] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7860), 1, + sym__space, + STATE(4798), 1, sym_comment, - ACTIONS(7707), 11, + ACTIONS(7858), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -375918,18 +382806,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [186179] = 6, - ACTIONS(247), 1, + anon_sym_RBRACE, + [184265] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7711), 1, - sym__newline, - ACTIONS(7716), 1, - anon_sym_catch, - STATE(4714), 1, - aux_sym_shebang_repeat1, - STATE(4739), 1, + ACTIONS(2061), 1, + sym__space, + STATE(4799), 1, sym_comment, - ACTIONS(7714), 11, + ACTIONS(2059), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -375941,14 +382827,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [186208] = 4, + anon_sym_RBRACE, + [184290] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2499), 1, + ACTIONS(2553), 1, sym__space, - STATE(4740), 1, + STATE(4800), 1, sym_comment, - ACTIONS(2497), 13, + ACTIONS(2551), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375962,37 +382849,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [186233] = 6, - ACTIONS(247), 1, + [184315] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5441), 1, - anon_sym_LPAREN2, - ACTIONS(7443), 1, - anon_sym_DASH, - STATE(4741), 1, - sym_comment, - STATE(7366), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7441), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(7862), 1, sym__newline, + ACTIONS(7867), 1, + anon_sym_catch, + STATE(4792), 1, + aux_sym_shebang_repeat1, + STATE(4801), 1, + sym_comment, + ACTIONS(7865), 11, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [186262] = 4, + [184344] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2503), 1, + ACTIONS(2424), 1, sym__space, - STATE(4742), 1, + STATE(4802), 1, sym_comment, - ACTIONS(2501), 13, + ACTIONS(2422), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376006,14 +382893,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [186287] = 4, + [184369] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2507), 1, + ACTIONS(2559), 1, sym__space, - STATE(4743), 1, + STATE(4803), 1, sym_comment, - ACTIONS(2505), 13, + ACTIONS(2557), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376027,35 +382914,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [186312] = 4, - ACTIONS(247), 1, + [184394] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1042), 1, - anon_sym_DASH, - STATE(4744), 1, + STATE(4804), 1, sym_comment, - ACTIONS(1044), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_DOLLAR, + ACTIONS(1536), 2, anon_sym_GT, - anon_sym_DASH_DASH, + anon_sym_LT2, + ACTIONS(1538), 12, + anon_sym_in, anon_sym_QMARK2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, anon_sym_DOT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [186337] = 4, + [184419] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1878), 1, + ACTIONS(2452), 1, sym__space, - STATE(4745), 1, + STATE(4805), 1, sym_comment, - ACTIONS(1876), 13, + ACTIONS(2450), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376069,16 +382956,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [186362] = 4, + [184444] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4746), 1, - sym_comment, - ACTIONS(4892), 3, - ts_builtin_sym_end, + ACTIONS(7244), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(4894), 11, + STATE(4806), 1, + sym_comment, + ACTIONS(7242), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376090,14 +382975,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [186387] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [184469] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2414), 1, + ACTIONS(7517), 1, sym__space, - STATE(4747), 1, + STATE(4807), 1, sym_comment, - ACTIONS(2412), 13, + ACTIONS(7515), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376111,14 +382998,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [186412] = 4, + [184494] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(7869), 1, + sym__newline, + ACTIONS(7874), 1, + anon_sym_else, + STATE(4808), 1, + sym_comment, + STATE(4824), 1, + aux_sym_shebang_repeat1, + ACTIONS(7872), 11, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [184523] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5518), 1, + anon_sym_LPAREN2, + ACTIONS(7614), 1, + anon_sym_DASH, + STATE(4809), 1, + sym_comment, + STATE(7525), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7612), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [184552] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2511), 1, + ACTIONS(2496), 1, sym__space, - STATE(4748), 1, + STATE(4810), 1, sym_comment, - ACTIONS(2509), 13, + ACTIONS(2494), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376132,18 +383065,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [186437] = 6, - ACTIONS(3), 1, + [184577] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7651), 1, + ACTIONS(7876), 1, sym__newline, - ACTIONS(7653), 1, - sym__space, - STATE(4749), 1, + ACTIONS(7881), 1, + anon_sym_else, + STATE(4747), 1, + aux_sym_shebang_repeat1, + STATE(4811), 1, sym_comment, - STATE(4765), 1, - aux_sym__command_parenthesized_repeat1, - ACTIONS(7718), 11, + ACTIONS(7879), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -376155,14 +383088,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [186466] = 4, + [184606] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7722), 1, + ACTIONS(5075), 1, sym__space, - STATE(4750), 1, + STATE(4812), 1, sym_comment, - ACTIONS(7720), 13, + ACTIONS(5077), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376176,14 +383109,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [186491] = 4, + [184631] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1834), 1, + ACTIONS(5083), 1, sym__space, - STATE(4751), 1, + STATE(4813), 1, sym_comment, - ACTIONS(1832), 13, + ACTIONS(5085), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376197,41 +383130,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [186516] = 6, - ACTIONS(247), 1, + [184656] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7726), 1, - anon_sym_AT, - ACTIONS(7728), 1, - anon_sym_DASH, - STATE(4752), 1, - sym_comment, - STATE(5132), 1, - sym_param_cmd, - ACTIONS(7724), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(7883), 1, sym__newline, + ACTIONS(7888), 1, + anon_sym_else, + STATE(4814), 1, + sym_comment, + STATE(4854), 1, + aux_sym_shebang_repeat1, + ACTIONS(7886), 11, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [186545] = 6, - ACTIONS(247), 1, + [184685] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3067), 1, - sym__newline, - ACTIONS(7730), 1, - anon_sym_catch, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(4753), 1, + ACTIONS(2533), 1, + sym__space, + STATE(4815), 1, sym_comment, - ACTIONS(1315), 11, + ACTIONS(2531), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -376243,64 +383173,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [186574] = 6, - ACTIONS(247), 1, + anon_sym_RBRACE, + [184710] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7726), 1, - anon_sym_AT, - ACTIONS(7735), 1, - anon_sym_DASH, - STATE(4754), 1, + ACTIONS(2295), 1, + anon_sym_LPAREN2, + ACTIONS(2299), 1, + aux_sym__unquoted_in_list_token4, + STATE(4816), 1, sym_comment, - STATE(5069), 1, - sym_param_cmd, - ACTIONS(7733), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(2297), 5, sym__newline, anon_sym_PIPE, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [186603] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7726), 1, - anon_sym_AT, - ACTIONS(7735), 1, - anon_sym_DASH, - STATE(4755), 1, - sym_comment, - STATE(5070), 1, - sym_param_cmd, - ACTIONS(7733), 11, + ACTIONS(2293), 7, anon_sym_EQ, sym_identifier, - sym__newline, - anon_sym_PIPE, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [186632] = 6, + anon_sym_DASH, + [184739] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7651), 1, + ACTIONS(7745), 1, sym__newline, - ACTIONS(7653), 1, + ACTIONS(7747), 1, sym__space, - STATE(4756), 1, - sym_comment, - STATE(4765), 1, + STATE(4725), 1, aux_sym__command_parenthesized_repeat1, - ACTIONS(7737), 11, + STATE(4817), 1, + sym_comment, + ACTIONS(7890), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -376312,18 +383220,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [186661] = 6, - ACTIONS(247), 1, + [184768] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3067), 1, + ACTIONS(5598), 1, sym__newline, - ACTIONS(7739), 1, - anon_sym_else, - STATE(749), 1, + ACTIONS(7892), 1, + anon_sym_catch, + STATE(2498), 1, aux_sym_shebang_repeat1, - STATE(4757), 1, + STATE(4818), 1, sym_comment, - ACTIONS(1315), 11, + ACTIONS(1351), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -376335,18 +383243,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [186690] = 6, + [184797] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7651), 1, + ACTIONS(5504), 1, + sym__space, + STATE(4819), 1, + sym_comment, + ACTIONS(5502), 13, sym__newline, - ACTIONS(7653), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [184822] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(7761), 1, + anon_sym_AT, + ACTIONS(7897), 1, + anon_sym_DASH, + STATE(4820), 1, + sym_comment, + STATE(5200), 1, + sym_param_cmd, + ACTIONS(7895), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [184851] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2468), 1, sym__space, - STATE(4749), 1, - aux_sym__command_parenthesized_repeat1, - STATE(4758), 1, + STATE(4821), 1, sym_comment, - ACTIONS(7742), 11, + ACTIONS(2466), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -376358,14 +383307,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [186719] = 4, + anon_sym_RBRACE, + [184876] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5028), 1, + ACTIONS(5063), 1, sym__space, - STATE(4759), 1, + STATE(4822), 1, sym_comment, - ACTIONS(5030), 13, + ACTIONS(5065), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376379,15 +383329,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [186744] = 4, + [184901] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2360), 1, - sym__space, - STATE(4760), 1, + ACTIONS(2295), 1, + anon_sym_LPAREN2, + ACTIONS(2299), 1, + aux_sym__unquoted_in_list_token4, + STATE(4823), 1, sym_comment, - ACTIONS(2358), 13, + ACTIONS(2305), 5, + sym__newline, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(2303), 7, + anon_sym_EQ, + sym_identifier, + anon_sym_COLON, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DASH, + [184930] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(7899), 1, sym__newline, + ACTIONS(7904), 1, + anon_sym_else, + STATE(4717), 1, + aux_sym_shebang_repeat1, + STATE(4824), 1, + sym_comment, + ACTIONS(7902), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -376399,15 +383375,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [186769] = 4, + [184959] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7746), 1, + ACTIONS(2480), 1, sym__space, - STATE(4761), 1, + STATE(4825), 1, sym_comment, - ACTIONS(7744), 13, + ACTIONS(2478), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376421,14 +383396,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [186794] = 4, + [184984] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5032), 1, + ACTIONS(5097), 1, sym__space, - STATE(4762), 1, + STATE(4826), 1, sym_comment, - ACTIONS(5034), 13, + ACTIONS(5099), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376442,14 +383417,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [186819] = 4, + [185009] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(7906), 1, + aux_sym__immediate_decimal_token2, + STATE(4827), 1, + sym_comment, + ACTIONS(1596), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1598), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [185036] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(4828), 1, + sym_comment, + ACTIONS(1054), 2, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(1056), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_QMARK2, + [185061] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7324), 1, + ACTIONS(2097), 1, sym__space, - STATE(4763), 1, + STATE(4829), 1, sym_comment, - ACTIONS(7322), 13, + ACTIONS(2095), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376463,14 +383481,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [186844] = 4, + [185086] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1072), 1, - sym__space, - STATE(4764), 1, + ACTIONS(7908), 1, + anon_sym_EQ2, + STATE(4830), 1, sym_comment, - ACTIONS(1070), 13, + ACTIONS(4945), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4947), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376482,19 +383503,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [186869] = 5, - ACTIONS(3), 1, + [185113] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7748), 1, + ACTIONS(5598), 1, sym__newline, - ACTIONS(7751), 1, - sym__space, - STATE(4765), 2, + ACTIONS(7910), 1, + anon_sym_else, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(4831), 1, sym_comment, - aux_sym__command_parenthesized_repeat1, - ACTIONS(7754), 11, + ACTIONS(1351), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -376506,19 +383526,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [186896] = 6, - ACTIONS(3), 1, + [185142] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7756), 1, - ts_builtin_sym_end, - ACTIONS(7758), 1, - sym__space, - STATE(4766), 1, - sym_comment, - STATE(4794), 1, - aux_sym_command_repeat1, - ACTIONS(7435), 11, + ACTIONS(7913), 1, sym__newline, + ACTIONS(7918), 1, + anon_sym_catch, + STATE(4776), 1, + aux_sym_shebang_repeat1, + STATE(4832), 1, + sym_comment, + ACTIONS(7916), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -376529,14 +383548,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [186925] = 4, + anon_sym_RPAREN, + [185171] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2307), 1, + ACTIONS(2500), 1, sym__space, - STATE(4767), 1, + STATE(4833), 1, sym_comment, - ACTIONS(2305), 13, + ACTIONS(2498), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376550,14 +383570,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [186950] = 4, + [185196] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2307), 1, + ACTIONS(2428), 1, sym__space, - STATE(4768), 1, + STATE(4834), 1, sym_comment, - ACTIONS(2305), 13, + ACTIONS(2426), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376571,14 +383591,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [186975] = 4, + [185221] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7116), 1, + ACTIONS(2448), 1, sym__space, - STATE(4769), 1, + STATE(4835), 1, sym_comment, - ACTIONS(7114), 13, + ACTIONS(2446), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376592,60 +383612,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [187000] = 6, - ACTIONS(3), 1, + [185246] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2231), 1, - anon_sym_LPAREN2, - ACTIONS(2235), 1, - aux_sym__unquoted_in_list_token4, - STATE(4770), 1, - sym_comment, - ACTIONS(2233), 5, + ACTIONS(7920), 1, sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(2229), 7, - anon_sym_EQ, - sym_identifier, - anon_sym_COLON, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DASH, - [187029] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1494), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1778), 1, - anon_sym_DASH, - ACTIONS(1780), 1, - anon_sym_LPAREN2, - STATE(4771), 1, + ACTIONS(7925), 1, + anon_sym_else, + STATE(4836), 1, sym_comment, - ACTIONS(1786), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, + STATE(4849), 1, + aux_sym_shebang_repeat1, + ACTIONS(7923), 11, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [187058] = 4, + [185275] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5132), 1, + ACTIONS(5603), 1, sym__space, - STATE(4772), 1, + STATE(4837), 1, sym_comment, - ACTIONS(5134), 13, + ACTIONS(5601), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376659,14 +383656,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [187083] = 4, + [185300] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2422), 1, + ACTIONS(2488), 1, sym__space, - STATE(4773), 1, + STATE(4838), 1, sym_comment, - ACTIONS(2420), 13, + ACTIONS(2486), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376680,14 +383677,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [187108] = 4, + [185325] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2464), 1, + ACTIONS(2416), 1, sym__space, - STATE(4774), 1, + STATE(4839), 1, sym_comment, - ACTIONS(2462), 13, + ACTIONS(2414), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376701,21 +383698,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [187133] = 7, - ACTIONS(247), 1, + [185350] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7354), 1, - sym__newline, - STATE(715), 1, - aux_sym__pipe_separator, - STATE(4775), 1, + ACTIONS(2003), 1, + sym__space, + STATE(4840), 1, sym_comment, - STATE(5192), 1, - aux_sym_shebang_repeat1, - ACTIONS(7357), 2, - ts_builtin_sym_end, + ACTIONS(2001), 13, + sym__newline, anon_sym_SEMI, - ACTIONS(2950), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -376725,14 +383717,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [187164] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [185375] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1890), 1, + ACTIONS(2019), 1, sym__space, - STATE(4776), 1, + STATE(4841), 1, sym_comment, - ACTIONS(1888), 13, + ACTIONS(2017), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376746,18 +383740,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [187189] = 6, - ACTIONS(247), 1, + [185400] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7726), 1, - anon_sym_AT, - ACTIONS(7762), 1, + ACTIONS(1844), 1, + anon_sym_LPAREN2, + ACTIONS(1852), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2277), 1, anon_sym_DASH, - STATE(4777), 1, + STATE(4842), 1, sym_comment, - STATE(5133), 1, - sym_param_cmd, - ACTIONS(7760), 11, + ACTIONS(2279), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -376769,16 +383763,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [187218] = 5, - ACTIONS(247), 1, + [185429] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2313), 1, + ACTIONS(7761), 1, + anon_sym_AT, + ACTIONS(7763), 1, anon_sym_DASH, - ACTIONS(7764), 1, - anon_sym_LBRACK2, - STATE(4778), 1, + STATE(4843), 1, sym_comment, - ACTIONS(2317), 12, + STATE(5079), 1, + sym_param_cmd, + ACTIONS(7759), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -376790,19 +383786,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [187245] = 6, - ACTIONS(247), 1, + [185458] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5441), 1, - anon_sym_LPAREN2, - ACTIONS(7768), 1, + ACTIONS(1842), 1, anon_sym_DASH, - STATE(4779), 1, + ACTIONS(1844), 1, + anon_sym_LPAREN2, + ACTIONS(1852), 1, + aux_sym__unquoted_in_list_token2, + STATE(4844), 1, sym_comment, - STATE(7567), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7766), 11, + ACTIONS(1850), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -376814,14 +383809,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [187274] = 4, + [185487] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2436), 1, + ACTIONS(2484), 1, sym__space, - STATE(4780), 1, + STATE(4845), 1, sym_comment, - ACTIONS(2434), 13, + ACTIONS(2482), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376835,35 +383830,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [187299] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1038), 1, - anon_sym_DASH, - STATE(4781), 1, - sym_comment, - ACTIONS(1040), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_GT, - anon_sym_DASH_DASH, - anon_sym_QMARK2, - anon_sym_DOT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [187324] = 4, + [185512] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2440), 1, + ACTIONS(2526), 1, sym__space, - STATE(4782), 1, + STATE(4846), 1, sym_comment, - ACTIONS(2438), 13, + ACTIONS(2524), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376877,14 +383851,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [187349] = 4, + [185537] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1894), 1, - sym__space, - STATE(4783), 1, + ACTIONS(7068), 1, + aux_sym_unquoted_token2, + STATE(4847), 1, sym_comment, - ACTIONS(1892), 13, + ACTIONS(1640), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1628), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376896,16 +383873,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [187374] = 4, + [185564] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2364), 1, + ACTIONS(5071), 1, sym__space, - STATE(4784), 1, + STATE(4848), 1, sym_comment, - ACTIONS(2362), 13, + ACTIONS(5073), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376919,14 +383894,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [187399] = 4, + [185589] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5598), 1, + sym__newline, + ACTIONS(7927), 1, + anon_sym_else, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(4849), 1, + sym_comment, + ACTIONS(1351), 11, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [185618] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2368), 1, - sym__space, - STATE(4785), 1, + ACTIONS(7930), 1, + anon_sym_LBRACK2, + STATE(4850), 1, sym_comment, - ACTIONS(2366), 13, + ACTIONS(2359), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2355), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376938,66 +383939,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [187424] = 6, - ACTIONS(247), 1, + [185645] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5441), 1, - anon_sym_LPAREN2, - ACTIONS(7772), 1, - anon_sym_DASH, - STATE(4786), 1, + STATE(4851), 1, sym_comment, - STATE(7567), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7770), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(1528), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(1530), 12, + anon_sym_in, + anon_sym_QMARK2, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_DOT, + [185670] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5598), 1, sym__newline, + ACTIONS(7932), 1, + anon_sym_else, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(4852), 1, + sym_comment, + ACTIONS(1351), 11, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [187453] = 6, + [185699] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2225), 1, - anon_sym_LPAREN2, - ACTIONS(2227), 1, - aux_sym__unquoted_in_list_token4, - STATE(4787), 1, + ACTIONS(2408), 1, + sym__space, + STATE(4853), 1, sym_comment, - ACTIONS(1072), 5, + ACTIONS(2406), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1070), 7, - anon_sym_EQ, - sym_identifier, - anon_sym_COLON, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DASH, - [187482] = 6, - ACTIONS(247), 1, + anon_sym_RBRACE, + [185724] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5441), 1, + ACTIONS(7935), 1, + sym__newline, + ACTIONS(7940), 1, + anon_sym_else, + STATE(4852), 1, + aux_sym_shebang_repeat1, + STATE(4854), 1, + sym_comment, + ACTIONS(7938), 11, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [185753] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5518), 1, anon_sym_LPAREN2, - ACTIONS(7515), 1, + ACTIONS(7944), 1, anon_sym_DASH, - STATE(4788), 1, + STATE(4855), 1, sym_comment, - STATE(7366), 1, + STATE(7657), 1, sym__expr_parenthesized_immediate, - ACTIONS(7513), 11, + ACTIONS(7942), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -377009,14 +384050,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [187511] = 4, + [185782] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1902), 1, + ACTIONS(2045), 1, sym__space, - STATE(4789), 1, + STATE(4856), 1, sym_comment, - ACTIONS(1900), 13, + ACTIONS(2043), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377030,15 +384071,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [187536] = 4, + [185807] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2448), 1, - sym__space, - STATE(4790), 1, + STATE(4857), 1, sym_comment, - ACTIONS(2446), 13, + ACTIONS(5502), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -377049,20 +384089,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_RBRACE, - [187561] = 6, - ACTIONS(3), 1, + aux_sym_record_entry_token1, + [185830] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7758), 1, - sym__space, - ACTIONS(7774), 1, - ts_builtin_sym_end, - STATE(4675), 1, - aux_sym_command_repeat1, - STATE(4791), 1, + ACTIONS(7948), 1, + anon_sym_else, + STATE(4858), 1, sym_comment, - ACTIONS(7439), 11, + ACTIONS(7946), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377074,14 +384110,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [187590] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [185855] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5518), 1, + anon_sym_LPAREN2, + ACTIONS(7610), 1, + anon_sym_DASH, + STATE(4859), 1, + sym_comment, + STATE(7525), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7608), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [185884] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1826), 1, + ACTIONS(2512), 1, sym__space, - STATE(4792), 1, + STATE(4860), 1, sym_comment, - ACTIONS(1822), 13, + ACTIONS(2510), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377095,14 +384156,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [187615] = 4, + [185909] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2311), 1, + ACTIONS(2571), 1, sym__space, - STATE(4793), 1, + STATE(4861), 1, sym_comment, - ACTIONS(2309), 13, + ACTIONS(2569), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377116,18 +384177,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [187640] = 6, - ACTIONS(3), 1, + [185934] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7758), 1, - sym__space, - ACTIONS(7776), 1, - ts_builtin_sym_end, - STATE(4675), 1, - aux_sym_command_repeat1, - STATE(4794), 1, + ACTIONS(7952), 1, + anon_sym_catch, + STATE(4862), 1, sym_comment, - ACTIONS(7403), 11, + ACTIONS(7950), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377139,14 +384196,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [187669] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [185959] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2460), 1, + ACTIONS(2545), 1, sym__space, - STATE(4795), 1, + STATE(4863), 1, sym_comment, - ACTIONS(2458), 13, + ACTIONS(2543), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377160,14 +384219,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [187694] = 4, + [185984] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2515), 1, + ACTIONS(2476), 1, sym__space, - STATE(4796), 1, + STATE(4864), 1, sym_comment, - ACTIONS(2513), 13, + ACTIONS(2474), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377181,14 +384240,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [187719] = 4, + [186009] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2468), 1, - sym__space, - STATE(4797), 1, + STATE(4865), 1, sym_comment, - ACTIONS(2466), 13, + ACTIONS(5504), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5502), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377200,39 +384260,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [187744] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1552), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2291), 1, - anon_sym_DASH, - ACTIONS(2293), 1, - anon_sym_LPAREN2, - STATE(4798), 1, - sym_comment, - ACTIONS(2295), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [187773] = 4, + [186033] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2382), 1, - sym__space, - STATE(4799), 1, + STATE(4866), 1, sym_comment, - ACTIONS(2380), 13, + ACTIONS(2400), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2398), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377244,16 +384280,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [187798] = 4, + [186057] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2386), 1, - sym__space, - STATE(4800), 1, + STATE(4867), 1, sym_comment, - ACTIONS(2384), 13, + ACTIONS(2508), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2506), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377265,20 +384300,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [187823] = 6, + [186081] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7758), 1, - sym__space, - ACTIONS(7778), 1, - ts_builtin_sym_end, - STATE(4791), 1, - aux_sym_command_repeat1, - STATE(4801), 1, + STATE(4868), 1, sym_comment, - ACTIONS(7350), 11, + ACTIONS(2512), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2510), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377290,14 +384320,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [187852] = 4, - ACTIONS(3), 1, + [186105] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2523), 1, - sym__space, - STATE(4802), 1, + STATE(4869), 1, sym_comment, - ACTIONS(2521), 13, + ACTIONS(7954), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377311,18 +384339,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [187877] = 6, - ACTIONS(247), 1, + [186127] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7780), 1, - sym__newline, - ACTIONS(7785), 1, - anon_sym_else, - STATE(4699), 1, - aux_sym_shebang_repeat1, - STATE(4803), 1, + STATE(4870), 1, sym_comment, - ACTIONS(7783), 11, + ACTIONS(2081), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2079), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -377333,17 +384359,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [187906] = 4, + [186151] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4804), 1, + STATE(4871), 1, sym_comment, - ACTIONS(1048), 3, + ACTIONS(2518), 2, ts_builtin_sym_end, sym__space, - anon_sym_DOT, - ACTIONS(1046), 11, + ACTIONS(2516), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377355,14 +384379,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [187931] = 4, + [186175] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1866), 1, - sym__space, - STATE(4805), 1, + STATE(4872), 1, sym_comment, - ACTIONS(1864), 13, + ACTIONS(7244), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7242), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377374,16 +384399,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [187956] = 4, - ACTIONS(247), 1, + [186199] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7789), 1, - anon_sym_else, - STATE(4806), 1, + STATE(4873), 1, sym_comment, - ACTIONS(7787), 13, + ACTIONS(7956), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377397,43 +384418,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [187981] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1494), 1, - aux_sym_unquoted_token2, - ACTIONS(3545), 1, - anon_sym_DOLLAR, - ACTIONS(6072), 1, - anon_sym_LPAREN2, - ACTIONS(7791), 1, - anon_sym_DOT, - ACTIONS(7795), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7797), 1, - aux_sym__immediate_decimal_token5, - STATE(4807), 1, - sym_comment, - STATE(5565), 1, - sym__immediate_decimal, - ACTIONS(7793), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(5883), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1492), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [188022] = 4, - ACTIONS(3), 1, + [186221] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2350), 1, - sym__space, - STATE(4808), 1, + STATE(4874), 1, sym_comment, - ACTIONS(2348), 13, + ACTIONS(7958), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377447,17 +384437,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [188047] = 5, - ACTIONS(3), 1, + [186243] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7799), 1, - anon_sym_LBRACK2, - STATE(4809), 1, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(4875), 1, sym_comment, - ACTIONS(2317), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2313), 11, + ACTIONS(7960), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377469,12 +384456,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [188074] = 3, - ACTIONS(247), 1, + anon_sym_RPAREN, + [186267] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4810), 1, + STATE(4876), 1, sym_comment, - ACTIONS(6604), 13, + ACTIONS(7962), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377488,15 +384476,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [188096] = 4, - ACTIONS(3), 1, + [186289] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4811), 1, + ACTIONS(7966), 1, + anon_sym_DASH, + STATE(4877), 1, sym_comment, - ACTIONS(7649), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7647), 11, + ACTIONS(7964), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [186313] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(4878), 1, + sym_comment, + STATE(5013), 1, + aux_sym_shebang_repeat1, + ACTIONS(7968), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377508,16 +384515,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [188120] = 5, - ACTIONS(247), 1, + anon_sym_RPAREN, + [186337] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3229), 1, - aux_sym_record_entry_token1, - ACTIONS(7801), 1, - sym__newline, - STATE(4812), 1, + STATE(4879), 1, sym_comment, - ACTIONS(7803), 11, + ACTIONS(7725), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -377528,16 +384533,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_RBRACE, - [188146] = 4, + [186359] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4813), 1, + ACTIONS(7972), 1, + sym__space, + STATE(4880), 1, + sym_comment, + ACTIONS(7970), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [186383] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4881), 1, sym_comment, - ACTIONS(2507), 2, + ACTIONS(2522), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2505), 11, + ACTIONS(2520), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377549,15 +384575,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [188170] = 4, + [186407] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4814), 1, + STATE(4882), 1, sym_comment, - ACTIONS(2340), 2, + ACTIONS(7820), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2338), 11, + ACTIONS(7818), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377569,14 +384595,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [188194] = 4, - ACTIONS(247), 1, + [186431] = 14, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7677), 1, + ACTIONS(1510), 1, + anon_sym_RBRACK, + ACTIONS(1524), 1, + sym__entry_separator, + ACTIONS(1526), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(3044), 1, + anon_sym_DOLLAR, + ACTIONS(7974), 1, + anon_sym_LPAREN2, + ACTIONS(7976), 1, + anon_sym_DOT, + ACTIONS(7978), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7980), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7982), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7984), 1, + aux_sym__immediate_decimal_token5, + STATE(4883), 1, + sym_comment, + STATE(5721), 1, + sym__immediate_decimal, + STATE(5904), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [186475] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1090), 1, anon_sym_DASH, - STATE(4815), 1, + STATE(4884), 1, sym_comment, - ACTIONS(7673), 12, + ACTIONS(1092), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -377586,18 +384642,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [188218] = 4, - ACTIONS(3), 1, + anon_sym_LBRACE, + [186499] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4816), 1, + STATE(4885), 1, sym_comment, - ACTIONS(2330), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2328), 11, + ACTIONS(7986), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377609,15 +384662,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [188242] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [186521] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4817), 1, + STATE(4886), 1, sym_comment, - ACTIONS(1902), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1900), 11, + ACTIONS(7988), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377629,14 +384681,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [188266] = 4, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [186543] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1848), 1, + ACTIONS(2454), 1, anon_sym_DASH, - STATE(4818), 1, + STATE(4887), 1, sym_comment, - ACTIONS(1850), 12, + ACTIONS(2456), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -377649,15 +384703,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, - [188290] = 4, - ACTIONS(3), 1, + [186567] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4819), 1, + STATE(4888), 1, sym_comment, - ACTIONS(2444), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2442), 11, + ACTIONS(7990), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377669,15 +384720,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [188314] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [186589] = 11, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4820), 1, + ACTIONS(1558), 1, + aux_sym_unquoted_token2, + ACTIONS(6229), 1, + anon_sym_LPAREN2, + ACTIONS(7992), 1, + anon_sym_DOLLAR, + ACTIONS(7996), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7998), 1, + aux_sym__immediate_decimal_token5, + STATE(4889), 1, sym_comment, - ACTIONS(2344), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2342), 11, + STATE(6230), 1, + sym__immediate_decimal, + ACTIONS(7994), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3433), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1556), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [186627] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(4890), 1, + sym_comment, + ACTIONS(8000), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377689,34 +384766,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [188338] = 4, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [186649] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7805), 1, - anon_sym_else, - STATE(4821), 1, + ACTIONS(1897), 1, + anon_sym_DASH, + STATE(4891), 1, sym_comment, - ACTIONS(7787), 12, - ts_builtin_sym_end, + ACTIONS(1899), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [188362] = 4, - ACTIONS(247), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [186673] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7809), 1, + ACTIONS(2547), 1, anon_sym_DASH, - STATE(4822), 1, + STATE(4892), 1, sym_comment, - ACTIONS(7807), 12, + ACTIONS(2549), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -377726,18 +384805,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [188386] = 4, - ACTIONS(3), 1, + anon_sym_LBRACE, + [186697] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4823), 1, + STATE(4893), 1, sym_comment, - ACTIONS(2448), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2446), 11, + ACTIONS(1074), 2, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(1076), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [186721] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(2539), 1, + anon_sym_DASH, + STATE(4894), 1, + sym_comment, + ACTIONS(2541), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [186745] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(4895), 1, + sym_comment, + ACTIONS(1066), 2, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(1068), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [186769] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(4896), 1, + sym_comment, + ACTIONS(1070), 2, + anon_sym_DASH, + anon_sym_DOT, + ACTIONS(1072), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [186793] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(2406), 1, + anon_sym_DASH, + STATE(4897), 1, + sym_comment, + ACTIONS(2408), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [186817] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(4898), 1, + sym_comment, + ACTIONS(8002), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377749,15 +384925,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [188410] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [186839] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4824), 1, + ACTIONS(2543), 1, + anon_sym_DASH, + STATE(4899), 1, sym_comment, - ACTIONS(1906), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1904), 11, + ACTIONS(2545), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [186863] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(4900), 1, + sym_comment, + ACTIONS(8004), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377769,14 +384964,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [188434] = 4, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [186885] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7813), 1, + ACTIONS(2561), 1, anon_sym_DASH, - STATE(4825), 1, + STATE(4901), 1, sym_comment, - ACTIONS(7811), 12, + ACTIONS(2563), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -377786,17 +384983,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [188458] = 4, - ACTIONS(247), 1, + anon_sym_LBRACE, + [186909] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1892), 1, + ACTIONS(2001), 1, anon_sym_DASH, - STATE(4826), 1, + STATE(4902), 1, sym_comment, - ACTIONS(1894), 12, + ACTIONS(2003), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -377809,34 +385006,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, - [188482] = 4, - ACTIONS(3), 1, + [186933] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4827), 1, + ACTIONS(2535), 1, + anon_sym_DASH, + STATE(4903), 1, sym_comment, - ACTIONS(2468), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2466), 11, + ACTIONS(2537), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [188506] = 4, - ACTIONS(247), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [186957] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2412), 1, + ACTIONS(2466), 1, anon_sym_DASH, - STATE(4828), 1, + STATE(4904), 1, sym_comment, - ACTIONS(2414), 12, + ACTIONS(2468), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -377849,72 +385046,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, - [188530] = 12, - ACTIONS(247), 1, + [186981] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1494), 1, - aux_sym_unquoted_token2, - ACTIONS(3545), 1, - anon_sym_DOLLAR, - ACTIONS(6072), 1, - anon_sym_LPAREN2, - ACTIONS(7815), 1, - anon_sym_DOT, - ACTIONS(7819), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7821), 1, - aux_sym__immediate_decimal_token5, - STATE(4829), 1, + ACTIONS(2017), 1, + anon_sym_DASH, + STATE(4905), 1, sym_comment, - STATE(5639), 1, - sym__immediate_decimal, - ACTIONS(1492), 2, + ACTIONS(2019), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(7817), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(5883), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [188570] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1478), 1, + anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(1492), 1, - sym__entry_separator, - ACTIONS(1494), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2997), 1, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(7823), 1, - anon_sym_LPAREN2, - ACTIONS(7825), 1, - anon_sym_DOT, - ACTIONS(7827), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7829), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7831), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7833), 1, - aux_sym__immediate_decimal_token5, - STATE(4830), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [187005] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(2043), 1, + anon_sym_DASH, + STATE(4906), 1, sym_comment, - STATE(5579), 1, - sym__immediate_decimal, - STATE(5646), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [188614] = 4, - ACTIONS(247), 1, + ACTIONS(2045), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [187029] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1900), 1, + ACTIONS(2047), 1, anon_sym_DASH, - STATE(4831), 1, + STATE(4907), 1, sym_comment, - ACTIONS(1902), 12, + ACTIONS(2049), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -377927,14 +385106,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, - [188638] = 4, - ACTIONS(247), 1, + [187053] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2442), 1, + ACTIONS(2434), 1, anon_sym_DASH, - STATE(4832), 1, + STATE(4908), 1, sym_comment, - ACTIONS(2444), 12, + ACTIONS(2436), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -377947,14 +385126,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, - [188662] = 4, - ACTIONS(247), 1, + [187077] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2466), 1, + ACTIONS(2059), 1, anon_sym_DASH, - STATE(4833), 1, + STATE(4909), 1, sym_comment, - ACTIONS(2468), 12, + ACTIONS(2061), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -377967,194 +385146,192 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, - [188686] = 4, - ACTIONS(3), 1, + [187101] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4834), 1, + ACTIONS(2442), 1, + anon_sym_DASH, + STATE(4910), 1, sym_comment, - ACTIONS(2452), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2450), 11, + ACTIONS(2444), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [188710] = 4, - ACTIONS(3), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [187125] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4835), 1, + ACTIONS(2450), 1, + anon_sym_DASH, + STATE(4911), 1, sym_comment, - ACTIONS(4986), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4988), 11, + ACTIONS(2452), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [188734] = 4, - ACTIONS(3), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [187149] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4836), 1, + ACTIONS(2067), 1, + anon_sym_DASH, + STATE(4912), 1, sym_comment, - ACTIONS(2456), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2454), 11, + ACTIONS(2069), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [188758] = 4, - ACTIONS(3), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [187173] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4837), 1, + ACTIONS(2087), 1, + anon_sym_DASH, + STATE(4913), 1, sym_comment, - ACTIONS(5020), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5022), 11, + ACTIONS(2089), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [188782] = 4, - ACTIONS(247), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [187197] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4838), 1, - sym_comment, - ACTIONS(1554), 3, + ACTIONS(2470), 1, anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1556), 10, + STATE(4914), 1, + sym_comment, + ACTIONS(2472), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [188806] = 4, - ACTIONS(3), 1, + anon_sym_LBRACE, + [187221] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4839), 1, + ACTIONS(2474), 1, + anon_sym_DASH, + STATE(4915), 1, sym_comment, - ACTIONS(7542), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7540), 11, + ACTIONS(2476), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [188830] = 3, - ACTIONS(247), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [187245] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4840), 1, + ACTIONS(2095), 1, + anon_sym_DASH, + STATE(4916), 1, sym_comment, - ACTIONS(7835), 13, + ACTIONS(2097), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [188852] = 4, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [187269] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4841), 1, + ACTIONS(2502), 1, + anon_sym_DASH, + STATE(4917), 1, sym_comment, - ACTIONS(7554), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7552), 11, + ACTIONS(2504), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [188876] = 4, - ACTIONS(3), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [187293] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4842), 1, + ACTIONS(2531), 1, + anon_sym_DASH, + STATE(4918), 1, sym_comment, - ACTIONS(7604), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7602), 11, + ACTIONS(2533), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [188900] = 4, - ACTIONS(3), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [187317] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4843), 1, + STATE(4919), 1, sym_comment, - ACTIONS(1072), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1070), 11, + ACTIONS(8006), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378166,15 +385343,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [188924] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [187339] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4844), 1, + STATE(4920), 1, sym_comment, - ACTIONS(2350), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2348), 11, + ACTIONS(8008), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378186,15 +385362,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [188948] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [187361] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4845), 1, + STATE(4921), 1, sym_comment, - ACTIONS(2402), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2400), 11, + ACTIONS(8010), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378206,15 +385381,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [188972] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [187383] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4846), 1, + STATE(4922), 1, sym_comment, - ACTIONS(5024), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5026), 11, + ACTIONS(8012), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378226,62 +385400,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [188996] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1552), 1, - aux_sym_unquoted_token2, - ACTIONS(6072), 1, - anon_sym_LPAREN2, - ACTIONS(7837), 1, - anon_sym_DOLLAR, - ACTIONS(7841), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7843), 1, - aux_sym__immediate_decimal_token5, - STATE(4847), 1, - sym_comment, - STATE(6214), 1, - sym__immediate_decimal, - ACTIONS(7839), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3401), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1550), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [189034] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [187405] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4848), 1, + ACTIONS(1909), 1, + anon_sym_DASH, + STATE(4923), 1, sym_comment, - ACTIONS(2382), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2380), 11, + ACTIONS(1911), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [189058] = 4, - ACTIONS(247), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [187429] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4849), 1, - sym_comment, - ACTIONS(1046), 2, + ACTIONS(1628), 1, anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1048), 11, + ACTIONS(7135), 1, + aux_sym__unquoted_in_list_token2, + STATE(4924), 1, + sym_comment, + ACTIONS(1640), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -378293,14 +385443,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [189082] = 4, - ACTIONS(247), 1, + [187455] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5938), 1, + ACTIONS(6069), 1, anon_sym_DASH, - STATE(4850), 1, + STATE(4925), 1, sym_comment, - ACTIONS(5940), 12, + ACTIONS(6071), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -378313,16 +385463,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LPAREN2, - [189106] = 5, - ACTIONS(247), 1, + [187479] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3229), 1, - aux_sym_record_entry_token1, - ACTIONS(7845), 1, - sym__newline, - STATE(4851), 1, + STATE(4875), 1, + aux_sym_shebang_repeat1, + STATE(4926), 1, sym_comment, - ACTIONS(7847), 11, + ACTIONS(8014), 12, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -378333,95 +385482,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - [189132] = 3, - ACTIONS(247), 1, + anon_sym_RPAREN, + [187503] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4852), 1, + ACTIONS(2569), 1, + anon_sym_DASH, + STATE(4927), 1, sym_comment, - ACTIONS(7849), 13, + ACTIONS(2571), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [189154] = 4, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [187527] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4853), 1, + ACTIONS(2398), 1, + anon_sym_DASH, + STATE(4928), 1, sym_comment, - ACTIONS(2386), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2384), 11, + ACTIONS(2400), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [189178] = 3, - ACTIONS(247), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [187551] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4854), 1, + ACTIONS(2506), 1, + anon_sym_DASH, + STATE(4929), 1, sym_comment, - ACTIONS(7851), 13, + ACTIONS(2508), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [189200] = 4, - ACTIONS(247), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [187575] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7855), 1, + ACTIONS(2510), 1, anon_sym_DASH, - STATE(4855), 1, + STATE(4930), 1, sym_comment, - ACTIONS(7853), 12, + ACTIONS(2512), 12, anon_sym_EQ, sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [189224] = 5, - ACTIONS(247), 1, + anon_sym_LBRACE, + [187599] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3231), 1, + ACTIONS(3296), 1, aux_sym_record_entry_token1, - ACTIONS(7845), 1, + ACTIONS(8016), 1, sym__newline, - STATE(4856), 1, + STATE(4931), 1, sym_comment, - ACTIONS(7847), 11, + ACTIONS(8018), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -378433,16 +385584,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RBRACE, - [189250] = 5, - ACTIONS(247), 1, + [187625] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3231), 1, + ACTIONS(3296), 1, aux_sym_record_entry_token1, - ACTIONS(7801), 1, + ACTIONS(8020), 1, sym__newline, - STATE(4857), 1, + STATE(4932), 1, sym_comment, - ACTIONS(7803), 11, + ACTIONS(8022), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -378454,63 +385605,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RBRACE, - [189276] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4858), 1, - sym_comment, - ACTIONS(7069), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7067), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [189300] = 13, - ACTIONS(247), 1, + [187651] = 13, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3231), 1, + ACTIONS(3296), 1, aux_sym_record_entry_token1, - ACTIONS(7857), 1, + ACTIONS(8024), 1, anon_sym_DOLLAR, - ACTIONS(7859), 1, + ACTIONS(8026), 1, anon_sym_DASH_DASH, - ACTIONS(7861), 1, + ACTIONS(8028), 1, anon_sym_DASH, - ACTIONS(7863), 1, + ACTIONS(8030), 1, anon_sym_LBRACE, - STATE(1693), 1, + STATE(1680), 1, sym_block, - STATE(1694), 1, + STATE(1686), 1, sym_val_closure, - STATE(4859), 1, + STATE(4933), 1, sym_comment, - STATE(5067), 1, + STATE(5193), 1, aux_sym_ctrl_do_repeat1, - STATE(5902), 1, + STATE(6018), 1, sym__flag, - STATE(708), 2, + STATE(710), 2, sym__blosure, sym_val_variable, - STATE(6046), 2, + STATE(6083), 2, sym_short_flag, sym_long_flag, - [189342] = 4, - ACTIONS(247), 1, + [187693] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2305), 1, + ACTIONS(6079), 1, anon_sym_DASH, - STATE(4860), 1, + STATE(4934), 1, + sym_comment, + ACTIONS(6081), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [187717] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(7831), 1, + aux_sym__immediate_decimal_token2, + STATE(4935), 1, + sym_comment, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1538), 9, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [187743] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(2494), 1, + anon_sym_DASH, + STATE(4936), 1, sym_comment, - ACTIONS(2307), 12, + ACTIONS(2496), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -378523,14 +385695,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, - [189366] = 4, - ACTIONS(247), 1, + [187767] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2446), 1, + ACTIONS(2494), 1, anon_sym_DASH, - STATE(4861), 1, + STATE(4937), 1, sym_comment, - ACTIONS(2448), 12, + ACTIONS(2496), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -378543,135 +385715,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, - [189390] = 4, - ACTIONS(3), 1, + [187791] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4862), 1, + ACTIONS(8032), 1, + aux_sym__immediate_decimal_token2, + STATE(4938), 1, sym_comment, - ACTIONS(7324), 2, + ACTIONS(1596), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1598), 9, ts_builtin_sym_end, - sym__space, - ACTIONS(7322), 11, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [189414] = 4, - ACTIONS(3), 1, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [187817] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4863), 1, + STATE(4939), 1, sym_comment, - ACTIONS(2360), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2358), 11, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1538), 10, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [189438] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [187841] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4864), 1, + STATE(4940), 1, sym_comment, - ACTIONS(7746), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7744), 11, + ACTIONS(1528), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1530), 10, sym__newline, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [187865] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(2430), 1, + anon_sym_DASH, + STATE(4941), 1, + sym_comment, + ACTIONS(2432), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [189462] = 4, - ACTIONS(3), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [187889] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4865), 1, + ACTIONS(2478), 1, + anon_sym_DASH, + STATE(4942), 1, sym_comment, - ACTIONS(1866), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1864), 11, + ACTIONS(2480), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [189486] = 4, - ACTIONS(3), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [187913] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4866), 1, + STATE(4943), 1, sym_comment, - ACTIONS(2307), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2305), 11, + ACTIONS(1596), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1598), 10, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [189510] = 5, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [187937] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7865), 1, - aux_sym__immediate_decimal_token2, - STATE(4867), 1, + STATE(4944), 1, sym_comment, - ACTIONS(1554), 3, + ACTIONS(1711), 3, anon_sym_DASH, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1556), 9, - ts_builtin_sym_end, + ACTIONS(1713), 10, sym__newline, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, + anon_sym_RBRACE, anon_sym_as, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [189536] = 4, - ACTIONS(247), 1, + [187961] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1904), 1, + ACTIONS(2410), 1, anon_sym_DASH, - STATE(4868), 1, + STATE(4945), 1, sym_comment, - ACTIONS(1906), 12, + ACTIONS(2412), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -378684,14 +385876,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, - [189560] = 4, - ACTIONS(247), 1, + [187985] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2450), 1, + ACTIONS(2438), 1, anon_sym_DASH, - STATE(4869), 1, + STATE(4946), 1, sym_comment, - ACTIONS(2452), 12, + ACTIONS(2440), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -378704,43 +385896,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, - [189584] = 13, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3229), 1, - aux_sym_record_entry_token1, - ACTIONS(7857), 1, - anon_sym_DOLLAR, - ACTIONS(7859), 1, - anon_sym_DASH_DASH, - ACTIONS(7861), 1, - anon_sym_DASH, - ACTIONS(7863), 1, - anon_sym_LBRACE, - STATE(1693), 1, - sym_block, - STATE(1694), 1, - sym_val_closure, - STATE(4870), 1, - sym_comment, - STATE(5067), 1, - aux_sym_ctrl_do_repeat1, - STATE(5902), 1, - sym__flag, - STATE(708), 2, - sym__blosure, - sym_val_variable, - STATE(6046), 2, - sym_short_flag, - sym_long_flag, - [189626] = 4, - ACTIONS(247), 1, + [188009] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2462), 1, + ACTIONS(8036), 1, anon_sym_DASH, - STATE(4871), 1, + STATE(4947), 1, sym_comment, - ACTIONS(2464), 12, + ACTIONS(8034), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -378750,89 +385913,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [189650] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4872), 1, - sym_comment, - ACTIONS(2307), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2305), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [189674] = 4, - ACTIONS(3), 1, + [188033] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4873), 1, + ACTIONS(8040), 1, + anon_sym_DASH, + STATE(4948), 1, sym_comment, - ACTIONS(5103), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5105), 11, + ACTIONS(8038), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [189698] = 15, - ACTIONS(247), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [188057] = 15, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7385), 1, + ACTIONS(7542), 1, sym_identifier, - ACTIONS(7391), 1, + ACTIONS(7548), 1, anon_sym_DOLLAR, - ACTIONS(7393), 1, + ACTIONS(7550), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7395), 1, + ACTIONS(7552), 1, anon_sym_DASH_DASH, - ACTIONS(7397), 1, + ACTIONS(7554), 1, anon_sym_DASH, - ACTIONS(7867), 1, + ACTIONS(8042), 1, anon_sym_PIPE, - STATE(4067), 1, + STATE(4140), 1, sym_param_long_flag, - STATE(4234), 1, + STATE(4307), 1, sym__param_name, - STATE(4586), 1, + STATE(4647), 1, aux_sym_parameter_parens_repeat1, - STATE(4874), 1, + STATE(4949), 1, sym_comment, - STATE(5085), 1, + STATE(5203), 1, sym_param_rest, - STATE(5094), 1, + STATE(5209), 1, sym_param_opt, - STATE(5095), 1, + STATE(5210), 1, sym_param_short_flag, - STATE(5403), 1, + STATE(5522), 1, sym_parameter, - [189744] = 4, + [188103] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4875), 1, + STATE(4950), 1, sym_comment, - ACTIONS(2519), 2, + ACTIONS(7725), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2517), 11, + ACTIONS(7723), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378844,12 +385987,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [189768] = 3, - ACTIONS(247), 1, + [188127] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4876), 1, + ACTIONS(8044), 1, + anon_sym_else, + STATE(4951), 1, sym_comment, - ACTIONS(7869), 13, + ACTIONS(7946), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378861,18 +386007,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [189790] = 5, - ACTIONS(247), 1, + [188151] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7873), 1, + ACTIONS(8048), 1, anon_sym_QMARK, - ACTIONS(7875), 1, + ACTIONS(8050), 1, anon_sym_DASH, - STATE(4877), 1, + STATE(4952), 1, sym_comment, - ACTIONS(7871), 11, + ACTIONS(8046), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -378884,55 +386028,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [189816] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4878), 1, - sym_comment, - STATE(4885), 1, - aux_sym_shebang_repeat1, - ACTIONS(7877), 12, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [189840] = 4, - ACTIONS(247), 1, + [188177] = 15, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2454), 1, - anon_sym_DASH, - STATE(4879), 1, - sym_comment, - ACTIONS(2456), 12, - anon_sym_EQ, + ACTIONS(7542), 1, sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(7548), 1, anon_sym_DOLLAR, + ACTIONS(7550), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7552), 1, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [189864] = 4, + ACTIONS(7554), 1, + anon_sym_DASH, + ACTIONS(7656), 1, + anon_sym_PIPE, + STATE(4140), 1, + sym_param_long_flag, + STATE(4307), 1, + sym__param_name, + STATE(4647), 1, + aux_sym_parameter_parens_repeat1, + STATE(4953), 1, + sym_comment, + STATE(5203), 1, + sym_param_rest, + STATE(5209), 1, + sym_param_opt, + STATE(5210), 1, + sym_param_short_flag, + STATE(5522), 1, + sym_parameter, + [188223] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4880), 1, + STATE(4954), 1, sym_comment, - ACTIONS(2511), 2, + ACTIONS(5097), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2509), 11, + ACTIONS(5099), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378944,64 +386079,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [189888] = 13, - ACTIONS(3), 1, + [188247] = 15, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1506), 1, - sym__entry_separator, - ACTIONS(2997), 1, + ACTIONS(7542), 1, + sym_identifier, + ACTIONS(7548), 1, anon_sym_DOLLAR, - ACTIONS(5351), 1, - anon_sym_DOT, - ACTIONS(7823), 1, - anon_sym_LPAREN2, - ACTIONS(7827), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7829), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7831), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7833), 1, - aux_sym__immediate_decimal_token5, - STATE(4881), 1, - sym_comment, - STATE(5645), 1, - sym__immediate_decimal, - ACTIONS(1496), 2, + ACTIONS(7550), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7552), 1, + anon_sym_DASH_DASH, + ACTIONS(7554), 1, + anon_sym_DASH, + ACTIONS(7560), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(5644), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [189930] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4882), 1, + STATE(4140), 1, + sym_param_long_flag, + STATE(4307), 1, + sym__param_name, + STATE(4647), 1, + aux_sym_parameter_parens_repeat1, + STATE(4955), 1, sym_comment, - ACTIONS(1834), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1832), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [189954] = 4, - ACTIONS(3), 1, + STATE(5203), 1, + sym_param_rest, + STATE(5209), 1, + sym_param_opt, + STATE(5210), 1, + sym_param_short_flag, + STATE(5522), 1, + sym_parameter, + [188293] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4883), 1, + STATE(4956), 1, sym_comment, - ACTIONS(2025), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2019), 11, + ACTIONS(5117), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379013,34 +386127,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [189978] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [188315] = 15, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4884), 1, + ACTIONS(7542), 1, + sym_identifier, + ACTIONS(7548), 1, + anon_sym_DOLLAR, + ACTIONS(7550), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7552), 1, + anon_sym_DASH_DASH, + ACTIONS(7554), 1, + anon_sym_DASH, + ACTIONS(7593), 1, + anon_sym_RPAREN, + STATE(4140), 1, + sym_param_long_flag, + STATE(4307), 1, + sym__param_name, + STATE(4647), 1, + aux_sym_parameter_parens_repeat1, + STATE(4957), 1, sym_comment, - ACTIONS(1572), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1560), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [190002] = 4, - ACTIONS(247), 1, + STATE(5203), 1, + sym_param_rest, + STATE(5209), 1, + sym_param_opt, + STATE(5210), 1, + sym_param_short_flag, + STATE(5522), 1, + sym_parameter, + [188361] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(4885), 1, + STATE(4958), 1, sym_comment, - ACTIONS(7879), 12, + ACTIONS(5121), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379053,84 +386178,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [190026] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [188383] = 12, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4886), 1, + ACTIONS(1526), 1, + aux_sym_unquoted_token2, + ACTIONS(3616), 1, + anon_sym_DOLLAR, + ACTIONS(6229), 1, + anon_sym_LPAREN2, + ACTIONS(8052), 1, + anon_sym_DOT, + ACTIONS(8056), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8058), 1, + aux_sym__immediate_decimal_token5, + STATE(4959), 1, sym_comment, - ACTIONS(1878), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1876), 11, - sym__newline, - anon_sym_SEMI, + STATE(5947), 1, + sym__immediate_decimal, + ACTIONS(1524), 2, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [190050] = 15, - ACTIONS(247), 1, + anon_sym_EQ_GT, + ACTIONS(8054), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(5976), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [188423] = 15, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7385), 1, + ACTIONS(7542), 1, sym_identifier, - ACTIONS(7391), 1, + ACTIONS(7548), 1, anon_sym_DOLLAR, - ACTIONS(7393), 1, + ACTIONS(7550), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7395), 1, + ACTIONS(7552), 1, anon_sym_DASH_DASH, - ACTIONS(7397), 1, + ACTIONS(7554), 1, anon_sym_DASH, - ACTIONS(7881), 1, + ACTIONS(8060), 1, anon_sym_RBRACK, - STATE(4067), 1, + STATE(4140), 1, sym_param_long_flag, - STATE(4234), 1, + STATE(4307), 1, sym__param_name, - STATE(4586), 1, + STATE(4647), 1, aux_sym_parameter_parens_repeat1, - STATE(4887), 1, + STATE(4960), 1, sym_comment, - STATE(5085), 1, + STATE(5203), 1, sym_param_rest, - STATE(5094), 1, + STATE(5209), 1, sym_param_opt, - STATE(5095), 1, + STATE(5210), 1, sym_param_short_flag, - STATE(5403), 1, + STATE(5522), 1, sym_parameter, - [190096] = 3, - ACTIONS(247), 1, + [188469] = 15, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4888), 1, + ACTIONS(7542), 1, + sym_identifier, + ACTIONS(7548), 1, + anon_sym_DOLLAR, + ACTIONS(7550), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7552), 1, + anon_sym_DASH_DASH, + ACTIONS(7554), 1, + anon_sym_DASH, + ACTIONS(8062), 1, + anon_sym_RPAREN, + STATE(4140), 1, + sym_param_long_flag, + STATE(4307), 1, + sym__param_name, + STATE(4647), 1, + aux_sym_parameter_parens_repeat1, + STATE(4961), 1, + sym_comment, + STATE(5203), 1, + sym_param_rest, + STATE(5209), 1, + sym_param_opt, + STATE(5210), 1, + sym_param_short_flag, + STATE(5522), 1, + sym_parameter, + [188515] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(7757), 1, + anon_sym_DASH, + STATE(4962), 1, sym_comment, - ACTIONS(7883), 13, + ACTIONS(7753), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [190118] = 4, - ACTIONS(247), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [188539] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4889), 1, + ACTIONS(8064), 1, + anon_sym_catch, + STATE(4963), 1, sym_comment, - STATE(4983), 1, - aux_sym_shebang_repeat1, - ACTIONS(7885), 12, + ACTIONS(7950), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379142,16 +386309,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [190142] = 4, + [188563] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4890), 1, + STATE(4964), 1, sym_comment, - ACTIONS(7590), 2, + ACTIONS(5063), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7588), 11, + ACTIONS(5065), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379163,15 +386329,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [190166] = 4, + [188587] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4891), 1, + STATE(4965), 1, sym_comment, - ACTIONS(2515), 2, + ACTIONS(5071), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2513), 11, + ACTIONS(5073), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379183,15 +386349,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [190190] = 4, + [188611] = 15, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(7542), 1, + sym_identifier, + ACTIONS(7548), 1, + anon_sym_DOLLAR, + ACTIONS(7550), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7552), 1, + anon_sym_DASH_DASH, + ACTIONS(7554), 1, + anon_sym_DASH, + ACTIONS(8066), 1, + anon_sym_RBRACK, + STATE(4140), 1, + sym_param_long_flag, + STATE(4307), 1, + sym__param_name, + STATE(4647), 1, + aux_sym_parameter_parens_repeat1, + STATE(4966), 1, + sym_comment, + STATE(5203), 1, + sym_param_rest, + STATE(5209), 1, + sym_param_opt, + STATE(5210), 1, + sym_param_short_flag, + STATE(5522), 1, + sym_parameter, + [188657] = 15, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(7542), 1, + sym_identifier, + ACTIONS(7548), 1, + anon_sym_DOLLAR, + ACTIONS(7550), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7552), 1, + anon_sym_DASH_DASH, + ACTIONS(7554), 1, + anon_sym_DASH, + ACTIONS(8068), 1, + anon_sym_RPAREN, + STATE(4140), 1, + sym_param_long_flag, + STATE(4307), 1, + sym__param_name, + STATE(4647), 1, + aux_sym_parameter_parens_repeat1, + STATE(4967), 1, + sym_comment, + STATE(5203), 1, + sym_param_rest, + STATE(5209), 1, + sym_param_opt, + STATE(5210), 1, + sym_param_short_flag, + STATE(5522), 1, + sym_parameter, + [188703] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4892), 1, + STATE(4968), 1, sym_comment, - ACTIONS(1826), 2, + ACTIONS(5047), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1822), 11, + ACTIONS(5049), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379203,15 +386431,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [190214] = 4, + [188727] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4893), 1, + STATE(4969), 1, sym_comment, - ACTIONS(2475), 2, + ACTIONS(5067), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2473), 11, + ACTIONS(5069), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379223,65 +386451,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [190238] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2416), 1, - anon_sym_DASH, - STATE(4894), 1, - sym_comment, - ACTIONS(2418), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [190262] = 15, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7385), 1, - sym_identifier, - ACTIONS(7391), 1, - anon_sym_DOLLAR, - ACTIONS(7393), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7395), 1, - anon_sym_DASH_DASH, - ACTIONS(7397), 1, - anon_sym_DASH, - ACTIONS(7887), 1, - anon_sym_RPAREN, - STATE(4067), 1, - sym_param_long_flag, - STATE(4234), 1, - sym__param_name, - STATE(4586), 1, - aux_sym_parameter_parens_repeat1, - STATE(4895), 1, - sym_comment, - STATE(5085), 1, - sym_param_rest, - STATE(5094), 1, - sym_param_opt, - STATE(5095), 1, - sym_param_short_flag, - STATE(5403), 1, - sym_parameter, - [190308] = 4, - ACTIONS(247), 1, + [188751] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1864), 1, + ACTIONS(8072), 1, anon_sym_DASH, - STATE(4896), 1, + STATE(4970), 1, sym_comment, - ACTIONS(1866), 12, + ACTIONS(8070), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -379291,44 +386468,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [190332] = 11, - ACTIONS(247), 1, + [188775] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3545), 1, - anon_sym_DOLLAR, - ACTIONS(6072), 1, - anon_sym_LPAREN2, - ACTIONS(6074), 1, - anon_sym_DOT, - ACTIONS(6078), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6080), 1, - aux_sym__immediate_decimal_token5, - STATE(4897), 1, - sym_comment, - STATE(5882), 1, - sym__immediate_decimal, - ACTIONS(6076), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(5881), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1506), 3, + ACTIONS(8076), 1, + anon_sym_DASH, + STATE(4971), 1, + sym_comment, + ACTIONS(8074), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [190370] = 4, - ACTIONS(247), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [188799] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1872), 1, + ACTIONS(8080), 1, anon_sym_DASH, - STATE(4898), 1, + STATE(4972), 1, sym_comment, - ACTIONS(1874), 12, + ACTIONS(8078), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -379338,15 +386508,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [190394] = 3, - ACTIONS(247), 1, + [188823] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4899), 1, + STATE(4973), 1, sym_comment, - ACTIONS(7889), 13, + ACTIONS(2571), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2569), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379358,16 +386531,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [190416] = 4, - ACTIONS(247), 1, + [188847] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1832), 1, + ACTIONS(8084), 1, anon_sym_DASH, - STATE(4900), 1, + STATE(4974), 1, sym_comment, - ACTIONS(1834), 12, + ACTIONS(8082), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -379377,17 +386548,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [190440] = 4, - ACTIONS(247), 1, + [188871] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1876), 1, + ACTIONS(8088), 1, anon_sym_DASH, - STATE(4901), 1, + STATE(4975), 1, sym_comment, - ACTIONS(1878), 12, + ACTIONS(8086), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -379397,15 +386568,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, + [188895] = 12, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1560), 1, + anon_sym_DASH, + ACTIONS(6227), 1, + anon_sym_DOLLAR, + ACTIONS(6229), 1, + anon_sym_LPAREN2, + ACTIONS(6231), 1, + anon_sym_DOT, + ACTIONS(6235), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6237), 1, + aux_sym__immediate_decimal_token5, + STATE(4976), 1, + sym_comment, + STATE(5970), 1, + sym__immediate_decimal, + ACTIONS(1570), 2, + anon_sym_DASH_DASH, anon_sym_LBRACE, - [190464] = 3, - ACTIONS(247), 1, + ACTIONS(6233), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(5969), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [188935] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4902), 1, + STATE(4977), 1, sym_comment, - ACTIONS(7891), 13, + ACTIONS(2228), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2222), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379417,16 +386619,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + [188959] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1510), 1, anon_sym_RBRACE, - [190486] = 4, + ACTIONS(1524), 1, + sym__entry_separator, + ACTIONS(1526), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(3044), 1, + anon_sym_DOLLAR, + ACTIONS(7974), 1, + anon_sym_LPAREN2, + ACTIONS(8090), 1, + anon_sym_DOT, + ACTIONS(8092), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8094), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8096), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8098), 1, + aux_sym__immediate_decimal_token5, + STATE(4978), 1, + sym_comment, + STATE(5742), 1, + sym__immediate_decimal, + STATE(5904), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [189003] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7895), 1, - sym__space, - STATE(4903), 1, + STATE(4979), 1, sym_comment, - ACTIONS(7893), 12, + ACTIONS(2567), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2565), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379438,13 +386669,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [190510] = 3, - ACTIONS(247), 1, + [189027] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4904), 1, + STATE(4980), 1, sym_comment, - ACTIONS(6594), 13, + ACTIONS(2240), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2234), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379456,17 +386689,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [190532] = 4, + [189051] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4905), 1, + STATE(4981), 1, sym_comment, - ACTIONS(2464), 2, + ACTIONS(2119), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2462), 11, + ACTIONS(2113), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379478,12 +386709,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [190556] = 3, - ACTIONS(247), 1, + [189075] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4906), 1, + STATE(4982), 1, sym_comment, - ACTIONS(7897), 13, + ACTIONS(2212), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2206), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379495,38 +386729,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [190578] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1560), 1, - anon_sym_DASH, - ACTIONS(6965), 1, - aux_sym__unquoted_in_list_token2, - STATE(4907), 1, - sym_comment, - ACTIONS(1572), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [190604] = 4, + [189099] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4908), 1, + STATE(4983), 1, sym_comment, - ACTIONS(2311), 2, + ACTIONS(5051), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2309), 11, + ACTIONS(5053), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379538,35 +386749,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [190628] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2305), 1, - anon_sym_DASH, - STATE(4909), 1, - sym_comment, - ACTIONS(2307), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [190652] = 4, + [189123] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4910), 1, + STATE(4984), 1, sym_comment, - ACTIONS(2499), 2, + ACTIONS(5059), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2497), 11, + ACTIONS(5061), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379578,15 +386769,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [190676] = 4, + [189147] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4911), 1, + STATE(4985), 1, sym_comment, - ACTIONS(2418), 2, + ACTIONS(7784), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2416), 11, + ACTIONS(7782), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379598,12 +386789,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [190700] = 3, - ACTIONS(247), 1, + [189171] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4912), 1, + STATE(4986), 1, sym_comment, - ACTIONS(7899), 13, + ACTIONS(7364), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7362), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379615,37 +386809,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [190722] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2348), 1, - anon_sym_DASH, - STATE(4913), 1, - sym_comment, - ACTIONS(2350), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [190746] = 4, + [189195] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4914), 1, + STATE(4987), 1, sym_comment, - ACTIONS(2005), 2, + ACTIONS(7797), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1999), 11, + ACTIONS(7795), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379657,15 +386829,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [190770] = 4, + [189219] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4915), 1, + STATE(4988), 1, sym_comment, - ACTIONS(1874), 2, + ACTIONS(2553), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1872), 11, + ACTIONS(2551), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379677,15 +386849,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [190794] = 4, + [189243] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4916), 1, + STATE(4989), 1, sym_comment, - ACTIONS(2013), 2, + ACTIONS(2424), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2007), 11, + ACTIONS(2422), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379697,57 +386869,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [190818] = 9, - ACTIONS(247), 1, + [189267] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1560), 1, + ACTIONS(1628), 1, anon_sym_DASH, - ACTIONS(4512), 1, + ACTIONS(4614), 1, anon_sym_DOT_DOT2, - ACTIONS(6790), 1, + ACTIONS(6929), 1, aux_sym_unquoted_token2, - ACTIONS(7901), 1, + ACTIONS(8100), 1, sym_filesize_unit, - ACTIONS(7903), 1, + ACTIONS(8102), 1, sym_duration_unit, - STATE(4917), 1, + STATE(4990), 1, sym_comment, - ACTIONS(4514), 2, + ACTIONS(4616), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1572), 6, + ACTIONS(1640), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [190852] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2420), 1, - anon_sym_DASH, - STATE(4918), 1, - sym_comment, - ACTIONS(2422), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [190876] = 3, - ACTIONS(247), 1, + [189301] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4919), 1, + STATE(4991), 1, sym_comment, - ACTIONS(7905), 13, + ACTIONS(2559), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2557), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379759,37 +386914,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [190898] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4920), 1, - sym_comment, - ACTIONS(1653), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1655), 10, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [190922] = 4, + [189325] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4921), 1, + STATE(4992), 1, sym_comment, - ACTIONS(2523), 2, + ACTIONS(7809), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2521), 11, + ACTIONS(7807), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379801,32 +386934,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [190946] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2338), 1, - anon_sym_DASH, - STATE(4922), 1, - sym_comment, - ACTIONS(2340), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [190970] = 3, - ACTIONS(247), 1, + [189349] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4923), 1, + STATE(4993), 1, sym_comment, - ACTIONS(7590), 13, + ACTIONS(5075), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5077), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379838,14 +386954,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [190992] = 3, - ACTIONS(247), 1, + [189373] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4924), 1, + STATE(4994), 1, sym_comment, - ACTIONS(7847), 13, + ACTIONS(5083), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5085), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379857,48 +386974,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [191014] = 15, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7385), 1, - sym_identifier, - ACTIONS(7391), 1, - anon_sym_DOLLAR, - ACTIONS(7393), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7395), 1, - anon_sym_DASH_DASH, - ACTIONS(7397), 1, - anon_sym_DASH, - ACTIONS(7524), 1, - anon_sym_RPAREN, - STATE(4067), 1, - sym_param_long_flag, - STATE(4234), 1, - sym__param_name, - STATE(4586), 1, - aux_sym_parameter_parens_repeat1, - STATE(4925), 1, - sym_comment, - STATE(5085), 1, - sym_param_rest, - STATE(5094), 1, - sym_param_opt, - STATE(5095), 1, - sym_param_short_flag, - STATE(5403), 1, - sym_parameter, - [191060] = 4, + [189397] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4926), 1, + STATE(4995), 1, sym_comment, - ACTIONS(2487), 2, + ACTIONS(7842), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2485), 11, + ACTIONS(7840), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379910,35 +386994,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [191084] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1888), 1, - anon_sym_DASH, - STATE(4927), 1, - sym_comment, - ACTIONS(1890), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [191108] = 4, + [189421] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4928), 1, + STATE(4996), 1, sym_comment, - ACTIONS(2460), 2, + ACTIONS(7860), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2458), 11, + ACTIONS(7858), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379950,55 +387014,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [191132] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2434), 1, - anon_sym_DASH, - STATE(4929), 1, - sym_comment, - ACTIONS(2436), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [191156] = 4, - ACTIONS(247), 1, + [189445] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4930), 1, + STATE(4997), 1, sym_comment, - ACTIONS(1050), 2, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1052), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(2500), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2498), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [191180] = 4, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [189469] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4931), 1, + STATE(4998), 1, sym_comment, - ACTIONS(2422), 2, + ACTIONS(2428), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2420), 11, + ACTIONS(2426), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380010,15 +387054,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [191204] = 4, + [189493] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4932), 1, + STATE(4999), 1, sym_comment, - ACTIONS(1949), 2, + ACTIONS(2448), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1947), 11, + ACTIONS(2446), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380030,15 +387074,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [191228] = 4, + [189517] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4933), 1, + STATE(5000), 1, sym_comment, - ACTIONS(1890), 2, + ACTIONS(2488), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1888), 11, + ACTIONS(2486), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380050,35 +387094,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [191252] = 4, - ACTIONS(247), 1, + [189541] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2517), 1, - anon_sym_DASH, - STATE(4934), 1, + STATE(5001), 1, sym_comment, - ACTIONS(2519), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(2416), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2414), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [191276] = 4, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [189565] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4935), 1, + STATE(5002), 1, sym_comment, - ACTIONS(4998), 2, + ACTIONS(2484), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5000), 11, + ACTIONS(2482), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380090,35 +387134,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [191300] = 4, - ACTIONS(247), 1, + [189589] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7909), 1, - anon_sym_DASH, - STATE(4936), 1, + STATE(5003), 1, sym_comment, - ACTIONS(7907), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(2526), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2524), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [191324] = 4, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [189613] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4937), 1, + STATE(5004), 1, sym_comment, - ACTIONS(5002), 2, + ACTIONS(7517), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5004), 11, + ACTIONS(7515), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380130,32 +387174,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [191348] = 4, - ACTIONS(247), 1, + [189637] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4938), 1, + STATE(5005), 1, sym_comment, - ACTIONS(1518), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1520), 10, + ACTIONS(8018), 13, sym__newline, anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [191372] = 3, - ACTIONS(247), 1, + [189659] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4939), 1, + STATE(5006), 1, sym_comment, - ACTIONS(7911), 13, + ACTIONS(8022), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380169,32 +387212,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [191394] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7915), 1, - anon_sym_DASH, - STATE(4940), 1, - sym_comment, - ACTIONS(7913), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [191418] = 3, - ACTIONS(247), 1, + [189681] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4941), 1, + STATE(5007), 1, sym_comment, - ACTIONS(7917), 13, + ACTIONS(8104), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380208,32 +387231,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [191440] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5942), 1, - anon_sym_DASH, - STATE(4942), 1, - sym_comment, - ACTIONS(5944), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [191464] = 3, - ACTIONS(247), 1, + [189703] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4943), 1, + STATE(5008), 1, sym_comment, - ACTIONS(7803), 13, + ACTIONS(8106), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380247,15 +387250,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [191486] = 4, - ACTIONS(247), 1, + [189725] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7919), 1, - anon_sym_catch, - STATE(4944), 1, + STATE(5009), 1, sym_comment, - ACTIONS(7616), 12, - ts_builtin_sym_end, + ACTIONS(6753), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380267,12 +387267,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [191510] = 3, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [189747] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4945), 1, + STATE(5010), 1, sym_comment, - ACTIONS(7921), 13, + ACTIONS(1092), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1090), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380284,17 +387289,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [191532] = 4, + [189771] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4946), 1, + STATE(5011), 1, sym_comment, - ACTIONS(2436), 2, + ACTIONS(2496), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2434), 11, + ACTIONS(2494), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380306,46 +387309,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [191556] = 15, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7385), 1, - sym_identifier, - ACTIONS(7391), 1, - anon_sym_DOLLAR, - ACTIONS(7393), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7395), 1, - anon_sym_DASH_DASH, - ACTIONS(7397), 1, - anon_sym_DASH, - ACTIONS(7923), 1, - anon_sym_RBRACK, - STATE(4067), 1, - sym_param_long_flag, - STATE(4234), 1, - sym__param_name, - STATE(4586), 1, - aux_sym_parameter_parens_repeat1, - STATE(4947), 1, - sym_comment, - STATE(5085), 1, - sym_param_rest, - STATE(5094), 1, - sym_param_opt, - STATE(5095), 1, - sym_param_short_flag, - STATE(5403), 1, - sym_parameter, - [191602] = 4, + [189795] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4948), 1, + STATE(5012), 1, sym_comment, - ACTIONS(2440), 2, + ACTIONS(2496), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2438), 11, + ACTIONS(2494), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380357,43 +387329,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [191626] = 15, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7385), 1, - sym_identifier, - ACTIONS(7389), 1, - anon_sym_PIPE, - ACTIONS(7391), 1, - anon_sym_DOLLAR, - ACTIONS(7393), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7395), 1, - anon_sym_DASH_DASH, - ACTIONS(7397), 1, - anon_sym_DASH, - STATE(4067), 1, - sym_param_long_flag, - STATE(4234), 1, - sym__param_name, - STATE(4586), 1, - aux_sym_parameter_parens_repeat1, - STATE(4949), 1, - sym_comment, - STATE(5085), 1, - sym_param_rest, - STATE(5094), 1, - sym_param_opt, - STATE(5095), 1, - sym_param_short_flag, - STATE(5403), 1, - sym_parameter, - [191672] = 3, - ACTIONS(247), 1, + [189819] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4950), 1, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(5013), 1, sym_comment, - ACTIONS(7925), 13, + ACTIONS(8108), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380406,76 +387349,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [191694] = 4, - ACTIONS(247), 1, + [189843] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1822), 1, - anon_sym_DASH, - STATE(4951), 1, + STATE(5014), 1, sym_comment, - ACTIONS(1826), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(2456), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2454), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [191718] = 4, - ACTIONS(247), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [189867] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2380), 1, - anon_sym_DASH, - STATE(4952), 1, + STATE(5015), 1, sym_comment, - ACTIONS(2382), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(2432), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2430), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [191742] = 4, - ACTIONS(247), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [189891] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1070), 1, - anon_sym_DASH, - STATE(4953), 1, + STATE(5016), 1, sym_comment, - ACTIONS(1072), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(2480), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2478), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [191766] = 4, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [189915] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4954), 1, + STATE(5017), 1, sym_comment, - ACTIONS(2491), 2, + ACTIONS(1899), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2489), 11, + ACTIONS(1897), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380487,15 +387429,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [191790] = 4, + [189939] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4955), 1, + STATE(5018), 1, sym_comment, - ACTIONS(2364), 2, + ACTIONS(2549), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2362), 11, + ACTIONS(2547), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380507,46 +387449,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [191814] = 15, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7385), 1, - sym_identifier, - ACTIONS(7391), 1, - anon_sym_DOLLAR, - ACTIONS(7393), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7395), 1, - anon_sym_DASH_DASH, - ACTIONS(7397), 1, - anon_sym_DASH, - ACTIONS(7421), 1, - anon_sym_RBRACK, - STATE(4067), 1, - sym_param_long_flag, - STATE(4234), 1, - sym__param_name, - STATE(4586), 1, - aux_sym_parameter_parens_repeat1, - STATE(4956), 1, - sym_comment, - STATE(5085), 1, - sym_param_rest, - STATE(5094), 1, - sym_param_opt, - STATE(5095), 1, - sym_param_short_flag, - STATE(5403), 1, - sym_parameter, - [191860] = 4, + [189963] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4957), 1, + STATE(5019), 1, sym_comment, - ACTIONS(4990), 2, + ACTIONS(2541), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4992), 11, + ACTIONS(2539), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380558,15 +387469,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [191884] = 4, + [189987] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4958), 1, + STATE(5020), 1, sym_comment, - ACTIONS(2368), 2, + ACTIONS(2412), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2366), 11, + ACTIONS(2410), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380578,15 +387489,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [191908] = 4, + [190011] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4959), 1, + STATE(5021), 1, sym_comment, - ACTIONS(1894), 2, + ACTIONS(2440), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1892), 11, + ACTIONS(2438), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380598,138 +387509,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [191932] = 4, - ACTIONS(247), 1, + [190035] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4960), 1, + STATE(5022), 1, sym_comment, - ACTIONS(1054), 2, - anon_sym_DASH, - anon_sym_DOT, - ACTIONS(1056), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(8110), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [191956] = 15, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7385), 1, - sym_identifier, - ACTIONS(7391), 1, - anon_sym_DOLLAR, - ACTIONS(7393), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7395), 1, - anon_sym_DASH_DASH, - ACTIONS(7397), 1, - anon_sym_DASH, - ACTIONS(7517), 1, - anon_sym_RBRACK, - STATE(4067), 1, - sym_param_long_flag, - STATE(4234), 1, - sym__param_name, - STATE(4586), 1, - aux_sym_parameter_parens_repeat1, - STATE(4961), 1, - sym_comment, - STATE(5085), 1, - sym_param_rest, - STATE(5094), 1, - sym_param_opt, - STATE(5095), 1, - sym_param_short_flag, - STATE(5403), 1, - sym_parameter, - [192002] = 5, - ACTIONS(247), 1, + anon_sym_RBRACE, + [190057] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7546), 1, - aux_sym__immediate_decimal_token2, - STATE(4962), 1, + STATE(5023), 1, sym_comment, - ACTIONS(1518), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1520), 9, + ACTIONS(2408), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2406), 11, sym__newline, anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [192028] = 4, - ACTIONS(247), 1, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [190081] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2362), 1, - anon_sym_DASH, - STATE(4963), 1, + STATE(5024), 1, sym_comment, - ACTIONS(2364), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(8112), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [192052] = 15, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7385), 1, - sym_identifier, - ACTIONS(7391), 1, - anon_sym_DOLLAR, - ACTIONS(7393), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7395), 1, - anon_sym_DASH_DASH, - ACTIONS(7397), 1, - anon_sym_DASH, - ACTIONS(7522), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - STATE(4067), 1, - sym_param_long_flag, - STATE(4234), 1, - sym__param_name, - STATE(4586), 1, - aux_sym_parameter_parens_repeat1, - STATE(4964), 1, - sym_comment, - STATE(5085), 1, - sym_param_rest, - STATE(5094), 1, - sym_param_opt, - STATE(5095), 1, - sym_param_short_flag, - STATE(5403), 1, - sym_parameter, - [192098] = 4, + anon_sym_RBRACE, + [190103] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4965), 1, + STATE(5025), 1, sym_comment, - ACTIONS(4994), 2, + ACTIONS(2545), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4996), 11, + ACTIONS(2543), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380741,15 +387587,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [192122] = 4, + [190127] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4966), 1, + STATE(5026), 1, sym_comment, - ACTIONS(1850), 2, + ACTIONS(2563), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1848), 11, + ACTIONS(2561), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380761,95 +387607,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [192146] = 4, - ACTIONS(247), 1, + [190151] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7929), 1, - anon_sym_DASH, - STATE(4967), 1, + STATE(5027), 1, sym_comment, - ACTIONS(7927), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(6761), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [192170] = 4, - ACTIONS(247), 1, + anon_sym_RBRACE, + [190173] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7933), 1, - anon_sym_DASH, - STATE(4968), 1, + STATE(5028), 1, sym_comment, - ACTIONS(7931), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(5572), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5570), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [192194] = 4, - ACTIONS(247), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [190197] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7937), 1, - anon_sym_DASH, - STATE(4969), 1, + STATE(5029), 1, sym_comment, - ACTIONS(7935), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(2003), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2001), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [192218] = 4, - ACTIONS(247), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [190221] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2309), 1, - anon_sym_DASH, - STATE(4970), 1, + ACTIONS(1570), 1, + sym__entry_separator, + ACTIONS(3044), 1, + anon_sym_DOLLAR, + ACTIONS(7974), 1, + anon_sym_LPAREN2, + ACTIONS(7978), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7980), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7982), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7984), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8114), 1, + anon_sym_DOT, + STATE(5030), 1, sym_comment, - ACTIONS(2311), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, + STATE(5772), 1, + sym__immediate_decimal, + ACTIONS(1560), 2, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [192242] = 4, + anon_sym_RBRACE, + STATE(5959), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [190263] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4971), 1, + STATE(5031), 1, sym_comment, - ACTIONS(7722), 2, + ACTIONS(2537), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7720), 11, + ACTIONS(2535), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380861,13 +387715,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [192266] = 3, - ACTIONS(247), 1, + [190287] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4972), 1, - sym_comment, - ACTIONS(7939), 13, + ACTIONS(3294), 1, + aux_sym_record_entry_token1, + ACTIONS(8016), 1, sym__newline, + STATE(5032), 1, + sym_comment, + ACTIONS(8018), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -380878,18 +387735,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_RBRACE, - [192288] = 4, - ACTIONS(3), 1, + [190313] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(4973), 1, - sym_comment, - ACTIONS(5099), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5101), 11, + ACTIONS(3294), 1, + aux_sym_record_entry_token1, + ACTIONS(8020), 1, sym__newline, + STATE(5033), 1, + sym_comment, + ACTIONS(8022), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -380900,52 +387756,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [192312] = 4, - ACTIONS(247), 1, + anon_sym_RBRACE, + [190339] = 13, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2342), 1, - anon_sym_DASH, - STATE(4974), 1, - sym_comment, - ACTIONS(2344), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(3294), 1, + aux_sym_record_entry_token1, + ACTIONS(8024), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + ACTIONS(8026), 1, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [192336] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2366), 1, + ACTIONS(8028), 1, anon_sym_DASH, - STATE(4975), 1, - sym_comment, - ACTIONS(2368), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + ACTIONS(8030), 1, anon_sym_LBRACE, - [192360] = 3, - ACTIONS(247), 1, + STATE(1680), 1, + sym_block, + STATE(1686), 1, + sym_val_closure, + STATE(5034), 1, + sym_comment, + STATE(5193), 1, + aux_sym_ctrl_do_repeat1, + STATE(6018), 1, + sym__flag, + STATE(710), 2, + sym__blosure, + sym_val_variable, + STATE(6083), 2, + sym_short_flag, + sym_long_flag, + [190381] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4976), 1, + STATE(5035), 1, sym_comment, - ACTIONS(7941), 13, + ACTIONS(2468), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2466), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380957,54 +387806,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [192382] = 4, - ACTIONS(247), 1, + [190405] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2521), 1, - anon_sym_DASH, - STATE(4977), 1, + STATE(5036), 1, sym_comment, - ACTIONS(2523), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(2019), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2017), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [192406] = 4, - ACTIONS(247), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [190429] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2384), 1, - anon_sym_DASH, - STATE(4978), 1, + STATE(5037), 1, sym_comment, - ACTIONS(2386), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(2045), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2043), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [192430] = 3, - ACTIONS(247), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [190453] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4979), 1, + STATE(5038), 1, sym_comment, - ACTIONS(7943), 13, + ACTIONS(2049), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2047), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381016,34 +387866,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [192452] = 4, - ACTIONS(247), 1, + [190477] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2438), 1, - anon_sym_DASH, - STATE(4980), 1, + STATE(5039), 1, sym_comment, - ACTIONS(2440), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(2436), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2434), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [192476] = 3, - ACTIONS(247), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [190501] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4981), 1, + STATE(5040), 1, sym_comment, - ACTIONS(7945), 13, + ACTIONS(2061), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2059), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381055,17 +387906,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [192498] = 4, + [190525] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4982), 1, + STATE(5041), 1, sym_comment, - ACTIONS(5028), 2, + ACTIONS(2444), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5030), 11, + ACTIONS(2442), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381077,14 +387926,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [192522] = 4, - ACTIONS(247), 1, + [190549] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(4983), 1, + STATE(5042), 1, sym_comment, - ACTIONS(7947), 12, + ACTIONS(2452), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2450), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381096,16 +387946,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [192546] = 4, + [190573] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4984), 1, + STATE(5043), 1, sym_comment, - ACTIONS(5032), 2, + ACTIONS(2069), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5034), 11, + ACTIONS(2067), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381117,96 +387966,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [192570] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(4985), 1, - sym_comment, - ACTIONS(1540), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1542), 10, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [192594] = 15, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7385), 1, - sym_identifier, - ACTIONS(7391), 1, - anon_sym_DOLLAR, - ACTIONS(7393), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7395), 1, - anon_sym_DASH_DASH, - ACTIONS(7397), 1, - anon_sym_DASH, - ACTIONS(7949), 1, - anon_sym_RPAREN, - STATE(4067), 1, - sym_param_long_flag, - STATE(4234), 1, - sym__param_name, - STATE(4586), 1, - aux_sym_parameter_parens_repeat1, - STATE(4986), 1, - sym_comment, - STATE(5085), 1, - sym_param_rest, - STATE(5094), 1, - sym_param_opt, - STATE(5095), 1, - sym_param_short_flag, - STATE(5403), 1, - sym_parameter, - [192640] = 14, + [190597] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1478), 1, - anon_sym_RBRACE, - ACTIONS(1492), 1, - sym__entry_separator, - ACTIONS(1494), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(2997), 1, - anon_sym_DOLLAR, - ACTIONS(7823), 1, - anon_sym_LPAREN2, - ACTIONS(7951), 1, - anon_sym_DOT, - ACTIONS(7953), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7955), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7957), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7959), 1, - aux_sym__immediate_decimal_token5, - STATE(4987), 1, - sym_comment, - STATE(5609), 1, - sym__immediate_decimal, - STATE(5646), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [192684] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4988), 1, + STATE(5044), 1, sym_comment, - ACTIONS(7116), 2, + ACTIONS(2089), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7114), 11, + ACTIONS(2087), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381218,42 +387986,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [192708] = 11, - ACTIONS(247), 1, + [190621] = 12, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1494), 1, - aux_sym_unquoted_token2, - ACTIONS(6072), 1, + ACTIONS(1510), 1, + anon_sym_DASH, + ACTIONS(6227), 1, + anon_sym_DOLLAR, + ACTIONS(6229), 1, anon_sym_LPAREN2, - ACTIONS(7837), 1, + ACTIONS(6235), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6237), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6428), 1, + anon_sym_DOT, + STATE(5045), 1, + sym_comment, + STATE(5967), 1, + sym__immediate_decimal, + ACTIONS(1524), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + ACTIONS(6233), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(5971), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [190661] = 11, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(3616), 1, anon_sym_DOLLAR, - ACTIONS(7841), 1, + ACTIONS(6229), 1, + anon_sym_LPAREN2, + ACTIONS(6231), 1, + anon_sym_DOT, + ACTIONS(6235), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7843), 1, + ACTIONS(6237), 1, aux_sym__immediate_decimal_token5, - STATE(4989), 1, + STATE(5046), 1, sym_comment, - STATE(6480), 1, + STATE(5975), 1, sym__immediate_decimal, - ACTIONS(7839), 2, + ACTIONS(6233), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3393), 2, + STATE(5974), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1492), 3, + ACTIONS(1570), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [192746] = 4, + [190699] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4990), 1, + STATE(5047), 1, sym_comment, - ACTIONS(2414), 2, + ACTIONS(2472), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2412), 11, + ACTIONS(2470), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381265,15 +388061,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [192770] = 4, + [190723] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4991), 1, + STATE(5048), 1, sym_comment, - ACTIONS(2503), 2, + ACTIONS(2476), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2501), 11, + ACTIONS(2474), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381285,15 +388081,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [192794] = 4, + [190747] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4992), 1, + STATE(5049), 1, sym_comment, - ACTIONS(2390), 2, + ACTIONS(2097), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2388), 11, + ACTIONS(2095), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381305,15 +388101,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [192818] = 4, + [190771] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4993), 1, + STATE(5050), 1, sym_comment, - ACTIONS(2479), 2, + ACTIONS(2504), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2477), 11, + ACTIONS(2502), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381325,35 +388121,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [192842] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2388), 1, - anon_sym_DASH, - STATE(4994), 1, - sym_comment, - ACTIONS(2390), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [192866] = 4, + [190795] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4995), 1, + STATE(5051), 1, sym_comment, - ACTIONS(2495), 2, + ACTIONS(2533), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2493), 11, + ACTIONS(2531), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381365,35 +388141,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [192890] = 4, - ACTIONS(247), 1, + [190819] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2328), 1, - anon_sym_DASH, - STATE(4996), 1, + STATE(5052), 1, sym_comment, - ACTIONS(2330), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(1640), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1628), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [192914] = 4, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [190843] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4997), 1, + STATE(5053), 1, sym_comment, - ACTIONS(5132), 2, + ACTIONS(5603), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5134), 11, + ACTIONS(5601), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381405,15 +388181,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [192938] = 4, + [190867] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4998), 1, + STATE(5054), 1, sym_comment, - ACTIONS(2483), 2, + ACTIONS(2420), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2481), 11, + ACTIONS(2418), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381425,15 +388201,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [192962] = 4, + [190891] = 15, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(7542), 1, + sym_identifier, + ACTIONS(7546), 1, + anon_sym_RBRACK, + ACTIONS(7548), 1, + anon_sym_DOLLAR, + ACTIONS(7550), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7552), 1, + anon_sym_DASH_DASH, + ACTIONS(7554), 1, + anon_sym_DASH, + STATE(4140), 1, + sym_param_long_flag, + STATE(4307), 1, + sym__param_name, + STATE(4647), 1, + aux_sym_parameter_parens_repeat1, + STATE(5055), 1, + sym_comment, + STATE(5203), 1, + sym_param_rest, + STATE(5209), 1, + sym_param_opt, + STATE(5210), 1, + sym_param_short_flag, + STATE(5522), 1, + sym_parameter, + [190937] = 15, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(7542), 1, + sym_identifier, + ACTIONS(7548), 1, + anon_sym_DOLLAR, + ACTIONS(7550), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7552), 1, + anon_sym_DASH_DASH, + ACTIONS(7554), 1, + anon_sym_DASH, + ACTIONS(7556), 1, + anon_sym_RPAREN, + STATE(4140), 1, + sym_param_long_flag, + STATE(4307), 1, + sym__param_name, + STATE(4647), 1, + aux_sym_parameter_parens_repeat1, + STATE(5056), 1, + sym_comment, + STATE(5203), 1, + sym_param_rest, + STATE(5209), 1, + sym_param_opt, + STATE(5210), 1, + sym_param_short_flag, + STATE(5522), 1, + sym_parameter, + [190983] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4999), 1, + STATE(5057), 1, sym_comment, - ACTIONS(1997), 2, + ACTIONS(1911), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1991), 11, + ACTIONS(1909), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381445,14 +388283,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [192986] = 4, - ACTIONS(247), 1, + [191007] = 11, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1526), 1, + aux_sym_unquoted_token2, + ACTIONS(6229), 1, + anon_sym_LPAREN2, + ACTIONS(7992), 1, + anon_sym_DOLLAR, + ACTIONS(7996), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7998), 1, + aux_sym__immediate_decimal_token5, + STATE(5058), 1, + sym_comment, + STATE(6223), 1, + sym__immediate_decimal, + ACTIONS(7994), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3422), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1524), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [191045] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7963), 1, + ACTIONS(8118), 1, anon_sym_DASH, - STATE(5000), 1, + STATE(5059), 1, sym_comment, - ACTIONS(7961), 11, + ACTIONS(8116), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -381462,14 +388327,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [193009] = 3, - ACTIONS(247), 1, + [191069] = 11, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5001), 1, + ACTIONS(1544), 1, + anon_sym_DASH, + ACTIONS(6229), 1, + anon_sym_LPAREN2, + ACTIONS(6235), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6237), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6418), 1, + anon_sym_DOLLAR, + STATE(3564), 1, + sym__immediate_decimal, + STATE(5060), 1, + sym_comment, + ACTIONS(1556), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + ACTIONS(6253), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3433), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [191106] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(5061), 1, sym_comment, - ACTIONS(7965), 12, + ACTIONS(8120), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381482,12 +388374,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [193030] = 3, - ACTIONS(247), 1, + [191127] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5002), 1, + STATE(5062), 1, sym_comment, - ACTIONS(7967), 12, + ACTIONS(8122), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381500,12 +388392,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [193051] = 3, - ACTIONS(247), 1, + [191148] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5003), 1, + STATE(5063), 1, sym_comment, - ACTIONS(7969), 12, + ACTIONS(8124), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381518,12 +388410,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [193072] = 3, - ACTIONS(247), 1, + [191169] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5004), 1, + STATE(5064), 1, sym_comment, - ACTIONS(6650), 12, + ACTIONS(8126), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381536,13 +388428,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [193093] = 3, - ACTIONS(247), 1, + [191190] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5005), 1, + STATE(5065), 1, sym_comment, - ACTIONS(7847), 12, - ts_builtin_sym_end, + ACTIONS(8128), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381554,13 +388445,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [193114] = 3, - ACTIONS(247), 1, + anon_sym_RPAREN, + [191211] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5006), 1, + STATE(5066), 1, sym_comment, - ACTIONS(7897), 12, - ts_builtin_sym_end, + ACTIONS(8130), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381572,13 +388463,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [193135] = 3, - ACTIONS(247), 1, + anon_sym_RPAREN, + [191232] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5007), 1, + STATE(5067), 1, sym_comment, - ACTIONS(7905), 12, - ts_builtin_sym_end, + ACTIONS(8132), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(8134), 10, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + [191255] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(5068), 1, + sym_comment, + ACTIONS(8136), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381590,52 +388500,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [193156] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7971), 1, - anon_sym_DOT, - ACTIONS(7973), 1, - aux_sym__immediate_decimal_token2, - STATE(5008), 1, - sym_comment, - ACTIONS(1518), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1520), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [193183] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7515), 1, - anon_sym_DASH, - STATE(5009), 1, - sym_comment, - ACTIONS(7513), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [193206] = 3, - ACTIONS(247), 1, + [191276] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5010), 1, + STATE(5069), 1, sym_comment, - ACTIONS(7975), 12, + ACTIONS(8138), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381648,12 +388519,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [193227] = 3, - ACTIONS(247), 1, + [191297] = 6, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5011), 1, + ACTIONS(8140), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8142), 1, + aux_sym__immediate_decimal_token2, + STATE(5070), 1, + sym_comment, + ACTIONS(1530), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1528), 6, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [191324] = 11, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1526), 1, + aux_sym_unquoted_token2, + ACTIONS(6229), 1, + anon_sym_LPAREN2, + ACTIONS(7992), 1, + anon_sym_DOLLAR, + ACTIONS(8146), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8148), 1, + aux_sym__immediate_decimal_token5, + STATE(5071), 1, + sym_comment, + STATE(7111), 1, + sym__immediate_decimal, + ACTIONS(1524), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(8144), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3422), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [191361] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(5072), 1, sym_comment, - ACTIONS(7803), 12, + ACTIONS(7725), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -381666,33 +388584,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [193248] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7977), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7979), 1, - aux_sym__immediate_decimal_token2, - STATE(5012), 1, - sym_comment, - ACTIONS(1540), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1542), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [193275] = 3, - ACTIONS(247), 1, + [191382] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5013), 1, + STATE(5073), 1, sym_comment, - ACTIONS(7981), 12, + ACTIONS(8000), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381704,13 +388602,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [193296] = 3, - ACTIONS(247), 1, + [191403] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5014), 1, + STATE(5074), 1, sym_comment, - ACTIONS(7983), 12, + ACTIONS(8110), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381722,41 +388620,199 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + [191424] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(8152), 1, + anon_sym_DASH, + STATE(5075), 1, + sym_comment, + ACTIONS(8150), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [193317] = 13, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [191447] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1478), 1, - anon_sym_RBRACE, - ACTIONS(1492), 1, - sym__entry_separator, - ACTIONS(2997), 1, + ACTIONS(1628), 1, + anon_sym_DASH, + STATE(5076), 1, + sym_comment, + ACTIONS(1640), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [191470] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(2565), 1, + anon_sym_DASH, + STATE(5077), 1, + sym_comment, + ACTIONS(2567), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [191493] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(2418), 1, + anon_sym_DASH, + STATE(5078), 1, + sym_comment, + ACTIONS(2420), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [191516] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(8156), 1, + anon_sym_DASH, + STATE(5079), 1, + sym_comment, + ACTIONS(8154), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(7823), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [191539] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5486), 1, anon_sym_LPAREN2, - ACTIONS(7827), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7829), 1, + ACTIONS(5490), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7831), 1, + ACTIONS(5492), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5805), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8158), 1, + anon_sym_RBRACK, + ACTIONS(8160), 1, + anon_sym_DOLLAR, + ACTIONS(8162), 1, + anon_sym_DOLLAR2, + ACTIONS(8164), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7833), 1, + ACTIONS(8166), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7985), 1, - anon_sym_DOT, - STATE(5015), 1, + STATE(2819), 1, + sym__immediate_decimal, + STATE(5080), 1, sym_comment, - STATE(5966), 1, + STATE(2878), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [191580] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(8156), 1, + anon_sym_DASH, + STATE(5081), 1, + sym_comment, + ACTIONS(8154), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [191603] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(2234), 1, + anon_sym_DASH, + STATE(5082), 1, + sym_comment, + ACTIONS(2240), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [191626] = 11, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1558), 1, + aux_sym_unquoted_token2, + ACTIONS(6229), 1, + anon_sym_LPAREN2, + ACTIONS(7992), 1, + anon_sym_DOLLAR, + ACTIONS(8146), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8148), 1, + aux_sym__immediate_decimal_token5, + STATE(5083), 1, + sym_comment, + STATE(7201), 1, sym__immediate_decimal, - STATE(5646), 2, + ACTIONS(1556), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(8144), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3433), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [193358] = 3, - ACTIONS(247), 1, + [191663] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5016), 1, + STATE(5084), 1, sym_comment, - ACTIONS(7987), 12, + ACTIONS(8168), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381769,12 +388825,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [193379] = 3, - ACTIONS(247), 1, + [191684] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5017), 1, + STATE(5085), 1, sym_comment, - ACTIONS(7989), 12, + ACTIONS(8170), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381787,12 +388843,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [193400] = 3, - ACTIONS(247), 1, + [191705] = 13, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5018), 1, + ACTIONS(5486), 1, + anon_sym_LPAREN2, + ACTIONS(5490), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5492), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5805), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8160), 1, + anon_sym_DOLLAR, + ACTIONS(8162), 1, + anon_sym_DOLLAR2, + ACTIONS(8164), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8166), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8172), 1, + anon_sym_RBRACK, + STATE(2819), 1, + sym__immediate_decimal, + STATE(5086), 1, sym_comment, - ACTIONS(7991), 12, + STATE(2878), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [191746] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(5087), 1, + sym_comment, + ACTIONS(8018), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381804,13 +388889,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + [191767] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(2113), 1, + anon_sym_DASH, + STATE(5088), 1, + sym_comment, + ACTIONS(2119), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [193421] = 3, - ACTIONS(247), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [191790] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5019), 1, + STATE(5089), 1, sym_comment, - ACTIONS(7993), 12, + ACTIONS(8022), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381822,34 +388926,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [193442] = 6, - ACTIONS(247), 1, + [191811] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - STATE(715), 1, - aux_sym__pipe_separator, - STATE(5020), 1, + ACTIONS(1544), 1, + anon_sym_RBRACK, + ACTIONS(1556), 1, + sym__entry_separator, + ACTIONS(1558), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(7974), 1, + anon_sym_LPAREN2, + ACTIONS(8174), 1, + anon_sym_DOLLAR, + ACTIONS(8176), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8178), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8180), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8182), 1, + aux_sym__immediate_decimal_token5, + STATE(5090), 1, sym_comment, - STATE(5192), 1, - aux_sym_shebang_repeat1, - ACTIONS(2950), 9, + STATE(6614), 1, + sym__immediate_decimal, + STATE(7388), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [191852] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(2206), 1, + anon_sym_DASH, + STATE(5091), 1, + sym_comment, + ACTIONS(2212), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [193469] = 3, - ACTIONS(247), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [191875] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5021), 1, + STATE(5092), 1, sym_comment, - ACTIONS(7995), 12, + ACTIONS(8006), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381861,13 +388991,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [193490] = 3, - ACTIONS(247), 1, + [191896] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5022), 1, + STATE(5093), 1, + sym_comment, + ACTIONS(7511), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(7513), 10, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + [191919] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(5094), 1, sym_comment, - ACTIONS(7997), 12, + ACTIONS(8008), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381879,13 +389028,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + [191940] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(7614), 1, + anon_sym_DASH, + STATE(5095), 1, + sym_comment, + ACTIONS(7612), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [193511] = 3, - ACTIONS(247), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [191963] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5023), 1, + STATE(5096), 1, sym_comment, - ACTIONS(7925), 12, + ACTIONS(7988), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -381898,12 +389065,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [193532] = 3, - ACTIONS(247), 1, + [191984] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5024), 1, + STATE(5097), 1, sym_comment, - ACTIONS(7999), 12, + ACTIONS(8184), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381916,12 +389083,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [193553] = 3, - ACTIONS(247), 1, + [192005] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5025), 1, + STATE(5098), 1, sym_comment, - ACTIONS(8001), 12, + ACTIONS(8186), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381934,39 +389101,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [193574] = 11, - ACTIONS(247), 1, + [192026] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1494), 1, + ACTIONS(1628), 1, + anon_sym_DASH, + ACTIONS(4614), 1, + anon_sym_DOT_DOT2, + ACTIONS(6985), 1, aux_sym_unquoted_token2, - ACTIONS(6072), 1, - anon_sym_LPAREN2, - ACTIONS(7837), 1, - anon_sym_DOLLAR, - ACTIONS(8005), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8007), 1, - aux_sym__immediate_decimal_token5, - STATE(5026), 1, + ACTIONS(8188), 1, + sym_filesize_unit, + ACTIONS(8190), 1, + sym_duration_unit, + STATE(5099), 1, sym_comment, - STATE(6805), 1, - sym__immediate_decimal, - ACTIONS(1492), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(8003), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3393), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [193611] = 3, - ACTIONS(247), 1, + ACTIONS(4616), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1640), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [192059] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5027), 1, + STATE(5100), 1, sym_comment, - ACTIONS(7891), 12, - ts_builtin_sym_end, + ACTIONS(8192), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381978,13 +389142,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [193632] = 3, - ACTIONS(247), 1, + anon_sym_RPAREN, + [192080] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5028), 1, + STATE(5101), 1, sym_comment, - ACTIONS(7869), 12, - ts_builtin_sym_end, + ACTIONS(8194), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381996,12 +389160,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [193653] = 3, - ACTIONS(247), 1, + anon_sym_RPAREN, + [192101] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5029), 1, + STATE(5102), 1, sym_comment, - ACTIONS(8009), 12, + ACTIONS(8196), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382014,12 +389179,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [193674] = 3, - ACTIONS(247), 1, + [192122] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5030), 1, + STATE(5103), 1, sym_comment, - ACTIONS(8011), 12, + ACTIONS(8198), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382032,12 +389197,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [193695] = 3, - ACTIONS(247), 1, + [192143] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5031), 1, + STATE(5104), 1, sym_comment, - ACTIONS(8013), 12, + ACTIONS(8200), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382050,12 +389215,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [193716] = 3, - ACTIONS(247), 1, + [192164] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5032), 1, + STATE(5105), 1, sym_comment, - ACTIONS(8015), 12, + ACTIONS(8202), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382068,12 +389233,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [193737] = 3, - ACTIONS(247), 1, + [192185] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5033), 1, + STATE(5106), 1, + sym_comment, + ACTIONS(7417), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(7419), 10, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + [192208] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(5107), 1, + sym_comment, + ACTIONS(6857), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(6863), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(6859), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(6861), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [192235] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(5108), 1, sym_comment, - ACTIONS(8017), 12, + ACTIONS(8204), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382086,12 +389291,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [193758] = 3, - ACTIONS(247), 1, + [192256] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5034), 1, + STATE(5109), 1, sym_comment, - ACTIONS(8019), 12, + ACTIONS(8206), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382104,12 +389309,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [193779] = 3, - ACTIONS(247), 1, + [192277] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5035), 1, + STATE(5110), 1, sym_comment, - ACTIONS(8021), 12, + ACTIONS(8208), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382122,12 +389327,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [193800] = 3, - ACTIONS(247), 1, + [192298] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5036), 1, + ACTIONS(2551), 1, + anon_sym_DASH, + STATE(5111), 1, + sym_comment, + ACTIONS(2553), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [192321] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1510), 1, + anon_sym_RBRACE, + ACTIONS(1524), 1, + sym__entry_separator, + ACTIONS(1526), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(7974), 1, + anon_sym_LPAREN2, + ACTIONS(8174), 1, + anon_sym_DOLLAR, + ACTIONS(8210), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8212), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8214), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8216), 1, + aux_sym__immediate_decimal_token5, + STATE(5112), 1, + sym_comment, + STATE(6228), 1, + sym__immediate_decimal, + STATE(6842), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [192362] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(5113), 1, sym_comment, - ACTIONS(8023), 12, + ACTIONS(8010), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382139,13 +389392,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [193821] = 3, - ACTIONS(247), 1, + [192383] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5037), 1, + STATE(5114), 1, sym_comment, - ACTIONS(8025), 12, + ACTIONS(8012), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382157,13 +389410,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + [192404] = 12, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(8026), 1, + anon_sym_DASH_DASH, + ACTIONS(8028), 1, + anon_sym_DASH, + ACTIONS(8218), 1, + anon_sym_DOLLAR, + ACTIONS(8220), 1, + anon_sym_LBRACE, + STATE(1829), 1, + sym_block, + STATE(1830), 1, + sym_val_closure, + STATE(5115), 1, + sym_comment, + STATE(5620), 1, + aux_sym_ctrl_do_repeat1, + STATE(6018), 1, + sym__flag, + STATE(723), 2, + sym__blosure, + sym_val_variable, + STATE(6083), 2, + sym_short_flag, + sym_long_flag, + [192443] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(2422), 1, + anon_sym_DASH, + STATE(5116), 1, + sym_comment, + ACTIONS(2424), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - [193842] = 3, - ACTIONS(247), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [192466] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5038), 1, + STATE(5117), 1, sym_comment, - ACTIONS(8027), 12, + ACTIONS(5117), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382175,13 +389474,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [193863] = 3, - ACTIONS(247), 1, + [192487] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5039), 1, + STATE(5118), 1, sym_comment, - ACTIONS(8029), 12, + ACTIONS(5121), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382193,13 +389492,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [193884] = 3, - ACTIONS(247), 1, + [192508] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5040), 1, + STATE(5119), 1, sym_comment, - ACTIONS(8031), 12, + ACTIONS(6781), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382212,12 +389510,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [193905] = 3, - ACTIONS(247), 1, + [192529] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5041), 1, + ACTIONS(2557), 1, + anon_sym_DASH, + STATE(5120), 1, + sym_comment, + ACTIONS(2559), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [192552] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(5121), 1, sym_comment, - ACTIONS(8033), 12, + ACTIONS(8112), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382229,13 +389547,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [193926] = 3, - ACTIONS(247), 1, + [192573] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5042), 1, + STATE(5122), 1, sym_comment, - ACTIONS(8035), 12, + ACTIONS(8222), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382248,12 +389565,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [193947] = 3, - ACTIONS(247), 1, + [192594] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5043), 1, + STATE(5123), 1, sym_comment, - ACTIONS(8037), 12, + ACTIONS(8224), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382266,12 +389583,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [193968] = 3, - ACTIONS(247), 1, + [192615] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5044), 1, + STATE(5124), 1, sym_comment, - ACTIONS(8039), 12, + ACTIONS(8226), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382284,12 +389601,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [193989] = 3, - ACTIONS(247), 1, + [192636] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5045), 1, + STATE(5125), 1, sym_comment, - ACTIONS(8041), 12, + ACTIONS(8228), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382302,273 +389619,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [194010] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1552), 1, - aux_sym_unquoted_token2, - ACTIONS(6072), 1, - anon_sym_LPAREN2, - ACTIONS(7837), 1, - anon_sym_DOLLAR, - ACTIONS(8005), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8007), 1, - aux_sym__immediate_decimal_token5, - STATE(5046), 1, - sym_comment, - STATE(6789), 1, - sym__immediate_decimal, - ACTIONS(1550), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(8003), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3401), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [194047] = 12, - ACTIONS(247), 1, + [192657] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7859), 1, - anon_sym_DASH_DASH, - ACTIONS(7861), 1, - anon_sym_DASH, - ACTIONS(8043), 1, - anon_sym_DOLLAR, - ACTIONS(8045), 1, - anon_sym_LBRACE, - STATE(1952), 1, - sym_block, - STATE(1960), 1, - sym_val_closure, - STATE(5047), 1, + STATE(5126), 1, sym_comment, - STATE(5054), 1, - aux_sym_ctrl_do_repeat1, - STATE(5902), 1, - sym__flag, - STATE(711), 2, - sym__blosure, - sym_val_variable, - STATE(6046), 2, - sym_short_flag, - sym_long_flag, - [194086] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5619), 1, + ACTIONS(8230), 12, sym__newline, - ACTIONS(8047), 1, - anon_sym_DASH, - STATE(5048), 1, - sym_comment, - ACTIONS(1307), 2, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(5622), 8, - sym_identifier, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [194113] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5049), 1, - sym_comment, - ACTIONS(1518), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1520), 9, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [194136] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1478), 1, - anon_sym_RBRACK, - ACTIONS(1492), 1, - sym__entry_separator, - ACTIONS(1494), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(7823), 1, - anon_sym_LPAREN2, - ACTIONS(8049), 1, - anon_sym_DOLLAR, - ACTIONS(8051), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8053), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8055), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8057), 1, - aux_sym__immediate_decimal_token5, - STATE(5050), 1, - sym_comment, - STATE(6540), 1, - sym__immediate_decimal, - STATE(2962), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [194177] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5051), 1, - sym_comment, - ACTIONS(1540), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1542), 9, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [194200] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5052), 1, - sym_comment, - ACTIONS(1554), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1556), 9, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [194223] = 4, - ACTIONS(247), 1, + [192678] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5053), 1, + STATE(5127), 1, sym_comment, - ACTIONS(1653), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1655), 9, - ts_builtin_sym_end, + ACTIONS(8232), 12, sym__newline, anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [194246] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7859), 1, - anon_sym_DASH_DASH, - ACTIONS(7861), 1, - anon_sym_DASH, - ACTIONS(8043), 1, - anon_sym_DOLLAR, - ACTIONS(8045), 1, - anon_sym_LBRACE, - STATE(1952), 1, - sym_block, - STATE(1960), 1, - sym_val_closure, - STATE(5054), 1, - sym_comment, - STATE(5469), 1, - aux_sym_ctrl_do_repeat1, - STATE(5902), 1, - sym__flag, - STATE(710), 2, - sym__blosure, - sym_val_variable, - STATE(6046), 2, - sym_short_flag, - sym_long_flag, - [194285] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1478), 1, - anon_sym_RBRACE, - ACTIONS(1492), 1, - sym__entry_separator, - ACTIONS(1494), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(7823), 1, - anon_sym_LPAREN2, - ACTIONS(8049), 1, - anon_sym_DOLLAR, - ACTIONS(8059), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8061), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8063), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8065), 1, - aux_sym__immediate_decimal_token5, - STATE(5055), 1, - sym_comment, - STATE(6286), 1, - sym__immediate_decimal, - STATE(2962), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [194326] = 12, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [192699] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1506), 1, + ACTIONS(1610), 1, sym__entry_separator, - ACTIONS(7823), 1, + ACTIONS(7974), 1, anon_sym_LPAREN2, - ACTIONS(7831), 1, + ACTIONS(7982), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7833), 1, + ACTIONS(7984), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8049), 1, + ACTIONS(8174), 1, anon_sym_DOLLAR, - ACTIONS(8067), 1, + ACTIONS(8234), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8069), 1, + ACTIONS(8236), 1, aux_sym__immediate_decimal_token3, - STATE(2961), 1, - sym__immediate_decimal, - STATE(5056), 1, + STATE(5128), 1, sym_comment, - ACTIONS(1496), 2, + STATE(7341), 1, + sym__immediate_decimal, + ACTIONS(1608), 2, anon_sym_RBRACK, anon_sym_RBRACE, - STATE(2960), 2, + STATE(7338), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [194365] = 3, - ACTIONS(247), 1, + [192738] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5057), 1, + STATE(5129), 1, sym_comment, - ACTIONS(7921), 12, - ts_builtin_sym_end, + ACTIONS(8238), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382580,13 +389699,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [194386] = 3, - ACTIONS(247), 1, + anon_sym_RPAREN, + [192759] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5058), 1, + STATE(5130), 1, sym_comment, - ACTIONS(7889), 12, - ts_builtin_sym_end, + ACTIONS(8240), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382598,69 +389717,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [194407] = 13, + anon_sym_RPAREN, + [192780] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1548), 1, - anon_sym_RBRACE, - ACTIONS(1550), 1, + ACTIONS(1614), 1, sym__entry_separator, - ACTIONS(1552), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(7823), 1, + ACTIONS(7974), 1, anon_sym_LPAREN2, - ACTIONS(8049), 1, + ACTIONS(7982), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7984), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8174), 1, anon_sym_DOLLAR, - ACTIONS(8059), 1, + ACTIONS(8234), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8061), 1, + ACTIONS(8236), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8063), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8065), 1, - aux_sym__immediate_decimal_token5, - STATE(5059), 1, + STATE(5131), 1, sym_comment, - STATE(6546), 1, + STATE(7385), 1, sym__immediate_decimal, - STATE(2949), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [194448] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5339), 1, - anon_sym_LPAREN2, - ACTIONS(5343), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5345), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5588), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8071), 1, + ACTIONS(1612), 2, anon_sym_RBRACK, - ACTIONS(8073), 1, - anon_sym_DOLLAR, - ACTIONS(8075), 1, - anon_sym_DOLLAR2, - ACTIONS(8077), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8079), 1, - aux_sym__immediate_decimal_token5, - STATE(2819), 1, - sym__immediate_decimal, - STATE(5060), 1, - sym_comment, - STATE(2875), 2, + anon_sym_RBRACE, + STATE(7363), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [194489] = 3, - ACTIONS(247), 1, + [192819] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5061), 1, + STATE(5132), 1, sym_comment, - ACTIONS(7911), 12, - ts_builtin_sym_end, + ACTIONS(8242), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382672,13 +389762,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [194510] = 3, - ACTIONS(247), 1, + anon_sym_RPAREN, + [192840] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5062), 1, + STATE(5133), 1, sym_comment, - ACTIONS(7849), 12, - ts_builtin_sym_end, + ACTIONS(8244), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382690,12 +389780,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [194531] = 3, - ACTIONS(247), 1, + anon_sym_RPAREN, + [192861] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5063), 1, + STATE(5134), 1, sym_comment, - ACTIONS(6636), 12, + ACTIONS(8246), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382708,106 +389799,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [194552] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8083), 1, - anon_sym_DASH, - STATE(5064), 1, - sym_comment, - ACTIONS(8081), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [194575] = 4, - ACTIONS(247), 1, + [192882] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7361), 1, - anon_sym_DASH, - STATE(5065), 1, - sym_comment, - ACTIONS(7359), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(3766), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [194598] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7857), 1, - anon_sym_DOLLAR, - ACTIONS(7859), 1, - anon_sym_DASH_DASH, - ACTIONS(7861), 1, - anon_sym_DASH, - ACTIONS(7863), 1, - anon_sym_LBRACE, - STATE(1693), 1, - sym_block, - STATE(1694), 1, - sym_val_closure, - STATE(5066), 1, - sym_comment, - STATE(5067), 1, - aux_sym_ctrl_do_repeat1, - STATE(5902), 1, - sym__flag, - STATE(708), 2, - sym__blosure, - sym_val_variable, - STATE(6046), 2, - sym_short_flag, - sym_long_flag, - [194637] = 12, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7857), 1, - anon_sym_DOLLAR, - ACTIONS(7859), 1, - anon_sym_DASH_DASH, - ACTIONS(7861), 1, - anon_sym_DASH, - ACTIONS(7863), 1, - anon_sym_LBRACE, - STATE(1693), 1, - sym_block, - STATE(1694), 1, - sym_val_closure, - STATE(5067), 1, - sym_comment, - STATE(5469), 1, - aux_sym_ctrl_do_repeat1, - STATE(5902), 1, - sym__flag, - STATE(702), 2, - sym__blosure, - sym_val_variable, - STATE(6046), 2, - sym_short_flag, - sym_long_flag, - [194676] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5068), 1, + STATE(726), 1, + aux_sym__pipe_separator, + STATE(5135), 1, sym_comment, - ACTIONS(8085), 12, - sym__newline, - anon_sym_SEMI, + STATE(5265), 1, + aux_sym_shebang_repeat1, + ACTIONS(3015), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -382817,75 +389820,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [194697] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8089), 1, - anon_sym_DASH, - STATE(5069), 1, - sym_comment, - ACTIONS(8087), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [194720] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8089), 1, - anon_sym_DASH, - STATE(5070), 1, - sym_comment, - ACTIONS(8087), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [194743] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1560), 1, - anon_sym_DASH, - ACTIONS(4512), 1, - anon_sym_DOT_DOT2, - ACTIONS(6834), 1, - aux_sym_unquoted_token2, - ACTIONS(8091), 1, - sym_filesize_unit, - ACTIONS(8093), 1, - sym_duration_unit, - STATE(5071), 1, - sym_comment, - ACTIONS(4514), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1572), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [194776] = 3, - ACTIONS(247), 1, + [192909] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5072), 1, + STATE(5136), 1, sym_comment, - ACTIONS(8095), 12, + ACTIONS(8248), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382898,12 +389838,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [194797] = 3, - ACTIONS(247), 1, + [192930] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5073), 1, + STATE(5137), 1, sym_comment, - ACTIONS(8097), 12, + ACTIONS(8250), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382916,12 +389856,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [194818] = 3, - ACTIONS(247), 1, + [192951] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5074), 1, + STATE(5138), 1, sym_comment, - ACTIONS(8099), 12, + ACTIONS(8252), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382934,12 +389874,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [194839] = 3, - ACTIONS(247), 1, + [192972] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5075), 1, + STATE(5139), 1, + sym_comment, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1538), 9, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [192995] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(5140), 1, sym_comment, - ACTIONS(8101), 12, + ACTIONS(8254), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382952,46 +389911,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [194860] = 13, - ACTIONS(3), 1, + [193016] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5339), 1, - anon_sym_LPAREN2, - ACTIONS(5343), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5345), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5588), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8073), 1, - anon_sym_DOLLAR, - ACTIONS(8075), 1, - anon_sym_DOLLAR2, - ACTIONS(8077), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8079), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8103), 1, - anon_sym_RBRACK, - STATE(2819), 1, - sym__immediate_decimal, - STATE(5076), 1, + STATE(5141), 1, sym_comment, - STATE(2875), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [194901] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3705), 1, + ACTIONS(8256), 12, sym__newline, - STATE(716), 1, - aux_sym__pipe_separator, - STATE(5077), 1, - sym_comment, - STATE(5192), 1, - aux_sym_shebang_repeat1, - ACTIONS(2950), 9, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -383001,12 +389928,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [194928] = 3, - ACTIONS(247), 1, + anon_sym_RPAREN, + [193037] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5078), 1, + STATE(5142), 1, sym_comment, - ACTIONS(8105), 12, + ACTIONS(8258), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383019,40 +389947,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [194949] = 12, - ACTIONS(247), 1, + [193058] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1492), 1, - anon_sym_LBRACE, - ACTIONS(1494), 1, - aux_sym_unquoted_token2, - ACTIONS(6072), 1, + ACTIONS(1544), 1, + anon_sym_RBRACE, + ACTIONS(1556), 1, + sym__entry_separator, + ACTIONS(1558), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(7974), 1, anon_sym_LPAREN2, - ACTIONS(8107), 1, + ACTIONS(8174), 1, anon_sym_DOLLAR, - ACTIONS(8109), 1, - anon_sym_DOT, - ACTIONS(8113), 1, + ACTIONS(8210), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8212), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8214), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8115), 1, + ACTIONS(8216), 1, aux_sym__immediate_decimal_token5, - STATE(5079), 1, + STATE(5143), 1, sym_comment, - STATE(5903), 1, + STATE(6245), 1, sym__immediate_decimal, - ACTIONS(8111), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6456), 2, + STATE(7388), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [194988] = 3, - ACTIONS(247), 1, + [193099] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5080), 1, + STATE(5144), 1, sym_comment, - ACTIONS(7835), 12, - ts_builtin_sym_end, + ACTIONS(8260), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383064,13 +389992,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [195009] = 3, - ACTIONS(247), 1, + anon_sym_RPAREN, + [193120] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5081), 1, + STATE(5145), 1, sym_comment, - ACTIONS(7899), 12, - ts_builtin_sym_end, + ACTIONS(8262), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383082,32 +390010,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [195030] = 4, - ACTIONS(247), 1, + anon_sym_RPAREN, + [193141] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2019), 1, - anon_sym_DASH, - STATE(5082), 1, + STATE(5146), 1, sym_comment, - ACTIONS(2025), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(8264), 12, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [195053] = 3, - ACTIONS(247), 1, + [193162] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5083), 1, + STATE(5147), 1, sym_comment, - ACTIONS(7939), 12, - ts_builtin_sym_end, + ACTIONS(8266), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383119,160 +390046,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [195074] = 13, - ACTIONS(3), 1, + anon_sym_RPAREN, + [193183] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5339), 1, - anon_sym_LPAREN2, - ACTIONS(5343), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5345), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5588), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8073), 1, - anon_sym_DOLLAR, - ACTIONS(8075), 1, - anon_sym_DOLLAR2, - ACTIONS(8077), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8079), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8117), 1, - anon_sym_RBRACK, - STATE(2819), 1, - sym__immediate_decimal, - STATE(5084), 1, + STATE(5148), 1, sym_comment, - STATE(2875), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [195115] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8121), 1, + ACTIONS(1528), 3, anon_sym_DASH, - STATE(5085), 1, - sym_comment, - ACTIONS(8119), 11, - anon_sym_EQ, - sym_identifier, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1530), 9, + ts_builtin_sym_end, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + anon_sym_SEMI, anon_sym_DASH_DASH, - [195138] = 12, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [193206] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1604), 1, + ACTIONS(1622), 1, sym__entry_separator, - ACTIONS(7823), 1, + ACTIONS(7974), 1, anon_sym_LPAREN2, - ACTIONS(7831), 1, + ACTIONS(7982), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7833), 1, + ACTIONS(7984), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8049), 1, + ACTIONS(8174), 1, anon_sym_DOLLAR, - ACTIONS(8067), 1, + ACTIONS(8234), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8069), 1, + ACTIONS(8236), 1, aux_sym__immediate_decimal_token3, - STATE(2942), 1, - sym__immediate_decimal, - STATE(5086), 1, + STATE(5149), 1, sym_comment, - ACTIONS(1602), 2, + STATE(7387), 1, + sym__immediate_decimal, + ACTIONS(1620), 2, anon_sym_RBRACK, anon_sym_RBRACE, - STATE(2940), 2, + STATE(7386), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [195177] = 12, - ACTIONS(3), 1, + [193245] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1588), 1, - sym__entry_separator, - ACTIONS(7823), 1, - anon_sym_LPAREN2, - ACTIONS(7831), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7833), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8049), 1, - anon_sym_DOLLAR, - ACTIONS(8067), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8069), 1, - aux_sym__immediate_decimal_token3, - STATE(2945), 1, - sym__immediate_decimal, - STATE(5087), 1, + ACTIONS(2498), 1, + anon_sym_DASH, + STATE(5150), 1, sym_comment, - ACTIONS(1586), 2, + ACTIONS(2500), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(2944), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [195216] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1584), 1, - sym__entry_separator, - ACTIONS(7823), 1, - anon_sym_LPAREN2, - ACTIONS(7831), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7833), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8049), 1, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(8067), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8069), 1, - aux_sym__immediate_decimal_token3, - STATE(2948), 1, - sym__immediate_decimal, - STATE(5088), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [193268] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(5151), 1, sym_comment, - ACTIONS(1576), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(2947), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [195255] = 3, - ACTIONS(247), 1, + ACTIONS(1596), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1598), 9, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [193291] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5089), 1, + STATE(5152), 1, sym_comment, - ACTIONS(7883), 12, + ACTIONS(1711), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1713), 9, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [195276] = 4, - ACTIONS(247), 1, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [193314] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2473), 1, + ACTIONS(2426), 1, anon_sym_DASH, - STATE(5090), 1, + STATE(5153), 1, sym_comment, - ACTIONS(2475), 11, + ACTIONS(2428), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -383284,12 +390169,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [195299] = 3, - ACTIONS(247), 1, + [193337] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5091), 1, + STATE(5154), 1, sym_comment, - ACTIONS(8123), 12, + ACTIONS(7956), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383301,34 +390187,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [195320] = 4, - ACTIONS(247), 1, + [193358] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1999), 1, - anon_sym_DASH, - STATE(5092), 1, + STATE(5155), 1, sym_comment, - ACTIONS(2005), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(8104), 12, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [195343] = 4, - ACTIONS(247), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [193379] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2007), 1, + ACTIONS(2446), 1, anon_sym_DASH, - STATE(5093), 1, + STATE(5156), 1, sym_comment, - ACTIONS(2013), 11, + ACTIONS(2448), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -383340,14 +390224,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [195366] = 4, - ACTIONS(247), 1, + [193402] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8127), 1, + ACTIONS(2486), 1, anon_sym_DASH, - STATE(5094), 1, + STATE(5157), 1, sym_comment, - ACTIONS(8125), 11, + ACTIONS(2488), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -383359,33 +390243,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [195389] = 4, - ACTIONS(247), 1, + [193425] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8131), 1, + ACTIONS(1021), 1, anon_sym_DASH, - STATE(5095), 1, + ACTIONS(8268), 1, + anon_sym_DOT, + STATE(2752), 1, + sym_path, + STATE(3168), 1, + sym_cell_path, + STATE(5158), 1, sym_comment, - ACTIONS(8129), 11, - anon_sym_EQ, - sym_identifier, + STATE(5224), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1023), 7, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [195412] = 4, - ACTIONS(247), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, + [193456] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2477), 1, + ACTIONS(2414), 1, anon_sym_DASH, - STATE(5096), 1, + STATE(5159), 1, sym_comment, - ACTIONS(2479), 11, + ACTIONS(2416), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -383397,14 +390285,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [195435] = 4, - ACTIONS(247), 1, + [193479] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2481), 1, + ACTIONS(2482), 1, anon_sym_DASH, - STATE(5097), 1, + STATE(5160), 1, sym_comment, - ACTIONS(2483), 11, + ACTIONS(2484), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -383416,14 +390304,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [195458] = 4, - ACTIONS(247), 1, + [193502] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2485), 1, + ACTIONS(2524), 1, anon_sym_DASH, - STATE(5098), 1, + STATE(5161), 1, sym_comment, - ACTIONS(2487), 11, + ACTIONS(2526), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -383435,33 +390323,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [195481] = 4, - ACTIONS(247), 1, + [193525] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8135), 1, - anon_sym_DASH, - STATE(5099), 1, + STATE(5162), 1, sym_comment, - ACTIONS(8133), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(7958), 12, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [195504] = 4, - ACTIONS(247), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [193546] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8139), 1, + ACTIONS(8272), 1, anon_sym_DASH, - STATE(5100), 1, + STATE(5163), 1, sym_comment, - ACTIONS(8137), 11, + ACTIONS(8270), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -383473,14 +390360,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [195527] = 4, - ACTIONS(247), 1, + [193569] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8143), 1, + ACTIONS(7564), 1, anon_sym_DASH, - STATE(5101), 1, + STATE(5164), 1, sym_comment, - ACTIONS(8141), 11, + ACTIONS(7562), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -383492,33 +390379,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [195550] = 4, - ACTIONS(247), 1, + [193592] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2489), 1, - anon_sym_DASH, - STATE(5102), 1, + STATE(5165), 1, sym_comment, - ACTIONS(2491), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(7986), 12, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [195573] = 4, - ACTIONS(247), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [193613] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2493), 1, + ACTIONS(8276), 1, anon_sym_DASH, - STATE(5103), 1, + STATE(5166), 1, sym_comment, - ACTIONS(2495), 11, + ACTIONS(8274), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -383530,14 +390416,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [195596] = 4, - ACTIONS(247), 1, + [193636] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2497), 1, + ACTIONS(8280), 1, anon_sym_DASH, - STATE(5104), 1, + STATE(5167), 1, sym_comment, - ACTIONS(2499), 11, + ACTIONS(8278), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -383549,14 +390435,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [195619] = 4, - ACTIONS(247), 1, + [193659] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2501), 1, + ACTIONS(8284), 1, anon_sym_DASH, - STATE(5105), 1, + STATE(5168), 1, sym_comment, - ACTIONS(2503), 11, + ACTIONS(8282), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -383568,71 +390454,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [195642] = 4, - ACTIONS(247), 1, + [193682] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2505), 1, - anon_sym_DASH, - STATE(5106), 1, - sym_comment, - ACTIONS(2507), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(5745), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [195665] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2509), 1, + ACTIONS(8286), 1, anon_sym_DASH, - STATE(5107), 1, + STATE(5169), 1, sym_comment, - ACTIONS(2511), 11, + ACTIONS(1362), 2, anon_sym_EQ, + anon_sym_COLON, + ACTIONS(5748), 8, sym_identifier, - sym__newline, anon_sym_PIPE, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [195688] = 4, - ACTIONS(247), 1, + [193709] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2513), 1, - anon_sym_DASH, - STATE(5108), 1, + STATE(5170), 1, sym_comment, - ACTIONS(2515), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(6761), 12, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [193730] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5486), 1, + anon_sym_LPAREN2, + ACTIONS(5490), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5492), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5805), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8160), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [195711] = 4, - ACTIONS(247), 1, + ACTIONS(8162), 1, + anon_sym_DOLLAR2, + ACTIONS(8164), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8166), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8288), 1, + anon_sym_RBRACK, + STATE(2819), 1, + sym__immediate_decimal, + STATE(5171), 1, + sym_comment, + STATE(2878), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [193771] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8147), 1, + ACTIONS(8292), 1, anon_sym_DASH, - STATE(5109), 1, + STATE(5172), 1, sym_comment, - ACTIONS(8145), 11, + ACTIONS(8290), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -383644,41 +390540,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [195734] = 6, - ACTIONS(247), 1, + [193794] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8149), 1, + ACTIONS(8294), 1, anon_sym_DOT, - ACTIONS(8151), 1, - aux_sym__immediate_decimal_token2, - STATE(5110), 1, - sym_comment, - ACTIONS(1518), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1520), 7, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [195761] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8153), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8155), 1, + ACTIONS(8296), 1, aux_sym__immediate_decimal_token2, - STATE(5111), 1, + STATE(5173), 1, sym_comment, - ACTIONS(1540), 3, + ACTIONS(1536), 3, anon_sym_DASH, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1542), 7, + ACTIONS(1538), 7, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, @@ -383686,14 +390561,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [195788] = 4, - ACTIONS(247), 1, + [193821] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5101), 1, + ACTIONS(8300), 1, anon_sym_DASH, - STATE(5112), 1, + STATE(5174), 1, sym_comment, - ACTIONS(5099), 11, + ACTIONS(8298), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -383705,12 +390580,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [195811] = 3, - ACTIONS(247), 1, + [193844] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5113), 1, + STATE(5175), 1, sym_comment, - ACTIONS(7851), 12, + ACTIONS(8106), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -383723,52 +390598,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [195832] = 4, - ACTIONS(247), 1, + [193865] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5105), 1, - anon_sym_DASH, - STATE(5114), 1, + ACTIONS(8302), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8304), 1, + aux_sym__immediate_decimal_token2, + STATE(5176), 1, sym_comment, - ACTIONS(5103), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1528), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1530), 7, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [195855] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5115), 1, - sym_comment, - ACTIONS(6690), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6696), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6692), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6694), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [195882] = 3, - ACTIONS(247), 1, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [193892] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5116), 1, + STATE(5177), 1, sym_comment, - ACTIONS(7941), 12, + ACTIONS(7990), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -383781,70 +390637,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [195903] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5117), 1, - sym_comment, - ACTIONS(8157), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(8159), 10, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - [195926] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5118), 1, - sym_comment, - ACTIONS(7342), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(7344), 10, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - [195949] = 4, - ACTIONS(247), 1, + [193913] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5134), 1, - anon_sym_DASH, - STATE(5119), 1, + STATE(5178), 1, sym_comment, - ACTIONS(5132), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(8306), 12, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [195972] = 3, - ACTIONS(247), 1, + [193934] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5120), 1, + STATE(5179), 1, sym_comment, - ACTIONS(7917), 12, - ts_builtin_sym_end, + ACTIONS(8308), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383856,50 +390672,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [195993] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5121), 1, - sym_comment, - ACTIONS(7202), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(7204), 10, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - [196016] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5122), 1, - sym_comment, - ACTIONS(8161), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(8163), 10, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - [196039] = 3, - ACTIONS(247), 1, + anon_sym_RPAREN, + [193955] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5123), 1, + STATE(5180), 1, sym_comment, - ACTIONS(7590), 12, + ACTIONS(6753), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -383912,68 +390691,315 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [196060] = 13, + [193976] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2553), 1, + ACTIONS(1510), 1, + anon_sym_RBRACK, + ACTIONS(1524), 1, + sym__entry_separator, + ACTIONS(1526), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(7974), 1, + anon_sym_LPAREN2, + ACTIONS(8174), 1, + anon_sym_DOLLAR, + ACTIONS(8176), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8178), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8180), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8182), 1, + aux_sym__immediate_decimal_token5, + STATE(5181), 1, + sym_comment, + STATE(6210), 1, + sym__immediate_decimal, + STATE(6842), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [194017] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2593), 1, anon_sym_DOLLAR, - ACTIONS(5318), 1, + ACTIONS(5267), 1, anon_sym_LPAREN2, - ACTIONS(5322), 1, + ACTIONS(5271), 1, aux_sym__immediate_decimal_token3, - ACTIONS(5324), 1, + ACTIONS(5273), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5326), 1, + ACTIONS(5275), 1, aux_sym__immediate_decimal_token5, - ACTIONS(5451), 1, + ACTIONS(5528), 1, aux_sym__unquoted_in_list_token3, - ACTIONS(8075), 1, - anon_sym_DOLLAR2, - ACTIONS(8103), 1, + ACTIONS(8158), 1, anon_sym_RBRACK, - ACTIONS(8165), 1, + ACTIONS(8162), 1, + anon_sym_DOLLAR2, + ACTIONS(8310), 1, aux_sym__immediate_decimal_token1, - STATE(2652), 1, + STATE(2667), 1, sym__immediate_decimal, - STATE(5124), 1, + STATE(5182), 1, + sym_comment, + STATE(2781), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [194058] = 12, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1524), 1, + anon_sym_LBRACE, + ACTIONS(1526), 1, + aux_sym_unquoted_token2, + ACTIONS(6229), 1, + anon_sym_LPAREN2, + ACTIONS(8312), 1, + anon_sym_DOLLAR, + ACTIONS(8314), 1, + anon_sym_DOT, + ACTIONS(8318), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8320), 1, + aux_sym__immediate_decimal_token5, + STATE(5183), 1, sym_comment, - STATE(2736), 2, + STATE(6011), 1, + sym__immediate_decimal, + ACTIONS(8316), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(6098), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [196101] = 13, + [194097] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(3766), 1, + sym__newline, + STATE(727), 1, + aux_sym__pipe_separator, + STATE(5184), 1, + sym_comment, + STATE(5265), 1, + aux_sym_shebang_repeat1, + ACTIONS(3015), 9, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [194124] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(5185), 1, + sym_comment, + ACTIONS(7954), 12, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [194145] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(5186), 1, + sym_comment, + ACTIONS(8322), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [194166] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5339), 1, + ACTIONS(5486), 1, anon_sym_LPAREN2, - ACTIONS(5343), 1, + ACTIONS(5490), 1, aux_sym__immediate_decimal_token3, - ACTIONS(5345), 1, + ACTIONS(5492), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5588), 1, + ACTIONS(5805), 1, aux_sym__unquoted_in_list_token3, - ACTIONS(8073), 1, + ACTIONS(8160), 1, anon_sym_DOLLAR, - ACTIONS(8075), 1, + ACTIONS(8162), 1, anon_sym_DOLLAR2, - ACTIONS(8077), 1, + ACTIONS(8164), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8079), 1, + ACTIONS(8166), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8167), 1, + ACTIONS(8324), 1, anon_sym_RBRACK, STATE(2819), 1, sym__immediate_decimal, - STATE(5125), 1, + STATE(5187), 1, sym_comment, - STATE(2875), 2, + STATE(2878), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [196142] = 3, - ACTIONS(247), 1, + [194207] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5126), 1, + STATE(5188), 1, + sym_comment, + ACTIONS(8326), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [194228] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(5189), 1, + sym_comment, + ACTIONS(7962), 12, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [194249] = 12, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(8024), 1, + anon_sym_DOLLAR, + ACTIONS(8026), 1, + anon_sym_DASH_DASH, + ACTIONS(8028), 1, + anon_sym_DASH, + ACTIONS(8030), 1, + anon_sym_LBRACE, + STATE(1680), 1, + sym_block, + STATE(1686), 1, + sym_val_closure, + STATE(5190), 1, + sym_comment, + STATE(5193), 1, + aux_sym_ctrl_do_repeat1, + STATE(6018), 1, + sym__flag, + STATE(710), 2, + sym__blosure, + sym_val_variable, + STATE(6083), 2, + sym_short_flag, + sym_long_flag, + [194288] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(5191), 1, + sym_comment, + ACTIONS(8002), 12, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [194309] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1570), 1, + sym__entry_separator, + ACTIONS(7974), 1, + anon_sym_LPAREN2, + ACTIONS(7982), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7984), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8174), 1, + anon_sym_DOLLAR, + ACTIONS(8234), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8236), 1, + aux_sym__immediate_decimal_token3, + STATE(5192), 1, + sym_comment, + STATE(7316), 1, + sym__immediate_decimal, + ACTIONS(1560), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(7194), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [194348] = 12, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(8024), 1, + anon_sym_DOLLAR, + ACTIONS(8026), 1, + anon_sym_DASH_DASH, + ACTIONS(8028), 1, + anon_sym_DASH, + ACTIONS(8030), 1, + anon_sym_LBRACE, + STATE(1680), 1, + sym_block, + STATE(1686), 1, + sym_val_closure, + STATE(5193), 1, + sym_comment, + STATE(5620), 1, + aux_sym_ctrl_do_repeat1, + STATE(6018), 1, + sym__flag, + STATE(713), 2, + sym__blosure, + sym_val_variable, + STATE(6083), 2, + sym_short_flag, + sym_long_flag, + [194387] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(5194), 1, sym_comment, - ACTIONS(7943), 12, + ACTIONS(8004), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -383986,53 +391012,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [196163] = 3, - ACTIONS(247), 1, + [194408] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(5195), 1, + sym_comment, + ACTIONS(8328), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(8330), 10, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + [194431] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(5196), 1, + sym_comment, + ACTIONS(6841), 2, + anon_sym_GT, + anon_sym_LT2, + ACTIONS(6847), 2, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + ACTIONS(6843), 4, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + ACTIONS(6845), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [194458] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(7610), 1, + anon_sym_DASH, + STATE(5197), 1, + sym_comment, + ACTIONS(7608), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [194481] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(8334), 1, + anon_sym_DASH, + STATE(5198), 1, + sym_comment, + ACTIONS(8332), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [194504] = 12, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(8026), 1, + anon_sym_DASH_DASH, + ACTIONS(8028), 1, + anon_sym_DASH, + ACTIONS(8218), 1, + anon_sym_DOLLAR, + ACTIONS(8220), 1, + anon_sym_LBRACE, + STATE(1829), 1, + sym_block, + STATE(1830), 1, + sym_val_closure, + STATE(5115), 1, + aux_sym_ctrl_do_repeat1, + STATE(5199), 1, + sym_comment, + STATE(6018), 1, + sym__flag, + STATE(724), 2, + sym__blosure, + sym_val_variable, + STATE(6083), 2, + sym_short_flag, + sym_long_flag, + [194543] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5127), 1, + ACTIONS(8338), 1, + anon_sym_DASH, + STATE(5200), 1, sym_comment, - ACTIONS(7945), 12, - ts_builtin_sym_end, + ACTIONS(8336), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [196184] = 6, - ACTIONS(247), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [194566] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8169), 1, + ACTIONS(8340), 1, anon_sym_DOT, - ACTIONS(8171), 1, + ACTIONS(8342), 1, aux_sym__immediate_decimal_token2, - STATE(5128), 1, + STATE(5201), 1, sym_comment, - ACTIONS(1520), 4, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(1536), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1538), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1518), 6, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - aux_sym_unquoted_token2, - [196211] = 4, - ACTIONS(247), 1, + sym__entry_separator, + [194593] = 11, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7443), 1, + ACTIONS(1510), 1, anon_sym_DASH, - STATE(5129), 1, + ACTIONS(6229), 1, + anon_sym_LPAREN2, + ACTIONS(6235), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6237), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6418), 1, + anon_sym_DOLLAR, + STATE(3574), 1, + sym__immediate_decimal, + STATE(5202), 1, + sym_comment, + ACTIONS(1524), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + ACTIONS(6253), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3422), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [194630] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(8346), 1, + anon_sym_DASH, + STATE(5203), 1, sym_comment, - ACTIONS(7441), 11, + ACTIONS(8344), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -384044,35 +391202,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [196234] = 6, - ACTIONS(247), 1, + [194653] = 11, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8173), 1, + ACTIONS(1560), 1, + anon_sym_DASH, + ACTIONS(6229), 1, + anon_sym_LPAREN2, + ACTIONS(6235), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6237), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6418), 1, + anon_sym_DOLLAR, + STATE(3423), 1, + sym__immediate_decimal, + STATE(5204), 1, + sym_comment, + ACTIONS(1570), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + ACTIONS(6253), 2, aux_sym__immediate_decimal_token1, - ACTIONS(8175), 1, - aux_sym__immediate_decimal_token2, - STATE(5130), 1, + aux_sym__immediate_decimal_token3, + STATE(3463), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [194690] = 11, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6227), 1, + anon_sym_DOLLAR, + ACTIONS(6229), 1, + anon_sym_LPAREN2, + ACTIONS(6428), 1, + anon_sym_DOT, + ACTIONS(8318), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8320), 1, + aux_sym__immediate_decimal_token5, + STATE(5205), 1, sym_comment, - ACTIONS(1542), 4, + STATE(6185), 1, + sym__immediate_decimal, + ACTIONS(1524), 2, + sym__newline, + anon_sym_LBRACE, + ACTIONS(8316), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(6098), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [194727] = 11, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1608), 1, + anon_sym_DASH, + ACTIONS(6229), 1, + anon_sym_LPAREN2, + ACTIONS(6235), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6237), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6418), 1, anon_sym_DOLLAR, + STATE(3425), 1, + sym__immediate_decimal, + STATE(5206), 1, + sym_comment, + ACTIONS(1610), 2, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1540), 6, - sym_identifier, + anon_sym_LBRACE, + ACTIONS(6253), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3424), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [194764] = 11, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1612), 1, anon_sym_DASH, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [196261] = 4, - ACTIONS(247), 1, + ACTIONS(6229), 1, + anon_sym_LPAREN2, + ACTIONS(6235), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6237), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6418), 1, + anon_sym_DOLLAR, + STATE(3428), 1, + sym__immediate_decimal, + STATE(5207), 1, + sym_comment, + ACTIONS(1614), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + ACTIONS(6253), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3427), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [194801] = 11, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8179), 1, + ACTIONS(1620), 1, anon_sym_DASH, - STATE(5131), 1, + ACTIONS(6229), 1, + anon_sym_LPAREN2, + ACTIONS(6235), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6237), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6418), 1, + anon_sym_DOLLAR, + STATE(3431), 1, + sym__immediate_decimal, + STATE(5208), 1, + sym_comment, + ACTIONS(1622), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + ACTIONS(6253), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3430), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [194838] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(8350), 1, + anon_sym_DASH, + STATE(5209), 1, sym_comment, - ACTIONS(8177), 11, + ACTIONS(8348), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -384084,14 +391351,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [196284] = 4, - ACTIONS(247), 1, + [194861] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8183), 1, + ACTIONS(8354), 1, anon_sym_DASH, - STATE(5132), 1, + STATE(5210), 1, sym_comment, - ACTIONS(8181), 11, + ACTIONS(8352), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -384103,14 +391370,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [196307] = 4, - ACTIONS(247), 1, + [194884] = 11, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6227), 1, + anon_sym_DOLLAR, + ACTIONS(6229), 1, + anon_sym_LPAREN2, + ACTIONS(6231), 1, + anon_sym_DOT, + ACTIONS(8318), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8320), 1, + aux_sym__immediate_decimal_token5, + STATE(5211), 1, + sym_comment, + STATE(6096), 1, + sym__immediate_decimal, + ACTIONS(1570), 2, + sym__newline, + anon_sym_LBRACE, + ACTIONS(8316), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(6189), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [194921] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(8356), 1, + anon_sym_DOT, + ACTIONS(8358), 1, + aux_sym__immediate_decimal_token2, + STATE(5212), 1, + sym_comment, + ACTIONS(1538), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1536), 6, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [194948] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8187), 1, + ACTIONS(2222), 1, anon_sym_DASH, - STATE(5133), 1, + STATE(5213), 1, sym_comment, - ACTIONS(8185), 11, + ACTIONS(2228), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -384122,33 +391436,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [196330] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5134), 1, - sym_comment, - ACTIONS(6676), 2, - anon_sym_GT, - anon_sym_LT2, - ACTIONS(6682), 2, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - ACTIONS(6678), 4, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - ACTIONS(6680), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [196357] = 3, - ACTIONS(247), 1, + [194971] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5135), 1, + STATE(5214), 1, sym_comment, - ACTIONS(8189), 12, + ACTIONS(6823), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384161,138 +391454,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [196378] = 10, - ACTIONS(247), 1, + [194992] = 10, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6072), 1, + ACTIONS(6229), 1, anon_sym_LPAREN2, - ACTIONS(6078), 1, + ACTIONS(6235), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6080), 1, + ACTIONS(6237), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7837), 1, + ACTIONS(7992), 1, anon_sym_DOLLAR, - STATE(3427), 1, + STATE(3423), 1, sym__immediate_decimal, - STATE(5136), 1, + STATE(5215), 1, sym_comment, - ACTIONS(6084), 2, + ACTIONS(6253), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3402), 2, + STATE(3463), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1506), 3, + ACTIONS(1570), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [196413] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6070), 1, - anon_sym_DOLLAR, - ACTIONS(6072), 1, - anon_sym_LPAREN2, - ACTIONS(6104), 1, - anon_sym_DOT, - ACTIONS(8113), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8115), 1, - aux_sym__immediate_decimal_token5, - STATE(5137), 1, - sym_comment, - STATE(6058), 1, - sym__immediate_decimal, - ACTIONS(1492), 2, - sym__newline, - anon_sym_LBRACE, - ACTIONS(8111), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6061), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [196450] = 10, - ACTIONS(247), 1, + [195027] = 10, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6072), 1, + ACTIONS(6229), 1, anon_sym_LPAREN2, - ACTIONS(6078), 1, + ACTIONS(6235), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6080), 1, + ACTIONS(6237), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7837), 1, + ACTIONS(7992), 1, anon_sym_DOLLAR, - STATE(3419), 1, + STATE(3425), 1, sym__immediate_decimal, - STATE(5138), 1, + STATE(5216), 1, sym_comment, - ACTIONS(6084), 2, + ACTIONS(6253), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3381), 2, + STATE(3424), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1604), 3, + ACTIONS(1610), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [196485] = 10, - ACTIONS(247), 1, + [195062] = 10, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6072), 1, + ACTIONS(6229), 1, anon_sym_LPAREN2, - ACTIONS(6078), 1, + ACTIONS(6235), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6080), 1, + ACTIONS(6237), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7837), 1, + ACTIONS(7992), 1, anon_sym_DOLLAR, - STATE(3423), 1, + STATE(3428), 1, sym__immediate_decimal, - STATE(5139), 1, + STATE(5217), 1, sym_comment, - ACTIONS(6084), 2, + ACTIONS(6253), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3421), 2, + STATE(3427), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1588), 3, + ACTIONS(1614), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [196520] = 10, - ACTIONS(247), 1, + [195097] = 10, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6072), 1, + ACTIONS(6229), 1, anon_sym_LPAREN2, - ACTIONS(6078), 1, + ACTIONS(6235), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6080), 1, + ACTIONS(6237), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7837), 1, + ACTIONS(7992), 1, anon_sym_DOLLAR, - STATE(3426), 1, + STATE(3431), 1, sym__immediate_decimal, - STATE(5140), 1, + STATE(5218), 1, sym_comment, - ACTIONS(6084), 2, + ACTIONS(6253), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3425), 2, + STATE(3430), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1584), 3, + ACTIONS(1622), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [196555] = 3, - ACTIONS(247), 1, + [195132] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5141), 1, + ACTIONS(8360), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8362), 1, + aux_sym__immediate_decimal_token2, + STATE(5219), 1, + sym_comment, + ACTIONS(1528), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1530), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [195159] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(5220), 1, sym_comment, - ACTIONS(8191), 12, + ACTIONS(8364), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384305,363 +391593,660 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [196576] = 11, - ACTIONS(247), 1, + [195180] = 13, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6070), 1, + ACTIONS(1510), 1, + anon_sym_RBRACE, + ACTIONS(1524), 1, + sym__entry_separator, + ACTIONS(3044), 1, anon_sym_DOLLAR, - ACTIONS(6072), 1, + ACTIONS(7974), 1, anon_sym_LPAREN2, - ACTIONS(6074), 1, - anon_sym_DOT, - ACTIONS(8113), 1, + ACTIONS(7978), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7980), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7982), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8115), 1, + ACTIONS(7984), 1, aux_sym__immediate_decimal_token5, - STATE(5142), 1, + ACTIONS(8366), 1, + anon_sym_DOT, + STATE(5221), 1, sym_comment, - STATE(6060), 1, + STATE(6025), 1, + sym__immediate_decimal, + STATE(5904), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [195221] = 10, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6229), 1, + anon_sym_LPAREN2, + ACTIONS(6418), 1, + anon_sym_DOLLAR, + ACTIONS(8318), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8320), 1, + aux_sym__immediate_decimal_token5, + STATE(3564), 1, sym__immediate_decimal, - ACTIONS(1506), 2, + STATE(5222), 1, + sym_comment, + ACTIONS(1556), 2, sym__newline, anon_sym_LBRACE, - ACTIONS(8111), 2, + ACTIONS(8368), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(6059), 2, + STATE(3433), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [196613] = 3, - ACTIONS(247), 1, + [195255] = 6, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5143), 1, + ACTIONS(8370), 1, + anon_sym_DOT, + ACTIONS(8372), 1, + aux_sym__immediate_decimal_token2, + STATE(5223), 1, sym_comment, - ACTIONS(6594), 12, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + ACTIONS(1536), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1538), 7, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [196634] = 3, - ACTIONS(247), 1, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [195281] = 7, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5144), 1, + ACTIONS(1027), 1, + anon_sym_DASH, + ACTIONS(8268), 1, + anon_sym_DOT, + STATE(2752), 1, + sym_path, + STATE(5224), 1, sym_comment, - ACTIONS(8193), 12, + STATE(5226), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1029), 7, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [196655] = 3, - ACTIONS(247), 1, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [195309] = 12, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5145), 1, + ACTIONS(3294), 1, + aux_sym_record_entry_token1, + ACTIONS(6418), 1, + anon_sym_DOLLAR, + ACTIONS(8374), 1, + sym_identifier, + ACTIONS(8376), 1, + anon_sym_DASH_DASH, + ACTIONS(8378), 1, + anon_sym_DASH, + STATE(5225), 1, sym_comment, - ACTIONS(8195), 12, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [196676] = 3, - ACTIONS(247), 1, + STATE(5345), 1, + aux_sym_ctrl_do_repeat1, + STATE(5416), 1, + sym_val_variable, + STATE(6018), 1, + sym__flag, + STATE(6426), 1, + sym__variable_name, + STATE(6083), 2, + sym_short_flag, + sym_long_flag, + [195347] = 6, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5146), 1, + ACTIONS(1031), 1, + anon_sym_DASH, + ACTIONS(8380), 1, + anon_sym_DOT, + STATE(2752), 1, + sym_path, + STATE(5226), 2, sym_comment, - ACTIONS(8197), 12, + aux_sym_cell_path_repeat1, + ACTIONS(1033), 7, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [196697] = 3, - ACTIONS(247), 1, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + [195373] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5147), 1, + ACTIONS(8296), 1, + aux_sym__immediate_decimal_token2, + STATE(5227), 1, sym_comment, - ACTIONS(8199), 12, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [196718] = 3, - ACTIONS(247), 1, + ACTIONS(1536), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1538), 7, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [195397] = 12, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5148), 1, + ACTIONS(1544), 1, + anon_sym_RBRACE, + ACTIONS(1556), 1, + sym__entry_separator, + ACTIONS(7974), 1, + anon_sym_LPAREN2, + ACTIONS(7982), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7984), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8174), 1, + anon_sym_DOLLAR, + ACTIONS(8234), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8236), 1, + aux_sym__immediate_decimal_token3, + STATE(5228), 1, sym_comment, - ACTIONS(8201), 12, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [196739] = 3, - ACTIONS(247), 1, + STATE(7428), 1, + sym__immediate_decimal, + STATE(7388), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [195435] = 9, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5149), 1, + ACTIONS(3364), 1, + aux_sym_expr_unary_token1, + ACTIONS(8383), 1, + anon_sym_LPAREN, + ACTIONS(8385), 1, + anon_sym_DOLLAR, + ACTIONS(8387), 1, + anon_sym_DASH, + STATE(1765), 1, + sym__expr_unary_minus, + STATE(5229), 1, sym_comment, - ACTIONS(8203), 12, - sym__newline, - anon_sym_SEMI, + ACTIONS(3278), 2, + anon_sym_true, + anon_sym_false, + STATE(1794), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [195467] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(8389), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8391), 1, + aux_sym__immediate_decimal_token2, + STATE(5230), 1, + sym_comment, + ACTIONS(1528), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1530), 7, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [196760] = 3, - ACTIONS(247), 1, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [195493] = 6, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5150), 1, + ACTIONS(7294), 1, + anon_sym_DASH, + STATE(5231), 1, sym_comment, - ACTIONS(6604), 12, - ts_builtin_sym_end, + STATE(5250), 1, + aux_sym_parameter_repeat2, + ACTIONS(2591), 2, sym__newline, - anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(7292), 7, + sym_identifier, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [196781] = 4, - ACTIONS(247), 1, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [195519] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1560), 1, + ACTIONS(7336), 1, anon_sym_DASH, - STATE(5151), 1, + STATE(5232), 1, sym_comment, - ACTIONS(1572), 11, - anon_sym_EQ, - sym_identifier, + STATE(5250), 1, + aux_sym_parameter_repeat2, + ACTIONS(2591), 2, sym__newline, + anon_sym_COMMA, + ACTIONS(7334), 7, + sym_identifier, anon_sym_PIPE, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [196804] = 4, - ACTIONS(247), 1, + [195545] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2458), 1, + ACTIONS(8395), 1, anon_sym_DASH, - STATE(5152), 1, + STATE(5233), 1, sym_comment, - ACTIONS(2460), 11, - anon_sym_EQ, - sym_identifier, + STATE(5250), 1, + aux_sym_parameter_repeat2, + ACTIONS(2591), 2, sym__newline, + anon_sym_COMMA, + ACTIONS(8393), 7, + sym_identifier, anon_sym_PIPE, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [196827] = 13, - ACTIONS(3), 1, + [195571] = 12, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1548), 1, - anon_sym_RBRACK, - ACTIONS(1550), 1, - sym__entry_separator, - ACTIONS(1552), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(7823), 1, + ACTIONS(3296), 1, + aux_sym_record_entry_token1, + ACTIONS(6418), 1, + anon_sym_DOLLAR, + ACTIONS(8374), 1, + sym_identifier, + ACTIONS(8376), 1, + anon_sym_DASH_DASH, + ACTIONS(8378), 1, + anon_sym_DASH, + STATE(5234), 1, + sym_comment, + STATE(5345), 1, + aux_sym_ctrl_do_repeat1, + STATE(5416), 1, + sym_val_variable, + STATE(6018), 1, + sym__flag, + STATE(6426), 1, + sym__variable_name, + STATE(6083), 2, + sym_short_flag, + sym_long_flag, + [195609] = 11, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1524), 1, + anon_sym_LBRACE, + ACTIONS(6229), 1, anon_sym_LPAREN2, - ACTIONS(8049), 1, + ACTIONS(6428), 1, + anon_sym_DOT, + ACTIONS(8312), 1, anon_sym_DOLLAR, - ACTIONS(8051), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8053), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8055), 1, + ACTIONS(8318), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8057), 1, + ACTIONS(8320), 1, aux_sym__immediate_decimal_token5, - STATE(5153), 1, + STATE(5235), 1, sym_comment, - STATE(6574), 1, + STATE(6185), 1, sym__immediate_decimal, - STATE(2949), 2, + ACTIONS(8316), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(6098), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [196868] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5154), 1, - sym_comment, - ACTIONS(8205), 12, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [196889] = 4, - ACTIONS(247), 1, + [195645] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1991), 1, + ACTIONS(7344), 1, anon_sym_DASH, - STATE(5155), 1, + STATE(5236), 1, sym_comment, - ACTIONS(1997), 11, - anon_sym_EQ, - sym_identifier, + STATE(5250), 1, + aux_sym_parameter_repeat2, + ACTIONS(2591), 2, sym__newline, + anon_sym_COMMA, + ACTIONS(7342), 7, + sym_identifier, anon_sym_PIPE, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [196912] = 11, - ACTIONS(247), 1, + [195671] = 11, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1550), 1, - anon_sym_LBRACE, - ACTIONS(1552), 1, - aux_sym_unquoted_token2, - ACTIONS(6072), 1, - anon_sym_LPAREN2, - ACTIONS(8207), 1, + ACTIONS(1524), 1, + anon_sym_EQ_GT, + ACTIONS(3616), 1, anon_sym_DOLLAR, - ACTIONS(8211), 1, + ACTIONS(6229), 1, + anon_sym_LPAREN2, + ACTIONS(6235), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8213), 1, + ACTIONS(6237), 1, aux_sym__immediate_decimal_token5, - STATE(5156), 1, + ACTIONS(6428), 1, + anon_sym_DOT, + STATE(5237), 1, sym_comment, - STATE(7311), 1, + STATE(6739), 1, sym__immediate_decimal, - ACTIONS(8209), 2, + ACTIONS(6233), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3401), 2, + STATE(5976), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [196948] = 9, - ACTIONS(247), 1, + [195707] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(8397), 1, + aux_sym__immediate_decimal_token2, + STATE(5238), 1, + sym_comment, + ACTIONS(1596), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1598), 7, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [195731] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8342), 1, + aux_sym__immediate_decimal_token2, + STATE(5239), 1, + sym_comment, + ACTIONS(1536), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1538), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [195755] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8217), 1, + ACTIONS(8401), 1, anon_sym_DASH_DASH, - ACTIONS(8219), 1, + ACTIONS(8403), 1, anon_sym_DASH, - ACTIONS(8221), 1, + ACTIONS(8405), 1, anon_sym_as, - STATE(5157), 1, + STATE(5240), 1, sym_comment, - STATE(5174), 1, + STATE(5259), 1, aux_sym_ctrl_do_repeat1, - STATE(5582), 1, + STATE(5634), 1, sym__flag, - STATE(5404), 2, + STATE(5494), 2, sym_short_flag, sym_long_flag, - ACTIONS(8215), 4, + ACTIONS(8399), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [196980] = 9, - ACTIONS(247), 1, + [195787] = 9, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(3524), 1, + aux_sym_expr_unary_token1, + ACTIONS(6747), 1, + anon_sym_LPAREN, + ACTIONS(6885), 1, + anon_sym_DOLLAR, + ACTIONS(8409), 1, + anon_sym_DASH, + STATE(4619), 1, + sym__expr_unary_minus, + STATE(5241), 1, + sym_comment, + ACTIONS(8407), 2, + anon_sym_true, + anon_sym_false, + STATE(4692), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [195819] = 10, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6229), 1, + anon_sym_LPAREN2, + ACTIONS(6418), 1, + anon_sym_DOLLAR, + ACTIONS(8318), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8320), 1, + aux_sym__immediate_decimal_token5, + STATE(3574), 1, + sym__immediate_decimal, + STATE(5242), 1, + sym_comment, + ACTIONS(1524), 2, + sym__newline, + anon_sym_LBRACE, + ACTIONS(8368), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3422), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [195853] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8217), 1, + ACTIONS(8401), 1, anon_sym_DASH_DASH, - ACTIONS(8219), 1, + ACTIONS(8403), 1, anon_sym_DASH, - ACTIONS(8225), 1, + ACTIONS(8413), 1, anon_sym_as, - STATE(5158), 1, + STATE(5243), 1, sym_comment, - STATE(5180), 1, + STATE(5254), 1, aux_sym_ctrl_do_repeat1, - STATE(5582), 1, + STATE(5634), 1, sym__flag, - STATE(5404), 2, + STATE(5494), 2, sym_short_flag, sym_long_flag, - ACTIONS(8223), 4, + ACTIONS(8411), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [197012] = 6, - ACTIONS(247), 1, + [195885] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8415), 1, + aux_sym__immediate_decimal_token2, + STATE(5244), 1, + sym_comment, + ACTIONS(1596), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1598), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [195909] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1510), 1, + anon_sym_RBRACE, + ACTIONS(1524), 1, + sym__entry_separator, + ACTIONS(7974), 1, + anon_sym_LPAREN2, + ACTIONS(7982), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7984), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8174), 1, + anon_sym_DOLLAR, + ACTIONS(8234), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8236), 1, + aux_sym__immediate_decimal_token3, + STATE(5245), 1, + sym_comment, + STATE(7453), 1, + sym__immediate_decimal, + STATE(6842), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [195947] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7190), 1, + ACTIONS(499), 1, + aux_sym_expr_unary_token1, + ACTIONS(8417), 1, + anon_sym_LPAREN, + ACTIONS(8419), 1, + anon_sym_DOLLAR, + ACTIONS(8421), 1, anon_sym_DASH, - STATE(5159), 1, + STATE(2328), 1, + sym__expr_unary_minus, + STATE(5246), 1, sym_comment, - STATE(5187), 1, + ACTIONS(5141), 2, + anon_sym_true, + anon_sym_false, + STATE(2322), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [195979] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(8425), 1, + anon_sym_DASH, + STATE(5247), 1, + sym_comment, + STATE(5250), 1, aux_sym_parameter_repeat2, - ACTIONS(2551), 2, + ACTIONS(2591), 2, + sym__newline, + anon_sym_COMMA, + ACTIONS(8423), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [196005] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(8427), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8429), 1, + aux_sym__immediate_decimal_token2, + STATE(5248), 1, + sym_comment, + ACTIONS(1530), 3, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1528), 6, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [196031] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(8433), 1, + anon_sym_DASH, + STATE(5249), 1, + sym_comment, + STATE(5250), 1, + aux_sym_parameter_repeat2, + ACTIONS(2591), 2, + sym__newline, + anon_sym_COMMA, + ACTIONS(8431), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [196057] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(8440), 1, + anon_sym_DASH, + ACTIONS(8437), 2, sym__newline, anon_sym_COMMA, - ACTIONS(7188), 7, + STATE(5250), 2, + sym_comment, + aux_sym_parameter_repeat2, + ACTIONS(8435), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -384669,1776 +392254,1968 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [197038] = 11, - ACTIONS(247), 1, + [196081] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(8358), 1, + aux_sym__immediate_decimal_token2, + STATE(5251), 1, + sym_comment, + ACTIONS(1538), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1536), 6, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [196105] = 11, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1492), 1, + ACTIONS(1556), 1, anon_sym_LBRACE, - ACTIONS(6072), 1, + ACTIONS(1558), 1, + aux_sym_unquoted_token2, + ACTIONS(6229), 1, anon_sym_LPAREN2, - ACTIONS(6104), 1, - anon_sym_DOT, - ACTIONS(8107), 1, + ACTIONS(6418), 1, anon_sym_DOLLAR, - ACTIONS(8113), 1, + ACTIONS(8444), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8115), 1, + ACTIONS(8446), 1, aux_sym__immediate_decimal_token5, - STATE(5160), 1, + STATE(5252), 1, sym_comment, - STATE(6200), 1, + STATE(7410), 1, sym__immediate_decimal, - ACTIONS(8111), 2, + ACTIONS(8442), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(6456), 2, + STATE(3433), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [197074] = 6, - ACTIONS(247), 1, + [196141] = 9, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(3474), 1, + aux_sym_expr_unary_token1, + ACTIONS(6251), 1, + anon_sym_DOLLAR, + ACTIONS(6633), 1, + anon_sym_LPAREN, + ACTIONS(8450), 1, + anon_sym_DASH, + STATE(4482), 1, + sym__expr_unary_minus, + STATE(5253), 1, + sym_comment, + ACTIONS(8448), 2, + anon_sym_true, + anon_sym_false, + STATE(4453), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [196173] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8229), 1, + ACTIONS(8401), 1, + anon_sym_DASH_DASH, + ACTIONS(8403), 1, anon_sym_DASH, - STATE(5161), 1, + ACTIONS(8454), 1, + anon_sym_as, + STATE(5254), 1, sym_comment, - STATE(5187), 1, - aux_sym_parameter_repeat2, - ACTIONS(2551), 2, + STATE(5259), 1, + aux_sym_ctrl_do_repeat1, + STATE(5634), 1, + sym__flag, + STATE(5494), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8452), 4, sym__newline, - anon_sym_COMMA, - ACTIONS(8227), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [196205] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(4997), 1, + anon_sym_DASH, + STATE(5255), 1, + sym_comment, + ACTIONS(4995), 10, sym_identifier, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [197100] = 12, - ACTIONS(247), 1, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + [196227] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3229), 1, - aux_sym_record_entry_token1, - ACTIONS(6082), 1, + ACTIONS(8456), 1, + anon_sym_DOT, + ACTIONS(8458), 1, + aux_sym__immediate_decimal_token2, + STATE(5256), 1, + sym_comment, + ACTIONS(1536), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1538), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [196253] = 9, + ACTIONS(211), 1, + aux_sym_expr_unary_token1, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(8387), 1, + anon_sym_DASH, + ACTIONS(8460), 1, + anon_sym_LPAREN, + ACTIONS(8462), 1, anon_sym_DOLLAR, - ACTIONS(8231), 1, - sym_identifier, - ACTIONS(8233), 1, + STATE(1765), 1, + sym__expr_unary_minus, + STATE(5257), 1, + sym_comment, + ACTIONS(3278), 2, + anon_sym_true, + anon_sym_false, + STATE(1794), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [196285] = 10, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6229), 1, + anon_sym_LPAREN2, + ACTIONS(6418), 1, + anon_sym_DOLLAR, + ACTIONS(8318), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8320), 1, + aux_sym__immediate_decimal_token5, + STATE(3425), 1, + sym__immediate_decimal, + STATE(5258), 1, + sym_comment, + ACTIONS(1610), 2, + sym__newline, + anon_sym_LBRACE, + ACTIONS(8368), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3424), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [196319] = 7, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(8466), 1, anon_sym_DASH_DASH, - ACTIONS(8235), 1, + ACTIONS(8469), 1, anon_sym_DASH, - STATE(5162), 1, + STATE(5634), 1, + sym__flag, + STATE(5259), 2, sym_comment, - STATE(5266), 1, aux_sym_ctrl_do_repeat1, - STATE(5366), 1, - sym_val_variable, - STATE(5902), 1, - sym__flag, - STATE(6132), 1, - sym__variable_name, - STATE(6046), 2, + STATE(5494), 2, sym_short_flag, sym_long_flag, - [197138] = 5, - ACTIONS(247), 1, + ACTIONS(8464), 5, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_as, + [196347] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8171), 1, - aux_sym__immediate_decimal_token2, - STATE(5163), 1, + ACTIONS(4987), 1, + anon_sym_DASH, + STATE(5260), 1, sym_comment, - ACTIONS(1520), 4, + ACTIONS(4985), 10, + sym_identifier, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + [196369] = 11, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1524), 1, + anon_sym_LBRACE, + ACTIONS(1526), 1, + aux_sym_unquoted_token2, + ACTIONS(6229), 1, + anon_sym_LPAREN2, + ACTIONS(6418), 1, + anon_sym_DOLLAR, + ACTIONS(8444), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8446), 1, + aux_sym__immediate_decimal_token5, + STATE(5261), 1, + sym_comment, + STATE(7411), 1, + sym__immediate_decimal, + ACTIONS(8442), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3422), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [196405] = 10, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6229), 1, + anon_sym_LPAREN2, + ACTIONS(6418), 1, + anon_sym_DOLLAR, + ACTIONS(8318), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8320), 1, + aux_sym__immediate_decimal_token5, + STATE(3428), 1, + sym__immediate_decimal, + STATE(5262), 1, + sym_comment, + ACTIONS(1614), 2, + sym__newline, + anon_sym_LBRACE, + ACTIONS(8368), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3427), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [196439] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8472), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8474), 1, + aux_sym__immediate_decimal_token2, + STATE(5263), 1, + sym_comment, + ACTIONS(1528), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1530), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1518), 6, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - aux_sym_unquoted_token2, - [197162] = 12, - ACTIONS(3), 1, + sym__entry_separator, + [196465] = 9, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(3412), 1, + aux_sym_expr_unary_token1, + ACTIONS(8383), 1, + anon_sym_LPAREN, + ACTIONS(8387), 1, + anon_sym_DASH, + ACTIONS(8476), 1, + anon_sym_DOLLAR, + STATE(1765), 1, + sym__expr_unary_minus, + STATE(5264), 1, + sym_comment, + ACTIONS(3278), 2, + anon_sym_true, + anon_sym_false, + STATE(1794), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [196497] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1548), 1, - anon_sym_RBRACE, - ACTIONS(1550), 1, - sym__entry_separator, - ACTIONS(7823), 1, + ACTIONS(3766), 1, + sym__newline, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(5265), 1, + sym_comment, + ACTIONS(3027), 9, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [196521] = 10, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6229), 1, anon_sym_LPAREN2, - ACTIONS(7831), 1, + ACTIONS(6418), 1, + anon_sym_DOLLAR, + ACTIONS(8318), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7833), 1, + ACTIONS(8320), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8049), 1, - anon_sym_DOLLAR, - ACTIONS(8067), 1, + STATE(3431), 1, + sym__immediate_decimal, + STATE(5266), 1, + sym_comment, + ACTIONS(1622), 2, + sym__newline, + anon_sym_LBRACE, + ACTIONS(8368), 2, aux_sym__immediate_decimal_token1, - ACTIONS(8069), 1, aux_sym__immediate_decimal_token3, - STATE(5164), 1, + STATE(3430), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [196555] = 11, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1570), 1, + anon_sym_LBRACE, + ACTIONS(6229), 1, + anon_sym_LPAREN2, + ACTIONS(6231), 1, + anon_sym_DOT, + ACTIONS(8312), 1, + anon_sym_DOLLAR, + ACTIONS(8318), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8320), 1, + aux_sym__immediate_decimal_token5, + STATE(5267), 1, sym_comment, - STATE(7226), 1, + STATE(6096), 1, sym__immediate_decimal, - STATE(2949), 2, + ACTIONS(8316), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(6189), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [197200] = 6, - ACTIONS(247), 1, + [196591] = 9, + ACTIONS(91), 1, + aux_sym_expr_unary_token1, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8237), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8239), 1, + ACTIONS(5842), 1, + anon_sym_LPAREN, + ACTIONS(6456), 1, + anon_sym_DOLLAR, + ACTIONS(8478), 1, + anon_sym_DASH, + STATE(2510), 1, + sym__expr_unary_minus, + STATE(5268), 1, + sym_comment, + ACTIONS(3392), 2, + anon_sym_true, + anon_sym_false, + STATE(2458), 4, + sym_expr_unary, + sym_expr_parenthesized, + sym_val_bool, + sym_val_variable, + [196623] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(8480), 1, aux_sym__immediate_decimal_token2, - STATE(5165), 1, + STATE(5269), 1, sym_comment, - ACTIONS(1542), 3, + ACTIONS(1598), 4, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1540), 6, + ACTIONS(1596), 6, sym_identifier, anon_sym_DASH, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token2, - [197226] = 11, - ACTIONS(247), 1, + [196647] = 10, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1506), 1, - anon_sym_LBRACE, - ACTIONS(6072), 1, + ACTIONS(6229), 1, anon_sym_LPAREN2, - ACTIONS(6074), 1, - anon_sym_DOT, - ACTIONS(8107), 1, + ACTIONS(6418), 1, anon_sym_DOLLAR, - ACTIONS(8113), 1, + ACTIONS(8318), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8115), 1, + ACTIONS(8320), 1, aux_sym__immediate_decimal_token5, - STATE(5166), 1, - sym_comment, - STATE(6455), 1, + STATE(3423), 1, sym__immediate_decimal, - ACTIONS(8111), 2, + STATE(5270), 1, + sym_comment, + ACTIONS(1570), 2, + sym__newline, + anon_sym_LBRACE, + ACTIONS(8368), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(6452), 2, + STATE(3463), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [197262] = 6, - ACTIONS(247), 1, + [196681] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8243), 1, + ACTIONS(8401), 1, + anon_sym_DASH_DASH, + ACTIONS(8403), 1, anon_sym_DASH, - STATE(5167), 1, + ACTIONS(8484), 1, + anon_sym_as, + STATE(5240), 1, + aux_sym_ctrl_do_repeat1, + STATE(5271), 1, sym_comment, - STATE(5187), 1, - aux_sym_parameter_repeat2, - ACTIONS(2551), 2, + STATE(5634), 1, + sym__flag, + STATE(5494), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8482), 4, sym__newline, - anon_sym_COMMA, - ACTIONS(8241), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [197288] = 5, - ACTIONS(247), 1, + anon_sym_RBRACE, + [196713] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8245), 1, + ACTIONS(8486), 1, + anon_sym_DOT, + ACTIONS(8488), 1, aux_sym__immediate_decimal_token2, - STATE(5168), 1, + STATE(5272), 1, sym_comment, - ACTIONS(1556), 4, - anon_sym_DOLLAR, + ACTIONS(1538), 3, anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1554), 6, + ACTIONS(1536), 6, sym_identifier, anon_sym_DASH, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token2, - [197312] = 7, - ACTIONS(247), 1, + [196739] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1021), 1, + anon_sym_DOT_DOT2, + ACTIONS(6216), 1, + anon_sym_DOT, + STATE(3165), 1, + aux_sym_cell_path_repeat1, + STATE(3337), 1, + sym_path, + STATE(4165), 1, + sym_cell_path, + STATE(5273), 1, + sym_comment, + ACTIONS(1023), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [196768] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8249), 1, + ACTIONS(8490), 1, anon_sym_DASH_DASH, - ACTIONS(8252), 1, + ACTIONS(8493), 1, anon_sym_DASH, - STATE(5582), 1, + STATE(5795), 1, sym__flag, - STATE(5169), 2, + STATE(5274), 2, sym_comment, aux_sym_ctrl_do_repeat1, - STATE(5404), 2, + STATE(5923), 2, sym_short_flag, sym_long_flag, - ACTIONS(8247), 5, + ACTIONS(8464), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_as, - [197340] = 9, - ACTIONS(91), 1, - aux_sym_expr_unary_token1, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5784), 1, - anon_sym_LPAREN, - ACTIONS(6301), 1, - anon_sym_DOLLAR, - ACTIONS(8255), 1, - anon_sym_DASH, - STATE(2432), 1, - sym__expr_unary_minus, - STATE(5170), 1, - sym_comment, - ACTIONS(3379), 2, - anon_sym_true, - anon_sym_false, - STATE(2386), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [197372] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8151), 1, - aux_sym__immediate_decimal_token2, - STATE(5171), 1, - sym_comment, - ACTIONS(1518), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1520), 7, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [197396] = 12, - ACTIONS(247), 1, + [196795] = 11, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3231), 1, - aux_sym_record_entry_token1, - ACTIONS(6082), 1, + ACTIONS(6418), 1, anon_sym_DOLLAR, - ACTIONS(8231), 1, + ACTIONS(8374), 1, sym_identifier, - ACTIONS(8233), 1, + ACTIONS(8376), 1, anon_sym_DASH_DASH, - ACTIONS(8235), 1, + ACTIONS(8378), 1, anon_sym_DASH, - STATE(5172), 1, + STATE(5275), 1, sym_comment, - STATE(5266), 1, + STATE(5345), 1, aux_sym_ctrl_do_repeat1, - STATE(5366), 1, + STATE(5416), 1, sym_val_variable, - STATE(5902), 1, + STATE(6018), 1, sym__flag, - STATE(6132), 1, + STATE(6426), 1, sym__variable_name, - STATE(6046), 2, + STATE(6083), 2, sym_short_flag, sym_long_flag, - [197434] = 6, - ACTIONS(247), 1, + [196830] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7138), 1, - anon_sym_DASH, - STATE(5173), 1, + ACTIONS(3568), 1, + anon_sym_DOLLAR, + ACTIONS(7025), 1, + anon_sym_LPAREN2, + ACTIONS(7029), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7031), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7135), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8496), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8498), 1, + aux_sym__immediate_decimal_token5, + STATE(4353), 1, + sym__immediate_decimal, + STATE(5276), 1, sym_comment, - STATE(5187), 1, - aux_sym_parameter_repeat2, - ACTIONS(2551), 2, - sym__newline, - anon_sym_COMMA, - ACTIONS(7136), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, + STATE(4654), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [196865] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7025), 1, + anon_sym_LPAREN2, + ACTIONS(7072), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7074), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7135), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8500), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [197460] = 9, - ACTIONS(247), 1, + ACTIONS(8502), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8504), 1, + aux_sym__immediate_decimal_token5, + STATE(4763), 1, + sym__immediate_decimal, + STATE(5277), 1, + sym_comment, + STATE(5213), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [196900] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8217), 1, + ACTIONS(8506), 1, anon_sym_DASH_DASH, - ACTIONS(8219), 1, + ACTIONS(8508), 1, anon_sym_DASH, - ACTIONS(8259), 1, + ACTIONS(8510), 1, anon_sym_as, - STATE(5169), 1, + STATE(5274), 1, aux_sym_ctrl_do_repeat1, - STATE(5174), 1, + STATE(5278), 1, sym_comment, - STATE(5582), 1, + STATE(5795), 1, sym__flag, - STATE(5404), 2, + STATE(5923), 2, sym_short_flag, sym_long_flag, - ACTIONS(8257), 4, + ACTIONS(8399), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [197492] = 11, - ACTIONS(247), 1, + [196931] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1492), 1, - anon_sym_EQ_GT, - ACTIONS(3545), 1, - anon_sym_DOLLAR, - ACTIONS(6072), 1, + ACTIONS(4842), 1, + aux_sym_unquoted_token3, + ACTIONS(6229), 1, anon_sym_LPAREN2, - ACTIONS(6078), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6080), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6104), 1, - anon_sym_DOT, - STATE(5175), 1, - sym_comment, - STATE(6587), 1, - sym__immediate_decimal, - ACTIONS(6076), 2, + ACTIONS(7994), 1, aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(5883), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [197528] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7150), 1, - anon_sym_DASH, - STATE(5176), 1, - sym_comment, - STATE(5187), 1, - aux_sym_parameter_repeat2, - ACTIONS(2551), 2, - sym__newline, - anon_sym_COMMA, - ACTIONS(7148), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, + ACTIONS(8512), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [197554] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1478), 1, - anon_sym_RBRACE, - ACTIONS(1492), 1, - sym__entry_separator, - ACTIONS(7823), 1, - anon_sym_LPAREN2, - ACTIONS(7831), 1, + ACTIONS(8514), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8516), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7833), 1, + ACTIONS(8518), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8049), 1, - anon_sym_DOLLAR, - ACTIONS(8067), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8069), 1, - aux_sym__immediate_decimal_token3, - STATE(5177), 1, + STATE(5279), 1, sym_comment, - STATE(7255), 1, + STATE(6732), 1, sym__immediate_decimal, - STATE(2962), 2, + STATE(3439), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [197592] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8261), 1, - aux_sym__immediate_decimal_token2, - STATE(5178), 1, - sym_comment, - ACTIONS(1554), 3, - anon_sym_DASH, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1556), 7, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [197616] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3409), 1, - aux_sym_expr_unary_token1, - ACTIONS(6082), 1, - anon_sym_DOLLAR, - ACTIONS(6456), 1, - anon_sym_LPAREN, - ACTIONS(8265), 1, - anon_sym_DASH, - STATE(4358), 1, - sym__expr_unary_minus, - STATE(5179), 1, - sym_comment, - ACTIONS(8263), 2, - anon_sym_true, - anon_sym_false, - STATE(4385), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [197648] = 9, - ACTIONS(247), 1, + [196966] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8217), 1, + ACTIONS(8506), 1, anon_sym_DASH_DASH, - ACTIONS(8219), 1, + ACTIONS(8508), 1, anon_sym_DASH, - ACTIONS(8269), 1, + ACTIONS(8520), 1, anon_sym_as, - STATE(5169), 1, - aux_sym_ctrl_do_repeat1, - STATE(5180), 1, + STATE(5280), 1, sym_comment, - STATE(5582), 1, + STATE(5287), 1, + aux_sym_ctrl_do_repeat1, + STATE(5795), 1, sym__flag, - STATE(5404), 2, + STATE(5923), 2, sym_short_flag, sym_long_flag, - ACTIONS(8267), 4, + ACTIONS(8411), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [197680] = 4, - ACTIONS(247), 1, + [196997] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8271), 1, - anon_sym_LT, - STATE(5181), 1, - sym_comment, - ACTIONS(7673), 10, - anon_sym_EQ, + ACTIONS(8522), 1, sym_identifier, - anon_sym_DASH_GT, - anon_sym_COMMA, + ACTIONS(8525), 1, anon_sym_GT, - anon_sym_AT, - anon_sym_LBRACE, + ACTIONS(8527), 1, anon_sym_DQUOTE, + ACTIONS(8533), 1, + sym_raw_string_begin, + STATE(5589), 1, + sym_val_string, + ACTIONS(8530), 2, sym__str_single_quotes, sym__str_back_ticks, - [197702] = 6, - ACTIONS(247), 1, + STATE(5281), 2, + sym_comment, + aux_sym_collection_type_repeat1, + STATE(5598), 2, + sym__raw_str, + sym__str_double_quotes, + [197028] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8273), 1, - anon_sym_DOT, - ACTIONS(8275), 1, - aux_sym__immediate_decimal_token2, - STATE(5182), 1, + STATE(5282), 1, sym_comment, - ACTIONS(1518), 2, + ACTIONS(1536), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1520), 7, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, + aux_sym__unquoted_in_list_token2, + ACTIONS(1538), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [197728] = 4, - ACTIONS(247), 1, + sym__entry_separator, + [197049] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8277), 1, - anon_sym_LT, - STATE(5183), 1, + ACTIONS(2131), 1, + anon_sym_DOLLAR, + ACTIONS(6931), 1, + anon_sym_LPAREN2, + ACTIONS(6935), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6937), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(6939), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6941), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7068), 1, + aux_sym_unquoted_token3, + STATE(4166), 1, + sym__immediate_decimal, + STATE(5283), 1, sym_comment, - ACTIONS(7673), 10, - anon_sym_EQ, - sym_identifier, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_AT, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [197750] = 6, - ACTIONS(247), 1, + STATE(4485), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [197084] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8279), 1, + ACTIONS(4237), 1, + anon_sym_DOLLAR, + ACTIONS(6931), 1, + anon_sym_LPAREN2, + ACTIONS(6955), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8281), 1, - aux_sym__immediate_decimal_token2, - STATE(5184), 1, + ACTIONS(6957), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(6959), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6961), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7068), 1, + aux_sym_unquoted_token3, + STATE(4688), 1, + sym__immediate_decimal, + STATE(5284), 1, + sym_comment, + STATE(4977), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [197119] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8536), 1, + anon_sym_DOT, + STATE(5285), 1, sym_comment, - ACTIONS(1540), 2, + STATE(5452), 1, + aux_sym_cell_path_repeat1, + STATE(5746), 1, + sym_path, + STATE(5814), 1, + sym_cell_path, + ACTIONS(1021), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1542), 7, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, + ACTIONS(1023), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [197776] = 6, - ACTIONS(247), 1, + sym__entry_separator, + [197148] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8283), 1, - anon_sym_DOT, - ACTIONS(8285), 1, + ACTIONS(8488), 1, aux_sym__immediate_decimal_token2, - STATE(5185), 1, + STATE(5286), 1, sym_comment, - ACTIONS(1520), 3, + ACTIONS(1538), 3, anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1518), 6, + ACTIONS(1536), 6, sym_identifier, anon_sym_DASH, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token2, - [197802] = 6, + [197171] = 9, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(8506), 1, + anon_sym_DASH_DASH, + ACTIONS(8508), 1, + anon_sym_DASH, + ACTIONS(8538), 1, + anon_sym_as, + STATE(5274), 1, + aux_sym_ctrl_do_repeat1, + STATE(5287), 1, + sym_comment, + STATE(5795), 1, + sym__flag, + STATE(5923), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8452), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [197202] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8287), 1, - anon_sym_DOT, - ACTIONS(8289), 1, - aux_sym__immediate_decimal_token2, - STATE(5186), 1, + STATE(5288), 1, sym_comment, - ACTIONS(1518), 3, + ACTIONS(1528), 4, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1520), 6, + aux_sym__unquoted_in_list_token2, + ACTIONS(1530), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [197828] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8296), 1, - anon_sym_DASH, - ACTIONS(8293), 2, - sym__newline, - anon_sym_COMMA, - STATE(5187), 2, - sym_comment, - aux_sym_parameter_repeat2, - ACTIONS(8291), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [197852] = 6, - ACTIONS(3), 1, + [197223] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8298), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8300), 1, + ACTIONS(8540), 1, aux_sym__immediate_decimal_token2, - STATE(5188), 1, + STATE(5289), 1, sym_comment, - ACTIONS(1540), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1542), 6, - anon_sym_LPAREN2, + ACTIONS(1598), 3, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + ACTIONS(1596), 6, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - sym__entry_separator, - [197878] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3275), 1, - aux_sym_expr_unary_token1, - ACTIONS(8302), 1, - anon_sym_LPAREN, - ACTIONS(8304), 1, - anon_sym_DOLLAR, - ACTIONS(8306), 1, - anon_sym_DASH, - STATE(1646), 1, - sym__expr_unary_minus, - STATE(5189), 1, - sym_comment, - ACTIONS(3213), 2, - anon_sym_true, - anon_sym_false, - STATE(1717), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [197910] = 9, - ACTIONS(209), 1, - aux_sym_expr_unary_token1, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8306), 1, - anon_sym_DASH, - ACTIONS(8308), 1, - anon_sym_LPAREN, - ACTIONS(8310), 1, - anon_sym_DOLLAR, - STATE(1646), 1, - sym__expr_unary_minus, - STATE(5190), 1, - sym_comment, - ACTIONS(3213), 2, - anon_sym_true, - anon_sym_false, - STATE(1717), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [197942] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3315), 1, - aux_sym_expr_unary_token1, - ACTIONS(8302), 1, - anon_sym_LPAREN, - ACTIONS(8306), 1, - anon_sym_DASH, - ACTIONS(8312), 1, - anon_sym_DOLLAR, - STATE(1646), 1, - sym__expr_unary_minus, - STATE(5191), 1, - sym_comment, - ACTIONS(3213), 2, - anon_sym_true, - anon_sym_false, - STATE(1717), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [197974] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(5192), 1, - sym_comment, - ACTIONS(2972), 9, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [197998] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(491), 1, - aux_sym_expr_unary_token1, - ACTIONS(8314), 1, - anon_sym_LPAREN, - ACTIONS(8316), 1, - anon_sym_DOLLAR, - ACTIONS(8318), 1, - anon_sym_DASH, - STATE(2377), 1, - sym__expr_unary_minus, - STATE(5193), 1, - sym_comment, - ACTIONS(5115), 2, - anon_sym_true, - anon_sym_false, - STATE(2211), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [198030] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3457), 1, - aux_sym_expr_unary_token1, - ACTIONS(6590), 1, - anon_sym_LPAREN, - ACTIONS(6722), 1, - anon_sym_DOLLAR, - ACTIONS(8322), 1, - anon_sym_DASH, - STATE(4553), 1, - sym__expr_unary_minus, - STATE(5194), 1, - sym_comment, - ACTIONS(8320), 2, - anon_sym_true, - anon_sym_false, - STATE(4587), 4, - sym_expr_unary, - sym_expr_parenthesized, - sym_val_bool, - sym_val_variable, - [198062] = 11, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1492), 1, - anon_sym_LBRACE, - ACTIONS(1494), 1, aux_sym_unquoted_token2, - ACTIONS(6072), 1, - anon_sym_LPAREN2, - ACTIONS(8207), 1, - anon_sym_DOLLAR, - ACTIONS(8211), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8213), 1, - aux_sym__immediate_decimal_token5, - STATE(5195), 1, - sym_comment, - STATE(7293), 1, - sym__immediate_decimal, - ACTIONS(8209), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3393), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [198098] = 6, - ACTIONS(247), 1, + [197246] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8326), 1, + ACTIONS(1027), 1, anon_sym_DASH, - STATE(5187), 1, - aux_sym_parameter_repeat2, - STATE(5196), 1, + ACTIONS(8542), 1, + anon_sym_DOT, + STATE(5290), 1, sym_comment, - ACTIONS(2551), 2, - sym__newline, - anon_sym_COMMA, - ACTIONS(8324), 7, + STATE(5300), 1, + aux_sym_cell_path_repeat1, + STATE(5519), 1, + sym_path, + ACTIONS(1029), 6, + anon_sym_EQ, sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, + sym__newline, + anon_sym_COLON, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [198124] = 10, - ACTIONS(247), 1, + [197273] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6072), 1, + ACTIONS(5560), 1, anon_sym_LPAREN2, - ACTIONS(6082), 1, - anon_sym_DOLLAR, - ACTIONS(8113), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8115), 1, - aux_sym__immediate_decimal_token5, - STATE(3527), 1, - sym__immediate_decimal, - STATE(5197), 1, - sym_comment, - ACTIONS(1492), 2, - sym__newline, - anon_sym_LBRACE, - ACTIONS(8328), 2, - aux_sym__immediate_decimal_token1, + ACTIONS(5562), 1, aux_sym__immediate_decimal_token3, - STATE(3393), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [198158] = 10, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6072), 1, - anon_sym_LPAREN2, - ACTIONS(6082), 1, + ACTIONS(5564), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5805), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8544), 1, anon_sym_DOLLAR, - ACTIONS(8113), 1, + ACTIONS(8546), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8115), 1, + ACTIONS(8548), 1, aux_sym__immediate_decimal_token5, - STATE(3524), 1, + STATE(2993), 1, sym__immediate_decimal, - STATE(5198), 1, + STATE(5291), 1, sym_comment, - ACTIONS(1550), 2, - sym__newline, - anon_sym_LBRACE, - ACTIONS(8328), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3401), 2, + STATE(3105), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [198192] = 10, - ACTIONS(247), 1, + [197308] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6072), 1, + ACTIONS(1574), 1, anon_sym_LPAREN2, - ACTIONS(6082), 1, + ACTIONS(1578), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(1580), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(1699), 1, + aux_sym__unquoted_in_record_token3, + ACTIONS(3702), 1, anon_sym_DOLLAR, - ACTIONS(8113), 1, + ACTIONS(8550), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8115), 1, + ACTIONS(8552), 1, aux_sym__immediate_decimal_token5, - STATE(3427), 1, + STATE(384), 1, sym__immediate_decimal, - STATE(5199), 1, + STATE(5292), 1, sym_comment, - ACTIONS(1506), 2, - sym__newline, - anon_sym_LBRACE, - ACTIONS(8328), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3402), 2, + STATE(495), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [198226] = 10, - ACTIONS(247), 1, + [197343] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6072), 1, + ACTIONS(1646), 1, anon_sym_LPAREN2, - ACTIONS(6082), 1, + ACTIONS(1648), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(1650), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(1699), 1, + aux_sym__unquoted_in_record_token3, + ACTIONS(8554), 1, anon_sym_DOLLAR, - ACTIONS(8113), 1, + ACTIONS(8556), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8115), 1, + ACTIONS(8558), 1, aux_sym__immediate_decimal_token5, - STATE(3419), 1, + STATE(535), 1, sym__immediate_decimal, - STATE(5200), 1, + STATE(5293), 1, sym_comment, - ACTIONS(1604), 2, - sym__newline, - anon_sym_LBRACE, - ACTIONS(8328), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3381), 2, + STATE(636), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [198260] = 10, - ACTIONS(247), 1, + [197378] = 10, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6072), 1, - anon_sym_LPAREN2, - ACTIONS(6082), 1, - anon_sym_DOLLAR, - ACTIONS(8113), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8115), 1, - aux_sym__immediate_decimal_token5, - STATE(3423), 1, - sym__immediate_decimal, - STATE(5201), 1, + ACTIONS(5584), 1, + anon_sym_DQUOTE, + ACTIONS(5588), 1, + sym_raw_string_begin, + ACTIONS(8560), 1, + sym_identifier, + ACTIONS(8562), 1, + anon_sym_GT, + STATE(5294), 1, sym_comment, - ACTIONS(1588), 2, - sym__newline, - anon_sym_LBRACE, - ACTIONS(8328), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3421), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [198294] = 10, - ACTIONS(247), 1, + STATE(5302), 1, + aux_sym_collection_type_repeat1, + STATE(5589), 1, + sym_val_string, + ACTIONS(5586), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5598), 2, + sym__raw_str, + sym__str_double_quotes, + [197411] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6072), 1, - anon_sym_LPAREN2, - ACTIONS(6082), 1, - anon_sym_DOLLAR, - ACTIONS(8113), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8115), 1, - aux_sym__immediate_decimal_token5, - STATE(3426), 1, - sym__immediate_decimal, - STATE(5202), 1, + ACTIONS(8564), 1, + anon_sym_DOT, + ACTIONS(8566), 1, + aux_sym__immediate_decimal_token2, + STATE(5295), 1, sym_comment, - ACTIONS(1584), 2, + ACTIONS(1536), 3, sym__newline, - anon_sym_LBRACE, - ACTIONS(8328), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3425), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [198328] = 5, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1538), 5, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [197436] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7973), 1, + ACTIONS(8568), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8570), 1, aux_sym__immediate_decimal_token2, - STATE(5203), 1, + STATE(5296), 1, sym_comment, - ACTIONS(1518), 4, + ACTIONS(1703), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym__unquoted_in_list_token2, - ACTIONS(1520), 6, + ACTIONS(1705), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, sym__entry_separator, - [198352] = 5, + [197461] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8330), 1, - aux_sym__immediate_decimal_token2, - STATE(5204), 1, + STATE(5297), 1, sym_comment, - ACTIONS(1554), 4, + ACTIONS(1596), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym__unquoted_in_list_token2, - ACTIONS(1556), 6, + ACTIONS(1598), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [198376] = 8, - ACTIONS(247), 1, + [197482] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8572), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8574), 1, + aux_sym__immediate_decimal_token2, + STATE(5298), 1, + sym_comment, + ACTIONS(1528), 3, + sym__newline, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1530), 5, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [197507] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1005), 1, + ACTIONS(4614), 1, anon_sym_DOT_DOT2, - ACTIONS(6092), 1, + ACTIONS(8576), 1, + sym_filesize_unit, + ACTIONS(8578), 1, + sym_duration_unit, + ACTIONS(8580), 1, + aux_sym_unquoted_token2, + STATE(5299), 1, + sym_comment, + ACTIONS(1628), 2, + sym_identifier, + anon_sym_DASH, + ACTIONS(1640), 2, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + ACTIONS(4616), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [197538] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1031), 1, + anon_sym_DASH, + ACTIONS(8582), 1, anon_sym_DOT, - STATE(3132), 1, - aux_sym_cell_path_repeat1, - STATE(3242), 1, + STATE(5519), 1, sym_path, - STATE(4199), 1, - sym_cell_path, - STATE(5205), 1, + STATE(5300), 2, sym_comment, - ACTIONS(1007), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, + aux_sym_cell_path_repeat1, + ACTIONS(1033), 6, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_COLON, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [197563] = 10, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5584), 1, + anon_sym_DQUOTE, + ACTIONS(5588), 1, + sym_raw_string_begin, + ACTIONS(8560), 1, + sym_identifier, + ACTIONS(8585), 1, + anon_sym_GT, + STATE(5301), 1, + sym_comment, + STATE(5306), 1, + aux_sym_collection_type_repeat1, + STATE(5589), 1, + sym_val_string, + ACTIONS(5586), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5598), 2, + sym__raw_str, + sym__str_double_quotes, + [197596] = 10, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5584), 1, + anon_sym_DQUOTE, + ACTIONS(5588), 1, + sym_raw_string_begin, + ACTIONS(8560), 1, + sym_identifier, + ACTIONS(8587), 1, + anon_sym_GT, + STATE(5281), 1, + aux_sym_collection_type_repeat1, + STATE(5302), 1, + sym_comment, + STATE(5589), 1, + sym_val_string, + ACTIONS(5586), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5598), 2, + sym__raw_str, + sym__str_double_quotes, + [197629] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5303), 1, + sym_comment, + ACTIONS(1711), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1713), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [198405] = 11, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [197650] = 9, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(8506), 1, + anon_sym_DASH_DASH, + ACTIONS(8508), 1, + anon_sym_DASH, + ACTIONS(8589), 1, + anon_sym_as, + STATE(5278), 1, + aux_sym_ctrl_do_repeat1, + STATE(5304), 1, + sym_comment, + STATE(5795), 1, + sym__flag, + STATE(5923), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8482), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [197681] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4742), 1, - aux_sym_unquoted_token3, - ACTIONS(6072), 1, + ACTIONS(5486), 1, anon_sym_LPAREN2, - ACTIONS(7839), 1, + ACTIONS(5490), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5492), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8332), 1, + ACTIONS(5805), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8160), 1, anon_sym_DOLLAR, - ACTIONS(8334), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8336), 1, + ACTIONS(8164), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8338), 1, + ACTIONS(8166), 1, aux_sym__immediate_decimal_token5, - STATE(5206), 1, - sym_comment, - STATE(6444), 1, + STATE(2819), 1, sym__immediate_decimal, - STATE(3398), 2, + STATE(5305), 1, + sym_comment, + STATE(2878), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [198440] = 9, - ACTIONS(247), 1, + [197716] = 10, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8340), 1, + ACTIONS(5584), 1, + anon_sym_DQUOTE, + ACTIONS(5588), 1, + sym_raw_string_begin, + ACTIONS(8560), 1, + sym_identifier, + ACTIONS(8591), 1, + anon_sym_GT, + STATE(5281), 1, + aux_sym_collection_type_repeat1, + STATE(5306), 1, + sym_comment, + STATE(5589), 1, + sym_val_string, + ACTIONS(5586), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5598), 2, + sym__raw_str, + sym__str_double_quotes, + [197749] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1664), 1, + anon_sym_DOT_DOT2, + ACTIONS(6216), 1, + anon_sym_DOT, + STATE(1681), 1, + sym_cell_path, + STATE(3165), 1, + aux_sym_cell_path_repeat1, + STATE(3337), 1, + sym_path, + STATE(5307), 1, + sym_comment, + ACTIONS(1668), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [197778] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1670), 1, + anon_sym_DOT_DOT2, + ACTIONS(6216), 1, + anon_sym_DOT, + STATE(1635), 1, + sym_cell_path, + STATE(3165), 1, + aux_sym_cell_path_repeat1, + STATE(3337), 1, + sym_path, + STATE(5308), 1, + sym_comment, + ACTIONS(1672), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [197807] = 11, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6456), 1, + anon_sym_DOLLAR, + ACTIONS(8376), 1, anon_sym_DASH_DASH, - ACTIONS(8342), 1, + ACTIONS(8378), 1, anon_sym_DASH, - ACTIONS(8344), 1, - anon_sym_as, - STATE(5207), 1, + ACTIONS(8593), 1, + sym_identifier, + STATE(5309), 1, sym_comment, - STATE(5289), 1, + STATE(5508), 1, aux_sym_ctrl_do_repeat1, - STATE(5682), 1, + STATE(6018), 1, sym__flag, - STATE(5696), 2, + STATE(7102), 1, + sym_val_variable, + STATE(7160), 1, + sym__variable_name, + STATE(6083), 2, sym_short_flag, sym_long_flag, - ACTIONS(8257), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [198471] = 11, + [197842] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2170), 1, + ACTIONS(5466), 1, anon_sym_DOLLAR, - ACTIONS(6770), 1, + ACTIONS(5468), 1, anon_sym_LPAREN2, - ACTIONS(6774), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6776), 1, + ACTIONS(5470), 1, aux_sym__immediate_decimal_token3, - ACTIONS(6778), 1, + ACTIONS(5472), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6780), 1, + ACTIONS(5474), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6939), 1, - aux_sym_unquoted_token3, - STATE(4185), 1, + ACTIONS(5528), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8595), 1, + aux_sym__immediate_decimal_token1, + STATE(2883), 1, sym__immediate_decimal, - STATE(5208), 1, + STATE(5310), 1, sym_comment, - STATE(4381), 2, + STATE(2999), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [198506] = 11, + [197877] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4247), 1, - anon_sym_DOLLAR, - ACTIONS(6770), 1, + ACTIONS(6229), 1, anon_sym_LPAREN2, - ACTIONS(6814), 1, + ACTIONS(8054), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6816), 1, + ACTIONS(8580), 1, + aux_sym_unquoted_token3, + ACTIONS(8597), 1, + anon_sym_DOLLAR, + ACTIONS(8599), 1, aux_sym__immediate_decimal_token3, - ACTIONS(6818), 1, + ACTIONS(8601), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6820), 1, + ACTIONS(8603), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6939), 1, - aux_sym_unquoted_token3, - STATE(4537), 1, - sym__immediate_decimal, - STATE(5209), 1, + STATE(5311), 1, sym_comment, - STATE(4883), 2, + STATE(5826), 1, + sym__immediate_decimal, + STATE(5973), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [198541] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5210), 1, - sym_comment, - ACTIONS(7907), 10, - anon_sym_EQ, - sym_identifier, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_AT, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [198560] = 3, - ACTIONS(247), 1, + [197912] = 11, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5211), 1, + ACTIONS(6229), 1, + anon_sym_LPAREN2, + ACTIONS(8144), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8512), 1, + anon_sym_DOLLAR, + ACTIONS(8580), 1, + aux_sym_unquoted_token3, + ACTIONS(8605), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8607), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8609), 1, + aux_sym__immediate_decimal_token5, + STATE(5312), 1, sym_comment, - ACTIONS(7673), 10, - anon_sym_EQ, - sym_identifier, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_AT, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [198579] = 9, - ACTIONS(247), 1, + STATE(6947), 1, + sym__immediate_decimal, + STATE(3439), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [197947] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4512), 1, - anon_sym_DOT_DOT2, - ACTIONS(8346), 1, - sym_filesize_unit, - ACTIONS(8348), 1, - sym_duration_unit, - ACTIONS(8350), 1, - aux_sym_unquoted_token2, - STATE(5212), 1, + ACTIONS(8611), 1, + anon_sym_DOT, + ACTIONS(8613), 1, + aux_sym__immediate_decimal_token2, + STATE(5313), 1, sym_comment, - ACTIONS(1560), 2, - sym_identifier, - anon_sym_DASH, - ACTIONS(1572), 2, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - ACTIONS(4514), 2, + ACTIONS(1715), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1717), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [198610] = 11, + sym__entry_separator, + [197972] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1528), 1, + ACTIONS(1947), 1, + anon_sym_DOLLAR, + ACTIONS(6893), 1, anon_sym_LPAREN2, - ACTIONS(1532), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(1534), 1, + ACTIONS(6897), 1, aux_sym__immediate_decimal_token1, - ACTIONS(1687), 1, - aux_sym__unquoted_in_record_token3, - ACTIONS(3597), 1, - anon_sym_DOLLAR, - ACTIONS(8352), 1, + ACTIONS(6899), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(6901), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8354), 1, + ACTIONS(6903), 1, aux_sym__immediate_decimal_token5, - STATE(370), 1, + ACTIONS(7021), 1, + aux_sym_unquoted_token3, + STATE(4131), 1, sym__immediate_decimal, - STATE(5213), 1, + STATE(5314), 1, sym_comment, - STATE(486), 2, + STATE(4286), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [198645] = 11, + [198007] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1592), 1, + ACTIONS(4273), 1, + anon_sym_DOLLAR, + ACTIONS(6893), 1, anon_sym_LPAREN2, - ACTIONS(1594), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(1596), 1, + ACTIONS(6909), 1, aux_sym__immediate_decimal_token1, - ACTIONS(1687), 1, - aux_sym__unquoted_in_record_token3, - ACTIONS(8356), 1, - anon_sym_DOLLAR, - ACTIONS(8358), 1, + ACTIONS(6911), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(6913), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8360), 1, + ACTIONS(6915), 1, aux_sym__immediate_decimal_token5, - STATE(536), 1, + ACTIONS(7021), 1, + aux_sym_unquoted_token3, + STATE(4454), 1, sym__immediate_decimal, - STATE(5214), 1, + STATE(5315), 1, sym_comment, - STATE(630), 2, + STATE(4708), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [198680] = 6, - ACTIONS(247), 1, + [198042] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8362), 1, + STATE(5316), 1, + sym_comment, + ACTIONS(1538), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1536), 6, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [198063] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(8615), 1, anon_sym_DOT, - ACTIONS(8364), 1, + ACTIONS(8617), 1, aux_sym__immediate_decimal_token2, - STATE(5215), 1, + STATE(5317), 1, sym_comment, - ACTIONS(1520), 3, + ACTIONS(1538), 3, anon_sym_DOLLAR, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1518), 5, + ACTIONS(1536), 5, sym_identifier, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token2, - [198705] = 11, + [198088] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2834), 1, + ACTIONS(1512), 1, anon_sym_DOLLAR, - ACTIONS(3893), 1, + ACTIONS(1514), 1, anon_sym_LPAREN2, - ACTIONS(3897), 1, + ACTIONS(1518), 1, aux_sym__immediate_decimal_token3, - ACTIONS(3899), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4169), 1, - aux_sym_unquoted_token3, - ACTIONS(8366), 1, + ACTIONS(1520), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8368), 1, + ACTIONS(1522), 1, aux_sym__immediate_decimal_token5, - STATE(1333), 1, + ACTIONS(1642), 1, + aux_sym__unquoted_in_record_token3, + ACTIONS(8619), 1, + aux_sym__immediate_decimal_token1, + STATE(300), 1, sym__immediate_decimal, - STATE(5216), 1, + STATE(5318), 1, sym_comment, - STATE(1430), 2, + STATE(446), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [198740] = 11, + [198123] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3923), 1, + ACTIONS(1546), 1, anon_sym_DOLLAR, - ACTIONS(3925), 1, + ACTIONS(1548), 1, anon_sym_LPAREN2, - ACTIONS(3927), 1, + ACTIONS(1550), 1, aux_sym__immediate_decimal_token3, - ACTIONS(3929), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4169), 1, - aux_sym_unquoted_token3, - ACTIONS(8370), 1, + ACTIONS(1552), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8372), 1, + ACTIONS(1554), 1, aux_sym__immediate_decimal_token5, - STATE(1529), 1, + ACTIONS(1642), 1, + aux_sym__unquoted_in_record_token3, + ACTIONS(8621), 1, + aux_sym__immediate_decimal_token1, + STATE(497), 1, sym__immediate_decimal, - STATE(5217), 1, + STATE(5319), 1, sym_comment, - STATE(1901), 2, + STATE(620), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [198775] = 6, - ACTIONS(247), 1, + [198158] = 10, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8374), 1, + ACTIONS(5584), 1, + anon_sym_DQUOTE, + ACTIONS(5588), 1, + sym_raw_string_begin, + ACTIONS(8560), 1, + sym_identifier, + ACTIONS(8623), 1, + anon_sym_GT, + STATE(5320), 1, + sym_comment, + STATE(5324), 1, + aux_sym_collection_type_repeat1, + STATE(5589), 1, + sym_val_string, + ACTIONS(5586), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5598), 2, + sym__raw_str, + sym__str_double_quotes, + [198191] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(8625), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8376), 1, + ACTIONS(8627), 1, aux_sym__immediate_decimal_token2, - STATE(5218), 1, + STATE(5321), 1, sym_comment, - ACTIONS(1542), 3, + ACTIONS(1530), 3, anon_sym_DOLLAR, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1540), 5, + ACTIONS(1528), 5, sym_identifier, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token2, - [198800] = 6, - ACTIONS(247), 1, + [198216] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1015), 1, + ACTIONS(8286), 1, anon_sym_DASH, - ACTIONS(8378), 1, - anon_sym_DOT, - STATE(5513), 1, - sym_path, - STATE(5219), 2, + STATE(5322), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1017), 6, - anon_sym_EQ, + ACTIONS(5748), 9, sym_identifier, sym__newline, - anon_sym_COLON, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [198825] = 4, + [198237] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(5220), 1, + ACTIONS(8536), 1, + anon_sym_DOT, + STATE(5323), 1, sym_comment, - ACTIONS(1540), 4, + STATE(5452), 1, + aux_sym_cell_path_repeat1, + STATE(5746), 1, + sym_path, + STATE(5794), 1, + sym_cell_path, + ACTIONS(1664), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1542), 6, - anon_sym_LPAREN2, + ACTIONS(1668), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, sym__entry_separator, - [198846] = 11, - ACTIONS(247), 1, + [198266] = 10, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6301), 1, - anon_sym_DOLLAR, - ACTIONS(8233), 1, - anon_sym_DASH_DASH, - ACTIONS(8235), 1, - anon_sym_DASH, - ACTIONS(8381), 1, + ACTIONS(5584), 1, + anon_sym_DQUOTE, + ACTIONS(5588), 1, + sym_raw_string_begin, + ACTIONS(8560), 1, sym_identifier, - STATE(5221), 1, - sym_comment, - STATE(5243), 1, - aux_sym_ctrl_do_repeat1, - STATE(5902), 1, - sym__flag, - STATE(6645), 1, - sym__variable_name, - STATE(6900), 1, - sym_val_variable, - STATE(6046), 2, - sym_short_flag, - sym_long_flag, - [198881] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8285), 1, - aux_sym__immediate_decimal_token2, - STATE(5222), 1, + ACTIONS(8629), 1, + anon_sym_GT, + STATE(5281), 1, + aux_sym_collection_type_repeat1, + STATE(5324), 1, sym_comment, - ACTIONS(1520), 3, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1518), 6, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [198904] = 10, - ACTIONS(247), 1, + STATE(5589), 1, + sym_val_string, + ACTIONS(5586), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5598), 2, + sym__raw_str, + sym__str_double_quotes, + [198299] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1506), 1, - anon_sym_LBRACE, - ACTIONS(6072), 1, + ACTIONS(3834), 1, + anon_sym_DOLLAR, + ACTIONS(6229), 1, anon_sym_LPAREN2, - ACTIONS(8113), 1, + ACTIONS(8316), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8580), 1, + aux_sym_unquoted_token3, + ACTIONS(8631), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8633), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8115), 1, + ACTIONS(8635), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8207), 1, - anon_sym_DOLLAR, - STATE(3427), 1, - sym__immediate_decimal, - STATE(5223), 1, + STATE(5325), 1, sym_comment, - ACTIONS(8328), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3402), 2, + STATE(6178), 1, + sym__immediate_decimal, + STATE(6111), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [198937] = 4, + [198334] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(5224), 1, - sym_comment, - ACTIONS(1653), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1655), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [198958] = 10, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1604), 1, - anon_sym_LBRACE, - ACTIONS(6072), 1, + ACTIONS(4020), 1, + anon_sym_DOLLAR, + ACTIONS(6229), 1, anon_sym_LPAREN2, - ACTIONS(8113), 1, + ACTIONS(8442), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8580), 1, + aux_sym_unquoted_token3, + ACTIONS(8637), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8639), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8115), 1, + ACTIONS(8641), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8207), 1, - anon_sym_DOLLAR, - STATE(3419), 1, - sym__immediate_decimal, - STATE(5225), 1, + STATE(5326), 1, sym_comment, - ACTIONS(8328), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3381), 2, + STATE(7581), 1, + sym__immediate_decimal, + STATE(3439), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [198991] = 10, - ACTIONS(247), 1, + [198369] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1588), 1, - anon_sym_LBRACE, - ACTIONS(6072), 1, + ACTIONS(3044), 1, + anon_sym_DOLLAR, + ACTIONS(7974), 1, anon_sym_LPAREN2, - ACTIONS(8113), 1, + ACTIONS(7978), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7980), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7982), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8115), 1, + ACTIONS(7984), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8207), 1, - anon_sym_DOLLAR, - STATE(3423), 1, - sym__immediate_decimal, - STATE(5226), 1, + ACTIONS(8643), 1, + aux_sym__unquoted_in_list_token3, + STATE(5327), 1, sym_comment, - ACTIONS(8328), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3421), 2, + STATE(5681), 1, + sym__immediate_decimal, + STATE(5813), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [199024] = 10, - ACTIONS(247), 1, + [198404] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1584), 1, - anon_sym_LBRACE, - ACTIONS(6072), 1, + ACTIONS(7974), 1, anon_sym_LPAREN2, - ACTIONS(8113), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8115), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8207), 1, + ACTIONS(8174), 1, anon_sym_DOLLAR, - STATE(3426), 1, - sym__immediate_decimal, - STATE(5227), 1, - sym_comment, - ACTIONS(8328), 2, + ACTIONS(8176), 1, aux_sym__immediate_decimal_token1, + ACTIONS(8178), 1, aux_sym__immediate_decimal_token3, - STATE(3425), 2, + ACTIONS(8180), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8182), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8643), 1, + aux_sym__unquoted_in_list_token3, + STATE(5328), 1, + sym_comment, + STATE(6342), 1, + sym__immediate_decimal, + STATE(6969), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [199057] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5228), 1, - sym_comment, - ACTIONS(1518), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1520), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [199078] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1641), 1, - anon_sym_DOT_DOT2, - ACTIONS(6092), 1, - anon_sym_DOT, - STATE(1548), 1, - sym_cell_path, - STATE(3132), 1, - aux_sym_cell_path_repeat1, - STATE(3242), 1, - sym_path, - STATE(5229), 1, - sym_comment, - ACTIONS(1645), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [199107] = 8, - ACTIONS(247), 1, + [198439] = 11, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1675), 1, - anon_sym_DOT_DOT2, - ACTIONS(6092), 1, - anon_sym_DOT, - STATE(1558), 1, - sym_cell_path, - STATE(3132), 1, - aux_sym_cell_path_repeat1, - STATE(3242), 1, - sym_path, - STATE(5230), 1, + ACTIONS(3296), 1, + aux_sym_record_entry_token1, + ACTIONS(6251), 1, + anon_sym_DOLLAR, + ACTIONS(8374), 1, + sym_identifier, + ACTIONS(8645), 1, + anon_sym_DASH_DASH, + ACTIONS(8647), 1, + anon_sym_DASH, + STATE(5329), 1, sym_comment, - ACTIONS(1677), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [199136] = 11, + STATE(5416), 1, + sym_val_variable, + STATE(5964), 1, + sym__variable_name, + STATE(6750), 1, + sym__flag, + STATE(6083), 2, + sym_short_flag, + sym_long_flag, + [198474] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1574), 1, - aux_sym__unquoted_in_record_token3, - ACTIONS(2997), 1, + ACTIONS(2649), 1, anon_sym_DOLLAR, - ACTIONS(7823), 1, + ACTIONS(3948), 1, anon_sym_LPAREN2, - ACTIONS(7953), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7955), 1, + ACTIONS(3952), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7957), 1, + ACTIONS(3954), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4443), 1, + aux_sym_unquoted_token3, + ACTIONS(8649), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7959), 1, + ACTIONS(8651), 1, aux_sym__immediate_decimal_token5, - STATE(5231), 1, - sym_comment, - STATE(5533), 1, + STATE(1271), 1, sym__immediate_decimal, - STATE(5687), 2, + STATE(5330), 1, + sym_comment, + STATE(1336), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [199171] = 11, + [198509] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1574), 1, - aux_sym__unquoted_in_record_token3, - ACTIONS(7823), 1, - anon_sym_LPAREN2, - ACTIONS(8049), 1, + ACTIONS(3970), 1, anon_sym_DOLLAR, - ACTIONS(8059), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8061), 1, + ACTIONS(3972), 1, + anon_sym_LPAREN2, + ACTIONS(3974), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8063), 1, + ACTIONS(3976), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4443), 1, + aux_sym_unquoted_token3, + ACTIONS(8653), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8065), 1, + ACTIONS(8655), 1, aux_sym__immediate_decimal_token5, - STATE(5232), 1, - sym_comment, - STATE(6109), 1, + STATE(1457), 1, sym__immediate_decimal, - STATE(2922), 2, + STATE(5331), 1, + sym_comment, + STATE(1669), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [199206] = 5, - ACTIONS(247), 1, + [198544] = 10, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8383), 1, - aux_sym__immediate_decimal_token2, - STATE(5233), 1, + ACTIONS(5584), 1, + anon_sym_DQUOTE, + ACTIONS(5588), 1, + sym_raw_string_begin, + ACTIONS(8560), 1, + sym_identifier, + ACTIONS(8657), 1, + anon_sym_GT, + STATE(5332), 1, sym_comment, - ACTIONS(1556), 3, + STATE(5334), 1, + aux_sym_collection_type_repeat1, + STATE(5589), 1, + sym_val_string, + ACTIONS(5586), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5598), 2, + sym__raw_str, + sym__str_double_quotes, + [198577] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(5333), 1, + sym_comment, + ACTIONS(1530), 4, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1554), 6, + ACTIONS(1528), 6, sym_identifier, anon_sym_DASH, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token2, - [199229] = 11, + [198598] = 10, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5584), 1, + anon_sym_DQUOTE, + ACTIONS(5588), 1, + sym_raw_string_begin, + ACTIONS(8560), 1, + sym_identifier, + ACTIONS(8659), 1, + anon_sym_GT, + STATE(5281), 1, + aux_sym_collection_type_repeat1, + STATE(5334), 1, + sym_comment, + STATE(5589), 1, + sym_val_string, + ACTIONS(5586), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5598), 2, + sym__raw_str, + sym__str_double_quotes, + [198631] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5393), 1, + ACTIONS(3516), 1, anon_sym_DOLLAR, - ACTIONS(5395), 1, + ACTIONS(6446), 1, anon_sym_LPAREN2, - ACTIONS(5397), 1, + ACTIONS(6875), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6985), 1, + aux_sym_unquoted_token3, + ACTIONS(8661), 1, aux_sym__immediate_decimal_token3, - ACTIONS(5399), 1, + ACTIONS(8663), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5401), 1, + ACTIONS(8665), 1, aux_sym__immediate_decimal_token5, - ACTIONS(5451), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8385), 1, - aux_sym__immediate_decimal_token1, - STATE(2879), 1, + STATE(4099), 1, sym__immediate_decimal, - STATE(5234), 1, + STATE(5335), 1, sym_comment, - STATE(2922), 2, + STATE(4270), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [199264] = 11, + [198666] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6072), 1, + ACTIONS(4397), 1, + anon_sym_DOLLAR, + ACTIONS(6446), 1, anon_sym_LPAREN2, - ACTIONS(7817), 1, + ACTIONS(6887), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8387), 1, - anon_sym_DOLLAR, - ACTIONS(8389), 1, + ACTIONS(6985), 1, + aux_sym_unquoted_token3, + ACTIONS(8667), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8391), 1, + ACTIONS(8669), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8393), 1, + ACTIONS(8671), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8395), 1, - aux_sym_unquoted_token3, - STATE(5235), 1, - sym_comment, - STATE(5705), 1, + STATE(4376), 1, sym__immediate_decimal, - STATE(5879), 2, + STATE(5336), 1, + sym_comment, + STATE(3740), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [199299] = 11, + [198701] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6072), 1, + ACTIONS(3466), 1, + anon_sym_DOLLAR, + ACTIONS(6229), 1, anon_sym_LPAREN2, - ACTIONS(8003), 1, + ACTIONS(6851), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8332), 1, - anon_sym_DOLLAR, - ACTIONS(8395), 1, + ACTIONS(6929), 1, aux_sym_unquoted_token3, - ACTIONS(8397), 1, + ACTIONS(8673), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8399), 1, + ACTIONS(8675), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8401), 1, + ACTIONS(8677), 1, aux_sym__immediate_decimal_token5, - STATE(5236), 1, - sym_comment, - STATE(6839), 1, + STATE(4015), 1, sym__immediate_decimal, - STATE(3398), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [199334] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1560), 1, - anon_sym_RBRACE, - ACTIONS(1562), 1, - anon_sym_LPAREN2, - ACTIONS(1572), 1, - sym__entry_separator, - ACTIONS(1574), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(8403), 1, - anon_sym_DOT_DOT2, - ACTIONS(8407), 1, - sym_filesize_unit, - ACTIONS(8409), 1, - sym_duration_unit, - STATE(5237), 1, + STATE(5337), 1, sym_comment, - STATE(7334), 1, + STATE(3536), 2, sym__expr_parenthesized_immediate, - ACTIONS(8405), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [199369] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8047), 1, - anon_sym_DASH, - STATE(5238), 1, - sym_comment, - ACTIONS(5622), 9, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [199390] = 11, + sym_val_variable, + [198736] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2051), 1, + ACTIONS(4153), 1, anon_sym_DOLLAR, - ACTIONS(6730), 1, + ACTIONS(6229), 1, anon_sym_LPAREN2, - ACTIONS(6734), 1, + ACTIONS(6865), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6736), 1, + ACTIONS(6929), 1, + aux_sym_unquoted_token3, + ACTIONS(8679), 1, aux_sym__immediate_decimal_token3, - ACTIONS(6738), 1, + ACTIONS(8681), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6740), 1, + ACTIONS(8683), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6872), 1, - aux_sym_unquoted_token3, - STATE(4071), 1, + STATE(4159), 1, sym__immediate_decimal, - STATE(5239), 1, + STATE(5338), 1, sym_comment, - STATE(4224), 2, + STATE(3439), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [199425] = 11, + [198771] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4283), 1, - anon_sym_DOLLAR, - ACTIONS(6730), 1, + ACTIONS(1628), 1, + anon_sym_RBRACK, + ACTIONS(1640), 1, + sym__entry_separator, + ACTIONS(5518), 1, anon_sym_LPAREN2, - ACTIONS(6758), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6760), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(6762), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6764), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6872), 1, - aux_sym_unquoted_token3, - STATE(4445), 1, - sym__immediate_decimal, - STATE(5240), 1, + ACTIONS(8643), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(8685), 1, + anon_sym_DOT_DOT2, + ACTIONS(8689), 1, + sym_filesize_unit, + ACTIONS(8691), 1, + sym_duration_unit, + STATE(5339), 1, sym_comment, - STATE(4728), 2, + STATE(7447), 1, sym__expr_parenthesized_immediate, - sym_val_variable, - [199460] = 4, - ACTIONS(247), 1, + ACTIONS(8687), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [198806] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5241), 1, + STATE(5340), 1, sym_comment, - ACTIONS(1518), 3, + ACTIONS(1536), 3, anon_sym_DASH, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1520), 7, + ACTIONS(1538), 7, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, @@ -386446,60 +394223,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [199481] = 7, - ACTIONS(247), 1, + [198827] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1011), 1, - anon_sym_DASH, - ACTIONS(8411), 1, + ACTIONS(8536), 1, anon_sym_DOT, - STATE(5219), 1, - aux_sym_cell_path_repeat1, - STATE(5242), 1, + STATE(5341), 1, sym_comment, - STATE(5513), 1, + STATE(5452), 1, + aux_sym_cell_path_repeat1, + STATE(5746), 1, sym_path, - ACTIONS(1013), 6, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_COLON, + STATE(5926), 1, + sym_cell_path, + ACTIONS(1670), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + ACTIONS(1672), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [198856] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(5342), 1, + sym_comment, + ACTIONS(1528), 3, + anon_sym_DASH, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1530), 7, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [199508] = 11, - ACTIONS(247), 1, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [198877] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6301), 1, + STATE(5343), 1, + sym_comment, + ACTIONS(1598), 4, anon_sym_DOLLAR, - ACTIONS(8233), 1, anon_sym_DASH_DASH, - ACTIONS(8235), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1596), 6, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [198898] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(5344), 1, + sym_comment, + ACTIONS(1596), 3, anon_sym_DASH, - ACTIONS(8381), 1, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1598), 7, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [198919] = 11, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6418), 1, + anon_sym_DOLLAR, + ACTIONS(8374), 1, sym_identifier, - STATE(5243), 1, + ACTIONS(8376), 1, + anon_sym_DASH_DASH, + ACTIONS(8378), 1, + anon_sym_DASH, + STATE(5345), 1, sym_comment, - STATE(5400), 1, + STATE(5416), 1, + sym_val_variable, + STATE(5508), 1, aux_sym_ctrl_do_repeat1, - STATE(5902), 1, + STATE(6018), 1, sym__flag, - STATE(6819), 1, + STATE(6746), 1, sym__variable_name, - STATE(6900), 1, - sym_val_variable, - STATE(6046), 2, + STATE(6083), 2, sym_short_flag, sym_long_flag, - [199543] = 4, - ACTIONS(247), 1, + [198954] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5244), 1, + STATE(5346), 1, sym_comment, - ACTIONS(1540), 3, + ACTIONS(1711), 3, anon_sym_DASH, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1542), 7, + ACTIONS(1713), 7, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, @@ -386507,2898 +394336,4411 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [199564] = 11, + [198975] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(5347), 1, + sym_comment, + ACTIONS(1713), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1711), 6, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [198996] = 11, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(3294), 1, + aux_sym_record_entry_token1, + ACTIONS(6251), 1, + anon_sym_DOLLAR, + ACTIONS(8374), 1, + sym_identifier, + ACTIONS(8645), 1, + anon_sym_DASH_DASH, + ACTIONS(8647), 1, + anon_sym_DASH, + STATE(5348), 1, + sym_comment, + STATE(5416), 1, + sym_val_variable, + STATE(5964), 1, + sym__variable_name, + STATE(6750), 1, + sym__flag, + STATE(6083), 2, + sym_short_flag, + sym_long_flag, + [199031] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(8372), 1, + aux_sym__immediate_decimal_token2, + STATE(5349), 1, + sym_comment, + ACTIONS(1536), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1538), 7, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [199054] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1349), 1, + anon_sym_DASH, + ACTIONS(8693), 1, + sym__newline, + STATE(5350), 2, + sym_comment, + aux_sym_shebang_repeat1, + ACTIONS(1351), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [199077] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1480), 1, + ACTIONS(3044), 1, anon_sym_DOLLAR, - ACTIONS(1482), 1, + ACTIONS(7974), 1, anon_sym_LPAREN2, - ACTIONS(1486), 1, + ACTIONS(8092), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8094), 1, aux_sym__immediate_decimal_token3, - ACTIONS(1488), 1, + ACTIONS(8096), 1, aux_sym__immediate_decimal_token4, - ACTIONS(1490), 1, + ACTIONS(8098), 1, aux_sym__immediate_decimal_token5, - ACTIONS(1574), 1, + ACTIONS(8696), 1, aux_sym__unquoted_in_record_token3, - ACTIONS(8413), 1, - aux_sym__immediate_decimal_token1, - STATE(293), 1, - sym__immediate_decimal, - STATE(5245), 1, + STATE(5351), 1, sym_comment, - STATE(392), 2, + STATE(5713), 1, + sym__immediate_decimal, + STATE(5813), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [199599] = 11, + [199112] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1508), 1, - anon_sym_DOLLAR, - ACTIONS(1510), 1, + ACTIONS(7974), 1, anon_sym_LPAREN2, - ACTIONS(1512), 1, + ACTIONS(8174), 1, + anon_sym_DOLLAR, + ACTIONS(8210), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8212), 1, aux_sym__immediate_decimal_token3, - ACTIONS(1514), 1, + ACTIONS(8214), 1, aux_sym__immediate_decimal_token4, - ACTIONS(1516), 1, + ACTIONS(8216), 1, aux_sym__immediate_decimal_token5, - ACTIONS(1574), 1, + ACTIONS(8696), 1, aux_sym__unquoted_in_record_token3, - ACTIONS(8415), 1, - aux_sym__immediate_decimal_token1, - STATE(487), 1, - sym__immediate_decimal, - STATE(5246), 1, + STATE(5352), 1, sym_comment, - STATE(595), 2, + STATE(6211), 1, + sym__immediate_decimal, + STATE(6969), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [199634] = 4, - ACTIONS(247), 1, + [199147] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5247), 1, + ACTIONS(8698), 1, + aux_sym__immediate_decimal_token2, + STATE(5353), 1, sym_comment, - ACTIONS(1554), 3, - anon_sym_DASH, + ACTIONS(1596), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1556), 7, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, + ACTIONS(1598), 7, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [199655] = 4, - ACTIONS(247), 1, + [199170] = 9, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5248), 1, - sym_comment, - ACTIONS(1653), 3, + ACTIONS(1628), 1, anon_sym_DASH, + ACTIONS(4614), 1, anon_sym_DOT_DOT2, + ACTIONS(8580), 1, aux_sym_unquoted_token2, - ACTIONS(1655), 7, + ACTIONS(8700), 1, + sym_filesize_unit, + ACTIONS(8702), 1, + sym_duration_unit, + STATE(5354), 1, + sym_comment, + ACTIONS(4616), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1640), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + [199201] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1628), 1, + anon_sym_RBRACE, + ACTIONS(1630), 1, + anon_sym_LPAREN2, + ACTIONS(1640), 1, + sym__entry_separator, + ACTIONS(8696), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(8704), 1, + anon_sym_DOT_DOT2, + ACTIONS(8708), 1, sym_filesize_unit, + ACTIONS(8710), 1, sym_duration_unit, - [199676] = 11, + STATE(5355), 1, + sym_comment, + STATE(7435), 1, + sym__expr_parenthesized_immediate, + ACTIONS(8706), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [199236] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2997), 1, + ACTIONS(2884), 1, anon_sym_DOLLAR, - ACTIONS(5451), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(7823), 1, + ACTIONS(3994), 1, anon_sym_LPAREN2, - ACTIONS(7827), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7829), 1, + ACTIONS(3998), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7831), 1, + ACTIONS(4000), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4485), 1, + aux_sym_unquoted_token3, + ACTIONS(8712), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7833), 1, + ACTIONS(8714), 1, aux_sym__immediate_decimal_token5, - STATE(5249), 1, - sym_comment, - STATE(5612), 1, + STATE(1300), 1, sym__immediate_decimal, - STATE(5687), 2, + STATE(5356), 1, + sym_comment, + STATE(1410), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [199711] = 11, + [199271] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5451), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(7823), 1, - anon_sym_LPAREN2, - ACTIONS(8049), 1, + ACTIONS(4171), 1, anon_sym_DOLLAR, - ACTIONS(8051), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8053), 1, + ACTIONS(4173), 1, + anon_sym_LPAREN2, + ACTIONS(4175), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8055), 1, + ACTIONS(4177), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4485), 1, + aux_sym_unquoted_token3, + ACTIONS(8716), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8057), 1, + ACTIONS(8718), 1, aux_sym__immediate_decimal_token5, - STATE(5250), 1, - sym_comment, - STATE(6471), 1, + STATE(1528), 1, sym__immediate_decimal, - STATE(2922), 2, + STATE(5357), 1, + sym_comment, + STATE(1886), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [199746] = 6, + [199306] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8417), 1, - anon_sym_DOT, - ACTIONS(8419), 1, + ACTIONS(8458), 1, aux_sym__immediate_decimal_token2, - STATE(5251), 1, + STATE(5358), 1, sym_comment, - ACTIONS(1667), 4, - anon_sym_RBRACK, + ACTIONS(1536), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1669), 4, + aux_sym__unquoted_in_record_token2, + ACTIONS(1538), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, sym__entry_separator, - [199771] = 3, - ACTIONS(247), 1, + [199329] = 10, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5252), 1, + ACTIONS(1524), 1, + anon_sym_EQ_GT, + ACTIONS(6229), 1, + anon_sym_LPAREN2, + ACTIONS(6235), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6237), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7992), 1, + anon_sym_DOLLAR, + STATE(3574), 1, + sym__immediate_decimal, + STATE(5359), 1, sym_comment, - ACTIONS(7811), 10, - anon_sym_EQ, + ACTIONS(6253), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3422), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [199362] = 10, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1556), 1, + anon_sym_EQ_GT, + ACTIONS(6229), 1, + anon_sym_LPAREN2, + ACTIONS(6235), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6237), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7992), 1, + anon_sym_DOLLAR, + STATE(3564), 1, + sym__immediate_decimal, + STATE(5360), 1, + sym_comment, + ACTIONS(6253), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3433), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [199395] = 11, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6456), 1, + anon_sym_DOLLAR, + ACTIONS(8376), 1, + anon_sym_DASH_DASH, + ACTIONS(8378), 1, + anon_sym_DASH, + ACTIONS(8593), 1, sym_identifier, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_AT, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [199790] = 5, - ACTIONS(247), 1, + STATE(5309), 1, + aux_sym_ctrl_do_repeat1, + STATE(5361), 1, + sym_comment, + STATE(6018), 1, + sym__flag, + STATE(7102), 1, + sym_val_variable, + STATE(7402), 1, + sym__variable_name, + STATE(6083), 2, + sym_short_flag, + sym_long_flag, + [199430] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8275), 1, + ACTIONS(8720), 1, aux_sym__immediate_decimal_token2, - STATE(5253), 1, + STATE(5362), 1, sym_comment, - ACTIONS(1518), 2, + ACTIONS(1596), 3, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1520), 7, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, + aux_sym__unquoted_in_record_token2, + ACTIONS(1598), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [199813] = 5, - ACTIONS(247), 1, + sym__entry_separator, + [199453] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8421), 1, - aux_sym__immediate_decimal_token2, - STATE(5254), 1, + ACTIONS(4842), 1, + aux_sym_unquoted_token3, + ACTIONS(6229), 1, + anon_sym_LPAREN2, + ACTIONS(7801), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8597), 1, + anon_sym_DOLLAR, + ACTIONS(8722), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8724), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8726), 1, + aux_sym__immediate_decimal_token5, + STATE(5363), 1, sym_comment, - ACTIONS(1554), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1556), 7, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [199836] = 5, - ACTIONS(247), 1, + STATE(5749), 1, + sym__immediate_decimal, + STATE(5973), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [199488] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1313), 1, - anon_sym_DASH, - ACTIONS(8423), 1, - sym__newline, - STATE(5255), 2, + ACTIONS(6229), 1, + anon_sym_LPAREN2, + ACTIONS(6418), 1, + anon_sym_DOLLAR, + ACTIONS(8318), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8320), 1, + aux_sym__immediate_decimal_token5, + STATE(3453), 1, + sym__immediate_decimal, + STATE(5364), 1, sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1315), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, + ACTIONS(8368), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3441), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [199518] = 9, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6446), 1, + anon_sym_LPAREN2, + ACTIONS(6452), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6454), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6456), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [199859] = 11, - ACTIONS(3), 1, + STATE(3886), 1, + sym__immediate_decimal, + STATE(5365), 1, + sym_comment, + ACTIONS(6498), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3740), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [199548] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5339), 1, + ACTIONS(4173), 1, anon_sym_LPAREN2, - ACTIONS(5343), 1, + ACTIONS(4503), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(4505), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8218), 1, + anon_sym_DOLLAR, + STATE(1809), 1, + sym__immediate_decimal, + STATE(5366), 1, + sym_comment, + ACTIONS(4501), 2, + aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - ACTIONS(5345), 1, + STATE(1806), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [199578] = 9, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6229), 1, + anon_sym_LPAREN2, + ACTIONS(6235), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6237), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6251), 1, + anon_sym_DOLLAR, + STATE(3569), 1, + sym__immediate_decimal, + STATE(5367), 1, + sym_comment, + ACTIONS(6253), 2, aux_sym__immediate_decimal_token1, - ACTIONS(5588), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8073), 1, + aux_sym__immediate_decimal_token3, + STATE(3439), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [199608] = 9, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(7974), 1, + anon_sym_LPAREN2, + ACTIONS(8728), 1, anon_sym_DOLLAR, - ACTIONS(8077), 1, + ACTIONS(8730), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8079), 1, + ACTIONS(8732), 1, aux_sym__immediate_decimal_token5, - STATE(2819), 1, + STATE(5368), 1, + sym_comment, + STATE(6107), 1, sym__immediate_decimal, - STATE(5256), 1, + ACTIONS(7978), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(5813), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [199638] = 9, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(7974), 1, + anon_sym_LPAREN2, + ACTIONS(8730), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8732), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8734), 1, + anon_sym_DOLLAR, + STATE(5369), 1, sym_comment, - STATE(2875), 2, + STATE(7531), 1, + sym__immediate_decimal, + ACTIONS(8234), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(6969), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [199894] = 5, + [199668] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8289), 1, + ACTIONS(8736), 1, + anon_sym_DOT, + ACTIONS(8738), 1, aux_sym__immediate_decimal_token2, - STATE(5257), 1, + STATE(5370), 1, sym_comment, - ACTIONS(1518), 3, + ACTIONS(1715), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym__unquoted_in_record_token2, - ACTIONS(1520), 6, + ACTIONS(1717), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, sym__entry_separator, - [199917] = 9, - ACTIONS(247), 1, + [199692] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8340), 1, - anon_sym_DASH_DASH, - ACTIONS(8342), 1, - anon_sym_DASH, - ACTIONS(8426), 1, - anon_sym_as, - STATE(5258), 1, + ACTIONS(8742), 1, + anon_sym_COMMA, + ACTIONS(8744), 1, + anon_sym_AT, + STATE(5371), 1, sym_comment, - STATE(5289), 1, - aux_sym_ctrl_do_repeat1, - STATE(5682), 1, - sym__flag, - STATE(5696), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8267), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [199948] = 9, - ACTIONS(247), 1, + STATE(5722), 1, + sym_param_cmd, + ACTIONS(8740), 6, + sym_raw_string_begin, + sym_identifier, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [199716] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8340), 1, - anon_sym_DASH_DASH, - ACTIONS(8342), 1, - anon_sym_DASH, - ACTIONS(8428), 1, - anon_sym_as, - STATE(5207), 1, - aux_sym_ctrl_do_repeat1, - STATE(5259), 1, + ACTIONS(6893), 1, + anon_sym_LPAREN2, + ACTIONS(8746), 1, + anon_sym_DOLLAR, + ACTIONS(8748), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8750), 1, + aux_sym__immediate_decimal_token5, + STATE(4527), 1, + sym__immediate_decimal, + STATE(5372), 1, sym_comment, - STATE(5682), 1, - sym__flag, - STATE(5696), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8215), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [199979] = 9, - ACTIONS(247), 1, + ACTIONS(6909), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(4803), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [199746] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8340), 1, - anon_sym_DASH_DASH, - ACTIONS(8342), 1, - anon_sym_DASH, - ACTIONS(8430), 1, - anon_sym_as, - STATE(5258), 1, - aux_sym_ctrl_do_repeat1, - STATE(5260), 1, + ACTIONS(6229), 1, + anon_sym_LPAREN2, + ACTIONS(7992), 1, + anon_sym_DOLLAR, + ACTIONS(8146), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8148), 1, + aux_sym__immediate_decimal_token5, + STATE(5373), 1, sym_comment, - STATE(5682), 1, - sym__flag, - STATE(5696), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8223), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [200010] = 5, + STATE(7171), 1, + sym__immediate_decimal, + ACTIONS(8144), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3465), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [199776] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(8744), 1, + anon_sym_AT, + ACTIONS(8754), 1, + anon_sym_COMMA, + STATE(5374), 1, + sym_comment, + STATE(5723), 1, + sym_param_cmd, + ACTIONS(8752), 6, + sym_raw_string_begin, + sym_identifier, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [199800] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8432), 1, + ACTIONS(8566), 1, aux_sym__immediate_decimal_token2, - STATE(5261), 1, + STATE(5375), 1, sym_comment, - ACTIONS(1554), 3, - anon_sym_RBRACE, + ACTIONS(1536), 3, + sym__newline, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1556), 6, - anon_sym_LPAREN2, + aux_sym_unquoted_token2, + ACTIONS(1538), 5, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - sym__entry_separator, - [200033] = 11, - ACTIONS(3), 1, + [199822] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2607), 1, - anon_sym_DOLLAR, - ACTIONS(3834), 1, - anon_sym_LPAREN2, - ACTIONS(3838), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(3840), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(3988), 1, - aux_sym_unquoted_token3, - ACTIONS(8434), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8436), 1, - aux_sym__immediate_decimal_token5, - STATE(1264), 1, - sym__immediate_decimal, - STATE(5262), 1, + ACTIONS(8756), 1, + anon_sym_DOT, + ACTIONS(8758), 1, + aux_sym__immediate_decimal_token2, + STATE(5376), 1, sym_comment, - STATE(1364), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [200068] = 11, - ACTIONS(3), 1, + ACTIONS(1536), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1538), 5, + anon_sym_in, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [199846] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3881), 1, - anon_sym_DOLLAR, - ACTIONS(3883), 1, + ACTIONS(6931), 1, anon_sym_LPAREN2, - ACTIONS(3885), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(3887), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(3988), 1, - aux_sym_unquoted_token3, - ACTIONS(8438), 1, + ACTIONS(8760), 1, + anon_sym_DOLLAR, + ACTIONS(8762), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8440), 1, + ACTIONS(8764), 1, aux_sym__immediate_decimal_token5, - STATE(1463), 1, + STATE(4989), 1, sym__immediate_decimal, - STATE(5263), 1, + STATE(5377), 1, sym_comment, - STATE(1741), 2, + ACTIONS(6999), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(4988), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [200103] = 11, - ACTIONS(3), 1, + [199876] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1560), 1, - anon_sym_RBRACK, - ACTIONS(1572), 1, - sym__entry_separator, - ACTIONS(5441), 1, - anon_sym_LPAREN2, - ACTIONS(5451), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(8442), 1, + ACTIONS(1640), 1, + anon_sym_DASH_DASH, + ACTIONS(4614), 1, anon_sym_DOT_DOT2, - ACTIONS(8446), 1, + ACTIONS(8580), 1, + aux_sym_unquoted_token2, + ACTIONS(8766), 1, sym_filesize_unit, - ACTIONS(8448), 1, + ACTIONS(8768), 1, sym_duration_unit, - STATE(5264), 1, + STATE(5378), 1, sym_comment, - STATE(7216), 1, - sym__expr_parenthesized_immediate, - ACTIONS(8444), 2, + ACTIONS(1628), 2, + sym_identifier, + anon_sym_DASH, + ACTIONS(4616), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [200138] = 6, - ACTIONS(3), 1, + [199906] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8450), 1, - anon_sym_DOT, - ACTIONS(8452), 1, - aux_sym__immediate_decimal_token2, - STATE(5265), 1, + ACTIONS(8770), 1, + sym_long_flag_identifier, + ACTIONS(8772), 1, + anon_sym_EQ2, + STATE(5379), 1, sym_comment, - ACTIONS(1518), 3, + ACTIONS(4937), 2, + anon_sym_DASH, + anon_sym_as, + ACTIONS(4939), 5, sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1520), 5, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [200163] = 11, - ACTIONS(247), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + [199930] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6082), 1, + ACTIONS(7974), 1, + anon_sym_LPAREN2, + ACTIONS(8734), 1, anon_sym_DOLLAR, - ACTIONS(8231), 1, - sym_identifier, - ACTIONS(8233), 1, - anon_sym_DASH_DASH, - ACTIONS(8235), 1, - anon_sym_DASH, - STATE(5266), 1, + ACTIONS(8774), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8776), 1, + aux_sym__immediate_decimal_token5, + STATE(5380), 1, sym_comment, - STATE(5366), 1, + STATE(6238), 1, + sym__immediate_decimal, + ACTIONS(8210), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(6958), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - STATE(5400), 1, - aux_sym_ctrl_do_repeat1, - STATE(5902), 1, - sym__flag, - STATE(6494), 1, - sym__variable_name, - STATE(6046), 2, - sym_short_flag, - sym_long_flag, - [200198] = 11, - ACTIONS(3), 1, + [199960] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3449), 1, - anon_sym_DOLLAR, - ACTIONS(6291), 1, + ACTIONS(6893), 1, anon_sym_LPAREN2, - ACTIONS(6716), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6834), 1, - aux_sym_unquoted_token3, - ACTIONS(8454), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8456), 1, + ACTIONS(8746), 1, + anon_sym_DOLLAR, + ACTIONS(8778), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8458), 1, + ACTIONS(8780), 1, aux_sym__immediate_decimal_token5, - STATE(4013), 1, + STATE(4802), 1, sym__immediate_decimal, - STATE(5267), 1, + STATE(5381), 1, sym_comment, - STATE(4177), 2, + ACTIONS(6951), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(4800), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [200233] = 11, - ACTIONS(3), 1, + [199990] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4409), 1, - anon_sym_DOLLAR, - ACTIONS(6291), 1, + ACTIONS(6229), 1, anon_sym_LPAREN2, - ACTIONS(6724), 1, + ACTIONS(8312), 1, + anon_sym_DOLLAR, + ACTIONS(8318), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8320), 1, + aux_sym__immediate_decimal_token5, + STATE(5382), 1, + sym_comment, + STATE(6162), 1, + sym__immediate_decimal, + ACTIONS(8316), 2, aux_sym__immediate_decimal_token1, - ACTIONS(6834), 1, - aux_sym_unquoted_token3, - ACTIONS(8460), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8462), 1, + STATE(6111), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [200020] = 9, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6229), 1, + anon_sym_LPAREN2, + ACTIONS(6418), 1, + anon_sym_DOLLAR, + ACTIONS(8318), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8464), 1, + ACTIONS(8320), 1, aux_sym__immediate_decimal_token5, - STATE(4240), 1, + STATE(3569), 1, sym__immediate_decimal, - STATE(5268), 1, + STATE(5383), 1, sym_comment, - STATE(4546), 2, + ACTIONS(8368), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3439), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [200268] = 11, - ACTIONS(3), 1, + [200050] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3401), 1, - anon_sym_DOLLAR, - ACTIONS(6072), 1, + ACTIONS(3972), 1, anon_sym_LPAREN2, - ACTIONS(6700), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6790), 1, - aux_sym_unquoted_token3, - ACTIONS(8466), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8468), 1, + ACTIONS(3978), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8470), 1, + ACTIONS(3980), 1, aux_sym__immediate_decimal_token5, - STATE(3978), 1, + ACTIONS(8024), 1, + anon_sym_DOLLAR, + STATE(1468), 1, sym__immediate_decimal, - STATE(5269), 1, + STATE(5384), 1, sym_comment, - STATE(3367), 2, + ACTIONS(3976), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1666), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [200303] = 11, - ACTIONS(3), 1, + [200080] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4003), 1, - anon_sym_DOLLAR, - ACTIONS(6072), 1, + ACTIONS(3972), 1, anon_sym_LPAREN2, - ACTIONS(6706), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6790), 1, - aux_sym_unquoted_token3, - ACTIONS(8472), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8474), 1, + ACTIONS(4117), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8476), 1, + ACTIONS(4119), 1, aux_sym__immediate_decimal_token5, - STATE(4197), 1, + ACTIONS(8024), 1, + anon_sym_DOLLAR, + STATE(1658), 1, sym__immediate_decimal, - STATE(5270), 1, + STATE(5385), 1, sym_comment, - STATE(3398), 2, + ACTIONS(4115), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1630), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [200338] = 8, - ACTIONS(3), 1, + [200110] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8478), 1, - anon_sym_DOT, - STATE(5271), 1, + STATE(5386), 1, sym_comment, - STATE(5373), 1, - aux_sym_cell_path_repeat1, - STATE(5558), 1, - sym_path, - STATE(5807), 1, - sym_cell_path, - ACTIONS(1641), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(1645), 3, + ACTIONS(1530), 3, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [200367] = 11, - ACTIONS(3), 1, + ACTIONS(1528), 6, + sym_identifier, + anon_sym_DASH, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [200130] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3852), 1, - anon_sym_DOLLAR, - ACTIONS(6072), 1, + ACTIONS(6446), 1, anon_sym_LPAREN2, - ACTIONS(8111), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8395), 1, - aux_sym_unquoted_token3, - ACTIONS(8480), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8482), 1, + ACTIONS(6885), 1, + anon_sym_DOLLAR, + ACTIONS(6889), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8484), 1, + ACTIONS(6891), 1, aux_sym__immediate_decimal_token5, - STATE(5272), 1, - sym_comment, - STATE(5981), 1, + STATE(4338), 1, sym__immediate_decimal, - STATE(6189), 2, + STATE(5387), 1, + sym_comment, + ACTIONS(6887), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3681), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [200402] = 11, - ACTIONS(3), 1, + [200160] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4395), 1, + ACTIONS(5558), 1, anon_sym_DOLLAR, - ACTIONS(6072), 1, + ACTIONS(5560), 1, anon_sym_LPAREN2, - ACTIONS(8209), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8395), 1, - aux_sym_unquoted_token3, - ACTIONS(8486), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8488), 1, + ACTIONS(5629), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8490), 1, + ACTIONS(5631), 1, aux_sym__immediate_decimal_token5, - STATE(5273), 1, - sym_comment, - STATE(7373), 1, + STATE(3113), 1, sym__immediate_decimal, - STATE(3398), 2, + STATE(5388), 1, + sym_comment, + ACTIONS(5627), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3102), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [200437] = 10, - ACTIONS(247), 1, + [200190] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1492), 1, - anon_sym_LBRACE, - ACTIONS(6072), 1, + ACTIONS(8784), 1, + anon_sym_DASH, + STATE(5389), 1, + sym_comment, + ACTIONS(8782), 8, + anon_sym_EQ, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + [200210] = 9, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6229), 1, anon_sym_LPAREN2, - ACTIONS(8113), 1, + ACTIONS(6251), 1, + anon_sym_DOLLAR, + ACTIONS(6867), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8115), 1, + ACTIONS(6869), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8207), 1, - anon_sym_DOLLAR, - STATE(3527), 1, + STATE(4241), 1, sym__immediate_decimal, - STATE(5274), 1, + STATE(5390), 1, sym_comment, - ACTIONS(8328), 2, + ACTIONS(6865), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3393), 2, + STATE(3465), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [200470] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5275), 1, - sym_comment, - ACTIONS(1520), 4, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1518), 6, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [200491] = 4, - ACTIONS(247), 1, + [200240] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5276), 1, + STATE(5391), 1, sym_comment, - ACTIONS(1542), 4, - anon_sym_DOLLAR, + ACTIONS(1538), 3, anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1540), 6, + ACTIONS(1536), 6, sym_identifier, anon_sym_DASH, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token2, - [200512] = 4, - ACTIONS(247), 1, + [200260] = 9, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5277), 1, - sym_comment, - ACTIONS(1556), 4, + ACTIONS(7025), 1, + anon_sym_LPAREN2, + ACTIONS(7033), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7035), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7070), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1554), 6, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [200533] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8478), 1, - anon_sym_DOT, - STATE(5278), 1, + STATE(5116), 1, + sym__immediate_decimal, + STATE(5392), 1, sym_comment, - STATE(5373), 1, - aux_sym_cell_path_repeat1, - STATE(5558), 1, - sym_path, - STATE(5863), 1, - sym_cell_path, - ACTIONS(1675), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(1677), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [200562] = 4, - ACTIONS(247), 1, + ACTIONS(7118), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(5111), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [200290] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5279), 1, + STATE(5393), 1, sym_comment, - ACTIONS(1655), 4, - anon_sym_DOLLAR, + ACTIONS(1598), 3, anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1653), 6, + ACTIONS(1596), 6, sym_identifier, anon_sym_DASH, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token2, - [200583] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8478), 1, - anon_sym_DOT, - STATE(5280), 1, - sym_comment, - STATE(5373), 1, - aux_sym_cell_path_repeat1, - STATE(5558), 1, - sym_path, - STATE(5698), 1, - sym_cell_path, - ACTIONS(1005), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(1007), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [200612] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5281), 1, - sym_comment, - ACTIONS(7927), 10, - anon_sym_EQ, - sym_identifier, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_AT, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [200631] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5282), 1, - sym_comment, - ACTIONS(7931), 10, - anon_sym_EQ, - sym_identifier, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_AT, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [200650] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5283), 1, - sym_comment, - ACTIONS(7935), 10, - anon_sym_EQ, - sym_identifier, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_AT, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [200669] = 11, - ACTIONS(247), 1, + [200310] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3231), 1, - aux_sym_record_entry_token1, - ACTIONS(6082), 1, + ACTIONS(7025), 1, + anon_sym_LPAREN2, + ACTIONS(7070), 1, anon_sym_DOLLAR, - ACTIONS(8231), 1, - sym_identifier, - ACTIONS(8492), 1, - anon_sym_DASH_DASH, - ACTIONS(8494), 1, - anon_sym_DASH, - STATE(5284), 1, + ACTIONS(7076), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7078), 1, + aux_sym__immediate_decimal_token5, + STATE(4785), 1, + sym__immediate_decimal, + STATE(5394), 1, sym_comment, - STATE(5366), 1, + ACTIONS(7074), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(5120), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - STATE(5634), 1, - sym__variable_name, - STATE(6613), 1, - sym__flag, - STATE(6046), 2, - sym_short_flag, - sym_long_flag, - [200704] = 6, - ACTIONS(3), 1, + [200340] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8496), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8498), 1, - aux_sym__immediate_decimal_token2, - STATE(5285), 1, - sym_comment, - ACTIONS(1540), 3, - sym__newline, - anon_sym_DOT_DOT2, + ACTIONS(4842), 1, aux_sym_unquoted_token2, - ACTIONS(1542), 5, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(8786), 1, + anon_sym_DOT_DOT2, + ACTIONS(8790), 1, sym_filesize_unit, + ACTIONS(8792), 1, sym_duration_unit, - [200729] = 11, - ACTIONS(3), 1, + STATE(5395), 1, + sym_comment, + ACTIONS(8788), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1640), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [200368] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5419), 1, + ACTIONS(5468), 1, anon_sym_LPAREN2, - ACTIONS(5421), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5423), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5588), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8500), 1, + ACTIONS(8794), 1, anon_sym_DOLLAR, - ACTIONS(8502), 1, + ACTIONS(8798), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8504), 1, + ACTIONS(8800), 1, aux_sym__immediate_decimal_token5, - STATE(2974), 1, + STATE(3011), 1, sym__immediate_decimal, - STATE(5286), 1, + STATE(5396), 1, sym_comment, - STATE(3059), 2, + ACTIONS(8796), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3009), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [200764] = 10, - ACTIONS(247), 1, + [200398] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1492), 1, - anon_sym_EQ_GT, - ACTIONS(6072), 1, + ACTIONS(5468), 1, anon_sym_LPAREN2, - ACTIONS(6078), 1, + ACTIONS(8794), 1, + anon_sym_DOLLAR, + ACTIONS(8802), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6080), 1, + ACTIONS(8804), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7837), 1, - anon_sym_DOLLAR, - STATE(3527), 1, + STATE(2879), 1, sym__immediate_decimal, - STATE(5287), 1, + STATE(5397), 1, sym_comment, - ACTIONS(6084), 2, + ACTIONS(8595), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3393), 2, + STATE(3014), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [200797] = 10, - ACTIONS(247), 1, + [200428] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1550), 1, - anon_sym_EQ_GT, - ACTIONS(6072), 1, + ACTIONS(1644), 1, + anon_sym_DOLLAR, + ACTIONS(1646), 1, anon_sym_LPAREN2, - ACTIONS(6078), 1, + ACTIONS(1687), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6080), 1, + ACTIONS(1689), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7837), 1, - anon_sym_DOLLAR, - STATE(3524), 1, + STATE(642), 1, sym__immediate_decimal, - STATE(5288), 1, + STATE(5398), 1, sym_comment, - ACTIONS(6084), 2, + ACTIONS(1685), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3401), 2, + STATE(641), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [200830] = 7, - ACTIONS(247), 1, + [200458] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8506), 1, + ACTIONS(8806), 1, + anon_sym_EQ2, + ACTIONS(8808), 1, + sym_short_flag_identifier, + STATE(5399), 1, + sym_comment, + ACTIONS(4925), 3, anon_sym_DASH_DASH, - ACTIONS(8509), 1, anon_sym_DASH, - STATE(5682), 1, - sym__flag, - STATE(5289), 2, - sym_comment, - aux_sym_ctrl_do_repeat1, - STATE(5696), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8247), 4, - ts_builtin_sym_end, + anon_sym_as, + ACTIONS(4927), 4, sym__newline, anon_sym_SEMI, - anon_sym_as, - [200857] = 9, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [200482] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1560), 1, - anon_sym_DASH, - ACTIONS(4512), 1, - anon_sym_DOT_DOT2, - ACTIONS(8350), 1, - aux_sym_unquoted_token2, - ACTIONS(8512), 1, - sym_filesize_unit, - ACTIONS(8514), 1, - sym_duration_unit, - STATE(5290), 1, + ACTIONS(1644), 1, + anon_sym_DOLLAR, + ACTIONS(1646), 1, + anon_sym_LPAREN2, + ACTIONS(1652), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(1654), 1, + aux_sym__immediate_decimal_token5, + STATE(542), 1, + sym__immediate_decimal, + STATE(5400), 1, sym_comment, - ACTIONS(4514), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1572), 3, + ACTIONS(1650), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(643), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [200512] = 9, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1548), 1, + anon_sym_LPAREN2, + ACTIONS(8810), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [200888] = 6, + ACTIONS(8814), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8816), 1, + aux_sym__immediate_decimal_token5, + STATE(556), 1, + sym__immediate_decimal, + STATE(5401), 1, + sym_comment, + ACTIONS(8812), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(616), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [200542] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8516), 1, + ACTIONS(8818), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8518), 1, + ACTIONS(8820), 1, aux_sym__immediate_decimal_token2, - STATE(5291), 1, + STATE(5402), 1, sym_comment, - ACTIONS(1659), 4, - anon_sym_RBRACK, + ACTIONS(1703), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1661), 4, + aux_sym__unquoted_in_record_token2, + ACTIONS(1705), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [200913] = 11, - ACTIONS(247), 1, + [200566] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6082), 1, + ACTIONS(1548), 1, + anon_sym_LPAREN2, + ACTIONS(8810), 1, anon_sym_DOLLAR, - ACTIONS(8231), 1, - sym_identifier, - ACTIONS(8233), 1, - anon_sym_DASH_DASH, - ACTIONS(8235), 1, - anon_sym_DASH, - STATE(5266), 1, - aux_sym_ctrl_do_repeat1, - STATE(5292), 1, + ACTIONS(8822), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8824), 1, + aux_sym__immediate_decimal_token5, + STATE(498), 1, + sym__immediate_decimal, + STATE(5403), 1, sym_comment, - STATE(5366), 1, + ACTIONS(8621), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(618), 2, + sym__expr_parenthesized_immediate, sym_val_variable, - STATE(5902), 1, - sym__flag, - STATE(6132), 1, - sym__variable_name, - STATE(6046), 2, - sym_short_flag, - sym_long_flag, - [200948] = 11, - ACTIONS(247), 1, + [200596] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3229), 1, - aux_sym_record_entry_token1, - ACTIONS(6082), 1, - anon_sym_DOLLAR, - ACTIONS(8231), 1, + ACTIONS(1042), 1, + anon_sym_DASH, + ACTIONS(8826), 1, + anon_sym_QMARK2, + STATE(5404), 1, + sym_comment, + ACTIONS(1044), 7, + anon_sym_EQ, sym_identifier, - ACTIONS(8492), 1, + sym__newline, + anon_sym_COLON, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - ACTIONS(8494), 1, + anon_sym_DOT, + [200618] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1048), 1, anon_sym_DASH, - STATE(5293), 1, + ACTIONS(8828), 1, + anon_sym_QMARK2, + STATE(5405), 1, sym_comment, - STATE(5366), 1, - sym_val_variable, - STATE(5634), 1, - sym__variable_name, - STATE(6613), 1, - sym__flag, - STATE(6046), 2, - sym_short_flag, - sym_long_flag, - [200983] = 4, - ACTIONS(3), 1, + ACTIONS(1050), 7, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_COLON, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DOT, + [200640] = 9, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5294), 1, - sym_comment, - ACTIONS(1554), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1556), 6, + ACTIONS(6931), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [201004] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3499), 1, + ACTIONS(8760), 1, anon_sym_DOLLAR, - ACTIONS(6852), 1, - anon_sym_LPAREN2, - ACTIONS(6856), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(6858), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6965), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8520), 1, + ACTIONS(8830), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8522), 1, + ACTIONS(8832), 1, aux_sym__immediate_decimal_token5, - STATE(4257), 1, + STATE(4644), 1, sym__immediate_decimal, - STATE(5295), 1, + STATE(5406), 1, sym_comment, - STATE(4579), 2, + ACTIONS(6955), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(4991), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [201039] = 11, - ACTIONS(3), 1, + [200670] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6852), 1, + ACTIONS(6229), 1, anon_sym_LPAREN2, - ACTIONS(6896), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(6898), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6965), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8524), 1, - anon_sym_DOLLAR, - ACTIONS(8526), 1, + ACTIONS(6235), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8528), 1, + ACTIONS(6237), 1, aux_sym__immediate_decimal_token5, - STATE(4771), 1, + ACTIONS(6251), 1, + anon_sym_DOLLAR, + STATE(3581), 1, sym__immediate_decimal, - STATE(5296), 1, + STATE(5407), 1, sym_comment, - STATE(5082), 2, + ACTIONS(6253), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3465), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [201074] = 11, - ACTIONS(3), 1, + [200700] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4742), 1, - aux_sym_unquoted_token3, - ACTIONS(6072), 1, + ACTIONS(6229), 1, anon_sym_LPAREN2, - ACTIONS(7793), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8387), 1, + ACTIONS(6418), 1, anon_sym_DOLLAR, - ACTIONS(8530), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8532), 1, + ACTIONS(8444), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8534), 1, + ACTIONS(8446), 1, aux_sym__immediate_decimal_token5, - STATE(5297), 1, + STATE(5408), 1, sym_comment, - STATE(5571), 1, + STATE(7474), 1, sym__immediate_decimal, - STATE(5879), 2, + ACTIONS(8442), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3465), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [201109] = 10, - ACTIONS(247), 1, + [200730] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1550), 1, - anon_sym_LBRACE, - ACTIONS(6072), 1, + ACTIONS(6444), 1, + anon_sym_DOLLAR, + ACTIONS(6446), 1, anon_sym_LPAREN2, - ACTIONS(8113), 1, + ACTIONS(6452), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8115), 1, + ACTIONS(6454), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8207), 1, - anon_sym_DOLLAR, - STATE(3524), 1, + STATE(3696), 1, sym__immediate_decimal, - STATE(5298), 1, + STATE(5409), 1, sym_comment, - ACTIONS(8328), 2, + ACTIONS(6450), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3401), 2, + STATE(3683), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [201142] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5299), 1, - sym_comment, - ACTIONS(7913), 10, - anon_sym_EQ, - sym_identifier, - anon_sym_DASH_GT, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_AT, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [201161] = 5, - ACTIONS(247), 1, + [200760] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8364), 1, - aux_sym__immediate_decimal_token2, - STATE(5300), 1, + STATE(5410), 1, sym_comment, - ACTIONS(1520), 3, - anon_sym_DOLLAR, + ACTIONS(1713), 3, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1518), 5, + ACTIONS(1711), 6, sym_identifier, + anon_sym_DASH, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token2, - [201183] = 4, - ACTIONS(3), 1, + [200780] = 9, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5301), 1, - sym_comment, - ACTIONS(1554), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1556), 6, + ACTIONS(6227), 1, + anon_sym_DOLLAR, + ACTIONS(6229), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [201203] = 4, - ACTIONS(3), 1, + ACTIONS(6235), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6237), 1, + aux_sym__immediate_decimal_token5, + STATE(3626), 1, + sym__immediate_decimal, + STATE(5411), 1, + sym_comment, + ACTIONS(6233), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3536), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [200810] = 10, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5302), 1, + ACTIONS(6251), 1, + anon_sym_DOLLAR, + ACTIONS(8374), 1, + sym_identifier, + ACTIONS(8645), 1, + anon_sym_DASH_DASH, + ACTIONS(8647), 1, + anon_sym_DASH, + STATE(5412), 1, sym_comment, - ACTIONS(1653), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1655), 6, - anon_sym_LPAREN2, + STATE(5416), 1, + sym_val_variable, + STATE(5785), 1, + sym__variable_name, + STATE(6225), 1, + sym__flag, + STATE(6083), 2, + sym_short_flag, + sym_long_flag, + [200842] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(8617), 1, + aux_sym__immediate_decimal_token2, + STATE(5413), 1, + sym_comment, + ACTIONS(1538), 3, + anon_sym_DOLLAR, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + ACTIONS(1536), 5, + sym_identifier, + anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - sym__entry_separator, - [201223] = 9, - ACTIONS(247), 1, + aux_sym_unquoted_token2, + [200864] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1572), 1, - anon_sym_DASH_DASH, - ACTIONS(4512), 1, + STATE(5414), 1, + sym_comment, + ACTIONS(1536), 2, anon_sym_DOT_DOT2, - ACTIONS(8350), 1, aux_sym_unquoted_token2, - ACTIONS(8536), 1, - sym_filesize_unit, - ACTIONS(8538), 1, - sym_duration_unit, - STATE(5303), 1, - sym_comment, - ACTIONS(1560), 2, - sym_identifier, - anon_sym_DASH, - ACTIONS(4514), 2, + ACTIONS(1538), 7, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [201253] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7823), 1, - anon_sym_LPAREN2, - ACTIONS(8540), 1, - anon_sym_DOLLAR, - ACTIONS(8542), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8544), 1, - aux_sym__immediate_decimal_token5, - STATE(5304), 1, - sym_comment, - STATE(5937), 1, - sym__immediate_decimal, - ACTIONS(7827), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(5687), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [201283] = 9, - ACTIONS(247), 1, + sym_filesize_unit, + sym_duration_unit, + [200884] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7823), 1, - anon_sym_LPAREN2, - ACTIONS(8542), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8544), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8546), 1, + ACTIONS(5558), 1, anon_sym_DOLLAR, - STATE(5305), 1, - sym_comment, - STATE(7294), 1, - sym__immediate_decimal, - ACTIONS(8067), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2922), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [201313] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6770), 1, + ACTIONS(5560), 1, anon_sym_LPAREN2, - ACTIONS(8548), 1, - anon_sym_DOLLAR, - ACTIONS(8550), 1, + ACTIONS(5566), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8552), 1, + ACTIONS(5568), 1, aux_sym__immediate_decimal_token5, - STATE(4594), 1, + STATE(3023), 1, sym__immediate_decimal, - STATE(5306), 1, + STATE(5415), 1, sym_comment, - ACTIONS(6814), 2, + ACTIONS(5564), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4926), 2, + STATE(3076), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [201343] = 6, - ACTIONS(247), 1, + [200914] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8554), 1, - anon_sym_EQ2, - ACTIONS(8556), 1, - sym_short_flag_identifier, - STATE(5307), 1, - sym_comment, - ACTIONS(4781), 3, - anon_sym_DASH_DASH, + ACTIONS(8836), 1, anon_sym_DASH, - anon_sym_as, - ACTIONS(4783), 4, + STATE(5416), 1, + sym_comment, + ACTIONS(8834), 8, + anon_sym_EQ, sym__newline, anon_sym_SEMI, + anon_sym_COLON, anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, anon_sym_RBRACE, - [201367] = 9, - ACTIONS(247), 1, + [200934] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6730), 1, + ACTIONS(6446), 1, anon_sym_LPAREN2, - ACTIONS(8558), 1, - anon_sym_DOLLAR, - ACTIONS(8560), 1, + ACTIONS(6452), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8562), 1, + ACTIONS(6454), 1, aux_sym__immediate_decimal_token5, - STATE(4306), 1, + ACTIONS(6885), 1, + anon_sym_DOLLAR, + STATE(3678), 1, sym__immediate_decimal, - STATE(5308), 1, + STATE(5417), 1, sym_comment, - ACTIONS(6758), 2, + ACTIONS(6498), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4704), 2, + STATE(3674), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [201397] = 9, - ACTIONS(247), 1, + [200964] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(5418), 1, + sym_comment, + ACTIONS(1528), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1530), 7, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [200984] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6072), 1, + ACTIONS(6446), 1, anon_sym_LPAREN2, - ACTIONS(7837), 1, - anon_sym_DOLLAR, - ACTIONS(8005), 1, + ACTIONS(6452), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8007), 1, + ACTIONS(6454), 1, aux_sym__immediate_decimal_token5, - STATE(5309), 1, - sym_comment, - STATE(6656), 1, + ACTIONS(6456), 1, + anon_sym_DOLLAR, + STATE(3678), 1, sym__immediate_decimal, - ACTIONS(8003), 2, + STATE(5419), 1, + sym_comment, + ACTIONS(6498), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3395), 2, + STATE(3674), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [201427] = 9, - ACTIONS(247), 1, + [201014] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6770), 1, + ACTIONS(6446), 1, anon_sym_LPAREN2, - ACTIONS(8548), 1, - anon_sym_DOLLAR, - ACTIONS(8564), 1, + ACTIONS(6452), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8566), 1, + ACTIONS(6454), 1, aux_sym__immediate_decimal_token5, - STATE(4998), 1, + ACTIONS(6456), 1, + anon_sym_DOLLAR, + STATE(3889), 1, sym__immediate_decimal, - STATE(5310), 1, + STATE(5420), 1, sym_comment, - ACTIONS(6838), 2, + ACTIONS(6498), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4993), 2, + STATE(3681), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [201457] = 9, - ACTIONS(247), 1, + [201044] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8838), 1, + aux_sym__immediate_decimal_token2, + STATE(5421), 1, + sym_comment, + ACTIONS(1769), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1771), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [201066] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7823), 1, + ACTIONS(6229), 1, anon_sym_LPAREN2, - ACTIONS(8546), 1, + ACTIONS(7992), 1, anon_sym_DOLLAR, - ACTIONS(8568), 1, + ACTIONS(7996), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8570), 1, + ACTIONS(7998), 1, aux_sym__immediate_decimal_token5, - STATE(5311), 1, + STATE(5422), 1, sym_comment, - STATE(6544), 1, + STATE(6703), 1, sym__immediate_decimal, - ACTIONS(8051), 2, + ACTIONS(7994), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2899), 2, + STATE(3465), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [201487] = 9, - ACTIONS(247), 1, + [201096] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(5423), 1, + sym_comment, + ACTIONS(1596), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1598), 7, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [201116] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(8840), 1, + anon_sym_LT, + STATE(5424), 1, + sym_comment, + ACTIONS(7753), 8, + sym_raw_string_begin, + sym_identifier, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_AT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [201136] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(8842), 1, + anon_sym_LT, + STATE(5425), 1, + sym_comment, + ACTIONS(7753), 8, + sym_raw_string_begin, + sym_identifier, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_AT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [201156] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6072), 1, + ACTIONS(6229), 1, anon_sym_LPAREN2, - ACTIONS(6078), 1, + ACTIONS(6235), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6080), 1, + ACTIONS(6237), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6082), 1, + ACTIONS(6418), 1, anon_sym_DOLLAR, - STATE(3417), 1, + STATE(3581), 1, sym__immediate_decimal, - STATE(5312), 1, + STATE(5426), 1, sym_comment, - ACTIONS(6084), 2, + ACTIONS(6253), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3415), 2, + STATE(3465), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [201517] = 9, - ACTIONS(247), 1, + [201186] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7823), 1, + ACTIONS(4173), 1, anon_sym_LPAREN2, - ACTIONS(8542), 1, + ACTIONS(4179), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8544), 1, + ACTIONS(4181), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8546), 1, + ACTIONS(8218), 1, anon_sym_DOLLAR, - STATE(5313), 1, - sym_comment, - STATE(7337), 1, + STATE(1516), 1, sym__immediate_decimal, - ACTIONS(8067), 2, + STATE(5427), 1, + sym_comment, + ACTIONS(4177), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2899), 2, + STATE(1844), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [201547] = 5, - ACTIONS(3), 1, + [201216] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8419), 1, + ACTIONS(8844), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8846), 1, aux_sym__immediate_decimal_token2, - STATE(5314), 1, + STATE(5428), 1, sym_comment, - ACTIONS(1667), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(1703), 2, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1669), 4, - anon_sym_LPAREN2, + aux_sym_unquoted_token2, + ACTIONS(1705), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [201569] = 5, - ACTIONS(247), 1, + [201240] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1022), 1, - anon_sym_DASH, - ACTIONS(8572), 1, - anon_sym_QMARK2, - STATE(5315), 1, + ACTIONS(8848), 1, + aux_sym__immediate_decimal_token2, + STATE(5429), 1, sym_comment, - ACTIONS(1024), 7, - anon_sym_EQ, + ACTIONS(1598), 3, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1596), 5, sym_identifier, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [201262] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(5430), 1, + sym_comment, + ACTIONS(1711), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1713), 7, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [201282] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8850), 1, + aux_sym__immediate_decimal_token2, + STATE(5431), 1, + sym_comment, + ACTIONS(1596), 3, sym__newline, - anon_sym_COLON, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1598), 5, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [201304] = 9, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(3616), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DOT, - [201591] = 9, - ACTIONS(247), 1, + ACTIONS(6229), 1, + anon_sym_LPAREN2, + ACTIONS(6235), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6237), 1, + aux_sym__immediate_decimal_token5, + STATE(5432), 1, + sym_comment, + STATE(6738), 1, + sym__immediate_decimal, + ACTIONS(6233), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(5973), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [201334] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7823), 1, + ACTIONS(6229), 1, anon_sym_LPAREN2, - ACTIONS(8546), 1, - anon_sym_DOLLAR, - ACTIONS(8574), 1, + ACTIONS(6235), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8576), 1, + ACTIONS(6237), 1, aux_sym__immediate_decimal_token5, - STATE(5316), 1, + ACTIONS(6418), 1, + anon_sym_DOLLAR, + STATE(3569), 1, + sym__immediate_decimal, + STATE(5433), 1, sym_comment, - STATE(6426), 1, + ACTIONS(6253), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3439), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [201364] = 9, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6229), 1, + anon_sym_LPAREN2, + ACTIONS(6235), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6237), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6418), 1, + anon_sym_DOLLAR, + STATE(3453), 1, sym__immediate_decimal, - ACTIONS(8059), 2, + STATE(5434), 1, + sym_comment, + ACTIONS(6253), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2899), 2, + STATE(3441), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [201621] = 9, - ACTIONS(247), 1, + [201394] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6730), 1, + STATE(5435), 1, + sym_comment, + ACTIONS(1536), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1538), 6, anon_sym_LPAREN2, - ACTIONS(8558), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [201414] = 9, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6227), 1, anon_sym_DOLLAR, - ACTIONS(8578), 1, + ACTIONS(6229), 1, + anon_sym_LPAREN2, + ACTIONS(8318), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8580), 1, + ACTIONS(8320), 1, aux_sym__immediate_decimal_token5, - STATE(4703), 1, - sym__immediate_decimal, - STATE(5317), 1, + STATE(5436), 1, sym_comment, - ACTIONS(6810), 2, + STATE(6162), 1, + sym__immediate_decimal, + ACTIONS(8316), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4700), 2, + STATE(6111), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [201651] = 6, + [201444] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8582), 1, - anon_sym_DOT, - ACTIONS(8584), 1, + ACTIONS(8613), 1, aux_sym__immediate_decimal_token2, - STATE(5318), 1, + STATE(5437), 1, sym_comment, - ACTIONS(1667), 3, + ACTIONS(1715), 4, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1669), 4, + aux_sym__unquoted_in_list_token2, + ACTIONS(1717), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [201675] = 6, - ACTIONS(3), 1, + [201466] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8586), 1, + ACTIONS(8852), 1, + anon_sym_DOT, + ACTIONS(8854), 1, + aux_sym__immediate_decimal_token2, + STATE(5438), 1, + sym_comment, + ACTIONS(1715), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1717), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [201490] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(8856), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8588), 1, + ACTIONS(8858), 1, aux_sym__immediate_decimal_token2, - STATE(5319), 1, + STATE(5439), 1, sym_comment, - ACTIONS(1659), 3, - anon_sym_RBRACE, + ACTIONS(1528), 2, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1661), 4, - anon_sym_LPAREN2, + aux_sym_unquoted_token2, + ACTIONS(1530), 5, + anon_sym_in, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [201699] = 9, - ACTIONS(247), 1, + sym_filesize_unit, + sym_duration_unit, + [201514] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5417), 1, - anon_sym_DOLLAR, - ACTIONS(5419), 1, + ACTIONS(6229), 1, anon_sym_LPAREN2, - ACTIONS(5425), 1, + ACTIONS(6235), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5427), 1, + ACTIONS(6237), 1, aux_sym__immediate_decimal_token5, - STATE(3008), 1, + ACTIONS(7992), 1, + anon_sym_DOLLAR, + STATE(3581), 1, sym__immediate_decimal, - STATE(5320), 1, + STATE(5440), 1, sym_comment, - ACTIONS(5423), 2, + ACTIONS(6253), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3086), 2, + STATE(3465), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [201729] = 6, + [201544] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8590), 1, + ACTIONS(8860), 1, anon_sym_DOT, - STATE(5558), 1, + STATE(5746), 1, sym_path, - STATE(5321), 2, + STATE(5441), 2, sym_comment, aux_sym_cell_path_repeat1, - ACTIONS(1015), 3, + ACTIONS(1031), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, - ACTIONS(1017), 3, + ACTIONS(1033), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [201753] = 9, - ACTIONS(247), 1, + [201568] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3883), 1, + ACTIONS(7974), 1, anon_sym_LPAREN2, - ACTIONS(3889), 1, + ACTIONS(8734), 1, + anon_sym_DOLLAR, + ACTIONS(8863), 1, aux_sym__immediate_decimal_token4, - ACTIONS(3891), 1, + ACTIONS(8865), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7857), 1, - anon_sym_DOLLAR, - STATE(1480), 1, - sym__immediate_decimal, - STATE(5322), 1, + STATE(5442), 1, sym_comment, - ACTIONS(3887), 2, + STATE(6672), 1, + sym__immediate_decimal, + ACTIONS(8176), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1575), 2, + STATE(6958), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [201783] = 9, - ACTIONS(247), 1, + [201598] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3883), 1, + ACTIONS(6229), 1, anon_sym_LPAREN2, - ACTIONS(3939), 1, + ACTIONS(6235), 1, aux_sym__immediate_decimal_token4, - ACTIONS(3941), 1, + ACTIONS(6237), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7857), 1, + ACTIONS(7992), 1, anon_sym_DOLLAR, - STATE(1574), 1, + STATE(3569), 1, sym__immediate_decimal, - STATE(5323), 1, + STATE(5443), 1, sym_comment, - ACTIONS(3937), 2, + ACTIONS(6253), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1792), 2, + STATE(3439), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [201813] = 9, - ACTIONS(247), 1, + [201628] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6291), 1, + ACTIONS(6229), 1, anon_sym_LPAREN2, - ACTIONS(6722), 1, - anon_sym_DOLLAR, - ACTIONS(6726), 1, + ACTIONS(6235), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6728), 1, + ACTIONS(6237), 1, aux_sym__immediate_decimal_token5, - STATE(4223), 1, + ACTIONS(7992), 1, + anon_sym_DOLLAR, + STATE(3453), 1, sym__immediate_decimal, - STATE(5324), 1, + STATE(5444), 1, sym_comment, - ACTIONS(6724), 2, + ACTIONS(6253), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4535), 2, + STATE(3441), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [201843] = 9, - ACTIONS(247), 1, + [201658] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5417), 1, - anon_sym_DOLLAR, - ACTIONS(5419), 1, + STATE(5445), 1, + sym_comment, + ACTIONS(1528), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1530), 6, anon_sym_LPAREN2, - ACTIONS(5496), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [201678] = 9, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6229), 1, + anon_sym_LPAREN2, + ACTIONS(6235), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5498), 1, + ACTIONS(6237), 1, aux_sym__immediate_decimal_token5, - STATE(3035), 1, + ACTIONS(6251), 1, + anon_sym_DOLLAR, + STATE(3453), 1, sym__immediate_decimal, - STATE(5325), 1, + STATE(5446), 1, sym_comment, - ACTIONS(5494), 2, + ACTIONS(6253), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3027), 2, + STATE(3441), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [201873] = 6, - ACTIONS(247), 1, + [201708] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8593), 1, + ACTIONS(8867), 1, anon_sym_DOT, - ACTIONS(8595), 1, + ACTIONS(8869), 1, aux_sym__immediate_decimal_token2, - STATE(5326), 1, + STATE(5447), 1, sym_comment, - ACTIONS(1667), 2, + ACTIONS(1715), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1669), 5, + ACTIONS(1717), 5, sym__newline, anon_sym_LBRACE, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [201897] = 9, - ACTIONS(247), 1, + [201732] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5448), 1, + sym_comment, + ACTIONS(1596), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1598), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [201752] = 10, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6251), 1, + anon_sym_DOLLAR, + ACTIONS(8374), 1, + sym_identifier, + ACTIONS(8645), 1, + anon_sym_DASH_DASH, + ACTIONS(8647), 1, + anon_sym_DASH, + STATE(5416), 1, + sym_val_variable, + STATE(5449), 1, + sym_comment, + STATE(5964), 1, + sym__variable_name, + STATE(6750), 1, + sym__flag, + STATE(6083), 2, + sym_short_flag, + sym_long_flag, + [201784] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6072), 1, + STATE(5450), 1, + sym_comment, + ACTIONS(1711), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1713), 6, anon_sym_LPAREN2, - ACTIONS(6082), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [201804] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1364), 1, + anon_sym_DASH, + STATE(5451), 1, + sym_comment, + ACTIONS(1362), 8, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_DOLLAR, - ACTIONS(6708), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [201824] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8536), 1, + anon_sym_DOT, + STATE(5441), 1, + aux_sym_cell_path_repeat1, + STATE(5452), 1, + sym_comment, + STATE(5746), 1, + sym_path, + ACTIONS(1027), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + ACTIONS(1029), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [201850] = 9, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(7974), 1, + anon_sym_LPAREN2, + ACTIONS(8730), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6710), 1, + ACTIONS(8732), 1, aux_sym__immediate_decimal_token5, - STATE(4132), 1, - sym__immediate_decimal, - STATE(5327), 1, + ACTIONS(8734), 1, + anon_sym_DOLLAR, + STATE(5453), 1, sym_comment, - ACTIONS(6706), 2, + STATE(7501), 1, + sym__immediate_decimal, + ACTIONS(8234), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3395), 2, + STATE(6958), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [201927] = 9, - ACTIONS(247), 1, + [201880] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6852), 1, + ACTIONS(6227), 1, + anon_sym_DOLLAR, + ACTIONS(6229), 1, anon_sym_LPAREN2, - ACTIONS(6860), 1, + ACTIONS(6235), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6862), 1, + ACTIONS(6237), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6894), 1, - anon_sym_DOLLAR, - STATE(5097), 1, - sym__immediate_decimal, - STATE(5328), 1, + STATE(5454), 1, sym_comment, - ACTIONS(6951), 2, + STATE(5966), 1, + sym__immediate_decimal, + ACTIONS(6233), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(5096), 2, + STATE(5968), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [201957] = 6, - ACTIONS(247), 1, + [201910] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8597), 1, + ACTIONS(8871), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8599), 1, + ACTIONS(8873), 1, aux_sym__immediate_decimal_token2, - STATE(5329), 1, + STATE(5455), 1, sym_comment, - ACTIONS(1659), 2, + ACTIONS(1703), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1661), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, + ACTIONS(1705), 5, + sym__newline, + anon_sym_LBRACE, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [201981] = 9, - ACTIONS(247), 1, + [201934] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6852), 1, + ACTIONS(7974), 1, anon_sym_LPAREN2, - ACTIONS(6894), 1, - anon_sym_DOLLAR, - ACTIONS(6900), 1, + ACTIONS(8730), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6902), 1, + ACTIONS(8732), 1, aux_sym__immediate_decimal_token5, - STATE(4798), 1, - sym__immediate_decimal, - STATE(5330), 1, + ACTIONS(8734), 1, + anon_sym_DOLLAR, + STATE(5456), 1, sym_comment, - ACTIONS(6898), 2, + STATE(6951), 1, + sym__immediate_decimal, + ACTIONS(8234), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(5098), 2, + STATE(6948), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [202011] = 9, - ACTIONS(247), 1, + [201964] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5395), 1, + ACTIONS(6229), 1, anon_sym_LPAREN2, - ACTIONS(8601), 1, + ACTIONS(6418), 1, anon_sym_DOLLAR, - ACTIONS(8605), 1, + ACTIONS(8318), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8607), 1, + ACTIONS(8320), 1, aux_sym__immediate_decimal_token5, - STATE(2933), 1, + STATE(3581), 1, sym__immediate_decimal, - STATE(5331), 1, + STATE(5457), 1, sym_comment, - ACTIONS(8603), 2, + ACTIONS(8368), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2936), 2, + STATE(3465), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [202041] = 5, - ACTIONS(247), 1, + [201994] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8609), 1, - aux_sym__immediate_decimal_token2, - STATE(5332), 1, + STATE(5458), 1, sym_comment, - ACTIONS(1556), 3, + ACTIONS(1056), 8, + sym_raw_string_begin, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [202011] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(2043), 1, + anon_sym_DASH, + ACTIONS(8268), 1, + anon_sym_DOT, + STATE(2752), 1, + sym_path, + STATE(4910), 1, + sym_cell_path, + STATE(5224), 1, + aux_sym_cell_path_repeat1, + STATE(5459), 1, + sym_comment, + ACTIONS(2045), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [202038] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(2047), 1, + anon_sym_DASH, + ACTIONS(8268), 1, + anon_sym_DOT, + STATE(2752), 1, + sym_path, + STATE(4911), 1, + sym_cell_path, + STATE(5224), 1, + aux_sym_cell_path_repeat1, + STATE(5460), 1, + sym_comment, + ACTIONS(2049), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [202065] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(2051), 1, + anon_sym_DASH, + ACTIONS(8268), 1, + anon_sym_DOT, + STATE(2752), 1, + sym_path, + STATE(4912), 1, + sym_cell_path, + STATE(5224), 1, + aux_sym_cell_path_repeat1, + STATE(5461), 1, + sym_comment, + ACTIONS(2053), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [202092] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(2055), 1, + anon_sym_DASH, + ACTIONS(8268), 1, + anon_sym_DOT, + STATE(2752), 1, + sym_path, + STATE(4913), 1, + sym_cell_path, + STATE(5224), 1, + aux_sym_cell_path_repeat1, + STATE(5462), 1, + sym_comment, + ACTIONS(2057), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [202119] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(2059), 1, + anon_sym_DASH, + ACTIONS(8268), 1, + anon_sym_DOT, + STATE(2752), 1, + sym_path, + STATE(4914), 1, + sym_cell_path, + STATE(5224), 1, + aux_sym_cell_path_repeat1, + STATE(5463), 1, + sym_comment, + ACTIONS(2061), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [202146] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(2067), 1, + anon_sym_DASH, + ACTIONS(8268), 1, + anon_sym_DOT, + STATE(2752), 1, + sym_path, + STATE(4915), 1, + sym_cell_path, + STATE(5224), 1, + aux_sym_cell_path_repeat1, + STATE(5464), 1, + sym_comment, + ACTIONS(2069), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [202173] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(2083), 1, + anon_sym_DASH, + ACTIONS(8268), 1, + anon_sym_DOT, + STATE(2752), 1, + sym_path, + STATE(4916), 1, + sym_cell_path, + STATE(5224), 1, + aux_sym_cell_path_repeat1, + STATE(5465), 1, + sym_comment, + ACTIONS(2085), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [202200] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(2087), 1, + anon_sym_DASH, + ACTIONS(8268), 1, + anon_sym_DOT, + STATE(2752), 1, + sym_path, + STATE(4917), 1, + sym_cell_path, + STATE(5224), 1, + aux_sym_cell_path_repeat1, + STATE(5466), 1, + sym_comment, + ACTIONS(2089), 3, anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [202227] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(2095), 1, + anon_sym_DASH, + ACTIONS(8268), 1, + anon_sym_DOT, + STATE(2752), 1, + sym_path, + STATE(4918), 1, + sym_cell_path, + STATE(5224), 1, + aux_sym_cell_path_repeat1, + STATE(5467), 1, + sym_comment, + ACTIONS(2097), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [202254] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5468), 1, + sym_comment, + ACTIONS(1703), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1705), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [202273] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5469), 1, + sym_comment, + ACTIONS(1064), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1554), 5, + sym__entry_separator, + ACTIONS(1062), 5, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [202292] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5470), 1, + sym_comment, + ACTIONS(1056), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1054), 5, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [202311] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(5471), 1, + sym_comment, + ACTIONS(8074), 8, + sym_raw_string_begin, + sym_identifier, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_AT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [202328] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1901), 1, + anon_sym_DASH, + ACTIONS(8542), 1, + anon_sym_DOT, + STATE(4923), 1, + sym_cell_path, + STATE(5290), 1, + aux_sym_cell_path_repeat1, + STATE(5472), 1, + sym_comment, + STATE(5519), 1, + sym_path, + ACTIONS(1903), 3, sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [202355] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1021), 1, anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [202063] = 9, - ACTIONS(247), 1, + ACTIONS(8875), 1, + anon_sym_DOT, + STATE(1268), 1, + sym_path, + STATE(3168), 1, + sym_cell_path, + STATE(5473), 1, + sym_comment, + STATE(5727), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1023), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [202382] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5395), 1, - anon_sym_LPAREN2, - ACTIONS(8601), 1, + ACTIONS(8268), 1, + anon_sym_DOT, + STATE(1891), 1, + sym_cell_path, + STATE(2752), 1, + sym_path, + STATE(5224), 1, + aux_sym_cell_path_repeat1, + STATE(5474), 1, + sym_comment, + ACTIONS(1895), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [202407] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1909), 1, + anon_sym_DASH, + ACTIONS(8542), 1, + anon_sym_DOT, + STATE(4927), 1, + sym_cell_path, + STATE(5290), 1, + aux_sym_cell_path_repeat1, + STATE(5475), 1, + sym_comment, + STATE(5519), 1, + sym_path, + ACTIONS(1911), 3, + sym_identifier, anon_sym_DOLLAR, - ACTIONS(8611), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8613), 1, - aux_sym__immediate_decimal_token5, - STATE(2883), 1, - sym__immediate_decimal, - STATE(5333), 1, + anon_sym_DASH_DASH, + [202434] = 7, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(8268), 1, + anon_sym_DOT, + STATE(1804), 1, + sym_cell_path, + STATE(2752), 1, + sym_path, + STATE(5224), 1, + aux_sym_cell_path_repeat1, + STATE(5476), 1, sym_comment, - ACTIONS(8385), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2899), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [202093] = 9, - ACTIONS(247), 1, + ACTIONS(1899), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [202459] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(8877), 1, + anon_sym_DQUOTE, + ACTIONS(8881), 1, + aux_sym_path_token1, + ACTIONS(8883), 1, + sym_raw_string_begin, + STATE(5477), 1, + sym_comment, + STATE(6114), 1, + sym_val_string, + ACTIONS(8879), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(6104), 2, + sym__raw_str, + sym__str_double_quotes, + [202486] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1929), 1, + anon_sym_DASH, + ACTIONS(8542), 1, + anon_sym_DOT, + STATE(4901), 1, + sym_cell_path, + STATE(5290), 1, + aux_sym_cell_path_repeat1, + STATE(5478), 1, + sym_comment, + STATE(5519), 1, + sym_path, + ACTIONS(1931), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [202513] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(3842), 1, + anon_sym_DQUOTE, + ACTIONS(3848), 1, + sym_raw_string_begin, + ACTIONS(8885), 1, + aux_sym_path_token1, + STATE(5405), 1, + sym_val_string, + STATE(5479), 1, + sym_comment, + ACTIONS(3844), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4434), 2, + sym__raw_str, + sym__str_double_quotes, + [202540] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1590), 1, + ACTIONS(1893), 1, + anon_sym_DASH, + ACTIONS(8268), 1, + anon_sym_DOT, + STATE(2752), 1, + sym_path, + STATE(4891), 1, + sym_cell_path, + STATE(5224), 1, + aux_sym_cell_path_repeat1, + STATE(5480), 1, + sym_comment, + ACTIONS(1895), 3, anon_sym_DOLLAR, - ACTIONS(1592), 1, - anon_sym_LPAREN2, - ACTIONS(1628), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(1630), 1, - aux_sym__immediate_decimal_token5, - STATE(636), 1, - sym__immediate_decimal, - STATE(5334), 1, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [202567] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1897), 1, + anon_sym_DASH, + ACTIONS(8268), 1, + anon_sym_DOT, + STATE(2752), 1, + sym_path, + STATE(4897), 1, + sym_cell_path, + STATE(5224), 1, + aux_sym_cell_path_repeat1, + STATE(5481), 1, sym_comment, - ACTIONS(1626), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(635), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [202123] = 9, - ACTIONS(247), 1, + ACTIONS(1899), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [202594] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(6297), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6299), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6301), 1, + ACTIONS(1993), 1, + anon_sym_DASH, + ACTIONS(8542), 1, + anon_sym_DOT, + STATE(4902), 1, + sym_cell_path, + STATE(5290), 1, + aux_sym_cell_path_repeat1, + STATE(5482), 1, + sym_comment, + STATE(5519), 1, + sym_path, + ACTIONS(1995), 3, + sym_identifier, anon_sym_DOLLAR, - STATE(3817), 1, - sym__immediate_decimal, - STATE(5335), 1, + anon_sym_DASH_DASH, + [202621] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1997), 1, + anon_sym_DASH, + ACTIONS(8542), 1, + anon_sym_DOT, + STATE(4903), 1, + sym_cell_path, + STATE(5290), 1, + aux_sym_cell_path_repeat1, + STATE(5483), 1, sym_comment, - ACTIONS(6346), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1901), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [202153] = 9, - ACTIONS(247), 1, + STATE(5519), 1, + sym_path, + ACTIONS(1999), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [202648] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1590), 1, + ACTIONS(2001), 1, + anon_sym_DASH, + ACTIONS(8542), 1, + anon_sym_DOT, + STATE(4904), 1, + sym_cell_path, + STATE(5290), 1, + aux_sym_cell_path_repeat1, + STATE(5484), 1, + sym_comment, + STATE(5519), 1, + sym_path, + ACTIONS(2003), 3, + sym_identifier, anon_sym_DOLLAR, - ACTIONS(1592), 1, - anon_sym_LPAREN2, - ACTIONS(1598), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(1600), 1, - aux_sym__immediate_decimal_token5, - STATE(542), 1, - sym__immediate_decimal, - STATE(5336), 1, + anon_sym_DASH_DASH, + [202675] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(3068), 1, + anon_sym_DQUOTE, + ACTIONS(3074), 1, + sym_raw_string_begin, + ACTIONS(8887), 1, + aux_sym_path_token1, + STATE(5485), 1, sym_comment, - ACTIONS(1596), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(637), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [202183] = 9, - ACTIONS(247), 1, + STATE(5607), 1, + sym_val_string, + ACTIONS(3070), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5521), 2, + sym__raw_str, + sym__str_double_quotes, + [202702] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1510), 1, - anon_sym_LPAREN2, - ACTIONS(8615), 1, + ACTIONS(2005), 1, + anon_sym_DASH, + ACTIONS(8542), 1, + anon_sym_DOT, + STATE(4905), 1, + sym_cell_path, + STATE(5290), 1, + aux_sym_cell_path_repeat1, + STATE(5486), 1, + sym_comment, + STATE(5519), 1, + sym_path, + ACTIONS(2007), 3, + sym_identifier, anon_sym_DOLLAR, - ACTIONS(8619), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8621), 1, - aux_sym__immediate_decimal_token5, - STATE(601), 1, - sym__immediate_decimal, - STATE(5337), 1, + anon_sym_DASH_DASH, + [202729] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(2009), 1, + anon_sym_DASH, + ACTIONS(8542), 1, + anon_sym_DOT, + STATE(4906), 1, + sym_cell_path, + STATE(5290), 1, + aux_sym_cell_path_repeat1, + STATE(5487), 1, sym_comment, - ACTIONS(8617), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(600), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [202213] = 9, - ACTIONS(247), 1, + STATE(5519), 1, + sym_path, + ACTIONS(2011), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [202756] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1510), 1, - anon_sym_LPAREN2, - ACTIONS(8615), 1, + ACTIONS(2013), 1, + anon_sym_DASH, + ACTIONS(8542), 1, + anon_sym_DOT, + STATE(4907), 1, + sym_cell_path, + STATE(5290), 1, + aux_sym_cell_path_repeat1, + STATE(5488), 1, + sym_comment, + STATE(5519), 1, + sym_path, + ACTIONS(2015), 3, + sym_identifier, anon_sym_DOLLAR, - ACTIONS(8623), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8625), 1, - aux_sym__immediate_decimal_token5, - STATE(491), 1, - sym__immediate_decimal, - STATE(5338), 1, + anon_sym_DASH_DASH, + [202783] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(2017), 1, + anon_sym_DASH, + ACTIONS(8542), 1, + anon_sym_DOT, + STATE(4908), 1, + sym_cell_path, + STATE(5290), 1, + aux_sym_cell_path_repeat1, + STATE(5489), 1, sym_comment, - ACTIONS(8415), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(602), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [202243] = 4, - ACTIONS(247), 1, + STATE(5519), 1, + sym_path, + ACTIONS(2019), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [202810] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5339), 1, + ACTIONS(8889), 1, + anon_sym_DQUOTE, + ACTIONS(8893), 1, + aux_sym_path_token1, + ACTIONS(8895), 1, + sym_raw_string_begin, + STATE(5490), 1, + sym_comment, + STATE(6049), 1, + sym_val_string, + ACTIONS(8891), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5998), 2, + sym__raw_str, + sym__str_double_quotes, + [202837] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(2021), 1, + anon_sym_DASH, + ACTIONS(8542), 1, + anon_sym_DOT, + STATE(4909), 1, + sym_cell_path, + STATE(5290), 1, + aux_sym_cell_path_repeat1, + STATE(5491), 1, + sym_comment, + STATE(5519), 1, + sym_path, + ACTIONS(2023), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [202864] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(2043), 1, + anon_sym_DASH, + ACTIONS(8542), 1, + anon_sym_DOT, + STATE(4910), 1, + sym_cell_path, + STATE(5290), 1, + aux_sym_cell_path_repeat1, + STATE(5492), 1, + sym_comment, + STATE(5519), 1, + sym_path, + ACTIONS(2045), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [202891] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(2047), 1, + anon_sym_DASH, + ACTIONS(8542), 1, + anon_sym_DOT, + STATE(4911), 1, + sym_cell_path, + STATE(5290), 1, + aux_sym_cell_path_repeat1, + STATE(5493), 1, + sym_comment, + STATE(5519), 1, + sym_path, + ACTIONS(2049), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [202918] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5099), 1, + anon_sym_DASH, + STATE(5494), 1, + sym_comment, + ACTIONS(5097), 7, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, + [202937] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(519), 1, + anon_sym_DQUOTE, + ACTIONS(529), 1, + sym_raw_string_begin, + ACTIONS(8897), 1, + aux_sym_path_token1, + STATE(2073), 1, + sym_val_string, + STATE(5495), 1, + sym_comment, + ACTIONS(521), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1820), 2, + sym__raw_str, + sym__str_double_quotes, + [202964] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(2051), 1, + anon_sym_DASH, + ACTIONS(8542), 1, + anon_sym_DOT, + STATE(4912), 1, + sym_cell_path, + STATE(5290), 1, + aux_sym_cell_path_repeat1, + STATE(5496), 1, + sym_comment, + STATE(5519), 1, + sym_path, + ACTIONS(2053), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [202991] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(2055), 1, + anon_sym_DASH, + ACTIONS(8542), 1, + anon_sym_DOT, + STATE(4913), 1, + sym_cell_path, + STATE(5290), 1, + aux_sym_cell_path_repeat1, + STATE(5497), 1, + sym_comment, + STATE(5519), 1, + sym_path, + ACTIONS(2057), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [203018] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(2059), 1, + anon_sym_DASH, + ACTIONS(8542), 1, + anon_sym_DOT, + STATE(4914), 1, + sym_cell_path, + STATE(5290), 1, + aux_sym_cell_path_repeat1, + STATE(5498), 1, + sym_comment, + STATE(5519), 1, + sym_path, + ACTIONS(2061), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [203045] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(2067), 1, + anon_sym_DASH, + ACTIONS(8542), 1, + anon_sym_DOT, + STATE(4915), 1, + sym_cell_path, + STATE(5290), 1, + aux_sym_cell_path_repeat1, + STATE(5499), 1, + sym_comment, + STATE(5519), 1, + sym_path, + ACTIONS(2069), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [203072] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(8899), 1, + anon_sym_DQUOTE, + ACTIONS(8903), 1, + aux_sym_path_token1, + ACTIONS(8905), 1, + sym_raw_string_begin, + STATE(1227), 1, + sym_val_string, + STATE(5500), 1, + sym_comment, + ACTIONS(8901), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1219), 2, + sym__raw_str, + sym__str_double_quotes, + [203099] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(2083), 1, + anon_sym_DASH, + ACTIONS(8542), 1, + anon_sym_DOT, + STATE(4916), 1, + sym_cell_path, + STATE(5290), 1, + aux_sym_cell_path_repeat1, + STATE(5501), 1, + sym_comment, + STATE(5519), 1, + sym_path, + ACTIONS(2085), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [203126] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5049), 1, + anon_sym_DASH, + STATE(5502), 1, + sym_comment, + ACTIONS(5047), 7, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, + [203145] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(2087), 1, + anon_sym_DASH, + ACTIONS(8542), 1, + anon_sym_DOT, + STATE(4917), 1, + sym_cell_path, + STATE(5290), 1, + aux_sym_cell_path_repeat1, + STATE(5503), 1, + sym_comment, + STATE(5519), 1, + sym_path, + ACTIONS(2089), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [203172] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5069), 1, + anon_sym_DASH, + STATE(5504), 1, + sym_comment, + ACTIONS(5067), 7, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, + [203191] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(2095), 1, + anon_sym_DASH, + ACTIONS(8542), 1, + anon_sym_DOT, + STATE(4918), 1, + sym_cell_path, + STATE(5290), 1, + aux_sym_cell_path_repeat1, + STATE(5505), 1, + sym_comment, + STATE(5519), 1, + sym_path, + ACTIONS(2097), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [203218] = 8, + ACTIONS(111), 1, + anon_sym_DQUOTE, + ACTIONS(123), 1, + sym_raw_string_begin, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(8907), 1, + aux_sym_path_token1, + STATE(2046), 1, + sym_val_string, + STATE(5506), 1, + sym_comment, + ACTIONS(113), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(2065), 2, + sym__raw_str, + sym__str_double_quotes, + [203245] = 8, + ACTIONS(235), 1, + anon_sym_DQUOTE, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(251), 1, + sym_raw_string_begin, + ACTIONS(8909), 1, + aux_sym_path_token1, + STATE(1504), 1, + sym_val_string, + STATE(5507), 1, + sym_comment, + ACTIONS(237), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1540), 2, + sym__raw_str, + sym__str_double_quotes, + [203272] = 7, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(8911), 1, + anon_sym_DASH_DASH, + ACTIONS(8914), 1, + anon_sym_DASH, + STATE(6018), 1, + sym__flag, + ACTIONS(8464), 2, + sym_identifier, + anon_sym_DOLLAR, + STATE(5508), 2, + sym_comment, + aux_sym_ctrl_do_repeat1, + STATE(6083), 2, + sym_short_flag, + sym_long_flag, + [203297] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(8869), 1, + aux_sym__immediate_decimal_token2, + STATE(5509), 1, + sym_comment, + ACTIONS(1715), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1717), 5, + sym__newline, + anon_sym_LBRACE, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [203318] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5065), 1, + anon_sym_DASH, + STATE(5510), 1, + sym_comment, + ACTIONS(5063), 7, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, + [203337] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8738), 1, + aux_sym__immediate_decimal_token2, + STATE(5511), 1, + sym_comment, + ACTIONS(1715), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1717), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [203358] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(8917), 1, + anon_sym_DQUOTE, + ACTIONS(8921), 1, + aux_sym_path_token1, + ACTIONS(8923), 1, + sym_raw_string_begin, + STATE(1171), 1, + sym_val_string, + STATE(5512), 1, + sym_comment, + ACTIONS(8919), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1188), 2, + sym__raw_str, + sym__str_double_quotes, + [203385] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5513), 1, sym_comment, - ACTIONS(1520), 3, - anon_sym_DASH_DASH, + ACTIONS(1040), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1518), 6, - sym_identifier, - anon_sym_DASH, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [202263] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8627), 1, - sym_long_flag_identifier, - ACTIONS(8629), 1, - anon_sym_EQ2, - STATE(5340), 1, - sym_comment, - ACTIONS(4808), 2, - anon_sym_DASH, - anon_sym_as, - ACTIONS(4810), 5, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + sym__entry_separator, + ACTIONS(1038), 5, + anon_sym_RBRACK, anon_sym_RBRACE, - [202287] = 4, - ACTIONS(247), 1, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [203404] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5341), 1, + ACTIONS(8925), 1, + anon_sym_QMARK2, + STATE(5514), 1, sym_comment, - ACTIONS(1542), 3, - anon_sym_DASH_DASH, + ACTIONS(1044), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1540), 6, - sym_identifier, - anon_sym_DASH, + sym__entry_separator, + ACTIONS(1042), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [202307] = 5, + anon_sym_DOT, + [203425] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8452), 1, - aux_sym__immediate_decimal_token2, - STATE(5342), 1, + STATE(5515), 1, sym_comment, - ACTIONS(1518), 3, + ACTIONS(1528), 3, sym__newline, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1520), 5, + ACTIONS(1530), 5, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [202329] = 10, - ACTIONS(247), 1, + [203444] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6082), 1, - anon_sym_DOLLAR, - ACTIONS(8231), 1, - sym_identifier, - ACTIONS(8492), 1, + ACTIONS(8927), 1, + anon_sym_DQUOTE, + ACTIONS(8931), 1, + aux_sym_path_token1, + ACTIONS(8933), 1, + sym_raw_string_begin, + STATE(1525), 1, + sym_val_string, + STATE(5516), 1, + sym_comment, + ACTIONS(8929), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1552), 2, + sym__raw_str, + sym__str_double_quotes, + [203471] = 7, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(8268), 1, + anon_sym_DOT, + STATE(2752), 1, + sym_path, + STATE(3780), 1, + sym_cell_path, + STATE(5224), 1, + aux_sym_cell_path_repeat1, + STATE(5517), 1, + sym_comment, + ACTIONS(1668), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [203496] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7707), 1, + sym__newline, + ACTIONS(7709), 1, + sym__space, + ACTIONS(7711), 1, anon_sym_DASH_DASH, - ACTIONS(8494), 1, + ACTIONS(7713), 1, anon_sym_DASH, - STATE(5343), 1, + STATE(5518), 1, sym_comment, - STATE(5366), 1, - sym_val_variable, - STATE(5662), 1, - sym__variable_name, - STATE(6398), 1, + STATE(5730), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(7467), 1, sym__flag, - STATE(6046), 2, + STATE(4826), 2, sym_short_flag, sym_long_flag, - [202361] = 9, - ACTIONS(247), 1, + [203525] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6072), 1, - anon_sym_LPAREN2, - ACTIONS(8107), 1, - anon_sym_DOLLAR, - ACTIONS(8113), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8115), 1, - aux_sym__immediate_decimal_token5, - STATE(5344), 1, + ACTIONS(1074), 1, + anon_sym_DASH, + STATE(5519), 1, sym_comment, - STATE(6187), 1, - sym__immediate_decimal, - ACTIONS(8111), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6189), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [202391] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6072), 1, - anon_sym_LPAREN2, - ACTIONS(8113), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8115), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8207), 1, + ACTIONS(1076), 7, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_COLON, anon_sym_DOLLAR, - STATE(3525), 1, - sym__immediate_decimal, - STATE(5345), 1, + anon_sym_DASH_DASH, + anon_sym_DOT, + [203544] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(8903), 1, + aux_sym_path_token1, + ACTIONS(8935), 1, + anon_sym_DQUOTE, + ACTIONS(8939), 1, + sym_raw_string_begin, + STATE(1227), 1, + sym_val_string, + STATE(5520), 1, sym_comment, - ACTIONS(8328), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3398), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [202421] = 4, - ACTIONS(247), 1, + ACTIONS(8937), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3170), 2, + sym__raw_str, + sym__str_double_quotes, + [203571] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5346), 1, + STATE(5521), 1, sym_comment, - ACTIONS(1518), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1520), 7, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, + ACTIONS(1060), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [202441] = 4, - ACTIONS(247), 1, + sym__entry_separator, + ACTIONS(1058), 5, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [203590] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1311), 1, + ACTIONS(8943), 1, anon_sym_DASH, - STATE(5347), 1, + STATE(5522), 1, sym_comment, - ACTIONS(1307), 8, + ACTIONS(8941), 7, sym_identifier, - sym__newline, anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [202461] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(6297), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6299), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6722), 1, - anon_sym_DOLLAR, - STATE(4533), 1, - sym__immediate_decimal, - STATE(5348), 1, - sym_comment, - ACTIONS(6346), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(4530), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [202491] = 4, - ACTIONS(247), 1, + [203609] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5349), 1, + ACTIONS(8758), 1, + aux_sym__immediate_decimal_token2, + STATE(5523), 1, sym_comment, - ACTIONS(1540), 2, + ACTIONS(1536), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1542), 7, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, + ACTIONS(1538), 5, + anon_sym_in, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [202511] = 9, - ACTIONS(247), 1, + [203630] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6289), 1, - anon_sym_DOLLAR, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(6297), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6299), 1, - aux_sym__immediate_decimal_token5, - STATE(3721), 1, - sym__immediate_decimal, - STATE(5350), 1, - sym_comment, - ACTIONS(6295), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3719), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [202541] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6072), 1, - anon_sym_LPAREN2, - ACTIONS(8113), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8115), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8207), 1, - anon_sym_DOLLAR, - STATE(3417), 1, - sym__immediate_decimal, - STATE(5351), 1, + ACTIONS(445), 1, + anon_sym_DQUOTE, + ACTIONS(449), 1, + sym_raw_string_begin, + ACTIONS(8909), 1, + aux_sym_path_token1, + STATE(1504), 1, + sym_val_string, + STATE(5524), 1, sym_comment, - ACTIONS(8328), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3415), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [202571] = 9, - ACTIONS(247), 1, + ACTIONS(447), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(2074), 2, + sym__raw_str, + sym__str_double_quotes, + [203657] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6072), 1, - anon_sym_LPAREN2, - ACTIONS(8113), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8115), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8207), 1, - anon_sym_DOLLAR, - STATE(3509), 1, - sym__immediate_decimal, - STATE(5352), 1, + ACTIONS(8945), 1, + anon_sym_EQ2, + ACTIONS(8947), 1, + sym_short_flag_identifier, + STATE(5525), 1, sym_comment, - ACTIONS(8328), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3395), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [202601] = 5, + ACTIONS(4925), 3, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_as, + ACTIONS(4927), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [203680] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8631), 1, + ACTIONS(8949), 1, aux_sym__immediate_decimal_token2, - STATE(5353), 1, + STATE(5526), 1, sym_comment, - ACTIONS(1721), 4, - anon_sym_RBRACK, + ACTIONS(1769), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1723), 4, + aux_sym__unquoted_in_record_token2, + ACTIONS(1771), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [202623] = 4, - ACTIONS(247), 1, + [203701] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5354), 1, + ACTIONS(3544), 1, + anon_sym_DQUOTE, + ACTIONS(3554), 1, + sym_raw_string_begin, + ACTIONS(8951), 1, + aux_sym_path_token1, + STATE(3618), 1, + sym_val_string, + STATE(5527), 1, + sym_comment, + ACTIONS(3546), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3606), 2, + sym__raw_str, + sym__str_double_quotes, + [203728] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5528), 1, sym_comment, - ACTIONS(1554), 2, + ACTIONS(1769), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1556), 7, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, + aux_sym__unquoted_in_list_token2, + ACTIONS(1771), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [202643] = 4, - ACTIONS(247), 1, + sym__entry_separator, + [203747] = 6, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5355), 1, + ACTIONS(8953), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8955), 1, + aux_sym__immediate_decimal_token2, + STATE(5529), 1, sym_comment, - ACTIONS(1653), 2, + ACTIONS(1703), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1655), 7, + ACTIONS(1705), 4, anon_sym_PIPE, - anon_sym_if, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [202663] = 9, - ACTIONS(247), 1, + [203770] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(6297), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6299), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6301), 1, - anon_sym_DOLLAR, - STATE(1875), 1, - sym__immediate_decimal, - STATE(5356), 1, - sym_comment, - ACTIONS(6346), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1874), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [202693] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6072), 1, - anon_sym_LPAREN2, - ACTIONS(6078), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6080), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7837), 1, - anon_sym_DOLLAR, - STATE(3509), 1, - sym__immediate_decimal, - STATE(5357), 1, + ACTIONS(2175), 1, + sym_raw_string_begin, + ACTIONS(4255), 1, + anon_sym_DQUOTE, + ACTIONS(8957), 1, + aux_sym_path_token1, + STATE(4653), 1, + sym_val_string, + STATE(5530), 1, sym_comment, - ACTIONS(6084), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3395), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [202723] = 9, - ACTIONS(247), 1, + ACTIONS(4257), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4660), 2, + sym__raw_str, + sym__str_double_quotes, + [203797] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6291), 1, - anon_sym_LPAREN2, - ACTIONS(6297), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6299), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6301), 1, - anon_sym_DOLLAR, - STATE(3815), 1, - sym__immediate_decimal, - STATE(5358), 1, + ACTIONS(8959), 1, + anon_sym_DQUOTE, + ACTIONS(8963), 1, + aux_sym_path_token1, + ACTIONS(8965), 1, + sym_raw_string_begin, + STATE(1218), 1, + sym_val_string, + STATE(5531), 1, sym_comment, - ACTIONS(6346), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1876), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [202753] = 4, - ACTIONS(247), 1, + ACTIONS(8961), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1237), 2, + sym__raw_str, + sym__str_double_quotes, + [203824] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8635), 1, + ACTIONS(5073), 1, anon_sym_DASH, - STATE(5359), 1, + STATE(5532), 1, sym_comment, - ACTIONS(8633), 8, - anon_sym_EQ, + ACTIONS(5071), 7, sym__newline, anon_sym_SEMI, - anon_sym_COLON, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_in, anon_sym_RBRACE, - [202773] = 5, - ACTIONS(3), 1, + anon_sym_as, + [203843] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8637), 1, + ACTIONS(8967), 1, + anon_sym_DQUOTE, + ACTIONS(8971), 1, + aux_sym_path_token1, + ACTIONS(8973), 1, + sym_raw_string_begin, + STATE(2220), 1, + sym_val_string, + STATE(5533), 1, + sym_comment, + ACTIONS(8969), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(2092), 2, + sym__raw_str, + sym__str_double_quotes, + [203870] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(8935), 1, + anon_sym_DQUOTE, + ACTIONS(8939), 1, + sym_raw_string_begin, + ACTIONS(8975), 1, + aux_sym_path_token1, + STATE(3172), 1, + sym_val_string, + STATE(5534), 1, + sym_comment, + ACTIONS(8937), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3170), 2, + sym__raw_str, + sym__str_double_quotes, + [203897] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(8977), 1, + anon_sym_DOT, + ACTIONS(8979), 1, aux_sym__immediate_decimal_token2, - STATE(5360), 1, + STATE(5535), 1, sym_comment, - ACTIONS(1554), 3, - sym__newline, + ACTIONS(1715), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1556), 5, - sym__space, + ACTIONS(1717), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [202795] = 9, - ACTIONS(247), 1, + [203920] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6072), 1, - anon_sym_LPAREN2, - ACTIONS(8207), 1, - anon_sym_DOLLAR, - ACTIONS(8211), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8213), 1, - aux_sym__immediate_decimal_token5, - STATE(5361), 1, + ACTIONS(1991), 1, + sym_raw_string_begin, + ACTIONS(4293), 1, + anon_sym_DQUOTE, + ACTIONS(8981), 1, + aux_sym_path_token1, + STATE(4554), 1, + sym_val_string, + STATE(5536), 1, sym_comment, - STATE(7324), 1, - sym__immediate_decimal, - ACTIONS(8209), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3395), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [202825] = 8, - ACTIONS(247), 1, + ACTIONS(4295), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4414), 2, + sym__raw_str, + sym__str_double_quotes, + [203947] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4742), 1, - aux_sym_unquoted_token2, - ACTIONS(8639), 1, - anon_sym_DOT_DOT2, - ACTIONS(8643), 1, - sym_filesize_unit, - ACTIONS(8645), 1, - sym_duration_unit, - STATE(5362), 1, + ACTIONS(8983), 1, + anon_sym_DQUOTE, + ACTIONS(8987), 1, + aux_sym_path_token1, + ACTIONS(8989), 1, + sym_raw_string_begin, + STATE(1301), 1, + sym_val_string, + STATE(5537), 1, sym_comment, - ACTIONS(8641), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1572), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [202853] = 5, - ACTIONS(247), 1, + ACTIONS(8985), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1277), 2, + sym__raw_str, + sym__str_double_quotes, + [203974] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1028), 1, - anon_sym_DASH, - ACTIONS(8647), 1, - anon_sym_QMARK2, - STATE(5363), 1, + ACTIONS(8991), 1, + anon_sym_DQUOTE, + ACTIONS(8995), 1, + aux_sym_path_token1, + ACTIONS(8997), 1, + sym_raw_string_begin, + STATE(1474), 1, + sym_val_string, + STATE(5538), 1, sym_comment, - ACTIONS(1030), 7, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_COLON, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DOT, - [202875] = 9, - ACTIONS(247), 1, + ACTIONS(8993), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1447), 2, + sym__raw_str, + sym__str_double_quotes, + [204001] = 8, + ACTIONS(235), 1, + anon_sym_DQUOTE, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6070), 1, - anon_sym_DOLLAR, - ACTIONS(6072), 1, - anon_sym_LPAREN2, - ACTIONS(6078), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6080), 1, - aux_sym__immediate_decimal_token5, - STATE(3491), 1, - sym__immediate_decimal, - STATE(5364), 1, + ACTIONS(251), 1, + sym_raw_string_begin, + ACTIONS(8999), 1, + aux_sym_path_token1, + STATE(5539), 1, sym_comment, - ACTIONS(6076), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3367), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [202905] = 4, - ACTIONS(3), 1, + STATE(6728), 1, + sym_val_string, + ACTIONS(237), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1540), 2, + sym__raw_str, + sym__str_double_quotes, + [204028] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5365), 1, + ACTIONS(9001), 1, + anon_sym_DQUOTE, + ACTIONS(9005), 1, + aux_sym_path_token1, + ACTIONS(9007), 1, + sym_raw_string_begin, + STATE(4175), 1, + sym_val_string, + STATE(5540), 1, sym_comment, - ACTIONS(1518), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1520), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [202925] = 4, - ACTIONS(247), 1, + ACTIONS(9003), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4257), 2, + sym__raw_str, + sym__str_double_quotes, + [204055] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8651), 1, - anon_sym_DASH, - STATE(5366), 1, + ACTIONS(9009), 1, + anon_sym_DQUOTE, + ACTIONS(9013), 1, + aux_sym_path_token1, + ACTIONS(9015), 1, + sym_raw_string_begin, + STATE(2665), 1, + sym_val_string, + STATE(5541), 1, sym_comment, - ACTIONS(8649), 8, - anon_sym_EQ, + ACTIONS(9011), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(2646), 2, + sym__raw_str, + sym__str_double_quotes, + [204082] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(9017), 1, + anon_sym_DQUOTE, + ACTIONS(9021), 1, + aux_sym_path_token1, + ACTIONS(9023), 1, + sym_raw_string_begin, + STATE(4130), 1, + sym_val_string, + STATE(5542), 1, + sym_comment, + ACTIONS(9019), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4134), 2, + sym__raw_str, + sym__str_double_quotes, + [204109] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(9025), 1, + anon_sym_DQUOTE, + ACTIONS(9029), 1, + aux_sym_path_token1, + ACTIONS(9031), 1, + sym_raw_string_begin, + STATE(3444), 1, + sym_val_string, + STATE(5543), 1, + sym_comment, + ACTIONS(9027), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3456), 2, + sym__raw_str, + sym__str_double_quotes, + [204136] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(519), 1, + anon_sym_DQUOTE, + ACTIONS(529), 1, + sym_raw_string_begin, + ACTIONS(9033), 1, + aux_sym_path_token1, + STATE(2683), 1, + sym_val_string, + STATE(5544), 1, + sym_comment, + ACTIONS(521), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1820), 2, + sym__raw_str, + sym__str_double_quotes, + [204163] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(9035), 1, + anon_sym_DQUOTE, + ACTIONS(9039), 1, + aux_sym_path_token1, + ACTIONS(9041), 1, + sym_raw_string_begin, + STATE(1270), 1, + sym_val_string, + STATE(5545), 1, + sym_comment, + ACTIONS(9037), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1264), 2, + sym__raw_str, + sym__str_double_quotes, + [204190] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(9043), 1, + anon_sym_DQUOTE, + ACTIONS(9047), 1, + aux_sym_path_token1, + ACTIONS(9049), 1, + sym_raw_string_begin, + STATE(4111), 1, + sym_val_string, + STATE(5546), 1, + sym_comment, + ACTIONS(9045), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4043), 2, + sym__raw_str, + sym__str_double_quotes, + [204217] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(8999), 1, + aux_sym_path_token1, + ACTIONS(9051), 1, + anon_sym_DQUOTE, + ACTIONS(9055), 1, + sym_raw_string_begin, + STATE(5547), 1, + sym_comment, + STATE(6728), 1, + sym_val_string, + ACTIONS(9053), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(6869), 2, + sym__raw_str, + sym__str_double_quotes, + [204244] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(9057), 1, + anon_sym_DQUOTE, + ACTIONS(9061), 1, + aux_sym_path_token1, + ACTIONS(9063), 1, + sym_raw_string_begin, + STATE(2719), 1, + sym_val_string, + STATE(5548), 1, + sym_comment, + ACTIONS(9059), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(2697), 2, + sym__raw_str, + sym__str_double_quotes, + [204271] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(9065), 1, + anon_sym_DQUOTE, + ACTIONS(9069), 1, + aux_sym_path_token1, + ACTIONS(9071), 1, + sym_raw_string_begin, + STATE(2921), 1, + sym_val_string, + STATE(5549), 1, + sym_comment, + ACTIONS(9067), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(2928), 2, + sym__raw_str, + sym__str_double_quotes, + [204298] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(9073), 1, + sym_long_flag_identifier, + ACTIONS(9075), 1, + anon_sym_EQ2, + STATE(5550), 1, + sym_comment, + ACTIONS(4937), 2, + anon_sym_DASH, + anon_sym_as, + ACTIONS(4939), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - [202945] = 9, - ACTIONS(247), 1, + [204321] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3545), 1, - anon_sym_DOLLAR, - ACTIONS(6072), 1, - anon_sym_LPAREN2, - ACTIONS(6078), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6080), 1, - aux_sym__immediate_decimal_token5, - STATE(5367), 1, + ACTIONS(9077), 1, + anon_sym_DQUOTE, + ACTIONS(9081), 1, + aux_sym_path_token1, + ACTIONS(9083), 1, + sym_raw_string_begin, + STATE(520), 1, + sym_val_string, + STATE(5551), 1, sym_comment, - STATE(6586), 1, - sym__immediate_decimal, - ACTIONS(6076), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(5879), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [202975] = 9, - ACTIONS(247), 1, + ACTIONS(9079), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(504), 2, + sym__raw_str, + sym__str_double_quotes, + [204348] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6072), 1, - anon_sym_LPAREN2, - ACTIONS(6078), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6080), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7837), 1, - anon_sym_DOLLAR, - STATE(3525), 1, - sym__immediate_decimal, - STATE(5368), 1, + ACTIONS(3592), 1, + anon_sym_DQUOTE, + ACTIONS(3602), 1, + sym_raw_string_begin, + ACTIONS(9085), 1, + aux_sym_path_token1, + STATE(4702), 1, + sym_val_string, + STATE(5552), 1, sym_comment, - ACTIONS(6084), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3398), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [203005] = 9, - ACTIONS(247), 1, + ACTIONS(3594), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4768), 2, + sym__raw_str, + sym__str_double_quotes, + [204375] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6072), 1, - anon_sym_LPAREN2, - ACTIONS(6078), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6080), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7837), 1, - anon_sym_DOLLAR, - STATE(3417), 1, - sym__immediate_decimal, - STATE(5369), 1, + ACTIONS(9087), 1, + anon_sym_DQUOTE, + ACTIONS(9091), 1, + aux_sym_path_token1, + ACTIONS(9093), 1, + sym_raw_string_begin, + STATE(4298), 1, + sym_val_string, + STATE(5553), 1, sym_comment, - ACTIONS(6084), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3415), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [203035] = 9, - ACTIONS(247), 1, + ACTIONS(9089), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4294), 2, + sym__raw_str, + sym__str_double_quotes, + [204402] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6070), 1, - anon_sym_DOLLAR, - ACTIONS(6072), 1, - anon_sym_LPAREN2, - ACTIONS(8113), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8115), 1, - aux_sym__immediate_decimal_token5, - STATE(5370), 1, + ACTIONS(4349), 1, + anon_sym_DQUOTE, + ACTIONS(4359), 1, + sym_raw_string_begin, + ACTIONS(9095), 1, + aux_sym_path_token1, + STATE(3550), 1, + sym_val_string, + STATE(5554), 1, sym_comment, - STATE(6057), 1, - sym__immediate_decimal, - ACTIONS(8111), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6055), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [203065] = 9, - ACTIONS(247), 1, + ACTIONS(4351), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3545), 2, + sym__raw_str, + sym__str_double_quotes, + [204429] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6072), 1, - anon_sym_LPAREN2, - ACTIONS(6078), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6080), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6082), 1, - anon_sym_DOLLAR, - STATE(3525), 1, - sym__immediate_decimal, - STATE(5371), 1, + ACTIONS(9097), 1, + anon_sym_DQUOTE, + ACTIONS(9101), 1, + aux_sym_path_token1, + ACTIONS(9103), 1, + sym_raw_string_begin, + STATE(2678), 1, + sym_val_string, + STATE(5555), 1, sym_comment, - ACTIONS(6084), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3398), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [203095] = 9, - ACTIONS(247), 1, + ACTIONS(9099), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(2661), 2, + sym__raw_str, + sym__str_double_quotes, + [204456] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3925), 1, - anon_sym_LPAREN2, - ACTIONS(3931), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(3933), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8043), 1, - anon_sym_DOLLAR, - STATE(1511), 1, - sym__immediate_decimal, - STATE(5372), 1, + ACTIONS(9105), 1, + anon_sym_DQUOTE, + ACTIONS(9109), 1, + aux_sym_path_token1, + ACTIONS(9111), 1, + sym_raw_string_begin, + STATE(2896), 1, + sym_val_string, + STATE(5556), 1, sym_comment, - ACTIONS(3929), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1876), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [203125] = 7, - ACTIONS(3), 1, + ACTIONS(9107), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(2867), 2, + sym__raw_str, + sym__str_double_quotes, + [204483] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8478), 1, - anon_sym_DOT, - STATE(5321), 1, - aux_sym_cell_path_repeat1, - STATE(5373), 1, + ACTIONS(9113), 1, + anon_sym_DQUOTE, + ACTIONS(9117), 1, + aux_sym_path_token1, + ACTIONS(9119), 1, + sym_raw_string_begin, + STATE(168), 1, + sym_val_string, + STATE(5557), 1, sym_comment, + ACTIONS(9115), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(170), 2, + sym__raw_str, + sym__str_double_quotes, + [204510] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(9121), 1, + anon_sym_DQUOTE, + ACTIONS(9125), 1, + aux_sym_path_token1, + ACTIONS(9127), 1, + sym_raw_string_begin, + STATE(465), 1, + sym_val_string, STATE(5558), 1, - sym_path, - ACTIONS(1011), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(1013), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [203151] = 6, - ACTIONS(247), 1, + sym_comment, + ACTIONS(9123), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(459), 2, + sym__raw_str, + sym__str_double_quotes, + [204537] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8653), 1, - anon_sym_DOT, - ACTIONS(8655), 1, - aux_sym__immediate_decimal_token2, - STATE(5374), 1, + ACTIONS(9129), 1, + anon_sym_DQUOTE, + ACTIONS(9133), 1, + aux_sym_path_token1, + ACTIONS(9135), 1, + sym_raw_string_begin, + STATE(339), 1, + sym_val_string, + STATE(5559), 1, sym_comment, - ACTIONS(1518), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1520), 5, - anon_sym_in, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [203175] = 4, - ACTIONS(247), 1, + ACTIONS(9131), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(333), 2, + sym__raw_str, + sym__str_double_quotes, + [204564] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5375), 1, + ACTIONS(9137), 1, + anon_sym_DQUOTE, + ACTIONS(9141), 1, + aux_sym_path_token1, + ACTIONS(9143), 1, + sym_raw_string_begin, + STATE(315), 1, + sym_val_string, + STATE(5560), 1, sym_comment, - ACTIONS(1556), 3, + ACTIONS(9139), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(302), 2, + sym__raw_str, + sym__str_double_quotes, + [204591] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2287), 1, + aux_sym_unquoted_token4, + STATE(5561), 1, + sym_comment, + ACTIONS(2281), 3, anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_as, + ACTIONS(2285), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [204612] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(5562), 1, + sym_comment, + ACTIONS(1538), 3, + anon_sym_DOLLAR, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1554), 6, + ACTIONS(1536), 5, sym_identifier, - anon_sym_DASH, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token2, - [203195] = 6, - ACTIONS(247), 1, + [204631] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8657), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8659), 1, - aux_sym__immediate_decimal_token2, - STATE(5376), 1, + STATE(5563), 1, + sym_comment, + ACTIONS(8070), 8, + sym_raw_string_begin, + sym_identifier, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_AT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [204648] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5564), 1, sym_comment, - ACTIONS(1540), 2, + ACTIONS(1596), 3, + sym__newline, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1542), 5, - anon_sym_in, + ACTIONS(1598), 5, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [203219] = 6, - ACTIONS(247), 1, + [204667] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8661), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8663), 1, - aux_sym__immediate_decimal_token2, - STATE(5377), 1, - sym_comment, - ACTIONS(1659), 2, - anon_sym_DOT_DOT2, + ACTIONS(1628), 1, + anon_sym_DASH, + ACTIONS(6929), 1, aux_sym_unquoted_token2, - ACTIONS(1661), 5, + STATE(5565), 1, + sym_comment, + ACTIONS(1640), 6, sym__newline, - anon_sym_LBRACE, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [203243] = 9, - ACTIONS(247), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [204688] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3925), 1, - anon_sym_LPAREN2, - ACTIONS(4099), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4101), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8043), 1, - anon_sym_DOLLAR, - STATE(1875), 1, - sym__immediate_decimal, - STATE(5378), 1, + ACTIONS(1066), 1, + anon_sym_DASH, + STATE(5566), 1, sym_comment, - ACTIONS(4097), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1874), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [203273] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6072), 1, - anon_sym_LPAREN2, - ACTIONS(6082), 1, + ACTIONS(1068), 7, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_COLON, anon_sym_DOLLAR, - ACTIONS(8113), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8115), 1, - aux_sym__immediate_decimal_token5, - STATE(3417), 1, - sym__immediate_decimal, - STATE(5379), 1, - sym_comment, - ACTIONS(8328), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3415), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [203303] = 9, - ACTIONS(247), 1, + anon_sym_DASH_DASH, + anon_sym_DOT, + [204707] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6072), 1, - anon_sym_LPAREN2, - ACTIONS(6082), 1, + ACTIONS(1070), 1, + anon_sym_DASH, + STATE(5567), 1, + sym_comment, + ACTIONS(1072), 7, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_COLON, anon_sym_DOLLAR, - ACTIONS(8113), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8115), 1, - aux_sym__immediate_decimal_token5, - STATE(3509), 1, - sym__immediate_decimal, - STATE(5380), 1, + anon_sym_DASH_DASH, + anon_sym_DOT, + [204726] = 7, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(8268), 1, + anon_sym_DOT, + STATE(2752), 1, + sym_path, + STATE(3790), 1, + sym_cell_path, + STATE(5224), 1, + aux_sym_cell_path_repeat1, + STATE(5568), 1, sym_comment, - ACTIONS(8328), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3395), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [203333] = 9, - ACTIONS(247), 1, + ACTIONS(1672), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [204751] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7823), 1, - anon_sym_LPAREN2, - ACTIONS(8542), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8544), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8546), 1, + ACTIONS(1628), 1, + sym_identifier, + ACTIONS(1640), 1, anon_sym_DOLLAR, - STATE(2933), 1, - sym__immediate_decimal, - STATE(5381), 1, + ACTIONS(4614), 1, + anon_sym_DOT_DOT2, + ACTIONS(8580), 1, + aux_sym_unquoted_token2, + ACTIONS(9145), 1, + sym_filesize_unit, + ACTIONS(9147), 1, + sym_duration_unit, + STATE(5569), 1, sym_comment, - ACTIONS(8067), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2936), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [203363] = 9, - ACTIONS(247), 1, + ACTIONS(4616), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [204780] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6072), 1, - anon_sym_LPAREN2, - ACTIONS(6078), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6080), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6082), 1, - anon_sym_DOLLAR, - STATE(3509), 1, - sym__immediate_decimal, - STATE(5382), 1, + ACTIONS(2275), 1, + aux_sym_unquoted_token4, + STATE(5570), 1, sym_comment, - ACTIONS(6084), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3395), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [203393] = 6, - ACTIONS(247), 1, + ACTIONS(1090), 3, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_as, + ACTIONS(1092), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [204801] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8665), 1, - anon_sym_DOT, - ACTIONS(8667), 1, + ACTIONS(8854), 1, aux_sym__immediate_decimal_token2, - STATE(5383), 1, + STATE(5571), 1, sym_comment, - ACTIONS(1667), 2, + ACTIONS(1715), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1669), 5, + ACTIONS(1717), 5, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [203417] = 9, - ACTIONS(247), 1, + [204822] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6072), 1, - anon_sym_LPAREN2, - ACTIONS(6082), 1, + ACTIONS(9151), 1, + anon_sym_COLON, + ACTIONS(9153), 1, + anon_sym_COMMA, + STATE(5572), 1, + sym_comment, + ACTIONS(9149), 6, + sym_raw_string_begin, + sym_identifier, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [204843] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(5573), 1, + sym_comment, + ACTIONS(1530), 3, anon_sym_DOLLAR, - ACTIONS(8113), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8115), 1, - aux_sym__immediate_decimal_token5, - STATE(3525), 1, - sym__immediate_decimal, - STATE(5384), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1528), 5, + sym_identifier, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [204862] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(5574), 1, sym_comment, - ACTIONS(8328), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3398), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [203447] = 4, + ACTIONS(7753), 8, + sym_raw_string_begin, + sym_identifier, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_AT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [204879] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + STATE(5575), 1, + sym_comment, + ACTIONS(2293), 3, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_as, + ACTIONS(2297), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [204900] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5576), 1, + sym_comment, + ACTIONS(2289), 4, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_as, + aux_sym_unquoted_token4, + ACTIONS(2291), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [204919] = 9, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1628), 1, + sym__newline, + ACTIONS(1640), 1, + sym__space, + ACTIONS(4614), 1, + anon_sym_DOT_DOT2, + ACTIONS(7021), 1, + aux_sym_unquoted_token2, + ACTIONS(9155), 1, + sym_filesize_unit, + ACTIONS(9157), 1, + sym_duration_unit, + STATE(5577), 1, + sym_comment, + ACTIONS(4616), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [204948] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5578), 1, + sym_comment, + ACTIONS(1826), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1828), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [204967] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(4947), 1, + anon_sym_DASH, + ACTIONS(9159), 1, + anon_sym_EQ2, + STATE(5579), 1, + sym_comment, + ACTIONS(4945), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [204988] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5385), 1, + STATE(5580), 1, sym_comment, - ACTIONS(1540), 3, - anon_sym_RBRACE, + ACTIONS(1711), 3, + sym__newline, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1542), 6, - anon_sym_LPAREN2, + aux_sym_unquoted_token2, + ACTIONS(1713), 5, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - sym__entry_separator, - [203467] = 9, - ACTIONS(247), 1, + [205007] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6072), 1, - anon_sym_LPAREN2, - ACTIONS(7837), 1, - anon_sym_DOLLAR, - ACTIONS(7841), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7843), 1, - aux_sym__immediate_decimal_token5, - STATE(5386), 1, - sym_comment, - STATE(6084), 1, - sym__immediate_decimal, - ACTIONS(7839), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3395), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [203497] = 10, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6082), 1, - anon_sym_DOLLAR, - ACTIONS(8231), 1, - sym_identifier, - ACTIONS(8492), 1, - anon_sym_DASH_DASH, - ACTIONS(8494), 1, + ACTIONS(5053), 1, anon_sym_DASH, - STATE(5366), 1, - sym_val_variable, - STATE(5387), 1, + STATE(5581), 1, sym_comment, - STATE(5634), 1, - sym__variable_name, - STATE(6613), 1, - sym__flag, - STATE(6046), 2, - sym_short_flag, - sym_long_flag, - [203529] = 4, - ACTIONS(247), 1, + ACTIONS(5051), 7, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, + [205026] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5388), 1, + STATE(5582), 1, sym_comment, - ACTIONS(1655), 3, - anon_sym_DASH_DASH, + ACTIONS(1598), 3, + anon_sym_DOLLAR, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1653), 6, + ACTIONS(1596), 5, sym_identifier, - anon_sym_DASH, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token2, - [203549] = 4, - ACTIONS(247), 1, + [205045] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4992), 1, + ACTIONS(5061), 1, anon_sym_DASH, - STATE(5389), 1, + STATE(5583), 1, sym_comment, - ACTIONS(4990), 7, + ACTIONS(5059), 7, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -389406,254 +398748,454 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_RBRACE, anon_sym_as, - [203568] = 4, - ACTIONS(247), 1, + [205064] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(9161), 1, + aux_sym__immediate_decimal_token2, + STATE(5584), 1, + sym_comment, + ACTIONS(1769), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1771), 5, + sym__newline, + anon_sym_LBRACE, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [205085] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(5585), 1, + sym_comment, + ACTIONS(9163), 8, + sym_raw_string_begin, + sym_identifier, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_AT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [205102] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1664), 1, + anon_sym_DOT_DOT2, + ACTIONS(8875), 1, + anon_sym_DOT, + STATE(1268), 1, + sym_path, + STATE(1681), 1, + sym_cell_path, + STATE(5586), 1, + sym_comment, + STATE(5727), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1668), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [205129] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5034), 1, + ACTIONS(4991), 1, anon_sym_DASH, - STATE(5390), 1, + ACTIONS(9165), 1, + anon_sym_EQ2, + STATE(5587), 1, sym_comment, - ACTIONS(5032), 7, + ACTIONS(4989), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_in, anon_sym_RBRACE, anon_sym_as, - [203587] = 9, - ACTIONS(247), 1, + [205150] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1560), 1, - sym_identifier, - ACTIONS(1572), 1, - anon_sym_DOLLAR, - ACTIONS(4512), 1, + ACTIONS(1670), 1, anon_sym_DOT_DOT2, - ACTIONS(8350), 1, - aux_sym_unquoted_token2, - ACTIONS(8669), 1, - sym_filesize_unit, - ACTIONS(8671), 1, - sym_duration_unit, - STATE(5391), 1, + ACTIONS(8875), 1, + anon_sym_DOT, + STATE(1268), 1, + sym_path, + STATE(1635), 1, + sym_cell_path, + STATE(5588), 1, sym_comment, - ACTIONS(4514), 2, + STATE(5727), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1672), 3, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [203616] = 5, + [205177] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(9169), 1, + anon_sym_COLON, + ACTIONS(9171), 1, + anon_sym_COMMA, + STATE(5589), 1, + sym_comment, + ACTIONS(9167), 6, + sym_raw_string_begin, + sym_identifier, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [205198] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8584), 1, - aux_sym__immediate_decimal_token2, - STATE(5392), 1, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + STATE(5590), 1, sym_comment, - ACTIONS(1667), 3, + ACTIONS(2303), 3, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_as, + ACTIONS(2305), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, + [205219] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(9173), 1, + aux_sym__immediate_decimal_token2, + STATE(5591), 1, + sym_comment, + ACTIONS(1596), 2, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1669), 4, - anon_sym_LPAREN2, + aux_sym_unquoted_token2, + ACTIONS(1598), 5, + anon_sym_in, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [203637] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4131), 1, - anon_sym_DQUOTE, - ACTIONS(8673), 1, - sym_identifier, - ACTIONS(8675), 1, - anon_sym_GT, - STATE(4744), 1, - sym__str_double_quotes, - STATE(5393), 1, - sym_comment, - STATE(5520), 1, - aux_sym_collection_type_repeat1, - STATE(5550), 1, - sym_val_string, - ACTIONS(4133), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [203666] = 6, - ACTIONS(247), 1, + sym_filesize_unit, + sym_duration_unit, + [205240] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8677), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8679), 1, + ACTIONS(9175), 1, aux_sym__immediate_decimal_token2, - STATE(5394), 1, + STATE(5592), 1, sym_comment, - ACTIONS(1659), 2, + ACTIONS(1769), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1661), 4, + ACTIONS(1771), 5, anon_sym_PIPE, + anon_sym_if, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [203689] = 5, - ACTIONS(247), 1, + [205261] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8681), 1, - aux_sym__immediate_decimal_token2, - STATE(5395), 1, + STATE(5593), 1, sym_comment, - ACTIONS(1721), 2, + ACTIONS(1713), 3, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1711), 5, + sym_identifier, anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, aux_sym_unquoted_token2, - ACTIONS(1723), 5, - sym__newline, - anon_sym_LBRACE, - anon_sym_LPAREN2, + [205280] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6506), 1, + sym_filesize_unit, + ACTIONS(6508), 1, + sym_duration_unit, + ACTIONS(8580), 1, + aux_sym_unquoted_token2, + ACTIONS(9177), 1, + anon_sym_DOT_DOT2, + STATE(5594), 1, + sym_comment, + ACTIONS(1640), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(9179), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [203710] = 9, - ACTIONS(247), 1, + [205307] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4131), 1, + ACTIONS(3494), 1, anon_sym_DQUOTE, - ACTIONS(8673), 1, - sym_identifier, - ACTIONS(8683), 1, - anon_sym_GT, - STATE(4744), 1, - sym__str_double_quotes, - STATE(5396), 1, - sym_comment, - STATE(5405), 1, - aux_sym_collection_type_repeat1, - STATE(5550), 1, + ACTIONS(3504), 1, + sym_raw_string_begin, + ACTIONS(9033), 1, + aux_sym_path_token1, + STATE(2683), 1, sym_val_string, - ACTIONS(4133), 2, + STATE(5595), 1, + sym_comment, + ACTIONS(3496), 2, sym__str_single_quotes, sym__str_back_ticks, - [203739] = 5, - ACTIONS(3), 1, + STATE(2932), 2, + sym__raw_str, + sym__str_double_quotes, + [205334] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8685), 1, - aux_sym__immediate_decimal_token2, - STATE(5397), 1, + STATE(5596), 1, sym_comment, - ACTIONS(1721), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1723), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [203760] = 9, + ACTIONS(8086), 8, + sym_raw_string_begin, + sym_identifier, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_AT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [205351] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1560), 1, + STATE(5597), 1, + sym_comment, + ACTIONS(1536), 3, sym__newline, - ACTIONS(1572), 1, - sym__space, - ACTIONS(4512), 1, anon_sym_DOT_DOT2, - ACTIONS(6872), 1, aux_sym_unquoted_token2, - ACTIONS(8687), 1, + ACTIONS(1538), 5, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym_filesize_unit, - ACTIONS(8689), 1, sym_duration_unit, - STATE(5398), 1, + [205370] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(5598), 1, sym_comment, - ACTIONS(4514), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [203789] = 6, - ACTIONS(247), 1, + ACTIONS(1060), 8, + sym_raw_string_begin, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [205387] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8691), 1, - anon_sym_EQ2, - ACTIONS(8693), 1, - sym_short_flag_identifier, - STATE(5399), 1, + ACTIONS(9181), 1, + anon_sym_DQUOTE, + ACTIONS(9185), 1, + aux_sym_path_token1, + ACTIONS(9187), 1, + sym_raw_string_begin, + STATE(1244), 1, + sym_val_string, + STATE(5599), 1, sym_comment, - ACTIONS(4781), 3, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_as, - ACTIONS(4783), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [203812] = 7, - ACTIONS(247), 1, + ACTIONS(9183), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1266), 2, + sym__raw_str, + sym__str_double_quotes, + [205414] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8695), 1, - anon_sym_DASH_DASH, - ACTIONS(8698), 1, + ACTIONS(1021), 1, anon_sym_DASH, - STATE(5902), 1, - sym__flag, - ACTIONS(8247), 2, + ACTIONS(8542), 1, + anon_sym_DOT, + STATE(4587), 1, + sym_cell_path, + STATE(5290), 1, + aux_sym_cell_path_repeat1, + STATE(5519), 1, + sym_path, + STATE(5600), 1, + sym_comment, + ACTIONS(1023), 3, sym_identifier, anon_sym_DOLLAR, - STATE(5400), 2, - sym_comment, - aux_sym_ctrl_do_repeat1, - STATE(6046), 2, - sym_short_flag, - sym_long_flag, - [203837] = 4, + anon_sym_DASH_DASH, + [205441] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5401), 1, + STATE(5601), 1, sym_comment, - ACTIONS(1721), 4, + ACTIONS(1715), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym__unquoted_in_list_token2, - ACTIONS(1723), 4, + ACTIONS(1717), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [203856] = 4, - ACTIONS(247), 1, + [205460] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5402), 1, + STATE(5602), 1, sym_comment, - ACTIONS(1520), 3, - anon_sym_DOLLAR, + ACTIONS(8078), 8, + sym_raw_string_begin, + sym_identifier, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_AT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [205477] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(5603), 1, + sym_comment, + ACTIONS(8116), 8, + sym_raw_string_begin, + sym_identifier, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_AT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [205494] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(9189), 1, + anon_sym_DQUOTE, + ACTIONS(9193), 1, + aux_sym_path_token1, + ACTIONS(9195), 1, + sym_raw_string_begin, + STATE(2417), 1, + sym_val_string, + STATE(5604), 1, + sym_comment, + ACTIONS(9191), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(2366), 2, + sym__raw_str, + sym__str_double_quotes, + [205521] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(3842), 1, + anon_sym_DQUOTE, + ACTIONS(3848), 1, + sym_raw_string_begin, + ACTIONS(9033), 1, + aux_sym_path_token1, + STATE(2683), 1, + sym_val_string, + STATE(5605), 1, + sym_comment, + ACTIONS(3844), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4434), 2, + sym__raw_str, + sym__str_double_quotes, + [205548] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(5606), 1, + sym_comment, + ACTIONS(8082), 8, + sym_raw_string_begin, + sym_identifier, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_AT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [205565] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9197), 1, + anon_sym_QMARK2, + STATE(5607), 1, + sym_comment, + ACTIONS(1050), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1518), 5, - sym_identifier, + sym__entry_separator, + ACTIONS(1048), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [203875] = 4, - ACTIONS(247), 1, + anon_sym_DOT, + [205586] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8703), 1, + ACTIONS(1901), 1, anon_sym_DASH, - STATE(5403), 1, + ACTIONS(8268), 1, + anon_sym_DOT, + STATE(2752), 1, + sym_path, + STATE(4923), 1, + sym_cell_path, + STATE(5224), 1, + aux_sym_cell_path_repeat1, + STATE(5608), 1, sym_comment, - ACTIONS(8701), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, + ACTIONS(1903), 3, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [203894] = 4, - ACTIONS(247), 1, + anon_sym_LBRACE, + [205613] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(5609), 1, + sym_comment, + ACTIONS(1064), 8, + sym_raw_string_begin, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [205630] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(5610), 1, + sym_comment, + ACTIONS(1040), 8, + sym_raw_string_begin, + sym_identifier, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [205647] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4988), 1, + ACTIONS(5077), 1, anon_sym_DASH, - STATE(5404), 1, + STATE(5611), 1, sym_comment, - ACTIONS(4986), 7, + ACTIONS(5075), 7, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -389661,38976 +399203,39951 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_RBRACE, anon_sym_as, - [203913] = 9, - ACTIONS(247), 1, + [205666] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4131), 1, - anon_sym_DQUOTE, - ACTIONS(8673), 1, + ACTIONS(1893), 1, + anon_sym_DASH, + ACTIONS(8542), 1, + anon_sym_DOT, + STATE(4891), 1, + sym_cell_path, + STATE(5290), 1, + aux_sym_cell_path_repeat1, + STATE(5519), 1, + sym_path, + STATE(5612), 1, + sym_comment, + ACTIONS(1895), 3, sym_identifier, - ACTIONS(8705), 1, - anon_sym_GT, - STATE(4744), 1, - sym__str_double_quotes, - STATE(5405), 1, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [205693] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5085), 1, + anon_sym_DASH, + STATE(5613), 1, sym_comment, - STATE(5466), 1, - aux_sym_collection_type_repeat1, - STATE(5550), 1, - sym_val_string, - ACTIONS(4133), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [203942] = 8, - ACTIONS(247), 1, + ACTIONS(5083), 7, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_in, + anon_sym_RBRACE, + anon_sym_as, + [205712] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1832), 1, + ACTIONS(1909), 1, anon_sym_DASH, - ACTIONS(8411), 1, + ACTIONS(8268), 1, anon_sym_DOT, - STATE(4994), 1, + STATE(2752), 1, + sym_path, + STATE(4927), 1, sym_cell_path, - STATE(5242), 1, + STATE(5224), 1, aux_sym_cell_path_repeat1, - STATE(5406), 1, + STATE(5614), 1, sym_comment, - STATE(5513), 1, + ACTIONS(1911), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [205739] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1897), 1, + anon_sym_DASH, + ACTIONS(8542), 1, + anon_sym_DOT, + STATE(4897), 1, + sym_cell_path, + STATE(5290), 1, + aux_sym_cell_path_repeat1, + STATE(5519), 1, sym_path, - ACTIONS(1834), 3, + STATE(5615), 1, + sym_comment, + ACTIONS(1899), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [203969] = 4, - ACTIONS(3), 1, + [205766] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5407), 1, + ACTIONS(1929), 1, + anon_sym_DASH, + ACTIONS(8268), 1, + anon_sym_DOT, + STATE(2752), 1, + sym_path, + STATE(4901), 1, + sym_cell_path, + STATE(5224), 1, + aux_sym_cell_path_repeat1, + STATE(5616), 1, sym_comment, - ACTIONS(1667), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1669), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [203988] = 5, - ACTIONS(247), 1, + ACTIONS(1931), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [205793] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8667), 1, - aux_sym__immediate_decimal_token2, - STATE(5408), 1, + ACTIONS(1993), 1, + anon_sym_DASH, + ACTIONS(8268), 1, + anon_sym_DOT, + STATE(2752), 1, + sym_path, + STATE(4902), 1, + sym_cell_path, + STATE(5224), 1, + aux_sym_cell_path_repeat1, + STATE(5617), 1, sym_comment, - ACTIONS(1667), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1669), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [204009] = 4, - ACTIONS(247), 1, + ACTIONS(1995), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [205820] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5409), 1, + ACTIONS(1997), 1, + anon_sym_DASH, + ACTIONS(8268), 1, + anon_sym_DOT, + STATE(2752), 1, + sym_path, + STATE(4903), 1, + sym_cell_path, + STATE(5224), 1, + aux_sym_cell_path_repeat1, + STATE(5618), 1, sym_comment, - ACTIONS(1542), 3, + ACTIONS(1999), 3, anon_sym_DOLLAR, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1540), 5, - sym_identifier, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [204028] = 4, - ACTIONS(247), 1, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [205847] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1050), 1, + ACTIONS(2001), 1, anon_sym_DASH, - STATE(5410), 1, + ACTIONS(8268), 1, + anon_sym_DOT, + STATE(2752), 1, + sym_path, + STATE(4904), 1, + sym_cell_path, + STATE(5224), 1, + aux_sym_cell_path_repeat1, + STATE(5619), 1, sym_comment, - ACTIONS(1052), 7, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_COLON, + ACTIONS(2003), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_LBRACE, + [205874] = 7, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(9199), 1, + anon_sym_DASH_DASH, + ACTIONS(9202), 1, + anon_sym_DASH, + STATE(6018), 1, + sym__flag, + ACTIONS(8464), 2, + anon_sym_DOLLAR, + anon_sym_LBRACE, + STATE(5620), 2, + sym_comment, + aux_sym_ctrl_do_repeat1, + STATE(6083), 2, + sym_short_flag, + sym_long_flag, + [205899] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(2005), 1, + anon_sym_DASH, + ACTIONS(8268), 1, anon_sym_DOT, - [204047] = 4, - ACTIONS(247), 1, + STATE(2752), 1, + sym_path, + STATE(4905), 1, + sym_cell_path, + STATE(5224), 1, + aux_sym_cell_path_repeat1, + STATE(5621), 1, + sym_comment, + ACTIONS(2007), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [205926] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1054), 1, + ACTIONS(2009), 1, anon_sym_DASH, - STATE(5411), 1, + ACTIONS(8268), 1, + anon_sym_DOT, + STATE(2752), 1, + sym_path, + STATE(4906), 1, + sym_cell_path, + STATE(5224), 1, + aux_sym_cell_path_repeat1, + STATE(5622), 1, sym_comment, - ACTIONS(1056), 7, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_COLON, + ACTIONS(2011), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, + anon_sym_LBRACE, + [205953] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(2013), 1, + anon_sym_DASH, + ACTIONS(8268), 1, anon_sym_DOT, - [204066] = 7, - ACTIONS(247), 1, + STATE(2752), 1, + sym_path, + STATE(4907), 1, + sym_cell_path, + STATE(5224), 1, + aux_sym_cell_path_repeat1, + STATE(5623), 1, + sym_comment, + ACTIONS(2015), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [205980] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5602), 1, + ACTIONS(2017), 1, + anon_sym_DASH, + ACTIONS(8268), 1, anon_sym_DOT, - STATE(2504), 1, + STATE(2752), 1, + sym_path, + STATE(4908), 1, sym_cell_path, - STATE(2632), 1, + STATE(5224), 1, aux_sym_cell_path_repeat1, - STATE(2655), 1, + STATE(5624), 1, + sym_comment, + ACTIONS(2019), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [206007] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(2021), 1, + anon_sym_DASH, + ACTIONS(8268), 1, + anon_sym_DOT, + STATE(2752), 1, sym_path, - STATE(5412), 1, + STATE(4909), 1, + sym_cell_path, + STATE(5224), 1, + aux_sym_cell_path_repeat1, + STATE(5625), 1, sym_comment, - ACTIONS(1677), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [204091] = 4, - ACTIONS(3), 1, + ACTIONS(2023), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [206034] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5413), 1, + ACTIONS(9205), 1, + anon_sym_DQUOTE, + ACTIONS(9209), 1, + aux_sym_path_token1, + ACTIONS(9211), 1, + sym_raw_string_begin, + STATE(425), 1, + sym_val_string, + STATE(5626), 1, sym_comment, - ACTIONS(1044), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(9207), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(429), 2, + sym__raw_str, + sym__str_double_quotes, + [206061] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(9213), 1, + anon_sym_DASH_DASH, + ACTIONS(9215), 1, + anon_sym_DASH, + ACTIONS(9217), 1, + anon_sym_LBRACE, + STATE(5627), 1, + sym_comment, + STATE(7393), 1, + sym_val_record, + STATE(7592), 1, + sym__flag, + STATE(6083), 2, + sym_short_flag, + sym_long_flag, + [206087] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2057), 1, sym__entry_separator, - ACTIONS(1042), 5, + ACTIONS(9219), 1, + anon_sym_DOT, + STATE(5628), 1, + sym_comment, + STATE(5793), 1, + aux_sym_cell_path_repeat1, + STATE(6725), 1, + sym_path, + STATE(6851), 1, + sym_cell_path, + ACTIONS(2055), 2, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, + [206113] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2015), 1, + sym__entry_separator, + ACTIONS(9219), 1, anon_sym_DOT, - [204110] = 5, - ACTIONS(247), 1, + STATE(5629), 1, + sym_comment, + STATE(5793), 1, + aux_sym_cell_path_repeat1, + STATE(6725), 1, + sym_path, + STATE(7053), 1, + sym_cell_path, + ACTIONS(2013), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [206139] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8595), 1, - aux_sym__immediate_decimal_token2, - STATE(5414), 1, + STATE(5630), 1, sym_comment, - ACTIONS(1667), 2, + ACTIONS(1528), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1669), 5, - sym__newline, - anon_sym_LBRACE, - anon_sym_LPAREN2, + ACTIONS(1530), 5, + anon_sym_in, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [204131] = 6, - ACTIONS(247), 1, + sym_filesize_unit, + sym_duration_unit, + [206157] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8707), 1, + ACTIONS(2077), 1, + sym__entry_separator, + ACTIONS(9219), 1, anon_sym_DOT, - ACTIONS(8709), 1, - aux_sym__immediate_decimal_token2, - STATE(5415), 1, + STATE(5631), 1, + sym_comment, + STATE(5793), 1, + aux_sym_cell_path_repeat1, + STATE(6725), 1, + sym_path, + STATE(7080), 1, + sym_cell_path, + ACTIONS(2075), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [206183] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(5632), 1, sym_comment, - ACTIONS(1667), 2, + ACTIONS(1769), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1669), 4, + ACTIONS(1771), 5, anon_sym_PIPE, + anon_sym_if, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [204154] = 5, - ACTIONS(3), 1, + [206201] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8711), 1, - anon_sym_QMARK2, - STATE(5416), 1, + STATE(5633), 1, sym_comment, - ACTIONS(1024), 3, + ACTIONS(1596), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1598), 5, + anon_sym_in, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1022), 4, - anon_sym_RBRACK, + sym_filesize_unit, + sym_duration_unit, + [206219] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(9223), 1, + anon_sym_DASH, + STATE(5634), 1, + sym_comment, + ACTIONS(9221), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_RBRACE, + anon_sym_as, + [206237] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(5635), 1, + sym_comment, + ACTIONS(1826), 2, anon_sym_DOT_DOT2, - anon_sym_DOT, - [204175] = 5, - ACTIONS(3), 1, + aux_sym_unquoted_token2, + ACTIONS(1828), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [206255] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8713), 1, - anon_sym_QMARK2, - STATE(5417), 1, + ACTIONS(9225), 1, + sym_identifier, + ACTIONS(9227), 1, + anon_sym_DASH_DASH, + ACTIONS(9229), 1, + anon_sym_DASH, + STATE(5636), 1, + sym_comment, + STATE(5729), 1, + aux_sym_ctrl_do_repeat1, + STATE(6018), 1, + sym__flag, + STATE(6083), 2, + sym_short_flag, + sym_long_flag, + [206281] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(5637), 1, sym_comment, - ACTIONS(1030), 3, + ACTIONS(1711), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1713), 5, + anon_sym_in, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1028), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, + sym_filesize_unit, + sym_duration_unit, + [206299] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1640), 1, + anon_sym_LBRACE, + ACTIONS(6512), 1, + sym_filesize_unit, + ACTIONS(6514), 1, + sym_duration_unit, + ACTIONS(8580), 1, + aux_sym_unquoted_token2, + ACTIONS(9231), 1, anon_sym_DOT_DOT2, - anon_sym_DOT, - [204196] = 5, - ACTIONS(3), 1, + STATE(5638), 1, + sym_comment, + ACTIONS(9233), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [206325] = 9, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2235), 1, - aux_sym_unquoted_token4, - STATE(5418), 1, + ACTIONS(3296), 1, + aux_sym_record_entry_token1, + ACTIONS(9235), 1, + anon_sym_alias, + ACTIONS(9237), 1, + anon_sym_const, + ACTIONS(9239), 1, + anon_sym_def, + ACTIONS(9241), 1, + anon_sym_extern, + ACTIONS(9243), 1, + anon_sym_module, + ACTIONS(9245), 1, + anon_sym_use, + STATE(5639), 1, sym_comment, - ACTIONS(2229), 3, + [206353] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6211), 1, + anon_sym_LBRACE, + ACTIONS(9213), 1, anon_sym_DASH_DASH, + ACTIONS(9215), 1, anon_sym_DASH, - anon_sym_as, - ACTIONS(2233), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [204217] = 7, - ACTIONS(247), 1, + STATE(5640), 1, + sym_comment, + STATE(6308), 1, + sym_block, + STATE(7512), 1, + sym__flag, + STATE(6083), 2, + sym_short_flag, + sym_long_flag, + [206379] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8715), 1, - anon_sym_DOT, - STATE(2022), 1, - sym_cell_path, - STATE(2655), 1, - sym_path, - STATE(5419), 1, + ACTIONS(6211), 1, + anon_sym_LBRACE, + ACTIONS(9213), 1, + anon_sym_DASH_DASH, + ACTIONS(9215), 1, + anon_sym_DASH, + STATE(5641), 1, sym_comment, - STATE(5555), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1838), 4, - anon_sym_PIPE, - anon_sym_if, + STATE(6327), 1, + sym_block, + STATE(7520), 1, + sym__flag, + STATE(6083), 2, + sym_short_flag, + sym_long_flag, + [206405] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6211), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [204242] = 7, - ACTIONS(247), 1, + ACTIONS(9213), 1, + anon_sym_DASH_DASH, + ACTIONS(9215), 1, + anon_sym_DASH, + STATE(5642), 1, + sym_comment, + STATE(6330), 1, + sym_block, + STATE(7522), 1, + sym__flag, + STATE(6083), 2, + sym_short_flag, + sym_long_flag, + [206431] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8715), 1, - anon_sym_DOT, - STATE(1976), 1, - sym_cell_path, - STATE(2655), 1, - sym_path, - STATE(5420), 1, + STATE(5643), 1, sym_comment, - STATE(5555), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1842), 4, - anon_sym_PIPE, - anon_sym_if, + ACTIONS(1769), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1771), 5, + sym__newline, anon_sym_LBRACE, - anon_sym_EQ_GT, - [204267] = 7, - ACTIONS(247), 1, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [206449] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8715), 1, + ACTIONS(9247), 1, anon_sym_DOT, - STATE(1981), 1, - sym_cell_path, - STATE(2655), 1, + STATE(2752), 1, sym_path, - STATE(5421), 1, + STATE(5644), 1, sym_comment, - STATE(5555), 1, + STATE(5919), 1, aux_sym_cell_path_repeat1, - ACTIONS(1846), 4, + STATE(6905), 1, + sym_cell_path, + ACTIONS(5853), 3, anon_sym_PIPE, anon_sym_if, - anon_sym_LBRACE, anon_sym_EQ_GT, - [204292] = 7, - ACTIONS(247), 1, + [206473] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8715), 1, - anon_sym_DOT, - STATE(1982), 1, - sym_cell_path, - STATE(2655), 1, - sym_path, - STATE(5422), 1, + ACTIONS(6202), 1, + anon_sym_LBRACE, + ACTIONS(9213), 1, + anon_sym_DASH_DASH, + ACTIONS(9215), 1, + anon_sym_DASH, + STATE(5645), 1, sym_comment, - STATE(5555), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1850), 4, - anon_sym_PIPE, - anon_sym_if, + STATE(7087), 1, + sym_block, + STATE(7408), 1, + sym__flag, + STATE(6083), 2, + sym_short_flag, + sym_long_flag, + [206499] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6211), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [204317] = 7, - ACTIONS(247), 1, + ACTIONS(9213), 1, + anon_sym_DASH_DASH, + ACTIONS(9215), 1, + anon_sym_DASH, + STATE(5646), 1, + sym_comment, + STATE(6402), 1, + sym_block, + STATE(7528), 1, + sym__flag, + STATE(6083), 2, + sym_short_flag, + sym_long_flag, + [206525] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8715), 1, - anon_sym_DOT, - STATE(1984), 1, - sym_cell_path, - STATE(2655), 1, - sym_path, - STATE(5423), 1, + ACTIONS(9227), 1, + anon_sym_DASH_DASH, + ACTIONS(9229), 1, + anon_sym_DASH, + ACTIONS(9249), 1, + sym_identifier, + STATE(5647), 1, sym_comment, - STATE(5555), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1854), 4, - anon_sym_PIPE, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [204342] = 7, - ACTIONS(247), 1, + STATE(5708), 1, + aux_sym_ctrl_do_repeat1, + STATE(6018), 1, + sym__flag, + STATE(6083), 2, + sym_short_flag, + sym_long_flag, + [206551] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8715), 1, - anon_sym_DOT, - STATE(1986), 1, - sym_cell_path, - STATE(2655), 1, - sym_path, - STATE(5424), 1, + STATE(5648), 1, sym_comment, - STATE(5555), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1858), 4, - anon_sym_PIPE, - anon_sym_if, + ACTIONS(5572), 7, + sym_raw_string_begin, + sym_identifier, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [206567] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6202), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [204367] = 7, - ACTIONS(247), 1, + ACTIONS(9213), 1, + anon_sym_DASH_DASH, + ACTIONS(9215), 1, + anon_sym_DASH, + STATE(5649), 1, + sym_comment, + STATE(6823), 1, + sym_block, + STATE(7429), 1, + sym__flag, + STATE(6083), 2, + sym_short_flag, + sym_long_flag, + [206593] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(5650), 1, + sym_comment, + ACTIONS(5592), 7, + sym_raw_string_begin, + sym_identifier, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [206609] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8715), 1, + ACTIONS(9247), 1, anon_sym_DOT, - STATE(1989), 1, + STATE(2005), 1, sym_cell_path, - STATE(2655), 1, + STATE(2752), 1, sym_path, - STATE(5425), 1, + STATE(5651), 1, sym_comment, - STATE(5555), 1, + STATE(5919), 1, aux_sym_cell_path_repeat1, - ACTIONS(1862), 4, + ACTIONS(1931), 3, anon_sym_PIPE, anon_sym_if, - anon_sym_LBRACE, anon_sym_EQ_GT, - [204392] = 7, - ACTIONS(247), 1, + [206633] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8715), 1, + ACTIONS(9247), 1, anon_sym_DOT, - STATE(1991), 1, + STATE(2047), 1, sym_cell_path, - STATE(2655), 1, + STATE(2752), 1, sym_path, - STATE(5426), 1, + STATE(5652), 1, sym_comment, - STATE(5555), 1, + STATE(5919), 1, aux_sym_cell_path_repeat1, - ACTIONS(1866), 4, + ACTIONS(1995), 3, anon_sym_PIPE, anon_sym_if, - anon_sym_LBRACE, anon_sym_EQ_GT, - [204417] = 7, - ACTIONS(247), 1, + [206657] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8715), 1, + ACTIONS(9247), 1, anon_sym_DOT, - STATE(1992), 1, + STATE(2002), 1, sym_cell_path, - STATE(2655), 1, + STATE(2752), 1, sym_path, - STATE(5427), 1, + STATE(5653), 1, sym_comment, - STATE(5555), 1, + STATE(5919), 1, aux_sym_cell_path_repeat1, - ACTIONS(1870), 4, + ACTIONS(1999), 3, anon_sym_PIPE, anon_sym_if, - anon_sym_LBRACE, anon_sym_EQ_GT, - [204442] = 7, - ACTIONS(247), 1, + [206681] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(5654), 1, + sym_comment, + ACTIONS(5596), 7, + sym_raw_string_begin, + sym_identifier, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [206697] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8715), 1, + ACTIONS(9247), 1, anon_sym_DOT, - STATE(1993), 1, + STATE(2012), 1, sym_cell_path, - STATE(2655), 1, + STATE(2752), 1, sym_path, - STATE(5428), 1, + STATE(5655), 1, sym_comment, - STATE(5555), 1, + STATE(5919), 1, aux_sym_cell_path_repeat1, - ACTIONS(1874), 4, + ACTIONS(2003), 3, anon_sym_PIPE, anon_sym_if, - anon_sym_LBRACE, anon_sym_EQ_GT, - [204467] = 7, - ACTIONS(247), 1, + [206721] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8715), 1, + ACTIONS(1903), 1, + sym__entry_separator, + ACTIONS(9219), 1, anon_sym_DOT, - STATE(2026), 1, - sym_cell_path, - STATE(2655), 1, - sym_path, - STATE(5429), 1, + STATE(5656), 1, sym_comment, - STATE(5555), 1, + STATE(5793), 1, aux_sym_cell_path_repeat1, - ACTIONS(1878), 4, - anon_sym_PIPE, - anon_sym_if, + STATE(6725), 1, + sym_path, + STATE(7004), 1, + sym_cell_path, + ACTIONS(1901), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [206747] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6202), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [204492] = 7, - ACTIONS(247), 1, + ACTIONS(9213), 1, + anon_sym_DASH_DASH, + ACTIONS(9215), 1, + anon_sym_DASH, + STATE(5657), 1, + sym_comment, + STATE(6836), 1, + sym_block, + STATE(7491), 1, + sym__flag, + STATE(6083), 2, + sym_short_flag, + sym_long_flag, + [206773] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8715), 1, + ACTIONS(9247), 1, anon_sym_DOT, - STATE(1995), 1, + STATE(2007), 1, sym_cell_path, - STATE(2655), 1, + STATE(2752), 1, sym_path, - STATE(5430), 1, + STATE(5658), 1, sym_comment, - STATE(5555), 1, + STATE(5919), 1, aux_sym_cell_path_repeat1, - ACTIONS(1882), 4, + ACTIONS(2007), 3, anon_sym_PIPE, anon_sym_if, - anon_sym_LBRACE, anon_sym_EQ_GT, - [204517] = 7, - ACTIONS(247), 1, + [206797] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8715), 1, + ACTIONS(9247), 1, anon_sym_DOT, - STATE(1997), 1, + STATE(2011), 1, sym_cell_path, - STATE(2655), 1, + STATE(2752), 1, sym_path, - STATE(5431), 1, + STATE(5659), 1, sym_comment, - STATE(5555), 1, + STATE(5919), 1, aux_sym_cell_path_repeat1, - ACTIONS(1886), 4, + ACTIONS(2011), 3, anon_sym_PIPE, anon_sym_if, - anon_sym_LBRACE, anon_sym_EQ_GT, - [204542] = 7, - ACTIONS(247), 1, + [206821] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(5660), 1, + sym_comment, + ACTIONS(5603), 7, + sym_raw_string_begin, + sym_identifier, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [206837] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8715), 1, + ACTIONS(9247), 1, anon_sym_DOT, - STATE(1999), 1, + STATE(2013), 1, sym_cell_path, - STATE(2655), 1, + STATE(2752), 1, sym_path, - STATE(5432), 1, + STATE(5661), 1, sym_comment, - STATE(5555), 1, + STATE(5919), 1, aux_sym_cell_path_repeat1, - ACTIONS(1890), 4, + ACTIONS(2015), 3, anon_sym_PIPE, anon_sym_if, - anon_sym_LBRACE, anon_sym_EQ_GT, - [204567] = 7, - ACTIONS(247), 1, + [206861] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8715), 1, + ACTIONS(9247), 1, anon_sym_DOT, - STATE(2000), 1, + STATE(2019), 1, sym_cell_path, - STATE(2655), 1, + STATE(2752), 1, sym_path, - STATE(5433), 1, + STATE(5662), 1, sym_comment, - STATE(5555), 1, + STATE(5919), 1, aux_sym_cell_path_repeat1, - ACTIONS(1894), 4, + ACTIONS(2019), 3, anon_sym_PIPE, anon_sym_if, - anon_sym_LBRACE, anon_sym_EQ_GT, - [204592] = 7, - ACTIONS(247), 1, + [206885] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8715), 1, + ACTIONS(9247), 1, anon_sym_DOT, - STATE(2003), 1, + STATE(2020), 1, sym_cell_path, - STATE(2655), 1, + STATE(2752), 1, sym_path, - STATE(5434), 1, + STATE(5663), 1, sym_comment, - STATE(5555), 1, + STATE(5919), 1, aux_sym_cell_path_repeat1, - ACTIONS(1898), 4, + ACTIONS(2023), 3, anon_sym_PIPE, anon_sym_if, - anon_sym_LBRACE, anon_sym_EQ_GT, - [204617] = 7, - ACTIONS(247), 1, + [206909] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8715), 1, + ACTIONS(9247), 1, anon_sym_DOT, - STATE(2006), 1, + STATE(2022), 1, sym_cell_path, - STATE(2655), 1, + STATE(2752), 1, sym_path, - STATE(5435), 1, + STATE(5664), 1, sym_comment, - STATE(5555), 1, + STATE(5919), 1, aux_sym_cell_path_repeat1, - ACTIONS(1902), 4, + ACTIONS(2045), 3, anon_sym_PIPE, anon_sym_if, - anon_sym_LBRACE, anon_sym_EQ_GT, - [204642] = 7, - ACTIONS(247), 1, + [206933] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8715), 1, + ACTIONS(9247), 1, anon_sym_DOT, - STATE(2007), 1, + STATE(2023), 1, sym_cell_path, - STATE(2655), 1, + STATE(2752), 1, sym_path, - STATE(5436), 1, + STATE(5665), 1, sym_comment, - STATE(5555), 1, + STATE(5919), 1, aux_sym_cell_path_repeat1, - ACTIONS(1906), 4, + ACTIONS(2049), 3, anon_sym_PIPE, anon_sym_if, - anon_sym_LBRACE, anon_sym_EQ_GT, - [204667] = 4, + [206957] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(5437), 1, - sym_comment, - ACTIONS(1518), 3, - sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1520), 5, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [204686] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6363), 1, - sym_filesize_unit, - ACTIONS(6365), 1, - sym_duration_unit, - ACTIONS(8395), 1, - aux_sym_unquoted_token2, - ACTIONS(8717), 1, - anon_sym_DOT_DOT2, - STATE(5438), 1, - sym_comment, - ACTIONS(1572), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(8719), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [204713] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5602), 1, + ACTIONS(1995), 1, + sym__entry_separator, + ACTIONS(9219), 1, anon_sym_DOT, - STATE(1659), 1, - sym_cell_path, - STATE(2632), 1, + STATE(5666), 1, + sym_comment, + STATE(5793), 1, aux_sym_cell_path_repeat1, - STATE(2655), 1, + STATE(6725), 1, sym_path, - STATE(5439), 1, - sym_comment, - ACTIONS(1914), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [204738] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4996), 1, - anon_sym_DASH, - STATE(5440), 1, - sym_comment, - ACTIONS(4994), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, + STATE(6861), 1, + sym_cell_path, + ACTIONS(1993), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_as, - [204757] = 7, - ACTIONS(247), 1, + [206983] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5602), 1, + ACTIONS(9247), 1, anon_sym_DOT, - STATE(1670), 1, + STATE(2024), 1, sym_cell_path, - STATE(2632), 1, - aux_sym_cell_path_repeat1, - STATE(2655), 1, + STATE(2752), 1, sym_path, - STATE(5441), 1, + STATE(5667), 1, sym_comment, - ACTIONS(1826), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [204782] = 8, - ACTIONS(247), 1, + STATE(5919), 1, + aux_sym_cell_path_repeat1, + ACTIONS(2053), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [207007] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1005), 1, - anon_sym_DOT_DOT2, - ACTIONS(8721), 1, + ACTIONS(9247), 1, anon_sym_DOT, - STATE(1212), 1, - sym_path, - STATE(3130), 1, + STATE(2027), 1, sym_cell_path, - STATE(5442), 1, + STATE(2752), 1, + sym_path, + STATE(5668), 1, sym_comment, - STATE(5524), 1, + STATE(5919), 1, aux_sym_cell_path_repeat1, - ACTIONS(1007), 3, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [204809] = 8, - ACTIONS(247), 1, + ACTIONS(2057), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [207031] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1912), 1, - anon_sym_DASH, - ACTIONS(5602), 1, + ACTIONS(9251), 1, anon_sym_DOT, - STATE(2632), 1, - aux_sym_cell_path_repeat1, - STATE(2655), 1, - sym_path, - STATE(4951), 1, - sym_cell_path, - STATE(5443), 1, + STATE(5669), 1, sym_comment, - ACTIONS(1914), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [204836] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1822), 1, - anon_sym_DASH, - ACTIONS(5602), 1, - anon_sym_DOT, - STATE(2632), 1, + STATE(5771), 1, aux_sym_cell_path_repeat1, - STATE(2655), 1, + STATE(6329), 1, sym_path, - STATE(4922), 1, + STATE(7214), 1, sym_cell_path, - STATE(5444), 1, - sym_comment, - ACTIONS(1826), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [204863] = 8, - ACTIONS(247), 1, + ACTIONS(1901), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [207055] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1836), 1, - anon_sym_DASH, - ACTIONS(5602), 1, + ACTIONS(9247), 1, anon_sym_DOT, - STATE(2632), 1, - aux_sym_cell_path_repeat1, - STATE(2655), 1, - sym_path, - STATE(4977), 1, + STATE(2029), 1, sym_cell_path, - STATE(5445), 1, - sym_comment, - ACTIONS(1838), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [204890] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1840), 1, - anon_sym_DASH, - ACTIONS(5602), 1, - anon_sym_DOT, - STATE(2632), 1, - aux_sym_cell_path_repeat1, - STATE(2655), 1, + STATE(2752), 1, sym_path, - STATE(4818), 1, - sym_cell_path, - STATE(5446), 1, + STATE(5670), 1, sym_comment, - ACTIONS(1842), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [204917] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1844), 1, - anon_sym_DASH, - ACTIONS(5602), 1, - anon_sym_DOT, - STATE(2632), 1, + STATE(5919), 1, aux_sym_cell_path_repeat1, - STATE(2655), 1, - sym_path, - STATE(4828), 1, - sym_cell_path, - STATE(5447), 1, - sym_comment, - ACTIONS(1846), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [204944] = 8, - ACTIONS(247), 1, + ACTIONS(2061), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [207079] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1848), 1, - anon_sym_DASH, - ACTIONS(5602), 1, + ACTIONS(9247), 1, anon_sym_DOT, - STATE(2632), 1, - aux_sym_cell_path_repeat1, - STATE(2655), 1, - sym_path, - STATE(4894), 1, + STATE(2030), 1, sym_cell_path, - STATE(5448), 1, - sym_comment, - ACTIONS(1850), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [204971] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1852), 1, - anon_sym_DASH, - ACTIONS(5602), 1, - anon_sym_DOT, - STATE(2632), 1, - aux_sym_cell_path_repeat1, - STATE(2655), 1, + STATE(2752), 1, sym_path, - STATE(4896), 1, - sym_cell_path, - STATE(5449), 1, + STATE(5671), 1, sym_comment, - ACTIONS(1854), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [204998] = 8, - ACTIONS(247), 1, + STATE(5919), 1, + aux_sym_cell_path_repeat1, + ACTIONS(2069), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [207103] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1856), 1, - anon_sym_DASH, - ACTIONS(5602), 1, + ACTIONS(9247), 1, anon_sym_DOT, - STATE(2632), 1, - aux_sym_cell_path_repeat1, - STATE(2655), 1, - sym_path, - STATE(4898), 1, + STATE(2031), 1, sym_cell_path, - STATE(5450), 1, + STATE(2752), 1, + sym_path, + STATE(5672), 1, sym_comment, - ACTIONS(1858), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [205025] = 8, - ACTIONS(247), 1, + STATE(5919), 1, + aux_sym_cell_path_repeat1, + ACTIONS(2085), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [207127] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1860), 1, - anon_sym_DASH, - ACTIONS(5602), 1, + ACTIONS(9247), 1, anon_sym_DOT, - STATE(2632), 1, - aux_sym_cell_path_repeat1, - STATE(2655), 1, - sym_path, - STATE(4901), 1, + STATE(2033), 1, sym_cell_path, - STATE(5451), 1, + STATE(2752), 1, + sym_path, + STATE(5673), 1, sym_comment, - ACTIONS(1862), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [205052] = 8, - ACTIONS(247), 1, + STATE(5919), 1, + aux_sym_cell_path_repeat1, + ACTIONS(2089), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [207151] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1864), 1, - anon_sym_DASH, - ACTIONS(5602), 1, + ACTIONS(1911), 1, + sym__entry_separator, + ACTIONS(9219), 1, anon_sym_DOT, - STATE(2632), 1, + STATE(5674), 1, + sym_comment, + STATE(5793), 1, aux_sym_cell_path_repeat1, - STATE(2655), 1, + STATE(6725), 1, sym_path, - STATE(4918), 1, + STATE(6767), 1, sym_cell_path, - STATE(5452), 1, - sym_comment, - ACTIONS(1866), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [205079] = 8, - ACTIONS(247), 1, + ACTIONS(1909), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [207177] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1912), 1, - anon_sym_DASH, - ACTIONS(8411), 1, + ACTIONS(8542), 1, anon_sym_DOT, - STATE(4951), 1, + STATE(3168), 1, sym_cell_path, - STATE(5242), 1, - aux_sym_cell_path_repeat1, - STATE(5453), 1, - sym_comment, - STATE(5513), 1, - sym_path, - ACTIONS(1914), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [205106] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1868), 1, - anon_sym_DASH, - ACTIONS(5602), 1, - anon_sym_DOT, - STATE(2632), 1, + STATE(5290), 1, aux_sym_cell_path_repeat1, - STATE(2655), 1, + STATE(5519), 1, sym_path, - STATE(4927), 1, - sym_cell_path, - STATE(5454), 1, + STATE(5675), 1, sym_comment, - ACTIONS(1870), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [205133] = 8, - ACTIONS(247), 1, + ACTIONS(1023), 3, + anon_sym_EQ, + sym__newline, + anon_sym_COLON, + [207201] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1872), 1, - anon_sym_DASH, - ACTIONS(5602), 1, + ACTIONS(9247), 1, anon_sym_DOT, - STATE(2632), 1, - aux_sym_cell_path_repeat1, - STATE(2655), 1, - sym_path, - STATE(4929), 1, + STATE(2034), 1, sym_cell_path, - STATE(5455), 1, + STATE(2752), 1, + sym_path, + STATE(5676), 1, sym_comment, - ACTIONS(1874), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [205160] = 9, - ACTIONS(247), 1, + STATE(5919), 1, + aux_sym_cell_path_repeat1, + ACTIONS(2097), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [207225] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4131), 1, - anon_sym_DQUOTE, - ACTIONS(8673), 1, - sym_identifier, - ACTIONS(8723), 1, - anon_sym_GT, - STATE(4744), 1, - sym__str_double_quotes, - STATE(5456), 1, + ACTIONS(1852), 1, + aux_sym_unquoted_token2, + ACTIONS(9253), 1, + anon_sym_DOT_DOT2, + STATE(5677), 1, sym_comment, - STATE(5480), 1, - aux_sym_collection_type_repeat1, - STATE(5550), 1, - sym_val_string, - ACTIONS(4133), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [205189] = 8, - ACTIONS(247), 1, + ACTIONS(9255), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1850), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [207247] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1876), 1, - anon_sym_DASH, - ACTIONS(5602), 1, - anon_sym_DOT, - STATE(2632), 1, - aux_sym_cell_path_repeat1, - STATE(2655), 1, - sym_path, - STATE(4980), 1, - sym_cell_path, - STATE(5457), 1, - sym_comment, - ACTIONS(1878), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(6202), 1, anon_sym_LBRACE, - [205216] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1884), 1, - anon_sym_DASH, - ACTIONS(5602), 1, - anon_sym_DOT, - STATE(2632), 1, - aux_sym_cell_path_repeat1, - STATE(2655), 1, - sym_path, - STATE(4831), 1, - sym_cell_path, - STATE(5458), 1, - sym_comment, - ACTIONS(1886), 3, - anon_sym_DOLLAR, + ACTIONS(9213), 1, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [205243] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1888), 1, + ACTIONS(9215), 1, anon_sym_DASH, - ACTIONS(5602), 1, - anon_sym_DOT, - STATE(2632), 1, - aux_sym_cell_path_repeat1, - STATE(2655), 1, - sym_path, - STATE(4832), 1, - sym_cell_path, - STATE(5459), 1, + STATE(5678), 1, sym_comment, - ACTIONS(1890), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [205270] = 8, - ACTIONS(247), 1, + STATE(6971), 1, + sym_block, + STATE(7545), 1, + sym__flag, + STATE(6083), 2, + sym_short_flag, + sym_long_flag, + [207273] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1892), 1, - anon_sym_DASH, - ACTIONS(5602), 1, - anon_sym_DOT, - STATE(2632), 1, - aux_sym_cell_path_repeat1, - STATE(2655), 1, - sym_path, - STATE(4861), 1, - sym_cell_path, - STATE(5460), 1, - sym_comment, - ACTIONS(1894), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(6202), 1, anon_sym_LBRACE, - [205297] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1896), 1, - anon_sym_DASH, - ACTIONS(5602), 1, - anon_sym_DOT, - STATE(2632), 1, - aux_sym_cell_path_repeat1, - STATE(2655), 1, - sym_path, - STATE(4868), 1, - sym_cell_path, - STATE(5461), 1, - sym_comment, - ACTIONS(1898), 3, - anon_sym_DOLLAR, + ACTIONS(9213), 1, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [205324] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1900), 1, + ACTIONS(9215), 1, anon_sym_DASH, - ACTIONS(5602), 1, - anon_sym_DOT, - STATE(2632), 1, - aux_sym_cell_path_repeat1, - STATE(2655), 1, - sym_path, - STATE(4869), 1, - sym_cell_path, - STATE(5462), 1, + STATE(5679), 1, sym_comment, - ACTIONS(1902), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [205351] = 8, - ACTIONS(247), 1, + STATE(6844), 1, + sym_block, + STATE(7505), 1, + sym__flag, + STATE(6083), 2, + sym_short_flag, + sym_long_flag, + [207299] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1904), 1, - anon_sym_DASH, - ACTIONS(5602), 1, + ACTIONS(1931), 1, + sym__entry_separator, + ACTIONS(9219), 1, anon_sym_DOT, - STATE(2632), 1, + STATE(5680), 1, + sym_comment, + STATE(5793), 1, aux_sym_cell_path_repeat1, - STATE(2655), 1, + STATE(6725), 1, sym_path, - STATE(4879), 1, + STATE(7142), 1, sym_cell_path, - STATE(5463), 1, - sym_comment, - ACTIONS(1906), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [205378] = 5, + ACTIONS(1929), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [207325] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - STATE(5464), 1, + ACTIONS(1526), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1788), 1, + anon_sym_RBRACK, + ACTIONS(1790), 1, + anon_sym_LPAREN2, + ACTIONS(1796), 1, + sym__entry_separator, + ACTIONS(9257), 1, + anon_sym_DOT_DOT2, + STATE(5681), 1, sym_comment, - ACTIONS(2237), 3, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_as, - ACTIONS(2241), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [205399] = 8, - ACTIONS(247), 1, + ACTIONS(9259), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [207351] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1828), 1, - anon_sym_DASH, - ACTIONS(5602), 1, + ACTIONS(1999), 1, + sym__entry_separator, + ACTIONS(9219), 1, anon_sym_DOT, - STATE(2632), 1, + STATE(5682), 1, + sym_comment, + STATE(5793), 1, aux_sym_cell_path_repeat1, - STATE(2655), 1, + STATE(6725), 1, sym_path, - STATE(4900), 1, + STATE(7106), 1, sym_cell_path, - STATE(5465), 1, - sym_comment, - ACTIONS(1830), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [205426] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8725), 1, - sym_identifier, - ACTIONS(8728), 1, - anon_sym_GT, - ACTIONS(8730), 1, - anon_sym_DQUOTE, - STATE(4744), 1, - sym__str_double_quotes, - STATE(5550), 1, - sym_val_string, - ACTIONS(8733), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5466), 2, - sym_comment, - aux_sym_collection_type_repeat1, - [205453] = 8, - ACTIONS(247), 1, + ACTIONS(1997), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [207377] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1822), 1, - anon_sym_DASH, - ACTIONS(8411), 1, + ACTIONS(2073), 1, + sym__entry_separator, + ACTIONS(9219), 1, anon_sym_DOT, - STATE(4922), 1, - sym_cell_path, - STATE(5242), 1, - aux_sym_cell_path_repeat1, - STATE(5467), 1, + STATE(5683), 1, sym_comment, - STATE(5513), 1, - sym_path, - ACTIONS(1826), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [205480] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1832), 1, - anon_sym_DASH, - ACTIONS(5602), 1, - anon_sym_DOT, - STATE(2632), 1, + STATE(5793), 1, aux_sym_cell_path_repeat1, - STATE(2655), 1, + STATE(6725), 1, sym_path, - STATE(4994), 1, + STATE(6935), 1, sym_cell_path, - STATE(5468), 1, - sym_comment, - ACTIONS(1834), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [205507] = 7, - ACTIONS(247), 1, + ACTIONS(2071), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [207403] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8736), 1, - anon_sym_DASH_DASH, - ACTIONS(8739), 1, - anon_sym_DASH, - STATE(5902), 1, - sym__flag, - ACTIONS(8247), 2, - anon_sym_DOLLAR, + ACTIONS(6211), 1, anon_sym_LBRACE, - STATE(5469), 2, - sym_comment, - aux_sym_ctrl_do_repeat1, - STATE(6046), 2, - sym_short_flag, - sym_long_flag, - [205532] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7606), 1, - sym__newline, - ACTIONS(7608), 1, - sym__space, - ACTIONS(7610), 1, + ACTIONS(9213), 1, anon_sym_DASH_DASH, - ACTIONS(7612), 1, + ACTIONS(9215), 1, anon_sym_DASH, - STATE(5470), 1, + STATE(5684), 1, sym_comment, - STATE(5564), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(7236), 1, + STATE(6670), 1, + sym_block, + STATE(7432), 1, sym__flag, - STATE(4716), 2, + STATE(6083), 2, sym_short_flag, sym_long_flag, - [205561] = 4, + [207429] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(5471), 1, - sym_comment, - ACTIONS(1040), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(1895), 1, sym__entry_separator, - ACTIONS(1038), 5, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [205580] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1836), 1, - anon_sym_DASH, - ACTIONS(8411), 1, + ACTIONS(9219), 1, anon_sym_DOT, - STATE(4977), 1, - sym_cell_path, - STATE(5242), 1, - aux_sym_cell_path_repeat1, - STATE(5472), 1, + STATE(5685), 1, sym_comment, - STATE(5513), 1, + STATE(5793), 1, + aux_sym_cell_path_repeat1, + STATE(6725), 1, sym_path, - ACTIONS(1838), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [205607] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1560), 1, - anon_sym_DASH, - ACTIONS(6790), 1, - aux_sym_unquoted_token2, - STATE(5473), 1, - sym_comment, - ACTIONS(1572), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + STATE(7398), 1, + sym_cell_path, + ACTIONS(1893), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_as, - [205628] = 4, - ACTIONS(3), 1, + [207455] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5474), 1, + STATE(5686), 1, sym_comment, - ACTIONS(1540), 3, - sym__newline, + ACTIONS(1715), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1542), 5, - sym__space, + ACTIONS(1717), 5, + sym__newline, + anon_sym_LBRACE, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [205647] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8744), 1, - anon_sym_COMMA, - ACTIONS(8746), 1, - anon_sym_AT, - STATE(5475), 1, - sym_comment, - STATE(5861), 1, - sym_param_cmd, - ACTIONS(8742), 5, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [205670] = 5, - ACTIONS(247), 1, + [207473] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4942), 1, - anon_sym_DASH, - ACTIONS(8748), 1, - anon_sym_EQ2, - STATE(5476), 1, + STATE(5687), 1, sym_comment, - ACTIONS(4940), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + ACTIONS(1715), 3, anon_sym_RBRACE, - anon_sym_as, - [205691] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8746), 1, - anon_sym_AT, - ACTIONS(8752), 1, - anon_sym_COMMA, - STATE(5477), 1, - sym_comment, - STATE(5866), 1, - sym_param_cmd, - ACTIONS(8750), 5, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [205714] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5478), 1, - sym_comment, - ACTIONS(1556), 3, - anon_sym_DOLLAR, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1717), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1554), 5, - sym_identifier, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [205733] = 5, - ACTIONS(247), 1, + sym__entry_separator, + [207491] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4900), 1, - anon_sym_DASH, - ACTIONS(8754), 1, - anon_sym_EQ2, - STATE(5479), 1, + STATE(5688), 1, sym_comment, - ACTIONS(4898), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [205754] = 9, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4131), 1, - anon_sym_DQUOTE, - ACTIONS(8673), 1, + ACTIONS(5504), 7, + sym_raw_string_begin, sym_identifier, - ACTIONS(8756), 1, + anon_sym_COMMA, anon_sym_GT, - STATE(4744), 1, - sym__str_double_quotes, - STATE(5466), 1, - aux_sym_collection_type_repeat1, - STATE(5480), 1, - sym_comment, - STATE(5550), 1, - sym_val_string, - ACTIONS(4133), 2, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [205783] = 4, - ACTIONS(3), 1, + [207507] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5481), 1, - sym_comment, - ACTIONS(1554), 3, - sym__newline, + ACTIONS(1640), 1, + anon_sym_in, + ACTIONS(4614), 1, anon_sym_DOT_DOT2, + ACTIONS(6929), 1, aux_sym_unquoted_token2, - ACTIONS(1556), 5, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(9261), 1, sym_filesize_unit, + ACTIONS(9263), 1, sym_duration_unit, - [205802] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5482), 1, + STATE(5689), 1, sym_comment, - ACTIONS(1653), 3, - sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1655), 5, - sym__space, + ACTIONS(4616), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [205821] = 5, + [207533] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - STATE(5483), 1, - sym_comment, - ACTIONS(2245), 3, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_as, - ACTIONS(2247), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [205842] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1641), 1, - anon_sym_DOT_DOT2, - ACTIONS(8721), 1, - anon_sym_DOT, - STATE(1212), 1, - sym_path, - STATE(1548), 1, - sym_cell_path, - STATE(5484), 1, + STATE(5690), 1, sym_comment, - STATE(5524), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1645), 3, - anon_sym_LBRACE, + ACTIONS(1068), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [205869] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5022), 1, - anon_sym_DASH, - STATE(5485), 1, - sym_comment, - ACTIONS(5020), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, + sym__entry_separator, + ACTIONS(1066), 4, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_as, - [205888] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1675), 1, anon_sym_DOT_DOT2, - ACTIONS(8721), 1, anon_sym_DOT, - STATE(1212), 1, - sym_path, - STATE(1558), 1, - sym_cell_path, - STATE(5486), 1, - sym_comment, - STATE(5524), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1677), 3, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [205915] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5026), 1, - anon_sym_DASH, - STATE(5487), 1, - sym_comment, - ACTIONS(5024), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, - [205934] = 8, - ACTIONS(247), 1, + [207551] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1840), 1, - anon_sym_DASH, - ACTIONS(8411), 1, + ACTIONS(2011), 1, + sym__entry_separator, + ACTIONS(9219), 1, anon_sym_DOT, - STATE(4818), 1, - sym_cell_path, - STATE(5242), 1, - aux_sym_cell_path_repeat1, - STATE(5488), 1, + STATE(5691), 1, sym_comment, - STATE(5513), 1, - sym_path, - ACTIONS(1842), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [205961] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1844), 1, - anon_sym_DASH, - ACTIONS(8411), 1, - anon_sym_DOT, - STATE(4828), 1, - sym_cell_path, - STATE(5242), 1, + STATE(5793), 1, aux_sym_cell_path_repeat1, - STATE(5489), 1, - sym_comment, - STATE(5513), 1, + STATE(6725), 1, sym_path, - ACTIONS(1846), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [205988] = 4, + STATE(6991), 1, + sym_cell_path, + ACTIONS(2009), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [207577] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5490), 1, + STATE(5692), 1, sym_comment, - ACTIONS(1659), 4, - anon_sym_RBRACK, + ACTIONS(1703), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1661), 4, + aux_sym__unquoted_in_record_token2, + ACTIONS(1705), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [206007] = 8, - ACTIONS(247), 1, + [207595] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1848), 1, + ACTIONS(1628), 1, anon_sym_DASH, - ACTIONS(8411), 1, - anon_sym_DOT, - STATE(4894), 1, - sym_cell_path, - STATE(5242), 1, - aux_sym_cell_path_repeat1, - STATE(5491), 1, + ACTIONS(6985), 1, + aux_sym_unquoted_token2, + STATE(5693), 1, sym_comment, - STATE(5513), 1, - sym_path, - ACTIONS(1850), 3, - sym_identifier, - anon_sym_DOLLAR, + ACTIONS(1640), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_DASH_DASH, - [206034] = 8, - ACTIONS(247), 1, + anon_sym_as, + [207615] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1852), 1, - anon_sym_DASH, - ACTIONS(8411), 1, + ACTIONS(1023), 1, + sym__entry_separator, + ACTIONS(9219), 1, anon_sym_DOT, - STATE(4896), 1, - sym_cell_path, - STATE(5242), 1, - aux_sym_cell_path_repeat1, - STATE(5492), 1, + STATE(5694), 1, sym_comment, - STATE(5513), 1, - sym_path, - ACTIONS(1854), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [206061] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1856), 1, - anon_sym_DASH, - ACTIONS(8411), 1, - anon_sym_DOT, - STATE(4898), 1, - sym_cell_path, - STATE(5242), 1, + STATE(5793), 1, aux_sym_cell_path_repeat1, - STATE(5493), 1, - sym_comment, - STATE(5513), 1, - sym_path, - ACTIONS(1858), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [206088] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1860), 1, - anon_sym_DASH, - ACTIONS(8411), 1, - anon_sym_DOT, - STATE(4901), 1, + STATE(5814), 1, sym_cell_path, - STATE(5242), 1, - aux_sym_cell_path_repeat1, - STATE(5494), 1, - sym_comment, - STATE(5513), 1, + STATE(6725), 1, sym_path, - ACTIONS(1862), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [206115] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5000), 1, - anon_sym_DASH, - STATE(5495), 1, - sym_comment, - ACTIONS(4998), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, - anon_sym_as, - [206134] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5004), 1, - anon_sym_DASH, - STATE(5496), 1, - sym_comment, - ACTIONS(5002), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_in, + ACTIONS(1021), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_as, - [206153] = 8, - ACTIONS(247), 1, + [207641] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1864), 1, - anon_sym_DASH, - ACTIONS(8411), 1, + ACTIONS(2061), 1, + sym__entry_separator, + ACTIONS(9219), 1, anon_sym_DOT, - STATE(4918), 1, - sym_cell_path, - STATE(5242), 1, - aux_sym_cell_path_repeat1, - STATE(5497), 1, + STATE(5695), 1, sym_comment, - STATE(5513), 1, - sym_path, - ACTIONS(1866), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [206180] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1868), 1, - anon_sym_DASH, - ACTIONS(8411), 1, - anon_sym_DOT, - STATE(4927), 1, - sym_cell_path, - STATE(5242), 1, + STATE(5793), 1, aux_sym_cell_path_repeat1, - STATE(5498), 1, - sym_comment, - STATE(5513), 1, + STATE(6725), 1, sym_path, - ACTIONS(1870), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [206207] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1872), 1, - anon_sym_DASH, - ACTIONS(8411), 1, - anon_sym_DOT, - STATE(4929), 1, + STATE(6863), 1, sym_cell_path, - STATE(5242), 1, - aux_sym_cell_path_repeat1, - STATE(5499), 1, - sym_comment, - STATE(5513), 1, - sym_path, - ACTIONS(1874), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [206234] = 8, - ACTIONS(247), 1, + ACTIONS(2059), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [207667] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1876), 1, - anon_sym_DASH, - ACTIONS(8411), 1, - anon_sym_DOT, - STATE(4980), 1, - sym_cell_path, - STATE(5242), 1, - aux_sym_cell_path_repeat1, - STATE(5500), 1, - sym_comment, - STATE(5513), 1, - sym_path, - ACTIONS(1878), 3, - sym_identifier, - anon_sym_DOLLAR, + ACTIONS(9227), 1, anon_sym_DASH_DASH, - [206261] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1880), 1, + ACTIONS(9229), 1, anon_sym_DASH, - ACTIONS(8411), 1, - anon_sym_DOT, - STATE(4826), 1, - sym_cell_path, - STATE(5242), 1, - aux_sym_cell_path_repeat1, - STATE(5501), 1, - sym_comment, - STATE(5513), 1, - sym_path, - ACTIONS(1882), 3, + ACTIONS(9265), 1, sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [206288] = 8, - ACTIONS(247), 1, + STATE(5636), 1, + aux_sym_ctrl_do_repeat1, + STATE(5696), 1, + sym_comment, + STATE(6018), 1, + sym__flag, + STATE(6083), 2, + sym_short_flag, + sym_long_flag, + [207693] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1884), 1, - anon_sym_DASH, - ACTIONS(8411), 1, + ACTIONS(1526), 1, + aux_sym_unquoted_token2, + ACTIONS(8318), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8320), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(9267), 1, anon_sym_DOT, - STATE(4831), 1, - sym_cell_path, - STATE(5242), 1, - aux_sym_cell_path_repeat1, - STATE(5502), 1, + STATE(5697), 1, sym_comment, - STATE(5513), 1, - sym_path, - ACTIONS(1886), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [206315] = 8, - ACTIONS(247), 1, + STATE(5988), 1, + sym__immediate_decimal, + ACTIONS(8316), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [207719] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1888), 1, - anon_sym_DASH, - ACTIONS(8411), 1, - anon_sym_DOT, - STATE(4832), 1, - sym_cell_path, - STATE(5242), 1, - aux_sym_cell_path_repeat1, - STATE(5503), 1, + STATE(5698), 1, sym_comment, - STATE(5513), 1, - sym_path, - ACTIONS(1890), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [206342] = 4, + ACTIONS(1769), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1771), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [207737] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5504), 1, + STATE(5699), 1, sym_comment, - ACTIONS(1738), 4, - anon_sym_RBRACK, + ACTIONS(1826), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1740), 4, + aux_sym__unquoted_in_record_token2, + ACTIONS(1828), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [206361] = 8, - ACTIONS(247), 1, + [207755] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1892), 1, - anon_sym_DASH, - ACTIONS(8411), 1, + ACTIONS(2023), 1, + sym__entry_separator, + ACTIONS(9219), 1, anon_sym_DOT, - STATE(4861), 1, - sym_cell_path, - STATE(5242), 1, - aux_sym_cell_path_repeat1, - STATE(5505), 1, + STATE(5700), 1, sym_comment, - STATE(5513), 1, + STATE(5793), 1, + aux_sym_cell_path_repeat1, + STATE(6725), 1, sym_path, - ACTIONS(1894), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [206388] = 8, - ACTIONS(247), 1, + STATE(6803), 1, + sym_cell_path, + ACTIONS(2021), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [207781] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1896), 1, - anon_sym_DASH, - ACTIONS(8411), 1, + ACTIONS(2069), 1, + sym__entry_separator, + ACTIONS(9219), 1, anon_sym_DOT, - STATE(4868), 1, - sym_cell_path, - STATE(5242), 1, - aux_sym_cell_path_repeat1, - STATE(5506), 1, + STATE(5701), 1, sym_comment, - STATE(5513), 1, + STATE(5793), 1, + aux_sym_cell_path_repeat1, + STATE(6725), 1, sym_path, - ACTIONS(1898), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [206415] = 8, - ACTIONS(247), 1, + STATE(6878), 1, + sym_cell_path, + ACTIONS(2067), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [207807] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1900), 1, - anon_sym_DASH, - ACTIONS(8411), 1, + ACTIONS(2085), 1, + sym__entry_separator, + ACTIONS(9219), 1, anon_sym_DOT, - STATE(4869), 1, - sym_cell_path, - STATE(5242), 1, + STATE(5702), 1, + sym_comment, + STATE(5793), 1, aux_sym_cell_path_repeat1, - STATE(5507), 1, + STATE(6725), 1, + sym_path, + STATE(6879), 1, + sym_cell_path, + ACTIONS(2083), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [207833] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2089), 1, + sym__entry_separator, + ACTIONS(9219), 1, + anon_sym_DOT, + STATE(5703), 1, sym_comment, - STATE(5513), 1, + STATE(5793), 1, + aux_sym_cell_path_repeat1, + STATE(6725), 1, sym_path, - ACTIONS(1902), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [206442] = 5, - ACTIONS(247), 1, + STATE(6881), 1, + sym_cell_path, + ACTIONS(2087), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [207859] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8655), 1, + ACTIONS(8979), 1, aux_sym__immediate_decimal_token2, - STATE(5508), 1, + STATE(5704), 1, + sym_comment, + ACTIONS(1715), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1717), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [207879] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(5705), 1, sym_comment, - ACTIONS(1518), 2, + ACTIONS(1536), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1520), 5, + ACTIONS(1538), 5, anon_sym_in, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [206463] = 8, - ACTIONS(247), 1, + [207897] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1904), 1, - anon_sym_DASH, - ACTIONS(8411), 1, + ACTIONS(2045), 1, + sym__entry_separator, + ACTIONS(9219), 1, anon_sym_DOT, - STATE(4879), 1, - sym_cell_path, - STATE(5242), 1, - aux_sym_cell_path_repeat1, - STATE(5509), 1, + STATE(5706), 1, sym_comment, - STATE(5513), 1, + STATE(5793), 1, + aux_sym_cell_path_repeat1, + STATE(6725), 1, sym_path, - ACTIONS(1906), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [206490] = 5, + STATE(6827), 1, + sym_cell_path, + ACTIONS(2043), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [207923] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2227), 1, - aux_sym_unquoted_token4, - STATE(5510), 1, + ACTIONS(2097), 1, + sym__entry_separator, + ACTIONS(9219), 1, + anon_sym_DOT, + STATE(5707), 1, sym_comment, - ACTIONS(1070), 3, + STATE(5793), 1, + aux_sym_cell_path_repeat1, + STATE(6725), 1, + sym_path, + STATE(6888), 1, + sym_cell_path, + ACTIONS(2095), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [207949] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(9227), 1, anon_sym_DASH_DASH, + ACTIONS(9229), 1, anon_sym_DASH, - anon_sym_as, - ACTIONS(1072), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [206511] = 5, - ACTIONS(247), 1, + ACTIONS(9269), 1, + sym_identifier, + STATE(5708), 1, + sym_comment, + STATE(5729), 1, + aux_sym_ctrl_do_repeat1, + STATE(6018), 1, + sym__flag, + STATE(6083), 2, + sym_short_flag, + sym_long_flag, + [207975] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8758), 1, - aux_sym__immediate_decimal_token2, - STATE(5511), 1, + STATE(5709), 1, sym_comment, - ACTIONS(1721), 2, + ACTIONS(1072), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1070), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1723), 5, + anon_sym_DOT, + [207993] = 9, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(3294), 1, + aux_sym_record_entry_token1, + ACTIONS(9235), 1, + anon_sym_alias, + ACTIONS(9237), 1, + anon_sym_const, + ACTIONS(9239), 1, + anon_sym_def, + ACTIONS(9241), 1, + anon_sym_extern, + ACTIONS(9243), 1, + anon_sym_module, + ACTIONS(9245), 1, + anon_sym_use, + STATE(5710), 1, + sym_comment, + [208021] = 7, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(9247), 1, + anon_sym_DOT, + STATE(2752), 1, + sym_path, + STATE(5711), 1, + sym_comment, + STATE(5919), 1, + aux_sym_cell_path_repeat1, + STATE(7226), 1, + sym_cell_path, + ACTIONS(5906), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [206532] = 4, - ACTIONS(3), 1, + [208045] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5512), 1, - sym_comment, - ACTIONS(2253), 4, - anon_sym_DASH_DASH, + ACTIONS(4991), 1, anon_sym_DASH, - anon_sym_as, - aux_sym_unquoted_token4, - ACTIONS(2255), 4, + ACTIONS(9271), 1, + anon_sym_EQ2, + STATE(5712), 1, + sym_comment, + ACTIONS(4989), 5, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_as, + [208065] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1526), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(1788), 1, anon_sym_RBRACE, - [206551] = 4, - ACTIONS(247), 1, + ACTIONS(1790), 1, + anon_sym_LPAREN2, + ACTIONS(1796), 1, + sym__entry_separator, + ACTIONS(9273), 1, + anon_sym_DOT_DOT2, + STATE(5713), 1, + sym_comment, + ACTIONS(9275), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [208091] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1046), 1, - anon_sym_DASH, - STATE(5513), 1, + STATE(5714), 1, sym_comment, - ACTIONS(1048), 7, - anon_sym_EQ, - sym_identifier, + ACTIONS(1826), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1828), 5, sym__newline, - anon_sym_COLON, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DOT, - [206570] = 5, - ACTIONS(247), 1, + anon_sym_LBRACE, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [208109] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8760), 1, + ACTIONS(9277), 1, aux_sym__immediate_decimal_token2, - STATE(5514), 1, + STATE(5715), 1, sym_comment, - ACTIONS(1554), 2, + ACTIONS(1769), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1556), 5, - anon_sym_in, + ACTIONS(1771), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [206591] = 8, - ACTIONS(247), 1, + [208129] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1828), 1, - anon_sym_DASH, - ACTIONS(8411), 1, - anon_sym_DOT, - STATE(4900), 1, - sym_cell_path, - STATE(5242), 1, - aux_sym_cell_path_repeat1, - STATE(5513), 1, - sym_path, - STATE(5515), 1, + ACTIONS(2287), 1, + aux_sym_unquoted_token4, + STATE(5716), 1, sym_comment, - ACTIONS(1830), 3, - sym_identifier, - anon_sym_DOLLAR, + ACTIONS(2281), 3, anon_sym_DASH_DASH, - [206618] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5602), 1, - anon_sym_DOT, - STATE(2506), 1, - sym_cell_path, - STATE(2632), 1, - aux_sym_cell_path_repeat1, - STATE(2655), 1, - sym_path, - STATE(5516), 1, - sym_comment, - ACTIONS(1645), 4, + anon_sym_DASH, + anon_sym_as, + ACTIONS(2285), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [206643] = 8, - ACTIONS(247), 1, + [208149] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1005), 1, - anon_sym_DASH, - ACTIONS(8411), 1, + ACTIONS(1526), 1, + aux_sym_unquoted_token2, + ACTIONS(8318), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8320), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(9279), 1, anon_sym_DOT, - STATE(4611), 1, - sym_cell_path, - STATE(5242), 1, - aux_sym_cell_path_repeat1, - STATE(5513), 1, - sym_path, - STATE(5517), 1, + STATE(5717), 1, sym_comment, - ACTIONS(1007), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [206670] = 6, - ACTIONS(247), 1, + STATE(6741), 1, + sym__immediate_decimal, + ACTIONS(8316), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [208175] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8762), 1, - sym_long_flag_identifier, - ACTIONS(8764), 1, + ACTIONS(4947), 1, + anon_sym_DASH, + ACTIONS(9281), 1, anon_sym_EQ2, - STATE(5518), 1, + STATE(5718), 1, sym_comment, - ACTIONS(4808), 2, - anon_sym_DASH, - anon_sym_as, - ACTIONS(4810), 4, + ACTIONS(4945), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, - [206693] = 4, + anon_sym_as, + [208195] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(5519), 1, - sym_comment, - ACTIONS(1036), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(2049), 1, sym__entry_separator, - ACTIONS(1034), 5, + ACTIONS(9219), 1, + anon_sym_DOT, + STATE(5719), 1, + sym_comment, + STATE(5793), 1, + aux_sym_cell_path_repeat1, + STATE(6725), 1, + sym_path, + STATE(6829), 1, + sym_cell_path, + ACTIONS(2047), 2, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [206712] = 9, - ACTIONS(247), 1, + [208221] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4131), 1, - anon_sym_DQUOTE, - ACTIONS(8673), 1, + STATE(5720), 1, + sym_comment, + ACTIONS(7964), 7, + sym_raw_string_begin, sym_identifier, - ACTIONS(8766), 1, + anon_sym_COMMA, anon_sym_GT, - STATE(4744), 1, - sym__str_double_quotes, - STATE(5466), 1, - aux_sym_collection_type_repeat1, - STATE(5520), 1, - sym_comment, - STATE(5550), 1, - sym_val_string, - ACTIONS(4133), 2, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [206741] = 4, - ACTIONS(247), 1, + [208237] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5521), 1, + ACTIONS(1842), 1, + anon_sym_RBRACK, + ACTIONS(1844), 1, + anon_sym_LPAREN2, + ACTIONS(1850), 1, + sym__entry_separator, + ACTIONS(1852), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(9283), 1, + anon_sym_DOT_DOT2, + STATE(5721), 1, sym_comment, - ACTIONS(1655), 3, - anon_sym_DOLLAR, + ACTIONS(9285), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1653), 5, + [208263] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(9289), 1, + anon_sym_COMMA, + STATE(5722), 1, + sym_comment, + ACTIONS(9287), 6, + sym_raw_string_begin, sym_identifier, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [206760] = 4, - ACTIONS(247), 1, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [208281] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5030), 1, - anon_sym_DASH, - STATE(5522), 1, + ACTIONS(9293), 1, + anon_sym_COMMA, + STATE(5723), 1, + sym_comment, + ACTIONS(9291), 6, + sym_raw_string_begin, + sym_identifier, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [208299] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + STATE(5724), 1, sym_comment, - ACTIONS(5028), 7, + ACTIONS(2293), 3, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_as, + ACTIONS(2297), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, + [208319] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + STATE(5725), 1, + sym_comment, + ACTIONS(2303), 3, anon_sym_DASH_DASH, - anon_sym_in, - anon_sym_RBRACE, + anon_sym_DASH, anon_sym_as, - [206779] = 8, - ACTIONS(247), 1, + ACTIONS(2305), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [208339] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1880), 1, - anon_sym_DASH, - ACTIONS(5602), 1, + ACTIONS(9247), 1, anon_sym_DOT, - STATE(2632), 1, - aux_sym_cell_path_repeat1, - STATE(2655), 1, + STATE(2752), 1, sym_path, - STATE(4826), 1, + STATE(4165), 1, sym_cell_path, - STATE(5523), 1, + STATE(5726), 1, sym_comment, - ACTIONS(1882), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [206806] = 7, - ACTIONS(247), 1, + STATE(5919), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1023), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [208363] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1011), 1, + ACTIONS(1027), 1, anon_sym_DOT_DOT2, - ACTIONS(8721), 1, + ACTIONS(8875), 1, anon_sym_DOT, - STATE(1212), 1, + STATE(1268), 1, sym_path, - STATE(5524), 1, + STATE(5727), 1, sym_comment, - STATE(5633), 1, + STATE(5728), 1, aux_sym_cell_path_repeat1, - ACTIONS(1013), 3, + ACTIONS(1029), 3, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [206830] = 8, - ACTIONS(3), 1, + [208387] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1854), 1, - sym__entry_separator, - ACTIONS(8768), 1, + ACTIONS(1031), 1, + anon_sym_DOT_DOT2, + ACTIONS(9295), 1, anon_sym_DOT, - STATE(2927), 1, - sym_cell_path, - STATE(5525), 1, + STATE(1268), 1, + sym_path, + STATE(5728), 2, sym_comment, - STATE(5699), 1, aux_sym_cell_path_repeat1, - STATE(6292), 1, - sym_path, - ACTIONS(1852), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [206856] = 8, + ACTIONS(1033), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [208409] = 7, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(8464), 1, + sym_identifier, + ACTIONS(9298), 1, + anon_sym_DASH_DASH, + ACTIONS(9301), 1, + anon_sym_DASH, + STATE(6018), 1, + sym__flag, + STATE(5729), 2, + sym_comment, + aux_sym_ctrl_do_repeat1, + STATE(6083), 2, + sym_short_flag, + sym_long_flag, + [208433] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1858), 1, - sym__entry_separator, - ACTIONS(8768), 1, - anon_sym_DOT, - STATE(2967), 1, - sym_cell_path, - STATE(5526), 1, + ACTIONS(9304), 1, + sym__newline, + ACTIONS(9307), 1, + sym__space, + STATE(5730), 2, sym_comment, - STATE(5699), 1, - aux_sym_cell_path_repeat1, - STATE(6292), 1, - sym_path, - ACTIONS(1856), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [206882] = 8, + aux_sym_ctrl_do_parenthesized_repeat2, + ACTIONS(3810), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + [208453] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1902), 1, + ACTIONS(2003), 1, sym__entry_separator, - ACTIONS(8768), 1, + ACTIONS(9219), 1, anon_sym_DOT, - STATE(2969), 1, - sym_cell_path, - STATE(5527), 1, + STATE(5731), 1, sym_comment, - STATE(5699), 1, + STATE(5793), 1, aux_sym_cell_path_repeat1, - STATE(6292), 1, + STATE(6725), 1, sym_path, - ACTIONS(1900), 2, + STATE(6961), 1, + sym_cell_path, + ACTIONS(2001), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [206908] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8411), 1, - anon_sym_DOT, - STATE(3130), 1, - sym_cell_path, - STATE(5242), 1, - aux_sym_cell_path_repeat1, - STATE(5513), 1, - sym_path, - STATE(5528), 1, - sym_comment, - ACTIONS(1007), 3, - anon_sym_EQ, - sym__newline, - anon_sym_COLON, - [206932] = 8, + [208479] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1862), 1, - sym__entry_separator, - ACTIONS(8768), 1, - anon_sym_DOT, - STATE(2903), 1, - sym_cell_path, - STATE(5529), 1, + STATE(5732), 1, sym_comment, - STATE(5699), 1, - aux_sym_cell_path_repeat1, - STATE(6292), 1, - sym_path, - ACTIONS(1860), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [206958] = 8, - ACTIONS(247), 1, + ACTIONS(2291), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + ACTIONS(2289), 4, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_as, + aux_sym_unquoted_token4, + [208497] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1572), 1, - anon_sym_in, - ACTIONS(4512), 1, + ACTIONS(1640), 1, + anon_sym_LBRACE, + ACTIONS(4614), 1, anon_sym_DOT_DOT2, - ACTIONS(6790), 1, - aux_sym_unquoted_token2, - ACTIONS(8770), 1, + ACTIONS(6512), 1, sym_filesize_unit, - ACTIONS(8772), 1, + ACTIONS(6514), 1, sym_duration_unit, - STATE(5530), 1, + ACTIONS(8580), 1, + aux_sym_unquoted_token2, + STATE(5733), 1, sym_comment, - ACTIONS(4514), 2, + ACTIONS(4616), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [206984] = 4, + [208523] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(5531), 1, + ACTIONS(2275), 1, + aux_sym_unquoted_token4, + STATE(5734), 1, sym_comment, - ACTIONS(1659), 3, - anon_sym_RBRACE, + ACTIONS(1090), 3, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_as, + ACTIONS(1092), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [208543] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(5735), 1, + sym_comment, + ACTIONS(1715), 2, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1661), 4, - anon_sym_LPAREN2, + aux_sym_unquoted_token2, + ACTIONS(1717), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [207002] = 8, - ACTIONS(247), 1, + [208561] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8774), 1, - sym_identifier, - ACTIONS(8776), 1, + ACTIONS(6211), 1, + anon_sym_LBRACE, + ACTIONS(9213), 1, anon_sym_DASH_DASH, - ACTIONS(8778), 1, + ACTIONS(9215), 1, anon_sym_DASH, - STATE(5532), 1, + STATE(5736), 1, sym_comment, - STATE(5611), 1, - aux_sym_ctrl_do_repeat1, - STATE(5902), 1, + STATE(6219), 1, + sym_block, + STATE(7486), 1, sym__flag, - STATE(6046), 2, + STATE(6083), 2, sym_short_flag, sym_long_flag, - [207028] = 8, - ACTIONS(3), 1, + [208587] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1494), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(1778), 1, - anon_sym_RBRACE, - ACTIONS(1780), 1, - anon_sym_LPAREN2, - ACTIONS(1786), 1, - sym__entry_separator, - ACTIONS(8780), 1, - anon_sym_DOT_DOT2, - STATE(5533), 1, + ACTIONS(6202), 1, + anon_sym_LBRACE, + ACTIONS(9213), 1, + anon_sym_DASH_DASH, + ACTIONS(9215), 1, + anon_sym_DASH, + STATE(5737), 1, sym_comment, - ACTIONS(8782), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [207054] = 5, - ACTIONS(247), 1, + STATE(7188), 1, + sym_block, + STATE(7498), 1, + sym__flag, + STATE(6083), 2, + sym_short_flag, + sym_long_flag, + [208613] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8784), 1, - aux_sym__immediate_decimal_token2, - STATE(5534), 1, + ACTIONS(6211), 1, + anon_sym_LBRACE, + ACTIONS(9213), 1, + anon_sym_DASH_DASH, + ACTIONS(9215), 1, + anon_sym_DASH, + STATE(5738), 1, sym_comment, - ACTIONS(1721), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1723), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [207074] = 5, - ACTIONS(247), 1, + STATE(6220), 1, + sym_block, + STATE(7487), 1, + sym__flag, + STATE(6083), 2, + sym_short_flag, + sym_long_flag, + [208639] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1560), 1, + ACTIONS(6202), 1, + anon_sym_LBRACE, + ACTIONS(9213), 1, + anon_sym_DASH_DASH, + ACTIONS(9215), 1, anon_sym_DASH, - ACTIONS(6834), 1, - aux_sym_unquoted_token2, - STATE(5535), 1, + STATE(5739), 1, sym_comment, - ACTIONS(1572), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [207094] = 9, - ACTIONS(247), 1, + STATE(7198), 1, + sym_block, + STATE(7504), 1, + sym__flag, + STATE(6083), 2, + sym_short_flag, + sym_long_flag, + [208665] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3231), 1, - aux_sym_record_entry_token1, - ACTIONS(8786), 1, - anon_sym_alias, - ACTIONS(8788), 1, - anon_sym_const, - ACTIONS(8790), 1, - anon_sym_def, - ACTIONS(8792), 1, - anon_sym_extern, - ACTIONS(8794), 1, - anon_sym_module, - ACTIONS(8796), 1, - anon_sym_use, - STATE(5536), 1, + ACTIONS(6211), 1, + anon_sym_LBRACE, + ACTIONS(9213), 1, + anon_sym_DASH_DASH, + ACTIONS(9215), 1, + anon_sym_DASH, + STATE(5740), 1, sym_comment, - [207122] = 8, - ACTIONS(247), 1, + STATE(6221), 1, + sym_block, + STATE(7489), 1, + sym__flag, + STATE(6083), 2, + sym_short_flag, + sym_long_flag, + [208691] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6057), 1, + ACTIONS(6202), 1, anon_sym_LBRACE, - ACTIONS(8798), 1, + ACTIONS(9213), 1, anon_sym_DASH_DASH, - ACTIONS(8800), 1, + ACTIONS(9215), 1, anon_sym_DASH, - STATE(5537), 1, + STATE(5741), 1, sym_comment, - STATE(6784), 1, + STATE(7200), 1, sym_block, - STATE(7260), 1, + STATE(7508), 1, sym__flag, - STATE(6046), 2, + STATE(6083), 2, sym_short_flag, sym_long_flag, - [207148] = 4, + [208717] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(5538), 1, - sym_comment, - ACTIONS(1667), 3, + ACTIONS(1842), 1, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1669), 4, + ACTIONS(1844), 1, anon_sym_LPAREN2, + ACTIONS(1850), 1, + sym__entry_separator, + ACTIONS(1852), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(9310), 1, + anon_sym_DOT_DOT2, + STATE(5742), 1, + sym_comment, + ACTIONS(9312), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + [208743] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2053), 1, sym__entry_separator, - [207166] = 7, + ACTIONS(9219), 1, + anon_sym_DOT, + STATE(5743), 1, + sym_comment, + STATE(5793), 1, + aux_sym_cell_path_repeat1, + STATE(6725), 1, + sym_path, + STATE(6830), 1, + sym_cell_path, + ACTIONS(2051), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [208769] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8802), 1, + ACTIONS(9251), 1, anon_sym_DOT, - STATE(5539), 1, + STATE(5744), 1, sym_comment, - STATE(5635), 1, + STATE(5771), 1, aux_sym_cell_path_repeat1, - STATE(6603), 1, + STATE(6329), 1, sym_path, - STATE(6924), 1, + STATE(7303), 1, sym_cell_path, - ACTIONS(1828), 3, + ACTIONS(1909), 3, anon_sym_RBRACK, sym__entry_separator, sym__table_head_separator, - [207190] = 5, + [208793] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2235), 1, - aux_sym_unquoted_token4, - STATE(5540), 1, + ACTIONS(2007), 1, + sym__entry_separator, + ACTIONS(9219), 1, + anon_sym_DOT, + STATE(5745), 1, sym_comment, - ACTIONS(2229), 3, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_as, - ACTIONS(2233), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [207210] = 8, - ACTIONS(247), 1, + STATE(5793), 1, + aux_sym_cell_path_repeat1, + STATE(6725), 1, + sym_path, + STATE(6964), 1, + sym_cell_path, + ACTIONS(2005), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [208819] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8798), 1, + STATE(5746), 1, + sym_comment, + ACTIONS(1076), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1074), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_DOT, + [208837] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(9213), 1, anon_sym_DASH_DASH, - ACTIONS(8800), 1, + ACTIONS(9215), 1, anon_sym_DASH, - ACTIONS(8804), 1, + ACTIONS(9314), 1, anon_sym_LBRACE, - STATE(5541), 1, + STATE(5747), 1, sym_comment, - STATE(6845), 1, + STATE(6717), 1, sym_val_record, - STATE(7354), 1, + STATE(7561), 1, sym__flag, - STATE(6046), 2, + STATE(6083), 2, sym_short_flag, sym_long_flag, - [207236] = 4, - ACTIONS(247), 1, + [208863] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5542), 1, + ACTIONS(2081), 1, + sym__entry_separator, + ACTIONS(9219), 1, + anon_sym_DOT, + STATE(5748), 1, sym_comment, - ACTIONS(1659), 2, + STATE(5793), 1, + aux_sym_cell_path_repeat1, + STATE(6725), 1, + sym_path, + STATE(7179), 1, + sym_cell_path, + ACTIONS(2079), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [208889] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1526), 1, + aux_sym_unquoted_token2, + ACTIONS(9316), 1, + anon_sym_DOT_DOT2, + STATE(5749), 1, + sym_comment, + ACTIONS(9318), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1796), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [208911] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(5750), 1, + sym_comment, + ACTIONS(1703), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1661), 5, + ACTIONS(1705), 5, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [207254] = 9, - ACTIONS(247), 1, + [208929] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1899), 1, + sym__entry_separator, + ACTIONS(9219), 1, + anon_sym_DOT, + STATE(5751), 1, + sym_comment, + STATE(5793), 1, + aux_sym_cell_path_repeat1, + STATE(6725), 1, + sym_path, + STATE(6922), 1, + sym_cell_path, + ACTIONS(1897), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [208955] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(5752), 1, + sym_comment, + ACTIONS(1703), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1705), 5, + sym__newline, + anon_sym_LBRACE, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [208973] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1628), 1, + anon_sym_RBRACE, + ACTIONS(1640), 1, + sym__entry_separator, + ACTIONS(9320), 1, + anon_sym_DOT_DOT2, + ACTIONS(9324), 1, + sym_filesize_unit, + ACTIONS(9326), 1, + sym_duration_unit, + STATE(5753), 1, + sym_comment, + ACTIONS(9322), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [208999] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2019), 1, + sym__entry_separator, + ACTIONS(9219), 1, + anon_sym_DOT, + STATE(5754), 1, + sym_comment, + STATE(5793), 1, + aux_sym_cell_path_repeat1, + STATE(6725), 1, + sym_path, + STATE(6802), 1, + sym_cell_path, + ACTIONS(2017), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [209025] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3229), 1, + ACTIONS(3296), 1, aux_sym_record_entry_token1, - ACTIONS(8786), 1, - anon_sym_alias, - ACTIONS(8788), 1, - anon_sym_const, - ACTIONS(8790), 1, - anon_sym_def, - ACTIONS(8792), 1, - anon_sym_extern, - ACTIONS(8794), 1, - anon_sym_module, - ACTIONS(8796), 1, - anon_sym_use, - STATE(5543), 1, + ACTIONS(8374), 1, + sym_identifier, + ACTIONS(9328), 1, + anon_sym_DOLLAR, + STATE(5416), 1, + sym_val_variable, + STATE(5755), 1, + sym_comment, + STATE(6047), 1, + sym__variable_name, + STATE(6303), 1, + sym__assignment_pattern, + [209050] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9330), 1, + anon_sym_LPAREN, + ACTIONS(9334), 1, + anon_sym_DQUOTE2, + STATE(5756), 1, + sym_comment, + STATE(5761), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6294), 1, + sym_expr_interpolated, + ACTIONS(9332), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [209073] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5464), 1, + aux_sym_unquoted_token3, + ACTIONS(8316), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8631), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8633), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8635), 1, + aux_sym__immediate_decimal_token5, + STATE(5757), 1, sym_comment, - [207282] = 3, - ACTIONS(247), 1, + STATE(6730), 1, + sym__immediate_decimal, + [209098] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5544), 1, + ACTIONS(5464), 1, + aux_sym_unquoted_token3, + ACTIONS(8442), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8637), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8639), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8641), 1, + aux_sym__immediate_decimal_token5, + STATE(5758), 1, + sym_comment, + STATE(7653), 1, + sym__immediate_decimal, + [209123] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(3296), 1, + aux_sym_record_entry_token1, + ACTIONS(8374), 1, + sym_identifier, + ACTIONS(9328), 1, + anon_sym_DOLLAR, + STATE(5416), 1, + sym_val_variable, + STATE(5759), 1, + sym_comment, + STATE(6047), 1, + sym__variable_name, + STATE(6300), 1, + sym__assignment_pattern, + [209148] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9330), 1, + anon_sym_LPAREN, + ACTIONS(9336), 1, + anon_sym_DQUOTE2, + STATE(5760), 1, + sym_comment, + STATE(5972), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6294), 1, + sym_expr_interpolated, + ACTIONS(9332), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [209171] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9330), 1, + anon_sym_LPAREN, + ACTIONS(9338), 1, + anon_sym_DQUOTE2, + STATE(5761), 1, + sym_comment, + STATE(5940), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6294), 1, + sym_expr_interpolated, + ACTIONS(9332), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [209194] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + ACTIONS(9342), 1, + anon_sym_RBRACK, + STATE(5762), 1, + sym_comment, + STATE(6112), 1, + aux_sym_shebang_repeat1, + STATE(7118), 1, + sym_val_list, + STATE(7240), 1, + aux_sym_val_table_repeat1, + [209219] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(3296), 1, + aux_sym_record_entry_token1, + ACTIONS(8374), 1, + sym_identifier, + ACTIONS(9328), 1, + anon_sym_DOLLAR, + STATE(5416), 1, + sym_val_variable, + STATE(5763), 1, + sym_comment, + STATE(6047), 1, + sym__variable_name, + STATE(6301), 1, + sym__assignment_pattern, + [209244] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6211), 1, + anon_sym_LBRACE, + STATE(5764), 1, + sym_comment, + STATE(6683), 1, + sym_block, + ACTIONS(9344), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [209263] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + ACTIONS(9346), 1, + anon_sym_RBRACK, + STATE(5765), 1, + sym_comment, + STATE(6113), 1, + aux_sym_shebang_repeat1, + STATE(7127), 1, + sym_val_list, + STATE(7242), 1, + aux_sym_val_table_repeat1, + [209288] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9330), 1, + anon_sym_LPAREN, + ACTIONS(9348), 1, + anon_sym_DQUOTE2, + STATE(5766), 1, + sym_comment, + STATE(5769), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6294), 1, + sym_expr_interpolated, + ACTIONS(9332), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [209311] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6929), 1, + aux_sym_unquoted_token3, + ACTIONS(8316), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8631), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8633), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8635), 1, + aux_sym__immediate_decimal_token5, + STATE(5767), 1, + sym_comment, + STATE(6730), 1, + sym__immediate_decimal, + [209336] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6929), 1, + aux_sym_unquoted_token3, + ACTIONS(8442), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8637), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8639), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8641), 1, + aux_sym__immediate_decimal_token5, + STATE(5768), 1, + sym_comment, + STATE(7653), 1, + sym__immediate_decimal, + [209361] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9330), 1, + anon_sym_LPAREN, + ACTIONS(9350), 1, + anon_sym_DQUOTE2, + STATE(5769), 1, + sym_comment, + STATE(5940), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6294), 1, + sym_expr_interpolated, + ACTIONS(9332), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [209384] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + ACTIONS(9352), 1, + anon_sym_RBRACK, + STATE(5770), 1, sym_comment, - ACTIONS(8806), 7, - sym_identifier, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_AT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [207298] = 8, + STATE(6120), 1, + aux_sym_shebang_repeat1, + STATE(7231), 1, + sym_val_list, + STATE(7257), 1, + aux_sym_val_table_repeat1, + [209409] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1906), 1, - sym__entry_separator, - ACTIONS(8768), 1, + ACTIONS(9251), 1, anon_sym_DOT, - STATE(2916), 1, - sym_cell_path, - STATE(5545), 1, + STATE(5771), 1, sym_comment, - STATE(5699), 1, + STATE(5828), 1, aux_sym_cell_path_repeat1, - STATE(6292), 1, + STATE(6329), 1, sym_path, - ACTIONS(1904), 2, + ACTIONS(1027), 3, anon_sym_RBRACK, - anon_sym_RBRACE, - [207324] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8715), 1, - anon_sym_DOT, - STATE(2655), 1, - sym_path, - STATE(5546), 1, - sym_comment, - STATE(5555), 1, - aux_sym_cell_path_repeat1, - STATE(6641), 1, - sym_cell_path, - ACTIONS(5763), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [207348] = 8, - ACTIONS(247), 1, + sym__entry_separator, + sym__table_head_separator, + [209430] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6055), 1, - anon_sym_LBRACE, - ACTIONS(8798), 1, - anon_sym_DASH_DASH, - ACTIONS(8800), 1, - anon_sym_DASH, - STATE(5547), 1, + ACTIONS(2119), 1, + sym__entry_separator, + ACTIONS(9354), 1, + anon_sym_DOT_DOT2, + STATE(5772), 1, sym_comment, - STATE(6329), 1, - sym_block, - STATE(7270), 1, - sym__flag, - STATE(6046), 2, - sym_short_flag, - sym_long_flag, - [207374] = 8, - ACTIONS(247), 1, + ACTIONS(2113), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(9356), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [209451] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6055), 1, - anon_sym_LBRACE, - ACTIONS(8798), 1, - anon_sym_DASH_DASH, - ACTIONS(8800), 1, - anon_sym_DASH, - STATE(5548), 1, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + ACTIONS(9358), 1, + anon_sym_RBRACK, + STATE(5773), 1, sym_comment, - STATE(6346), 1, - sym_block, - STATE(7274), 1, - sym__flag, - STATE(6046), 2, - sym_short_flag, - sym_long_flag, - [207400] = 8, + STATE(6121), 1, + aux_sym_shebang_repeat1, + STATE(7259), 1, + aux_sym_val_table_repeat1, + STATE(7295), 1, + sym_val_list, + [209476] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1834), 1, + ACTIONS(1092), 1, sym__entry_separator, - ACTIONS(8768), 1, - anon_sym_DOT, - STATE(535), 1, - sym_cell_path, - STATE(5549), 1, + ACTIONS(9360), 1, + anon_sym_DOT_DOT2, + STATE(5774), 1, sym_comment, - STATE(5699), 1, - aux_sym_cell_path_repeat1, - STATE(6292), 1, - sym_path, - ACTIONS(1832), 2, + ACTIONS(1090), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [207426] = 5, - ACTIONS(247), 1, + ACTIONS(9362), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [209497] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8810), 1, - anon_sym_COLON, - ACTIONS(8812), 1, - anon_sym_COMMA, - STATE(5550), 1, + ACTIONS(1536), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(9364), 1, + anon_sym_DOT, + ACTIONS(9366), 1, + aux_sym__immediate_decimal_token2, + STATE(5775), 1, sym_comment, - ACTIONS(8808), 5, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [207446] = 8, - ACTIONS(247), 1, + ACTIONS(1538), 3, + sym_filesize_unit, + sym_duration_unit, + aux_sym_record_entry_token1, + [209518] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6057), 1, - anon_sym_LBRACE, - ACTIONS(8798), 1, - anon_sym_DASH_DASH, - ACTIONS(8800), 1, - anon_sym_DASH, - STATE(5551), 1, + ACTIONS(9330), 1, + anon_sym_LPAREN, + ACTIONS(9368), 1, + anon_sym_DQUOTE2, + STATE(5776), 1, sym_comment, - STATE(6976), 1, - sym_block, - STATE(7278), 1, - sym__flag, - STATE(6046), 2, - sym_short_flag, - sym_long_flag, - [207472] = 7, + STATE(5779), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6294), 1, + sym_expr_interpolated, + ACTIONS(9332), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [209541] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8802), 1, - anon_sym_DOT, - STATE(5552), 1, + ACTIONS(4645), 1, + aux_sym_unquoted_token3, + ACTIONS(8316), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8631), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8633), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8635), 1, + aux_sym__immediate_decimal_token5, + STATE(5777), 1, sym_comment, - STATE(5635), 1, - aux_sym_cell_path_repeat1, - STATE(6603), 1, - sym_path, - STATE(6910), 1, - sym_cell_path, - ACTIONS(1832), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [207496] = 8, + STATE(6730), 1, + sym__immediate_decimal, + [209566] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1007), 1, - sym__entry_separator, - ACTIONS(8768), 1, - anon_sym_DOT, - STATE(5553), 1, + ACTIONS(4645), 1, + aux_sym_unquoted_token3, + ACTIONS(8442), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8637), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8639), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8641), 1, + aux_sym__immediate_decimal_token5, + STATE(5778), 1, sym_comment, - STATE(5698), 1, - sym_cell_path, - STATE(5699), 1, - aux_sym_cell_path_repeat1, - STATE(6292), 1, - sym_path, - ACTIONS(1005), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [207522] = 8, - ACTIONS(247), 1, + STATE(7653), 1, + sym__immediate_decimal, + [209591] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6055), 1, - anon_sym_LBRACE, - ACTIONS(8798), 1, - anon_sym_DASH_DASH, - ACTIONS(8800), 1, - anon_sym_DASH, - STATE(5554), 1, + ACTIONS(9330), 1, + anon_sym_LPAREN, + ACTIONS(9370), 1, + anon_sym_DQUOTE2, + STATE(5779), 1, sym_comment, - STATE(6358), 1, - sym_block, - STATE(7277), 1, - sym__flag, - STATE(6046), 2, - sym_short_flag, - sym_long_flag, - [207548] = 6, - ACTIONS(247), 1, + STATE(5940), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6294), 1, + sym_expr_interpolated, + ACTIONS(9332), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [209614] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8715), 1, - anon_sym_DOT, - STATE(2655), 1, - sym_path, - STATE(5555), 1, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + ACTIONS(9372), 1, + anon_sym_RBRACK, + STATE(5780), 1, sym_comment, - STATE(5556), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1013), 4, - anon_sym_PIPE, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [207570] = 5, - ACTIONS(247), 1, + STATE(6123), 1, + aux_sym_shebang_repeat1, + STATE(6761), 1, + sym_val_list, + STATE(7263), 1, + aux_sym_val_table_repeat1, + [209639] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8814), 1, - anon_sym_DOT, - STATE(2655), 1, - sym_path, - STATE(5556), 2, + ACTIONS(5053), 1, + anon_sym_DASH, + STATE(5781), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1017), 4, - anon_sym_PIPE, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [207590] = 4, - ACTIONS(247), 1, + ACTIONS(5051), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [209656] = 6, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5557), 1, + ACTIONS(9374), 1, + anon_sym_EQ2, + ACTIONS(9376), 1, + sym_short_flag_identifier, + STATE(5782), 1, sym_comment, - ACTIONS(1721), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1723), 5, - sym__newline, + ACTIONS(4925), 2, + anon_sym_DASH_DASH, + anon_sym_DASH, + ACTIONS(4927), 2, + anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [207608] = 4, + [209677] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5558), 1, + STATE(5783), 1, sym_comment, - ACTIONS(1048), 3, + ACTIONS(2230), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + ACTIONS(2232), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1046), 4, + [209694] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + ACTIONS(9378), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [207626] = 8, - ACTIONS(247), 1, + STATE(5784), 1, + sym_comment, + STATE(6124), 1, + aux_sym_shebang_repeat1, + STATE(6765), 1, + sym_val_list, + STATE(7265), 1, + aux_sym_val_table_repeat1, + [209719] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6057), 1, - anon_sym_LBRACE, - ACTIONS(8798), 1, + ACTIONS(9380), 1, anon_sym_DASH_DASH, - ACTIONS(8800), 1, + ACTIONS(9382), 1, anon_sym_DASH, - STATE(5559), 1, + ACTIONS(9384), 1, + anon_sym_in, + STATE(5785), 1, sym_comment, - STATE(7036), 1, - sym_block, - STATE(7321), 1, + STATE(7614), 1, sym__flag, - STATE(6046), 2, + STATE(5494), 2, sym_short_flag, sym_long_flag, - [207652] = 8, + [209742] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1830), 1, - sym__entry_separator, - ACTIONS(8768), 1, - anon_sym_DOT, - STATE(534), 1, - sym_cell_path, - STATE(5560), 1, - sym_comment, - STATE(5699), 1, - aux_sym_cell_path_repeat1, - STATE(6292), 1, - sym_path, - ACTIONS(1828), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [207678] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6057), 1, + ACTIONS(2285), 1, anon_sym_LBRACE, - ACTIONS(8798), 1, + ACTIONS(2287), 1, + aux_sym_unquoted_token4, + STATE(5786), 1, + sym_comment, + ACTIONS(2281), 4, + sym_identifier, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - ACTIONS(8800), 1, anon_sym_DASH, - STATE(5561), 1, - sym_comment, - STATE(7096), 1, - sym_block, - STATE(7339), 1, - sym__flag, - STATE(6046), 2, - sym_short_flag, - sym_long_flag, - [207704] = 3, - ACTIONS(247), 1, + [209761] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5562), 1, + ACTIONS(9330), 1, + anon_sym_LPAREN, + ACTIONS(9386), 1, + anon_sym_DQUOTE2, + STATE(5787), 1, sym_comment, - ACTIONS(5099), 7, - sym_identifier, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym_record_entry_token1, - [207720] = 8, + STATE(5790), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6294), 1, + sym_expr_interpolated, + ACTIONS(9332), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [209784] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1838), 1, - sym__entry_separator, - ACTIONS(8768), 1, - anon_sym_DOT, - STATE(2930), 1, - sym_cell_path, - STATE(5563), 1, + ACTIONS(7068), 1, + aux_sym_unquoted_token3, + ACTIONS(8316), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8631), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8633), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8635), 1, + aux_sym__immediate_decimal_token5, + STATE(5788), 1, sym_comment, - STATE(5699), 1, - aux_sym_cell_path_repeat1, - STATE(6292), 1, - sym_path, - ACTIONS(1836), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [207746] = 5, + STATE(6730), 1, + sym__immediate_decimal, + [209809] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8817), 1, - sym__newline, - ACTIONS(8820), 1, - sym__space, - STATE(5564), 2, + ACTIONS(7068), 1, + aux_sym_unquoted_token3, + ACTIONS(8442), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8637), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8639), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8641), 1, + aux_sym__immediate_decimal_token5, + STATE(5789), 1, sym_comment, - aux_sym_ctrl_do_parenthesized_repeat2, - ACTIONS(3573), 4, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_LBRACE, - [207766] = 6, - ACTIONS(247), 1, + STATE(7653), 1, + sym__immediate_decimal, + [209834] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1798), 1, - aux_sym_unquoted_token2, - ACTIONS(8823), 1, - anon_sym_DOT_DOT2, - STATE(5565), 1, + ACTIONS(9330), 1, + anon_sym_LPAREN, + ACTIONS(9388), 1, + anon_sym_DQUOTE2, + STATE(5790), 1, sym_comment, - ACTIONS(8825), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1796), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [207788] = 8, - ACTIONS(247), 1, + STATE(5940), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6294), 1, + sym_expr_interpolated, + ACTIONS(9332), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [209857] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6055), 1, - anon_sym_LBRACE, - ACTIONS(8798), 1, - anon_sym_DASH_DASH, - ACTIONS(8800), 1, - anon_sym_DASH, - STATE(5566), 1, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + ACTIONS(9390), 1, + anon_sym_RBRACK, + STATE(5791), 1, sym_comment, - STATE(6473), 1, - sym_block, - STATE(7284), 1, - sym__flag, - STATE(6046), 2, - sym_short_flag, - sym_long_flag, - [207814] = 8, - ACTIONS(3), 1, + STATE(6125), 1, + aux_sym_shebang_repeat1, + STATE(7270), 1, + aux_sym_val_table_repeat1, + STATE(7404), 1, + sym_val_list, + [209882] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1866), 1, - sym__entry_separator, - ACTIONS(8768), 1, - anon_sym_DOT, - STATE(2951), 1, - sym_cell_path, - STATE(5567), 1, - sym_comment, - STATE(5699), 1, - aux_sym_cell_path_repeat1, - STATE(6292), 1, - sym_path, - ACTIONS(1864), 2, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + ACTIONS(9392), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [207840] = 8, + STATE(5792), 1, + sym_comment, + STATE(6126), 1, + aux_sym_shebang_repeat1, + STATE(6786), 1, + sym_val_list, + STATE(7273), 1, + aux_sym_val_table_repeat1, + [209907] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1870), 1, + ACTIONS(1029), 1, sym__entry_separator, - ACTIONS(8768), 1, + ACTIONS(9219), 1, anon_sym_DOT, - STATE(2952), 1, - sym_cell_path, - STATE(5568), 1, + STATE(5793), 1, sym_comment, - STATE(5699), 1, + STATE(5957), 1, aux_sym_cell_path_repeat1, - STATE(6292), 1, + STATE(6725), 1, sym_path, - ACTIONS(1868), 2, + ACTIONS(1027), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [207866] = 8, + [209930] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1842), 1, - sym__entry_separator, - ACTIONS(8768), 1, - anon_sym_DOT, - STATE(2954), 1, - sym_cell_path, - STATE(5569), 1, + STATE(5794), 1, sym_comment, - STATE(5699), 1, - aux_sym_cell_path_repeat1, - STATE(6292), 1, - sym_path, - ACTIONS(1840), 2, + ACTIONS(1670), 3, anon_sym_RBRACK, anon_sym_RBRACE, - [207892] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5570), 1, - sym_comment, - ACTIONS(1667), 2, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1669), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, + ACTIONS(1672), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [207910] = 6, - ACTIONS(247), 1, + sym__entry_separator, + [209947] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1494), 1, - aux_sym_unquoted_token2, - ACTIONS(8827), 1, - anon_sym_DOT_DOT2, - STATE(5571), 1, + ACTIONS(9223), 1, + anon_sym_DASH, + STATE(5795), 1, sym_comment, - ACTIONS(8829), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1786), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [207932] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6055), 1, - anon_sym_LBRACE, - ACTIONS(8798), 1, + ACTIONS(9221), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_DASH_DASH, - ACTIONS(8800), 1, - anon_sym_DASH, - STATE(5572), 1, + anon_sym_as, + [209964] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9330), 1, + anon_sym_LPAREN, + ACTIONS(9394), 1, + anon_sym_DQUOTE2, + STATE(5796), 1, sym_comment, - STATE(6196), 1, - sym_block, - STATE(7358), 1, - sym__flag, - STATE(6046), 2, - sym_short_flag, - sym_long_flag, - [207958] = 8, + STATE(5799), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6294), 1, + sym_expr_interpolated, + ACTIONS(9332), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [209987] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1846), 1, - sym__entry_separator, - ACTIONS(8768), 1, - anon_sym_DOT, - STATE(2955), 1, - sym_cell_path, - STATE(5573), 1, + ACTIONS(7021), 1, + aux_sym_unquoted_token3, + ACTIONS(8316), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8631), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8633), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8635), 1, + aux_sym__immediate_decimal_token5, + STATE(5797), 1, sym_comment, - STATE(5699), 1, - aux_sym_cell_path_repeat1, - STATE(6292), 1, - sym_path, - ACTIONS(1844), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [207984] = 8, - ACTIONS(247), 1, + STATE(6730), 1, + sym__immediate_decimal, + [210012] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6055), 1, - anon_sym_LBRACE, - ACTIONS(8798), 1, - anon_sym_DASH_DASH, - ACTIONS(8800), 1, - anon_sym_DASH, - STATE(5574), 1, + ACTIONS(7021), 1, + aux_sym_unquoted_token3, + ACTIONS(8442), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8637), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8639), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8641), 1, + aux_sym__immediate_decimal_token5, + STATE(5798), 1, sym_comment, - STATE(6081), 1, - sym_block, - STATE(7336), 1, - sym__flag, - STATE(6046), 2, - sym_short_flag, - sym_long_flag, - [208010] = 5, + STATE(7653), 1, + sym__immediate_decimal, + [210037] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2227), 1, - aux_sym_unquoted_token4, - STATE(5575), 1, + ACTIONS(9330), 1, + anon_sym_LPAREN, + ACTIONS(9396), 1, + anon_sym_DQUOTE2, + STATE(5799), 1, sym_comment, - ACTIONS(1070), 3, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_as, - ACTIONS(1072), 3, - ts_builtin_sym_end, + STATE(5940), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6294), 1, + sym_expr_interpolated, + ACTIONS(9332), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [210060] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(3766), 1, sym__newline, - anon_sym_SEMI, - [208030] = 8, - ACTIONS(247), 1, + ACTIONS(9340), 1, + anon_sym_LBRACK, + ACTIONS(9398), 1, + anon_sym_RBRACK, + STATE(5800), 1, + sym_comment, + STATE(6129), 1, + aux_sym_shebang_repeat1, + STATE(6809), 1, + sym_val_list, + STATE(7279), 1, + aux_sym_val_table_repeat1, + [210085] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1494), 1, + ACTIONS(1558), 1, aux_sym_unquoted_token2, - ACTIONS(8113), 1, + ACTIONS(8444), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8115), 1, + ACTIONS(8446), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8831), 1, - anon_sym_DOT, - STATE(5576), 1, + STATE(5801), 1, sym_comment, - STATE(6056), 1, + STATE(7548), 1, sym__immediate_decimal, - ACTIONS(8111), 2, + ACTIONS(8442), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - [208056] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1874), 1, - sym__entry_separator, - ACTIONS(8768), 1, - anon_sym_DOT, - STATE(2957), 1, - sym_cell_path, - STATE(5577), 1, - sym_comment, - STATE(5699), 1, - aux_sym_cell_path_repeat1, - STATE(6292), 1, - sym_path, - ACTIONS(1872), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [208082] = 7, - ACTIONS(247), 1, + [210108] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8715), 1, - anon_sym_DOT, - STATE(2655), 1, - sym_path, - STATE(4199), 1, - sym_cell_path, - STATE(5555), 1, - aux_sym_cell_path_repeat1, - STATE(5578), 1, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9400), 1, + anon_sym_LBRACE, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(4956), 1, + sym_block, + STATE(4958), 1, + sym_val_closure, + STATE(5108), 1, + sym__blosure, + STATE(5802), 1, sym_comment, - ACTIONS(1007), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [208106] = 8, - ACTIONS(3), 1, + [210133] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1788), 1, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + ACTIONS(9402), 1, anon_sym_RBRACK, - ACTIONS(1790), 1, - anon_sym_LPAREN2, - ACTIONS(1796), 1, - sym__entry_separator, - ACTIONS(1798), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(8833), 1, - anon_sym_DOT_DOT2, - STATE(5579), 1, + STATE(5803), 1, sym_comment, - ACTIONS(8835), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [208132] = 5, - ACTIONS(247), 1, + STATE(6130), 1, + aux_sym_shebang_repeat1, + STATE(6814), 1, + sym_val_list, + STATE(7282), 1, + aux_sym_val_table_repeat1, + [210158] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4900), 1, - anon_sym_DASH, - ACTIONS(8837), 1, - anon_sym_EQ2, - STATE(5580), 1, - sym_comment, - ACTIONS(4898), 5, - ts_builtin_sym_end, + ACTIONS(3766), 1, sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [208152] = 4, + ACTIONS(9400), 1, + anon_sym_LBRACE, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(4956), 1, + sym_block, + STATE(4958), 1, + sym_val_closure, + STATE(5109), 1, + sym__blosure, + STATE(5804), 1, + sym_comment, + [210183] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(5581), 1, + ACTIONS(9330), 1, + anon_sym_LPAREN, + ACTIONS(9404), 1, + anon_sym_DQUOTE2, + STATE(5805), 1, sym_comment, - ACTIONS(1052), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1050), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [208170] = 4, - ACTIONS(247), 1, + STATE(5810), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6294), 1, + sym_expr_interpolated, + ACTIONS(9332), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [210206] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8841), 1, - anon_sym_DASH, - STATE(5582), 1, + ACTIONS(9239), 1, + anon_sym_def, + ACTIONS(9241), 1, + anon_sym_extern, + ACTIONS(9243), 1, + anon_sym_module, + ACTIONS(9245), 1, + anon_sym_use, + ACTIONS(9406), 1, + anon_sym_alias, + ACTIONS(9408), 1, + anon_sym_const, + STATE(5806), 1, sym_comment, - ACTIONS(8839), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [208188] = 4, + [210231] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(5583), 1, + ACTIONS(6477), 1, + aux_sym_unquoted_token3, + ACTIONS(8316), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8631), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8633), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8635), 1, + aux_sym__immediate_decimal_token5, + STATE(5807), 1, sym_comment, - ACTIONS(1056), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1054), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT, - [208206] = 8, + STATE(6730), 1, + sym__immediate_decimal, + [210256] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1878), 1, - sym__entry_separator, - ACTIONS(8768), 1, - anon_sym_DOT, - STATE(2964), 1, - sym_cell_path, - STATE(5584), 1, - sym_comment, - STATE(5699), 1, - aux_sym_cell_path_repeat1, - STATE(6292), 1, - sym_path, - ACTIONS(1876), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [208232] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8247), 1, - sym_identifier, - ACTIONS(8843), 1, - anon_sym_DASH_DASH, - ACTIONS(8846), 1, - anon_sym_DASH, - STATE(5902), 1, - sym__flag, - STATE(5585), 2, + ACTIONS(6477), 1, + aux_sym_unquoted_token3, + ACTIONS(8442), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8637), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8639), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8641), 1, + aux_sym__immediate_decimal_token5, + STATE(5808), 1, sym_comment, - aux_sym_ctrl_do_repeat1, - STATE(6046), 2, - sym_short_flag, - sym_long_flag, - [208256] = 8, + STATE(7653), 1, + sym__immediate_decimal, + [210281] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1560), 1, - anon_sym_RBRACE, - ACTIONS(1572), 1, - sym__entry_separator, - ACTIONS(8849), 1, - anon_sym_DOT_DOT2, - ACTIONS(8853), 1, - sym_filesize_unit, - ACTIONS(8855), 1, - sym_duration_unit, - STATE(5586), 1, + ACTIONS(4870), 1, + aux_sym_unquoted_token3, + ACTIONS(8316), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8631), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8633), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8635), 1, + aux_sym__immediate_decimal_token5, + STATE(5809), 1, sym_comment, - ACTIONS(8851), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [208282] = 8, + STATE(5992), 1, + sym__immediate_decimal, + [210306] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1882), 1, - sym__entry_separator, - ACTIONS(8768), 1, - anon_sym_DOT, - STATE(2902), 1, - sym_cell_path, - STATE(5587), 1, + ACTIONS(9330), 1, + anon_sym_LPAREN, + ACTIONS(9410), 1, + anon_sym_DQUOTE2, + STATE(5810), 1, sym_comment, - STATE(5699), 1, - aux_sym_cell_path_repeat1, - STATE(6292), 1, - sym_path, - ACTIONS(1880), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [208308] = 8, - ACTIONS(247), 1, + STATE(5940), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6294), 1, + sym_expr_interpolated, + ACTIONS(9332), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [210329] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6055), 1, - anon_sym_LBRACE, - ACTIONS(8798), 1, - anon_sym_DASH_DASH, - ACTIONS(8800), 1, - anon_sym_DASH, - STATE(5588), 1, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + ACTIONS(9412), 1, + anon_sym_RBRACK, + STATE(5811), 1, sym_comment, - STATE(6197), 1, - sym_block, - STATE(7374), 1, - sym__flag, - STATE(6046), 2, - sym_short_flag, - sym_long_flag, - [208334] = 8, - ACTIONS(247), 1, + STATE(6020), 1, + aux_sym_shebang_repeat1, + STATE(6850), 1, + sym_val_list, + STATE(7157), 1, + aux_sym_val_table_repeat1, + [210354] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6055), 1, - anon_sym_LBRACE, - ACTIONS(8798), 1, - anon_sym_DASH_DASH, - ACTIONS(8800), 1, - anon_sym_DASH, - STATE(5589), 1, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + ACTIONS(9414), 1, + anon_sym_RBRACK, + STATE(5812), 1, sym_comment, - STATE(6198), 1, - sym_block, - STATE(7287), 1, - sym__flag, - STATE(6046), 2, - sym_short_flag, - sym_long_flag, - [208360] = 8, + STATE(6131), 1, + aux_sym_shebang_repeat1, + STATE(6837), 1, + sym_val_list, + STATE(7288), 1, + aux_sym_val_table_repeat1, + [210379] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1886), 1, + ACTIONS(2228), 1, sym__entry_separator, - ACTIONS(8768), 1, - anon_sym_DOT, - STATE(2911), 1, - sym_cell_path, - STATE(5590), 1, + ACTIONS(9416), 1, + anon_sym_DOT_DOT2, + STATE(5813), 1, sym_comment, - STATE(5699), 1, - aux_sym_cell_path_repeat1, - STATE(6292), 1, - sym_path, - ACTIONS(1884), 2, + ACTIONS(2222), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [208386] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4942), 1, - anon_sym_DASH, - ACTIONS(8857), 1, - anon_sym_EQ2, - STATE(5591), 1, - sym_comment, - ACTIONS(4940), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [208406] = 4, + ACTIONS(9418), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [210400] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5592), 1, + STATE(5814), 1, sym_comment, - ACTIONS(1721), 3, + ACTIONS(1078), 3, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1723), 4, - anon_sym_LPAREN2, + ACTIONS(1080), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [208424] = 8, - ACTIONS(247), 1, + [210417] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8776), 1, - anon_sym_DASH_DASH, - ACTIONS(8778), 1, - anon_sym_DASH, - ACTIONS(8859), 1, - sym_identifier, - STATE(5585), 1, - aux_sym_ctrl_do_repeat1, - STATE(5593), 1, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + ACTIONS(9420), 1, + anon_sym_RBRACK, + STATE(5815), 1, sym_comment, - STATE(5902), 1, - sym__flag, - STATE(6046), 2, - sym_short_flag, - sym_long_flag, - [208450] = 5, - ACTIONS(3), 1, + STATE(6132), 1, + aux_sym_shebang_repeat1, + STATE(6841), 1, + sym_val_list, + STATE(7290), 1, + aux_sym_val_table_repeat1, + [210442] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - STATE(5594), 1, - sym_comment, - ACTIONS(2245), 3, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_as, - ACTIONS(2247), 3, - ts_builtin_sym_end, + ACTIONS(3766), 1, sym__newline, - anon_sym_SEMI, - [208470] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5595), 1, + ACTIONS(9400), 1, + anon_sym_LBRACE, + STATE(4956), 1, + sym_block, + STATE(4958), 1, + sym_val_closure, + STATE(5109), 1, + sym__blosure, + STATE(5816), 1, sym_comment, - ACTIONS(2255), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - ACTIONS(2253), 4, - anon_sym_DASH_DASH, - anon_sym_DASH, - anon_sym_as, - aux_sym_unquoted_token4, - [208488] = 8, - ACTIONS(247), 1, + STATE(5902), 1, + aux_sym_shebang_repeat1, + [210467] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1494), 1, - aux_sym_unquoted_token2, - ACTIONS(8113), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8115), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8861), 1, - anon_sym_DOT, - STATE(5596), 1, + STATE(5817), 1, sym_comment, - STATE(6470), 1, - sym__immediate_decimal, - ACTIONS(8111), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [208514] = 5, - ACTIONS(247), 1, + ACTIONS(9422), 6, + sym_raw_string_begin, + sym_identifier, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [210482] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8865), 1, - anon_sym_COLON, - ACTIONS(8867), 1, - anon_sym_COMMA, - STATE(5597), 1, + STATE(5818), 1, sym_comment, - ACTIONS(8863), 5, + ACTIONS(9424), 6, + sym_raw_string_begin, sym_identifier, anon_sym_GT, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [208534] = 7, - ACTIONS(247), 1, + [210497] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8715), 1, - anon_sym_DOT, - STATE(2655), 1, - sym_path, - STATE(5555), 1, - aux_sym_cell_path_repeat1, - STATE(5598), 1, + ACTIONS(9330), 1, + anon_sym_LPAREN, + ACTIONS(9426), 1, + anon_sym_DQUOTE2, + STATE(5819), 1, sym_comment, - STATE(6945), 1, - sym_cell_path, - ACTIONS(5808), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [208558] = 8, + STATE(5823), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6294), 1, + sym_expr_interpolated, + ACTIONS(9332), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [210520] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1914), 1, - sym__entry_separator, - ACTIONS(8768), 1, - anon_sym_DOT, - STATE(523), 1, - sym_cell_path, - STATE(5599), 1, - sym_comment, - STATE(5699), 1, - aux_sym_cell_path_repeat1, - STATE(6292), 1, - sym_path, - ACTIONS(1912), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [208584] = 4, - ACTIONS(247), 1, + ACTIONS(4622), 1, + aux_sym_unquoted_token3, + ACTIONS(8316), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8631), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8633), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8635), 1, + aux_sym__immediate_decimal_token5, + STATE(5820), 1, + sym_comment, + STATE(6730), 1, + sym__immediate_decimal, + [210545] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5600), 1, + ACTIONS(4622), 1, + aux_sym_unquoted_token3, + ACTIONS(8442), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8637), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8639), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8641), 1, + aux_sym__immediate_decimal_token5, + STATE(5821), 1, sym_comment, - ACTIONS(1738), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1740), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [208602] = 8, + STATE(7653), 1, + sym__immediate_decimal, + [210570] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1850), 1, - sym__entry_separator, - ACTIONS(8768), 1, - anon_sym_DOT, - STATE(2924), 1, - sym_cell_path, - STATE(5601), 1, + ACTIONS(4870), 1, + aux_sym_unquoted_token3, + ACTIONS(8442), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8637), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8639), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8641), 1, + aux_sym__immediate_decimal_token5, + STATE(5822), 1, sym_comment, - STATE(5699), 1, - aux_sym_cell_path_repeat1, - STATE(6292), 1, - sym_path, - ACTIONS(1848), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [208628] = 5, + STATE(7543), 1, + sym__immediate_decimal, + [210595] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - STATE(5602), 1, + ACTIONS(9330), 1, + anon_sym_LPAREN, + ACTIONS(9428), 1, + anon_sym_DQUOTE2, + STATE(5823), 1, sym_comment, - ACTIONS(2237), 3, - anon_sym_DASH_DASH, + STATE(5940), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6294), 1, + sym_expr_interpolated, + ACTIONS(9332), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [210618] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5085), 1, anon_sym_DASH, - anon_sym_as, - ACTIONS(2241), 3, + STATE(5824), 1, + sym_comment, + ACTIONS(5083), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [208648] = 4, - ACTIONS(247), 1, + anon_sym_DASH_DASH, + anon_sym_as, + [210635] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5603), 1, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + ACTIONS(9430), 1, + anon_sym_RBRACK, + STATE(5825), 1, sym_comment, - ACTIONS(1518), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1520), 5, - anon_sym_in, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [208666] = 8, - ACTIONS(247), 1, + STATE(6133), 1, + aux_sym_shebang_repeat1, + STATE(6862), 1, + sym_val_list, + STATE(7296), 1, + aux_sym_val_table_repeat1, + [210660] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1572), 1, - anon_sym_LBRACE, - ACTIONS(4512), 1, - anon_sym_DOT_DOT2, - ACTIONS(6342), 1, - sym_filesize_unit, - ACTIONS(6344), 1, - sym_duration_unit, - ACTIONS(8395), 1, + ACTIONS(1526), 1, aux_sym_unquoted_token2, - STATE(5604), 1, + ACTIONS(9432), 1, + anon_sym_DOT_DOT2, + STATE(5826), 1, sym_comment, - ACTIONS(4514), 2, + ACTIONS(1796), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(9434), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [208692] = 4, - ACTIONS(247), 1, + [210681] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5605), 1, - sym_comment, - ACTIONS(1667), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1669), 5, + ACTIONS(3766), 1, sym__newline, - anon_sym_LBRACE, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [208710] = 8, + ACTIONS(9340), 1, + anon_sym_LBRACK, + ACTIONS(9436), 1, + anon_sym_RBRACK, + STATE(5827), 1, + sym_comment, + STATE(6134), 1, + aux_sym_shebang_repeat1, + STATE(6867), 1, + sym_val_list, + STATE(7298), 1, + aux_sym_val_table_repeat1, + [210706] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1826), 1, - sym__entry_separator, - ACTIONS(8768), 1, + ACTIONS(9438), 1, anon_sym_DOT, - STATE(511), 1, - sym_cell_path, - STATE(5606), 1, + STATE(6329), 1, + sym_path, + STATE(5828), 2, sym_comment, - STATE(5699), 1, aux_sym_cell_path_repeat1, - STATE(6292), 1, - sym_path, - ACTIONS(1822), 2, + ACTIONS(1031), 3, anon_sym_RBRACK, - anon_sym_RBRACE, - [208736] = 8, - ACTIONS(247), 1, + sym__entry_separator, + sym__table_head_separator, + [210725] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6057), 1, - anon_sym_LBRACE, - ACTIONS(8798), 1, - anon_sym_DASH_DASH, - ACTIONS(8800), 1, - anon_sym_DASH, - STATE(5607), 1, + ACTIONS(9330), 1, + anon_sym_LPAREN, + ACTIONS(9441), 1, + anon_sym_DQUOTE2, + STATE(5829), 1, sym_comment, - STATE(6957), 1, - sym_block, - STATE(7258), 1, - sym__flag, - STATE(6046), 2, - sym_short_flag, - sym_long_flag, - [208762] = 3, - ACTIONS(247), 1, + STATE(5834), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6294), 1, + sym_expr_interpolated, + ACTIONS(9332), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [210748] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5608), 1, + ACTIONS(9314), 1, + anon_sym_LBRACE, + STATE(5830), 1, sym_comment, - ACTIONS(5103), 7, - sym_identifier, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - aux_sym_record_entry_token1, - [208778] = 8, + STATE(6743), 1, + sym_val_record, + ACTIONS(9443), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [210767] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1788), 1, - anon_sym_RBRACE, - ACTIONS(1790), 1, - anon_sym_LPAREN2, - ACTIONS(1796), 1, - sym__entry_separator, - ACTIONS(1798), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(8869), 1, - anon_sym_DOT_DOT2, - STATE(5609), 1, + ACTIONS(6985), 1, + aux_sym_unquoted_token3, + ACTIONS(8316), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8631), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8633), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8635), 1, + aux_sym__immediate_decimal_token5, + STATE(5831), 1, sym_comment, - ACTIONS(8871), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [208804] = 4, - ACTIONS(247), 1, + STATE(6730), 1, + sym__immediate_decimal, + [210792] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5610), 1, + ACTIONS(6985), 1, + aux_sym_unquoted_token3, + ACTIONS(8442), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8637), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8639), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8641), 1, + aux_sym__immediate_decimal_token5, + STATE(5832), 1, sym_comment, - ACTIONS(1540), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1542), 5, - anon_sym_in, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [208822] = 8, - ACTIONS(247), 1, + STATE(7653), 1, + sym__immediate_decimal, + [210817] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8776), 1, - anon_sym_DASH_DASH, - ACTIONS(8778), 1, - anon_sym_DASH, - ACTIONS(8873), 1, - sym_identifier, - STATE(5585), 1, - aux_sym_ctrl_do_repeat1, - STATE(5611), 1, + ACTIONS(9314), 1, + anon_sym_LBRACE, + STATE(5833), 1, sym_comment, - STATE(5902), 1, - sym__flag, - STATE(6046), 2, - sym_short_flag, - sym_long_flag, - [208848] = 8, + STATE(6744), 1, + sym_val_record, + ACTIONS(9445), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [210836] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1494), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1778), 1, - anon_sym_RBRACK, - ACTIONS(1780), 1, - anon_sym_LPAREN2, - ACTIONS(1786), 1, - sym__entry_separator, - ACTIONS(8875), 1, - anon_sym_DOT_DOT2, - STATE(5612), 1, + ACTIONS(9330), 1, + anon_sym_LPAREN, + ACTIONS(9447), 1, + anon_sym_DQUOTE2, + STATE(5834), 1, sym_comment, - ACTIONS(8877), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [208874] = 8, - ACTIONS(3), 1, + STATE(5940), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6294), 1, + sym_expr_interpolated, + ACTIONS(9332), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [210859] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1890), 1, - sym__entry_separator, - ACTIONS(8768), 1, - anon_sym_DOT, - STATE(2914), 1, - sym_cell_path, - STATE(5613), 1, - sym_comment, - STATE(5699), 1, - aux_sym_cell_path_repeat1, - STATE(6292), 1, - sym_path, - ACTIONS(1888), 2, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + ACTIONS(9449), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [208900] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5614), 1, + STATE(5835), 1, sym_comment, - ACTIONS(1554), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1556), 5, - anon_sym_in, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [208918] = 8, - ACTIONS(247), 1, + STATE(6138), 1, + aux_sym_shebang_repeat1, + STATE(6890), 1, + sym_val_list, + STATE(7304), 1, + aux_sym_val_table_repeat1, + [210884] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6057), 1, - anon_sym_LBRACE, - ACTIONS(8798), 1, - anon_sym_DASH_DASH, - ACTIONS(8800), 1, - anon_sym_DASH, - STATE(5615), 1, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + ACTIONS(9451), 1, + anon_sym_RBRACK, + STATE(5836), 1, sym_comment, - STATE(6907), 1, - sym_block, - STATE(7205), 1, - sym__flag, - STATE(6046), 2, - sym_short_flag, - sym_long_flag, - [208944] = 3, - ACTIONS(247), 1, + STATE(6139), 1, + aux_sym_shebang_repeat1, + STATE(6895), 1, + sym_val_list, + STATE(7307), 1, + aux_sym_val_table_repeat1, + [210909] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5616), 1, + STATE(5837), 1, sym_comment, - ACTIONS(5132), 7, + ACTIONS(9453), 6, + sym_raw_string_begin, sym_identifier, - anon_sym_COMMA, anon_sym_GT, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - aux_sym_record_entry_token1, - [208960] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5617), 1, - sym_comment, - ACTIONS(1653), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1655), 5, - anon_sym_in, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [208978] = 4, - ACTIONS(247), 1, + [210924] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5618), 1, - sym_comment, - ACTIONS(1659), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1661), 5, + ACTIONS(3766), 1, sym__newline, + ACTIONS(9400), 1, anon_sym_LBRACE, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [208996] = 4, - ACTIONS(247), 1, + STATE(4956), 1, + sym_block, + STATE(4958), 1, + sym_val_closure, + STATE(5110), 1, + sym__blosure, + STATE(5838), 1, + sym_comment, + STATE(5905), 1, + aux_sym_shebang_repeat1, + [210949] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5619), 1, + ACTIONS(9330), 1, + anon_sym_LPAREN, + ACTIONS(9455), 1, + anon_sym_DQUOTE2, + STATE(5839), 1, sym_comment, - ACTIONS(1721), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1723), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [209014] = 8, - ACTIONS(247), 1, + STATE(5840), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6294), 1, + sym_expr_interpolated, + ACTIONS(9332), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [210972] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6057), 1, - anon_sym_LBRACE, - ACTIONS(8798), 1, - anon_sym_DASH_DASH, - ACTIONS(8800), 1, - anon_sym_DASH, - STATE(5620), 1, + ACTIONS(9330), 1, + anon_sym_LPAREN, + ACTIONS(9457), 1, + anon_sym_DQUOTE2, + STATE(5840), 1, sym_comment, - STATE(6908), 1, - sym_block, - STATE(7206), 1, - sym__flag, - STATE(6046), 2, - sym_short_flag, - sym_long_flag, - [209040] = 8, - ACTIONS(247), 1, + STATE(5940), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6294), 1, + sym_expr_interpolated, + ACTIONS(9332), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [210995] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6057), 1, - anon_sym_LBRACE, - ACTIONS(8798), 1, - anon_sym_DASH_DASH, - ACTIONS(8800), 1, - anon_sym_DASH, - STATE(5621), 1, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + ACTIONS(9459), 1, + anon_sym_RBRACK, + STATE(5841), 1, sym_comment, - STATE(6915), 1, - sym_block, - STATE(7214), 1, - sym__flag, - STATE(6046), 2, - sym_short_flag, - sym_long_flag, - [209066] = 8, - ACTIONS(247), 1, + STATE(6141), 1, + aux_sym_shebang_repeat1, + STATE(6911), 1, + sym_val_list, + STATE(7314), 1, + aux_sym_val_table_repeat1, + [211020] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8798), 1, - anon_sym_DASH_DASH, - ACTIONS(8800), 1, + ACTIONS(5061), 1, anon_sym_DASH, - ACTIONS(8879), 1, - anon_sym_LBRACE, - STATE(5622), 1, + STATE(5842), 1, sym_comment, - STATE(6122), 1, - sym_val_record, - STATE(7304), 1, - sym__flag, - STATE(6046), 2, - sym_short_flag, - sym_long_flag, - [209092] = 8, - ACTIONS(3), 1, + ACTIONS(5059), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [211037] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1937), 1, - sym__entry_separator, - ACTIONS(8768), 1, - anon_sym_DOT, - STATE(549), 1, - sym_cell_path, - STATE(5623), 1, - sym_comment, - STATE(5699), 1, - aux_sym_cell_path_repeat1, - STATE(6292), 1, - sym_path, - ACTIONS(1935), 2, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + ACTIONS(9461), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [209118] = 4, + STATE(5843), 1, + sym_comment, + STATE(6142), 1, + aux_sym_shebang_repeat1, + STATE(6916), 1, + sym_val_list, + STATE(7317), 1, + aux_sym_val_table_repeat1, + [211062] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(5624), 1, + ACTIONS(9330), 1, + anon_sym_LPAREN, + ACTIONS(9463), 1, + anon_sym_DQUOTE2, + STATE(5844), 1, sym_comment, - ACTIONS(1738), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1740), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [209136] = 8, + STATE(5845), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6294), 1, + sym_expr_interpolated, + ACTIONS(9332), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [211085] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1945), 1, - sym__entry_separator, - ACTIONS(8768), 1, - anon_sym_DOT, - STATE(550), 1, - sym_cell_path, - STATE(5625), 1, + ACTIONS(9330), 1, + anon_sym_LPAREN, + ACTIONS(9465), 1, + anon_sym_DQUOTE2, + STATE(5845), 1, sym_comment, - STATE(5699), 1, - aux_sym_cell_path_repeat1, - STATE(6292), 1, - sym_path, - ACTIONS(1943), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [209162] = 8, - ACTIONS(3), 1, + STATE(5940), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6294), 1, + sym_expr_interpolated, + ACTIONS(9332), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [211108] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1894), 1, - sym__entry_separator, - ACTIONS(8768), 1, - anon_sym_DOT, - STATE(2906), 1, - sym_cell_path, - STATE(5626), 1, + ACTIONS(6211), 1, + anon_sym_LBRACE, + STATE(5846), 1, sym_comment, - STATE(5699), 1, - aux_sym_cell_path_repeat1, - STATE(6292), 1, - sym_path, - ACTIONS(1892), 2, - anon_sym_RBRACK, + STATE(6455), 1, + sym_block, + ACTIONS(9467), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - [209188] = 4, - ACTIONS(247), 1, + [211127] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5627), 1, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + ACTIONS(9469), 1, + anon_sym_RBRACK, + STATE(5847), 1, sym_comment, - ACTIONS(1738), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1740), 5, + STATE(6145), 1, + aux_sym_shebang_repeat1, + STATE(6934), 1, + sym_val_list, + STATE(7324), 1, + aux_sym_val_table_repeat1, + [211152] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(3766), 1, sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + ACTIONS(9471), 1, + anon_sym_RBRACK, + STATE(5848), 1, + sym_comment, + STATE(6146), 1, + aux_sym_shebang_repeat1, + STATE(6938), 1, + sym_val_list, + STATE(7326), 1, + aux_sym_val_table_repeat1, + [211177] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1092), 1, anon_sym_LBRACE, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [209206] = 8, + ACTIONS(2275), 1, + aux_sym_unquoted_token4, + STATE(5849), 1, + sym_comment, + ACTIONS(1090), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + [211196] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1898), 1, + ACTIONS(1854), 1, + anon_sym_RBRACE, + ACTIONS(1858), 1, sym__entry_separator, - ACTIONS(8768), 1, + ACTIONS(9219), 1, anon_sym_DOT, - STATE(2907), 1, - sym_cell_path, - STATE(5628), 1, - sym_comment, - STATE(5699), 1, + STATE(5793), 1, aux_sym_cell_path_repeat1, - STATE(6292), 1, + STATE(5850), 1, + sym_comment, + STATE(6725), 1, sym_path, - ACTIONS(1896), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [209232] = 8, - ACTIONS(247), 1, + STATE(7506), 1, + sym_cell_path, + [211221] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1572), 1, - anon_sym_LBRACE, - ACTIONS(6342), 1, - sym_filesize_unit, - ACTIONS(6344), 1, - sym_duration_unit, - ACTIONS(8395), 1, - aux_sym_unquoted_token2, - ACTIONS(8881), 1, - anon_sym_DOT_DOT2, - STATE(5629), 1, + ACTIONS(9330), 1, + anon_sym_LPAREN, + ACTIONS(9473), 1, + anon_sym_DQUOTE2, + STATE(5851), 1, sym_comment, - ACTIONS(8883), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [209258] = 5, - ACTIONS(247), 1, + STATE(5852), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6294), 1, + sym_expr_interpolated, + ACTIONS(9332), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [211244] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8709), 1, - aux_sym__immediate_decimal_token2, - STATE(5630), 1, + ACTIONS(9330), 1, + anon_sym_LPAREN, + ACTIONS(9475), 1, + anon_sym_DQUOTE2, + STATE(5852), 1, sym_comment, - ACTIONS(1667), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1669), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [209278] = 8, - ACTIONS(247), 1, + STATE(5940), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6294), 1, + sym_expr_interpolated, + ACTIONS(9332), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [211267] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8776), 1, - anon_sym_DASH_DASH, - ACTIONS(8778), 1, - anon_sym_DASH, - ACTIONS(8885), 1, - sym_identifier, - STATE(5593), 1, - aux_sym_ctrl_do_repeat1, - STATE(5631), 1, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + ACTIONS(9477), 1, + anon_sym_RBRACK, + STATE(5853), 1, sym_comment, - STATE(5902), 1, - sym__flag, - STATE(6046), 2, - sym_short_flag, - sym_long_flag, - [209304] = 8, - ACTIONS(3), 1, + STATE(6147), 1, + aux_sym_shebang_repeat1, + STATE(6953), 1, + sym_val_list, + STATE(7331), 1, + aux_sym_val_table_repeat1, + [211292] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1949), 1, - sym__entry_separator, - ACTIONS(8768), 1, - anon_sym_DOT, - STATE(522), 1, - sym_cell_path, - STATE(5632), 1, - sym_comment, - STATE(5699), 1, - aux_sym_cell_path_repeat1, - STATE(6292), 1, - sym_path, - ACTIONS(1947), 2, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + ACTIONS(9479), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [209330] = 6, - ACTIONS(247), 1, + STATE(5854), 1, + sym_comment, + STATE(6148), 1, + aux_sym_shebang_repeat1, + STATE(6957), 1, + sym_val_list, + STATE(7334), 1, + aux_sym_val_table_repeat1, + [211317] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1015), 1, - anon_sym_DOT_DOT2, - ACTIONS(8887), 1, - anon_sym_DOT, - STATE(1212), 1, - sym_path, - STATE(5633), 2, + ACTIONS(9330), 1, + anon_sym_LPAREN, + ACTIONS(9481), 1, + anon_sym_DQUOTE2, + STATE(5855), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1017), 3, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [209352] = 7, - ACTIONS(247), 1, + STATE(5882), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6294), 1, + sym_expr_interpolated, + ACTIONS(9332), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [211340] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8890), 1, + ACTIONS(9380), 1, anon_sym_DASH_DASH, - ACTIONS(8892), 1, + ACTIONS(9382), 1, anon_sym_DASH, - ACTIONS(8894), 1, + ACTIONS(9483), 1, anon_sym_in, - STATE(5634), 1, + STATE(5856), 1, sym_comment, - STATE(7676), 1, + STATE(8055), 1, sym__flag, - STATE(5404), 2, + STATE(5494), 2, sym_short_flag, sym_long_flag, - [209375] = 6, + [211363] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8802), 1, - anon_sym_DOT, - STATE(5635), 1, + ACTIONS(9330), 1, + anon_sym_LPAREN, + ACTIONS(9485), 1, + anon_sym_DQUOTE2, + STATE(5857), 1, sym_comment, - STATE(5643), 1, - aux_sym_cell_path_repeat1, - STATE(6603), 1, - sym_path, - ACTIONS(1011), 3, + STATE(5859), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6294), 1, + sym_expr_interpolated, + ACTIONS(9332), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [211386] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1528), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(9487), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9489), 1, + aux_sym__immediate_decimal_token2, + STATE(5858), 1, + sym_comment, + ACTIONS(1530), 3, + sym_filesize_unit, + sym_duration_unit, + aux_sym_record_entry_token1, + [211407] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9330), 1, + anon_sym_LPAREN, + ACTIONS(9491), 1, + anon_sym_DQUOTE2, + STATE(5859), 1, + sym_comment, + STATE(5940), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6294), 1, + sym_expr_interpolated, + ACTIONS(9332), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [211430] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + ACTIONS(9493), 1, anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [209396] = 4, - ACTIONS(247), 1, + STATE(5860), 1, + sym_comment, + STATE(6149), 1, + aux_sym_shebang_repeat1, + STATE(6977), 1, + sym_val_list, + STATE(7339), 1, + aux_sym_val_table_repeat1, + [211455] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5636), 1, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + ACTIONS(9495), 1, + anon_sym_RBRACK, + STATE(5861), 1, sym_comment, - ACTIONS(1667), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1669), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [209413] = 8, + STATE(6150), 1, + aux_sym_shebang_repeat1, + STATE(6980), 1, + sym_val_list, + STATE(7342), 1, + aux_sym_val_table_repeat1, + [211480] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4742), 1, - aux_sym_unquoted_token3, - ACTIONS(8111), 1, + ACTIONS(8316), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8480), 1, + ACTIONS(8631), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8482), 1, + ACTIONS(8633), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8484), 1, + ACTIONS(8635), 1, aux_sym__immediate_decimal_token5, - STATE(5637), 1, + ACTIONS(9497), 1, + aux_sym_unquoted_token3, + STATE(5862), 1, sym_comment, - STATE(5916), 1, + STATE(6730), 1, sym__immediate_decimal, - [209438] = 8, + [211505] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4742), 1, - aux_sym_unquoted_token3, - ACTIONS(8209), 1, + ACTIONS(8442), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8486), 1, + ACTIONS(8637), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8488), 1, + ACTIONS(8639), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8490), 1, + ACTIONS(8641), 1, aux_sym__immediate_decimal_token5, - STATE(5638), 1, + ACTIONS(9497), 1, + aux_sym_unquoted_token3, + STATE(5863), 1, sym_comment, - STATE(7280), 1, + STATE(7653), 1, sym__immediate_decimal, - [209463] = 6, - ACTIONS(247), 1, + [211530] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1798), 1, - aux_sym_unquoted_token2, - ACTIONS(8896), 1, - anon_sym_DOT_DOT2, - STATE(5639), 1, + ACTIONS(9330), 1, + anon_sym_LPAREN, + ACTIONS(9499), 1, + anon_sym_DQUOTE2, + STATE(5864), 1, sym_comment, - ACTIONS(1796), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(8898), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [209484] = 5, + STATE(5865), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6294), 1, + sym_expr_interpolated, + ACTIONS(9332), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [211553] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - ACTIONS(2247), 1, - anon_sym_LBRACE, - STATE(5640), 1, + ACTIONS(9330), 1, + anon_sym_LPAREN, + ACTIONS(9501), 1, + anon_sym_DQUOTE2, + STATE(5865), 1, sym_comment, - ACTIONS(2245), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - [209503] = 4, - ACTIONS(247), 1, + STATE(5940), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6294), 1, + sym_expr_interpolated, + ACTIONS(9332), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [211576] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5641), 1, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + ACTIONS(9503), 1, + anon_sym_RBRACK, + STATE(5866), 1, + sym_comment, + STATE(6151), 1, + aux_sym_shebang_repeat1, + STATE(6998), 1, + sym_val_list, + STATE(7347), 1, + aux_sym_val_table_repeat1, + [211601] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + ACTIONS(9505), 1, + anon_sym_RBRACK, + STATE(5867), 1, sym_comment, - ACTIONS(1659), 2, + STATE(6152), 1, + aux_sym_shebang_repeat1, + STATE(7001), 1, + sym_val_list, + STATE(7350), 1, + aux_sym_val_table_repeat1, + [211626] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(4614), 1, anon_sym_DOT_DOT2, + ACTIONS(9497), 1, aux_sym_unquoted_token2, - ACTIONS(1661), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, + STATE(5868), 1, + sym_comment, + ACTIONS(4616), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [209520] = 8, - ACTIONS(247), 1, + ACTIONS(9507), 2, + sym_filesize_unit, + sym_duration_unit, + [211647] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, + ACTIONS(3766), 1, sym__newline, - ACTIONS(8900), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - ACTIONS(8902), 1, + ACTIONS(9509), 1, anon_sym_RBRACK, - STATE(5642), 1, + STATE(5869), 1, sym_comment, - STATE(5967), 1, + STATE(6153), 1, aux_sym_shebang_repeat1, - STATE(6876), 1, + STATE(7012), 1, sym_val_list, - STATE(6966), 1, + STATE(7354), 1, aux_sym_val_table_repeat1, - [209545] = 5, - ACTIONS(3), 1, + [211672] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8904), 1, - anon_sym_DOT, - STATE(6603), 1, - sym_path, - STATE(5643), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(1015), 3, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + ACTIONS(9511), 1, anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [209564] = 6, + STATE(5870), 1, + sym_comment, + STATE(6154), 1, + aux_sym_shebang_repeat1, + STATE(7016), 1, + sym_val_list, + STATE(7357), 1, + aux_sym_val_table_repeat1, + [211697] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1997), 1, + ACTIONS(6208), 1, sym__entry_separator, - ACTIONS(8907), 1, - anon_sym_DOT_DOT2, - STATE(5644), 1, - sym_comment, - ACTIONS(1991), 2, - anon_sym_RBRACK, + ACTIONS(6213), 1, anon_sym_RBRACE, - ACTIONS(8909), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [209585] = 6, - ACTIONS(3), 1, + ACTIONS(9219), 1, + anon_sym_DOT, + STATE(5793), 1, + aux_sym_cell_path_repeat1, + STATE(5871), 1, + sym_comment, + STATE(6725), 1, + sym_path, + STATE(7398), 1, + sym_cell_path, + [211722] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2005), 1, - sym__entry_separator, - ACTIONS(8911), 1, - anon_sym_DOT_DOT2, - STATE(5645), 1, + ACTIONS(683), 1, + anon_sym_RPAREN, + ACTIONS(9513), 1, + sym__newline, + ACTIONS(9515), 1, + anon_sym_SEMI, + STATE(293), 1, + aux_sym__parenthesized_body_repeat1, + STATE(5872), 1, sym_comment, - ACTIONS(1999), 2, + STATE(6673), 1, + aux_sym__block_body_repeat1, + STATE(7176), 1, + aux_sym_shebang_repeat1, + [211747] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + ACTIONS(9517), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(8913), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [209606] = 6, - ACTIONS(3), 1, + STATE(5873), 1, + sym_comment, + STATE(6155), 1, + aux_sym_shebang_repeat1, + STATE(7028), 1, + sym_val_list, + STATE(7361), 1, + aux_sym_val_table_repeat1, + [211772] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2013), 1, - sym__entry_separator, - ACTIONS(8915), 1, - anon_sym_DOT_DOT2, - STATE(5646), 1, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + ACTIONS(9519), 1, + anon_sym_RBRACK, + STATE(5874), 1, sym_comment, - ACTIONS(2007), 2, + STATE(6156), 1, + aux_sym_shebang_repeat1, + STATE(7032), 1, + sym_val_list, + STATE(7364), 1, + aux_sym_val_table_repeat1, + [211797] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + ACTIONS(9521), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(8917), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [209627] = 7, - ACTIONS(247), 1, + STATE(5875), 1, + sym_comment, + STATE(6157), 1, + aux_sym_shebang_repeat1, + STATE(7043), 1, + sym_val_list, + STATE(7369), 1, + aux_sym_val_table_repeat1, + [211822] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8890), 1, - anon_sym_DASH_DASH, - ACTIONS(8892), 1, - anon_sym_DASH, - ACTIONS(8919), 1, - anon_sym_in, - STATE(5647), 1, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + ACTIONS(9523), 1, + anon_sym_RBRACK, + STATE(5876), 1, sym_comment, - STATE(7464), 1, - sym__flag, - STATE(5404), 2, - sym_short_flag, - sym_long_flag, - [209650] = 5, - ACTIONS(247), 1, + STATE(6158), 1, + aux_sym_shebang_repeat1, + STATE(7048), 1, + sym_val_list, + STATE(7372), 1, + aux_sym_val_table_repeat1, + [211847] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6055), 1, - anon_sym_LBRACE, - STATE(5648), 1, + ACTIONS(4870), 1, + aux_sym_unquoted_token3, + ACTIONS(8316), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8631), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8633), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8635), 1, + aux_sym__immediate_decimal_token5, + STATE(5877), 1, sym_comment, - STATE(6277), 1, - sym_block, - ACTIONS(8921), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [209669] = 5, - ACTIONS(247), 1, + STATE(6730), 1, + sym__immediate_decimal, + [211872] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6055), 1, + ACTIONS(6211), 1, anon_sym_LBRACE, - STATE(5649), 1, + STATE(5878), 1, sym_comment, - STATE(6305), 1, + STATE(6456), 1, sym_block, - ACTIONS(8921), 4, + ACTIONS(9467), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [209688] = 8, - ACTIONS(143), 1, - sym__newline, - ACTIONS(247), 1, + [211891] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(673), 1, - anon_sym_RPAREN, - ACTIONS(8923), 1, + ACTIONS(9513), 1, + sym__newline, + ACTIONS(9515), 1, anon_sym_SEMI, - STATE(258), 1, + ACTIONS(9525), 1, + anon_sym_RPAREN, + STATE(293), 1, aux_sym__parenthesized_body_repeat1, - STATE(5650), 1, + STATE(5879), 1, sym_comment, - STATE(6591), 1, + STATE(6232), 1, aux_sym__block_body_repeat1, - STATE(6992), 1, + STATE(7176), 1, aux_sym_shebang_repeat1, - [209713] = 4, - ACTIONS(247), 1, + [211916] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + ACTIONS(9527), 1, + anon_sym_RBRACK, + STATE(5880), 1, + sym_comment, + STATE(6160), 1, + aux_sym_shebang_repeat1, + STATE(7062), 1, + sym_val_list, + STATE(7378), 1, + aux_sym_val_table_repeat1, + [211941] = 7, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1526), 1, + aux_sym_unquoted_token2, + ACTIONS(8444), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8446), 1, + aux_sym__immediate_decimal_token5, + STATE(5881), 1, + sym_comment, + STATE(7602), 1, + sym__immediate_decimal, + ACTIONS(8442), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [211964] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9330), 1, + anon_sym_LPAREN, + ACTIONS(9529), 1, + anon_sym_DQUOTE2, + STATE(5882), 1, + sym_comment, + STATE(5940), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6294), 1, + sym_expr_interpolated, + ACTIONS(9332), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [211987] = 8, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5651), 1, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + ACTIONS(9531), 1, + anon_sym_RBRACK, + STATE(5883), 1, sym_comment, - ACTIONS(1721), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1723), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [209730] = 8, + STATE(6090), 1, + aux_sym_shebang_repeat1, + STATE(6941), 1, + sym_val_list, + STATE(7217), 1, + aux_sym_val_table_repeat1, + [212012] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8111), 1, + ACTIONS(4870), 1, + aux_sym_unquoted_token3, + ACTIONS(8442), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8480), 1, + ACTIONS(8637), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8482), 1, + ACTIONS(8639), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8484), 1, + ACTIONS(8641), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8925), 1, - aux_sym_unquoted_token3, - STATE(5652), 1, + STATE(5884), 1, sym_comment, - STATE(6378), 1, + STATE(7653), 1, sym__immediate_decimal, - [209755] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2255), 1, - anon_sym_LBRACE, - STATE(5653), 1, - sym_comment, - ACTIONS(2253), 5, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - aux_sym_unquoted_token4, - [209772] = 8, + [212037] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8209), 1, + ACTIONS(8316), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8486), 1, + ACTIONS(8631), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8488), 1, + ACTIONS(8633), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8490), 1, + ACTIONS(8635), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8925), 1, + ACTIONS(9533), 1, aux_sym_unquoted_token3, - STATE(5654), 1, + STATE(5885), 1, sym_comment, - STATE(7494), 1, + STATE(6730), 1, sym__immediate_decimal, - [209797] = 4, - ACTIONS(247), 1, + [212062] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5655), 1, + STATE(5886), 1, sym_comment, - ACTIONS(1738), 2, + ACTIONS(1715), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1740), 4, + ACTIONS(1717), 4, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [209814] = 6, - ACTIONS(247), 1, + [212079] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9330), 1, + anon_sym_LPAREN, + ACTIONS(9535), 1, + anon_sym_DQUOTE2, + STATE(5887), 1, + sym_comment, + STATE(5940), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6294), 1, + sym_expr_interpolated, + ACTIONS(9332), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [212102] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + ACTIONS(9537), 1, + anon_sym_RBRACK, + STATE(5888), 1, + sym_comment, + STATE(6137), 1, + aux_sym_shebang_repeat1, + STATE(7371), 1, + sym_val_list, + STATE(7401), 1, + aux_sym_val_table_repeat1, + [212127] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4512), 1, + ACTIONS(4614), 1, anon_sym_DOT_DOT2, - ACTIONS(8925), 1, + ACTIONS(4870), 1, aux_sym_unquoted_token2, - STATE(5656), 1, + STATE(5889), 1, sym_comment, - ACTIONS(4514), 2, + ACTIONS(4616), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(8927), 2, + ACTIONS(9507), 2, sym_filesize_unit, sym_duration_unit, - [209835] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(8929), 1, - anon_sym_LBRACE, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(1693), 1, - sym_block, - STATE(1694), 1, - sym_val_closure, - STATE(5148), 1, - sym__blosure, - STATE(5657), 1, - sym_comment, - [209860] = 8, - ACTIONS(247), 1, + [212148] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(8929), 1, - anon_sym_LBRACE, - STATE(1693), 1, - sym_block, - STATE(1694), 1, - sym_val_closure, - STATE(5148), 1, - sym__blosure, - STATE(5658), 1, + ACTIONS(4770), 1, + aux_sym_unquoted_token3, + ACTIONS(8316), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8631), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8633), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8635), 1, + aux_sym__immediate_decimal_token5, + STATE(5890), 1, sym_comment, - STATE(5865), 1, - aux_sym_shebang_repeat1, - [209885] = 8, - ACTIONS(247), 1, + STATE(5992), 1, + sym__immediate_decimal, + [212173] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(8929), 1, - anon_sym_LBRACE, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(1693), 1, - sym_block, - STATE(1694), 1, - sym_val_closure, - STATE(5149), 1, - sym__blosure, - STATE(5659), 1, + ACTIONS(4770), 1, + aux_sym_unquoted_token3, + ACTIONS(8442), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8637), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8639), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8641), 1, + aux_sym__immediate_decimal_token5, + STATE(5891), 1, sym_comment, - [209910] = 8, - ACTIONS(247), 1, + STATE(7543), 1, + sym__immediate_decimal, + [212198] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, + ACTIONS(3766), 1, sym__newline, - ACTIONS(8929), 1, - anon_sym_LBRACE, - STATE(1693), 1, - sym_block, - STATE(1694), 1, - sym_val_closure, - STATE(5149), 1, - sym__blosure, - STATE(5660), 1, + ACTIONS(9340), 1, + anon_sym_LBRACK, + ACTIONS(9539), 1, + anon_sym_RBRACK, + STATE(5892), 1, sym_comment, - STATE(5867), 1, + STATE(6176), 1, aux_sym_shebang_repeat1, - [209935] = 8, - ACTIONS(143), 1, - sym__newline, - ACTIONS(247), 1, + STATE(6760), 1, + aux_sym_val_table_repeat1, + STATE(6778), 1, + sym_val_list, + [212223] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8923), 1, - anon_sym_SEMI, - ACTIONS(8931), 1, - anon_sym_RPAREN, - STATE(258), 1, - aux_sym__parenthesized_body_repeat1, - STATE(5661), 1, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + ACTIONS(9541), 1, + anon_sym_RBRACK, + STATE(5893), 1, sym_comment, - STATE(6255), 1, - aux_sym__block_body_repeat1, - STATE(6992), 1, + STATE(6091), 1, aux_sym_shebang_repeat1, - [209960] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8890), 1, - anon_sym_DASH_DASH, - ACTIONS(8892), 1, - anon_sym_DASH, - ACTIONS(8933), 1, - anon_sym_in, - STATE(5662), 1, - sym_comment, - STATE(7641), 1, - sym__flag, - STATE(5404), 2, - sym_short_flag, - sym_long_flag, - [209983] = 7, - ACTIONS(247), 1, + STATE(7131), 1, + sym_val_list, + STATE(7219), 1, + aux_sym_val_table_repeat1, + [212248] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1494), 1, + ACTIONS(4614), 1, + anon_sym_DOT_DOT2, + ACTIONS(9533), 1, aux_sym_unquoted_token2, - ACTIONS(8211), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8213), 1, - aux_sym__immediate_decimal_token5, - STATE(5663), 1, - sym_comment, - STATE(7699), 1, - sym__immediate_decimal, - ACTIONS(8209), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [210006] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5664), 1, + STATE(5894), 1, sym_comment, - ACTIONS(2033), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(2035), 3, + ACTIONS(4616), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [210023] = 7, - ACTIONS(111), 1, - anon_sym_DQUOTE, - ACTIONS(247), 1, + ACTIONS(9507), 2, + sym_filesize_unit, + sym_duration_unit, + [212269] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8935), 1, - aux_sym_path_token1, - STATE(1975), 1, - sym__str_double_quotes, - STATE(2016), 1, - sym_val_string, - STATE(5665), 1, + ACTIONS(3294), 1, + aux_sym_record_entry_token1, + ACTIONS(8374), 1, + sym_identifier, + ACTIONS(9328), 1, + anon_sym_DOLLAR, + STATE(5416), 1, + sym_val_variable, + STATE(5895), 1, sym_comment, - ACTIONS(113), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [210046] = 6, - ACTIONS(247), 1, + STATE(6047), 1, + sym__variable_name, + STATE(6300), 1, + sym__assignment_pattern, + [212294] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1518), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(8937), 1, - anon_sym_DOT, - ACTIONS(8939), 1, - aux_sym__immediate_decimal_token2, - STATE(5666), 1, + ACTIONS(3294), 1, + aux_sym_record_entry_token1, + ACTIONS(8374), 1, + sym_identifier, + ACTIONS(9328), 1, + anon_sym_DOLLAR, + STATE(5416), 1, + sym_val_variable, + STATE(5896), 1, sym_comment, - ACTIONS(1520), 3, - sym_filesize_unit, - sym_duration_unit, + STATE(6047), 1, + sym__variable_name, + STATE(6301), 1, + sym__assignment_pattern, + [212319] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(3294), 1, aux_sym_record_entry_token1, - [210067] = 5, - ACTIONS(247), 1, + ACTIONS(8374), 1, + sym_identifier, + ACTIONS(9328), 1, + anon_sym_DOLLAR, + STATE(5416), 1, + sym_val_variable, + STATE(5897), 1, + sym_comment, + STATE(6047), 1, + sym__variable_name, + STATE(6303), 1, + sym__assignment_pattern, + [212344] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6484), 1, - anon_sym_DOT_DOT2, - STATE(5667), 1, + STATE(5898), 1, sym_comment, - ACTIONS(6486), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5889), 3, + ACTIONS(1703), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1705), 4, anon_sym_PIPE, - anon_sym_if, anon_sym_EQ_GT, - [210086] = 5, - ACTIONS(247), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [212361] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6484), 1, + ACTIONS(6607), 1, anon_sym_DOT_DOT2, - STATE(5668), 1, + STATE(5899), 1, sym_comment, - ACTIONS(6486), 2, + ACTIONS(6609), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5895), 3, + ACTIONS(5893), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [210105] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3429), 1, - anon_sym_DQUOTE, - ACTIONS(8941), 1, - aux_sym_path_token1, - STATE(2601), 1, - sym_val_string, - STATE(2725), 1, - sym__str_double_quotes, - STATE(5669), 1, - sym_comment, - ACTIONS(3431), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [210128] = 6, - ACTIONS(247), 1, + [212380] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1659), 1, - aux_sym_unquoted_token2, - ACTIONS(8943), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8945), 1, - aux_sym__immediate_decimal_token2, - STATE(5670), 1, + ACTIONS(6607), 1, + anon_sym_DOT_DOT2, + STATE(5900), 1, sym_comment, - ACTIONS(1661), 3, + ACTIONS(6609), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5900), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [210149] = 8, + [212399] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7105), 1, + ACTIONS(7242), 1, anon_sym_RBRACK, - ACTIONS(7107), 1, + ACTIONS(7244), 1, sym__entry_separator, - ACTIONS(8768), 1, + ACTIONS(9219), 1, anon_sym_DOT, - STATE(5671), 1, - sym_comment, - STATE(5699), 1, + STATE(5793), 1, aux_sym_cell_path_repeat1, - STATE(6292), 1, + STATE(5901), 1, + sym_comment, + STATE(6725), 1, sym_path, - STATE(7191), 1, + STATE(7484), 1, sym_cell_path, - [210174] = 7, - ACTIONS(3), 1, + [212424] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8947), 1, - anon_sym_LPAREN, - ACTIONS(8951), 1, - anon_sym_DQUOTE2, - STATE(5672), 1, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9400), 1, + anon_sym_LBRACE, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(4956), 1, + sym_block, + STATE(4958), 1, + sym_val_closure, + STATE(5132), 1, + sym__blosure, + STATE(5902), 1, sym_comment, - STATE(5851), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6463), 1, - sym_expr_interpolated, - ACTIONS(8949), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [210197] = 8, + [212449] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5065), 1, + anon_sym_DASH, + STATE(5903), 1, + sym_comment, + ACTIONS(5063), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [212466] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7067), 1, - anon_sym_RBRACK, - ACTIONS(7069), 1, + ACTIONS(2212), 1, sym__entry_separator, - ACTIONS(8768), 1, - anon_sym_DOT, - STATE(5673), 1, + ACTIONS(9543), 1, + anon_sym_DOT_DOT2, + STATE(5904), 1, sym_comment, - STATE(5699), 1, - aux_sym_cell_path_repeat1, - STATE(6292), 1, - sym_path, - STATE(7330), 1, - sym_cell_path, - [210222] = 5, - ACTIONS(247), 1, + ACTIONS(2206), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(9545), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [212487] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6055), 1, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9400), 1, anon_sym_LBRACE, - STATE(5674), 1, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(4956), 1, + sym_block, + STATE(4958), 1, + sym_val_closure, + STATE(5084), 1, + sym__blosure, + STATE(5905), 1, sym_comment, - STATE(6503), 1, + [212512] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(5906), 1, + sym_comment, + ACTIONS(1769), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1771), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [212529] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9400), 1, + anon_sym_LBRACE, + STATE(4956), 1, sym_block, - ACTIONS(8953), 4, + STATE(4958), 1, + sym_val_closure, + STATE(5084), 1, + sym__blosure, + STATE(5907), 1, + sym_comment, + STATE(5938), 1, + aux_sym_shebang_repeat1, + [212554] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(3766), 1, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(9400), 1, + anon_sym_LBRACE, + STATE(4956), 1, + sym_block, + STATE(4958), 1, + sym_val_closure, + STATE(5085), 1, + sym__blosure, + STATE(5908), 1, + sym_comment, + STATE(5951), 1, + aux_sym_shebang_repeat1, + [212579] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(9547), 1, + anon_sym_LT, + STATE(5909), 1, + sym_comment, + ACTIONS(7753), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_AT, + anon_sym_LBRACE, + [212596] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(9549), 1, + anon_sym_LT, + STATE(5910), 1, + sym_comment, + ACTIONS(7753), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_AT, + anon_sym_LBRACE, + [212613] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9551), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9553), 1, + aux_sym__immediate_decimal_token2, + STATE(5911), 1, + sym_comment, + ACTIONS(1703), 2, anon_sym_RBRACE, - [210241] = 7, + aux_sym__unquoted_in_record_token2, + ACTIONS(1705), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [212634] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8947), 1, - anon_sym_LPAREN, - ACTIONS(8955), 1, - anon_sym_DQUOTE2, - STATE(5675), 1, + ACTIONS(9555), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9557), 1, + aux_sym__immediate_decimal_token2, + STATE(5912), 1, sym_comment, - STATE(5679), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6463), 1, - sym_expr_interpolated, - ACTIONS(8949), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [210264] = 6, - ACTIONS(247), 1, + ACTIONS(1703), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1705), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [212655] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8957), 1, + ACTIONS(9235), 1, + anon_sym_alias, + ACTIONS(9237), 1, + anon_sym_const, + ACTIONS(9239), 1, + anon_sym_def, + ACTIONS(9241), 1, + anon_sym_extern, + ACTIONS(9243), 1, + anon_sym_module, + ACTIONS(9245), 1, + anon_sym_use, + STATE(5913), 1, + sym_comment, + [212680] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(9559), 1, + sym_long_flag_identifier, + ACTIONS(9561), 1, anon_sym_EQ2, - ACTIONS(8959), 1, - sym_short_flag_identifier, - STATE(5676), 1, + STATE(5914), 1, sym_comment, - ACTIONS(4781), 2, - anon_sym_DASH_DASH, + ACTIONS(4937), 2, + sym_identifier, anon_sym_DASH, - ACTIONS(4783), 2, + ACTIONS(4939), 2, anon_sym_DOLLAR, - anon_sym_LBRACE, - [210285] = 8, + anon_sym_DASH_DASH, + [212701] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(5915), 1, + sym_comment, + ACTIONS(1826), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1828), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [212718] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5391), 1, + ACTIONS(4842), 1, aux_sym_unquoted_token3, - ACTIONS(8111), 1, + ACTIONS(8316), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8480), 1, + ACTIONS(8631), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8482), 1, + ACTIONS(8633), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8484), 1, + ACTIONS(8635), 1, aux_sym__immediate_decimal_token5, - STATE(5677), 1, + STATE(5916), 1, sym_comment, - STATE(6378), 1, + STATE(5992), 1, sym__immediate_decimal, - [210310] = 8, + [212743] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5391), 1, + ACTIONS(4842), 1, aux_sym_unquoted_token3, - ACTIONS(8209), 1, + ACTIONS(8442), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8486), 1, + ACTIONS(8637), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8488), 1, + ACTIONS(8639), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8490), 1, + ACTIONS(8641), 1, aux_sym__immediate_decimal_token5, - STATE(5678), 1, + STATE(5917), 1, sym_comment, - STATE(7494), 1, + STATE(7543), 1, sym__immediate_decimal, - [210335] = 7, + [212768] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8947), 1, + ACTIONS(9330), 1, anon_sym_LPAREN, - ACTIONS(8961), 1, + ACTIONS(9563), 1, anon_sym_DQUOTE2, - STATE(5679), 1, - sym_comment, - STATE(5787), 1, + STATE(5887), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6463), 1, + STATE(5918), 1, + sym_comment, + STATE(6294), 1, sym_expr_interpolated, - ACTIONS(8949), 2, + ACTIONS(9332), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [210358] = 8, - ACTIONS(247), 1, + [212791] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(8900), 1, - anon_sym_LBRACK, - ACTIONS(8963), 1, - anon_sym_RBRACK, - STATE(5680), 1, + ACTIONS(9247), 1, + anon_sym_DOT, + STATE(2752), 1, + sym_path, + STATE(5919), 1, sym_comment, - STATE(5996), 1, - aux_sym_shebang_repeat1, - STATE(6636), 1, - sym_val_list, - STATE(7014), 1, - aux_sym_val_table_repeat1, - [210383] = 8, - ACTIONS(247), 1, + STATE(5920), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1029), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [212812] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(8900), 1, - anon_sym_LBRACK, - ACTIONS(8965), 1, - anon_sym_RBRACK, - STATE(5681), 1, + ACTIONS(9565), 1, + anon_sym_DOT, + STATE(2752), 1, + sym_path, + STATE(5920), 2, sym_comment, - STATE(6065), 1, - aux_sym_shebang_repeat1, - STATE(7181), 1, - sym_val_list, - STATE(7182), 1, - aux_sym_val_table_repeat1, - [210408] = 4, - ACTIONS(247), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1033), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [212831] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9330), 1, + anon_sym_LPAREN, + ACTIONS(9568), 1, + anon_sym_DQUOTE2, + STATE(5921), 1, + sym_comment, + STATE(5935), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6294), 1, + sym_expr_interpolated, + ACTIONS(9332), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [212854] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(5922), 1, + sym_comment, + ACTIONS(9570), 6, + sym_raw_string_begin, + sym_identifier, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [212869] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8841), 1, + ACTIONS(5099), 1, anon_sym_DASH, - STATE(5682), 1, + STATE(5923), 1, sym_comment, - ACTIONS(8839), 5, + ACTIONS(5097), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [210425] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(8900), 1, - anon_sym_LBRACK, - ACTIONS(8967), 1, - anon_sym_RBRACK, - STATE(5683), 1, - sym_comment, - STATE(5989), 1, - aux_sym_shebang_repeat1, - STATE(6972), 1, - sym_val_list, - STATE(6977), 1, - aux_sym_val_table_repeat1, - [210450] = 8, + [212886] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4614), 1, - aux_sym_unquoted_token3, - ACTIONS(8111), 1, + ACTIONS(8316), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8480), 1, + ACTIONS(8580), 1, + aux_sym_unquoted_token3, + ACTIONS(8631), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8482), 1, + ACTIONS(8633), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8484), 1, + ACTIONS(8635), 1, aux_sym__immediate_decimal_token5, - STATE(5684), 1, + STATE(5924), 1, sym_comment, - STATE(5916), 1, + STATE(6730), 1, sym__immediate_decimal, - [210475] = 8, + [212911] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4614), 1, - aux_sym_unquoted_token3, - ACTIONS(8209), 1, + ACTIONS(8442), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8486), 1, + ACTIONS(8580), 1, + aux_sym_unquoted_token3, + ACTIONS(8637), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8488), 1, + ACTIONS(8639), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8490), 1, + ACTIONS(8641), 1, aux_sym__immediate_decimal_token5, - STATE(5685), 1, + STATE(5925), 1, sym_comment, - STATE(7280), 1, + STATE(7653), 1, sym__immediate_decimal, - [210500] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(8900), 1, - anon_sym_LBRACK, - ACTIONS(8969), 1, - anon_sym_RBRACK, - STATE(5686), 1, - sym_comment, - STATE(5997), 1, - aux_sym_shebang_repeat1, - STATE(6691), 1, - sym_val_list, - STATE(7016), 1, - aux_sym_val_table_repeat1, - [210525] = 6, + [212936] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2025), 1, - sym__entry_separator, - ACTIONS(8971), 1, - anon_sym_DOT_DOT2, - STATE(5687), 1, + STATE(5926), 1, sym_comment, - ACTIONS(2019), 2, + ACTIONS(2105), 3, anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(8973), 2, + anon_sym_DOT_DOT2, + ACTIONS(2107), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [210546] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1927), 1, - anon_sym_RBRACE, - ACTIONS(1929), 1, sym__entry_separator, - ACTIONS(8768), 1, - anon_sym_DOT, - STATE(617), 1, - sym_cell_path, - STATE(5688), 1, + [212953] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(5927), 1, sym_comment, - STATE(5699), 1, - aux_sym_cell_path_repeat1, - STATE(6292), 1, - sym_path, - [210571] = 5, - ACTIONS(247), 1, + ACTIONS(9572), 6, + sym_raw_string_begin, + sym_identifier, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [212968] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(4614), 1, + anon_sym_DOT_DOT2, + ACTIONS(8580), 1, + aux_sym_unquoted_token2, + STATE(5928), 1, + sym_comment, + ACTIONS(4616), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(9507), 2, + sym_filesize_unit, + sym_duration_unit, + [212989] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8879), 1, + ACTIONS(2297), 1, anon_sym_LBRACE, - STATE(5689), 1, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + STATE(5929), 1, sym_comment, - STATE(6490), 1, - sym_val_record, - ACTIONS(8975), 4, + ACTIONS(2293), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + [213008] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(9513), 1, sym__newline, + ACTIONS(9515), 1, anon_sym_SEMI, + ACTIONS(9574), 1, anon_sym_RPAREN, - anon_sym_RBRACE, - [210590] = 5, - ACTIONS(247), 1, + STATE(293), 1, + aux_sym__parenthesized_body_repeat1, + STATE(5930), 1, + sym_comment, + STATE(6726), 1, + aux_sym__block_body_repeat1, + STATE(7176), 1, + aux_sym_shebang_repeat1, + [213033] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8879), 1, + ACTIONS(6211), 1, anon_sym_LBRACE, - STATE(5690), 1, + STATE(5931), 1, sym_comment, - STATE(6491), 1, - sym_val_record, - ACTIONS(8977), 4, + STATE(6275), 1, + sym_block, + ACTIONS(9576), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [210609] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(8929), 1, - anon_sym_LBRACE, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(1693), 1, - sym_block, - STATE(1694), 1, - sym_val_closure, - STATE(5037), 1, - sym__blosure, - STATE(5691), 1, - sym_comment, - [210634] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1931), 1, - anon_sym_RBRACE, - ACTIONS(1933), 1, - sym__entry_separator, - ACTIONS(8768), 1, - anon_sym_DOT, - STATE(616), 1, - sym_cell_path, - STATE(5692), 1, - sym_comment, - STATE(5699), 1, - aux_sym_cell_path_repeat1, - STATE(6292), 1, - sym_path, - [210659] = 6, + [213052] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8979), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8981), 1, - aux_sym__immediate_decimal_token2, - STATE(5693), 1, - sym_comment, - ACTIONS(1659), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1661), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [210680] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(8929), 1, + ACTIONS(2291), 1, anon_sym_LBRACE, - STATE(1693), 1, - sym_block, - STATE(1694), 1, - sym_val_closure, - STATE(5001), 1, - sym__blosure, - STATE(5694), 1, - sym_comment, - STATE(5701), 1, - aux_sym_shebang_repeat1, - [210705] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1540), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(8983), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8985), 1, - aux_sym__immediate_decimal_token2, - STATE(5695), 1, + STATE(5932), 1, sym_comment, - ACTIONS(1542), 3, - sym_filesize_unit, - sym_duration_unit, - aux_sym_record_entry_token1, - [210726] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4988), 1, + ACTIONS(2289), 5, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH, - STATE(5696), 1, + aux_sym_unquoted_token4, + [213069] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6211), 1, + anon_sym_LBRACE, + STATE(5933), 1, sym_comment, - ACTIONS(4986), 5, - ts_builtin_sym_end, + STATE(6658), 1, + sym_block, + ACTIONS(9578), 4, sym__newline, anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [210743] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8987), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8989), 1, - aux_sym__immediate_decimal_token2, - STATE(5697), 1, - sym_comment, - ACTIONS(1659), 2, + anon_sym_RPAREN, anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1661), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [210764] = 4, - ACTIONS(3), 1, + [213088] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5698), 1, + ACTIONS(6211), 1, + anon_sym_LBRACE, + STATE(5934), 1, sym_comment, - ACTIONS(1058), 3, - anon_sym_RBRACK, + STATE(6666), 1, + sym_block, + ACTIONS(9578), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(1060), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [210781] = 7, + [213107] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1013), 1, - sym__entry_separator, - ACTIONS(8768), 1, - anon_sym_DOT, - STATE(5699), 1, + ACTIONS(9330), 1, + anon_sym_LPAREN, + ACTIONS(9580), 1, + anon_sym_DQUOTE2, + STATE(5935), 1, sym_comment, - STATE(5706), 1, - aux_sym_cell_path_repeat1, - STATE(6292), 1, - sym_path, - ACTIONS(1011), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [210804] = 4, + STATE(5940), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6294), 1, + sym_expr_interpolated, + ACTIONS(9332), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [213130] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3868), 1, - sym__space, - STATE(5700), 1, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + ACTIONS(2305), 1, + anon_sym_LBRACE, + STATE(5936), 1, sym_comment, - ACTIONS(3866), 5, - sym__newline, + ACTIONS(2303), 4, + sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH, - anon_sym_LBRACE, - [210821] = 8, - ACTIONS(247), 1, + [213149] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + ACTIONS(9582), 1, + anon_sym_RBRACK, + STATE(5937), 1, + sym_comment, + STATE(6109), 1, + aux_sym_shebang_repeat1, + STATE(7050), 1, + sym_val_list, + STATE(7234), 1, + aux_sym_val_table_repeat1, + [213174] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, + ACTIONS(3766), 1, sym__newline, - ACTIONS(8929), 1, + ACTIONS(9400), 1, anon_sym_LBRACE, - STATE(749), 1, + STATE(2498), 1, aux_sym_shebang_repeat1, - STATE(1693), 1, + STATE(4956), 1, sym_block, - STATE(1694), 1, + STATE(4958), 1, sym_val_closure, - STATE(5074), 1, + STATE(5068), 1, sym__blosure, - STATE(5701), 1, + STATE(5938), 1, sym_comment, - [210846] = 8, - ACTIONS(247), 1, + [213199] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, + ACTIONS(3766), 1, sym__newline, - ACTIONS(8929), 1, + ACTIONS(9400), 1, anon_sym_LBRACE, - STATE(1693), 1, + STATE(4956), 1, sym_block, - STATE(1694), 1, + STATE(4958), 1, sym_val_closure, - STATE(5074), 1, + STATE(5068), 1, sym__blosure, - STATE(5657), 1, + STATE(5802), 1, aux_sym_shebang_repeat1, - STATE(5702), 1, - sym_comment, - [210871] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4131), 1, - anon_sym_DQUOTE, - ACTIONS(8991), 1, - aux_sym_path_token1, - STATE(4744), 1, - sym__str_double_quotes, - STATE(5363), 1, - sym_val_string, - STATE(5703), 1, - sym_comment, - ACTIONS(4133), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [210894] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6055), 1, - anon_sym_LBRACE, - STATE(5704), 1, - sym_comment, - STATE(6592), 1, - sym_block, - ACTIONS(8993), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [210913] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1494), 1, - aux_sym_unquoted_token2, - ACTIONS(8995), 1, - anon_sym_DOT_DOT2, - STATE(5705), 1, - sym_comment, - ACTIONS(1786), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(8997), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [210934] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1017), 1, - sym__entry_separator, - ACTIONS(8999), 1, - anon_sym_DOT, - STATE(6292), 1, - sym_path, - ACTIONS(1015), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(5706), 2, + STATE(5939), 1, sym_comment, - aux_sym_cell_path_repeat1, - [210955] = 7, + [213224] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8947), 1, + ACTIONS(9584), 1, anon_sym_LPAREN, - ACTIONS(9002), 1, + ACTIONS(9590), 1, anon_sym_DQUOTE2, - STATE(5707), 1, - sym_comment, - STATE(5710), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6463), 1, + STATE(6294), 1, sym_expr_interpolated, - ACTIONS(8949), 2, + ACTIONS(9587), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [210978] = 8, + STATE(5940), 2, + sym_comment, + aux_sym__inter_double_quotes_repeat1, + [213245] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8111), 1, + ACTIONS(8442), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8350), 1, - aux_sym_unquoted_token3, - ACTIONS(8480), 1, + ACTIONS(8637), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8482), 1, + ACTIONS(8639), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8484), 1, + ACTIONS(8641), 1, aux_sym__immediate_decimal_token5, - STATE(5708), 1, + ACTIONS(9533), 1, + aux_sym_unquoted_token3, + STATE(5941), 1, sym_comment, - STATE(6378), 1, + STATE(7653), 1, sym__immediate_decimal, - [211003] = 8, - ACTIONS(3), 1, + [213270] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8209), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8350), 1, - aux_sym_unquoted_token3, - ACTIONS(8486), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8488), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8490), 1, - aux_sym__immediate_decimal_token5, - STATE(5709), 1, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + ACTIONS(9592), 1, + anon_sym_RBRACK, + STATE(5942), 1, sym_comment, - STATE(7494), 1, - sym__immediate_decimal, - [211028] = 7, - ACTIONS(3), 1, + STATE(6115), 1, + aux_sym_shebang_repeat1, + STATE(7203), 1, + sym_val_list, + STATE(7249), 1, + aux_sym_val_table_repeat1, + [213295] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8947), 1, - anon_sym_LPAREN, - ACTIONS(9004), 1, - anon_sym_DQUOTE2, - STATE(5710), 1, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + ACTIONS(9594), 1, + anon_sym_RBRACK, + STATE(5943), 1, sym_comment, - STATE(5787), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6463), 1, - sym_expr_interpolated, - ACTIONS(8949), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [211051] = 8, - ACTIONS(247), 1, + STATE(6116), 1, + aux_sym_shebang_repeat1, + STATE(7206), 1, + sym_val_list, + STATE(7252), 1, + aux_sym_val_table_repeat1, + [213320] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, + ACTIONS(3766), 1, sym__newline, - ACTIONS(8900), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - ACTIONS(9006), 1, + ACTIONS(9596), 1, anon_sym_RBRACK, - STATE(5711), 1, + STATE(5944), 1, sym_comment, - STATE(6001), 1, + STATE(6110), 1, aux_sym_shebang_repeat1, - STATE(6881), 1, + STATE(7065), 1, sym_val_list, - STATE(7029), 1, + STATE(7236), 1, aux_sym_val_table_repeat1, - [211076] = 5, - ACTIONS(247), 1, + [213345] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6055), 1, - anon_sym_LBRACE, - STATE(5712), 1, + ACTIONS(2063), 1, + anon_sym_RBRACE, + ACTIONS(2065), 1, + sym__entry_separator, + ACTIONS(9219), 1, + anon_sym_DOT, + STATE(5793), 1, + aux_sym_cell_path_repeat1, + STATE(5945), 1, + sym_comment, + STATE(6725), 1, + sym_path, + STATE(7511), 1, + sym_cell_path, + [213370] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(4927), 1, + anon_sym_DOLLAR, + ACTIONS(9598), 1, + anon_sym_EQ2, + ACTIONS(9600), 1, + sym_short_flag_identifier, + STATE(5946), 1, + sym_comment, + ACTIONS(4925), 3, + sym_identifier, + anon_sym_DASH_DASH, + anon_sym_DASH, + [213391] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1852), 1, + aux_sym_unquoted_token2, + ACTIONS(9602), 1, + anon_sym_DOT_DOT2, + STATE(5947), 1, + sym_comment, + ACTIONS(1850), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(9604), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [213412] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + ACTIONS(9606), 1, + anon_sym_RBRACK, + STATE(5948), 1, sym_comment, - STATE(6595), 1, - sym_block, - ACTIONS(9008), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [211095] = 4, - ACTIONS(247), 1, + STATE(6031), 1, + aux_sym_shebang_repeat1, + STATE(6975), 1, + sym_val_list, + STATE(7167), 1, + aux_sym_val_table_repeat1, + [213437] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4992), 1, + ACTIONS(5073), 1, anon_sym_DASH, - STATE(5713), 1, + STATE(5949), 1, sym_comment, - ACTIONS(4990), 5, + ACTIONS(5071), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [211112] = 5, - ACTIONS(247), 1, + [213454] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6055), 1, - anon_sym_LBRACE, - STATE(5714), 1, + STATE(5950), 1, sym_comment, - STATE(6601), 1, - sym_block, - ACTIONS(9008), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [211131] = 8, - ACTIONS(247), 1, + ACTIONS(9608), 6, + sym_raw_string_begin, + sym_identifier, + anon_sym_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [213469] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, + ACTIONS(3766), 1, sym__newline, - ACTIONS(8900), 1, - anon_sym_LBRACK, - ACTIONS(9010), 1, - anon_sym_RBRACK, - STATE(5715), 1, + ACTIONS(9400), 1, + anon_sym_LBRACE, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(4956), 1, + sym_block, + STATE(4958), 1, + sym_val_closure, + STATE(5069), 1, + sym__blosure, + STATE(5951), 1, sym_comment, - STATE(6002), 1, + [213494] = 8, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9400), 1, + anon_sym_LBRACE, + STATE(4956), 1, + sym_block, + STATE(4958), 1, + sym_val_closure, + STATE(5069), 1, + sym__blosure, + STATE(5804), 1, aux_sym_shebang_repeat1, - STATE(6885), 1, - sym_val_list, - STATE(7032), 1, - aux_sym_val_table_repeat1, - [211156] = 6, - ACTIONS(247), 1, + STATE(5952), 1, + sym_comment, + [213519] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1667), 1, - aux_sym_unquoted_token2, - ACTIONS(9012), 1, + ACTIONS(7232), 1, + anon_sym_RBRACK, + ACTIONS(7234), 1, + sym__entry_separator, + ACTIONS(9219), 1, anon_sym_DOT, - ACTIONS(9014), 1, - aux_sym__immediate_decimal_token2, - STATE(5716), 1, + STATE(5793), 1, + aux_sym_cell_path_repeat1, + STATE(5953), 1, sym_comment, - ACTIONS(1669), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [211177] = 7, - ACTIONS(247), 1, + STATE(6725), 1, + sym_path, + STATE(7507), 1, + sym_cell_path, + [213544] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9016), 1, - anon_sym_DQUOTE, - ACTIONS(9020), 1, - aux_sym_path_token1, - STATE(2404), 1, - sym__str_double_quotes, - STATE(2455), 1, - sym_val_string, - STATE(5717), 1, + ACTIONS(3931), 1, + sym__space, + STATE(5954), 1, sym_comment, - ACTIONS(9018), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [211200] = 4, - ACTIONS(247), 1, + ACTIONS(3929), 5, + sym__newline, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH, + anon_sym_LBRACE, + [213561] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4996), 1, + ACTIONS(4937), 1, anon_sym_DASH, - STATE(5718), 1, + ACTIONS(9610), 1, + sym_long_flag_identifier, + ACTIONS(9612), 1, + anon_sym_EQ2, + STATE(5955), 1, + sym_comment, + ACTIONS(4939), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [213582] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5049), 1, + anon_sym_DASH, + STATE(5956), 1, sym_comment, - ACTIONS(4994), 5, + ACTIONS(5047), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [211217] = 6, + [213599] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1072), 1, + ACTIONS(1033), 1, + sym__entry_separator, + ACTIONS(9614), 1, + anon_sym_DOT, + STATE(6725), 1, + sym_path, + ACTIONS(1031), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(5957), 2, + sym_comment, + aux_sym_cell_path_repeat1, + [213620] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1703), 1, + aux_sym_unquoted_token2, + ACTIONS(9617), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9619), 1, + aux_sym__immediate_decimal_token2, + STATE(5958), 1, + sym_comment, + ACTIONS(1705), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [213641] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2240), 1, sym__entry_separator, - ACTIONS(9022), 1, + ACTIONS(9621), 1, anon_sym_DOT_DOT2, - STATE(5719), 1, + STATE(5959), 1, sym_comment, - ACTIONS(1070), 2, + ACTIONS(2234), 2, anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(9024), 2, + ACTIONS(9623), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [211238] = 4, - ACTIONS(247), 1, + [213662] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5000), 1, + ACTIONS(5069), 1, anon_sym_DASH, - STATE(5720), 1, + STATE(5960), 1, sym_comment, - ACTIONS(4998), 5, + ACTIONS(5067), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [211255] = 4, - ACTIONS(247), 1, + [213679] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5004), 1, - anon_sym_DASH, - STATE(5721), 1, + ACTIONS(1715), 1, + aux_sym_unquoted_token2, + ACTIONS(9625), 1, + anon_sym_DOT, + ACTIONS(9627), 1, + aux_sym__immediate_decimal_token2, + STATE(5961), 1, sym_comment, - ACTIONS(5002), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [211272] = 7, - ACTIONS(3), 1, + ACTIONS(1717), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [213700] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8947), 1, - anon_sym_LPAREN, - ACTIONS(9026), 1, - anon_sym_DQUOTE2, - STATE(5722), 1, + ACTIONS(9629), 1, + anon_sym_alias, + ACTIONS(9631), 1, + anon_sym_const, + ACTIONS(9633), 1, + anon_sym_def, + ACTIONS(9635), 1, + anon_sym_extern, + ACTIONS(9637), 1, + anon_sym_module, + ACTIONS(9639), 1, + anon_sym_use, + STATE(5962), 1, sym_comment, - STATE(5726), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6463), 1, - sym_expr_interpolated, - ACTIONS(8949), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [211295] = 8, - ACTIONS(3), 1, + [213725] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6790), 1, - aux_sym_unquoted_token3, - ACTIONS(8111), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8480), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8482), 1, + ACTIONS(1526), 1, + aux_sym_unquoted_token2, + ACTIONS(8444), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8484), 1, + ACTIONS(8446), 1, aux_sym__immediate_decimal_token5, - STATE(5723), 1, + STATE(5963), 1, sym_comment, - STATE(6378), 1, + STATE(8036), 1, sym__immediate_decimal, - [211320] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6790), 1, - aux_sym_unquoted_token3, - ACTIONS(8209), 1, + ACTIONS(8442), 2, aux_sym__immediate_decimal_token1, - ACTIONS(8486), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8488), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8490), 1, - aux_sym__immediate_decimal_token5, - STATE(5724), 1, - sym_comment, - STATE(7494), 1, - sym__immediate_decimal, - [211345] = 6, - ACTIONS(247), 1, + [213748] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4808), 1, + ACTIONS(9380), 1, + anon_sym_DASH_DASH, + ACTIONS(9382), 1, anon_sym_DASH, - ACTIONS(9028), 1, - sym_long_flag_identifier, - ACTIONS(9030), 1, - anon_sym_EQ2, - STATE(5725), 1, + ACTIONS(9641), 1, + anon_sym_in, + STATE(5964), 1, sym_comment, - ACTIONS(4810), 3, - anon_sym_DOLLAR, + STATE(8032), 1, + sym__flag, + STATE(5494), 2, + sym_short_flag, + sym_long_flag, + [213771] = 7, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(9380), 1, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [211366] = 7, - ACTIONS(3), 1, + ACTIONS(9382), 1, + anon_sym_DASH, + ACTIONS(9643), 1, + anon_sym_in, + STATE(5965), 1, + sym_comment, + STATE(8037), 1, + sym__flag, + STATE(5494), 2, + sym_short_flag, + sym_long_flag, + [213794] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8947), 1, - anon_sym_LPAREN, - ACTIONS(9032), 1, - anon_sym_DQUOTE2, - STATE(5726), 1, + ACTIONS(1788), 1, + anon_sym_DASH, + ACTIONS(9645), 1, + anon_sym_DOT_DOT2, + STATE(5966), 1, sym_comment, - STATE(5787), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6463), 1, - sym_expr_interpolated, - ACTIONS(8949), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [211389] = 8, - ACTIONS(247), 1, + ACTIONS(1796), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + ACTIONS(9647), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [213815] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(8900), 1, - anon_sym_LBRACK, - ACTIONS(9034), 1, - anon_sym_RBRACK, - STATE(5727), 1, + ACTIONS(1842), 1, + anon_sym_DASH, + ACTIONS(9649), 1, + anon_sym_DOT_DOT2, + STATE(5967), 1, sym_comment, - STATE(6004), 1, - aux_sym_shebang_repeat1, - STATE(6925), 1, - sym_val_list, - STATE(7037), 1, - aux_sym_val_table_repeat1, - [211414] = 7, - ACTIONS(247), 1, + ACTIONS(1850), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + ACTIONS(9651), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [213836] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(9036), 1, - anon_sym_DQUOTE, - ACTIONS(9040), 1, - aux_sym_path_token1, - STATE(1226), 1, - sym__str_double_quotes, - STATE(1240), 1, - sym_val_string, - STATE(5728), 1, + ACTIONS(2222), 1, + anon_sym_DASH, + ACTIONS(9653), 1, + anon_sym_DOT_DOT2, + STATE(5968), 1, sym_comment, - ACTIONS(9038), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [211437] = 8, - ACTIONS(247), 1, + ACTIONS(2228), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + ACTIONS(9655), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [213857] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(8900), 1, - anon_sym_LBRACK, - ACTIONS(9042), 1, - anon_sym_RBRACK, - STATE(5729), 1, + ACTIONS(2234), 1, + anon_sym_DASH, + ACTIONS(9657), 1, + anon_sym_DOT_DOT2, + STATE(5969), 1, sym_comment, - STATE(6005), 1, - aux_sym_shebang_repeat1, - STATE(7040), 1, - aux_sym_val_table_repeat1, - STATE(7186), 1, - sym_val_list, - [211462] = 7, - ACTIONS(247), 1, + ACTIONS(2240), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + ACTIONS(9659), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [213878] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(9044), 1, - anon_sym_DQUOTE, - ACTIONS(9048), 1, - aux_sym_path_token1, - STATE(5730), 1, + ACTIONS(2113), 1, + anon_sym_DASH, + ACTIONS(9661), 1, + anon_sym_DOT_DOT2, + STATE(5970), 1, sym_comment, - STATE(6022), 1, - sym__str_double_quotes, - STATE(6068), 1, - sym_val_string, - ACTIONS(9046), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [211485] = 8, - ACTIONS(247), 1, + ACTIONS(2119), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + ACTIONS(9663), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [213899] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3229), 1, - aux_sym_record_entry_token1, - ACTIONS(8231), 1, - sym_identifier, - ACTIONS(9050), 1, - anon_sym_DOLLAR, - STATE(5366), 1, - sym_val_variable, - STATE(5731), 1, + ACTIONS(2206), 1, + anon_sym_DASH, + ACTIONS(9665), 1, + anon_sym_DOT_DOT2, + STATE(5971), 1, sym_comment, - STATE(5970), 1, - sym__variable_name, - STATE(6483), 1, - sym__assignment_pattern, - [211510] = 7, + ACTIONS(2212), 2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + ACTIONS(9667), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [213920] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8947), 1, + ACTIONS(9330), 1, anon_sym_LPAREN, - ACTIONS(9052), 1, + ACTIONS(9669), 1, anon_sym_DQUOTE2, - STATE(5732), 1, - sym_comment, - STATE(5735), 1, + STATE(5940), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6463), 1, + STATE(5972), 1, + sym_comment, + STATE(6294), 1, sym_expr_interpolated, - ACTIONS(8949), 2, + ACTIONS(9332), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [211533] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4539), 1, - aux_sym_unquoted_token3, - ACTIONS(8111), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8480), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8482), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8484), 1, - aux_sym__immediate_decimal_token5, - STATE(5733), 1, - sym_comment, - STATE(6378), 1, - sym__immediate_decimal, - [211558] = 8, - ACTIONS(3), 1, + [213943] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4539), 1, - aux_sym_unquoted_token3, - ACTIONS(8209), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8486), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8488), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8490), 1, - aux_sym__immediate_decimal_token5, - STATE(5734), 1, + ACTIONS(9671), 1, + anon_sym_DOT_DOT2, + STATE(5973), 1, sym_comment, - STATE(7494), 1, - sym__immediate_decimal, - [211583] = 7, - ACTIONS(3), 1, + ACTIONS(9673), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2228), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [213962] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8947), 1, - anon_sym_LPAREN, - ACTIONS(9054), 1, - anon_sym_DQUOTE2, - STATE(5735), 1, + ACTIONS(9675), 1, + anon_sym_DOT_DOT2, + STATE(5974), 1, sym_comment, - STATE(5787), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6463), 1, - sym_expr_interpolated, - ACTIONS(8949), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [211606] = 8, - ACTIONS(247), 1, + ACTIONS(9677), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2240), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [213981] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3229), 1, - aux_sym_record_entry_token1, - ACTIONS(8231), 1, - sym_identifier, - ACTIONS(9050), 1, - anon_sym_DOLLAR, - STATE(5366), 1, - sym_val_variable, - STATE(5736), 1, + ACTIONS(9679), 1, + anon_sym_DOT_DOT2, + STATE(5975), 1, sym_comment, - STATE(5970), 1, - sym__variable_name, - STATE(6487), 1, - sym__assignment_pattern, - [211631] = 8, - ACTIONS(247), 1, + ACTIONS(9681), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2119), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [214000] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(8900), 1, - anon_sym_LBRACK, - ACTIONS(9056), 1, - anon_sym_RBRACK, - STATE(5737), 1, + ACTIONS(9683), 1, + anon_sym_DOT_DOT2, + STATE(5976), 1, sym_comment, - STATE(6011), 1, - aux_sym_shebang_repeat1, - STATE(6994), 1, - sym_val_list, - STATE(7052), 1, - aux_sym_val_table_repeat1, - [211656] = 8, - ACTIONS(247), 1, + ACTIONS(9685), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2212), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [214019] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3229), 1, - aux_sym_record_entry_token1, - ACTIONS(8231), 1, - sym_identifier, - ACTIONS(9050), 1, - anon_sym_DOLLAR, - STATE(5366), 1, - sym_val_variable, - STATE(5738), 1, + ACTIONS(9687), 1, + anon_sym_DOT, + ACTIONS(9689), 1, + aux_sym__immediate_decimal_token2, + STATE(5977), 1, sym_comment, - STATE(5970), 1, - sym__variable_name, - STATE(6502), 1, - sym__assignment_pattern, - [211681] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(8900), 1, - anon_sym_LBRACK, - ACTIONS(9058), 1, + ACTIONS(1715), 2, anon_sym_RBRACK, - STATE(5739), 1, - sym_comment, - STATE(6012), 1, - aux_sym_shebang_repeat1, - STATE(7005), 1, - sym_val_list, - STATE(7055), 1, - aux_sym_val_table_repeat1, - [211706] = 7, - ACTIONS(247), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1717), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [214040] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3015), 1, - anon_sym_DQUOTE, - ACTIONS(9060), 1, - aux_sym_path_token1, - STATE(5413), 1, - sym__str_double_quotes, - STATE(5417), 1, - sym_val_string, - STATE(5740), 1, + STATE(5978), 1, sym_comment, - ACTIONS(3017), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [211729] = 6, - ACTIONS(247), 1, + ACTIONS(2218), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + ACTIONS(2220), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [214057] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4783), 1, - anon_sym_DOLLAR, - ACTIONS(9062), 1, - anon_sym_EQ2, - ACTIONS(9064), 1, - sym_short_flag_identifier, - STATE(5741), 1, + ACTIONS(5077), 1, + anon_sym_DASH, + STATE(5979), 1, sym_comment, - ACTIONS(4781), 3, - sym_identifier, + ACTIONS(5075), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_DASH_DASH, - anon_sym_DASH, - [211750] = 7, + anon_sym_as, + [214074] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8947), 1, - anon_sym_LPAREN, - ACTIONS(9066), 1, - anon_sym_DQUOTE2, - STATE(5742), 1, + ACTIONS(9691), 1, + anon_sym_DOT, + ACTIONS(9693), 1, + aux_sym__immediate_decimal_token2, + STATE(5980), 1, sym_comment, - STATE(5746), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6463), 1, - sym_expr_interpolated, - ACTIONS(8949), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [211773] = 7, - ACTIONS(247), 1, + ACTIONS(1715), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1717), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [214095] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1494), 1, + ACTIONS(1558), 1, aux_sym_unquoted_token2, - ACTIONS(8211), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8213), 1, - aux_sym__immediate_decimal_token5, - STATE(5743), 1, - sym_comment, - STATE(7368), 1, - sym__immediate_decimal, - ACTIONS(8209), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [211796] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6939), 1, - aux_sym_unquoted_token3, - ACTIONS(8111), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8480), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8482), 1, + ACTIONS(8444), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8484), 1, + ACTIONS(8446), 1, aux_sym__immediate_decimal_token5, - STATE(5744), 1, + STATE(5981), 1, sym_comment, - STATE(6378), 1, + STATE(7805), 1, sym__immediate_decimal, - [211821] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6939), 1, - aux_sym_unquoted_token3, - ACTIONS(8209), 1, + ACTIONS(8442), 2, aux_sym__immediate_decimal_token1, - ACTIONS(8486), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8488), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8490), 1, - aux_sym__immediate_decimal_token5, - STATE(5745), 1, - sym_comment, - STATE(7494), 1, - sym__immediate_decimal, - [211846] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8947), 1, - anon_sym_LPAREN, - ACTIONS(9068), 1, - anon_sym_DQUOTE2, - STATE(5746), 1, - sym_comment, - STATE(5787), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6463), 1, - sym_expr_interpolated, - ACTIONS(8949), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [211869] = 8, - ACTIONS(247), 1, + [214118] = 8, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, + ACTIONS(3766), 1, sym__newline, - ACTIONS(8900), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - ACTIONS(9070), 1, + ACTIONS(9695), 1, anon_sym_RBRACK, - STATE(5747), 1, + STATE(5982), 1, sym_comment, - STATE(6013), 1, + STATE(6159), 1, aux_sym_shebang_repeat1, - STATE(7060), 1, - aux_sym_val_table_repeat1, - STATE(7126), 1, + STATE(7058), 1, sym_val_list, - [211894] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(8900), 1, - anon_sym_LBRACK, - ACTIONS(9072), 1, - anon_sym_RBRACK, - STATE(5748), 1, - sym_comment, - STATE(6014), 1, - aux_sym_shebang_repeat1, - STATE(7062), 1, + STATE(7375), 1, aux_sym_val_table_repeat1, - STATE(7156), 1, - sym_val_list, - [211919] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9074), 1, - anon_sym_DQUOTE, - ACTIONS(9078), 1, - aux_sym_path_token1, - STATE(5749), 1, - sym_comment, - STATE(5900), 1, - sym__str_double_quotes, - STATE(5977), 1, - sym_val_string, - ACTIONS(9076), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [211942] = 7, + [214143] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8947), 1, - anon_sym_LPAREN, - ACTIONS(9080), 1, - anon_sym_DQUOTE2, - STATE(5750), 1, + STATE(5983), 1, sym_comment, - STATE(5753), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6463), 1, - sym_expr_interpolated, - ACTIONS(8949), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [211965] = 8, - ACTIONS(3), 1, + ACTIONS(1056), 2, + anon_sym_DOT, + sym__entry_separator, + ACTIONS(1054), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK2, + [214159] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6872), 1, - aux_sym_unquoted_token3, - ACTIONS(8111), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8480), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8482), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8484), 1, - aux_sym__immediate_decimal_token5, - STATE(5751), 1, + ACTIONS(8374), 1, + sym_identifier, + ACTIONS(9328), 1, + anon_sym_DOLLAR, + STATE(5416), 1, + sym_val_variable, + STATE(5984), 1, sym_comment, - STATE(6378), 1, - sym__immediate_decimal, - [211990] = 8, - ACTIONS(3), 1, + STATE(6047), 1, + sym__variable_name, + STATE(6303), 1, + sym__assignment_pattern, + [214181] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6872), 1, - aux_sym_unquoted_token3, - ACTIONS(8209), 1, + ACTIONS(1703), 1, + aux_sym_unquoted_token2, + ACTIONS(9697), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8486), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8488), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8490), 1, - aux_sym__immediate_decimal_token5, - STATE(5752), 1, + ACTIONS(9699), 1, + aux_sym__immediate_decimal_token2, + STATE(5985), 1, sym_comment, - STATE(7494), 1, - sym__immediate_decimal, - [212015] = 7, - ACTIONS(3), 1, + ACTIONS(1705), 2, + anon_sym_LBRACE, + anon_sym_LPAREN2, + [214201] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8947), 1, - anon_sym_LPAREN, - ACTIONS(9082), 1, - anon_sym_DQUOTE2, - STATE(5753), 1, + ACTIONS(8374), 1, + sym_identifier, + ACTIONS(9328), 1, + anon_sym_DOLLAR, + STATE(5416), 1, + sym_val_variable, + STATE(5986), 1, sym_comment, - STATE(5787), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6463), 1, - sym_expr_interpolated, - ACTIONS(8949), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [212038] = 8, - ACTIONS(247), 1, + STATE(6023), 1, + sym__variable_name, + STATE(7099), 1, + sym__assignment_pattern, + [214223] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(8900), 1, - anon_sym_LBRACK, - ACTIONS(9084), 1, - anon_sym_RBRACK, - STATE(5754), 1, + ACTIONS(1628), 1, + anon_sym_DASH, + ACTIONS(8580), 1, + aux_sym_unquoted_token2, + STATE(5987), 1, sym_comment, - STATE(6015), 1, - aux_sym_shebang_repeat1, - STATE(6620), 1, - sym_val_list, - STATE(7066), 1, - aux_sym_val_table_repeat1, - [212063] = 8, - ACTIONS(247), 1, + ACTIONS(1640), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [214241] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(8900), 1, - anon_sym_LBRACK, - ACTIONS(9086), 1, - anon_sym_RBRACK, - STATE(5755), 1, + ACTIONS(1844), 1, + anon_sym_LPAREN2, + ACTIONS(1852), 1, + aux_sym_unquoted_token2, + ACTIONS(9701), 1, + anon_sym_DOT_DOT2, + STATE(5988), 1, sym_comment, - STATE(6016), 1, - aux_sym_shebang_repeat1, - STATE(6625), 1, - sym_val_list, - STATE(7068), 1, - aux_sym_val_table_repeat1, - [212088] = 7, - ACTIONS(247), 1, + ACTIONS(9703), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [214261] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(511), 1, - anon_sym_DQUOTE, - ACTIONS(9088), 1, - aux_sym_path_token1, - STATE(1725), 1, - sym__str_double_quotes, - STATE(1988), 1, - sym_val_string, - STATE(5756), 1, + ACTIONS(9217), 1, + anon_sym_LBRACE, + STATE(5989), 1, sym_comment, - ACTIONS(513), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [212111] = 7, - ACTIONS(3), 1, + STATE(7140), 1, + sym_val_record, + ACTIONS(9445), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [214279] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8947), 1, - anon_sym_LPAREN, - ACTIONS(9090), 1, - anon_sym_DQUOTE2, - STATE(5757), 1, + STATE(5990), 1, sym_comment, - STATE(5760), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6463), 1, - sym_expr_interpolated, - ACTIONS(8949), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [212134] = 8, - ACTIONS(3), 1, + ACTIONS(8074), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_AT, + anon_sym_LBRACE, + [214293] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6355), 1, - aux_sym_unquoted_token3, - ACTIONS(8111), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8480), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8482), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8484), 1, - aux_sym__immediate_decimal_token5, - STATE(5758), 1, + ACTIONS(1023), 1, + aux_sym_record_entry_token1, + ACTIONS(9705), 1, + anon_sym_DOT, + STATE(1275), 1, + sym_cell_path, + STATE(5991), 1, sym_comment, - STATE(6378), 1, - sym__immediate_decimal, - [212159] = 8, - ACTIONS(3), 1, + STATE(6724), 1, + aux_sym_cell_path_repeat1, + STATE(7323), 1, + sym_path, + [214315] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6355), 1, - aux_sym_unquoted_token3, - ACTIONS(8209), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8486), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8488), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8490), 1, - aux_sym__immediate_decimal_token5, - STATE(5759), 1, + ACTIONS(1526), 1, + aux_sym_unquoted_token2, + ACTIONS(1790), 1, + anon_sym_LPAREN2, + ACTIONS(9707), 1, + anon_sym_DOT_DOT2, + STATE(5992), 1, sym_comment, - STATE(7494), 1, - sym__immediate_decimal, - [212184] = 7, + ACTIONS(9709), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [214335] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8947), 1, + ACTIONS(9711), 1, anon_sym_LPAREN, - ACTIONS(9092), 1, - anon_sym_DQUOTE2, - STATE(5760), 1, + ACTIONS(9713), 1, + sym_unescaped_interpolated_content, + ACTIONS(9715), 1, + anon_sym_SQUOTE, + STATE(5993), 1, sym_comment, - STATE(5787), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6463), 1, + STATE(6001), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7085), 1, sym_expr_interpolated, - ACTIONS(8949), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [212207] = 8, - ACTIONS(247), 1, + [214357] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(8900), 1, - anon_sym_LBRACK, - ACTIONS(9094), 1, - anon_sym_RBRACK, - STATE(5761), 1, + STATE(245), 1, + aux_sym__block_body_repeat1, + STATE(5994), 1, sym_comment, - STATE(6017), 1, - aux_sym_shebang_repeat1, - STATE(6646), 1, - sym_val_list, - STATE(7074), 1, - aux_sym_val_table_repeat1, - [212232] = 8, - ACTIONS(247), 1, + ACTIONS(147), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(1660), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [214375] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3705), 1, + ACTIONS(9717), 1, sym__newline, - ACTIONS(8900), 1, - anon_sym_LBRACK, - ACTIONS(9096), 1, - anon_sym_RBRACK, - STATE(5762), 1, + ACTIONS(9720), 1, + sym__space, + STATE(5518), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(7585), 1, + sym__flags_parenthesized, + STATE(5995), 2, sym_comment, - STATE(6018), 1, - aux_sym_shebang_repeat1, - STATE(6650), 1, - sym_val_list, - STATE(7076), 1, - aux_sym_val_table_repeat1, - [212257] = 7, - ACTIONS(247), 1, + aux_sym_ctrl_do_parenthesized_repeat1, + [214395] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(9098), 1, - anon_sym_DQUOTE, - ACTIONS(9102), 1, - aux_sym_path_token1, - STATE(1129), 1, - sym_val_string, - STATE(1130), 1, - sym__str_double_quotes, - STATE(5763), 1, + ACTIONS(9723), 1, + anon_sym_PIPE, + ACTIONS(9725), 1, + anon_sym_if, + ACTIONS(9727), 1, + anon_sym_EQ_GT, + STATE(5996), 1, sym_comment, - ACTIONS(9100), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [212280] = 6, - ACTIONS(3), 1, + STATE(7114), 1, + aux_sym_match_pattern_repeat1, + STATE(7818), 1, + sym_match_guard, + [214417] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(9104), 1, - anon_sym_DOT, - ACTIONS(9106), 1, - aux_sym__immediate_decimal_token2, - STATE(5764), 1, + ACTIONS(5053), 1, + anon_sym_DASH, + STATE(5997), 1, sym_comment, - ACTIONS(1667), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1669), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [212301] = 7, + ACTIONS(5051), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [214433] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8947), 1, - anon_sym_LPAREN, - ACTIONS(9108), 1, - anon_sym_DQUOTE2, - STATE(5765), 1, + STATE(5998), 1, sym_comment, - STATE(5768), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6463), 1, - sym_expr_interpolated, - ACTIONS(8949), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [212324] = 8, - ACTIONS(3), 1, + ACTIONS(1060), 2, + anon_sym_DOT, + sym__entry_separator, + ACTIONS(1058), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK2, + [214449] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4520), 1, - aux_sym_unquoted_token3, - ACTIONS(8111), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8480), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8482), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8484), 1, - aux_sym__immediate_decimal_token5, - STATE(5766), 1, + ACTIONS(1628), 1, + anon_sym_DASH, + ACTIONS(8580), 1, + aux_sym_unquoted_token2, + STATE(5999), 1, sym_comment, - STATE(6378), 1, - sym__immediate_decimal, - [212349] = 8, - ACTIONS(3), 1, + ACTIONS(1640), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [214467] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4520), 1, - aux_sym_unquoted_token3, - ACTIONS(8209), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8486), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8488), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8490), 1, - aux_sym__immediate_decimal_token5, - STATE(5767), 1, + ACTIONS(1715), 1, + aux_sym_unquoted_token2, + ACTIONS(9729), 1, + anon_sym_DOT, + ACTIONS(9731), 1, + aux_sym__immediate_decimal_token2, + STATE(6000), 1, sym_comment, - STATE(7494), 1, - sym__immediate_decimal, - [212374] = 7, + ACTIONS(1717), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [214487] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8947), 1, + ACTIONS(9711), 1, anon_sym_LPAREN, - ACTIONS(9110), 1, - anon_sym_DQUOTE2, - STATE(5768), 1, + ACTIONS(9713), 1, + sym_unescaped_interpolated_content, + ACTIONS(9733), 1, + anon_sym_SQUOTE, + STATE(6001), 1, sym_comment, - STATE(5787), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6463), 1, + STATE(6073), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7085), 1, sym_expr_interpolated, - ACTIONS(8949), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [212397] = 8, - ACTIONS(247), 1, + [214509] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(8900), 1, - anon_sym_LBRACK, - ACTIONS(9112), 1, - anon_sym_RBRACK, - STATE(5769), 1, + ACTIONS(6202), 1, + anon_sym_LBRACE, + STATE(6002), 1, sym_comment, - STATE(6019), 1, - aux_sym_shebang_repeat1, - STATE(6672), 1, - sym_val_list, - STATE(7081), 1, - aux_sym_val_table_repeat1, - [212422] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3705), 1, + STATE(7057), 1, + sym_block, + ACTIONS(9467), 3, + ts_builtin_sym_end, sym__newline, - ACTIONS(8900), 1, - anon_sym_LBRACK, - ACTIONS(9114), 1, - anon_sym_RBRACK, - STATE(5770), 1, + anon_sym_SEMI, + [214527] = 7, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(2085), 1, + anon_sym_LBRACE, + ACTIONS(8268), 1, + anon_sym_DOT, + STATE(2031), 1, + sym_cell_path, + STATE(2752), 1, + sym_path, + STATE(5224), 1, + aux_sym_cell_path_repeat1, + STATE(6003), 1, sym_comment, - STATE(6020), 1, - aux_sym_shebang_repeat1, - STATE(6676), 1, - sym_val_list, - STATE(7084), 1, - aux_sym_val_table_repeat1, - [212447] = 7, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(247), 1, + [214549] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(9116), 1, - aux_sym_path_token1, - STATE(1418), 1, - sym__str_double_quotes, - STATE(1471), 1, - sym_val_string, - STATE(5771), 1, + ACTIONS(2089), 1, + anon_sym_LBRACE, + ACTIONS(8268), 1, + anon_sym_DOT, + STATE(2033), 1, + sym_cell_path, + STATE(2752), 1, + sym_path, + STATE(5224), 1, + aux_sym_cell_path_repeat1, + STATE(6004), 1, sym_comment, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [212470] = 7, - ACTIONS(3), 1, + [214571] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8947), 1, - anon_sym_LPAREN, - ACTIONS(9118), 1, - anon_sym_DQUOTE2, - STATE(5772), 1, + ACTIONS(8374), 1, + sym_identifier, + ACTIONS(9328), 1, + anon_sym_DOLLAR, + STATE(5416), 1, + sym_val_variable, + STATE(6005), 1, sym_comment, - STATE(5775), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6463), 1, - sym_expr_interpolated, - ACTIONS(8949), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [212493] = 8, + STATE(6105), 1, + sym__variable_name, + STATE(6996), 1, + sym__assignment_pattern_parenthesized, + [214593] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6834), 1, - aux_sym_unquoted_token3, - ACTIONS(8111), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8480), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8482), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8484), 1, - aux_sym__immediate_decimal_token5, - STATE(5773), 1, + STATE(6006), 1, sym_comment, - STATE(6378), 1, - sym__immediate_decimal, - [212518] = 8, + ACTIONS(1064), 2, + anon_sym_DOT, + sym__entry_separator, + ACTIONS(1062), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK2, + [214609] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6834), 1, - aux_sym_unquoted_token3, - ACTIONS(8209), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8486), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8488), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8490), 1, - aux_sym__immediate_decimal_token5, - STATE(5774), 1, + STATE(6007), 1, sym_comment, - STATE(7494), 1, - sym__immediate_decimal, - [212543] = 7, - ACTIONS(3), 1, + ACTIONS(1040), 2, + anon_sym_DOT, + sym__entry_separator, + ACTIONS(1038), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK2, + [214625] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8947), 1, - anon_sym_LPAREN, - ACTIONS(9120), 1, - anon_sym_DQUOTE2, - STATE(5775), 1, + ACTIONS(3294), 1, + aux_sym_record_entry_token1, + ACTIONS(9735), 1, + anon_sym_use, + ACTIONS(9737), 1, + anon_sym_list, + ACTIONS(9739), 1, + anon_sym_hide, + ACTIONS(9741), 1, + anon_sym_new, + STATE(6008), 1, sym_comment, - STATE(5787), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6463), 1, - sym_expr_interpolated, - ACTIONS(8949), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [212566] = 8, - ACTIONS(247), 1, + [214647] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(8900), 1, - anon_sym_LBRACK, - ACTIONS(9122), 1, - anon_sym_RBRACK, - STATE(5776), 1, + ACTIONS(8374), 1, + sym_identifier, + ACTIONS(9328), 1, + anon_sym_DOLLAR, + STATE(5416), 1, + sym_val_variable, + STATE(6009), 1, sym_comment, STATE(6023), 1, - aux_sym_shebang_repeat1, - STATE(6695), 1, - sym_val_list, - STATE(7089), 1, - aux_sym_val_table_repeat1, - [212591] = 8, - ACTIONS(247), 1, + sym__variable_name, + STATE(7068), 1, + sym__assignment_pattern, + [214669] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, + ACTIONS(6202), 1, + anon_sym_LBRACE, + STATE(6010), 1, + sym_comment, + STATE(7071), 1, + sym_block, + ACTIONS(9467), 3, + ts_builtin_sym_end, sym__newline, - ACTIONS(8900), 1, - anon_sym_LBRACK, - ACTIONS(9124), 1, - anon_sym_RBRACK, - STATE(5777), 1, + anon_sym_SEMI, + [214687] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1850), 1, + anon_sym_LBRACE, + ACTIONS(1852), 1, + aux_sym_unquoted_token2, + ACTIONS(9743), 1, + anon_sym_DOT_DOT2, + STATE(6011), 1, sym_comment, - STATE(6024), 1, - aux_sym_shebang_repeat1, - STATE(6699), 1, - sym_val_list, - STATE(7091), 1, - aux_sym_val_table_repeat1, - [212616] = 7, - ACTIONS(247), 1, + ACTIONS(9745), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [214707] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(9126), 1, - anon_sym_DQUOTE, - ACTIONS(9130), 1, - aux_sym_path_token1, - STATE(1095), 1, - sym_val_string, - STATE(1112), 1, - sym__str_double_quotes, - STATE(5778), 1, + ACTIONS(1903), 1, + sym__table_head_separator, + ACTIONS(9747), 1, + anon_sym_DOT, + STATE(6012), 1, sym_comment, - ACTIONS(9128), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [212639] = 7, - ACTIONS(3), 1, + STATE(6689), 1, + aux_sym_cell_path_repeat1, + STATE(7323), 1, + sym_path, + STATE(7819), 1, + sym_cell_path, + [214729] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8947), 1, - anon_sym_LPAREN, - ACTIONS(9132), 1, - anon_sym_DQUOTE2, - STATE(5779), 1, + ACTIONS(5049), 1, + anon_sym_DASH, + STATE(6013), 1, sym_comment, - STATE(5780), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6463), 1, - sym_expr_interpolated, - ACTIONS(8949), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [212662] = 7, + ACTIONS(5047), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [214745] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8947), 1, + ACTIONS(9711), 1, anon_sym_LPAREN, - ACTIONS(9134), 1, - anon_sym_DQUOTE2, - STATE(5780), 1, + ACTIONS(9713), 1, + sym_unescaped_interpolated_content, + ACTIONS(9749), 1, + anon_sym_SQUOTE, + STATE(6014), 1, sym_comment, - STATE(5787), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6463), 1, + STATE(6041), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7085), 1, sym_expr_interpolated, - ACTIONS(8949), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [212685] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(8900), 1, - anon_sym_LBRACK, - ACTIONS(9136), 1, - anon_sym_RBRACK, - STATE(5781), 1, - sym_comment, - STATE(6026), 1, - aux_sym_shebang_repeat1, - STATE(6715), 1, - sym_val_list, - STATE(7097), 1, - aux_sym_val_table_repeat1, - [212710] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(8900), 1, - anon_sym_LBRACK, - ACTIONS(9138), 1, - anon_sym_RBRACK, - STATE(5782), 1, - sym_comment, - STATE(6027), 1, - aux_sym_shebang_repeat1, - STATE(6719), 1, - sym_val_list, - STATE(7100), 1, - aux_sym_val_table_repeat1, - [212735] = 7, - ACTIONS(247), 1, + [214767] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(9140), 1, - anon_sym_DQUOTE, - ACTIONS(9144), 1, - aux_sym_path_token1, - STATE(1514), 1, - sym__str_double_quotes, - STATE(1539), 1, - sym_val_string, - STATE(5783), 1, + ACTIONS(4947), 1, + anon_sym_DASH, + ACTIONS(9751), 1, + anon_sym_EQ2, + STATE(6015), 1, sym_comment, - ACTIONS(9142), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [212758] = 8, - ACTIONS(247), 1, + ACTIONS(4945), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [214785] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8786), 1, - anon_sym_alias, - ACTIONS(8788), 1, - anon_sym_const, - ACTIONS(8790), 1, - anon_sym_def, - ACTIONS(8792), 1, - anon_sym_extern, - ACTIONS(8794), 1, - anon_sym_module, - ACTIONS(8796), 1, - anon_sym_use, - STATE(5784), 1, + ACTIONS(8374), 1, + sym_identifier, + ACTIONS(9328), 1, + anon_sym_DOLLAR, + STATE(5416), 1, + sym_val_variable, + STATE(6016), 1, sym_comment, - [212783] = 7, + STATE(6105), 1, + sym__variable_name, + STATE(6908), 1, + sym__assignment_pattern_parenthesized, + [214807] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8947), 1, - anon_sym_LPAREN, - ACTIONS(9146), 1, - anon_sym_DQUOTE2, - STATE(5785), 1, + ACTIONS(9693), 1, + aux_sym__immediate_decimal_token2, + STATE(6017), 1, sym_comment, - STATE(5786), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6463), 1, - sym_expr_interpolated, - ACTIONS(8949), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [212806] = 7, - ACTIONS(3), 1, + ACTIONS(1715), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1717), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [214825] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8947), 1, - anon_sym_LPAREN, - ACTIONS(9148), 1, - anon_sym_DQUOTE2, - STATE(5786), 1, + ACTIONS(9223), 1, + anon_sym_DASH, + STATE(6018), 1, sym_comment, - STATE(5787), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6463), 1, - sym_expr_interpolated, - ACTIONS(8949), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [212829] = 6, + ACTIONS(9221), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [214841] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9150), 1, - anon_sym_LPAREN, - ACTIONS(9156), 1, - anon_sym_DQUOTE2, - STATE(6463), 1, - sym_expr_interpolated, - ACTIONS(9153), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - STATE(5787), 2, + ACTIONS(1064), 1, + anon_sym_DOT, + STATE(6019), 1, sym_comment, - aux_sym__inter_double_quotes_repeat1, - [212850] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(8900), 1, - anon_sym_LBRACK, - ACTIONS(9158), 1, + ACTIONS(1062), 4, anon_sym_RBRACK, - STATE(5788), 1, - sym_comment, - STATE(6029), 1, - aux_sym_shebang_repeat1, - STATE(6733), 1, - sym_val_list, - STATE(7105), 1, - aux_sym_val_table_repeat1, - [212875] = 8, - ACTIONS(247), 1, + anon_sym_QMARK2, + sym__entry_separator, + sym__table_head_separator, + [214857] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, + ACTIONS(3766), 1, sym__newline, - ACTIONS(8900), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - ACTIONS(9160), 1, - anon_sym_RBRACK, - STATE(5789), 1, - sym_comment, - STATE(6030), 1, + STATE(2498), 1, aux_sym_shebang_repeat1, - STATE(6737), 1, + STATE(6020), 1, + sym_comment, + STATE(6972), 1, sym_val_list, - STATE(7107), 1, + STATE(7165), 1, aux_sym_val_table_repeat1, - [212900] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(511), 1, - anon_sym_DQUOTE, - ACTIONS(8941), 1, - aux_sym_path_token1, - STATE(1725), 1, - sym__str_double_quotes, - STATE(2601), 1, - sym_val_string, - STATE(5790), 1, - sym_comment, - ACTIONS(513), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [212923] = 7, - ACTIONS(3), 1, + [214879] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8947), 1, - anon_sym_LPAREN, - ACTIONS(9162), 1, - anon_sym_DQUOTE2, - STATE(5791), 1, + STATE(233), 1, + aux_sym__block_body_repeat1, + STATE(6021), 1, sym_comment, - STATE(5792), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6463), 1, - sym_expr_interpolated, - ACTIONS(8949), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [212946] = 7, - ACTIONS(3), 1, + ACTIONS(147), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(1674), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [214897] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8947), 1, - anon_sym_LPAREN, - ACTIONS(9164), 1, - anon_sym_DQUOTE2, - STATE(5787), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(5792), 1, + STATE(6022), 1, sym_comment, - STATE(6463), 1, - sym_expr_interpolated, - ACTIONS(8949), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [212969] = 8, - ACTIONS(247), 1, + ACTIONS(8070), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_AT, + anon_sym_LBRACE, + [214911] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, + ACTIONS(3766), 1, sym__newline, - ACTIONS(8900), 1, - anon_sym_LBRACK, - ACTIONS(9166), 1, - anon_sym_RBRACK, - STATE(5793), 1, + ACTIONS(9753), 1, + anon_sym_EQ, + ACTIONS(9755), 1, + anon_sym_COLON, + STATE(6023), 1, sym_comment, - STATE(6031), 1, + STATE(7246), 1, aux_sym_shebang_repeat1, - STATE(6615), 1, - sym_val_list, - STATE(7112), 1, - aux_sym_val_table_repeat1, - [212994] = 8, - ACTIONS(247), 1, + STATE(7789), 1, + sym_param_type, + [214933] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(8900), 1, - anon_sym_LBRACK, - ACTIONS(9168), 1, - anon_sym_RBRACK, - STATE(5794), 1, + STATE(6024), 1, sym_comment, - STATE(6032), 1, - aux_sym_shebang_repeat1, - STATE(6761), 1, - sym_val_list, - STATE(7115), 1, - aux_sym_val_table_repeat1, - [213019] = 7, - ACTIONS(247), 1, + ACTIONS(7753), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_AT, + anon_sym_LBRACE, + [214947] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9102), 1, - aux_sym_path_token1, - ACTIONS(9170), 1, - anon_sym_DQUOTE, - STATE(1129), 1, - sym_val_string, - STATE(3159), 1, - sym__str_double_quotes, - STATE(5795), 1, + ACTIONS(1842), 1, + anon_sym_RBRACE, + ACTIONS(1850), 1, + sym__entry_separator, + ACTIONS(9757), 1, + anon_sym_DOT_DOT2, + STATE(6025), 1, sym_comment, - ACTIONS(9172), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [213042] = 7, - ACTIONS(3), 1, + ACTIONS(9759), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [214967] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8947), 1, - anon_sym_LPAREN, - ACTIONS(9174), 1, - anon_sym_DQUOTE2, - STATE(5796), 1, + ACTIONS(1911), 1, + sym__table_head_separator, + ACTIONS(9747), 1, + anon_sym_DOT, + STATE(6026), 1, sym_comment, - STATE(5798), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6463), 1, - sym_expr_interpolated, - ACTIONS(8949), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [213065] = 8, - ACTIONS(247), 1, + STATE(6689), 1, + aux_sym_cell_path_repeat1, + STATE(7323), 1, + sym_path, + STATE(7814), 1, + sym_cell_path, + [214989] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(8929), 1, + ACTIONS(1911), 1, anon_sym_LBRACE, - STATE(1693), 1, - sym_block, - STATE(1694), 1, - sym_val_closure, - STATE(5075), 1, - sym__blosure, - STATE(5659), 1, - aux_sym_shebang_repeat1, - STATE(5797), 1, + ACTIONS(8268), 1, + anon_sym_DOT, + STATE(2249), 1, + sym_cell_path, + STATE(2752), 1, + sym_path, + STATE(5224), 1, + aux_sym_cell_path_repeat1, + STATE(6027), 1, sym_comment, - [213090] = 7, + [215011] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8947), 1, + ACTIONS(9711), 1, anon_sym_LPAREN, - ACTIONS(9176), 1, - anon_sym_DQUOTE2, - STATE(5787), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(5798), 1, + ACTIONS(9713), 1, + sym_unescaped_interpolated_content, + ACTIONS(9761), 1, + anon_sym_SQUOTE, + STATE(6028), 1, sym_comment, - STATE(6463), 1, + STATE(6032), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7085), 1, sym_expr_interpolated, - ACTIONS(8949), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [213113] = 8, - ACTIONS(247), 1, + [215033] = 7, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(2019), 1, + anon_sym_LBRACE, + ACTIONS(8268), 1, + anon_sym_DOT, + STATE(2019), 1, + sym_cell_path, + STATE(2752), 1, + sym_path, + STATE(5224), 1, + aux_sym_cell_path_repeat1, + STATE(6029), 1, + sym_comment, + [215055] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3705), 1, + ACTIONS(7707), 1, sym__newline, - ACTIONS(8900), 1, - anon_sym_LBRACK, - ACTIONS(9178), 1, - anon_sym_RBRACK, - STATE(5799), 1, + ACTIONS(7709), 1, + sym__space, + STATE(4698), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(6030), 1, sym_comment, - STATE(6033), 1, - aux_sym_shebang_repeat1, - STATE(6779), 1, - sym_val_list, - STATE(7119), 1, - aux_sym_val_table_repeat1, - [213138] = 8, - ACTIONS(247), 1, + STATE(6118), 1, + aux_sym_ctrl_do_parenthesized_repeat1, + STATE(7585), 1, + sym__flags_parenthesized, + [215077] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, + ACTIONS(3766), 1, sym__newline, - ACTIONS(8900), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - ACTIONS(9180), 1, - anon_sym_RBRACK, - STATE(5800), 1, - sym_comment, - STATE(6034), 1, + STATE(2498), 1, aux_sym_shebang_repeat1, - STATE(6783), 1, + STATE(6031), 1, + sym_comment, + STATE(7149), 1, sym_val_list, - STATE(7122), 1, + STATE(7169), 1, aux_sym_val_table_repeat1, - [213163] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(441), 1, - anon_sym_DQUOTE, - ACTIONS(9116), 1, - aux_sym_path_token1, - STATE(1471), 1, - sym_val_string, - STATE(1972), 1, - sym__str_double_quotes, - STATE(5801), 1, - sym_comment, - ACTIONS(443), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [213186] = 7, + [215099] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8947), 1, + ACTIONS(9711), 1, anon_sym_LPAREN, - ACTIONS(9182), 1, - anon_sym_DQUOTE2, - STATE(5802), 1, + ACTIONS(9713), 1, + sym_unescaped_interpolated_content, + ACTIONS(9763), 1, + anon_sym_SQUOTE, + STATE(6032), 1, sym_comment, - STATE(5803), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6463), 1, + STATE(6073), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7085), 1, sym_expr_interpolated, - ACTIONS(8949), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [213209] = 7, - ACTIONS(3), 1, + [215121] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8947), 1, - anon_sym_LPAREN, - ACTIONS(9184), 1, - anon_sym_DQUOTE2, - STATE(5787), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(5803), 1, + ACTIONS(1899), 1, + anon_sym_LBRACE, + ACTIONS(8268), 1, + anon_sym_DOT, + STATE(2260), 1, + sym_cell_path, + STATE(2752), 1, + sym_path, + STATE(5224), 1, + aux_sym_cell_path_repeat1, + STATE(6033), 1, sym_comment, - STATE(6463), 1, - sym_expr_interpolated, - ACTIONS(8949), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [213232] = 8, - ACTIONS(247), 1, + [215143] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(8900), 1, - anon_sym_LBRACK, - ACTIONS(9186), 1, - anon_sym_RBRACK, - STATE(5804), 1, + ACTIONS(2049), 1, + anon_sym_LBRACE, + ACTIONS(8268), 1, + anon_sym_DOT, + STATE(2023), 1, + sym_cell_path, + STATE(2752), 1, + sym_path, + STATE(5224), 1, + aux_sym_cell_path_repeat1, + STATE(6034), 1, sym_comment, - STATE(6035), 1, - aux_sym_shebang_repeat1, - STATE(6798), 1, - sym_val_list, - STATE(7127), 1, - aux_sym_val_table_repeat1, - [213257] = 8, - ACTIONS(247), 1, + [215165] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(8900), 1, - anon_sym_LBRACK, - ACTIONS(9188), 1, - anon_sym_RBRACK, - STATE(5805), 1, + ACTIONS(6202), 1, + anon_sym_LBRACE, + STATE(6035), 1, sym_comment, - STATE(6036), 1, - aux_sym_shebang_repeat1, - STATE(6801), 1, - sym_val_list, STATE(7130), 1, - aux_sym_val_table_repeat1, - [213282] = 7, - ACTIONS(247), 1, + sym_block, + ACTIONS(9344), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [215183] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3477), 1, - anon_sym_DQUOTE, - ACTIONS(9190), 1, - aux_sym_path_token1, - STATE(3551), 1, - sym__str_double_quotes, - STATE(3558), 1, - sym_val_string, - STATE(5806), 1, + ACTIONS(9711), 1, + anon_sym_LPAREN, + ACTIONS(9713), 1, + sym_unescaped_interpolated_content, + ACTIONS(9765), 1, + anon_sym_SQUOTE, + STATE(6036), 1, sym_comment, - ACTIONS(3479), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [213305] = 4, + STATE(6103), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7085), 1, + sym_expr_interpolated, + [215205] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(5807), 1, - sym_comment, - ACTIONS(1675), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(9360), 1, anon_sym_DOT_DOT2, - ACTIONS(1677), 3, + ACTIONS(9767), 1, + anon_sym_RBRACE, + ACTIONS(9769), 1, + sym__entry_separator, + STATE(6037), 1, + sym_comment, + ACTIONS(9362), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [213322] = 8, - ACTIONS(247), 1, + [215225] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(8900), 1, - anon_sym_LBRACK, - ACTIONS(9192), 1, - anon_sym_RBRACK, - STATE(5808), 1, + ACTIONS(9711), 1, + anon_sym_LPAREN, + ACTIONS(9713), 1, + sym_unescaped_interpolated_content, + ACTIONS(9771), 1, + anon_sym_SQUOTE, + STATE(6038), 1, sym_comment, - STATE(6037), 1, - aux_sym_shebang_repeat1, - STATE(6813), 1, - sym_val_list, - STATE(7134), 1, - aux_sym_val_table_repeat1, - [213347] = 8, - ACTIONS(247), 1, + STATE(6168), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7085), 1, + sym_expr_interpolated, + [215247] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(8900), 1, - anon_sym_LBRACK, - ACTIONS(9194), 1, - anon_sym_RBRACK, - STATE(5809), 1, + ACTIONS(4991), 1, + anon_sym_DASH, + ACTIONS(9773), 1, + anon_sym_EQ2, + STATE(6039), 1, sym_comment, - STATE(6038), 1, - aux_sym_shebang_repeat1, - STATE(6817), 1, - sym_val_list, - STATE(7136), 1, - aux_sym_val_table_repeat1, - [213372] = 7, - ACTIONS(247), 1, + ACTIONS(4989), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [215265] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4265), 1, - anon_sym_DQUOTE, - ACTIONS(9196), 1, - aux_sym_path_token1, - STATE(4626), 1, - sym__str_double_quotes, - STATE(4635), 1, - sym_val_string, - STATE(5810), 1, + ACTIONS(2053), 1, + anon_sym_LBRACE, + ACTIONS(8268), 1, + anon_sym_DOT, + STATE(2024), 1, + sym_cell_path, + STATE(2752), 1, + sym_path, + STATE(5224), 1, + aux_sym_cell_path_repeat1, + STATE(6040), 1, sym_comment, - ACTIONS(4267), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [213395] = 7, - ACTIONS(247), 1, + [215287] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1552), 1, - aux_sym_unquoted_token2, - ACTIONS(8211), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8213), 1, - aux_sym__immediate_decimal_token5, - STATE(5811), 1, + ACTIONS(9711), 1, + anon_sym_LPAREN, + ACTIONS(9713), 1, + sym_unescaped_interpolated_content, + ACTIONS(9775), 1, + anon_sym_SQUOTE, + STATE(6041), 1, sym_comment, - STATE(7344), 1, - sym__immediate_decimal, - ACTIONS(8209), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [213418] = 8, - ACTIONS(247), 1, + STATE(6073), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7085), 1, + sym_expr_interpolated, + [215309] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(8900), 1, - anon_sym_LBRACK, - ACTIONS(9198), 1, - anon_sym_RBRACK, - STATE(5812), 1, + ACTIONS(8374), 1, + sym_identifier, + ACTIONS(9328), 1, + anon_sym_DOLLAR, + STATE(5416), 1, + sym_val_variable, + STATE(6042), 1, sym_comment, - STATE(6039), 1, - aux_sym_shebang_repeat1, - STATE(6827), 1, - sym_val_list, - STATE(7140), 1, - aux_sym_val_table_repeat1, - [213443] = 8, - ACTIONS(247), 1, + STATE(6047), 1, + sym__variable_name, + STATE(6300), 1, + sym__assignment_pattern, + [215331] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(8900), 1, - anon_sym_LBRACK, - ACTIONS(9200), 1, - anon_sym_RBRACK, - STATE(5813), 1, + ACTIONS(9777), 1, + anon_sym_EQ2, + ACTIONS(9779), 1, + sym_short_flag_identifier, + STATE(6043), 1, sym_comment, - STATE(6040), 1, - aux_sym_shebang_repeat1, - STATE(6831), 1, - sym_val_list, - STATE(7142), 1, - aux_sym_val_table_repeat1, - [213468] = 7, - ACTIONS(247), 1, + ACTIONS(4925), 3, + sym_identifier, + anon_sym_DASH_DASH, + anon_sym_DASH, + [215349] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(9202), 1, - anon_sym_DQUOTE, - ACTIONS(9206), 1, - aux_sym_path_token1, - STATE(1134), 1, - sym_val_string, - STATE(1137), 1, - sym__str_double_quotes, - STATE(5814), 1, + ACTIONS(5077), 1, + anon_sym_DASH, + STATE(6044), 1, sym_comment, - ACTIONS(9204), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [213491] = 8, - ACTIONS(247), 1, + ACTIONS(5075), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [215365] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(8900), 1, - anon_sym_LBRACK, - ACTIONS(9208), 1, - anon_sym_RBRACK, - STATE(5815), 1, + ACTIONS(9711), 1, + anon_sym_LPAREN, + ACTIONS(9713), 1, + sym_unescaped_interpolated_content, + ACTIONS(9781), 1, + anon_sym_SQUOTE, + STATE(6045), 1, sym_comment, - STATE(6041), 1, - aux_sym_shebang_repeat1, - STATE(6846), 1, - sym_val_list, - STATE(7146), 1, - aux_sym_val_table_repeat1, - [213516] = 8, - ACTIONS(247), 1, + STATE(6058), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7085), 1, + sym_expr_interpolated, + [215387] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3705), 1, + ACTIONS(2196), 1, + anon_sym_RBRACE, + ACTIONS(2198), 1, + sym__entry_separator, + ACTIONS(9360), 1, + anon_sym_DOT_DOT2, + STATE(6046), 1, + sym_comment, + ACTIONS(9362), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [215407] = 7, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(3766), 1, sym__newline, - ACTIONS(8900), 1, - anon_sym_LBRACK, - ACTIONS(9210), 1, - anon_sym_RBRACK, - STATE(5816), 1, + ACTIONS(9755), 1, + anon_sym_COLON, + ACTIONS(9783), 1, + anon_sym_EQ, + STATE(6047), 1, sym_comment, - STATE(6042), 1, + STATE(7246), 1, aux_sym_shebang_repeat1, - STATE(6850), 1, - sym_val_list, - STATE(7149), 1, - aux_sym_val_table_repeat1, - [213541] = 7, - ACTIONS(247), 1, + STATE(7644), 1, + sym_param_type, + [215429] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9212), 1, - anon_sym_DQUOTE, - ACTIONS(9216), 1, - aux_sym_path_token1, - STATE(2227), 1, - sym__str_double_quotes, - STATE(2228), 1, - sym_val_string, - STATE(5817), 1, + ACTIONS(9711), 1, + anon_sym_LPAREN, + ACTIONS(9713), 1, + sym_unescaped_interpolated_content, + ACTIONS(9785), 1, + anon_sym_SQUOTE, + STATE(6048), 1, sym_comment, - ACTIONS(9214), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [213564] = 8, - ACTIONS(247), 1, + STATE(6143), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7085), 1, + sym_expr_interpolated, + [215451] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(8900), 1, - anon_sym_LBRACK, - ACTIONS(9218), 1, - anon_sym_RBRACK, - STATE(5818), 1, + ACTIONS(9787), 1, + anon_sym_QMARK2, + STATE(6049), 1, sym_comment, - STATE(6043), 1, - aux_sym_shebang_repeat1, - STATE(6862), 1, - sym_val_list, - STATE(7154), 1, - aux_sym_val_table_repeat1, - [213589] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(8900), 1, - anon_sym_LBRACK, - ACTIONS(9220), 1, + ACTIONS(1048), 2, anon_sym_RBRACK, - STATE(5819), 1, - sym_comment, - STATE(6044), 1, - aux_sym_shebang_repeat1, - STATE(6866), 1, - sym_val_list, - STATE(7157), 1, - aux_sym_val_table_repeat1, - [213614] = 7, - ACTIONS(247), 1, + anon_sym_RBRACE, + ACTIONS(1050), 2, + anon_sym_DOT, + sym__entry_separator, + [215469] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9170), 1, - anon_sym_DQUOTE, - ACTIONS(9222), 1, - aux_sym_path_token1, - STATE(3159), 1, - sym__str_double_quotes, - STATE(3161), 1, - sym_val_string, - STATE(5820), 1, + ACTIONS(9711), 1, + anon_sym_LPAREN, + ACTIONS(9713), 1, + sym_unescaped_interpolated_content, + ACTIONS(9789), 1, + anon_sym_SQUOTE, + STATE(6050), 1, sym_comment, - ACTIONS(9172), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [213637] = 7, - ACTIONS(247), 1, + STATE(6071), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7085), 1, + sym_expr_interpolated, + [215491] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4303), 1, - anon_sym_DQUOTE, - ACTIONS(9224), 1, - aux_sym_path_token1, - STATE(4492), 1, - sym_val_string, - STATE(4501), 1, - sym__str_double_quotes, - STATE(5821), 1, + ACTIONS(9711), 1, + anon_sym_LPAREN, + ACTIONS(9713), 1, + sym_unescaped_interpolated_content, + ACTIONS(9791), 1, + anon_sym_SQUOTE, + STATE(6051), 1, sym_comment, - ACTIONS(4305), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [213660] = 7, - ACTIONS(247), 1, + STATE(6054), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7085), 1, + sym_expr_interpolated, + [215513] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(9226), 1, - anon_sym_DQUOTE, - ACTIONS(9230), 1, - aux_sym_path_token1, - STATE(1280), 1, - sym__str_double_quotes, - STATE(1286), 1, - sym_val_string, - STATE(5822), 1, + ACTIONS(5061), 1, + anon_sym_DASH, + STATE(6052), 1, sym_comment, - ACTIONS(9228), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [213683] = 7, - ACTIONS(247), 1, + ACTIONS(5059), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [215529] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(9232), 1, - anon_sym_DQUOTE, - ACTIONS(9236), 1, - aux_sym_path_token1, - STATE(1448), 1, - sym__str_double_quotes, - STATE(1477), 1, - sym_val_string, - STATE(5823), 1, + ACTIONS(2003), 1, + anon_sym_LBRACE, + ACTIONS(8268), 1, + anon_sym_DOT, + STATE(2012), 1, + sym_cell_path, + STATE(2752), 1, + sym_path, + STATE(5224), 1, + aux_sym_cell_path_repeat1, + STATE(6053), 1, sym_comment, - ACTIONS(9234), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [213706] = 7, - ACTIONS(233), 1, - anon_sym_DQUOTE, - ACTIONS(247), 1, + [215551] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9238), 1, - aux_sym_path_token1, - STATE(1418), 1, - sym__str_double_quotes, - STATE(5824), 1, + ACTIONS(9711), 1, + anon_sym_LPAREN, + ACTIONS(9713), 1, + sym_unescaped_interpolated_content, + ACTIONS(9793), 1, + anon_sym_SQUOTE, + STATE(6054), 1, sym_comment, - STATE(6549), 1, - sym_val_string, - ACTIONS(235), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [213729] = 7, - ACTIONS(247), 1, + STATE(6073), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7085), 1, + sym_expr_interpolated, + [215573] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(9240), 1, - anon_sym_DQUOTE, - ACTIONS(9244), 1, - aux_sym_path_token1, - STATE(4202), 1, - sym_val_string, - STATE(4207), 1, - sym__str_double_quotes, - STATE(5825), 1, + ACTIONS(2023), 1, + anon_sym_LBRACE, + ACTIONS(8268), 1, + anon_sym_DOT, + STATE(2020), 1, + sym_cell_path, + STATE(2752), 1, + sym_path, + STATE(5224), 1, + aux_sym_cell_path_repeat1, + STATE(6055), 1, sym_comment, - ACTIONS(9242), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [213752] = 7, - ACTIONS(247), 1, + [215595] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(9246), 1, - anon_sym_DQUOTE, - ACTIONS(9250), 1, - aux_sym_path_token1, - STATE(2608), 1, - sym__str_double_quotes, - STATE(2631), 1, - sym_val_string, - STATE(5826), 1, + ACTIONS(2045), 1, + anon_sym_LBRACE, + ACTIONS(8268), 1, + anon_sym_DOT, + STATE(2022), 1, + sym_cell_path, + STATE(2752), 1, + sym_path, + STATE(5224), 1, + aux_sym_cell_path_repeat1, + STATE(6056), 1, sym_comment, - ACTIONS(9248), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [213775] = 7, - ACTIONS(247), 1, + [215617] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(9252), 1, - anon_sym_DQUOTE, - ACTIONS(9256), 1, - aux_sym_path_token1, - STATE(4057), 1, - sym__str_double_quotes, - STATE(4084), 1, - sym_val_string, - STATE(5827), 1, + STATE(237), 1, + aux_sym__block_body_repeat1, + STATE(6057), 1, sym_comment, - ACTIONS(9254), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [213798] = 7, - ACTIONS(247), 1, + ACTIONS(147), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(605), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [215635] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9258), 1, - anon_sym_DQUOTE, - ACTIONS(9262), 1, - aux_sym_path_token1, - STATE(3407), 1, - sym_val_string, - STATE(3418), 1, - sym__str_double_quotes, - STATE(5828), 1, + ACTIONS(9711), 1, + anon_sym_LPAREN, + ACTIONS(9713), 1, + sym_unescaped_interpolated_content, + ACTIONS(9795), 1, + anon_sym_SQUOTE, + STATE(6058), 1, sym_comment, - ACTIONS(9260), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [213821] = 7, - ACTIONS(247), 1, + STATE(6073), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7085), 1, + sym_expr_interpolated, + [215657] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9264), 1, - anon_sym_DQUOTE, - ACTIONS(9268), 1, - aux_sym_path_token1, - STATE(1249), 1, - sym__str_double_quotes, - STATE(1259), 1, - sym_val_string, - STATE(5829), 1, + ACTIONS(9711), 1, + anon_sym_LPAREN, + ACTIONS(9713), 1, + sym_unescaped_interpolated_content, + ACTIONS(9797), 1, + anon_sym_SQUOTE, + STATE(6059), 1, sym_comment, - ACTIONS(9266), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [213844] = 7, - ACTIONS(247), 1, + STATE(6073), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7085), 1, + sym_expr_interpolated, + [215679] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9270), 1, - anon_sym_DQUOTE, - ACTIONS(9274), 1, - aux_sym_path_token1, - STATE(4037), 1, - sym_val_string, - STATE(4047), 1, - sym__str_double_quotes, - STATE(5830), 1, + ACTIONS(9799), 1, + aux_sym__immediate_decimal_token2, + STATE(6060), 1, sym_comment, - ACTIONS(9272), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [213867] = 7, - ACTIONS(247), 1, + ACTIONS(1769), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1771), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [215697] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9238), 1, - aux_sym_path_token1, - ACTIONS(9276), 1, - anon_sym_DQUOTE, - STATE(5831), 1, + ACTIONS(9711), 1, + anon_sym_LPAREN, + ACTIONS(9713), 1, + sym_unescaped_interpolated_content, + ACTIONS(9801), 1, + anon_sym_SQUOTE, + STATE(6061), 1, sym_comment, - STATE(6549), 1, - sym_val_string, - STATE(7168), 1, - sym__str_double_quotes, - ACTIONS(9278), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [213890] = 7, - ACTIONS(247), 1, + STATE(6064), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7085), 1, + sym_expr_interpolated, + [215719] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(9280), 1, - anon_sym_DQUOTE, - ACTIONS(9284), 1, - aux_sym_path_token1, - STATE(2685), 1, - sym_val_string, - STATE(2718), 1, - sym__str_double_quotes, - STATE(5832), 1, + ACTIONS(5065), 1, + anon_sym_DASH, + STATE(6062), 1, sym_comment, - ACTIONS(9282), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [213913] = 7, - ACTIONS(247), 1, + ACTIONS(5063), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [215735] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(9286), 1, - anon_sym_DQUOTE, - ACTIONS(9290), 1, - aux_sym_path_token1, - STATE(2888), 1, - sym__str_double_quotes, - STATE(2918), 1, - sym_val_string, - STATE(5833), 1, + ACTIONS(2057), 1, + anon_sym_LBRACE, + ACTIONS(8268), 1, + anon_sym_DOT, + STATE(2027), 1, + sym_cell_path, + STATE(2752), 1, + sym_path, + STATE(5224), 1, + aux_sym_cell_path_repeat1, + STATE(6063), 1, sym_comment, - ACTIONS(9288), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [213936] = 7, - ACTIONS(247), 1, + [215757] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9292), 1, - anon_sym_DQUOTE, - ACTIONS(9296), 1, - aux_sym_path_token1, - STATE(399), 1, - sym__str_double_quotes, - STATE(409), 1, - sym_val_string, - STATE(5834), 1, + ACTIONS(9711), 1, + anon_sym_LPAREN, + ACTIONS(9713), 1, + sym_unescaped_interpolated_content, + ACTIONS(9803), 1, + anon_sym_SQUOTE, + STATE(6064), 1, sym_comment, - ACTIONS(9294), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [213959] = 7, - ACTIONS(247), 1, + STATE(6073), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7085), 1, + sym_expr_interpolated, + [215779] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9298), 1, - anon_sym_DQUOTE, - ACTIONS(9302), 1, - aux_sym_path_token1, - STATE(544), 1, - sym_val_string, - STATE(548), 1, - sym__str_double_quotes, - STATE(5835), 1, + ACTIONS(1040), 1, + anon_sym_DOT, + STATE(6065), 1, sym_comment, - ACTIONS(9300), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [213982] = 7, - ACTIONS(247), 1, + ACTIONS(1038), 4, + anon_sym_RBRACK, + anon_sym_QMARK2, + sym__entry_separator, + sym__table_head_separator, + [215795] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3523), 1, - anon_sym_DQUOTE, - ACTIONS(9304), 1, - aux_sym_path_token1, - STATE(4652), 1, - sym_val_string, - STATE(4680), 1, - sym__str_double_quotes, - STATE(5836), 1, + ACTIONS(1536), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(9366), 1, + aux_sym__immediate_decimal_token2, + STATE(6066), 1, sym_comment, - ACTIONS(3525), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [214005] = 7, - ACTIONS(247), 1, + ACTIONS(1538), 3, + sym_filesize_unit, + sym_duration_unit, + aux_sym_record_entry_token1, + [215813] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(9306), 1, - anon_sym_DQUOTE, - ACTIONS(9310), 1, - aux_sym_path_token1, - STATE(4216), 1, - sym_val_string, - STATE(4225), 1, - sym__str_double_quotes, - STATE(5837), 1, + ACTIONS(2097), 1, + anon_sym_LBRACE, + ACTIONS(8268), 1, + anon_sym_DOT, + STATE(2034), 1, + sym_cell_path, + STATE(2752), 1, + sym_path, + STATE(5224), 1, + aux_sym_cell_path_repeat1, + STATE(6067), 1, sym_comment, - ACTIONS(9308), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [214028] = 7, - ACTIONS(247), 1, + [215835] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4359), 1, - anon_sym_DQUOTE, - ACTIONS(9312), 1, - aux_sym_path_token1, - STATE(3511), 1, - sym_val_string, - STATE(3512), 1, - sym__str_double_quotes, - STATE(5838), 1, + ACTIONS(6202), 1, + anon_sym_LBRACE, + STATE(6068), 1, sym_comment, - ACTIONS(4361), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [214051] = 7, - ACTIONS(247), 1, + STATE(7322), 1, + sym_block, + ACTIONS(9578), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [215853] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(9314), 1, - anon_sym_DQUOTE, - ACTIONS(9318), 1, - aux_sym_path_token1, - STATE(2611), 1, - sym__str_double_quotes, - STATE(2651), 1, - sym_val_string, - STATE(5839), 1, + ACTIONS(3296), 1, + aux_sym_record_entry_token1, + ACTIONS(9735), 1, + anon_sym_use, + ACTIONS(9737), 1, + anon_sym_list, + ACTIONS(9739), 1, + anon_sym_hide, + ACTIONS(9741), 1, + anon_sym_new, + STATE(6069), 1, sym_comment, - ACTIONS(9316), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [214074] = 7, - ACTIONS(247), 1, + [215875] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(9320), 1, - anon_sym_DQUOTE, - ACTIONS(9324), 1, - aux_sym_path_token1, - STATE(2869), 1, - sym__str_double_quotes, - STATE(2886), 1, - sym_val_string, - STATE(5840), 1, + ACTIONS(5085), 1, + anon_sym_DASH, + STATE(6070), 1, sym_comment, - ACTIONS(9322), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [214097] = 7, - ACTIONS(247), 1, + ACTIONS(5083), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [215891] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9326), 1, - anon_sym_DQUOTE, - ACTIONS(9330), 1, - aux_sym_path_token1, - STATE(165), 1, - sym_val_string, - STATE(168), 1, - sym__str_double_quotes, - STATE(5841), 1, + ACTIONS(9711), 1, + anon_sym_LPAREN, + ACTIONS(9713), 1, + sym_unescaped_interpolated_content, + ACTIONS(9805), 1, + anon_sym_SQUOTE, + STATE(6071), 1, sym_comment, - ACTIONS(9328), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [214120] = 7, - ACTIONS(247), 1, + STATE(6073), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7085), 1, + sym_expr_interpolated, + [215913] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(9332), 1, - anon_sym_DQUOTE, - ACTIONS(9336), 1, - aux_sym_path_token1, - STATE(466), 1, - sym_val_string, - STATE(467), 1, - sym__str_double_quotes, - STATE(5842), 1, + STATE(6072), 1, sym_comment, - ACTIONS(9334), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [214143] = 7, - ACTIONS(247), 1, + ACTIONS(8078), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_AT, + anon_sym_LBRACE, + [215927] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9338), 1, - anon_sym_DQUOTE, - ACTIONS(9342), 1, - aux_sym_path_token1, - STATE(351), 1, - sym__str_double_quotes, - STATE(366), 1, - sym_val_string, - STATE(5843), 1, + ACTIONS(9807), 1, + anon_sym_LPAREN, + ACTIONS(9810), 1, + sym_unescaped_interpolated_content, + ACTIONS(9813), 1, + anon_sym_SQUOTE, + STATE(7085), 1, + sym_expr_interpolated, + STATE(6073), 2, sym_comment, - ACTIONS(9340), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [214166] = 7, - ACTIONS(247), 1, + aux_sym__inter_single_quotes_repeat1, + [215947] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9344), 1, - anon_sym_DQUOTE, - ACTIONS(9348), 1, - aux_sym_path_token1, - STATE(317), 1, - sym__str_double_quotes, - STATE(320), 1, - sym_val_string, - STATE(5844), 1, + ACTIONS(9711), 1, + anon_sym_LPAREN, + ACTIONS(9713), 1, + sym_unescaped_interpolated_content, + ACTIONS(9815), 1, + anon_sym_SQUOTE, + STATE(6074), 1, sym_comment, - ACTIONS(9346), 2, - sym__str_single_quotes, - sym__str_back_ticks, - [214189] = 8, - ACTIONS(247), 1, + STATE(6087), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7085), 1, + sym_expr_interpolated, + [215969] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3231), 1, - aux_sym_record_entry_token1, - ACTIONS(8231), 1, + ACTIONS(1995), 1, + anon_sym_LBRACE, + ACTIONS(8268), 1, + anon_sym_DOT, + STATE(2047), 1, + sym_cell_path, + STATE(2752), 1, + sym_path, + STATE(5224), 1, + aux_sym_cell_path_repeat1, + STATE(6075), 1, + sym_comment, + [215991] = 7, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(8374), 1, sym_identifier, - ACTIONS(9050), 1, + ACTIONS(9328), 1, anon_sym_DOLLAR, - STATE(5366), 1, + STATE(5416), 1, sym_val_variable, - STATE(5845), 1, - sym_comment, - STATE(5970), 1, + STATE(6047), 1, sym__variable_name, - STATE(6483), 1, + STATE(6076), 1, + sym_comment, + STATE(6676), 1, sym__assignment_pattern, - [214214] = 8, - ACTIONS(247), 1, + [216013] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3231), 1, - aux_sym_record_entry_token1, - ACTIONS(8231), 1, + ACTIONS(9711), 1, + anon_sym_LPAREN, + ACTIONS(9713), 1, + sym_unescaped_interpolated_content, + ACTIONS(9817), 1, + anon_sym_SQUOTE, + STATE(6077), 1, + sym_comment, + STATE(6136), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7085), 1, + sym_expr_interpolated, + [216035] = 7, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(8374), 1, sym_identifier, - ACTIONS(9050), 1, + ACTIONS(9328), 1, anon_sym_DOLLAR, - STATE(5366), 1, + STATE(5416), 1, sym_val_variable, - STATE(5846), 1, - sym_comment, - STATE(5970), 1, + STATE(6023), 1, sym__variable_name, - STATE(6487), 1, + STATE(6078), 1, + sym_comment, + STATE(7391), 1, sym__assignment_pattern, - [214239] = 8, - ACTIONS(247), 1, + [216057] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3231), 1, - aux_sym_record_entry_token1, - ACTIONS(8231), 1, + ACTIONS(9711), 1, + anon_sym_LPAREN, + ACTIONS(9713), 1, + sym_unescaped_interpolated_content, + ACTIONS(9819), 1, + anon_sym_SQUOTE, + STATE(6079), 1, + sym_comment, + STATE(6082), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7085), 1, + sym_expr_interpolated, + [216079] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(6080), 1, + sym_comment, + ACTIONS(8086), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_AT, + anon_sym_LBRACE, + [216093] = 7, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(8374), 1, sym_identifier, - ACTIONS(9050), 1, + ACTIONS(9328), 1, anon_sym_DOLLAR, - STATE(5366), 1, + STATE(5416), 1, sym_val_variable, - STATE(5847), 1, + STATE(6081), 1, sym_comment, - STATE(5970), 1, + STATE(6105), 1, sym__variable_name, - STATE(6502), 1, - sym__assignment_pattern, - [214264] = 7, + STATE(6989), 1, + sym__assignment_pattern_parenthesized, + [216115] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8947), 1, + ACTIONS(9711), 1, anon_sym_LPAREN, - ACTIONS(9350), 1, - anon_sym_DQUOTE2, - STATE(5848), 1, + ACTIONS(9713), 1, + sym_unescaped_interpolated_content, + ACTIONS(9821), 1, + anon_sym_SQUOTE, + STATE(6073), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6082), 1, sym_comment, - STATE(5864), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6463), 1, + STATE(7085), 1, sym_expr_interpolated, - ACTIONS(8949), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [214287] = 4, - ACTIONS(247), 1, + [216137] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5022), 1, + ACTIONS(5099), 1, anon_sym_DASH, - STATE(5849), 1, + STATE(6083), 1, sym_comment, - ACTIONS(5020), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + ACTIONS(5097), 4, + sym_identifier, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_as, - [214304] = 4, - ACTIONS(247), 1, + anon_sym_LBRACE, + [216153] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5026), 1, - anon_sym_DASH, - STATE(5850), 1, + ACTIONS(2007), 1, + anon_sym_LBRACE, + ACTIONS(8268), 1, + anon_sym_DOT, + STATE(2007), 1, + sym_cell_path, + STATE(2752), 1, + sym_path, + STATE(5224), 1, + aux_sym_cell_path_repeat1, + STATE(6084), 1, sym_comment, - ACTIONS(5024), 5, + [216175] = 7, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(2061), 1, + anon_sym_LBRACE, + ACTIONS(8268), 1, + anon_sym_DOT, + STATE(2029), 1, + sym_cell_path, + STATE(2752), 1, + sym_path, + STATE(5224), 1, + aux_sym_cell_path_repeat1, + STATE(6085), 1, + sym_comment, + [216197] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6202), 1, + anon_sym_LBRACE, + STATE(6086), 1, + sym_comment, + STATE(7143), 1, + sym_block, + ACTIONS(9576), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [214321] = 7, + [216215] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8947), 1, + ACTIONS(9711), 1, anon_sym_LPAREN, - ACTIONS(9352), 1, - anon_sym_DQUOTE2, - STATE(5787), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(5851), 1, + ACTIONS(9713), 1, + sym_unescaped_interpolated_content, + ACTIONS(9823), 1, + anon_sym_SQUOTE, + STATE(6073), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6087), 1, sym_comment, - STATE(6463), 1, + STATE(7085), 1, sym_expr_interpolated, - ACTIONS(8949), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [214344] = 4, - ACTIONS(247), 1, + [216237] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5030), 1, + ACTIONS(4947), 1, anon_sym_DASH, - STATE(5852), 1, - sym_comment, - ACTIONS(5028), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [214361] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9354), 1, - sym_long_flag_identifier, - ACTIONS(9356), 1, + ACTIONS(9825), 1, anon_sym_EQ2, - STATE(5853), 1, + STATE(6088), 1, sym_comment, - ACTIONS(4808), 2, + ACTIONS(4945), 3, sym_identifier, - anon_sym_DASH, - ACTIONS(4810), 2, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [214382] = 4, - ACTIONS(247), 1, + [216255] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5034), 1, + ACTIONS(5073), 1, anon_sym_DASH, - STATE(5854), 1, + STATE(6089), 1, sym_comment, - ACTIONS(5032), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + ACTIONS(5071), 4, + sym_identifier, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_as, - [214399] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5855), 1, - sym_comment, - ACTIONS(2029), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(2031), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [214416] = 8, - ACTIONS(3), 1, + anon_sym_LBRACE, + [216271] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8111), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8395), 1, - aux_sym_unquoted_token3, - ACTIONS(8480), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8482), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8484), 1, - aux_sym__immediate_decimal_token5, - STATE(5856), 1, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(6090), 1, sym_comment, - STATE(6378), 1, - sym__immediate_decimal, - [214441] = 8, - ACTIONS(3), 1, + STATE(7120), 1, + sym_val_list, + STATE(7218), 1, + aux_sym_val_table_repeat1, + [216293] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8209), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8395), 1, - aux_sym_unquoted_token3, - ACTIONS(8486), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8488), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8490), 1, - aux_sym__immediate_decimal_token5, - STATE(5857), 1, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(6091), 1, sym_comment, - STATE(7494), 1, - sym__immediate_decimal, - [214466] = 6, - ACTIONS(247), 1, + STATE(6820), 1, + sym_val_list, + STATE(7220), 1, + aux_sym_val_table_repeat1, + [216315] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4512), 1, - anon_sym_DOT_DOT2, - ACTIONS(8395), 1, - aux_sym_unquoted_token2, - STATE(5858), 1, + ACTIONS(4939), 1, + anon_sym_DASH_DASH, + ACTIONS(9827), 1, + sym_long_flag_identifier, + ACTIONS(9829), 1, + anon_sym_EQ2, + STATE(6092), 1, sym_comment, - ACTIONS(4514), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(8927), 2, - sym_filesize_unit, - sym_duration_unit, - [214487] = 8, - ACTIONS(3), 1, + ACTIONS(4937), 2, + sym_identifier, + anon_sym_DASH, + [216335] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6059), 1, - sym__entry_separator, - ACTIONS(6086), 1, - anon_sym_RBRACE, - ACTIONS(8768), 1, + ACTIONS(2015), 1, + anon_sym_LBRACE, + ACTIONS(8268), 1, anon_sym_DOT, - STATE(523), 1, + STATE(2013), 1, sym_cell_path, - STATE(5699), 1, + STATE(2752), 1, + sym_path, + STATE(5224), 1, aux_sym_cell_path_repeat1, - STATE(5859), 1, + STATE(6093), 1, sym_comment, - STATE(6292), 1, - sym_path, - [214512] = 5, - ACTIONS(3), 1, + [216357] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2241), 1, - anon_sym_LBRACE, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - STATE(5860), 1, + ACTIONS(4991), 1, + anon_sym_DASH, + ACTIONS(9831), 1, + anon_sym_EQ2, + STATE(6094), 1, sym_comment, - ACTIONS(2237), 4, + ACTIONS(4989), 3, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH, - [214531] = 4, - ACTIONS(247), 1, + [216375] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(9360), 1, - anon_sym_COMMA, - STATE(5861), 1, + ACTIONS(2069), 1, + anon_sym_LBRACE, + ACTIONS(8268), 1, + anon_sym_DOT, + STATE(2030), 1, + sym_cell_path, + STATE(2752), 1, + sym_path, + STATE(5224), 1, + aux_sym_cell_path_repeat1, + STATE(6095), 1, sym_comment, - ACTIONS(9358), 5, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [214548] = 8, - ACTIONS(247), 1, + [216397] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8790), 1, - anon_sym_def, - ACTIONS(8792), 1, - anon_sym_extern, - ACTIONS(8794), 1, - anon_sym_module, - ACTIONS(8796), 1, - anon_sym_use, - ACTIONS(9362), 1, - anon_sym_alias, - ACTIONS(9364), 1, - anon_sym_const, - STATE(5862), 1, + ACTIONS(9833), 1, + anon_sym_DOT_DOT2, + STATE(6096), 1, sym_comment, - [214573] = 4, + ACTIONS(2119), 2, + sym__newline, + anon_sym_LBRACE, + ACTIONS(9835), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [216415] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(5863), 1, - sym_comment, - ACTIONS(2141), 3, - anon_sym_RBRACK, + ACTIONS(2200), 1, anon_sym_RBRACE, + ACTIONS(2202), 1, + sym__entry_separator, + ACTIONS(9360), 1, anon_sym_DOT_DOT2, - ACTIONS(2143), 3, + STATE(6097), 1, + sym_comment, + ACTIONS(9362), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [214590] = 7, - ACTIONS(3), 1, + [216435] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8947), 1, - anon_sym_LPAREN, - ACTIONS(9366), 1, - anon_sym_DQUOTE2, - STATE(5787), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(5864), 1, + ACTIONS(9837), 1, + anon_sym_DOT_DOT2, + STATE(6098), 1, sym_comment, - STATE(6463), 1, - sym_expr_interpolated, - ACTIONS(8949), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [214613] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3705), 1, + ACTIONS(2212), 2, sym__newline, - ACTIONS(8929), 1, anon_sym_LBRACE, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(1693), 1, - sym_block, - STATE(1694), 1, - sym_val_closure, - STATE(5024), 1, - sym__blosure, - STATE(5865), 1, - sym_comment, - [214638] = 4, - ACTIONS(247), 1, + ACTIONS(9839), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [216453] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9370), 1, - anon_sym_COMMA, - STATE(5866), 1, + ACTIONS(9711), 1, + anon_sym_LPAREN, + ACTIONS(9713), 1, + sym_unescaped_interpolated_content, + ACTIONS(9841), 1, + anon_sym_SQUOTE, + STATE(6099), 1, sym_comment, - ACTIONS(9368), 5, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [214655] = 8, - ACTIONS(247), 1, + STATE(6144), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7085), 1, + sym_expr_interpolated, + [216475] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(8929), 1, + ACTIONS(1903), 1, anon_sym_LBRACE, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(1693), 1, - sym_block, - STATE(1694), 1, - sym_val_closure, - STATE(5025), 1, - sym__blosure, - STATE(5867), 1, + ACTIONS(8268), 1, + anon_sym_DOT, + STATE(2402), 1, + sym_cell_path, + STATE(2752), 1, + sym_path, + STATE(5224), 1, + aux_sym_cell_path_repeat1, + STATE(6100), 1, sym_comment, - [214680] = 8, - ACTIONS(247), 1, + [216497] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(8900), 1, - anon_sym_LBRACK, - ACTIONS(9372), 1, - anon_sym_RBRACK, - STATE(5868), 1, + ACTIONS(1044), 1, + anon_sym_DOT, + ACTIONS(9843), 1, + anon_sym_QMARK2, + STATE(6101), 1, sym_comment, - STATE(6009), 1, - aux_sym_shebang_repeat1, - STATE(6993), 1, - sym_val_list, - STATE(7045), 1, - aux_sym_val_table_repeat1, - [214705] = 8, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(8900), 1, - anon_sym_LBRACK, - ACTIONS(9374), 1, + ACTIONS(1042), 3, anon_sym_RBRACK, - STATE(5869), 1, - sym_comment, - STATE(6010), 1, - aux_sym_shebang_repeat1, - STATE(6997), 1, - sym_val_list, - STATE(7047), 1, - aux_sym_val_table_repeat1, - [214730] = 8, - ACTIONS(247), 1, + sym__entry_separator, + sym__table_head_separator, + [216515] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(8929), 1, + ACTIONS(1715), 1, + aux_sym_unquoted_token2, + ACTIONS(9845), 1, + anon_sym_DOT, + ACTIONS(9847), 1, + aux_sym__immediate_decimal_token2, + STATE(6102), 1, + sym_comment, + ACTIONS(1717), 2, anon_sym_LBRACE, - STATE(1693), 1, - sym_block, - STATE(1694), 1, - sym_val_closure, - STATE(5025), 1, - sym__blosure, - STATE(5691), 1, - aux_sym_shebang_repeat1, - STATE(5870), 1, + anon_sym_LPAREN2, + [216535] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9711), 1, + anon_sym_LPAREN, + ACTIONS(9713), 1, + sym_unescaped_interpolated_content, + ACTIONS(9849), 1, + anon_sym_SQUOTE, + STATE(6073), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6103), 1, sym_comment, - [214755] = 6, + STATE(7085), 1, + sym_expr_interpolated, + [216557] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9376), 1, + ACTIONS(1060), 1, anon_sym_DOT, - ACTIONS(9378), 1, - aux_sym__immediate_decimal_token2, - STATE(5871), 1, + STATE(6104), 1, sym_comment, - ACTIONS(1667), 2, + ACTIONS(1058), 4, anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1669), 2, - anon_sym_LPAREN2, + anon_sym_QMARK2, sym__entry_separator, - [214776] = 8, - ACTIONS(247), 1, + sym__table_head_separator, + [216573] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(9380), 1, - anon_sym_alias, - ACTIONS(9382), 1, - anon_sym_const, - ACTIONS(9384), 1, - anon_sym_def, - ACTIONS(9386), 1, - anon_sym_extern, - ACTIONS(9388), 1, - anon_sym_module, - ACTIONS(9390), 1, - anon_sym_use, - STATE(5872), 1, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9755), 1, + anon_sym_COLON, + ACTIONS(9851), 1, + anon_sym_EQ, + STATE(6105), 1, sym_comment, - [214801] = 7, - ACTIONS(247), 1, + STATE(7246), 1, + aux_sym_shebang_repeat1, + STATE(7835), 1, + sym_param_type, + [216595] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1552), 1, + ACTIONS(1703), 1, aux_sym_unquoted_token2, - ACTIONS(8211), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8213), 1, - aux_sym__immediate_decimal_token5, - STATE(5873), 1, - sym_comment, - STATE(7388), 1, - sym__immediate_decimal, - ACTIONS(8209), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [214824] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4726), 1, - aux_sym_unquoted_token3, - ACTIONS(8111), 1, + ACTIONS(9853), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8480), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8482), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8484), 1, - aux_sym__immediate_decimal_token5, - STATE(5874), 1, + ACTIONS(9855), 1, + aux_sym__immediate_decimal_token2, + STATE(6106), 1, sym_comment, - STATE(5916), 1, - sym__immediate_decimal, - [214849] = 8, + ACTIONS(1705), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [216615] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4726), 1, - aux_sym_unquoted_token3, - ACTIONS(8209), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8486), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8488), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8490), 1, - aux_sym__immediate_decimal_token5, - STATE(5875), 1, + ACTIONS(1788), 1, + anon_sym_RBRACE, + ACTIONS(1796), 1, + sym__entry_separator, + ACTIONS(9857), 1, + anon_sym_DOT_DOT2, + STATE(6107), 1, sym_comment, - STATE(7280), 1, - sym__immediate_decimal, - [214874] = 5, - ACTIONS(3), 1, + ACTIONS(9859), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [216635] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2233), 1, + ACTIONS(1931), 1, anon_sym_LBRACE, - ACTIONS(2235), 1, - aux_sym_unquoted_token4, - STATE(5876), 1, + ACTIONS(8268), 1, + anon_sym_DOT, + STATE(2005), 1, + sym_cell_path, + STATE(2752), 1, + sym_path, + STATE(5224), 1, + aux_sym_cell_path_repeat1, + STATE(6108), 1, sym_comment, - ACTIONS(2229), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - [214893] = 5, - ACTIONS(3), 1, + [216657] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1072), 1, - anon_sym_LBRACE, - ACTIONS(2227), 1, - aux_sym_unquoted_token4, - STATE(5877), 1, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(6109), 1, sym_comment, - ACTIONS(1070), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH, - [214912] = 7, - ACTIONS(247), 1, + STATE(7059), 1, + sym_val_list, + STATE(7235), 1, + aux_sym_val_table_repeat1, + [216679] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8890), 1, - anon_sym_DASH_DASH, - ACTIONS(8892), 1, - anon_sym_DASH, - ACTIONS(9392), 1, - anon_sym_in, - STATE(5878), 1, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(6110), 1, sym_comment, - STATE(7678), 1, - sym__flag, - STATE(5404), 2, - sym_short_flag, - sym_long_flag, - [214935] = 5, - ACTIONS(247), 1, + STATE(7074), 1, + sym_val_list, + STATE(7237), 1, + aux_sym_val_table_repeat1, + [216701] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(9394), 1, + ACTIONS(9861), 1, anon_sym_DOT_DOT2, - STATE(5879), 1, + STATE(6111), 1, sym_comment, - ACTIONS(9396), 2, + ACTIONS(2228), 2, + sym__newline, + anon_sym_LBRACE, + ACTIONS(9863), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2025), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [214954] = 8, - ACTIONS(247), 1, + [216719] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, + ACTIONS(3766), 1, sym__newline, - ACTIONS(8900), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - ACTIONS(9398), 1, - anon_sym_RBRACK, - STATE(5880), 1, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(6112), 1, sym_comment, - STATE(5965), 1, + STATE(7122), 1, + sym_val_list, + STATE(7241), 1, + aux_sym_val_table_repeat1, + [216741] = 7, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2498), 1, aux_sym_shebang_repeat1, - STATE(6920), 1, + STATE(6113), 1, + sym_comment, + STATE(7145), 1, sym_val_list, - STATE(6962), 1, + STATE(7243), 1, aux_sym_val_table_repeat1, - [214979] = 5, - ACTIONS(247), 1, + [216763] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9400), 1, - anon_sym_DOT_DOT2, - STATE(5881), 1, + ACTIONS(1050), 1, + anon_sym_DOT, + ACTIONS(9865), 1, + anon_sym_QMARK2, + STATE(6114), 1, sym_comment, - ACTIONS(9402), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1997), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [214998] = 5, - ACTIONS(247), 1, + ACTIONS(1048), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [216781] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(9404), 1, - anon_sym_DOT_DOT2, - STATE(5882), 1, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(6115), 1, sym_comment, - ACTIONS(9406), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2005), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [215017] = 5, - ACTIONS(247), 1, + STATE(7204), 1, + sym_val_list, + STATE(7250), 1, + aux_sym_val_table_repeat1, + [216803] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(9408), 1, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(6116), 1, + sym_comment, + STATE(7209), 1, + sym_val_list, + STATE(7253), 1, + aux_sym_val_table_repeat1, + [216825] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9360), 1, anon_sym_DOT_DOT2, - STATE(5883), 1, + ACTIONS(9867), 1, + anon_sym_RBRACE, + ACTIONS(9869), 1, + sym__entry_separator, + STATE(6117), 1, sym_comment, - ACTIONS(9410), 2, + ACTIONS(9362), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2013), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [215036] = 8, - ACTIONS(143), 1, - sym__newline, - ACTIONS(247), 1, + [216845] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8923), 1, - anon_sym_SEMI, - ACTIONS(9412), 1, - anon_sym_RPAREN, - STATE(258), 1, - aux_sym__parenthesized_body_repeat1, - STATE(5884), 1, + ACTIONS(7707), 1, + sym__newline, + ACTIONS(7709), 1, + sym__space, + STATE(4705), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(5995), 1, + aux_sym_ctrl_do_parenthesized_repeat1, + STATE(6118), 1, sym_comment, - STATE(6565), 1, - aux_sym__block_body_repeat1, - STATE(6992), 1, - aux_sym_shebang_repeat1, - [215061] = 7, - ACTIONS(3), 1, + STATE(7585), 1, + sym__flags_parenthesized, + [216867] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(9414), 1, - anon_sym_LPAREN, - ACTIONS(9416), 1, - sym_unescaped_interpolated_content, - ACTIONS(9418), 1, - anon_sym_SQUOTE, - STATE(5885), 1, + ACTIONS(1668), 1, + aux_sym_record_entry_token1, + ACTIONS(9705), 1, + anon_sym_DOT, + STATE(1399), 1, + sym_cell_path, + STATE(6119), 1, sym_comment, - STATE(5940), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7176), 1, - sym_expr_interpolated, - [215083] = 5, - ACTIONS(247), 1, + STATE(6724), 1, + aux_sym_cell_path_repeat1, + STATE(7323), 1, + sym_path, + [216889] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6057), 1, - anon_sym_LBRACE, - STATE(5886), 1, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(6120), 1, sym_comment, - STATE(7104), 1, - sym_block, - ACTIONS(8953), 3, - ts_builtin_sym_end, + STATE(7258), 1, + aux_sym_val_table_repeat1, + STATE(7281), 1, + sym_val_list, + [216911] = 7, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(3766), 1, sym__newline, - anon_sym_SEMI, - [215101] = 7, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(6121), 1, + sym_comment, + STATE(7260), 1, + aux_sym_val_table_repeat1, + STATE(7333), 1, + sym_val_list, + [216933] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9414), 1, + ACTIONS(9711), 1, anon_sym_LPAREN, - ACTIONS(9416), 1, + ACTIONS(9713), 1, sym_unescaped_interpolated_content, - ACTIONS(9420), 1, + ACTIONS(9871), 1, anon_sym_SQUOTE, - STATE(5887), 1, - sym_comment, - STATE(5890), 1, + STATE(6073), 1, aux_sym__inter_single_quotes_repeat1, - STATE(7176), 1, + STATE(6122), 1, + sym_comment, + STATE(7085), 1, sym_expr_interpolated, - [215123] = 7, - ACTIONS(3), 1, + [216955] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(9414), 1, - anon_sym_LPAREN, - ACTIONS(9416), 1, - sym_unescaped_interpolated_content, - ACTIONS(9422), 1, - anon_sym_SQUOTE, - STATE(5888), 1, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(6123), 1, sym_comment, - STATE(5897), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7176), 1, - sym_expr_interpolated, - [215145] = 7, - ACTIONS(247), 1, + STATE(6763), 1, + sym_val_list, + STATE(7264), 1, + aux_sym_val_table_repeat1, + [216977] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8231), 1, - sym_identifier, - ACTIONS(9050), 1, - anon_sym_DOLLAR, - STATE(5366), 1, - sym_val_variable, - STATE(5889), 1, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(6124), 1, sym_comment, - STATE(5970), 1, - sym__variable_name, - STATE(6487), 1, - sym__assignment_pattern, - [215167] = 7, - ACTIONS(3), 1, + STATE(6768), 1, + sym_val_list, + STATE(7266), 1, + aux_sym_val_table_repeat1, + [216999] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(9414), 1, - anon_sym_LPAREN, - ACTIONS(9416), 1, - sym_unescaped_interpolated_content, - ACTIONS(9424), 1, - anon_sym_SQUOTE, - STATE(5890), 1, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(6125), 1, sym_comment, - STATE(5940), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7176), 1, - sym_expr_interpolated, - [215189] = 3, - ACTIONS(247), 1, + STATE(6784), 1, + sym_val_list, + STATE(7271), 1, + aux_sym_val_table_repeat1, + [217021] = 7, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5891), 1, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(6126), 1, sym_comment, - ACTIONS(9426), 5, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [215203] = 5, - ACTIONS(247), 1, + STATE(6788), 1, + sym_val_list, + STATE(7274), 1, + aux_sym_val_table_repeat1, + [217043] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1518), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(8939), 1, - aux_sym__immediate_decimal_token2, - STATE(5892), 1, + STATE(6127), 1, sym_comment, - ACTIONS(1520), 3, - sym_filesize_unit, - sym_duration_unit, - aux_sym_record_entry_token1, - [215221] = 7, - ACTIONS(247), 1, + ACTIONS(8116), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_AT, + anon_sym_LBRACE, + [217057] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8231), 1, + ACTIONS(5069), 1, + anon_sym_DASH, + STATE(6128), 1, + sym_comment, + ACTIONS(5067), 4, sym_identifier, - ACTIONS(9050), 1, anon_sym_DOLLAR, - STATE(5366), 1, - sym_val_variable, - STATE(5893), 1, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [217073] = 7, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(6129), 1, sym_comment, - STATE(5970), 1, - sym__variable_name, - STATE(6502), 1, - sym__assignment_pattern, - [215243] = 5, - ACTIONS(247), 1, + STATE(6812), 1, + sym_val_list, + STATE(7280), 1, + aux_sym_val_table_repeat1, + [217095] = 7, + ACTIONS(249), 1, anon_sym_POUND, - STATE(236), 1, - aux_sym__block_body_repeat1, - STATE(5894), 1, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(6130), 1, sym_comment, - ACTIONS(145), 2, + STATE(6818), 1, + sym_val_list, + STATE(7283), 1, + aux_sym_val_table_repeat1, + [217117] = 7, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(3766), 1, sym__newline, - anon_sym_SEMI, - ACTIONS(635), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [215261] = 7, - ACTIONS(247), 1, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(6131), 1, + sym_comment, + STATE(6839), 1, + sym_val_list, + STATE(7289), 1, + aux_sym_val_table_repeat1, + [217139] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(9428), 1, - anon_sym_PIPE, - ACTIONS(9430), 1, - anon_sym_if, - ACTIONS(9432), 1, - anon_sym_EQ_GT, - STATE(5895), 1, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(6132), 1, sym_comment, - STATE(7121), 1, - aux_sym_match_pattern_repeat1, - STATE(7425), 1, - sym_match_guard, - [215283] = 7, - ACTIONS(3), 1, + STATE(6845), 1, + sym_val_list, + STATE(7291), 1, + aux_sym_val_table_repeat1, + [217161] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(9414), 1, - anon_sym_LPAREN, - ACTIONS(9416), 1, - sym_unescaped_interpolated_content, - ACTIONS(9434), 1, - anon_sym_SQUOTE, - STATE(5896), 1, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(6133), 1, sym_comment, - STATE(5899), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7176), 1, - sym_expr_interpolated, - [215305] = 7, + STATE(6865), 1, + sym_val_list, + STATE(7297), 1, + aux_sym_val_table_repeat1, + [217183] = 7, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(6134), 1, + sym_comment, + STATE(6871), 1, + sym_val_list, + STATE(7299), 1, + aux_sym_val_table_repeat1, + [217205] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9414), 1, + ACTIONS(9711), 1, anon_sym_LPAREN, - ACTIONS(9416), 1, + ACTIONS(9713), 1, sym_unescaped_interpolated_content, - ACTIONS(9436), 1, + ACTIONS(9873), 1, anon_sym_SQUOTE, - STATE(5897), 1, + STATE(6135), 1, sym_comment, - STATE(5940), 1, + STATE(6171), 1, aux_sym__inter_single_quotes_repeat1, - STATE(7176), 1, + STATE(7085), 1, sym_expr_interpolated, - [215327] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5898), 1, - sym_comment, - ACTIONS(9438), 5, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [215341] = 7, + [217227] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9414), 1, + ACTIONS(9711), 1, anon_sym_LPAREN, - ACTIONS(9416), 1, + ACTIONS(9713), 1, sym_unescaped_interpolated_content, - ACTIONS(9440), 1, + ACTIONS(9875), 1, anon_sym_SQUOTE, - STATE(5899), 1, - sym_comment, - STATE(5940), 1, + STATE(6073), 1, aux_sym__inter_single_quotes_repeat1, - STATE(7176), 1, + STATE(6136), 1, + sym_comment, + STATE(7085), 1, sym_expr_interpolated, - [215363] = 4, - ACTIONS(3), 1, + [217249] = 7, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5900), 1, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(6137), 1, sym_comment, - ACTIONS(1044), 2, - anon_sym_DOT, - sym__entry_separator, - ACTIONS(1042), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK2, - [215379] = 4, - ACTIONS(3), 1, + STATE(7320), 1, + sym_val_list, + STATE(7389), 1, + aux_sym_val_table_repeat1, + [217271] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1036), 1, - anon_sym_DOT, - STATE(5901), 1, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(6138), 1, sym_comment, - ACTIONS(1034), 4, - anon_sym_RBRACK, - anon_sym_QMARK2, - sym__entry_separator, - sym__table_head_separator, - [215395] = 4, - ACTIONS(247), 1, + STATE(6893), 1, + sym_val_list, + STATE(7305), 1, + aux_sym_val_table_repeat1, + [217293] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8841), 1, - anon_sym_DASH, - STATE(5902), 1, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(6139), 1, sym_comment, - ACTIONS(8839), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [215411] = 6, - ACTIONS(247), 1, + STATE(6897), 1, + sym_val_list, + STATE(7308), 1, + aux_sym_val_table_repeat1, + [217315] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1796), 1, + ACTIONS(1999), 1, anon_sym_LBRACE, - ACTIONS(1798), 1, - aux_sym_unquoted_token2, - ACTIONS(9442), 1, - anon_sym_DOT_DOT2, - STATE(5903), 1, + ACTIONS(8268), 1, + anon_sym_DOT, + STATE(2002), 1, + sym_cell_path, + STATE(2752), 1, + sym_path, + STATE(5224), 1, + aux_sym_cell_path_repeat1, + STATE(6140), 1, sym_comment, - ACTIONS(9444), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [215431] = 7, - ACTIONS(3), 1, + [217337] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(9414), 1, - anon_sym_LPAREN, - ACTIONS(9416), 1, - sym_unescaped_interpolated_content, - ACTIONS(9446), 1, - anon_sym_SQUOTE, - STATE(5904), 1, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(6141), 1, sym_comment, - STATE(5906), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7176), 1, - sym_expr_interpolated, - [215453] = 7, - ACTIONS(247), 1, + STATE(6914), 1, + sym_val_list, + STATE(7315), 1, + aux_sym_val_table_repeat1, + [217359] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8231), 1, - sym_identifier, - ACTIONS(9050), 1, - anon_sym_DOLLAR, - STATE(5366), 1, - sym_val_variable, - STATE(5905), 1, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(6142), 1, sym_comment, - STATE(5952), 1, - sym__variable_name, - STATE(7026), 1, - sym__assignment_pattern, - [215475] = 7, + STATE(6919), 1, + sym_val_list, + STATE(7318), 1, + aux_sym_val_table_repeat1, + [217381] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9414), 1, + ACTIONS(9711), 1, anon_sym_LPAREN, - ACTIONS(9416), 1, + ACTIONS(9713), 1, sym_unescaped_interpolated_content, - ACTIONS(9448), 1, + ACTIONS(9877), 1, anon_sym_SQUOTE, - STATE(5906), 1, - sym_comment, - STATE(5940), 1, + STATE(6073), 1, aux_sym__inter_single_quotes_repeat1, - STATE(7176), 1, + STATE(6143), 1, + sym_comment, + STATE(7085), 1, sym_expr_interpolated, - [215497] = 7, + [217403] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9414), 1, + ACTIONS(9711), 1, anon_sym_LPAREN, - ACTIONS(9416), 1, + ACTIONS(9713), 1, sym_unescaped_interpolated_content, - ACTIONS(9450), 1, + ACTIONS(9879), 1, anon_sym_SQUOTE, - STATE(5907), 1, - sym_comment, - STATE(5912), 1, + STATE(6073), 1, aux_sym__inter_single_quotes_repeat1, - STATE(7176), 1, + STATE(6144), 1, + sym_comment, + STATE(7085), 1, sym_expr_interpolated, - [215519] = 7, - ACTIONS(247), 1, + [217425] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8231), 1, - sym_identifier, - ACTIONS(9050), 1, - anon_sym_DOLLAR, - STATE(5366), 1, - sym_val_variable, - STATE(5908), 1, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(6145), 1, sym_comment, - STATE(5952), 1, - sym__variable_name, - STATE(6985), 1, - sym__assignment_pattern, - [215541] = 5, - ACTIONS(247), 1, + STATE(6936), 1, + sym_val_list, + STATE(7325), 1, + aux_sym_val_table_repeat1, + [217447] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1667), 1, - aux_sym_unquoted_token2, - ACTIONS(9014), 1, - aux_sym__immediate_decimal_token2, - STATE(5909), 1, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(6146), 1, sym_comment, - ACTIONS(1669), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [215559] = 6, - ACTIONS(3), 1, + STATE(6942), 1, + sym_val_list, + STATE(7327), 1, + aux_sym_val_table_repeat1, + [217469] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(9452), 1, + ACTIONS(3766), 1, sym__newline, - ACTIONS(9455), 1, - sym__space, - STATE(5470), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(7291), 1, - sym__flags_parenthesized, - STATE(5910), 2, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(6147), 1, sym_comment, - aux_sym_ctrl_do_parenthesized_repeat1, - [215579] = 7, - ACTIONS(247), 1, + STATE(6955), 1, + sym_val_list, + STATE(7332), 1, + aux_sym_val_table_repeat1, + [217491] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8231), 1, - sym_identifier, - ACTIONS(9050), 1, - anon_sym_DOLLAR, - STATE(5366), 1, - sym_val_variable, - STATE(5911), 1, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(6148), 1, sym_comment, - STATE(5952), 1, - sym__variable_name, - STATE(7022), 1, - sym__assignment_pattern, - [215601] = 7, - ACTIONS(3), 1, + STATE(6962), 1, + sym_val_list, + STATE(7335), 1, + aux_sym_val_table_repeat1, + [217513] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(9414), 1, - anon_sym_LPAREN, - ACTIONS(9416), 1, - sym_unescaped_interpolated_content, - ACTIONS(9458), 1, - anon_sym_SQUOTE, - STATE(5912), 1, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(6149), 1, sym_comment, - STATE(5940), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7176), 1, - sym_expr_interpolated, - [215623] = 7, - ACTIONS(3), 1, + STATE(6978), 1, + sym_val_list, + STATE(7340), 1, + aux_sym_val_table_repeat1, + [217535] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(9414), 1, - anon_sym_LPAREN, - ACTIONS(9416), 1, - sym_unescaped_interpolated_content, - ACTIONS(9460), 1, - anon_sym_SQUOTE, - STATE(5913), 1, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(6150), 1, sym_comment, - STATE(5944), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7176), 1, - sym_expr_interpolated, - [215645] = 7, - ACTIONS(247), 1, + STATE(6984), 1, + sym_val_list, + STATE(7343), 1, + aux_sym_val_table_repeat1, + [217557] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1830), 1, - anon_sym_LBRACE, - ACTIONS(8715), 1, - anon_sym_DOT, - STATE(2364), 1, - sym_cell_path, - STATE(2655), 1, - sym_path, - STATE(5555), 1, - aux_sym_cell_path_repeat1, - STATE(5914), 1, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(6151), 1, + sym_comment, + STATE(6999), 1, + sym_val_list, + STATE(7348), 1, + aux_sym_val_table_repeat1, + [217579] = 7, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(6152), 1, sym_comment, - [215667] = 7, - ACTIONS(247), 1, + STATE(7005), 1, + sym_val_list, + STATE(7351), 1, + aux_sym_val_table_repeat1, + [217601] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1914), 1, - anon_sym_LBRACE, - ACTIONS(8715), 1, - anon_sym_DOT, - STATE(2379), 1, - sym_cell_path, - STATE(2655), 1, - sym_path, - STATE(5555), 1, - aux_sym_cell_path_repeat1, - STATE(5915), 1, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(6153), 1, sym_comment, - [215689] = 6, - ACTIONS(247), 1, + STATE(7014), 1, + sym_val_list, + STATE(7355), 1, + aux_sym_val_table_repeat1, + [217623] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1494), 1, - aux_sym_unquoted_token2, - ACTIONS(1780), 1, - anon_sym_LPAREN2, - ACTIONS(9462), 1, - anon_sym_DOT_DOT2, - STATE(5916), 1, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(6154), 1, sym_comment, - ACTIONS(9464), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [215709] = 6, - ACTIONS(247), 1, + STATE(7018), 1, + sym_val_list, + STATE(7358), 1, + aux_sym_val_table_repeat1, + [217645] = 7, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(6155), 1, + sym_comment, + STATE(7030), 1, + sym_val_list, + STATE(7362), 1, + aux_sym_val_table_repeat1, + [217667] = 7, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(6156), 1, + sym_comment, + STATE(7035), 1, + sym_val_list, + STATE(7365), 1, + aux_sym_val_table_repeat1, + [217689] = 7, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(6157), 1, + sym_comment, + STATE(7046), 1, + sym_val_list, + STATE(7370), 1, + aux_sym_val_table_repeat1, + [217711] = 7, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(6158), 1, + sym_comment, + STATE(7051), 1, + sym_val_list, + STATE(7373), 1, + aux_sym_val_table_repeat1, + [217733] = 7, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(6159), 1, + sym_comment, + STATE(7060), 1, + sym_val_list, + STATE(7376), 1, + aux_sym_val_table_repeat1, + [217755] = 7, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(6160), 1, + sym_comment, + STATE(7066), 1, + sym_val_list, + STATE(7379), 1, + aux_sym_val_table_repeat1, + [217777] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8211), 1, + ACTIONS(8444), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8213), 1, + ACTIONS(8446), 1, aux_sym__immediate_decimal_token5, - STATE(5917), 1, + STATE(6161), 1, sym_comment, - STATE(7397), 1, + STATE(7630), 1, sym__immediate_decimal, - ACTIONS(8209), 2, + ACTIONS(8442), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - [215729] = 6, - ACTIONS(3), 1, + [217797] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2015), 1, - anon_sym_RBRACE, - ACTIONS(2017), 1, - sym__entry_separator, - ACTIONS(9022), 1, + ACTIONS(9881), 1, anon_sym_DOT_DOT2, - STATE(5918), 1, + STATE(6162), 1, sym_comment, - ACTIONS(9024), 2, + ACTIONS(1796), 2, + sym__newline, + anon_sym_LBRACE, + ACTIONS(9883), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [215749] = 6, - ACTIONS(247), 1, + [217815] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1667), 1, - aux_sym_unquoted_token2, - ACTIONS(9466), 1, + ACTIONS(1056), 1, anon_sym_DOT, - ACTIONS(9468), 1, - aux_sym__immediate_decimal_token2, - STATE(5919), 1, - sym_comment, - ACTIONS(1669), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [215769] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6057), 1, - anon_sym_LBRACE, - STATE(5920), 1, + STATE(6163), 1, sym_comment, - STATE(6755), 1, - sym_block, - ACTIONS(8921), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [215787] = 7, - ACTIONS(247), 1, + ACTIONS(1054), 4, + anon_sym_RBRACK, + anon_sym_QMARK2, + sym__entry_separator, + sym__table_head_separator, + [217831] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1834), 1, - anon_sym_LBRACE, - ACTIONS(8715), 1, - anon_sym_DOT, - STATE(2223), 1, - sym_cell_path, - STATE(2655), 1, - sym_path, - STATE(5555), 1, - aux_sym_cell_path_repeat1, - STATE(5921), 1, + ACTIONS(5885), 1, + anon_sym_RBRACK, + ACTIONS(5891), 1, + sym__entry_separator, + ACTIONS(9360), 1, + anon_sym_DOT_DOT2, + STATE(6164), 1, sym_comment, - [215809] = 7, + ACTIONS(9362), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [217851] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9414), 1, + ACTIONS(9711), 1, anon_sym_LPAREN, - ACTIONS(9416), 1, + ACTIONS(9713), 1, sym_unescaped_interpolated_content, - ACTIONS(9470), 1, + ACTIONS(9885), 1, anon_sym_SQUOTE, - STATE(5922), 1, - sym_comment, - STATE(5928), 1, + STATE(6059), 1, aux_sym__inter_single_quotes_repeat1, - STATE(7176), 1, - sym_expr_interpolated, - [215831] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6057), 1, - anon_sym_LBRACE, - STATE(5923), 1, + STATE(6165), 1, sym_comment, - STATE(7044), 1, - sym_block, - ACTIONS(8993), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [215849] = 4, - ACTIONS(3), 1, + STATE(7085), 1, + sym_expr_interpolated, + [217873] = 7, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5924), 1, - sym_comment, - ACTIONS(1040), 2, + ACTIONS(1672), 1, + aux_sym_record_entry_token1, + ACTIONS(9705), 1, anon_sym_DOT, - sym__entry_separator, - ACTIONS(1038), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK2, - [215865] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8231), 1, - sym_identifier, - ACTIONS(9050), 1, - anon_sym_DOLLAR, - STATE(5366), 1, - sym_val_variable, - STATE(5925), 1, + STATE(1426), 1, + sym_cell_path, + STATE(6166), 1, sym_comment, - STATE(5929), 1, - sym__variable_name, - STATE(6635), 1, - sym__assignment_pattern_parenthesized, - [215887] = 5, + STATE(6724), 1, + aux_sym_cell_path_repeat1, + STATE(7323), 1, + sym_path, + [217895] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9106), 1, + ACTIONS(1717), 1, + sym__entry_separator, + ACTIONS(8613), 1, aux_sym__immediate_decimal_token2, - STATE(5926), 1, + ACTIONS(9887), 1, + anon_sym_DOT, + STATE(6167), 1, sym_comment, - ACTIONS(1667), 2, + ACTIONS(1715), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1669), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [215905] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(5927), 1, - sym_comment, - ACTIONS(9472), 5, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [215919] = 7, + [217915] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9414), 1, + ACTIONS(9711), 1, anon_sym_LPAREN, - ACTIONS(9416), 1, + ACTIONS(9713), 1, sym_unescaped_interpolated_content, - ACTIONS(9474), 1, + ACTIONS(9889), 1, anon_sym_SQUOTE, - STATE(5928), 1, - sym_comment, - STATE(5940), 1, + STATE(6073), 1, aux_sym__inter_single_quotes_repeat1, - STATE(7176), 1, - sym_expr_interpolated, - [215941] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(9476), 1, - anon_sym_EQ, - ACTIONS(9478), 1, - anon_sym_COLON, - STATE(5929), 1, + STATE(6168), 1, sym_comment, - STATE(6750), 1, - aux_sym_shebang_repeat1, - STATE(7455), 1, - sym_param_type, - [215963] = 5, - ACTIONS(247), 1, + STATE(7085), 1, + sym_expr_interpolated, + [217937] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6057), 1, + ACTIONS(6202), 1, anon_sym_LBRACE, - STATE(5930), 1, + STATE(6169), 1, sym_comment, - STATE(6834), 1, + STATE(7380), 1, sym_block, - ACTIONS(9008), 3, + ACTIONS(9578), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [215981] = 7, - ACTIONS(247), 1, + [217955] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1826), 1, + ACTIONS(1895), 1, anon_sym_LBRACE, - ACTIONS(8715), 1, + ACTIONS(8268), 1, anon_sym_DOT, - STATE(2337), 1, + STATE(2409), 1, sym_cell_path, - STATE(2655), 1, + STATE(2752), 1, sym_path, - STATE(5555), 1, + STATE(5224), 1, aux_sym_cell_path_repeat1, - STATE(5931), 1, - sym_comment, - [216003] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(5030), 1, - anon_sym_DASH, - STATE(5932), 1, + STATE(6170), 1, sym_comment, - ACTIONS(5028), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [216019] = 7, + [217977] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9414), 1, + ACTIONS(9711), 1, anon_sym_LPAREN, - ACTIONS(9416), 1, + ACTIONS(9713), 1, sym_unescaped_interpolated_content, - ACTIONS(9480), 1, + ACTIONS(9891), 1, anon_sym_SQUOTE, - STATE(5933), 1, - sym_comment, - STATE(5938), 1, + STATE(6073), 1, aux_sym__inter_single_quotes_repeat1, - STATE(7176), 1, + STATE(6171), 1, + sym_comment, + STATE(7085), 1, sym_expr_interpolated, - [216041] = 5, + [217999] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9482), 1, + ACTIONS(9689), 1, aux_sym__immediate_decimal_token2, - STATE(5934), 1, + STATE(6172), 1, sym_comment, - ACTIONS(1721), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1723), 2, + ACTIONS(1715), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1717), 2, anon_sym_LPAREN2, sym__entry_separator, - [216059] = 4, - ACTIONS(247), 1, + [218017] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5000), 1, - anon_sym_DASH, - STATE(5935), 1, + ACTIONS(2011), 1, + anon_sym_LBRACE, + ACTIONS(8268), 1, + anon_sym_DOT, + STATE(2011), 1, + sym_cell_path, + STATE(2752), 1, + sym_path, + STATE(5224), 1, + aux_sym_cell_path_repeat1, + STATE(6173), 1, sym_comment, - ACTIONS(4998), 4, + [218039] = 7, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(8374), 1, sym_identifier, + ACTIONS(9328), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [216075] = 6, - ACTIONS(247), 1, + STATE(5416), 1, + sym_val_variable, + STATE(6105), 1, + sym__variable_name, + STATE(6174), 1, + sym_comment, + STATE(6992), 1, + sym__assignment_pattern_parenthesized, + [218061] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1659), 1, - aux_sym_unquoted_token2, - ACTIONS(9484), 1, + ACTIONS(8444), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8446), 1, + aux_sym__immediate_decimal_token5, + STATE(6175), 1, + sym_comment, + STATE(7503), 1, + sym__immediate_decimal, + ACTIONS(8442), 2, aux_sym__immediate_decimal_token1, - ACTIONS(9486), 1, - aux_sym__immediate_decimal_token2, - STATE(5936), 1, + aux_sym__immediate_decimal_token3, + [218081] = 7, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(6176), 1, sym_comment, - ACTIONS(1661), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [216095] = 6, + STATE(7245), 1, + sym_val_list, + STATE(7251), 1, + aux_sym_val_table_repeat1, + [218103] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1778), 1, + ACTIONS(9893), 1, + anon_sym_QMARK2, + STATE(6177), 1, + sym_comment, + ACTIONS(1042), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(1786), 1, + ACTIONS(1044), 2, + anon_sym_DOT, sym__entry_separator, - ACTIONS(9488), 1, + [218121] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1526), 1, + aux_sym_unquoted_token2, + ACTIONS(1796), 1, + anon_sym_LBRACE, + ACTIONS(9895), 1, anon_sym_DOT_DOT2, - STATE(5937), 1, + STATE(6178), 1, sym_comment, - ACTIONS(9490), 2, + ACTIONS(9897), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [216115] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9414), 1, - anon_sym_LPAREN, - ACTIONS(9416), 1, - sym_unescaped_interpolated_content, - ACTIONS(9492), 1, - anon_sym_SQUOTE, - STATE(5938), 1, - sym_comment, - STATE(5940), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7176), 1, - sym_expr_interpolated, - [216137] = 4, - ACTIONS(247), 1, + [218141] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5004), 1, - anon_sym_DASH, - STATE(5939), 1, + STATE(6179), 1, sym_comment, - ACTIONS(5002), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(8082), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_AT, anon_sym_LBRACE, - [216153] = 6, - ACTIONS(3), 1, + [218155] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(9494), 1, - anon_sym_LPAREN, - ACTIONS(9497), 1, - sym_unescaped_interpolated_content, - ACTIONS(9500), 1, - anon_sym_SQUOTE, - STATE(7176), 1, - sym_expr_interpolated, - STATE(5940), 2, + ACTIONS(1715), 1, + aux_sym_unquoted_token2, + ACTIONS(9627), 1, + aux_sym__immediate_decimal_token2, + STATE(6180), 1, sym_comment, - aux_sym__inter_single_quotes_repeat1, - [216173] = 4, - ACTIONS(247), 1, + ACTIONS(1717), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [218173] = 7, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5034), 1, - anon_sym_DASH, - STATE(5941), 1, - sym_comment, - ACTIONS(5032), 4, + ACTIONS(8374), 1, sym_identifier, + ACTIONS(9328), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [216189] = 5, - ACTIONS(247), 1, + STATE(5416), 1, + sym_val_variable, + STATE(6047), 1, + sym__variable_name, + STATE(6181), 1, + sym_comment, + STATE(6301), 1, + sym__assignment_pattern, + [218195] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6057), 1, - anon_sym_LBRACE, - STATE(5942), 1, + ACTIONS(1769), 1, + aux_sym_unquoted_token2, + ACTIONS(9899), 1, + aux_sym__immediate_decimal_token2, + STATE(6182), 1, sym_comment, - STATE(6843), 1, - sym_block, - ACTIONS(9008), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [216207] = 5, - ACTIONS(247), 1, + ACTIONS(1771), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [218213] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8804), 1, + ACTIONS(9217), 1, anon_sym_LBRACE, - STATE(5943), 1, + STATE(6183), 1, sym_comment, - STATE(6808), 1, + STATE(7113), 1, sym_val_record, - ACTIONS(8975), 3, + ACTIONS(9443), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [216225] = 7, + [218231] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9414), 1, - anon_sym_LPAREN, - ACTIONS(9416), 1, - sym_unescaped_interpolated_content, - ACTIONS(9502), 1, - anon_sym_SQUOTE, - STATE(5940), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(5944), 1, + ACTIONS(9901), 1, + aux_sym__immediate_decimal_token2, + STATE(6184), 1, sym_comment, - STATE(7176), 1, - sym_expr_interpolated, - [216247] = 7, - ACTIONS(3), 1, + ACTIONS(1769), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1771), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [218249] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(9414), 1, - anon_sym_LPAREN, - ACTIONS(9416), 1, - sym_unescaped_interpolated_content, - ACTIONS(9504), 1, - anon_sym_SQUOTE, - STATE(5945), 1, + ACTIONS(9903), 1, + anon_sym_DOT_DOT2, + STATE(6185), 1, sym_comment, - STATE(5949), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7176), 1, - sym_expr_interpolated, - [216269] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7606), 1, + ACTIONS(1850), 2, sym__newline, - ACTIONS(7608), 1, - sym__space, - STATE(4713), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(5910), 1, - aux_sym_ctrl_do_parenthesized_repeat1, - STATE(5946), 1, - sym_comment, - STATE(7291), 1, - sym__flags_parenthesized, - [216291] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4884), 1, - anon_sym_DASH, - STATE(5947), 1, - sym_comment, - ACTIONS(4882), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, - [216307] = 4, - ACTIONS(247), 1, + ACTIONS(9905), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [218267] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5022), 1, - anon_sym_DASH, - STATE(5948), 1, + ACTIONS(1596), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(9907), 1, + aux_sym__immediate_decimal_token2, + STATE(6186), 1, sym_comment, - ACTIONS(5020), 4, + ACTIONS(1598), 3, + sym_filesize_unit, + sym_duration_unit, + aux_sym_record_entry_token1, + [218285] = 7, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(8374), 1, sym_identifier, + ACTIONS(9328), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [216323] = 7, + STATE(5416), 1, + sym_val_variable, + STATE(6023), 1, + sym__variable_name, + STATE(6187), 1, + sym_comment, + STATE(7190), 1, + sym__assignment_pattern, + [218307] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9414), 1, + ACTIONS(9711), 1, anon_sym_LPAREN, - ACTIONS(9416), 1, + ACTIONS(9713), 1, sym_unescaped_interpolated_content, - ACTIONS(9506), 1, + ACTIONS(9909), 1, anon_sym_SQUOTE, - STATE(5940), 1, + STATE(6122), 1, aux_sym__inter_single_quotes_repeat1, - STATE(5949), 1, + STATE(6188), 1, sym_comment, - STATE(7176), 1, + STATE(7085), 1, sym_expr_interpolated, - [216345] = 5, - ACTIONS(3), 1, + [218329] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(9508), 1, - aux_sym__immediate_decimal_token2, - STATE(5950), 1, + ACTIONS(9911), 1, + anon_sym_DOT_DOT2, + STATE(6189), 1, sym_comment, - ACTIONS(1721), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1723), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [216363] = 3, - ACTIONS(247), 1, + ACTIONS(2240), 2, + sym__newline, + anon_sym_LBRACE, + ACTIONS(9913), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [218347] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5951), 1, - sym_comment, - ACTIONS(9510), 5, - sym_identifier, - anon_sym_GT, + ACTIONS(9915), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [216377] = 7, - ACTIONS(247), 1, + STATE(6190), 1, + sym_comment, + STATE(6370), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9917), 2, + sym__escaped_str_content, + sym_escape_sequence, + [218364] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, + ACTIONS(3766), 1, sym__newline, - ACTIONS(9478), 1, - anon_sym_COLON, - ACTIONS(9512), 1, - anon_sym_EQ, - STATE(5952), 1, + ACTIONS(6211), 1, + anon_sym_LBRACE, + STATE(4814), 1, + sym_block, + STATE(6191), 1, sym_comment, - STATE(6750), 1, + STATE(6209), 1, aux_sym_shebang_repeat1, - STATE(7487), 1, - sym_param_type, - [216399] = 4, - ACTIONS(247), 1, + [218383] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5026), 1, - anon_sym_DASH, - STATE(5953), 1, + ACTIONS(9919), 1, + anon_sym_DQUOTE, + STATE(6192), 1, sym_comment, - ACTIONS(5024), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [216415] = 4, + STATE(6197), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9917), 2, + sym__escaped_str_content, + sym_escape_sequence, + [218400] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(5954), 1, - sym_comment, - ACTIONS(1036), 2, - anon_sym_DOT, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(1034), 3, + ACTIONS(9921), 1, + anon_sym_LBRACK, + ACTIONS(9923), 1, anon_sym_RBRACK, + STATE(3400), 1, + aux_sym__multiple_types_repeat1, + STATE(6193), 1, + sym_comment, + [218419] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(6194), 1, + sym_comment, + ACTIONS(9925), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_QMARK2, - [216431] = 4, - ACTIONS(247), 1, + [218432] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4894), 1, - anon_sym_DASH, - STATE(5955), 1, + STATE(6195), 1, sym_comment, - ACTIONS(4892), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(6263), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACE, - [216447] = 6, - ACTIONS(247), 1, + [218445] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1659), 1, - aux_sym_unquoted_token2, - ACTIONS(9514), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9516), 1, - aux_sym__immediate_decimal_token2, - STATE(5956), 1, + STATE(6196), 1, sym_comment, - ACTIONS(1661), 2, + ACTIONS(6265), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_LPAREN2, - [216467] = 7, + [218458] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9414), 1, - anon_sym_LPAREN, - ACTIONS(9416), 1, - sym_unescaped_interpolated_content, - ACTIONS(9518), 1, - anon_sym_SQUOTE, - STATE(5885), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(5957), 1, + ACTIONS(9927), 1, + anon_sym_DQUOTE, + STATE(6197), 1, sym_comment, - STATE(7176), 1, - sym_expr_interpolated, - [216489] = 5, - ACTIONS(247), 1, + STATE(6212), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9917), 2, + sym__escaped_str_content, + sym_escape_sequence, + [218475] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(243), 1, - aux_sym__block_body_repeat1, - STATE(5958), 1, + STATE(6198), 1, sym_comment, - ACTIONS(145), 2, + ACTIONS(9929), 4, sym__newline, anon_sym_SEMI, - ACTIONS(1651), 2, anon_sym_RPAREN, anon_sym_RBRACE, - [216507] = 7, - ACTIONS(247), 1, + [218488] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3231), 1, - aux_sym_record_entry_token1, - ACTIONS(9520), 1, - anon_sym_use, - ACTIONS(9522), 1, - anon_sym_list, - ACTIONS(9524), 1, - anon_sym_hide, - ACTIONS(9526), 1, - anon_sym_new, - STATE(5959), 1, + STATE(6199), 1, sym_comment, - [216529] = 7, - ACTIONS(3), 1, + ACTIONS(9929), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [218501] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(9414), 1, - anon_sym_LPAREN, - ACTIONS(9416), 1, - sym_unescaped_interpolated_content, - ACTIONS(9528), 1, - anon_sym_SQUOTE, - STATE(5960), 1, + STATE(6200), 1, sym_comment, - STATE(5969), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7176), 1, - sym_expr_interpolated, - [216551] = 6, + ACTIONS(9931), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [218514] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(6201), 1, + sym_comment, + ACTIONS(9933), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [218527] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(6202), 1, + sym_comment, + ACTIONS(9935), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [218540] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5726), 1, + STATE(6203), 1, + sym_comment, + ACTIONS(1715), 2, anon_sym_RBRACK, - ACTIONS(5732), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1717), 2, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(9022), 1, - anon_sym_DOT_DOT2, - STATE(5961), 1, + [218555] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2275), 1, + aux_sym_unquoted_token4, + ACTIONS(5900), 1, + anon_sym_PIPE, + STATE(6204), 1, sym_comment, - ACTIONS(9024), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [216571] = 7, - ACTIONS(247), 1, + ACTIONS(5895), 2, + anon_sym_if, + anon_sym_EQ_GT, + [218572] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8231), 1, - sym_identifier, - ACTIONS(9050), 1, - anon_sym_DOLLAR, - STATE(5366), 1, - sym_val_variable, - STATE(5962), 1, + ACTIONS(2297), 1, + anon_sym_PIPE, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + STATE(6205), 1, sym_comment, - STATE(5970), 1, - sym__variable_name, - STATE(6418), 1, - sym__assignment_pattern, - [216593] = 5, - ACTIONS(247), 1, + ACTIONS(2293), 2, + anon_sym_if, + anon_sym_EQ_GT, + [218589] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4942), 1, - anon_sym_DASH, - ACTIONS(9530), 1, - anon_sym_EQ2, - STATE(5963), 1, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + ACTIONS(2305), 1, + anon_sym_PIPE, + STATE(6206), 1, sym_comment, - ACTIONS(4940), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [216611] = 6, - ACTIONS(247), 1, + ACTIONS(2303), 2, + anon_sym_if, + anon_sym_EQ_GT, + [218606] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1667), 1, - aux_sym_unquoted_token2, - ACTIONS(9532), 1, - anon_sym_DOT, - ACTIONS(9534), 1, - aux_sym__immediate_decimal_token2, - STATE(5964), 1, + ACTIONS(9937), 1, + anon_sym_LBRACK, + ACTIONS(9939), 1, + anon_sym_LPAREN, + STATE(3138), 1, + sym_parameter_bracks, + STATE(3142), 1, + sym_parameter_parens, + STATE(6207), 1, sym_comment, - ACTIONS(1669), 2, - anon_sym_LBRACE, + [218625] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2281), 1, + anon_sym_RBRACK, + ACTIONS(2283), 1, anon_sym_LPAREN2, - [216631] = 7, - ACTIONS(247), 1, + ACTIONS(2285), 1, + sym__entry_separator, + ACTIONS(2287), 1, + aux_sym__unquoted_in_list_token4, + STATE(6208), 1, + sym_comment, + [218644] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, + ACTIONS(3766), 1, sym__newline, - ACTIONS(8900), 1, - anon_sym_LBRACK, - STATE(749), 1, + ACTIONS(6211), 1, + anon_sym_LBRACE, + STATE(2498), 1, aux_sym_shebang_repeat1, - STATE(5965), 1, + STATE(4808), 1, + sym_block, + STATE(6209), 1, sym_comment, - STATE(6874), 1, - sym_val_list, - STATE(6964), 1, - aux_sym_val_table_repeat1, - [216653] = 6, + [218663] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1842), 1, + anon_sym_RBRACK, + ACTIONS(1844), 1, + anon_sym_LPAREN2, + ACTIONS(1850), 1, + sym__entry_separator, + ACTIONS(1852), 1, + aux_sym__unquoted_in_list_token2, + STATE(6210), 1, + sym_comment, + [218682] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1526), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(1788), 1, + anon_sym_RBRACE, + ACTIONS(1790), 1, + anon_sym_LPAREN2, + ACTIONS(1796), 1, + sym__entry_separator, + STATE(6211), 1, + sym_comment, + [218701] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9941), 1, + anon_sym_DQUOTE, + ACTIONS(9943), 2, + sym__escaped_str_content, + sym_escape_sequence, + STATE(6212), 2, + sym_comment, + aux_sym__str_double_quotes_repeat1, + [218716] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6213), 1, + sym_comment, + ACTIONS(1703), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1705), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [218731] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2287), 1, + aux_sym_unquoted_token4, + STATE(6214), 1, + sym_comment, + ACTIONS(2281), 3, + sym_identifier, + anon_sym_DASH_DASH, + anon_sym_DASH, + [218746] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1788), 1, - anon_sym_RBRACE, - ACTIONS(1796), 1, + ACTIONS(5518), 1, + anon_sym_LPAREN2, + ACTIONS(7942), 1, sym__entry_separator, - ACTIONS(9536), 1, - anon_sym_DOT_DOT2, - STATE(5966), 1, + ACTIONS(7944), 1, + anon_sym_RBRACK, + STATE(6215), 1, sym_comment, - ACTIONS(9538), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [216673] = 7, - ACTIONS(247), 1, + STATE(7657), 1, + sym__expr_parenthesized_immediate, + [218765] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, + STATE(6216), 1, + sym_comment, + ACTIONS(9946), 4, sym__newline, - ACTIONS(8900), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [218778] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(9921), 1, anon_sym_LBRACK, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(5967), 1, + ACTIONS(9948), 1, + anon_sym_RBRACK, + STATE(3400), 1, + aux_sym__multiple_types_repeat1, + STATE(6217), 1, sym_comment, - STATE(6664), 1, - sym_val_list, - STATE(6969), 1, - aux_sym_val_table_repeat1, - [216695] = 7, - ACTIONS(247), 1, + [218797] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1007), 1, - aux_sym_record_entry_token1, - ACTIONS(9540), 1, - anon_sym_DOT, - STATE(1217), 1, - sym_cell_path, - STATE(5968), 1, + STATE(6218), 1, sym_comment, - STATE(6538), 1, - aux_sym_cell_path_repeat1, - STATE(6916), 1, - sym_path, - [216717] = 7, - ACTIONS(3), 1, + ACTIONS(5572), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [218810] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(9414), 1, - anon_sym_LPAREN, - ACTIONS(9416), 1, - sym_unescaped_interpolated_content, - ACTIONS(9542), 1, - anon_sym_SQUOTE, - STATE(5940), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(5969), 1, + STATE(6219), 1, sym_comment, - STATE(7176), 1, - sym_expr_interpolated, - [216739] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3705), 1, + ACTIONS(9950), 4, sym__newline, - ACTIONS(9478), 1, - anon_sym_COLON, - ACTIONS(9544), 1, - anon_sym_EQ, - STATE(5970), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [218823] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(6220), 1, sym_comment, - STATE(6750), 1, - aux_sym_shebang_repeat1, - STATE(7530), 1, - sym_param_type, - [216761] = 5, - ACTIONS(247), 1, + ACTIONS(9950), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [218836] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4900), 1, - anon_sym_DASH, - ACTIONS(9546), 1, - anon_sym_EQ2, - STATE(5971), 1, + STATE(6221), 1, sym_comment, - ACTIONS(4898), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [216779] = 5, - ACTIONS(247), 1, + ACTIONS(9952), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [218849] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(9548), 1, - anon_sym_EQ2, - ACTIONS(9550), 1, - sym_short_flag_identifier, - STATE(5972), 1, + ACTIONS(1852), 1, + aux_sym_unquoted_token2, + STATE(6222), 1, sym_comment, - ACTIONS(4781), 3, - sym_identifier, - anon_sym_DASH_DASH, - anon_sym_DASH, - [216797] = 7, - ACTIONS(247), 1, + ACTIONS(2279), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [218864] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1830), 1, - sym__table_head_separator, - ACTIONS(9552), 1, - anon_sym_DOT, - STATE(2714), 1, - sym_cell_path, - STATE(5973), 1, + ACTIONS(1852), 1, + aux_sym_unquoted_token2, + STATE(6223), 1, sym_comment, - STATE(6495), 1, - aux_sym_cell_path_repeat1, - STATE(6916), 1, - sym_path, - [216819] = 6, + ACTIONS(1850), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [218879] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9022), 1, - anon_sym_DOT_DOT2, - ACTIONS(9554), 1, + ACTIONS(1630), 1, + anon_sym_LPAREN2, + ACTIONS(2196), 1, anon_sym_RBRACE, - ACTIONS(9556), 1, + ACTIONS(2198), 1, sym__entry_separator, - STATE(5974), 1, + STATE(6224), 1, sym_comment, - ACTIONS(9024), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [216839] = 7, - ACTIONS(247), 1, + STATE(7494), 1, + sym__expr_parenthesized_immediate, + [218898] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1834), 1, - sym__table_head_separator, - ACTIONS(9552), 1, - anon_sym_DOT, - STATE(2677), 1, - sym_cell_path, - STATE(5975), 1, + ACTIONS(6251), 1, + anon_sym_DOLLAR, + ACTIONS(8374), 1, + sym_identifier, + STATE(5416), 1, + sym_val_variable, + STATE(5856), 1, + sym__variable_name, + STATE(6225), 1, sym_comment, - STATE(6495), 1, - aux_sym_cell_path_repeat1, - STATE(6916), 1, - sym_path, - [216861] = 5, + [218917] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9558), 1, - anon_sym_QMARK2, - STATE(5976), 1, - sym_comment, - ACTIONS(1022), 2, - anon_sym_RBRACK, + ACTIONS(1844), 1, + anon_sym_LPAREN2, + ACTIONS(1852), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(2277), 1, anon_sym_RBRACE, - ACTIONS(1024), 2, - anon_sym_DOT, + ACTIONS(2279), 1, sym__entry_separator, - [216879] = 5, - ACTIONS(3), 1, + STATE(6226), 1, + sym_comment, + [218936] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(9560), 1, - anon_sym_QMARK2, - STATE(5977), 1, + STATE(6227), 1, sym_comment, - ACTIONS(1028), 2, - anon_sym_RBRACK, + ACTIONS(9954), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(1030), 2, - anon_sym_DOT, - sym__entry_separator, - [216897] = 6, + [218949] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9022), 1, - anon_sym_DOT_DOT2, - ACTIONS(9562), 1, + ACTIONS(1842), 1, anon_sym_RBRACE, - ACTIONS(9564), 1, + ACTIONS(1844), 1, + anon_sym_LPAREN2, + ACTIONS(1850), 1, sym__entry_separator, - STATE(5978), 1, + ACTIONS(1852), 1, + aux_sym__unquoted_in_record_token2, + STATE(6228), 1, sym_comment, - ACTIONS(9024), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [216917] = 3, - ACTIONS(247), 1, + [218968] = 6, + ACTIONS(249), 1, anon_sym_POUND, - STATE(5979), 1, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(9956), 1, + anon_sym_EQ, + ACTIONS(9958), 1, + anon_sym_COLON, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(6229), 1, sym_comment, - ACTIONS(9566), 5, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [216931] = 7, - ACTIONS(3), 1, + [218987] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(9414), 1, - anon_sym_LPAREN, - ACTIONS(9416), 1, - sym_unescaped_interpolated_content, - ACTIONS(9568), 1, - anon_sym_SQUOTE, - STATE(5980), 1, + ACTIONS(2252), 1, + aux_sym_unquoted_token2, + STATE(6230), 1, sym_comment, - STATE(5986), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7176), 1, - sym_expr_interpolated, - [216953] = 6, - ACTIONS(247), 1, + ACTIONS(2250), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [219002] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1494), 1, - aux_sym_unquoted_token2, - ACTIONS(1786), 1, - anon_sym_LBRACE, - ACTIONS(9570), 1, - anon_sym_DOT_DOT2, - STATE(5981), 1, + STATE(6231), 1, sym_comment, - ACTIONS(9572), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [216973] = 5, - ACTIONS(247), 1, + ACTIONS(1769), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1771), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [219017] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6057), 1, - anon_sym_LBRACE, - STATE(5982), 1, + ACTIONS(9962), 1, + anon_sym_RPAREN, + STATE(6232), 1, sym_comment, - STATE(6746), 1, - sym_block, - ACTIONS(8921), 3, - ts_builtin_sym_end, + STATE(6722), 1, + aux_sym__block_body_repeat1, + ACTIONS(9960), 2, sym__newline, anon_sym_SEMI, - [216991] = 3, - ACTIONS(247), 1, + [219034] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5983), 1, + ACTIONS(1630), 1, + anon_sym_LPAREN2, + ACTIONS(2200), 1, + anon_sym_RBRACE, + ACTIONS(2202), 1, + sym__entry_separator, + STATE(6233), 1, sym_comment, - ACTIONS(9574), 5, - sym_identifier, - anon_sym_GT, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [217005] = 4, + STATE(7494), 1, + sym__expr_parenthesized_immediate, + [219053] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1040), 1, - anon_sym_DOT, - STATE(5984), 1, - sym_comment, - ACTIONS(1038), 4, - anon_sym_RBRACK, - anon_sym_QMARK2, + ACTIONS(6494), 1, sym__entry_separator, - sym__table_head_separator, - [217021] = 7, - ACTIONS(247), 1, + ACTIONS(9921), 1, + anon_sym_LBRACK, + ACTIONS(9964), 1, + anon_sym_RBRACK, + STATE(3400), 1, + aux_sym__multiple_types_repeat1, + STATE(6234), 1, + sym_comment, + [219072] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1677), 1, - aux_sym_record_entry_token1, - ACTIONS(9540), 1, - anon_sym_DOT, - STATE(1375), 1, - sym_cell_path, - STATE(5985), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(9921), 1, + anon_sym_LBRACK, + ACTIONS(9966), 1, + anon_sym_RBRACK, + STATE(3400), 1, + aux_sym__multiple_types_repeat1, + STATE(6235), 1, sym_comment, - STATE(6538), 1, - aux_sym_cell_path_repeat1, - STATE(6916), 1, - sym_path, - [217043] = 7, + [219091] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9414), 1, - anon_sym_LPAREN, - ACTIONS(9416), 1, - sym_unescaped_interpolated_content, - ACTIONS(9576), 1, - anon_sym_SQUOTE, - STATE(5940), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(5986), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(9921), 1, + anon_sym_LBRACK, + ACTIONS(9968), 1, + anon_sym_RBRACK, + STATE(3400), 1, + aux_sym__multiple_types_repeat1, + STATE(6236), 1, sym_comment, - STATE(7176), 1, - sym_expr_interpolated, - [217065] = 5, - ACTIONS(247), 1, + [219110] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1721), 1, + ACTIONS(1769), 1, aux_sym_unquoted_token2, - ACTIONS(9578), 1, + ACTIONS(9970), 1, aux_sym__immediate_decimal_token2, - STATE(5987), 1, + STATE(6237), 1, sym_comment, - ACTIONS(1723), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [217083] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1007), 1, + ACTIONS(1771), 2, anon_sym_LBRACE, - ACTIONS(8715), 1, - anon_sym_DOT, - STATE(2655), 1, - sym_path, - STATE(3130), 1, - sym_cell_path, - STATE(5555), 1, - aux_sym_cell_path_repeat1, - STATE(5988), 1, - sym_comment, - [217105] = 7, - ACTIONS(247), 1, + anon_sym_LPAREN2, + [219127] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(8900), 1, - anon_sym_LBRACK, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(5989), 1, + ACTIONS(1558), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(2335), 1, + anon_sym_RBRACE, + ACTIONS(2337), 1, + anon_sym_LPAREN2, + ACTIONS(2339), 1, + sym__entry_separator, + STATE(6238), 1, sym_comment, - STATE(7160), 1, - sym_val_list, - STATE(7177), 1, - aux_sym_val_table_repeat1, - [217127] = 7, - ACTIONS(3), 1, + [219146] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(9414), 1, - anon_sym_LPAREN, - ACTIONS(9416), 1, - sym_unescaped_interpolated_content, - ACTIONS(9580), 1, - anon_sym_SQUOTE, - STATE(5990), 1, + STATE(6239), 1, sym_comment, - STATE(6054), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7176), 1, - sym_expr_interpolated, - [217149] = 5, - ACTIONS(247), 1, + ACTIONS(9972), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [219159] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1554), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(9582), 1, - aux_sym__immediate_decimal_token2, - STATE(5991), 1, + STATE(6240), 1, sym_comment, - ACTIONS(1556), 3, - sym_filesize_unit, - sym_duration_unit, - aux_sym_record_entry_token1, - [217167] = 7, - ACTIONS(3), 1, + ACTIONS(9974), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [219172] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(9414), 1, - anon_sym_LPAREN, - ACTIONS(9416), 1, - sym_unescaped_interpolated_content, - ACTIONS(9584), 1, - anon_sym_SQUOTE, - STATE(5940), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(5992), 1, + STATE(6241), 1, sym_comment, - STATE(7176), 1, - sym_expr_interpolated, - [217189] = 7, - ACTIONS(3), 1, + ACTIONS(9976), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [219185] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(9414), 1, - anon_sym_LPAREN, - ACTIONS(9416), 1, - sym_unescaped_interpolated_content, - ACTIONS(9586), 1, - anon_sym_SQUOTE, - STATE(5993), 1, + STATE(6242), 1, sym_comment, - STATE(6000), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7176), 1, - sym_expr_interpolated, - [217211] = 5, + ACTIONS(9978), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [219198] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1024), 1, - anon_sym_DOT, - ACTIONS(9588), 1, - anon_sym_QMARK2, - STATE(5994), 1, + STATE(6243), 1, sym_comment, - ACTIONS(1022), 3, + ACTIONS(1826), 2, anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1828), 2, + anon_sym_LPAREN2, sym__entry_separator, - sym__table_head_separator, - [217229] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4942), 1, - anon_sym_DASH, - ACTIONS(9590), 1, - anon_sym_EQ2, - STATE(5995), 1, - sym_comment, - ACTIONS(4940), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [217247] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(8900), 1, - anon_sym_LBRACK, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(5996), 1, - sym_comment, - STATE(6688), 1, - sym_val_list, - STATE(7015), 1, - aux_sym_val_table_repeat1, - [217269] = 7, - ACTIONS(247), 1, + [219213] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(8900), 1, + ACTIONS(9937), 1, anon_sym_LBRACK, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(5997), 1, + ACTIONS(9939), 1, + anon_sym_LPAREN, + STATE(3155), 1, + sym_parameter_parens, + STATE(3157), 1, + sym_parameter_bracks, + STATE(6244), 1, sym_comment, - STATE(6753), 1, - sym_val_list, - STATE(7017), 1, - aux_sym_val_table_repeat1, - [217291] = 6, - ACTIONS(247), 1, + [219232] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4810), 1, - anon_sym_DASH_DASH, - ACTIONS(9592), 1, - sym_long_flag_identifier, - ACTIONS(9594), 1, - anon_sym_EQ2, - STATE(5998), 1, + ACTIONS(2246), 1, + anon_sym_RBRACE, + ACTIONS(2248), 1, + anon_sym_LPAREN2, + ACTIONS(2250), 1, + sym__entry_separator, + ACTIONS(2252), 1, + aux_sym__unquoted_in_record_token2, + STATE(6245), 1, sym_comment, - ACTIONS(4808), 2, - sym_identifier, - anon_sym_DASH, - [217311] = 5, - ACTIONS(247), 1, + [219251] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4900), 1, - anon_sym_DASH, - ACTIONS(9596), 1, - anon_sym_EQ2, - STATE(5999), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(9921), 1, + anon_sym_LBRACK, + ACTIONS(9980), 1, + anon_sym_RBRACK, + STATE(3400), 1, + aux_sym__multiple_types_repeat1, + STATE(6246), 1, sym_comment, - ACTIONS(4898), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [217329] = 7, + [219270] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9414), 1, - anon_sym_LPAREN, - ACTIONS(9416), 1, - sym_unescaped_interpolated_content, - ACTIONS(9598), 1, - anon_sym_SQUOTE, - STATE(5940), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6000), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(9921), 1, + anon_sym_LBRACK, + ACTIONS(9982), 1, + anon_sym_RBRACK, + STATE(3400), 1, + aux_sym__multiple_types_repeat1, + STATE(6247), 1, sym_comment, - STATE(7176), 1, - sym_expr_interpolated, - [217351] = 7, - ACTIONS(247), 1, + [219289] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(8900), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(9921), 1, anon_sym_LBRACK, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(6001), 1, + ACTIONS(9984), 1, + anon_sym_RBRACK, + STATE(3400), 1, + aux_sym__multiple_types_repeat1, + STATE(6248), 1, sym_comment, - STATE(6883), 1, - sym_val_list, - STATE(7030), 1, - aux_sym_val_table_repeat1, - [217373] = 7, - ACTIONS(247), 1, + [219308] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, + STATE(6249), 1, + sym_comment, + ACTIONS(9978), 4, sym__newline, - ACTIONS(8900), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [219321] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(9921), 1, anon_sym_LBRACK, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(6002), 1, + ACTIONS(9986), 1, + anon_sym_RBRACK, + STATE(3400), 1, + aux_sym__multiple_types_repeat1, + STATE(6250), 1, sym_comment, - STATE(6891), 1, - sym_val_list, - STATE(7033), 1, - aux_sym_val_table_repeat1, - [217395] = 5, - ACTIONS(247), 1, + [219340] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(248), 1, - aux_sym__block_body_repeat1, - STATE(6003), 1, + STATE(6251), 1, sym_comment, - ACTIONS(145), 2, + ACTIONS(9988), 4, sym__newline, anon_sym_SEMI, - ACTIONS(1657), 2, anon_sym_RPAREN, anon_sym_RBRACE, - [217413] = 7, - ACTIONS(247), 1, + [219353] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, + STATE(6252), 1, + sym_comment, + ACTIONS(9990), 4, sym__newline, - ACTIONS(8900), 1, - anon_sym_LBRACK, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(6004), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [219366] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1536), 1, + aux_sym_cmd_identifier_token41, + STATE(6253), 1, sym_comment, - STATE(6932), 1, - sym_val_list, - STATE(7038), 1, - aux_sym_val_table_repeat1, - [217435] = 7, - ACTIONS(247), 1, + ACTIONS(1538), 3, + sym_filesize_unit, + sym_duration_unit, + aux_sym_record_entry_token1, + [219381] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(8900), 1, - anon_sym_LBRACK, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(6005), 1, + ACTIONS(2281), 1, + anon_sym_RBRACE, + ACTIONS(2283), 1, + anon_sym_LPAREN2, + ACTIONS(2285), 1, + sym__entry_separator, + ACTIONS(2287), 1, + aux_sym__unquoted_in_record_token4, + STATE(6254), 1, sym_comment, - STATE(6952), 1, - sym_val_list, - STATE(7041), 1, - aux_sym_val_table_repeat1, - [217457] = 4, - ACTIONS(247), 1, + [219400] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4992), 1, - anon_sym_DASH, - STATE(6006), 1, + ACTIONS(2359), 1, + sym__entry_separator, + ACTIONS(9992), 1, + anon_sym_LBRACK2, + STATE(6255), 1, sym_comment, - ACTIONS(4990), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [217473] = 5, - ACTIONS(247), 1, + ACTIONS(2355), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [219417] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1560), 1, - anon_sym_DASH, - ACTIONS(8350), 1, - aux_sym_unquoted_token2, - STATE(6007), 1, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + STATE(6256), 1, sym_comment, - ACTIONS(1572), 3, - anon_sym_DOLLAR, + ACTIONS(2293), 3, + sym_identifier, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [217491] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4996), 1, anon_sym_DASH, - STATE(6008), 1, + [219432] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + STATE(6257), 1, sym_comment, - ACTIONS(4994), 4, + ACTIONS(2303), 3, sym_identifier, - anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [217507] = 7, - ACTIONS(247), 1, + anon_sym_DASH, + [219447] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(8900), 1, - anon_sym_LBRACK, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(6009), 1, + ACTIONS(1090), 1, + anon_sym_RBRACK, + ACTIONS(1092), 1, + sym__entry_separator, + ACTIONS(2273), 1, + anon_sym_LPAREN2, + ACTIONS(2275), 1, + aux_sym__unquoted_in_list_token4, + STATE(6258), 1, sym_comment, - STATE(6995), 1, - sym_val_list, - STATE(7046), 1, - aux_sym_val_table_repeat1, - [217529] = 7, - ACTIONS(247), 1, + [219466] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(8900), 1, - anon_sym_LBRACK, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(6010), 1, + ACTIONS(2291), 1, + anon_sym_PIPE, + STATE(6259), 1, sym_comment, - STATE(6999), 1, - sym_val_list, - STATE(7048), 1, - aux_sym_val_table_repeat1, - [217551] = 7, - ACTIONS(247), 1, + ACTIONS(2289), 3, + anon_sym_if, + anon_sym_EQ_GT, + aux_sym_unquoted_token4, + [219481] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(8900), 1, - anon_sym_LBRACK, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(6011), 1, + STATE(6260), 1, sym_comment, - STATE(7003), 1, - sym_val_list, - STATE(7053), 1, - aux_sym_val_table_repeat1, - [217573] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3705), 1, + ACTIONS(9994), 4, sym__newline, - ACTIONS(8900), 1, - anon_sym_LBRACK, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(6012), 1, - sym_comment, - STATE(7019), 1, - sym_val_list, - STATE(7056), 1, - aux_sym_val_table_repeat1, - [217595] = 7, - ACTIONS(247), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [219494] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(8900), 1, - anon_sym_LBRACK, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(6013), 1, + STATE(6261), 1, sym_comment, - STATE(7061), 1, - aux_sym_val_table_repeat1, - STATE(7148), 1, - sym_val_list, - [217617] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3705), 1, + ACTIONS(9996), 4, sym__newline, - ACTIONS(8900), 1, - anon_sym_LBRACK, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(6014), 1, - sym_comment, - STATE(7063), 1, - aux_sym_val_table_repeat1, - STATE(7161), 1, - sym_val_list, - [217639] = 7, - ACTIONS(247), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [219507] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(8900), 1, - anon_sym_LBRACK, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(6015), 1, + STATE(6262), 1, sym_comment, - STATE(6623), 1, - sym_val_list, - STATE(7067), 1, - aux_sym_val_table_repeat1, - [217661] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3705), 1, + ACTIONS(9998), 4, sym__newline, - ACTIONS(8900), 1, - anon_sym_LBRACK, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(6016), 1, - sym_comment, - STATE(6628), 1, - sym_val_list, - STATE(7069), 1, - aux_sym_val_table_repeat1, - [217683] = 7, - ACTIONS(247), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [219520] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(8900), 1, - anon_sym_LBRACK, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(6017), 1, + STATE(6263), 1, sym_comment, - STATE(6648), 1, - sym_val_list, - STATE(7075), 1, - aux_sym_val_table_repeat1, - [217705] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3705), 1, + ACTIONS(10000), 4, sym__newline, - ACTIONS(8900), 1, - anon_sym_LBRACK, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(6018), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [219533] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1715), 1, + aux_sym_unquoted_token2, + STATE(6264), 1, sym_comment, - STATE(6654), 1, - sym_val_list, - STATE(7077), 1, - aux_sym_val_table_repeat1, - [217727] = 7, - ACTIONS(247), 1, + ACTIONS(1717), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [219548] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(8900), 1, - anon_sym_LBRACK, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(6019), 1, + STATE(6265), 1, sym_comment, - STATE(6674), 1, - sym_val_list, - STATE(7082), 1, - aux_sym_val_table_repeat1, - [217749] = 7, - ACTIONS(247), 1, + ACTIONS(10002), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [219561] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(8900), 1, - anon_sym_LBRACK, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(6020), 1, + STATE(6266), 1, sym_comment, - STATE(6679), 1, - sym_val_list, - STATE(7085), 1, - aux_sym_val_table_repeat1, - [217771] = 7, - ACTIONS(247), 1, + ACTIONS(10004), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [219574] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3229), 1, - aux_sym_record_entry_token1, - ACTIONS(9520), 1, + ACTIONS(9735), 1, anon_sym_use, - ACTIONS(9522), 1, + ACTIONS(9737), 1, anon_sym_list, - ACTIONS(9524), 1, + ACTIONS(9739), 1, anon_sym_hide, - ACTIONS(9526), 1, + ACTIONS(9741), 1, anon_sym_new, - STATE(6021), 1, + STATE(6267), 1, sym_comment, - [217793] = 4, + [219593] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1044), 1, - anon_sym_DOT, - STATE(6022), 1, + ACTIONS(10006), 1, + anon_sym_DQUOTE, + STATE(6268), 1, sym_comment, - ACTIONS(1042), 4, - anon_sym_RBRACK, - anon_sym_QMARK2, - sym__entry_separator, - sym__table_head_separator, - [217809] = 7, - ACTIONS(247), 1, + STATE(6295), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9917), 2, + sym__escaped_str_content, + sym_escape_sequence, + [219610] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(8900), 1, - anon_sym_LBRACK, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(6023), 1, + STATE(6269), 1, sym_comment, - STATE(6697), 1, - sym_val_list, - STATE(7090), 1, - aux_sym_val_table_repeat1, - [217831] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3705), 1, + ACTIONS(10008), 4, sym__newline, - ACTIONS(8900), 1, - anon_sym_LBRACK, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(6024), 1, - sym_comment, - STATE(6703), 1, - sym_val_list, - STATE(7092), 1, - aux_sym_val_table_repeat1, - [217853] = 7, - ACTIONS(247), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [219623] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8231), 1, - sym_identifier, - ACTIONS(9050), 1, - anon_sym_DOLLAR, - STATE(5366), 1, - sym_val_variable, - STATE(5929), 1, - sym__variable_name, - STATE(6025), 1, + STATE(6270), 1, sym_comment, - STATE(6728), 1, - sym__assignment_pattern_parenthesized, - [217875] = 7, - ACTIONS(247), 1, + ACTIONS(10010), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [219636] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(8900), 1, + ACTIONS(9937), 1, anon_sym_LBRACK, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(6026), 1, + ACTIONS(9939), 1, + anon_sym_LPAREN, + STATE(5933), 1, + sym_parameter_parens, + STATE(5934), 1, + sym_parameter_bracks, + STATE(6271), 1, sym_comment, - STATE(6717), 1, - sym_val_list, - STATE(7098), 1, - aux_sym_val_table_repeat1, - [217897] = 7, - ACTIONS(247), 1, + [219655] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(8900), 1, - anon_sym_LBRACK, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(6027), 1, + ACTIONS(10012), 1, + anon_sym_DQUOTE, + STATE(6272), 1, sym_comment, - STATE(6722), 1, - sym_val_list, - STATE(7101), 1, - aux_sym_val_table_repeat1, - [217919] = 7, - ACTIONS(247), 1, + STATE(6277), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9917), 2, + sym__escaped_str_content, + sym_escape_sequence, + [219672] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8231), 1, - sym_identifier, - ACTIONS(9050), 1, - anon_sym_DOLLAR, - STATE(5366), 1, - sym_val_variable, - STATE(5929), 1, - sym__variable_name, - STATE(6028), 1, + STATE(6273), 1, sym_comment, - STATE(6744), 1, - sym__assignment_pattern_parenthesized, - [217941] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3705), 1, + ACTIONS(10014), 4, sym__newline, - ACTIONS(8900), 1, - anon_sym_LBRACK, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(6029), 1, - sym_comment, - STATE(6735), 1, - sym_val_list, - STATE(7106), 1, - aux_sym_val_table_repeat1, - [217963] = 7, - ACTIONS(247), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [219685] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(8900), 1, - anon_sym_LBRACK, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(6030), 1, + STATE(6274), 1, sym_comment, - STATE(6740), 1, - sym_val_list, - STATE(7108), 1, - aux_sym_val_table_repeat1, - [217985] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3705), 1, + ACTIONS(10016), 4, sym__newline, - ACTIONS(8900), 1, - anon_sym_LBRACK, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(6031), 1, - sym_comment, - STATE(6759), 1, - sym_val_list, - STATE(7113), 1, - aux_sym_val_table_repeat1, - [218007] = 7, - ACTIONS(247), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [219698] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(8900), 1, - anon_sym_LBRACK, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(6032), 1, + STATE(6275), 1, sym_comment, - STATE(6764), 1, - sym_val_list, - STATE(7116), 1, - aux_sym_val_table_repeat1, - [218029] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3705), 1, + ACTIONS(10018), 4, sym__newline, - ACTIONS(8900), 1, - anon_sym_LBRACK, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(6033), 1, - sym_comment, - STATE(6781), 1, - sym_val_list, - STATE(7120), 1, - aux_sym_val_table_repeat1, - [218051] = 7, - ACTIONS(247), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [219711] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(8900), 1, - anon_sym_LBRACK, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(6034), 1, + STATE(6276), 1, sym_comment, - STATE(6787), 1, - sym_val_list, - STATE(7123), 1, - aux_sym_val_table_repeat1, - [218073] = 7, - ACTIONS(247), 1, + ACTIONS(1066), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(1068), 2, + anon_sym_DOT, + sym__entry_separator, + [219726] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(8900), 1, - anon_sym_LBRACK, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(6035), 1, + ACTIONS(10020), 1, + anon_sym_DQUOTE, + STATE(6212), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6277), 1, sym_comment, - STATE(6799), 1, - sym_val_list, - STATE(7128), 1, - aux_sym_val_table_repeat1, - [218095] = 7, - ACTIONS(247), 1, + ACTIONS(9917), 2, + sym__escaped_str_content, + sym_escape_sequence, + [219743] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(8900), 1, - anon_sym_LBRACK, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(6036), 1, + ACTIONS(10022), 1, + anon_sym_DQUOTE, + STATE(6212), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6278), 1, sym_comment, - STATE(6803), 1, - sym_val_list, - STATE(7131), 1, - aux_sym_val_table_repeat1, - [218117] = 7, - ACTIONS(247), 1, + ACTIONS(9917), 2, + sym__escaped_str_content, + sym_escape_sequence, + [219760] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(8900), 1, - anon_sym_LBRACK, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(6037), 1, + STATE(6279), 1, sym_comment, - STATE(6815), 1, - sym_val_list, - STATE(7135), 1, - aux_sym_val_table_repeat1, - [218139] = 7, - ACTIONS(247), 1, + ACTIONS(1070), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(1072), 2, + anon_sym_DOT, + sym__entry_separator, + [219775] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(8900), 1, - anon_sym_LBRACK, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(6038), 1, + STATE(6280), 1, sym_comment, - STATE(6821), 1, - sym_val_list, - STATE(7137), 1, - aux_sym_val_table_repeat1, - [218161] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3705), 1, + ACTIONS(10024), 4, sym__newline, - ACTIONS(8900), 1, - anon_sym_LBRACK, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(6039), 1, - sym_comment, - STATE(6829), 1, - sym_val_list, - STATE(7141), 1, - aux_sym_val_table_repeat1, - [218183] = 7, - ACTIONS(247), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [219788] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(8900), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(9921), 1, anon_sym_LBRACK, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(6040), 1, + ACTIONS(10026), 1, + anon_sym_RBRACK, + STATE(3400), 1, + aux_sym__multiple_types_repeat1, + STATE(6281), 1, sym_comment, - STATE(6835), 1, - sym_val_list, - STATE(7143), 1, - aux_sym_val_table_repeat1, - [218205] = 7, - ACTIONS(247), 1, + [219807] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(8900), 1, - anon_sym_LBRACK, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(6041), 1, + STATE(6282), 1, sym_comment, - STATE(6848), 1, - sym_val_list, - STATE(7147), 1, - aux_sym_val_table_repeat1, - [218227] = 7, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3705), 1, + ACTIONS(10028), 4, sym__newline, - ACTIONS(8900), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [219820] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(9921), 1, anon_sym_LBRACK, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(6042), 1, + ACTIONS(10030), 1, + anon_sym_RBRACK, + STATE(3400), 1, + aux_sym__multiple_types_repeat1, + STATE(6283), 1, sym_comment, - STATE(6853), 1, - sym_val_list, - STATE(7150), 1, - aux_sym_val_table_repeat1, - [218249] = 7, - ACTIONS(247), 1, + [219839] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(8900), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(9921), 1, anon_sym_LBRACK, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(6043), 1, + ACTIONS(10032), 1, + anon_sym_RBRACK, + STATE(3400), 1, + aux_sym__multiple_types_repeat1, + STATE(6284), 1, sym_comment, - STATE(6864), 1, - sym_val_list, - STATE(7155), 1, - aux_sym_val_table_repeat1, - [218271] = 7, - ACTIONS(247), 1, + [219858] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(8900), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(9921), 1, anon_sym_LBRACK, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(6044), 1, + ACTIONS(10034), 1, + anon_sym_RBRACK, + STATE(3400), 1, + aux_sym__multiple_types_repeat1, + STATE(6285), 1, sym_comment, - STATE(6869), 1, - sym_val_list, - STATE(7158), 1, - aux_sym_val_table_repeat1, - [218293] = 6, + [219877] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1981), 1, - anon_sym_RBRACE, - ACTIONS(1987), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9022), 1, - anon_sym_DOT_DOT2, - STATE(6045), 1, + ACTIONS(9921), 1, + anon_sym_LBRACK, + ACTIONS(10036), 1, + anon_sym_RBRACK, + STATE(3400), 1, + aux_sym__multiple_types_repeat1, + STATE(6286), 1, sym_comment, - ACTIONS(9024), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [218313] = 4, - ACTIONS(247), 1, + [219896] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4988), 1, - anon_sym_DASH, - STATE(6046), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(9921), 1, + anon_sym_LBRACK, + ACTIONS(10038), 1, + anon_sym_RBRACK, + STATE(3400), 1, + aux_sym__multiple_types_repeat1, + STATE(6287), 1, sym_comment, - ACTIONS(4986), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [218329] = 7, + [219915] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7606), 1, - sym__newline, - ACTIONS(7608), 1, - sym__space, - STATE(4684), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(5946), 1, - aux_sym_ctrl_do_parenthesized_repeat1, - STATE(6047), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(9921), 1, + anon_sym_LBRACK, + ACTIONS(10040), 1, + anon_sym_RBRACK, + STATE(3400), 1, + aux_sym__multiple_types_repeat1, + STATE(6288), 1, sym_comment, - STATE(7291), 1, - sym__flags_parenthesized, - [218351] = 7, + [219934] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9414), 1, - anon_sym_LPAREN, - ACTIONS(9416), 1, - sym_unescaped_interpolated_content, - ACTIONS(9600), 1, - anon_sym_SQUOTE, - STATE(6048), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(9921), 1, + anon_sym_LBRACK, + ACTIONS(10042), 1, + anon_sym_RBRACK, + STATE(3400), 1, + aux_sym__multiple_types_repeat1, + STATE(6289), 1, sym_comment, - STATE(6052), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(7176), 1, - sym_expr_interpolated, - [218373] = 5, - ACTIONS(247), 1, + [219953] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8804), 1, - anon_sym_LBRACE, - STATE(6049), 1, + STATE(6290), 1, sym_comment, - STATE(6812), 1, - sym_val_record, - ACTIONS(8977), 3, - ts_builtin_sym_end, + ACTIONS(10044), 4, sym__newline, anon_sym_SEMI, - [218391] = 7, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [219966] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8231), 1, - sym_identifier, - ACTIONS(9050), 1, - anon_sym_DOLLAR, - STATE(5366), 1, - sym_val_variable, - STATE(5970), 1, - sym__variable_name, - STATE(6050), 1, + STATE(6291), 1, sym_comment, - STATE(6483), 1, - sym__assignment_pattern, - [218413] = 6, - ACTIONS(247), 1, + ACTIONS(10046), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [219979] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8211), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8213), 1, - aux_sym__immediate_decimal_token5, - STATE(6051), 1, + ACTIONS(1703), 1, + aux_sym_unquoted_token2, + STATE(6292), 1, sym_comment, - STATE(7319), 1, - sym__immediate_decimal, - ACTIONS(8209), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [218433] = 7, + ACTIONS(1705), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [219994] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9414), 1, + ACTIONS(10048), 1, anon_sym_LPAREN, - ACTIONS(9416), 1, - sym_unescaped_interpolated_content, - ACTIONS(9602), 1, - anon_sym_SQUOTE, - STATE(5940), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6052), 1, + STATE(6293), 1, sym_comment, - STATE(7176), 1, - sym_expr_interpolated, - [218455] = 5, + ACTIONS(10050), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [220009] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9378), 1, - aux_sym__immediate_decimal_token2, - STATE(6053), 1, + ACTIONS(10052), 1, + anon_sym_LPAREN, + STATE(6294), 1, sym_comment, - ACTIONS(1667), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1669), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [218473] = 7, + ACTIONS(10054), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [220024] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9414), 1, - anon_sym_LPAREN, - ACTIONS(9416), 1, - sym_unescaped_interpolated_content, - ACTIONS(9604), 1, - anon_sym_SQUOTE, - STATE(5940), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6054), 1, + ACTIONS(10056), 1, + anon_sym_DQUOTE, + STATE(6212), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6295), 1, sym_comment, - STATE(7176), 1, - sym_expr_interpolated, - [218495] = 5, - ACTIONS(247), 1, + ACTIONS(9917), 2, + sym__escaped_str_content, + sym_escape_sequence, + [220041] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(9606), 1, - anon_sym_DOT_DOT2, - STATE(6055), 1, + STATE(6296), 1, sym_comment, - ACTIONS(2025), 2, + ACTIONS(5592), 4, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(9608), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [218513] = 6, - ACTIONS(247), 1, + [220054] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1790), 1, - anon_sym_LPAREN2, - ACTIONS(1798), 1, + STATE(6297), 1, + sym_comment, + ACTIONS(10046), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [220067] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1769), 1, aux_sym_unquoted_token2, - ACTIONS(9610), 1, - anon_sym_DOT_DOT2, - STATE(6056), 1, + STATE(6298), 1, sym_comment, - ACTIONS(9612), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [218533] = 5, - ACTIONS(247), 1, + ACTIONS(1771), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [220082] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(9614), 1, - anon_sym_DOT_DOT2, - STATE(6057), 1, + STATE(6299), 1, sym_comment, - ACTIONS(1786), 2, + ACTIONS(5596), 4, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(9616), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [218551] = 5, - ACTIONS(247), 1, + [220095] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(9618), 1, - anon_sym_DOT_DOT2, - STATE(6058), 1, + STATE(6300), 1, sym_comment, - ACTIONS(1796), 2, + ACTIONS(10058), 4, sym__newline, - anon_sym_LBRACE, - ACTIONS(9620), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [218569] = 5, - ACTIONS(247), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [220108] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(9622), 1, - anon_sym_DOT_DOT2, - STATE(6059), 1, + STATE(6301), 1, sym_comment, - ACTIONS(1997), 2, + ACTIONS(10060), 4, sym__newline, - anon_sym_LBRACE, - ACTIONS(9624), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [218587] = 5, - ACTIONS(247), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [220121] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(9626), 1, - anon_sym_DOT_DOT2, - STATE(6060), 1, + STATE(6302), 1, sym_comment, - ACTIONS(2005), 2, - sym__newline, - anon_sym_LBRACE, - ACTIONS(9628), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [218605] = 5, - ACTIONS(247), 1, + ACTIONS(10062), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [220134] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(9630), 1, - anon_sym_DOT_DOT2, - STATE(6061), 1, + STATE(6303), 1, sym_comment, - ACTIONS(2013), 2, + ACTIONS(10064), 4, sym__newline, - anon_sym_LBRACE, - ACTIONS(9632), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [218623] = 7, - ACTIONS(247), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [220147] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1645), 1, - aux_sym_record_entry_token1, - ACTIONS(9540), 1, - anon_sym_DOT, - STATE(1371), 1, - sym_cell_path, - STATE(6062), 1, + ACTIONS(10066), 1, + anon_sym_DQUOTE, + STATE(6304), 1, sym_comment, - STATE(6538), 1, - aux_sym_cell_path_repeat1, - STATE(6916), 1, - sym_path, - [218645] = 6, + STATE(6309), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9917), 2, + sym__escaped_str_content, + sym_escape_sequence, + [220164] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1669), 1, + ACTIONS(1630), 1, + anon_sym_LPAREN2, + ACTIONS(2307), 1, + anon_sym_RBRACE, + ACTIONS(2309), 1, sym__entry_separator, - ACTIONS(8419), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(9634), 1, - anon_sym_DOT, - STATE(6063), 1, + STATE(6305), 1, sym_comment, - ACTIONS(1667), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [218665] = 7, - ACTIONS(247), 1, + STATE(7774), 1, + sym__expr_parenthesized_immediate, + [220183] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8231), 1, - sym_identifier, - ACTIONS(9050), 1, - anon_sym_DOLLAR, - STATE(5366), 1, - sym_val_variable, - STATE(5929), 1, - sym__variable_name, - STATE(6064), 1, + ACTIONS(1826), 1, + aux_sym_unquoted_token2, + STATE(6306), 1, sym_comment, - STATE(6745), 1, - sym__assignment_pattern_parenthesized, - [218687] = 7, - ACTIONS(247), 1, + ACTIONS(1828), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [220198] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1630), 1, + anon_sym_LPAREN2, + ACTIONS(2311), 1, + anon_sym_RBRACE, + ACTIONS(2313), 1, + sym__entry_separator, + STATE(6307), 1, + sym_comment, + STATE(7774), 1, + sym__expr_parenthesized_immediate, + [220217] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, + STATE(6308), 1, + sym_comment, + ACTIONS(10068), 4, sym__newline, - ACTIONS(8900), 1, - anon_sym_LBRACK, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(6065), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [220230] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10070), 1, + anon_sym_DQUOTE, + STATE(6212), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6309), 1, sym_comment, - STATE(6880), 1, - sym_val_list, - STATE(6886), 1, - aux_sym_val_table_repeat1, - [218709] = 7, - ACTIONS(247), 1, + ACTIONS(9917), 2, + sym__escaped_str_content, + sym_escape_sequence, + [220247] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2293), 1, + anon_sym_RBRACE, + ACTIONS(2295), 1, + anon_sym_LPAREN2, + ACTIONS(2297), 1, + sym__entry_separator, + ACTIONS(2299), 1, + aux_sym__unquoted_in_record_token4, + STATE(6310), 1, + sym_comment, + [220266] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8231), 1, + ACTIONS(4937), 1, sym_identifier, - ACTIONS(9050), 1, + ACTIONS(4939), 1, anon_sym_DOLLAR, - STATE(5366), 1, - sym_val_variable, - STATE(5952), 1, - sym__variable_name, - STATE(6066), 1, + ACTIONS(10072), 1, + sym_long_flag_identifier, + ACTIONS(10074), 1, + anon_sym_EQ2, + STATE(6311), 1, sym_comment, - STATE(6708), 1, - sym__assignment_pattern, - [218731] = 5, - ACTIONS(247), 1, + [220285] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1560), 1, - anon_sym_DASH, - ACTIONS(8350), 1, - aux_sym_unquoted_token2, - STATE(6067), 1, + ACTIONS(2295), 1, + anon_sym_LPAREN2, + ACTIONS(2299), 1, + aux_sym__unquoted_in_record_token4, + ACTIONS(2303), 1, + anon_sym_RBRACE, + ACTIONS(2305), 1, + sym__entry_separator, + STATE(6312), 1, sym_comment, - ACTIONS(1572), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [218749] = 5, + [220304] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(6313), 1, + sym_comment, + ACTIONS(10076), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [220317] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(9937), 1, + anon_sym_LBRACK, + ACTIONS(9939), 1, + anon_sym_LPAREN, + STATE(5846), 1, + sym_parameter_parens, + STATE(5878), 1, + sym_parameter_bracks, + STATE(6314), 1, + sym_comment, + [220336] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1030), 1, - anon_sym_DOT, - ACTIONS(9636), 1, - anon_sym_QMARK2, - STATE(6068), 1, + STATE(6315), 1, sym_comment, - ACTIONS(1028), 3, + ACTIONS(2289), 2, anon_sym_RBRACK, + aux_sym__unquoted_in_list_token4, + ACTIONS(2291), 2, + anon_sym_LPAREN2, sym__entry_separator, - sym__table_head_separator, - [218767] = 7, + [220351] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9414), 1, - anon_sym_LPAREN, - ACTIONS(9416), 1, - sym_unescaped_interpolated_content, - ACTIONS(9638), 1, - anon_sym_SQUOTE, - STATE(5992), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6069), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(9921), 1, + anon_sym_LBRACK, + ACTIONS(10078), 1, + anon_sym_RBRACK, + STATE(3400), 1, + aux_sym__multiple_types_repeat1, + STATE(6316), 1, sym_comment, - STATE(7176), 1, - sym_expr_interpolated, - [218789] = 6, + [220370] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5441), 1, - anon_sym_LPAREN2, - ACTIONS(7766), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(7768), 1, + ACTIONS(9921), 1, + anon_sym_LBRACK, + ACTIONS(10080), 1, anon_sym_RBRACK, - STATE(6070), 1, + STATE(3400), 1, + aux_sym__multiple_types_repeat1, + STATE(6317), 1, sym_comment, - STATE(7567), 1, - sym__expr_parenthesized_immediate, - [218808] = 6, + [220389] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9642), 1, + ACTIONS(10082), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6071), 1, + STATE(6318), 1, sym_comment, - [218827] = 6, + [220408] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9644), 1, + ACTIONS(10084), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6072), 1, + STATE(6319), 1, sym_comment, - [218846] = 6, + [220427] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10086), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6073), 1, + STATE(6320), 1, sym_comment, - [218865] = 6, + [220446] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9648), 1, + ACTIONS(10088), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6074), 1, + STATE(6321), 1, sym_comment, - [218884] = 6, + [220465] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9650), 1, + ACTIONS(10090), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6075), 1, + STATE(6322), 1, sym_comment, - [218903] = 6, + [220484] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5441), 1, - anon_sym_LPAREN2, - ACTIONS(7577), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(7579), 1, + ACTIONS(9921), 1, + anon_sym_LBRACK, + ACTIONS(10092), 1, anon_sym_RBRACK, - STATE(6076), 1, + STATE(3400), 1, + aux_sym__multiple_types_repeat1, + STATE(6323), 1, sym_comment, - STATE(7567), 1, - sym__expr_parenthesized_immediate, - [218922] = 3, - ACTIONS(247), 1, + [220503] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6077), 1, + STATE(6324), 1, sym_comment, - ACTIONS(9652), 4, + ACTIONS(10094), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [218935] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1667), 1, - aux_sym_unquoted_token2, - ACTIONS(9534), 1, - aux_sym__immediate_decimal_token2, - STATE(6078), 1, - sym_comment, - ACTIONS(1669), 2, - anon_sym_LBRACE, - anon_sym_LPAREN2, - [218952] = 5, + [220516] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9654), 1, + ACTIONS(10096), 1, anon_sym_DQUOTE, - STATE(6079), 1, + STATE(6325), 1, sym_comment, - STATE(6085), 1, + STATE(6328), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [218969] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1518), 1, - aux_sym_cmd_identifier_token41, - STATE(6080), 1, - sym_comment, - ACTIONS(1520), 3, - sym_filesize_unit, - sym_duration_unit, - aux_sym_record_entry_token1, - [218984] = 3, - ACTIONS(247), 1, + [220533] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6081), 1, + STATE(6326), 1, sym_comment, - ACTIONS(9658), 4, + ACTIONS(10098), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [218997] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2239), 1, - anon_sym_LPAREN2, - ACTIONS(2243), 1, - aux_sym__unquoted_in_list_token4, - ACTIONS(2245), 1, - anon_sym_RBRACK, - ACTIONS(2247), 1, - sym__entry_separator, - STATE(6082), 1, - sym_comment, - [219016] = 3, - ACTIONS(247), 1, + [220546] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6083), 1, + STATE(6327), 1, sym_comment, - ACTIONS(9660), 4, + ACTIONS(10100), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [219029] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1552), 1, - aux_sym_unquoted_token2, - STATE(6084), 1, - sym_comment, - ACTIONS(2295), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [219044] = 5, + [220559] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9662), 1, + ACTIONS(10102), 1, anon_sym_DQUOTE, - STATE(6085), 1, - sym_comment, - STATE(6608), 1, + STATE(6212), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + STATE(6328), 1, + sym_comment, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [219061] = 5, + [220576] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2227), 1, - aux_sym_unquoted_token4, - ACTIONS(5895), 1, - anon_sym_PIPE, - STATE(6086), 1, + ACTIONS(1076), 1, + anon_sym_DOT, + STATE(6329), 1, sym_comment, - ACTIONS(5754), 2, - anon_sym_if, - anon_sym_EQ_GT, - [219078] = 5, - ACTIONS(247), 1, + ACTIONS(1074), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [220591] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1657), 1, - ts_builtin_sym_end, - STATE(261), 1, - aux_sym__block_body_repeat1, - STATE(6087), 1, + STATE(6330), 1, sym_comment, - ACTIONS(33), 2, + ACTIONS(10100), 4, sym__newline, anon_sym_SEMI, - [219095] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9664), 1, - anon_sym_use, - ACTIONS(9666), 1, - anon_sym_list, - ACTIONS(9668), 1, - anon_sym_hide, - ACTIONS(9670), 1, - anon_sym_new, - STATE(6088), 1, - sym_comment, - [219114] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [220604] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9672), 1, + ACTIONS(10104), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6089), 1, + STATE(6331), 1, sym_comment, - [219133] = 3, - ACTIONS(247), 1, + [220623] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6090), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(9921), 1, + anon_sym_LBRACK, + ACTIONS(10106), 1, + anon_sym_RBRACK, + STATE(3400), 1, + aux_sym__multiple_types_repeat1, + STATE(6332), 1, sym_comment, - ACTIONS(9674), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [219146] = 6, + [220642] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9676), 1, + ACTIONS(10108), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6091), 1, + STATE(6333), 1, sym_comment, - [219165] = 6, + [220661] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9678), 1, + ACTIONS(10110), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6092), 1, + STATE(6334), 1, sym_comment, - [219184] = 6, + [220680] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9680), 1, + ACTIONS(10112), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6093), 1, + STATE(6335), 1, sym_comment, - [219203] = 6, + [220699] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9682), 1, + ACTIONS(10114), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6094), 1, + STATE(6336), 1, sym_comment, - [219222] = 6, + [220718] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9684), 1, + ACTIONS(10116), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6095), 1, + STATE(6337), 1, sym_comment, - [219241] = 6, + [220737] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9686), 1, + ACTIONS(10118), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6096), 1, + STATE(6338), 1, + sym_comment, + [220756] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4937), 1, + sym__newline, + ACTIONS(4939), 1, + sym__space, + ACTIONS(10120), 1, + sym_long_flag_identifier, + ACTIONS(10122), 1, + anon_sym_EQ2, + STATE(6339), 1, + sym_comment, + [220775] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(6340), 1, + sym_comment, + ACTIONS(10124), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [220788] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10126), 1, + anon_sym_DQUOTE, + STATE(6341), 1, + sym_comment, + STATE(6343), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9917), 2, + sym__escaped_str_content, + sym_escape_sequence, + [220805] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1526), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1788), 1, + anon_sym_RBRACK, + ACTIONS(1790), 1, + anon_sym_LPAREN2, + ACTIONS(1796), 1, + sym__entry_separator, + STATE(6342), 1, + sym_comment, + [220824] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10128), 1, + anon_sym_DQUOTE, + STATE(6212), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6343), 1, sym_comment, - [219260] = 6, + ACTIONS(9917), 2, + sym__escaped_str_content, + sym_escape_sequence, + [220841] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9688), 1, + ACTIONS(10130), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6097), 1, + STATE(6344), 1, sym_comment, - [219279] = 6, + [220860] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9690), 1, + ACTIONS(10132), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6098), 1, + STATE(6345), 1, sym_comment, - [219298] = 3, - ACTIONS(247), 1, + [220879] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6099), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(9921), 1, + anon_sym_LBRACK, + ACTIONS(10134), 1, + anon_sym_RBRACK, + STATE(3400), 1, + aux_sym__multiple_types_repeat1, + STATE(6346), 1, sym_comment, - ACTIONS(9692), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [219311] = 6, + [220898] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9694), 1, + ACTIONS(10136), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6100), 1, + STATE(6347), 1, sym_comment, - [219330] = 3, - ACTIONS(247), 1, + [220917] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6101), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(9921), 1, + anon_sym_LBRACK, + ACTIONS(10138), 1, + anon_sym_RBRACK, + STATE(3400), 1, + aux_sym__multiple_types_repeat1, + STATE(6348), 1, sym_comment, - ACTIONS(9696), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [219343] = 5, + [220936] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9698), 1, - anon_sym_DQUOTE, - STATE(6102), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(9921), 1, + anon_sym_LBRACK, + ACTIONS(10140), 1, + anon_sym_RBRACK, + STATE(3400), 1, + aux_sym__multiple_types_repeat1, + STATE(6349), 1, sym_comment, - STATE(6107), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, - sym__escaped_str_content, - sym_escape_sequence, - [219360] = 6, + [220955] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9700), 1, + ACTIONS(10142), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6103), 1, + STATE(6350), 1, sym_comment, - [219379] = 6, + [220974] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9702), 1, + ACTIONS(10144), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6104), 1, + STATE(6351), 1, sym_comment, - [219398] = 3, - ACTIONS(247), 1, + [220993] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6105), 1, + STATE(6352), 1, sym_comment, - ACTIONS(9704), 4, + ACTIONS(10146), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [219411] = 6, - ACTIONS(247), 1, + [221006] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(9706), 1, - anon_sym_EQ, - ACTIONS(9708), 1, - anon_sym_COLON, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(6106), 1, + STATE(6353), 1, sym_comment, - [219430] = 5, + ACTIONS(10148), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [221019] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9710), 1, + ACTIONS(10150), 1, anon_sym_DQUOTE, - STATE(6107), 1, + STATE(6354), 1, sym_comment, - STATE(6608), 1, + STATE(6355), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [219447] = 6, - ACTIONS(247), 1, + [221036] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(6055), 1, + ACTIONS(10152), 1, + anon_sym_DQUOTE, + STATE(6212), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6355), 1, + sym_comment, + ACTIONS(9917), 2, + sym__escaped_str_content, + sym_escape_sequence, + [221053] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(9400), 1, anon_sym_LBRACE, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(4735), 1, + STATE(4876), 1, + sym__blosure, + STATE(4956), 1, sym_block, - STATE(6108), 1, + STATE(4958), 1, + sym_val_closure, + STATE(6356), 1, sym_comment, - [219466] = 6, + [221072] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1494), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(1778), 1, - anon_sym_RBRACE, - ACTIONS(1780), 1, + ACTIONS(5518), 1, anon_sym_LPAREN2, - ACTIONS(1786), 1, + ACTIONS(5885), 1, + anon_sym_RBRACK, + ACTIONS(5891), 1, sym__entry_separator, - STATE(6109), 1, + STATE(6357), 1, sym_comment, - [219485] = 3, - ACTIONS(247), 1, + STATE(7593), 1, + sym__expr_parenthesized_immediate, + [221091] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6110), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(9921), 1, + anon_sym_LBRACK, + ACTIONS(10154), 1, + anon_sym_RBRACK, + STATE(3400), 1, + aux_sym__multiple_types_repeat1, + STATE(6358), 1, + sym_comment, + [221110] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(9921), 1, + anon_sym_LBRACK, + ACTIONS(10156), 1, + anon_sym_RBRACK, + STATE(3400), 1, + aux_sym__multiple_types_repeat1, + STATE(6359), 1, + sym_comment, + [221129] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(9921), 1, + anon_sym_LBRACK, + ACTIONS(10158), 1, + anon_sym_RBRACK, + STATE(3400), 1, + aux_sym__multiple_types_repeat1, + STATE(6360), 1, + sym_comment, + [221148] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(9921), 1, + anon_sym_LBRACK, + ACTIONS(10160), 1, + anon_sym_RBRACK, + STATE(3400), 1, + aux_sym__multiple_types_repeat1, + STATE(6361), 1, + sym_comment, + [221167] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(9921), 1, + anon_sym_LBRACK, + ACTIONS(10162), 1, + anon_sym_RBRACK, + STATE(3400), 1, + aux_sym__multiple_types_repeat1, + STATE(6362), 1, + sym_comment, + [221186] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(9921), 1, + anon_sym_LBRACK, + ACTIONS(10164), 1, + anon_sym_RBRACK, + STATE(3400), 1, + aux_sym__multiple_types_repeat1, + STATE(6363), 1, + sym_comment, + [221205] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(9921), 1, + anon_sym_LBRACK, + ACTIONS(10166), 1, + anon_sym_RBRACK, + STATE(3400), 1, + aux_sym__multiple_types_repeat1, + STATE(6364), 1, + sym_comment, + [221224] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(9921), 1, + anon_sym_LBRACK, + ACTIONS(10168), 1, + anon_sym_RBRACK, + STATE(3400), 1, + aux_sym__multiple_types_repeat1, + STATE(6365), 1, + sym_comment, + [221243] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(6366), 1, sym_comment, - ACTIONS(9712), 4, + ACTIONS(10170), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [219498] = 5, + [221256] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(6367), 1, + sym_comment, + ACTIONS(10172), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [221269] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1596), 1, + aux_sym_cmd_identifier_token41, + STATE(6368), 1, + sym_comment, + ACTIONS(1598), 3, + sym_filesize_unit, + sym_duration_unit, + aux_sym_record_entry_token1, + [221284] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(605), 1, + ts_builtin_sym_end, + STATE(286), 1, + aux_sym__block_body_repeat1, + STATE(6369), 1, + sym_comment, + ACTIONS(33), 2, + sym__newline, + anon_sym_SEMI, + [221301] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2241), 1, - anon_sym_PIPE, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - STATE(6111), 1, + ACTIONS(10174), 1, + anon_sym_DQUOTE, + STATE(6212), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6370), 1, sym_comment, - ACTIONS(2237), 2, - anon_sym_if, - anon_sym_EQ_GT, - [219515] = 3, - ACTIONS(247), 1, + ACTIONS(9917), 2, + sym__escaped_str_content, + sym_escape_sequence, + [221318] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6112), 1, + STATE(6371), 1, sym_comment, - ACTIONS(9714), 4, + ACTIONS(10176), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [219528] = 6, + [221331] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9716), 1, + ACTIONS(10178), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6113), 1, + STATE(6372), 1, sym_comment, - [219547] = 6, + [221350] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6373), 1, + sym_comment, + ACTIONS(2289), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token4, + ACTIONS(2291), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [221365] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9718), 1, + ACTIONS(10180), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6114), 1, + STATE(6374), 1, sym_comment, - [219566] = 6, + [221384] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9720), 1, + ACTIONS(10182), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6115), 1, + STATE(6375), 1, sym_comment, - [219585] = 6, + [221403] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9722), 1, + ACTIONS(10184), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6116), 1, + STATE(6376), 1, sym_comment, - [219604] = 6, + [221422] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9724), 1, + ACTIONS(10186), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6117), 1, + STATE(6377), 1, sym_comment, - [219623] = 6, + [221441] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9726), 1, + ACTIONS(10188), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6118), 1, + STATE(6378), 1, sym_comment, - [219642] = 6, + [221460] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9728), 1, + ACTIONS(10190), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6119), 1, + STATE(6379), 1, sym_comment, - [219661] = 6, + [221479] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9730), 1, + ACTIONS(10192), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6120), 1, + STATE(6380), 1, sym_comment, - [219680] = 4, + [221498] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(6121), 1, - sym_comment, - ACTIONS(2253), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token4, - ACTIONS(2255), 2, - anon_sym_LPAREN2, + ACTIONS(6494), 1, sym__entry_separator, - [219695] = 3, - ACTIONS(247), 1, + ACTIONS(9921), 1, + anon_sym_LBRACK, + ACTIONS(10194), 1, + anon_sym_RBRACK, + STATE(3400), 1, + aux_sym__multiple_types_repeat1, + STATE(6381), 1, + sym_comment, + [221517] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6122), 1, + ACTIONS(10196), 1, + anon_sym_RBRACK, + STATE(5250), 1, + aux_sym_parameter_repeat2, + STATE(6382), 1, sym_comment, - ACTIONS(9732), 4, + ACTIONS(2591), 2, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [219708] = 3, - ACTIONS(247), 1, + anon_sym_COMMA, + [221534] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6123), 1, + STATE(6383), 1, sym_comment, - ACTIONS(9734), 4, + ACTIONS(10198), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [219721] = 3, - ACTIONS(247), 1, + [221547] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6124), 1, + ACTIONS(10200), 1, + anon_sym_DQUOTE, + STATE(6384), 1, sym_comment, - ACTIONS(9736), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [219734] = 5, + STATE(6385), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9917), 2, + sym__escaped_str_content, + sym_escape_sequence, + [221564] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9738), 1, + ACTIONS(10202), 1, anon_sym_DQUOTE, - STATE(6125), 1, - sym_comment, - STATE(6130), 1, + STATE(6212), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + STATE(6385), 1, + sym_comment, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [219751] = 5, - ACTIONS(247), 1, + [221581] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1572), 1, - aux_sym_record_entry_token1, - ACTIONS(9740), 1, - aux_sym_cmd_identifier_token41, - STATE(6126), 1, + ACTIONS(4842), 1, + aux_sym_unquoted_token2, + STATE(6386), 1, sym_comment, - ACTIONS(9742), 2, - sym_filesize_unit, - sym_duration_unit, - [219768] = 4, + ACTIONS(1640), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [221596] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1052), 1, - anon_sym_DOT, - STATE(6127), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(9921), 1, + anon_sym_LBRACK, + ACTIONS(10204), 1, + anon_sym_RBRACK, + STATE(3400), 1, + aux_sym__multiple_types_repeat1, + STATE(6387), 1, sym_comment, - ACTIONS(1050), 3, + [221615] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(9921), 1, + anon_sym_LBRACK, + ACTIONS(10206), 1, anon_sym_RBRACK, + STATE(3400), 1, + aux_sym__multiple_types_repeat1, + STATE(6388), 1, + sym_comment, + [221634] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6494), 1, sym__entry_separator, - sym__table_head_separator, - [219783] = 4, + ACTIONS(9921), 1, + anon_sym_LBRACK, + ACTIONS(10208), 1, + anon_sym_RBRACK, + STATE(3400), 1, + aux_sym__multiple_types_repeat1, + STATE(6389), 1, + sym_comment, + [221653] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(9921), 1, + anon_sym_LBRACK, + ACTIONS(10210), 1, + anon_sym_RBRACK, + STATE(3400), 1, + aux_sym__multiple_types_repeat1, + STATE(6390), 1, + sym_comment, + [221672] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(9921), 1, + anon_sym_LBRACK, + ACTIONS(10212), 1, + anon_sym_RBRACK, + STATE(3400), 1, + aux_sym__multiple_types_repeat1, + STATE(6391), 1, + sym_comment, + [221691] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(9921), 1, + anon_sym_LBRACK, + ACTIONS(10214), 1, + anon_sym_RBRACK, + STATE(3400), 1, + aux_sym__multiple_types_repeat1, + STATE(6392), 1, + sym_comment, + [221710] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(9921), 1, + anon_sym_LBRACK, + ACTIONS(10216), 1, + anon_sym_RBRACK, + STATE(3400), 1, + aux_sym__multiple_types_repeat1, + STATE(6393), 1, + sym_comment, + [221729] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(9921), 1, + anon_sym_LBRACK, + ACTIONS(10218), 1, + anon_sym_RBRACK, + STATE(3400), 1, + aux_sym__multiple_types_repeat1, + STATE(6394), 1, + sym_comment, + [221748] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(6395), 1, + sym_comment, + ACTIONS(10220), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [221761] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10222), 1, + anon_sym_DQUOTE, + STATE(6396), 1, + sym_comment, + STATE(6401), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9917), 2, + sym__escaped_str_content, + sym_escape_sequence, + [221778] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(6397), 1, + sym_comment, + ACTIONS(10224), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [221791] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(6398), 1, + sym_comment, + ACTIONS(10226), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [221804] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2255), 1, - anon_sym_PIPE, - STATE(6128), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(9921), 1, + anon_sym_LBRACK, + ACTIONS(10228), 1, + anon_sym_RBRACK, + STATE(3400), 1, + aux_sym__multiple_types_repeat1, + STATE(6399), 1, sym_comment, - ACTIONS(2253), 3, - anon_sym_if, - anon_sym_EQ_GT, - aux_sym_unquoted_token4, - [219798] = 3, - ACTIONS(247), 1, + [221823] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6129), 1, + STATE(6400), 1, sym_comment, - ACTIONS(9744), 4, + ACTIONS(10226), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [219811] = 5, + [221836] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9746), 1, + ACTIONS(10230), 1, anon_sym_DQUOTE, - STATE(6130), 1, - sym_comment, - STATE(6608), 1, + STATE(6212), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + STATE(6401), 1, + sym_comment, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [219828] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1653), 1, - aux_sym_cmd_identifier_token41, - STATE(6131), 1, - sym_comment, - ACTIONS(1655), 3, - sym_filesize_unit, - sym_duration_unit, - aux_sym_record_entry_token1, - [219843] = 3, - ACTIONS(247), 1, + [221853] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6132), 1, + STATE(6402), 1, sym_comment, - ACTIONS(9748), 4, + ACTIONS(10232), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [219856] = 4, - ACTIONS(3), 1, + [221866] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1056), 1, - anon_sym_DOT, - STATE(6133), 1, + ACTIONS(1711), 1, + aux_sym_cmd_identifier_token41, + STATE(6403), 1, sym_comment, - ACTIONS(1054), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [219871] = 6, + ACTIONS(1713), 3, + sym_filesize_unit, + sym_duration_unit, + aux_sym_record_entry_token1, + [221881] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9750), 1, + ACTIONS(10234), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6134), 1, + STATE(6404), 1, sym_comment, - [219890] = 5, + [221900] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - ACTIONS(2247), 1, - anon_sym_PIPE, - STATE(6135), 1, - sym_comment, - ACTIONS(2245), 2, - anon_sym_if, - anon_sym_EQ_GT, - [219907] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6136), 1, + ACTIONS(10236), 1, + anon_sym_LPAREN, + STATE(6405), 1, sym_comment, - ACTIONS(9752), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [219920] = 6, + ACTIONS(10238), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [221915] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9754), 1, + ACTIONS(10240), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6137), 1, + STATE(6406), 1, sym_comment, - [219939] = 6, + [221934] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9756), 1, + ACTIONS(10242), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6138), 1, + STATE(6407), 1, sym_comment, - [219958] = 6, + [221953] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9758), 1, + ACTIONS(10244), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6139), 1, + STATE(6408), 1, sym_comment, - [219977] = 6, + [221972] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9760), 1, + ACTIONS(10246), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6140), 1, + STATE(6409), 1, sym_comment, - [219996] = 6, + [221991] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9762), 1, + ACTIONS(10248), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6141), 1, + STATE(6410), 1, sym_comment, - [220015] = 6, + [222010] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9764), 1, + ACTIONS(10250), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6142), 1, + STATE(6411), 1, sym_comment, - [220034] = 6, + [222029] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9766), 1, + ACTIONS(10252), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6143), 1, + STATE(6412), 1, sym_comment, - [220053] = 6, + [222048] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9768), 1, + ACTIONS(10254), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6144), 1, - sym_comment, - [220072] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6145), 1, + STATE(6413), 1, sym_comment, - ACTIONS(9752), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [220085] = 3, - ACTIONS(247), 1, + [222067] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6146), 1, + ACTIONS(1640), 1, + aux_sym_record_entry_token1, + ACTIONS(10256), 1, + aux_sym_cmd_identifier_token41, + STATE(6414), 1, sym_comment, - ACTIONS(9770), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [220098] = 3, - ACTIONS(247), 1, + ACTIONS(10258), 2, + sym_filesize_unit, + sym_duration_unit, + [222084] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6147), 1, + STATE(6415), 1, sym_comment, - ACTIONS(9772), 4, + ACTIONS(10260), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [220111] = 3, - ACTIONS(247), 1, + [222097] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6148), 1, + STATE(6416), 1, sym_comment, - ACTIONS(9774), 4, + ACTIONS(10262), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [220124] = 5, + [222110] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(6417), 1, + sym_comment, + ACTIONS(10264), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [222123] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9776), 1, + ACTIONS(10266), 1, anon_sym_DQUOTE, - STATE(6149), 1, + STATE(6418), 1, sym_comment, - STATE(6154), 1, + STATE(6422), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [220141] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6150), 1, - sym_comment, - ACTIONS(9772), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [220154] = 3, - ACTIONS(247), 1, + [222140] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6151), 1, + STATE(6419), 1, sym_comment, - ACTIONS(6190), 4, + ACTIONS(6247), 4, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACE, - [220167] = 3, - ACTIONS(247), 1, + [222153] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6152), 1, + STATE(6420), 1, sym_comment, - ACTIONS(9778), 4, + ACTIONS(10268), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [220180] = 6, - ACTIONS(247), 1, + [222166] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(9780), 1, + ACTIONS(10270), 1, anon_sym_LBRACK, - ACTIONS(9782), 1, + ACTIONS(10272), 1, anon_sym_LPAREN, - STATE(5920), 1, - sym_parameter_bracks, - STATE(5982), 1, + STATE(6068), 1, sym_parameter_parens, - STATE(6153), 1, + STATE(6169), 1, + sym_parameter_bracks, + STATE(6421), 1, sym_comment, - [220199] = 5, + [222185] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9784), 1, + ACTIONS(10274), 1, anon_sym_DQUOTE, - STATE(6154), 1, - sym_comment, - STATE(6608), 1, + STATE(6212), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + STATE(6422), 1, + sym_comment, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [220216] = 4, - ACTIONS(3), 1, + [222202] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(9786), 1, - anon_sym_LPAREN, - STATE(6155), 1, + STATE(6423), 1, sym_comment, - ACTIONS(9788), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [220231] = 6, + ACTIONS(6249), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [222215] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(6424), 1, + sym_comment, + ACTIONS(10276), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [222228] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, - sym__entry_separator, - ACTIONS(9640), 1, - anon_sym_LBRACK, - ACTIONS(9790), 1, - anon_sym_RBRACK, - STATE(2617), 1, - aux_sym__multiple_types_repeat1, - STATE(6156), 1, + ACTIONS(4925), 1, + sym__newline, + ACTIONS(4927), 1, + sym__space, + ACTIONS(10278), 1, + anon_sym_EQ2, + ACTIONS(10280), 1, + sym_short_flag_identifier, + STATE(6425), 1, sym_comment, - [220250] = 3, - ACTIONS(247), 1, + [222247] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6157), 1, + STATE(6426), 1, sym_comment, - ACTIONS(6192), 4, - ts_builtin_sym_end, + ACTIONS(10282), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACE, - [220263] = 3, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [222260] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6158), 1, + STATE(6427), 1, sym_comment, - ACTIONS(9752), 4, + ACTIONS(5603), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [220276] = 6, + anon_sym_LBRACE, + [222273] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9792), 1, + ACTIONS(10284), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6159), 1, + STATE(6428), 1, sym_comment, - [220295] = 6, + [222292] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9794), 1, + ACTIONS(10286), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6160), 1, + STATE(6429), 1, sym_comment, - [220314] = 6, + [222311] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9796), 1, + ACTIONS(10288), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6161), 1, + STATE(6430), 1, sym_comment, - [220333] = 6, + [222330] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9798), 1, + ACTIONS(10290), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6162), 1, + STATE(6431), 1, sym_comment, - [220352] = 6, + [222349] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9800), 1, + ACTIONS(10292), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6163), 1, + STATE(6432), 1, sym_comment, - [220371] = 6, + [222368] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9802), 1, + ACTIONS(10294), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6164), 1, + STATE(6433), 1, sym_comment, - [220390] = 6, + [222387] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9804), 1, + ACTIONS(10296), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6165), 1, + STATE(6434), 1, sym_comment, - [220409] = 6, + [222406] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9806), 1, + ACTIONS(10298), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6166), 1, - sym_comment, - [220428] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6167), 1, + STATE(6435), 1, sym_comment, - ACTIONS(9752), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [220441] = 3, - ACTIONS(247), 1, + [222425] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6168), 1, + STATE(6436), 1, sym_comment, - ACTIONS(9808), 4, + ACTIONS(10300), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [220454] = 5, + [222438] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(4925), 1, + sym_identifier, + ACTIONS(4927), 1, + anon_sym_DOLLAR, + ACTIONS(10302), 1, + anon_sym_EQ2, + ACTIONS(10304), 1, + sym_short_flag_identifier, + STATE(6437), 1, + sym_comment, + [222457] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9810), 1, + ACTIONS(10306), 1, anon_sym_DQUOTE, - STATE(6169), 1, + STATE(6438), 1, sym_comment, - STATE(6172), 1, + STATE(6441), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [220471] = 3, - ACTIONS(247), 1, + [222474] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6170), 1, + STATE(6439), 1, sym_comment, - ACTIONS(9812), 4, + ACTIONS(10308), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [220484] = 3, - ACTIONS(247), 1, + [222487] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6171), 1, + STATE(6440), 1, sym_comment, - ACTIONS(9814), 4, + ACTIONS(10310), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [220497] = 5, + [222500] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9816), 1, + ACTIONS(10312), 1, anon_sym_DQUOTE, - STATE(6172), 1, - sym_comment, - STATE(6608), 1, + STATE(6212), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + STATE(6441), 1, + sym_comment, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [220514] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6173), 1, - sym_comment, - ACTIONS(9818), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [220527] = 4, + [222517] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(6174), 1, - sym_comment, - ACTIONS(1659), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1661), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [220542] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(6055), 1, - anon_sym_LBRACE, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(4661), 1, - sym_block, - STATE(6175), 1, - sym_comment, - [220561] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(6055), 1, - anon_sym_LBRACE, - STATE(4654), 1, - sym_block, - STATE(6108), 1, - aux_sym_shebang_repeat1, - STATE(6176), 1, + STATE(6442), 1, sym_comment, - [220580] = 3, - ACTIONS(247), 1, + ACTIONS(2289), 4, + sym_identifier, + anon_sym_DASH_DASH, + anon_sym_DASH, + aux_sym_unquoted_token4, + [222530] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6177), 1, + STATE(6443), 1, sym_comment, - ACTIONS(9820), 4, + ACTIONS(10314), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [220593] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8595), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(9822), 1, - anon_sym_DOT, - STATE(6178), 1, - sym_comment, - ACTIONS(1669), 2, - sym__newline, - anon_sym_LBRACE, - [220610] = 6, + [222543] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9824), 1, + ACTIONS(10316), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6179), 1, + STATE(6444), 1, sym_comment, - [220629] = 6, + [222562] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9826), 1, + ACTIONS(10318), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6180), 1, + STATE(6445), 1, sym_comment, - [220648] = 6, + [222581] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9828), 1, + ACTIONS(10320), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6181), 1, + STATE(6446), 1, sym_comment, - [220667] = 6, + [222600] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9830), 1, + ACTIONS(10322), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6182), 1, + STATE(6447), 1, sym_comment, - [220686] = 6, + [222619] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9832), 1, + ACTIONS(10324), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6183), 1, + STATE(6448), 1, sym_comment, - [220705] = 6, + [222638] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9834), 1, + ACTIONS(10326), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6184), 1, + STATE(6449), 1, sym_comment, - [220724] = 6, + [222657] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9836), 1, + ACTIONS(10328), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6185), 1, + STATE(6450), 1, sym_comment, - [220743] = 6, + [222676] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9838), 1, + ACTIONS(10330), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6186), 1, - sym_comment, - [220762] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_LBRACE, - ACTIONS(9840), 1, - anon_sym_DOT_DOT2, - STATE(6187), 1, - sym_comment, - ACTIONS(9842), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [220779] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6188), 1, - sym_comment, - ACTIONS(9844), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [220792] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2025), 1, - anon_sym_LBRACE, - ACTIONS(9846), 1, - anon_sym_DOT_DOT2, - STATE(6189), 1, - sym_comment, - ACTIONS(9848), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [220809] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9850), 1, - anon_sym_DQUOTE, - STATE(6190), 1, + STATE(6451), 1, sym_comment, - STATE(6194), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, - sym__escaped_str_content, - sym_escape_sequence, - [220826] = 3, - ACTIONS(247), 1, + [222695] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6191), 1, + STATE(6452), 1, sym_comment, - ACTIONS(9852), 4, + ACTIONS(10314), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [220839] = 4, - ACTIONS(247), 1, + [222708] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1540), 1, - aux_sym_cmd_identifier_token41, - STATE(6192), 1, - sym_comment, - ACTIONS(1542), 3, - sym_filesize_unit, - sym_duration_unit, - aux_sym_record_entry_token1, - [220854] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1667), 1, - aux_sym_unquoted_token2, - STATE(6193), 1, + STATE(6453), 1, sym_comment, - ACTIONS(1669), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [220869] = 5, + ACTIONS(10332), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [222721] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9854), 1, + ACTIONS(10334), 1, anon_sym_DQUOTE, - STATE(6194), 1, + STATE(6454), 1, sym_comment, - STATE(6608), 1, + STATE(6457), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [220886] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6195), 1, - sym_comment, - ACTIONS(9856), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [220899] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6196), 1, - sym_comment, - ACTIONS(9858), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [220912] = 3, - ACTIONS(247), 1, + [222738] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6197), 1, + STATE(6455), 1, sym_comment, - ACTIONS(9858), 4, + ACTIONS(10336), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [220925] = 3, - ACTIONS(247), 1, + [222751] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6198), 1, + STATE(6456), 1, sym_comment, - ACTIONS(9860), 4, + ACTIONS(10336), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [220938] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2235), 1, - aux_sym_unquoted_token4, - STATE(6199), 1, - sym_comment, - ACTIONS(2229), 3, - sym_identifier, - anon_sym_DASH_DASH, - anon_sym_DASH, - [220953] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_LBRACE, - ACTIONS(9862), 1, - anon_sym_DOT_DOT2, - STATE(6200), 1, - sym_comment, - ACTIONS(9864), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [220970] = 4, + [222764] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9866), 1, - anon_sym_LPAREN, - STATE(6201), 1, + ACTIONS(10338), 1, + anon_sym_DQUOTE, + STATE(6212), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6457), 1, sym_comment, - ACTIONS(9868), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [220985] = 6, + ACTIONS(9917), 2, + sym__escaped_str_content, + sym_escape_sequence, + [222781] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9870), 1, + ACTIONS(10340), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6202), 1, + STATE(6458), 1, sym_comment, - [221004] = 6, + [222800] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9872), 1, + ACTIONS(10342), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6203), 1, + STATE(6459), 1, sym_comment, - [221023] = 6, + [222819] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9874), 1, + ACTIONS(10344), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6204), 1, + STATE(6460), 1, sym_comment, - [221042] = 6, + [222838] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9876), 1, + ACTIONS(10346), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6205), 1, + STATE(6461), 1, sym_comment, - [221061] = 6, + [222857] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9878), 1, + ACTIONS(10348), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6206), 1, + STATE(6462), 1, sym_comment, - [221080] = 6, + [222876] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9880), 1, + ACTIONS(10350), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6207), 1, + STATE(6463), 1, sym_comment, - [221099] = 6, + [222895] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9882), 1, + ACTIONS(10352), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6208), 1, + STATE(6464), 1, sym_comment, - [221118] = 6, + [222914] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9884), 1, + ACTIONS(10354), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6209), 1, + STATE(6465), 1, sym_comment, - [221137] = 6, - ACTIONS(3), 1, + [222933] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4808), 1, - sym__newline, - ACTIONS(4810), 1, - sym__space, - ACTIONS(9886), 1, - sym_long_flag_identifier, - ACTIONS(9888), 1, - anon_sym_EQ2, - STATE(6210), 1, + STATE(6466), 1, sym_comment, - [221156] = 3, - ACTIONS(247), 1, + ACTIONS(10356), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [222946] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6211), 1, + STATE(6467), 1, sym_comment, - ACTIONS(9890), 4, + ACTIONS(10358), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [221169] = 5, + [222959] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9892), 1, + ACTIONS(10360), 1, anon_sym_DQUOTE, - STATE(6212), 1, + STATE(6468), 1, sym_comment, - STATE(6216), 1, + STATE(6471), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [221186] = 6, - ACTIONS(3), 1, + [222976] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5567), 1, - sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(10362), 1, anon_sym_LBRACK, - ACTIONS(9894), 1, - anon_sym_RBRACK, - STATE(2617), 1, - aux_sym__multiple_types_repeat1, - STATE(6213), 1, - sym_comment, - [221205] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2303), 1, - aux_sym_unquoted_token2, - STATE(6214), 1, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(6469), 1, sym_comment, - ACTIONS(2301), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [221220] = 6, - ACTIONS(3), 1, + STATE(8030), 1, + sym_val_list, + [222995] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1070), 1, - anon_sym_RBRACK, - ACTIONS(1072), 1, - sym__entry_separator, - ACTIONS(2225), 1, - anon_sym_LPAREN2, - ACTIONS(2227), 1, - aux_sym__unquoted_in_list_token4, - STATE(6215), 1, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(6211), 1, + anon_sym_LBRACE, + STATE(4801), 1, + sym_block, + STATE(6470), 1, sym_comment, - [221239] = 5, + STATE(6656), 1, + aux_sym_shebang_repeat1, + [223014] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9896), 1, + ACTIONS(10364), 1, anon_sym_DQUOTE, - STATE(6216), 1, - sym_comment, - STATE(6608), 1, + STATE(6212), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + STATE(6471), 1, + sym_comment, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [221256] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6217), 1, - sym_comment, - ACTIONS(1667), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1669), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [221271] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9780), 1, - anon_sym_LBRACK, - ACTIONS(9782), 1, - anon_sym_LPAREN, - STATE(5930), 1, - sym_parameter_parens, - STATE(5942), 1, - sym_parameter_bracks, - STATE(6218), 1, - sym_comment, - [221290] = 3, - ACTIONS(247), 1, + [223031] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6219), 1, + STATE(6472), 1, sym_comment, - ACTIONS(9898), 4, + ACTIONS(6259), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [221303] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1667), 1, - aux_sym_unquoted_token2, - ACTIONS(9468), 1, - aux_sym__immediate_decimal_token2, - STATE(6220), 1, - sym_comment, - ACTIONS(1669), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [221320] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4781), 1, - sym__newline, - ACTIONS(4783), 1, - sym__space, - ACTIONS(9900), 1, - anon_sym_EQ2, - ACTIONS(9902), 1, - sym_short_flag_identifier, - STATE(6221), 1, - sym_comment, - [221339] = 6, + anon_sym_LBRACE, + [223044] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9904), 1, + ACTIONS(10366), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6222), 1, + STATE(6473), 1, sym_comment, - [221358] = 6, + [223063] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9906), 1, + ACTIONS(10368), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6223), 1, + STATE(6474), 1, sym_comment, - [221377] = 6, + [223082] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9908), 1, + ACTIONS(10370), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6224), 1, + STATE(6475), 1, sym_comment, - [221396] = 6, + [223101] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9910), 1, + ACTIONS(10372), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6225), 1, + STATE(6476), 1, sym_comment, - [221415] = 6, + [223120] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9912), 1, + ACTIONS(10374), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6226), 1, + STATE(6477), 1, sym_comment, - [221434] = 6, + [223139] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9914), 1, + ACTIONS(10376), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6227), 1, + STATE(6478), 1, sym_comment, - [221453] = 6, + [223158] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9916), 1, + ACTIONS(10378), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6228), 1, + STATE(6479), 1, sym_comment, - [221472] = 6, + [223177] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9918), 1, + ACTIONS(10380), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6229), 1, - sym_comment, - [221491] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6230), 1, + STATE(6480), 1, sym_comment, - ACTIONS(9920), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [221504] = 3, - ACTIONS(247), 1, + [223196] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6231), 1, + STATE(6481), 1, sym_comment, - ACTIONS(9922), 4, + ACTIONS(10382), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [221517] = 5, + [223209] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9924), 1, + ACTIONS(10384), 1, anon_sym_DQUOTE, - STATE(6232), 1, + STATE(6482), 1, sym_comment, - STATE(6236), 1, + STATE(6484), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [221534] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5567), 1, - sym__entry_separator, - ACTIONS(9640), 1, - anon_sym_LBRACK, - ACTIONS(9926), 1, - anon_sym_RBRACK, - STATE(2617), 1, - aux_sym__multiple_types_repeat1, - STATE(6233), 1, - sym_comment, - [221553] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5567), 1, - sym__entry_separator, - ACTIONS(9640), 1, - anon_sym_LBRACK, - ACTIONS(9928), 1, - anon_sym_RBRACK, - STATE(2617), 1, - aux_sym__multiple_types_repeat1, - STATE(6234), 1, - sym_comment, - [221572] = 6, + [223226] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9930), 1, + ACTIONS(10386), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6235), 1, + STATE(6483), 1, sym_comment, - [221591] = 5, + [223245] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9932), 1, + ACTIONS(10388), 1, anon_sym_DQUOTE, - STATE(6236), 1, - sym_comment, - STATE(6608), 1, + STATE(6212), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + STATE(6484), 1, + sym_comment, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [221608] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6237), 1, - sym_comment, - ACTIONS(9934), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [221621] = 3, - ACTIONS(247), 1, + [223262] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6238), 1, + ACTIONS(1715), 1, + aux_sym_unquoted_token2, + ACTIONS(9731), 1, + aux_sym__immediate_decimal_token2, + STATE(6485), 1, sym_comment, - ACTIONS(9936), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [221634] = 3, - ACTIONS(247), 1, + ACTIONS(1717), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [223279] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6239), 1, + STATE(6486), 1, sym_comment, - ACTIONS(9938), 4, + ACTIONS(6261), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [221647] = 3, - ACTIONS(247), 1, + anon_sym_LBRACE, + [223292] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6240), 1, + STATE(6487), 1, sym_comment, - ACTIONS(9940), 4, + ACTIONS(10390), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [221660] = 6, + [223305] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9942), 1, + ACTIONS(10392), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6241), 1, + STATE(6488), 1, sym_comment, - [221679] = 6, + [223324] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9944), 1, + ACTIONS(10394), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6242), 1, + STATE(6489), 1, sym_comment, - [221698] = 6, + [223343] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9946), 1, + ACTIONS(10396), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6243), 1, + STATE(6490), 1, sym_comment, - [221717] = 6, + [223362] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9948), 1, + ACTIONS(10398), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6244), 1, + STATE(6491), 1, sym_comment, - [221736] = 6, + [223381] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9950), 1, + ACTIONS(10400), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6245), 1, + STATE(6492), 1, sym_comment, - [221755] = 6, + [223400] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9952), 1, + ACTIONS(10402), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6246), 1, + STATE(6493), 1, sym_comment, - [221774] = 6, + [223419] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9954), 1, + ACTIONS(10404), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6247), 1, + STATE(6494), 1, sym_comment, - [221793] = 6, + [223438] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9956), 1, + ACTIONS(10406), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6248), 1, - sym_comment, - [221812] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6249), 1, + STATE(6495), 1, sym_comment, - ACTIONS(1659), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1661), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [221827] = 4, - ACTIONS(3), 1, + [223457] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - STATE(6250), 1, + ACTIONS(1528), 1, + aux_sym_cmd_identifier_token41, + STATE(6496), 1, sym_comment, - ACTIONS(2237), 3, - sym_identifier, - anon_sym_DASH_DASH, - anon_sym_DASH, - [221842] = 3, - ACTIONS(247), 1, + ACTIONS(1530), 3, + sym_filesize_unit, + sym_duration_unit, + aux_sym_record_entry_token1, + [223472] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6251), 1, + STATE(6497), 1, sym_comment, - ACTIONS(9958), 4, + ACTIONS(10408), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [221855] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - STATE(6252), 1, - sym_comment, - ACTIONS(2245), 3, - sym_identifier, - anon_sym_DASH_DASH, - anon_sym_DASH, - [221870] = 5, + [223485] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9960), 1, + ACTIONS(10410), 1, anon_sym_DQUOTE, - STATE(6253), 1, + STATE(6498), 1, sym_comment, - STATE(6256), 1, + STATE(6499), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [221887] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6472), 1, - anon_sym_DOT_DOT2, - ACTIONS(9962), 1, - anon_sym_LBRACE, - STATE(6254), 1, - sym_comment, - ACTIONS(6474), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [221904] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9964), 1, - anon_sym_RPAREN, - STATE(234), 1, - aux_sym__block_body_repeat1, - STATE(6255), 1, - sym_comment, - ACTIONS(145), 2, - sym__newline, - anon_sym_SEMI, - [221921] = 5, + [223502] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9966), 1, + ACTIONS(10412), 1, anon_sym_DQUOTE, - STATE(6256), 1, - sym_comment, - STATE(6608), 1, + STATE(6212), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + STATE(6499), 1, + sym_comment, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [221938] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6257), 1, - sym_comment, - ACTIONS(9938), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [221951] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6258), 1, - sym_comment, - ACTIONS(9968), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [221964] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6259), 1, - sym_comment, - ACTIONS(9970), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [221977] = 3, - ACTIONS(247), 1, + [223519] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6260), 1, + STATE(6500), 1, sym_comment, - ACTIONS(9972), 4, + ACTIONS(10390), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [221990] = 6, + [223532] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9974), 1, + ACTIONS(10414), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6261), 1, + STATE(6501), 1, sym_comment, - [222009] = 6, + [223551] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9976), 1, + ACTIONS(10416), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6262), 1, + STATE(6502), 1, sym_comment, - [222028] = 6, + [223570] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9978), 1, + ACTIONS(10418), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6263), 1, + STATE(6503), 1, sym_comment, - [222047] = 6, + [223589] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9980), 1, + ACTIONS(10420), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6264), 1, + STATE(6504), 1, sym_comment, - [222066] = 6, + [223608] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9982), 1, + ACTIONS(10422), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6265), 1, + STATE(6505), 1, sym_comment, - [222085] = 6, - ACTIONS(3), 1, + [223627] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5567), 1, - sym__entry_separator, - ACTIONS(9640), 1, - anon_sym_LBRACK, - ACTIONS(9984), 1, - anon_sym_RBRACK, - STATE(2617), 1, - aux_sym__multiple_types_repeat1, - STATE(6266), 1, + STATE(6506), 1, sym_comment, - [222104] = 6, + ACTIONS(10424), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [223640] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9986), 1, + ACTIONS(10426), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6267), 1, + STATE(6507), 1, sym_comment, - [222123] = 6, + [223659] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(9988), 1, + ACTIONS(10428), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6268), 1, + STATE(6508), 1, sym_comment, - [222142] = 3, - ACTIONS(247), 1, + [223678] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6269), 1, + ACTIONS(1068), 1, + anon_sym_DOT, + STATE(6509), 1, sym_comment, - ACTIONS(9990), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [222155] = 4, + ACTIONS(1066), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [223693] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6270), 1, + ACTIONS(1072), 1, + anon_sym_DOT, + STATE(6510), 1, sym_comment, - ACTIONS(1721), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1723), 2, - anon_sym_LPAREN2, + ACTIONS(1070), 3, + anon_sym_RBRACK, sym__entry_separator, - [222170] = 3, - ACTIONS(247), 1, + sym__table_head_separator, + [223708] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6271), 1, + STATE(6511), 1, sym_comment, - ACTIONS(9992), 4, + ACTIONS(10430), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [222183] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6272), 1, - sym_comment, - ACTIONS(9990), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [222196] = 5, + [223721] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9994), 1, + ACTIONS(10432), 1, anon_sym_DQUOTE, - STATE(6273), 1, + STATE(6512), 1, sym_comment, - STATE(6275), 1, + STATE(6513), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [222213] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6274), 1, - sym_comment, - ACTIONS(9996), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [222226] = 5, + [223738] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9998), 1, + ACTIONS(10434), 1, anon_sym_DQUOTE, - STATE(6275), 1, - sym_comment, - STATE(6608), 1, + STATE(6212), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + STATE(6513), 1, + sym_comment, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [222243] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1790), 1, - anon_sym_LPAREN2, - ACTIONS(1798), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(2287), 1, - anon_sym_RBRACE, - ACTIONS(2289), 1, - sym__entry_separator, - STATE(6276), 1, - sym_comment, - [222262] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6277), 1, - sym_comment, - ACTIONS(10000), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [222275] = 6, + [223755] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(10002), 1, + ACTIONS(10436), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6278), 1, + STATE(6514), 1, sym_comment, - [222294] = 6, + [223774] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(10004), 1, + ACTIONS(10438), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6279), 1, + STATE(6515), 1, sym_comment, - [222313] = 6, + [223793] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(10006), 1, + ACTIONS(10440), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6280), 1, + STATE(6516), 1, sym_comment, - [222332] = 6, + [223812] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(10008), 1, + ACTIONS(10442), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6281), 1, + STATE(6517), 1, sym_comment, - [222351] = 6, + [223831] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(10010), 1, + ACTIONS(10444), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6282), 1, + STATE(6518), 1, sym_comment, - [222370] = 6, + [223850] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(10012), 1, + ACTIONS(10446), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6283), 1, + STATE(6519), 1, sym_comment, - [222389] = 6, + [223869] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(10014), 1, + ACTIONS(10448), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6284), 1, + STATE(6520), 1, sym_comment, - [222408] = 6, + [223888] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(10016), 1, + ACTIONS(10450), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6285), 1, - sym_comment, - [222427] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1788), 1, - anon_sym_RBRACE, - ACTIONS(1790), 1, - anon_sym_LPAREN2, - ACTIONS(1796), 1, - sym__entry_separator, - ACTIONS(1798), 1, - aux_sym__unquoted_in_record_token2, - STATE(6286), 1, + STATE(6521), 1, sym_comment, - [222446] = 3, - ACTIONS(247), 1, + [223907] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6287), 1, + STATE(6522), 1, sym_comment, - ACTIONS(10018), 4, + ACTIONS(10452), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [222459] = 5, + [223920] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10020), 1, + ACTIONS(10454), 1, anon_sym_DQUOTE, - STATE(6288), 1, + STATE(6523), 1, sym_comment, - STATE(6290), 1, + STATE(6524), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [222476] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6289), 1, - sym_comment, - ACTIONS(10022), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [222489] = 5, + [223937] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10024), 1, + ACTIONS(10456), 1, anon_sym_DQUOTE, - STATE(6290), 1, - sym_comment, - STATE(6608), 1, + STATE(6212), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + STATE(6524), 1, + sym_comment, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [222506] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6291), 1, - sym_comment, - ACTIONS(1738), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1740), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [222521] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6292), 1, - sym_comment, - ACTIONS(1046), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(1048), 2, - anon_sym_DOT, - sym__entry_separator, - [222536] = 6, + [223954] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(10026), 1, + ACTIONS(10458), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6293), 1, + STATE(6525), 1, sym_comment, - [222555] = 6, + [223973] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(10028), 1, + ACTIONS(10460), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6294), 1, + STATE(6526), 1, sym_comment, - [222574] = 6, + [223992] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(10030), 1, + ACTIONS(10462), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6295), 1, + STATE(6527), 1, sym_comment, - [222593] = 6, + [224011] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(10032), 1, + ACTIONS(10464), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6296), 1, + STATE(6528), 1, sym_comment, - [222612] = 6, + [224030] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(10034), 1, + ACTIONS(10466), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6297), 1, + STATE(6529), 1, sym_comment, - [222631] = 6, + [224049] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(10036), 1, + ACTIONS(10468), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6298), 1, + STATE(6530), 1, sym_comment, - [222650] = 6, + [224068] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(10038), 1, + ACTIONS(10470), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6299), 1, + STATE(6531), 1, sym_comment, - [222669] = 6, + [224087] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(10040), 1, + ACTIONS(10472), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6300), 1, - sym_comment, - [222688] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6301), 1, + STATE(6532), 1, sym_comment, - ACTIONS(10042), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [222701] = 3, - ACTIONS(247), 1, + [224106] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6302), 1, + STATE(6533), 1, sym_comment, - ACTIONS(10044), 4, + ACTIONS(10474), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [222714] = 5, + [224119] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10046), 1, + ACTIONS(10476), 1, anon_sym_DQUOTE, - STATE(6303), 1, + STATE(6534), 1, sym_comment, - STATE(6304), 1, + STATE(6535), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [222731] = 5, + [224136] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10048), 1, + ACTIONS(10478), 1, anon_sym_DQUOTE, - STATE(6304), 1, - sym_comment, - STATE(6608), 1, + STATE(6212), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + STATE(6535), 1, + sym_comment, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [222748] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6305), 1, - sym_comment, - ACTIONS(10000), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [222761] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(10050), 1, - anon_sym_LBRACE, - STATE(1952), 1, - sym_block, - STATE(1960), 1, - sym_val_closure, - STATE(5116), 1, - sym__blosure, - STATE(6306), 1, - sym_comment, - [222780] = 6, + [224153] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(10052), 1, + ACTIONS(10480), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6307), 1, + STATE(6536), 1, sym_comment, - [222799] = 6, + [224172] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(10054), 1, + ACTIONS(10482), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6308), 1, + STATE(6537), 1, sym_comment, - [222818] = 6, + [224191] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(10056), 1, + ACTIONS(10484), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6309), 1, + STATE(6538), 1, sym_comment, - [222837] = 6, + [224210] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(10058), 1, + ACTIONS(10486), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6310), 1, + STATE(6539), 1, sym_comment, - [222856] = 6, + [224229] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(10060), 1, + ACTIONS(10488), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6311), 1, + STATE(6540), 1, sym_comment, - [222875] = 6, + [224248] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(10062), 1, + ACTIONS(10490), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6312), 1, + STATE(6541), 1, sym_comment, - [222894] = 6, + [224267] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(10064), 1, + ACTIONS(10492), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6313), 1, + STATE(6542), 1, sym_comment, - [222913] = 6, + [224286] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(10066), 1, + ACTIONS(10494), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6314), 1, + STATE(6543), 1, sym_comment, - [222932] = 6, - ACTIONS(247), 1, + [224305] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(10068), 1, - anon_sym_LBRACK, - ACTIONS(10070), 1, - anon_sym_LPAREN, - STATE(3113), 1, - sym_parameter_parens, - STATE(3114), 1, - sym_parameter_bracks, - STATE(6315), 1, + STATE(6544), 1, sym_comment, - [222951] = 3, - ACTIONS(247), 1, + ACTIONS(10314), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [224318] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6316), 1, + STATE(6545), 1, sym_comment, - ACTIONS(10072), 4, + ACTIONS(10496), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [222964] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10074), 1, - anon_sym_DQUOTE, - STATE(6317), 1, - sym_comment, - STATE(6318), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, - sym__escaped_str_content, - sym_escape_sequence, - [222981] = 5, + [224331] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10076), 1, + ACTIONS(10498), 1, anon_sym_DQUOTE, - STATE(6318), 1, + STATE(6546), 1, sym_comment, - STATE(6608), 1, + STATE(6548), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [222998] = 3, - ACTIONS(247), 1, + [224348] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6319), 1, + ACTIONS(1674), 1, + ts_builtin_sym_end, + STATE(291), 1, + aux_sym__block_body_repeat1, + STATE(6547), 1, sym_comment, - ACTIONS(10078), 4, + ACTIONS(33), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [223011] = 3, - ACTIONS(247), 1, + [224365] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6320), 1, + ACTIONS(10500), 1, + anon_sym_DQUOTE, + STATE(6212), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6548), 1, sym_comment, - ACTIONS(10078), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [223024] = 6, + ACTIONS(9917), 2, + sym__escaped_str_content, + sym_escape_sequence, + [224382] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(10080), 1, + ACTIONS(10502), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6321), 1, + STATE(6549), 1, sym_comment, - [223043] = 6, + [224401] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(10082), 1, + ACTIONS(10504), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6322), 1, + STATE(6550), 1, sym_comment, - [223062] = 6, + [224420] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(10084), 1, + ACTIONS(10506), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6323), 1, + STATE(6551), 1, sym_comment, - [223081] = 6, + [224439] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(10086), 1, + ACTIONS(10508), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6324), 1, + STATE(6552), 1, sym_comment, - [223100] = 6, + [224458] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(10088), 1, + ACTIONS(10510), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6325), 1, + STATE(6553), 1, sym_comment, - [223119] = 6, + [224477] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(10090), 1, + ACTIONS(10512), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6326), 1, + STATE(6554), 1, sym_comment, - [223138] = 6, + [224496] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(10092), 1, + ACTIONS(10514), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6327), 1, + STATE(6555), 1, sym_comment, - [223157] = 6, + [224515] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(10094), 1, + ACTIONS(10516), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6328), 1, - sym_comment, - [223176] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6329), 1, + STATE(6556), 1, sym_comment, - ACTIONS(10096), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [223189] = 3, - ACTIONS(247), 1, + [224534] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6330), 1, + STATE(6557), 1, sym_comment, - ACTIONS(10098), 4, + ACTIONS(10518), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [223202] = 5, + [224547] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10100), 1, + ACTIONS(10520), 1, anon_sym_DQUOTE, - STATE(6331), 1, + STATE(6558), 1, sym_comment, - STATE(6332), 1, + STATE(6559), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [223219] = 5, + [224564] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10102), 1, + ACTIONS(10522), 1, anon_sym_DQUOTE, - STATE(6332), 1, - sym_comment, - STATE(6608), 1, + STATE(6212), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + STATE(6559), 1, + sym_comment, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [223236] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6333), 1, - sym_comment, - ACTIONS(10104), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [223249] = 6, - ACTIONS(3), 1, + [224581] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5567), 1, - sym__entry_separator, - ACTIONS(9640), 1, - anon_sym_LBRACK, - ACTIONS(10106), 1, - anon_sym_RBRACK, - STATE(2617), 1, - aux_sym__multiple_types_repeat1, - STATE(6334), 1, + ACTIONS(1769), 1, + aux_sym_unquoted_token2, + ACTIONS(10524), 1, + aux_sym__immediate_decimal_token2, + STATE(6560), 1, sym_comment, - [223268] = 3, - ACTIONS(247), 1, + ACTIONS(1771), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [224598] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6335), 1, + STATE(6561), 1, sym_comment, - ACTIONS(10108), 4, + ACTIONS(10526), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [223281] = 5, + [224611] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10110), 1, + ACTIONS(10528), 1, anon_sym_DQUOTE, - STATE(6336), 1, + STATE(6562), 1, sym_comment, - STATE(6337), 1, + STATE(6563), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [223298] = 5, + [224628] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10112), 1, + ACTIONS(10530), 1, anon_sym_DQUOTE, - STATE(6337), 1, - sym_comment, - STATE(6608), 1, + STATE(6212), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + STATE(6563), 1, + sym_comment, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [223315] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5567), 1, - sym__entry_separator, - ACTIONS(9640), 1, - anon_sym_LBRACK, - ACTIONS(10114), 1, - anon_sym_RBRACK, - STATE(2617), 1, - aux_sym__multiple_types_repeat1, - STATE(6338), 1, - sym_comment, - [223334] = 3, - ACTIONS(247), 1, + [224645] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6339), 1, + STATE(6564), 1, sym_comment, - ACTIONS(10116), 4, + ACTIONS(10532), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [223347] = 5, + [224658] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10118), 1, + ACTIONS(10534), 1, anon_sym_DQUOTE, - STATE(6340), 1, + STATE(6565), 1, sym_comment, - STATE(6341), 1, + STATE(6566), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [223364] = 5, + [224675] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10120), 1, + ACTIONS(10536), 1, anon_sym_DQUOTE, - STATE(6341), 1, - sym_comment, - STATE(6608), 1, + STATE(6212), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + STATE(6566), 1, + sym_comment, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [223381] = 6, - ACTIONS(3), 1, + [224692] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5567), 1, - sym__entry_separator, - ACTIONS(9640), 1, - anon_sym_LBRACK, - ACTIONS(10122), 1, - anon_sym_RBRACK, - STATE(2617), 1, - aux_sym__multiple_types_repeat1, - STATE(6342), 1, + STATE(6567), 1, sym_comment, - [223400] = 3, - ACTIONS(247), 1, + ACTIONS(5504), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [224705] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6343), 1, + STATE(6568), 1, sym_comment, - ACTIONS(10124), 4, + ACTIONS(10538), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [223413] = 5, + [224718] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10126), 1, + ACTIONS(10540), 1, anon_sym_DQUOTE, - STATE(6344), 1, + STATE(6569), 1, sym_comment, - STATE(6345), 1, + STATE(6570), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [223430] = 5, + [224735] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10128), 1, + ACTIONS(10542), 1, anon_sym_DQUOTE, - STATE(6345), 1, - sym_comment, - STATE(6608), 1, + STATE(6212), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + STATE(6570), 1, + sym_comment, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [223447] = 3, - ACTIONS(247), 1, + [224752] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6346), 1, + STATE(6571), 1, sym_comment, - ACTIONS(10130), 4, + ACTIONS(10314), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [223460] = 3, - ACTIONS(247), 1, + [224765] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6347), 1, + STATE(6572), 1, sym_comment, - ACTIONS(10132), 4, + ACTIONS(10544), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [223473] = 5, + [224778] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10134), 1, + ACTIONS(10546), 1, anon_sym_DQUOTE, - STATE(6348), 1, + STATE(6573), 1, sym_comment, - STATE(6349), 1, + STATE(6574), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [223490] = 5, + [224795] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10136), 1, + ACTIONS(10548), 1, anon_sym_DQUOTE, - STATE(6349), 1, - sym_comment, - STATE(6608), 1, + STATE(6212), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + STATE(6574), 1, + sym_comment, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [223507] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6350), 1, - sym_comment, - ACTIONS(10138), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [223520] = 3, - ACTIONS(247), 1, + [224812] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6351), 1, + STATE(6575), 1, sym_comment, - ACTIONS(10140), 4, + ACTIONS(10550), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [223533] = 5, + [224825] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10142), 1, + ACTIONS(10552), 1, anon_sym_DQUOTE, - STATE(6352), 1, + STATE(6576), 1, sym_comment, - STATE(6353), 1, + STATE(6577), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [223550] = 5, + [224842] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10144), 1, + ACTIONS(10554), 1, anon_sym_DQUOTE, - STATE(6353), 1, - sym_comment, - STATE(6608), 1, + STATE(6212), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + STATE(6577), 1, + sym_comment, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [223567] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5567), 1, - sym__entry_separator, - ACTIONS(9640), 1, - anon_sym_LBRACK, - ACTIONS(10146), 1, - anon_sym_RBRACK, - STATE(2617), 1, - aux_sym__multiple_types_repeat1, - STATE(6354), 1, - sym_comment, - [223586] = 3, - ACTIONS(247), 1, + [224859] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6355), 1, + STATE(6578), 1, sym_comment, - ACTIONS(10148), 4, + ACTIONS(10556), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [223599] = 5, + [224872] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10150), 1, + ACTIONS(10558), 1, anon_sym_DQUOTE, - STATE(6356), 1, + STATE(6579), 1, sym_comment, - STATE(6357), 1, + STATE(6580), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [223616] = 5, + [224889] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10152), 1, + ACTIONS(10560), 1, anon_sym_DQUOTE, - STATE(6357), 1, - sym_comment, - STATE(6608), 1, + STATE(6212), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + STATE(6580), 1, + sym_comment, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [223633] = 3, - ACTIONS(247), 1, + [224906] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6358), 1, + STATE(6581), 1, sym_comment, - ACTIONS(10130), 4, + ACTIONS(10562), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [223646] = 3, - ACTIONS(247), 1, + [224919] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6359), 1, + STATE(6582), 1, sym_comment, - ACTIONS(10154), 4, + ACTIONS(10564), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [223659] = 5, + [224932] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10156), 1, + ACTIONS(10566), 1, anon_sym_DQUOTE, - STATE(6360), 1, + STATE(6583), 1, sym_comment, - STATE(6361), 1, + STATE(6584), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [223676] = 5, + [224949] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10158), 1, + ACTIONS(10568), 1, anon_sym_DQUOTE, - STATE(6361), 1, - sym_comment, - STATE(6608), 1, + STATE(6212), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + STATE(6584), 1, + sym_comment, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [223693] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1651), 1, - ts_builtin_sym_end, - STATE(265), 1, - aux_sym__block_body_repeat1, - STATE(6362), 1, - sym_comment, - ACTIONS(33), 2, - sym__newline, - anon_sym_SEMI, - [223710] = 3, - ACTIONS(247), 1, + [224966] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6363), 1, + STATE(6585), 1, sym_comment, - ACTIONS(10160), 4, + ACTIONS(10570), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [223723] = 5, + [224979] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10162), 1, + ACTIONS(10572), 1, anon_sym_DQUOTE, - STATE(6364), 1, + STATE(6586), 1, sym_comment, - STATE(6365), 1, + STATE(6587), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [223740] = 5, + [224996] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10164), 1, + ACTIONS(10574), 1, anon_sym_DQUOTE, - STATE(6365), 1, - sym_comment, - STATE(6608), 1, + STATE(6212), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + STATE(6587), 1, + sym_comment, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [223757] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4781), 1, - sym_identifier, - ACTIONS(4783), 1, - anon_sym_DOLLAR, - ACTIONS(10166), 1, - anon_sym_EQ2, - ACTIONS(10168), 1, - sym_short_flag_identifier, - STATE(6366), 1, - sym_comment, - [223776] = 3, - ACTIONS(247), 1, + [225013] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6367), 1, + STATE(6588), 1, sym_comment, - ACTIONS(10170), 4, + ACTIONS(10576), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [223789] = 5, + [225026] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10172), 1, + ACTIONS(10578), 1, anon_sym_DQUOTE, - STATE(6368), 1, + STATE(6589), 1, sym_comment, - STATE(6369), 1, + STATE(6590), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [223806] = 5, + [225043] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10174), 1, + ACTIONS(10580), 1, anon_sym_DQUOTE, - STATE(6369), 1, - sym_comment, - STATE(6608), 1, + STATE(6212), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + STATE(6590), 1, + sym_comment, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [223823] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1560), 1, - anon_sym_DASH, - ACTIONS(8350), 1, - aux_sym_unquoted_token2, - STATE(6370), 1, - sym_comment, - ACTIONS(1572), 2, - sym_identifier, - anon_sym_DASH_DASH, - [223840] = 3, - ACTIONS(247), 1, + [225060] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6371), 1, + STATE(6591), 1, sym_comment, - ACTIONS(10176), 4, + ACTIONS(10582), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [223853] = 5, + [225073] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10178), 1, + ACTIONS(10584), 1, anon_sym_DQUOTE, - STATE(6372), 1, + STATE(6592), 1, sym_comment, - STATE(6373), 1, + STATE(6593), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [223870] = 5, + [225090] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10180), 1, + ACTIONS(10586), 1, anon_sym_DQUOTE, - STATE(6373), 1, - sym_comment, - STATE(6608), 1, + STATE(6212), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + STATE(6593), 1, + sym_comment, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [223887] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5567), 1, - sym__entry_separator, - ACTIONS(9640), 1, - anon_sym_LBRACK, - ACTIONS(10182), 1, - anon_sym_RBRACK, - STATE(2617), 1, - aux_sym__multiple_types_repeat1, - STATE(6374), 1, - sym_comment, - [223906] = 3, - ACTIONS(247), 1, + [225107] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6375), 1, + STATE(6594), 1, sym_comment, - ACTIONS(10184), 4, + ACTIONS(10588), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [223919] = 5, + [225120] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10186), 1, + ACTIONS(10590), 1, anon_sym_DQUOTE, - STATE(6376), 1, + STATE(6595), 1, sym_comment, - STATE(6377), 1, + STATE(6596), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [223936] = 5, + [225137] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10188), 1, + ACTIONS(10592), 1, anon_sym_DQUOTE, - STATE(6377), 1, - sym_comment, - STATE(6608), 1, + STATE(6212), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + STATE(6596), 1, + sym_comment, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [223953] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1494), 1, - aux_sym_unquoted_token2, - ACTIONS(10190), 1, - anon_sym_DOT_DOT2, - STATE(6378), 1, - sym_comment, - ACTIONS(10192), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [223970] = 3, - ACTIONS(247), 1, + [225154] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6379), 1, + STATE(6597), 1, sym_comment, - ACTIONS(10194), 4, + ACTIONS(10594), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [223983] = 5, + [225167] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10196), 1, + ACTIONS(10596), 1, anon_sym_DQUOTE, - STATE(6380), 1, + STATE(6598), 1, sym_comment, - STATE(6381), 1, + STATE(6599), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [224000] = 5, + [225184] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10198), 1, + ACTIONS(10598), 1, anon_sym_DQUOTE, - STATE(6381), 1, - sym_comment, - STATE(6608), 1, + STATE(6212), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + STATE(6599), 1, + sym_comment, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [224017] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6382), 1, - sym_comment, - ACTIONS(1721), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1723), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [224032] = 3, - ACTIONS(247), 1, + [225201] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6383), 1, + STATE(6600), 1, sym_comment, - ACTIONS(10200), 4, + ACTIONS(10600), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [224045] = 5, + [225214] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10202), 1, + ACTIONS(10602), 1, anon_sym_DQUOTE, - STATE(6384), 1, + STATE(6601), 1, sym_comment, - STATE(6385), 1, + STATE(6602), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [224062] = 5, + [225231] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10204), 1, + ACTIONS(10604), 1, anon_sym_DQUOTE, - STATE(6385), 1, - sym_comment, - STATE(6608), 1, + STATE(6212), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + STATE(6602), 1, + sym_comment, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [224079] = 6, - ACTIONS(247), 1, + [225248] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(6055), 1, + ACTIONS(10606), 1, anon_sym_LBRACE, - STATE(4729), 1, + STATE(5117), 1, sym_block, - STATE(6175), 1, - aux_sym_shebang_repeat1, - STATE(6386), 1, + STATE(5118), 1, + sym_val_closure, + STATE(5189), 1, + sym__blosure, + STATE(6603), 1, sym_comment, - [224098] = 3, - ACTIONS(247), 1, + [225267] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6387), 1, + STATE(6604), 1, sym_comment, - ACTIONS(10206), 4, + ACTIONS(10608), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [224111] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10208), 1, - anon_sym_DQUOTE, - STATE(6388), 1, - sym_comment, - STATE(6389), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, - sym__escaped_str_content, - sym_escape_sequence, - [224128] = 5, + [225280] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10210), 1, + ACTIONS(10610), 1, anon_sym_DQUOTE, - STATE(6389), 1, + STATE(6605), 1, sym_comment, - STATE(6608), 1, + STATE(6606), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [224145] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6390), 1, - sym_comment, - ACTIONS(10212), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [224158] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6391), 1, - sym_comment, - ACTIONS(10214), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [224171] = 5, + [225297] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10216), 1, + ACTIONS(10612), 1, anon_sym_DQUOTE, - STATE(6392), 1, - sym_comment, - STATE(6393), 1, + STATE(6212), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, - sym__escaped_str_content, - sym_escape_sequence, - [224188] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10218), 1, - anon_sym_DQUOTE, - STATE(6393), 1, + STATE(6606), 1, sym_comment, - STATE(6608), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [224205] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6394), 1, - sym_comment, - ACTIONS(10220), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [224218] = 3, - ACTIONS(247), 1, + [225314] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6395), 1, + STATE(6607), 1, sym_comment, - ACTIONS(10222), 4, + ACTIONS(10614), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [224231] = 5, + [225327] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10224), 1, + ACTIONS(10616), 1, anon_sym_DQUOTE, - STATE(6396), 1, + STATE(6608), 1, sym_comment, - STATE(6397), 1, + STATE(6609), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [224248] = 5, + [225344] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10226), 1, + ACTIONS(10618), 1, anon_sym_DQUOTE, - STATE(6397), 1, - sym_comment, - STATE(6608), 1, + STATE(6212), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + STATE(6609), 1, + sym_comment, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [224265] = 6, - ACTIONS(247), 1, + [225361] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6082), 1, - anon_sym_DOLLAR, - ACTIONS(8231), 1, - sym_identifier, - STATE(5366), 1, - sym_val_variable, - STATE(5647), 1, - sym__variable_name, - STATE(6398), 1, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(6211), 1, + anon_sym_LBRACE, + STATE(4811), 1, + sym_block, + STATE(6610), 1, sym_comment, - [224284] = 3, - ACTIONS(247), 1, + STATE(6737), 1, + aux_sym_shebang_repeat1, + [225380] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6399), 1, + STATE(6611), 1, sym_comment, - ACTIONS(10228), 4, + ACTIONS(10620), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [224297] = 5, + [225393] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10230), 1, + ACTIONS(10622), 1, anon_sym_DQUOTE, - STATE(6400), 1, + STATE(6612), 1, sym_comment, - STATE(6401), 1, + STATE(6613), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [224314] = 5, + [225410] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10232), 1, + ACTIONS(10624), 1, anon_sym_DQUOTE, - STATE(6401), 1, - sym_comment, - STATE(6608), 1, + STATE(6212), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + STATE(6613), 1, + sym_comment, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [224331] = 6, + [225427] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, - sym__entry_separator, - ACTIONS(9640), 1, - anon_sym_LBRACK, - ACTIONS(10234), 1, + ACTIONS(2246), 1, anon_sym_RBRACK, - STATE(2617), 1, - aux_sym__multiple_types_repeat1, - STATE(6402), 1, + ACTIONS(2248), 1, + anon_sym_LPAREN2, + ACTIONS(2250), 1, + sym__entry_separator, + ACTIONS(2252), 1, + aux_sym__unquoted_in_list_token2, + STATE(6614), 1, sym_comment, - [224350] = 3, - ACTIONS(247), 1, + [225446] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6403), 1, + STATE(6615), 1, sym_comment, - ACTIONS(10236), 4, + ACTIONS(10626), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [224363] = 5, + [225459] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10238), 1, + ACTIONS(10628), 1, anon_sym_DQUOTE, - STATE(6404), 1, + STATE(6616), 1, sym_comment, - STATE(6405), 1, + STATE(6617), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [224380] = 5, + [225476] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10240), 1, + ACTIONS(10630), 1, anon_sym_DQUOTE, - STATE(6405), 1, - sym_comment, - STATE(6608), 1, + STATE(6212), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + STATE(6617), 1, + sym_comment, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [224397] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(10068), 1, - anon_sym_LBRACK, - ACTIONS(10070), 1, - anon_sym_LPAREN, - STATE(3115), 1, - sym_parameter_parens, - STATE(3120), 1, - sym_parameter_bracks, - STATE(6406), 1, - sym_comment, - [224416] = 3, - ACTIONS(247), 1, + [225493] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6407), 1, + STATE(6618), 1, sym_comment, - ACTIONS(10242), 4, + ACTIONS(10632), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [224429] = 5, + [225506] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10244), 1, + ACTIONS(10634), 1, anon_sym_DQUOTE, - STATE(6408), 1, + STATE(6619), 1, sym_comment, - STATE(6409), 1, + STATE(6620), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [224446] = 5, + [225523] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10246), 1, + ACTIONS(10636), 1, anon_sym_DQUOTE, - STATE(6409), 1, - sym_comment, - STATE(6608), 1, + STATE(6212), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + STATE(6620), 1, + sym_comment, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [224463] = 4, - ACTIONS(247), 1, + [225540] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1659), 1, - aux_sym_unquoted_token2, - STATE(6410), 1, - sym_comment, - ACTIONS(1661), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [224478] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6411), 1, + STATE(6621), 1, sym_comment, - ACTIONS(10248), 4, + ACTIONS(10638), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [224491] = 5, + [225553] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10250), 1, + ACTIONS(10640), 1, anon_sym_DQUOTE, - STATE(6412), 1, + STATE(6622), 1, sym_comment, - STATE(6413), 1, + STATE(6623), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [224508] = 5, + [225570] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10252), 1, + ACTIONS(10642), 1, anon_sym_DQUOTE, - STATE(6413), 1, - sym_comment, - STATE(6608), 1, + STATE(6212), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + STATE(6623), 1, + sym_comment, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [224525] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8929), 1, - anon_sym_LBRACE, - STATE(1693), 1, - sym_block, - STATE(1694), 1, - sym_val_closure, - STATE(4976), 1, - sym__blosure, - STATE(6414), 1, - sym_comment, - [224544] = 3, - ACTIONS(247), 1, + [225587] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6415), 1, + STATE(6624), 1, sym_comment, - ACTIONS(10254), 4, + ACTIONS(10644), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [224557] = 5, + [225600] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10256), 1, + ACTIONS(10646), 1, anon_sym_DQUOTE, - STATE(6416), 1, + STATE(6625), 1, sym_comment, - STATE(6417), 1, + STATE(6626), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [224574] = 5, + [225617] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10258), 1, + ACTIONS(10648), 1, anon_sym_DQUOTE, - STATE(6417), 1, - sym_comment, - STATE(6608), 1, + STATE(6212), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + STATE(6626), 1, + sym_comment, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [224591] = 3, - ACTIONS(247), 1, + [225634] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6418), 1, - sym_comment, - ACTIONS(10260), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [224604] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6419), 1, + STATE(6627), 1, sym_comment, - ACTIONS(10262), 4, + ACTIONS(10650), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [224617] = 5, + [225647] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10264), 1, + ACTIONS(10652), 1, anon_sym_DQUOTE, - STATE(6420), 1, + STATE(6628), 1, sym_comment, - STATE(6421), 1, + STATE(6629), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [224634] = 5, + [225664] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10266), 1, + ACTIONS(10654), 1, anon_sym_DQUOTE, - STATE(6421), 1, - sym_comment, - STATE(6608), 1, + STATE(6212), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + STATE(6629), 1, + sym_comment, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [224651] = 3, - ACTIONS(247), 1, + [225681] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6422), 1, - sym_comment, - ACTIONS(6182), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [224664] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6423), 1, + STATE(6630), 1, sym_comment, - ACTIONS(10268), 4, + ACTIONS(10656), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [224677] = 5, + [225694] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10270), 1, + ACTIONS(10658), 1, anon_sym_DQUOTE, - STATE(6424), 1, + STATE(6631), 1, sym_comment, - STATE(6425), 1, + STATE(6632), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [224694] = 5, + [225711] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10272), 1, + ACTIONS(10660), 1, anon_sym_DQUOTE, - STATE(6425), 1, - sym_comment, - STATE(6608), 1, + STATE(6212), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + STATE(6632), 1, + sym_comment, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [224711] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1552), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(2291), 1, - anon_sym_RBRACE, - ACTIONS(2293), 1, - anon_sym_LPAREN2, - ACTIONS(2295), 1, - sym__entry_separator, - STATE(6426), 1, - sym_comment, - [224730] = 3, - ACTIONS(247), 1, + [225728] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6427), 1, + STATE(6633), 1, sym_comment, - ACTIONS(10274), 4, + ACTIONS(10662), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [224743] = 5, + [225741] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10276), 1, + ACTIONS(10664), 1, anon_sym_DQUOTE, - STATE(6428), 1, + STATE(6634), 1, sym_comment, - STATE(6429), 1, + STATE(6635), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [224760] = 5, + [225758] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10278), 1, + ACTIONS(10666), 1, anon_sym_DQUOTE, - STATE(6429), 1, - sym_comment, - STATE(6608), 1, + STATE(6212), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + STATE(6635), 1, + sym_comment, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [224777] = 3, - ACTIONS(247), 1, + [225775] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6430), 1, + STATE(6636), 1, sym_comment, - ACTIONS(10280), 4, + ACTIONS(10668), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [224790] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10282), 1, - anon_sym_DQUOTE, - STATE(6431), 1, - sym_comment, - STATE(6432), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, - sym__escaped_str_content, - sym_escape_sequence, - [224807] = 5, + [225788] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10284), 1, + ACTIONS(10670), 1, anon_sym_DQUOTE, - STATE(6432), 1, + STATE(6637), 1, sym_comment, - STATE(6608), 1, + STATE(6638), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [224824] = 5, + [225805] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10286), 1, + ACTIONS(10672), 1, anon_sym_DQUOTE, - STATE(6433), 1, - sym_comment, - STATE(6434), 1, + STATE(6212), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, - sym__escaped_str_content, - sym_escape_sequence, - [224841] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10288), 1, - anon_sym_DQUOTE, - STATE(6434), 1, + STATE(6638), 1, sym_comment, - STATE(6608), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [224858] = 5, - ACTIONS(3), 1, + [225822] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(10290), 1, - anon_sym_DQUOTE, - STATE(6435), 1, + STATE(6639), 1, sym_comment, - STATE(6436), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, - sym__escaped_str_content, - sym_escape_sequence, - [224875] = 5, + ACTIONS(10674), 4, + sym_identifier, + anon_sym_in, + anon_sym_nu, + anon_sym_env, + [225835] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10292), 1, + ACTIONS(10676), 1, anon_sym_DQUOTE, - STATE(6436), 1, + STATE(6640), 1, sym_comment, - STATE(6608), 1, + STATE(6641), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [224892] = 5, + [225852] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10294), 1, + ACTIONS(10678), 1, anon_sym_DQUOTE, - STATE(6437), 1, - sym_comment, - STATE(6438), 1, + STATE(6212), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, - sym__escaped_str_content, - sym_escape_sequence, - [224909] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10296), 1, - anon_sym_DQUOTE, - STATE(6438), 1, + STATE(6641), 1, sym_comment, - STATE(6608), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [224926] = 5, + [225869] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10298), 1, + ACTIONS(10680), 1, anon_sym_DQUOTE, - STATE(6439), 1, + STATE(6642), 1, sym_comment, - STATE(6440), 1, + STATE(6643), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [224943] = 5, + [225886] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10300), 1, + ACTIONS(10682), 1, anon_sym_DQUOTE, - STATE(6440), 1, - sym_comment, - STATE(6608), 1, + STATE(6212), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, - sym__escaped_str_content, - sym_escape_sequence, - [224960] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10302), 1, - anon_sym_DQUOTE, - STATE(6441), 1, + STATE(6643), 1, sym_comment, - STATE(6442), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [224977] = 5, + [225903] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10304), 1, + ACTIONS(10684), 1, anon_sym_DQUOTE, - STATE(6442), 1, + STATE(6644), 1, sym_comment, - STATE(6608), 1, + STATE(6645), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [224994] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6443), 1, - sym_comment, - ACTIONS(6184), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [225007] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1494), 1, - aux_sym_unquoted_token2, - STATE(6444), 1, - sym_comment, - ACTIONS(1786), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [225022] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6445), 1, - sym_comment, - ACTIONS(10306), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [225035] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(10068), 1, - anon_sym_LBRACK, - ACTIONS(10070), 1, - anon_sym_LPAREN, - STATE(3101), 1, - sym_parameter_parens, - STATE(3102), 1, - sym_parameter_bracks, - STATE(6446), 1, - sym_comment, - [225054] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(9520), 1, - anon_sym_use, - ACTIONS(9522), 1, - anon_sym_list, - ACTIONS(9524), 1, - anon_sym_hide, - ACTIONS(9526), 1, - anon_sym_new, - STATE(6447), 1, - sym_comment, - [225073] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6472), 1, - anon_sym_DOT_DOT2, - ACTIONS(10308), 1, - anon_sym_LBRACE, - STATE(6448), 1, - sym_comment, - ACTIONS(6474), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [225090] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6449), 1, - sym_comment, - ACTIONS(6194), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [225103] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6450), 1, - sym_comment, - ACTIONS(10310), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [225116] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6451), 1, - sym_comment, - ACTIONS(10306), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [225129] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1997), 1, - anon_sym_LBRACE, - ACTIONS(10312), 1, - anon_sym_DOT_DOT2, - STATE(6452), 1, - sym_comment, - ACTIONS(10314), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [225146] = 5, + [225920] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10316), 1, + ACTIONS(10686), 1, anon_sym_DQUOTE, - STATE(6453), 1, - sym_comment, - STATE(6497), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, - sym__escaped_str_content, - sym_escape_sequence, - [225163] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6454), 1, - sym_comment, - ACTIONS(10318), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [225176] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2005), 1, - anon_sym_LBRACE, - ACTIONS(10320), 1, - anon_sym_DOT_DOT2, - STATE(6455), 1, - sym_comment, - ACTIONS(10322), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [225193] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(2013), 1, - anon_sym_LBRACE, - ACTIONS(10324), 1, - anon_sym_DOT_DOT2, - STATE(6456), 1, - sym_comment, - ACTIONS(10326), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [225210] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(6055), 1, - anon_sym_LBRACE, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(4739), 1, - sym_block, - STATE(6457), 1, + STATE(6212), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6645), 1, sym_comment, - [225229] = 5, + ACTIONS(9917), 2, + sym__escaped_str_content, + sym_escape_sequence, + [225937] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10328), 1, + ACTIONS(10688), 1, anon_sym_DQUOTE, - STATE(6458), 1, + STATE(6646), 1, sym_comment, - STATE(6474), 1, + STATE(6647), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, + ACTIONS(9917), 2, sym__escaped_str_content, sym_escape_sequence, - [225246] = 6, + [225954] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2229), 1, - anon_sym_RBRACE, - ACTIONS(2231), 1, - anon_sym_LPAREN2, - ACTIONS(2233), 1, - sym__entry_separator, - ACTIONS(2235), 1, - aux_sym__unquoted_in_record_token4, - STATE(6459), 1, + ACTIONS(10690), 1, + anon_sym_DQUOTE, + STATE(6212), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6647), 1, sym_comment, - [225265] = 6, - ACTIONS(247), 1, + ACTIONS(9917), 2, + sym__escaped_str_content, + sym_escape_sequence, + [225971] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10068), 1, - anon_sym_LBRACK, - ACTIONS(10070), 1, - anon_sym_LPAREN, - STATE(3103), 1, - sym_parameter_parens, - STATE(3104), 1, - sym_parameter_bracks, - STATE(6460), 1, + ACTIONS(10692), 1, + anon_sym_DQUOTE, + STATE(6648), 1, sym_comment, - [225284] = 6, - ACTIONS(247), 1, + STATE(6649), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9917), 2, + sym__escaped_str_content, + sym_escape_sequence, + [225988] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10068), 1, - anon_sym_LBRACK, - ACTIONS(10070), 1, - anon_sym_LPAREN, - STATE(3108), 1, - sym_parameter_parens, - STATE(3109), 1, - sym_parameter_bracks, - STATE(6461), 1, + ACTIONS(10694), 1, + anon_sym_DQUOTE, + STATE(6212), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6649), 1, sym_comment, - [225303] = 6, + ACTIONS(9917), 2, + sym__escaped_str_content, + sym_escape_sequence, + [226005] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2229), 1, - anon_sym_RBRACK, - ACTIONS(2231), 1, - anon_sym_LPAREN2, - ACTIONS(2233), 1, - sym__entry_separator, - ACTIONS(2235), 1, - aux_sym__unquoted_in_list_token4, - STATE(6462), 1, + ACTIONS(10696), 1, + anon_sym_DQUOTE, + STATE(6650), 1, sym_comment, - [225322] = 4, + STATE(6651), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(9917), 2, + sym__escaped_str_content, + sym_escape_sequence, + [226022] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10330), 1, - anon_sym_LPAREN, - STATE(6463), 1, + ACTIONS(10698), 1, + anon_sym_DQUOTE, + STATE(6212), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6651), 1, sym_comment, - ACTIONS(10332), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [225337] = 3, - ACTIONS(247), 1, + ACTIONS(9917), 2, + sym__escaped_str_content, + sym_escape_sequence, + [226039] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6464), 1, + STATE(6652), 1, sym_comment, - ACTIONS(10334), 4, + ACTIONS(10276), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [225350] = 6, - ACTIONS(3), 1, + [226052] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5441), 1, - anon_sym_LPAREN2, - ACTIONS(5726), 1, - anon_sym_RBRACK, - ACTIONS(5732), 1, - sym__entry_separator, - STATE(6465), 1, + ACTIONS(1660), 1, + ts_builtin_sym_end, + STATE(255), 1, + aux_sym__block_body_repeat1, + STATE(6653), 1, sym_comment, - STATE(7234), 1, - sym__expr_parenthesized_immediate, - [225369] = 6, - ACTIONS(247), 1, + ACTIONS(33), 2, + sym__newline, + anon_sym_SEMI, + [226069] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(10068), 1, + ACTIONS(9937), 1, anon_sym_LBRACK, - ACTIONS(10070), 1, + ACTIONS(9939), 1, anon_sym_LPAREN, - STATE(3117), 1, + STATE(3146), 1, sym_parameter_parens, - STATE(3118), 1, + STATE(3147), 1, sym_parameter_bracks, - STATE(6466), 1, + STATE(6654), 1, sym_comment, - [225388] = 6, - ACTIONS(3), 1, + [226088] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5567), 1, - sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(6611), 1, + anon_sym_DOT_DOT2, + ACTIONS(10700), 1, + anon_sym_LBRACE, + STATE(6655), 1, + sym_comment, + ACTIONS(6595), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [226105] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(6211), 1, + anon_sym_LBRACE, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(4794), 1, + sym_block, + STATE(6656), 1, + sym_comment, + [226124] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(9937), 1, anon_sym_LBRACK, - ACTIONS(10336), 1, - anon_sym_RBRACK, - STATE(2617), 1, - aux_sym__multiple_types_repeat1, - STATE(6467), 1, + ACTIONS(9939), 1, + anon_sym_LPAREN, + STATE(3139), 1, + sym_parameter_parens, + STATE(3143), 1, + sym_parameter_bracks, + STATE(6657), 1, sym_comment, - [225407] = 3, - ACTIONS(247), 1, + [226143] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6468), 1, + STATE(6658), 1, sym_comment, - ACTIONS(10334), 4, + ACTIONS(10702), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [225420] = 6, + [226156] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(10338), 1, + ACTIONS(10704), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6469), 1, - sym_comment, - [225439] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1798), 1, - aux_sym_unquoted_token2, - ACTIONS(10340), 1, - anon_sym_DOT_DOT2, - STATE(6470), 1, + STATE(6659), 1, sym_comment, - ACTIONS(10342), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [225456] = 6, + [226175] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1494), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1778), 1, - anon_sym_RBRACK, - ACTIONS(1780), 1, - anon_sym_LPAREN2, - ACTIONS(1786), 1, + ACTIONS(6494), 1, sym__entry_separator, - STATE(6471), 1, + ACTIONS(9921), 1, + anon_sym_LBRACK, + ACTIONS(10706), 1, + anon_sym_RBRACK, + STATE(3400), 1, + aux_sym__multiple_types_repeat1, + STATE(6660), 1, sym_comment, - [225475] = 6, + [226194] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(10344), 1, + ACTIONS(10708), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6472), 1, - sym_comment, - [225494] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6473), 1, - sym_comment, - ACTIONS(10346), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [225507] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10348), 1, - anon_sym_DQUOTE, - STATE(6474), 1, - sym_comment, - STATE(6608), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, - sym__escaped_str_content, - sym_escape_sequence, - [225524] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2233), 1, - anon_sym_PIPE, - ACTIONS(2235), 1, - aux_sym_unquoted_token4, - STATE(6475), 1, + STATE(6661), 1, sym_comment, - ACTIONS(2229), 2, - anon_sym_if, - anon_sym_EQ_GT, - [225541] = 4, - ACTIONS(247), 1, + [226213] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1798), 1, - aux_sym_unquoted_token2, - STATE(6476), 1, + ACTIONS(9937), 1, + anon_sym_LBRACK, + ACTIONS(9939), 1, + anon_sym_LPAREN, + STATE(3148), 1, + sym_parameter_parens, + STATE(3149), 1, + sym_parameter_bracks, + STATE(6662), 1, sym_comment, - ACTIONS(2289), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [225556] = 6, - ACTIONS(247), 1, + [226232] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(10068), 1, + ACTIONS(9937), 1, anon_sym_LBRACK, - ACTIONS(10070), 1, + ACTIONS(9939), 1, anon_sym_LPAREN, - STATE(5712), 1, + STATE(3150), 1, sym_parameter_parens, - STATE(5714), 1, + STATE(3151), 1, sym_parameter_bracks, - STATE(6477), 1, + STATE(6663), 1, sym_comment, - [225575] = 6, + [226251] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1070), 1, + STATE(6664), 1, + sym_comment, + ACTIONS(1715), 2, anon_sym_RBRACE, - ACTIONS(1072), 1, - sym__entry_separator, - ACTIONS(2225), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(1717), 2, anon_sym_LPAREN2, - ACTIONS(2227), 1, - aux_sym__unquoted_in_record_token4, - STATE(6478), 1, - sym_comment, - [225594] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6479), 1, - sym_comment, - ACTIONS(10350), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [225607] = 4, - ACTIONS(247), 1, + sym__entry_separator, + [226266] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1798), 1, - aux_sym_unquoted_token2, - STATE(6480), 1, + ACTIONS(9937), 1, + anon_sym_LBRACK, + ACTIONS(9939), 1, + anon_sym_LPAREN, + STATE(3152), 1, + sym_parameter_bracks, + STATE(3153), 1, + sym_parameter_parens, + STATE(6665), 1, sym_comment, - ACTIONS(1796), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [225622] = 3, - ACTIONS(247), 1, + [226285] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6481), 1, + STATE(6666), 1, sym_comment, - ACTIONS(6196), 4, - ts_builtin_sym_end, + ACTIONS(10702), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACE, - [225635] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [226298] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5441), 1, - anon_sym_LPAREN2, - ACTIONS(7548), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(7550), 1, + ACTIONS(9921), 1, + anon_sym_LBRACK, + ACTIONS(10710), 1, anon_sym_RBRACK, - STATE(6482), 1, + STATE(3400), 1, + aux_sym__multiple_types_repeat1, + STATE(6667), 1, sym_comment, - STATE(7567), 1, - sym__expr_parenthesized_immediate, - [225654] = 3, - ACTIONS(247), 1, + [226317] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6483), 1, + STATE(6668), 1, sym_comment, - ACTIONS(10352), 4, + ACTIONS(10712), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [225667] = 4, + [226330] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6484), 1, + STATE(6669), 1, sym_comment, - ACTIONS(1738), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1740), 2, + ACTIONS(1703), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1705), 2, anon_sym_LPAREN2, sym__entry_separator, - [225682] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(10354), 1, - anon_sym_RBRACK, - STATE(5187), 1, - aux_sym_parameter_repeat2, - STATE(6485), 1, - sym_comment, - ACTIONS(2551), 2, - sym__newline, - anon_sym_COMMA, - [225699] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5567), 1, - sym__entry_separator, - ACTIONS(9640), 1, - anon_sym_LBRACK, - ACTIONS(10356), 1, - anon_sym_RBRACK, - STATE(2617), 1, - aux_sym__multiple_types_repeat1, - STATE(6486), 1, - sym_comment, - [225718] = 3, - ACTIONS(247), 1, + [226345] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6487), 1, + STATE(6670), 1, sym_comment, - ACTIONS(10358), 4, + ACTIONS(10714), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [225731] = 6, + [226358] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, - sym__entry_separator, - ACTIONS(9640), 1, - anon_sym_LBRACK, - ACTIONS(10360), 1, + ACTIONS(1844), 1, + anon_sym_LPAREN2, + ACTIONS(1852), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2277), 1, anon_sym_RBRACK, - STATE(2617), 1, - aux_sym__multiple_types_repeat1, - STATE(6488), 1, + ACTIONS(2279), 1, + sym__entry_separator, + STATE(6671), 1, sym_comment, - [225750] = 6, + [226377] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, - sym__entry_separator, - ACTIONS(9640), 1, - anon_sym_LBRACK, - ACTIONS(10362), 1, + ACTIONS(1558), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2335), 1, anon_sym_RBRACK, - STATE(2617), 1, - aux_sym__multiple_types_repeat1, - STATE(6489), 1, - sym_comment, - [225769] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6490), 1, + ACTIONS(2337), 1, + anon_sym_LPAREN2, + ACTIONS(2339), 1, + sym__entry_separator, + STATE(6672), 1, sym_comment, - ACTIONS(10364), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [225782] = 3, - ACTIONS(247), 1, + [226396] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6491), 1, - sym_comment, - ACTIONS(10366), 4, - sym__newline, - anon_sym_SEMI, + ACTIONS(9574), 1, anon_sym_RPAREN, - anon_sym_RBRACE, - [225795] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6492), 1, + STATE(6673), 1, sym_comment, - ACTIONS(10368), 4, + STATE(6722), 1, + aux_sym__block_body_repeat1, + ACTIONS(9960), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [225808] = 6, + [226413] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(5518), 1, + anon_sym_LPAREN2, + ACTIONS(7727), 1, sym__entry_separator, - ACTIONS(9640), 1, - anon_sym_LBRACK, - ACTIONS(10370), 1, + ACTIONS(7729), 1, anon_sym_RBRACK, - STATE(2617), 1, - aux_sym__multiple_types_repeat1, - STATE(6493), 1, + STATE(6674), 1, + sym_comment, + STATE(7657), 1, + sym__expr_parenthesized_immediate, + [226432] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1715), 1, + aux_sym_unquoted_token2, + ACTIONS(9847), 1, + aux_sym__immediate_decimal_token2, + STATE(6675), 1, sym_comment, - [225827] = 3, - ACTIONS(247), 1, + ACTIONS(1717), 2, + anon_sym_LBRACE, + anon_sym_LPAREN2, + [226449] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6494), 1, + STATE(6676), 1, sym_comment, - ACTIONS(10372), 4, + ACTIONS(10716), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [225840] = 6, - ACTIONS(247), 1, + [226462] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1013), 1, - sym__table_head_separator, - ACTIONS(9552), 1, - anon_sym_DOT, - STATE(6495), 1, + STATE(6677), 1, sym_comment, - STATE(6496), 1, - aux_sym_cell_path_repeat1, - STATE(6916), 1, - sym_path, - [225859] = 5, - ACTIONS(247), 1, + ACTIONS(1769), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1771), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [226477] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1017), 1, - sym__table_head_separator, - ACTIONS(10374), 1, - anon_sym_DOT, - STATE(6916), 1, - sym_path, - STATE(6496), 2, + STATE(6678), 1, sym_comment, - aux_sym_cell_path_repeat1, - [225876] = 5, + ACTIONS(8034), 4, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_AT, + anon_sym_LBRACE, + [226490] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10377), 1, - anon_sym_DQUOTE, - STATE(6497), 1, + STATE(6679), 1, sym_comment, - STATE(6608), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, - sym__escaped_str_content, - sym_escape_sequence, - [225893] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(1826), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1828), 2, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(9640), 1, - anon_sym_LBRACK, - ACTIONS(10379), 1, - anon_sym_RBRACK, - STATE(2617), 1, - aux_sym__multiple_types_repeat1, - STATE(6498), 1, - sym_comment, - [225912] = 6, - ACTIONS(3), 1, + [226505] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5567), 1, - sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9937), 1, anon_sym_LBRACK, - ACTIONS(10381), 1, - anon_sym_RBRACK, - STATE(2617), 1, - aux_sym__multiple_types_repeat1, - STATE(6499), 1, + ACTIONS(9939), 1, + anon_sym_LPAREN, + STATE(3140), 1, + sym_parameter_bracks, + STATE(3141), 1, + sym_parameter_parens, + STATE(6680), 1, sym_comment, - [225931] = 6, - ACTIONS(3), 1, + [226524] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5567), 1, - sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(10270), 1, anon_sym_LBRACK, - ACTIONS(10383), 1, - anon_sym_RBRACK, - STATE(2617), 1, - aux_sym__multiple_types_repeat1, - STATE(6500), 1, + ACTIONS(10272), 1, + anon_sym_LPAREN, + STATE(6002), 1, + sym_parameter_parens, + STATE(6010), 1, + sym_parameter_bracks, + STATE(6681), 1, sym_comment, - [225950] = 6, + [226543] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(10385), 1, + ACTIONS(10718), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6501), 1, + STATE(6682), 1, sym_comment, - [225969] = 3, - ACTIONS(247), 1, + [226562] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6502), 1, + STATE(6683), 1, sym_comment, - ACTIONS(10387), 4, + ACTIONS(10720), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [225982] = 3, - ACTIONS(247), 1, + [226575] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6503), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(9921), 1, + anon_sym_LBRACK, + ACTIONS(10722), 1, + anon_sym_RBRACK, + STATE(3400), 1, + aux_sym__multiple_types_repeat1, + STATE(6684), 1, sym_comment, - ACTIONS(10389), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [225995] = 3, - ACTIONS(247), 1, + [226594] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6504), 1, + STATE(6685), 1, sym_comment, - ACTIONS(9990), 4, + ACTIONS(10724), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [226008] = 3, - ACTIONS(247), 1, + [226607] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6505), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(9921), 1, + anon_sym_LBRACK, + ACTIONS(10726), 1, + anon_sym_RBRACK, + STATE(3400), 1, + aux_sym__multiple_types_repeat1, + STATE(6686), 1, sym_comment, - ACTIONS(10391), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [226021] = 3, - ACTIONS(247), 1, + [226626] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6506), 1, + STATE(6687), 1, sym_comment, - ACTIONS(10393), 4, + ACTIONS(10728), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [226034] = 3, - ACTIONS(247), 1, + [226639] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6507), 1, + STATE(6688), 1, sym_comment, - ACTIONS(10395), 4, + ACTIONS(10730), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [226047] = 4, - ACTIONS(247), 1, + [226652] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1554), 1, - aux_sym_cmd_identifier_token41, - STATE(6508), 1, + ACTIONS(1029), 1, + sym__table_head_separator, + ACTIONS(9747), 1, + anon_sym_DOT, + STATE(6689), 1, sym_comment, - ACTIONS(1556), 3, - sym_filesize_unit, - sym_duration_unit, - aux_sym_record_entry_token1, - [226062] = 3, - ACTIONS(247), 1, + STATE(6690), 1, + aux_sym_cell_path_repeat1, + STATE(7323), 1, + sym_path, + [226671] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6509), 1, + ACTIONS(1033), 1, + sym__table_head_separator, + ACTIONS(10732), 1, + anon_sym_DOT, + STATE(7323), 1, + sym_path, + STATE(6690), 2, sym_comment, - ACTIONS(9990), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [226075] = 3, - ACTIONS(247), 1, + aux_sym_cell_path_repeat1, + [226688] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6510), 1, + STATE(6691), 1, sym_comment, - ACTIONS(10397), 4, + ACTIONS(10735), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [226088] = 6, + [226701] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6611), 1, + anon_sym_DOT_DOT2, + ACTIONS(10737), 1, + anon_sym_LBRACE, + STATE(6692), 1, + sym_comment, + ACTIONS(6595), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [226718] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(5518), 1, + anon_sym_LPAREN2, + ACTIONS(7814), 1, sym__entry_separator, - ACTIONS(9640), 1, - anon_sym_LBRACK, - ACTIONS(10399), 1, + ACTIONS(7816), 1, anon_sym_RBRACK, - STATE(2617), 1, - aux_sym__multiple_types_repeat1, - STATE(6511), 1, + STATE(6693), 1, sym_comment, - [226107] = 6, + STATE(7657), 1, + sym__expr_parenthesized_immediate, + [226737] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(10401), 1, + ACTIONS(10739), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6512), 1, + STATE(6694), 1, sym_comment, - [226126] = 6, + [226756] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(10403), 1, + ACTIONS(10741), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6513), 1, + STATE(6695), 1, sym_comment, - [226145] = 6, + [226775] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(10405), 1, + ACTIONS(10743), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6514), 1, + STATE(6696), 1, sym_comment, - [226164] = 6, + [226794] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(10407), 1, + ACTIONS(10745), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6515), 1, + STATE(6697), 1, sym_comment, - [226183] = 6, + [226813] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(10409), 1, + ACTIONS(10747), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6516), 1, + STATE(6698), 1, sym_comment, - [226202] = 6, + [226832] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(10411), 1, + ACTIONS(10749), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6517), 1, + STATE(6699), 1, sym_comment, - [226221] = 6, + [226851] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(10413), 1, + ACTIONS(10751), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6518), 1, - sym_comment, - [226240] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6519), 1, - sym_comment, - ACTIONS(10415), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [226253] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6520), 1, - sym_comment, - ACTIONS(10417), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [226266] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6521), 1, - sym_comment, - ACTIONS(10419), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [226279] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10421), 1, - anon_sym_DQUOTE, - STATE(6522), 1, - sym_comment, - STATE(6608), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, - sym__escaped_str_content, - sym_escape_sequence, - [226296] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6523), 1, + STATE(6700), 1, sym_comment, - ACTIONS(10423), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [226309] = 4, + [226870] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(6524), 1, - sym_comment, - ACTIONS(1050), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(1052), 2, - anon_sym_DOT, + ACTIONS(6494), 1, sym__entry_separator, - [226324] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6525), 1, - sym_comment, - ACTIONS(1054), 2, + ACTIONS(9921), 1, + anon_sym_LBRACK, + ACTIONS(10753), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(1056), 2, - anon_sym_DOT, - sym__entry_separator, - [226339] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1721), 1, - aux_sym_unquoted_token2, - ACTIONS(10425), 1, - aux_sym__immediate_decimal_token2, - STATE(6526), 1, - sym_comment, - ACTIONS(1723), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [226356] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4808), 1, - sym_identifier, - ACTIONS(4810), 1, - anon_sym_DOLLAR, - ACTIONS(10427), 1, - sym_long_flag_identifier, - ACTIONS(10429), 1, - anon_sym_EQ2, - STATE(6527), 1, - sym_comment, - [226375] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4942), 1, - anon_sym_DASH, - ACTIONS(10431), 1, - anon_sym_EQ2, - STATE(6528), 1, + STATE(3400), 1, + aux_sym__multiple_types_repeat1, + STATE(6701), 1, sym_comment, - ACTIONS(4940), 2, - sym_identifier, - anon_sym_DASH_DASH, - [226392] = 3, - ACTIONS(247), 1, + [226889] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6529), 1, + STATE(6702), 1, sym_comment, - ACTIONS(10433), 4, + ACTIONS(10755), 4, sym_identifier, anon_sym_in, anon_sym_nu, anon_sym_env, - [226405] = 3, - ACTIONS(247), 1, + [226902] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6530), 1, + ACTIONS(1558), 1, + aux_sym_unquoted_token2, + STATE(6703), 1, sym_comment, - ACTIONS(10435), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [226418] = 5, - ACTIONS(247), 1, + ACTIONS(2339), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [226917] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4900), 1, + ACTIONS(1628), 1, anon_sym_DASH, - ACTIONS(10437), 1, - anon_sym_EQ2, - STATE(6531), 1, + ACTIONS(8580), 1, + aux_sym_unquoted_token2, + STATE(6704), 1, sym_comment, - ACTIONS(4898), 2, + ACTIONS(1640), 2, sym_identifier, anon_sym_DASH_DASH, - [226435] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10439), 1, - anon_sym_DQUOTE, - STATE(6532), 1, - sym_comment, - STATE(6539), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, - sym__escaped_str_content, - sym_escape_sequence, - [226452] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(10068), 1, - anon_sym_LBRACK, - ACTIONS(10070), 1, - anon_sym_LPAREN, - STATE(3105), 1, - sym_parameter_bracks, - STATE(3119), 1, - sym_parameter_parens, - STATE(6533), 1, - sym_comment, - [226471] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6534), 1, - sym_comment, - ACTIONS(10441), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [226484] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(6055), 1, - anon_sym_LBRACE, - STATE(4705), 1, - sym_block, - STATE(6457), 1, - aux_sym_shebang_repeat1, - STATE(6535), 1, - sym_comment, - [226503] = 4, + [226934] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(6536), 1, - sym_comment, - ACTIONS(2253), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token4, - ACTIONS(2255), 2, - anon_sym_LPAREN2, + ACTIONS(6494), 1, sym__entry_separator, - [226518] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1790), 1, - anon_sym_LPAREN2, - ACTIONS(1798), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2287), 1, + ACTIONS(9921), 1, + anon_sym_LBRACK, + ACTIONS(10757), 1, anon_sym_RBRACK, - ACTIONS(2289), 1, - sym__entry_separator, - STATE(6537), 1, - sym_comment, - [226537] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1013), 1, - aux_sym_record_entry_token1, - ACTIONS(9540), 1, - anon_sym_DOT, - STATE(6538), 1, - sym_comment, - STATE(6561), 1, - aux_sym_cell_path_repeat1, - STATE(6916), 1, - sym_path, - [226556] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10443), 1, - anon_sym_DQUOTE, - STATE(6539), 1, + STATE(3400), 1, + aux_sym__multiple_types_repeat1, + STATE(6705), 1, sym_comment, - STATE(6608), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, - sym__escaped_str_content, - sym_escape_sequence, - [226573] = 6, + [226953] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1788), 1, - anon_sym_RBRACK, - ACTIONS(1790), 1, - anon_sym_LPAREN2, - ACTIONS(1796), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(1798), 1, - aux_sym__unquoted_in_list_token2, - STATE(6540), 1, - sym_comment, - [226592] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(10068), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(10070), 1, - anon_sym_LPAREN, - STATE(5648), 1, - sym_parameter_parens, - STATE(5649), 1, - sym_parameter_bracks, - STATE(6541), 1, - sym_comment, - [226611] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2237), 1, - anon_sym_RBRACE, - ACTIONS(2239), 1, - anon_sym_LPAREN2, - ACTIONS(2241), 1, - sym__entry_separator, - ACTIONS(2243), 1, - aux_sym__unquoted_in_record_token4, - STATE(6542), 1, - sym_comment, - [226630] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2239), 1, - anon_sym_LPAREN2, - ACTIONS(2243), 1, - aux_sym__unquoted_in_record_token4, - ACTIONS(2245), 1, - anon_sym_RBRACE, - ACTIONS(2247), 1, - sym__entry_separator, - STATE(6543), 1, - sym_comment, - [226649] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1552), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2291), 1, + ACTIONS(10759), 1, anon_sym_RBRACK, - ACTIONS(2293), 1, - anon_sym_LPAREN2, - ACTIONS(2295), 1, - sym__entry_separator, - STATE(6544), 1, + STATE(3400), 1, + aux_sym__multiple_types_repeat1, + STATE(6706), 1, sym_comment, - [226668] = 4, + [226972] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2227), 1, + ACTIONS(2275), 1, aux_sym_unquoted_token4, - STATE(6545), 1, + STATE(6707), 1, sym_comment, - ACTIONS(1070), 3, + ACTIONS(1090), 3, sym_identifier, anon_sym_DASH_DASH, anon_sym_DASH, - [226683] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2297), 1, - anon_sym_RBRACE, - ACTIONS(2299), 1, - anon_sym_LPAREN2, - ACTIONS(2301), 1, - sym__entry_separator, - ACTIONS(2303), 1, - aux_sym__unquoted_in_record_token2, - STATE(6546), 1, - sym_comment, - [226702] = 5, - ACTIONS(247), 1, + [226987] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1721), 1, - aux_sym_unquoted_token2, - ACTIONS(10445), 1, + ACTIONS(8869), 1, aux_sym__immediate_decimal_token2, - STATE(6547), 1, - sym_comment, - ACTIONS(1723), 2, - anon_sym_LBRACE, - anon_sym_LPAREN2, - [226719] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(10447), 1, - anon_sym_QMARK2, - STATE(6548), 1, - sym_comment, - ACTIONS(1024), 3, - anon_sym_DOT, - aux_sym_record_entry_token1, - sym__table_head_separator, - [226734] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(10449), 1, - anon_sym_QMARK2, - STATE(6549), 1, - sym_comment, - ACTIONS(1030), 3, + ACTIONS(10761), 1, anon_sym_DOT, - aux_sym_record_entry_token1, - sym__table_head_separator, - [226749] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(10451), 1, - anon_sym_LBRACK, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(6550), 1, - sym_comment, - STATE(7442), 1, - sym_val_list, - [226768] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5567), 1, - sym__entry_separator, - ACTIONS(9640), 1, - anon_sym_LBRACK, - ACTIONS(10453), 1, - anon_sym_RBRACK, - STATE(2617), 1, - aux_sym__multiple_types_repeat1, - STATE(6551), 1, - sym_comment, - [226787] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(635), 1, - ts_builtin_sym_end, - STATE(263), 1, - aux_sym__block_body_repeat1, - STATE(6552), 1, + STATE(6708), 1, sym_comment, - ACTIONS(33), 2, + ACTIONS(1717), 2, sym__newline, - anon_sym_SEMI, - [226804] = 6, + anon_sym_LBRACE, + [227004] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, - sym__entry_separator, - ACTIONS(9640), 1, - anon_sym_LBRACK, - ACTIONS(10455), 1, - anon_sym_RBRACK, - STATE(2617), 1, - aux_sym__multiple_types_repeat1, - STATE(6553), 1, + ACTIONS(10763), 1, + anon_sym_DQUOTE, + STATE(6278), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6709), 1, sym_comment, - [226823] = 6, - ACTIONS(3), 1, + ACTIONS(9917), 2, + sym__escaped_str_content, + sym_escape_sequence, + [227021] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5567), 1, - sym__entry_separator, - ACTIONS(9640), 1, - anon_sym_LBRACK, - ACTIONS(10457), 1, - anon_sym_RBRACK, - STATE(2617), 1, - aux_sym__multiple_types_repeat1, - STATE(6554), 1, + ACTIONS(4947), 1, + anon_sym_DASH, + ACTIONS(10765), 1, + anon_sym_EQ2, + STATE(6710), 1, sym_comment, - [226842] = 6, + ACTIONS(4945), 2, + sym_identifier, + anon_sym_DASH_DASH, + [227038] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(10459), 1, + ACTIONS(10767), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6555), 1, + STATE(6711), 1, sym_comment, - [226861] = 6, + [227057] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(1630), 1, + anon_sym_LPAREN2, + ACTIONS(2315), 1, + anon_sym_RBRACE, + ACTIONS(2317), 1, sym__entry_separator, - ACTIONS(9640), 1, - anon_sym_LBRACK, - ACTIONS(10461), 1, - anon_sym_RBRACK, - STATE(2617), 1, - aux_sym__multiple_types_repeat1, - STATE(6556), 1, + STATE(6712), 1, sym_comment, - [226880] = 6, - ACTIONS(3), 1, + STATE(7774), 1, + sym__expr_parenthesized_immediate, + [227076] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5567), 1, - sym__entry_separator, - ACTIONS(9640), 1, - anon_sym_LBRACK, - ACTIONS(10463), 1, - anon_sym_RBRACK, - STATE(2617), 1, - aux_sym__multiple_types_repeat1, - STATE(6557), 1, + ACTIONS(4991), 1, + anon_sym_DASH, + ACTIONS(10769), 1, + anon_sym_EQ2, + STATE(6713), 1, sym_comment, - [226899] = 6, + ACTIONS(4989), 2, + sym_identifier, + anon_sym_DASH_DASH, + [227093] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(1630), 1, + anon_sym_LPAREN2, + ACTIONS(2242), 1, + anon_sym_RBRACE, + ACTIONS(2244), 1, sym__entry_separator, - ACTIONS(9640), 1, - anon_sym_LBRACK, - ACTIONS(10465), 1, - anon_sym_RBRACK, - STATE(2617), 1, - aux_sym__multiple_types_repeat1, - STATE(6558), 1, + STATE(6714), 1, sym_comment, - [226918] = 3, - ACTIONS(247), 1, + STATE(7774), 1, + sym__expr_parenthesized_immediate, + [227112] = 6, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6559), 1, + ACTIONS(10771), 1, + anon_sym_use, + ACTIONS(10773), 1, + anon_sym_list, + ACTIONS(10775), 1, + anon_sym_hide, + ACTIONS(10777), 1, + anon_sym_new, + STATE(6715), 1, sym_comment, - ACTIONS(7807), 4, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_AT, - anon_sym_LBRACE, - [226931] = 6, + [227131] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(5518), 1, + anon_sym_LPAREN2, + ACTIONS(7741), 1, sym__entry_separator, - ACTIONS(9640), 1, - anon_sym_LBRACK, - ACTIONS(10467), 1, + ACTIONS(7743), 1, anon_sym_RBRACK, - STATE(2617), 1, - aux_sym__multiple_types_repeat1, - STATE(6560), 1, - sym_comment, - [226950] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1017), 1, - aux_sym_record_entry_token1, - ACTIONS(10469), 1, - anon_sym_DOT, - STATE(6916), 1, - sym_path, - STATE(6561), 2, + STATE(6716), 1, sym_comment, - aux_sym_cell_path_repeat1, - [226967] = 3, - ACTIONS(247), 1, + STATE(7657), 1, + sym__expr_parenthesized_immediate, + [227150] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6562), 1, + STATE(6717), 1, sym_comment, - ACTIONS(10472), 4, + ACTIONS(10779), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [226980] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6563), 1, - sym_comment, - ACTIONS(10474), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [226993] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10476), 1, - anon_sym_DQUOTE, - STATE(6564), 1, - sym_comment, - STATE(6569), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, - sym__escaped_str_content, - sym_escape_sequence, - [227010] = 5, - ACTIONS(247), 1, + [227163] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8931), 1, - anon_sym_RPAREN, - STATE(234), 1, - aux_sym__block_body_repeat1, - STATE(6565), 1, + STATE(6718), 1, sym_comment, - ACTIONS(145), 2, + ACTIONS(10781), 4, sym__newline, anon_sym_SEMI, - [227027] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1721), 1, - aux_sym_unquoted_token2, - STATE(6566), 1, - sym_comment, - ACTIONS(1723), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [227042] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5567), 1, - sym__entry_separator, - ACTIONS(9640), 1, - anon_sym_LBRACK, - ACTIONS(10478), 1, - anon_sym_RBRACK, - STATE(2617), 1, - aux_sym__multiple_types_repeat1, - STATE(6567), 1, - sym_comment, - [227061] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6568), 1, - sym_comment, - ACTIONS(10480), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [227074] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10482), 1, - anon_sym_DQUOTE, - STATE(6569), 1, - sym_comment, - STATE(6608), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, - sym__escaped_str_content, - sym_escape_sequence, - [227091] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [227176] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2237), 1, + ACTIONS(2293), 1, anon_sym_RBRACK, - ACTIONS(2239), 1, + ACTIONS(2295), 1, anon_sym_LPAREN2, - ACTIONS(2241), 1, + ACTIONS(2297), 1, sym__entry_separator, - ACTIONS(2243), 1, + ACTIONS(2299), 1, aux_sym__unquoted_in_list_token4, - STATE(6570), 1, - sym_comment, - [227110] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10484), 1, - anon_sym_DQUOTE, - STATE(6571), 1, - sym_comment, - STATE(6599), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, - sym__escaped_str_content, - sym_escape_sequence, - [227127] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5567), 1, - sym__entry_separator, - ACTIONS(9640), 1, - anon_sym_LBRACK, - ACTIONS(10486), 1, - anon_sym_RBRACK, - STATE(2617), 1, - aux_sym__multiple_types_repeat1, - STATE(6572), 1, - sym_comment, - [227146] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5567), 1, - sym__entry_separator, - ACTIONS(9640), 1, - anon_sym_LBRACK, - ACTIONS(10488), 1, - anon_sym_RBRACK, - STATE(2617), 1, - aux_sym__multiple_types_repeat1, - STATE(6573), 1, + STATE(6719), 1, sym_comment, - [227165] = 6, + [227195] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2297), 1, - anon_sym_RBRACK, - ACTIONS(2299), 1, + ACTIONS(2295), 1, anon_sym_LPAREN2, - ACTIONS(2301), 1, - sym__entry_separator, + ACTIONS(2299), 1, + aux_sym__unquoted_in_list_token4, ACTIONS(2303), 1, - aux_sym__unquoted_in_list_token2, - STATE(6574), 1, + anon_sym_RBRACK, + ACTIONS(2305), 1, + sym__entry_separator, + STATE(6720), 1, sym_comment, - [227184] = 4, - ACTIONS(247), 1, + [227214] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1738), 1, - aux_sym_unquoted_token2, - STATE(6575), 1, + STATE(6721), 1, sym_comment, - ACTIONS(1740), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [227199] = 6, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1716), 1, - anon_sym_SEMI, - ACTIONS(3705), 1, + ACTIONS(10783), 4, sym__newline, - STATE(258), 1, - aux_sym__parenthesized_body_repeat1, - STATE(6576), 1, - sym_comment, - STATE(6992), 1, - aux_sym_shebang_repeat1, - [227218] = 6, - ACTIONS(3), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [227227] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5567), 1, - sym__entry_separator, - ACTIONS(9640), 1, - anon_sym_LBRACK, - ACTIONS(10490), 1, - anon_sym_RBRACK, - STATE(2617), 1, - aux_sym__multiple_types_repeat1, - STATE(6577), 1, + ACTIONS(1678), 1, + anon_sym_RPAREN, + ACTIONS(10785), 2, + sym__newline, + anon_sym_SEMI, + STATE(6722), 2, sym_comment, - [227237] = 6, + aux_sym__block_body_repeat1, + [227242] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(10492), 1, + ACTIONS(10788), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6578), 1, + STATE(6723), 1, sym_comment, - [227256] = 6, - ACTIONS(3), 1, + [227261] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5567), 1, - sym__entry_separator, - ACTIONS(9640), 1, - anon_sym_LBRACK, - ACTIONS(10494), 1, - anon_sym_RBRACK, - STATE(2617), 1, - aux_sym__multiple_types_repeat1, - STATE(6579), 1, + ACTIONS(1029), 1, + aux_sym_record_entry_token1, + ACTIONS(9705), 1, + anon_sym_DOT, + STATE(6724), 1, sym_comment, - [227275] = 6, + STATE(6729), 1, + aux_sym_cell_path_repeat1, + STATE(7323), 1, + sym_path, + [227280] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, - sym__entry_separator, - ACTIONS(9640), 1, - anon_sym_LBRACK, - ACTIONS(10496), 1, + STATE(6725), 1, + sym_comment, + ACTIONS(1074), 2, anon_sym_RBRACK, - STATE(2617), 1, - aux_sym__multiple_types_repeat1, - STATE(6580), 1, + anon_sym_RBRACE, + ACTIONS(1076), 2, + anon_sym_DOT, + sym__entry_separator, + [227295] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(9525), 1, + anon_sym_RPAREN, + STATE(6722), 1, + aux_sym__block_body_repeat1, + STATE(6726), 1, sym_comment, - [227294] = 6, - ACTIONS(3), 1, + ACTIONS(9960), 2, + sym__newline, + anon_sym_SEMI, + [227312] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5567), 1, - sym__entry_separator, - ACTIONS(9640), 1, - anon_sym_LBRACK, - ACTIONS(10498), 1, - anon_sym_RBRACK, - STATE(2617), 1, - aux_sym__multiple_types_repeat1, - STATE(6581), 1, + ACTIONS(10790), 1, + anon_sym_QMARK2, + STATE(6727), 1, sym_comment, - [227313] = 6, - ACTIONS(3), 1, + ACTIONS(1044), 3, + anon_sym_DOT, + aux_sym_record_entry_token1, + sym__table_head_separator, + [227327] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5567), 1, - sym__entry_separator, - ACTIONS(9640), 1, - anon_sym_LBRACK, - ACTIONS(10500), 1, - anon_sym_RBRACK, - STATE(2617), 1, - aux_sym__multiple_types_repeat1, - STATE(6582), 1, + ACTIONS(10792), 1, + anon_sym_QMARK2, + STATE(6728), 1, sym_comment, - [227332] = 6, - ACTIONS(3), 1, + ACTIONS(1050), 3, + anon_sym_DOT, + aux_sym_record_entry_token1, + sym__table_head_separator, + [227342] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5567), 1, - sym__entry_separator, - ACTIONS(9640), 1, - anon_sym_LBRACK, - ACTIONS(10502), 1, - anon_sym_RBRACK, - STATE(2617), 1, - aux_sym__multiple_types_repeat1, - STATE(6583), 1, + ACTIONS(1033), 1, + aux_sym_record_entry_token1, + ACTIONS(10794), 1, + anon_sym_DOT, + STATE(7323), 1, + sym_path, + STATE(6729), 2, sym_comment, - [227351] = 6, - ACTIONS(3), 1, + aux_sym_cell_path_repeat1, + [227359] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5567), 1, - sym__entry_separator, - ACTIONS(9640), 1, - anon_sym_LBRACK, - ACTIONS(10504), 1, - anon_sym_RBRACK, - STATE(2617), 1, - aux_sym__multiple_types_repeat1, - STATE(6584), 1, + ACTIONS(1526), 1, + aux_sym_unquoted_token2, + ACTIONS(10797), 1, + anon_sym_DOT_DOT2, + STATE(6730), 1, + sym_comment, + ACTIONS(10799), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [227376] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1767), 1, + anon_sym_SEMI, + ACTIONS(3766), 1, + sym__newline, + STATE(293), 1, + aux_sym__parenthesized_body_repeat1, + STATE(6731), 1, + sym_comment, + STATE(7176), 1, + aux_sym_shebang_repeat1, + [227395] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1526), 1, + aux_sym_unquoted_token2, + STATE(6732), 1, sym_comment, - [227370] = 6, - ACTIONS(247), 1, + ACTIONS(1796), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [227410] = 6, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3705), 1, + ACTIONS(3766), 1, sym__newline, - ACTIONS(10451), 1, + ACTIONS(10362), 1, anon_sym_LBRACK, - STATE(749), 1, + STATE(2498), 1, aux_sym_shebang_repeat1, - STATE(6585), 1, + STATE(6733), 1, sym_comment, - STATE(7661), 1, + STATE(7642), 1, sym_val_list, - [227389] = 5, - ACTIONS(247), 1, + [227429] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(6734), 1, + sym_comment, + ACTIONS(9929), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [227442] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(6735), 1, + sym_comment, + ACTIONS(9929), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [227455] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(6736), 1, + sym_comment, + ACTIONS(10801), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [227468] = 6, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(6211), 1, + anon_sym_LBRACE, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(4780), 1, + sym_block, + STATE(6737), 1, + sym_comment, + [227487] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1786), 1, + ACTIONS(1796), 1, anon_sym_EQ_GT, - ACTIONS(10506), 1, + ACTIONS(10803), 1, anon_sym_DOT_DOT2, - STATE(6586), 1, + STATE(6738), 1, sym_comment, - ACTIONS(10508), 2, + ACTIONS(10805), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [227406] = 5, - ACTIONS(247), 1, + [227504] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1796), 1, + ACTIONS(1850), 1, anon_sym_EQ_GT, - ACTIONS(10510), 1, + ACTIONS(10807), 1, anon_sym_DOT_DOT2, - STATE(6587), 1, + STATE(6739), 1, sym_comment, - ACTIONS(10512), 2, + ACTIONS(10809), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [227423] = 6, + [227521] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(6740), 1, + sym_comment, + ACTIONS(10801), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [227534] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1852), 1, + aux_sym_unquoted_token2, + ACTIONS(10811), 1, + anon_sym_DOT_DOT2, + STATE(6741), 1, + sym_comment, + ACTIONS(10813), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [227551] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, - sym__entry_separator, - ACTIONS(9640), 1, - anon_sym_LBRACK, - ACTIONS(10514), 1, - anon_sym_RBRACK, - STATE(2617), 1, - aux_sym__multiple_types_repeat1, - STATE(6588), 1, + ACTIONS(2285), 1, + anon_sym_PIPE, + ACTIONS(2287), 1, + aux_sym_unquoted_token4, + STATE(6742), 1, sym_comment, - [227442] = 3, - ACTIONS(247), 1, + ACTIONS(2281), 2, + anon_sym_if, + anon_sym_EQ_GT, + [227568] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6589), 1, + STATE(6743), 1, sym_comment, - ACTIONS(10516), 4, + ACTIONS(10815), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [227455] = 3, - ACTIONS(247), 1, + [227581] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6590), 1, + STATE(6744), 1, sym_comment, - ACTIONS(10516), 4, + ACTIONS(10817), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [227468] = 5, - ACTIONS(247), 1, + [227594] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(9412), 1, - anon_sym_RPAREN, - STATE(234), 1, - aux_sym__block_body_repeat1, - STATE(6591), 1, + STATE(6745), 1, sym_comment, - ACTIONS(145), 2, + ACTIONS(10819), 4, sym__newline, anon_sym_SEMI, - [227485] = 3, - ACTIONS(247), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [227607] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6592), 1, + STATE(6746), 1, sym_comment, - ACTIONS(10518), 4, + ACTIONS(10821), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [227498] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6593), 1, - sym_comment, - ACTIONS(10520), 4, - sym_identifier, - anon_sym_in, - anon_sym_nu, - anon_sym_env, - [227511] = 5, + [227620] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10522), 1, - anon_sym_DQUOTE, - STATE(6594), 1, + ACTIONS(1090), 1, + anon_sym_RBRACE, + ACTIONS(1092), 1, + sym__entry_separator, + ACTIONS(2273), 1, + anon_sym_LPAREN2, + ACTIONS(2275), 1, + aux_sym__unquoted_in_record_token4, + STATE(6747), 1, sym_comment, - STATE(6600), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, - sym__escaped_str_content, - sym_escape_sequence, - [227528] = 3, - ACTIONS(247), 1, + [227639] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6595), 1, + STATE(6748), 1, sym_comment, - ACTIONS(10524), 4, + ACTIONS(10823), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [227541] = 6, - ACTIONS(247), 1, + [227652] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(10068), 1, - anon_sym_LBRACK, - ACTIONS(10070), 1, - anon_sym_LPAREN, - STATE(3112), 1, - sym_parameter_bracks, - STATE(3121), 1, - sym_parameter_parens, - STATE(6596), 1, + STATE(6749), 1, sym_comment, - [227560] = 4, - ACTIONS(3), 1, + ACTIONS(10825), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [227665] = 6, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6597), 1, + ACTIONS(6251), 1, + anon_sym_DOLLAR, + ACTIONS(8374), 1, + sym_identifier, + STATE(5416), 1, + sym_val_variable, + STATE(5965), 1, + sym__variable_name, + STATE(6750), 1, sym_comment, - ACTIONS(1667), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1669), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [227575] = 6, + [227684] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, + ACTIONS(9921), 1, anon_sym_LBRACK, - ACTIONS(10526), 1, + ACTIONS(10827), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6598), 1, + STATE(6751), 1, sym_comment, - [227594] = 5, - ACTIONS(3), 1, + [227703] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(10528), 1, - anon_sym_DQUOTE, - STATE(6599), 1, + ACTIONS(10829), 1, + anon_sym_RBRACK, + ACTIONS(10831), 1, + sym_hex_digit, + STATE(6752), 1, sym_comment, - STATE(6608), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, - sym__escaped_str_content, - sym_escape_sequence, - [227611] = 5, + STATE(6903), 1, + aux_sym_val_binary_repeat1, + [227719] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10530), 1, - anon_sym_DQUOTE, - STATE(6600), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(10833), 1, + anon_sym_RBRACK, + STATE(3464), 1, + aux_sym__multiple_types_repeat1, + STATE(6753), 1, sym_comment, - STATE(6608), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(9656), 2, - sym__escaped_str_content, - sym_escape_sequence, - [227628] = 3, - ACTIONS(247), 1, + [227735] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6601), 1, + ACTIONS(10831), 1, + sym_hex_digit, + ACTIONS(10835), 1, + anon_sym_RBRACK, + STATE(6754), 1, sym_comment, - ACTIONS(10524), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [227641] = 4, - ACTIONS(247), 1, + STATE(6758), 1, + aux_sym_val_binary_repeat1, + [227751] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4742), 1, - aux_sym_unquoted_token2, - STATE(6602), 1, + ACTIONS(5707), 1, + sym__entry_separator, + ACTIONS(10837), 1, + anon_sym_RBRACK, + STATE(2645), 1, + aux_sym__multiple_types_repeat1, + STATE(6755), 1, sym_comment, - ACTIONS(1572), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [227656] = 4, + [227767] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1048), 1, - anon_sym_DOT, - STATE(6603), 1, + ACTIONS(2456), 1, + sym__entry_separator, + STATE(6756), 1, sym_comment, - ACTIONS(1046), 3, + ACTIONS(2454), 2, anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [227671] = 5, + anon_sym_RBRACE, + [227781] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10532), 1, - anon_sym_DQUOTE, - STATE(6522), 1, - aux_sym__str_double_quotes_repeat1, - STATE(6604), 1, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + ACTIONS(4443), 1, + aux_sym_unquoted_token4, + STATE(6757), 1, sym_comment, - ACTIONS(9656), 2, - sym__escaped_str_content, - sym_escape_sequence, - [227688] = 3, - ACTIONS(3), 1, + STATE(7567), 1, + sym__expr_parenthesized_immediate, + [227797] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6605), 1, + ACTIONS(10831), 1, + sym_hex_digit, + ACTIONS(10839), 1, + anon_sym_RBRACK, + STATE(6758), 1, sym_comment, - ACTIONS(2253), 4, - sym_identifier, - anon_sym_DASH_DASH, - anon_sym_DASH, - aux_sym_unquoted_token4, - [227701] = 6, + STATE(6903), 1, + aux_sym_val_binary_repeat1, + [227813] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5441), 1, - anon_sym_LPAREN2, - ACTIONS(7770), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(7772), 1, + ACTIONS(10841), 1, anon_sym_RBRACK, - STATE(6606), 1, + STATE(3435), 1, + aux_sym__multiple_types_repeat1, + STATE(6759), 1, sym_comment, - STATE(7567), 1, - sym__expr_parenthesized_immediate, - [227720] = 3, - ACTIONS(247), 1, + [227829] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6607), 1, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(6760), 1, sym_comment, - ACTIONS(10534), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [227733] = 4, + STATE(7272), 1, + sym_val_list, + STATE(7277), 1, + aux_sym_val_table_repeat1, + [227845] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10536), 1, - anon_sym_DQUOTE, - ACTIONS(10538), 2, - sym__escaped_str_content, - sym_escape_sequence, - STATE(6608), 2, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(10843), 1, + anon_sym_RBRACK, + STATE(6344), 1, + aux_sym__multiple_types_repeat1, + STATE(6761), 1, sym_comment, - aux_sym__str_double_quotes_repeat1, - [227748] = 3, - ACTIONS(247), 1, + [227861] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6609), 1, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + ACTIONS(7068), 1, + aux_sym_unquoted_token4, + STATE(6762), 1, sym_comment, - ACTIONS(10541), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [227761] = 6, + STATE(7416), 1, + sym__expr_parenthesized_immediate, + [227877] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, - anon_sym_LBRACK, - ACTIONS(10543), 1, + ACTIONS(10845), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(6345), 1, aux_sym__multiple_types_repeat1, - STATE(6610), 1, + STATE(6763), 1, sym_comment, - [227780] = 6, + [227893] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, - anon_sym_LBRACK, - ACTIONS(10545), 1, + ACTIONS(10847), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(6346), 1, aux_sym__multiple_types_repeat1, - STATE(6611), 1, + STATE(6764), 1, sym_comment, - [227799] = 6, + [227909] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(9640), 1, - anon_sym_LBRACK, - ACTIONS(10547), 1, + ACTIONS(10849), 1, anon_sym_RBRACK, - STATE(2617), 1, + STATE(6347), 1, aux_sym__multiple_types_repeat1, - STATE(6612), 1, + STATE(6765), 1, sym_comment, - [227818] = 6, - ACTIONS(247), 1, + [227925] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6082), 1, - anon_sym_DOLLAR, - ACTIONS(8231), 1, - sym_identifier, - STATE(5366), 1, - sym_val_variable, - STATE(5878), 1, - sym__variable_name, - STATE(6613), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(10851), 1, + anon_sym_RBRACK, + STATE(6348), 1, + aux_sym__multiple_types_repeat1, + STATE(6766), 1, sym_comment, - [227837] = 3, - ACTIONS(247), 1, + [227941] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6614), 1, + ACTIONS(2571), 1, + sym__entry_separator, + STATE(6767), 1, sym_comment, - ACTIONS(10549), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2569), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - [227850] = 5, + [227955] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10551), 1, + ACTIONS(10853), 1, anon_sym_RBRACK, - STATE(6222), 1, + STATE(6349), 1, aux_sym__multiple_types_repeat1, - STATE(6615), 1, + STATE(6768), 1, sym_comment, - [227866] = 5, + [227971] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5903), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(5909), 1, - anon_sym_RBRACE, - STATE(2893), 1, + ACTIONS(10855), 1, + anon_sym_RBRACK, + STATE(6350), 1, aux_sym__multiple_types_repeat1, - STATE(6616), 1, + STATE(6769), 1, sym_comment, - [227882] = 3, - ACTIONS(247), 1, + [227987] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6617), 1, + STATE(6770), 1, sym_comment, - ACTIONS(6023), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [227894] = 5, + ACTIONS(9929), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [227999] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - ACTIONS(6834), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(10857), 1, + anon_sym_RBRACK, + STATE(6351), 1, + aux_sym__multiple_types_repeat1, + STATE(6771), 1, + sym_comment, + [228015] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2275), 1, aux_sym_unquoted_token4, - STATE(6618), 1, + ACTIONS(5895), 1, + anon_sym_EQ_GT, + ACTIONS(5900), 1, + anon_sym_PIPE, + STATE(6772), 1, sym_comment, - STATE(7247), 1, - sym__expr_parenthesized_immediate, - [227910] = 5, - ACTIONS(247), 1, + [228031] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(10859), 1, + aux_sym_cmd_identifier_token41, + STATE(6773), 1, + sym_comment, + ACTIONS(10861), 2, + sym_filesize_unit, + sym_duration_unit, + [228045] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(6774), 1, + sym_comment, + ACTIONS(9929), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [228057] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(10863), 1, + aux_sym_cmd_identifier_token41, + STATE(6775), 1, + sym_comment, + ACTIONS(10865), 2, + sym_filesize_unit, + sym_duration_unit, + [228071] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10553), 1, + ACTIONS(10867), 1, + sym__table_head_separator, + STATE(6776), 1, + sym_comment, + ACTIONS(1090), 2, anon_sym_RBRACK, - ACTIONS(10555), 1, + sym__entry_separator, + [228085] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(10831), 1, sym_hex_digit, - STATE(6619), 1, + ACTIONS(10869), 1, + anon_sym_RBRACK, + STATE(6777), 1, sym_comment, - STATE(6970), 1, + STATE(6782), 1, aux_sym_val_binary_repeat1, - [227926] = 5, + [228101] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10557), 1, + ACTIONS(10871), 1, anon_sym_RBRACK, - STATE(6091), 1, + STATE(6711), 1, aux_sym__multiple_types_repeat1, - STATE(6620), 1, + STATE(6778), 1, sym_comment, - [227942] = 3, - ACTIONS(247), 1, + [228117] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6621), 1, + ACTIONS(5707), 1, + sym__entry_separator, + ACTIONS(10873), 1, + anon_sym_RBRACK, + STATE(2688), 1, + aux_sym__multiple_types_repeat1, + STATE(6779), 1, sym_comment, - ACTIONS(10559), 3, + [228133] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(6780), 1, + sym_comment, + ACTIONS(10268), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [227954] = 5, + [228145] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3978), 1, + ACTIONS(4433), 1, anon_sym_LPAREN2, - ACTIONS(4726), 1, + ACTIONS(6985), 1, aux_sym_unquoted_token4, - STATE(6622), 1, + STATE(6781), 1, sym_comment, - STATE(7229), 1, + STATE(7472), 1, sym__expr_parenthesized_immediate, - [227970] = 5, + [228161] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(10831), 1, + sym_hex_digit, + ACTIONS(10875), 1, + anon_sym_RBRACK, + STATE(6782), 1, + sym_comment, + STATE(6903), 1, + aux_sym_val_binary_repeat1, + [228177] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10561), 1, + ACTIONS(10877), 1, anon_sym_RBRACK, - STATE(6092), 1, + STATE(3442), 1, aux_sym__multiple_types_repeat1, - STATE(6623), 1, + STATE(6783), 1, sym_comment, - [227986] = 5, + [228193] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10563), 1, + ACTIONS(10879), 1, anon_sym_RBRACK, - STATE(6093), 1, + STATE(6359), 1, aux_sym__multiple_types_repeat1, - STATE(6624), 1, + STATE(6784), 1, sym_comment, - [228002] = 5, + [228209] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10565), 1, + ACTIONS(10881), 1, anon_sym_RBRACK, - STATE(6094), 1, + STATE(6360), 1, aux_sym__multiple_types_repeat1, - STATE(6625), 1, - sym_comment, - [228018] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1721), 1, - aux_sym_unquoted_token2, - STATE(6626), 1, + STATE(6785), 1, sym_comment, - ACTIONS(1723), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [228032] = 5, + [228225] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10567), 1, + ACTIONS(10883), 1, anon_sym_RBRACK, - STATE(6095), 1, + STATE(6361), 1, aux_sym__multiple_types_repeat1, - STATE(6627), 1, + STATE(6786), 1, sym_comment, - [228048] = 5, + [228241] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10569), 1, + ACTIONS(10885), 1, anon_sym_RBRACK, - STATE(6096), 1, + STATE(6362), 1, aux_sym__multiple_types_repeat1, - STATE(6628), 1, + STATE(6787), 1, sym_comment, - [228064] = 5, + [228257] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10571), 1, + ACTIONS(10887), 1, anon_sym_RBRACK, - STATE(6097), 1, + STATE(6363), 1, aux_sym__multiple_types_repeat1, - STATE(6629), 1, + STATE(6788), 1, sym_comment, - [228080] = 5, + [228273] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10573), 1, + ACTIONS(10889), 1, anon_sym_RBRACK, - STATE(6098), 1, + STATE(6364), 1, aux_sym__multiple_types_repeat1, - STATE(6630), 1, + STATE(6789), 1, sym_comment, - [228096] = 5, - ACTIONS(247), 1, + [228289] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10555), 1, - sym_hex_digit, - ACTIONS(10575), 1, + ACTIONS(1090), 1, + sym__newline, + ACTIONS(1092), 1, + sym__space, + ACTIONS(2275), 1, + aux_sym_unquoted_token4, + STATE(6790), 1, + sym_comment, + [228305] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(6791), 1, + sym_comment, + ACTIONS(10310), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [228317] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(10891), 1, anon_sym_RBRACK, - STATE(6631), 1, + STATE(6365), 1, + aux_sym__multiple_types_repeat1, + STATE(6792), 1, sym_comment, - STATE(6970), 1, - aux_sym_val_binary_repeat1, - [228112] = 5, + [228333] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5903), 1, + ACTIONS(6012), 1, sym__entry_separator, - ACTIONS(5911), 1, + ACTIONS(6039), 1, anon_sym_RBRACE, - STATE(2894), 1, + STATE(2923), 1, aux_sym__multiple_types_repeat1, - STATE(6632), 1, + STATE(6793), 1, sym_comment, - [228128] = 3, - ACTIONS(247), 1, + [228349] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6633), 1, + STATE(6794), 1, sym_comment, - ACTIONS(1040), 3, - anon_sym_QMARK2, - anon_sym_DOT, - sym__table_head_separator, - [228140] = 3, - ACTIONS(247), 1, + ACTIONS(9988), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [228361] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6634), 1, + STATE(6795), 1, sym_comment, - ACTIONS(6027), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [228152] = 3, - ACTIONS(247), 1, + ACTIONS(9990), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [228373] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6635), 1, + ACTIONS(5518), 1, + anon_sym_LPAREN2, + ACTIONS(8643), 1, + aux_sym__unquoted_in_list_token4, + STATE(6796), 1, + sym_comment, + STATE(7447), 1, + sym__expr_parenthesized_immediate, + [228389] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(6797), 1, sym_comment, - ACTIONS(10577), 3, + ACTIONS(10004), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [228164] = 5, - ACTIONS(3), 1, + [228401] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5567), 1, - sym__entry_separator, - ACTIONS(10579), 1, + ACTIONS(10831), 1, + sym_hex_digit, + ACTIONS(10893), 1, anon_sym_RBRACK, - STATE(6156), 1, - aux_sym__multiple_types_repeat1, - STATE(6636), 1, + STATE(6798), 1, sym_comment, - [228180] = 3, - ACTIONS(247), 1, + STATE(6903), 1, + aux_sym_val_binary_repeat1, + [228417] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6637), 1, + ACTIONS(4939), 1, + anon_sym_LBRACE, + ACTIONS(10895), 1, + sym_long_flag_identifier, + ACTIONS(10897), 1, + anon_sym_EQ2, + STATE(6799), 1, sym_comment, - ACTIONS(1036), 3, - anon_sym_QMARK2, - anon_sym_DOT, - sym__table_head_separator, - [228192] = 5, - ACTIONS(247), 1, + [228433] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1703), 1, + aux_sym_unquoted_token2, + STATE(6800), 1, + sym_comment, + ACTIONS(1705), 2, + anon_sym_LBRACE, + anon_sym_LPAREN2, + [228447] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(10555), 1, + ACTIONS(10831), 1, sym_hex_digit, - ACTIONS(10581), 1, + ACTIONS(10899), 1, anon_sym_RBRACK, - STATE(6638), 1, + STATE(6801), 1, sym_comment, - STATE(6643), 1, + STATE(6806), 1, aux_sym_val_binary_repeat1, - [228208] = 3, - ACTIONS(247), 1, + [228463] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6639), 1, + ACTIONS(2436), 1, + sym__entry_separator, + STATE(6802), 1, sym_comment, - ACTIONS(9752), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [228220] = 3, - ACTIONS(247), 1, + ACTIONS(2434), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [228477] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6640), 1, + ACTIONS(2061), 1, + sym__entry_separator, + STATE(6803), 1, + sym_comment, + ACTIONS(2059), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [228491] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(6804), 1, sym_comment, - ACTIONS(9940), 3, + ACTIONS(9946), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [228232] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6641), 1, - sym_comment, - ACTIONS(6031), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [228244] = 5, + [228503] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3978), 1, + ACTIONS(4433), 1, anon_sym_LPAREN2, - ACTIONS(6790), 1, + ACTIONS(6929), 1, aux_sym_unquoted_token4, - STATE(6642), 1, + STATE(6805), 1, sym_comment, - STATE(7254), 1, + STATE(7586), 1, sym__expr_parenthesized_immediate, - [228260] = 5, - ACTIONS(247), 1, + [228519] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(10555), 1, + ACTIONS(10831), 1, sym_hex_digit, - ACTIONS(10583), 1, + ACTIONS(10901), 1, anon_sym_RBRACK, - STATE(6643), 1, + STATE(6806), 1, sym_comment, - STATE(6970), 1, + STATE(6903), 1, aux_sym_val_binary_repeat1, - [228276] = 5, - ACTIONS(3), 1, + [228535] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1070), 1, - sym__newline, - ACTIONS(1072), 1, - sym__space, - ACTIONS(2227), 1, - aux_sym_unquoted_token4, - STATE(6644), 1, + ACTIONS(6257), 1, + anon_sym_AT, + ACTIONS(10903), 1, + anon_sym_GT, + STATE(6807), 1, sym_comment, - [228292] = 3, - ACTIONS(247), 1, + STATE(7925), 1, + sym_param_cmd, + [228551] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6645), 1, + ACTIONS(2345), 1, + sym__entry_separator, + ACTIONS(2351), 1, + anon_sym_RBRACE, + STATE(515), 1, + aux_sym__multiple_types_repeat1, + STATE(6808), 1, sym_comment, - ACTIONS(9748), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [228304] = 5, + [228567] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10585), 1, + ACTIONS(10905), 1, anon_sym_RBRACK, - STATE(6113), 1, + STATE(6374), 1, aux_sym__multiple_types_repeat1, - STATE(6646), 1, + STATE(6809), 1, sym_comment, - [228320] = 5, - ACTIONS(247), 1, + [228583] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6188), 1, - anon_sym_AT, - ACTIONS(10587), 1, - anon_sym_GT, - STATE(6647), 1, + STATE(6810), 1, sym_comment, - STATE(7473), 1, - sym_param_cmd, - [228336] = 5, + ACTIONS(9929), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [228595] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10589), 1, - anon_sym_RBRACK, - STATE(6114), 1, + ACTIONS(9921), 1, + anon_sym_LBRACK, + STATE(3400), 1, aux_sym__multiple_types_repeat1, - STATE(6648), 1, + STATE(6811), 1, sym_comment, - [228352] = 5, + [228611] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10591), 1, + ACTIONS(10907), 1, anon_sym_RBRACK, - STATE(6115), 1, + STATE(6375), 1, aux_sym__multiple_types_repeat1, - STATE(6649), 1, + STATE(6812), 1, sym_comment, - [228368] = 5, + [228627] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10593), 1, + ACTIONS(10909), 1, anon_sym_RBRACK, - STATE(6116), 1, + STATE(6376), 1, aux_sym__multiple_types_repeat1, - STATE(6650), 1, + STATE(6813), 1, sym_comment, - [228384] = 5, + [228643] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10595), 1, + ACTIONS(10911), 1, anon_sym_RBRACK, - STATE(6117), 1, + STATE(6377), 1, aux_sym__multiple_types_repeat1, - STATE(6651), 1, + STATE(6814), 1, sym_comment, - [228400] = 4, - ACTIONS(247), 1, + [228659] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(278), 1, - aux_sym__block_body_repeat1, - STATE(6652), 1, + ACTIONS(4925), 1, + anon_sym_in, + ACTIONS(10913), 1, + anon_sym_EQ2, + ACTIONS(10915), 1, + sym_short_flag_identifier, + STATE(6815), 1, sym_comment, - ACTIONS(145), 2, - sym__newline, - anon_sym_SEMI, - [228414] = 3, - ACTIONS(247), 1, + [228675] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6653), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(10917), 1, + anon_sym_RBRACK, + STATE(6378), 1, + aux_sym__multiple_types_repeat1, + STATE(6816), 1, sym_comment, - ACTIONS(10435), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [228426] = 5, + [228691] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10597), 1, + ACTIONS(10919), 1, anon_sym_RBRACK, - STATE(6118), 1, + STATE(6246), 1, aux_sym__multiple_types_repeat1, - STATE(6654), 1, + STATE(6817), 1, sym_comment, - [228442] = 5, + [228707] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10599), 1, + ACTIONS(10921), 1, anon_sym_RBRACK, - STATE(6119), 1, + STATE(6379), 1, aux_sym__multiple_types_repeat1, - STATE(6655), 1, + STATE(6818), 1, sym_comment, - [228458] = 4, - ACTIONS(247), 1, + [228723] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1552), 1, - aux_sym_unquoted_token2, - STATE(6656), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(10923), 1, + anon_sym_RBRACK, + STATE(6380), 1, + aux_sym__multiple_types_repeat1, + STATE(6819), 1, sym_comment, - ACTIONS(2295), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [228472] = 5, + [228739] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10601), 1, + ACTIONS(10925), 1, anon_sym_RBRACK, - STATE(6120), 1, + STATE(6247), 1, aux_sym__multiple_types_repeat1, - STATE(6657), 1, + STATE(6820), 1, sym_comment, - [228488] = 5, + [228755] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5547), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10603), 1, + ACTIONS(10927), 1, anon_sym_RBRACK, - STATE(2620), 1, + STATE(6381), 1, aux_sym__multiple_types_repeat1, - STATE(6658), 1, + STATE(6821), 1, sym_comment, - [228504] = 3, - ACTIONS(247), 1, + [228771] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6659), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(10929), 1, + anon_sym_RBRACK, + STATE(6248), 1, + aux_sym__multiple_types_repeat1, + STATE(6822), 1, sym_comment, - ACTIONS(9752), 3, + [228787] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(6823), 1, + sym_comment, + ACTIONS(9950), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [228516] = 3, - ACTIONS(247), 1, + [228799] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6660), 1, + STATE(6824), 1, sym_comment, - ACTIONS(9818), 3, + ACTIONS(9929), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [228528] = 3, - ACTIONS(247), 1, + [228811] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6661), 1, + ACTIONS(4927), 1, + anon_sym_LBRACE, + ACTIONS(10931), 1, + anon_sym_EQ2, + ACTIONS(10933), 1, + sym_short_flag_identifier, + STATE(6825), 1, sym_comment, - ACTIONS(9990), 3, + [228827] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(6826), 1, + sym_comment, + ACTIONS(9931), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [228540] = 5, + [228839] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(2444), 1, sym__entry_separator, - ACTIONS(10605), 1, - anon_sym_RBRACK, - STATE(6100), 1, - aux_sym__multiple_types_repeat1, - STATE(6662), 1, - sym_comment, - [228556] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(10607), 1, - anon_sym_EQ2, - STATE(6663), 1, + STATE(6827), 1, sym_comment, - ACTIONS(4940), 2, - sym_identifier, - anon_sym_DOLLAR, - [228570] = 5, + ACTIONS(2442), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [228853] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, - sym__entry_separator, - ACTIONS(10609), 1, - anon_sym_RBRACK, - STATE(6103), 1, - aux_sym__multiple_types_repeat1, - STATE(6664), 1, + ACTIONS(10935), 1, + anon_sym_POUND_BANG, + ACTIONS(10937), 1, + sym__newline, + STATE(6828), 1, sym_comment, - [228586] = 5, + STATE(7025), 1, + aux_sym_shebang_repeat1, + [228869] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(2452), 1, sym__entry_separator, - ACTIONS(10611), 1, - anon_sym_RBRACK, - STATE(6104), 1, - aux_sym__multiple_types_repeat1, - STATE(6665), 1, + STATE(6829), 1, sym_comment, - [228602] = 4, + ACTIONS(2450), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [228883] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2255), 1, - sym__space, - STATE(6666), 1, + ACTIONS(2069), 1, + sym__entry_separator, + STATE(6830), 1, sym_comment, - ACTIONS(2253), 2, - sym__newline, - aux_sym_unquoted_token4, - [228616] = 5, - ACTIONS(247), 1, + ACTIONS(2067), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [228897] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(10555), 1, + ACTIONS(10831), 1, sym_hex_digit, - ACTIONS(10613), 1, + ACTIONS(10939), 1, anon_sym_RBRACK, - STATE(6667), 1, + STATE(6831), 1, sym_comment, - STATE(6671), 1, + STATE(6834), 1, aux_sym_val_binary_repeat1, - [228632] = 4, - ACTIONS(247), 1, + [228913] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1738), 1, + ACTIONS(1769), 1, aux_sym_unquoted_token2, - STATE(6668), 1, - sym_comment, - ACTIONS(1740), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [228646] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6669), 1, + STATE(6832), 1, sym_comment, - ACTIONS(9772), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [228658] = 3, - ACTIONS(247), 1, + ACTIONS(1771), 2, + anon_sym_LBRACE, + anon_sym_LPAREN2, + [228927] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6670), 1, + STATE(6833), 1, sym_comment, - ACTIONS(9778), 3, + ACTIONS(10076), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [228670] = 5, - ACTIONS(247), 1, + [228939] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(10555), 1, + ACTIONS(10831), 1, sym_hex_digit, - ACTIONS(10615), 1, + ACTIONS(10941), 1, anon_sym_RBRACK, - STATE(6671), 1, + STATE(6834), 1, sym_comment, - STATE(6970), 1, + STATE(6903), 1, aux_sym_val_binary_repeat1, - [228686] = 5, + [228955] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(5672), 1, sym__entry_separator, - ACTIONS(10617), 1, + ACTIONS(10943), 1, anon_sym_RBRACK, - STATE(6137), 1, + STATE(2652), 1, aux_sym__multiple_types_repeat1, - STATE(6672), 1, + STATE(6835), 1, sym_comment, - [228702] = 3, - ACTIONS(247), 1, + [228971] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6673), 1, + STATE(6836), 1, sym_comment, - ACTIONS(9898), 3, + ACTIONS(9950), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [228714] = 5, + [228983] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10619), 1, + ACTIONS(10945), 1, anon_sym_RBRACK, - STATE(6138), 1, + STATE(6387), 1, aux_sym__multiple_types_repeat1, - STATE(6674), 1, + STATE(6837), 1, + sym_comment, + [228999] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(6838), 1, sym_comment, - [228730] = 5, + ACTIONS(9933), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [229011] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10621), 1, + ACTIONS(10947), 1, anon_sym_RBRACK, - STATE(6139), 1, + STATE(6388), 1, aux_sym__multiple_types_repeat1, - STATE(6675), 1, + STATE(6839), 1, sym_comment, - [228746] = 5, + [229027] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10623), 1, + ACTIONS(10949), 1, anon_sym_RBRACK, - STATE(6140), 1, + STATE(6389), 1, aux_sym__multiple_types_repeat1, - STATE(6676), 1, + STATE(6840), 1, sym_comment, - [228762] = 5, + [229043] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1560), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(10951), 1, anon_sym_RBRACK, - ACTIONS(1572), 1, + STATE(6390), 1, + aux_sym__multiple_types_repeat1, + STATE(6841), 1, + sym_comment, + [229059] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2212), 1, sym__entry_separator, - ACTIONS(5451), 1, - aux_sym__unquoted_in_list_token2, - STATE(6677), 1, + STATE(6842), 1, sym_comment, - [228778] = 5, + ACTIONS(2206), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [229073] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10625), 1, + ACTIONS(10953), 1, anon_sym_RBRACK, - STATE(6141), 1, + STATE(6391), 1, aux_sym__multiple_types_repeat1, - STATE(6678), 1, + STATE(6843), 1, + sym_comment, + [229089] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(6844), 1, sym_comment, - [228794] = 5, + ACTIONS(9952), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [229101] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10627), 1, + ACTIONS(10955), 1, anon_sym_RBRACK, - STATE(6142), 1, + STATE(6392), 1, aux_sym__multiple_types_repeat1, - STATE(6679), 1, + STATE(6845), 1, sym_comment, - [228810] = 5, + [229117] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10629), 1, + ACTIONS(10957), 1, anon_sym_RBRACK, - STATE(6143), 1, + STATE(6393), 1, aux_sym__multiple_types_repeat1, - STATE(6680), 1, + STATE(6846), 1, + sym_comment, + [229133] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(6847), 1, sym_comment, - [228826] = 5, + ACTIONS(10801), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [229145] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10631), 1, + ACTIONS(10959), 1, anon_sym_RBRACK, - STATE(6144), 1, + STATE(6394), 1, aux_sym__multiple_types_repeat1, - STATE(6681), 1, + STATE(6848), 1, sym_comment, - [228842] = 5, + [229161] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4940), 1, - sym__space, - ACTIONS(4942), 1, - sym__newline, - ACTIONS(10633), 1, - anon_sym_EQ2, - STATE(6682), 1, - sym_comment, - [228858] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(10635), 1, - anon_sym_PIPE, - ACTIONS(10638), 1, - anon_sym_EQ_GT, - STATE(6683), 2, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(10961), 1, + anon_sym_RBRACK, + STATE(6404), 1, + aux_sym__multiple_types_repeat1, + STATE(6849), 1, sym_comment, - aux_sym_match_pattern_repeat1, - [228872] = 4, + [229177] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10640), 1, - sym__table_head_separator, - STATE(6684), 1, - sym_comment, - ACTIONS(1070), 2, - anon_sym_RBRACK, + ACTIONS(6494), 1, sym__entry_separator, - [228886] = 5, + ACTIONS(10963), 1, + anon_sym_RBRACK, + STATE(6483), 1, + aux_sym__multiple_types_repeat1, + STATE(6850), 1, + sym_comment, + [229193] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10642), 1, - anon_sym_POUND_BANG, - ACTIONS(10644), 1, - sym__newline, - STATE(6685), 1, + ACTIONS(2089), 1, + sym__entry_separator, + STATE(6851), 1, sym_comment, - STATE(7028), 1, - aux_sym_shebang_repeat1, - [228902] = 3, - ACTIONS(247), 1, + ACTIONS(2087), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [229207] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6686), 1, + STATE(6852), 1, sym_comment, - ACTIONS(9660), 3, + ACTIONS(10014), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [228914] = 5, - ACTIONS(247), 1, + [229219] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10555), 1, - sym_hex_digit, - ACTIONS(10646), 1, + ACTIONS(5672), 1, + sym__entry_separator, + ACTIONS(10965), 1, anon_sym_RBRACK, - STATE(6687), 1, + STATE(2666), 1, + aux_sym__multiple_types_repeat1, + STATE(6853), 1, sym_comment, - STATE(6692), 1, - aux_sym_val_binary_repeat1, - [228930] = 5, + [229235] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6012), 1, sym__entry_separator, - ACTIONS(10648), 1, - anon_sym_RBRACK, - STATE(6233), 1, + ACTIONS(10967), 1, + anon_sym_RBRACE, + STATE(2919), 1, aux_sym__multiple_types_repeat1, - STATE(6688), 1, + STATE(6854), 1, sym_comment, - [228946] = 5, + [229251] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(5707), 1, sym__entry_separator, - ACTIONS(10650), 1, + ACTIONS(10969), 1, anon_sym_RBRACK, - STATE(6234), 1, + STATE(2643), 1, aux_sym__multiple_types_repeat1, - STATE(6689), 1, - sym_comment, - [228962] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6690), 1, + STATE(6855), 1, sym_comment, - ACTIONS(9692), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [228974] = 5, + [229267] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10652), 1, + ACTIONS(10971), 1, anon_sym_RBRACK, - STATE(6235), 1, + STATE(6193), 1, aux_sym__multiple_types_repeat1, - STATE(6691), 1, + STATE(6856), 1, sym_comment, - [228990] = 5, - ACTIONS(247), 1, + [229283] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(10555), 1, + ACTIONS(10831), 1, sym_hex_digit, - ACTIONS(10654), 1, + ACTIONS(10973), 1, anon_sym_RBRACK, - STATE(6692), 1, + STATE(6857), 1, sym_comment, - STATE(6970), 1, + STATE(6859), 1, aux_sym_val_binary_repeat1, - [229006] = 4, + [229299] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2235), 1, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + ACTIONS(4485), 1, aux_sym_unquoted_token4, - STATE(6693), 1, + STATE(6858), 1, sym_comment, - ACTIONS(2229), 2, - sym_identifier, - anon_sym_DOLLAR, - [229020] = 5, + STATE(7603), 1, + sym__expr_parenthesized_immediate, + [229315] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(10831), 1, + sym_hex_digit, + ACTIONS(10975), 1, + anon_sym_RBRACK, + STATE(6859), 1, + sym_comment, + STATE(6903), 1, + aux_sym_val_binary_repeat1, + [229331] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5903), 1, + ACTIONS(2545), 1, sym__entry_separator, - ACTIONS(5949), 1, + STATE(6860), 1, + sym_comment, + ACTIONS(2543), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - STATE(2963), 1, - aux_sym__multiple_types_repeat1, - STATE(6694), 1, + [229345] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2003), 1, + sym__entry_separator, + STATE(6861), 1, sym_comment, - [229036] = 5, + ACTIONS(2001), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [229359] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10656), 1, + ACTIONS(10977), 1, anon_sym_RBRACK, - STATE(6159), 1, + STATE(6406), 1, aux_sym__multiple_types_repeat1, - STATE(6695), 1, + STATE(6862), 1, + sym_comment, + [229375] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2472), 1, + sym__entry_separator, + STATE(6863), 1, sym_comment, - [229052] = 5, + ACTIONS(2470), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [229389] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5903), 1, + ACTIONS(2345), 1, sym__entry_separator, - ACTIONS(5975), 1, + ACTIONS(10979), 1, anon_sym_RBRACE, - STATE(2904), 1, + STATE(503), 1, aux_sym__multiple_types_repeat1, - STATE(6696), 1, + STATE(6864), 1, sym_comment, - [229068] = 5, + [229405] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10658), 1, + ACTIONS(10981), 1, anon_sym_RBRACK, - STATE(6160), 1, + STATE(6407), 1, aux_sym__multiple_types_repeat1, - STATE(6697), 1, + STATE(6865), 1, sym_comment, - [229084] = 5, + [229421] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10660), 1, + ACTIONS(10983), 1, anon_sym_RBRACK, - STATE(6161), 1, + STATE(6408), 1, aux_sym__multiple_types_repeat1, - STATE(6698), 1, + STATE(6866), 1, sym_comment, - [229100] = 5, + [229437] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10662), 1, + ACTIONS(10985), 1, anon_sym_RBRACK, - STATE(6162), 1, + STATE(6409), 1, aux_sym__multiple_types_repeat1, - STATE(6699), 1, + STATE(6867), 1, sym_comment, - [229116] = 5, + [229453] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10664), 1, + ACTIONS(10987), 1, anon_sym_RBRACK, - STATE(6163), 1, + STATE(6410), 1, aux_sym__multiple_types_repeat1, - STATE(6700), 1, + STATE(6868), 1, sym_comment, - [229132] = 3, - ACTIONS(247), 1, + [229469] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6701), 1, + STATE(6869), 1, sym_comment, - ACTIONS(9772), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [229144] = 3, - ACTIONS(247), 1, + ACTIONS(1060), 3, + anon_sym_QMARK2, + anon_sym_DOT, + sym__table_head_separator, + [229481] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6702), 1, + ACTIONS(2400), 1, + sym__entry_separator, + STATE(6870), 1, sym_comment, - ACTIONS(9920), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [229156] = 5, + ACTIONS(2398), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [229495] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10666), 1, + ACTIONS(10989), 1, anon_sym_RBRACK, - STATE(6164), 1, + STATE(6411), 1, aux_sym__multiple_types_repeat1, - STATE(6703), 1, + STATE(6871), 1, sym_comment, - [229172] = 5, + [229511] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10668), 1, + ACTIONS(10991), 1, anon_sym_RBRACK, - STATE(6165), 1, + STATE(6412), 1, aux_sym__multiple_types_repeat1, - STATE(6704), 1, + STATE(6872), 1, sym_comment, - [229188] = 5, - ACTIONS(247), 1, + [229527] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4783), 1, - anon_sym_LBRACE, - ACTIONS(10670), 1, - anon_sym_EQ2, - ACTIONS(10672), 1, - sym_short_flag_identifier, - STATE(6705), 1, + STATE(6873), 1, + sym_comment, + ACTIONS(1064), 3, + anon_sym_QMARK2, + anon_sym_DOT, + sym__table_head_separator, + [229539] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(6874), 1, sym_comment, - [229204] = 5, + ACTIONS(1040), 3, + anon_sym_QMARK2, + anon_sym_DOT, + sym__table_head_separator, + [229551] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10674), 1, + ACTIONS(10993), 1, anon_sym_RBRACK, - STATE(6166), 1, + STATE(6413), 1, aux_sym__multiple_types_repeat1, - STATE(6706), 1, + STATE(6875), 1, sym_comment, - [229220] = 3, - ACTIONS(247), 1, + [229567] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6707), 1, + STATE(6876), 1, sym_comment, - ACTIONS(9714), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [229232] = 3, - ACTIONS(247), 1, + ACTIONS(1056), 3, + anon_sym_QMARK2, + anon_sym_DOT, + sym__table_head_separator, + [229579] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6708), 1, + STATE(6877), 1, sym_comment, - ACTIONS(10352), 3, + ACTIONS(9998), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [229244] = 4, + [229591] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2227), 1, - aux_sym_unquoted_token4, - STATE(6709), 1, + ACTIONS(2476), 1, + sym__entry_separator, + STATE(6878), 1, sym_comment, - ACTIONS(1070), 2, - sym_identifier, - anon_sym_DOLLAR, - [229258] = 5, + ACTIONS(2474), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [229605] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(2097), 1, sym__entry_separator, - ACTIONS(10676), 1, - anon_sym_RBRACK, - STATE(2621), 1, - aux_sym__multiple_types_repeat1, - STATE(6710), 1, + STATE(6879), 1, sym_comment, - [229274] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(10555), 1, - sym_hex_digit, - ACTIONS(10678), 1, + ACTIONS(2095), 2, anon_sym_RBRACK, - STATE(6711), 1, - sym_comment, - STATE(6714), 1, - aux_sym_val_binary_repeat1, - [229290] = 3, - ACTIONS(247), 1, + anon_sym_RBRACE, + [229619] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6712), 1, + STATE(6880), 1, sym_comment, - ACTIONS(9990), 3, + ACTIONS(10801), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [229302] = 5, + [229631] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(2504), 1, sym__entry_separator, - ACTIONS(10680), 1, - anon_sym_RBRACK, - STATE(2622), 1, - aux_sym__multiple_types_repeat1, - STATE(6713), 1, + STATE(6881), 1, sym_comment, - [229318] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(10555), 1, - sym_hex_digit, - ACTIONS(10682), 1, + ACTIONS(2502), 2, anon_sym_RBRACK, - STATE(6714), 1, - sym_comment, - STATE(6970), 1, - aux_sym_val_binary_repeat1, - [229334] = 5, + anon_sym_RBRACE, + [229645] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(2412), 1, sym__entry_separator, - ACTIONS(10684), 1, - anon_sym_RBRACK, - STATE(6179), 1, - aux_sym__multiple_types_repeat1, - STATE(6715), 1, + STATE(6882), 1, sym_comment, - [229350] = 5, - ACTIONS(247), 1, + ACTIONS(2410), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [229659] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(10555), 1, + ACTIONS(10831), 1, sym_hex_digit, - ACTIONS(10686), 1, + ACTIONS(10995), 1, anon_sym_RBRACK, - STATE(6716), 1, + STATE(6883), 1, sym_comment, - STATE(6970), 1, + STATE(6887), 1, aux_sym_val_binary_repeat1, - [229366] = 5, + [229675] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10688), 1, + ACTIONS(10997), 1, anon_sym_RBRACK, - STATE(6180), 1, + STATE(6250), 1, aux_sym__multiple_types_repeat1, - STATE(6717), 1, + STATE(6884), 1, sym_comment, - [229382] = 5, + [229691] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(2440), 1, sym__entry_separator, - ACTIONS(10690), 1, + STATE(6885), 1, + sym_comment, + ACTIONS(2438), 2, anon_sym_RBRACK, - STATE(6181), 1, - aux_sym__multiple_types_repeat1, - STATE(6718), 1, + anon_sym_RBRACE, + [229705] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + ACTIONS(4870), 1, + aux_sym_unquoted_token4, + STATE(6886), 1, + sym_comment, + STATE(7420), 1, + sym__expr_parenthesized_immediate, + [229721] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(10831), 1, + sym_hex_digit, + ACTIONS(10999), 1, + anon_sym_RBRACK, + STATE(6887), 1, sym_comment, - [229398] = 5, + STATE(6903), 1, + aux_sym_val_binary_repeat1, + [229737] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(2533), 1, sym__entry_separator, - ACTIONS(10692), 1, + STATE(6888), 1, + sym_comment, + ACTIONS(2531), 2, anon_sym_RBRACK, - STATE(6182), 1, - aux_sym__multiple_types_repeat1, - STATE(6719), 1, + anon_sym_RBRACE, + [229751] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(6889), 1, sym_comment, - [229414] = 5, + ACTIONS(9935), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [229763] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10694), 1, + ACTIONS(11001), 1, anon_sym_RBRACK, - STATE(6183), 1, + STATE(6428), 1, aux_sym__multiple_types_repeat1, - STATE(6720), 1, + STATE(6890), 1, sym_comment, - [229430] = 5, - ACTIONS(247), 1, + [229779] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(9430), 1, + STATE(6891), 1, + sym_comment, + ACTIONS(6168), 3, + anon_sym_PIPE, anon_sym_if, - ACTIONS(10696), 1, anon_sym_EQ_GT, - STATE(6721), 1, + [229791] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(6892), 1, sym_comment, - STATE(7425), 1, - sym_match_guard, - [229446] = 5, + ACTIONS(9994), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [229803] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10698), 1, + ACTIONS(11003), 1, anon_sym_RBRACK, - STATE(6184), 1, + STATE(6429), 1, aux_sym__multiple_types_repeat1, - STATE(6722), 1, + STATE(6893), 1, sym_comment, - [229462] = 5, + [229819] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10700), 1, + ACTIONS(11005), 1, anon_sym_RBRACK, - STATE(6185), 1, + STATE(6430), 1, aux_sym__multiple_types_repeat1, - STATE(6723), 1, + STATE(6894), 1, sym_comment, - [229478] = 5, + [229835] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2336), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10702), 1, - anon_sym_RBRACE, - STATE(554), 1, + ACTIONS(11007), 1, + anon_sym_RBRACK, + STATE(6431), 1, aux_sym__multiple_types_repeat1, - STATE(6724), 1, + STATE(6895), 1, sym_comment, - [229494] = 5, + [229851] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10704), 1, + ACTIONS(11009), 1, anon_sym_RBRACK, - STATE(6186), 1, + STATE(6432), 1, aux_sym__multiple_types_repeat1, - STATE(6725), 1, + STATE(6896), 1, sym_comment, - [229510] = 5, + [229867] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5903), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(5977), 1, - anon_sym_RBRACE, - STATE(2905), 1, + ACTIONS(11011), 1, + anon_sym_RBRACK, + STATE(6433), 1, aux_sym__multiple_types_repeat1, - STATE(6726), 1, + STATE(6897), 1, sym_comment, - [229526] = 5, + [229883] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5903), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10706), 1, - anon_sym_RBRACE, - STATE(2887), 1, + ACTIONS(11013), 1, + anon_sym_RBRACK, + STATE(6434), 1, aux_sym__multiple_types_repeat1, - STATE(6727), 1, + STATE(6898), 1, sym_comment, - [229542] = 3, - ACTIONS(247), 1, + [229899] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6728), 1, + ACTIONS(1826), 1, + aux_sym_unquoted_token2, + STATE(6899), 1, sym_comment, - ACTIONS(10708), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [229554] = 5, + ACTIONS(1828), 2, + anon_sym_LBRACE, + anon_sym_LPAREN2, + [229913] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(10831), 1, + sym_hex_digit, + ACTIONS(11015), 1, + anon_sym_RBRACK, + STATE(6900), 1, + sym_comment, + STATE(6994), 1, + aux_sym_val_binary_repeat1, + [229929] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2336), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10710), 1, - anon_sym_RBRACE, - STATE(520), 1, + ACTIONS(11017), 1, + anon_sym_RBRACK, + STATE(6435), 1, aux_sym__multiple_types_repeat1, - STATE(6729), 1, + STATE(6901), 1, + sym_comment, + [229945] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(6902), 1, + sym_comment, + ACTIONS(6154), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [229957] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(11019), 1, + anon_sym_RBRACK, + ACTIONS(11021), 1, + sym_hex_digit, + STATE(6903), 2, sym_comment, - [229570] = 5, + aux_sym_val_binary_repeat1, + [229971] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(6904), 1, + sym_comment, + ACTIONS(10000), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [229983] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(6905), 1, + sym_comment, + ACTIONS(6138), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [229995] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(10831), 1, + sym_hex_digit, + ACTIONS(11024), 1, + anon_sym_RBRACK, + STATE(6906), 1, + sym_comment, + STATE(6909), 1, + aux_sym_val_binary_repeat1, + [230011] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2336), 1, + ACTIONS(6012), 1, sym__entry_separator, - ACTIONS(10712), 1, + ACTIONS(6047), 1, anon_sym_RBRACE, - STATE(555), 1, + STATE(2924), 1, aux_sym__multiple_types_repeat1, - STATE(6730), 1, + STATE(6907), 1, sym_comment, - [229586] = 5, - ACTIONS(247), 1, + [230027] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(10555), 1, - sym_hex_digit, - ACTIONS(10714), 1, - anon_sym_RBRACK, - STATE(6731), 1, + STATE(6908), 1, sym_comment, - STATE(6732), 1, - aux_sym_val_binary_repeat1, - [229602] = 5, - ACTIONS(247), 1, + ACTIONS(11026), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [230039] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(10555), 1, + ACTIONS(10831), 1, sym_hex_digit, - ACTIONS(10716), 1, + ACTIONS(11028), 1, anon_sym_RBRACK, - STATE(6732), 1, - sym_comment, - STATE(6970), 1, + STATE(6903), 1, aux_sym_val_binary_repeat1, - [229618] = 5, + STATE(6909), 1, + sym_comment, + [230055] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1366), 1, + anon_sym_RPAREN, + STATE(6910), 1, + sym_comment, + ACTIONS(1359), 2, + sym__newline, + anon_sym_SEMI, + [230069] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10718), 1, + ACTIONS(11030), 1, anon_sym_RBRACK, - STATE(6202), 1, + STATE(6444), 1, aux_sym__multiple_types_repeat1, - STATE(6733), 1, + STATE(6911), 1, sym_comment, - [229634] = 3, - ACTIONS(247), 1, + [230085] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6734), 1, + STATE(6912), 1, + sym_comment, + ACTIONS(1366), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [230097] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(6913), 1, sym_comment, - ACTIONS(10516), 3, + ACTIONS(10016), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [229646] = 5, + [230109] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10720), 1, + ACTIONS(11032), 1, anon_sym_RBRACK, - STATE(6203), 1, + STATE(6445), 1, aux_sym__multiple_types_repeat1, - STATE(6735), 1, + STATE(6914), 1, sym_comment, - [229662] = 5, + [230125] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10722), 1, + ACTIONS(11034), 1, anon_sym_RBRACK, - STATE(6204), 1, + STATE(6446), 1, aux_sym__multiple_types_repeat1, - STATE(6736), 1, + STATE(6915), 1, sym_comment, - [229678] = 5, + [230141] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10724), 1, + ACTIONS(11036), 1, anon_sym_RBRACK, - STATE(6205), 1, + STATE(6447), 1, aux_sym__multiple_types_repeat1, - STATE(6737), 1, + STATE(6916), 1, sym_comment, - [229694] = 5, + [230157] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10726), 1, + ACTIONS(11038), 1, anon_sym_RBRACK, - STATE(6206), 1, + STATE(6448), 1, aux_sym__multiple_types_repeat1, - STATE(6738), 1, + STATE(6917), 1, sym_comment, - [229710] = 3, - ACTIONS(247), 1, + [230173] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6739), 1, + ACTIONS(1640), 1, + sym__entry_separator, + STATE(6918), 1, sym_comment, - ACTIONS(10516), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [229722] = 5, + ACTIONS(1628), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [230187] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10728), 1, + ACTIONS(11040), 1, anon_sym_RBRACK, - STATE(6207), 1, + STATE(6449), 1, aux_sym__multiple_types_repeat1, - STATE(6740), 1, + STATE(6919), 1, sym_comment, - [229738] = 5, + [230203] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10730), 1, + ACTIONS(11042), 1, anon_sym_RBRACK, - STATE(6208), 1, + STATE(6450), 1, aux_sym__multiple_types_repeat1, - STATE(6741), 1, - sym_comment, - [229754] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8350), 1, - aux_sym_unquoted_token2, - STATE(6742), 1, + STATE(6920), 1, sym_comment, - ACTIONS(1572), 2, - sym_identifier, - anon_sym_DOLLAR, - [229768] = 5, + [230219] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(1092), 1, sym__entry_separator, - ACTIONS(10732), 1, - anon_sym_RBRACK, - STATE(6209), 1, - aux_sym__multiple_types_repeat1, - STATE(6743), 1, + STATE(6921), 1, sym_comment, - [229784] = 3, - ACTIONS(247), 1, + ACTIONS(1090), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [230233] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6744), 1, + ACTIONS(2408), 1, + sym__entry_separator, + STATE(6922), 1, sym_comment, - ACTIONS(10734), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [229796] = 3, - ACTIONS(247), 1, + ACTIONS(2406), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [230247] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6745), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(11044), 1, + anon_sym_RBRACK, + STATE(6451), 1, + aux_sym__multiple_types_repeat1, + STATE(6923), 1, sym_comment, - ACTIONS(10736), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [229808] = 3, - ACTIONS(247), 1, + [230263] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6746), 1, + ACTIONS(10831), 1, + sym_hex_digit, + ACTIONS(11046), 1, + anon_sym_RBRACK, + STATE(6903), 1, + aux_sym_val_binary_repeat1, + STATE(6924), 1, sym_comment, - ACTIONS(10000), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [229820] = 5, - ACTIONS(247), 1, + [230279] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6188), 1, - anon_sym_AT, - ACTIONS(10738), 1, - anon_sym_GT, - STATE(6747), 1, + STATE(6925), 1, sym_comment, - STATE(7419), 1, - sym_param_cmd, - [229836] = 4, - ACTIONS(247), 1, + ACTIONS(11048), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [230291] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8395), 1, - aux_sym_unquoted_token2, - STATE(6748), 1, + STATE(6926), 1, sym_comment, - ACTIONS(1572), 2, + ACTIONS(5893), 3, anon_sym_PIPE, + anon_sym_if, anon_sym_EQ_GT, - [229850] = 5, + [230303] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6012), 1, sym__entry_separator, - ACTIONS(10740), 1, - anon_sym_RBRACK, - STATE(6334), 1, + ACTIONS(11050), 1, + anon_sym_RBRACE, + STATE(2907), 1, aux_sym__multiple_types_repeat1, - STATE(6749), 1, - sym_comment, - [229866] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(3705), 1, - sym__newline, - ACTIONS(10742), 1, - anon_sym_COLON, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(6750), 1, - sym_comment, - [229882] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(10555), 1, - sym_hex_digit, - ACTIONS(10744), 1, - anon_sym_RBRACK, - STATE(6751), 1, + STATE(6927), 1, sym_comment, - STATE(6756), 1, - aux_sym_val_binary_repeat1, - [229898] = 5, + [230319] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5903), 1, + ACTIONS(6012), 1, sym__entry_separator, - ACTIONS(5913), 1, + ACTIONS(11052), 1, anon_sym_RBRACE, - STATE(2895), 1, + STATE(2908), 1, aux_sym__multiple_types_repeat1, - STATE(6752), 1, + STATE(6928), 1, sym_comment, - [229914] = 5, - ACTIONS(3), 1, + [230335] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5567), 1, - sym__entry_separator, - ACTIONS(10746), 1, - anon_sym_RBRACK, - STATE(6338), 1, - aux_sym__multiple_types_repeat1, - STATE(6753), 1, + STATE(6929), 1, sym_comment, - [229930] = 5, + ACTIONS(6162), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [230347] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(2508), 1, sym__entry_separator, - ACTIONS(10748), 1, - anon_sym_RBRACK, - STATE(6342), 1, - aux_sym__multiple_types_repeat1, - STATE(6754), 1, - sym_comment, - [229946] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6755), 1, + STATE(6930), 1, sym_comment, - ACTIONS(10000), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [229958] = 5, - ACTIONS(247), 1, + ACTIONS(2506), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [230361] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(10555), 1, + ACTIONS(10831), 1, sym_hex_digit, - ACTIONS(10750), 1, + ACTIONS(11054), 1, anon_sym_RBRACK, - STATE(6756), 1, + STATE(6931), 1, sym_comment, - STATE(6970), 1, + STATE(6933), 1, aux_sym_val_binary_repeat1, - [229974] = 5, + [230377] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5903), 1, - sym__entry_separator, - ACTIONS(5915), 1, - anon_sym_RBRACE, - STATE(2896), 1, - aux_sym__multiple_types_repeat1, - STATE(6757), 1, + ACTIONS(1630), 1, + anon_sym_LPAREN2, + ACTIONS(1699), 1, + aux_sym__unquoted_in_record_token4, + STATE(6932), 1, sym_comment, - [229990] = 3, - ACTIONS(247), 1, + STATE(7449), 1, + sym__expr_parenthesized_immediate, + [230393] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6758), 1, + ACTIONS(10831), 1, + sym_hex_digit, + ACTIONS(11056), 1, + anon_sym_RBRACK, + STATE(6903), 1, + aux_sym_val_binary_repeat1, + STATE(6933), 1, sym_comment, - ACTIONS(10022), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [230002] = 5, + [230409] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10752), 1, + ACTIONS(11058), 1, anon_sym_RBRACK, - STATE(6223), 1, + STATE(6458), 1, aux_sym__multiple_types_repeat1, - STATE(6759), 1, + STATE(6934), 1, sym_comment, - [230018] = 5, + [230425] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(2081), 1, sym__entry_separator, - ACTIONS(10754), 1, + STATE(6935), 1, + sym_comment, + ACTIONS(2079), 2, anon_sym_RBRACK, - STATE(6224), 1, + anon_sym_RBRACE, + [230439] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(11060), 1, + anon_sym_RBRACK, + STATE(6459), 1, aux_sym__multiple_types_repeat1, - STATE(6760), 1, + STATE(6936), 1, sym_comment, - [230034] = 5, + [230455] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10756), 1, + ACTIONS(11062), 1, anon_sym_RBRACK, - STATE(6225), 1, + STATE(6460), 1, aux_sym__multiple_types_repeat1, - STATE(6761), 1, + STATE(6937), 1, sym_comment, - [230050] = 5, + [230471] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10758), 1, + ACTIONS(11064), 1, anon_sym_RBRACK, - STATE(6226), 1, + STATE(6461), 1, aux_sym__multiple_types_repeat1, - STATE(6762), 1, + STATE(6938), 1, sym_comment, - [230066] = 4, - ACTIONS(247), 1, + [230487] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1798), 1, - aux_sym_unquoted_token2, - STATE(6763), 1, + STATE(6939), 1, sym_comment, - ACTIONS(2289), 2, + ACTIONS(6172), 3, anon_sym_PIPE, + anon_sym_if, anon_sym_EQ_GT, - [230080] = 5, + [230499] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10760), 1, + ACTIONS(11066), 1, anon_sym_RBRACK, - STATE(6227), 1, + STATE(6462), 1, aux_sym__multiple_types_repeat1, - STATE(6764), 1, + STATE(6940), 1, sym_comment, - [230096] = 5, + [230515] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10762), 1, + ACTIONS(11068), 1, anon_sym_RBRACK, - STATE(6228), 1, + STATE(6217), 1, aux_sym__multiple_types_repeat1, - STATE(6765), 1, - sym_comment, - [230112] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6766), 1, - sym_comment, - ACTIONS(10549), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [230124] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6188), 1, - anon_sym_AT, - ACTIONS(10764), 1, - anon_sym_GT, - STATE(6767), 1, + STATE(6941), 1, sym_comment, - STATE(7434), 1, - sym_param_cmd, - [230140] = 5, + [230531] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10766), 1, + ACTIONS(11070), 1, anon_sym_RBRACK, - STATE(6229), 1, + STATE(6463), 1, aux_sym__multiple_types_repeat1, - STATE(6768), 1, + STATE(6942), 1, sym_comment, - [230156] = 5, + [230547] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10768), 1, + ACTIONS(11072), 1, anon_sym_RBRACK, - STATE(6134), 1, + STATE(6464), 1, aux_sym__multiple_types_repeat1, - STATE(6769), 1, - sym_comment, - [230172] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6770), 1, + STATE(6943), 1, sym_comment, - ACTIONS(10770), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [230184] = 3, - ACTIONS(247), 1, + [230563] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6771), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(11074), 1, + anon_sym_RBRACK, + STATE(6465), 1, + aux_sym__multiple_types_repeat1, + STATE(6944), 1, sym_comment, - ACTIONS(5889), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [230196] = 3, - ACTIONS(247), 1, + [230579] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6772), 1, + STATE(6945), 1, sym_comment, - ACTIONS(6033), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [230208] = 5, - ACTIONS(247), 1, + ACTIONS(10783), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [230591] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10555), 1, - sym_hex_digit, - ACTIONS(10772), 1, - anon_sym_RBRACK, - STATE(6773), 1, + ACTIONS(10236), 1, + anon_sym_LPAREN, + STATE(6946), 1, sym_comment, - STATE(6778), 1, - aux_sym_val_binary_repeat1, - [230224] = 3, - ACTIONS(247), 1, + ACTIONS(10238), 2, + sym_unescaped_interpolated_content, + anon_sym_SQUOTE, + [230605] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6774), 1, + ACTIONS(1526), 1, + aux_sym_unquoted_token2, + STATE(6947), 1, sym_comment, - ACTIONS(6037), 3, + ACTIONS(1796), 2, anon_sym_PIPE, - anon_sym_if, anon_sym_EQ_GT, - [230236] = 5, + [230619] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7673), 1, + ACTIONS(2553), 1, sym__entry_separator, - ACTIONS(7677), 1, + STATE(6948), 1, + sym_comment, + ACTIONS(2551), 2, anon_sym_RBRACK, - ACTIONS(10774), 1, - anon_sym_LT, - STATE(6775), 1, + anon_sym_RBRACE, + [230633] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(8580), 1, + aux_sym_unquoted_token2, + STATE(6949), 1, sym_comment, - [230252] = 3, - ACTIONS(247), 1, + ACTIONS(1640), 2, + sym_identifier, + anon_sym_DOLLAR, + [230647] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6776), 1, + ACTIONS(10831), 1, + sym_hex_digit, + ACTIONS(11076), 1, + anon_sym_RBRACK, + STATE(6950), 1, sym_comment, - ACTIONS(5895), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [230264] = 5, + STATE(6952), 1, + aux_sym_val_binary_repeat1, + [230663] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7673), 1, + ACTIONS(2424), 1, sym__entry_separator, - ACTIONS(7677), 1, - anon_sym_RBRACK, - ACTIONS(10776), 1, - anon_sym_LT, - STATE(6777), 1, + STATE(6951), 1, sym_comment, - [230280] = 5, - ACTIONS(247), 1, + ACTIONS(2422), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [230677] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(10555), 1, + ACTIONS(10831), 1, sym_hex_digit, - ACTIONS(10778), 1, + ACTIONS(11078), 1, anon_sym_RBRACK, - STATE(6778), 1, - sym_comment, - STATE(6970), 1, + STATE(6903), 1, aux_sym_val_binary_repeat1, - [230296] = 5, + STATE(6952), 1, + sym_comment, + [230693] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10780), 1, + ACTIONS(11080), 1, anon_sym_RBRACK, - STATE(6241), 1, + STATE(6473), 1, aux_sym__multiple_types_repeat1, - STATE(6779), 1, + STATE(6953), 1, sym_comment, - [230312] = 3, - ACTIONS(247), 1, + [230709] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6780), 1, + ACTIONS(1715), 1, + aux_sym_unquoted_token2, + STATE(6954), 1, sym_comment, - ACTIONS(10782), 3, + ACTIONS(1717), 2, anon_sym_PIPE, - anon_sym_if, anon_sym_EQ_GT, - [230324] = 5, + [230723] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10784), 1, + ACTIONS(11082), 1, anon_sym_RBRACK, - STATE(6242), 1, + STATE(6474), 1, aux_sym__multiple_types_repeat1, - STATE(6781), 1, + STATE(6955), 1, sym_comment, - [230340] = 5, + [230739] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10786), 1, + ACTIONS(11084), 1, anon_sym_RBRACK, - STATE(6243), 1, + STATE(6475), 1, aux_sym__multiple_types_repeat1, - STATE(6782), 1, + STATE(6956), 1, sym_comment, - [230356] = 5, + [230755] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10788), 1, + ACTIONS(11086), 1, anon_sym_RBRACK, - STATE(6244), 1, + STATE(6476), 1, aux_sym__multiple_types_repeat1, - STATE(6783), 1, + STATE(6957), 1, sym_comment, - [230372] = 3, - ACTIONS(247), 1, + [230771] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6784), 1, + ACTIONS(2559), 1, + sym__entry_separator, + STATE(6958), 1, sym_comment, - ACTIONS(9658), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [230384] = 5, + ACTIONS(2557), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [230785] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10790), 1, + ACTIONS(11088), 1, anon_sym_RBRACK, - STATE(6245), 1, + STATE(6477), 1, aux_sym__multiple_types_repeat1, - STATE(6785), 1, + STATE(6959), 1, sym_comment, - [230400] = 3, - ACTIONS(247), 1, + [230801] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6786), 1, + STATE(6960), 1, sym_comment, - ACTIONS(9736), 3, - ts_builtin_sym_end, + ACTIONS(11090), 3, sym__newline, anon_sym_SEMI, - [230412] = 5, + anon_sym_RPAREN, + [230813] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(2468), 1, sym__entry_separator, - ACTIONS(10792), 1, + STATE(6961), 1, + sym_comment, + ACTIONS(2466), 2, anon_sym_RBRACK, - STATE(6246), 1, + anon_sym_RBRACE, + [230827] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(11092), 1, + anon_sym_RBRACK, + STATE(6478), 1, aux_sym__multiple_types_repeat1, - STATE(6787), 1, + STATE(6962), 1, sym_comment, - [230428] = 5, + [230843] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10794), 1, + ACTIONS(11094), 1, anon_sym_RBRACK, - STATE(6247), 1, + STATE(6479), 1, aux_sym__multiple_types_repeat1, - STATE(6788), 1, + STATE(6963), 1, sym_comment, - [230444] = 4, - ACTIONS(247), 1, + [230859] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2303), 1, - aux_sym_unquoted_token2, - STATE(6789), 1, + ACTIONS(2019), 1, + sym__entry_separator, + STATE(6964), 1, sym_comment, - ACTIONS(2301), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [230458] = 5, + ACTIONS(2017), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [230873] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(2378), 1, + anon_sym_RBRACE, + STATE(6965), 1, + sym_comment, + ACTIONS(2380), 2, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(10796), 1, + [230887] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(11096), 1, anon_sym_RBRACK, - STATE(6248), 1, + STATE(6480), 1, aux_sym__multiple_types_repeat1, - STATE(6790), 1, + STATE(6966), 1, sym_comment, - [230474] = 3, - ACTIONS(247), 1, + [230903] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6791), 1, + STATE(6967), 1, sym_comment, - ACTIONS(9934), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [230486] = 5, + ACTIONS(5900), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [230915] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(5672), 1, sym__entry_separator, - ACTIONS(10798), 1, + ACTIONS(11098), 1, anon_sym_RBRACK, - STATE(6467), 1, + STATE(2658), 1, aux_sym__multiple_types_repeat1, - STATE(6792), 1, + STATE(6968), 1, sym_comment, - [230502] = 3, - ACTIONS(247), 1, + [230931] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6793), 1, + ACTIONS(2228), 1, + sym__entry_separator, + STATE(6969), 1, sym_comment, - ACTIONS(9770), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [230514] = 3, - ACTIONS(247), 1, + ACTIONS(2222), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [230945] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6794), 1, + ACTIONS(5672), 1, + sym__entry_separator, + ACTIONS(11100), 1, + anon_sym_RBRACK, + STATE(2635), 1, + aux_sym__multiple_types_repeat1, + STATE(6970), 1, sym_comment, - ACTIONS(9936), 3, + [230961] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(6971), 1, + sym_comment, + ACTIONS(10714), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [230526] = 5, - ACTIONS(247), 1, + [230973] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10555), 1, - sym_hex_digit, - ACTIONS(10800), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(11102), 1, anon_sym_RBRACK, - STATE(6795), 1, + STATE(6659), 1, + aux_sym__multiple_types_repeat1, + STATE(6972), 1, sym_comment, - STATE(6797), 1, - aux_sym_val_binary_repeat1, - [230542] = 5, + [230989] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10802), 1, + ACTIONS(11104), 1, anon_sym_RBRACK, - STATE(6374), 1, + STATE(6660), 1, aux_sym__multiple_types_repeat1, - STATE(6796), 1, + STATE(6973), 1, sym_comment, - [230558] = 5, - ACTIONS(247), 1, + [231005] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(10555), 1, + ACTIONS(10831), 1, sym_hex_digit, - ACTIONS(10804), 1, + ACTIONS(11106), 1, anon_sym_RBRACK, - STATE(6797), 1, + STATE(6974), 1, sym_comment, - STATE(6970), 1, + STATE(6976), 1, aux_sym_val_binary_repeat1, - [230574] = 5, + [231021] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10806), 1, + ACTIONS(11108), 1, anon_sym_RBRACK, - STATE(6261), 1, + STATE(6661), 1, aux_sym__multiple_types_repeat1, - STATE(6798), 1, + STATE(6975), 1, sym_comment, - [230590] = 5, - ACTIONS(3), 1, + [231037] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5567), 1, - sym__entry_separator, - ACTIONS(10808), 1, + ACTIONS(10831), 1, + sym_hex_digit, + ACTIONS(11110), 1, anon_sym_RBRACK, - STATE(6262), 1, - aux_sym__multiple_types_repeat1, - STATE(6799), 1, + STATE(6903), 1, + aux_sym_val_binary_repeat1, + STATE(6976), 1, sym_comment, - [230606] = 5, + [231053] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10810), 1, + ACTIONS(11112), 1, anon_sym_RBRACK, - STATE(6263), 1, + STATE(6488), 1, aux_sym__multiple_types_repeat1, - STATE(6800), 1, + STATE(6977), 1, sym_comment, - [230622] = 5, + [231069] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10812), 1, + ACTIONS(11114), 1, anon_sym_RBRACK, - STATE(6264), 1, + STATE(6489), 1, aux_sym__multiple_types_repeat1, - STATE(6801), 1, + STATE(6978), 1, sym_comment, - [230638] = 5, + [231085] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10814), 1, + ACTIONS(11116), 1, anon_sym_RBRACK, - STATE(6265), 1, + STATE(6490), 1, aux_sym__multiple_types_repeat1, - STATE(6802), 1, + STATE(6979), 1, sym_comment, - [230654] = 5, + [231101] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10816), 1, + ACTIONS(11118), 1, anon_sym_RBRACK, - STATE(6266), 1, + STATE(6491), 1, aux_sym__multiple_types_repeat1, - STATE(6803), 1, + STATE(6980), 1, + sym_comment, + [231117] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(11120), 1, + aux_sym_cmd_identifier_token41, + STATE(6981), 1, sym_comment, - [230670] = 5, + ACTIONS(11122), 2, + sym_filesize_unit, + sym_duration_unit, + [231131] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10818), 1, + ACTIONS(11124), 1, anon_sym_RBRACK, - STATE(6267), 1, + STATE(6492), 1, aux_sym__multiple_types_repeat1, - STATE(6804), 1, + STATE(6982), 1, sym_comment, - [230686] = 4, - ACTIONS(247), 1, + [231147] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1798), 1, - aux_sym_unquoted_token2, - STATE(6805), 1, + STATE(6983), 1, sym_comment, - ACTIONS(1796), 2, + ACTIONS(5666), 3, anon_sym_PIPE, + anon_sym_if, anon_sym_EQ_GT, - [230700] = 5, + [231159] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10820), 1, + ACTIONS(11126), 1, anon_sym_RBRACK, - STATE(6268), 1, + STATE(6493), 1, aux_sym__multiple_types_repeat1, - STATE(6806), 1, + STATE(6984), 1, sym_comment, - [230716] = 5, + [231175] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5903), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10822), 1, - anon_sym_RBRACE, - STATE(2891), 1, + ACTIONS(11128), 1, + anon_sym_RBRACK, + STATE(6494), 1, aux_sym__multiple_types_repeat1, - STATE(6807), 1, + STATE(6985), 1, sym_comment, - [230732] = 3, - ACTIONS(247), 1, + [231191] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6808), 1, + ACTIONS(11130), 1, + anon_sym_DQUOTE, + STATE(6986), 1, sym_comment, - ACTIONS(10364), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [230744] = 5, + ACTIONS(11132), 2, + sym__escaped_str_content, + sym_escape_sequence, + [231205] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2231), 1, - anon_sym_LPAREN2, - ACTIONS(2235), 1, - aux_sym_unquoted_token4, - ACTIONS(10824), 1, - sym__space, - STATE(6809), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(11134), 1, + anon_sym_RBRACK, + STATE(6495), 1, + aux_sym__multiple_types_repeat1, + STATE(6987), 1, sym_comment, - [230760] = 3, - ACTIONS(247), 1, + [231221] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6810), 1, + STATE(6988), 1, sym_comment, - ACTIONS(10826), 3, + ACTIONS(10735), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [231233] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(6989), 1, + sym_comment, + ACTIONS(11136), 3, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - [230772] = 5, + [231245] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(11140), 1, + anon_sym_COMMA, + STATE(6990), 1, + sym_comment, + ACTIONS(11138), 2, + anon_sym_RBRACK, + sym_hex_digit, + [231259] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5903), 1, + ACTIONS(2045), 1, sym__entry_separator, - ACTIONS(10828), 1, - anon_sym_RBRACE, - STATE(2892), 1, - aux_sym__multiple_types_repeat1, - STATE(6811), 1, + STATE(6991), 1, sym_comment, - [230788] = 3, - ACTIONS(247), 1, + ACTIONS(2043), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [231273] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6812), 1, + STATE(6992), 1, sym_comment, - ACTIONS(10366), 3, - ts_builtin_sym_end, + ACTIONS(11142), 3, sym__newline, anon_sym_SEMI, - [230800] = 5, - ACTIONS(3), 1, + anon_sym_RPAREN, + [231285] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5567), 1, - sym__entry_separator, - ACTIONS(10830), 1, + ACTIONS(10831), 1, + sym_hex_digit, + ACTIONS(11144), 1, anon_sym_RBRACK, - STATE(6278), 1, - aux_sym__multiple_types_repeat1, - STATE(6813), 1, + STATE(6752), 1, + aux_sym_val_binary_repeat1, + STATE(6993), 1, sym_comment, - [230816] = 3, - ACTIONS(247), 1, + [231301] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6814), 1, + ACTIONS(10831), 1, + sym_hex_digit, + ACTIONS(11146), 1, + anon_sym_RBRACK, + STATE(6903), 1, + aux_sym_val_binary_repeat1, + STATE(6994), 1, sym_comment, - ACTIONS(10368), 3, - ts_builtin_sym_end, + [231317] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1703), 1, + aux_sym_unquoted_token2, + STATE(6995), 1, + sym_comment, + ACTIONS(1705), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [231331] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(6996), 1, + sym_comment, + ACTIONS(11148), 3, sym__newline, anon_sym_SEMI, - [230828] = 5, + anon_sym_RPAREN, + [231343] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(2541), 1, sym__entry_separator, - ACTIONS(10832), 1, + STATE(6997), 1, + sym_comment, + ACTIONS(2539), 2, anon_sym_RBRACK, - STATE(6279), 1, + anon_sym_RBRACE, + [231357] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(11150), 1, + anon_sym_RBRACK, + STATE(6501), 1, aux_sym__multiple_types_repeat1, - STATE(6815), 1, + STATE(6998), 1, sym_comment, - [230844] = 5, + [231373] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10834), 1, + ACTIONS(11152), 1, anon_sym_RBRACK, - STATE(6280), 1, + STATE(6502), 1, aux_sym__multiple_types_repeat1, - STATE(6816), 1, + STATE(6999), 1, sym_comment, - [230860] = 5, + [231389] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10836), 1, + ACTIONS(11154), 1, anon_sym_RBRACK, - STATE(6281), 1, + STATE(6503), 1, aux_sym__multiple_types_repeat1, - STATE(6817), 1, + STATE(7000), 1, sym_comment, - [230876] = 5, + [231405] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10838), 1, + ACTIONS(11156), 1, anon_sym_RBRACK, - STATE(6282), 1, + STATE(6504), 1, aux_sym__multiple_types_repeat1, - STATE(6818), 1, + STATE(7001), 1, sym_comment, - [230892] = 3, - ACTIONS(247), 1, + [231421] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6819), 1, + ACTIONS(5087), 1, + aux_sym_cmd_identifier_token41, + STATE(7002), 1, sym_comment, - ACTIONS(10372), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [230904] = 5, + ACTIONS(11158), 2, + sym_filesize_unit, + sym_duration_unit, + [231435] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1562), 1, - anon_sym_LPAREN2, - ACTIONS(1687), 1, - aux_sym__unquoted_in_record_token4, - STATE(6820), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(11160), 1, + anon_sym_RBRACK, + STATE(6505), 1, + aux_sym__multiple_types_repeat1, + STATE(7003), 1, sym_comment, - STATE(7285), 1, - sym__expr_parenthesized_immediate, - [230920] = 5, + [231451] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(1911), 1, sym__entry_separator, - ACTIONS(10840), 1, - anon_sym_RBRACK, - STATE(6283), 1, - aux_sym__multiple_types_repeat1, - STATE(6821), 1, + STATE(7004), 1, sym_comment, - [230936] = 5, + ACTIONS(1909), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [231465] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10842), 1, + ACTIONS(11162), 1, anon_sym_RBRACK, - STATE(6284), 1, + STATE(6751), 1, aux_sym__multiple_types_repeat1, - STATE(6822), 1, + STATE(7005), 1, sym_comment, - [230952] = 5, + [231481] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10844), 1, + ACTIONS(11164), 1, anon_sym_RBRACK, - STATE(6285), 1, + STATE(6507), 1, aux_sym__multiple_types_repeat1, - STATE(6823), 1, + STATE(7006), 1, sym_comment, - [230968] = 5, + [231497] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5903), 1, + ACTIONS(1628), 1, + anon_sym_RBRACK, + ACTIONS(1640), 1, sym__entry_separator, - ACTIONS(10846), 1, - anon_sym_RBRACE, - STATE(2928), 1, + ACTIONS(8643), 1, + aux_sym__unquoted_in_list_token2, + STATE(7007), 1, + sym_comment, + [231513] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6257), 1, + anon_sym_AT, + ACTIONS(11166), 1, + anon_sym_GT, + STATE(7008), 1, + sym_comment, + STATE(8068), 1, + sym_param_cmd, + [231529] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(11168), 1, + anon_sym_RBRACK, + STATE(6508), 1, aux_sym__multiple_types_repeat1, - STATE(6824), 1, + STATE(7009), 1, sym_comment, - [230984] = 3, - ACTIONS(247), 1, + [231545] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6825), 1, + STATE(7010), 1, sym_comment, - ACTIONS(10391), 3, + ACTIONS(9954), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [230996] = 3, - ACTIONS(247), 1, + [231557] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6826), 1, + STATE(7011), 1, sym_comment, - ACTIONS(10397), 3, + ACTIONS(9996), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [231008] = 5, + [231569] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10848), 1, + ACTIONS(11170), 1, anon_sym_RBRACK, - STATE(6293), 1, + STATE(6514), 1, aux_sym__multiple_types_repeat1, - STATE(6827), 1, - sym_comment, - [231024] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6828), 1, + STATE(7012), 1, sym_comment, - ACTIONS(10393), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [231036] = 5, + [231585] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(2345), 1, sym__entry_separator, - ACTIONS(10850), 1, - anon_sym_RBRACK, - STATE(6294), 1, + ACTIONS(11172), 1, + anon_sym_RBRACE, + STATE(539), 1, aux_sym__multiple_types_repeat1, - STATE(6829), 1, + STATE(7013), 1, sym_comment, - [231052] = 5, + [231601] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10852), 1, + ACTIONS(11174), 1, anon_sym_RBRACK, - STATE(6295), 1, + STATE(6515), 1, aux_sym__multiple_types_repeat1, - STATE(6830), 1, + STATE(7014), 1, sym_comment, - [231068] = 5, + [231617] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10854), 1, + ACTIONS(11176), 1, anon_sym_RBRACK, - STATE(6296), 1, + STATE(6516), 1, aux_sym__multiple_types_repeat1, - STATE(6831), 1, + STATE(7015), 1, sym_comment, - [231084] = 5, + [231633] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10856), 1, + ACTIONS(11178), 1, anon_sym_RBRACK, - STATE(6297), 1, - aux_sym__multiple_types_repeat1, - STATE(6832), 1, - sym_comment, - [231100] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6833), 1, - sym_comment, - ACTIONS(5651), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [231112] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6834), 1, + STATE(6517), 1, + aux_sym__multiple_types_repeat1, + STATE(7016), 1, sym_comment, - ACTIONS(10524), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [231124] = 5, + [231649] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10858), 1, + ACTIONS(11180), 1, anon_sym_RBRACK, - STATE(6298), 1, + STATE(6518), 1, aux_sym__multiple_types_repeat1, - STATE(6835), 1, + STATE(7017), 1, sym_comment, - [231140] = 5, + [231665] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10860), 1, + ACTIONS(11182), 1, anon_sym_RBRACK, - STATE(6299), 1, + STATE(6519), 1, aux_sym__multiple_types_repeat1, - STATE(6836), 1, + STATE(7018), 1, sym_comment, - [231156] = 5, + [231681] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10862), 1, + ACTIONS(11184), 1, anon_sym_RBRACK, - STATE(6300), 1, + STATE(6520), 1, aux_sym__multiple_types_repeat1, - STATE(6837), 1, + STATE(7019), 1, sym_comment, - [231172] = 5, - ACTIONS(247), 1, + [231697] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6188), 1, - anon_sym_AT, - ACTIONS(7760), 1, - anon_sym_EQ, - STATE(5133), 1, - sym_param_cmd, - STATE(6838), 1, + ACTIONS(10831), 1, + sym_hex_digit, + ACTIONS(11186), 1, + anon_sym_RBRACK, + STATE(7020), 1, sym_comment, - [231188] = 4, - ACTIONS(247), 1, + STATE(7041), 1, + aux_sym_val_binary_repeat1, + [231713] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1494), 1, - aux_sym_unquoted_token2, - STATE(6839), 1, + STATE(7021), 1, sym_comment, - ACTIONS(1786), 2, + ACTIONS(11188), 3, anon_sym_PIPE, + anon_sym_if, anon_sym_EQ_GT, - [231202] = 3, - ACTIONS(247), 1, + [231725] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6840), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(11190), 1, + anon_sym_RBRACK, + STATE(6521), 1, + aux_sym__multiple_types_repeat1, + STATE(7022), 1, sym_comment, - ACTIONS(9938), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [231214] = 3, - ACTIONS(247), 1, + [231741] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6841), 1, + ACTIONS(11192), 1, + anon_sym_PIPE, + ACTIONS(11195), 1, + anon_sym_EQ_GT, + STATE(7023), 2, sym_comment, - ACTIONS(9938), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [231226] = 3, - ACTIONS(247), 1, + aux_sym_match_pattern_repeat1, + [231755] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6842), 1, + ACTIONS(2345), 1, + sym__entry_separator, + ACTIONS(11197), 1, + anon_sym_RBRACE, + STATE(540), 1, + aux_sym__multiple_types_repeat1, + STATE(7024), 1, sym_comment, - ACTIONS(9820), 3, - ts_builtin_sym_end, + [231771] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1351), 1, + anon_sym_POUND_BANG, + ACTIONS(11199), 1, sym__newline, - anon_sym_SEMI, - [231238] = 3, - ACTIONS(247), 1, + STATE(7025), 2, + sym_comment, + aux_sym_shebang_repeat1, + [231785] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6843), 1, + STATE(7026), 1, sym_comment, - ACTIONS(10524), 3, - ts_builtin_sym_end, + ACTIONS(11202), 3, sym__newline, anon_sym_SEMI, - [231250] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5567), 1, - sym__entry_separator, - ACTIONS(10864), 1, - anon_sym_RBRACK, - STATE(2657), 1, - aux_sym__multiple_types_repeat1, - STATE(6844), 1, - sym_comment, - [231266] = 3, - ACTIONS(247), 1, + anon_sym_RPAREN, + [231797] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6845), 1, + STATE(7027), 1, sym_comment, - ACTIONS(9732), 3, + ACTIONS(10308), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [231278] = 5, + [231809] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10866), 1, + ACTIONS(11204), 1, anon_sym_RBRACK, - STATE(6307), 1, + STATE(6525), 1, aux_sym__multiple_types_repeat1, - STATE(6846), 1, + STATE(7028), 1, sym_comment, - [231294] = 3, - ACTIONS(247), 1, + [231825] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6847), 1, + STATE(7029), 1, sym_comment, - ACTIONS(9852), 3, + ACTIONS(10314), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [231306] = 5, + [231837] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10868), 1, + ACTIONS(11206), 1, anon_sym_RBRACK, - STATE(6308), 1, + STATE(6526), 1, aux_sym__multiple_types_repeat1, - STATE(6848), 1, + STATE(7030), 1, sym_comment, - [231322] = 5, + [231853] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10870), 1, + ACTIONS(11208), 1, anon_sym_RBRACK, - STATE(6309), 1, + STATE(6527), 1, aux_sym__multiple_types_repeat1, - STATE(6849), 1, + STATE(7031), 1, sym_comment, - [231338] = 5, + [231869] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10872), 1, + ACTIONS(11210), 1, anon_sym_RBRACK, - STATE(6310), 1, + STATE(6528), 1, aux_sym__multiple_types_repeat1, - STATE(6850), 1, + STATE(7032), 1, sym_comment, - [231354] = 5, + [231885] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10874), 1, + ACTIONS(11212), 1, anon_sym_RBRACK, - STATE(6311), 1, + STATE(6529), 1, aux_sym__multiple_types_repeat1, - STATE(6851), 1, + STATE(7033), 1, sym_comment, - [231370] = 4, - ACTIONS(247), 1, + [231901] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(10876), 1, - anon_sym_EQ2, - STATE(6852), 1, + STATE(7034), 1, sym_comment, - ACTIONS(4898), 2, - sym_identifier, - anon_sym_DOLLAR, - [231384] = 5, + ACTIONS(10008), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [231913] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10878), 1, + ACTIONS(11214), 1, anon_sym_RBRACK, - STATE(6312), 1, + STATE(6530), 1, aux_sym__multiple_types_repeat1, - STATE(6853), 1, + STATE(7035), 1, sym_comment, - [231400] = 5, + [231929] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10880), 1, + ACTIONS(11216), 1, anon_sym_RBRACK, - STATE(6313), 1, + STATE(6531), 1, aux_sym__multiple_types_repeat1, - STATE(6854), 1, + STATE(7036), 1, + sym_comment, + [231945] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5518), 1, + anon_sym_LPAREN2, + ACTIONS(7135), 1, + aux_sym__unquoted_in_list_token4, + STATE(7037), 1, sym_comment, - [231416] = 5, + STATE(7518), 1, + sym__expr_parenthesized_immediate, + [231961] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10882), 1, + ACTIONS(11218), 1, anon_sym_RBRACK, - STATE(6314), 1, + STATE(6532), 1, aux_sym__multiple_types_repeat1, - STATE(6855), 1, + STATE(7038), 1, sym_comment, - [231432] = 3, - ACTIONS(247), 1, + [231977] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6856), 1, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + ACTIONS(7021), 1, + aux_sym_unquoted_token4, + STATE(7039), 1, sym_comment, - ACTIONS(10534), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [231444] = 3, - ACTIONS(247), 1, + STATE(7582), 1, + sym__expr_parenthesized_immediate, + [231993] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6857), 1, + STATE(7040), 1, sym_comment, - ACTIONS(9704), 3, - ts_builtin_sym_end, + ACTIONS(11220), 3, sym__newline, anon_sym_SEMI, - [231456] = 4, - ACTIONS(247), 1, + anon_sym_RPAREN, + [232005] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4816), 1, - aux_sym_cmd_identifier_token41, - STATE(6858), 1, + ACTIONS(10831), 1, + sym_hex_digit, + ACTIONS(11222), 1, + anon_sym_RBRACK, + STATE(6903), 1, + aux_sym_val_binary_repeat1, + STATE(7041), 1, sym_comment, - ACTIONS(10884), 2, - sym_filesize_unit, - sym_duration_unit, - [231470] = 4, - ACTIONS(3), 1, + [232021] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - STATE(6859), 1, + STATE(7042), 1, sym_comment, - ACTIONS(2237), 2, - sym_identifier, - anon_sym_DOLLAR, - [231484] = 5, + ACTIONS(10314), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [232033] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5547), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10886), 1, + ACTIONS(11224), 1, anon_sym_RBRACK, - STATE(2623), 1, + STATE(6536), 1, aux_sym__multiple_types_repeat1, - STATE(6860), 1, + STATE(7043), 1, sym_comment, - [231500] = 5, + [232049] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5547), 1, + ACTIONS(2496), 1, sym__entry_separator, - ACTIONS(10888), 1, + STATE(7044), 1, + sym_comment, + ACTIONS(2494), 2, anon_sym_RBRACK, - STATE(2618), 1, - aux_sym__multiple_types_repeat1, - STATE(6861), 1, + anon_sym_RBRACE, + [232063] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11226), 1, + anon_sym_LPAREN, + STATE(7045), 1, sym_comment, - [231516] = 5, + ACTIONS(11228), 2, + sym_unescaped_interpolated_content, + anon_sym_SQUOTE, + [232077] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10890), 1, + ACTIONS(11230), 1, anon_sym_RBRACK, - STATE(6321), 1, + STATE(6537), 1, aux_sym__multiple_types_repeat1, - STATE(6862), 1, + STATE(7046), 1, sym_comment, - [231532] = 5, + [232093] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5547), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10892), 1, + ACTIONS(11232), 1, anon_sym_RBRACK, - STATE(2619), 1, + STATE(6538), 1, aux_sym__multiple_types_repeat1, - STATE(6863), 1, + STATE(7047), 1, sym_comment, - [231548] = 5, + [232109] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10894), 1, + ACTIONS(11234), 1, anon_sym_RBRACK, - STATE(6322), 1, + STATE(6539), 1, aux_sym__multiple_types_repeat1, - STATE(6864), 1, + STATE(7048), 1, sym_comment, - [231564] = 5, + [232125] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10896), 1, + ACTIONS(11236), 1, anon_sym_RBRACK, - STATE(6323), 1, + STATE(6540), 1, aux_sym__multiple_types_repeat1, - STATE(6865), 1, + STATE(7049), 1, sym_comment, - [231580] = 5, + [232141] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10898), 1, + ACTIONS(11238), 1, anon_sym_RBRACK, - STATE(6324), 1, + STATE(6281), 1, aux_sym__multiple_types_repeat1, - STATE(6866), 1, + STATE(7050), 1, sym_comment, - [231596] = 5, + [232157] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6361), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10900), 1, + ACTIONS(11240), 1, anon_sym_RBRACK, - STATE(3409), 1, + STATE(6541), 1, aux_sym__multiple_types_repeat1, - STATE(6867), 1, + STATE(7051), 1, sym_comment, - [231612] = 5, + [232173] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10902), 1, + ACTIONS(11242), 1, anon_sym_RBRACK, - STATE(6325), 1, + STATE(6542), 1, aux_sym__multiple_types_repeat1, - STATE(6868), 1, + STATE(7052), 1, sym_comment, - [231628] = 5, + [232189] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(2049), 1, sym__entry_separator, - ACTIONS(10904), 1, - anon_sym_RBRACK, - STATE(6326), 1, - aux_sym__multiple_types_repeat1, - STATE(6869), 1, + STATE(7053), 1, sym_comment, - [231644] = 5, + ACTIONS(2047), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [232203] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10906), 1, + ACTIONS(11244), 1, anon_sym_RBRACK, - STATE(6327), 1, + STATE(6543), 1, aux_sym__multiple_types_repeat1, - STATE(6870), 1, + STATE(7054), 1, sym_comment, - [231660] = 5, + [232219] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(2496), 1, sym__entry_separator, - ACTIONS(10908), 1, - anon_sym_RBRACK, - STATE(6328), 1, - aux_sym__multiple_types_repeat1, - STATE(6871), 1, + STATE(7055), 1, sym_comment, - [231676] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(10555), 1, - sym_hex_digit, - ACTIONS(10910), 1, + ACTIONS(2494), 2, anon_sym_RBRACK, - STATE(6872), 1, - sym_comment, - STATE(6879), 1, - aux_sym_val_binary_repeat1, - [231692] = 4, + anon_sym_RBRACE, + [232233] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - STATE(6873), 1, + ACTIONS(2567), 1, + sym__entry_separator, + STATE(7056), 1, sym_comment, - ACTIONS(2245), 2, - sym_identifier, - anon_sym_DOLLAR, - [231706] = 5, + ACTIONS(2565), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [232247] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(7057), 1, + sym_comment, + ACTIONS(10336), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [232259] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10912), 1, + ACTIONS(11246), 1, anon_sym_RBRACK, - STATE(6567), 1, + STATE(6549), 1, aux_sym__multiple_types_repeat1, - STATE(6874), 1, + STATE(7058), 1, sym_comment, - [231722] = 5, + [232275] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10914), 1, + ACTIONS(11248), 1, anon_sym_RBRACK, - STATE(6572), 1, + STATE(6283), 1, aux_sym__multiple_types_repeat1, - STATE(6875), 1, + STATE(7059), 1, sym_comment, - [231738] = 5, + [232291] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10916), 1, + ACTIONS(11250), 1, anon_sym_RBRACK, - STATE(6573), 1, + STATE(6550), 1, aux_sym__multiple_types_repeat1, - STATE(6876), 1, + STATE(7060), 1, sym_comment, - [231754] = 5, + [232307] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6361), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10918), 1, + ACTIONS(11252), 1, anon_sym_RBRACK, - STATE(3410), 1, + STATE(6551), 1, aux_sym__multiple_types_repeat1, - STATE(6877), 1, + STATE(7061), 1, sym_comment, - [231770] = 5, + [232323] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - ACTIONS(6872), 1, - aux_sym_unquoted_token4, - STATE(6878), 1, - sym_comment, - STATE(7369), 1, - sym__expr_parenthesized_immediate, - [231786] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(10555), 1, - sym_hex_digit, - ACTIONS(10920), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(11254), 1, anon_sym_RBRACK, - STATE(6879), 1, + STATE(6552), 1, + aux_sym__multiple_types_repeat1, + STATE(7062), 1, sym_comment, - STATE(6970), 1, - aux_sym_val_binary_repeat1, - [231802] = 5, + [232339] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10922), 1, + ACTIONS(11256), 1, anon_sym_RBRACK, - STATE(6469), 1, + STATE(6284), 1, aux_sym__multiple_types_repeat1, - STATE(6880), 1, + STATE(7063), 1, sym_comment, - [231818] = 5, + [232355] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10924), 1, + ACTIONS(11258), 1, anon_sym_RBRACK, - STATE(6486), 1, + STATE(6553), 1, aux_sym__multiple_types_repeat1, - STATE(6881), 1, - sym_comment, - [231834] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1560), 1, - sym__newline, - ACTIONS(1572), 1, - sym__space, - ACTIONS(6872), 1, - aux_sym_unquoted_token2, - STATE(6882), 1, + STATE(7064), 1, sym_comment, - [231850] = 5, + [232371] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10926), 1, + ACTIONS(11260), 1, anon_sym_RBRACK, - STATE(6488), 1, + STATE(6285), 1, aux_sym__multiple_types_repeat1, - STATE(6883), 1, + STATE(7065), 1, sym_comment, - [231866] = 5, + [232387] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10928), 1, + ACTIONS(11262), 1, anon_sym_RBRACK, - STATE(6489), 1, + STATE(6554), 1, aux_sym__multiple_types_repeat1, - STATE(6884), 1, + STATE(7066), 1, sym_comment, - [231882] = 5, + [232403] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10930), 1, + ACTIONS(11264), 1, anon_sym_RBRACK, - STATE(6493), 1, + STATE(6555), 1, aux_sym__multiple_types_repeat1, - STATE(6885), 1, + STATE(7067), 1, sym_comment, - [231898] = 5, - ACTIONS(247), 1, + [232419] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, - anon_sym_LBRACK, - STATE(6886), 1, + STATE(7068), 1, sym_comment, - STATE(6967), 1, - sym_val_list, - STATE(7180), 1, - aux_sym_val_table_repeat1, - [231914] = 5, + ACTIONS(10060), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [232431] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10932), 1, + ACTIONS(11266), 1, anon_sym_RBRACK, - STATE(6472), 1, + STATE(6556), 1, aux_sym__multiple_types_repeat1, - STATE(6887), 1, + STATE(7069), 1, sym_comment, - [231930] = 5, - ACTIONS(3), 1, + [232447] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5567), 1, - sym__entry_separator, - ACTIONS(10934), 1, - anon_sym_RBRACK, - STATE(6498), 1, - aux_sym__multiple_types_repeat1, - STATE(6888), 1, + ACTIONS(6257), 1, + anon_sym_AT, + ACTIONS(11268), 1, + anon_sym_GT, + STATE(7070), 1, sym_comment, - [231946] = 3, - ACTIONS(247), 1, + STATE(7788), 1, + sym_param_cmd, + [232463] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6889), 1, + STATE(7071), 1, sym_comment, - ACTIONS(6007), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [231958] = 3, - ACTIONS(247), 1, + ACTIONS(10336), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [232475] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6890), 1, + STATE(7072), 1, sym_comment, - ACTIONS(10936), 3, + ACTIONS(11270), 3, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - [231970] = 5, + [232487] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10938), 1, + ACTIONS(11272), 1, anon_sym_RBRACK, - STATE(6499), 1, + STATE(6286), 1, aux_sym__multiple_types_repeat1, - STATE(6891), 1, + STATE(7073), 1, sym_comment, - [231986] = 5, + [232503] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10940), 1, + ACTIONS(11274), 1, anon_sym_RBRACK, - STATE(6500), 1, + STATE(6287), 1, aux_sym__multiple_types_repeat1, - STATE(6892), 1, - sym_comment, - [232002] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6893), 1, + STATE(7074), 1, sym_comment, - ACTIONS(10942), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [232014] = 5, + [232519] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10944), 1, + ACTIONS(11276), 1, anon_sym_RBRACK, - STATE(6501), 1, + STATE(6288), 1, aux_sym__multiple_types_repeat1, - STATE(6894), 1, + STATE(7075), 1, sym_comment, - [232030] = 3, - ACTIONS(247), 1, + [232535] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6895), 1, + ACTIONS(1769), 1, + aux_sym_unquoted_token2, + STATE(7076), 1, sym_comment, - ACTIONS(10946), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [232042] = 3, - ACTIONS(247), 1, + ACTIONS(1771), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [232549] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6896), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(11278), 1, + anon_sym_RBRACK, + STATE(6289), 1, + aux_sym__multiple_types_repeat1, + STATE(7077), 1, + sym_comment, + [232565] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(7078), 1, sym_comment, - ACTIONS(10395), 3, + ACTIONS(10224), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [232054] = 3, - ACTIONS(247), 1, + [232577] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6897), 1, + STATE(7079), 1, sym_comment, - ACTIONS(8633), 3, + ACTIONS(10226), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [232066] = 5, - ACTIONS(247), 1, + [232589] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10555), 1, - sym_hex_digit, - ACTIONS(10948), 1, - anon_sym_RBRACK, - STATE(6898), 1, + ACTIONS(2518), 1, + sym__entry_separator, + STATE(7080), 1, sym_comment, - STATE(6905), 1, - aux_sym_val_binary_repeat1, - [232082] = 4, + ACTIONS(2516), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [232603] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10950), 1, - anon_sym_DQUOTE, - STATE(6899), 1, + ACTIONS(4945), 1, + sym__space, + ACTIONS(4947), 1, + sym__newline, + ACTIONS(11280), 1, + anon_sym_EQ2, + STATE(7081), 1, sym_comment, - ACTIONS(10952), 2, - sym__escaped_str_content, - sym_escape_sequence, - [232096] = 3, - ACTIONS(247), 1, + [232619] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6900), 1, + STATE(7082), 1, sym_comment, - ACTIONS(8649), 3, + ACTIONS(10226), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [232108] = 4, + [232631] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10954), 1, - sym__table_head_separator, - STATE(6901), 1, + ACTIONS(6012), 1, + sym__entry_separator, + ACTIONS(6049), 1, + anon_sym_RBRACE, + STATE(2949), 1, + aux_sym__multiple_types_repeat1, + STATE(7083), 1, sym_comment, - ACTIONS(1070), 2, + [232647] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6069), 1, anon_sym_RBRACK, + STATE(7084), 1, + sym_comment, + ACTIONS(6071), 2, + anon_sym_LPAREN2, sym__entry_separator, - [232122] = 4, + [232661] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10956), 1, + ACTIONS(11282), 1, anon_sym_LPAREN, - STATE(6902), 1, + STATE(7085), 1, sym_comment, - ACTIONS(10958), 2, + ACTIONS(11284), 2, sym_unescaped_interpolated_content, anon_sym_SQUOTE, - [232136] = 4, - ACTIONS(247), 1, + [232675] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(10962), 1, - anon_sym_COMMA, - STATE(6903), 1, + STATE(7086), 1, sym_comment, - ACTIONS(10960), 2, - anon_sym_RBRACK, - sym_hex_digit, - [232150] = 5, + ACTIONS(10260), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [232687] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(7087), 1, + sym_comment, + ACTIONS(10232), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [232699] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5547), 1, + ACTIONS(2420), 1, sym__entry_separator, - ACTIONS(10964), 1, + STATE(7088), 1, + sym_comment, + ACTIONS(2418), 2, anon_sym_RBRACK, - STATE(2615), 1, - aux_sym__multiple_types_repeat1, - STATE(6904), 1, + anon_sym_RBRACE, + [232713] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6257), 1, + anon_sym_AT, + ACTIONS(7759), 1, + anon_sym_EQ, + STATE(5079), 1, + sym_param_cmd, + STATE(7089), 1, sym_comment, - [232166] = 5, - ACTIONS(247), 1, + [232729] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(10555), 1, + ACTIONS(10831), 1, sym_hex_digit, - ACTIONS(10966), 1, + ACTIONS(11286), 1, anon_sym_RBRACK, - STATE(6905), 1, - sym_comment, - STATE(6970), 1, + STATE(6798), 1, aux_sym_val_binary_repeat1, - [232182] = 3, - ACTIONS(247), 1, + STATE(7090), 1, + sym_comment, + [232745] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6906), 1, + STATE(7091), 1, sym_comment, - ACTIONS(9856), 3, + ACTIONS(10356), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [232194] = 3, - ACTIONS(247), 1, + [232757] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6907), 1, + ACTIONS(6079), 1, + anon_sym_RBRACK, + STATE(7092), 1, + sym_comment, + ACTIONS(6081), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [232771] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6257), 1, + anon_sym_AT, + ACTIONS(7759), 1, + anon_sym_EQ, + STATE(5081), 1, + sym_param_cmd, + STATE(7093), 1, + sym_comment, + [232787] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7753), 1, + sym__entry_separator, + ACTIONS(7757), 1, + anon_sym_RBRACK, + ACTIONS(11288), 1, + anon_sym_LT, + STATE(7094), 1, + sym_comment, + [232803] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5518), 1, + anon_sym_LPAREN2, + ACTIONS(5528), 1, + aux_sym__unquoted_in_list_token4, + STATE(7095), 1, + sym_comment, + STATE(7447), 1, + sym__expr_parenthesized_immediate, + [232819] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6012), 1, + sym__entry_separator, + ACTIONS(11290), 1, + anon_sym_RBRACE, + STATE(2922), 1, + aux_sym__multiple_types_repeat1, + STATE(7096), 1, + sym_comment, + [232835] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(7097), 1, sym_comment, - ACTIONS(9858), 3, + ACTIONS(10264), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [232206] = 3, - ACTIONS(247), 1, + [232847] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6908), 1, + STATE(7098), 1, sym_comment, - ACTIONS(9858), 3, + ACTIONS(8782), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [232218] = 3, - ACTIONS(247), 1, + [232859] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6909), 1, + STATE(7099), 1, + sym_comment, + ACTIONS(10064), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [232871] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1826), 1, + aux_sym_unquoted_token2, + STATE(7100), 1, sym_comment, - ACTIONS(10078), 3, + ACTIONS(1828), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [232885] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6257), 1, + anon_sym_AT, + ACTIONS(7895), 1, + anon_sym_EQ, + STATE(5200), 1, + sym_param_cmd, + STATE(7101), 1, + sym_comment, + [232901] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(7102), 1, + sym_comment, + ACTIONS(8834), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [232230] = 3, + [232913] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6910), 1, + ACTIONS(1628), 1, + anon_sym_RBRACE, + ACTIONS(1640), 1, + sym__entry_separator, + ACTIONS(8696), 1, + aux_sym__unquoted_in_record_token2, + STATE(7103), 1, sym_comment, - ACTIONS(2388), 3, - anon_sym_RBRACK, + [232929] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7753), 1, sym__entry_separator, - sym__table_head_separator, - [232242] = 5, + ACTIONS(7757), 1, + anon_sym_RBRACK, + ACTIONS(11292), 1, + anon_sym_LT, + STATE(7104), 1, + sym_comment, + [232945] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2336), 1, + ACTIONS(6012), 1, sym__entry_separator, - ACTIONS(2354), 1, + ACTIONS(6051), 1, anon_sym_RBRACE, - STATE(509), 1, + STATE(2950), 1, aux_sym__multiple_types_repeat1, - STATE(6911), 1, + STATE(7105), 1, sym_comment, - [232258] = 3, - ACTIONS(247), 1, + [232961] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6912), 1, + ACTIONS(2537), 1, + sym__entry_separator, + STATE(7106), 1, sym_comment, - ACTIONS(10078), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [232270] = 4, - ACTIONS(247), 1, + ACTIONS(2535), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [232975] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(10968), 1, + ACTIONS(11294), 1, aux_sym_cmd_identifier_token41, - STATE(6913), 1, + STATE(7107), 1, sym_comment, - ACTIONS(10970), 2, + ACTIONS(11296), 2, sym_filesize_unit, sym_duration_unit, - [232284] = 3, - ACTIONS(247), 1, + [232989] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6914), 1, + ACTIONS(1852), 1, + aux_sym_unquoted_token2, + STATE(7108), 1, sym_comment, - ACTIONS(6007), 3, + ACTIONS(2279), 2, anon_sym_PIPE, - anon_sym_if, anon_sym_EQ_GT, - [232296] = 3, - ACTIONS(247), 1, + [233003] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6915), 1, - sym_comment, - ACTIONS(9860), 3, - ts_builtin_sym_end, + ACTIONS(2293), 1, sym__newline, - anon_sym_SEMI, - [232308] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6916), 1, + ACTIONS(2297), 1, + sym__space, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + STATE(7109), 1, sym_comment, - ACTIONS(1048), 3, - anon_sym_DOT, - aux_sym_record_entry_token1, - sym__table_head_separator, - [232320] = 5, - ACTIONS(247), 1, + [233019] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(10555), 1, + ACTIONS(10831), 1, sym_hex_digit, - ACTIONS(10972), 1, + ACTIONS(11298), 1, anon_sym_RBRACK, - STATE(6917), 1, + STATE(7110), 1, sym_comment, - STATE(6922), 1, + STATE(7117), 1, aux_sym_val_binary_repeat1, - [232336] = 4, - ACTIONS(247), 1, + [233035] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1667), 1, + ACTIONS(1852), 1, aux_sym_unquoted_token2, - STATE(6918), 1, + STATE(7111), 1, sym_comment, - ACTIONS(1669), 2, + ACTIONS(1850), 2, anon_sym_PIPE, anon_sym_EQ_GT, - [232350] = 5, - ACTIONS(247), 1, + [233049] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4808), 1, - anon_sym_in, - ACTIONS(10974), 1, - sym_long_flag_identifier, - ACTIONS(10976), 1, - anon_sym_EQ2, - STATE(6919), 1, + ACTIONS(1630), 1, + anon_sym_LPAREN2, + ACTIONS(1642), 1, + aux_sym__unquoted_in_record_token4, + STATE(7112), 1, sym_comment, - [232366] = 5, - ACTIONS(3), 1, + STATE(7569), 1, + sym__expr_parenthesized_immediate, + [233065] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5567), 1, - sym__entry_separator, - ACTIONS(10978), 1, - anon_sym_RBRACK, - STATE(6598), 1, - aux_sym__multiple_types_repeat1, - STATE(6920), 1, + STATE(7113), 1, + sym_comment, + ACTIONS(10815), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [233077] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(9723), 1, + anon_sym_PIPE, + ACTIONS(11300), 1, + anon_sym_EQ_GT, + STATE(7023), 1, + aux_sym_match_pattern_repeat1, + STATE(7114), 1, + sym_comment, + [233093] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(11302), 1, + anon_sym_EQ2, + STATE(7115), 1, sym_comment, - [232382] = 5, + ACTIONS(4945), 2, + sym_identifier, + anon_sym_DOLLAR, + [233107] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3978), 1, + ACTIONS(4433), 1, anon_sym_LPAREN2, - ACTIONS(4742), 1, + ACTIONS(4842), 1, aux_sym_unquoted_token4, - STATE(6921), 1, + STATE(7116), 1, sym_comment, - STATE(7224), 1, + STATE(7439), 1, sym__expr_parenthesized_immediate, - [232398] = 5, - ACTIONS(247), 1, + [233123] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(10555), 1, + ACTIONS(10831), 1, sym_hex_digit, - ACTIONS(10980), 1, + ACTIONS(11304), 1, anon_sym_RBRACK, - STATE(6922), 1, - sym_comment, - STATE(6970), 1, + STATE(6903), 1, aux_sym_val_binary_repeat1, - [232414] = 5, + STATE(7117), 1, + sym_comment, + [233139] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2229), 1, - sym__newline, - ACTIONS(2233), 1, - sym__space, - ACTIONS(2235), 1, - aux_sym_unquoted_token4, - STATE(6923), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(11306), 1, + anon_sym_RBRACK, + STATE(6316), 1, + aux_sym__multiple_types_repeat1, + STATE(7118), 1, sym_comment, - [232430] = 3, - ACTIONS(3), 1, + [233155] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6924), 1, + STATE(7119), 1, sym_comment, - ACTIONS(1832), 3, + ACTIONS(10781), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [233167] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(11308), 1, anon_sym_RBRACK, + STATE(6234), 1, + aux_sym__multiple_types_repeat1, + STATE(7120), 1, + sym_comment, + [233183] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6494), 1, sym__entry_separator, - sym__table_head_separator, - [232442] = 5, + ACTIONS(11310), 1, + anon_sym_RBRACK, + STATE(6235), 1, + aux_sym__multiple_types_repeat1, + STATE(7121), 1, + sym_comment, + [233199] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10982), 1, + ACTIONS(11312), 1, anon_sym_RBRACK, - STATE(6551), 1, + STATE(6317), 1, aux_sym__multiple_types_repeat1, - STATE(6925), 1, + STATE(7122), 1, sym_comment, - [232458] = 4, + [233215] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10984), 1, - sym__table_head_separator, - STATE(6926), 1, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + ACTIONS(2303), 1, + sym__newline, + ACTIONS(2305), 1, + sym__space, + STATE(7123), 1, sym_comment, - ACTIONS(1070), 2, - anon_sym_RBRACK, - sym__entry_separator, - [232472] = 5, - ACTIONS(247), 1, + [233231] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4810), 1, - anon_sym_LBRACE, - ACTIONS(10986), 1, - sym_long_flag_identifier, - ACTIONS(10988), 1, - anon_sym_EQ2, - STATE(6927), 1, + STATE(7124), 1, sym_comment, - [232488] = 3, - ACTIONS(247), 1, + ACTIONS(11314), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [233243] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6928), 1, + STATE(7125), 1, sym_comment, - ACTIONS(10310), 3, - ts_builtin_sym_end, + ACTIONS(11316), 3, sym__newline, anon_sym_SEMI, - [232500] = 5, - ACTIONS(247), 1, + anon_sym_RPAREN, + [233255] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3231), 1, - aux_sym_record_entry_token1, - ACTIONS(6055), 1, - anon_sym_LBRACE, - STATE(6534), 1, - sym_block, - STATE(6929), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(11318), 1, + anon_sym_RBRACK, + STATE(6318), 1, + aux_sym__multiple_types_repeat1, + STATE(7126), 1, sym_comment, - [232516] = 4, - ACTIONS(247), 1, + [233271] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1659), 1, - aux_sym_unquoted_token2, - STATE(6930), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(11320), 1, + anon_sym_RBRACK, + STATE(6319), 1, + aux_sym__multiple_types_repeat1, + STATE(7127), 1, sym_comment, - ACTIONS(1661), 2, - anon_sym_LBRACE, - anon_sym_LPAREN2, - [232530] = 3, - ACTIONS(247), 1, + [233287] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6931), 1, + STATE(303), 1, + aux_sym__block_body_repeat1, + STATE(7128), 1, sym_comment, - ACTIONS(10334), 3, - ts_builtin_sym_end, + ACTIONS(147), 2, sym__newline, anon_sym_SEMI, - [232542] = 5, + [233301] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, - sym__entry_separator, - ACTIONS(10990), 1, + ACTIONS(11322), 1, + sym__table_head_separator, + STATE(7129), 1, + sym_comment, + ACTIONS(1090), 2, anon_sym_RBRACK, - STATE(6553), 1, - aux_sym__multiple_types_repeat1, - STATE(6932), 1, + sym__entry_separator, + [233315] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(7130), 1, sym_comment, - [232558] = 5, + ACTIONS(10720), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [233327] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10992), 1, + ACTIONS(11324), 1, anon_sym_RBRACK, - STATE(6554), 1, + STATE(6236), 1, aux_sym__multiple_types_repeat1, - STATE(6933), 1, + STATE(7131), 1, sym_comment, - [232574] = 5, - ACTIONS(247), 1, + [233343] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3231), 1, + ACTIONS(3294), 1, aux_sym_record_entry_token1, - ACTIONS(6055), 1, + ACTIONS(6211), 1, anon_sym_LBRACE, - STATE(6609), 1, + STATE(6313), 1, sym_block, - STATE(6934), 1, + STATE(7132), 1, sym_comment, - [232590] = 5, - ACTIONS(247), 1, + [233359] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10555), 1, - sym_hex_digit, - ACTIONS(10994), 1, - anon_sym_RBRACK, - STATE(6619), 1, - aux_sym_val_binary_repeat1, - STATE(6935), 1, + ACTIONS(6010), 1, + anon_sym_RBRACE, + ACTIONS(6012), 1, + sym__entry_separator, + STATE(2910), 1, + aux_sym__multiple_types_repeat1, + STATE(7133), 1, sym_comment, - [232606] = 5, + [233375] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2237), 1, - sym__newline, - ACTIONS(2241), 1, - sym__space, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - STATE(6936), 1, + ACTIONS(6012), 1, + sym__entry_separator, + ACTIONS(6016), 1, + anon_sym_RBRACE, + STATE(2911), 1, + aux_sym__multiple_types_repeat1, + STATE(7134), 1, + sym_comment, + [233391] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(3294), 1, + aux_sym_record_entry_token1, + ACTIONS(6211), 1, + anon_sym_LBRACE, + STATE(6352), 1, + sym_block, + STATE(7135), 1, sym_comment, - [232622] = 5, + [233407] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - ACTIONS(2245), 1, - sym__newline, - ACTIONS(2247), 1, - sym__space, - STATE(6937), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(11326), 1, + anon_sym_RBRACK, + STATE(6320), 1, + aux_sym__multiple_types_repeat1, + STATE(7136), 1, sym_comment, - [232638] = 5, - ACTIONS(247), 1, + [233423] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3231), 1, + ACTIONS(3294), 1, aux_sym_record_entry_token1, - ACTIONS(6055), 1, + ACTIONS(6211), 1, anon_sym_LBRACE, - STATE(4687), 1, + STATE(4862), 1, sym_block, - STATE(6938), 1, + STATE(7137), 1, sym_comment, - [232654] = 5, - ACTIONS(247), 1, + [233439] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6188), 1, + ACTIONS(6257), 1, anon_sym_AT, - ACTIONS(7733), 1, - anon_sym_EQ, - STATE(5069), 1, - sym_param_cmd, - STATE(6939), 1, + ACTIONS(11328), 1, + anon_sym_GT, + STATE(7138), 1, sym_comment, - [232670] = 5, + STATE(7681), 1, + sym_param_cmd, + [233455] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6361), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10996), 1, + ACTIONS(11330), 1, anon_sym_RBRACK, - STATE(3412), 1, + STATE(3426), 1, aux_sym__multiple_types_repeat1, - STATE(6940), 1, + STATE(7139), 1, sym_comment, - [232686] = 3, - ACTIONS(247), 1, + [233471] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6941), 1, + STATE(7140), 1, sym_comment, - ACTIONS(10334), 3, + ACTIONS(10817), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [232698] = 3, - ACTIONS(247), 1, + [233483] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6942), 1, + ACTIONS(5672), 1, + sym__entry_separator, + ACTIONS(11332), 1, + anon_sym_RBRACK, + STATE(2636), 1, + aux_sym__multiple_types_repeat1, + STATE(7141), 1, sym_comment, - ACTIONS(10138), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [232710] = 3, - ACTIONS(247), 1, + [233499] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6943), 1, + ACTIONS(2563), 1, + sym__entry_separator, + STATE(7142), 1, sym_comment, - ACTIONS(9968), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [232722] = 3, - ACTIONS(247), 1, + ACTIONS(2561), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [233513] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6944), 1, + STATE(7143), 1, sym_comment, - ACTIONS(9970), 3, + ACTIONS(10018), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [232734] = 3, - ACTIONS(247), 1, + [233525] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6945), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(11334), 1, + anon_sym_RBRACK, + STATE(6682), 1, + aux_sym__multiple_types_repeat1, + STATE(7144), 1, sym_comment, - ACTIONS(6015), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [232746] = 5, + [233541] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(10998), 1, + ACTIONS(11336), 1, anon_sym_RBRACK, - STATE(6556), 1, + STATE(6321), 1, aux_sym__multiple_types_repeat1, - STATE(6946), 1, + STATE(7145), 1, sym_comment, - [232762] = 5, - ACTIONS(247), 1, + [233557] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6188), 1, - anon_sym_AT, - ACTIONS(7733), 1, - anon_sym_EQ, - STATE(5070), 1, - sym_param_cmd, - STATE(6947), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(11338), 1, + anon_sym_RBRACK, + STATE(6322), 1, + aux_sym__multiple_types_repeat1, + STATE(7146), 1, sym_comment, - [232778] = 3, - ACTIONS(247), 1, + [233573] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6948), 1, + STATE(7147), 1, sym_comment, - ACTIONS(11000), 3, + ACTIONS(10024), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [232790] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(6949), 1, - sym_comment, - ACTIONS(1052), 3, - anon_sym_DOT, - aux_sym_record_entry_token1, - sym__table_head_separator, - [232802] = 4, + [233585] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11002), 1, + ACTIONS(11340), 1, sym__table_head_separator, - STATE(6950), 1, + STATE(7148), 1, sym_comment, - ACTIONS(1070), 2, + ACTIONS(1090), 2, anon_sym_RBRACK, sym__entry_separator, - [232816] = 3, - ACTIONS(247), 1, + [233599] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6951), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(11342), 1, + anon_sym_RBRACK, + STATE(6684), 1, + aux_sym__multiple_types_repeat1, + STATE(7149), 1, sym_comment, - ACTIONS(9972), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [232828] = 5, + [233615] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(11004), 1, + ACTIONS(11344), 1, anon_sym_RBRACK, - STATE(6557), 1, + STATE(6686), 1, aux_sym__multiple_types_repeat1, - STATE(6952), 1, + STATE(7150), 1, sym_comment, - [232844] = 5, + [233631] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(7151), 1, + sym_comment, + ACTIONS(10028), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [233643] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(11006), 1, + ACTIONS(11346), 1, anon_sym_RBRACK, - STATE(6558), 1, + STATE(6323), 1, aux_sym__multiple_types_repeat1, - STATE(6953), 1, + STATE(7152), 1, sym_comment, - [232860] = 5, - ACTIONS(3), 1, + [233659] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - ACTIONS(4169), 1, - aux_sym_unquoted_token4, - STATE(6954), 1, + STATE(7153), 1, sym_comment, - STATE(7299), 1, - sym__expr_parenthesized_immediate, - [232876] = 5, + ACTIONS(10819), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [233671] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2231), 1, + ACTIONS(2283), 1, anon_sym_LPAREN2, - ACTIONS(2235), 1, + ACTIONS(2287), 1, aux_sym_unquoted_token4, - ACTIONS(11008), 1, + ACTIONS(11348), 1, sym__space, - STATE(6955), 1, + STATE(7154), 1, sym_comment, - [232892] = 3, - ACTIONS(247), 1, + [233687] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6956), 1, + STATE(7155), 1, sym_comment, - ACTIONS(1056), 3, - anon_sym_DOT, - aux_sym_record_entry_token1, - sym__table_head_separator, - [232904] = 3, - ACTIONS(247), 1, + ACTIONS(10390), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [233699] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6957), 1, + ACTIONS(9725), 1, + anon_sym_if, + ACTIONS(11350), 1, + anon_sym_EQ_GT, + STATE(7156), 1, sym_comment, - ACTIONS(10346), 3, + STATE(7818), 1, + sym_match_guard, + [233715] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(6973), 1, + sym_val_list, + STATE(7157), 1, + sym_comment, + STATE(7277), 1, + aux_sym_val_table_repeat1, + [233731] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(7158), 1, + sym_comment, + ACTIONS(10044), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [232916] = 5, - ACTIONS(3), 1, + [233743] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5567), 1, - sym__entry_separator, - ACTIONS(11010), 1, - anon_sym_RBRACK, - STATE(6560), 1, - aux_sym__multiple_types_repeat1, - STATE(6958), 1, + STATE(7159), 1, sym_comment, - [232932] = 5, - ACTIONS(3), 1, + ACTIONS(10724), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [233755] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1560), 1, - anon_sym_RBRACE, - ACTIONS(1572), 1, - sym__entry_separator, - ACTIONS(1574), 1, - aux_sym__unquoted_in_record_token2, - STATE(6959), 1, + STATE(7160), 1, sym_comment, - [232948] = 5, - ACTIONS(3), 1, + ACTIONS(10821), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [233767] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5441), 1, - anon_sym_LPAREN2, - ACTIONS(5451), 1, - aux_sym__unquoted_in_list_token4, - STATE(6960), 1, + STATE(7161), 1, sym_comment, - STATE(7216), 1, - sym__expr_parenthesized_immediate, - [232964] = 3, - ACTIONS(247), 1, + ACTIONS(10390), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [233779] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6961), 1, + STATE(7162), 1, + sym_comment, + ACTIONS(10728), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [233791] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(7163), 1, + sym_comment, + ACTIONS(10314), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [233803] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(7164), 1, sym_comment, - ACTIONS(10042), 3, + ACTIONS(10314), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [232976] = 5, - ACTIONS(247), 1, + [233815] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6875), 1, + STATE(7144), 1, sym_val_list, - STATE(6962), 1, + STATE(7165), 1, sym_comment, - STATE(7180), 1, + STATE(7277), 1, + aux_sym_val_table_repeat1, + [233831] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(7166), 1, + sym_comment, + ACTIONS(10562), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [233843] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7150), 1, + sym_val_list, + STATE(7167), 1, + sym_comment, + STATE(7277), 1, aux_sym_val_table_repeat1, - [232992] = 5, + [233859] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, - sym__entry_separator, - ACTIONS(9640), 1, - anon_sym_LBRACK, - STATE(2617), 1, - aux_sym__multiple_types_repeat1, - STATE(6963), 1, + ACTIONS(5672), 1, + sym__entry_separator, + ACTIONS(11352), 1, + anon_sym_RBRACK, + STATE(2656), 1, + aux_sym__multiple_types_repeat1, + STATE(7168), 1, + sym_comment, + [233875] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7169), 1, + sym_comment, + STATE(7195), 1, + sym_val_list, + STATE(7277), 1, + aux_sym_val_table_repeat1, + [233891] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6257), 1, + anon_sym_AT, + ACTIONS(7765), 1, + anon_sym_EQ, + STATE(5075), 1, + sym_param_cmd, + STATE(7170), 1, sym_comment, - [233008] = 5, - ACTIONS(247), 1, + [233907] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, - anon_sym_LBRACK, - STATE(6662), 1, - sym_val_list, - STATE(6964), 1, + ACTIONS(1558), 1, + aux_sym_unquoted_token2, + STATE(7171), 1, sym_comment, - STATE(7180), 1, - aux_sym_val_table_repeat1, - [233024] = 3, - ACTIONS(247), 1, + ACTIONS(2339), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [233921] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6965), 1, + STATE(7172), 1, sym_comment, - ACTIONS(10212), 3, - ts_builtin_sym_end, + ACTIONS(11354), 3, sym__newline, anon_sym_SEMI, - [233036] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(8900), 1, - anon_sym_LBRACK, - STATE(6665), 1, - sym_val_list, - STATE(6966), 1, - sym_comment, - STATE(7180), 1, - aux_sym_val_table_repeat1, - [233052] = 5, + anon_sym_RPAREN, + [233933] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(11012), 1, + ACTIONS(11356), 1, anon_sym_RBRACK, - STATE(6213), 1, + STATE(6372), 1, aux_sym__multiple_types_repeat1, - STATE(6967), 1, + STATE(7173), 1, sym_comment, - [233068] = 5, + [233949] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6361), 1, + ACTIONS(5672), 1, sym__entry_separator, - ACTIONS(11014), 1, + ACTIONS(11358), 1, anon_sym_RBRACK, - STATE(3399), 1, + STATE(2662), 1, aux_sym__multiple_types_repeat1, - STATE(6968), 1, + STATE(7174), 1, sym_comment, - [233084] = 5, - ACTIONS(247), 1, + [233965] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, - anon_sym_LBRACK, - STATE(6769), 1, - sym_val_list, - STATE(6969), 1, + STATE(7175), 1, sym_comment, - STATE(7180), 1, - aux_sym_val_table_repeat1, - [233100] = 4, - ACTIONS(247), 1, + ACTIONS(10823), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [233977] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11016), 1, - anon_sym_RBRACK, - ACTIONS(11018), 1, - sym_hex_digit, - STATE(6970), 2, + ACTIONS(1834), 1, + anon_sym_SEMI, + ACTIONS(3766), 1, + sym__newline, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(7176), 1, sym_comment, - aux_sym_val_binary_repeat1, - [233114] = 4, - ACTIONS(247), 1, + [233993] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11021), 1, - aux_sym_cmd_identifier_token41, - STATE(6971), 1, + STATE(7177), 1, sym_comment, - ACTIONS(11023), 2, - sym_filesize_unit, - sym_duration_unit, - [233128] = 5, + ACTIONS(10825), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [234005] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2291), 1, + sym__space, + STATE(7178), 1, + sym_comment, + ACTIONS(2289), 2, + sym__newline, + aux_sym_unquoted_token4, + [234019] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(2522), 1, sym__entry_separator, - ACTIONS(11025), 1, - anon_sym_RBRACK, - STATE(6582), 1, - aux_sym__multiple_types_repeat1, - STATE(6972), 1, + STATE(7179), 1, sym_comment, - [233144] = 3, - ACTIONS(247), 1, + ACTIONS(2520), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [234033] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6973), 1, + STATE(7180), 1, sym_comment, - ACTIONS(10419), 3, - ts_builtin_sym_end, + ACTIONS(11360), 3, sym__newline, anon_sym_SEMI, - [233156] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11027), 1, - aux_sym_cmd_identifier_token41, - STATE(6974), 1, - sym_comment, - ACTIONS(11029), 2, - sym_filesize_unit, - sym_duration_unit, - [233170] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + [234045] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(9786), 1, - anon_sym_LPAREN, - STATE(6975), 1, + ACTIONS(10831), 1, + sym_hex_digit, + ACTIONS(11362), 1, + anon_sym_RBRACK, + STATE(6924), 1, + aux_sym_val_binary_repeat1, + STATE(7181), 1, sym_comment, - ACTIONS(9788), 2, - sym_unescaped_interpolated_content, - anon_sym_SQUOTE, - [233184] = 3, - ACTIONS(247), 1, + [234061] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6976), 1, + STATE(7182), 1, sym_comment, - ACTIONS(10096), 3, + ACTIONS(10046), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [233196] = 5, - ACTIONS(247), 1, + [234073] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8900), 1, - anon_sym_LBRACK, - STATE(6977), 1, + ACTIONS(2287), 1, + aux_sym_unquoted_token4, + STATE(7183), 1, sym_comment, - STATE(7178), 1, - sym_val_list, - STATE(7180), 1, - aux_sym_val_table_repeat1, - [233212] = 5, - ACTIONS(3), 1, + ACTIONS(2281), 2, + sym_identifier, + anon_sym_DOLLAR, + [234087] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5441), 1, - anon_sym_LPAREN2, - ACTIONS(6965), 1, - aux_sym__unquoted_in_list_token4, - STATE(6978), 1, + ACTIONS(1715), 1, + aux_sym_unquoted_token2, + STATE(7184), 1, sym_comment, - STATE(7361), 1, - sym__expr_parenthesized_immediate, - [233228] = 3, - ACTIONS(247), 1, + ACTIONS(1717), 2, + anon_sym_LBRACE, + anon_sym_LPAREN2, + [234101] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6979), 1, + STATE(7185), 1, sym_comment, - ACTIONS(10220), 3, + ACTIONS(9974), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [233240] = 3, - ACTIONS(247), 1, + [234113] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6980), 1, + STATE(7186), 1, sym_comment, - ACTIONS(10306), 3, + ACTIONS(10046), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [233252] = 3, - ACTIONS(247), 1, + [234125] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6981), 1, + ACTIONS(6012), 1, + sym__entry_separator, + ACTIONS(6020), 1, + anon_sym_RBRACE, + STATE(2912), 1, + aux_sym__multiple_types_repeat1, + STATE(7187), 1, sym_comment, - ACTIONS(10306), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [233264] = 3, - ACTIONS(247), 1, + [234141] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6982), 1, + STATE(7188), 1, sym_comment, - ACTIONS(9990), 3, + ACTIONS(10068), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [233276] = 3, - ACTIONS(247), 1, + [234153] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6983), 1, + ACTIONS(6012), 1, + sym__entry_separator, + ACTIONS(6022), 1, + anon_sym_RBRACE, + STATE(2913), 1, + aux_sym__multiple_types_repeat1, + STATE(7189), 1, sym_comment, - ACTIONS(9990), 3, + [234169] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(7190), 1, + sym_comment, + ACTIONS(10716), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [233288] = 5, - ACTIONS(247), 1, + [234181] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(10555), 1, - sym_hex_digit, - ACTIONS(11031), 1, - anon_sym_RBRACK, - STATE(6984), 1, + ACTIONS(5027), 1, + aux_sym_cmd_identifier_token41, + STATE(7191), 1, sym_comment, - STATE(6991), 1, - aux_sym_val_binary_repeat1, - [233304] = 3, - ACTIONS(247), 1, + ACTIONS(11364), 2, + sym_filesize_unit, + sym_duration_unit, + [234195] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6985), 1, + ACTIONS(11366), 1, + anon_sym_EQ2, + STATE(7192), 1, sym_comment, - ACTIONS(10260), 3, + ACTIONS(4989), 2, + sym_identifier, + anon_sym_DOLLAR, + [234209] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(7193), 1, + sym_comment, + ACTIONS(9976), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [233316] = 5, - ACTIONS(247), 1, + [234221] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4781), 1, - anon_sym_in, - ACTIONS(11033), 1, - anon_sym_EQ2, - ACTIONS(11035), 1, - sym_short_flag_identifier, - STATE(6986), 1, + ACTIONS(2240), 1, + sym__entry_separator, + STATE(7194), 1, sym_comment, - [233332] = 5, - ACTIONS(247), 1, + ACTIONS(2234), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [234235] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10555), 1, - sym_hex_digit, - ACTIONS(11037), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(11368), 1, anon_sym_RBRACK, - STATE(6716), 1, - aux_sym_val_binary_repeat1, - STATE(6987), 1, + STATE(6706), 1, + aux_sym__multiple_types_repeat1, + STATE(7195), 1, sym_comment, - [233348] = 3, - ACTIONS(247), 1, + [234251] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6988), 1, + STATE(7196), 1, sym_comment, - ACTIONS(9752), 3, + ACTIONS(10098), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [233360] = 3, - ACTIONS(247), 1, + [234263] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(6989), 1, + ACTIONS(10831), 1, + sym_hex_digit, + ACTIONS(11370), 1, + anon_sym_RBRACK, + STATE(7197), 1, + sym_comment, + STATE(7216), 1, + aux_sym_val_binary_repeat1, + [234279] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(7198), 1, sym_comment, - ACTIONS(10104), 3, + ACTIONS(10100), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [233372] = 5, + [234291] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3978), 1, + ACTIONS(2372), 1, + anon_sym_RBRACE, + STATE(7199), 1, + sym_comment, + ACTIONS(2374), 2, anon_sym_LPAREN2, - ACTIONS(4614), 1, - aux_sym_unquoted_token4, - STATE(6990), 1, + sym__entry_separator, + [234305] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(7200), 1, sym_comment, - STATE(7282), 1, - sym__expr_parenthesized_immediate, - [233388] = 5, - ACTIONS(247), 1, + ACTIONS(10100), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [234317] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(10555), 1, - sym_hex_digit, - ACTIONS(11039), 1, - anon_sym_RBRACK, - STATE(6970), 1, - aux_sym_val_binary_repeat1, - STATE(6991), 1, + ACTIONS(2252), 1, + aux_sym_unquoted_token2, + STATE(7201), 1, sym_comment, - [233404] = 5, - ACTIONS(247), 1, + ACTIONS(2250), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [234331] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1813), 1, - anon_sym_SEMI, - ACTIONS(3705), 1, - sym__newline, - STATE(749), 1, - aux_sym_shebang_repeat1, - STATE(6992), 1, + ACTIONS(2275), 1, + aux_sym_unquoted_token4, + STATE(7202), 1, sym_comment, - [233420] = 5, + ACTIONS(1090), 2, + sym_identifier, + anon_sym_DOLLAR, + [234345] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(11041), 1, + ACTIONS(11372), 1, anon_sym_RBRACK, - STATE(6511), 1, + STATE(6694), 1, aux_sym__multiple_types_repeat1, - STATE(6993), 1, + STATE(7203), 1, sym_comment, - [233436] = 5, + [234361] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(11043), 1, + ACTIONS(11374), 1, anon_sym_RBRACK, - STATE(6577), 1, + STATE(6695), 1, aux_sym__multiple_types_repeat1, - STATE(6994), 1, + STATE(7204), 1, sym_comment, - [233452] = 5, + [234377] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(11045), 1, + ACTIONS(11376), 1, anon_sym_RBRACK, - STATE(6512), 1, + STATE(6696), 1, aux_sym__multiple_types_repeat1, - STATE(6995), 1, + STATE(7205), 1, sym_comment, - [233468] = 5, + [234393] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(11047), 1, + ACTIONS(11378), 1, anon_sym_RBRACK, - STATE(6513), 1, + STATE(6697), 1, aux_sym__multiple_types_repeat1, - STATE(6996), 1, + STATE(7206), 1, + sym_comment, + [234409] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(4937), 1, + anon_sym_in, + ACTIONS(11380), 1, + sym_long_flag_identifier, + ACTIONS(11382), 1, + anon_sym_EQ2, + STATE(7207), 1, sym_comment, - [233484] = 5, + [234425] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(11049), 1, + ACTIONS(11384), 1, anon_sym_RBRACK, - STATE(6514), 1, + STATE(6698), 1, aux_sym__multiple_types_repeat1, - STATE(6997), 1, + STATE(7208), 1, sym_comment, - [233500] = 5, + [234441] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(11051), 1, + ACTIONS(11386), 1, anon_sym_RBRACK, - STATE(6515), 1, + STATE(6699), 1, aux_sym__multiple_types_repeat1, - STATE(6998), 1, + STATE(7209), 1, sym_comment, - [233516] = 5, + [234457] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(11053), 1, + ACTIONS(11388), 1, anon_sym_RBRACK, - STATE(6516), 1, + STATE(6700), 1, aux_sym__multiple_types_repeat1, - STATE(6999), 1, + STATE(7210), 1, sym_comment, - [233532] = 5, + [234473] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(11055), 1, + ACTIONS(11390), 1, anon_sym_RBRACK, - STATE(6517), 1, + STATE(6701), 1, aux_sym__multiple_types_repeat1, - STATE(7000), 1, + STATE(7211), 1, sym_comment, - [233548] = 4, - ACTIONS(247), 1, + [234489] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4946), 1, - aux_sym_cmd_identifier_token41, - STATE(7001), 1, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + ACTIONS(4770), 1, + aux_sym_unquoted_token4, + STATE(7212), 1, sym_comment, - ACTIONS(11057), 2, - sym_filesize_unit, - sym_duration_unit, - [233562] = 5, + STATE(7534), 1, + sym__expr_parenthesized_immediate, + [234505] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, - sym__entry_separator, - ACTIONS(11059), 1, - anon_sym_RBRACK, - STATE(6518), 1, - aux_sym__multiple_types_repeat1, - STATE(7002), 1, + ACTIONS(11392), 1, + sym__table_head_separator, + STATE(7213), 1, sym_comment, - [233578] = 5, + ACTIONS(1090), 2, + anon_sym_RBRACK, + sym__entry_separator, + [234519] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, - sym__entry_separator, - ACTIONS(11061), 1, - anon_sym_RBRACK, - STATE(6578), 1, - aux_sym__multiple_types_repeat1, - STATE(7003), 1, + STATE(7214), 1, sym_comment, - [233594] = 5, + ACTIONS(1909), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [234531] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(11394), 1, + sym__table_head_separator, + STATE(7215), 1, + sym_comment, + ACTIONS(1090), 2, + anon_sym_RBRACK, sym__entry_separator, - ACTIONS(11063), 1, + [234545] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(10831), 1, + sym_hex_digit, + ACTIONS(11396), 1, anon_sym_RBRACK, - STATE(6579), 1, - aux_sym__multiple_types_repeat1, - STATE(7004), 1, + STATE(6903), 1, + aux_sym_val_binary_repeat1, + STATE(7216), 1, + sym_comment, + [234561] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7121), 1, + sym_val_list, + STATE(7217), 1, + sym_comment, + STATE(7277), 1, + aux_sym_val_table_repeat1, + [234577] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(6817), 1, + sym_val_list, + STATE(7218), 1, sym_comment, - [233610] = 5, + STATE(7277), 1, + aux_sym_val_table_repeat1, + [234593] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(6822), 1, + sym_val_list, + STATE(7219), 1, + sym_comment, + STATE(7277), 1, + aux_sym_val_table_repeat1, + [234609] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(6884), 1, + sym_val_list, + STATE(7220), 1, + sym_comment, + STATE(7277), 1, + aux_sym_val_table_repeat1, + [234625] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(7221), 1, + sym_comment, + ACTIONS(6146), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [234637] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(7222), 1, + sym_comment, + ACTIONS(6146), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [234649] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(2432), 1, sym__entry_separator, - ACTIONS(11065), 1, - anon_sym_RBRACK, - STATE(6580), 1, - aux_sym__multiple_types_repeat1, - STATE(7005), 1, + STATE(7223), 1, sym_comment, - [233626] = 4, + ACTIONS(2430), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [234663] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11067), 1, - sym__table_head_separator, - STATE(7006), 1, + ACTIONS(2480), 1, + sym__entry_separator, + STATE(7224), 1, sym_comment, - ACTIONS(1070), 2, + ACTIONS(2478), 2, anon_sym_RBRACK, - sym__entry_separator, - [233640] = 5, + anon_sym_RBRACE, + [234677] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2227), 1, + STATE(7225), 1, + sym_comment, + ACTIONS(2289), 3, + sym_identifier, + anon_sym_DOLLAR, aux_sym_unquoted_token4, - ACTIONS(5754), 1, - anon_sym_EQ_GT, - ACTIONS(5895), 1, - anon_sym_PIPE, - STATE(7007), 1, + [234689] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(7226), 1, sym_comment, - [233656] = 5, - ACTIONS(247), 1, + ACTIONS(6150), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [234701] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3229), 1, - aux_sym_record_entry_token1, - ACTIONS(6055), 1, - anon_sym_LBRACE, - STATE(6609), 1, - sym_block, - STATE(7008), 1, + STATE(7227), 1, sym_comment, - [233672] = 4, + ACTIONS(10730), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [234713] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11069), 1, + ACTIONS(11398), 1, sym__table_head_separator, - STATE(7009), 1, + STATE(7228), 1, sym_comment, - ACTIONS(1070), 2, + ACTIONS(1090), 2, anon_sym_RBRACK, sym__entry_separator, - [233686] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1738), 1, - aux_sym_unquoted_token2, - STATE(7010), 1, - sym_comment, - ACTIONS(1740), 2, - anon_sym_LBRACE, - anon_sym_LPAREN2, - [233700] = 5, - ACTIONS(247), 1, + [234727] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6188), 1, - anon_sym_AT, - ACTIONS(7724), 1, - anon_sym_EQ, - STATE(5132), 1, - sym_param_cmd, - STATE(7011), 1, + ACTIONS(5707), 1, + sym__entry_separator, + ACTIONS(11400), 1, + anon_sym_RBRACK, + STATE(2680), 1, + aux_sym__multiple_types_repeat1, + STATE(7229), 1, sym_comment, - [233716] = 3, - ACTIONS(247), 1, + [234743] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(7012), 1, + STATE(7230), 1, sym_comment, - ACTIONS(10472), 3, + ACTIONS(9978), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [233728] = 5, + [234755] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(11071), 1, + ACTIONS(11402), 1, anon_sym_RBRACK, - STATE(6581), 1, + STATE(6331), 1, aux_sym__multiple_types_repeat1, - STATE(7013), 1, + STATE(7231), 1, + sym_comment, + [234771] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11404), 1, + sym__table_head_separator, + STATE(7232), 1, + sym_comment, + ACTIONS(1090), 2, + anon_sym_RBRACK, + sym__entry_separator, + [234785] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(7233), 1, sym_comment, - [233744] = 5, - ACTIONS(247), 1, + ACTIONS(9978), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [234797] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6689), 1, + STATE(7063), 1, sym_val_list, - STATE(7014), 1, + STATE(7234), 1, sym_comment, - STATE(7180), 1, + STATE(7277), 1, aux_sym_val_table_repeat1, - [233760] = 5, - ACTIONS(247), 1, + [234813] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6749), 1, + STATE(7073), 1, sym_val_list, - STATE(7015), 1, + STATE(7235), 1, sym_comment, - STATE(7180), 1, + STATE(7277), 1, aux_sym_val_table_repeat1, - [233776] = 5, - ACTIONS(247), 1, + [234829] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6754), 1, + STATE(7075), 1, sym_val_list, - STATE(7016), 1, + STATE(7236), 1, sym_comment, - STATE(7180), 1, + STATE(7277), 1, aux_sym_val_table_repeat1, - [233792] = 5, - ACTIONS(247), 1, + [234845] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6796), 1, + STATE(7077), 1, sym_val_list, - STATE(7017), 1, + STATE(7237), 1, sym_comment, - STATE(7180), 1, + STATE(7277), 1, aux_sym_val_table_repeat1, - [233808] = 3, - ACTIONS(247), 1, + [234861] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7018), 1, + ACTIONS(11406), 1, + sym__table_head_separator, + STATE(7238), 1, sym_comment, - ACTIONS(9752), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [233820] = 5, + ACTIONS(1090), 2, + anon_sym_RBRACK, + sym__entry_separator, + [234875] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, - sym__entry_separator, - ACTIONS(11073), 1, + ACTIONS(11408), 1, + sym__table_head_separator, + STATE(7239), 1, + sym_comment, + ACTIONS(1090), 2, anon_sym_RBRACK, - STATE(6583), 1, - aux_sym__multiple_types_repeat1, - STATE(7019), 1, + sym__entry_separator, + [234889] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7126), 1, + sym_val_list, + STATE(7240), 1, sym_comment, - [233836] = 5, - ACTIONS(3), 1, + STATE(7277), 1, + aux_sym_val_table_repeat1, + [234905] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5567), 1, - sym__entry_separator, - ACTIONS(11075), 1, - anon_sym_RBRACK, - STATE(6584), 1, - aux_sym__multiple_types_repeat1, - STATE(7020), 1, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7136), 1, + sym_val_list, + STATE(7241), 1, + sym_comment, + STATE(7277), 1, + aux_sym_val_table_repeat1, + [234921] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7146), 1, + sym_val_list, + STATE(7242), 1, + sym_comment, + STATE(7277), 1, + aux_sym_val_table_repeat1, + [234937] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7152), 1, + sym_val_list, + STATE(7243), 1, sym_comment, - [233852] = 4, + STATE(7277), 1, + aux_sym_val_table_repeat1, + [234953] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11077), 1, + ACTIONS(11410), 1, sym__table_head_separator, - STATE(7021), 1, + STATE(7244), 1, sym_comment, - ACTIONS(1070), 2, + ACTIONS(1090), 2, anon_sym_RBRACK, sym__entry_separator, - [233866] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(7022), 1, - sym_comment, - ACTIONS(10358), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [233878] = 5, + [234967] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5547), 1, + ACTIONS(6494), 1, sym__entry_separator, - ACTIONS(11079), 1, + ACTIONS(11412), 1, anon_sym_RBRACK, - STATE(2638), 1, + STATE(6667), 1, aux_sym__multiple_types_repeat1, - STATE(7023), 1, + STATE(7245), 1, + sym_comment, + [234983] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(3766), 1, + sym__newline, + ACTIONS(11414), 1, + anon_sym_COLON, + STATE(2498), 1, + aux_sym_shebang_repeat1, + STATE(7246), 1, sym_comment, - [233894] = 4, + [234999] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11081), 1, + ACTIONS(11416), 1, sym__table_head_separator, - STATE(7024), 1, + STATE(7247), 1, sym_comment, - ACTIONS(1070), 2, + ACTIONS(1090), 2, anon_sym_RBRACK, sym__entry_separator, - [233908] = 4, - ACTIONS(247), 1, + [235013] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1659), 1, - aux_sym_unquoted_token2, - STATE(7025), 1, + ACTIONS(3296), 1, + aux_sym_record_entry_token1, + ACTIONS(6211), 1, + anon_sym_LBRACE, + STATE(6313), 1, + sym_block, + STATE(7248), 1, sym_comment, - ACTIONS(1661), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [233922] = 3, - ACTIONS(247), 1, + [235029] = 5, + ACTIONS(249), 1, anon_sym_POUND, - STATE(7026), 1, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7205), 1, + sym_val_list, + STATE(7249), 1, sym_comment, - ACTIONS(10387), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [233934] = 5, + STATE(7277), 1, + aux_sym_val_table_repeat1, + [235045] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7208), 1, + sym_val_list, + STATE(7250), 1, + sym_comment, + STATE(7277), 1, + aux_sym_val_table_repeat1, + [235061] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7173), 1, + sym_val_list, + STATE(7251), 1, + sym_comment, + STATE(7277), 1, + aux_sym_val_table_repeat1, + [235077] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7210), 1, + sym_val_list, + STATE(7252), 1, + sym_comment, + STATE(7277), 1, + aux_sym_val_table_repeat1, + [235093] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7211), 1, + sym_val_list, + STATE(7253), 1, + sym_comment, + STATE(7277), 1, + aux_sym_val_table_repeat1, + [235109] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5547), 1, - sym__entry_separator, - ACTIONS(11083), 1, + ACTIONS(11418), 1, + sym__table_head_separator, + STATE(7254), 1, + sym_comment, + ACTIONS(1090), 2, anon_sym_RBRACK, - STATE(2639), 1, - aux_sym__multiple_types_repeat1, - STATE(7027), 1, + sym__entry_separator, + [235123] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(7255), 1, sym_comment, - [233950] = 4, + ACTIONS(10170), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [235135] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1315), 1, - anon_sym_POUND_BANG, - ACTIONS(11085), 1, - sym__newline, - STATE(7028), 2, + ACTIONS(11420), 1, + sym__table_head_separator, + STATE(7256), 1, sym_comment, - aux_sym_shebang_repeat1, - [233964] = 5, - ACTIONS(247), 1, + ACTIONS(1090), 2, + anon_sym_RBRACK, + sym__entry_separator, + [235149] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6884), 1, + STATE(7257), 1, + sym_comment, + STATE(7277), 1, + aux_sym_val_table_repeat1, + STATE(7285), 1, sym_val_list, - STATE(7029), 1, + [235165] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7258), 1, sym_comment, - STATE(7180), 1, + STATE(7277), 1, aux_sym_val_table_repeat1, - [233980] = 5, - ACTIONS(247), 1, + STATE(7313), 1, + sym_val_list, + [235181] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6888), 1, + STATE(7259), 1, + sym_comment, + STATE(7277), 1, + aux_sym_val_table_repeat1, + STATE(7346), 1, sym_val_list, - STATE(7030), 1, + [235197] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7260), 1, sym_comment, - STATE(7180), 1, + STATE(7277), 1, aux_sym_val_table_repeat1, - [233996] = 5, + STATE(7356), 1, + sym_val_list, + [235213] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(11422), 1, + sym__table_head_separator, + STATE(7261), 1, + sym_comment, + ACTIONS(1090), 2, + anon_sym_RBRACK, sym__entry_separator, - ACTIONS(11088), 1, + [235227] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11424), 1, + sym__table_head_separator, + STATE(7262), 1, + sym_comment, + ACTIONS(1090), 2, anon_sym_RBRACK, - STATE(6588), 1, - aux_sym__multiple_types_repeat1, - STATE(7031), 1, + sym__entry_separator, + [235241] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(6764), 1, + sym_val_list, + STATE(7263), 1, sym_comment, - [234012] = 5, - ACTIONS(247), 1, + STATE(7277), 1, + aux_sym_val_table_repeat1, + [235257] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6892), 1, + STATE(6766), 1, sym_val_list, - STATE(7032), 1, + STATE(7264), 1, sym_comment, - STATE(7180), 1, + STATE(7277), 1, aux_sym_val_table_repeat1, - [234028] = 5, - ACTIONS(247), 1, + [235273] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6894), 1, + STATE(6769), 1, sym_val_list, - STATE(7033), 1, + STATE(7265), 1, sym_comment, - STATE(7180), 1, + STATE(7277), 1, + aux_sym_val_table_repeat1, + [235289] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(6771), 1, + sym_val_list, + STATE(7266), 1, + sym_comment, + STATE(7277), 1, aux_sym_val_table_repeat1, - [234044] = 4, + [235305] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11090), 1, + ACTIONS(11426), 1, sym__table_head_separator, - STATE(7034), 1, + STATE(7267), 1, sym_comment, - ACTIONS(1070), 2, + ACTIONS(1090), 2, anon_sym_RBRACK, sym__entry_separator, - [234058] = 4, + [235319] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11092), 1, + ACTIONS(11428), 1, sym__table_head_separator, - STATE(7035), 1, + STATE(7268), 1, sym_comment, - ACTIONS(1070), 2, + ACTIONS(1090), 2, anon_sym_RBRACK, sym__entry_separator, - [234072] = 3, - ACTIONS(247), 1, + [235333] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(7036), 1, + STATE(7269), 1, sym_comment, - ACTIONS(10130), 3, + ACTIONS(10276), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [234084] = 5, - ACTIONS(247), 1, + [235345] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6933), 1, + STATE(6785), 1, sym_val_list, - STATE(7037), 1, + STATE(7270), 1, sym_comment, - STATE(7180), 1, + STATE(7277), 1, aux_sym_val_table_repeat1, - [234100] = 5, - ACTIONS(247), 1, + [235361] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6946), 1, + STATE(6787), 1, sym_val_list, - STATE(7038), 1, + STATE(7271), 1, sym_comment, - STATE(7180), 1, + STATE(7277), 1, aux_sym_val_table_repeat1, - [234116] = 5, + [235377] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - ACTIONS(6939), 1, - aux_sym_unquoted_token4, - STATE(7039), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(11430), 1, + anon_sym_RBRACK, + STATE(6705), 1, + aux_sym__multiple_types_repeat1, + STATE(7272), 1, sym_comment, - STATE(7281), 1, - sym__expr_parenthesized_immediate, - [234132] = 5, - ACTIONS(247), 1, + [235393] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6953), 1, + STATE(6789), 1, sym_val_list, - STATE(7040), 1, + STATE(7273), 1, sym_comment, - STATE(7180), 1, + STATE(7277), 1, aux_sym_val_table_repeat1, - [234148] = 5, - ACTIONS(247), 1, + [235409] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6958), 1, + STATE(6792), 1, sym_val_list, - STATE(7041), 1, + STATE(7274), 1, sym_comment, - STATE(7180), 1, + STATE(7277), 1, aux_sym_val_table_repeat1, - [234164] = 4, + [235425] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11094), 1, + ACTIONS(11432), 1, sym__table_head_separator, - STATE(7042), 1, + STATE(7275), 1, sym_comment, - ACTIONS(1070), 2, + ACTIONS(1090), 2, anon_sym_RBRACK, sym__entry_separator, - [234178] = 4, + [235439] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11096), 1, + ACTIONS(11434), 1, sym__table_head_separator, - STATE(7043), 1, + STATE(7276), 1, sym_comment, - ACTIONS(1070), 2, + ACTIONS(1090), 2, anon_sym_RBRACK, sym__entry_separator, - [234192] = 3, - ACTIONS(247), 1, + [235453] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(7044), 1, + ACTIONS(11436), 1, + anon_sym_LBRACK, + STATE(7532), 1, + sym_val_list, + STATE(7277), 2, + sym_comment, + aux_sym_val_table_repeat1, + [235467] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(7278), 1, sym_comment, - ACTIONS(10518), 3, + ACTIONS(10176), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [234204] = 5, - ACTIONS(247), 1, + [235479] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6996), 1, + STATE(6813), 1, sym_val_list, - STATE(7045), 1, - sym_comment, - STATE(7180), 1, + STATE(7277), 1, aux_sym_val_table_repeat1, - [234220] = 5, - ACTIONS(247), 1, + STATE(7279), 1, + sym_comment, + [235495] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6998), 1, + STATE(6816), 1, sym_val_list, - STATE(7046), 1, - sym_comment, - STATE(7180), 1, + STATE(7277), 1, aux_sym_val_table_repeat1, - [234236] = 5, - ACTIONS(247), 1, + STATE(7280), 1, + sym_comment, + [235511] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(11439), 1, + anon_sym_RBRACK, + STATE(6332), 1, + aux_sym__multiple_types_repeat1, + STATE(7281), 1, + sym_comment, + [235527] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(7000), 1, + STATE(6819), 1, sym_val_list, - STATE(7047), 1, - sym_comment, - STATE(7180), 1, + STATE(7277), 1, aux_sym_val_table_repeat1, - [234252] = 5, - ACTIONS(247), 1, + STATE(7282), 1, + sym_comment, + [235543] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(7002), 1, + STATE(6821), 1, sym_val_list, - STATE(7048), 1, - sym_comment, - STATE(7180), 1, + STATE(7277), 1, aux_sym_val_table_repeat1, - [234268] = 4, + STATE(7283), 1, + sym_comment, + [235559] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11098), 1, + ACTIONS(11441), 1, sym__table_head_separator, - STATE(7049), 1, + STATE(7284), 1, sym_comment, - ACTIONS(1070), 2, + ACTIONS(1090), 2, anon_sym_RBRACK, sym__entry_separator, - [234282] = 3, - ACTIONS(247), 1, + [235573] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7050), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(11443), 1, + anon_sym_RBRACK, + STATE(6333), 1, + aux_sym__multiple_types_repeat1, + STATE(7285), 1, sym_comment, - ACTIONS(9812), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [234294] = 4, + [235589] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11100), 1, + ACTIONS(11445), 1, sym__table_head_separator, - STATE(7051), 1, + STATE(7286), 1, sym_comment, - ACTIONS(1070), 2, + ACTIONS(1090), 2, anon_sym_RBRACK, sym__entry_separator, - [234308] = 5, - ACTIONS(247), 1, + [235603] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, + STATE(7287), 1, + sym_comment, + ACTIONS(10276), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [235615] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(7004), 1, + STATE(6840), 1, sym_val_list, - STATE(7052), 1, + STATE(7277), 1, + aux_sym_val_table_repeat1, + STATE(7288), 1, sym_comment, - STATE(7180), 1, + [235631] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(6843), 1, + sym_val_list, + STATE(7277), 1, aux_sym_val_table_repeat1, - [234324] = 5, - ACTIONS(247), 1, + STATE(7289), 1, + sym_comment, + [235647] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(7013), 1, + STATE(6846), 1, sym_val_list, - STATE(7053), 1, + STATE(7277), 1, + aux_sym_val_table_repeat1, + STATE(7290), 1, sym_comment, - STATE(7180), 1, + [235663] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(6848), 1, + sym_val_list, + STATE(7277), 1, aux_sym_val_table_repeat1, - [234340] = 4, - ACTIONS(247), 1, + STATE(7291), 1, + sym_comment, + [235679] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9740), 1, - aux_sym_cmd_identifier_token41, - STATE(7054), 1, + ACTIONS(11447), 1, + sym__table_head_separator, + STATE(7292), 1, sym_comment, - ACTIONS(9742), 2, - sym_filesize_unit, - sym_duration_unit, - [234354] = 5, - ACTIONS(247), 1, + ACTIONS(1090), 2, + anon_sym_RBRACK, + sym__entry_separator, + [235693] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4989), 1, + sym__space, + ACTIONS(4991), 1, + sym__newline, + ACTIONS(11449), 1, + anon_sym_EQ2, + STATE(7293), 1, + sym_comment, + [235709] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11451), 1, + sym__table_head_separator, + STATE(7294), 1, + sym_comment, + ACTIONS(1090), 2, + anon_sym_RBRACK, + sym__entry_separator, + [235723] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(11453), 1, + anon_sym_RBRACK, + STATE(6334), 1, + aux_sym__multiple_types_repeat1, + STATE(7295), 1, + sym_comment, + [235739] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(7020), 1, + STATE(6866), 1, sym_val_list, - STATE(7055), 1, + STATE(7277), 1, + aux_sym_val_table_repeat1, + STATE(7296), 1, sym_comment, - STATE(7180), 1, + [235755] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(6868), 1, + sym_val_list, + STATE(7277), 1, aux_sym_val_table_repeat1, - [234370] = 5, - ACTIONS(247), 1, + STATE(7297), 1, + sym_comment, + [235771] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(7031), 1, + STATE(6872), 1, sym_val_list, - STATE(7056), 1, + STATE(7277), 1, + aux_sym_val_table_repeat1, + STATE(7298), 1, sym_comment, - STATE(7180), 1, + [235787] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(6875), 1, + sym_val_list, + STATE(7277), 1, aux_sym_val_table_repeat1, - [234386] = 4, + STATE(7299), 1, + sym_comment, + [235803] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11102), 1, + ACTIONS(11455), 1, sym__table_head_separator, - STATE(7057), 1, + STATE(7300), 1, sym_comment, - ACTIONS(1070), 2, + ACTIONS(1090), 2, anon_sym_RBRACK, sym__entry_separator, - [234400] = 5, - ACTIONS(247), 1, + [235817] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3229), 1, - aux_sym_record_entry_token1, - ACTIONS(6055), 1, - anon_sym_LBRACE, - STATE(4687), 1, - sym_block, - STATE(7058), 1, + ACTIONS(2512), 1, + sym__entry_separator, + STATE(7301), 1, sym_comment, - [234416] = 4, + ACTIONS(2510), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [235831] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11104), 1, + ACTIONS(11457), 1, sym__table_head_separator, - STATE(7059), 1, + STATE(7302), 1, sym_comment, - ACTIONS(1070), 2, + ACTIONS(1090), 2, anon_sym_RBRACK, sym__entry_separator, - [234430] = 5, - ACTIONS(247), 1, + [235845] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8900), 1, - anon_sym_LBRACK, - STATE(7060), 1, + STATE(7303), 1, sym_comment, - STATE(7153), 1, + ACTIONS(2569), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [235857] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(6894), 1, sym_val_list, - STATE(7180), 1, + STATE(7277), 1, aux_sym_val_table_repeat1, - [234446] = 5, - ACTIONS(247), 1, + STATE(7304), 1, + sym_comment, + [235873] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(7061), 1, - sym_comment, - STATE(7159), 1, + STATE(6896), 1, sym_val_list, - STATE(7180), 1, + STATE(7277), 1, aux_sym_val_table_repeat1, - [234462] = 5, - ACTIONS(247), 1, + STATE(7305), 1, + sym_comment, + [235889] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, - anon_sym_LBRACK, - STATE(7062), 1, + ACTIONS(3296), 1, + aux_sym_record_entry_token1, + ACTIONS(6211), 1, + anon_sym_LBRACE, + STATE(6352), 1, + sym_block, + STATE(7306), 1, sym_comment, - STATE(7162), 1, + [235905] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(6898), 1, sym_val_list, - STATE(7180), 1, + STATE(7277), 1, aux_sym_val_table_repeat1, - [234478] = 5, - ACTIONS(247), 1, + STATE(7307), 1, + sym_comment, + [235921] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(7063), 1, - sym_comment, - STATE(7163), 1, + STATE(6901), 1, sym_val_list, - STATE(7180), 1, + STATE(7277), 1, aux_sym_val_table_repeat1, - [234494] = 4, + STATE(7308), 1, + sym_comment, + [235937] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11106), 1, + ACTIONS(11459), 1, sym__table_head_separator, - STATE(7064), 1, + STATE(7309), 1, sym_comment, - ACTIONS(1070), 2, + ACTIONS(1090), 2, anon_sym_RBRACK, sym__entry_separator, - [234508] = 4, + [235951] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11108), 1, + ACTIONS(1628), 1, + sym__newline, + ACTIONS(1640), 1, + sym__space, + ACTIONS(7021), 1, + aux_sym_unquoted_token2, + STATE(7310), 1, + sym_comment, + [235967] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11461), 1, sym__table_head_separator, - STATE(7065), 1, + STATE(7311), 1, sym_comment, - ACTIONS(1070), 2, + ACTIONS(1090), 2, anon_sym_RBRACK, sym__entry_separator, - [234522] = 5, - ACTIONS(247), 1, + [235981] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(11463), 1, + aux_sym_cmd_identifier_token41, + STATE(7312), 1, + sym_comment, + ACTIONS(11465), 2, + sym_filesize_unit, + sym_duration_unit, + [235995] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(11467), 1, + anon_sym_RBRACK, + STATE(6335), 1, + aux_sym__multiple_types_repeat1, + STATE(7313), 1, + sym_comment, + [236011] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6624), 1, + STATE(6915), 1, sym_val_list, - STATE(7066), 1, - sym_comment, - STATE(7180), 1, + STATE(7277), 1, aux_sym_val_table_repeat1, - [234538] = 5, - ACTIONS(247), 1, + STATE(7314), 1, + sym_comment, + [236027] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6627), 1, + STATE(6917), 1, sym_val_list, - STATE(7067), 1, - sym_comment, - STATE(7180), 1, + STATE(7277), 1, aux_sym_val_table_repeat1, - [234554] = 5, - ACTIONS(247), 1, + STATE(7315), 1, + sym_comment, + [236043] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2119), 1, + sym__entry_separator, + STATE(7316), 1, + sym_comment, + ACTIONS(2113), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [236057] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6629), 1, + STATE(6920), 1, sym_val_list, - STATE(7068), 1, - sym_comment, - STATE(7180), 1, + STATE(7277), 1, aux_sym_val_table_repeat1, - [234570] = 5, - ACTIONS(247), 1, + STATE(7317), 1, + sym_comment, + [236073] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6630), 1, + STATE(6923), 1, sym_val_list, - STATE(7069), 1, - sym_comment, - STATE(7180), 1, + STATE(7277), 1, aux_sym_val_table_repeat1, - [234586] = 4, + STATE(7318), 1, + sym_comment, + [236089] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11110), 1, + ACTIONS(11469), 1, sym__table_head_separator, - STATE(7070), 1, + STATE(7319), 1, sym_comment, - ACTIONS(1070), 2, + ACTIONS(1090), 2, anon_sym_RBRACK, sym__entry_separator, - [234600] = 4, - ACTIONS(247), 1, + [236103] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1721), 1, - aux_sym_unquoted_token2, - STATE(7071), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(11471), 1, + anon_sym_RBRACK, + STATE(6399), 1, + aux_sym__multiple_types_repeat1, + STATE(7320), 1, sym_comment, - ACTIONS(1723), 2, - anon_sym_LBRACE, - anon_sym_LPAREN2, - [234614] = 3, - ACTIONS(247), 1, + [236119] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7072), 1, + ACTIONS(11473), 1, + sym__table_head_separator, + STATE(7321), 1, + sym_comment, + ACTIONS(1090), 2, + anon_sym_RBRACK, + sym__entry_separator, + [236133] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(7322), 1, sym_comment, - ACTIONS(9712), 3, + ACTIONS(10702), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [234626] = 4, - ACTIONS(3), 1, + [236145] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11112), 1, - sym__table_head_separator, - STATE(7073), 1, + STATE(7323), 1, sym_comment, - ACTIONS(1070), 2, - anon_sym_RBRACK, - sym__entry_separator, - [234640] = 5, - ACTIONS(247), 1, + ACTIONS(1076), 3, + anon_sym_DOT, + aux_sym_record_entry_token1, + sym__table_head_separator, + [236157] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6649), 1, + STATE(6937), 1, sym_val_list, - STATE(7074), 1, - sym_comment, - STATE(7180), 1, + STATE(7277), 1, aux_sym_val_table_repeat1, - [234656] = 5, - ACTIONS(247), 1, + STATE(7324), 1, + sym_comment, + [236173] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6651), 1, + STATE(6940), 1, sym_val_list, - STATE(7075), 1, - sym_comment, - STATE(7180), 1, + STATE(7277), 1, aux_sym_val_table_repeat1, - [234672] = 5, - ACTIONS(247), 1, + STATE(7325), 1, + sym_comment, + [236189] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6655), 1, + STATE(6943), 1, sym_val_list, - STATE(7076), 1, - sym_comment, - STATE(7180), 1, + STATE(7277), 1, aux_sym_val_table_repeat1, - [234688] = 5, - ACTIONS(247), 1, + STATE(7326), 1, + sym_comment, + [236205] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6657), 1, + STATE(6944), 1, sym_val_list, - STATE(7077), 1, - sym_comment, - STATE(7180), 1, + STATE(7277), 1, aux_sym_val_table_repeat1, - [234704] = 4, + STATE(7327), 1, + sym_comment, + [236221] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11114), 1, + ACTIONS(11475), 1, sym__table_head_separator, - STATE(7078), 1, + STATE(7328), 1, sym_comment, - ACTIONS(1070), 2, + ACTIONS(1090), 2, anon_sym_RBRACK, sym__entry_separator, - [234718] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(7079), 1, - sym_comment, - ACTIONS(9674), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [234730] = 4, + [236235] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11116), 1, + ACTIONS(11477), 1, sym__table_head_separator, - STATE(7080), 1, + STATE(7329), 1, sym_comment, - ACTIONS(1070), 2, + ACTIONS(1090), 2, anon_sym_RBRACK, sym__entry_separator, - [234744] = 5, - ACTIONS(247), 1, + [236249] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(7330), 1, + sym_comment, + ACTIONS(11479), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [236261] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6675), 1, + STATE(6956), 1, sym_val_list, - STATE(7081), 1, - sym_comment, - STATE(7180), 1, + STATE(7277), 1, aux_sym_val_table_repeat1, - [234760] = 5, - ACTIONS(247), 1, + STATE(7331), 1, + sym_comment, + [236277] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6678), 1, + STATE(6959), 1, sym_val_list, - STATE(7082), 1, - sym_comment, - STATE(7180), 1, + STATE(7277), 1, aux_sym_val_table_repeat1, - [234776] = 5, - ACTIONS(247), 1, + STATE(7332), 1, + sym_comment, + [236293] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10555), 1, - sym_hex_digit, - ACTIONS(11118), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(11481), 1, anon_sym_RBRACK, - STATE(7083), 1, + STATE(6336), 1, + aux_sym__multiple_types_repeat1, + STATE(7333), 1, sym_comment, - STATE(7111), 1, - aux_sym_val_binary_repeat1, - [234792] = 5, - ACTIONS(247), 1, + [236309] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6680), 1, + STATE(6963), 1, sym_val_list, - STATE(7084), 1, - sym_comment, - STATE(7180), 1, + STATE(7277), 1, aux_sym_val_table_repeat1, - [234808] = 5, - ACTIONS(247), 1, + STATE(7334), 1, + sym_comment, + [236325] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6681), 1, + STATE(6966), 1, sym_val_list, - STATE(7085), 1, - sym_comment, - STATE(7180), 1, + STATE(7277), 1, aux_sym_val_table_repeat1, - [234824] = 4, + STATE(7335), 1, + sym_comment, + [236341] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11120), 1, + ACTIONS(11483), 1, sym__table_head_separator, - STATE(7086), 1, + STATE(7336), 1, sym_comment, - ACTIONS(1070), 2, + ACTIONS(1090), 2, anon_sym_RBRACK, sym__entry_separator, - [234838] = 4, + [236355] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11122), 1, + ACTIONS(11485), 1, sym__table_head_separator, - STATE(7087), 1, + STATE(7337), 1, sym_comment, - ACTIONS(1070), 2, + ACTIONS(1090), 2, anon_sym_RBRACK, sym__entry_separator, - [234852] = 5, - ACTIONS(247), 1, + [236369] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10555), 1, - sym_hex_digit, - ACTIONS(11124), 1, - anon_sym_RBRACK, - STATE(6631), 1, - aux_sym_val_binary_repeat1, - STATE(7088), 1, + ACTIONS(2500), 1, + sym__entry_separator, + STATE(7338), 1, sym_comment, - [234868] = 5, - ACTIONS(247), 1, + ACTIONS(2498), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [236383] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6698), 1, + STATE(6979), 1, sym_val_list, - STATE(7089), 1, - sym_comment, - STATE(7180), 1, + STATE(7277), 1, aux_sym_val_table_repeat1, - [234884] = 5, - ACTIONS(247), 1, + STATE(7339), 1, + sym_comment, + [236399] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6700), 1, + STATE(6982), 1, sym_val_list, - STATE(7090), 1, - sym_comment, - STATE(7180), 1, + STATE(7277), 1, aux_sym_val_table_repeat1, - [234900] = 5, - ACTIONS(247), 1, + STATE(7340), 1, + sym_comment, + [236415] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2428), 1, + sym__entry_separator, + STATE(7341), 1, + sym_comment, + ACTIONS(2426), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [236429] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6704), 1, + STATE(6985), 1, sym_val_list, - STATE(7091), 1, - sym_comment, - STATE(7180), 1, + STATE(7277), 1, aux_sym_val_table_repeat1, - [234916] = 5, - ACTIONS(247), 1, + STATE(7342), 1, + sym_comment, + [236445] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6706), 1, + STATE(6987), 1, sym_val_list, - STATE(7092), 1, - sym_comment, - STATE(7180), 1, + STATE(7277), 1, aux_sym_val_table_repeat1, - [234932] = 4, + STATE(7343), 1, + sym_comment, + [236461] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11126), 1, + ACTIONS(11487), 1, sym__table_head_separator, - STATE(7093), 1, + STATE(7344), 1, sym_comment, - ACTIONS(1070), 2, + ACTIONS(1090), 2, anon_sym_RBRACK, sym__entry_separator, - [234946] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11128), 1, - aux_sym_cmd_identifier_token41, - STATE(7094), 1, - sym_comment, - ACTIONS(11130), 2, - sym_filesize_unit, - sym_duration_unit, - [234960] = 4, + [236475] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11132), 1, + ACTIONS(11489), 1, sym__table_head_separator, - STATE(7095), 1, + STATE(7345), 1, sym_comment, - ACTIONS(1070), 2, + ACTIONS(1090), 2, anon_sym_RBRACK, sym__entry_separator, - [234974] = 3, - ACTIONS(247), 1, + [236489] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7096), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(11491), 1, + anon_sym_RBRACK, + STATE(6337), 1, + aux_sym__multiple_types_repeat1, + STATE(7346), 1, sym_comment, - ACTIONS(10130), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [234986] = 5, - ACTIONS(247), 1, + [236505] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6718), 1, + STATE(7000), 1, sym_val_list, - STATE(7097), 1, - sym_comment, - STATE(7180), 1, + STATE(7277), 1, aux_sym_val_table_repeat1, - [235002] = 5, - ACTIONS(247), 1, + STATE(7347), 1, + sym_comment, + [236521] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6720), 1, + STATE(7003), 1, sym_val_list, - STATE(7098), 1, - sym_comment, - STATE(7180), 1, + STATE(7277), 1, aux_sym_val_table_repeat1, - [235018] = 5, + STATE(7348), 1, + sym_comment, + [236537] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3978), 1, + ACTIONS(1630), 1, anon_sym_LPAREN2, - ACTIONS(3988), 1, - aux_sym_unquoted_token4, - STATE(7099), 1, + ACTIONS(8696), 1, + aux_sym__unquoted_in_record_token4, + STATE(7349), 1, sym_comment, - STATE(7347), 1, + STATE(7435), 1, sym__expr_parenthesized_immediate, - [235034] = 5, - ACTIONS(247), 1, + [236553] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6723), 1, + STATE(7006), 1, sym_val_list, - STATE(7100), 1, - sym_comment, - STATE(7180), 1, + STATE(7277), 1, aux_sym_val_table_repeat1, - [235050] = 5, - ACTIONS(247), 1, + STATE(7350), 1, + sym_comment, + [236569] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6725), 1, + STATE(7009), 1, sym_val_list, - STATE(7101), 1, - sym_comment, - STATE(7180), 1, + STATE(7277), 1, aux_sym_val_table_repeat1, - [235066] = 4, + STATE(7351), 1, + sym_comment, + [236585] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11134), 1, + ACTIONS(11493), 1, sym__table_head_separator, - STATE(7102), 1, + STATE(7352), 1, sym_comment, - ACTIONS(1070), 2, + ACTIONS(1090), 2, anon_sym_RBRACK, sym__entry_separator, - [235080] = 4, + [236599] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11136), 1, + ACTIONS(11495), 1, sym__table_head_separator, - STATE(7103), 1, + STATE(7353), 1, sym_comment, - ACTIONS(1070), 2, + ACTIONS(1090), 2, anon_sym_RBRACK, sym__entry_separator, - [235094] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - STATE(7104), 1, - sym_comment, - ACTIONS(10389), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [235106] = 5, - ACTIONS(247), 1, + [236613] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6736), 1, + STATE(7015), 1, sym_val_list, - STATE(7105), 1, - sym_comment, - STATE(7180), 1, + STATE(7277), 1, aux_sym_val_table_repeat1, - [235122] = 5, - ACTIONS(247), 1, + STATE(7354), 1, + sym_comment, + [236629] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6738), 1, + STATE(7017), 1, sym_val_list, - STATE(7106), 1, - sym_comment, - STATE(7180), 1, + STATE(7277), 1, aux_sym_val_table_repeat1, - [235138] = 5, - ACTIONS(247), 1, + STATE(7355), 1, + sym_comment, + [236645] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(11497), 1, + anon_sym_RBRACK, + STATE(6338), 1, + aux_sym__multiple_types_repeat1, + STATE(7356), 1, + sym_comment, + [236661] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6741), 1, + STATE(7019), 1, sym_val_list, - STATE(7107), 1, - sym_comment, - STATE(7180), 1, + STATE(7277), 1, aux_sym_val_table_repeat1, - [235154] = 5, - ACTIONS(247), 1, + STATE(7357), 1, + sym_comment, + [236677] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6743), 1, + STATE(7022), 1, sym_val_list, - STATE(7108), 1, - sym_comment, - STATE(7180), 1, + STATE(7277), 1, aux_sym_val_table_repeat1, - [235170] = 4, + STATE(7358), 1, + sym_comment, + [236693] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11138), 1, + ACTIONS(11499), 1, sym__table_head_separator, - STATE(7109), 1, + STATE(7359), 1, sym_comment, - ACTIONS(1070), 2, + ACTIONS(1090), 2, anon_sym_RBRACK, sym__entry_separator, - [235184] = 4, + [236707] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11140), 1, + ACTIONS(11501), 1, sym__table_head_separator, - STATE(7110), 1, + STATE(7360), 1, sym_comment, - ACTIONS(1070), 2, + ACTIONS(1090), 2, anon_sym_RBRACK, sym__entry_separator, - [235198] = 5, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(10555), 1, - sym_hex_digit, - ACTIONS(11142), 1, - anon_sym_RBRACK, - STATE(6970), 1, - aux_sym_val_binary_repeat1, - STATE(7111), 1, - sym_comment, - [235214] = 5, - ACTIONS(247), 1, + [236721] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6760), 1, + STATE(7031), 1, sym_val_list, - STATE(7112), 1, - sym_comment, - STATE(7180), 1, + STATE(7277), 1, aux_sym_val_table_repeat1, - [235230] = 5, - ACTIONS(247), 1, + STATE(7361), 1, + sym_comment, + [236737] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6762), 1, + STATE(7033), 1, sym_val_list, - STATE(7113), 1, - sym_comment, - STATE(7180), 1, + STATE(7277), 1, aux_sym_val_table_repeat1, - [235246] = 5, - ACTIONS(247), 1, + STATE(7362), 1, + sym_comment, + [236753] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3229), 1, - aux_sym_record_entry_token1, - ACTIONS(6055), 1, - anon_sym_LBRACE, - STATE(6534), 1, - sym_block, - STATE(7114), 1, + ACTIONS(2448), 1, + sym__entry_separator, + STATE(7363), 1, sym_comment, - [235262] = 5, - ACTIONS(247), 1, + ACTIONS(2446), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [236767] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6765), 1, + STATE(7036), 1, sym_val_list, - STATE(7115), 1, - sym_comment, - STATE(7180), 1, + STATE(7277), 1, aux_sym_val_table_repeat1, - [235278] = 5, - ACTIONS(247), 1, + STATE(7364), 1, + sym_comment, + [236783] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6768), 1, + STATE(7038), 1, sym_val_list, - STATE(7116), 1, - sym_comment, - STATE(7180), 1, + STATE(7277), 1, aux_sym_val_table_repeat1, - [235294] = 4, + STATE(7365), 1, + sym_comment, + [236799] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11144), 1, + ACTIONS(11503), 1, sym__table_head_separator, - STATE(7117), 1, + STATE(7366), 1, sym_comment, - ACTIONS(1070), 2, + ACTIONS(1090), 2, anon_sym_RBRACK, sym__entry_separator, - [235308] = 4, + [236813] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11146), 1, + ACTIONS(11505), 1, sym__table_head_separator, - STATE(7118), 1, + STATE(7367), 1, sym_comment, - ACTIONS(1070), 2, + ACTIONS(1090), 2, anon_sym_RBRACK, sym__entry_separator, - [235322] = 5, - ACTIONS(247), 1, + [236827] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2283), 1, + anon_sym_LPAREN2, + ACTIONS(2287), 1, + aux_sym_unquoted_token4, + ACTIONS(11507), 1, + sym__space, + STATE(7368), 1, + sym_comment, + [236843] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6782), 1, + STATE(7047), 1, sym_val_list, - STATE(7119), 1, + STATE(7277), 1, + aux_sym_val_table_repeat1, + STATE(7369), 1, sym_comment, - STATE(7180), 1, + [236859] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7049), 1, + sym_val_list, + STATE(7277), 1, aux_sym_val_table_repeat1, - [235338] = 5, - ACTIONS(247), 1, + STATE(7370), 1, + sym_comment, + [236875] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(11509), 1, + anon_sym_RBRACK, + STATE(6723), 1, + aux_sym__multiple_types_repeat1, + STATE(7371), 1, + sym_comment, + [236891] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6785), 1, + STATE(7052), 1, sym_val_list, - STATE(7120), 1, + STATE(7277), 1, + aux_sym_val_table_repeat1, + STATE(7372), 1, sym_comment, - STATE(7180), 1, + [236907] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7054), 1, + sym_val_list, + STATE(7277), 1, aux_sym_val_table_repeat1, - [235354] = 5, - ACTIONS(247), 1, + STATE(7373), 1, + sym_comment, + [236923] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(9428), 1, - anon_sym_PIPE, - ACTIONS(11148), 1, - anon_sym_EQ_GT, - STATE(6683), 1, - aux_sym_match_pattern_repeat1, - STATE(7121), 1, + STATE(7374), 1, sym_comment, - [235370] = 5, - ACTIONS(247), 1, + ACTIONS(1068), 3, + anon_sym_DOT, + aux_sym_record_entry_token1, + sym__table_head_separator, + [236935] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6788), 1, + STATE(7061), 1, sym_val_list, - STATE(7122), 1, + STATE(7277), 1, + aux_sym_val_table_repeat1, + STATE(7375), 1, sym_comment, - STATE(7180), 1, + [236951] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7064), 1, + sym_val_list, + STATE(7277), 1, aux_sym_val_table_repeat1, - [235386] = 5, - ACTIONS(247), 1, + STATE(7376), 1, + sym_comment, + [236967] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(7377), 1, + sym_comment, + ACTIONS(1072), 3, + anon_sym_DOT, + aux_sym_record_entry_token1, + sym__table_head_separator, + [236979] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6790), 1, + STATE(7067), 1, sym_val_list, - STATE(7123), 1, + STATE(7277), 1, + aux_sym_val_table_repeat1, + STATE(7378), 1, sym_comment, - STATE(7180), 1, + [236995] = 5, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(9340), 1, + anon_sym_LBRACK, + STATE(7069), 1, + sym_val_list, + STATE(7277), 1, aux_sym_val_table_repeat1, - [235402] = 4, - ACTIONS(3), 1, + STATE(7379), 1, + sym_comment, + [237011] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11150), 1, - sym__table_head_separator, - STATE(7124), 1, + STATE(7380), 1, sym_comment, - ACTIONS(1070), 2, - anon_sym_RBRACK, + ACTIONS(10702), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [237023] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(7381), 1, + sym_comment, + ACTIONS(9925), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [237035] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(7382), 1, + sym_comment, + ACTIONS(10712), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [237047] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5672), 1, sym__entry_separator, - [235416] = 4, + ACTIONS(11511), 1, + anon_sym_RBRACK, + STATE(2684), 1, + aux_sym__multiple_types_repeat1, + STATE(7383), 1, + sym_comment, + [237063] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11152), 1, - sym__table_head_separator, - STATE(7125), 1, + ACTIONS(3822), 1, + sym__newline, + ACTIONS(3824), 1, + sym__space, + STATE(1063), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(7384), 1, sym_comment, - ACTIONS(1070), 2, + [237079] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2488), 1, + sym__entry_separator, + STATE(7385), 1, + sym_comment, + ACTIONS(2486), 2, anon_sym_RBRACK, + anon_sym_RBRACE, + [237093] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2416), 1, sym__entry_separator, - [235430] = 5, + STATE(7386), 1, + sym_comment, + ACTIONS(2414), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [237107] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(2484), 1, sym__entry_separator, - ACTIONS(11154), 1, + STATE(7387), 1, + sym_comment, + ACTIONS(2482), 2, anon_sym_RBRACK, - STATE(6610), 1, - aux_sym__multiple_types_repeat1, - STATE(7126), 1, + anon_sym_RBRACE, + [237121] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2526), 1, + sym__entry_separator, + STATE(7388), 1, sym_comment, - [235446] = 5, - ACTIONS(247), 1, + ACTIONS(2524), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [237135] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6800), 1, + STATE(6856), 1, sym_val_list, - STATE(7127), 1, - sym_comment, - STATE(7180), 1, + STATE(7277), 1, aux_sym_val_table_repeat1, - [235462] = 5, - ACTIONS(247), 1, + STATE(7389), 1, + sym_comment, + [237151] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8900), 1, - anon_sym_LBRACK, - STATE(6802), 1, - sym_val_list, - STATE(7128), 1, + ACTIONS(2281), 1, + sym__newline, + ACTIONS(2285), 1, + sym__space, + ACTIONS(2287), 1, + aux_sym_unquoted_token4, + STATE(7390), 1, sym_comment, - STATE(7180), 1, - aux_sym_val_table_repeat1, - [235478] = 3, - ACTIONS(247), 1, + [237167] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(7129), 1, + STATE(7391), 1, sym_comment, - ACTIONS(10423), 3, + ACTIONS(10058), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [235490] = 5, - ACTIONS(247), 1, + [237179] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, - anon_sym_LBRACK, - STATE(6804), 1, - sym_val_list, - STATE(7130), 1, + ACTIONS(8580), 1, + aux_sym_unquoted_token2, + STATE(7392), 1, sym_comment, - STATE(7180), 1, - aux_sym_val_table_repeat1, - [235506] = 5, - ACTIONS(247), 1, + ACTIONS(1640), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [237193] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, - anon_sym_LBRACK, - STATE(6806), 1, - sym_val_list, - STATE(7131), 1, + STATE(7393), 1, sym_comment, - STATE(7180), 1, - aux_sym_val_table_repeat1, - [235522] = 4, + ACTIONS(10779), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [237205] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(7394), 1, + sym_comment, + ACTIONS(10146), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [237217] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11156), 1, + ACTIONS(11513), 1, sym__table_head_separator, - STATE(7132), 1, + STATE(7395), 1, sym_comment, - ACTIONS(1070), 2, + ACTIONS(1090), 2, anon_sym_RBRACK, sym__entry_separator, - [235536] = 4, + [237231] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11158), 1, - sym__table_head_separator, - STATE(7133), 1, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + STATE(7396), 1, sym_comment, - ACTIONS(1070), 2, + ACTIONS(2293), 2, + sym_identifier, + anon_sym_DOLLAR, + [237245] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + STATE(7397), 1, + sym_comment, + ACTIONS(2303), 2, + sym_identifier, + anon_sym_DOLLAR, + [237259] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1899), 1, + sym__entry_separator, + STATE(7398), 1, + sym_comment, + ACTIONS(1897), 2, anon_sym_RBRACK, + anon_sym_RBRACE, + [237273] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2549), 1, sym__entry_separator, - [235550] = 5, - ACTIONS(247), 1, + STATE(7399), 1, + sym_comment, + ACTIONS(2547), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [237287] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, - anon_sym_LBRACK, - STATE(6816), 1, - sym_val_list, - STATE(7134), 1, + ACTIONS(3296), 1, + aux_sym_record_entry_token1, + ACTIONS(6211), 1, + anon_sym_LBRACE, + STATE(4862), 1, + sym_block, + STATE(7400), 1, sym_comment, - STATE(7180), 1, - aux_sym_val_table_repeat1, - [235566] = 5, - ACTIONS(247), 1, + [237303] = 5, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, + ACTIONS(9340), 1, anon_sym_LBRACK, - STATE(6818), 1, + STATE(6849), 1, sym_val_list, - STATE(7135), 1, - sym_comment, - STATE(7180), 1, + STATE(7277), 1, aux_sym_val_table_repeat1, - [235582] = 5, - ACTIONS(247), 1, + STATE(7401), 1, + sym_comment, + [237319] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, - anon_sym_LBRACK, - STATE(6822), 1, - sym_val_list, - STATE(7136), 1, + STATE(7402), 1, sym_comment, - STATE(7180), 1, - aux_sym_val_table_repeat1, - [235598] = 5, - ACTIONS(247), 1, + ACTIONS(10282), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [237331] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, - anon_sym_LBRACK, - STATE(6823), 1, - sym_val_list, - STATE(7137), 1, + ACTIONS(11515), 1, + aux_sym_cmd_identifier_token41, + STATE(7403), 1, sym_comment, - STATE(7180), 1, - aux_sym_val_table_repeat1, - [235614] = 4, + ACTIONS(11517), 2, + sym_filesize_unit, + sym_duration_unit, + [237345] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11160), 1, - sym__table_head_separator, - STATE(7138), 1, + ACTIONS(6494), 1, + sym__entry_separator, + ACTIONS(11519), 1, + anon_sym_RBRACK, + STATE(6358), 1, + aux_sym__multiple_types_repeat1, + STATE(7404), 1, sym_comment, - ACTIONS(1070), 2, + [237361] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6202), 1, + anon_sym_LBRACE, + STATE(6833), 1, + sym_block, + STATE(7405), 1, + sym_comment, + [237374] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8082), 1, + sym__entry_separator, + ACTIONS(8084), 1, anon_sym_RBRACK, + STATE(7406), 1, + sym_comment, + [237387] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6012), 1, sym__entry_separator, - [235628] = 4, + STATE(3034), 1, + aux_sym__multiple_types_repeat1, + STATE(7407), 1, + sym_comment, + [237400] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6202), 1, + anon_sym_LBRACE, + STATE(6780), 1, + sym_block, + STATE(7408), 1, + sym_comment, + [237413] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11162), 1, - sym__table_head_separator, - STATE(7139), 1, + ACTIONS(7753), 1, + sym__entry_separator, + ACTIONS(7757), 1, + anon_sym_RBRACK, + STATE(7409), 1, sym_comment, - ACTIONS(1070), 2, + [237426] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(2250), 1, + anon_sym_LBRACE, + ACTIONS(2252), 1, + aux_sym_unquoted_token2, + STATE(7410), 1, + sym_comment, + [237439] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1850), 1, + anon_sym_LBRACE, + ACTIONS(1852), 1, + aux_sym_unquoted_token2, + STATE(7411), 1, + sym_comment, + [237452] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11521), 1, + sym__newline, + ACTIONS(11523), 1, + sym__space, + STATE(7412), 1, + sym_comment, + [237465] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6202), 1, + anon_sym_LBRACE, + STATE(7230), 1, + sym_block, + STATE(7413), 1, + sym_comment, + [237478] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11525), 1, anon_sym_RBRACK, + ACTIONS(11527), 1, sym__entry_separator, - [235642] = 5, - ACTIONS(247), 1, + STATE(7414), 1, + sym_comment, + [237491] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8900), 1, - anon_sym_LBRACK, - STATE(6830), 1, - sym_val_list, - STATE(7140), 1, + ACTIONS(5107), 1, + sym__entry_separator, + ACTIONS(5110), 1, + anon_sym_RBRACE, + STATE(7415), 1, sym_comment, - STATE(7180), 1, - aux_sym_val_table_repeat1, - [235658] = 5, - ACTIONS(247), 1, + [237504] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8900), 1, - anon_sym_LBRACK, - STATE(6832), 1, - sym_val_list, - STATE(7141), 1, + ACTIONS(11529), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7416), 1, sym_comment, - STATE(7180), 1, - aux_sym_val_table_repeat1, - [235674] = 5, - ACTIONS(247), 1, + STATE(7444), 1, + aux_sym__unquoted_with_expr_repeat1, + [237517] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8900), 1, - anon_sym_LBRACK, - STATE(6836), 1, - sym_val_list, - STATE(7142), 1, + ACTIONS(11531), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7417), 1, sym_comment, - STATE(7180), 1, - aux_sym_val_table_repeat1, - [235690] = 5, - ACTIONS(247), 1, + STATE(7445), 1, + aux_sym__unquoted_with_expr_repeat1, + [237530] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, - anon_sym_LBRACK, - STATE(6837), 1, - sym_val_list, - STATE(7143), 1, + ACTIONS(6202), 1, + anon_sym_LBRACE, + STATE(7119), 1, + sym_block, + STATE(7418), 1, sym_comment, - STATE(7180), 1, - aux_sym_val_table_repeat1, - [235706] = 4, + [237543] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11164), 1, - sym__table_head_separator, - STATE(7144), 1, + ACTIONS(2283), 1, + anon_sym_LPAREN2, + ACTIONS(2287), 1, + aux_sym__unquoted_in_record_token4, + STATE(7419), 1, sym_comment, - ACTIONS(1070), 2, + [237556] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11533), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7420), 1, + sym_comment, + STATE(7553), 1, + aux_sym__unquoted_with_expr_repeat1, + [237569] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11535), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7421), 1, + sym_comment, + STATE(7555), 1, + aux_sym__unquoted_with_expr_repeat1, + [237582] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5518), 1, + anon_sym_LPAREN2, + STATE(7422), 1, + sym_comment, + STATE(7657), 1, + sym__expr_parenthesized_immediate, + [237595] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5885), 1, anon_sym_RBRACK, + ACTIONS(5891), 1, sym__entry_separator, - [235720] = 4, + STATE(7423), 1, + sym_comment, + [237608] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11166), 1, - sym__table_head_separator, - STATE(7145), 1, + ACTIONS(11537), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7424), 1, sym_comment, - ACTIONS(1070), 2, - anon_sym_RBRACK, + STATE(7544), 1, + aux_sym__unquoted_with_expr_repeat1, + [237621] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2277), 1, + anon_sym_RBRACE, + ACTIONS(2279), 1, sym__entry_separator, - [235734] = 5, - ACTIONS(247), 1, + STATE(7425), 1, + sym_comment, + [237634] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8900), 1, - anon_sym_LBRACK, - STATE(6849), 1, - sym_val_list, - STATE(7146), 1, + ACTIONS(11539), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7426), 1, sym_comment, - STATE(7180), 1, - aux_sym_val_table_repeat1, - [235750] = 5, - ACTIONS(247), 1, + STATE(7541), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [237647] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8900), 1, - anon_sym_LBRACK, - STATE(6851), 1, - sym_val_list, - STATE(7147), 1, + ACTIONS(11541), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7427), 1, sym_comment, - STATE(7180), 1, - aux_sym_val_table_repeat1, - [235766] = 5, + STATE(7541), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [237660] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(2246), 1, + anon_sym_RBRACE, + ACTIONS(2250), 1, sym__entry_separator, - ACTIONS(11168), 1, + STATE(7428), 1, + sym_comment, + [237673] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6202), 1, + anon_sym_LBRACE, + STATE(7182), 1, + sym_block, + STATE(7429), 1, + sym_comment, + [237686] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8034), 1, + sym__entry_separator, + ACTIONS(8036), 1, anon_sym_RBRACK, - STATE(6611), 1, + STATE(7430), 1, + sym_comment, + [237699] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5707), 1, + sym__entry_separator, + STATE(2699), 1, aux_sym__multiple_types_repeat1, - STATE(7148), 1, + STATE(7431), 1, sym_comment, - [235782] = 5, - ACTIONS(247), 1, + [237712] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, - anon_sym_LBRACK, - STATE(6854), 1, - sym_val_list, - STATE(7149), 1, + ACTIONS(6211), 1, + anon_sym_LBRACE, + STATE(6216), 1, + sym_block, + STATE(7432), 1, sym_comment, - STATE(7180), 1, - aux_sym_val_table_repeat1, - [235798] = 5, - ACTIONS(247), 1, + [237725] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, - anon_sym_LBRACK, - STATE(6855), 1, - sym_val_list, - STATE(7150), 1, + ACTIONS(1630), 1, + anon_sym_LPAREN2, + STATE(7433), 1, sym_comment, - STATE(7180), 1, - aux_sym_val_table_repeat1, - [235814] = 4, + STATE(7774), 1, + sym__expr_parenthesized_immediate, + [237738] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11170), 1, - sym__table_head_separator, - STATE(7151), 1, - sym_comment, - ACTIONS(1070), 2, - anon_sym_RBRACK, + ACTIONS(2281), 1, + anon_sym_RBRACE, + ACTIONS(2285), 1, sym__entry_separator, - [235828] = 4, + STATE(7434), 1, + sym_comment, + [237751] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11172), 1, - sym__table_head_separator, - STATE(7152), 1, + ACTIONS(11543), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7426), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + STATE(7435), 1, sym_comment, - ACTIONS(1070), 2, - anon_sym_RBRACK, - sym__entry_separator, - [235842] = 5, + [237764] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(2462), 1, + anon_sym_RBRACE, + ACTIONS(2464), 1, sym__entry_separator, - ACTIONS(11174), 1, + STATE(7436), 1, + sym_comment, + [237777] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5502), 1, anon_sym_RBRACK, - STATE(6612), 1, - aux_sym__multiple_types_repeat1, - STATE(7153), 1, + ACTIONS(5504), 1, + sym__entry_separator, + STATE(7437), 1, sym_comment, - [235858] = 5, - ACTIONS(247), 1, + [237790] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8900), 1, - anon_sym_LBRACK, - STATE(6865), 1, - sym_val_list, - STATE(7154), 1, + ACTIONS(11545), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7438), 1, sym_comment, - STATE(7180), 1, - aux_sym_val_table_repeat1, - [235874] = 5, - ACTIONS(247), 1, + STATE(7544), 1, + aux_sym__unquoted_with_expr_repeat1, + [237803] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8900), 1, - anon_sym_LBRACK, - STATE(6868), 1, - sym_val_list, - STATE(7155), 1, + ACTIONS(11547), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7439), 1, sym_comment, - STATE(7180), 1, - aux_sym_val_table_repeat1, - [235890] = 5, + STATE(7442), 1, + aux_sym__unquoted_with_expr_repeat1, + [237816] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, - sym__entry_separator, - ACTIONS(11176), 1, - anon_sym_RBRACK, - STATE(6071), 1, - aux_sym__multiple_types_repeat1, - STATE(7156), 1, + ACTIONS(11549), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7440), 1, + sym_comment, + STATE(7446), 1, + aux_sym__unquoted_with_expr_repeat1, + [237829] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6211), 1, + anon_sym_LBRACE, + STATE(6313), 1, + sym_block, + STATE(7441), 1, + sym_comment, + [237842] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11551), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7442), 1, + sym_comment, + STATE(7544), 1, + aux_sym__unquoted_with_expr_repeat1, + [237855] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5518), 1, + anon_sym_LPAREN2, + STATE(7443), 1, + sym_comment, + STATE(7518), 1, + sym__expr_parenthesized_immediate, + [237868] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11553), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7444), 1, + sym_comment, + STATE(7544), 1, + aux_sym__unquoted_with_expr_repeat1, + [237881] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11555), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7445), 1, + sym_comment, + STATE(7544), 1, + aux_sym__unquoted_with_expr_repeat1, + [237894] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11557), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7446), 1, sym_comment, - [235906] = 5, - ACTIONS(247), 1, + STATE(7544), 1, + aux_sym__unquoted_with_expr_repeat1, + [237907] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8900), 1, - anon_sym_LBRACK, - STATE(6870), 1, - sym_val_list, - STATE(7157), 1, + ACTIONS(11559), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(7447), 1, sym_comment, - STATE(7180), 1, - aux_sym_val_table_repeat1, - [235922] = 5, - ACTIONS(247), 1, + STATE(7502), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [237920] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, - anon_sym_LBRACK, - STATE(6871), 1, - sym_val_list, - STATE(7158), 1, + ACTIONS(3294), 1, + aux_sym_record_entry_token1, + ACTIONS(11561), 1, + anon_sym_make, + STATE(7448), 1, sym_comment, - STATE(7180), 1, - aux_sym_val_table_repeat1, - [235938] = 5, + [237933] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, - sym__entry_separator, - ACTIONS(11178), 1, - anon_sym_RBRACK, - STATE(6072), 1, - aux_sym__multiple_types_repeat1, - STATE(7159), 1, + ACTIONS(11563), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7449), 1, sym_comment, - [235954] = 5, + STATE(7495), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [237946] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, - sym__entry_separator, - ACTIONS(11180), 1, - anon_sym_RBRACK, - STATE(6402), 1, - aux_sym__multiple_types_repeat1, - STATE(7160), 1, + ACTIONS(11565), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7450), 1, sym_comment, - [235970] = 5, - ACTIONS(3), 1, + STATE(7496), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [237959] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5567), 1, - sym__entry_separator, - ACTIONS(11182), 1, - anon_sym_RBRACK, - STATE(6073), 1, - aux_sym__multiple_types_repeat1, - STATE(7161), 1, + ACTIONS(6211), 1, + anon_sym_LBRACE, + STATE(6242), 1, + sym_block, + STATE(7451), 1, sym_comment, - [235986] = 5, - ACTIONS(3), 1, + [237972] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5567), 1, - sym__entry_separator, - ACTIONS(11184), 1, - anon_sym_RBRACK, - STATE(6074), 1, - aux_sym__multiple_types_repeat1, - STATE(7162), 1, + ACTIONS(6211), 1, + anon_sym_LBRACE, + STATE(6249), 1, + sym_block, + STATE(7452), 1, sym_comment, - [236002] = 5, + [237985] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(1842), 1, + anon_sym_RBRACE, + ACTIONS(1850), 1, sym__entry_separator, - ACTIONS(11186), 1, - anon_sym_RBRACK, - STATE(6075), 1, - aux_sym__multiple_types_repeat1, - STATE(7163), 1, + STATE(7453), 1, sym_comment, - [236018] = 3, - ACTIONS(247), 1, + [237998] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(7164), 1, + ACTIONS(6211), 1, + anon_sym_LBRACE, + STATE(6734), 1, + sym_block, + STATE(7454), 1, sym_comment, - ACTIONS(9814), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [236030] = 5, - ACTIONS(3), 1, + [238011] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3583), 1, - sym__newline, - ACTIONS(3585), 1, - sym__space, - STATE(1047), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(7165), 1, + ACTIONS(6211), 1, + anon_sym_LBRACE, + STATE(6735), 1, + sym_block, + STATE(7455), 1, sym_comment, - [236046] = 3, + [238024] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(7166), 1, + ACTIONS(11567), 1, + anon_sym_RBRACK, + ACTIONS(11569), 1, + sym__entry_separator, + STATE(7456), 1, sym_comment, - ACTIONS(2253), 3, - sym_identifier, - anon_sym_DOLLAR, - aux_sym_unquoted_token4, - [236058] = 5, + [238037] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5901), 1, + ACTIONS(2293), 1, anon_sym_RBRACE, - ACTIONS(5903), 1, + ACTIONS(2297), 1, sym__entry_separator, - STATE(2958), 1, - aux_sym__multiple_types_repeat1, - STATE(7167), 1, + STATE(7457), 1, sym_comment, - [236074] = 3, - ACTIONS(247), 1, + [238050] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7168), 1, + ACTIONS(2303), 1, + anon_sym_RBRACE, + ACTIONS(2305), 1, + sym__entry_separator, + STATE(7458), 1, sym_comment, - ACTIONS(1044), 3, - anon_sym_QMARK2, - anon_sym_DOT, - sym__table_head_separator, - [236086] = 3, - ACTIONS(247), 1, + [238063] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7169), 1, + ACTIONS(1090), 1, + anon_sym_in, + ACTIONS(2275), 1, + aux_sym_unquoted_token4, + STATE(7459), 1, sym_comment, - ACTIONS(9744), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [236098] = 5, + [238076] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4898), 1, - sym__space, - ACTIONS(4900), 1, - sym__newline, - ACTIONS(11188), 1, - anon_sym_EQ2, - STATE(7170), 1, + ACTIONS(11571), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7460), 1, + sym_comment, + STATE(7493), 1, + aux_sym__unquoted_with_expr_repeat1, + [238089] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6211), 1, + anon_sym_LBRACE, + STATE(6487), 1, + sym_block, + STATE(7461), 1, sym_comment, - [236114] = 4, - ACTIONS(247), 1, + [238102] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1667), 1, + ACTIONS(1640), 1, + anon_sym_in, + ACTIONS(6929), 1, aux_sym_unquoted_token2, - STATE(7171), 1, + STATE(7462), 1, sym_comment, - ACTIONS(1669), 2, - anon_sym_LBRACE, - anon_sym_LPAREN2, - [236128] = 5, - ACTIONS(3), 1, + [238115] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1562), 1, + ACTIONS(4433), 1, anon_sym_LPAREN2, - ACTIONS(1574), 1, - aux_sym__unquoted_in_record_token4, - STATE(7172), 1, - sym_comment, - STATE(7334), 1, + STATE(7416), 1, sym__expr_parenthesized_immediate, - [236144] = 3, - ACTIONS(247), 1, + STATE(7463), 1, + sym_comment, + [238128] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(7173), 1, + ACTIONS(6211), 1, + anon_sym_LBRACE, + STATE(6500), 1, + sym_block, + STATE(7464), 1, sym_comment, - ACTIONS(10441), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [236156] = 5, + [238141] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(2458), 1, + anon_sym_RBRACE, + ACTIONS(2460), 1, sym__entry_separator, - ACTIONS(11190), 1, - anon_sym_RBRACK, - STATE(2630), 1, - aux_sym__multiple_types_repeat1, - STATE(7174), 1, + STATE(7465), 1, sym_comment, - [236172] = 3, - ACTIONS(247), 1, + [238154] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7175), 1, + ACTIONS(6494), 1, + sym__entry_separator, + STATE(3470), 1, + aux_sym__multiple_types_repeat1, + STATE(7466), 1, sym_comment, - ACTIONS(10541), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [236184] = 4, + [238167] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11192), 1, - anon_sym_LPAREN, - STATE(7176), 1, + ACTIONS(11573), 1, + sym__newline, + ACTIONS(11575), 1, + sym__space, + STATE(7467), 1, sym_comment, - ACTIONS(11194), 2, - sym_unescaped_interpolated_content, - anon_sym_SQUOTE, - [236198] = 5, - ACTIONS(247), 1, + [238180] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, - anon_sym_LBRACK, - STATE(6792), 1, - sym_val_list, - STATE(7177), 1, + ACTIONS(6202), 1, + anon_sym_LBRACE, + STATE(6810), 1, + sym_block, + STATE(7468), 1, sym_comment, - STATE(7180), 1, - aux_sym_val_table_repeat1, - [236214] = 5, - ACTIONS(3), 1, + [238193] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5567), 1, - sym__entry_separator, - ACTIONS(11196), 1, - anon_sym_RBRACK, - STATE(6354), 1, - aux_sym__multiple_types_repeat1, - STATE(7178), 1, + ACTIONS(1630), 1, + anon_sym_LPAREN2, + STATE(7449), 1, + sym__expr_parenthesized_immediate, + STATE(7469), 1, sym_comment, - [236230] = 3, - ACTIONS(247), 1, + [238206] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(7179), 1, + ACTIONS(6211), 1, + anon_sym_LBRACE, + STATE(6352), 1, + sym_block, + STATE(7470), 1, sym_comment, - ACTIONS(11198), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [236242] = 4, - ACTIONS(247), 1, + [238219] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11200), 1, - anon_sym_LBRACK, - STATE(7295), 1, - sym_val_list, - STATE(7180), 2, + ACTIONS(6202), 1, + anon_sym_LBRACE, + STATE(6824), 1, + sym_block, + STATE(7471), 1, sym_comment, - aux_sym_val_table_repeat1, - [236256] = 5, + [238232] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11577), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7472), 1, + sym_comment, + STATE(7499), 1, + aux_sym__unquoted_with_expr_repeat1, + [238245] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(5672), 1, sym__entry_separator, - ACTIONS(11203), 1, - anon_sym_RBRACK, - STATE(6089), 1, + STATE(2696), 1, aux_sym__multiple_types_repeat1, - STATE(7181), 1, + STATE(7473), 1, sym_comment, - [236272] = 5, - ACTIONS(247), 1, + [238258] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8900), 1, - anon_sym_LBRACK, - STATE(6887), 1, - sym_val_list, - STATE(7180), 1, - aux_sym_val_table_repeat1, - STATE(7182), 1, + ACTIONS(1558), 1, + aux_sym_unquoted_token2, + ACTIONS(2339), 1, + anon_sym_LBRACE, + STATE(7474), 1, sym_comment, - [236288] = 5, + [238271] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5547), 1, - sym__entry_separator, - ACTIONS(11205), 1, - anon_sym_RBRACK, - STATE(2614), 1, - aux_sym__multiple_types_repeat1, - STATE(7183), 1, + ACTIONS(2283), 1, + anon_sym_LPAREN2, + ACTIONS(2287), 1, + aux_sym__unquoted_in_list_token4, + STATE(7475), 1, sym_comment, - [236304] = 3, - ACTIONS(247), 1, + [238284] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(7184), 1, + ACTIONS(6202), 1, + anon_sym_LBRACE, + STATE(4951), 1, + sym_block, + STATE(7476), 1, sym_comment, - ACTIONS(11207), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [236316] = 3, - ACTIONS(247), 1, + [238297] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(7185), 1, + ACTIONS(1640), 1, + anon_sym_LBRACE, + ACTIONS(8580), 1, + aux_sym_unquoted_token2, + STATE(7477), 1, sym_comment, - ACTIONS(11209), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [236328] = 5, + [238310] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, + ACTIONS(11579), 1, + anon_sym_RBRACE, + ACTIONS(11581), 1, sym__entry_separator, - ACTIONS(11211), 1, - anon_sym_RBRACK, - STATE(6555), 1, - aux_sym__multiple_types_repeat1, - STATE(7186), 1, + STATE(7478), 1, sym_comment, - [236344] = 4, + [238323] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11213), 1, + ACTIONS(11583), 1, aux_sym__unquoted_with_expr_token1, - STATE(7187), 1, + STATE(7479), 1, sym_comment, - STATE(7268), 1, + STATE(7500), 1, aux_sym__unquoted_with_expr_repeat1, - [236357] = 4, - ACTIONS(247), 1, + [238336] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6055), 1, + ACTIONS(6211), 1, anon_sym_LBRACE, - STATE(6257), 1, + STATE(4862), 1, sym_block, - STATE(7188), 1, + STATE(7480), 1, + sym_comment, + [238349] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11585), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(7481), 1, sym_comment, - [236370] = 4, - ACTIONS(247), 1, + STATE(7523), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [238362] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, + ACTIONS(4433), 1, anon_sym_LPAREN2, - STATE(7189), 1, + STATE(7482), 1, sym_comment, - STATE(7682), 1, + STATE(7603), 1, sym__expr_parenthesized_immediate, - [236383] = 4, - ACTIONS(247), 1, + [238375] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6057), 1, + ACTIONS(6211), 1, anon_sym_LBRACE, - STATE(6981), 1, + STATE(6198), 1, sym_block, - STATE(7190), 1, + STATE(7483), 1, sym_comment, - [236396] = 4, + [238388] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7067), 1, + ACTIONS(7818), 1, anon_sym_RBRACK, - ACTIONS(7069), 1, + ACTIONS(7820), 1, sym__entry_separator, - STATE(7191), 1, + STATE(7484), 1, sym_comment, - [236409] = 4, - ACTIONS(247), 1, + [238401] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6055), 1, + ACTIONS(6211), 1, anon_sym_LBRACE, - STATE(6451), 1, + STATE(6199), 1, sym_block, - STATE(7192), 1, + STATE(7485), 1, sym_comment, - [236422] = 4, - ACTIONS(247), 1, + [238414] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4940), 1, - anon_sym_in, - ACTIONS(11215), 1, - anon_sym_EQ2, - STATE(7193), 1, + ACTIONS(6211), 1, + anon_sym_LBRACE, + STATE(6291), 1, + sym_block, + STATE(7486), 1, sym_comment, - [236435] = 4, - ACTIONS(247), 1, + [238427] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5441), 1, - anon_sym_LPAREN2, - STATE(7194), 1, + ACTIONS(6211), 1, + anon_sym_LBRACE, + STATE(6297), 1, + sym_block, + STATE(7487), 1, sym_comment, - STATE(7216), 1, - sym__expr_parenthesized_immediate, - [236448] = 4, + [238440] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11217), 1, - anon_sym_RBRACK, - ACTIONS(11219), 1, - sym__entry_separator, - STATE(7195), 1, + ACTIONS(11587), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(7488), 1, sym_comment, - [236461] = 4, - ACTIONS(247), 1, + STATE(7523), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + [238453] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6057), 1, + ACTIONS(6211), 1, anon_sym_LBRACE, - STATE(7173), 1, + STATE(6326), 1, sym_block, - STATE(7196), 1, + STATE(7489), 1, sym_comment, - [236474] = 4, - ACTIONS(3), 1, + [238466] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1572), 1, - aux_sym_record_entry_token1, - ACTIONS(9740), 1, - aux_sym_cmd_identifier_token37, - STATE(7197), 1, + ACTIONS(5518), 1, + anon_sym_LPAREN2, + STATE(7447), 1, + sym__expr_parenthesized_immediate, + STATE(7490), 1, + sym_comment, + [238479] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6202), 1, + anon_sym_LBRACE, + STATE(7186), 1, + sym_block, + STATE(7491), 1, sym_comment, - [236487] = 4, + [238492] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11221), 1, + ACTIONS(9767), 1, anon_sym_RBRACE, - ACTIONS(11223), 1, + ACTIONS(9769), 1, sym__entry_separator, - STATE(7198), 1, + STATE(7492), 1, sym_comment, - [236500] = 4, + [238505] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11225), 1, + ACTIONS(11589), 1, aux_sym__unquoted_with_expr_token1, - STATE(7199), 1, + STATE(7493), 1, sym_comment, - STATE(7268), 1, + STATE(7544), 1, aux_sym__unquoted_with_expr_repeat1, - [236513] = 4, + [238518] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11591), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7427), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + STATE(7494), 1, + sym_comment, + [238531] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11593), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7495), 1, + sym_comment, + STATE(7541), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [238544] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11227), 1, + ACTIONS(11595), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7496), 1, + sym_comment, + STATE(7541), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [238557] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11597), 1, + anon_sym_RBRACK, + ACTIONS(11599), 1, + sym__entry_separator, + STATE(7497), 1, + sym_comment, + [238570] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6202), 1, + anon_sym_LBRACE, + STATE(7078), 1, + sym_block, + STATE(7498), 1, + sym_comment, + [238583] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11601), 1, aux_sym__unquoted_with_expr_token1, - STATE(7200), 1, + STATE(7499), 1, sym_comment, - STATE(7268), 1, + STATE(7544), 1, aux_sym__unquoted_with_expr_repeat1, - [236526] = 3, - ACTIONS(247), 1, + [238596] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7201), 1, + ACTIONS(11603), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7500), 1, sym_comment, - ACTIONS(11229), 2, - anon_sym_RBRACK, - sym_hex_digit, - [236537] = 4, + STATE(7544), 1, + aux_sym__unquoted_with_expr_repeat1, + [238609] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2253), 1, + ACTIONS(2335), 1, anon_sym_RBRACE, - ACTIONS(2255), 1, + ACTIONS(2339), 1, sym__entry_separator, - STATE(7202), 1, + STATE(7501), 1, sym_comment, - [236550] = 4, + [238622] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11231), 1, + ACTIONS(11605), 1, aux_sym__unquoted_in_list_with_expr_token1, - STATE(7203), 1, + STATE(7502), 1, sym_comment, - STATE(7338), 1, + STATE(7523), 1, aux_sym__unquoted_in_list_with_expr_repeat1, - [236563] = 4, - ACTIONS(3), 1, + [238635] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11233), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7204), 1, + ACTIONS(1558), 1, + aux_sym_unquoted_token2, + ACTIONS(2337), 1, + anon_sym_LPAREN2, + STATE(7503), 1, sym_comment, - STATE(7325), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [236576] = 4, - ACTIONS(247), 1, + [238648] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6057), 1, + ACTIONS(6202), 1, anon_sym_LBRACE, - STATE(6909), 1, + STATE(7079), 1, sym_block, - STATE(7205), 1, + STATE(7504), 1, sym_comment, - [236589] = 4, - ACTIONS(247), 1, + [238661] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6057), 1, + ACTIONS(6202), 1, anon_sym_LBRACE, - STATE(6912), 1, + STATE(7196), 1, sym_block, - STATE(7206), 1, + STATE(7505), 1, sym_comment, - [236602] = 4, + [238674] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2231), 1, - anon_sym_LPAREN2, - ACTIONS(2235), 1, - aux_sym__unquoted_in_list_token4, - STATE(7207), 1, + ACTIONS(2063), 1, + anon_sym_RBRACE, + ACTIONS(2065), 1, + sym__entry_separator, + STATE(7506), 1, sym_comment, - [236615] = 4, + [238687] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5107), 1, - sym__entry_separator, - ACTIONS(5109), 1, + ACTIONS(7242), 1, anon_sym_RBRACK, - STATE(7208), 1, + ACTIONS(7244), 1, + sym__entry_separator, + STATE(7507), 1, + sym_comment, + [238700] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6202), 1, + anon_sym_LBRACE, + STATE(7082), 1, + sym_block, + STATE(7508), 1, + sym_comment, + [238713] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + STATE(7509), 1, sym_comment, - [236628] = 4, + STATE(7791), 1, + sym__expr_parenthesized_immediate, + [238726] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5095), 1, + STATE(7510), 1, + sym_comment, + ACTIONS(2289), 2, + anon_sym_in, + aux_sym_unquoted_token4, + [238737] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2490), 1, + anon_sym_RBRACE, + ACTIONS(2492), 1, sym__entry_separator, - ACTIONS(5097), 1, - anon_sym_RBRACK, - STATE(7209), 1, + STATE(7511), 1, + sym_comment, + [238750] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6211), 1, + anon_sym_LBRACE, + STATE(6397), 1, + sym_block, + STATE(7512), 1, + sym_comment, + [238763] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3933), 1, + sym__space, + STATE(1077), 1, + aux_sym_pipe_element_repeat1, + STATE(7513), 1, sym_comment, - [236641] = 4, + [238776] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11235), 1, + ACTIONS(11607), 1, aux_sym__unquoted_in_list_with_expr_token1, - STATE(7210), 1, + STATE(7514), 1, sym_comment, - STATE(7338), 1, + STATE(7523), 1, aux_sym__unquoted_in_list_with_expr_repeat1, - [236654] = 4, - ACTIONS(247), 1, + [238789] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5441), 1, - anon_sym_LPAREN2, - STATE(7211), 1, + ACTIONS(4945), 1, + anon_sym_LBRACE, + ACTIONS(11609), 1, + anon_sym_EQ2, + STATE(7515), 1, sym_comment, - STATE(7567), 1, - sym__expr_parenthesized_immediate, - [236667] = 4, - ACTIONS(247), 1, + [238802] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - STATE(7212), 1, + ACTIONS(11611), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7516), 1, sym_comment, - STATE(7299), 1, - sym__expr_parenthesized_immediate, - [236680] = 4, + STATE(7544), 1, + aux_sym__unquoted_with_expr_repeat1, + [238815] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11613), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7517), 1, + sym_comment, + STATE(7544), 1, + aux_sym__unquoted_with_expr_repeat1, + [238828] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11615), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(7481), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + STATE(7518), 1, + sym_comment, + [238841] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5132), 1, + ACTIONS(2196), 1, + anon_sym_RBRACE, + ACTIONS(2198), 1, sym__entry_separator, - ACTIONS(5134), 1, - anon_sym_RBRACK, - STATE(7213), 1, + STATE(7519), 1, sym_comment, - [236693] = 4, - ACTIONS(247), 1, + [238854] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6057), 1, + ACTIONS(6211), 1, anon_sym_LBRACE, - STATE(6989), 1, + STATE(6398), 1, sym_block, - STATE(7214), 1, + STATE(7520), 1, sym_comment, - [236706] = 4, + [238867] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7907), 1, - sym__entry_separator, - ACTIONS(7909), 1, - anon_sym_RBRACK, - STATE(7215), 1, + ACTIONS(2281), 1, + anon_sym_in, + ACTIONS(2287), 1, + aux_sym_unquoted_token4, + STATE(7521), 1, + sym_comment, + [238880] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6211), 1, + anon_sym_LBRACE, + STATE(6400), 1, + sym_block, + STATE(7522), 1, sym_comment, - [236719] = 4, + [238893] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11237), 1, + ACTIONS(11617), 1, aux_sym__unquoted_in_list_with_expr_token1, - STATE(7203), 1, + STATE(7523), 2, + sym_comment, aux_sym__unquoted_in_list_with_expr_repeat1, - STATE(7216), 1, + [238904] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + STATE(7420), 1, + sym__expr_parenthesized_immediate, + STATE(7524), 1, sym_comment, - [236732] = 4, + [238917] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7913), 1, - sym__entry_separator, - ACTIONS(7915), 1, + ACTIONS(11620), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(7514), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + STATE(7525), 1, + sym_comment, + [238930] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1630), 1, + anon_sym_LPAREN2, + STATE(7526), 1, + sym_comment, + STATE(7569), 1, + sym__expr_parenthesized_immediate, + [238943] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5570), 1, anon_sym_RBRACK, - STATE(7217), 1, + ACTIONS(5572), 1, + sym__entry_separator, + STATE(7527), 1, sym_comment, - [236745] = 4, - ACTIONS(247), 1, + [238956] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6057), 1, + ACTIONS(6211), 1, anon_sym_LBRACE, - STATE(6841), 1, + STATE(6420), 1, sym_block, - STATE(7218), 1, + STATE(7528), 1, sym_comment, - [236758] = 4, - ACTIONS(247), 1, + [238969] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6055), 1, - anon_sym_LBRACE, - STATE(4687), 1, - sym_block, - STATE(7219), 1, + ACTIONS(5601), 1, + anon_sym_RBRACK, + ACTIONS(5603), 1, + sym__entry_separator, + STATE(7529), 1, sym_comment, - [236771] = 4, + [238982] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2231), 1, - anon_sym_LPAREN2, - ACTIONS(2235), 1, - aux_sym__unquoted_in_record_token4, - STATE(7220), 1, + ACTIONS(2289), 1, + anon_sym_RBRACE, + ACTIONS(2291), 1, + sym__entry_separator, + STATE(7530), 1, sym_comment, - [236784] = 3, + [238995] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(7221), 1, + ACTIONS(1788), 1, + anon_sym_RBRACE, + ACTIONS(1796), 1, + sym__entry_separator, + STATE(7531), 1, sym_comment, - ACTIONS(2253), 2, - anon_sym_in, - aux_sym_unquoted_token4, - [236795] = 4, + [239008] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6412), 1, - anon_sym_LPAREN2, - ACTIONS(11239), 1, - aux_sym__record_key_token1, - STATE(7222), 1, + ACTIONS(6494), 1, + sym__entry_separator, + STATE(6811), 1, + aux_sym__multiple_types_repeat1, + STATE(7532), 1, sym_comment, - [236808] = 4, - ACTIONS(247), 1, + [239021] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5441), 1, + ACTIONS(4433), 1, anon_sym_LPAREN2, - STATE(7223), 1, + STATE(7533), 1, sym_comment, - STATE(7361), 1, + STATE(7582), 1, sym__expr_parenthesized_immediate, - [236821] = 4, + [239034] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11241), 1, + ACTIONS(11622), 1, aux_sym__unquoted_with_expr_token1, - STATE(7224), 1, + STATE(7534), 1, sym_comment, - STATE(7237), 1, + STATE(7564), 1, aux_sym__unquoted_with_expr_repeat1, - [236834] = 4, + [239047] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11243), 1, + ACTIONS(11624), 1, aux_sym__unquoted_with_expr_token1, - STATE(7225), 1, + STATE(7535), 1, sym_comment, - STATE(7239), 1, + STATE(7566), 1, aux_sym__unquoted_with_expr_repeat1, - [236847] = 4, + [239060] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2297), 1, + ACTIONS(2293), 1, + anon_sym_in, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + STATE(7536), 1, + sym_comment, + [239073] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + ACTIONS(2303), 1, + anon_sym_in, + STATE(7537), 1, + sym_comment, + [239086] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6202), 1, + anon_sym_LBRACE, + STATE(7394), 1, + sym_block, + STATE(7538), 1, + sym_comment, + [239099] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9867), 1, anon_sym_RBRACE, - ACTIONS(2301), 1, + ACTIONS(9869), 1, sym__entry_separator, - STATE(7226), 1, + STATE(7539), 1, sym_comment, - [236860] = 4, - ACTIONS(247), 1, + [239112] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3231), 1, - aux_sym_record_entry_token1, - ACTIONS(11245), 1, - anon_sym_make, - STATE(7227), 1, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + STATE(7439), 1, + sym__expr_parenthesized_immediate, + STATE(7540), 1, sym_comment, - [236873] = 4, + [239125] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11247), 1, + ACTIONS(11626), 1, aux_sym__unquoted_in_record_with_expr_token1, - STATE(7228), 1, + STATE(7541), 2, sym_comment, - STATE(7325), 1, aux_sym__unquoted_in_record_with_expr_repeat1, - [236886] = 4, + [239136] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11249), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7199), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(7229), 1, + ACTIONS(2200), 1, + anon_sym_RBRACE, + ACTIONS(2202), 1, + sym__entry_separator, + STATE(7542), 1, + sym_comment, + [239149] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1526), 1, + aux_sym_unquoted_token2, + ACTIONS(1790), 1, + anon_sym_LPAREN2, + STATE(7543), 1, sym_comment, - [236899] = 4, + [239162] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11251), 1, + ACTIONS(11629), 1, aux_sym__unquoted_with_expr_token1, - STATE(7200), 1, + STATE(7544), 2, + sym_comment, aux_sym__unquoted_with_expr_repeat1, - STATE(7230), 1, + [239173] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6202), 1, + anon_sym_LBRACE, + STATE(6804), 1, + sym_block, + STATE(7545), 1, + sym_comment, + [239186] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + STATE(7534), 1, + sym__expr_parenthesized_immediate, + STATE(7546), 1, sym_comment, - [236912] = 4, - ACTIONS(247), 1, + [239199] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11253), 1, + ACTIONS(6202), 1, anon_sym_LBRACE, - STATE(4821), 1, + STATE(4963), 1, sym_block, - STATE(7231), 1, + STATE(7547), 1, sym_comment, - [236925] = 4, - ACTIONS(3), 1, + [239212] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11255), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7232), 1, + ACTIONS(2248), 1, + anon_sym_LPAREN2, + ACTIONS(2252), 1, + aux_sym_unquoted_token2, + STATE(7548), 1, sym_comment, - STATE(7325), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [236938] = 4, - ACTIONS(3), 1, + [239225] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(9562), 1, - anon_sym_RBRACE, - ACTIONS(9564), 1, - sym__entry_separator, - STATE(7233), 1, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + STATE(7549), 1, sym_comment, - [236951] = 4, - ACTIONS(3), 1, + STATE(7567), 1, + sym__expr_parenthesized_immediate, + [239238] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11257), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7234), 1, + ACTIONS(3296), 1, + aux_sym_record_entry_token1, + ACTIONS(11561), 1, + anon_sym_make, + STATE(7550), 1, sym_comment, - STATE(7367), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - [236964] = 3, - ACTIONS(247), 1, + [239251] = 4, + ACTIONS(249), 1, anon_sym_POUND, - STATE(7235), 1, + ACTIONS(6202), 1, + anon_sym_LBRACE, + STATE(7155), 1, + sym_block, + STATE(7551), 1, sym_comment, - ACTIONS(10638), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [236975] = 4, - ACTIONS(3), 1, + [239264] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11259), 1, - sym__newline, - ACTIONS(11261), 1, - sym__space, - STATE(7236), 1, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + STATE(7472), 1, + sym__expr_parenthesized_immediate, + STATE(7552), 1, sym_comment, - [236988] = 4, + [239277] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11263), 1, + ACTIONS(11632), 1, aux_sym__unquoted_with_expr_token1, - STATE(7237), 1, - sym_comment, - STATE(7268), 1, + STATE(7544), 1, aux_sym__unquoted_with_expr_repeat1, - [237001] = 4, + STATE(7553), 1, + sym_comment, + [239290] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6361), 1, - sym__entry_separator, - STATE(3453), 1, - aux_sym__multiple_types_repeat1, - STATE(7238), 1, + ACTIONS(1640), 1, + aux_sym_record_entry_token1, + ACTIONS(10256), 1, + aux_sym_cmd_identifier_token37, + STATE(7554), 1, sym_comment, - [237014] = 4, + [239303] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11265), 1, + ACTIONS(11634), 1, aux_sym__unquoted_with_expr_token1, - STATE(7239), 1, - sym_comment, - STATE(7268), 1, + STATE(7544), 1, aux_sym__unquoted_with_expr_repeat1, - [237027] = 4, - ACTIONS(3), 1, + STATE(7555), 1, + sym_comment, + [239316] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7927), 1, - sym__entry_separator, - ACTIONS(7929), 1, - anon_sym_RBRACK, - STATE(7240), 1, + ACTIONS(11636), 1, + anon_sym_DASH, + STATE(7556), 1, sym_comment, - [237040] = 4, - ACTIONS(3), 1, + STATE(7758), 1, + sym_param_short_flag, + [239329] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7931), 1, - sym__entry_separator, - ACTIONS(7933), 1, - anon_sym_RBRACK, - STATE(7241), 1, + ACTIONS(4433), 1, + anon_sym_LPAREN2, + STATE(7557), 1, + sym_comment, + STATE(7586), 1, + sym__expr_parenthesized_immediate, + [239342] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6202), 1, + anon_sym_LBRACE, + STATE(7161), 1, + sym_block, + STATE(7558), 1, sym_comment, - [237053] = 4, + [239355] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7935), 1, + ACTIONS(8086), 1, sym__entry_separator, - ACTIONS(7937), 1, + ACTIONS(8088), 1, anon_sym_RBRACK, - STATE(7242), 1, + STATE(7559), 1, sym_comment, - [237066] = 4, - ACTIONS(247), 1, + [239368] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6055), 1, + STATE(7560), 1, + sym_comment, + ACTIONS(9163), 2, + anon_sym_GT, + anon_sym_AT, + [239379] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(9314), 1, anon_sym_LBRACE, - STATE(6534), 1, - sym_block, - STATE(7243), 1, + STATE(6194), 1, + sym_val_record, + STATE(7561), 1, sym_comment, - [237079] = 4, + [239392] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5567), 1, - sym__entry_separator, - STATE(2668), 1, - aux_sym__multiple_types_repeat1, - STATE(7244), 1, + ACTIONS(6542), 1, + anon_sym_LPAREN2, + ACTIONS(11638), 1, + aux_sym__record_key_token1, + STATE(7562), 1, sym_comment, - [237092] = 4, - ACTIONS(3), 1, + [239405] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5099), 1, - sym__entry_separator, - ACTIONS(5101), 1, - anon_sym_RBRACK, - STATE(7245), 1, + ACTIONS(4945), 1, + anon_sym_in, + ACTIONS(11640), 1, + anon_sym_EQ2, + STATE(7563), 1, sym_comment, - [237105] = 4, + [239418] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7673), 1, - sym__entry_separator, - ACTIONS(7677), 1, - anon_sym_RBRACK, - STATE(7246), 1, + ACTIONS(11642), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7544), 1, + aux_sym__unquoted_with_expr_repeat1, + STATE(7564), 1, + sym_comment, + [239431] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + STATE(7565), 1, sym_comment, - [237118] = 4, + ACTIONS(11195), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [239442] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11267), 1, + ACTIONS(11644), 1, aux_sym__unquoted_with_expr_token1, - STATE(7247), 1, + STATE(7544), 1, + aux_sym__unquoted_with_expr_repeat1, + STATE(7566), 1, sym_comment, - STATE(7298), 1, + [239455] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11646), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7424), 1, aux_sym__unquoted_with_expr_repeat1, - [237131] = 4, - ACTIONS(247), 1, + STATE(7567), 1, + sym_comment, + [239468] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, + ACTIONS(1630), 1, anon_sym_LPAREN2, - STATE(7248), 1, - sym_comment, - STATE(7281), 1, + STATE(7435), 1, sym__expr_parenthesized_immediate, - [237144] = 4, + STATE(7568), 1, + sym_comment, + [239481] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11269), 1, - sym__newline, - ACTIONS(11271), 1, - sym__space, - STATE(7249), 1, + ACTIONS(11648), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7569), 1, sym_comment, - [237157] = 4, + STATE(7573), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [239494] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11273), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7250), 1, + ACTIONS(11650), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7570), 1, sym_comment, - STATE(7338), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - [237170] = 4, + STATE(7574), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [239507] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2287), 1, - anon_sym_RBRACE, - ACTIONS(2289), 1, + ACTIONS(2345), 1, sym__entry_separator, - STATE(7251), 1, - sym_comment, - [237183] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(1562), 1, - anon_sym_LPAREN2, - STATE(7252), 1, + STATE(565), 1, + aux_sym__multiple_types_repeat1, + STATE(7571), 1, sym_comment, - STATE(7285), 1, - sym__expr_parenthesized_immediate, - [237196] = 4, - ACTIONS(247), 1, + [239520] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6057), 1, + ACTIONS(6202), 1, anon_sym_LBRACE, - STATE(6639), 1, + STATE(7233), 1, sym_block, - STATE(7253), 1, - sym_comment, - [237209] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11275), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7254), 1, + STATE(7572), 1, sym_comment, - STATE(7266), 1, - aux_sym__unquoted_with_expr_repeat1, - [237222] = 4, + [239533] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1788), 1, - anon_sym_RBRACE, - ACTIONS(1796), 1, - sym__entry_separator, - STATE(7255), 1, + ACTIONS(11652), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7541), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + STATE(7573), 1, sym_comment, - [237235] = 4, + [239546] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7807), 1, - sym__entry_separator, - ACTIONS(7809), 1, - anon_sym_RBRACK, - STATE(7256), 1, + ACTIONS(11654), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7541), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + STATE(7574), 1, sym_comment, - [237248] = 4, - ACTIONS(3), 1, + [239559] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11277), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7257), 1, + ACTIONS(4989), 1, + anon_sym_LBRACE, + ACTIONS(11656), 1, + anon_sym_EQ2, + STATE(7575), 1, sym_comment, - STATE(7275), 1, - aux_sym__unquoted_with_expr_repeat1, - [237261] = 4, - ACTIONS(247), 1, + [239572] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6057), 1, + ACTIONS(6202), 1, anon_sym_LBRACE, - STATE(6896), 1, + STATE(6770), 1, sym_block, - STATE(7258), 1, + STATE(7576), 1, sym_comment, - [237274] = 4, - ACTIONS(247), 1, + [239585] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6057), 1, + ACTIONS(4989), 1, + anon_sym_in, + ACTIONS(11658), 1, + anon_sym_EQ2, + STATE(7577), 1, + sym_comment, + [239598] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6202), 1, anon_sym_LBRACE, - STATE(6659), 1, + STATE(6774), 1, sym_block, - STATE(7259), 1, + STATE(7578), 1, sym_comment, - [237287] = 4, - ACTIONS(247), 1, + [239611] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6057), 1, + STATE(7579), 1, + sym_comment, + ACTIONS(1362), 2, + anon_sym_POUND_BANG, + sym__newline, + [239622] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11660), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7438), 1, + aux_sym__unquoted_with_expr_repeat1, + STATE(7580), 1, + sym_comment, + [239635] = 4, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(1526), 1, + aux_sym_unquoted_token2, + ACTIONS(1796), 1, anon_sym_LBRACE, - STATE(6906), 1, - sym_block, - STATE(7260), 1, + STATE(7581), 1, sym_comment, - [237300] = 4, - ACTIONS(247), 1, + [239648] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1562), 1, - anon_sym_LPAREN2, - STATE(7261), 1, + ACTIONS(11662), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7582), 1, sym_comment, - STATE(7671), 1, - sym__expr_parenthesized_immediate, - [237313] = 4, + STATE(7589), 1, + aux_sym__unquoted_with_expr_repeat1, + [239661] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11279), 1, + ACTIONS(11664), 1, aux_sym__unquoted_with_expr_token1, - STATE(7262), 1, + STATE(7583), 1, sym_comment, - STATE(7346), 1, + STATE(7591), 1, aux_sym__unquoted_with_expr_repeat1, - [237326] = 4, - ACTIONS(247), 1, + [239674] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6055), 1, + ACTIONS(6211), 1, anon_sym_LBRACE, - STATE(6146), 1, + STATE(6718), 1, sym_block, - STATE(7263), 1, + STATE(7584), 1, sym_comment, - [237339] = 4, + [239687] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5103), 1, - sym__entry_separator, - ACTIONS(5105), 1, - anon_sym_RBRACK, - STATE(7264), 1, + ACTIONS(11666), 1, + sym__newline, + ACTIONS(11668), 1, + sym__space, + STATE(7585), 1, sym_comment, - [237352] = 4, - ACTIONS(247), 1, + [239700] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1798), 1, - aux_sym_unquoted_token2, - ACTIONS(2289), 1, - anon_sym_LBRACE, - STATE(7265), 1, + ACTIONS(11670), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7586), 1, sym_comment, - [237365] = 4, + STATE(7595), 1, + aux_sym__unquoted_with_expr_repeat1, + [239713] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11281), 1, + ACTIONS(11672), 1, aux_sym__unquoted_with_expr_token1, - STATE(7266), 1, - sym_comment, - STATE(7268), 1, + STATE(7516), 1, aux_sym__unquoted_with_expr_repeat1, - [237378] = 4, - ACTIONS(247), 1, + STATE(7587), 1, + sym_comment, + [239726] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6055), 1, - anon_sym_LBRACE, - STATE(4806), 1, - sym_block, - STATE(7267), 1, + ACTIONS(8078), 1, + sym__entry_separator, + ACTIONS(8080), 1, + anon_sym_RBRACK, + STATE(7588), 1, sym_comment, - [237391] = 3, + [239739] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11283), 1, + ACTIONS(11674), 1, aux_sym__unquoted_with_expr_token1, - STATE(7268), 2, - sym_comment, + STATE(7544), 1, aux_sym__unquoted_with_expr_repeat1, - [237402] = 4, - ACTIONS(247), 1, + STATE(7589), 1, + sym_comment, + [239752] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6057), 1, - anon_sym_LBRACE, - STATE(6988), 1, - sym_block, - STATE(7269), 1, + ACTIONS(11676), 1, + sym_identifier, + ACTIONS(11678), 1, + anon_sym_DOLLAR, + STATE(7590), 1, sym_comment, - [237415] = 4, - ACTIONS(247), 1, + [239765] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6055), 1, - anon_sym_LBRACE, - STATE(6450), 1, - sym_block, - STATE(7270), 1, + ACTIONS(11680), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7544), 1, + aux_sym__unquoted_with_expr_repeat1, + STATE(7591), 1, sym_comment, - [237428] = 4, - ACTIONS(247), 1, + [239778] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6057), 1, + ACTIONS(9217), 1, anon_sym_LBRACE, - STATE(7018), 1, - sym_block, - STATE(7271), 1, + STATE(7381), 1, + sym_val_record, + STATE(7592), 1, sym_comment, - [237441] = 4, + [239791] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2237), 1, - anon_sym_RBRACE, - ACTIONS(2241), 1, - sym__entry_separator, - STATE(7272), 1, - sym_comment, - [237454] = 4, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6057), 1, - anon_sym_LBRACE, - STATE(7175), 1, - sym_block, - STATE(7273), 1, + ACTIONS(11682), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(7488), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, + STATE(7593), 1, sym_comment, - [237467] = 4, - ACTIONS(247), 1, + [239804] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6055), 1, + ACTIONS(6211), 1, anon_sym_LBRACE, - STATE(6464), 1, + STATE(4858), 1, sym_block, - STATE(7274), 1, + STATE(7594), 1, sym_comment, - [237480] = 4, + [239817] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11286), 1, + ACTIONS(11684), 1, aux_sym__unquoted_with_expr_token1, - STATE(7268), 1, + STATE(7544), 1, aux_sym__unquoted_with_expr_repeat1, - STATE(7275), 1, + STATE(7595), 1, sym_comment, - [237493] = 4, + [239830] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2245), 1, - anon_sym_RBRACE, - ACTIONS(2247), 1, + ACTIONS(8116), 1, sym__entry_separator, - STATE(7276), 1, + ACTIONS(8118), 1, + anon_sym_RBRACK, + STATE(7596), 1, sym_comment, - [237506] = 4, - ACTIONS(247), 1, + [239843] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6055), 1, - anon_sym_LBRACE, - STATE(6468), 1, - sym_block, - STATE(7277), 1, + STATE(7597), 1, sym_comment, - [237519] = 4, - ACTIONS(247), 1, + ACTIONS(11686), 2, + anon_sym_RBRACK, + sym_hex_digit, + [239854] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6057), 1, + ACTIONS(1852), 1, + aux_sym_unquoted_token2, + ACTIONS(2279), 1, anon_sym_LBRACE, - STATE(6928), 1, - sym_block, - STATE(7278), 1, + STATE(7598), 1, sym_comment, - [237532] = 4, + [239867] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11288), 1, - anon_sym_RBRACK, - ACTIONS(11290), 1, + ACTIONS(8070), 1, sym__entry_separator, - STATE(7279), 1, + ACTIONS(8072), 1, + anon_sym_RBRACK, + STATE(7599), 1, sym_comment, - [237545] = 4, - ACTIONS(247), 1, + [239880] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1494), 1, - aux_sym_unquoted_token2, - ACTIONS(1780), 1, - anon_sym_LPAREN2, - STATE(7280), 1, + ACTIONS(8074), 1, + sym__entry_separator, + ACTIONS(8076), 1, + anon_sym_RBRACK, + STATE(7600), 1, sym_comment, - [237558] = 4, + [239893] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11292), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7281), 1, + ACTIONS(2283), 1, + anon_sym_LPAREN2, + ACTIONS(2287), 1, + aux_sym_unquoted_token4, + STATE(7601), 1, sym_comment, - STATE(7364), 1, - aux_sym__unquoted_with_expr_repeat1, - [237571] = 4, - ACTIONS(3), 1, + [239906] = 4, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11294), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7282), 1, + ACTIONS(1844), 1, + anon_sym_LPAREN2, + ACTIONS(1852), 1, + aux_sym_unquoted_token2, + STATE(7602), 1, sym_comment, - STATE(7376), 1, - aux_sym__unquoted_with_expr_repeat1, - [237584] = 4, + [239919] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11296), 1, + ACTIONS(11688), 1, aux_sym__unquoted_with_expr_token1, - STATE(7283), 1, - sym_comment, - STATE(7289), 1, + STATE(7517), 1, aux_sym__unquoted_with_expr_repeat1, - [237597] = 4, - ACTIONS(247), 1, + STATE(7603), 1, + sym_comment, + [239932] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6055), 1, - anon_sym_LBRACE, - STATE(6507), 1, - sym_block, - STATE(7284), 1, + ACTIONS(5590), 1, + anon_sym_RBRACK, + ACTIONS(5592), 1, + sym__entry_separator, + STATE(7604), 1, sym_comment, - [237610] = 4, + [239945] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11298), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7228), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - STATE(7285), 1, + ACTIONS(5594), 1, + anon_sym_RBRACK, + ACTIONS(5596), 1, + sym__entry_separator, + STATE(7605), 1, sym_comment, - [237623] = 4, + [239958] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11300), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7286), 1, + ACTIONS(11690), 1, + anon_sym_RBRACE, + ACTIONS(11692), 1, + sym__entry_separator, + STATE(7606), 1, sym_comment, - STATE(7365), 1, - aux_sym__unquoted_with_expr_repeat1, - [237636] = 4, - ACTIONS(247), 1, + [239971] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6055), 1, + ACTIONS(11694), 1, anon_sym_LBRACE, - STATE(6333), 1, - sym_block, - STATE(7287), 1, + STATE(7607), 1, sym_comment, - [237649] = 4, - ACTIONS(3), 1, + [239981] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5056), 1, - sym__entry_separator, - ACTIONS(5059), 1, - anon_sym_RBRACE, - STATE(7288), 1, + ACTIONS(11696), 1, + sym_raw_string_end, + STATE(7608), 1, + sym_comment, + [239991] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(2396), 1, + aux_sym_record_entry_token1, + STATE(7609), 1, sym_comment, - [237662] = 4, + [240001] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11302), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7268), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(7289), 1, + ACTIONS(2275), 1, + aux_sym_unquoted_token4, + STATE(7610), 1, sym_comment, - [237675] = 4, - ACTIONS(247), 1, + [240011] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6057), 1, + ACTIONS(11698), 1, + sym__table_head_separator, + STATE(7611), 1, + sym_comment, + [240021] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(11700), 1, + sym_param_short_flag_identifier, + STATE(7612), 1, + sym_comment, + [240031] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(11702), 1, anon_sym_LBRACE, - STATE(6793), 1, - sym_block, - STATE(7290), 1, + STATE(7613), 1, sym_comment, - [237688] = 4, - ACTIONS(3), 1, + [240041] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11304), 1, - sym__newline, - ACTIONS(11306), 1, - sym__space, - STATE(7291), 1, + ACTIONS(11704), 1, + anon_sym_in, + STATE(7614), 1, sym_comment, - [237701] = 4, - ACTIONS(247), 1, + [240051] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - STATE(7229), 1, - sym__expr_parenthesized_immediate, - STATE(7292), 1, + ACTIONS(11706), 1, + anon_sym_RBRACE, + STATE(7615), 1, sym_comment, - [237714] = 4, - ACTIONS(247), 1, + [240061] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1796), 1, - anon_sym_LBRACE, - ACTIONS(1798), 1, - aux_sym_unquoted_token2, - STATE(7293), 1, + ACTIONS(11708), 1, + aux_sym_cmd_identifier_token41, + STATE(7616), 1, sym_comment, - [237727] = 4, - ACTIONS(3), 1, + [240071] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1778), 1, + ACTIONS(11710), 1, + anon_sym_RPAREN, + STATE(7617), 1, + sym_comment, + [240081] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(11712), 1, anon_sym_RBRACE, - ACTIONS(1786), 1, - sym__entry_separator, - STATE(7294), 1, + STATE(7618), 1, sym_comment, - [237740] = 4, - ACTIONS(3), 1, + [240091] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5567), 1, - sym__entry_separator, - STATE(6963), 1, - aux_sym__multiple_types_repeat1, - STATE(7295), 1, + ACTIONS(11714), 1, + aux_sym_cmd_identifier_token41, + STATE(7619), 1, sym_comment, - [237753] = 4, - ACTIONS(3), 1, + [240101] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2229), 1, - anon_sym_in, - ACTIONS(2235), 1, - aux_sym_unquoted_token4, - STATE(7296), 1, + ACTIONS(11716), 1, + anon_sym_EQ_GT, + STATE(7620), 1, sym_comment, - [237766] = 4, - ACTIONS(247), 1, + [240111] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11253), 1, - anon_sym_LBRACE, - STATE(4944), 1, - sym_block, - STATE(7297), 1, + ACTIONS(11718), 1, + anon_sym_RPAREN, + STATE(7621), 1, sym_comment, - [237779] = 4, + [240121] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11308), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7268), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(7298), 1, + ACTIONS(4870), 1, + aux_sym_unquoted_token4, + STATE(7622), 1, sym_comment, - [237792] = 4, + [240131] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11310), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7299), 1, + ACTIONS(11720), 1, + sym__space, + STATE(7623), 1, sym_comment, - STATE(7303), 1, - aux_sym__unquoted_with_expr_repeat1, - [237805] = 4, - ACTIONS(247), 1, + [240141] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6057), 1, - anon_sym_LBRACE, - STATE(6980), 1, - sym_block, - STATE(7300), 1, + ACTIONS(11722), 1, + anon_sym_RBRACE, + STATE(7624), 1, sym_comment, - [237818] = 4, - ACTIONS(247), 1, + [240151] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11312), 1, - anon_sym_DASH, - STATE(7301), 1, + ACTIONS(11724), 1, + sym_raw_string_end, + STATE(7625), 1, sym_comment, - STATE(7448), 1, - sym_param_short_flag, - [237831] = 4, - ACTIONS(247), 1, + [240161] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - STATE(7302), 1, + ACTIONS(11726), 1, + anon_sym_RBRACK, + STATE(7626), 1, sym_comment, - STATE(7369), 1, - sym__expr_parenthesized_immediate, - [237844] = 4, - ACTIONS(3), 1, + [240171] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11314), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7268), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(7303), 1, + ACTIONS(11728), 1, + sym_raw_string_end, + STATE(7627), 1, sym_comment, - [237857] = 4, - ACTIONS(247), 1, + [240181] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8879), 1, - anon_sym_LBRACE, - STATE(6219), 1, - sym_val_record, - STATE(7304), 1, + ACTIONS(11730), 1, + anon_sym_RBRACE, + STATE(7628), 1, sym_comment, - [237870] = 4, - ACTIONS(3), 1, + [240191] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5903), 1, - sym__entry_separator, - STATE(3025), 1, - aux_sym__multiple_types_repeat1, - STATE(7305), 1, + ACTIONS(11732), 1, + anon_sym_RPAREN, + STATE(7629), 1, sym_comment, - [237883] = 4, - ACTIONS(247), 1, + [240201] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - STATE(7224), 1, - sym__expr_parenthesized_immediate, - STATE(7306), 1, + ACTIONS(1558), 1, + aux_sym_unquoted_token2, + STATE(7630), 1, sym_comment, - [237896] = 4, - ACTIONS(247), 1, + [240211] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4898), 1, - anon_sym_in, - ACTIONS(11316), 1, - anon_sym_EQ2, - STATE(7307), 1, + ACTIONS(11734), 1, + sym_raw_string_end, + STATE(7631), 1, sym_comment, - [237909] = 4, - ACTIONS(3), 1, + [240221] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11318), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7308), 1, + ACTIONS(6929), 1, + aux_sym_unquoted_token2, + STATE(7632), 1, sym_comment, - STATE(7309), 1, - aux_sym__unquoted_with_expr_repeat1, - [237922] = 4, - ACTIONS(3), 1, + [240231] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11320), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7268), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(7309), 1, + ACTIONS(561), 1, + anon_sym_RPAREN2, + STATE(7633), 1, sym_comment, - [237935] = 4, + [240241] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11322), 1, + ACTIONS(2230), 1, aux_sym__unquoted_in_record_with_expr_token1, - STATE(7232), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - STATE(7310), 1, + STATE(7634), 1, sym_comment, - [237948] = 4, - ACTIONS(247), 1, + [240251] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2301), 1, - anon_sym_LBRACE, - ACTIONS(2303), 1, - aux_sym_unquoted_token2, - STATE(7311), 1, + ACTIONS(11736), 1, + anon_sym_RBRACE, + STATE(7635), 1, sym_comment, - [237961] = 4, - ACTIONS(247), 1, + [240261] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - STATE(7282), 1, - sym__expr_parenthesized_immediate, - STATE(7312), 1, + ACTIONS(6985), 1, + aux_sym_unquoted_token4, + STATE(7636), 1, sym_comment, - [237974] = 4, - ACTIONS(3), 1, + [240271] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7811), 1, - sym__entry_separator, - ACTIONS(7813), 1, - anon_sym_RBRACK, - STATE(7313), 1, + ACTIONS(11738), 1, + sym__table_head_separator, + STATE(7637), 1, sym_comment, - [237987] = 4, - ACTIONS(3), 1, + [240281] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2237), 1, - anon_sym_in, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - STATE(7314), 1, + ACTIONS(11740), 1, + anon_sym_RBRACE, + STATE(7638), 1, sym_comment, - [238000] = 4, - ACTIONS(3), 1, + [240291] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - ACTIONS(2245), 1, - anon_sym_in, - STATE(7315), 1, + ACTIONS(11742), 1, + sym_raw_string_end, + STATE(7639), 1, sym_comment, - [238013] = 4, - ACTIONS(3), 1, + [240301] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(11744), 1, + aux_sym_record_entry_token1, + STATE(7640), 1, + sym_comment, + [240311] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2229), 1, + ACTIONS(11746), 1, anon_sym_RBRACE, - ACTIONS(2233), 1, - sym__entry_separator, - STATE(7316), 1, + STATE(7641), 1, sym_comment, - [238026] = 4, - ACTIONS(247), 1, + [240321] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - STATE(7317), 1, + ACTIONS(11748), 1, + sym__table_head_separator, + STATE(7642), 1, sym_comment, - STATE(7347), 1, - sym__expr_parenthesized_immediate, - [238039] = 4, - ACTIONS(247), 1, + [240331] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6055), 1, - anon_sym_LBRACE, - STATE(6609), 1, - sym_block, - STATE(7318), 1, + ACTIONS(11750), 1, + sym_raw_string_end, + STATE(7643), 1, sym_comment, - [238052] = 4, - ACTIONS(247), 1, + [240341] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1552), 1, + ACTIONS(11752), 1, + anon_sym_EQ, + STATE(7644), 1, + sym_comment, + [240351] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(6477), 1, aux_sym_unquoted_token2, - ACTIONS(2293), 1, - anon_sym_LPAREN2, - STATE(7319), 1, + STATE(7645), 1, sym_comment, - [238065] = 4, - ACTIONS(247), 1, + [240361] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - STATE(7247), 1, - sym__expr_parenthesized_immediate, - STATE(7320), 1, + ACTIONS(11754), 1, + anon_sym_RBRACK, + STATE(7646), 1, sym_comment, - [238078] = 4, - ACTIONS(247), 1, + [240371] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6057), 1, - anon_sym_LBRACE, - STATE(6931), 1, - sym_block, - STATE(7321), 1, + ACTIONS(11756), 1, + anon_sym_RPAREN, + STATE(7647), 1, sym_comment, - [238091] = 4, - ACTIONS(247), 1, + [240381] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3229), 1, - aux_sym_record_entry_token1, - ACTIONS(11245), 1, - anon_sym_make, - STATE(7322), 1, + ACTIONS(11758), 1, + anon_sym_RBRACE, + STATE(7648), 1, sym_comment, - [238104] = 4, - ACTIONS(247), 1, + [240391] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1562), 1, - anon_sym_LPAREN2, - STATE(7323), 1, + ACTIONS(11760), 1, + anon_sym_RBRACE, + STATE(7649), 1, sym_comment, - STATE(7334), 1, - sym__expr_parenthesized_immediate, - [238117] = 4, - ACTIONS(247), 1, + [240401] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1552), 1, - aux_sym_unquoted_token2, - ACTIONS(2295), 1, - anon_sym_LBRACE, - STATE(7324), 1, + ACTIONS(11762), 1, + anon_sym_RBRACK, + STATE(7650), 1, sym_comment, - [238130] = 3, - ACTIONS(3), 1, + [240411] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11324), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7325), 2, + ACTIONS(11764), 1, + sym_raw_string_end, + STATE(7651), 1, sym_comment, - aux_sym__unquoted_in_record_with_expr_repeat1, - [238141] = 4, - ACTIONS(247), 1, + [240421] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4898), 1, - anon_sym_LBRACE, - ACTIONS(11327), 1, - anon_sym_EQ2, - STATE(7326), 1, + ACTIONS(8643), 1, + aux_sym__unquoted_in_list_token2, + STATE(7652), 1, sym_comment, - [238154] = 4, - ACTIONS(247), 1, + [240431] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1572), 1, - anon_sym_LBRACE, - ACTIONS(8395), 1, + ACTIONS(1526), 1, aux_sym_unquoted_token2, - STATE(7327), 1, + STATE(7653), 1, sym_comment, - [238167] = 4, - ACTIONS(247), 1, + [240441] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3978), 1, - anon_sym_LPAREN2, - STATE(7254), 1, - sym__expr_parenthesized_immediate, - STATE(7328), 1, + ACTIONS(11766), 1, + sym_raw_string_end, + STATE(7654), 1, sym_comment, - [238180] = 4, - ACTIONS(247), 1, + [240451] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11329), 1, - sym_identifier, - ACTIONS(11331), 1, - anon_sym_DOLLAR, - STATE(7329), 1, + ACTIONS(11768), 1, + sym_raw_string_end, + STATE(7655), 1, sym_comment, - [238193] = 4, + [240461] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7744), 1, - anon_sym_RBRACK, - ACTIONS(7746), 1, - sym__entry_separator, - STATE(7330), 1, + ACTIONS(11294), 1, + aux_sym_cmd_identifier_token37, + STATE(7656), 1, sym_comment, - [238206] = 4, - ACTIONS(247), 1, + [240471] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6055), 1, - anon_sym_LBRACE, - STATE(6136), 1, - sym_block, - STATE(7331), 1, + ACTIONS(11770), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(7657), 1, sym_comment, - [238219] = 4, - ACTIONS(247), 1, + [240481] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6055), 1, - anon_sym_LBRACE, - STATE(6145), 1, - sym_block, - STATE(7332), 1, + ACTIONS(11772), 1, + anon_sym_RPAREN, + STATE(7658), 1, sym_comment, - [238232] = 4, - ACTIONS(247), 1, + [240491] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6057), 1, - anon_sym_LBRACE, - STATE(6840), 1, - sym_block, - STATE(7333), 1, + ACTIONS(4485), 1, + aux_sym_unquoted_token2, + STATE(7659), 1, sym_comment, - [238245] = 4, - ACTIONS(3), 1, + [240501] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11333), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7334), 1, + ACTIONS(11774), 1, + anon_sym_RPAREN, + STATE(7660), 1, sym_comment, - STATE(7362), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [238258] = 4, - ACTIONS(3), 1, + [240511] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11335), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7204), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - STATE(7335), 1, + ACTIONS(11776), 1, + sym_raw_string_end, + STATE(7661), 1, sym_comment, - [238271] = 4, - ACTIONS(247), 1, + [240521] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6055), 1, - anon_sym_LBRACE, - STATE(6195), 1, - sym_block, - STATE(7336), 1, + ACTIONS(11778), 1, + anon_sym_RPAREN, + STATE(7662), 1, sym_comment, - [238284] = 4, - ACTIONS(3), 1, + [240531] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2291), 1, + ACTIONS(11780), 1, anon_sym_RBRACE, - ACTIONS(2295), 1, - sym__entry_separator, - STATE(7337), 1, + STATE(7663), 1, sym_comment, - [238297] = 3, - ACTIONS(3), 1, + [240541] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11337), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7338), 2, + ACTIONS(11782), 1, + anon_sym_RBRACE, + STATE(7664), 1, sym_comment, - aux_sym__unquoted_in_list_with_expr_repeat1, - [238308] = 4, - ACTIONS(247), 1, + [240551] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6057), 1, - anon_sym_LBRACE, - STATE(6941), 1, - sym_block, - STATE(7339), 1, + ACTIONS(11784), 1, + anon_sym_RPAREN, + STATE(7665), 1, + sym_comment, + [240561] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(11786), 1, + anon_sym_make, + STATE(7666), 1, + sym_comment, + [240571] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(11788), 1, + anon_sym_RBRACK, + STATE(7667), 1, + sym_comment, + [240581] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(11790), 1, + anon_sym_RBRACE, + STATE(7668), 1, + sym_comment, + [240591] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(11792), 1, + sym_raw_string_end, + STATE(7669), 1, sym_comment, - [238321] = 4, + [240601] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3697), 1, - sym__space, - STATE(1056), 1, - aux_sym_pipe_element_repeat1, - STATE(7340), 1, + ACTIONS(5464), 1, + aux_sym_unquoted_token4, + STATE(7670), 1, sym_comment, - [238334] = 4, - ACTIONS(247), 1, + [240611] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6055), 1, - anon_sym_LBRACE, - STATE(6158), 1, - sym_block, - STATE(7341), 1, + ACTIONS(11794), 1, + anon_sym_RPAREN, + STATE(7671), 1, sym_comment, - [238347] = 4, - ACTIONS(247), 1, + [240621] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6055), 1, - anon_sym_LBRACE, - STATE(6167), 1, - sym_block, - STATE(7342), 1, + ACTIONS(11796), 1, + anon_sym_RBRACE, + STATE(7672), 1, sym_comment, - [238360] = 4, + [240631] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11340), 1, + ACTIONS(5027), 1, + aux_sym_cmd_identifier_token37, + STATE(7673), 1, + sym_comment, + [240641] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(11798), 1, anon_sym_RBRACE, - ACTIONS(11342), 1, - sym__entry_separator, - STATE(7343), 1, + STATE(7674), 1, sym_comment, - [238373] = 4, - ACTIONS(247), 1, + [240651] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2299), 1, - anon_sym_LPAREN2, - ACTIONS(2303), 1, - aux_sym_unquoted_token2, - STATE(7344), 1, + ACTIONS(11800), 1, + sym_raw_string_end, + STATE(7675), 1, sym_comment, - [238386] = 4, - ACTIONS(3), 1, + [240661] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5547), 1, - sym__entry_separator, - STATE(2675), 1, - aux_sym__multiple_types_repeat1, - STATE(7345), 1, + ACTIONS(7068), 1, + aux_sym_unquoted_token2, + STATE(7676), 1, sym_comment, - [238399] = 4, - ACTIONS(3), 1, + [240671] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11344), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7268), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(7346), 1, + ACTIONS(11802), 1, + sym_identifier, + STATE(7677), 1, sym_comment, - [238412] = 4, - ACTIONS(3), 1, + [240681] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11346), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7347), 1, + ACTIONS(11804), 1, + anon_sym_RBRACE, + STATE(7678), 1, sym_comment, - STATE(7359), 1, - aux_sym__unquoted_with_expr_repeat1, - [238425] = 4, - ACTIONS(3), 1, + [240691] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11348), 1, + ACTIONS(11806), 1, anon_sym_RBRACK, - ACTIONS(11350), 1, - sym__entry_separator, - STATE(7348), 1, + STATE(7679), 1, sym_comment, - [238438] = 4, - ACTIONS(3), 1, + [240701] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2336), 1, - sym__entry_separator, - STATE(620), 1, - aux_sym__multiple_types_repeat1, - STATE(7349), 1, + ACTIONS(11808), 1, + anon_sym_RPAREN, + STATE(7680), 1, sym_comment, - [238451] = 4, - ACTIONS(247), 1, + [240711] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6055), 1, - anon_sym_LBRACE, - STATE(6239), 1, - sym_block, - STATE(7350), 1, + ACTIONS(11810), 1, + anon_sym_GT, + STATE(7681), 1, sym_comment, - [238464] = 4, - ACTIONS(3), 1, + [240721] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1070), 1, - anon_sym_in, - ACTIONS(2227), 1, - aux_sym_unquoted_token4, - STATE(7351), 1, + ACTIONS(11812), 1, + sym_raw_string_end, + STATE(7682), 1, sym_comment, - [238477] = 4, - ACTIONS(3), 1, + [240731] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11352), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7352), 1, + ACTIONS(11814), 1, + anon_sym_RBRACE, + STATE(7683), 1, sym_comment, - STATE(7360), 1, - aux_sym__unquoted_with_expr_repeat1, - [238490] = 3, - ACTIONS(3), 1, + [240741] = 3, + ACTIONS(249), 1, anon_sym_POUND, - STATE(7353), 1, + ACTIONS(11816), 1, + anon_sym_RBRACE, + STATE(7684), 1, sym_comment, - ACTIONS(1307), 2, - anon_sym_POUND_BANG, - sym__newline, - [238501] = 4, - ACTIONS(247), 1, + [240751] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8804), 1, - anon_sym_LBRACE, - STATE(6673), 1, - sym_val_record, - STATE(7354), 1, + ACTIONS(4842), 1, + aux_sym_unquoted_token4, + STATE(7685), 1, sym_comment, - [238514] = 4, - ACTIONS(3), 1, + [240761] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5726), 1, + ACTIONS(11818), 1, anon_sym_RBRACK, - ACTIONS(5732), 1, - sym__entry_separator, - STATE(7355), 1, + STATE(7686), 1, sym_comment, - [238527] = 4, - ACTIONS(247), 1, + [240771] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4940), 1, - anon_sym_LBRACE, - ACTIONS(11354), 1, - anon_sym_EQ2, - STATE(7356), 1, + ACTIONS(11820), 1, + anon_sym_RBRACE, + STATE(7687), 1, sym_comment, - [238540] = 4, - ACTIONS(247), 1, + [240781] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1572), 1, - anon_sym_in, - ACTIONS(6790), 1, - aux_sym_unquoted_token2, - STATE(7357), 1, + ACTIONS(11822), 1, + anon_sym_RPAREN, + STATE(7688), 1, sym_comment, - [238553] = 4, - ACTIONS(247), 1, + [240791] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6055), 1, - anon_sym_LBRACE, - STATE(6319), 1, - sym_block, - STATE(7358), 1, + ACTIONS(1642), 1, + aux_sym__unquoted_in_record_token2, + STATE(7689), 1, sym_comment, - [238566] = 4, - ACTIONS(3), 1, + [240801] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11356), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7268), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(7359), 1, + ACTIONS(11824), 1, + anon_sym_RBRACE, + STATE(7690), 1, sym_comment, - [238579] = 4, - ACTIONS(3), 1, + [240811] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11358), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7268), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(7360), 1, + ACTIONS(11826), 1, + anon_sym_RBRACE, + STATE(7691), 1, sym_comment, - [238592] = 4, - ACTIONS(3), 1, + [240821] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11360), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7210), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - STATE(7361), 1, + ACTIONS(11828), 1, + sym_raw_string_end, + STATE(7692), 1, sym_comment, - [238605] = 4, - ACTIONS(3), 1, + [240831] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11362), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7325), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - STATE(7362), 1, + ACTIONS(11830), 1, + aux_sym_cmd_identifier_token41, + STATE(7693), 1, sym_comment, - [238618] = 4, - ACTIONS(247), 1, + [240841] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6055), 1, - anon_sym_LBRACE, - STATE(6445), 1, - sym_block, - STATE(7363), 1, + ACTIONS(11832), 1, + aux_sym_env_var_token2, + STATE(7694), 1, sym_comment, - [238631] = 4, - ACTIONS(3), 1, + [240851] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11364), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7268), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(7364), 1, + ACTIONS(11834), 1, + sym_raw_string_end, + STATE(7695), 1, sym_comment, - [238644] = 4, - ACTIONS(3), 1, + [240861] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11366), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7268), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(7365), 1, + ACTIONS(11836), 1, + anon_sym_RPAREN, + STATE(7696), 1, sym_comment, - [238657] = 4, + [240871] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11368), 1, + ACTIONS(2230), 1, aux_sym__unquoted_in_list_with_expr_token1, - STATE(7250), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - STATE(7366), 1, + STATE(7697), 1, sym_comment, - [238670] = 4, - ACTIONS(3), 1, + [240881] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11370), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7338), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, - STATE(7367), 1, + ACTIONS(11838), 1, + anon_sym_RPAREN2, + STATE(7698), 1, sym_comment, - [238683] = 4, - ACTIONS(247), 1, + [240891] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1790), 1, - anon_sym_LPAREN2, - ACTIONS(1798), 1, - aux_sym_unquoted_token2, - STATE(7368), 1, + ACTIONS(501), 1, + anon_sym_RPAREN2, + STATE(7699), 1, sym_comment, - [238696] = 4, - ACTIONS(3), 1, + [240901] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11372), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7187), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(7369), 1, + ACTIONS(11840), 1, + anon_sym_RPAREN, + STATE(7700), 1, sym_comment, - [238709] = 4, - ACTIONS(3), 1, + [240911] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11374), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7370), 1, + ACTIONS(11842), 1, + anon_sym_RBRACE, + STATE(7701), 1, sym_comment, - STATE(7375), 1, - aux_sym__unquoted_with_expr_repeat1, - [238722] = 4, - ACTIONS(3), 1, + [240921] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2231), 1, - anon_sym_LPAREN2, - ACTIONS(2235), 1, - aux_sym_unquoted_token4, - STATE(7371), 1, + ACTIONS(11844), 1, + aux_sym_cmd_identifier_token41, + STATE(7702), 1, sym_comment, - [238735] = 4, - ACTIONS(3), 1, + [240931] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(9554), 1, - anon_sym_RBRACE, - ACTIONS(9556), 1, - sym__entry_separator, - STATE(7372), 1, + ACTIONS(11846), 1, + sym_raw_string_end, + STATE(7703), 1, sym_comment, - [238748] = 4, - ACTIONS(247), 1, + [240941] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1494), 1, - aux_sym_unquoted_token2, - ACTIONS(1786), 1, + ACTIONS(10737), 1, anon_sym_LBRACE, - STATE(7373), 1, + STATE(7704), 1, sym_comment, - [238761] = 4, - ACTIONS(247), 1, + [240951] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6055), 1, - anon_sym_LBRACE, - STATE(6320), 1, - sym_block, - STATE(7374), 1, + ACTIONS(11848), 1, + anon_sym_RBRACE, + STATE(7705), 1, sym_comment, - [238774] = 4, - ACTIONS(3), 1, + [240961] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11376), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7268), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(7375), 1, + ACTIONS(11850), 1, + anon_sym_RBRACK, + STATE(7706), 1, sym_comment, - [238787] = 4, - ACTIONS(3), 1, + [240971] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11378), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7268), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(7376), 1, + ACTIONS(11852), 1, + anon_sym_RPAREN, + STATE(7707), 1, sym_comment, - [238800] = 3, - ACTIONS(247), 1, + [240981] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1687), 1, - aux_sym__unquoted_in_record_token2, - STATE(7377), 1, + ACTIONS(11854), 1, + anon_sym_RBRACE, + STATE(7708), 1, sym_comment, - [238810] = 3, - ACTIONS(247), 1, + [240991] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5588), 1, - aux_sym__unquoted_in_list_token2, - STATE(7378), 1, + ACTIONS(11856), 1, + anon_sym_RBRACE, + STATE(7709), 1, sym_comment, - [238820] = 3, - ACTIONS(247), 1, + [241001] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11380), 1, + ACTIONS(11858), 1, + aux_sym_cmd_identifier_token41, + STATE(7710), 1, + sym_comment, + [241011] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(11860), 1, + anon_sym_RBRACE, + STATE(7711), 1, + sym_comment, + [241021] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5285), 1, + aux_sym_cmd_identifier_token41, + STATE(7712), 1, + sym_comment, + [241031] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(11862), 1, + sym_raw_string_end, + STATE(7713), 1, + sym_comment, + [241041] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(11864), 1, anon_sym_RBRACK, - STATE(7379), 1, + STATE(7714), 1, sym_comment, - [238830] = 3, - ACTIONS(247), 1, + [241051] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11382), 1, + ACTIONS(11866), 1, anon_sym_RPAREN, - STATE(7380), 1, + STATE(7715), 1, sym_comment, - [238840] = 3, - ACTIONS(247), 1, + [241061] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11384), 1, + ACTIONS(11868), 1, anon_sym_RBRACK, - STATE(7381), 1, + STATE(7716), 1, sym_comment, - [238850] = 3, - ACTIONS(247), 1, + [241071] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11386), 1, - anon_sym_RPAREN, - STATE(7382), 1, + ACTIONS(11870), 1, + anon_sym_RBRACE, + STATE(7717), 1, sym_comment, - [238860] = 3, - ACTIONS(247), 1, + [241081] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11388), 1, + ACTIONS(11872), 1, anon_sym_RPAREN, - STATE(7383), 1, + STATE(7718), 1, sym_comment, - [238870] = 3, - ACTIONS(247), 1, + [241091] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11390), 1, - anon_sym_RBRACE, - STATE(7384), 1, + ACTIONS(11874), 1, + anon_sym_RBRACK, + STATE(7719), 1, sym_comment, - [238880] = 3, - ACTIONS(247), 1, + [241101] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11392), 1, + ACTIONS(11876), 1, anon_sym_RBRACE, - STATE(7385), 1, + STATE(7720), 1, sym_comment, - [238890] = 3, - ACTIONS(247), 1, + [241111] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11394), 1, - anon_sym_RBRACE, - STATE(7386), 1, + ACTIONS(11878), 1, + anon_sym_RPAREN, + STATE(7721), 1, sym_comment, - [238900] = 3, - ACTIONS(247), 1, + [241121] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11396), 1, + ACTIONS(11880), 1, anon_sym_RBRACE, - STATE(7387), 1, + STATE(7722), 1, sym_comment, - [238910] = 3, - ACTIONS(247), 1, + [241131] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2303), 1, - aux_sym_unquoted_token2, - STATE(7388), 1, + ACTIONS(11882), 1, + sym_raw_string_end, + STATE(7723), 1, sym_comment, - [238920] = 3, - ACTIONS(247), 1, + [241141] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11398), 1, - anon_sym_RBRACE, - STATE(7389), 1, + ACTIONS(11884), 1, + sym_raw_string_end, + STATE(7724), 1, sym_comment, - [238930] = 3, - ACTIONS(247), 1, + [241151] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11245), 1, - anon_sym_make, - STATE(7390), 1, + ACTIONS(11886), 1, + anon_sym_RPAREN, + STATE(7725), 1, sym_comment, - [238940] = 3, - ACTIONS(247), 1, + [241161] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(585), 1, - anon_sym_RPAREN2, - STATE(7391), 1, + ACTIONS(11888), 1, + anon_sym_EQ, + STATE(7726), 1, sym_comment, - [238950] = 3, - ACTIONS(247), 1, + [241171] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11400), 1, + ACTIONS(11890), 1, anon_sym_RBRACE, - STATE(7392), 1, + STATE(7727), 1, sym_comment, - [238960] = 3, - ACTIONS(247), 1, + [241181] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5848), 1, - anon_sym_LBRACK2, - STATE(7393), 1, + ACTIONS(11892), 1, + sym_raw_string_content, + STATE(7728), 1, sym_comment, - [238970] = 3, - ACTIONS(247), 1, + [241191] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11402), 1, - anon_sym_RBRACE, - STATE(7394), 1, + ACTIONS(5167), 1, + anon_sym_LBRACK2, + STATE(7729), 1, sym_comment, - [238980] = 3, - ACTIONS(247), 1, + [241201] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11404), 1, - anon_sym_RBRACE, - STATE(7395), 1, + ACTIONS(11894), 1, + sym_raw_string_end, + STATE(7730), 1, sym_comment, - [238990] = 3, - ACTIONS(247), 1, + [241211] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11406), 1, + ACTIONS(11896), 1, anon_sym_RBRACE, - STATE(7396), 1, + STATE(7731), 1, sym_comment, - [239000] = 3, - ACTIONS(247), 1, + [241221] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1552), 1, - aux_sym_unquoted_token2, - STATE(7397), 1, + ACTIONS(11898), 1, + sym_raw_string_end, + STATE(7732), 1, sym_comment, - [239010] = 3, - ACTIONS(3), 1, + [241231] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11408), 1, - aux_sym_shebang_token1, - STATE(7398), 1, + ACTIONS(3294), 1, + aux_sym_record_entry_token1, + STATE(7733), 1, sym_comment, - [239020] = 3, - ACTIONS(247), 1, + [241241] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11410), 1, - anon_sym_RBRACE, - STATE(7399), 1, + ACTIONS(4622), 1, + aux_sym_unquoted_token2, + STATE(7734), 1, sym_comment, - [239030] = 3, - ACTIONS(3), 1, + [241251] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11412), 1, - aux_sym_shebang_token1, - STATE(7400), 1, + ACTIONS(11900), 1, + sym_raw_string_end, + STATE(7735), 1, sym_comment, - [239040] = 3, - ACTIONS(247), 1, + [241261] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11414), 1, - anon_sym_RBRACE, - STATE(7401), 1, + ACTIONS(11902), 1, + anon_sym_RBRACK, + STATE(7736), 1, sym_comment, - [239050] = 3, - ACTIONS(247), 1, + [241271] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11416), 1, + ACTIONS(11904), 1, anon_sym_RBRACE, - STATE(7402), 1, + STATE(7737), 1, sym_comment, - [239060] = 3, - ACTIONS(247), 1, + [241281] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11418), 1, + ACTIONS(11906), 1, anon_sym_RPAREN, - STATE(7403), 1, + STATE(7738), 1, sym_comment, - [239070] = 3, - ACTIONS(247), 1, + [241291] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11420), 1, - anon_sym_LBRACE, - STATE(7404), 1, - sym_comment, - [239080] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11422), 1, + ACTIONS(11908), 1, anon_sym_RPAREN, - STATE(7405), 1, + STATE(7739), 1, sym_comment, - [239090] = 3, - ACTIONS(247), 1, + [241301] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(667), 1, - ts_builtin_sym_end, - STATE(7406), 1, + ACTIONS(579), 1, + anon_sym_RPAREN2, + STATE(7740), 1, sym_comment, - [239100] = 3, - ACTIONS(247), 1, + [241311] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11424), 1, - aux_sym_cmd_identifier_token41, - STATE(7407), 1, + ACTIONS(11910), 1, + anon_sym_RPAREN, + STATE(7741), 1, sym_comment, - [239110] = 3, - ACTIONS(3), 1, + [241321] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - STATE(7408), 1, + ACTIONS(11912), 1, + anon_sym_RBRACE, + STATE(7742), 1, sym_comment, - [239120] = 3, - ACTIONS(3), 1, + [241331] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11426), 1, - aux_sym_comment_token1, - STATE(7409), 1, + ACTIONS(11914), 1, + anon_sym_RBRACE, + STATE(7743), 1, sym_comment, - [239130] = 3, - ACTIONS(247), 1, + [241341] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4572), 1, - aux_sym_record_entry_token1, - STATE(7410), 1, + ACTIONS(11916), 1, + sym_raw_string_end, + STATE(7744), 1, sym_comment, - [239140] = 3, - ACTIONS(247), 1, + [241351] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11428), 1, + ACTIONS(11918), 1, anon_sym_RBRACE, - STATE(7411), 1, + STATE(7745), 1, sym_comment, - [239150] = 3, - ACTIONS(3), 1, + [241361] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2029), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7412), 1, + ACTIONS(11920), 1, + anon_sym_RPAREN, + STATE(7746), 1, + sym_comment, + [241371] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(11922), 1, + anon_sym_RBRACE, + STATE(7747), 1, sym_comment, - [239160] = 3, - ACTIONS(247), 1, + [241381] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11430), 1, - anon_sym_EQ, - STATE(7413), 1, + ACTIONS(11924), 1, + sym_raw_string_end, + STATE(7748), 1, sym_comment, - [239170] = 3, - ACTIONS(3), 1, + [241391] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11432), 1, - sym__space, - STATE(7414), 1, + ACTIONS(11926), 1, + anon_sym_RBRACK, + STATE(7749), 1, sym_comment, - [239180] = 3, + [241401] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11239), 1, + ACTIONS(11638), 1, aux_sym__record_key_token1, - STATE(7415), 1, + STATE(7750), 1, sym_comment, - [239190] = 3, - ACTIONS(247), 1, + [241411] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11434), 1, - anon_sym_RBRACE, - STATE(7416), 1, + ACTIONS(11928), 1, + sym_raw_string_end, + STATE(7751), 1, sym_comment, - [239200] = 3, - ACTIONS(247), 1, + [241421] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11436), 1, - anon_sym_RBRACE, - STATE(7417), 1, + ACTIONS(11930), 1, + anon_sym_RBRACK, + STATE(7752), 1, sym_comment, - [239210] = 3, - ACTIONS(247), 1, + [241431] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11438), 1, - anon_sym_RPAREN, - STATE(7418), 1, + ACTIONS(533), 1, + anon_sym_RPAREN2, + STATE(7753), 1, sym_comment, - [239220] = 3, - ACTIONS(247), 1, + [241441] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11440), 1, - anon_sym_GT, - STATE(7419), 1, + ACTIONS(11932), 1, + anon_sym_LBRACE, + STATE(7754), 1, sym_comment, - [239230] = 3, - ACTIONS(247), 1, + [241451] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4520), 1, - aux_sym_unquoted_token2, - STATE(7420), 1, + ACTIONS(599), 1, + anon_sym_RPAREN2, + STATE(7755), 1, sym_comment, - [239240] = 3, - ACTIONS(247), 1, + [241461] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(589), 1, - anon_sym_RPAREN2, - STATE(7421), 1, + ACTIONS(11120), 1, + aux_sym_cmd_identifier_token37, + STATE(7756), 1, sym_comment, - [239250] = 3, - ACTIONS(247), 1, + [241471] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11442), 1, - anon_sym_RBRACK, - STATE(7422), 1, + ACTIONS(11934), 1, + anon_sym_RPAREN, + STATE(7757), 1, sym_comment, - [239260] = 3, - ACTIONS(247), 1, + [241481] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11444), 1, + ACTIONS(11936), 1, anon_sym_RPAREN, - STATE(7423), 1, + STATE(7758), 1, + sym_comment, + [241491] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(11938), 1, + sym_raw_string_content, + STATE(7759), 1, + sym_comment, + [241501] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(11940), 1, + aux_sym_cmd_identifier_token41, + STATE(7760), 1, sym_comment, - [239270] = 3, - ACTIONS(247), 1, + [241511] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11446), 1, + ACTIONS(11942), 1, anon_sym_RBRACE, - STATE(7424), 1, + STATE(7761), 1, sym_comment, - [239280] = 3, - ACTIONS(247), 1, + [241521] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11148), 1, - anon_sym_EQ_GT, - STATE(7425), 1, + ACTIONS(11944), 1, + sym_raw_string_end, + STATE(7762), 1, sym_comment, - [239290] = 3, - ACTIONS(247), 1, + [241531] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11448), 1, - anon_sym_RBRACK, - STATE(7426), 1, + ACTIONS(11946), 1, + anon_sym_EQ, + STATE(7763), 1, sym_comment, - [239300] = 3, - ACTIONS(247), 1, + [241541] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11450), 1, - anon_sym_RPAREN, - STATE(7427), 1, + ACTIONS(11948), 1, + sym_raw_string_content, + STATE(7764), 1, + sym_comment, + [241551] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5105), 1, + anon_sym_LBRACK2, + STATE(7765), 1, sym_comment, - [239310] = 3, + [241561] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4946), 1, - aux_sym_cmd_identifier_token37, - STATE(7428), 1, + ACTIONS(2299), 1, + aux_sym_unquoted_token4, + STATE(7766), 1, sym_comment, - [239320] = 3, - ACTIONS(247), 1, + [241571] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11452), 1, - anon_sym_RBRACE, - STATE(7429), 1, + ACTIONS(4443), 1, + aux_sym_unquoted_token2, + STATE(7767), 1, sym_comment, - [239330] = 3, - ACTIONS(247), 1, + [241581] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11454), 1, - anon_sym_RBRACE, - STATE(7430), 1, + ACTIONS(11950), 1, + anon_sym_EQ_GT, + STATE(7768), 1, sym_comment, - [239340] = 3, - ACTIONS(247), 1, + [241591] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(10308), 1, + ACTIONS(11952), 1, anon_sym_LBRACE, - STATE(7431), 1, + STATE(7769), 1, sym_comment, - [239350] = 3, - ACTIONS(247), 1, + [241601] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11456), 1, - anon_sym_LBRACE, - STATE(7432), 1, + ACTIONS(6477), 1, + aux_sym_unquoted_token4, + STATE(7770), 1, + sym_comment, + [241611] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11954), 1, + aux_sym_shebang_token1, + STATE(7771), 1, + sym_comment, + [241621] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(11956), 1, + sym_raw_string_end, + STATE(7772), 1, sym_comment, - [239360] = 3, - ACTIONS(247), 1, + [241631] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11458), 1, + ACTIONS(11958), 1, sym_identifier, - STATE(7433), 1, + STATE(7773), 1, sym_comment, - [239370] = 3, - ACTIONS(247), 1, + [241641] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11460), 1, - anon_sym_GT, - STATE(7434), 1, + ACTIONS(11960), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7774), 1, sym_comment, - [239380] = 3, - ACTIONS(247), 1, + [241651] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11462), 1, - anon_sym_RPAREN, - STATE(7435), 1, + ACTIONS(11962), 1, + anon_sym_RBRACK, + STATE(7775), 1, sym_comment, - [239390] = 3, - ACTIONS(247), 1, + [241661] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11464), 1, - anon_sym_GT, - STATE(7436), 1, + ACTIONS(9533), 1, + aux_sym_unquoted_token4, + STATE(7776), 1, + sym_comment, + [241671] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(11964), 1, + anon_sym_EQ, + STATE(7777), 1, sym_comment, - [239400] = 3, - ACTIONS(247), 1, + [241681] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11466), 1, + ACTIONS(11966), 1, anon_sym_RPAREN, - STATE(7437), 1, + STATE(7778), 1, sym_comment, - [239410] = 3, - ACTIONS(247), 1, + [241691] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11468), 1, + ACTIONS(11968), 1, anon_sym_RBRACE, - STATE(7438), 1, + STATE(7779), 1, sym_comment, - [239420] = 3, - ACTIONS(3), 1, + [241701] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2029), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7439), 1, + ACTIONS(4770), 1, + aux_sym_unquoted_token2, + STATE(7780), 1, sym_comment, - [239430] = 3, - ACTIONS(247), 1, + [241711] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11470), 1, - anon_sym_RPAREN, - STATE(7440), 1, + ACTIONS(11970), 1, + sym_raw_string_content, + STATE(7781), 1, + sym_comment, + [241721] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(5055), 1, + anon_sym_LBRACK2, + STATE(7782), 1, sym_comment, - [239440] = 3, - ACTIONS(247), 1, + [241731] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11472), 1, + ACTIONS(11972), 1, anon_sym_RBRACE, - STATE(7441), 1, + STATE(7783), 1, sym_comment, - [239450] = 3, - ACTIONS(247), 1, + [241741] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11474), 1, - sym__table_head_separator, - STATE(7442), 1, + ACTIONS(11974), 1, + sym_raw_string_end, + STATE(7784), 1, sym_comment, - [239460] = 3, - ACTIONS(247), 1, + [241751] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11476), 1, + ACTIONS(11976), 1, anon_sym_RPAREN, - STATE(7443), 1, + STATE(7785), 1, sym_comment, - [239470] = 3, - ACTIONS(247), 1, + [241761] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11478), 1, - anon_sym_RPAREN, - STATE(7444), 1, + ACTIONS(11978), 1, + anon_sym_RBRACK, + STATE(7786), 1, sym_comment, - [239480] = 3, - ACTIONS(247), 1, + [241771] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5077), 1, - anon_sym_LBRACK2, - STATE(7445), 1, + ACTIONS(11980), 1, + sym_raw_string_end, + STATE(7787), 1, sym_comment, - [239490] = 3, - ACTIONS(3), 1, + [241781] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2029), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7446), 1, + ACTIONS(11982), 1, + anon_sym_GT, + STATE(7788), 1, sym_comment, - [239500] = 3, - ACTIONS(247), 1, + [241791] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11480), 1, - anon_sym_RBRACK, - STATE(7447), 1, + ACTIONS(11984), 1, + anon_sym_EQ, + STATE(7789), 1, sym_comment, - [239510] = 3, - ACTIONS(247), 1, + [241801] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11482), 1, - anon_sym_RPAREN, - STATE(7448), 1, + ACTIONS(11986), 1, + sym_raw_string_end, + STATE(7790), 1, sym_comment, - [239520] = 3, - ACTIONS(247), 1, + [241811] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3231), 1, - aux_sym_record_entry_token1, - STATE(7449), 1, + ACTIONS(11988), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7791), 1, sym_comment, - [239530] = 3, - ACTIONS(247), 1, + [241821] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(543), 1, - anon_sym_RPAREN2, - STATE(7450), 1, + ACTIONS(11990), 1, + sym_raw_string_end, + STATE(7792), 1, sym_comment, - [239540] = 3, - ACTIONS(247), 1, + [241831] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11484), 1, - anon_sym_EQ, - STATE(7451), 1, + ACTIONS(11992), 1, + anon_sym_RBRACE, + STATE(7793), 1, + sym_comment, + [241841] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(8580), 1, + aux_sym_unquoted_token2, + STATE(7794), 1, sym_comment, - [239550] = 3, - ACTIONS(247), 1, + [241851] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11486), 1, + ACTIONS(11994), 1, anon_sym_RBRACE, - STATE(7452), 1, + STATE(7795), 1, sym_comment, - [239560] = 3, - ACTIONS(247), 1, + [241861] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11488), 1, - anon_sym_LBRACE, - STATE(7453), 1, + ACTIONS(11996), 1, + sym_raw_string_content, + STATE(7796), 1, sym_comment, - [239570] = 3, - ACTIONS(3), 1, + [241871] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5588), 1, - aux_sym__unquoted_in_list_token4, - STATE(7454), 1, + ACTIONS(7930), 1, + anon_sym_LBRACK2, + STATE(7797), 1, sym_comment, - [239580] = 3, - ACTIONS(247), 1, + [241881] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11490), 1, - anon_sym_EQ, - STATE(7455), 1, + ACTIONS(11569), 1, + anon_sym_LBRACE, + STATE(7798), 1, sym_comment, - [239590] = 3, - ACTIONS(247), 1, + [241891] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11492), 1, - aux_sym_record_entry_token1, - STATE(7456), 1, + ACTIONS(11998), 1, + anon_sym_RPAREN, + STATE(7799), 1, sym_comment, - [239600] = 3, - ACTIONS(247), 1, + [241901] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11494), 1, - anon_sym_RBRACE, - STATE(7457), 1, + ACTIONS(12000), 1, + sym_raw_string_end, + STATE(7800), 1, sym_comment, - [239610] = 3, - ACTIONS(247), 1, + [241911] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5328), 1, - anon_sym_LBRACK2, - STATE(7458), 1, + ACTIONS(2218), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7801), 1, sym_comment, - [239620] = 3, - ACTIONS(247), 1, + [241921] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(529), 1, - anon_sym_RPAREN2, - STATE(7459), 1, + ACTIONS(7021), 1, + aux_sym_unquoted_token4, + STATE(7802), 1, + sym_comment, + [241931] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(8696), 1, + aux_sym__unquoted_in_record_token2, + STATE(7803), 1, sym_comment, - [239630] = 3, - ACTIONS(247), 1, + [241941] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11496), 1, + ACTIONS(12002), 1, anon_sym_RBRACE, - STATE(7460), 1, + STATE(7804), 1, sym_comment, - [239640] = 3, - ACTIONS(247), 1, + [241951] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4169), 1, + ACTIONS(2252), 1, aux_sym_unquoted_token2, - STATE(7461), 1, + STATE(7805), 1, sym_comment, - [239650] = 3, - ACTIONS(247), 1, + [241961] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11498), 1, - anon_sym_RPAREN2, - STATE(7462), 1, + ACTIONS(4691), 1, + aux_sym_record_entry_token1, + STATE(7806), 1, sym_comment, - [239660] = 3, - ACTIONS(247), 1, + [241971] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4539), 1, - aux_sym_unquoted_token2, - STATE(7463), 1, + ACTIONS(12004), 1, + sym_raw_string_end, + STATE(7807), 1, sym_comment, - [239670] = 3, - ACTIONS(247), 1, + [241981] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11500), 1, - anon_sym_in, - STATE(7464), 1, + ACTIONS(12006), 1, + anon_sym_RBRACK, + STATE(7808), 1, sym_comment, - [239680] = 3, - ACTIONS(247), 1, + [241991] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(549), 1, - anon_sym_RPAREN2, - STATE(7465), 1, + ACTIONS(12008), 1, + anon_sym_RPAREN, + STATE(7809), 1, sym_comment, - [239690] = 3, - ACTIONS(247), 1, + [242001] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(9962), 1, - anon_sym_LBRACE, - STATE(7466), 1, + ACTIONS(12010), 1, + sym_raw_string_content, + STATE(7810), 1, sym_comment, - [239700] = 3, - ACTIONS(247), 1, + [242011] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4896), 1, + ACTIONS(5817), 1, anon_sym_LBRACK2, - STATE(7467), 1, + STATE(7811), 1, sym_comment, - [239710] = 3, - ACTIONS(247), 1, + [242021] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8350), 1, - aux_sym_unquoted_token2, - STATE(7468), 1, + ACTIONS(12012), 1, + anon_sym_RBRACE, + STATE(7812), 1, sym_comment, - [239720] = 3, - ACTIONS(247), 1, + [242031] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5451), 1, - aux_sym__unquoted_in_list_token2, - STATE(7469), 1, + ACTIONS(12014), 1, + sym_raw_string_content, + STATE(7813), 1, + sym_comment, + [242041] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(2571), 1, + sym__table_head_separator, + STATE(7814), 1, sym_comment, - [239730] = 3, + [242051] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9740), 1, - aux_sym_cmd_identifier_token37, - STATE(7470), 1, + ACTIONS(12016), 1, + aux_sym_comment_token1, + STATE(7815), 1, sym_comment, - [239740] = 3, - ACTIONS(247), 1, + [242061] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11502), 1, + ACTIONS(12018), 1, anon_sym_RBRACK, - STATE(7471), 1, + STATE(7816), 1, sym_comment, - [239750] = 3, - ACTIONS(247), 1, + [242071] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11504), 1, - anon_sym_LBRACE, - STATE(7472), 1, + ACTIONS(11463), 1, + aux_sym_cmd_identifier_token37, + STATE(7817), 1, sym_comment, - [239760] = 3, - ACTIONS(247), 1, + [242081] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11506), 1, - anon_sym_GT, - STATE(7473), 1, + ACTIONS(11300), 1, + anon_sym_EQ_GT, + STATE(7818), 1, sym_comment, - [239770] = 3, - ACTIONS(247), 1, + [242091] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11508), 1, - anon_sym_GT, - STATE(7474), 1, + ACTIONS(1911), 1, + sym__table_head_separator, + STATE(7819), 1, sym_comment, - [239780] = 3, - ACTIONS(247), 1, + [242101] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11510), 1, - anon_sym_LBRACE, - STATE(7475), 1, + ACTIONS(12020), 1, + sym_raw_string_end, + STATE(7820), 1, sym_comment, - [239790] = 3, - ACTIONS(247), 1, + [242111] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11512), 1, - anon_sym_RBRACK, - STATE(7476), 1, + ACTIONS(12022), 1, + anon_sym_EQ, + STATE(7821), 1, sym_comment, - [239800] = 3, - ACTIONS(247), 1, + [242121] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11514), 1, - anon_sym_RPAREN, - STATE(7477), 1, + ACTIONS(12024), 1, + anon_sym_RBRACE, + STATE(7822), 1, sym_comment, - [239810] = 3, - ACTIONS(247), 1, + [242131] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11516), 1, + ACTIONS(12026), 1, anon_sym_RBRACE, - STATE(7478), 1, + STATE(7823), 1, sym_comment, - [239820] = 3, - ACTIONS(247), 1, + [242141] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11518), 1, - anon_sym_RBRACE, - STATE(7479), 1, + ACTIONS(12028), 1, + sym_raw_string_content, + STATE(7824), 1, sym_comment, - [239830] = 3, - ACTIONS(247), 1, + [242151] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4726), 1, - aux_sym_unquoted_token2, - STATE(7480), 1, + ACTIONS(7606), 1, + anon_sym_LBRACK2, + STATE(7825), 1, sym_comment, - [239840] = 3, - ACTIONS(247), 1, + [242161] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11520), 1, - anon_sym_RBRACE, - STATE(7481), 1, + ACTIONS(12030), 1, + anon_sym_RPAREN, + STATE(7826), 1, + sym_comment, + [242171] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(11561), 1, + anon_sym_make, + STATE(7827), 1, + sym_comment, + [242181] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(12032), 1, + sym_raw_string_end, + STATE(7828), 1, sym_comment, - [239850] = 3, - ACTIONS(247), 1, + [242191] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11522), 1, + ACTIONS(12034), 1, anon_sym_RPAREN, - STATE(7482), 1, + STATE(7829), 1, sym_comment, - [239860] = 3, - ACTIONS(3), 1, + [242201] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5391), 1, - aux_sym_unquoted_token4, - STATE(7483), 1, + ACTIONS(5572), 1, + aux_sym_record_entry_token1, + STATE(7830), 1, sym_comment, - [239870] = 3, - ACTIONS(247), 1, + [242211] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5048), 1, - anon_sym_LBRACK2, - STATE(7484), 1, + ACTIONS(12036), 1, + anon_sym_LBRACE, + STATE(7831), 1, sym_comment, - [239880] = 3, - ACTIONS(247), 1, + [242221] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11524), 1, + ACTIONS(12038), 1, anon_sym_LBRACE, - STATE(7485), 1, + STATE(7832), 1, sym_comment, - [239890] = 3, - ACTIONS(247), 1, + [242231] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11526), 1, - ts_builtin_sym_end, - STATE(7486), 1, + ACTIONS(9992), 1, + anon_sym_LBRACK2, + STATE(7833), 1, sym_comment, - [239900] = 3, - ACTIONS(247), 1, + [242241] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11528), 1, + ACTIONS(9533), 1, + aux_sym_unquoted_token2, + STATE(7834), 1, + sym_comment, + [242251] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(12040), 1, anon_sym_EQ, - STATE(7487), 1, + STATE(7835), 1, sym_comment, - [239910] = 3, + [242261] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11530), 1, - sym__space, - STATE(7488), 1, + ACTIONS(5087), 1, + aux_sym_cmd_identifier_token37, + STATE(7836), 1, sym_comment, - [239920] = 3, - ACTIONS(247), 1, + [242271] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11532), 1, + ACTIONS(12042), 1, anon_sym_LBRACE, - STATE(7489), 1, + STATE(7837), 1, sym_comment, - [239930] = 3, - ACTIONS(247), 1, + [242281] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11534), 1, - anon_sym_RBRACE, - STATE(7490), 1, + ACTIONS(12044), 1, + sym_raw_string_content, + STATE(7838), 1, sym_comment, - [239940] = 3, - ACTIONS(247), 1, + [242291] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11536), 1, - aux_sym_record_entry_token1, - STATE(7491), 1, + ACTIONS(7778), 1, + anon_sym_LBRACK2, + STATE(7839), 1, sym_comment, - [239950] = 3, - ACTIONS(247), 1, + [242301] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11538), 1, - sym_identifier, - STATE(7492), 1, + ACTIONS(12046), 1, + sym_raw_string_end, + STATE(7840), 1, sym_comment, - [239960] = 3, - ACTIONS(247), 1, + [242311] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11540), 1, - anon_sym_RPAREN, - STATE(7493), 1, + ACTIONS(12036), 1, + anon_sym_LBRACE, + STATE(7841), 1, + sym_comment, + [242321] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(12048), 1, + anon_sym_DASH_GT, + STATE(7842), 1, sym_comment, - [239970] = 3, - ACTIONS(247), 1, + [242331] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1494), 1, + ACTIONS(4645), 1, aux_sym_unquoted_token2, - STATE(7494), 1, + STATE(7843), 1, sym_comment, - [239980] = 3, - ACTIONS(247), 1, + [242341] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11542), 1, - anon_sym_RBRACE, - STATE(7495), 1, + ACTIONS(12050), 1, + anon_sym_RPAREN, + STATE(7844), 1, sym_comment, - [239990] = 3, + [242351] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4742), 1, - aux_sym_unquoted_token4, - STATE(7496), 1, + ACTIONS(5805), 1, + aux_sym__unquoted_in_list_token4, + STATE(7845), 1, sym_comment, - [240000] = 3, - ACTIONS(247), 1, + [242361] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8925), 1, - aux_sym_unquoted_token2, - STATE(7497), 1, + ACTIONS(12052), 1, + anon_sym_LBRACE, + STATE(7846), 1, sym_comment, - [240010] = 3, - ACTIONS(247), 1, + [242371] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7799), 1, - anon_sym_LBRACK2, - STATE(7498), 1, + ACTIONS(12054), 1, + anon_sym_RPAREN, + STATE(7847), 1, sym_comment, - [240020] = 3, - ACTIONS(247), 1, + [242381] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6834), 1, + ACTIONS(9497), 1, aux_sym_unquoted_token2, - STATE(7499), 1, - sym_comment, - [240030] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(6965), 1, - aux_sym__unquoted_in_list_token2, - STATE(7500), 1, - sym_comment, - [240040] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11544), 1, - anon_sym_RBRACK, - STATE(7501), 1, + STATE(7848), 1, sym_comment, - [240050] = 3, - ACTIONS(247), 1, + [242391] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11546), 1, + ACTIONS(12056), 1, anon_sym_RBRACE, - STATE(7502), 1, + STATE(7849), 1, sym_comment, - [240060] = 3, - ACTIONS(247), 1, + [242401] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3988), 1, - aux_sym_unquoted_token2, - STATE(7503), 1, + ACTIONS(12058), 1, + sym_raw_string_end, + STATE(7850), 1, sym_comment, - [240070] = 3, + [242411] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6834), 1, - aux_sym_unquoted_token4, - STATE(7504), 1, + ACTIONS(10863), 1, + aux_sym_cmd_identifier_token37, + STATE(7851), 1, sym_comment, - [240080] = 3, - ACTIONS(247), 1, + [242421] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11548), 1, - anon_sym_RPAREN, - STATE(7505), 1, + ACTIONS(12060), 1, + sym_raw_string_content, + STATE(7852), 1, sym_comment, - [240090] = 3, - ACTIONS(247), 1, + [242431] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11550), 1, - anon_sym_RBRACK, - STATE(7506), 1, + ACTIONS(4999), 1, + anon_sym_LBRACK2, + STATE(7853), 1, sym_comment, - [240100] = 3, - ACTIONS(247), 1, + [242441] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11552), 1, - sym_identifier, - STATE(7507), 1, + ACTIONS(4842), 1, + aux_sym_unquoted_token2, + STATE(7854), 1, sym_comment, - [240110] = 3, - ACTIONS(247), 1, + [242451] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1574), 1, - aux_sym__unquoted_in_record_token2, - STATE(7508), 1, + ACTIONS(12062), 1, + anon_sym_LBRACE, + STATE(7855), 1, sym_comment, - [240120] = 3, - ACTIONS(247), 1, + [242461] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11554), 1, - anon_sym_RBRACK, - STATE(7509), 1, + ACTIONS(12064), 1, + sym_raw_string_end, + STATE(7856), 1, sym_comment, - [240130] = 3, - ACTIONS(247), 1, + [242471] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11556), 1, - anon_sym_RPAREN, - STATE(7510), 1, + ACTIONS(12066), 1, + anon_sym_RBRACK, + STATE(7857), 1, sym_comment, - [240140] = 3, - ACTIONS(247), 1, + [242481] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5690), 1, - anon_sym_LBRACK2, - STATE(7511), 1, + ACTIONS(12068), 1, + anon_sym_RPAREN, + STATE(7858), 1, sym_comment, - [240150] = 3, - ACTIONS(247), 1, + [242491] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11558), 1, - anon_sym_RPAREN, - STATE(7512), 1, + ACTIONS(8580), 1, + aux_sym_unquoted_token4, + STATE(7859), 1, sym_comment, - [240160] = 3, - ACTIONS(247), 1, + [242501] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11560), 1, - anon_sym_EQ, - STATE(7513), 1, + ACTIONS(9497), 1, + aux_sym_unquoted_token4, + STATE(7860), 1, sym_comment, - [240170] = 3, - ACTIONS(247), 1, + [242511] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11562), 1, + ACTIONS(12070), 1, anon_sym_RBRACE, - STATE(7514), 1, + STATE(7861), 1, sym_comment, - [240180] = 3, - ACTIONS(247), 1, + [242521] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11564), 1, + ACTIONS(12072), 1, anon_sym_RBRACE, - STATE(7515), 1, + STATE(7862), 1, sym_comment, - [240190] = 3, - ACTIONS(247), 1, + [242531] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(3229), 1, - aux_sym_record_entry_token1, - STATE(7516), 1, + ACTIONS(12074), 1, + sym_identifier, + STATE(7863), 1, sym_comment, - [240200] = 3, - ACTIONS(247), 1, + [242541] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11566), 1, - aux_sym_cmd_identifier_token41, - STATE(7517), 1, + ACTIONS(5528), 1, + aux_sym__unquoted_in_list_token2, + STATE(7864), 1, sym_comment, - [240210] = 3, - ACTIONS(3), 1, + [242551] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11027), 1, - aux_sym_cmd_identifier_token37, - STATE(7518), 1, + ACTIONS(12076), 1, + sym_raw_string_content, + STATE(7865), 1, sym_comment, - [240220] = 3, - ACTIONS(247), 1, + [242561] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11568), 1, - anon_sym_RBRACE, - STATE(7519), 1, + ACTIONS(7181), 1, + anon_sym_LBRACK2, + STATE(7866), 1, sym_comment, - [240230] = 3, - ACTIONS(247), 1, + [242571] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11570), 1, - anon_sym_make, - STATE(7520), 1, + ACTIONS(12078), 1, + aux_sym_shebang_token1, + STATE(7867), 1, sym_comment, - [240240] = 3, - ACTIONS(247), 1, + [242581] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11572), 1, + ACTIONS(12080), 1, anon_sym_RBRACK, - STATE(7521), 1, + STATE(7868), 1, sym_comment, - [240250] = 3, - ACTIONS(247), 1, + [242591] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11574), 1, - anon_sym_RBRACE, - STATE(7522), 1, - sym_comment, - [240260] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11576), 1, - anon_sym_RBRACE, - STATE(7523), 1, + ACTIONS(4870), 1, + aux_sym_unquoted_token2, + STATE(7869), 1, sym_comment, - [240270] = 3, - ACTIONS(247), 1, + [242601] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(7495), 1, - anon_sym_LBRACK2, - STATE(7524), 1, + ACTIONS(12082), 1, + anon_sym_DASH_GT, + STATE(7870), 1, sym_comment, - [240280] = 3, - ACTIONS(247), 1, + [242611] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11578), 1, + ACTIONS(12084), 1, anon_sym_RBRACK, - STATE(7525), 1, + STATE(7871), 1, sym_comment, - [240290] = 3, - ACTIONS(247), 1, + [242621] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11580), 1, - anon_sym_RPAREN, - STATE(7526), 1, + ACTIONS(3296), 1, + aux_sym_record_entry_token1, + STATE(7872), 1, sym_comment, - [240300] = 3, - ACTIONS(247), 1, + [242631] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6872), 1, - aux_sym_unquoted_token2, - STATE(7527), 1, + ACTIONS(12086), 1, + anon_sym_RPAREN, + STATE(7873), 1, sym_comment, - [240310] = 3, - ACTIONS(247), 1, + [242641] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11582), 1, + ACTIONS(12088), 1, anon_sym_RBRACE, - STATE(7528), 1, + STATE(7874), 1, sym_comment, - [240320] = 3, - ACTIONS(247), 1, + [242651] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11584), 1, - anon_sym_RPAREN, - STATE(7529), 1, + ACTIONS(639), 1, + ts_builtin_sym_end, + STATE(7875), 1, sym_comment, - [240330] = 3, - ACTIONS(247), 1, + [242661] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11586), 1, - anon_sym_EQ, - STATE(7530), 1, + ACTIONS(5504), 1, + aux_sym_record_entry_token1, + STATE(7876), 1, sym_comment, - [240340] = 3, - ACTIONS(247), 1, + [242671] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11588), 1, - anon_sym_RBRACE, - STATE(7531), 1, + ACTIONS(12090), 1, + anon_sym_RPAREN, + STATE(7877), 1, sym_comment, - [240350] = 3, - ACTIONS(247), 1, + [242681] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11590), 1, - anon_sym_RBRACE, - STATE(7532), 1, + ACTIONS(12092), 1, + sym_raw_string_content, + STATE(7878), 1, sym_comment, - [240360] = 3, - ACTIONS(247), 1, + [242691] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11290), 1, - anon_sym_LBRACE, - STATE(7533), 1, + ACTIONS(7090), 1, + anon_sym_LBRACK2, + STATE(7879), 1, sym_comment, - [240370] = 3, - ACTIONS(247), 1, + [242701] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11592), 1, + ACTIONS(12094), 1, anon_sym_RBRACE, - STATE(7534), 1, + STATE(7880), 1, sym_comment, - [240380] = 3, - ACTIONS(247), 1, + [242711] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2346), 1, - aux_sym_record_entry_token1, - STATE(7535), 1, + ACTIONS(10700), 1, + anon_sym_LBRACE, + STATE(7881), 1, sym_comment, - [240390] = 3, - ACTIONS(247), 1, + [242721] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11594), 1, + ACTIONS(12096), 1, anon_sym_RPAREN, - STATE(7536), 1, - sym_comment, - [240400] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(7764), 1, - anon_sym_LBRACK2, - STATE(7537), 1, + STATE(7882), 1, sym_comment, - [240410] = 3, + [242731] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2227), 1, + ACTIONS(7068), 1, aux_sym_unquoted_token4, - STATE(7538), 1, + STATE(7883), 1, sym_comment, - [240420] = 3, - ACTIONS(247), 1, + [242741] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6355), 1, - aux_sym_unquoted_token2, - STATE(7539), 1, + ACTIONS(12098), 1, + anon_sym_RBRACK, + STATE(7884), 1, sym_comment, - [240430] = 3, - ACTIONS(3), 1, + [242751] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2033), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7540), 1, + ACTIONS(12100), 1, + anon_sym_LBRACE, + STATE(7885), 1, sym_comment, - [240440] = 3, - ACTIONS(247), 1, + [242761] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11596), 1, - anon_sym_RBRACK, - STATE(7541), 1, + ACTIONS(12102), 1, + anon_sym_RPAREN, + STATE(7886), 1, sym_comment, - [240450] = 3, - ACTIONS(247), 1, + [242771] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11598), 1, + ACTIONS(12104), 1, anon_sym_RPAREN, - STATE(7542), 1, + STATE(7887), 1, sym_comment, - [240460] = 3, - ACTIONS(247), 1, + [242781] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11600), 1, - anon_sym_RBRACE, - STATE(7543), 1, + ACTIONS(12106), 1, + anon_sym_LBRACE, + STATE(7888), 1, sym_comment, - [240470] = 3, - ACTIONS(3), 1, + [242791] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4539), 1, - aux_sym_unquoted_token4, - STATE(7544), 1, + ACTIONS(12108), 1, + anon_sym_RBRACE, + STATE(7889), 1, sym_comment, - [240480] = 3, - ACTIONS(247), 1, + [242801] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11602), 1, - anon_sym_RPAREN2, - STATE(7545), 1, + ACTIONS(12110), 1, + anon_sym_RBRACE, + STATE(7890), 1, sym_comment, - [240490] = 3, - ACTIONS(247), 1, + [242811] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11604), 1, - sym_identifier, - STATE(7546), 1, + ACTIONS(12112), 1, + sym_raw_string_content, + STATE(7891), 1, sym_comment, - [240500] = 3, - ACTIONS(247), 1, + [242821] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11606), 1, - anon_sym_RBRACK, - STATE(7547), 1, + ACTIONS(6110), 1, + anon_sym_LBRACK2, + STATE(7892), 1, sym_comment, - [240510] = 3, - ACTIONS(247), 1, + [242831] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11608), 1, - ts_builtin_sym_end, - STATE(7548), 1, + ACTIONS(12114), 1, + anon_sym_RBRACE, + STATE(7893), 1, sym_comment, - [240520] = 3, + [242841] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6872), 1, - aux_sym_unquoted_token4, - STATE(7549), 1, - sym_comment, - [240530] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(4866), 1, - anon_sym_LBRACK2, - STATE(7550), 1, + ACTIONS(2230), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7894), 1, sym_comment, - [240540] = 3, - ACTIONS(247), 1, + [242851] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11610), 1, - anon_sym_LBRACE, - STATE(7551), 1, + ACTIONS(12116), 1, + sym_raw_string_end, + STATE(7895), 1, sym_comment, - [240550] = 3, - ACTIONS(247), 1, + [242861] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11612), 1, - sym_long_flag_identifier, - STATE(7552), 1, + ACTIONS(12118), 1, + anon_sym_RBRACE, + STATE(7896), 1, sym_comment, - [240560] = 3, - ACTIONS(247), 1, + [242871] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11614), 1, - anon_sym_RBRACE, - STATE(7553), 1, + ACTIONS(12120), 1, + sym_identifier, + STATE(7897), 1, sym_comment, - [240570] = 3, - ACTIONS(247), 1, + [242881] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11616), 1, - anon_sym_RBRACE, - STATE(7554), 1, + ACTIONS(12122), 1, + anon_sym_RBRACK, + STATE(7898), 1, sym_comment, - [240580] = 3, - ACTIONS(247), 1, + [242891] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11618), 1, + ACTIONS(12124), 1, anon_sym_RBRACE, - STATE(7555), 1, + STATE(7899), 1, sym_comment, - [240590] = 3, - ACTIONS(247), 1, + [242901] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11620), 1, - anon_sym_RPAREN, - STATE(7556), 1, + ACTIONS(12106), 1, + anon_sym_LBRACE, + STATE(7900), 1, sym_comment, - [240600] = 3, - ACTIONS(247), 1, + [242911] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11622), 1, + ACTIONS(12126), 1, anon_sym_RBRACE, - STATE(7557), 1, + STATE(7901), 1, sym_comment, - [240610] = 3, - ACTIONS(247), 1, + [242921] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11624), 1, - anon_sym_RPAREN, - STATE(7558), 1, + ACTIONS(12128), 1, + sym_long_flag_identifier, + STATE(7902), 1, sym_comment, - [240620] = 3, - ACTIONS(247), 1, + [242931] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11626), 1, + ACTIONS(12130), 1, anon_sym_RBRACE, - STATE(7559), 1, + STATE(7903), 1, sym_comment, - [240630] = 3, - ACTIONS(3), 1, + [242941] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4520), 1, - aux_sym_unquoted_token4, - STATE(7560), 1, + ACTIONS(12132), 1, + sym_raw_string_content, + STATE(7904), 1, sym_comment, - [240640] = 3, - ACTIONS(247), 1, + [242951] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11628), 1, - anon_sym_RBRACK, - STATE(7561), 1, + ACTIONS(6599), 1, + anon_sym_LBRACK2, + STATE(7905), 1, sym_comment, - [240650] = 3, - ACTIONS(247), 1, + [242961] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6999), 1, - anon_sym_LBRACK2, - STATE(7562), 1, + ACTIONS(12134), 1, + sym_identifier, + STATE(7906), 1, sym_comment, - [240660] = 3, - ACTIONS(247), 1, + [242971] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11630), 1, + ACTIONS(12136), 1, anon_sym_RPAREN, - STATE(7563), 1, + STATE(7907), 1, sym_comment, - [240670] = 3, - ACTIONS(247), 1, + [242981] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11632), 1, - anon_sym_RBRACE, - STATE(7564), 1, + ACTIONS(12138), 1, + anon_sym_EQ, + STATE(7908), 1, sym_comment, - [240680] = 3, - ACTIONS(247), 1, + [242991] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11634), 1, + ACTIONS(12140), 1, + sym_raw_string_end, + STATE(7909), 1, + sym_comment, + [243001] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(12142), 1, aux_sym_cmd_identifier_token41, - STATE(7565), 1, + STATE(7910), 1, sym_comment, - [240690] = 3, - ACTIONS(247), 1, + [243011] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11636), 1, - anon_sym_RBRACE, - STATE(7566), 1, + ACTIONS(5453), 1, + anon_sym_LBRACK2, + STATE(7911), 1, sym_comment, - [240700] = 3, - ACTIONS(3), 1, + [243021] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11638), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7567), 1, + ACTIONS(5416), 1, + aux_sym_cmd_identifier_token41, + STATE(7912), 1, sym_comment, - [240710] = 3, - ACTIONS(247), 1, + [243031] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11640), 1, - anon_sym_RBRACK, - STATE(7568), 1, + ACTIONS(1699), 1, + aux_sym__unquoted_in_record_token2, + STATE(7913), 1, sym_comment, - [240720] = 3, - ACTIONS(247), 1, + [243041] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11642), 1, - anon_sym_RPAREN, - STATE(7569), 1, + ACTIONS(12144), 1, + sym_raw_string_end, + STATE(7914), 1, sym_comment, - [240730] = 3, - ACTIONS(247), 1, + [243051] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11644), 1, + ACTIONS(12146), 1, anon_sym_RBRACK, - STATE(7570), 1, + STATE(7915), 1, sym_comment, - [240740] = 3, - ACTIONS(247), 1, + [243061] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11646), 1, - sym_param_short_flag_identifier, - STATE(7571), 1, + ACTIONS(12148), 1, + anon_sym_RPAREN, + STATE(7916), 1, sym_comment, - [240750] = 3, - ACTIONS(247), 1, + [243071] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11648), 1, - anon_sym_RBRACE, - STATE(7572), 1, + ACTIONS(12150), 1, + sym_raw_string_content, + STATE(7917), 1, sym_comment, - [240760] = 3, - ACTIONS(247), 1, + [243081] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6892), 1, + ACTIONS(6034), 1, anon_sym_LBRACK2, - STATE(7573), 1, + STATE(7918), 1, sym_comment, - [240770] = 3, - ACTIONS(247), 1, + [243091] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11650), 1, - anon_sym_RBRACK, - STATE(7574), 1, + ACTIONS(12152), 1, + anon_sym_RBRACE, + STATE(7919), 1, sym_comment, - [240780] = 3, - ACTIONS(247), 1, + [243101] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11652), 1, - anon_sym_RBRACE, - STATE(7575), 1, + ACTIONS(12154), 1, + anon_sym_RPAREN, + STATE(7920), 1, sym_comment, - [240790] = 3, - ACTIONS(247), 1, + [243111] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11654), 1, + ACTIONS(12156), 1, anon_sym_RBRACE, - STATE(7576), 1, + STATE(7921), 1, sym_comment, - [240800] = 3, - ACTIONS(247), 1, + [243121] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11656), 1, + ACTIONS(12158), 1, anon_sym_RPAREN, - STATE(7577), 1, + STATE(7922), 1, sym_comment, - [240810] = 3, - ACTIONS(247), 1, + [243131] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11658), 1, - anon_sym_LBRACE, - STATE(7578), 1, + ACTIONS(12160), 1, + aux_sym_record_entry_token1, + STATE(7923), 1, sym_comment, - [240820] = 3, - ACTIONS(247), 1, + [243141] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11660), 1, - anon_sym_RBRACE, - STATE(7579), 1, + ACTIONS(12162), 1, + anon_sym_RPAREN, + STATE(7924), 1, sym_comment, - [240830] = 3, - ACTIONS(247), 1, + [243151] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4614), 1, - aux_sym_unquoted_token2, - STATE(7580), 1, + ACTIONS(12164), 1, + anon_sym_GT, + STATE(7925), 1, sym_comment, - [240840] = 3, - ACTIONS(247), 1, + [243161] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11662), 1, - anon_sym_LBRACE, - STATE(7581), 1, + ACTIONS(12166), 1, + sym_raw_string_end, + STATE(7926), 1, sym_comment, - [240850] = 3, - ACTIONS(247), 1, + [243171] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11664), 1, - aux_sym_cmd_identifier_token41, - STATE(7582), 1, + ACTIONS(12168), 1, + sym_raw_string_end, + STATE(7927), 1, sym_comment, - [240860] = 3, - ACTIONS(247), 1, + [243181] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11666), 1, - anon_sym_EQ_GT, - STATE(7583), 1, + ACTIONS(5805), 1, + aux_sym__unquoted_in_list_token2, + STATE(7928), 1, sym_comment, - [240870] = 3, - ACTIONS(247), 1, + [243191] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11668), 1, - anon_sym_RPAREN, - STATE(7584), 1, + ACTIONS(6985), 1, + aux_sym_unquoted_token2, + STATE(7929), 1, sym_comment, - [240880] = 3, - ACTIONS(247), 1, + [243201] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6005), 1, - anon_sym_LBRACK2, - STATE(7585), 1, + ACTIONS(12170), 1, + sym_raw_string_content, + STATE(7930), 1, sym_comment, - [240890] = 3, - ACTIONS(247), 1, + [243211] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11670), 1, - anon_sym_RPAREN, - STATE(7586), 1, + ACTIONS(2514), 1, + anon_sym_LBRACK2, + STATE(7931), 1, sym_comment, - [240900] = 3, - ACTIONS(247), 1, + [243221] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11658), 1, + ACTIONS(12172), 1, anon_sym_LBRACE, - STATE(7587), 1, - sym_comment, - [240910] = 3, - ACTIONS(247), 1, - anon_sym_POUND, - ACTIONS(11672), 1, - anon_sym_RBRACE, - STATE(7588), 1, + STATE(7932), 1, sym_comment, - [240920] = 3, - ACTIONS(247), 1, + [243231] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11674), 1, + ACTIONS(12174), 1, anon_sym_RBRACE, - STATE(7589), 1, + STATE(7933), 1, sym_comment, - [240930] = 3, - ACTIONS(247), 1, + [243241] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11532), 1, - anon_sym_LBRACE, - STATE(7590), 1, + ACTIONS(12176), 1, + anon_sym_RPAREN, + STATE(7934), 1, sym_comment, - [240940] = 3, - ACTIONS(3), 1, + [243251] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11021), 1, - aux_sym_cmd_identifier_token37, - STATE(7591), 1, + ACTIONS(12178), 1, + anon_sym_RBRACE, + STATE(7935), 1, sym_comment, - [240950] = 3, + [243261] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6355), 1, + ACTIONS(4622), 1, aux_sym_unquoted_token4, - STATE(7592), 1, + STATE(7936), 1, sym_comment, - [240960] = 3, - ACTIONS(247), 1, + [243271] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11676), 1, + ACTIONS(12180), 1, anon_sym_RBRACE, - STATE(7593), 1, + STATE(7937), 1, sym_comment, - [240970] = 3, - ACTIONS(247), 1, + [243281] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11678), 1, - anon_sym_LPAREN2, - STATE(7594), 1, + ACTIONS(12182), 1, + anon_sym_RBRACK, + STATE(7938), 1, sym_comment, - [240980] = 3, - ACTIONS(247), 1, + [243291] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11680), 1, - anon_sym_RBRACK, - STATE(7595), 1, + ACTIONS(12184), 1, + anon_sym_RPAREN, + STATE(7939), 1, sym_comment, - [240990] = 3, - ACTIONS(247), 1, + [243301] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11682), 1, - anon_sym_LBRACE, - STATE(7596), 1, + ACTIONS(12186), 1, + sym_raw_string_content, + STATE(7940), 1, sym_comment, - [241000] = 3, - ACTIONS(247), 1, + [243311] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6480), 1, + ACTIONS(2357), 1, anon_sym_LBRACK2, - STATE(7597), 1, + STATE(7941), 1, sym_comment, - [241010] = 3, - ACTIONS(247), 1, + [243321] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11684), 1, - anon_sym_RPAREN, - STATE(7598), 1, + ACTIONS(12188), 1, + anon_sym_RBRACK, + STATE(7942), 1, sym_comment, - [241020] = 3, - ACTIONS(247), 1, + [243331] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11686), 1, + ACTIONS(12190), 1, anon_sym_RBRACE, - STATE(7599), 1, + STATE(7943), 1, sym_comment, - [241030] = 3, - ACTIONS(247), 1, + [243341] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11688), 1, + ACTIONS(12192), 1, anon_sym_RBRACE, - STATE(7600), 1, + STATE(7944), 1, sym_comment, - [241040] = 3, - ACTIONS(247), 1, + [243351] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11690), 1, - anon_sym_RBRACE, - STATE(7601), 1, + ACTIONS(12194), 1, + sym_raw_string_end, + STATE(7945), 1, sym_comment, - [241050] = 3, - ACTIONS(247), 1, + [243361] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11692), 1, + ACTIONS(12196), 1, anon_sym_RBRACE, - STATE(7602), 1, + STATE(7946), 1, sym_comment, - [241060] = 3, - ACTIONS(247), 1, + [243371] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11694), 1, - anon_sym_RBRACE, - STATE(7603), 1, + ACTIONS(12198), 1, + anon_sym_RPAREN, + STATE(7947), 1, sym_comment, - [241070] = 3, - ACTIONS(247), 1, + [243381] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11696), 1, - sym__table_head_separator, - STATE(7604), 1, + ACTIONS(11515), 1, + aux_sym_cmd_identifier_token37, + STATE(7948), 1, sym_comment, - [241080] = 3, - ACTIONS(3), 1, + [243391] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8925), 1, - aux_sym_unquoted_token4, - STATE(7605), 1, + ACTIONS(12200), 1, + anon_sym_RBRACE, + STATE(7949), 1, sym_comment, - [241090] = 3, - ACTIONS(247), 1, + [243401] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11698), 1, - anon_sym_RPAREN, - STATE(7606), 1, + ACTIONS(12202), 1, + sym_raw_string_content, + STATE(7950), 1, sym_comment, - [241100] = 3, - ACTIONS(247), 1, + [243411] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11700), 1, - anon_sym_RBRACE, - STATE(7607), 1, + ACTIONS(12204), 1, + anon_sym_RPAREN, + STATE(7951), 1, sym_comment, - [241110] = 3, - ACTIONS(247), 1, + [243421] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(565), 1, - anon_sym_RPAREN2, - STATE(7608), 1, + ACTIONS(12206), 1, + sym_raw_string_end, + STATE(7952), 1, sym_comment, - [241120] = 3, - ACTIONS(247), 1, + [243431] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2529), 1, - anon_sym_LBRACK2, - STATE(7609), 1, + ACTIONS(12208), 1, + anon_sym_RBRACK, + STATE(7953), 1, sym_comment, - [241130] = 3, - ACTIONS(247), 1, + [243441] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11702), 1, + ACTIONS(12210), 1, anon_sym_RPAREN, - STATE(7610), 1, + STATE(7954), 1, sym_comment, - [241140] = 3, - ACTIONS(3), 1, + [243451] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4816), 1, - aux_sym_cmd_identifier_token37, - STATE(7611), 1, + ACTIONS(12212), 1, + anon_sym_RPAREN, + STATE(7955), 1, sym_comment, - [241150] = 3, - ACTIONS(247), 1, + [243461] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11704), 1, - anon_sym_RPAREN, - STATE(7612), 1, + ACTIONS(541), 1, + anon_sym_RPAREN2, + STATE(7956), 1, sym_comment, - [241160] = 3, - ACTIONS(247), 1, + [243471] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11706), 1, + ACTIONS(12214), 1, anon_sym_RBRACE, - STATE(7613), 1, + STATE(7957), 1, sym_comment, - [241170] = 3, - ACTIONS(247), 1, + [243481] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6939), 1, - aux_sym_unquoted_token2, - STATE(7614), 1, + ACTIONS(12216), 1, + anon_sym_RPAREN, + STATE(7958), 1, sym_comment, - [241180] = 3, - ACTIONS(247), 1, + [243491] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11708), 1, - anon_sym_RBRACK, - STATE(7615), 1, + ACTIONS(12218), 1, + sym_raw_string_content, + STATE(7959), 1, sym_comment, - [241190] = 3, - ACTIONS(247), 1, + [243501] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11710), 1, - anon_sym_RPAREN, - STATE(7616), 1, + ACTIONS(12220), 1, + anon_sym_RBRACE, + STATE(7960), 1, sym_comment, - [241200] = 3, - ACTIONS(247), 1, + [243511] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11712), 1, - sym_identifier, - STATE(7617), 1, + ACTIONS(12222), 1, + anon_sym_RPAREN, + STATE(7961), 1, sym_comment, - [241210] = 3, - ACTIONS(247), 1, + [243521] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2315), 1, - anon_sym_LBRACK2, - STATE(7618), 1, + ACTIONS(2218), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(7962), 1, sym_comment, - [241220] = 3, - ACTIONS(247), 1, + [243531] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11714), 1, + ACTIONS(12224), 1, anon_sym_RBRACE, - STATE(7619), 1, + STATE(7963), 1, sym_comment, - [241230] = 3, - ACTIONS(247), 1, + [243541] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11716), 1, - aux_sym_env_var_token2, - STATE(7620), 1, + ACTIONS(12226), 1, + ts_builtin_sym_end, + STATE(7964), 1, sym_comment, - [241240] = 3, - ACTIONS(247), 1, + [243551] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(493), 1, - anon_sym_RPAREN2, - STATE(7621), 1, + ACTIONS(12228), 1, + anon_sym_RBRACE, + STATE(7965), 1, sym_comment, - [241250] = 3, - ACTIONS(247), 1, + [243561] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11718), 1, - anon_sym_RPAREN, - STATE(7622), 1, + ACTIONS(12230), 1, + anon_sym_RBRACE, + STATE(7966), 1, sym_comment, - [241260] = 3, - ACTIONS(247), 1, + [243571] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11720), 1, - anon_sym_RBRACE, - STATE(7623), 1, + ACTIONS(569), 1, + anon_sym_RPAREN2, + STATE(7967), 1, sym_comment, - [241270] = 3, - ACTIONS(247), 1, + [243581] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11722), 1, - anon_sym_EQ, - STATE(7624), 1, + ACTIONS(12232), 1, + sym_raw_string_content, + STATE(7968), 1, sym_comment, - [241280] = 3, - ACTIONS(3), 1, + [243591] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8350), 1, - aux_sym_unquoted_token4, - STATE(7625), 1, + ACTIONS(12234), 1, + anon_sym_RPAREN, + STATE(7969), 1, sym_comment, - [241290] = 3, - ACTIONS(247), 1, + [243601] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11724), 1, - anon_sym_RBRACK, - STATE(7626), 1, + ACTIONS(7135), 1, + aux_sym__unquoted_in_list_token2, + STATE(7970), 1, sym_comment, - [241300] = 3, - ACTIONS(247), 1, + [243611] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11726), 1, - anon_sym_RPAREN, - STATE(7627), 1, + ACTIONS(12236), 1, + anon_sym_LPAREN2, + STATE(7971), 1, sym_comment, - [241310] = 3, - ACTIONS(247), 1, + [243621] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11728), 1, - anon_sym_RBRACE, - STATE(7628), 1, + ACTIONS(12238), 1, + anon_sym_RPAREN, + STATE(7972), 1, sym_comment, - [241320] = 3, - ACTIONS(247), 1, + [243631] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6790), 1, + ACTIONS(7021), 1, aux_sym_unquoted_token2, - STATE(7629), 1, + STATE(7973), 1, sym_comment, - [241330] = 3, - ACTIONS(247), 1, + [243641] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11730), 1, - anon_sym_RBRACK, - STATE(7630), 1, + ACTIONS(12240), 1, + anon_sym_RBRACE, + STATE(7974), 1, sym_comment, - [241340] = 3, - ACTIONS(247), 1, + [243651] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11732), 1, - sym_identifier, - STATE(7631), 1, + ACTIONS(12242), 1, + anon_sym_RPAREN, + STATE(7975), 1, sym_comment, - [241350] = 3, - ACTIONS(247), 1, + [243661] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11734), 1, - anon_sym_RBRACK, - STATE(7632), 1, + ACTIONS(555), 1, + anon_sym_RPAREN2, + STATE(7976), 1, sym_comment, - [241360] = 3, - ACTIONS(247), 1, + [243671] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11736), 1, - anon_sym_RPAREN, - STATE(7633), 1, + ACTIONS(12244), 1, + sym_raw_string_content, + STATE(7977), 1, sym_comment, - [241370] = 3, - ACTIONS(247), 1, + [243681] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11738), 1, + ACTIONS(12246), 1, anon_sym_RBRACE, - STATE(7634), 1, + STATE(7978), 1, sym_comment, - [241380] = 3, - ACTIONS(247), 1, + [243691] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11740), 1, + ACTIONS(12248), 1, anon_sym_RPAREN, - STATE(7635), 1, + STATE(7979), 1, sym_comment, - [241390] = 3, - ACTIONS(247), 1, + [243701] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11742), 1, + ACTIONS(12250), 1, anon_sym_RBRACE, - STATE(7636), 1, + STATE(7980), 1, sym_comment, - [241400] = 3, - ACTIONS(247), 1, + [243711] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11744), 1, + ACTIONS(12252), 1, anon_sym_RPAREN, - STATE(7637), 1, + STATE(7981), 1, sym_comment, - [241410] = 3, - ACTIONS(247), 1, + [243721] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11746), 1, - anon_sym_RBRACE, - STATE(7638), 1, + ACTIONS(12254), 1, + ts_builtin_sym_end, + STATE(7982), 1, sym_comment, - [241420] = 3, - ACTIONS(247), 1, + [243731] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11748), 1, + ACTIONS(12256), 1, anon_sym_RBRACE, - STATE(7639), 1, + STATE(7983), 1, sym_comment, - [241430] = 3, - ACTIONS(247), 1, + [243741] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11750), 1, - anon_sym_RPAREN, - STATE(7640), 1, + ACTIONS(12258), 1, + anon_sym_GT, + STATE(7984), 1, sym_comment, - [241440] = 3, - ACTIONS(247), 1, + [243751] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11752), 1, - anon_sym_in, - STATE(7641), 1, + ACTIONS(12260), 1, + sym_raw_string_end, + STATE(7985), 1, sym_comment, - [241450] = 3, - ACTIONS(247), 1, + [243761] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11754), 1, + ACTIONS(12262), 1, + sym_raw_string_content, + STATE(7986), 1, + sym_comment, + [243771] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(12264), 1, anon_sym_RPAREN, - STATE(7642), 1, + STATE(7987), 1, sym_comment, - [241460] = 3, - ACTIONS(247), 1, + [243781] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11756), 1, + ACTIONS(12266), 1, anon_sym_RBRACE, - STATE(7643), 1, + STATE(7988), 1, sym_comment, - [241470] = 3, - ACTIONS(247), 1, + [243791] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11758), 1, - sym__table_head_separator, - STATE(7644), 1, + ACTIONS(12268), 1, + anon_sym_RBRACE, + STATE(7989), 1, sym_comment, - [241480] = 3, - ACTIONS(3), 1, + [243801] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11128), 1, - aux_sym_cmd_identifier_token37, - STATE(7645), 1, + ACTIONS(12270), 1, + sym_identifier, + STATE(7990), 1, sym_comment, - [241490] = 3, - ACTIONS(247), 1, + [243811] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11760), 1, - anon_sym_EQ, - STATE(7646), 1, + ACTIONS(12272), 1, + anon_sym_RPAREN, + STATE(7991), 1, sym_comment, - [241500] = 3, - ACTIONS(247), 1, + [243821] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11762), 1, - anon_sym_RPAREN, - STATE(7647), 1, + ACTIONS(4645), 1, + aux_sym_unquoted_token4, + STATE(7992), 1, sym_comment, - [241510] = 3, - ACTIONS(247), 1, + [243831] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11764), 1, - anon_sym_RBRACE, - STATE(7648), 1, + ACTIONS(12274), 1, + sym_raw_string_content, + STATE(7993), 1, sym_comment, - [241520] = 3, - ACTIONS(247), 1, + [243841] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11766), 1, - anon_sym_LBRACE, - STATE(7649), 1, + ACTIONS(12276), 1, + sym_raw_string_content, + STATE(7994), 1, sym_comment, - [241530] = 3, - ACTIONS(247), 1, + [243851] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11768), 1, - anon_sym_EQ_GT, - STATE(7650), 1, + ACTIONS(12278), 1, + sym_raw_string_content, + STATE(7995), 1, sym_comment, - [241540] = 3, - ACTIONS(247), 1, + [243861] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11770), 1, - anon_sym_RPAREN, - STATE(7651), 1, + ACTIONS(12280), 1, + sym_raw_string_content, + STATE(7996), 1, sym_comment, - [241550] = 3, - ACTIONS(247), 1, + [243871] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5189), 1, - aux_sym_cmd_identifier_token41, - STATE(7652), 1, + ACTIONS(12282), 1, + sym_raw_string_content, + STATE(7997), 1, sym_comment, - [241560] = 3, - ACTIONS(247), 1, + [243881] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5288), 1, - aux_sym_cmd_identifier_token41, - STATE(7653), 1, + ACTIONS(12284), 1, + sym_raw_string_content, + STATE(7998), 1, sym_comment, - [241570] = 3, - ACTIONS(247), 1, + [243891] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11772), 1, - anon_sym_RBRACK, - STATE(7654), 1, + ACTIONS(12286), 1, + sym_raw_string_content, + STATE(7999), 1, sym_comment, - [241580] = 3, - ACTIONS(247), 1, + [243901] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11774), 1, - anon_sym_RPAREN, - STATE(7655), 1, + ACTIONS(12288), 1, + sym_raw_string_content, + STATE(8000), 1, sym_comment, - [241590] = 3, - ACTIONS(247), 1, + [243911] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11776), 1, - anon_sym_RPAREN, - STATE(7656), 1, + ACTIONS(12290), 1, + sym_raw_string_content, + STATE(8001), 1, sym_comment, - [241600] = 3, - ACTIONS(247), 1, + [243921] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11778), 1, - anon_sym_RPAREN, - STATE(7657), 1, + ACTIONS(12292), 1, + sym_raw_string_content, + STATE(8002), 1, sym_comment, - [241610] = 3, - ACTIONS(247), 1, + [243931] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11780), 1, - anon_sym_RPAREN, - STATE(7658), 1, + ACTIONS(12294), 1, + sym_raw_string_content, + STATE(8003), 1, sym_comment, - [241620] = 3, - ACTIONS(3), 1, + [243941] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(2033), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7659), 1, + ACTIONS(12296), 1, + sym_raw_string_content, + STATE(8004), 1, sym_comment, - [241630] = 3, - ACTIONS(247), 1, + [243951] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11782), 1, - anon_sym_RBRACE, - STATE(7660), 1, + ACTIONS(12298), 1, + sym_raw_string_content, + STATE(8005), 1, sym_comment, - [241640] = 3, - ACTIONS(247), 1, + [243961] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11784), 1, - sym__table_head_separator, - STATE(7661), 1, + ACTIONS(12300), 1, + sym_raw_string_content, + STATE(8006), 1, sym_comment, - [241650] = 3, - ACTIONS(247), 1, + [243971] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11786), 1, - anon_sym_RPAREN, - STATE(7662), 1, + ACTIONS(12302), 1, + sym_raw_string_content, + STATE(8007), 1, sym_comment, - [241660] = 3, - ACTIONS(247), 1, + [243981] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11788), 1, - anon_sym_RBRACE, - STATE(7663), 1, + ACTIONS(12304), 1, + sym_raw_string_content, + STATE(8008), 1, sym_comment, - [241670] = 3, - ACTIONS(247), 1, + [243991] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11790), 1, - anon_sym_GT, - STATE(7664), 1, + ACTIONS(12306), 1, + sym_raw_string_content, + STATE(8009), 1, sym_comment, - [241680] = 3, - ACTIONS(247), 1, + [244001] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11792), 1, - anon_sym_RBRACE, - STATE(7665), 1, + ACTIONS(12308), 1, + sym_raw_string_content, + STATE(8010), 1, sym_comment, - [241690] = 3, - ACTIONS(247), 1, + [244011] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11794), 1, - anon_sym_RBRACE, - STATE(7666), 1, + ACTIONS(12310), 1, + sym_raw_string_content, + STATE(8011), 1, sym_comment, - [241700] = 3, - ACTIONS(247), 1, + [244021] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11796), 1, - anon_sym_RPAREN, - STATE(7667), 1, + ACTIONS(12312), 1, + sym_raw_string_content, + STATE(8012), 1, sym_comment, - [241710] = 3, - ACTIONS(247), 1, + [244031] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11798), 1, - anon_sym_LPAREN2, - STATE(7668), 1, + ACTIONS(12314), 1, + sym_raw_string_content, + STATE(8013), 1, sym_comment, - [241720] = 3, - ACTIONS(247), 1, + [244041] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11800), 1, - anon_sym_RPAREN, - STATE(7669), 1, + ACTIONS(12316), 1, + sym_raw_string_content, + STATE(8014), 1, sym_comment, - [241730] = 3, - ACTIONS(247), 1, + [244051] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11802), 1, - anon_sym_EQ, - STATE(7670), 1, + ACTIONS(12318), 1, + sym_raw_string_content, + STATE(8015), 1, sym_comment, - [241740] = 3, - ACTIONS(3), 1, + [244061] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11804), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7671), 1, + ACTIONS(12320), 1, + sym_raw_string_content, + STATE(8016), 1, sym_comment, - [241750] = 3, - ACTIONS(247), 1, + [244071] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11806), 1, - anon_sym_RBRACK, - STATE(7672), 1, + ACTIONS(12322), 1, + sym_raw_string_content, + STATE(8017), 1, sym_comment, - [241760] = 3, - ACTIONS(247), 1, + [244081] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11808), 1, - anon_sym_RPAREN, - STATE(7673), 1, + ACTIONS(12324), 1, + sym_raw_string_content, + STATE(8018), 1, sym_comment, - [241770] = 3, - ACTIONS(247), 1, + [244091] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11810), 1, - anon_sym_RPAREN, - STATE(7674), 1, + ACTIONS(12326), 1, + sym_raw_string_content, + STATE(8019), 1, sym_comment, - [241780] = 3, - ACTIONS(247), 1, + [244101] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11812), 1, - anon_sym_RBRACE, - STATE(7675), 1, + ACTIONS(12328), 1, + sym_raw_string_content, + STATE(8020), 1, sym_comment, - [241790] = 3, - ACTIONS(247), 1, + [244111] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11814), 1, - anon_sym_in, - STATE(7676), 1, + ACTIONS(12330), 1, + sym_raw_string_content, + STATE(8021), 1, sym_comment, - [241800] = 3, - ACTIONS(247), 1, + [244121] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11816), 1, - anon_sym_RPAREN, - STATE(7677), 1, + ACTIONS(12332), 1, + sym_raw_string_content, + STATE(8022), 1, sym_comment, - [241810] = 3, - ACTIONS(247), 1, + [244131] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11818), 1, - anon_sym_in, - STATE(7678), 1, + ACTIONS(12334), 1, + anon_sym_RBRACE, + STATE(8023), 1, sym_comment, - [241820] = 3, - ACTIONS(247), 1, + [244141] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11820), 1, - anon_sym_RBRACK, - STATE(7679), 1, + ACTIONS(12336), 1, + anon_sym_LPAREN2, + STATE(8024), 1, sym_comment, - [241830] = 3, - ACTIONS(247), 1, + [244151] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11822), 1, + ACTIONS(12338), 1, anon_sym_RBRACK, - STATE(7680), 1, + STATE(8025), 1, sym_comment, - [241840] = 3, - ACTIONS(247), 1, + [244161] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(8395), 1, - aux_sym_unquoted_token2, - STATE(7681), 1, + ACTIONS(12340), 1, + sym_raw_string_end, + STATE(8026), 1, sym_comment, - [241850] = 3, - ACTIONS(3), 1, + [244171] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11824), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7682), 1, + ACTIONS(12342), 1, + sym_identifier, + STATE(8027), 1, sym_comment, - [241860] = 3, - ACTIONS(3), 1, + [244181] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(10968), 1, - aux_sym_cmd_identifier_token37, - STATE(7683), 1, + ACTIONS(12344), 1, + anon_sym_EQ, + STATE(8028), 1, sym_comment, - [241870] = 3, - ACTIONS(247), 1, + [244191] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11826), 1, + ACTIONS(12346), 1, + anon_sym_GT, + STATE(8029), 1, + sym_comment, + [244201] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(12348), 1, + sym__table_head_separator, + STATE(8030), 1, + sym_comment, + [244211] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(12350), 1, anon_sym_RBRACE, - STATE(7684), 1, + STATE(8031), 1, sym_comment, - [241880] = 3, - ACTIONS(247), 1, + [244221] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(553), 1, - anon_sym_RPAREN2, - STATE(7685), 1, + ACTIONS(12352), 1, + anon_sym_in, + STATE(8032), 1, sym_comment, - [241890] = 3, - ACTIONS(247), 1, + [244231] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11828), 1, - anon_sym_RPAREN, - STATE(7686), 1, + ACTIONS(10859), 1, + aux_sym_cmd_identifier_token37, + STATE(8033), 1, sym_comment, - [241900] = 3, - ACTIONS(247), 1, + [244241] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(5391), 1, - aux_sym_unquoted_token2, - STATE(7687), 1, + ACTIONS(12354), 1, + anon_sym_GT, + STATE(8034), 1, sym_comment, - [241910] = 3, - ACTIONS(247), 1, + [244251] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11830), 1, + ACTIONS(12356), 1, anon_sym_RBRACE, - STATE(7688), 1, + STATE(8035), 1, sym_comment, - [241920] = 3, - ACTIONS(247), 1, + [244261] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11832), 1, + ACTIONS(1852), 1, + aux_sym_unquoted_token2, + STATE(8036), 1, + sym_comment, + [244271] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(12358), 1, + anon_sym_in, + STATE(8037), 1, + sym_comment, + [244281] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(12360), 1, anon_sym_RBRACE, - STATE(7689), 1, + STATE(8038), 1, sym_comment, - [241930] = 3, - ACTIONS(247), 1, + [244291] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11834), 1, + ACTIONS(12362), 1, anon_sym_RPAREN, - STATE(7690), 1, + STATE(8039), 1, sym_comment, - [241940] = 3, - ACTIONS(247), 1, + [244301] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11836), 1, + ACTIONS(12364), 1, anon_sym_RBRACE, - STATE(7691), 1, + STATE(8040), 1, sym_comment, - [241950] = 3, - ACTIONS(247), 1, + [244311] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11838), 1, - anon_sym_RPAREN, - STATE(7692), 1, + ACTIONS(12366), 1, + anon_sym_RBRACE, + STATE(8041), 1, sym_comment, - [241960] = 3, - ACTIONS(247), 1, + [244321] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11840), 1, + ACTIONS(12368), 1, + anon_sym_RBRACE, + STATE(8042), 1, + sym_comment, + [244331] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(12370), 1, anon_sym_RPAREN, - STATE(7693), 1, + STATE(8043), 1, sym_comment, - [241970] = 3, - ACTIONS(247), 1, + [244341] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11842), 1, - anon_sym_RBRACE, - STATE(7694), 1, + ACTIONS(12372), 1, + sym_identifier, + STATE(8044), 1, sym_comment, - [241980] = 3, + [244351] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8395), 1, - aux_sym_unquoted_token4, - STATE(7695), 1, + ACTIONS(12374), 1, + sym__space, + STATE(8045), 1, sym_comment, - [241990] = 3, - ACTIONS(247), 1, + [244361] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11844), 1, - anon_sym_RPAREN, - STATE(7696), 1, + ACTIONS(6542), 1, + anon_sym_LPAREN2, + STATE(8046), 1, sym_comment, - [242000] = 3, + [244371] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2033), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7697), 1, + ACTIONS(2218), 1, + aux_sym__unquoted_with_expr_token1, + STATE(8047), 1, sym_comment, - [242010] = 3, - ACTIONS(247), 1, + [244381] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11846), 1, - anon_sym_RBRACK, - STATE(7698), 1, + ACTIONS(12376), 1, + sym_raw_string_end, + STATE(8048), 1, sym_comment, - [242020] = 3, - ACTIONS(247), 1, + [244391] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(1798), 1, - aux_sym_unquoted_token2, - STATE(7699), 1, + ACTIONS(12378), 1, + anon_sym_RBRACE, + STATE(8049), 1, sym_comment, - [242030] = 3, - ACTIONS(247), 1, + [244401] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11848), 1, + ACTIONS(12380), 1, anon_sym_RBRACE, - STATE(7700), 1, + STATE(8050), 1, sym_comment, - [242040] = 3, - ACTIONS(247), 1, + [244411] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6412), 1, - anon_sym_LPAREN2, - STATE(7701), 1, + ACTIONS(12382), 1, + anon_sym_RPAREN2, + STATE(8051), 1, sym_comment, - [242050] = 3, - ACTIONS(247), 1, + [244421] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11850), 1, + ACTIONS(12384), 1, + sym_raw_string_end, + STATE(8052), 1, + sym_comment, + [244431] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(12386), 1, anon_sym_RPAREN, - STATE(7702), 1, + STATE(8053), 1, sym_comment, - [242060] = 3, - ACTIONS(247), 1, + [244441] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11852), 1, + ACTIONS(12388), 1, anon_sym_LPAREN2, - STATE(7703), 1, + STATE(8054), 1, sym_comment, - [242070] = 3, - ACTIONS(247), 1, + [244451] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11854), 1, - anon_sym_DASH_GT, - STATE(7704), 1, + ACTIONS(12390), 1, + anon_sym_in, + STATE(8055), 1, sym_comment, - [242080] = 3, - ACTIONS(247), 1, + [244461] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11856), 1, + ACTIONS(12392), 1, anon_sym_LPAREN2, - STATE(7705), 1, + STATE(8056), 1, sym_comment, - [242090] = 3, - ACTIONS(247), 1, + [244471] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(4742), 1, - aux_sym_unquoted_token2, - STATE(7706), 1, + ACTIONS(12394), 1, + anon_sym_GT, + STATE(8057), 1, sym_comment, - [242100] = 3, - ACTIONS(247), 1, + [244481] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11858), 1, - anon_sym_LBRACE, - STATE(7707), 1, + ACTIONS(12396), 1, + sym_raw_string_end, + STATE(8058), 1, sym_comment, - [242110] = 3, - ACTIONS(247), 1, + [244491] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11860), 1, - aux_sym_cmd_identifier_token41, - STATE(7708), 1, + ACTIONS(12398), 1, + anon_sym_RBRACE, + STATE(8059), 1, sym_comment, - [242120] = 3, - ACTIONS(247), 1, + [244501] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11862), 1, - sym_identifier, - STATE(7709), 1, + ACTIONS(12400), 1, + anon_sym_RBRACE, + STATE(8060), 1, sym_comment, - [242130] = 3, - ACTIONS(247), 1, + [244511] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11864), 1, + ACTIONS(12402), 1, anon_sym_RBRACE, - STATE(7710), 1, + STATE(8061), 1, sym_comment, - [242140] = 3, - ACTIONS(247), 1, + [244521] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11866), 1, - anon_sym_RPAREN, - STATE(7711), 1, + ACTIONS(10256), 1, + aux_sym_cmd_identifier_token37, + STATE(8062), 1, sym_comment, - [242150] = 3, - ACTIONS(247), 1, + [244531] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11868), 1, - anon_sym_RPAREN, - STATE(7712), 1, + ACTIONS(12404), 1, + sym_raw_string_end, + STATE(8063), 1, sym_comment, - [242160] = 3, - ACTIONS(3), 1, + [244541] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(6939), 1, - aux_sym_unquoted_token4, - STATE(7713), 1, + ACTIONS(12406), 1, + anon_sym_RPAREN, + STATE(8064), 1, sym_comment, - [242170] = 3, - ACTIONS(247), 1, + [244551] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11870), 1, - anon_sym_RBRACK, - STATE(7714), 1, + ACTIONS(12408), 1, + anon_sym_RBRACE, + STATE(8065), 1, sym_comment, - [242180] = 3, - ACTIONS(247), 1, + [244561] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11872), 1, - anon_sym_RBRACE, - STATE(7715), 1, + ACTIONS(12410), 1, + anon_sym_RBRACK, + STATE(8066), 1, sym_comment, - [242190] = 3, - ACTIONS(247), 1, + [244571] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11874), 1, - anon_sym_RPAREN, - STATE(7716), 1, + ACTIONS(5464), 1, + aux_sym_unquoted_token2, + STATE(8067), 1, sym_comment, - [242200] = 3, - ACTIONS(247), 1, + [244581] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11876), 1, - anon_sym_DASH_GT, - STATE(7717), 1, + ACTIONS(12412), 1, + anon_sym_GT, + STATE(8068), 1, sym_comment, - [242210] = 3, - ACTIONS(247), 1, + [244591] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11878), 1, - anon_sym_RBRACE, - STATE(7718), 1, + ACTIONS(12414), 1, + anon_sym_LBRACE, + STATE(8069), 1, sym_comment, - [242220] = 3, - ACTIONS(247), 1, + [244601] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11880), 1, - anon_sym_RBRACE, - STATE(7719), 1, + ACTIONS(5603), 1, + aux_sym_record_entry_token1, + STATE(8070), 1, sym_comment, - [242230] = 3, + [244611] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6790), 1, + ACTIONS(6929), 1, aux_sym_unquoted_token4, - STATE(7720), 1, + STATE(8071), 1, sym_comment, - [242240] = 3, - ACTIONS(247), 1, + [244621] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11882), 1, + ACTIONS(12416), 1, + anon_sym_RBRACK, + STATE(8072), 1, + sym_comment, + [244631] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(12418), 1, anon_sym_RPAREN, - STATE(7721), 1, + STATE(8073), 1, sym_comment, - [242250] = 3, - ACTIONS(247), 1, + [244641] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11884), 1, + ACTIONS(12420), 1, anon_sym_RBRACE, - STATE(7722), 1, + STATE(8074), 1, sym_comment, - [242260] = 3, - ACTIONS(247), 1, + [244651] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11886), 1, - anon_sym_RBRACE, - STATE(7723), 1, + ACTIONS(12422), 1, + anon_sym_RPAREN, + STATE(8075), 1, sym_comment, - [242270] = 3, - ACTIONS(247), 1, + [244661] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11888), 1, - sym_identifier, - STATE(7724), 1, + ACTIONS(12424), 1, + anon_sym_RPAREN, + STATE(8076), 1, sym_comment, - [242280] = 3, - ACTIONS(247), 1, + [244671] = 3, + ACTIONS(249), 1, anon_sym_POUND, - ACTIONS(11890), 1, + ACTIONS(12426), 1, anon_sym_RBRACE, - STATE(7725), 1, + STATE(8077), 1, sym_comment, - [242290] = 1, - ACTIONS(11892), 1, + [244681] = 3, + ACTIONS(249), 1, + anon_sym_POUND, + ACTIONS(12428), 1, + sym_raw_string_end, + STATE(8078), 1, + sym_comment, + [244691] = 1, + ACTIONS(12430), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(1506)] = 0, - [SMALL_STATE(1507)] = 77, - [SMALL_STATE(1508)] = 154, - [SMALL_STATE(1509)] = 227, - [SMALL_STATE(1510)] = 302, - [SMALL_STATE(1511)] = 379, - [SMALL_STATE(1512)] = 456, - [SMALL_STATE(1513)] = 533, - [SMALL_STATE(1514)] = 608, - [SMALL_STATE(1515)] = 681, - [SMALL_STATE(1516)] = 756, - [SMALL_STATE(1517)] = 863, - [SMALL_STATE(1518)] = 936, - [SMALL_STATE(1519)] = 1009, - [SMALL_STATE(1520)] = 1082, - [SMALL_STATE(1521)] = 1187, - [SMALL_STATE(1522)] = 1260, - [SMALL_STATE(1523)] = 1337, - [SMALL_STATE(1524)] = 1410, - [SMALL_STATE(1525)] = 1487, - [SMALL_STATE(1526)] = 1562, - [SMALL_STATE(1527)] = 1637, - [SMALL_STATE(1528)] = 1712, - [SMALL_STATE(1529)] = 1787, - [SMALL_STATE(1530)] = 1864, - [SMALL_STATE(1531)] = 1969, - [SMALL_STATE(1532)] = 2046, - [SMALL_STATE(1533)] = 2129, - [SMALL_STATE(1534)] = 2206, - [SMALL_STATE(1535)] = 2279, - [SMALL_STATE(1536)] = 2356, - [SMALL_STATE(1537)] = 2429, - [SMALL_STATE(1538)] = 2506, - [SMALL_STATE(1539)] = 2581, - [SMALL_STATE(1540)] = 2656, - [SMALL_STATE(1541)] = 2731, - [SMALL_STATE(1542)] = 2804, - [SMALL_STATE(1543)] = 2877, - [SMALL_STATE(1544)] = 2950, - [SMALL_STATE(1545)] = 3057, - [SMALL_STATE(1546)] = 3130, - [SMALL_STATE(1547)] = 3237, - [SMALL_STATE(1548)] = 3314, - [SMALL_STATE(1549)] = 3387, - [SMALL_STATE(1550)] = 3460, - [SMALL_STATE(1551)] = 3535, - [SMALL_STATE(1552)] = 3608, - [SMALL_STATE(1553)] = 3681, - [SMALL_STATE(1554)] = 3758, - [SMALL_STATE(1555)] = 3833, - [SMALL_STATE(1556)] = 3906, - [SMALL_STATE(1557)] = 3979, - [SMALL_STATE(1558)] = 4052, - [SMALL_STATE(1559)] = 4125, - [SMALL_STATE(1560)] = 4200, - [SMALL_STATE(1561)] = 4277, - [SMALL_STATE(1562)] = 4350, - [SMALL_STATE(1563)] = 4427, - [SMALL_STATE(1564)] = 4500, - [SMALL_STATE(1565)] = 4605, - [SMALL_STATE(1566)] = 4682, - [SMALL_STATE(1567)] = 4759, - [SMALL_STATE(1568)] = 4836, - [SMALL_STATE(1569)] = 4919, - [SMALL_STATE(1570)] = 4996, - [SMALL_STATE(1571)] = 5069, - [SMALL_STATE(1572)] = 5144, - [SMALL_STATE(1573)] = 5217, - [SMALL_STATE(1574)] = 5291, - [SMALL_STATE(1575)] = 5363, - [SMALL_STATE(1576)] = 5435, - [SMALL_STATE(1577)] = 5507, - [SMALL_STATE(1578)] = 5579, - [SMALL_STATE(1579)] = 5651, - [SMALL_STATE(1580)] = 5723, - [SMALL_STATE(1581)] = 5795, - [SMALL_STATE(1582)] = 5867, - [SMALL_STATE(1583)] = 5939, - [SMALL_STATE(1584)] = 6011, - [SMALL_STATE(1585)] = 6083, - [SMALL_STATE(1586)] = 6155, - [SMALL_STATE(1587)] = 6227, - [SMALL_STATE(1588)] = 6307, - [SMALL_STATE(1589)] = 6381, - [SMALL_STATE(1590)] = 6453, - [SMALL_STATE(1591)] = 6525, - [SMALL_STATE(1592)] = 6597, - [SMALL_STATE(1593)] = 6669, - [SMALL_STATE(1594)] = 6775, - [SMALL_STATE(1595)] = 6881, - [SMALL_STATE(1596)] = 6953, - [SMALL_STATE(1597)] = 7025, - [SMALL_STATE(1598)] = 7097, - [SMALL_STATE(1599)] = 7169, - [SMALL_STATE(1600)] = 7313, - [SMALL_STATE(1601)] = 7457, - [SMALL_STATE(1602)] = 7537, - [SMALL_STATE(1603)] = 7617, - [SMALL_STATE(1604)] = 7689, - [SMALL_STATE(1605)] = 7761, - [SMALL_STATE(1606)] = 7833, - [SMALL_STATE(1607)] = 7939, - [SMALL_STATE(1608)] = 8013, - [SMALL_STATE(1609)] = 8093, - [SMALL_STATE(1610)] = 8167, - [SMALL_STATE(1611)] = 8239, - [SMALL_STATE(1612)] = 8311, - [SMALL_STATE(1613)] = 8383, - [SMALL_STATE(1614)] = 8463, - [SMALL_STATE(1615)] = 8543, - [SMALL_STATE(1616)] = 8623, - [SMALL_STATE(1617)] = 8703, - [SMALL_STATE(1618)] = 8783, - [SMALL_STATE(1619)] = 8863, - [SMALL_STATE(1620)] = 8943, - [SMALL_STATE(1621)] = 9023, - [SMALL_STATE(1622)] = 9103, - [SMALL_STATE(1623)] = 9183, - [SMALL_STATE(1624)] = 9257, - [SMALL_STATE(1625)] = 9329, - [SMALL_STATE(1626)] = 9401, - [SMALL_STATE(1627)] = 9475, - [SMALL_STATE(1628)] = 9549, - [SMALL_STATE(1629)] = 9629, - [SMALL_STATE(1630)] = 9709, - [SMALL_STATE(1631)] = 9789, - [SMALL_STATE(1632)] = 9861, - [SMALL_STATE(1633)] = 9941, - [SMALL_STATE(1634)] = 10013, - [SMALL_STATE(1635)] = 10093, - [SMALL_STATE(1636)] = 10173, - [SMALL_STATE(1637)] = 10253, - [SMALL_STATE(1638)] = 10325, - [SMALL_STATE(1639)] = 10397, - [SMALL_STATE(1640)] = 10469, - [SMALL_STATE(1641)] = 10541, - [SMALL_STATE(1642)] = 10613, - [SMALL_STATE(1643)] = 10685, - [SMALL_STATE(1644)] = 10757, - [SMALL_STATE(1645)] = 10837, - [SMALL_STATE(1646)] = 10917, - [SMALL_STATE(1647)] = 10989, - [SMALL_STATE(1648)] = 11061, - [SMALL_STATE(1649)] = 11133, - [SMALL_STATE(1650)] = 11213, - [SMALL_STATE(1651)] = 11287, - [SMALL_STATE(1652)] = 11359, - [SMALL_STATE(1653)] = 11431, - [SMALL_STATE(1654)] = 11503, - [SMALL_STATE(1655)] = 11575, - [SMALL_STATE(1656)] = 11647, - [SMALL_STATE(1657)] = 11719, - [SMALL_STATE(1658)] = 11791, - [SMALL_STATE(1659)] = 11863, - [SMALL_STATE(1660)] = 11935, - [SMALL_STATE(1661)] = 12007, - [SMALL_STATE(1662)] = 12079, - [SMALL_STATE(1663)] = 12223, - [SMALL_STATE(1664)] = 12295, - [SMALL_STATE(1665)] = 12367, - [SMALL_STATE(1666)] = 12447, - [SMALL_STATE(1667)] = 12519, - [SMALL_STATE(1668)] = 12591, - [SMALL_STATE(1669)] = 12663, - [SMALL_STATE(1670)] = 12735, - [SMALL_STATE(1671)] = 12807, - [SMALL_STATE(1672)] = 12879, - [SMALL_STATE(1673)] = 12951, - [SMALL_STATE(1674)] = 13023, - [SMALL_STATE(1675)] = 13167, - [SMALL_STATE(1676)] = 13239, - [SMALL_STATE(1677)] = 13311, - [SMALL_STATE(1678)] = 13385, - [SMALL_STATE(1679)] = 13465, - [SMALL_STATE(1680)] = 13537, - [SMALL_STATE(1681)] = 13609, - [SMALL_STATE(1682)] = 13681, - [SMALL_STATE(1683)] = 13753, - [SMALL_STATE(1684)] = 13825, - [SMALL_STATE(1685)] = 13897, - [SMALL_STATE(1686)] = 13969, - [SMALL_STATE(1687)] = 14041, - [SMALL_STATE(1688)] = 14115, - [SMALL_STATE(1689)] = 14187, - [SMALL_STATE(1690)] = 14259, - [SMALL_STATE(1691)] = 14331, - [SMALL_STATE(1692)] = 14403, - [SMALL_STATE(1693)] = 14475, - [SMALL_STATE(1694)] = 14547, - [SMALL_STATE(1695)] = 14619, - [SMALL_STATE(1696)] = 14693, - [SMALL_STATE(1697)] = 14765, - [SMALL_STATE(1698)] = 14837, - [SMALL_STATE(1699)] = 14909, - [SMALL_STATE(1700)] = 14981, - [SMALL_STATE(1701)] = 15053, - [SMALL_STATE(1702)] = 15125, - [SMALL_STATE(1703)] = 15197, - [SMALL_STATE(1704)] = 15269, - [SMALL_STATE(1705)] = 15341, - [SMALL_STATE(1706)] = 15413, - [SMALL_STATE(1707)] = 15485, - [SMALL_STATE(1708)] = 15557, - [SMALL_STATE(1709)] = 15629, - [SMALL_STATE(1710)] = 15701, - [SMALL_STATE(1711)] = 15773, - [SMALL_STATE(1712)] = 15845, - [SMALL_STATE(1713)] = 15917, - [SMALL_STATE(1714)] = 15989, - [SMALL_STATE(1715)] = 16061, - [SMALL_STATE(1716)] = 16133, - [SMALL_STATE(1717)] = 16213, - [SMALL_STATE(1718)] = 16285, - [SMALL_STATE(1719)] = 16357, - [SMALL_STATE(1720)] = 16429, - [SMALL_STATE(1721)] = 16501, - [SMALL_STATE(1722)] = 16573, - [SMALL_STATE(1723)] = 16645, - [SMALL_STATE(1724)] = 16719, - [SMALL_STATE(1725)] = 16791, - [SMALL_STATE(1726)] = 16863, - [SMALL_STATE(1727)] = 16935, - [SMALL_STATE(1728)] = 17007, - [SMALL_STATE(1729)] = 17079, - [SMALL_STATE(1730)] = 17151, - [SMALL_STATE(1731)] = 17223, - [SMALL_STATE(1732)] = 17295, - [SMALL_STATE(1733)] = 17367, - [SMALL_STATE(1734)] = 17439, - [SMALL_STATE(1735)] = 17511, - [SMALL_STATE(1736)] = 17583, - [SMALL_STATE(1737)] = 17663, - [SMALL_STATE(1738)] = 17735, - [SMALL_STATE(1739)] = 17807, - [SMALL_STATE(1740)] = 17879, - [SMALL_STATE(1741)] = 17951, - [SMALL_STATE(1742)] = 18023, - [SMALL_STATE(1743)] = 18095, - [SMALL_STATE(1744)] = 18167, - [SMALL_STATE(1745)] = 18239, - [SMALL_STATE(1746)] = 18383, - [SMALL_STATE(1747)] = 18455, - [SMALL_STATE(1748)] = 18527, - [SMALL_STATE(1749)] = 18671, - [SMALL_STATE(1750)] = 18815, - [SMALL_STATE(1751)] = 18959, - [SMALL_STATE(1752)] = 19039, - [SMALL_STATE(1753)] = 19119, - [SMALL_STATE(1754)] = 19199, - [SMALL_STATE(1755)] = 19279, - [SMALL_STATE(1756)] = 19359, - [SMALL_STATE(1757)] = 19439, - [SMALL_STATE(1758)] = 19519, - [SMALL_STATE(1759)] = 19599, - [SMALL_STATE(1760)] = 19679, - [SMALL_STATE(1761)] = 19759, - [SMALL_STATE(1762)] = 19839, - [SMALL_STATE(1763)] = 19919, - [SMALL_STATE(1764)] = 19999, - [SMALL_STATE(1765)] = 20079, - [SMALL_STATE(1766)] = 20159, - [SMALL_STATE(1767)] = 20239, - [SMALL_STATE(1768)] = 20319, - [SMALL_STATE(1769)] = 20399, - [SMALL_STATE(1770)] = 20479, - [SMALL_STATE(1771)] = 20559, - [SMALL_STATE(1772)] = 20639, - [SMALL_STATE(1773)] = 20719, - [SMALL_STATE(1774)] = 20799, - [SMALL_STATE(1775)] = 20871, - [SMALL_STATE(1776)] = 20943, - [SMALL_STATE(1777)] = 21015, - [SMALL_STATE(1778)] = 21087, - [SMALL_STATE(1779)] = 21159, - [SMALL_STATE(1780)] = 21231, - [SMALL_STATE(1781)] = 21303, - [SMALL_STATE(1782)] = 21375, - [SMALL_STATE(1783)] = 21447, - [SMALL_STATE(1784)] = 21519, - [SMALL_STATE(1785)] = 21591, - [SMALL_STATE(1786)] = 21663, - [SMALL_STATE(1787)] = 21735, - [SMALL_STATE(1788)] = 21807, - [SMALL_STATE(1789)] = 21879, - [SMALL_STATE(1790)] = 21951, - [SMALL_STATE(1791)] = 22023, - [SMALL_STATE(1792)] = 22095, - [SMALL_STATE(1793)] = 22167, - [SMALL_STATE(1794)] = 22246, - [SMALL_STATE(1795)] = 22323, - [SMALL_STATE(1796)] = 22400, - [SMALL_STATE(1797)] = 22477, - [SMALL_STATE(1798)] = 22554, - [SMALL_STATE(1799)] = 22631, - [SMALL_STATE(1800)] = 22708, - [SMALL_STATE(1801)] = 22779, - [SMALL_STATE(1802)] = 22856, - [SMALL_STATE(1803)] = 22933, - [SMALL_STATE(1804)] = 23010, - [SMALL_STATE(1805)] = 23081, - [SMALL_STATE(1806)] = 23152, - [SMALL_STATE(1807)] = 23223, - [SMALL_STATE(1808)] = 23300, - [SMALL_STATE(1809)] = 23371, - [SMALL_STATE(1810)] = 23446, - [SMALL_STATE(1811)] = 23517, - [SMALL_STATE(1812)] = 23594, - [SMALL_STATE(1813)] = 23665, - [SMALL_STATE(1814)] = 23744, - [SMALL_STATE(1815)] = 23823, - [SMALL_STATE(1816)] = 23902, - [SMALL_STATE(1817)] = 23981, - [SMALL_STATE(1818)] = 24060, - [SMALL_STATE(1819)] = 24139, - [SMALL_STATE(1820)] = 24218, - [SMALL_STATE(1821)] = 24295, - [SMALL_STATE(1822)] = 24366, - [SMALL_STATE(1823)] = 24437, - [SMALL_STATE(1824)] = 24514, - [SMALL_STATE(1825)] = 24591, - [SMALL_STATE(1826)] = 24662, - [SMALL_STATE(1827)] = 24733, - [SMALL_STATE(1828)] = 24804, - [SMALL_STATE(1829)] = 24875, - [SMALL_STATE(1830)] = 24946, - [SMALL_STATE(1831)] = 25017, - [SMALL_STATE(1832)] = 25088, - [SMALL_STATE(1833)] = 25159, - [SMALL_STATE(1834)] = 25238, - [SMALL_STATE(1835)] = 25317, - [SMALL_STATE(1836)] = 25396, - [SMALL_STATE(1837)] = 25475, - [SMALL_STATE(1838)] = 25546, - [SMALL_STATE(1839)] = 25625, - [SMALL_STATE(1840)] = 25702, - [SMALL_STATE(1841)] = 25773, - [SMALL_STATE(1842)] = 25852, - [SMALL_STATE(1843)] = 25931, - [SMALL_STATE(1844)] = 26010, - [SMALL_STATE(1845)] = 26081, - [SMALL_STATE(1846)] = 26160, - [SMALL_STATE(1847)] = 26237, - [SMALL_STATE(1848)] = 26316, - [SMALL_STATE(1849)] = 26387, - [SMALL_STATE(1850)] = 26464, - [SMALL_STATE(1851)] = 26537, - [SMALL_STATE(1852)] = 26608, - [SMALL_STATE(1853)] = 26679, - [SMALL_STATE(1854)] = 26750, - [SMALL_STATE(1855)] = 26821, - [SMALL_STATE(1856)] = 26892, - [SMALL_STATE(1857)] = 26969, - [SMALL_STATE(1858)] = 27040, - [SMALL_STATE(1859)] = 27111, - [SMALL_STATE(1860)] = 27182, - [SMALL_STATE(1861)] = 27259, - [SMALL_STATE(1862)] = 27330, - [SMALL_STATE(1863)] = 27401, - [SMALL_STATE(1864)] = 27478, - [SMALL_STATE(1865)] = 27555, - [SMALL_STATE(1866)] = 27626, - [SMALL_STATE(1867)] = 27697, - [SMALL_STATE(1868)] = 27768, - [SMALL_STATE(1869)] = 27845, - [SMALL_STATE(1870)] = 27922, - [SMALL_STATE(1871)] = 27993, - [SMALL_STATE(1872)] = 28064, - [SMALL_STATE(1873)] = 28141, - [SMALL_STATE(1874)] = 28212, - [SMALL_STATE(1875)] = 28283, - [SMALL_STATE(1876)] = 28354, - [SMALL_STATE(1877)] = 28425, - [SMALL_STATE(1878)] = 28502, - [SMALL_STATE(1879)] = 28573, - [SMALL_STATE(1880)] = 28644, - [SMALL_STATE(1881)] = 28715, - [SMALL_STATE(1882)] = 28786, - [SMALL_STATE(1883)] = 28857, - [SMALL_STATE(1884)] = 28934, - [SMALL_STATE(1885)] = 29011, - [SMALL_STATE(1886)] = 29088, - [SMALL_STATE(1887)] = 29159, - [SMALL_STATE(1888)] = 29230, - [SMALL_STATE(1889)] = 29307, - [SMALL_STATE(1890)] = 29378, - [SMALL_STATE(1891)] = 29449, - [SMALL_STATE(1892)] = 29526, - [SMALL_STATE(1893)] = 29605, - [SMALL_STATE(1894)] = 29676, - [SMALL_STATE(1895)] = 29753, - [SMALL_STATE(1896)] = 29824, - [SMALL_STATE(1897)] = 29901, - [SMALL_STATE(1898)] = 29972, - [SMALL_STATE(1899)] = 30043, - [SMALL_STATE(1900)] = 30120, - [SMALL_STATE(1901)] = 30197, - [SMALL_STATE(1902)] = 30268, - [SMALL_STATE(1903)] = 30339, - [SMALL_STATE(1904)] = 30410, - [SMALL_STATE(1905)] = 30481, - [SMALL_STATE(1906)] = 30552, - [SMALL_STATE(1907)] = 30623, - [SMALL_STATE(1908)] = 30700, - [SMALL_STATE(1909)] = 30771, - [SMALL_STATE(1910)] = 30842, - [SMALL_STATE(1911)] = 30921, - [SMALL_STATE(1912)] = 30998, - [SMALL_STATE(1913)] = 31075, - [SMALL_STATE(1914)] = 31152, - [SMALL_STATE(1915)] = 31229, - [SMALL_STATE(1916)] = 31300, - [SMALL_STATE(1917)] = 31371, - [SMALL_STATE(1918)] = 31446, - [SMALL_STATE(1919)] = 31523, - [SMALL_STATE(1920)] = 31600, - [SMALL_STATE(1921)] = 31677, - [SMALL_STATE(1922)] = 31748, - [SMALL_STATE(1923)] = 31825, - [SMALL_STATE(1924)] = 31902, - [SMALL_STATE(1925)] = 31979, - [SMALL_STATE(1926)] = 32056, - [SMALL_STATE(1927)] = 32133, - [SMALL_STATE(1928)] = 32210, - [SMALL_STATE(1929)] = 32287, - [SMALL_STATE(1930)] = 32366, - [SMALL_STATE(1931)] = 32437, - [SMALL_STATE(1932)] = 32508, - [SMALL_STATE(1933)] = 32579, - [SMALL_STATE(1934)] = 32656, - [SMALL_STATE(1935)] = 32727, - [SMALL_STATE(1936)] = 32798, - [SMALL_STATE(1937)] = 32869, - [SMALL_STATE(1938)] = 32940, - [SMALL_STATE(1939)] = 33011, - [SMALL_STATE(1940)] = 33082, - [SMALL_STATE(1941)] = 33153, - [SMALL_STATE(1942)] = 33224, - [SMALL_STATE(1943)] = 33301, - [SMALL_STATE(1944)] = 33376, - [SMALL_STATE(1945)] = 33447, - [SMALL_STATE(1946)] = 33518, - [SMALL_STATE(1947)] = 33589, - [SMALL_STATE(1948)] = 33668, - [SMALL_STATE(1949)] = 33747, - [SMALL_STATE(1950)] = 33826, - [SMALL_STATE(1951)] = 33905, - [SMALL_STATE(1952)] = 33976, - [SMALL_STATE(1953)] = 34047, - [SMALL_STATE(1954)] = 34118, - [SMALL_STATE(1955)] = 34189, - [SMALL_STATE(1956)] = 34260, - [SMALL_STATE(1957)] = 34331, - [SMALL_STATE(1958)] = 34402, - [SMALL_STATE(1959)] = 34473, - [SMALL_STATE(1960)] = 34550, - [SMALL_STATE(1961)] = 34621, - [SMALL_STATE(1962)] = 34698, - [SMALL_STATE(1963)] = 34775, - [SMALL_STATE(1964)] = 34852, - [SMALL_STATE(1965)] = 34923, - [SMALL_STATE(1966)] = 35002, - [SMALL_STATE(1967)] = 35072, - [SMALL_STATE(1968)] = 35146, - [SMALL_STATE(1969)] = 35220, - [SMALL_STATE(1970)] = 35290, - [SMALL_STATE(1971)] = 35360, - [SMALL_STATE(1972)] = 35438, - [SMALL_STATE(1973)] = 35508, - [SMALL_STATE(1974)] = 35578, - [SMALL_STATE(1975)] = 35648, - [SMALL_STATE(1976)] = 35718, - [SMALL_STATE(1977)] = 35788, - [SMALL_STATE(1978)] = 35858, - [SMALL_STATE(1979)] = 35932, - [SMALL_STATE(1980)] = 36010, - [SMALL_STATE(1981)] = 36080, - [SMALL_STATE(1982)] = 36150, - [SMALL_STATE(1983)] = 36220, - [SMALL_STATE(1984)] = 36298, - [SMALL_STATE(1985)] = 36368, - [SMALL_STATE(1986)] = 36438, - [SMALL_STATE(1987)] = 36508, - [SMALL_STATE(1988)] = 36580, - [SMALL_STATE(1989)] = 36652, - [SMALL_STATE(1990)] = 36722, - [SMALL_STATE(1991)] = 36792, - [SMALL_STATE(1992)] = 36862, - [SMALL_STATE(1993)] = 36932, - [SMALL_STATE(1994)] = 37002, - [SMALL_STATE(1995)] = 37076, - [SMALL_STATE(1996)] = 37146, - [SMALL_STATE(1997)] = 37220, - [SMALL_STATE(1998)] = 37290, - [SMALL_STATE(1999)] = 37364, - [SMALL_STATE(2000)] = 37434, - [SMALL_STATE(2001)] = 37504, - [SMALL_STATE(2002)] = 37574, - [SMALL_STATE(2003)] = 37644, - [SMALL_STATE(2004)] = 37714, - [SMALL_STATE(2005)] = 37790, - [SMALL_STATE(2006)] = 37860, - [SMALL_STATE(2007)] = 37930, - [SMALL_STATE(2008)] = 38000, - [SMALL_STATE(2009)] = 38070, - [SMALL_STATE(2010)] = 38140, - [SMALL_STATE(2011)] = 38210, - [SMALL_STATE(2012)] = 38280, - [SMALL_STATE(2013)] = 38350, - [SMALL_STATE(2014)] = 38424, - [SMALL_STATE(2015)] = 38494, - [SMALL_STATE(2016)] = 38566, - [SMALL_STATE(2017)] = 38638, - [SMALL_STATE(2018)] = 38712, - [SMALL_STATE(2019)] = 38782, - [SMALL_STATE(2020)] = 38922, - [SMALL_STATE(2021)] = 38996, - [SMALL_STATE(2022)] = 39136, - [SMALL_STATE(2023)] = 39206, - [SMALL_STATE(2024)] = 39284, - [SMALL_STATE(2025)] = 39358, - [SMALL_STATE(2026)] = 39428, - [SMALL_STATE(2027)] = 39498, - [SMALL_STATE(2028)] = 39569, - [SMALL_STATE(2029)] = 39640, - [SMALL_STATE(2030)] = 39711, - [SMALL_STATE(2031)] = 39782, - [SMALL_STATE(2032)] = 39853, - [SMALL_STATE(2033)] = 39924, - [SMALL_STATE(2034)] = 39995, - [SMALL_STATE(2035)] = 40066, - [SMALL_STATE(2036)] = 40137, - [SMALL_STATE(2037)] = 40208, - [SMALL_STATE(2038)] = 40279, - [SMALL_STATE(2039)] = 40350, - [SMALL_STATE(2040)] = 40421, - [SMALL_STATE(2041)] = 40492, - [SMALL_STATE(2042)] = 40563, - [SMALL_STATE(2043)] = 40632, - [SMALL_STATE(2044)] = 40703, - [SMALL_STATE(2045)] = 40776, - [SMALL_STATE(2046)] = 40847, - [SMALL_STATE(2047)] = 40918, - [SMALL_STATE(2048)] = 40989, - [SMALL_STATE(2049)] = 41060, - [SMALL_STATE(2050)] = 41131, - [SMALL_STATE(2051)] = 41202, - [SMALL_STATE(2052)] = 41273, - [SMALL_STATE(2053)] = 41350, - [SMALL_STATE(2054)] = 41421, - [SMALL_STATE(2055)] = 41492, - [SMALL_STATE(2056)] = 41565, - [SMALL_STATE(2057)] = 41636, - [SMALL_STATE(2058)] = 41707, - [SMALL_STATE(2059)] = 41780, - [SMALL_STATE(2060)] = 41851, - [SMALL_STATE(2061)] = 41922, - [SMALL_STATE(2062)] = 41995, - [SMALL_STATE(2063)] = 42096, - [SMALL_STATE(2064)] = 42167, - [SMALL_STATE(2065)] = 42238, - [SMALL_STATE(2066)] = 42309, - [SMALL_STATE(2067)] = 42380, - [SMALL_STATE(2068)] = 42451, - [SMALL_STATE(2069)] = 42522, - [SMALL_STATE(2070)] = 42593, - [SMALL_STATE(2071)] = 42664, - [SMALL_STATE(2072)] = 42735, - [SMALL_STATE(2073)] = 42806, - [SMALL_STATE(2074)] = 42879, - [SMALL_STATE(2075)] = 42950, - [SMALL_STATE(2076)] = 43051, - [SMALL_STATE(2077)] = 43120, - [SMALL_STATE(2078)] = 43189, - [SMALL_STATE(2079)] = 43260, - [SMALL_STATE(2080)] = 43329, - [SMALL_STATE(2081)] = 43398, - [SMALL_STATE(2082)] = 43471, - [SMALL_STATE(2083)] = 43572, - [SMALL_STATE(2084)] = 43641, - [SMALL_STATE(2085)] = 43712, - [SMALL_STATE(2086)] = 43783, - [SMALL_STATE(2087)] = 43854, - [SMALL_STATE(2088)] = 43925, - [SMALL_STATE(2089)] = 43996, - [SMALL_STATE(2090)] = 44067, - [SMALL_STATE(2091)] = 44138, - [SMALL_STATE(2092)] = 44209, - [SMALL_STATE(2093)] = 44280, - [SMALL_STATE(2094)] = 44351, - [SMALL_STATE(2095)] = 44422, - [SMALL_STATE(2096)] = 44493, - [SMALL_STATE(2097)] = 44564, - [SMALL_STATE(2098)] = 44635, - [SMALL_STATE(2099)] = 44706, - [SMALL_STATE(2100)] = 44777, - [SMALL_STATE(2101)] = 44848, - [SMALL_STATE(2102)] = 44919, - [SMALL_STATE(2103)] = 44990, - [SMALL_STATE(2104)] = 45061, - [SMALL_STATE(2105)] = 45132, - [SMALL_STATE(2106)] = 45269, - [SMALL_STATE(2107)] = 45406, - [SMALL_STATE(2108)] = 45475, - [SMALL_STATE(2109)] = 45546, - [SMALL_STATE(2110)] = 45617, - [SMALL_STATE(2111)] = 45686, - [SMALL_STATE(2112)] = 45757, - [SMALL_STATE(2113)] = 45828, - [SMALL_STATE(2114)] = 45899, - [SMALL_STATE(2115)] = 45970, - [SMALL_STATE(2116)] = 46041, - [SMALL_STATE(2117)] = 46112, - [SMALL_STATE(2118)] = 46183, - [SMALL_STATE(2119)] = 46252, - [SMALL_STATE(2120)] = 46323, - [SMALL_STATE(2121)] = 46394, - [SMALL_STATE(2122)] = 46465, - [SMALL_STATE(2123)] = 46542, - [SMALL_STATE(2124)] = 46613, - [SMALL_STATE(2125)] = 46684, - [SMALL_STATE(2126)] = 46759, - [SMALL_STATE(2127)] = 46830, - [SMALL_STATE(2128)] = 46901, - [SMALL_STATE(2129)] = 46972, - [SMALL_STATE(2130)] = 47043, - [SMALL_STATE(2131)] = 47116, - [SMALL_STATE(2132)] = 47189, - [SMALL_STATE(2133)] = 47260, - [SMALL_STATE(2134)] = 47333, - [SMALL_STATE(2135)] = 47406, - [SMALL_STATE(2136)] = 47477, - [SMALL_STATE(2137)] = 47550, - [SMALL_STATE(2138)] = 47621, - [SMALL_STATE(2139)] = 47692, - [SMALL_STATE(2140)] = 47761, - [SMALL_STATE(2141)] = 47832, - [SMALL_STATE(2142)] = 47903, - [SMALL_STATE(2143)] = 47974, - [SMALL_STATE(2144)] = 48047, - [SMALL_STATE(2145)] = 48120, - [SMALL_STATE(2146)] = 48193, - [SMALL_STATE(2147)] = 48266, - [SMALL_STATE(2148)] = 48343, - [SMALL_STATE(2149)] = 48414, - [SMALL_STATE(2150)] = 48487, - [SMALL_STATE(2151)] = 48558, - [SMALL_STATE(2152)] = 48629, - [SMALL_STATE(2153)] = 48700, - [SMALL_STATE(2154)] = 48773, - [SMALL_STATE(2155)] = 48846, - [SMALL_STATE(2156)] = 48917, - [SMALL_STATE(2157)] = 48988, - [SMALL_STATE(2158)] = 49059, - [SMALL_STATE(2159)] = 49160, - [SMALL_STATE(2160)] = 49297, - [SMALL_STATE(2161)] = 49434, - [SMALL_STATE(2162)] = 49505, - [SMALL_STATE(2163)] = 49578, - [SMALL_STATE(2164)] = 49649, - [SMALL_STATE(2165)] = 49720, - [SMALL_STATE(2166)] = 49791, - [SMALL_STATE(2167)] = 49862, - [SMALL_STATE(2168)] = 49935, - [SMALL_STATE(2169)] = 50006, - [SMALL_STATE(2170)] = 50077, - [SMALL_STATE(2171)] = 50148, - [SMALL_STATE(2172)] = 50219, - [SMALL_STATE(2173)] = 50290, - [SMALL_STATE(2174)] = 50361, - [SMALL_STATE(2175)] = 50432, - [SMALL_STATE(2176)] = 50503, - [SMALL_STATE(2177)] = 50574, - [SMALL_STATE(2178)] = 50645, - [SMALL_STATE(2179)] = 50716, - [SMALL_STATE(2180)] = 50787, - [SMALL_STATE(2181)] = 50858, - [SMALL_STATE(2182)] = 50931, - [SMALL_STATE(2183)] = 51002, - [SMALL_STATE(2184)] = 51073, - [SMALL_STATE(2185)] = 51144, - [SMALL_STATE(2186)] = 51215, - [SMALL_STATE(2187)] = 51286, - [SMALL_STATE(2188)] = 51359, - [SMALL_STATE(2189)] = 51430, - [SMALL_STATE(2190)] = 51503, - [SMALL_STATE(2191)] = 51576, - [SMALL_STATE(2192)] = 51649, - [SMALL_STATE(2193)] = 51722, - [SMALL_STATE(2194)] = 51795, - [SMALL_STATE(2195)] = 51868, - [SMALL_STATE(2196)] = 51939, - [SMALL_STATE(2197)] = 52010, - [SMALL_STATE(2198)] = 52088, - [SMALL_STATE(2199)] = 52172, - [SMALL_STATE(2200)] = 52240, - [SMALL_STATE(2201)] = 52336, - [SMALL_STATE(2202)] = 52410, - [SMALL_STATE(2203)] = 52490, - [SMALL_STATE(2204)] = 52574, - [SMALL_STATE(2205)] = 52666, - [SMALL_STATE(2206)] = 52736, - [SMALL_STATE(2207)] = 52826, - [SMALL_STATE(2208)] = 52896, - [SMALL_STATE(2209)] = 52982, - [SMALL_STATE(2210)] = 53054, - [SMALL_STATE(2211)] = 53134, - [SMALL_STATE(2212)] = 53202, - [SMALL_STATE(2213)] = 53278, - [SMALL_STATE(2214)] = 53362, - [SMALL_STATE(2215)] = 53434, - [SMALL_STATE(2216)] = 53516, - [SMALL_STATE(2217)] = 53608, - [SMALL_STATE(2218)] = 53678, - [SMALL_STATE(2219)] = 53752, - [SMALL_STATE(2220)] = 53840, - [SMALL_STATE(2221)] = 53932, - [SMALL_STATE(2222)] = 54000, - [SMALL_STATE(2223)] = 54070, - [SMALL_STATE(2224)] = 54138, - [SMALL_STATE(2225)] = 54236, - [SMALL_STATE(2226)] = 54330, - [SMALL_STATE(2227)] = 54400, - [SMALL_STATE(2228)] = 54468, - [SMALL_STATE(2229)] = 54538, - [SMALL_STATE(2230)] = 54632, - [SMALL_STATE(2231)] = 54730, - [SMALL_STATE(2232)] = 54798, - [SMALL_STATE(2233)] = 54882, - [SMALL_STATE(2234)] = 54950, - [SMALL_STATE(2235)] = 55036, - [SMALL_STATE(2236)] = 55130, - [SMALL_STATE(2237)] = 55204, - [SMALL_STATE(2238)] = 55272, - [SMALL_STATE(2239)] = 55340, - [SMALL_STATE(2240)] = 55408, - [SMALL_STATE(2241)] = 55478, - [SMALL_STATE(2242)] = 55548, - [SMALL_STATE(2243)] = 55616, - [SMALL_STATE(2244)] = 55684, - [SMALL_STATE(2245)] = 55758, - [SMALL_STATE(2246)] = 55830, - [SMALL_STATE(2247)] = 55920, - [SMALL_STATE(2248)] = 55996, - [SMALL_STATE(2249)] = 56070, - [SMALL_STATE(2250)] = 56140, - [SMALL_STATE(2251)] = 56230, - [SMALL_STATE(2252)] = 56304, - [SMALL_STATE(2253)] = 56400, - [SMALL_STATE(2254)] = 56476, - [SMALL_STATE(2255)] = 56550, - [SMALL_STATE(2256)] = 56628, - [SMALL_STATE(2257)] = 56706, - [SMALL_STATE(2258)] = 56788, - [SMALL_STATE(2259)] = 56874, - [SMALL_STATE(2260)] = 56958, - [SMALL_STATE(2261)] = 57038, - [SMALL_STATE(2262)] = 57114, - [SMALL_STATE(2263)] = 57198, - [SMALL_STATE(2264)] = 57290, - [SMALL_STATE(2265)] = 57358, - [SMALL_STATE(2266)] = 57426, - [SMALL_STATE(2267)] = 57502, - [SMALL_STATE(2268)] = 57570, - [SMALL_STATE(2269)] = 57650, - [SMALL_STATE(2270)] = 57732, - [SMALL_STATE(2271)] = 57800, - [SMALL_STATE(2272)] = 57888, - [SMALL_STATE(2273)] = 57986, - [SMALL_STATE(2274)] = 58072, - [SMALL_STATE(2275)] = 58146, - [SMALL_STATE(2276)] = 58234, - [SMALL_STATE(2277)] = 58320, - [SMALL_STATE(2278)] = 58410, - [SMALL_STATE(2279)] = 58500, - [SMALL_STATE(2280)] = 58578, - [SMALL_STATE(2281)] = 58654, - [SMALL_STATE(2282)] = 58746, - [SMALL_STATE(2283)] = 58818, - [SMALL_STATE(2284)] = 58916, - [SMALL_STATE(2285)] = 58998, - [SMALL_STATE(2286)] = 59076, - [SMALL_STATE(2287)] = 59174, - [SMALL_STATE(2288)] = 59308, - [SMALL_STATE(2289)] = 59442, - [SMALL_STATE(2290)] = 59536, - [SMALL_STATE(2291)] = 59606, - [SMALL_STATE(2292)] = 59740, - [SMALL_STATE(2293)] = 59820, - [SMALL_STATE(2294)] = 59908, - [SMALL_STATE(2295)] = 59992, - [SMALL_STATE(2296)] = 60074, - [SMALL_STATE(2297)] = 60208, - [SMALL_STATE(2298)] = 60280, - [SMALL_STATE(2299)] = 60360, - [SMALL_STATE(2300)] = 60452, - [SMALL_STATE(2301)] = 60536, - [SMALL_STATE(2302)] = 60624, - [SMALL_STATE(2303)] = 60700, - [SMALL_STATE(2304)] = 60798, - [SMALL_STATE(2305)] = 60932, - [SMALL_STATE(2306)] = 61008, - [SMALL_STATE(2307)] = 61098, - [SMALL_STATE(2308)] = 61188, - [SMALL_STATE(2309)] = 61284, - [SMALL_STATE(2310)] = 61378, - [SMALL_STATE(2311)] = 61512, - [SMALL_STATE(2312)] = 61646, - [SMALL_STATE(2313)] = 61780, - [SMALL_STATE(2314)] = 61850, - [SMALL_STATE(2315)] = 61920, - [SMALL_STATE(2316)] = 61990, - [SMALL_STATE(2317)] = 62124, - [SMALL_STATE(2318)] = 62216, - [SMALL_STATE(2319)] = 62300, - [SMALL_STATE(2320)] = 62386, - [SMALL_STATE(2321)] = 62472, - [SMALL_STATE(2322)] = 62566, - [SMALL_STATE(2323)] = 62636, - [SMALL_STATE(2324)] = 62718, - [SMALL_STATE(2325)] = 62804, - [SMALL_STATE(2326)] = 62882, - [SMALL_STATE(2327)] = 62970, - [SMALL_STATE(2328)] = 63066, - [SMALL_STATE(2329)] = 63148, - [SMALL_STATE(2330)] = 63222, - [SMALL_STATE(2331)] = 63292, - [SMALL_STATE(2332)] = 63374, - [SMALL_STATE(2333)] = 63460, - [SMALL_STATE(2334)] = 63530, - [SMALL_STATE(2335)] = 63610, - [SMALL_STATE(2336)] = 63700, - [SMALL_STATE(2337)] = 63790, - [SMALL_STATE(2338)] = 63858, - [SMALL_STATE(2339)] = 63992, - [SMALL_STATE(2340)] = 64126, - [SMALL_STATE(2341)] = 64260, - [SMALL_STATE(2342)] = 64354, - [SMALL_STATE(2343)] = 64430, - [SMALL_STATE(2344)] = 64500, - [SMALL_STATE(2345)] = 64572, - [SMALL_STATE(2346)] = 64650, - [SMALL_STATE(2347)] = 64724, - [SMALL_STATE(2348)] = 64816, - [SMALL_STATE(2349)] = 64884, - [SMALL_STATE(2350)] = 64952, - [SMALL_STATE(2351)] = 65020, - [SMALL_STATE(2352)] = 65154, - [SMALL_STATE(2353)] = 65222, - [SMALL_STATE(2354)] = 65304, - [SMALL_STATE(2355)] = 65382, - [SMALL_STATE(2356)] = 65452, - [SMALL_STATE(2357)] = 65522, - [SMALL_STATE(2358)] = 65592, - [SMALL_STATE(2359)] = 65662, - [SMALL_STATE(2360)] = 65732, - [SMALL_STATE(2361)] = 65820, - [SMALL_STATE(2362)] = 65890, - [SMALL_STATE(2363)] = 65984, - [SMALL_STATE(2364)] = 66062, - [SMALL_STATE(2365)] = 66130, - [SMALL_STATE(2366)] = 66216, - [SMALL_STATE(2367)] = 66296, - [SMALL_STATE(2368)] = 66364, - [SMALL_STATE(2369)] = 66432, - [SMALL_STATE(2370)] = 66500, - [SMALL_STATE(2371)] = 66588, - [SMALL_STATE(2372)] = 66680, - [SMALL_STATE(2373)] = 66778, - [SMALL_STATE(2374)] = 66846, - [SMALL_STATE(2375)] = 66944, - [SMALL_STATE(2376)] = 67042, - [SMALL_STATE(2377)] = 67140, - [SMALL_STATE(2378)] = 67208, - [SMALL_STATE(2379)] = 67288, - [SMALL_STATE(2380)] = 67356, - [SMALL_STATE(2381)] = 67444, - [SMALL_STATE(2382)] = 67516, - [SMALL_STATE(2383)] = 67586, - [SMALL_STATE(2384)] = 67653, - [SMALL_STATE(2385)] = 67720, - [SMALL_STATE(2386)] = 67787, - [SMALL_STATE(2387)] = 67854, - [SMALL_STATE(2388)] = 67941, - [SMALL_STATE(2389)] = 68008, - [SMALL_STATE(2390)] = 68091, - [SMALL_STATE(2391)] = 68158, - [SMALL_STATE(2392)] = 68229, - [SMALL_STATE(2393)] = 68296, - [SMALL_STATE(2394)] = 68367, - [SMALL_STATE(2395)] = 68434, - [SMALL_STATE(2396)] = 68501, - [SMALL_STATE(2397)] = 68568, - [SMALL_STATE(2398)] = 68635, - [SMALL_STATE(2399)] = 68702, - [SMALL_STATE(2400)] = 68769, - [SMALL_STATE(2401)] = 68836, - [SMALL_STATE(2402)] = 68903, - [SMALL_STATE(2403)] = 68970, - [SMALL_STATE(2404)] = 69037, - [SMALL_STATE(2405)] = 69104, - [SMALL_STATE(2406)] = 69171, - [SMALL_STATE(2407)] = 69238, - [SMALL_STATE(2408)] = 69305, - [SMALL_STATE(2409)] = 69372, - [SMALL_STATE(2410)] = 69439, - [SMALL_STATE(2411)] = 69506, - [SMALL_STATE(2412)] = 69573, - [SMALL_STATE(2413)] = 69640, - [SMALL_STATE(2414)] = 69707, - [SMALL_STATE(2415)] = 69774, - [SMALL_STATE(2416)] = 69841, - [SMALL_STATE(2417)] = 69908, - [SMALL_STATE(2418)] = 69975, - [SMALL_STATE(2419)] = 70042, - [SMALL_STATE(2420)] = 70109, - [SMALL_STATE(2421)] = 70176, - [SMALL_STATE(2422)] = 70243, - [SMALL_STATE(2423)] = 70310, - [SMALL_STATE(2424)] = 70377, - [SMALL_STATE(2425)] = 70444, - [SMALL_STATE(2426)] = 70511, - [SMALL_STATE(2427)] = 70578, - [SMALL_STATE(2428)] = 70645, - [SMALL_STATE(2429)] = 70712, - [SMALL_STATE(2430)] = 70779, - [SMALL_STATE(2431)] = 70848, - [SMALL_STATE(2432)] = 70915, - [SMALL_STATE(2433)] = 70982, - [SMALL_STATE(2434)] = 71049, - [SMALL_STATE(2435)] = 71116, - [SMALL_STATE(2436)] = 71183, - [SMALL_STATE(2437)] = 71250, - [SMALL_STATE(2438)] = 71317, - [SMALL_STATE(2439)] = 71384, - [SMALL_STATE(2440)] = 71451, - [SMALL_STATE(2441)] = 71518, - [SMALL_STATE(2442)] = 71587, - [SMALL_STATE(2443)] = 71654, - [SMALL_STATE(2444)] = 71725, - [SMALL_STATE(2445)] = 71792, - [SMALL_STATE(2446)] = 71859, - [SMALL_STATE(2447)] = 71926, - [SMALL_STATE(2448)] = 71999, - [SMALL_STATE(2449)] = 72066, - [SMALL_STATE(2450)] = 72145, - [SMALL_STATE(2451)] = 72212, - [SMALL_STATE(2452)] = 72293, - [SMALL_STATE(2453)] = 72360, - [SMALL_STATE(2454)] = 72443, - [SMALL_STATE(2455)] = 72512, - [SMALL_STATE(2456)] = 72581, - [SMALL_STATE(2457)] = 72648, - [SMALL_STATE(2458)] = 72725, - [SMALL_STATE(2459)] = 72808, - [SMALL_STATE(2460)] = 72893, - [SMALL_STATE(2461)] = 72960, - [SMALL_STATE(2462)] = 73027, - [SMALL_STATE(2463)] = 73114, - [SMALL_STATE(2464)] = 73197, - [SMALL_STATE(2465)] = 73264, - [SMALL_STATE(2466)] = 73339, - [SMALL_STATE(2467)] = 73428, - [SMALL_STATE(2468)] = 73495, - [SMALL_STATE(2469)] = 73586, - [SMALL_STATE(2470)] = 73653, - [SMALL_STATE(2471)] = 73730, - [SMALL_STATE(2472)] = 73797, - [SMALL_STATE(2473)] = 73889, - [SMALL_STATE(2474)] = 73955, - [SMALL_STATE(2475)] = 74021, - [SMALL_STATE(2476)] = 74101, - [SMALL_STATE(2477)] = 74167, - [SMALL_STATE(2478)] = 74259, - [SMALL_STATE(2479)] = 74325, - [SMALL_STATE(2480)] = 74409, - [SMALL_STATE(2481)] = 74475, - [SMALL_STATE(2482)] = 74567, - [SMALL_STATE(2483)] = 74659, - [SMALL_STATE(2484)] = 74725, - [SMALL_STATE(2485)] = 74791, - [SMALL_STATE(2486)] = 74875, - [SMALL_STATE(2487)] = 74941, - [SMALL_STATE(2488)] = 75033, - [SMALL_STATE(2489)] = 75125, - [SMALL_STATE(2490)] = 75217, - [SMALL_STATE(2491)] = 75283, - [SMALL_STATE(2492)] = 75351, - [SMALL_STATE(2493)] = 75443, - [SMALL_STATE(2494)] = 75523, - [SMALL_STATE(2495)] = 75615, - [SMALL_STATE(2496)] = 75707, - [SMALL_STATE(2497)] = 75773, - [SMALL_STATE(2498)] = 75839, - [SMALL_STATE(2499)] = 75905, - [SMALL_STATE(2500)] = 75971, - [SMALL_STATE(2501)] = 76063, - [SMALL_STATE(2502)] = 76129, - [SMALL_STATE(2503)] = 76195, - [SMALL_STATE(2504)] = 76279, - [SMALL_STATE(2505)] = 76345, - [SMALL_STATE(2506)] = 76413, - [SMALL_STATE(2507)] = 76479, - [SMALL_STATE(2508)] = 76571, - [SMALL_STATE(2509)] = 76661, - [SMALL_STATE(2510)] = 76727, - [SMALL_STATE(2511)] = 76807, - [SMALL_STATE(2512)] = 76873, - [SMALL_STATE(2513)] = 76953, - [SMALL_STATE(2514)] = 77033, - [SMALL_STATE(2515)] = 77122, - [SMALL_STATE(2516)] = 77195, - [SMALL_STATE(2517)] = 77284, - [SMALL_STATE(2518)] = 77357, - [SMALL_STATE(2519)] = 77446, - [SMALL_STATE(2520)] = 77511, - [SMALL_STATE(2521)] = 77576, - [SMALL_STATE(2522)] = 77641, - [SMALL_STATE(2523)] = 77730, - [SMALL_STATE(2524)] = 77819, - [SMALL_STATE(2525)] = 77892, - [SMALL_STATE(2526)] = 77965, - [SMALL_STATE(2527)] = 78038, - [SMALL_STATE(2528)] = 78111, - [SMALL_STATE(2529)] = 78200, - [SMALL_STATE(2530)] = 78289, - [SMALL_STATE(2531)] = 78354, - [SMALL_STATE(2532)] = 78419, - [SMALL_STATE(2533)] = 78484, - [SMALL_STATE(2534)] = 78573, - [SMALL_STATE(2535)] = 78646, - [SMALL_STATE(2536)] = 78719, - [SMALL_STATE(2537)] = 78792, - [SMALL_STATE(2538)] = 78865, - [SMALL_STATE(2539)] = 78938, - [SMALL_STATE(2540)] = 79027, - [SMALL_STATE(2541)] = 79116, - [SMALL_STATE(2542)] = 79189, - [SMALL_STATE(2543)] = 79254, - [SMALL_STATE(2544)] = 79327, - [SMALL_STATE(2545)] = 79400, - [SMALL_STATE(2546)] = 79473, - [SMALL_STATE(2547)] = 79546, - [SMALL_STATE(2548)] = 79635, - [SMALL_STATE(2549)] = 79708, - [SMALL_STATE(2550)] = 79797, - [SMALL_STATE(2551)] = 79862, - [SMALL_STATE(2552)] = 79951, - [SMALL_STATE(2553)] = 80016, - [SMALL_STATE(2554)] = 80105, - [SMALL_STATE(2555)] = 80178, - [SMALL_STATE(2556)] = 80251, - [SMALL_STATE(2557)] = 80324, - [SMALL_STATE(2558)] = 80389, - [SMALL_STATE(2559)] = 80454, - [SMALL_STATE(2560)] = 80543, - [SMALL_STATE(2561)] = 80632, - [SMALL_STATE(2562)] = 80721, - [SMALL_STATE(2563)] = 80802, - [SMALL_STATE(2564)] = 80891, - [SMALL_STATE(2565)] = 80980, - [SMALL_STATE(2566)] = 81069, - [SMALL_STATE(2567)] = 81158, - [SMALL_STATE(2568)] = 81247, - [SMALL_STATE(2569)] = 81312, - [SMALL_STATE(2570)] = 81385, - [SMALL_STATE(2571)] = 81474, - [SMALL_STATE(2572)] = 81563, - [SMALL_STATE(2573)] = 81628, - [SMALL_STATE(2574)] = 81717, - [SMALL_STATE(2575)] = 81786, - [SMALL_STATE(2576)] = 81875, - [SMALL_STATE(2577)] = 81956, - [SMALL_STATE(2578)] = 82037, - [SMALL_STATE(2579)] = 82118, - [SMALL_STATE(2580)] = 82187, - [SMALL_STATE(2581)] = 82276, - [SMALL_STATE(2582)] = 82349, - [SMALL_STATE(2583)] = 82414, - [SMALL_STATE(2584)] = 82487, - [SMALL_STATE(2585)] = 82556, - [SMALL_STATE(2586)] = 82629, - [SMALL_STATE(2587)] = 82718, - [SMALL_STATE(2588)] = 82783, - [SMALL_STATE(2589)] = 82852, - [SMALL_STATE(2590)] = 82941, - [SMALL_STATE(2591)] = 83030, - [SMALL_STATE(2592)] = 83119, - [SMALL_STATE(2593)] = 83192, - [SMALL_STATE(2594)] = 83265, - [SMALL_STATE(2595)] = 83330, - [SMALL_STATE(2596)] = 83396, - [SMALL_STATE(2597)] = 83464, - [SMALL_STATE(2598)] = 83530, - [SMALL_STATE(2599)] = 83596, - [SMALL_STATE(2600)] = 83668, - [SMALL_STATE(2601)] = 83734, - [SMALL_STATE(2602)] = 83800, - [SMALL_STATE(2603)] = 83872, - [SMALL_STATE(2604)] = 83938, - [SMALL_STATE(2605)] = 84008, - [SMALL_STATE(2606)] = 84078, - [SMALL_STATE(2607)] = 84146, - [SMALL_STATE(2608)] = 84218, - [SMALL_STATE(2609)] = 84281, - [SMALL_STATE(2610)] = 84344, - [SMALL_STATE(2611)] = 84413, - [SMALL_STATE(2612)] = 84476, - [SMALL_STATE(2613)] = 84539, - [SMALL_STATE(2614)] = 84602, - [SMALL_STATE(2615)] = 84669, - [SMALL_STATE(2616)] = 84736, - [SMALL_STATE(2617)] = 84803, - [SMALL_STATE(2618)] = 84866, - [SMALL_STATE(2619)] = 84933, - [SMALL_STATE(2620)] = 85000, - [SMALL_STATE(2621)] = 85067, - [SMALL_STATE(2622)] = 85134, - [SMALL_STATE(2623)] = 85201, - [SMALL_STATE(2624)] = 85268, - [SMALL_STATE(2625)] = 85331, - [SMALL_STATE(2626)] = 85394, - [SMALL_STATE(2627)] = 85461, - [SMALL_STATE(2628)] = 85534, - [SMALL_STATE(2629)] = 85601, - [SMALL_STATE(2630)] = 85668, - [SMALL_STATE(2631)] = 85735, - [SMALL_STATE(2632)] = 85800, - [SMALL_STATE(2633)] = 85869, - [SMALL_STATE(2634)] = 85932, - [SMALL_STATE(2635)] = 85995, - [SMALL_STATE(2636)] = 86058, - [SMALL_STATE(2637)] = 86121, - [SMALL_STATE(2638)] = 86184, - [SMALL_STATE(2639)] = 86251, - [SMALL_STATE(2640)] = 86318, - [SMALL_STATE(2641)] = 86381, - [SMALL_STATE(2642)] = 86448, - [SMALL_STATE(2643)] = 86515, - [SMALL_STATE(2644)] = 86578, - [SMALL_STATE(2645)] = 86645, - [SMALL_STATE(2646)] = 86708, - [SMALL_STATE(2647)] = 86771, - [SMALL_STATE(2648)] = 86834, - [SMALL_STATE(2649)] = 86901, - [SMALL_STATE(2650)] = 86968, - [SMALL_STATE(2651)] = 87033, - [SMALL_STATE(2652)] = 87098, - [SMALL_STATE(2653)] = 87169, - [SMALL_STATE(2654)] = 87240, - [SMALL_STATE(2655)] = 87313, - [SMALL_STATE(2656)] = 87376, - [SMALL_STATE(2657)] = 87441, - [SMALL_STATE(2658)] = 87508, - [SMALL_STATE(2659)] = 87570, - [SMALL_STATE(2660)] = 87642, - [SMALL_STATE(2661)] = 87704, - [SMALL_STATE(2662)] = 87776, - [SMALL_STATE(2663)] = 87840, - [SMALL_STATE(2664)] = 87902, - [SMALL_STATE(2665)] = 87966, - [SMALL_STATE(2666)] = 88080, - [SMALL_STATE(2667)] = 88142, - [SMALL_STATE(2668)] = 88206, - [SMALL_STATE(2669)] = 88270, - [SMALL_STATE(2670)] = 88388, - [SMALL_STATE(2671)] = 88454, - [SMALL_STATE(2672)] = 88572, - [SMALL_STATE(2673)] = 88634, - [SMALL_STATE(2674)] = 88696, - [SMALL_STATE(2675)] = 88760, - [SMALL_STATE(2676)] = 88824, - [SMALL_STATE(2677)] = 88886, - [SMALL_STATE(2678)] = 88948, - [SMALL_STATE(2679)] = 89014, - [SMALL_STATE(2680)] = 89078, - [SMALL_STATE(2681)] = 89140, - [SMALL_STATE(2682)] = 89204, - [SMALL_STATE(2683)] = 89274, - [SMALL_STATE(2684)] = 89338, - [SMALL_STATE(2685)] = 89402, - [SMALL_STATE(2686)] = 89466, - [SMALL_STATE(2687)] = 89530, - [SMALL_STATE(2688)] = 89594, - [SMALL_STATE(2689)] = 89664, - [SMALL_STATE(2690)] = 89734, - [SMALL_STATE(2691)] = 89804, - [SMALL_STATE(2692)] = 89868, - [SMALL_STATE(2693)] = 89938, - [SMALL_STATE(2694)] = 90008, - [SMALL_STATE(2695)] = 90072, - [SMALL_STATE(2696)] = 90142, - [SMALL_STATE(2697)] = 90212, - [SMALL_STATE(2698)] = 90282, - [SMALL_STATE(2699)] = 90352, - [SMALL_STATE(2700)] = 90422, - [SMALL_STATE(2701)] = 90492, - [SMALL_STATE(2702)] = 90562, - [SMALL_STATE(2703)] = 90632, - [SMALL_STATE(2704)] = 90702, - [SMALL_STATE(2705)] = 90772, - [SMALL_STATE(2706)] = 90842, - [SMALL_STATE(2707)] = 90954, - [SMALL_STATE(2708)] = 91018, - [SMALL_STATE(2709)] = 91084, - [SMALL_STATE(2710)] = 91154, - [SMALL_STATE(2711)] = 91266, - [SMALL_STATE(2712)] = 91328, - [SMALL_STATE(2713)] = 91442, - [SMALL_STATE(2714)] = 91508, - [SMALL_STATE(2715)] = 91570, - [SMALL_STATE(2716)] = 91632, - [SMALL_STATE(2717)] = 91696, - [SMALL_STATE(2718)] = 91758, - [SMALL_STATE(2719)] = 91820, - [SMALL_STATE(2720)] = 91882, - [SMALL_STATE(2721)] = 91944, - [SMALL_STATE(2722)] = 92006, - [SMALL_STATE(2723)] = 92068, - [SMALL_STATE(2724)] = 92130, - [SMALL_STATE(2725)] = 92192, - [SMALL_STATE(2726)] = 92254, - [SMALL_STATE(2727)] = 92324, - [SMALL_STATE(2728)] = 92393, - [SMALL_STATE(2729)] = 92460, - [SMALL_STATE(2730)] = 92521, - [SMALL_STATE(2731)] = 92590, - [SMALL_STATE(2732)] = 92651, - [SMALL_STATE(2733)] = 92720, - [SMALL_STATE(2734)] = 92781, - [SMALL_STATE(2735)] = 92890, - [SMALL_STATE(2736)] = 92951, - [SMALL_STATE(2737)] = 93016, - [SMALL_STATE(2738)] = 93085, - [SMALL_STATE(2739)] = 93146, - [SMALL_STATE(2740)] = 93215, - [SMALL_STATE(2741)] = 93282, - [SMALL_STATE(2742)] = 93343, - [SMALL_STATE(2743)] = 93404, - [SMALL_STATE(2744)] = 93465, - [SMALL_STATE(2745)] = 93526, - [SMALL_STATE(2746)] = 93587, - [SMALL_STATE(2747)] = 93652, - [SMALL_STATE(2748)] = 93713, - [SMALL_STATE(2749)] = 93774, - [SMALL_STATE(2750)] = 93835, - [SMALL_STATE(2751)] = 93904, - [SMALL_STATE(2752)] = 93969, - [SMALL_STATE(2753)] = 94030, - [SMALL_STATE(2754)] = 94091, - [SMALL_STATE(2755)] = 94152, - [SMALL_STATE(2756)] = 94213, - [SMALL_STATE(2757)] = 94274, - [SMALL_STATE(2758)] = 94335, - [SMALL_STATE(2759)] = 94396, - [SMALL_STATE(2760)] = 94457, - [SMALL_STATE(2761)] = 94518, - [SMALL_STATE(2762)] = 94585, - [SMALL_STATE(2763)] = 94648, - [SMALL_STATE(2764)] = 94711, - [SMALL_STATE(2765)] = 94772, - [SMALL_STATE(2766)] = 94833, - [SMALL_STATE(2767)] = 94902, - [SMALL_STATE(2768)] = 94963, - [SMALL_STATE(2769)] = 95026, - [SMALL_STATE(2770)] = 95087, - [SMALL_STATE(2771)] = 95148, - [SMALL_STATE(2772)] = 95257, - [SMALL_STATE(2773)] = 95320, - [SMALL_STATE(2774)] = 95389, - [SMALL_STATE(2775)] = 95458, - [SMALL_STATE(2776)] = 95519, - [SMALL_STATE(2777)] = 95580, - [SMALL_STATE(2778)] = 95641, - [SMALL_STATE(2779)] = 95702, - [SMALL_STATE(2780)] = 95763, - [SMALL_STATE(2781)] = 95824, - [SMALL_STATE(2782)] = 95885, - [SMALL_STATE(2783)] = 95946, - [SMALL_STATE(2784)] = 96013, - [SMALL_STATE(2785)] = 96074, - [SMALL_STATE(2786)] = 96135, - [SMALL_STATE(2787)] = 96196, - [SMALL_STATE(2788)] = 96257, - [SMALL_STATE(2789)] = 96318, - [SMALL_STATE(2790)] = 96379, - [SMALL_STATE(2791)] = 96440, - [SMALL_STATE(2792)] = 96501, - [SMALL_STATE(2793)] = 96562, - [SMALL_STATE(2794)] = 96623, - [SMALL_STATE(2795)] = 96684, - [SMALL_STATE(2796)] = 96745, - [SMALL_STATE(2797)] = 96808, - [SMALL_STATE(2798)] = 96869, - [SMALL_STATE(2799)] = 96938, - [SMALL_STATE(2800)] = 97049, - [SMALL_STATE(2801)] = 97110, - [SMALL_STATE(2802)] = 97171, - [SMALL_STATE(2803)] = 97236, - [SMALL_STATE(2804)] = 97301, - [SMALL_STATE(2805)] = 97362, - [SMALL_STATE(2806)] = 97427, - [SMALL_STATE(2807)] = 97488, - [SMALL_STATE(2808)] = 97549, - [SMALL_STATE(2809)] = 97610, - [SMALL_STATE(2810)] = 97671, - [SMALL_STATE(2811)] = 97740, - [SMALL_STATE(2812)] = 97801, - [SMALL_STATE(2813)] = 97862, - [SMALL_STATE(2814)] = 97931, - [SMALL_STATE(2815)] = 97992, - [SMALL_STATE(2816)] = 98053, - [SMALL_STATE(2817)] = 98122, - [SMALL_STATE(2818)] = 98191, - [SMALL_STATE(2819)] = 98260, - [SMALL_STATE(2820)] = 98327, - [SMALL_STATE(2821)] = 98396, - [SMALL_STATE(2822)] = 98457, - [SMALL_STATE(2823)] = 98566, - [SMALL_STATE(2824)] = 98631, - [SMALL_STATE(2825)] = 98700, - [SMALL_STATE(2826)] = 98811, - [SMALL_STATE(2827)] = 98874, - [SMALL_STATE(2828)] = 98983, - [SMALL_STATE(2829)] = 99044, - [SMALL_STATE(2830)] = 99113, - [SMALL_STATE(2831)] = 99182, - [SMALL_STATE(2832)] = 99251, - [SMALL_STATE(2833)] = 99320, - [SMALL_STATE(2834)] = 99384, - [SMALL_STATE(2835)] = 99448, - [SMALL_STATE(2836)] = 99508, - [SMALL_STATE(2837)] = 99568, - [SMALL_STATE(2838)] = 99628, - [SMALL_STATE(2839)] = 99690, - [SMALL_STATE(2840)] = 99754, - [SMALL_STATE(2841)] = 99814, - [SMALL_STATE(2842)] = 99874, - [SMALL_STATE(2843)] = 99934, - [SMALL_STATE(2844)] = 99998, - [SMALL_STATE(2845)] = 100058, - [SMALL_STATE(2846)] = 100118, - [SMALL_STATE(2847)] = 100186, - [SMALL_STATE(2848)] = 100246, - [SMALL_STATE(2849)] = 100306, - [SMALL_STATE(2850)] = 100366, - [SMALL_STATE(2851)] = 100426, - [SMALL_STATE(2852)] = 100492, - [SMALL_STATE(2853)] = 100552, - [SMALL_STATE(2854)] = 100620, - [SMALL_STATE(2855)] = 100680, - [SMALL_STATE(2856)] = 100744, - [SMALL_STATE(2857)] = 100806, - [SMALL_STATE(2858)] = 100870, - [SMALL_STATE(2859)] = 100930, - [SMALL_STATE(2860)] = 100994, - [SMALL_STATE(2861)] = 101058, - [SMALL_STATE(2862)] = 101124, - [SMALL_STATE(2863)] = 101188, - [SMALL_STATE(2864)] = 101252, - [SMALL_STATE(2865)] = 101314, - [SMALL_STATE(2866)] = 101378, - [SMALL_STATE(2867)] = 101442, - [SMALL_STATE(2868)] = 101506, - [SMALL_STATE(2869)] = 101570, - [SMALL_STATE(2870)] = 101630, - [SMALL_STATE(2871)] = 101690, - [SMALL_STATE(2872)] = 101750, - [SMALL_STATE(2873)] = 101814, - [SMALL_STATE(2874)] = 101886, - [SMALL_STATE(2875)] = 101950, - [SMALL_STATE(2876)] = 102014, - [SMALL_STATE(2877)] = 102078, - [SMALL_STATE(2878)] = 102142, - [SMALL_STATE(2879)] = 102202, - [SMALL_STATE(2880)] = 102266, - [SMALL_STATE(2881)] = 102330, - [SMALL_STATE(2882)] = 102392, - [SMALL_STATE(2883)] = 102456, - [SMALL_STATE(2884)] = 102520, - [SMALL_STATE(2885)] = 102584, - [SMALL_STATE(2886)] = 102648, - [SMALL_STATE(2887)] = 102710, - [SMALL_STATE(2888)] = 102773, - [SMALL_STATE(2889)] = 102832, - [SMALL_STATE(2890)] = 102895, - [SMALL_STATE(2891)] = 102954, - [SMALL_STATE(2892)] = 103017, - [SMALL_STATE(2893)] = 103080, - [SMALL_STATE(2894)] = 103143, - [SMALL_STATE(2895)] = 103206, - [SMALL_STATE(2896)] = 103269, - [SMALL_STATE(2897)] = 103332, - [SMALL_STATE(2898)] = 103391, - [SMALL_STATE(2899)] = 103450, - [SMALL_STATE(2900)] = 103509, - [SMALL_STATE(2901)] = 103568, - [SMALL_STATE(2902)] = 103629, - [SMALL_STATE(2903)] = 103688, - [SMALL_STATE(2904)] = 103747, - [SMALL_STATE(2905)] = 103810, - [SMALL_STATE(2906)] = 103873, - [SMALL_STATE(2907)] = 103932, - [SMALL_STATE(2908)] = 103991, - [SMALL_STATE(2909)] = 104052, - [SMALL_STATE(2910)] = 104113, - [SMALL_STATE(2911)] = 104174, - [SMALL_STATE(2912)] = 104233, - [SMALL_STATE(2913)] = 104294, - [SMALL_STATE(2914)] = 104353, - [SMALL_STATE(2915)] = 104412, - [SMALL_STATE(2916)] = 104471, - [SMALL_STATE(2917)] = 104530, - [SMALL_STATE(2918)] = 104591, - [SMALL_STATE(2919)] = 104652, - [SMALL_STATE(2920)] = 104711, - [SMALL_STATE(2921)] = 104770, - [SMALL_STATE(2922)] = 104829, - [SMALL_STATE(2923)] = 104888, - [SMALL_STATE(2924)] = 104949, - [SMALL_STATE(2925)] = 105008, - [SMALL_STATE(2926)] = 105067, - [SMALL_STATE(2927)] = 105128, - [SMALL_STATE(2928)] = 105187, - [SMALL_STATE(2929)] = 105250, - [SMALL_STATE(2930)] = 105313, - [SMALL_STATE(2931)] = 105372, - [SMALL_STATE(2932)] = 105433, - [SMALL_STATE(2933)] = 105492, - [SMALL_STATE(2934)] = 105551, - [SMALL_STATE(2935)] = 105612, - [SMALL_STATE(2936)] = 105671, - [SMALL_STATE(2937)] = 105730, - [SMALL_STATE(2938)] = 105801, - [SMALL_STATE(2939)] = 105860, - [SMALL_STATE(2940)] = 105921, - [SMALL_STATE(2941)] = 105980, - [SMALL_STATE(2942)] = 106043, - [SMALL_STATE(2943)] = 106102, - [SMALL_STATE(2944)] = 106175, - [SMALL_STATE(2945)] = 106234, - [SMALL_STATE(2946)] = 106293, - [SMALL_STATE(2947)] = 106356, - [SMALL_STATE(2948)] = 106415, - [SMALL_STATE(2949)] = 106474, - [SMALL_STATE(2950)] = 106533, - [SMALL_STATE(2951)] = 106592, - [SMALL_STATE(2952)] = 106651, - [SMALL_STATE(2953)] = 106710, - [SMALL_STATE(2954)] = 106769, - [SMALL_STATE(2955)] = 106828, - [SMALL_STATE(2956)] = 106887, - [SMALL_STATE(2957)] = 106946, - [SMALL_STATE(2958)] = 107005, - [SMALL_STATE(2959)] = 107068, - [SMALL_STATE(2960)] = 107127, - [SMALL_STATE(2961)] = 107186, - [SMALL_STATE(2962)] = 107245, - [SMALL_STATE(2963)] = 107304, - [SMALL_STATE(2964)] = 107367, - [SMALL_STATE(2965)] = 107426, - [SMALL_STATE(2966)] = 107487, - [SMALL_STATE(2967)] = 107550, - [SMALL_STATE(2968)] = 107609, - [SMALL_STATE(2969)] = 107668, - [SMALL_STATE(2970)] = 107727, - [SMALL_STATE(2971)] = 107788, - [SMALL_STATE(2972)] = 107851, - [SMALL_STATE(2973)] = 107911, - [SMALL_STATE(2974)] = 107971, - [SMALL_STATE(2975)] = 108031, - [SMALL_STATE(2976)] = 108091, - [SMALL_STATE(2977)] = 108151, - [SMALL_STATE(2978)] = 108209, - [SMALL_STATE(2979)] = 108267, - [SMALL_STATE(2980)] = 108327, - [SMALL_STATE(2981)] = 108385, - [SMALL_STATE(2982)] = 108445, - [SMALL_STATE(2983)] = 108503, - [SMALL_STATE(2984)] = 108561, - [SMALL_STATE(2985)] = 108621, - [SMALL_STATE(2986)] = 108681, - [SMALL_STATE(2987)] = 108739, - [SMALL_STATE(2988)] = 108797, - [SMALL_STATE(2989)] = 108855, - [SMALL_STATE(2990)] = 108915, - [SMALL_STATE(2991)] = 108973, - [SMALL_STATE(2992)] = 109031, - [SMALL_STATE(2993)] = 109097, - [SMALL_STATE(2994)] = 109157, - [SMALL_STATE(2995)] = 109217, - [SMALL_STATE(2996)] = 109275, - [SMALL_STATE(2997)] = 109333, - [SMALL_STATE(2998)] = 109391, - [SMALL_STATE(2999)] = 109449, - [SMALL_STATE(3000)] = 109509, - [SMALL_STATE(3001)] = 109567, - [SMALL_STATE(3002)] = 109625, - [SMALL_STATE(3003)] = 109683, - [SMALL_STATE(3004)] = 109743, - [SMALL_STATE(3005)] = 109801, - [SMALL_STATE(3006)] = 109859, - [SMALL_STATE(3007)] = 109917, - [SMALL_STATE(3008)] = 109975, - [SMALL_STATE(3009)] = 110035, - [SMALL_STATE(3010)] = 110095, - [SMALL_STATE(3011)] = 110153, - [SMALL_STATE(3012)] = 110213, - [SMALL_STATE(3013)] = 110271, - [SMALL_STATE(3014)] = 110329, - [SMALL_STATE(3015)] = 110387, - [SMALL_STATE(3016)] = 110447, - [SMALL_STATE(3017)] = 110505, - [SMALL_STATE(3018)] = 110565, - [SMALL_STATE(3019)] = 110623, - [SMALL_STATE(3020)] = 110681, - [SMALL_STATE(3021)] = 110741, - [SMALL_STATE(3022)] = 110799, - [SMALL_STATE(3023)] = 110859, - [SMALL_STATE(3024)] = 110917, - [SMALL_STATE(3025)] = 110975, - [SMALL_STATE(3026)] = 111035, - [SMALL_STATE(3027)] = 111093, - [SMALL_STATE(3028)] = 111150, - [SMALL_STATE(3029)] = 111207, - [SMALL_STATE(3030)] = 111264, - [SMALL_STATE(3031)] = 111321, - [SMALL_STATE(3032)] = 111378, - [SMALL_STATE(3033)] = 111435, - [SMALL_STATE(3034)] = 111492, - [SMALL_STATE(3035)] = 111549, - [SMALL_STATE(3036)] = 111606, - [SMALL_STATE(3037)] = 111663, - [SMALL_STATE(3038)] = 111720, - [SMALL_STATE(3039)] = 111777, - [SMALL_STATE(3040)] = 111834, - [SMALL_STATE(3041)] = 111891, - [SMALL_STATE(3042)] = 111948, - [SMALL_STATE(3043)] = 112005, - [SMALL_STATE(3044)] = 112062, - [SMALL_STATE(3045)] = 112119, - [SMALL_STATE(3046)] = 112176, - [SMALL_STATE(3047)] = 112233, - [SMALL_STATE(3048)] = 112290, - [SMALL_STATE(3049)] = 112347, - [SMALL_STATE(3050)] = 112404, - [SMALL_STATE(3051)] = 112461, - [SMALL_STATE(3052)] = 112518, - [SMALL_STATE(3053)] = 112575, - [SMALL_STATE(3054)] = 112632, - [SMALL_STATE(3055)] = 112689, - [SMALL_STATE(3056)] = 112746, - [SMALL_STATE(3057)] = 112803, - [SMALL_STATE(3058)] = 112860, - [SMALL_STATE(3059)] = 112917, - [SMALL_STATE(3060)] = 112974, - [SMALL_STATE(3061)] = 113033, - [SMALL_STATE(3062)] = 113090, - [SMALL_STATE(3063)] = 113147, - [SMALL_STATE(3064)] = 113204, - [SMALL_STATE(3065)] = 113261, - [SMALL_STATE(3066)] = 113318, - [SMALL_STATE(3067)] = 113375, - [SMALL_STATE(3068)] = 113432, - [SMALL_STATE(3069)] = 113489, - [SMALL_STATE(3070)] = 113546, - [SMALL_STATE(3071)] = 113613, - [SMALL_STATE(3072)] = 113670, - [SMALL_STATE(3073)] = 113727, - [SMALL_STATE(3074)] = 113784, - [SMALL_STATE(3075)] = 113841, - [SMALL_STATE(3076)] = 113898, - [SMALL_STATE(3077)] = 113955, - [SMALL_STATE(3078)] = 114012, - [SMALL_STATE(3079)] = 114069, - [SMALL_STATE(3080)] = 114126, - [SMALL_STATE(3081)] = 114183, - [SMALL_STATE(3082)] = 114240, - [SMALL_STATE(3083)] = 114297, - [SMALL_STATE(3084)] = 114354, - [SMALL_STATE(3085)] = 114411, - [SMALL_STATE(3086)] = 114468, - [SMALL_STATE(3087)] = 114525, - [SMALL_STATE(3088)] = 114582, - [SMALL_STATE(3089)] = 114639, - [SMALL_STATE(3090)] = 114696, - [SMALL_STATE(3091)] = 114753, - [SMALL_STATE(3092)] = 114810, - [SMALL_STATE(3093)] = 114867, - [SMALL_STATE(3094)] = 114924, - [SMALL_STATE(3095)] = 114981, - [SMALL_STATE(3096)] = 115038, - [SMALL_STATE(3097)] = 115095, - [SMALL_STATE(3098)] = 115160, - [SMALL_STATE(3099)] = 115217, - [SMALL_STATE(3100)] = 115274, - [SMALL_STATE(3101)] = 115330, - [SMALL_STATE(3102)] = 115406, - [SMALL_STATE(3103)] = 115482, - [SMALL_STATE(3104)] = 115558, - [SMALL_STATE(3105)] = 115634, - [SMALL_STATE(3106)] = 115710, - [SMALL_STATE(3107)] = 115774, - [SMALL_STATE(3108)] = 115830, - [SMALL_STATE(3109)] = 115906, - [SMALL_STATE(3110)] = 115982, - [SMALL_STATE(3111)] = 116044, - [SMALL_STATE(3112)] = 116100, - [SMALL_STATE(3113)] = 116176, - [SMALL_STATE(3114)] = 116252, - [SMALL_STATE(3115)] = 116328, - [SMALL_STATE(3116)] = 116404, - [SMALL_STATE(3117)] = 116476, - [SMALL_STATE(3118)] = 116552, - [SMALL_STATE(3119)] = 116628, - [SMALL_STATE(3120)] = 116704, - [SMALL_STATE(3121)] = 116780, - [SMALL_STATE(3122)] = 116856, - [SMALL_STATE(3123)] = 116912, - [SMALL_STATE(3124)] = 116975, - [SMALL_STATE(3125)] = 117044, - [SMALL_STATE(3126)] = 117109, - [SMALL_STATE(3127)] = 117178, - [SMALL_STATE(3128)] = 117247, - [SMALL_STATE(3129)] = 117316, - [SMALL_STATE(3130)] = 117372, - [SMALL_STATE(3131)] = 117426, - [SMALL_STATE(3132)] = 117484, - [SMALL_STATE(3133)] = 117544, - [SMALL_STATE(3134)] = 117600, - [SMALL_STATE(3135)] = 117656, - [SMALL_STATE(3136)] = 117710, - [SMALL_STATE(3137)] = 117780, - [SMALL_STATE(3138)] = 117836, - [SMALL_STATE(3139)] = 117893, - [SMALL_STATE(3140)] = 117950, - [SMALL_STATE(3141)] = 118007, - [SMALL_STATE(3142)] = 118064, - [SMALL_STATE(3143)] = 118119, - [SMALL_STATE(3144)] = 118174, - [SMALL_STATE(3145)] = 118231, - [SMALL_STATE(3146)] = 118284, - [SMALL_STATE(3147)] = 118337, - [SMALL_STATE(3148)] = 118390, - [SMALL_STATE(3149)] = 118457, - [SMALL_STATE(3150)] = 118510, - [SMALL_STATE(3151)] = 118571, - [SMALL_STATE(3152)] = 118624, - [SMALL_STATE(3153)] = 118681, - [SMALL_STATE(3154)] = 118750, - [SMALL_STATE(3155)] = 118811, - [SMALL_STATE(3156)] = 118864, - [SMALL_STATE(3157)] = 118919, - [SMALL_STATE(3158)] = 118974, - [SMALL_STATE(3159)] = 119027, - [SMALL_STATE(3160)] = 119080, - [SMALL_STATE(3161)] = 119133, - [SMALL_STATE(3162)] = 119188, - [SMALL_STATE(3163)] = 119241, - [SMALL_STATE(3164)] = 119296, - [SMALL_STATE(3165)] = 119349, - [SMALL_STATE(3166)] = 119401, - [SMALL_STATE(3167)] = 119465, - [SMALL_STATE(3168)] = 119527, - [SMALL_STATE(3169)] = 119589, - [SMALL_STATE(3170)] = 119645, - [SMALL_STATE(3171)] = 119699, - [SMALL_STATE(3172)] = 119757, - [SMALL_STATE(3173)] = 119817, - [SMALL_STATE(3174)] = 119883, - [SMALL_STATE(3175)] = 119951, - [SMALL_STATE(3176)] = 120021, - [SMALL_STATE(3177)] = 120085, - [SMALL_STATE(3178)] = 120157, - [SMALL_STATE(3179)] = 120231, - [SMALL_STATE(3180)] = 120293, - [SMALL_STATE(3181)] = 120369, - [SMALL_STATE(3182)] = 120447, - [SMALL_STATE(3183)] = 120511, - [SMALL_STATE(3184)] = 120575, - [SMALL_STATE(3185)] = 120637, - [SMALL_STATE(3186)] = 120703, - [SMALL_STATE(3187)] = 120759, - [SMALL_STATE(3188)] = 120817, - [SMALL_STATE(3189)] = 120877, - [SMALL_STATE(3190)] = 120943, - [SMALL_STATE(3191)] = 121011, - [SMALL_STATE(3192)] = 121081, - [SMALL_STATE(3193)] = 121153, - [SMALL_STATE(3194)] = 121227, - [SMALL_STATE(3195)] = 121303, - [SMALL_STATE(3196)] = 121381, - [SMALL_STATE(3197)] = 121445, - [SMALL_STATE(3198)] = 121507, - [SMALL_STATE(3199)] = 121563, - [SMALL_STATE(3200)] = 121619, - [SMALL_STATE(3201)] = 121677, - [SMALL_STATE(3202)] = 121735, - [SMALL_STATE(3203)] = 121795, - [SMALL_STATE(3204)] = 121855, - [SMALL_STATE(3205)] = 121921, - [SMALL_STATE(3206)] = 121987, - [SMALL_STATE(3207)] = 122055, - [SMALL_STATE(3208)] = 122123, - [SMALL_STATE(3209)] = 122193, - [SMALL_STATE(3210)] = 122263, - [SMALL_STATE(3211)] = 122335, - [SMALL_STATE(3212)] = 122407, - [SMALL_STATE(3213)] = 122481, - [SMALL_STATE(3214)] = 122555, - [SMALL_STATE(3215)] = 122631, - [SMALL_STATE(3216)] = 122707, - [SMALL_STATE(3217)] = 122785, - [SMALL_STATE(3218)] = 122863, - [SMALL_STATE(3219)] = 122927, - [SMALL_STATE(3220)] = 122991, - [SMALL_STATE(3221)] = 123053, - [SMALL_STATE(3222)] = 123115, - [SMALL_STATE(3223)] = 123171, - [SMALL_STATE(3224)] = 123229, - [SMALL_STATE(3225)] = 123289, - [SMALL_STATE(3226)] = 123355, - [SMALL_STATE(3227)] = 123423, - [SMALL_STATE(3228)] = 123493, - [SMALL_STATE(3229)] = 123565, - [SMALL_STATE(3230)] = 123639, - [SMALL_STATE(3231)] = 123715, - [SMALL_STATE(3232)] = 123793, - [SMALL_STATE(3233)] = 123857, - [SMALL_STATE(3234)] = 123919, - [SMALL_STATE(3235)] = 123987, - [SMALL_STATE(3236)] = 124057, - [SMALL_STATE(3237)] = 124129, - [SMALL_STATE(3238)] = 124203, - [SMALL_STATE(3239)] = 124263, - [SMALL_STATE(3240)] = 124321, - [SMALL_STATE(3241)] = 124375, - [SMALL_STATE(3242)] = 124425, - [SMALL_STATE(3243)] = 124477, - [SMALL_STATE(3244)] = 124527, - [SMALL_STATE(3245)] = 124581, - [SMALL_STATE(3246)] = 124635, - [SMALL_STATE(3247)] = 124689, - [SMALL_STATE(3248)] = 124753, - [SMALL_STATE(3249)] = 124819, - [SMALL_STATE(3250)] = 124873, - [SMALL_STATE(3251)] = 124927, - [SMALL_STATE(3252)] = 124983, - [SMALL_STATE(3253)] = 125041, - [SMALL_STATE(3254)] = 125101, - [SMALL_STATE(3255)] = 125167, - [SMALL_STATE(3256)] = 125233, - [SMALL_STATE(3257)] = 125301, - [SMALL_STATE(3258)] = 125371, - [SMALL_STATE(3259)] = 125425, - [SMALL_STATE(3260)] = 125477, - [SMALL_STATE(3261)] = 125529, - [SMALL_STATE(3262)] = 125601, - [SMALL_STATE(3263)] = 125675, - [SMALL_STATE(3264)] = 125751, - [SMALL_STATE(3265)] = 125829, - [SMALL_STATE(3266)] = 125893, - [SMALL_STATE(3267)] = 125943, - [SMALL_STATE(3268)] = 125993, - [SMALL_STATE(3269)] = 126055, - [SMALL_STATE(3270)] = 126107, - [SMALL_STATE(3271)] = 126157, - [SMALL_STATE(3272)] = 126207, - [SMALL_STATE(3273)] = 126271, - [SMALL_STATE(3274)] = 126323, - [SMALL_STATE(3275)] = 126375, - [SMALL_STATE(3276)] = 126427, - [SMALL_STATE(3277)] = 126479, - [SMALL_STATE(3278)] = 126543, - [SMALL_STATE(3279)] = 126595, - [SMALL_STATE(3280)] = 126659, - [SMALL_STATE(3281)] = 126715, - [SMALL_STATE(3282)] = 126771, - [SMALL_STATE(3283)] = 126829, - [SMALL_STATE(3284)] = 126887, - [SMALL_STATE(3285)] = 126947, - [SMALL_STATE(3286)] = 127001, - [SMALL_STATE(3287)] = 127061, - [SMALL_STATE(3288)] = 127127, - [SMALL_STATE(3289)] = 127193, - [SMALL_STATE(3290)] = 127261, - [SMALL_STATE(3291)] = 127329, - [SMALL_STATE(3292)] = 127399, - [SMALL_STATE(3293)] = 127469, - [SMALL_STATE(3294)] = 127541, - [SMALL_STATE(3295)] = 127613, - [SMALL_STATE(3296)] = 127687, - [SMALL_STATE(3297)] = 127761, - [SMALL_STATE(3298)] = 127837, - [SMALL_STATE(3299)] = 127889, - [SMALL_STATE(3300)] = 127965, - [SMALL_STATE(3301)] = 128043, - [SMALL_STATE(3302)] = 128121, - [SMALL_STATE(3303)] = 128177, - [SMALL_STATE(3304)] = 128238, - [SMALL_STATE(3305)] = 128295, - [SMALL_STATE(3306)] = 128356, - [SMALL_STATE(3307)] = 128411, - [SMALL_STATE(3308)] = 128462, - [SMALL_STATE(3309)] = 128523, - [SMALL_STATE(3310)] = 128584, - [SMALL_STATE(3311)] = 128637, - [SMALL_STATE(3312)] = 128698, - [SMALL_STATE(3313)] = 128757, - [SMALL_STATE(3314)] = 128808, - [SMALL_STATE(3315)] = 128859, - [SMALL_STATE(3316)] = 128910, - [SMALL_STATE(3317)] = 128965, - [SMALL_STATE(3318)] = 129016, - [SMALL_STATE(3319)] = 129077, - [SMALL_STATE(3320)] = 129138, - [SMALL_STATE(3321)] = 129189, - [SMALL_STATE(3322)] = 129238, - [SMALL_STATE(3323)] = 129289, - [SMALL_STATE(3324)] = 129342, - [SMALL_STATE(3325)] = 129397, - [SMALL_STATE(3326)] = 129458, - [SMALL_STATE(3327)] = 129519, - [SMALL_STATE(3328)] = 129582, - [SMALL_STATE(3329)] = 129647, - [SMALL_STATE(3330)] = 129714, - [SMALL_STATE(3331)] = 129783, - [SMALL_STATE(3332)] = 129854, - [SMALL_STATE(3333)] = 129905, - [SMALL_STATE(3334)] = 129966, - [SMALL_STATE(3335)] = 130039, - [SMALL_STATE(3336)] = 130088, - [SMALL_STATE(3337)] = 130137, - [SMALL_STATE(3338)] = 130196, - [SMALL_STATE(3339)] = 130257, - [SMALL_STATE(3340)] = 130311, - [SMALL_STATE(3341)] = 130365, - [SMALL_STATE(3342)] = 130451, - [SMALL_STATE(3343)] = 130505, - [SMALL_STATE(3344)] = 130563, - [SMALL_STATE(3345)] = 130649, - [SMALL_STATE(3346)] = 130701, - [SMALL_STATE(3347)] = 130765, - [SMALL_STATE(3348)] = 130817, - [SMALL_STATE(3349)] = 130871, - [SMALL_STATE(3350)] = 130925, - [SMALL_STATE(3351)] = 130979, - [SMALL_STATE(3352)] = 131037, - [SMALL_STATE(3353)] = 131091, - [SMALL_STATE(3354)] = 131149, - [SMALL_STATE(3355)] = 131202, - [SMALL_STATE(3356)] = 131253, - [SMALL_STATE(3357)] = 131308, - [SMALL_STATE(3358)] = 131373, - [SMALL_STATE(3359)] = 131456, - [SMALL_STATE(3360)] = 131505, - [SMALL_STATE(3361)] = 131556, - [SMALL_STATE(3362)] = 131619, - [SMALL_STATE(3363)] = 131684, - [SMALL_STATE(3364)] = 131735, - [SMALL_STATE(3365)] = 131788, - [SMALL_STATE(3366)] = 131837, - [SMALL_STATE(3367)] = 131890, - [SMALL_STATE(3368)] = 131943, - [SMALL_STATE(3369)] = 131994, - [SMALL_STATE(3370)] = 132043, - [SMALL_STATE(3371)] = 132096, - [SMALL_STATE(3372)] = 132151, - [SMALL_STATE(3373)] = 132234, - [SMALL_STATE(3374)] = 132283, - [SMALL_STATE(3375)] = 132338, - [SMALL_STATE(3376)] = 132393, - [SMALL_STATE(3377)] = 132444, - [SMALL_STATE(3378)] = 132497, - [SMALL_STATE(3379)] = 132552, - [SMALL_STATE(3380)] = 132605, - [SMALL_STATE(3381)] = 132656, - [SMALL_STATE(3382)] = 132704, - [SMALL_STATE(3383)] = 132752, - [SMALL_STATE(3384)] = 132812, - [SMALL_STATE(3385)] = 132862, - [SMALL_STATE(3386)] = 132910, - [SMALL_STATE(3387)] = 132958, - [SMALL_STATE(3388)] = 133006, - [SMALL_STATE(3389)] = 133054, - [SMALL_STATE(3390)] = 133116, - [SMALL_STATE(3391)] = 133164, - [SMALL_STATE(3392)] = 133222, - [SMALL_STATE(3393)] = 133270, - [SMALL_STATE(3394)] = 133318, - [SMALL_STATE(3395)] = 133366, - [SMALL_STATE(3396)] = 133414, - [SMALL_STATE(3397)] = 133462, - [SMALL_STATE(3398)] = 133524, - [SMALL_STATE(3399)] = 133572, - [SMALL_STATE(3400)] = 133624, - [SMALL_STATE(3401)] = 133672, - [SMALL_STATE(3402)] = 133720, - [SMALL_STATE(3403)] = 133768, - [SMALL_STATE(3404)] = 133828, - [SMALL_STATE(3405)] = 133876, - [SMALL_STATE(3406)] = 133938, - [SMALL_STATE(3407)] = 133988, - [SMALL_STATE(3408)] = 134038, - [SMALL_STATE(3409)] = 134086, - [SMALL_STATE(3410)] = 134138, - [SMALL_STATE(3411)] = 134190, - [SMALL_STATE(3412)] = 134252, - [SMALL_STATE(3413)] = 134304, - [SMALL_STATE(3414)] = 134366, - [SMALL_STATE(3415)] = 134414, - [SMALL_STATE(3416)] = 134462, - [SMALL_STATE(3417)] = 134524, - [SMALL_STATE(3418)] = 134572, - [SMALL_STATE(3419)] = 134620, - [SMALL_STATE(3420)] = 134668, - [SMALL_STATE(3421)] = 134716, - [SMALL_STATE(3422)] = 134764, - [SMALL_STATE(3423)] = 134814, - [SMALL_STATE(3424)] = 134862, - [SMALL_STATE(3425)] = 134910, - [SMALL_STATE(3426)] = 134958, - [SMALL_STATE(3427)] = 135006, - [SMALL_STATE(3428)] = 135054, - [SMALL_STATE(3429)] = 135102, - [SMALL_STATE(3430)] = 135157, - [SMALL_STATE(3431)] = 135204, - [SMALL_STATE(3432)] = 135251, - [SMALL_STATE(3433)] = 135306, - [SMALL_STATE(3434)] = 135353, - [SMALL_STATE(3435)] = 135400, - [SMALL_STATE(3436)] = 135455, - [SMALL_STATE(3437)] = 135510, - [SMALL_STATE(3438)] = 135565, - [SMALL_STATE(3439)] = 135612, - [SMALL_STATE(3440)] = 135667, - [SMALL_STATE(3441)] = 135722, - [SMALL_STATE(3442)] = 135777, - [SMALL_STATE(3443)] = 135832, - [SMALL_STATE(3444)] = 135887, - [SMALL_STATE(3445)] = 135942, - [SMALL_STATE(3446)] = 135997, - [SMALL_STATE(3447)] = 136048, - [SMALL_STATE(3448)] = 136095, - [SMALL_STATE(3449)] = 136150, - [SMALL_STATE(3450)] = 136205, - [SMALL_STATE(3451)] = 136260, - [SMALL_STATE(3452)] = 136315, - [SMALL_STATE(3453)] = 136370, - [SMALL_STATE(3454)] = 136419, - [SMALL_STATE(3455)] = 136466, - [SMALL_STATE(3456)] = 136521, - [SMALL_STATE(3457)] = 136576, - [SMALL_STATE(3458)] = 136631, - [SMALL_STATE(3459)] = 136686, - [SMALL_STATE(3460)] = 136741, - [SMALL_STATE(3461)] = 136792, - [SMALL_STATE(3462)] = 136847, - [SMALL_STATE(3463)] = 136902, - [SMALL_STATE(3464)] = 136957, - [SMALL_STATE(3465)] = 137004, - [SMALL_STATE(3466)] = 137050, - [SMALL_STATE(3467)] = 137104, - [SMALL_STATE(3468)] = 137158, - [SMALL_STATE(3469)] = 137212, - [SMALL_STATE(3470)] = 137266, - [SMALL_STATE(3471)] = 137320, - [SMALL_STATE(3472)] = 137374, - [SMALL_STATE(3473)] = 137420, - [SMALL_STATE(3474)] = 137474, - [SMALL_STATE(3475)] = 137524, - [SMALL_STATE(3476)] = 137578, - [SMALL_STATE(3477)] = 137630, - [SMALL_STATE(3478)] = 137684, - [SMALL_STATE(3479)] = 137738, - [SMALL_STATE(3480)] = 137792, - [SMALL_STATE(3481)] = 137840, - [SMALL_STATE(3482)] = 137894, - [SMALL_STATE(3483)] = 137948, - [SMALL_STATE(3484)] = 137994, - [SMALL_STATE(3485)] = 138048, - [SMALL_STATE(3486)] = 138102, - [SMALL_STATE(3487)] = 138156, - [SMALL_STATE(3488)] = 138210, - [SMALL_STATE(3489)] = 138264, - [SMALL_STATE(3490)] = 138318, - [SMALL_STATE(3491)] = 138368, - [SMALL_STATE(3492)] = 138418, - [SMALL_STATE(3493)] = 138472, - [SMALL_STATE(3494)] = 138526, - [SMALL_STATE(3495)] = 138580, - [SMALL_STATE(3496)] = 138628, - [SMALL_STATE(3497)] = 138682, - [SMALL_STATE(3498)] = 138736, - [SMALL_STATE(3499)] = 138781, - [SMALL_STATE(3500)] = 138826, - [SMALL_STATE(3501)] = 138877, - [SMALL_STATE(3502)] = 138922, - [SMALL_STATE(3503)] = 138973, - [SMALL_STATE(3504)] = 139018, - [SMALL_STATE(3505)] = 139069, - [SMALL_STATE(3506)] = 139114, - [SMALL_STATE(3507)] = 139163, - [SMALL_STATE(3508)] = 139214, - [SMALL_STATE(3509)] = 139259, - [SMALL_STATE(3510)] = 139303, - [SMALL_STATE(3511)] = 139347, - [SMALL_STATE(3512)] = 139393, - [SMALL_STATE(3513)] = 139437, - [SMALL_STATE(3514)] = 139485, - [SMALL_STATE(3515)] = 139529, - [SMALL_STATE(3516)] = 139577, - [SMALL_STATE(3517)] = 139625, - [SMALL_STATE(3518)] = 139673, - [SMALL_STATE(3519)] = 139723, - [SMALL_STATE(3520)] = 139767, - [SMALL_STATE(3521)] = 139811, - [SMALL_STATE(3522)] = 139859, - [SMALL_STATE(3523)] = 139907, - [SMALL_STATE(3524)] = 139951, - [SMALL_STATE(3525)] = 139995, - [SMALL_STATE(3526)] = 140039, - [SMALL_STATE(3527)] = 140087, - [SMALL_STATE(3528)] = 140131, - [SMALL_STATE(3529)] = 140181, - [SMALL_STATE(3530)] = 140227, - [SMALL_STATE(3531)] = 140275, - [SMALL_STATE(3532)] = 140325, - [SMALL_STATE(3533)] = 140368, - [SMALL_STATE(3534)] = 140413, - [SMALL_STATE(3535)] = 140458, - [SMALL_STATE(3536)] = 140503, - [SMALL_STATE(3537)] = 140548, - [SMALL_STATE(3538)] = 140595, - [SMALL_STATE(3539)] = 140642, - [SMALL_STATE(3540)] = 140689, - [SMALL_STATE(3541)] = 140732, - [SMALL_STATE(3542)] = 140821, - [SMALL_STATE(3543)] = 140868, - [SMALL_STATE(3544)] = 140911, - [SMALL_STATE(3545)] = 140954, - [SMALL_STATE(3546)] = 140997, - [SMALL_STATE(3547)] = 141040, - [SMALL_STATE(3548)] = 141087, - [SMALL_STATE(3549)] = 141132, - [SMALL_STATE(3550)] = 141179, - [SMALL_STATE(3551)] = 141222, - [SMALL_STATE(3552)] = 141265, - [SMALL_STATE(3553)] = 141308, - [SMALL_STATE(3554)] = 141359, - [SMALL_STATE(3555)] = 141410, - [SMALL_STATE(3556)] = 141455, - [SMALL_STATE(3557)] = 141502, - [SMALL_STATE(3558)] = 141547, - [SMALL_STATE(3559)] = 141592, - [SMALL_STATE(3560)] = 141637, - [SMALL_STATE(3561)] = 141682, - [SMALL_STATE(3562)] = 141727, - [SMALL_STATE(3563)] = 141772, - [SMALL_STATE(3564)] = 141861, - [SMALL_STATE(3565)] = 141908, - [SMALL_STATE(3566)] = 141953, - [SMALL_STATE(3567)] = 142000, - [SMALL_STATE(3568)] = 142042, - [SMALL_STATE(3569)] = 142084, - [SMALL_STATE(3570)] = 142130, - [SMALL_STATE(3571)] = 142176, - [SMALL_STATE(3572)] = 142222, - [SMALL_STATE(3573)] = 142268, - [SMALL_STATE(3574)] = 142312, - [SMALL_STATE(3575)] = 142354, - [SMALL_STATE(3576)] = 142400, - [SMALL_STATE(3577)] = 142448, - [SMALL_STATE(3578)] = 142498, - [SMALL_STATE(3579)] = 142554, - [SMALL_STATE(3580)] = 142612, - [SMALL_STATE(3581)] = 142672, - [SMALL_STATE(3582)] = 142734, - [SMALL_STATE(3583)] = 142798, - [SMALL_STATE(3584)] = 142864, - [SMALL_STATE(3585)] = 142932, - [SMALL_STATE(3586)] = 142986, - [SMALL_STATE(3587)] = 143038, - [SMALL_STATE(3588)] = 143084, - [SMALL_STATE(3589)] = 143130, - [SMALL_STATE(3590)] = 143178, - [SMALL_STATE(3591)] = 143226, - [SMALL_STATE(3592)] = 143276, - [SMALL_STATE(3593)] = 143326, - [SMALL_STATE(3594)] = 143382, - [SMALL_STATE(3595)] = 143438, - [SMALL_STATE(3596)] = 143496, - [SMALL_STATE(3597)] = 143554, - [SMALL_STATE(3598)] = 143614, - [SMALL_STATE(3599)] = 143674, - [SMALL_STATE(3600)] = 143736, - [SMALL_STATE(3601)] = 143798, - [SMALL_STATE(3602)] = 143862, - [SMALL_STATE(3603)] = 143926, - [SMALL_STATE(3604)] = 143992, - [SMALL_STATE(3605)] = 144058, - [SMALL_STATE(3606)] = 144126, - [SMALL_STATE(3607)] = 144194, - [SMALL_STATE(3608)] = 144248, - [SMALL_STATE(3609)] = 144302, - [SMALL_STATE(3610)] = 144354, - [SMALL_STATE(3611)] = 144406, - [SMALL_STATE(3612)] = 144452, - [SMALL_STATE(3613)] = 144500, - [SMALL_STATE(3614)] = 144550, - [SMALL_STATE(3615)] = 144606, - [SMALL_STATE(3616)] = 144664, - [SMALL_STATE(3617)] = 144724, - [SMALL_STATE(3618)] = 144786, - [SMALL_STATE(3619)] = 144850, - [SMALL_STATE(3620)] = 144916, - [SMALL_STATE(3621)] = 144984, - [SMALL_STATE(3622)] = 145038, - [SMALL_STATE(3623)] = 145090, - [SMALL_STATE(3624)] = 145136, - [SMALL_STATE(3625)] = 145184, - [SMALL_STATE(3626)] = 145234, - [SMALL_STATE(3627)] = 145290, - [SMALL_STATE(3628)] = 145348, - [SMALL_STATE(3629)] = 145408, - [SMALL_STATE(3630)] = 145470, - [SMALL_STATE(3631)] = 145534, - [SMALL_STATE(3632)] = 145600, - [SMALL_STATE(3633)] = 145668, - [SMALL_STATE(3634)] = 145722, - [SMALL_STATE(3635)] = 145774, - [SMALL_STATE(3636)] = 145820, - [SMALL_STATE(3637)] = 145866, - [SMALL_STATE(3638)] = 145914, - [SMALL_STATE(3639)] = 145962, - [SMALL_STATE(3640)] = 146012, - [SMALL_STATE(3641)] = 146062, - [SMALL_STATE(3642)] = 146118, - [SMALL_STATE(3643)] = 146174, - [SMALL_STATE(3644)] = 146232, - [SMALL_STATE(3645)] = 146290, - [SMALL_STATE(3646)] = 146350, - [SMALL_STATE(3647)] = 146410, - [SMALL_STATE(3648)] = 146472, - [SMALL_STATE(3649)] = 146534, - [SMALL_STATE(3650)] = 146598, - [SMALL_STATE(3651)] = 146662, - [SMALL_STATE(3652)] = 146728, - [SMALL_STATE(3653)] = 146794, - [SMALL_STATE(3654)] = 146862, - [SMALL_STATE(3655)] = 146930, - [SMALL_STATE(3656)] = 146984, - [SMALL_STATE(3657)] = 147038, - [SMALL_STATE(3658)] = 147090, - [SMALL_STATE(3659)] = 147142, - [SMALL_STATE(3660)] = 147188, - [SMALL_STATE(3661)] = 147236, - [SMALL_STATE(3662)] = 147286, - [SMALL_STATE(3663)] = 147342, - [SMALL_STATE(3664)] = 147386, - [SMALL_STATE(3665)] = 147446, - [SMALL_STATE(3666)] = 147508, - [SMALL_STATE(3667)] = 147572, - [SMALL_STATE(3668)] = 147638, - [SMALL_STATE(3669)] = 147706, - [SMALL_STATE(3670)] = 147760, - [SMALL_STATE(3671)] = 147812, - [SMALL_STATE(3672)] = 147854, - [SMALL_STATE(3673)] = 147896, - [SMALL_STATE(3674)] = 147942, - [SMALL_STATE(3675)] = 147984, - [SMALL_STATE(3676)] = 148026, - [SMALL_STATE(3677)] = 148068, - [SMALL_STATE(3678)] = 148110, - [SMALL_STATE(3679)] = 148152, - [SMALL_STATE(3680)] = 148194, - [SMALL_STATE(3681)] = 148236, - [SMALL_STATE(3682)] = 148278, - [SMALL_STATE(3683)] = 148320, - [SMALL_STATE(3684)] = 148362, - [SMALL_STATE(3685)] = 148404, - [SMALL_STATE(3686)] = 148446, - [SMALL_STATE(3687)] = 148488, - [SMALL_STATE(3688)] = 148530, - [SMALL_STATE(3689)] = 148572, - [SMALL_STATE(3690)] = 148614, - [SMALL_STATE(3691)] = 148656, - [SMALL_STATE(3692)] = 148698, - [SMALL_STATE(3693)] = 148740, - [SMALL_STATE(3694)] = 148782, - [SMALL_STATE(3695)] = 148826, - [SMALL_STATE(3696)] = 148870, - [SMALL_STATE(3697)] = 148916, - [SMALL_STATE(3698)] = 148964, - [SMALL_STATE(3699)] = 149018, - [SMALL_STATE(3700)] = 149074, - [SMALL_STATE(3701)] = 149132, - [SMALL_STATE(3702)] = 149192, - [SMALL_STATE(3703)] = 149254, - [SMALL_STATE(3704)] = 149318, - [SMALL_STATE(3705)] = 149384, - [SMALL_STATE(3706)] = 149436, - [SMALL_STATE(3707)] = 149486, - [SMALL_STATE(3708)] = 149530, - [SMALL_STATE(3709)] = 149580, - [SMALL_STATE(3710)] = 149622, - [SMALL_STATE(3711)] = 149664, - [SMALL_STATE(3712)] = 149706, - [SMALL_STATE(3713)] = 149748, - [SMALL_STATE(3714)] = 149790, - [SMALL_STATE(3715)] = 149832, - [SMALL_STATE(3716)] = 149874, - [SMALL_STATE(3717)] = 149916, - [SMALL_STATE(3718)] = 149966, - [SMALL_STATE(3719)] = 150008, - [SMALL_STATE(3720)] = 150054, - [SMALL_STATE(3721)] = 150096, - [SMALL_STATE(3722)] = 150142, - [SMALL_STATE(3723)] = 150184, - [SMALL_STATE(3724)] = 150226, - [SMALL_STATE(3725)] = 150268, - [SMALL_STATE(3726)] = 150310, - [SMALL_STATE(3727)] = 150352, - [SMALL_STATE(3728)] = 150394, - [SMALL_STATE(3729)] = 150436, - [SMALL_STATE(3730)] = 150478, - [SMALL_STATE(3731)] = 150520, - [SMALL_STATE(3732)] = 150562, - [SMALL_STATE(3733)] = 150604, - [SMALL_STATE(3734)] = 150646, - [SMALL_STATE(3735)] = 150688, - [SMALL_STATE(3736)] = 150730, - [SMALL_STATE(3737)] = 150772, - [SMALL_STATE(3738)] = 150814, - [SMALL_STATE(3739)] = 150856, - [SMALL_STATE(3740)] = 150898, - [SMALL_STATE(3741)] = 150940, - [SMALL_STATE(3742)] = 150982, - [SMALL_STATE(3743)] = 151024, - [SMALL_STATE(3744)] = 151068, - [SMALL_STATE(3745)] = 151126, - [SMALL_STATE(3746)] = 151167, - [SMALL_STATE(3747)] = 151234, - [SMALL_STATE(3748)] = 151317, - [SMALL_STATE(3749)] = 151358, - [SMALL_STATE(3750)] = 151425, - [SMALL_STATE(3751)] = 151466, - [SMALL_STATE(3752)] = 151549, - [SMALL_STATE(3753)] = 151632, - [SMALL_STATE(3754)] = 151715, - [SMALL_STATE(3755)] = 151798, - [SMALL_STATE(3756)] = 151881, - [SMALL_STATE(3757)] = 151964, - [SMALL_STATE(3758)] = 152047, - [SMALL_STATE(3759)] = 152130, - [SMALL_STATE(3760)] = 152213, - [SMALL_STATE(3761)] = 152296, - [SMALL_STATE(3762)] = 152379, - [SMALL_STATE(3763)] = 152462, - [SMALL_STATE(3764)] = 152503, - [SMALL_STATE(3765)] = 152586, - [SMALL_STATE(3766)] = 152669, - [SMALL_STATE(3767)] = 152710, - [SMALL_STATE(3768)] = 152793, - [SMALL_STATE(3769)] = 152834, - [SMALL_STATE(3770)] = 152917, - [SMALL_STATE(3771)] = 152958, - [SMALL_STATE(3772)] = 153041, - [SMALL_STATE(3773)] = 153124, - [SMALL_STATE(3774)] = 153169, - [SMALL_STATE(3775)] = 153236, - [SMALL_STATE(3776)] = 153319, - [SMALL_STATE(3777)] = 153402, - [SMALL_STATE(3778)] = 153485, - [SMALL_STATE(3779)] = 153552, - [SMALL_STATE(3780)] = 153635, - [SMALL_STATE(3781)] = 153718, - [SMALL_STATE(3782)] = 153801, - [SMALL_STATE(3783)] = 153846, - [SMALL_STATE(3784)] = 153913, - [SMALL_STATE(3785)] = 153996, - [SMALL_STATE(3786)] = 154063, - [SMALL_STATE(3787)] = 154107, - [SMALL_STATE(3788)] = 154169, - [SMALL_STATE(3789)] = 154209, - [SMALL_STATE(3790)] = 154253, - [SMALL_STATE(3791)] = 154295, - [SMALL_STATE(3792)] = 154353, - [SMALL_STATE(3793)] = 154397, - [SMALL_STATE(3794)] = 154437, - [SMALL_STATE(3795)] = 154487, - [SMALL_STATE(3796)] = 154539, - [SMALL_STATE(3797)] = 154583, - [SMALL_STATE(3798)] = 154637, - [SMALL_STATE(3799)] = 154677, - [SMALL_STATE(3800)] = 154721, - [SMALL_STATE(3801)] = 154775, - [SMALL_STATE(3802)] = 154831, - [SMALL_STATE(3803)] = 154889, - [SMALL_STATE(3804)] = 154937, - [SMALL_STATE(3805)] = 154997, - [SMALL_STATE(3806)] = 155059, - [SMALL_STATE(3807)] = 155107, - [SMALL_STATE(3808)] = 155151, - [SMALL_STATE(3809)] = 155197, - [SMALL_STATE(3810)] = 155249, - [SMALL_STATE(3811)] = 155295, - [SMALL_STATE(3812)] = 155355, - [SMALL_STATE(3813)] = 155397, - [SMALL_STATE(3814)] = 155447, - [SMALL_STATE(3815)] = 155503, - [SMALL_STATE(3816)] = 155542, - [SMALL_STATE(3817)] = 155619, - [SMALL_STATE(3818)] = 155658, - [SMALL_STATE(3819)] = 155697, - [SMALL_STATE(3820)] = 155758, - [SMALL_STATE(3821)] = 155819, - [SMALL_STATE(3822)] = 155858, - [SMALL_STATE(3823)] = 155919, - [SMALL_STATE(3824)] = 155980, - [SMALL_STATE(3825)] = 156057, - [SMALL_STATE(3826)] = 156134, - [SMALL_STATE(3827)] = 156211, - [SMALL_STATE(3828)] = 156288, - [SMALL_STATE(3829)] = 156365, - [SMALL_STATE(3830)] = 156410, - [SMALL_STATE(3831)] = 156449, - [SMALL_STATE(3832)] = 156526, - [SMALL_STATE(3833)] = 156587, - [SMALL_STATE(3834)] = 156648, - [SMALL_STATE(3835)] = 156725, - [SMALL_STATE(3836)] = 156764, - [SMALL_STATE(3837)] = 156825, - [SMALL_STATE(3838)] = 156902, - [SMALL_STATE(3839)] = 156979, - [SMALL_STATE(3840)] = 157056, - [SMALL_STATE(3841)] = 157133, - [SMALL_STATE(3842)] = 157177, - [SMALL_STATE(3843)] = 157231, - [SMALL_STATE(3844)] = 157282, - [SMALL_STATE(3845)] = 157335, - [SMALL_STATE(3846)] = 157386, - [SMALL_STATE(3847)] = 157436, - [SMALL_STATE(3848)] = 157486, - [SMALL_STATE(3849)] = 157542, - [SMALL_STATE(3850)] = 157582, - [SMALL_STATE(3851)] = 157622, - [SMALL_STATE(3852)] = 157672, - [SMALL_STATE(3853)] = 157711, - [SMALL_STATE(3854)] = 157754, - [SMALL_STATE(3855)] = 157797, - [SMALL_STATE(3856)] = 157840, - [SMALL_STATE(3857)] = 157877, - [SMALL_STATE(3858)] = 157930, - [SMALL_STATE(3859)] = 157973, - [SMALL_STATE(3860)] = 158016, - [SMALL_STATE(3861)] = 158059, - [SMALL_STATE(3862)] = 158102, - [SMALL_STATE(3863)] = 158145, - [SMALL_STATE(3864)] = 158188, - [SMALL_STATE(3865)] = 158231, - [SMALL_STATE(3866)] = 158270, - [SMALL_STATE(3867)] = 158313, - [SMALL_STATE(3868)] = 158368, - [SMALL_STATE(3869)] = 158411, - [SMALL_STATE(3870)] = 158458, - [SMALL_STATE(3871)] = 158501, - [SMALL_STATE(3872)] = 158544, - [SMALL_STATE(3873)] = 158587, - [SMALL_STATE(3874)] = 158630, - [SMALL_STATE(3875)] = 158673, - [SMALL_STATE(3876)] = 158716, - [SMALL_STATE(3877)] = 158759, - [SMALL_STATE(3878)] = 158806, - [SMALL_STATE(3879)] = 158849, - [SMALL_STATE(3880)] = 158892, - [SMALL_STATE(3881)] = 158929, - [SMALL_STATE(3882)] = 158976, - [SMALL_STATE(3883)] = 159023, - [SMALL_STATE(3884)] = 159070, - [SMALL_STATE(3885)] = 159123, - [SMALL_STATE(3886)] = 159176, - [SMALL_STATE(3887)] = 159219, - [SMALL_STATE(3888)] = 159257, - [SMALL_STATE(3889)] = 159291, - [SMALL_STATE(3890)] = 159325, - [SMALL_STATE(3891)] = 159363, - [SMALL_STATE(3892)] = 159399, - [SMALL_STATE(3893)] = 159433, - [SMALL_STATE(3894)] = 159469, - [SMALL_STATE(3895)] = 159507, - [SMALL_STATE(3896)] = 159559, - [SMALL_STATE(3897)] = 159593, - [SMALL_STATE(3898)] = 159643, - [SMALL_STATE(3899)] = 159693, - [SMALL_STATE(3900)] = 159743, - [SMALL_STATE(3901)] = 159795, - [SMALL_STATE(3902)] = 159833, - [SMALL_STATE(3903)] = 159885, - [SMALL_STATE(3904)] = 159927, - [SMALL_STATE(3905)] = 159969, - [SMALL_STATE(3906)] = 160019, - [SMALL_STATE(3907)] = 160065, - [SMALL_STATE(3908)] = 160106, - [SMALL_STATE(3909)] = 160147, - [SMALL_STATE(3910)] = 160180, - [SMALL_STATE(3911)] = 160215, - [SMALL_STATE(3912)] = 160248, - [SMALL_STATE(3913)] = 160297, - [SMALL_STATE(3914)] = 160338, - [SMALL_STATE(3915)] = 160379, - [SMALL_STATE(3916)] = 160420, - [SMALL_STATE(3917)] = 160461, - [SMALL_STATE(3918)] = 160502, - [SMALL_STATE(3919)] = 160543, - [SMALL_STATE(3920)] = 160580, - [SMALL_STATE(3921)] = 160615, - [SMALL_STATE(3922)] = 160664, - [SMALL_STATE(3923)] = 160697, - [SMALL_STATE(3924)] = 160738, - [SMALL_STATE(3925)] = 160787, - [SMALL_STATE(3926)] = 160828, - [SMALL_STATE(3927)] = 160869, - [SMALL_STATE(3928)] = 160922, - [SMALL_STATE(3929)] = 160963, - [SMALL_STATE(3930)] = 161004, - [SMALL_STATE(3931)] = 161045, - [SMALL_STATE(3932)] = 161086, - [SMALL_STATE(3933)] = 161127, - [SMALL_STATE(3934)] = 161168, - [SMALL_STATE(3935)] = 161209, - [SMALL_STATE(3936)] = 161256, - [SMALL_STATE(3937)] = 161305, - [SMALL_STATE(3938)] = 161342, - [SMALL_STATE(3939)] = 161379, - [SMALL_STATE(3940)] = 161420, - [SMALL_STATE(3941)] = 161455, - [SMALL_STATE(3942)] = 161496, - [SMALL_STATE(3943)] = 161537, - [SMALL_STATE(3944)] = 161570, - [SMALL_STATE(3945)] = 161611, - [SMALL_STATE(3946)] = 161648, - [SMALL_STATE(3947)] = 161689, - [SMALL_STATE(3948)] = 161730, - [SMALL_STATE(3949)] = 161771, - [SMALL_STATE(3950)] = 161806, - [SMALL_STATE(3951)] = 161847, - [SMALL_STATE(3952)] = 161885, - [SMALL_STATE(3953)] = 161919, - [SMALL_STATE(3954)] = 161951, - [SMALL_STATE(3955)] = 161983, - [SMALL_STATE(3956)] = 162017, - [SMALL_STATE(3957)] = 162053, - [SMALL_STATE(3958)] = 162085, - [SMALL_STATE(3959)] = 162117, - [SMALL_STATE(3960)] = 162149, - [SMALL_STATE(3961)] = 162181, - [SMALL_STATE(3962)] = 162213, - [SMALL_STATE(3963)] = 162247, - [SMALL_STATE(3964)] = 162297, - [SMALL_STATE(3965)] = 162329, - [SMALL_STATE(3966)] = 162365, - [SMALL_STATE(3967)] = 162397, - [SMALL_STATE(3968)] = 162435, - [SMALL_STATE(3969)] = 162475, - [SMALL_STATE(3970)] = 162525, - [SMALL_STATE(3971)] = 162565, - [SMALL_STATE(3972)] = 162601, - [SMALL_STATE(3973)] = 162637, - [SMALL_STATE(3974)] = 162669, - [SMALL_STATE(3975)] = 162703, - [SMALL_STATE(3976)] = 162735, - [SMALL_STATE(3977)] = 162771, - [SMALL_STATE(3978)] = 162821, - [SMALL_STATE(3979)] = 162859, - [SMALL_STATE(3980)] = 162905, - [SMALL_STATE(3981)] = 162945, - [SMALL_STATE(3982)] = 162979, - [SMALL_STATE(3983)] = 163014, - [SMALL_STATE(3984)] = 163045, - [SMALL_STATE(3985)] = 163076, - [SMALL_STATE(3986)] = 163107, - [SMALL_STATE(3987)] = 163146, - [SMALL_STATE(3988)] = 163193, - [SMALL_STATE(3989)] = 163224, - [SMALL_STATE(3990)] = 163255, - [SMALL_STATE(3991)] = 163294, - [SMALL_STATE(3992)] = 163325, - [SMALL_STATE(3993)] = 163356, - [SMALL_STATE(3994)] = 163391, - [SMALL_STATE(3995)] = 163422, - [SMALL_STATE(3996)] = 163453, - [SMALL_STATE(3997)] = 163484, - [SMALL_STATE(3998)] = 163515, - [SMALL_STATE(3999)] = 163546, - [SMALL_STATE(4000)] = 163591, - [SMALL_STATE(4001)] = 163622, - [SMALL_STATE(4002)] = 163653, - [SMALL_STATE(4003)] = 163684, - [SMALL_STATE(4004)] = 163717, - [SMALL_STATE(4005)] = 163748, - [SMALL_STATE(4006)] = 163779, - [SMALL_STATE(4007)] = 163810, - [SMALL_STATE(4008)] = 163857, - [SMALL_STATE(4009)] = 163888, - [SMALL_STATE(4010)] = 163919, - [SMALL_STATE(4011)] = 163956, - [SMALL_STATE(4012)] = 163987, - [SMALL_STATE(4013)] = 164018, - [SMALL_STATE(4014)] = 164055, - [SMALL_STATE(4015)] = 164086, - [SMALL_STATE(4016)] = 164117, - [SMALL_STATE(4017)] = 164148, - [SMALL_STATE(4018)] = 164179, - [SMALL_STATE(4019)] = 164210, - [SMALL_STATE(4020)] = 164241, - [SMALL_STATE(4021)] = 164274, - [SMALL_STATE(4022)] = 164305, - [SMALL_STATE(4023)] = 164336, - [SMALL_STATE(4024)] = 164367, - [SMALL_STATE(4025)] = 164414, - [SMALL_STATE(4026)] = 164445, - [SMALL_STATE(4027)] = 164476, - [SMALL_STATE(4028)] = 164507, - [SMALL_STATE(4029)] = 164538, - [SMALL_STATE(4030)] = 164571, - [SMALL_STATE(4031)] = 164602, - [SMALL_STATE(4032)] = 164639, - [SMALL_STATE(4033)] = 164674, - [SMALL_STATE(4034)] = 164709, - [SMALL_STATE(4035)] = 164742, - [SMALL_STATE(4036)] = 164777, - [SMALL_STATE(4037)] = 164808, - [SMALL_STATE(4038)] = 164841, - [SMALL_STATE(4039)] = 164882, - [SMALL_STATE(4040)] = 164915, - [SMALL_STATE(4041)] = 164946, - [SMALL_STATE(4042)] = 164985, - [SMALL_STATE(4043)] = 165016, - [SMALL_STATE(4044)] = 165063, - [SMALL_STATE(4045)] = 165094, - [SMALL_STATE(4046)] = 165125, - [SMALL_STATE(4047)] = 165156, - [SMALL_STATE(4048)] = 165187, - [SMALL_STATE(4049)] = 165218, - [SMALL_STATE(4050)] = 165251, - [SMALL_STATE(4051)] = 165282, - [SMALL_STATE(4052)] = 165313, - [SMALL_STATE(4053)] = 165344, - [SMALL_STATE(4054)] = 165376, - [SMALL_STATE(4055)] = 165408, - [SMALL_STATE(4056)] = 165440, - [SMALL_STATE(4057)] = 165474, - [SMALL_STATE(4058)] = 165504, - [SMALL_STATE(4059)] = 165534, - [SMALL_STATE(4060)] = 165564, - [SMALL_STATE(4061)] = 165594, - [SMALL_STATE(4062)] = 165626, - [SMALL_STATE(4063)] = 165658, - [SMALL_STATE(4064)] = 165688, - [SMALL_STATE(4065)] = 165722, - [SMALL_STATE(4066)] = 165752, - [SMALL_STATE(4067)] = 165782, - [SMALL_STATE(4068)] = 165832, - [SMALL_STATE(4069)] = 165872, - [SMALL_STATE(4070)] = 165902, - [SMALL_STATE(4071)] = 165934, - [SMALL_STATE(4072)] = 165972, - [SMALL_STATE(4073)] = 166002, - [SMALL_STATE(4074)] = 166040, - [SMALL_STATE(4075)] = 166074, - [SMALL_STATE(4076)] = 166104, - [SMALL_STATE(4077)] = 166142, - [SMALL_STATE(4078)] = 166174, - [SMALL_STATE(4079)] = 166204, - [SMALL_STATE(4080)] = 166236, - [SMALL_STATE(4081)] = 166266, - [SMALL_STATE(4082)] = 166296, - [SMALL_STATE(4083)] = 166326, - [SMALL_STATE(4084)] = 166356, - [SMALL_STATE(4085)] = 166388, - [SMALL_STATE(4086)] = 166426, - [SMALL_STATE(4087)] = 166458, - [SMALL_STATE(4088)] = 166492, - [SMALL_STATE(4089)] = 166522, - [SMALL_STATE(4090)] = 166552, - [SMALL_STATE(4091)] = 166588, - [SMALL_STATE(4092)] = 166622, - [SMALL_STATE(4093)] = 166660, - [SMALL_STATE(4094)] = 166692, - [SMALL_STATE(4095)] = 166721, - [SMALL_STATE(4096)] = 166758, - [SMALL_STATE(4097)] = 166789, - [SMALL_STATE(4098)] = 166818, - [SMALL_STATE(4099)] = 166847, - [SMALL_STATE(4100)] = 166876, - [SMALL_STATE(4101)] = 166913, - [SMALL_STATE(4102)] = 166946, - [SMALL_STATE(4103)] = 166983, - [SMALL_STATE(4104)] = 167014, - [SMALL_STATE(4105)] = 167043, - [SMALL_STATE(4106)] = 167080, - [SMALL_STATE(4107)] = 167109, - [SMALL_STATE(4108)] = 167138, - [SMALL_STATE(4109)] = 167175, - [SMALL_STATE(4110)] = 167212, - [SMALL_STATE(4111)] = 167241, - [SMALL_STATE(4112)] = 167270, - [SMALL_STATE(4113)] = 167307, - [SMALL_STATE(4114)] = 167344, - [SMALL_STATE(4115)] = 167373, - [SMALL_STATE(4116)] = 167402, - [SMALL_STATE(4117)] = 167439, - [SMALL_STATE(4118)] = 167468, - [SMALL_STATE(4119)] = 167497, - [SMALL_STATE(4120)] = 167526, - [SMALL_STATE(4121)] = 167555, - [SMALL_STATE(4122)] = 167584, - [SMALL_STATE(4123)] = 167613, - [SMALL_STATE(4124)] = 167642, - [SMALL_STATE(4125)] = 167671, - [SMALL_STATE(4126)] = 167704, - [SMALL_STATE(4127)] = 167733, - [SMALL_STATE(4128)] = 167770, - [SMALL_STATE(4129)] = 167799, - [SMALL_STATE(4130)] = 167836, - [SMALL_STATE(4131)] = 167865, - [SMALL_STATE(4132)] = 167894, - [SMALL_STATE(4133)] = 167925, - [SMALL_STATE(4134)] = 167962, - [SMALL_STATE(4135)] = 167993, - [SMALL_STATE(4136)] = 168024, - [SMALL_STATE(4137)] = 168053, - [SMALL_STATE(4138)] = 168084, - [SMALL_STATE(4139)] = 168115, - [SMALL_STATE(4140)] = 168152, - [SMALL_STATE(4141)] = 168181, - [SMALL_STATE(4142)] = 168210, - [SMALL_STATE(4143)] = 168239, - [SMALL_STATE(4144)] = 168268, - [SMALL_STATE(4145)] = 168297, - [SMALL_STATE(4146)] = 168326, - [SMALL_STATE(4147)] = 168357, - [SMALL_STATE(4148)] = 168386, - [SMALL_STATE(4149)] = 168415, - [SMALL_STATE(4150)] = 168452, - [SMALL_STATE(4151)] = 168487, - [SMALL_STATE(4152)] = 168524, - [SMALL_STATE(4153)] = 168553, - [SMALL_STATE(4154)] = 168582, - [SMALL_STATE(4155)] = 168619, - [SMALL_STATE(4156)] = 168656, - [SMALL_STATE(4157)] = 168685, - [SMALL_STATE(4158)] = 168714, - [SMALL_STATE(4159)] = 168747, - [SMALL_STATE(4160)] = 168780, - [SMALL_STATE(4161)] = 168811, - [SMALL_STATE(4162)] = 168848, - [SMALL_STATE(4163)] = 168877, - [SMALL_STATE(4164)] = 168906, - [SMALL_STATE(4165)] = 168943, - [SMALL_STATE(4166)] = 168980, - [SMALL_STATE(4167)] = 169011, - [SMALL_STATE(4168)] = 169048, - [SMALL_STATE(4169)] = 169085, - [SMALL_STATE(4170)] = 169118, - [SMALL_STATE(4171)] = 169155, - [SMALL_STATE(4172)] = 169184, - [SMALL_STATE(4173)] = 169213, - [SMALL_STATE(4174)] = 169242, - [SMALL_STATE(4175)] = 169275, - [SMALL_STATE(4176)] = 169308, - [SMALL_STATE(4177)] = 169339, - [SMALL_STATE(4178)] = 169370, - [SMALL_STATE(4179)] = 169401, - [SMALL_STATE(4180)] = 169430, - [SMALL_STATE(4181)] = 169461, - [SMALL_STATE(4182)] = 169492, - [SMALL_STATE(4183)] = 169523, - [SMALL_STATE(4184)] = 169552, - [SMALL_STATE(4185)] = 169581, - [SMALL_STATE(4186)] = 169618, - [SMALL_STATE(4187)] = 169647, - [SMALL_STATE(4188)] = 169678, - [SMALL_STATE(4189)] = 169707, - [SMALL_STATE(4190)] = 169738, - [SMALL_STATE(4191)] = 169767, - [SMALL_STATE(4192)] = 169796, - [SMALL_STATE(4193)] = 169833, - [SMALL_STATE(4194)] = 169870, - [SMALL_STATE(4195)] = 169901, - [SMALL_STATE(4196)] = 169932, - [SMALL_STATE(4197)] = 169963, - [SMALL_STATE(4198)] = 169994, - [SMALL_STATE(4199)] = 170023, - [SMALL_STATE(4200)] = 170052, - [SMALL_STATE(4201)] = 170089, - [SMALL_STATE(4202)] = 170120, - [SMALL_STATE(4203)] = 170151, - [SMALL_STATE(4204)] = 170188, - [SMALL_STATE(4205)] = 170225, - [SMALL_STATE(4206)] = 170254, - [SMALL_STATE(4207)] = 170283, - [SMALL_STATE(4208)] = 170312, - [SMALL_STATE(4209)] = 170349, - [SMALL_STATE(4210)] = 170386, - [SMALL_STATE(4211)] = 170417, - [SMALL_STATE(4212)] = 170454, - [SMALL_STATE(4213)] = 170485, - [SMALL_STATE(4214)] = 170514, - [SMALL_STATE(4215)] = 170546, - [SMALL_STATE(4216)] = 170580, - [SMALL_STATE(4217)] = 170610, - [SMALL_STATE(4218)] = 170642, - [SMALL_STATE(4219)] = 170670, - [SMALL_STATE(4220)] = 170702, - [SMALL_STATE(4221)] = 170738, - [SMALL_STATE(4222)] = 170774, - [SMALL_STATE(4223)] = 170810, - [SMALL_STATE(4224)] = 170840, - [SMALL_STATE(4225)] = 170872, - [SMALL_STATE(4226)] = 170900, - [SMALL_STATE(4227)] = 170928, - [SMALL_STATE(4228)] = 170956, - [SMALL_STATE(4229)] = 170986, - [SMALL_STATE(4230)] = 171022, - [SMALL_STATE(4231)] = 171058, - [SMALL_STATE(4232)] = 171090, - [SMALL_STATE(4233)] = 171122, - [SMALL_STATE(4234)] = 171152, - [SMALL_STATE(4235)] = 171196, - [SMALL_STATE(4236)] = 171232, - [SMALL_STATE(4237)] = 171268, - [SMALL_STATE(4238)] = 171312, - [SMALL_STATE(4239)] = 171356, - [SMALL_STATE(4240)] = 171388, - [SMALL_STATE(4241)] = 171418, - [SMALL_STATE(4242)] = 171462, - [SMALL_STATE(4243)] = 171490, - [SMALL_STATE(4244)] = 171518, - [SMALL_STATE(4245)] = 171546, - [SMALL_STATE(4246)] = 171576, - [SMALL_STATE(4247)] = 171606, - [SMALL_STATE(4248)] = 171642, - [SMALL_STATE(4249)] = 171672, - [SMALL_STATE(4250)] = 171704, - [SMALL_STATE(4251)] = 171732, - [SMALL_STATE(4252)] = 171768, - [SMALL_STATE(4253)] = 171806, - [SMALL_STATE(4254)] = 171838, - [SMALL_STATE(4255)] = 171866, - [SMALL_STATE(4256)] = 171902, - [SMALL_STATE(4257)] = 171930, - [SMALL_STATE(4258)] = 171966, - [SMALL_STATE(4259)] = 172002, - [SMALL_STATE(4260)] = 172038, - [SMALL_STATE(4261)] = 172068, - [SMALL_STATE(4262)] = 172104, - [SMALL_STATE(4263)] = 172132, - [SMALL_STATE(4264)] = 172168, - [SMALL_STATE(4265)] = 172204, - [SMALL_STATE(4266)] = 172240, - [SMALL_STATE(4267)] = 172268, - [SMALL_STATE(4268)] = 172306, - [SMALL_STATE(4269)] = 172342, - [SMALL_STATE(4270)] = 172378, - [SMALL_STATE(4271)] = 172406, - [SMALL_STATE(4272)] = 172442, - [SMALL_STATE(4273)] = 172470, - [SMALL_STATE(4274)] = 172500, - [SMALL_STATE(4275)] = 172532, - [SMALL_STATE(4276)] = 172562, - [SMALL_STATE(4277)] = 172598, - [SMALL_STATE(4278)] = 172634, - [SMALL_STATE(4279)] = 172670, - [SMALL_STATE(4280)] = 172702, - [SMALL_STATE(4281)] = 172730, - [SMALL_STATE(4282)] = 172758, - [SMALL_STATE(4283)] = 172794, - [SMALL_STATE(4284)] = 172830, - [SMALL_STATE(4285)] = 172866, - [SMALL_STATE(4286)] = 172896, - [SMALL_STATE(4287)] = 172926, - [SMALL_STATE(4288)] = 172954, - [SMALL_STATE(4289)] = 172982, - [SMALL_STATE(4290)] = 173010, - [SMALL_STATE(4291)] = 173046, - [SMALL_STATE(4292)] = 173074, - [SMALL_STATE(4293)] = 173106, - [SMALL_STATE(4294)] = 173142, - [SMALL_STATE(4295)] = 173178, - [SMALL_STATE(4296)] = 173214, - [SMALL_STATE(4297)] = 173244, - [SMALL_STATE(4298)] = 173274, - [SMALL_STATE(4299)] = 173310, - [SMALL_STATE(4300)] = 173346, - [SMALL_STATE(4301)] = 173390, - [SMALL_STATE(4302)] = 173420, - [SMALL_STATE(4303)] = 173448, - [SMALL_STATE(4304)] = 173480, - [SMALL_STATE(4305)] = 173515, - [SMALL_STATE(4306)] = 173550, - [SMALL_STATE(4307)] = 173581, - [SMALL_STATE(4308)] = 173616, - [SMALL_STATE(4309)] = 173647, - [SMALL_STATE(4310)] = 173678, - [SMALL_STATE(4311)] = 173709, - [SMALL_STATE(4312)] = 173746, - [SMALL_STATE(4313)] = 173777, - [SMALL_STATE(4314)] = 173808, - [SMALL_STATE(4315)] = 173835, - [SMALL_STATE(4316)] = 173862, - [SMALL_STATE(4317)] = 173889, - [SMALL_STATE(4318)] = 173916, - [SMALL_STATE(4319)] = 173945, - [SMALL_STATE(4320)] = 173972, - [SMALL_STATE(4321)] = 174001, - [SMALL_STATE(4322)] = 174032, - [SMALL_STATE(4323)] = 174059, - [SMALL_STATE(4324)] = 174090, - [SMALL_STATE(4325)] = 174119, - [SMALL_STATE(4326)] = 174146, - [SMALL_STATE(4327)] = 174181, - [SMALL_STATE(4328)] = 174208, - [SMALL_STATE(4329)] = 174237, - [SMALL_STATE(4330)] = 174264, - [SMALL_STATE(4331)] = 174295, - [SMALL_STATE(4332)] = 174322, - [SMALL_STATE(4333)] = 174353, - [SMALL_STATE(4334)] = 174382, - [SMALL_STATE(4335)] = 174411, - [SMALL_STATE(4336)] = 174438, - [SMALL_STATE(4337)] = 174469, - [SMALL_STATE(4338)] = 174500, - [SMALL_STATE(4339)] = 174527, - [SMALL_STATE(4340)] = 174556, - [SMALL_STATE(4341)] = 174585, - [SMALL_STATE(4342)] = 174616, - [SMALL_STATE(4343)] = 174647, - [SMALL_STATE(4344)] = 174680, - [SMALL_STATE(4345)] = 174713, - [SMALL_STATE(4346)] = 174740, - [SMALL_STATE(4347)] = 174767, - [SMALL_STATE(4348)] = 174796, - [SMALL_STATE(4349)] = 174825, - [SMALL_STATE(4350)] = 174856, - [SMALL_STATE(4351)] = 174887, - [SMALL_STATE(4352)] = 174918, - [SMALL_STATE(4353)] = 174945, - [SMALL_STATE(4354)] = 174972, - [SMALL_STATE(4355)] = 174999, - [SMALL_STATE(4356)] = 175026, - [SMALL_STATE(4357)] = 175055, - [SMALL_STATE(4358)] = 175084, - [SMALL_STATE(4359)] = 175109, - [SMALL_STATE(4360)] = 175140, - [SMALL_STATE(4361)] = 175165, - [SMALL_STATE(4362)] = 175196, - [SMALL_STATE(4363)] = 175227, - [SMALL_STATE(4364)] = 175252, - [SMALL_STATE(4365)] = 175277, - [SMALL_STATE(4366)] = 175302, - [SMALL_STATE(4367)] = 175327, - [SMALL_STATE(4368)] = 175354, - [SMALL_STATE(4369)] = 175381, - [SMALL_STATE(4370)] = 175410, - [SMALL_STATE(4371)] = 175439, - [SMALL_STATE(4372)] = 175470, - [SMALL_STATE(4373)] = 175501, - [SMALL_STATE(4374)] = 175532, - [SMALL_STATE(4375)] = 175563, - [SMALL_STATE(4376)] = 175596, - [SMALL_STATE(4377)] = 175629, - [SMALL_STATE(4378)] = 175656, - [SMALL_STATE(4379)] = 175683, - [SMALL_STATE(4380)] = 175708, - [SMALL_STATE(4381)] = 175733, - [SMALL_STATE(4382)] = 175764, - [SMALL_STATE(4383)] = 175795, - [SMALL_STATE(4384)] = 175826, - [SMALL_STATE(4385)] = 175859, - [SMALL_STATE(4386)] = 175884, - [SMALL_STATE(4387)] = 175917, - [SMALL_STATE(4388)] = 175942, - [SMALL_STATE(4389)] = 175969, - [SMALL_STATE(4390)] = 175996, - [SMALL_STATE(4391)] = 176023, - [SMALL_STATE(4392)] = 176050, - [SMALL_STATE(4393)] = 176077, - [SMALL_STATE(4394)] = 176104, - [SMALL_STATE(4395)] = 176133, - [SMALL_STATE(4396)] = 176162, - [SMALL_STATE(4397)] = 176193, - [SMALL_STATE(4398)] = 176222, - [SMALL_STATE(4399)] = 176251, - [SMALL_STATE(4400)] = 176276, - [SMALL_STATE(4401)] = 176307, - [SMALL_STATE(4402)] = 176332, - [SMALL_STATE(4403)] = 176359, - [SMALL_STATE(4404)] = 176386, - [SMALL_STATE(4405)] = 176415, - [SMALL_STATE(4406)] = 176446, - [SMALL_STATE(4407)] = 176481, - [SMALL_STATE(4408)] = 176512, - [SMALL_STATE(4409)] = 176545, - [SMALL_STATE(4410)] = 176574, - [SMALL_STATE(4411)] = 176605, - [SMALL_STATE(4412)] = 176640, - [SMALL_STATE(4413)] = 176673, - [SMALL_STATE(4414)] = 176700, - [SMALL_STATE(4415)] = 176731, - [SMALL_STATE(4416)] = 176758, - [SMALL_STATE(4417)] = 176787, - [SMALL_STATE(4418)] = 176820, - [SMALL_STATE(4419)] = 176855, - [SMALL_STATE(4420)] = 176888, - [SMALL_STATE(4421)] = 176919, - [SMALL_STATE(4422)] = 176950, - [SMALL_STATE(4423)] = 176977, - [SMALL_STATE(4424)] = 177004, - [SMALL_STATE(4425)] = 177037, - [SMALL_STATE(4426)] = 177072, - [SMALL_STATE(4427)] = 177107, - [SMALL_STATE(4428)] = 177140, - [SMALL_STATE(4429)] = 177175, - [SMALL_STATE(4430)] = 177210, - [SMALL_STATE(4431)] = 177245, - [SMALL_STATE(4432)] = 177280, - [SMALL_STATE(4433)] = 177315, - [SMALL_STATE(4434)] = 177350, - [SMALL_STATE(4435)] = 177385, - [SMALL_STATE(4436)] = 177420, - [SMALL_STATE(4437)] = 177455, - [SMALL_STATE(4438)] = 177490, - [SMALL_STATE(4439)] = 177517, - [SMALL_STATE(4440)] = 177552, - [SMALL_STATE(4441)] = 177587, - [SMALL_STATE(4442)] = 177622, - [SMALL_STATE(4443)] = 177657, - [SMALL_STATE(4444)] = 177692, - [SMALL_STATE(4445)] = 177723, - [SMALL_STATE(4446)] = 177754, - [SMALL_STATE(4447)] = 177781, - [SMALL_STATE(4448)] = 177808, - [SMALL_STATE(4449)] = 177841, - [SMALL_STATE(4450)] = 177872, - [SMALL_STATE(4451)] = 177903, - [SMALL_STATE(4452)] = 177934, - [SMALL_STATE(4453)] = 177961, - [SMALL_STATE(4454)] = 177992, - [SMALL_STATE(4455)] = 178017, - [SMALL_STATE(4456)] = 178048, - [SMALL_STATE(4457)] = 178079, - [SMALL_STATE(4458)] = 178110, - [SMALL_STATE(4459)] = 178141, - [SMALL_STATE(4460)] = 178168, - [SMALL_STATE(4461)] = 178199, - [SMALL_STATE(4462)] = 178230, - [SMALL_STATE(4463)] = 178261, - [SMALL_STATE(4464)] = 178288, - [SMALL_STATE(4465)] = 178323, - [SMALL_STATE(4466)] = 178354, - [SMALL_STATE(4467)] = 178387, - [SMALL_STATE(4468)] = 178420, - [SMALL_STATE(4469)] = 178455, - [SMALL_STATE(4470)] = 178482, - [SMALL_STATE(4471)] = 178507, - [SMALL_STATE(4472)] = 178538, - [SMALL_STATE(4473)] = 178569, - [SMALL_STATE(4474)] = 178596, - [SMALL_STATE(4475)] = 178623, - [SMALL_STATE(4476)] = 178650, - [SMALL_STATE(4477)] = 178681, - [SMALL_STATE(4478)] = 178708, - [SMALL_STATE(4479)] = 178739, - [SMALL_STATE(4480)] = 178770, - [SMALL_STATE(4481)] = 178795, - [SMALL_STATE(4482)] = 178822, - [SMALL_STATE(4483)] = 178849, - [SMALL_STATE(4484)] = 178876, - [SMALL_STATE(4485)] = 178907, - [SMALL_STATE(4486)] = 178938, - [SMALL_STATE(4487)] = 178969, - [SMALL_STATE(4488)] = 179002, - [SMALL_STATE(4489)] = 179035, - [SMALL_STATE(4490)] = 179062, - [SMALL_STATE(4491)] = 179097, - [SMALL_STATE(4492)] = 179126, - [SMALL_STATE(4493)] = 179155, - [SMALL_STATE(4494)] = 179182, - [SMALL_STATE(4495)] = 179211, - [SMALL_STATE(4496)] = 179244, - [SMALL_STATE(4497)] = 179271, - [SMALL_STATE(4498)] = 179304, - [SMALL_STATE(4499)] = 179337, - [SMALL_STATE(4500)] = 179372, - [SMALL_STATE(4501)] = 179407, - [SMALL_STATE(4502)] = 179434, - [SMALL_STATE(4503)] = 179469, - [SMALL_STATE(4504)] = 179500, - [SMALL_STATE(4505)] = 179527, - [SMALL_STATE(4506)] = 179558, - [SMALL_STATE(4507)] = 179589, - [SMALL_STATE(4508)] = 179616, - [SMALL_STATE(4509)] = 179643, - [SMALL_STATE(4510)] = 179670, - [SMALL_STATE(4511)] = 179703, - [SMALL_STATE(4512)] = 179734, - [SMALL_STATE(4513)] = 179758, - [SMALL_STATE(4514)] = 179784, - [SMALL_STATE(4515)] = 179812, - [SMALL_STATE(4516)] = 179844, - [SMALL_STATE(4517)] = 179870, - [SMALL_STATE(4518)] = 179900, - [SMALL_STATE(4519)] = 179926, - [SMALL_STATE(4520)] = 179956, - [SMALL_STATE(4521)] = 179982, - [SMALL_STATE(4522)] = 180006, - [SMALL_STATE(4523)] = 180036, - [SMALL_STATE(4524)] = 180064, - [SMALL_STATE(4525)] = 180088, - [SMALL_STATE(4526)] = 180118, - [SMALL_STATE(4527)] = 180142, - [SMALL_STATE(4528)] = 180172, - [SMALL_STATE(4529)] = 180198, - [SMALL_STATE(4530)] = 180228, - [SMALL_STATE(4531)] = 180252, - [SMALL_STATE(4532)] = 180282, - [SMALL_STATE(4533)] = 180310, - [SMALL_STATE(4534)] = 180334, - [SMALL_STATE(4535)] = 180386, - [SMALL_STATE(4536)] = 180410, - [SMALL_STATE(4537)] = 180440, - [SMALL_STATE(4538)] = 180470, - [SMALL_STATE(4539)] = 180496, - [SMALL_STATE(4540)] = 180526, - [SMALL_STATE(4541)] = 180554, - [SMALL_STATE(4542)] = 180598, - [SMALL_STATE(4543)] = 180628, - [SMALL_STATE(4544)] = 180680, - [SMALL_STATE(4545)] = 180732, - [SMALL_STATE(4546)] = 180760, - [SMALL_STATE(4547)] = 180784, - [SMALL_STATE(4548)] = 180808, - [SMALL_STATE(4549)] = 180834, - [SMALL_STATE(4550)] = 180864, - [SMALL_STATE(4551)] = 180894, - [SMALL_STATE(4552)] = 180924, - [SMALL_STATE(4553)] = 180976, - [SMALL_STATE(4554)] = 181000, - [SMALL_STATE(4555)] = 181030, - [SMALL_STATE(4556)] = 181056, - [SMALL_STATE(4557)] = 181086, - [SMALL_STATE(4558)] = 181114, - [SMALL_STATE(4559)] = 181138, - [SMALL_STATE(4560)] = 181162, - [SMALL_STATE(4561)] = 181192, - [SMALL_STATE(4562)] = 181222, - [SMALL_STATE(4563)] = 181252, - [SMALL_STATE(4564)] = 181276, - [SMALL_STATE(4565)] = 181304, - [SMALL_STATE(4566)] = 181330, - [SMALL_STATE(4567)] = 181356, - [SMALL_STATE(4568)] = 181380, - [SMALL_STATE(4569)] = 181404, - [SMALL_STATE(4570)] = 181430, - [SMALL_STATE(4571)] = 181456, - [SMALL_STATE(4572)] = 181484, - [SMALL_STATE(4573)] = 181512, - [SMALL_STATE(4574)] = 181542, - [SMALL_STATE(4575)] = 181568, - [SMALL_STATE(4576)] = 181598, - [SMALL_STATE(4577)] = 181628, - [SMALL_STATE(4578)] = 181652, - [SMALL_STATE(4579)] = 181682, - [SMALL_STATE(4580)] = 181712, - [SMALL_STATE(4581)] = 181764, - [SMALL_STATE(4582)] = 181816, - [SMALL_STATE(4583)] = 181846, - [SMALL_STATE(4584)] = 181876, - [SMALL_STATE(4585)] = 181902, - [SMALL_STATE(4586)] = 181928, - [SMALL_STATE(4587)] = 181974, - [SMALL_STATE(4588)] = 181998, - [SMALL_STATE(4589)] = 182022, - [SMALL_STATE(4590)] = 182066, - [SMALL_STATE(4591)] = 182090, - [SMALL_STATE(4592)] = 182122, - [SMALL_STATE(4593)] = 182174, - [SMALL_STATE(4594)] = 182204, - [SMALL_STATE(4595)] = 182234, - [SMALL_STATE(4596)] = 182264, - [SMALL_STATE(4597)] = 182288, - [SMALL_STATE(4598)] = 182316, - [SMALL_STATE(4599)] = 182340, - [SMALL_STATE(4600)] = 182364, - [SMALL_STATE(4601)] = 182392, - [SMALL_STATE(4602)] = 182420, - [SMALL_STATE(4603)] = 182446, - [SMALL_STATE(4604)] = 182472, - [SMALL_STATE(4605)] = 182496, - [SMALL_STATE(4606)] = 182520, - [SMALL_STATE(4607)] = 182564, - [SMALL_STATE(4608)] = 182594, - [SMALL_STATE(4609)] = 182622, - [SMALL_STATE(4610)] = 182652, - [SMALL_STATE(4611)] = 182676, - [SMALL_STATE(4612)] = 182702, - [SMALL_STATE(4613)] = 182734, - [SMALL_STATE(4614)] = 182762, - [SMALL_STATE(4615)] = 182790, - [SMALL_STATE(4616)] = 182820, - [SMALL_STATE(4617)] = 182844, - [SMALL_STATE(4618)] = 182868, - [SMALL_STATE(4619)] = 182892, - [SMALL_STATE(4620)] = 182916, - [SMALL_STATE(4621)] = 182942, - [SMALL_STATE(4622)] = 182994, - [SMALL_STATE(4623)] = 183024, - [SMALL_STATE(4624)] = 183076, - [SMALL_STATE(4625)] = 183102, - [SMALL_STATE(4626)] = 183154, - [SMALL_STATE(4627)] = 183180, - [SMALL_STATE(4628)] = 183224, - [SMALL_STATE(4629)] = 183252, - [SMALL_STATE(4630)] = 183280, - [SMALL_STATE(4631)] = 183304, - [SMALL_STATE(4632)] = 183328, - [SMALL_STATE(4633)] = 183354, - [SMALL_STATE(4634)] = 183378, - [SMALL_STATE(4635)] = 183404, - [SMALL_STATE(4636)] = 183432, - [SMALL_STATE(4637)] = 183457, - [SMALL_STATE(4638)] = 183484, - [SMALL_STATE(4639)] = 183507, - [SMALL_STATE(4640)] = 183536, - [SMALL_STATE(4641)] = 183561, - [SMALL_STATE(4642)] = 183586, - [SMALL_STATE(4643)] = 183611, - [SMALL_STATE(4644)] = 183640, - [SMALL_STATE(4645)] = 183669, - [SMALL_STATE(4646)] = 183694, - [SMALL_STATE(4647)] = 183719, - [SMALL_STATE(4648)] = 183744, - [SMALL_STATE(4649)] = 183769, - [SMALL_STATE(4650)] = 183798, - [SMALL_STATE(4651)] = 183823, - [SMALL_STATE(4652)] = 183850, - [SMALL_STATE(4653)] = 183877, - [SMALL_STATE(4654)] = 183906, - [SMALL_STATE(4655)] = 183935, - [SMALL_STATE(4656)] = 183964, - [SMALL_STATE(4657)] = 183993, - [SMALL_STATE(4658)] = 184018, - [SMALL_STATE(4659)] = 184047, - [SMALL_STATE(4660)] = 184072, - [SMALL_STATE(4661)] = 184101, - [SMALL_STATE(4662)] = 184130, - [SMALL_STATE(4663)] = 184155, - [SMALL_STATE(4664)] = 184184, - [SMALL_STATE(4665)] = 184207, - [SMALL_STATE(4666)] = 184232, - [SMALL_STATE(4667)] = 184257, - [SMALL_STATE(4668)] = 184282, - [SMALL_STATE(4669)] = 184307, - [SMALL_STATE(4670)] = 184332, - [SMALL_STATE(4671)] = 184361, - [SMALL_STATE(4672)] = 184386, - [SMALL_STATE(4673)] = 184409, - [SMALL_STATE(4674)] = 184434, - [SMALL_STATE(4675)] = 184461, - [SMALL_STATE(4676)] = 184488, - [SMALL_STATE(4677)] = 184513, - [SMALL_STATE(4678)] = 184538, - [SMALL_STATE(4679)] = 184563, - [SMALL_STATE(4680)] = 184588, - [SMALL_STATE(4681)] = 184613, - [SMALL_STATE(4682)] = 184638, - [SMALL_STATE(4683)] = 184663, - [SMALL_STATE(4684)] = 184688, - [SMALL_STATE(4685)] = 184733, - [SMALL_STATE(4686)] = 184758, - [SMALL_STATE(4687)] = 184783, - [SMALL_STATE(4688)] = 184808, - [SMALL_STATE(4689)] = 184837, - [SMALL_STATE(4690)] = 184862, - [SMALL_STATE(4691)] = 184885, - [SMALL_STATE(4692)] = 184914, - [SMALL_STATE(4693)] = 184939, - [SMALL_STATE(4694)] = 184964, - [SMALL_STATE(4695)] = 184993, - [SMALL_STATE(4696)] = 185018, - [SMALL_STATE(4697)] = 185043, - [SMALL_STATE(4698)] = 185072, - [SMALL_STATE(4699)] = 185103, - [SMALL_STATE(4700)] = 185132, - [SMALL_STATE(4701)] = 185157, - [SMALL_STATE(4702)] = 185188, - [SMALL_STATE(4703)] = 185215, - [SMALL_STATE(4704)] = 185240, - [SMALL_STATE(4705)] = 185265, - [SMALL_STATE(4706)] = 185294, - [SMALL_STATE(4707)] = 185319, - [SMALL_STATE(4708)] = 185344, - [SMALL_STATE(4709)] = 185369, - [SMALL_STATE(4710)] = 185398, - [SMALL_STATE(4711)] = 185423, - [SMALL_STATE(4712)] = 185448, - [SMALL_STATE(4713)] = 185477, - [SMALL_STATE(4714)] = 185522, - [SMALL_STATE(4715)] = 185551, - [SMALL_STATE(4716)] = 185576, - [SMALL_STATE(4717)] = 185601, - [SMALL_STATE(4718)] = 185628, - [SMALL_STATE(4719)] = 185655, - [SMALL_STATE(4720)] = 185682, - [SMALL_STATE(4721)] = 185707, - [SMALL_STATE(4722)] = 185738, - [SMALL_STATE(4723)] = 185763, - [SMALL_STATE(4724)] = 185788, - [SMALL_STATE(4725)] = 185815, - [SMALL_STATE(4726)] = 185840, - [SMALL_STATE(4727)] = 185865, - [SMALL_STATE(4728)] = 185890, - [SMALL_STATE(4729)] = 185915, - [SMALL_STATE(4730)] = 185944, - [SMALL_STATE(4731)] = 185969, - [SMALL_STATE(4732)] = 185992, - [SMALL_STATE(4733)] = 186017, - [SMALL_STATE(4734)] = 186042, - [SMALL_STATE(4735)] = 186071, - [SMALL_STATE(4736)] = 186100, - [SMALL_STATE(4737)] = 186125, - [SMALL_STATE(4738)] = 186150, - [SMALL_STATE(4739)] = 186179, - [SMALL_STATE(4740)] = 186208, - [SMALL_STATE(4741)] = 186233, - [SMALL_STATE(4742)] = 186262, - [SMALL_STATE(4743)] = 186287, - [SMALL_STATE(4744)] = 186312, - [SMALL_STATE(4745)] = 186337, - [SMALL_STATE(4746)] = 186362, - [SMALL_STATE(4747)] = 186387, - [SMALL_STATE(4748)] = 186412, - [SMALL_STATE(4749)] = 186437, - [SMALL_STATE(4750)] = 186466, - [SMALL_STATE(4751)] = 186491, - [SMALL_STATE(4752)] = 186516, - [SMALL_STATE(4753)] = 186545, - [SMALL_STATE(4754)] = 186574, - [SMALL_STATE(4755)] = 186603, - [SMALL_STATE(4756)] = 186632, - [SMALL_STATE(4757)] = 186661, - [SMALL_STATE(4758)] = 186690, - [SMALL_STATE(4759)] = 186719, - [SMALL_STATE(4760)] = 186744, - [SMALL_STATE(4761)] = 186769, - [SMALL_STATE(4762)] = 186794, - [SMALL_STATE(4763)] = 186819, - [SMALL_STATE(4764)] = 186844, - [SMALL_STATE(4765)] = 186869, - [SMALL_STATE(4766)] = 186896, - [SMALL_STATE(4767)] = 186925, - [SMALL_STATE(4768)] = 186950, - [SMALL_STATE(4769)] = 186975, - [SMALL_STATE(4770)] = 187000, - [SMALL_STATE(4771)] = 187029, - [SMALL_STATE(4772)] = 187058, - [SMALL_STATE(4773)] = 187083, - [SMALL_STATE(4774)] = 187108, - [SMALL_STATE(4775)] = 187133, - [SMALL_STATE(4776)] = 187164, - [SMALL_STATE(4777)] = 187189, - [SMALL_STATE(4778)] = 187218, - [SMALL_STATE(4779)] = 187245, - [SMALL_STATE(4780)] = 187274, - [SMALL_STATE(4781)] = 187299, - [SMALL_STATE(4782)] = 187324, - [SMALL_STATE(4783)] = 187349, - [SMALL_STATE(4784)] = 187374, - [SMALL_STATE(4785)] = 187399, - [SMALL_STATE(4786)] = 187424, - [SMALL_STATE(4787)] = 187453, - [SMALL_STATE(4788)] = 187482, - [SMALL_STATE(4789)] = 187511, - [SMALL_STATE(4790)] = 187536, - [SMALL_STATE(4791)] = 187561, - [SMALL_STATE(4792)] = 187590, - [SMALL_STATE(4793)] = 187615, - [SMALL_STATE(4794)] = 187640, - [SMALL_STATE(4795)] = 187669, - [SMALL_STATE(4796)] = 187694, - [SMALL_STATE(4797)] = 187719, - [SMALL_STATE(4798)] = 187744, - [SMALL_STATE(4799)] = 187773, - [SMALL_STATE(4800)] = 187798, - [SMALL_STATE(4801)] = 187823, - [SMALL_STATE(4802)] = 187852, - [SMALL_STATE(4803)] = 187877, - [SMALL_STATE(4804)] = 187906, - [SMALL_STATE(4805)] = 187931, - [SMALL_STATE(4806)] = 187956, - [SMALL_STATE(4807)] = 187981, - [SMALL_STATE(4808)] = 188022, - [SMALL_STATE(4809)] = 188047, - [SMALL_STATE(4810)] = 188074, - [SMALL_STATE(4811)] = 188096, - [SMALL_STATE(4812)] = 188120, - [SMALL_STATE(4813)] = 188146, - [SMALL_STATE(4814)] = 188170, - [SMALL_STATE(4815)] = 188194, - [SMALL_STATE(4816)] = 188218, - [SMALL_STATE(4817)] = 188242, - [SMALL_STATE(4818)] = 188266, - [SMALL_STATE(4819)] = 188290, - [SMALL_STATE(4820)] = 188314, - [SMALL_STATE(4821)] = 188338, - [SMALL_STATE(4822)] = 188362, - [SMALL_STATE(4823)] = 188386, - [SMALL_STATE(4824)] = 188410, - [SMALL_STATE(4825)] = 188434, - [SMALL_STATE(4826)] = 188458, - [SMALL_STATE(4827)] = 188482, - [SMALL_STATE(4828)] = 188506, - [SMALL_STATE(4829)] = 188530, - [SMALL_STATE(4830)] = 188570, - [SMALL_STATE(4831)] = 188614, - [SMALL_STATE(4832)] = 188638, - [SMALL_STATE(4833)] = 188662, - [SMALL_STATE(4834)] = 188686, - [SMALL_STATE(4835)] = 188710, - [SMALL_STATE(4836)] = 188734, - [SMALL_STATE(4837)] = 188758, - [SMALL_STATE(4838)] = 188782, - [SMALL_STATE(4839)] = 188806, - [SMALL_STATE(4840)] = 188830, - [SMALL_STATE(4841)] = 188852, - [SMALL_STATE(4842)] = 188876, - [SMALL_STATE(4843)] = 188900, - [SMALL_STATE(4844)] = 188924, - [SMALL_STATE(4845)] = 188948, - [SMALL_STATE(4846)] = 188972, - [SMALL_STATE(4847)] = 188996, - [SMALL_STATE(4848)] = 189034, - [SMALL_STATE(4849)] = 189058, - [SMALL_STATE(4850)] = 189082, - [SMALL_STATE(4851)] = 189106, - [SMALL_STATE(4852)] = 189132, - [SMALL_STATE(4853)] = 189154, - [SMALL_STATE(4854)] = 189178, - [SMALL_STATE(4855)] = 189200, - [SMALL_STATE(4856)] = 189224, - [SMALL_STATE(4857)] = 189250, - [SMALL_STATE(4858)] = 189276, - [SMALL_STATE(4859)] = 189300, - [SMALL_STATE(4860)] = 189342, - [SMALL_STATE(4861)] = 189366, - [SMALL_STATE(4862)] = 189390, - [SMALL_STATE(4863)] = 189414, - [SMALL_STATE(4864)] = 189438, - [SMALL_STATE(4865)] = 189462, - [SMALL_STATE(4866)] = 189486, - [SMALL_STATE(4867)] = 189510, - [SMALL_STATE(4868)] = 189536, - [SMALL_STATE(4869)] = 189560, - [SMALL_STATE(4870)] = 189584, - [SMALL_STATE(4871)] = 189626, - [SMALL_STATE(4872)] = 189650, - [SMALL_STATE(4873)] = 189674, - [SMALL_STATE(4874)] = 189698, - [SMALL_STATE(4875)] = 189744, - [SMALL_STATE(4876)] = 189768, - [SMALL_STATE(4877)] = 189790, - [SMALL_STATE(4878)] = 189816, - [SMALL_STATE(4879)] = 189840, - [SMALL_STATE(4880)] = 189864, - [SMALL_STATE(4881)] = 189888, - [SMALL_STATE(4882)] = 189930, - [SMALL_STATE(4883)] = 189954, - [SMALL_STATE(4884)] = 189978, - [SMALL_STATE(4885)] = 190002, - [SMALL_STATE(4886)] = 190026, - [SMALL_STATE(4887)] = 190050, - [SMALL_STATE(4888)] = 190096, - [SMALL_STATE(4889)] = 190118, - [SMALL_STATE(4890)] = 190142, - [SMALL_STATE(4891)] = 190166, - [SMALL_STATE(4892)] = 190190, - [SMALL_STATE(4893)] = 190214, - [SMALL_STATE(4894)] = 190238, - [SMALL_STATE(4895)] = 190262, - [SMALL_STATE(4896)] = 190308, - [SMALL_STATE(4897)] = 190332, - [SMALL_STATE(4898)] = 190370, - [SMALL_STATE(4899)] = 190394, - [SMALL_STATE(4900)] = 190416, - [SMALL_STATE(4901)] = 190440, - [SMALL_STATE(4902)] = 190464, - [SMALL_STATE(4903)] = 190486, - [SMALL_STATE(4904)] = 190510, - [SMALL_STATE(4905)] = 190532, - [SMALL_STATE(4906)] = 190556, - [SMALL_STATE(4907)] = 190578, - [SMALL_STATE(4908)] = 190604, - [SMALL_STATE(4909)] = 190628, - [SMALL_STATE(4910)] = 190652, - [SMALL_STATE(4911)] = 190676, - [SMALL_STATE(4912)] = 190700, - [SMALL_STATE(4913)] = 190722, - [SMALL_STATE(4914)] = 190746, - [SMALL_STATE(4915)] = 190770, - [SMALL_STATE(4916)] = 190794, - [SMALL_STATE(4917)] = 190818, - [SMALL_STATE(4918)] = 190852, - [SMALL_STATE(4919)] = 190876, - [SMALL_STATE(4920)] = 190898, - [SMALL_STATE(4921)] = 190922, - [SMALL_STATE(4922)] = 190946, - [SMALL_STATE(4923)] = 190970, - [SMALL_STATE(4924)] = 190992, - [SMALL_STATE(4925)] = 191014, - [SMALL_STATE(4926)] = 191060, - [SMALL_STATE(4927)] = 191084, - [SMALL_STATE(4928)] = 191108, - [SMALL_STATE(4929)] = 191132, - [SMALL_STATE(4930)] = 191156, - [SMALL_STATE(4931)] = 191180, - [SMALL_STATE(4932)] = 191204, - [SMALL_STATE(4933)] = 191228, - [SMALL_STATE(4934)] = 191252, - [SMALL_STATE(4935)] = 191276, - [SMALL_STATE(4936)] = 191300, - [SMALL_STATE(4937)] = 191324, - [SMALL_STATE(4938)] = 191348, - [SMALL_STATE(4939)] = 191372, - [SMALL_STATE(4940)] = 191394, - [SMALL_STATE(4941)] = 191418, - [SMALL_STATE(4942)] = 191440, - [SMALL_STATE(4943)] = 191464, - [SMALL_STATE(4944)] = 191486, - [SMALL_STATE(4945)] = 191510, - [SMALL_STATE(4946)] = 191532, - [SMALL_STATE(4947)] = 191556, - [SMALL_STATE(4948)] = 191602, - [SMALL_STATE(4949)] = 191626, - [SMALL_STATE(4950)] = 191672, - [SMALL_STATE(4951)] = 191694, - [SMALL_STATE(4952)] = 191718, - [SMALL_STATE(4953)] = 191742, - [SMALL_STATE(4954)] = 191766, - [SMALL_STATE(4955)] = 191790, - [SMALL_STATE(4956)] = 191814, - [SMALL_STATE(4957)] = 191860, - [SMALL_STATE(4958)] = 191884, - [SMALL_STATE(4959)] = 191908, - [SMALL_STATE(4960)] = 191932, - [SMALL_STATE(4961)] = 191956, - [SMALL_STATE(4962)] = 192002, - [SMALL_STATE(4963)] = 192028, - [SMALL_STATE(4964)] = 192052, - [SMALL_STATE(4965)] = 192098, - [SMALL_STATE(4966)] = 192122, - [SMALL_STATE(4967)] = 192146, - [SMALL_STATE(4968)] = 192170, - [SMALL_STATE(4969)] = 192194, - [SMALL_STATE(4970)] = 192218, - [SMALL_STATE(4971)] = 192242, - [SMALL_STATE(4972)] = 192266, - [SMALL_STATE(4973)] = 192288, - [SMALL_STATE(4974)] = 192312, - [SMALL_STATE(4975)] = 192336, - [SMALL_STATE(4976)] = 192360, - [SMALL_STATE(4977)] = 192382, - [SMALL_STATE(4978)] = 192406, - [SMALL_STATE(4979)] = 192430, - [SMALL_STATE(4980)] = 192452, - [SMALL_STATE(4981)] = 192476, - [SMALL_STATE(4982)] = 192498, - [SMALL_STATE(4983)] = 192522, - [SMALL_STATE(4984)] = 192546, - [SMALL_STATE(4985)] = 192570, - [SMALL_STATE(4986)] = 192594, - [SMALL_STATE(4987)] = 192640, - [SMALL_STATE(4988)] = 192684, - [SMALL_STATE(4989)] = 192708, - [SMALL_STATE(4990)] = 192746, - [SMALL_STATE(4991)] = 192770, - [SMALL_STATE(4992)] = 192794, - [SMALL_STATE(4993)] = 192818, - [SMALL_STATE(4994)] = 192842, - [SMALL_STATE(4995)] = 192866, - [SMALL_STATE(4996)] = 192890, - [SMALL_STATE(4997)] = 192914, - [SMALL_STATE(4998)] = 192938, - [SMALL_STATE(4999)] = 192962, - [SMALL_STATE(5000)] = 192986, - [SMALL_STATE(5001)] = 193009, - [SMALL_STATE(5002)] = 193030, - [SMALL_STATE(5003)] = 193051, - [SMALL_STATE(5004)] = 193072, - [SMALL_STATE(5005)] = 193093, - [SMALL_STATE(5006)] = 193114, - [SMALL_STATE(5007)] = 193135, - [SMALL_STATE(5008)] = 193156, - [SMALL_STATE(5009)] = 193183, - [SMALL_STATE(5010)] = 193206, - [SMALL_STATE(5011)] = 193227, - [SMALL_STATE(5012)] = 193248, - [SMALL_STATE(5013)] = 193275, - [SMALL_STATE(5014)] = 193296, - [SMALL_STATE(5015)] = 193317, - [SMALL_STATE(5016)] = 193358, - [SMALL_STATE(5017)] = 193379, - [SMALL_STATE(5018)] = 193400, - [SMALL_STATE(5019)] = 193421, - [SMALL_STATE(5020)] = 193442, - [SMALL_STATE(5021)] = 193469, - [SMALL_STATE(5022)] = 193490, - [SMALL_STATE(5023)] = 193511, - [SMALL_STATE(5024)] = 193532, - [SMALL_STATE(5025)] = 193553, - [SMALL_STATE(5026)] = 193574, - [SMALL_STATE(5027)] = 193611, - [SMALL_STATE(5028)] = 193632, - [SMALL_STATE(5029)] = 193653, - [SMALL_STATE(5030)] = 193674, - [SMALL_STATE(5031)] = 193695, - [SMALL_STATE(5032)] = 193716, - [SMALL_STATE(5033)] = 193737, - [SMALL_STATE(5034)] = 193758, - [SMALL_STATE(5035)] = 193779, - [SMALL_STATE(5036)] = 193800, - [SMALL_STATE(5037)] = 193821, - [SMALL_STATE(5038)] = 193842, - [SMALL_STATE(5039)] = 193863, - [SMALL_STATE(5040)] = 193884, - [SMALL_STATE(5041)] = 193905, - [SMALL_STATE(5042)] = 193926, - [SMALL_STATE(5043)] = 193947, - [SMALL_STATE(5044)] = 193968, - [SMALL_STATE(5045)] = 193989, - [SMALL_STATE(5046)] = 194010, - [SMALL_STATE(5047)] = 194047, - [SMALL_STATE(5048)] = 194086, - [SMALL_STATE(5049)] = 194113, - [SMALL_STATE(5050)] = 194136, - [SMALL_STATE(5051)] = 194177, - [SMALL_STATE(5052)] = 194200, - [SMALL_STATE(5053)] = 194223, - [SMALL_STATE(5054)] = 194246, - [SMALL_STATE(5055)] = 194285, - [SMALL_STATE(5056)] = 194326, - [SMALL_STATE(5057)] = 194365, - [SMALL_STATE(5058)] = 194386, - [SMALL_STATE(5059)] = 194407, - [SMALL_STATE(5060)] = 194448, - [SMALL_STATE(5061)] = 194489, - [SMALL_STATE(5062)] = 194510, - [SMALL_STATE(5063)] = 194531, - [SMALL_STATE(5064)] = 194552, - [SMALL_STATE(5065)] = 194575, - [SMALL_STATE(5066)] = 194598, - [SMALL_STATE(5067)] = 194637, - [SMALL_STATE(5068)] = 194676, - [SMALL_STATE(5069)] = 194697, - [SMALL_STATE(5070)] = 194720, - [SMALL_STATE(5071)] = 194743, - [SMALL_STATE(5072)] = 194776, - [SMALL_STATE(5073)] = 194797, - [SMALL_STATE(5074)] = 194818, - [SMALL_STATE(5075)] = 194839, - [SMALL_STATE(5076)] = 194860, - [SMALL_STATE(5077)] = 194901, - [SMALL_STATE(5078)] = 194928, - [SMALL_STATE(5079)] = 194949, - [SMALL_STATE(5080)] = 194988, - [SMALL_STATE(5081)] = 195009, - [SMALL_STATE(5082)] = 195030, - [SMALL_STATE(5083)] = 195053, - [SMALL_STATE(5084)] = 195074, - [SMALL_STATE(5085)] = 195115, - [SMALL_STATE(5086)] = 195138, - [SMALL_STATE(5087)] = 195177, - [SMALL_STATE(5088)] = 195216, - [SMALL_STATE(5089)] = 195255, - [SMALL_STATE(5090)] = 195276, - [SMALL_STATE(5091)] = 195299, - [SMALL_STATE(5092)] = 195320, - [SMALL_STATE(5093)] = 195343, - [SMALL_STATE(5094)] = 195366, - [SMALL_STATE(5095)] = 195389, - [SMALL_STATE(5096)] = 195412, - [SMALL_STATE(5097)] = 195435, - [SMALL_STATE(5098)] = 195458, - [SMALL_STATE(5099)] = 195481, - [SMALL_STATE(5100)] = 195504, - [SMALL_STATE(5101)] = 195527, - [SMALL_STATE(5102)] = 195550, - [SMALL_STATE(5103)] = 195573, - [SMALL_STATE(5104)] = 195596, - [SMALL_STATE(5105)] = 195619, - [SMALL_STATE(5106)] = 195642, - [SMALL_STATE(5107)] = 195665, - [SMALL_STATE(5108)] = 195688, - [SMALL_STATE(5109)] = 195711, - [SMALL_STATE(5110)] = 195734, - [SMALL_STATE(5111)] = 195761, - [SMALL_STATE(5112)] = 195788, - [SMALL_STATE(5113)] = 195811, - [SMALL_STATE(5114)] = 195832, - [SMALL_STATE(5115)] = 195855, - [SMALL_STATE(5116)] = 195882, - [SMALL_STATE(5117)] = 195903, - [SMALL_STATE(5118)] = 195926, - [SMALL_STATE(5119)] = 195949, - [SMALL_STATE(5120)] = 195972, - [SMALL_STATE(5121)] = 195993, - [SMALL_STATE(5122)] = 196016, - [SMALL_STATE(5123)] = 196039, - [SMALL_STATE(5124)] = 196060, - [SMALL_STATE(5125)] = 196101, - [SMALL_STATE(5126)] = 196142, - [SMALL_STATE(5127)] = 196163, - [SMALL_STATE(5128)] = 196184, - [SMALL_STATE(5129)] = 196211, - [SMALL_STATE(5130)] = 196234, - [SMALL_STATE(5131)] = 196261, - [SMALL_STATE(5132)] = 196284, - [SMALL_STATE(5133)] = 196307, - [SMALL_STATE(5134)] = 196330, - [SMALL_STATE(5135)] = 196357, - [SMALL_STATE(5136)] = 196378, - [SMALL_STATE(5137)] = 196413, - [SMALL_STATE(5138)] = 196450, - [SMALL_STATE(5139)] = 196485, - [SMALL_STATE(5140)] = 196520, - [SMALL_STATE(5141)] = 196555, - [SMALL_STATE(5142)] = 196576, - [SMALL_STATE(5143)] = 196613, - [SMALL_STATE(5144)] = 196634, - [SMALL_STATE(5145)] = 196655, - [SMALL_STATE(5146)] = 196676, - [SMALL_STATE(5147)] = 196697, - [SMALL_STATE(5148)] = 196718, - [SMALL_STATE(5149)] = 196739, - [SMALL_STATE(5150)] = 196760, - [SMALL_STATE(5151)] = 196781, - [SMALL_STATE(5152)] = 196804, - [SMALL_STATE(5153)] = 196827, - [SMALL_STATE(5154)] = 196868, - [SMALL_STATE(5155)] = 196889, - [SMALL_STATE(5156)] = 196912, - [SMALL_STATE(5157)] = 196948, - [SMALL_STATE(5158)] = 196980, - [SMALL_STATE(5159)] = 197012, - [SMALL_STATE(5160)] = 197038, - [SMALL_STATE(5161)] = 197074, - [SMALL_STATE(5162)] = 197100, - [SMALL_STATE(5163)] = 197138, - [SMALL_STATE(5164)] = 197162, - [SMALL_STATE(5165)] = 197200, - [SMALL_STATE(5166)] = 197226, - [SMALL_STATE(5167)] = 197262, - [SMALL_STATE(5168)] = 197288, - [SMALL_STATE(5169)] = 197312, - [SMALL_STATE(5170)] = 197340, - [SMALL_STATE(5171)] = 197372, - [SMALL_STATE(5172)] = 197396, - [SMALL_STATE(5173)] = 197434, - [SMALL_STATE(5174)] = 197460, - [SMALL_STATE(5175)] = 197492, - [SMALL_STATE(5176)] = 197528, - [SMALL_STATE(5177)] = 197554, - [SMALL_STATE(5178)] = 197592, - [SMALL_STATE(5179)] = 197616, - [SMALL_STATE(5180)] = 197648, - [SMALL_STATE(5181)] = 197680, - [SMALL_STATE(5182)] = 197702, - [SMALL_STATE(5183)] = 197728, - [SMALL_STATE(5184)] = 197750, - [SMALL_STATE(5185)] = 197776, - [SMALL_STATE(5186)] = 197802, - [SMALL_STATE(5187)] = 197828, - [SMALL_STATE(5188)] = 197852, - [SMALL_STATE(5189)] = 197878, - [SMALL_STATE(5190)] = 197910, - [SMALL_STATE(5191)] = 197942, - [SMALL_STATE(5192)] = 197974, - [SMALL_STATE(5193)] = 197998, - [SMALL_STATE(5194)] = 198030, - [SMALL_STATE(5195)] = 198062, - [SMALL_STATE(5196)] = 198098, - [SMALL_STATE(5197)] = 198124, - [SMALL_STATE(5198)] = 198158, - [SMALL_STATE(5199)] = 198192, - [SMALL_STATE(5200)] = 198226, - [SMALL_STATE(5201)] = 198260, - [SMALL_STATE(5202)] = 198294, - [SMALL_STATE(5203)] = 198328, - [SMALL_STATE(5204)] = 198352, - [SMALL_STATE(5205)] = 198376, - [SMALL_STATE(5206)] = 198405, - [SMALL_STATE(5207)] = 198440, - [SMALL_STATE(5208)] = 198471, - [SMALL_STATE(5209)] = 198506, - [SMALL_STATE(5210)] = 198541, - [SMALL_STATE(5211)] = 198560, - [SMALL_STATE(5212)] = 198579, - [SMALL_STATE(5213)] = 198610, - [SMALL_STATE(5214)] = 198645, - [SMALL_STATE(5215)] = 198680, - [SMALL_STATE(5216)] = 198705, - [SMALL_STATE(5217)] = 198740, - [SMALL_STATE(5218)] = 198775, - [SMALL_STATE(5219)] = 198800, - [SMALL_STATE(5220)] = 198825, - [SMALL_STATE(5221)] = 198846, - [SMALL_STATE(5222)] = 198881, - [SMALL_STATE(5223)] = 198904, - [SMALL_STATE(5224)] = 198937, - [SMALL_STATE(5225)] = 198958, - [SMALL_STATE(5226)] = 198991, - [SMALL_STATE(5227)] = 199024, - [SMALL_STATE(5228)] = 199057, - [SMALL_STATE(5229)] = 199078, - [SMALL_STATE(5230)] = 199107, - [SMALL_STATE(5231)] = 199136, - [SMALL_STATE(5232)] = 199171, - [SMALL_STATE(5233)] = 199206, - [SMALL_STATE(5234)] = 199229, - [SMALL_STATE(5235)] = 199264, - [SMALL_STATE(5236)] = 199299, - [SMALL_STATE(5237)] = 199334, - [SMALL_STATE(5238)] = 199369, - [SMALL_STATE(5239)] = 199390, - [SMALL_STATE(5240)] = 199425, - [SMALL_STATE(5241)] = 199460, - [SMALL_STATE(5242)] = 199481, - [SMALL_STATE(5243)] = 199508, - [SMALL_STATE(5244)] = 199543, - [SMALL_STATE(5245)] = 199564, - [SMALL_STATE(5246)] = 199599, - [SMALL_STATE(5247)] = 199634, - [SMALL_STATE(5248)] = 199655, - [SMALL_STATE(5249)] = 199676, - [SMALL_STATE(5250)] = 199711, - [SMALL_STATE(5251)] = 199746, - [SMALL_STATE(5252)] = 199771, - [SMALL_STATE(5253)] = 199790, - [SMALL_STATE(5254)] = 199813, - [SMALL_STATE(5255)] = 199836, - [SMALL_STATE(5256)] = 199859, - [SMALL_STATE(5257)] = 199894, - [SMALL_STATE(5258)] = 199917, - [SMALL_STATE(5259)] = 199948, - [SMALL_STATE(5260)] = 199979, - [SMALL_STATE(5261)] = 200010, - [SMALL_STATE(5262)] = 200033, - [SMALL_STATE(5263)] = 200068, - [SMALL_STATE(5264)] = 200103, - [SMALL_STATE(5265)] = 200138, - [SMALL_STATE(5266)] = 200163, - [SMALL_STATE(5267)] = 200198, - [SMALL_STATE(5268)] = 200233, - [SMALL_STATE(5269)] = 200268, - [SMALL_STATE(5270)] = 200303, - [SMALL_STATE(5271)] = 200338, - [SMALL_STATE(5272)] = 200367, - [SMALL_STATE(5273)] = 200402, - [SMALL_STATE(5274)] = 200437, - [SMALL_STATE(5275)] = 200470, - [SMALL_STATE(5276)] = 200491, - [SMALL_STATE(5277)] = 200512, - [SMALL_STATE(5278)] = 200533, - [SMALL_STATE(5279)] = 200562, - [SMALL_STATE(5280)] = 200583, - [SMALL_STATE(5281)] = 200612, - [SMALL_STATE(5282)] = 200631, - [SMALL_STATE(5283)] = 200650, - [SMALL_STATE(5284)] = 200669, - [SMALL_STATE(5285)] = 200704, - [SMALL_STATE(5286)] = 200729, - [SMALL_STATE(5287)] = 200764, - [SMALL_STATE(5288)] = 200797, - [SMALL_STATE(5289)] = 200830, - [SMALL_STATE(5290)] = 200857, - [SMALL_STATE(5291)] = 200888, - [SMALL_STATE(5292)] = 200913, - [SMALL_STATE(5293)] = 200948, - [SMALL_STATE(5294)] = 200983, - [SMALL_STATE(5295)] = 201004, - [SMALL_STATE(5296)] = 201039, - [SMALL_STATE(5297)] = 201074, - [SMALL_STATE(5298)] = 201109, - [SMALL_STATE(5299)] = 201142, - [SMALL_STATE(5300)] = 201161, - [SMALL_STATE(5301)] = 201183, - [SMALL_STATE(5302)] = 201203, - [SMALL_STATE(5303)] = 201223, - [SMALL_STATE(5304)] = 201253, - [SMALL_STATE(5305)] = 201283, - [SMALL_STATE(5306)] = 201313, - [SMALL_STATE(5307)] = 201343, - [SMALL_STATE(5308)] = 201367, - [SMALL_STATE(5309)] = 201397, - [SMALL_STATE(5310)] = 201427, - [SMALL_STATE(5311)] = 201457, - [SMALL_STATE(5312)] = 201487, - [SMALL_STATE(5313)] = 201517, - [SMALL_STATE(5314)] = 201547, - [SMALL_STATE(5315)] = 201569, - [SMALL_STATE(5316)] = 201591, - [SMALL_STATE(5317)] = 201621, - [SMALL_STATE(5318)] = 201651, - [SMALL_STATE(5319)] = 201675, - [SMALL_STATE(5320)] = 201699, - [SMALL_STATE(5321)] = 201729, - [SMALL_STATE(5322)] = 201753, - [SMALL_STATE(5323)] = 201783, - [SMALL_STATE(5324)] = 201813, - [SMALL_STATE(5325)] = 201843, - [SMALL_STATE(5326)] = 201873, - [SMALL_STATE(5327)] = 201897, - [SMALL_STATE(5328)] = 201927, - [SMALL_STATE(5329)] = 201957, - [SMALL_STATE(5330)] = 201981, - [SMALL_STATE(5331)] = 202011, - [SMALL_STATE(5332)] = 202041, - [SMALL_STATE(5333)] = 202063, - [SMALL_STATE(5334)] = 202093, - [SMALL_STATE(5335)] = 202123, - [SMALL_STATE(5336)] = 202153, - [SMALL_STATE(5337)] = 202183, - [SMALL_STATE(5338)] = 202213, - [SMALL_STATE(5339)] = 202243, - [SMALL_STATE(5340)] = 202263, - [SMALL_STATE(5341)] = 202287, - [SMALL_STATE(5342)] = 202307, - [SMALL_STATE(5343)] = 202329, - [SMALL_STATE(5344)] = 202361, - [SMALL_STATE(5345)] = 202391, - [SMALL_STATE(5346)] = 202421, - [SMALL_STATE(5347)] = 202441, - [SMALL_STATE(5348)] = 202461, - [SMALL_STATE(5349)] = 202491, - [SMALL_STATE(5350)] = 202511, - [SMALL_STATE(5351)] = 202541, - [SMALL_STATE(5352)] = 202571, - [SMALL_STATE(5353)] = 202601, - [SMALL_STATE(5354)] = 202623, - [SMALL_STATE(5355)] = 202643, - [SMALL_STATE(5356)] = 202663, - [SMALL_STATE(5357)] = 202693, - [SMALL_STATE(5358)] = 202723, - [SMALL_STATE(5359)] = 202753, - [SMALL_STATE(5360)] = 202773, - [SMALL_STATE(5361)] = 202795, - [SMALL_STATE(5362)] = 202825, - [SMALL_STATE(5363)] = 202853, - [SMALL_STATE(5364)] = 202875, - [SMALL_STATE(5365)] = 202905, - [SMALL_STATE(5366)] = 202925, - [SMALL_STATE(5367)] = 202945, - [SMALL_STATE(5368)] = 202975, - [SMALL_STATE(5369)] = 203005, - [SMALL_STATE(5370)] = 203035, - [SMALL_STATE(5371)] = 203065, - [SMALL_STATE(5372)] = 203095, - [SMALL_STATE(5373)] = 203125, - [SMALL_STATE(5374)] = 203151, - [SMALL_STATE(5375)] = 203175, - [SMALL_STATE(5376)] = 203195, - [SMALL_STATE(5377)] = 203219, - [SMALL_STATE(5378)] = 203243, - [SMALL_STATE(5379)] = 203273, - [SMALL_STATE(5380)] = 203303, - [SMALL_STATE(5381)] = 203333, - [SMALL_STATE(5382)] = 203363, - [SMALL_STATE(5383)] = 203393, - [SMALL_STATE(5384)] = 203417, - [SMALL_STATE(5385)] = 203447, - [SMALL_STATE(5386)] = 203467, - [SMALL_STATE(5387)] = 203497, - [SMALL_STATE(5388)] = 203529, - [SMALL_STATE(5389)] = 203549, - [SMALL_STATE(5390)] = 203568, - [SMALL_STATE(5391)] = 203587, - [SMALL_STATE(5392)] = 203616, - [SMALL_STATE(5393)] = 203637, - [SMALL_STATE(5394)] = 203666, - [SMALL_STATE(5395)] = 203689, - [SMALL_STATE(5396)] = 203710, - [SMALL_STATE(5397)] = 203739, - [SMALL_STATE(5398)] = 203760, - [SMALL_STATE(5399)] = 203789, - [SMALL_STATE(5400)] = 203812, - [SMALL_STATE(5401)] = 203837, - [SMALL_STATE(5402)] = 203856, - [SMALL_STATE(5403)] = 203875, - [SMALL_STATE(5404)] = 203894, - [SMALL_STATE(5405)] = 203913, - [SMALL_STATE(5406)] = 203942, - [SMALL_STATE(5407)] = 203969, - [SMALL_STATE(5408)] = 203988, - [SMALL_STATE(5409)] = 204009, - [SMALL_STATE(5410)] = 204028, - [SMALL_STATE(5411)] = 204047, - [SMALL_STATE(5412)] = 204066, - [SMALL_STATE(5413)] = 204091, - [SMALL_STATE(5414)] = 204110, - [SMALL_STATE(5415)] = 204131, - [SMALL_STATE(5416)] = 204154, - [SMALL_STATE(5417)] = 204175, - [SMALL_STATE(5418)] = 204196, - [SMALL_STATE(5419)] = 204217, - [SMALL_STATE(5420)] = 204242, - [SMALL_STATE(5421)] = 204267, - [SMALL_STATE(5422)] = 204292, - [SMALL_STATE(5423)] = 204317, - [SMALL_STATE(5424)] = 204342, - [SMALL_STATE(5425)] = 204367, - [SMALL_STATE(5426)] = 204392, - [SMALL_STATE(5427)] = 204417, - [SMALL_STATE(5428)] = 204442, - [SMALL_STATE(5429)] = 204467, - [SMALL_STATE(5430)] = 204492, - [SMALL_STATE(5431)] = 204517, - [SMALL_STATE(5432)] = 204542, - [SMALL_STATE(5433)] = 204567, - [SMALL_STATE(5434)] = 204592, - [SMALL_STATE(5435)] = 204617, - [SMALL_STATE(5436)] = 204642, - [SMALL_STATE(5437)] = 204667, - [SMALL_STATE(5438)] = 204686, - [SMALL_STATE(5439)] = 204713, - [SMALL_STATE(5440)] = 204738, - [SMALL_STATE(5441)] = 204757, - [SMALL_STATE(5442)] = 204782, - [SMALL_STATE(5443)] = 204809, - [SMALL_STATE(5444)] = 204836, - [SMALL_STATE(5445)] = 204863, - [SMALL_STATE(5446)] = 204890, - [SMALL_STATE(5447)] = 204917, - [SMALL_STATE(5448)] = 204944, - [SMALL_STATE(5449)] = 204971, - [SMALL_STATE(5450)] = 204998, - [SMALL_STATE(5451)] = 205025, - [SMALL_STATE(5452)] = 205052, - [SMALL_STATE(5453)] = 205079, - [SMALL_STATE(5454)] = 205106, - [SMALL_STATE(5455)] = 205133, - [SMALL_STATE(5456)] = 205160, - [SMALL_STATE(5457)] = 205189, - [SMALL_STATE(5458)] = 205216, - [SMALL_STATE(5459)] = 205243, - [SMALL_STATE(5460)] = 205270, - [SMALL_STATE(5461)] = 205297, - [SMALL_STATE(5462)] = 205324, - [SMALL_STATE(5463)] = 205351, - [SMALL_STATE(5464)] = 205378, - [SMALL_STATE(5465)] = 205399, - [SMALL_STATE(5466)] = 205426, - [SMALL_STATE(5467)] = 205453, - [SMALL_STATE(5468)] = 205480, - [SMALL_STATE(5469)] = 205507, - [SMALL_STATE(5470)] = 205532, - [SMALL_STATE(5471)] = 205561, - [SMALL_STATE(5472)] = 205580, - [SMALL_STATE(5473)] = 205607, - [SMALL_STATE(5474)] = 205628, - [SMALL_STATE(5475)] = 205647, - [SMALL_STATE(5476)] = 205670, - [SMALL_STATE(5477)] = 205691, - [SMALL_STATE(5478)] = 205714, - [SMALL_STATE(5479)] = 205733, - [SMALL_STATE(5480)] = 205754, - [SMALL_STATE(5481)] = 205783, - [SMALL_STATE(5482)] = 205802, - [SMALL_STATE(5483)] = 205821, - [SMALL_STATE(5484)] = 205842, - [SMALL_STATE(5485)] = 205869, - [SMALL_STATE(5486)] = 205888, - [SMALL_STATE(5487)] = 205915, - [SMALL_STATE(5488)] = 205934, - [SMALL_STATE(5489)] = 205961, - [SMALL_STATE(5490)] = 205988, - [SMALL_STATE(5491)] = 206007, - [SMALL_STATE(5492)] = 206034, - [SMALL_STATE(5493)] = 206061, - [SMALL_STATE(5494)] = 206088, - [SMALL_STATE(5495)] = 206115, - [SMALL_STATE(5496)] = 206134, - [SMALL_STATE(5497)] = 206153, - [SMALL_STATE(5498)] = 206180, - [SMALL_STATE(5499)] = 206207, - [SMALL_STATE(5500)] = 206234, - [SMALL_STATE(5501)] = 206261, - [SMALL_STATE(5502)] = 206288, - [SMALL_STATE(5503)] = 206315, - [SMALL_STATE(5504)] = 206342, - [SMALL_STATE(5505)] = 206361, - [SMALL_STATE(5506)] = 206388, - [SMALL_STATE(5507)] = 206415, - [SMALL_STATE(5508)] = 206442, - [SMALL_STATE(5509)] = 206463, - [SMALL_STATE(5510)] = 206490, - [SMALL_STATE(5511)] = 206511, - [SMALL_STATE(5512)] = 206532, - [SMALL_STATE(5513)] = 206551, - [SMALL_STATE(5514)] = 206570, - [SMALL_STATE(5515)] = 206591, - [SMALL_STATE(5516)] = 206618, - [SMALL_STATE(5517)] = 206643, - [SMALL_STATE(5518)] = 206670, - [SMALL_STATE(5519)] = 206693, - [SMALL_STATE(5520)] = 206712, - [SMALL_STATE(5521)] = 206741, - [SMALL_STATE(5522)] = 206760, - [SMALL_STATE(5523)] = 206779, - [SMALL_STATE(5524)] = 206806, - [SMALL_STATE(5525)] = 206830, - [SMALL_STATE(5526)] = 206856, - [SMALL_STATE(5527)] = 206882, - [SMALL_STATE(5528)] = 206908, - [SMALL_STATE(5529)] = 206932, - [SMALL_STATE(5530)] = 206958, - [SMALL_STATE(5531)] = 206984, - [SMALL_STATE(5532)] = 207002, - [SMALL_STATE(5533)] = 207028, - [SMALL_STATE(5534)] = 207054, - [SMALL_STATE(5535)] = 207074, - [SMALL_STATE(5536)] = 207094, - [SMALL_STATE(5537)] = 207122, - [SMALL_STATE(5538)] = 207148, - [SMALL_STATE(5539)] = 207166, - [SMALL_STATE(5540)] = 207190, - [SMALL_STATE(5541)] = 207210, - [SMALL_STATE(5542)] = 207236, - [SMALL_STATE(5543)] = 207254, - [SMALL_STATE(5544)] = 207282, - [SMALL_STATE(5545)] = 207298, - [SMALL_STATE(5546)] = 207324, - [SMALL_STATE(5547)] = 207348, - [SMALL_STATE(5548)] = 207374, - [SMALL_STATE(5549)] = 207400, - [SMALL_STATE(5550)] = 207426, - [SMALL_STATE(5551)] = 207446, - [SMALL_STATE(5552)] = 207472, - [SMALL_STATE(5553)] = 207496, - [SMALL_STATE(5554)] = 207522, - [SMALL_STATE(5555)] = 207548, - [SMALL_STATE(5556)] = 207570, - [SMALL_STATE(5557)] = 207590, - [SMALL_STATE(5558)] = 207608, - [SMALL_STATE(5559)] = 207626, - [SMALL_STATE(5560)] = 207652, - [SMALL_STATE(5561)] = 207678, - [SMALL_STATE(5562)] = 207704, - [SMALL_STATE(5563)] = 207720, - [SMALL_STATE(5564)] = 207746, - [SMALL_STATE(5565)] = 207766, - [SMALL_STATE(5566)] = 207788, - [SMALL_STATE(5567)] = 207814, - [SMALL_STATE(5568)] = 207840, - [SMALL_STATE(5569)] = 207866, - [SMALL_STATE(5570)] = 207892, - [SMALL_STATE(5571)] = 207910, - [SMALL_STATE(5572)] = 207932, - [SMALL_STATE(5573)] = 207958, - [SMALL_STATE(5574)] = 207984, - [SMALL_STATE(5575)] = 208010, - [SMALL_STATE(5576)] = 208030, - [SMALL_STATE(5577)] = 208056, - [SMALL_STATE(5578)] = 208082, - [SMALL_STATE(5579)] = 208106, - [SMALL_STATE(5580)] = 208132, - [SMALL_STATE(5581)] = 208152, - [SMALL_STATE(5582)] = 208170, - [SMALL_STATE(5583)] = 208188, - [SMALL_STATE(5584)] = 208206, - [SMALL_STATE(5585)] = 208232, - [SMALL_STATE(5586)] = 208256, - [SMALL_STATE(5587)] = 208282, - [SMALL_STATE(5588)] = 208308, - [SMALL_STATE(5589)] = 208334, - [SMALL_STATE(5590)] = 208360, - [SMALL_STATE(5591)] = 208386, - [SMALL_STATE(5592)] = 208406, - [SMALL_STATE(5593)] = 208424, - [SMALL_STATE(5594)] = 208450, - [SMALL_STATE(5595)] = 208470, - [SMALL_STATE(5596)] = 208488, - [SMALL_STATE(5597)] = 208514, - [SMALL_STATE(5598)] = 208534, - [SMALL_STATE(5599)] = 208558, - [SMALL_STATE(5600)] = 208584, - [SMALL_STATE(5601)] = 208602, - [SMALL_STATE(5602)] = 208628, - [SMALL_STATE(5603)] = 208648, - [SMALL_STATE(5604)] = 208666, - [SMALL_STATE(5605)] = 208692, - [SMALL_STATE(5606)] = 208710, - [SMALL_STATE(5607)] = 208736, - [SMALL_STATE(5608)] = 208762, - [SMALL_STATE(5609)] = 208778, - [SMALL_STATE(5610)] = 208804, - [SMALL_STATE(5611)] = 208822, - [SMALL_STATE(5612)] = 208848, - [SMALL_STATE(5613)] = 208874, - [SMALL_STATE(5614)] = 208900, - [SMALL_STATE(5615)] = 208918, - [SMALL_STATE(5616)] = 208944, - [SMALL_STATE(5617)] = 208960, - [SMALL_STATE(5618)] = 208978, - [SMALL_STATE(5619)] = 208996, - [SMALL_STATE(5620)] = 209014, - [SMALL_STATE(5621)] = 209040, - [SMALL_STATE(5622)] = 209066, - [SMALL_STATE(5623)] = 209092, - [SMALL_STATE(5624)] = 209118, - [SMALL_STATE(5625)] = 209136, - [SMALL_STATE(5626)] = 209162, - [SMALL_STATE(5627)] = 209188, - [SMALL_STATE(5628)] = 209206, - [SMALL_STATE(5629)] = 209232, - [SMALL_STATE(5630)] = 209258, - [SMALL_STATE(5631)] = 209278, - [SMALL_STATE(5632)] = 209304, - [SMALL_STATE(5633)] = 209330, - [SMALL_STATE(5634)] = 209352, - [SMALL_STATE(5635)] = 209375, - [SMALL_STATE(5636)] = 209396, - [SMALL_STATE(5637)] = 209413, - [SMALL_STATE(5638)] = 209438, - [SMALL_STATE(5639)] = 209463, - [SMALL_STATE(5640)] = 209484, - [SMALL_STATE(5641)] = 209503, - [SMALL_STATE(5642)] = 209520, - [SMALL_STATE(5643)] = 209545, - [SMALL_STATE(5644)] = 209564, - [SMALL_STATE(5645)] = 209585, - [SMALL_STATE(5646)] = 209606, - [SMALL_STATE(5647)] = 209627, - [SMALL_STATE(5648)] = 209650, - [SMALL_STATE(5649)] = 209669, - [SMALL_STATE(5650)] = 209688, - [SMALL_STATE(5651)] = 209713, - [SMALL_STATE(5652)] = 209730, - [SMALL_STATE(5653)] = 209755, - [SMALL_STATE(5654)] = 209772, - [SMALL_STATE(5655)] = 209797, - [SMALL_STATE(5656)] = 209814, - [SMALL_STATE(5657)] = 209835, - [SMALL_STATE(5658)] = 209860, - [SMALL_STATE(5659)] = 209885, - [SMALL_STATE(5660)] = 209910, - [SMALL_STATE(5661)] = 209935, - [SMALL_STATE(5662)] = 209960, - [SMALL_STATE(5663)] = 209983, - [SMALL_STATE(5664)] = 210006, - [SMALL_STATE(5665)] = 210023, - [SMALL_STATE(5666)] = 210046, - [SMALL_STATE(5667)] = 210067, - [SMALL_STATE(5668)] = 210086, - [SMALL_STATE(5669)] = 210105, - [SMALL_STATE(5670)] = 210128, - [SMALL_STATE(5671)] = 210149, - [SMALL_STATE(5672)] = 210174, - [SMALL_STATE(5673)] = 210197, - [SMALL_STATE(5674)] = 210222, - [SMALL_STATE(5675)] = 210241, - [SMALL_STATE(5676)] = 210264, - [SMALL_STATE(5677)] = 210285, - [SMALL_STATE(5678)] = 210310, - [SMALL_STATE(5679)] = 210335, - [SMALL_STATE(5680)] = 210358, - [SMALL_STATE(5681)] = 210383, - [SMALL_STATE(5682)] = 210408, - [SMALL_STATE(5683)] = 210425, - [SMALL_STATE(5684)] = 210450, - [SMALL_STATE(5685)] = 210475, - [SMALL_STATE(5686)] = 210500, - [SMALL_STATE(5687)] = 210525, - [SMALL_STATE(5688)] = 210546, - [SMALL_STATE(5689)] = 210571, - [SMALL_STATE(5690)] = 210590, - [SMALL_STATE(5691)] = 210609, - [SMALL_STATE(5692)] = 210634, - [SMALL_STATE(5693)] = 210659, - [SMALL_STATE(5694)] = 210680, - [SMALL_STATE(5695)] = 210705, - [SMALL_STATE(5696)] = 210726, - [SMALL_STATE(5697)] = 210743, - [SMALL_STATE(5698)] = 210764, - [SMALL_STATE(5699)] = 210781, - [SMALL_STATE(5700)] = 210804, - [SMALL_STATE(5701)] = 210821, - [SMALL_STATE(5702)] = 210846, - [SMALL_STATE(5703)] = 210871, - [SMALL_STATE(5704)] = 210894, - [SMALL_STATE(5705)] = 210913, - [SMALL_STATE(5706)] = 210934, - [SMALL_STATE(5707)] = 210955, - [SMALL_STATE(5708)] = 210978, - [SMALL_STATE(5709)] = 211003, - [SMALL_STATE(5710)] = 211028, - [SMALL_STATE(5711)] = 211051, - [SMALL_STATE(5712)] = 211076, - [SMALL_STATE(5713)] = 211095, - [SMALL_STATE(5714)] = 211112, - [SMALL_STATE(5715)] = 211131, - [SMALL_STATE(5716)] = 211156, - [SMALL_STATE(5717)] = 211177, - [SMALL_STATE(5718)] = 211200, - [SMALL_STATE(5719)] = 211217, - [SMALL_STATE(5720)] = 211238, - [SMALL_STATE(5721)] = 211255, - [SMALL_STATE(5722)] = 211272, - [SMALL_STATE(5723)] = 211295, - [SMALL_STATE(5724)] = 211320, - [SMALL_STATE(5725)] = 211345, - [SMALL_STATE(5726)] = 211366, - [SMALL_STATE(5727)] = 211389, - [SMALL_STATE(5728)] = 211414, - [SMALL_STATE(5729)] = 211437, - [SMALL_STATE(5730)] = 211462, - [SMALL_STATE(5731)] = 211485, - [SMALL_STATE(5732)] = 211510, - [SMALL_STATE(5733)] = 211533, - [SMALL_STATE(5734)] = 211558, - [SMALL_STATE(5735)] = 211583, - [SMALL_STATE(5736)] = 211606, - [SMALL_STATE(5737)] = 211631, - [SMALL_STATE(5738)] = 211656, - [SMALL_STATE(5739)] = 211681, - [SMALL_STATE(5740)] = 211706, - [SMALL_STATE(5741)] = 211729, - [SMALL_STATE(5742)] = 211750, - [SMALL_STATE(5743)] = 211773, - [SMALL_STATE(5744)] = 211796, - [SMALL_STATE(5745)] = 211821, - [SMALL_STATE(5746)] = 211846, - [SMALL_STATE(5747)] = 211869, - [SMALL_STATE(5748)] = 211894, - [SMALL_STATE(5749)] = 211919, - [SMALL_STATE(5750)] = 211942, - [SMALL_STATE(5751)] = 211965, - [SMALL_STATE(5752)] = 211990, - [SMALL_STATE(5753)] = 212015, - [SMALL_STATE(5754)] = 212038, - [SMALL_STATE(5755)] = 212063, - [SMALL_STATE(5756)] = 212088, - [SMALL_STATE(5757)] = 212111, - [SMALL_STATE(5758)] = 212134, - [SMALL_STATE(5759)] = 212159, - [SMALL_STATE(5760)] = 212184, - [SMALL_STATE(5761)] = 212207, - [SMALL_STATE(5762)] = 212232, - [SMALL_STATE(5763)] = 212257, - [SMALL_STATE(5764)] = 212280, - [SMALL_STATE(5765)] = 212301, - [SMALL_STATE(5766)] = 212324, - [SMALL_STATE(5767)] = 212349, - [SMALL_STATE(5768)] = 212374, - [SMALL_STATE(5769)] = 212397, - [SMALL_STATE(5770)] = 212422, - [SMALL_STATE(5771)] = 212447, - [SMALL_STATE(5772)] = 212470, - [SMALL_STATE(5773)] = 212493, - [SMALL_STATE(5774)] = 212518, - [SMALL_STATE(5775)] = 212543, - [SMALL_STATE(5776)] = 212566, - [SMALL_STATE(5777)] = 212591, - [SMALL_STATE(5778)] = 212616, - [SMALL_STATE(5779)] = 212639, - [SMALL_STATE(5780)] = 212662, - [SMALL_STATE(5781)] = 212685, - [SMALL_STATE(5782)] = 212710, - [SMALL_STATE(5783)] = 212735, - [SMALL_STATE(5784)] = 212758, - [SMALL_STATE(5785)] = 212783, - [SMALL_STATE(5786)] = 212806, - [SMALL_STATE(5787)] = 212829, - [SMALL_STATE(5788)] = 212850, - [SMALL_STATE(5789)] = 212875, - [SMALL_STATE(5790)] = 212900, - [SMALL_STATE(5791)] = 212923, - [SMALL_STATE(5792)] = 212946, - [SMALL_STATE(5793)] = 212969, - [SMALL_STATE(5794)] = 212994, - [SMALL_STATE(5795)] = 213019, - [SMALL_STATE(5796)] = 213042, - [SMALL_STATE(5797)] = 213065, - [SMALL_STATE(5798)] = 213090, - [SMALL_STATE(5799)] = 213113, - [SMALL_STATE(5800)] = 213138, - [SMALL_STATE(5801)] = 213163, - [SMALL_STATE(5802)] = 213186, - [SMALL_STATE(5803)] = 213209, - [SMALL_STATE(5804)] = 213232, - [SMALL_STATE(5805)] = 213257, - [SMALL_STATE(5806)] = 213282, - [SMALL_STATE(5807)] = 213305, - [SMALL_STATE(5808)] = 213322, - [SMALL_STATE(5809)] = 213347, - [SMALL_STATE(5810)] = 213372, - [SMALL_STATE(5811)] = 213395, - [SMALL_STATE(5812)] = 213418, - [SMALL_STATE(5813)] = 213443, - [SMALL_STATE(5814)] = 213468, - [SMALL_STATE(5815)] = 213491, - [SMALL_STATE(5816)] = 213516, - [SMALL_STATE(5817)] = 213541, - [SMALL_STATE(5818)] = 213564, - [SMALL_STATE(5819)] = 213589, - [SMALL_STATE(5820)] = 213614, - [SMALL_STATE(5821)] = 213637, - [SMALL_STATE(5822)] = 213660, - [SMALL_STATE(5823)] = 213683, - [SMALL_STATE(5824)] = 213706, - [SMALL_STATE(5825)] = 213729, - [SMALL_STATE(5826)] = 213752, - [SMALL_STATE(5827)] = 213775, - [SMALL_STATE(5828)] = 213798, - [SMALL_STATE(5829)] = 213821, - [SMALL_STATE(5830)] = 213844, - [SMALL_STATE(5831)] = 213867, - [SMALL_STATE(5832)] = 213890, - [SMALL_STATE(5833)] = 213913, - [SMALL_STATE(5834)] = 213936, - [SMALL_STATE(5835)] = 213959, - [SMALL_STATE(5836)] = 213982, - [SMALL_STATE(5837)] = 214005, - [SMALL_STATE(5838)] = 214028, - [SMALL_STATE(5839)] = 214051, - [SMALL_STATE(5840)] = 214074, - [SMALL_STATE(5841)] = 214097, - [SMALL_STATE(5842)] = 214120, - [SMALL_STATE(5843)] = 214143, - [SMALL_STATE(5844)] = 214166, - [SMALL_STATE(5845)] = 214189, - [SMALL_STATE(5846)] = 214214, - [SMALL_STATE(5847)] = 214239, - [SMALL_STATE(5848)] = 214264, - [SMALL_STATE(5849)] = 214287, - [SMALL_STATE(5850)] = 214304, - [SMALL_STATE(5851)] = 214321, - [SMALL_STATE(5852)] = 214344, - [SMALL_STATE(5853)] = 214361, - [SMALL_STATE(5854)] = 214382, - [SMALL_STATE(5855)] = 214399, - [SMALL_STATE(5856)] = 214416, - [SMALL_STATE(5857)] = 214441, - [SMALL_STATE(5858)] = 214466, - [SMALL_STATE(5859)] = 214487, - [SMALL_STATE(5860)] = 214512, - [SMALL_STATE(5861)] = 214531, - [SMALL_STATE(5862)] = 214548, - [SMALL_STATE(5863)] = 214573, - [SMALL_STATE(5864)] = 214590, - [SMALL_STATE(5865)] = 214613, - [SMALL_STATE(5866)] = 214638, - [SMALL_STATE(5867)] = 214655, - [SMALL_STATE(5868)] = 214680, - [SMALL_STATE(5869)] = 214705, - [SMALL_STATE(5870)] = 214730, - [SMALL_STATE(5871)] = 214755, - [SMALL_STATE(5872)] = 214776, - [SMALL_STATE(5873)] = 214801, - [SMALL_STATE(5874)] = 214824, - [SMALL_STATE(5875)] = 214849, - [SMALL_STATE(5876)] = 214874, - [SMALL_STATE(5877)] = 214893, - [SMALL_STATE(5878)] = 214912, - [SMALL_STATE(5879)] = 214935, - [SMALL_STATE(5880)] = 214954, - [SMALL_STATE(5881)] = 214979, - [SMALL_STATE(5882)] = 214998, - [SMALL_STATE(5883)] = 215017, - [SMALL_STATE(5884)] = 215036, - [SMALL_STATE(5885)] = 215061, - [SMALL_STATE(5886)] = 215083, - [SMALL_STATE(5887)] = 215101, - [SMALL_STATE(5888)] = 215123, - [SMALL_STATE(5889)] = 215145, - [SMALL_STATE(5890)] = 215167, - [SMALL_STATE(5891)] = 215189, - [SMALL_STATE(5892)] = 215203, - [SMALL_STATE(5893)] = 215221, - [SMALL_STATE(5894)] = 215243, - [SMALL_STATE(5895)] = 215261, - [SMALL_STATE(5896)] = 215283, - [SMALL_STATE(5897)] = 215305, - [SMALL_STATE(5898)] = 215327, - [SMALL_STATE(5899)] = 215341, - [SMALL_STATE(5900)] = 215363, - [SMALL_STATE(5901)] = 215379, - [SMALL_STATE(5902)] = 215395, - [SMALL_STATE(5903)] = 215411, - [SMALL_STATE(5904)] = 215431, - [SMALL_STATE(5905)] = 215453, - [SMALL_STATE(5906)] = 215475, - [SMALL_STATE(5907)] = 215497, - [SMALL_STATE(5908)] = 215519, - [SMALL_STATE(5909)] = 215541, - [SMALL_STATE(5910)] = 215559, - [SMALL_STATE(5911)] = 215579, - [SMALL_STATE(5912)] = 215601, - [SMALL_STATE(5913)] = 215623, - [SMALL_STATE(5914)] = 215645, - [SMALL_STATE(5915)] = 215667, - [SMALL_STATE(5916)] = 215689, - [SMALL_STATE(5917)] = 215709, - [SMALL_STATE(5918)] = 215729, - [SMALL_STATE(5919)] = 215749, - [SMALL_STATE(5920)] = 215769, - [SMALL_STATE(5921)] = 215787, - [SMALL_STATE(5922)] = 215809, - [SMALL_STATE(5923)] = 215831, - [SMALL_STATE(5924)] = 215849, - [SMALL_STATE(5925)] = 215865, - [SMALL_STATE(5926)] = 215887, - [SMALL_STATE(5927)] = 215905, - [SMALL_STATE(5928)] = 215919, - [SMALL_STATE(5929)] = 215941, - [SMALL_STATE(5930)] = 215963, - [SMALL_STATE(5931)] = 215981, - [SMALL_STATE(5932)] = 216003, - [SMALL_STATE(5933)] = 216019, - [SMALL_STATE(5934)] = 216041, - [SMALL_STATE(5935)] = 216059, - [SMALL_STATE(5936)] = 216075, - [SMALL_STATE(5937)] = 216095, - [SMALL_STATE(5938)] = 216115, - [SMALL_STATE(5939)] = 216137, - [SMALL_STATE(5940)] = 216153, - [SMALL_STATE(5941)] = 216173, - [SMALL_STATE(5942)] = 216189, - [SMALL_STATE(5943)] = 216207, - [SMALL_STATE(5944)] = 216225, - [SMALL_STATE(5945)] = 216247, - [SMALL_STATE(5946)] = 216269, - [SMALL_STATE(5947)] = 216291, - [SMALL_STATE(5948)] = 216307, - [SMALL_STATE(5949)] = 216323, - [SMALL_STATE(5950)] = 216345, - [SMALL_STATE(5951)] = 216363, - [SMALL_STATE(5952)] = 216377, - [SMALL_STATE(5953)] = 216399, - [SMALL_STATE(5954)] = 216415, - [SMALL_STATE(5955)] = 216431, - [SMALL_STATE(5956)] = 216447, - [SMALL_STATE(5957)] = 216467, - [SMALL_STATE(5958)] = 216489, - [SMALL_STATE(5959)] = 216507, - [SMALL_STATE(5960)] = 216529, - [SMALL_STATE(5961)] = 216551, - [SMALL_STATE(5962)] = 216571, - [SMALL_STATE(5963)] = 216593, - [SMALL_STATE(5964)] = 216611, - [SMALL_STATE(5965)] = 216631, - [SMALL_STATE(5966)] = 216653, - [SMALL_STATE(5967)] = 216673, - [SMALL_STATE(5968)] = 216695, - [SMALL_STATE(5969)] = 216717, - [SMALL_STATE(5970)] = 216739, - [SMALL_STATE(5971)] = 216761, - [SMALL_STATE(5972)] = 216779, - [SMALL_STATE(5973)] = 216797, - [SMALL_STATE(5974)] = 216819, - [SMALL_STATE(5975)] = 216839, - [SMALL_STATE(5976)] = 216861, - [SMALL_STATE(5977)] = 216879, - [SMALL_STATE(5978)] = 216897, - [SMALL_STATE(5979)] = 216917, - [SMALL_STATE(5980)] = 216931, - [SMALL_STATE(5981)] = 216953, - [SMALL_STATE(5982)] = 216973, - [SMALL_STATE(5983)] = 216991, - [SMALL_STATE(5984)] = 217005, - [SMALL_STATE(5985)] = 217021, - [SMALL_STATE(5986)] = 217043, - [SMALL_STATE(5987)] = 217065, - [SMALL_STATE(5988)] = 217083, - [SMALL_STATE(5989)] = 217105, - [SMALL_STATE(5990)] = 217127, - [SMALL_STATE(5991)] = 217149, - [SMALL_STATE(5992)] = 217167, - [SMALL_STATE(5993)] = 217189, - [SMALL_STATE(5994)] = 217211, - [SMALL_STATE(5995)] = 217229, - [SMALL_STATE(5996)] = 217247, - [SMALL_STATE(5997)] = 217269, - [SMALL_STATE(5998)] = 217291, - [SMALL_STATE(5999)] = 217311, - [SMALL_STATE(6000)] = 217329, - [SMALL_STATE(6001)] = 217351, - [SMALL_STATE(6002)] = 217373, - [SMALL_STATE(6003)] = 217395, - [SMALL_STATE(6004)] = 217413, - [SMALL_STATE(6005)] = 217435, - [SMALL_STATE(6006)] = 217457, - [SMALL_STATE(6007)] = 217473, - [SMALL_STATE(6008)] = 217491, - [SMALL_STATE(6009)] = 217507, - [SMALL_STATE(6010)] = 217529, - [SMALL_STATE(6011)] = 217551, - [SMALL_STATE(6012)] = 217573, - [SMALL_STATE(6013)] = 217595, - [SMALL_STATE(6014)] = 217617, - [SMALL_STATE(6015)] = 217639, - [SMALL_STATE(6016)] = 217661, - [SMALL_STATE(6017)] = 217683, - [SMALL_STATE(6018)] = 217705, - [SMALL_STATE(6019)] = 217727, - [SMALL_STATE(6020)] = 217749, - [SMALL_STATE(6021)] = 217771, - [SMALL_STATE(6022)] = 217793, - [SMALL_STATE(6023)] = 217809, - [SMALL_STATE(6024)] = 217831, - [SMALL_STATE(6025)] = 217853, - [SMALL_STATE(6026)] = 217875, - [SMALL_STATE(6027)] = 217897, - [SMALL_STATE(6028)] = 217919, - [SMALL_STATE(6029)] = 217941, - [SMALL_STATE(6030)] = 217963, - [SMALL_STATE(6031)] = 217985, - [SMALL_STATE(6032)] = 218007, - [SMALL_STATE(6033)] = 218029, - [SMALL_STATE(6034)] = 218051, - [SMALL_STATE(6035)] = 218073, - [SMALL_STATE(6036)] = 218095, - [SMALL_STATE(6037)] = 218117, - [SMALL_STATE(6038)] = 218139, - [SMALL_STATE(6039)] = 218161, - [SMALL_STATE(6040)] = 218183, - [SMALL_STATE(6041)] = 218205, - [SMALL_STATE(6042)] = 218227, - [SMALL_STATE(6043)] = 218249, - [SMALL_STATE(6044)] = 218271, - [SMALL_STATE(6045)] = 218293, - [SMALL_STATE(6046)] = 218313, - [SMALL_STATE(6047)] = 218329, - [SMALL_STATE(6048)] = 218351, - [SMALL_STATE(6049)] = 218373, - [SMALL_STATE(6050)] = 218391, - [SMALL_STATE(6051)] = 218413, - [SMALL_STATE(6052)] = 218433, - [SMALL_STATE(6053)] = 218455, - [SMALL_STATE(6054)] = 218473, - [SMALL_STATE(6055)] = 218495, - [SMALL_STATE(6056)] = 218513, - [SMALL_STATE(6057)] = 218533, - [SMALL_STATE(6058)] = 218551, - [SMALL_STATE(6059)] = 218569, - [SMALL_STATE(6060)] = 218587, - [SMALL_STATE(6061)] = 218605, - [SMALL_STATE(6062)] = 218623, - [SMALL_STATE(6063)] = 218645, - [SMALL_STATE(6064)] = 218665, - [SMALL_STATE(6065)] = 218687, - [SMALL_STATE(6066)] = 218709, - [SMALL_STATE(6067)] = 218731, - [SMALL_STATE(6068)] = 218749, - [SMALL_STATE(6069)] = 218767, - [SMALL_STATE(6070)] = 218789, - [SMALL_STATE(6071)] = 218808, - [SMALL_STATE(6072)] = 218827, - [SMALL_STATE(6073)] = 218846, - [SMALL_STATE(6074)] = 218865, - [SMALL_STATE(6075)] = 218884, - [SMALL_STATE(6076)] = 218903, - [SMALL_STATE(6077)] = 218922, - [SMALL_STATE(6078)] = 218935, - [SMALL_STATE(6079)] = 218952, - [SMALL_STATE(6080)] = 218969, - [SMALL_STATE(6081)] = 218984, - [SMALL_STATE(6082)] = 218997, - [SMALL_STATE(6083)] = 219016, - [SMALL_STATE(6084)] = 219029, - [SMALL_STATE(6085)] = 219044, - [SMALL_STATE(6086)] = 219061, - [SMALL_STATE(6087)] = 219078, - [SMALL_STATE(6088)] = 219095, - [SMALL_STATE(6089)] = 219114, - [SMALL_STATE(6090)] = 219133, - [SMALL_STATE(6091)] = 219146, - [SMALL_STATE(6092)] = 219165, - [SMALL_STATE(6093)] = 219184, - [SMALL_STATE(6094)] = 219203, - [SMALL_STATE(6095)] = 219222, - [SMALL_STATE(6096)] = 219241, - [SMALL_STATE(6097)] = 219260, - [SMALL_STATE(6098)] = 219279, - [SMALL_STATE(6099)] = 219298, - [SMALL_STATE(6100)] = 219311, - [SMALL_STATE(6101)] = 219330, - [SMALL_STATE(6102)] = 219343, - [SMALL_STATE(6103)] = 219360, - [SMALL_STATE(6104)] = 219379, - [SMALL_STATE(6105)] = 219398, - [SMALL_STATE(6106)] = 219411, - [SMALL_STATE(6107)] = 219430, - [SMALL_STATE(6108)] = 219447, - [SMALL_STATE(6109)] = 219466, - [SMALL_STATE(6110)] = 219485, - [SMALL_STATE(6111)] = 219498, - [SMALL_STATE(6112)] = 219515, - [SMALL_STATE(6113)] = 219528, - [SMALL_STATE(6114)] = 219547, - [SMALL_STATE(6115)] = 219566, - [SMALL_STATE(6116)] = 219585, - [SMALL_STATE(6117)] = 219604, - [SMALL_STATE(6118)] = 219623, - [SMALL_STATE(6119)] = 219642, - [SMALL_STATE(6120)] = 219661, - [SMALL_STATE(6121)] = 219680, - [SMALL_STATE(6122)] = 219695, - [SMALL_STATE(6123)] = 219708, - [SMALL_STATE(6124)] = 219721, - [SMALL_STATE(6125)] = 219734, - [SMALL_STATE(6126)] = 219751, - [SMALL_STATE(6127)] = 219768, - [SMALL_STATE(6128)] = 219783, - [SMALL_STATE(6129)] = 219798, - [SMALL_STATE(6130)] = 219811, - [SMALL_STATE(6131)] = 219828, - [SMALL_STATE(6132)] = 219843, - [SMALL_STATE(6133)] = 219856, - [SMALL_STATE(6134)] = 219871, - [SMALL_STATE(6135)] = 219890, - [SMALL_STATE(6136)] = 219907, - [SMALL_STATE(6137)] = 219920, - [SMALL_STATE(6138)] = 219939, - [SMALL_STATE(6139)] = 219958, - [SMALL_STATE(6140)] = 219977, - [SMALL_STATE(6141)] = 219996, - [SMALL_STATE(6142)] = 220015, - [SMALL_STATE(6143)] = 220034, - [SMALL_STATE(6144)] = 220053, - [SMALL_STATE(6145)] = 220072, - [SMALL_STATE(6146)] = 220085, - [SMALL_STATE(6147)] = 220098, - [SMALL_STATE(6148)] = 220111, - [SMALL_STATE(6149)] = 220124, - [SMALL_STATE(6150)] = 220141, - [SMALL_STATE(6151)] = 220154, - [SMALL_STATE(6152)] = 220167, - [SMALL_STATE(6153)] = 220180, - [SMALL_STATE(6154)] = 220199, - [SMALL_STATE(6155)] = 220216, - [SMALL_STATE(6156)] = 220231, - [SMALL_STATE(6157)] = 220250, - [SMALL_STATE(6158)] = 220263, - [SMALL_STATE(6159)] = 220276, - [SMALL_STATE(6160)] = 220295, - [SMALL_STATE(6161)] = 220314, - [SMALL_STATE(6162)] = 220333, - [SMALL_STATE(6163)] = 220352, - [SMALL_STATE(6164)] = 220371, - [SMALL_STATE(6165)] = 220390, - [SMALL_STATE(6166)] = 220409, - [SMALL_STATE(6167)] = 220428, - [SMALL_STATE(6168)] = 220441, - [SMALL_STATE(6169)] = 220454, - [SMALL_STATE(6170)] = 220471, - [SMALL_STATE(6171)] = 220484, - [SMALL_STATE(6172)] = 220497, - [SMALL_STATE(6173)] = 220514, - [SMALL_STATE(6174)] = 220527, - [SMALL_STATE(6175)] = 220542, - [SMALL_STATE(6176)] = 220561, - [SMALL_STATE(6177)] = 220580, - [SMALL_STATE(6178)] = 220593, - [SMALL_STATE(6179)] = 220610, - [SMALL_STATE(6180)] = 220629, - [SMALL_STATE(6181)] = 220648, - [SMALL_STATE(6182)] = 220667, - [SMALL_STATE(6183)] = 220686, - [SMALL_STATE(6184)] = 220705, - [SMALL_STATE(6185)] = 220724, - [SMALL_STATE(6186)] = 220743, - [SMALL_STATE(6187)] = 220762, - [SMALL_STATE(6188)] = 220779, - [SMALL_STATE(6189)] = 220792, - [SMALL_STATE(6190)] = 220809, - [SMALL_STATE(6191)] = 220826, - [SMALL_STATE(6192)] = 220839, - [SMALL_STATE(6193)] = 220854, - [SMALL_STATE(6194)] = 220869, - [SMALL_STATE(6195)] = 220886, - [SMALL_STATE(6196)] = 220899, - [SMALL_STATE(6197)] = 220912, - [SMALL_STATE(6198)] = 220925, - [SMALL_STATE(6199)] = 220938, - [SMALL_STATE(6200)] = 220953, - [SMALL_STATE(6201)] = 220970, - [SMALL_STATE(6202)] = 220985, - [SMALL_STATE(6203)] = 221004, - [SMALL_STATE(6204)] = 221023, - [SMALL_STATE(6205)] = 221042, - [SMALL_STATE(6206)] = 221061, - [SMALL_STATE(6207)] = 221080, - [SMALL_STATE(6208)] = 221099, - [SMALL_STATE(6209)] = 221118, - [SMALL_STATE(6210)] = 221137, - [SMALL_STATE(6211)] = 221156, - [SMALL_STATE(6212)] = 221169, - [SMALL_STATE(6213)] = 221186, - [SMALL_STATE(6214)] = 221205, - [SMALL_STATE(6215)] = 221220, - [SMALL_STATE(6216)] = 221239, - [SMALL_STATE(6217)] = 221256, - [SMALL_STATE(6218)] = 221271, - [SMALL_STATE(6219)] = 221290, - [SMALL_STATE(6220)] = 221303, - [SMALL_STATE(6221)] = 221320, - [SMALL_STATE(6222)] = 221339, - [SMALL_STATE(6223)] = 221358, - [SMALL_STATE(6224)] = 221377, - [SMALL_STATE(6225)] = 221396, - [SMALL_STATE(6226)] = 221415, - [SMALL_STATE(6227)] = 221434, - [SMALL_STATE(6228)] = 221453, - [SMALL_STATE(6229)] = 221472, - [SMALL_STATE(6230)] = 221491, - [SMALL_STATE(6231)] = 221504, - [SMALL_STATE(6232)] = 221517, - [SMALL_STATE(6233)] = 221534, - [SMALL_STATE(6234)] = 221553, - [SMALL_STATE(6235)] = 221572, - [SMALL_STATE(6236)] = 221591, - [SMALL_STATE(6237)] = 221608, - [SMALL_STATE(6238)] = 221621, - [SMALL_STATE(6239)] = 221634, - [SMALL_STATE(6240)] = 221647, - [SMALL_STATE(6241)] = 221660, - [SMALL_STATE(6242)] = 221679, - [SMALL_STATE(6243)] = 221698, - [SMALL_STATE(6244)] = 221717, - [SMALL_STATE(6245)] = 221736, - [SMALL_STATE(6246)] = 221755, - [SMALL_STATE(6247)] = 221774, - [SMALL_STATE(6248)] = 221793, - [SMALL_STATE(6249)] = 221812, - [SMALL_STATE(6250)] = 221827, - [SMALL_STATE(6251)] = 221842, - [SMALL_STATE(6252)] = 221855, - [SMALL_STATE(6253)] = 221870, - [SMALL_STATE(6254)] = 221887, - [SMALL_STATE(6255)] = 221904, - [SMALL_STATE(6256)] = 221921, - [SMALL_STATE(6257)] = 221938, - [SMALL_STATE(6258)] = 221951, - [SMALL_STATE(6259)] = 221964, - [SMALL_STATE(6260)] = 221977, - [SMALL_STATE(6261)] = 221990, - [SMALL_STATE(6262)] = 222009, - [SMALL_STATE(6263)] = 222028, - [SMALL_STATE(6264)] = 222047, - [SMALL_STATE(6265)] = 222066, - [SMALL_STATE(6266)] = 222085, - [SMALL_STATE(6267)] = 222104, - [SMALL_STATE(6268)] = 222123, - [SMALL_STATE(6269)] = 222142, - [SMALL_STATE(6270)] = 222155, - [SMALL_STATE(6271)] = 222170, - [SMALL_STATE(6272)] = 222183, - [SMALL_STATE(6273)] = 222196, - [SMALL_STATE(6274)] = 222213, - [SMALL_STATE(6275)] = 222226, - [SMALL_STATE(6276)] = 222243, - [SMALL_STATE(6277)] = 222262, - [SMALL_STATE(6278)] = 222275, - [SMALL_STATE(6279)] = 222294, - [SMALL_STATE(6280)] = 222313, - [SMALL_STATE(6281)] = 222332, - [SMALL_STATE(6282)] = 222351, - [SMALL_STATE(6283)] = 222370, - [SMALL_STATE(6284)] = 222389, - [SMALL_STATE(6285)] = 222408, - [SMALL_STATE(6286)] = 222427, - [SMALL_STATE(6287)] = 222446, - [SMALL_STATE(6288)] = 222459, - [SMALL_STATE(6289)] = 222476, - [SMALL_STATE(6290)] = 222489, - [SMALL_STATE(6291)] = 222506, - [SMALL_STATE(6292)] = 222521, - [SMALL_STATE(6293)] = 222536, - [SMALL_STATE(6294)] = 222555, - [SMALL_STATE(6295)] = 222574, - [SMALL_STATE(6296)] = 222593, - [SMALL_STATE(6297)] = 222612, - [SMALL_STATE(6298)] = 222631, - [SMALL_STATE(6299)] = 222650, - [SMALL_STATE(6300)] = 222669, - [SMALL_STATE(6301)] = 222688, - [SMALL_STATE(6302)] = 222701, - [SMALL_STATE(6303)] = 222714, - [SMALL_STATE(6304)] = 222731, - [SMALL_STATE(6305)] = 222748, - [SMALL_STATE(6306)] = 222761, - [SMALL_STATE(6307)] = 222780, - [SMALL_STATE(6308)] = 222799, - [SMALL_STATE(6309)] = 222818, - [SMALL_STATE(6310)] = 222837, - [SMALL_STATE(6311)] = 222856, - [SMALL_STATE(6312)] = 222875, - [SMALL_STATE(6313)] = 222894, - [SMALL_STATE(6314)] = 222913, - [SMALL_STATE(6315)] = 222932, - [SMALL_STATE(6316)] = 222951, - [SMALL_STATE(6317)] = 222964, - [SMALL_STATE(6318)] = 222981, - [SMALL_STATE(6319)] = 222998, - [SMALL_STATE(6320)] = 223011, - [SMALL_STATE(6321)] = 223024, - [SMALL_STATE(6322)] = 223043, - [SMALL_STATE(6323)] = 223062, - [SMALL_STATE(6324)] = 223081, - [SMALL_STATE(6325)] = 223100, - [SMALL_STATE(6326)] = 223119, - [SMALL_STATE(6327)] = 223138, - [SMALL_STATE(6328)] = 223157, - [SMALL_STATE(6329)] = 223176, - [SMALL_STATE(6330)] = 223189, - [SMALL_STATE(6331)] = 223202, - [SMALL_STATE(6332)] = 223219, - [SMALL_STATE(6333)] = 223236, - [SMALL_STATE(6334)] = 223249, - [SMALL_STATE(6335)] = 223268, - [SMALL_STATE(6336)] = 223281, - [SMALL_STATE(6337)] = 223298, - [SMALL_STATE(6338)] = 223315, - [SMALL_STATE(6339)] = 223334, - [SMALL_STATE(6340)] = 223347, - [SMALL_STATE(6341)] = 223364, - [SMALL_STATE(6342)] = 223381, - [SMALL_STATE(6343)] = 223400, - [SMALL_STATE(6344)] = 223413, - [SMALL_STATE(6345)] = 223430, - [SMALL_STATE(6346)] = 223447, - [SMALL_STATE(6347)] = 223460, - [SMALL_STATE(6348)] = 223473, - [SMALL_STATE(6349)] = 223490, - [SMALL_STATE(6350)] = 223507, - [SMALL_STATE(6351)] = 223520, - [SMALL_STATE(6352)] = 223533, - [SMALL_STATE(6353)] = 223550, - [SMALL_STATE(6354)] = 223567, - [SMALL_STATE(6355)] = 223586, - [SMALL_STATE(6356)] = 223599, - [SMALL_STATE(6357)] = 223616, - [SMALL_STATE(6358)] = 223633, - [SMALL_STATE(6359)] = 223646, - [SMALL_STATE(6360)] = 223659, - [SMALL_STATE(6361)] = 223676, - [SMALL_STATE(6362)] = 223693, - [SMALL_STATE(6363)] = 223710, - [SMALL_STATE(6364)] = 223723, - [SMALL_STATE(6365)] = 223740, - [SMALL_STATE(6366)] = 223757, - [SMALL_STATE(6367)] = 223776, - [SMALL_STATE(6368)] = 223789, - [SMALL_STATE(6369)] = 223806, - [SMALL_STATE(6370)] = 223823, - [SMALL_STATE(6371)] = 223840, - [SMALL_STATE(6372)] = 223853, - [SMALL_STATE(6373)] = 223870, - [SMALL_STATE(6374)] = 223887, - [SMALL_STATE(6375)] = 223906, - [SMALL_STATE(6376)] = 223919, - [SMALL_STATE(6377)] = 223936, - [SMALL_STATE(6378)] = 223953, - [SMALL_STATE(6379)] = 223970, - [SMALL_STATE(6380)] = 223983, - [SMALL_STATE(6381)] = 224000, - [SMALL_STATE(6382)] = 224017, - [SMALL_STATE(6383)] = 224032, - [SMALL_STATE(6384)] = 224045, - [SMALL_STATE(6385)] = 224062, - [SMALL_STATE(6386)] = 224079, - [SMALL_STATE(6387)] = 224098, - [SMALL_STATE(6388)] = 224111, - [SMALL_STATE(6389)] = 224128, - [SMALL_STATE(6390)] = 224145, - [SMALL_STATE(6391)] = 224158, - [SMALL_STATE(6392)] = 224171, - [SMALL_STATE(6393)] = 224188, - [SMALL_STATE(6394)] = 224205, - [SMALL_STATE(6395)] = 224218, - [SMALL_STATE(6396)] = 224231, - [SMALL_STATE(6397)] = 224248, - [SMALL_STATE(6398)] = 224265, - [SMALL_STATE(6399)] = 224284, - [SMALL_STATE(6400)] = 224297, - [SMALL_STATE(6401)] = 224314, - [SMALL_STATE(6402)] = 224331, - [SMALL_STATE(6403)] = 224350, - [SMALL_STATE(6404)] = 224363, - [SMALL_STATE(6405)] = 224380, - [SMALL_STATE(6406)] = 224397, - [SMALL_STATE(6407)] = 224416, - [SMALL_STATE(6408)] = 224429, - [SMALL_STATE(6409)] = 224446, - [SMALL_STATE(6410)] = 224463, - [SMALL_STATE(6411)] = 224478, - [SMALL_STATE(6412)] = 224491, - [SMALL_STATE(6413)] = 224508, - [SMALL_STATE(6414)] = 224525, - [SMALL_STATE(6415)] = 224544, - [SMALL_STATE(6416)] = 224557, - [SMALL_STATE(6417)] = 224574, - [SMALL_STATE(6418)] = 224591, - [SMALL_STATE(6419)] = 224604, - [SMALL_STATE(6420)] = 224617, - [SMALL_STATE(6421)] = 224634, - [SMALL_STATE(6422)] = 224651, - [SMALL_STATE(6423)] = 224664, - [SMALL_STATE(6424)] = 224677, - [SMALL_STATE(6425)] = 224694, - [SMALL_STATE(6426)] = 224711, - [SMALL_STATE(6427)] = 224730, - [SMALL_STATE(6428)] = 224743, - [SMALL_STATE(6429)] = 224760, - [SMALL_STATE(6430)] = 224777, - [SMALL_STATE(6431)] = 224790, - [SMALL_STATE(6432)] = 224807, - [SMALL_STATE(6433)] = 224824, - [SMALL_STATE(6434)] = 224841, - [SMALL_STATE(6435)] = 224858, - [SMALL_STATE(6436)] = 224875, - [SMALL_STATE(6437)] = 224892, - [SMALL_STATE(6438)] = 224909, - [SMALL_STATE(6439)] = 224926, - [SMALL_STATE(6440)] = 224943, - [SMALL_STATE(6441)] = 224960, - [SMALL_STATE(6442)] = 224977, - [SMALL_STATE(6443)] = 224994, - [SMALL_STATE(6444)] = 225007, - [SMALL_STATE(6445)] = 225022, - [SMALL_STATE(6446)] = 225035, - [SMALL_STATE(6447)] = 225054, - [SMALL_STATE(6448)] = 225073, - [SMALL_STATE(6449)] = 225090, - [SMALL_STATE(6450)] = 225103, - [SMALL_STATE(6451)] = 225116, - [SMALL_STATE(6452)] = 225129, - [SMALL_STATE(6453)] = 225146, - [SMALL_STATE(6454)] = 225163, - [SMALL_STATE(6455)] = 225176, - [SMALL_STATE(6456)] = 225193, - [SMALL_STATE(6457)] = 225210, - [SMALL_STATE(6458)] = 225229, - [SMALL_STATE(6459)] = 225246, - [SMALL_STATE(6460)] = 225265, - [SMALL_STATE(6461)] = 225284, - [SMALL_STATE(6462)] = 225303, - [SMALL_STATE(6463)] = 225322, - [SMALL_STATE(6464)] = 225337, - [SMALL_STATE(6465)] = 225350, - [SMALL_STATE(6466)] = 225369, - [SMALL_STATE(6467)] = 225388, - [SMALL_STATE(6468)] = 225407, - [SMALL_STATE(6469)] = 225420, - [SMALL_STATE(6470)] = 225439, - [SMALL_STATE(6471)] = 225456, - [SMALL_STATE(6472)] = 225475, - [SMALL_STATE(6473)] = 225494, - [SMALL_STATE(6474)] = 225507, - [SMALL_STATE(6475)] = 225524, - [SMALL_STATE(6476)] = 225541, - [SMALL_STATE(6477)] = 225556, - [SMALL_STATE(6478)] = 225575, - [SMALL_STATE(6479)] = 225594, - [SMALL_STATE(6480)] = 225607, - [SMALL_STATE(6481)] = 225622, - [SMALL_STATE(6482)] = 225635, - [SMALL_STATE(6483)] = 225654, - [SMALL_STATE(6484)] = 225667, - [SMALL_STATE(6485)] = 225682, - [SMALL_STATE(6486)] = 225699, - [SMALL_STATE(6487)] = 225718, - [SMALL_STATE(6488)] = 225731, - [SMALL_STATE(6489)] = 225750, - [SMALL_STATE(6490)] = 225769, - [SMALL_STATE(6491)] = 225782, - [SMALL_STATE(6492)] = 225795, - [SMALL_STATE(6493)] = 225808, - [SMALL_STATE(6494)] = 225827, - [SMALL_STATE(6495)] = 225840, - [SMALL_STATE(6496)] = 225859, - [SMALL_STATE(6497)] = 225876, - [SMALL_STATE(6498)] = 225893, - [SMALL_STATE(6499)] = 225912, - [SMALL_STATE(6500)] = 225931, - [SMALL_STATE(6501)] = 225950, - [SMALL_STATE(6502)] = 225969, - [SMALL_STATE(6503)] = 225982, - [SMALL_STATE(6504)] = 225995, - [SMALL_STATE(6505)] = 226008, - [SMALL_STATE(6506)] = 226021, - [SMALL_STATE(6507)] = 226034, - [SMALL_STATE(6508)] = 226047, - [SMALL_STATE(6509)] = 226062, - [SMALL_STATE(6510)] = 226075, - [SMALL_STATE(6511)] = 226088, - [SMALL_STATE(6512)] = 226107, - [SMALL_STATE(6513)] = 226126, - [SMALL_STATE(6514)] = 226145, - [SMALL_STATE(6515)] = 226164, - [SMALL_STATE(6516)] = 226183, - [SMALL_STATE(6517)] = 226202, - [SMALL_STATE(6518)] = 226221, - [SMALL_STATE(6519)] = 226240, - [SMALL_STATE(6520)] = 226253, - [SMALL_STATE(6521)] = 226266, - [SMALL_STATE(6522)] = 226279, - [SMALL_STATE(6523)] = 226296, - [SMALL_STATE(6524)] = 226309, - [SMALL_STATE(6525)] = 226324, - [SMALL_STATE(6526)] = 226339, - [SMALL_STATE(6527)] = 226356, - [SMALL_STATE(6528)] = 226375, - [SMALL_STATE(6529)] = 226392, - [SMALL_STATE(6530)] = 226405, - [SMALL_STATE(6531)] = 226418, - [SMALL_STATE(6532)] = 226435, - [SMALL_STATE(6533)] = 226452, - [SMALL_STATE(6534)] = 226471, - [SMALL_STATE(6535)] = 226484, - [SMALL_STATE(6536)] = 226503, - [SMALL_STATE(6537)] = 226518, - [SMALL_STATE(6538)] = 226537, - [SMALL_STATE(6539)] = 226556, - [SMALL_STATE(6540)] = 226573, - [SMALL_STATE(6541)] = 226592, - [SMALL_STATE(6542)] = 226611, - [SMALL_STATE(6543)] = 226630, - [SMALL_STATE(6544)] = 226649, - [SMALL_STATE(6545)] = 226668, - [SMALL_STATE(6546)] = 226683, - [SMALL_STATE(6547)] = 226702, - [SMALL_STATE(6548)] = 226719, - [SMALL_STATE(6549)] = 226734, - [SMALL_STATE(6550)] = 226749, - [SMALL_STATE(6551)] = 226768, - [SMALL_STATE(6552)] = 226787, - [SMALL_STATE(6553)] = 226804, - [SMALL_STATE(6554)] = 226823, - [SMALL_STATE(6555)] = 226842, - [SMALL_STATE(6556)] = 226861, - [SMALL_STATE(6557)] = 226880, - [SMALL_STATE(6558)] = 226899, - [SMALL_STATE(6559)] = 226918, - [SMALL_STATE(6560)] = 226931, - [SMALL_STATE(6561)] = 226950, - [SMALL_STATE(6562)] = 226967, - [SMALL_STATE(6563)] = 226980, - [SMALL_STATE(6564)] = 226993, - [SMALL_STATE(6565)] = 227010, - [SMALL_STATE(6566)] = 227027, - [SMALL_STATE(6567)] = 227042, - [SMALL_STATE(6568)] = 227061, - [SMALL_STATE(6569)] = 227074, - [SMALL_STATE(6570)] = 227091, - [SMALL_STATE(6571)] = 227110, - [SMALL_STATE(6572)] = 227127, - [SMALL_STATE(6573)] = 227146, - [SMALL_STATE(6574)] = 227165, - [SMALL_STATE(6575)] = 227184, - [SMALL_STATE(6576)] = 227199, - [SMALL_STATE(6577)] = 227218, - [SMALL_STATE(6578)] = 227237, - [SMALL_STATE(6579)] = 227256, - [SMALL_STATE(6580)] = 227275, - [SMALL_STATE(6581)] = 227294, - [SMALL_STATE(6582)] = 227313, - [SMALL_STATE(6583)] = 227332, - [SMALL_STATE(6584)] = 227351, - [SMALL_STATE(6585)] = 227370, - [SMALL_STATE(6586)] = 227389, - [SMALL_STATE(6587)] = 227406, - [SMALL_STATE(6588)] = 227423, - [SMALL_STATE(6589)] = 227442, - [SMALL_STATE(6590)] = 227455, - [SMALL_STATE(6591)] = 227468, - [SMALL_STATE(6592)] = 227485, - [SMALL_STATE(6593)] = 227498, - [SMALL_STATE(6594)] = 227511, - [SMALL_STATE(6595)] = 227528, - [SMALL_STATE(6596)] = 227541, - [SMALL_STATE(6597)] = 227560, - [SMALL_STATE(6598)] = 227575, - [SMALL_STATE(6599)] = 227594, - [SMALL_STATE(6600)] = 227611, - [SMALL_STATE(6601)] = 227628, - [SMALL_STATE(6602)] = 227641, - [SMALL_STATE(6603)] = 227656, - [SMALL_STATE(6604)] = 227671, - [SMALL_STATE(6605)] = 227688, - [SMALL_STATE(6606)] = 227701, - [SMALL_STATE(6607)] = 227720, - [SMALL_STATE(6608)] = 227733, - [SMALL_STATE(6609)] = 227748, - [SMALL_STATE(6610)] = 227761, - [SMALL_STATE(6611)] = 227780, - [SMALL_STATE(6612)] = 227799, - [SMALL_STATE(6613)] = 227818, - [SMALL_STATE(6614)] = 227837, - [SMALL_STATE(6615)] = 227850, - [SMALL_STATE(6616)] = 227866, - [SMALL_STATE(6617)] = 227882, - [SMALL_STATE(6618)] = 227894, - [SMALL_STATE(6619)] = 227910, - [SMALL_STATE(6620)] = 227926, - [SMALL_STATE(6621)] = 227942, - [SMALL_STATE(6622)] = 227954, - [SMALL_STATE(6623)] = 227970, - [SMALL_STATE(6624)] = 227986, - [SMALL_STATE(6625)] = 228002, - [SMALL_STATE(6626)] = 228018, - [SMALL_STATE(6627)] = 228032, - [SMALL_STATE(6628)] = 228048, - [SMALL_STATE(6629)] = 228064, - [SMALL_STATE(6630)] = 228080, - [SMALL_STATE(6631)] = 228096, - [SMALL_STATE(6632)] = 228112, - [SMALL_STATE(6633)] = 228128, - [SMALL_STATE(6634)] = 228140, - [SMALL_STATE(6635)] = 228152, - [SMALL_STATE(6636)] = 228164, - [SMALL_STATE(6637)] = 228180, - [SMALL_STATE(6638)] = 228192, - [SMALL_STATE(6639)] = 228208, - [SMALL_STATE(6640)] = 228220, - [SMALL_STATE(6641)] = 228232, - [SMALL_STATE(6642)] = 228244, - [SMALL_STATE(6643)] = 228260, - [SMALL_STATE(6644)] = 228276, - [SMALL_STATE(6645)] = 228292, - [SMALL_STATE(6646)] = 228304, - [SMALL_STATE(6647)] = 228320, - [SMALL_STATE(6648)] = 228336, - [SMALL_STATE(6649)] = 228352, - [SMALL_STATE(6650)] = 228368, - [SMALL_STATE(6651)] = 228384, - [SMALL_STATE(6652)] = 228400, - [SMALL_STATE(6653)] = 228414, - [SMALL_STATE(6654)] = 228426, - [SMALL_STATE(6655)] = 228442, - [SMALL_STATE(6656)] = 228458, - [SMALL_STATE(6657)] = 228472, - [SMALL_STATE(6658)] = 228488, - [SMALL_STATE(6659)] = 228504, - [SMALL_STATE(6660)] = 228516, - [SMALL_STATE(6661)] = 228528, - [SMALL_STATE(6662)] = 228540, - [SMALL_STATE(6663)] = 228556, - [SMALL_STATE(6664)] = 228570, - [SMALL_STATE(6665)] = 228586, - [SMALL_STATE(6666)] = 228602, - [SMALL_STATE(6667)] = 228616, - [SMALL_STATE(6668)] = 228632, - [SMALL_STATE(6669)] = 228646, - [SMALL_STATE(6670)] = 228658, - [SMALL_STATE(6671)] = 228670, - [SMALL_STATE(6672)] = 228686, - [SMALL_STATE(6673)] = 228702, - [SMALL_STATE(6674)] = 228714, - [SMALL_STATE(6675)] = 228730, - [SMALL_STATE(6676)] = 228746, - [SMALL_STATE(6677)] = 228762, - [SMALL_STATE(6678)] = 228778, - [SMALL_STATE(6679)] = 228794, - [SMALL_STATE(6680)] = 228810, - [SMALL_STATE(6681)] = 228826, - [SMALL_STATE(6682)] = 228842, - [SMALL_STATE(6683)] = 228858, - [SMALL_STATE(6684)] = 228872, - [SMALL_STATE(6685)] = 228886, - [SMALL_STATE(6686)] = 228902, - [SMALL_STATE(6687)] = 228914, - [SMALL_STATE(6688)] = 228930, - [SMALL_STATE(6689)] = 228946, - [SMALL_STATE(6690)] = 228962, - [SMALL_STATE(6691)] = 228974, - [SMALL_STATE(6692)] = 228990, - [SMALL_STATE(6693)] = 229006, - [SMALL_STATE(6694)] = 229020, - [SMALL_STATE(6695)] = 229036, - [SMALL_STATE(6696)] = 229052, - [SMALL_STATE(6697)] = 229068, - [SMALL_STATE(6698)] = 229084, - [SMALL_STATE(6699)] = 229100, - [SMALL_STATE(6700)] = 229116, - [SMALL_STATE(6701)] = 229132, - [SMALL_STATE(6702)] = 229144, - [SMALL_STATE(6703)] = 229156, - [SMALL_STATE(6704)] = 229172, - [SMALL_STATE(6705)] = 229188, - [SMALL_STATE(6706)] = 229204, - [SMALL_STATE(6707)] = 229220, - [SMALL_STATE(6708)] = 229232, - [SMALL_STATE(6709)] = 229244, - [SMALL_STATE(6710)] = 229258, - [SMALL_STATE(6711)] = 229274, - [SMALL_STATE(6712)] = 229290, - [SMALL_STATE(6713)] = 229302, - [SMALL_STATE(6714)] = 229318, - [SMALL_STATE(6715)] = 229334, - [SMALL_STATE(6716)] = 229350, - [SMALL_STATE(6717)] = 229366, - [SMALL_STATE(6718)] = 229382, - [SMALL_STATE(6719)] = 229398, - [SMALL_STATE(6720)] = 229414, - [SMALL_STATE(6721)] = 229430, - [SMALL_STATE(6722)] = 229446, - [SMALL_STATE(6723)] = 229462, - [SMALL_STATE(6724)] = 229478, - [SMALL_STATE(6725)] = 229494, - [SMALL_STATE(6726)] = 229510, - [SMALL_STATE(6727)] = 229526, - [SMALL_STATE(6728)] = 229542, - [SMALL_STATE(6729)] = 229554, - [SMALL_STATE(6730)] = 229570, - [SMALL_STATE(6731)] = 229586, - [SMALL_STATE(6732)] = 229602, - [SMALL_STATE(6733)] = 229618, - [SMALL_STATE(6734)] = 229634, - [SMALL_STATE(6735)] = 229646, - [SMALL_STATE(6736)] = 229662, - [SMALL_STATE(6737)] = 229678, - [SMALL_STATE(6738)] = 229694, - [SMALL_STATE(6739)] = 229710, - [SMALL_STATE(6740)] = 229722, - [SMALL_STATE(6741)] = 229738, - [SMALL_STATE(6742)] = 229754, - [SMALL_STATE(6743)] = 229768, - [SMALL_STATE(6744)] = 229784, - [SMALL_STATE(6745)] = 229796, - [SMALL_STATE(6746)] = 229808, - [SMALL_STATE(6747)] = 229820, - [SMALL_STATE(6748)] = 229836, - [SMALL_STATE(6749)] = 229850, - [SMALL_STATE(6750)] = 229866, - [SMALL_STATE(6751)] = 229882, - [SMALL_STATE(6752)] = 229898, - [SMALL_STATE(6753)] = 229914, - [SMALL_STATE(6754)] = 229930, - [SMALL_STATE(6755)] = 229946, - [SMALL_STATE(6756)] = 229958, - [SMALL_STATE(6757)] = 229974, - [SMALL_STATE(6758)] = 229990, - [SMALL_STATE(6759)] = 230002, - [SMALL_STATE(6760)] = 230018, - [SMALL_STATE(6761)] = 230034, - [SMALL_STATE(6762)] = 230050, - [SMALL_STATE(6763)] = 230066, - [SMALL_STATE(6764)] = 230080, - [SMALL_STATE(6765)] = 230096, - [SMALL_STATE(6766)] = 230112, - [SMALL_STATE(6767)] = 230124, - [SMALL_STATE(6768)] = 230140, - [SMALL_STATE(6769)] = 230156, - [SMALL_STATE(6770)] = 230172, - [SMALL_STATE(6771)] = 230184, - [SMALL_STATE(6772)] = 230196, - [SMALL_STATE(6773)] = 230208, - [SMALL_STATE(6774)] = 230224, - [SMALL_STATE(6775)] = 230236, - [SMALL_STATE(6776)] = 230252, - [SMALL_STATE(6777)] = 230264, - [SMALL_STATE(6778)] = 230280, - [SMALL_STATE(6779)] = 230296, - [SMALL_STATE(6780)] = 230312, - [SMALL_STATE(6781)] = 230324, - [SMALL_STATE(6782)] = 230340, - [SMALL_STATE(6783)] = 230356, - [SMALL_STATE(6784)] = 230372, - [SMALL_STATE(6785)] = 230384, - [SMALL_STATE(6786)] = 230400, - [SMALL_STATE(6787)] = 230412, - [SMALL_STATE(6788)] = 230428, - [SMALL_STATE(6789)] = 230444, - [SMALL_STATE(6790)] = 230458, - [SMALL_STATE(6791)] = 230474, - [SMALL_STATE(6792)] = 230486, - [SMALL_STATE(6793)] = 230502, - [SMALL_STATE(6794)] = 230514, - [SMALL_STATE(6795)] = 230526, - [SMALL_STATE(6796)] = 230542, - [SMALL_STATE(6797)] = 230558, - [SMALL_STATE(6798)] = 230574, - [SMALL_STATE(6799)] = 230590, - [SMALL_STATE(6800)] = 230606, - [SMALL_STATE(6801)] = 230622, - [SMALL_STATE(6802)] = 230638, - [SMALL_STATE(6803)] = 230654, - [SMALL_STATE(6804)] = 230670, - [SMALL_STATE(6805)] = 230686, - [SMALL_STATE(6806)] = 230700, - [SMALL_STATE(6807)] = 230716, - [SMALL_STATE(6808)] = 230732, - [SMALL_STATE(6809)] = 230744, - [SMALL_STATE(6810)] = 230760, - [SMALL_STATE(6811)] = 230772, - [SMALL_STATE(6812)] = 230788, - [SMALL_STATE(6813)] = 230800, - [SMALL_STATE(6814)] = 230816, - [SMALL_STATE(6815)] = 230828, - [SMALL_STATE(6816)] = 230844, - [SMALL_STATE(6817)] = 230860, - [SMALL_STATE(6818)] = 230876, - [SMALL_STATE(6819)] = 230892, - [SMALL_STATE(6820)] = 230904, - [SMALL_STATE(6821)] = 230920, - [SMALL_STATE(6822)] = 230936, - [SMALL_STATE(6823)] = 230952, - [SMALL_STATE(6824)] = 230968, - [SMALL_STATE(6825)] = 230984, - [SMALL_STATE(6826)] = 230996, - [SMALL_STATE(6827)] = 231008, - [SMALL_STATE(6828)] = 231024, - [SMALL_STATE(6829)] = 231036, - [SMALL_STATE(6830)] = 231052, - [SMALL_STATE(6831)] = 231068, - [SMALL_STATE(6832)] = 231084, - [SMALL_STATE(6833)] = 231100, - [SMALL_STATE(6834)] = 231112, - [SMALL_STATE(6835)] = 231124, - [SMALL_STATE(6836)] = 231140, - [SMALL_STATE(6837)] = 231156, - [SMALL_STATE(6838)] = 231172, - [SMALL_STATE(6839)] = 231188, - [SMALL_STATE(6840)] = 231202, - [SMALL_STATE(6841)] = 231214, - [SMALL_STATE(6842)] = 231226, - [SMALL_STATE(6843)] = 231238, - [SMALL_STATE(6844)] = 231250, - [SMALL_STATE(6845)] = 231266, - [SMALL_STATE(6846)] = 231278, - [SMALL_STATE(6847)] = 231294, - [SMALL_STATE(6848)] = 231306, - [SMALL_STATE(6849)] = 231322, - [SMALL_STATE(6850)] = 231338, - [SMALL_STATE(6851)] = 231354, - [SMALL_STATE(6852)] = 231370, - [SMALL_STATE(6853)] = 231384, - [SMALL_STATE(6854)] = 231400, - [SMALL_STATE(6855)] = 231416, - [SMALL_STATE(6856)] = 231432, - [SMALL_STATE(6857)] = 231444, - [SMALL_STATE(6858)] = 231456, - [SMALL_STATE(6859)] = 231470, - [SMALL_STATE(6860)] = 231484, - [SMALL_STATE(6861)] = 231500, - [SMALL_STATE(6862)] = 231516, - [SMALL_STATE(6863)] = 231532, - [SMALL_STATE(6864)] = 231548, - [SMALL_STATE(6865)] = 231564, - [SMALL_STATE(6866)] = 231580, - [SMALL_STATE(6867)] = 231596, - [SMALL_STATE(6868)] = 231612, - [SMALL_STATE(6869)] = 231628, - [SMALL_STATE(6870)] = 231644, - [SMALL_STATE(6871)] = 231660, - [SMALL_STATE(6872)] = 231676, - [SMALL_STATE(6873)] = 231692, - [SMALL_STATE(6874)] = 231706, - [SMALL_STATE(6875)] = 231722, - [SMALL_STATE(6876)] = 231738, - [SMALL_STATE(6877)] = 231754, - [SMALL_STATE(6878)] = 231770, - [SMALL_STATE(6879)] = 231786, - [SMALL_STATE(6880)] = 231802, - [SMALL_STATE(6881)] = 231818, - [SMALL_STATE(6882)] = 231834, - [SMALL_STATE(6883)] = 231850, - [SMALL_STATE(6884)] = 231866, - [SMALL_STATE(6885)] = 231882, - [SMALL_STATE(6886)] = 231898, - [SMALL_STATE(6887)] = 231914, - [SMALL_STATE(6888)] = 231930, - [SMALL_STATE(6889)] = 231946, - [SMALL_STATE(6890)] = 231958, - [SMALL_STATE(6891)] = 231970, - [SMALL_STATE(6892)] = 231986, - [SMALL_STATE(6893)] = 232002, - [SMALL_STATE(6894)] = 232014, - [SMALL_STATE(6895)] = 232030, - [SMALL_STATE(6896)] = 232042, - [SMALL_STATE(6897)] = 232054, - [SMALL_STATE(6898)] = 232066, - [SMALL_STATE(6899)] = 232082, - [SMALL_STATE(6900)] = 232096, - [SMALL_STATE(6901)] = 232108, - [SMALL_STATE(6902)] = 232122, - [SMALL_STATE(6903)] = 232136, - [SMALL_STATE(6904)] = 232150, - [SMALL_STATE(6905)] = 232166, - [SMALL_STATE(6906)] = 232182, - [SMALL_STATE(6907)] = 232194, - [SMALL_STATE(6908)] = 232206, - [SMALL_STATE(6909)] = 232218, - [SMALL_STATE(6910)] = 232230, - [SMALL_STATE(6911)] = 232242, - [SMALL_STATE(6912)] = 232258, - [SMALL_STATE(6913)] = 232270, - [SMALL_STATE(6914)] = 232284, - [SMALL_STATE(6915)] = 232296, - [SMALL_STATE(6916)] = 232308, - [SMALL_STATE(6917)] = 232320, - [SMALL_STATE(6918)] = 232336, - [SMALL_STATE(6919)] = 232350, - [SMALL_STATE(6920)] = 232366, - [SMALL_STATE(6921)] = 232382, - [SMALL_STATE(6922)] = 232398, - [SMALL_STATE(6923)] = 232414, - [SMALL_STATE(6924)] = 232430, - [SMALL_STATE(6925)] = 232442, - [SMALL_STATE(6926)] = 232458, - [SMALL_STATE(6927)] = 232472, - [SMALL_STATE(6928)] = 232488, - [SMALL_STATE(6929)] = 232500, - [SMALL_STATE(6930)] = 232516, - [SMALL_STATE(6931)] = 232530, - [SMALL_STATE(6932)] = 232542, - [SMALL_STATE(6933)] = 232558, - [SMALL_STATE(6934)] = 232574, - [SMALL_STATE(6935)] = 232590, - [SMALL_STATE(6936)] = 232606, - [SMALL_STATE(6937)] = 232622, - [SMALL_STATE(6938)] = 232638, - [SMALL_STATE(6939)] = 232654, - [SMALL_STATE(6940)] = 232670, - [SMALL_STATE(6941)] = 232686, - [SMALL_STATE(6942)] = 232698, - [SMALL_STATE(6943)] = 232710, - [SMALL_STATE(6944)] = 232722, - [SMALL_STATE(6945)] = 232734, - [SMALL_STATE(6946)] = 232746, - [SMALL_STATE(6947)] = 232762, - [SMALL_STATE(6948)] = 232778, - [SMALL_STATE(6949)] = 232790, - [SMALL_STATE(6950)] = 232802, - [SMALL_STATE(6951)] = 232816, - [SMALL_STATE(6952)] = 232828, - [SMALL_STATE(6953)] = 232844, - [SMALL_STATE(6954)] = 232860, - [SMALL_STATE(6955)] = 232876, - [SMALL_STATE(6956)] = 232892, - [SMALL_STATE(6957)] = 232904, - [SMALL_STATE(6958)] = 232916, - [SMALL_STATE(6959)] = 232932, - [SMALL_STATE(6960)] = 232948, - [SMALL_STATE(6961)] = 232964, - [SMALL_STATE(6962)] = 232976, - [SMALL_STATE(6963)] = 232992, - [SMALL_STATE(6964)] = 233008, - [SMALL_STATE(6965)] = 233024, - [SMALL_STATE(6966)] = 233036, - [SMALL_STATE(6967)] = 233052, - [SMALL_STATE(6968)] = 233068, - [SMALL_STATE(6969)] = 233084, - [SMALL_STATE(6970)] = 233100, - [SMALL_STATE(6971)] = 233114, - [SMALL_STATE(6972)] = 233128, - [SMALL_STATE(6973)] = 233144, - [SMALL_STATE(6974)] = 233156, - [SMALL_STATE(6975)] = 233170, - [SMALL_STATE(6976)] = 233184, - [SMALL_STATE(6977)] = 233196, - [SMALL_STATE(6978)] = 233212, - [SMALL_STATE(6979)] = 233228, - [SMALL_STATE(6980)] = 233240, - [SMALL_STATE(6981)] = 233252, - [SMALL_STATE(6982)] = 233264, - [SMALL_STATE(6983)] = 233276, - [SMALL_STATE(6984)] = 233288, - [SMALL_STATE(6985)] = 233304, - [SMALL_STATE(6986)] = 233316, - [SMALL_STATE(6987)] = 233332, - [SMALL_STATE(6988)] = 233348, - [SMALL_STATE(6989)] = 233360, - [SMALL_STATE(6990)] = 233372, - [SMALL_STATE(6991)] = 233388, - [SMALL_STATE(6992)] = 233404, - [SMALL_STATE(6993)] = 233420, - [SMALL_STATE(6994)] = 233436, - [SMALL_STATE(6995)] = 233452, - [SMALL_STATE(6996)] = 233468, - [SMALL_STATE(6997)] = 233484, - [SMALL_STATE(6998)] = 233500, - [SMALL_STATE(6999)] = 233516, - [SMALL_STATE(7000)] = 233532, - [SMALL_STATE(7001)] = 233548, - [SMALL_STATE(7002)] = 233562, - [SMALL_STATE(7003)] = 233578, - [SMALL_STATE(7004)] = 233594, - [SMALL_STATE(7005)] = 233610, - [SMALL_STATE(7006)] = 233626, - [SMALL_STATE(7007)] = 233640, - [SMALL_STATE(7008)] = 233656, - [SMALL_STATE(7009)] = 233672, - [SMALL_STATE(7010)] = 233686, - [SMALL_STATE(7011)] = 233700, - [SMALL_STATE(7012)] = 233716, - [SMALL_STATE(7013)] = 233728, - [SMALL_STATE(7014)] = 233744, - [SMALL_STATE(7015)] = 233760, - [SMALL_STATE(7016)] = 233776, - [SMALL_STATE(7017)] = 233792, - [SMALL_STATE(7018)] = 233808, - [SMALL_STATE(7019)] = 233820, - [SMALL_STATE(7020)] = 233836, - [SMALL_STATE(7021)] = 233852, - [SMALL_STATE(7022)] = 233866, - [SMALL_STATE(7023)] = 233878, - [SMALL_STATE(7024)] = 233894, - [SMALL_STATE(7025)] = 233908, - [SMALL_STATE(7026)] = 233922, - [SMALL_STATE(7027)] = 233934, - [SMALL_STATE(7028)] = 233950, - [SMALL_STATE(7029)] = 233964, - [SMALL_STATE(7030)] = 233980, - [SMALL_STATE(7031)] = 233996, - [SMALL_STATE(7032)] = 234012, - [SMALL_STATE(7033)] = 234028, - [SMALL_STATE(7034)] = 234044, - [SMALL_STATE(7035)] = 234058, - [SMALL_STATE(7036)] = 234072, - [SMALL_STATE(7037)] = 234084, - [SMALL_STATE(7038)] = 234100, - [SMALL_STATE(7039)] = 234116, - [SMALL_STATE(7040)] = 234132, - [SMALL_STATE(7041)] = 234148, - [SMALL_STATE(7042)] = 234164, - [SMALL_STATE(7043)] = 234178, - [SMALL_STATE(7044)] = 234192, - [SMALL_STATE(7045)] = 234204, - [SMALL_STATE(7046)] = 234220, - [SMALL_STATE(7047)] = 234236, - [SMALL_STATE(7048)] = 234252, - [SMALL_STATE(7049)] = 234268, - [SMALL_STATE(7050)] = 234282, - [SMALL_STATE(7051)] = 234294, - [SMALL_STATE(7052)] = 234308, - [SMALL_STATE(7053)] = 234324, - [SMALL_STATE(7054)] = 234340, - [SMALL_STATE(7055)] = 234354, - [SMALL_STATE(7056)] = 234370, - [SMALL_STATE(7057)] = 234386, - [SMALL_STATE(7058)] = 234400, - [SMALL_STATE(7059)] = 234416, - [SMALL_STATE(7060)] = 234430, - [SMALL_STATE(7061)] = 234446, - [SMALL_STATE(7062)] = 234462, - [SMALL_STATE(7063)] = 234478, - [SMALL_STATE(7064)] = 234494, - [SMALL_STATE(7065)] = 234508, - [SMALL_STATE(7066)] = 234522, - [SMALL_STATE(7067)] = 234538, - [SMALL_STATE(7068)] = 234554, - [SMALL_STATE(7069)] = 234570, - [SMALL_STATE(7070)] = 234586, - [SMALL_STATE(7071)] = 234600, - [SMALL_STATE(7072)] = 234614, - [SMALL_STATE(7073)] = 234626, - [SMALL_STATE(7074)] = 234640, - [SMALL_STATE(7075)] = 234656, - [SMALL_STATE(7076)] = 234672, - [SMALL_STATE(7077)] = 234688, - [SMALL_STATE(7078)] = 234704, - [SMALL_STATE(7079)] = 234718, - [SMALL_STATE(7080)] = 234730, - [SMALL_STATE(7081)] = 234744, - [SMALL_STATE(7082)] = 234760, - [SMALL_STATE(7083)] = 234776, - [SMALL_STATE(7084)] = 234792, - [SMALL_STATE(7085)] = 234808, - [SMALL_STATE(7086)] = 234824, - [SMALL_STATE(7087)] = 234838, - [SMALL_STATE(7088)] = 234852, - [SMALL_STATE(7089)] = 234868, - [SMALL_STATE(7090)] = 234884, - [SMALL_STATE(7091)] = 234900, - [SMALL_STATE(7092)] = 234916, - [SMALL_STATE(7093)] = 234932, - [SMALL_STATE(7094)] = 234946, - [SMALL_STATE(7095)] = 234960, - [SMALL_STATE(7096)] = 234974, - [SMALL_STATE(7097)] = 234986, - [SMALL_STATE(7098)] = 235002, - [SMALL_STATE(7099)] = 235018, - [SMALL_STATE(7100)] = 235034, - [SMALL_STATE(7101)] = 235050, - [SMALL_STATE(7102)] = 235066, - [SMALL_STATE(7103)] = 235080, - [SMALL_STATE(7104)] = 235094, - [SMALL_STATE(7105)] = 235106, - [SMALL_STATE(7106)] = 235122, - [SMALL_STATE(7107)] = 235138, - [SMALL_STATE(7108)] = 235154, - [SMALL_STATE(7109)] = 235170, - [SMALL_STATE(7110)] = 235184, - [SMALL_STATE(7111)] = 235198, - [SMALL_STATE(7112)] = 235214, - [SMALL_STATE(7113)] = 235230, - [SMALL_STATE(7114)] = 235246, - [SMALL_STATE(7115)] = 235262, - [SMALL_STATE(7116)] = 235278, - [SMALL_STATE(7117)] = 235294, - [SMALL_STATE(7118)] = 235308, - [SMALL_STATE(7119)] = 235322, - [SMALL_STATE(7120)] = 235338, - [SMALL_STATE(7121)] = 235354, - [SMALL_STATE(7122)] = 235370, - [SMALL_STATE(7123)] = 235386, - [SMALL_STATE(7124)] = 235402, - [SMALL_STATE(7125)] = 235416, - [SMALL_STATE(7126)] = 235430, - [SMALL_STATE(7127)] = 235446, - [SMALL_STATE(7128)] = 235462, - [SMALL_STATE(7129)] = 235478, - [SMALL_STATE(7130)] = 235490, - [SMALL_STATE(7131)] = 235506, - [SMALL_STATE(7132)] = 235522, - [SMALL_STATE(7133)] = 235536, - [SMALL_STATE(7134)] = 235550, - [SMALL_STATE(7135)] = 235566, - [SMALL_STATE(7136)] = 235582, - [SMALL_STATE(7137)] = 235598, - [SMALL_STATE(7138)] = 235614, - [SMALL_STATE(7139)] = 235628, - [SMALL_STATE(7140)] = 235642, - [SMALL_STATE(7141)] = 235658, - [SMALL_STATE(7142)] = 235674, - [SMALL_STATE(7143)] = 235690, - [SMALL_STATE(7144)] = 235706, - [SMALL_STATE(7145)] = 235720, - [SMALL_STATE(7146)] = 235734, - [SMALL_STATE(7147)] = 235750, - [SMALL_STATE(7148)] = 235766, - [SMALL_STATE(7149)] = 235782, - [SMALL_STATE(7150)] = 235798, - [SMALL_STATE(7151)] = 235814, - [SMALL_STATE(7152)] = 235828, - [SMALL_STATE(7153)] = 235842, - [SMALL_STATE(7154)] = 235858, - [SMALL_STATE(7155)] = 235874, - [SMALL_STATE(7156)] = 235890, - [SMALL_STATE(7157)] = 235906, - [SMALL_STATE(7158)] = 235922, - [SMALL_STATE(7159)] = 235938, - [SMALL_STATE(7160)] = 235954, - [SMALL_STATE(7161)] = 235970, - [SMALL_STATE(7162)] = 235986, - [SMALL_STATE(7163)] = 236002, - [SMALL_STATE(7164)] = 236018, - [SMALL_STATE(7165)] = 236030, - [SMALL_STATE(7166)] = 236046, - [SMALL_STATE(7167)] = 236058, - [SMALL_STATE(7168)] = 236074, - [SMALL_STATE(7169)] = 236086, - [SMALL_STATE(7170)] = 236098, - [SMALL_STATE(7171)] = 236114, - [SMALL_STATE(7172)] = 236128, - [SMALL_STATE(7173)] = 236144, - [SMALL_STATE(7174)] = 236156, - [SMALL_STATE(7175)] = 236172, - [SMALL_STATE(7176)] = 236184, - [SMALL_STATE(7177)] = 236198, - [SMALL_STATE(7178)] = 236214, - [SMALL_STATE(7179)] = 236230, - [SMALL_STATE(7180)] = 236242, - [SMALL_STATE(7181)] = 236256, - [SMALL_STATE(7182)] = 236272, - [SMALL_STATE(7183)] = 236288, - [SMALL_STATE(7184)] = 236304, - [SMALL_STATE(7185)] = 236316, - [SMALL_STATE(7186)] = 236328, - [SMALL_STATE(7187)] = 236344, - [SMALL_STATE(7188)] = 236357, - [SMALL_STATE(7189)] = 236370, - [SMALL_STATE(7190)] = 236383, - [SMALL_STATE(7191)] = 236396, - [SMALL_STATE(7192)] = 236409, - [SMALL_STATE(7193)] = 236422, - [SMALL_STATE(7194)] = 236435, - [SMALL_STATE(7195)] = 236448, - [SMALL_STATE(7196)] = 236461, - [SMALL_STATE(7197)] = 236474, - [SMALL_STATE(7198)] = 236487, - [SMALL_STATE(7199)] = 236500, - [SMALL_STATE(7200)] = 236513, - [SMALL_STATE(7201)] = 236526, - [SMALL_STATE(7202)] = 236537, - [SMALL_STATE(7203)] = 236550, - [SMALL_STATE(7204)] = 236563, - [SMALL_STATE(7205)] = 236576, - [SMALL_STATE(7206)] = 236589, - [SMALL_STATE(7207)] = 236602, - [SMALL_STATE(7208)] = 236615, - [SMALL_STATE(7209)] = 236628, - [SMALL_STATE(7210)] = 236641, - [SMALL_STATE(7211)] = 236654, - [SMALL_STATE(7212)] = 236667, - [SMALL_STATE(7213)] = 236680, - [SMALL_STATE(7214)] = 236693, - [SMALL_STATE(7215)] = 236706, - [SMALL_STATE(7216)] = 236719, - [SMALL_STATE(7217)] = 236732, - [SMALL_STATE(7218)] = 236745, - [SMALL_STATE(7219)] = 236758, - [SMALL_STATE(7220)] = 236771, - [SMALL_STATE(7221)] = 236784, - [SMALL_STATE(7222)] = 236795, - [SMALL_STATE(7223)] = 236808, - [SMALL_STATE(7224)] = 236821, - [SMALL_STATE(7225)] = 236834, - [SMALL_STATE(7226)] = 236847, - [SMALL_STATE(7227)] = 236860, - [SMALL_STATE(7228)] = 236873, - [SMALL_STATE(7229)] = 236886, - [SMALL_STATE(7230)] = 236899, - [SMALL_STATE(7231)] = 236912, - [SMALL_STATE(7232)] = 236925, - [SMALL_STATE(7233)] = 236938, - [SMALL_STATE(7234)] = 236951, - [SMALL_STATE(7235)] = 236964, - [SMALL_STATE(7236)] = 236975, - [SMALL_STATE(7237)] = 236988, - [SMALL_STATE(7238)] = 237001, - [SMALL_STATE(7239)] = 237014, - [SMALL_STATE(7240)] = 237027, - [SMALL_STATE(7241)] = 237040, - [SMALL_STATE(7242)] = 237053, - [SMALL_STATE(7243)] = 237066, - [SMALL_STATE(7244)] = 237079, - [SMALL_STATE(7245)] = 237092, - [SMALL_STATE(7246)] = 237105, - [SMALL_STATE(7247)] = 237118, - [SMALL_STATE(7248)] = 237131, - [SMALL_STATE(7249)] = 237144, - [SMALL_STATE(7250)] = 237157, - [SMALL_STATE(7251)] = 237170, - [SMALL_STATE(7252)] = 237183, - [SMALL_STATE(7253)] = 237196, - [SMALL_STATE(7254)] = 237209, - [SMALL_STATE(7255)] = 237222, - [SMALL_STATE(7256)] = 237235, - [SMALL_STATE(7257)] = 237248, - [SMALL_STATE(7258)] = 237261, - [SMALL_STATE(7259)] = 237274, - [SMALL_STATE(7260)] = 237287, - [SMALL_STATE(7261)] = 237300, - [SMALL_STATE(7262)] = 237313, - [SMALL_STATE(7263)] = 237326, - [SMALL_STATE(7264)] = 237339, - [SMALL_STATE(7265)] = 237352, - [SMALL_STATE(7266)] = 237365, - [SMALL_STATE(7267)] = 237378, - [SMALL_STATE(7268)] = 237391, - [SMALL_STATE(7269)] = 237402, - [SMALL_STATE(7270)] = 237415, - [SMALL_STATE(7271)] = 237428, - [SMALL_STATE(7272)] = 237441, - [SMALL_STATE(7273)] = 237454, - [SMALL_STATE(7274)] = 237467, - [SMALL_STATE(7275)] = 237480, - [SMALL_STATE(7276)] = 237493, - [SMALL_STATE(7277)] = 237506, - [SMALL_STATE(7278)] = 237519, - [SMALL_STATE(7279)] = 237532, - [SMALL_STATE(7280)] = 237545, - [SMALL_STATE(7281)] = 237558, - [SMALL_STATE(7282)] = 237571, - [SMALL_STATE(7283)] = 237584, - [SMALL_STATE(7284)] = 237597, - [SMALL_STATE(7285)] = 237610, - [SMALL_STATE(7286)] = 237623, - [SMALL_STATE(7287)] = 237636, - [SMALL_STATE(7288)] = 237649, - [SMALL_STATE(7289)] = 237662, - [SMALL_STATE(7290)] = 237675, - [SMALL_STATE(7291)] = 237688, - [SMALL_STATE(7292)] = 237701, - [SMALL_STATE(7293)] = 237714, - [SMALL_STATE(7294)] = 237727, - [SMALL_STATE(7295)] = 237740, - [SMALL_STATE(7296)] = 237753, - [SMALL_STATE(7297)] = 237766, - [SMALL_STATE(7298)] = 237779, - [SMALL_STATE(7299)] = 237792, - [SMALL_STATE(7300)] = 237805, - [SMALL_STATE(7301)] = 237818, - [SMALL_STATE(7302)] = 237831, - [SMALL_STATE(7303)] = 237844, - [SMALL_STATE(7304)] = 237857, - [SMALL_STATE(7305)] = 237870, - [SMALL_STATE(7306)] = 237883, - [SMALL_STATE(7307)] = 237896, - [SMALL_STATE(7308)] = 237909, - [SMALL_STATE(7309)] = 237922, - [SMALL_STATE(7310)] = 237935, - [SMALL_STATE(7311)] = 237948, - [SMALL_STATE(7312)] = 237961, - [SMALL_STATE(7313)] = 237974, - [SMALL_STATE(7314)] = 237987, - [SMALL_STATE(7315)] = 238000, - [SMALL_STATE(7316)] = 238013, - [SMALL_STATE(7317)] = 238026, - [SMALL_STATE(7318)] = 238039, - [SMALL_STATE(7319)] = 238052, - [SMALL_STATE(7320)] = 238065, - [SMALL_STATE(7321)] = 238078, - [SMALL_STATE(7322)] = 238091, - [SMALL_STATE(7323)] = 238104, - [SMALL_STATE(7324)] = 238117, - [SMALL_STATE(7325)] = 238130, - [SMALL_STATE(7326)] = 238141, - [SMALL_STATE(7327)] = 238154, - [SMALL_STATE(7328)] = 238167, - [SMALL_STATE(7329)] = 238180, - [SMALL_STATE(7330)] = 238193, - [SMALL_STATE(7331)] = 238206, - [SMALL_STATE(7332)] = 238219, - [SMALL_STATE(7333)] = 238232, - [SMALL_STATE(7334)] = 238245, - [SMALL_STATE(7335)] = 238258, - [SMALL_STATE(7336)] = 238271, - [SMALL_STATE(7337)] = 238284, - [SMALL_STATE(7338)] = 238297, - [SMALL_STATE(7339)] = 238308, - [SMALL_STATE(7340)] = 238321, - [SMALL_STATE(7341)] = 238334, - [SMALL_STATE(7342)] = 238347, - [SMALL_STATE(7343)] = 238360, - [SMALL_STATE(7344)] = 238373, - [SMALL_STATE(7345)] = 238386, - [SMALL_STATE(7346)] = 238399, - [SMALL_STATE(7347)] = 238412, - [SMALL_STATE(7348)] = 238425, - [SMALL_STATE(7349)] = 238438, - [SMALL_STATE(7350)] = 238451, - [SMALL_STATE(7351)] = 238464, - [SMALL_STATE(7352)] = 238477, - [SMALL_STATE(7353)] = 238490, - [SMALL_STATE(7354)] = 238501, - [SMALL_STATE(7355)] = 238514, - [SMALL_STATE(7356)] = 238527, - [SMALL_STATE(7357)] = 238540, - [SMALL_STATE(7358)] = 238553, - [SMALL_STATE(7359)] = 238566, - [SMALL_STATE(7360)] = 238579, - [SMALL_STATE(7361)] = 238592, - [SMALL_STATE(7362)] = 238605, - [SMALL_STATE(7363)] = 238618, - [SMALL_STATE(7364)] = 238631, - [SMALL_STATE(7365)] = 238644, - [SMALL_STATE(7366)] = 238657, - [SMALL_STATE(7367)] = 238670, - [SMALL_STATE(7368)] = 238683, - [SMALL_STATE(7369)] = 238696, - [SMALL_STATE(7370)] = 238709, - [SMALL_STATE(7371)] = 238722, - [SMALL_STATE(7372)] = 238735, - [SMALL_STATE(7373)] = 238748, - [SMALL_STATE(7374)] = 238761, - [SMALL_STATE(7375)] = 238774, - [SMALL_STATE(7376)] = 238787, - [SMALL_STATE(7377)] = 238800, - [SMALL_STATE(7378)] = 238810, - [SMALL_STATE(7379)] = 238820, - [SMALL_STATE(7380)] = 238830, - [SMALL_STATE(7381)] = 238840, - [SMALL_STATE(7382)] = 238850, - [SMALL_STATE(7383)] = 238860, - [SMALL_STATE(7384)] = 238870, - [SMALL_STATE(7385)] = 238880, - [SMALL_STATE(7386)] = 238890, - [SMALL_STATE(7387)] = 238900, - [SMALL_STATE(7388)] = 238910, - [SMALL_STATE(7389)] = 238920, - [SMALL_STATE(7390)] = 238930, - [SMALL_STATE(7391)] = 238940, - [SMALL_STATE(7392)] = 238950, - [SMALL_STATE(7393)] = 238960, - [SMALL_STATE(7394)] = 238970, - [SMALL_STATE(7395)] = 238980, - [SMALL_STATE(7396)] = 238990, - [SMALL_STATE(7397)] = 239000, - [SMALL_STATE(7398)] = 239010, - [SMALL_STATE(7399)] = 239020, - [SMALL_STATE(7400)] = 239030, - [SMALL_STATE(7401)] = 239040, - [SMALL_STATE(7402)] = 239050, - [SMALL_STATE(7403)] = 239060, - [SMALL_STATE(7404)] = 239070, - [SMALL_STATE(7405)] = 239080, - [SMALL_STATE(7406)] = 239090, - [SMALL_STATE(7407)] = 239100, - [SMALL_STATE(7408)] = 239110, - [SMALL_STATE(7409)] = 239120, - [SMALL_STATE(7410)] = 239130, - [SMALL_STATE(7411)] = 239140, - [SMALL_STATE(7412)] = 239150, - [SMALL_STATE(7413)] = 239160, - [SMALL_STATE(7414)] = 239170, - [SMALL_STATE(7415)] = 239180, - [SMALL_STATE(7416)] = 239190, - [SMALL_STATE(7417)] = 239200, - [SMALL_STATE(7418)] = 239210, - [SMALL_STATE(7419)] = 239220, - [SMALL_STATE(7420)] = 239230, - [SMALL_STATE(7421)] = 239240, - [SMALL_STATE(7422)] = 239250, - [SMALL_STATE(7423)] = 239260, - [SMALL_STATE(7424)] = 239270, - [SMALL_STATE(7425)] = 239280, - [SMALL_STATE(7426)] = 239290, - [SMALL_STATE(7427)] = 239300, - [SMALL_STATE(7428)] = 239310, - [SMALL_STATE(7429)] = 239320, - [SMALL_STATE(7430)] = 239330, - [SMALL_STATE(7431)] = 239340, - [SMALL_STATE(7432)] = 239350, - [SMALL_STATE(7433)] = 239360, - [SMALL_STATE(7434)] = 239370, - [SMALL_STATE(7435)] = 239380, - [SMALL_STATE(7436)] = 239390, - [SMALL_STATE(7437)] = 239400, - [SMALL_STATE(7438)] = 239410, - [SMALL_STATE(7439)] = 239420, - [SMALL_STATE(7440)] = 239430, - [SMALL_STATE(7441)] = 239440, - [SMALL_STATE(7442)] = 239450, - [SMALL_STATE(7443)] = 239460, - [SMALL_STATE(7444)] = 239470, - [SMALL_STATE(7445)] = 239480, - [SMALL_STATE(7446)] = 239490, - [SMALL_STATE(7447)] = 239500, - [SMALL_STATE(7448)] = 239510, - [SMALL_STATE(7449)] = 239520, - [SMALL_STATE(7450)] = 239530, - [SMALL_STATE(7451)] = 239540, - [SMALL_STATE(7452)] = 239550, - [SMALL_STATE(7453)] = 239560, - [SMALL_STATE(7454)] = 239570, - [SMALL_STATE(7455)] = 239580, - [SMALL_STATE(7456)] = 239590, - [SMALL_STATE(7457)] = 239600, - [SMALL_STATE(7458)] = 239610, - [SMALL_STATE(7459)] = 239620, - [SMALL_STATE(7460)] = 239630, - [SMALL_STATE(7461)] = 239640, - [SMALL_STATE(7462)] = 239650, - [SMALL_STATE(7463)] = 239660, - [SMALL_STATE(7464)] = 239670, - [SMALL_STATE(7465)] = 239680, - [SMALL_STATE(7466)] = 239690, - [SMALL_STATE(7467)] = 239700, - [SMALL_STATE(7468)] = 239710, - [SMALL_STATE(7469)] = 239720, - [SMALL_STATE(7470)] = 239730, - [SMALL_STATE(7471)] = 239740, - [SMALL_STATE(7472)] = 239750, - [SMALL_STATE(7473)] = 239760, - [SMALL_STATE(7474)] = 239770, - [SMALL_STATE(7475)] = 239780, - [SMALL_STATE(7476)] = 239790, - [SMALL_STATE(7477)] = 239800, - [SMALL_STATE(7478)] = 239810, - [SMALL_STATE(7479)] = 239820, - [SMALL_STATE(7480)] = 239830, - [SMALL_STATE(7481)] = 239840, - [SMALL_STATE(7482)] = 239850, - [SMALL_STATE(7483)] = 239860, - [SMALL_STATE(7484)] = 239870, - [SMALL_STATE(7485)] = 239880, - [SMALL_STATE(7486)] = 239890, - [SMALL_STATE(7487)] = 239900, - [SMALL_STATE(7488)] = 239910, - [SMALL_STATE(7489)] = 239920, - [SMALL_STATE(7490)] = 239930, - [SMALL_STATE(7491)] = 239940, - [SMALL_STATE(7492)] = 239950, - [SMALL_STATE(7493)] = 239960, - [SMALL_STATE(7494)] = 239970, - [SMALL_STATE(7495)] = 239980, - [SMALL_STATE(7496)] = 239990, - [SMALL_STATE(7497)] = 240000, - [SMALL_STATE(7498)] = 240010, - [SMALL_STATE(7499)] = 240020, - [SMALL_STATE(7500)] = 240030, - [SMALL_STATE(7501)] = 240040, - [SMALL_STATE(7502)] = 240050, - [SMALL_STATE(7503)] = 240060, - [SMALL_STATE(7504)] = 240070, - [SMALL_STATE(7505)] = 240080, - [SMALL_STATE(7506)] = 240090, - [SMALL_STATE(7507)] = 240100, - [SMALL_STATE(7508)] = 240110, - [SMALL_STATE(7509)] = 240120, - [SMALL_STATE(7510)] = 240130, - [SMALL_STATE(7511)] = 240140, - [SMALL_STATE(7512)] = 240150, - [SMALL_STATE(7513)] = 240160, - [SMALL_STATE(7514)] = 240170, - [SMALL_STATE(7515)] = 240180, - [SMALL_STATE(7516)] = 240190, - [SMALL_STATE(7517)] = 240200, - [SMALL_STATE(7518)] = 240210, - [SMALL_STATE(7519)] = 240220, - [SMALL_STATE(7520)] = 240230, - [SMALL_STATE(7521)] = 240240, - [SMALL_STATE(7522)] = 240250, - [SMALL_STATE(7523)] = 240260, - [SMALL_STATE(7524)] = 240270, - [SMALL_STATE(7525)] = 240280, - [SMALL_STATE(7526)] = 240290, - [SMALL_STATE(7527)] = 240300, - [SMALL_STATE(7528)] = 240310, - [SMALL_STATE(7529)] = 240320, - [SMALL_STATE(7530)] = 240330, - [SMALL_STATE(7531)] = 240340, - [SMALL_STATE(7532)] = 240350, - [SMALL_STATE(7533)] = 240360, - [SMALL_STATE(7534)] = 240370, - [SMALL_STATE(7535)] = 240380, - [SMALL_STATE(7536)] = 240390, - [SMALL_STATE(7537)] = 240400, - [SMALL_STATE(7538)] = 240410, - [SMALL_STATE(7539)] = 240420, - [SMALL_STATE(7540)] = 240430, - [SMALL_STATE(7541)] = 240440, - [SMALL_STATE(7542)] = 240450, - [SMALL_STATE(7543)] = 240460, - [SMALL_STATE(7544)] = 240470, - [SMALL_STATE(7545)] = 240480, - [SMALL_STATE(7546)] = 240490, - [SMALL_STATE(7547)] = 240500, - [SMALL_STATE(7548)] = 240510, - [SMALL_STATE(7549)] = 240520, - [SMALL_STATE(7550)] = 240530, - [SMALL_STATE(7551)] = 240540, - [SMALL_STATE(7552)] = 240550, - [SMALL_STATE(7553)] = 240560, - [SMALL_STATE(7554)] = 240570, - [SMALL_STATE(7555)] = 240580, - [SMALL_STATE(7556)] = 240590, - [SMALL_STATE(7557)] = 240600, - [SMALL_STATE(7558)] = 240610, - [SMALL_STATE(7559)] = 240620, - [SMALL_STATE(7560)] = 240630, - [SMALL_STATE(7561)] = 240640, - [SMALL_STATE(7562)] = 240650, - [SMALL_STATE(7563)] = 240660, - [SMALL_STATE(7564)] = 240670, - [SMALL_STATE(7565)] = 240680, - [SMALL_STATE(7566)] = 240690, - [SMALL_STATE(7567)] = 240700, - [SMALL_STATE(7568)] = 240710, - [SMALL_STATE(7569)] = 240720, - [SMALL_STATE(7570)] = 240730, - [SMALL_STATE(7571)] = 240740, - [SMALL_STATE(7572)] = 240750, - [SMALL_STATE(7573)] = 240760, - [SMALL_STATE(7574)] = 240770, - [SMALL_STATE(7575)] = 240780, - [SMALL_STATE(7576)] = 240790, - [SMALL_STATE(7577)] = 240800, - [SMALL_STATE(7578)] = 240810, - [SMALL_STATE(7579)] = 240820, - [SMALL_STATE(7580)] = 240830, - [SMALL_STATE(7581)] = 240840, - [SMALL_STATE(7582)] = 240850, - [SMALL_STATE(7583)] = 240860, - [SMALL_STATE(7584)] = 240870, - [SMALL_STATE(7585)] = 240880, - [SMALL_STATE(7586)] = 240890, - [SMALL_STATE(7587)] = 240900, - [SMALL_STATE(7588)] = 240910, - [SMALL_STATE(7589)] = 240920, - [SMALL_STATE(7590)] = 240930, - [SMALL_STATE(7591)] = 240940, - [SMALL_STATE(7592)] = 240950, - [SMALL_STATE(7593)] = 240960, - [SMALL_STATE(7594)] = 240970, - [SMALL_STATE(7595)] = 240980, - [SMALL_STATE(7596)] = 240990, - [SMALL_STATE(7597)] = 241000, - [SMALL_STATE(7598)] = 241010, - [SMALL_STATE(7599)] = 241020, - [SMALL_STATE(7600)] = 241030, - [SMALL_STATE(7601)] = 241040, - [SMALL_STATE(7602)] = 241050, - [SMALL_STATE(7603)] = 241060, - [SMALL_STATE(7604)] = 241070, - [SMALL_STATE(7605)] = 241080, - [SMALL_STATE(7606)] = 241090, - [SMALL_STATE(7607)] = 241100, - [SMALL_STATE(7608)] = 241110, - [SMALL_STATE(7609)] = 241120, - [SMALL_STATE(7610)] = 241130, - [SMALL_STATE(7611)] = 241140, - [SMALL_STATE(7612)] = 241150, - [SMALL_STATE(7613)] = 241160, - [SMALL_STATE(7614)] = 241170, - [SMALL_STATE(7615)] = 241180, - [SMALL_STATE(7616)] = 241190, - [SMALL_STATE(7617)] = 241200, - [SMALL_STATE(7618)] = 241210, - [SMALL_STATE(7619)] = 241220, - [SMALL_STATE(7620)] = 241230, - [SMALL_STATE(7621)] = 241240, - [SMALL_STATE(7622)] = 241250, - [SMALL_STATE(7623)] = 241260, - [SMALL_STATE(7624)] = 241270, - [SMALL_STATE(7625)] = 241280, - [SMALL_STATE(7626)] = 241290, - [SMALL_STATE(7627)] = 241300, - [SMALL_STATE(7628)] = 241310, - [SMALL_STATE(7629)] = 241320, - [SMALL_STATE(7630)] = 241330, - [SMALL_STATE(7631)] = 241340, - [SMALL_STATE(7632)] = 241350, - [SMALL_STATE(7633)] = 241360, - [SMALL_STATE(7634)] = 241370, - [SMALL_STATE(7635)] = 241380, - [SMALL_STATE(7636)] = 241390, - [SMALL_STATE(7637)] = 241400, - [SMALL_STATE(7638)] = 241410, - [SMALL_STATE(7639)] = 241420, - [SMALL_STATE(7640)] = 241430, - [SMALL_STATE(7641)] = 241440, - [SMALL_STATE(7642)] = 241450, - [SMALL_STATE(7643)] = 241460, - [SMALL_STATE(7644)] = 241470, - [SMALL_STATE(7645)] = 241480, - [SMALL_STATE(7646)] = 241490, - [SMALL_STATE(7647)] = 241500, - [SMALL_STATE(7648)] = 241510, - [SMALL_STATE(7649)] = 241520, - [SMALL_STATE(7650)] = 241530, - [SMALL_STATE(7651)] = 241540, - [SMALL_STATE(7652)] = 241550, - [SMALL_STATE(7653)] = 241560, - [SMALL_STATE(7654)] = 241570, - [SMALL_STATE(7655)] = 241580, - [SMALL_STATE(7656)] = 241590, - [SMALL_STATE(7657)] = 241600, - [SMALL_STATE(7658)] = 241610, - [SMALL_STATE(7659)] = 241620, - [SMALL_STATE(7660)] = 241630, - [SMALL_STATE(7661)] = 241640, - [SMALL_STATE(7662)] = 241650, - [SMALL_STATE(7663)] = 241660, - [SMALL_STATE(7664)] = 241670, - [SMALL_STATE(7665)] = 241680, - [SMALL_STATE(7666)] = 241690, - [SMALL_STATE(7667)] = 241700, - [SMALL_STATE(7668)] = 241710, - [SMALL_STATE(7669)] = 241720, - [SMALL_STATE(7670)] = 241730, - [SMALL_STATE(7671)] = 241740, - [SMALL_STATE(7672)] = 241750, - [SMALL_STATE(7673)] = 241760, - [SMALL_STATE(7674)] = 241770, - [SMALL_STATE(7675)] = 241780, - [SMALL_STATE(7676)] = 241790, - [SMALL_STATE(7677)] = 241800, - [SMALL_STATE(7678)] = 241810, - [SMALL_STATE(7679)] = 241820, - [SMALL_STATE(7680)] = 241830, - [SMALL_STATE(7681)] = 241840, - [SMALL_STATE(7682)] = 241850, - [SMALL_STATE(7683)] = 241860, - [SMALL_STATE(7684)] = 241870, - [SMALL_STATE(7685)] = 241880, - [SMALL_STATE(7686)] = 241890, - [SMALL_STATE(7687)] = 241900, - [SMALL_STATE(7688)] = 241910, - [SMALL_STATE(7689)] = 241920, - [SMALL_STATE(7690)] = 241930, - [SMALL_STATE(7691)] = 241940, - [SMALL_STATE(7692)] = 241950, - [SMALL_STATE(7693)] = 241960, - [SMALL_STATE(7694)] = 241970, - [SMALL_STATE(7695)] = 241980, - [SMALL_STATE(7696)] = 241990, - [SMALL_STATE(7697)] = 242000, - [SMALL_STATE(7698)] = 242010, - [SMALL_STATE(7699)] = 242020, - [SMALL_STATE(7700)] = 242030, - [SMALL_STATE(7701)] = 242040, - [SMALL_STATE(7702)] = 242050, - [SMALL_STATE(7703)] = 242060, - [SMALL_STATE(7704)] = 242070, - [SMALL_STATE(7705)] = 242080, - [SMALL_STATE(7706)] = 242090, - [SMALL_STATE(7707)] = 242100, - [SMALL_STATE(7708)] = 242110, - [SMALL_STATE(7709)] = 242120, - [SMALL_STATE(7710)] = 242130, - [SMALL_STATE(7711)] = 242140, - [SMALL_STATE(7712)] = 242150, - [SMALL_STATE(7713)] = 242160, - [SMALL_STATE(7714)] = 242170, - [SMALL_STATE(7715)] = 242180, - [SMALL_STATE(7716)] = 242190, - [SMALL_STATE(7717)] = 242200, - [SMALL_STATE(7718)] = 242210, - [SMALL_STATE(7719)] = 242220, - [SMALL_STATE(7720)] = 242230, - [SMALL_STATE(7721)] = 242240, - [SMALL_STATE(7722)] = 242250, - [SMALL_STATE(7723)] = 242260, - [SMALL_STATE(7724)] = 242270, - [SMALL_STATE(7725)] = 242280, - [SMALL_STATE(7726)] = 242290, + [SMALL_STATE(1585)] = 0, + [SMALL_STATE(1586)] = 73, + [SMALL_STATE(1587)] = 146, + [SMALL_STATE(1588)] = 219, + [SMALL_STATE(1589)] = 292, + [SMALL_STATE(1590)] = 365, + [SMALL_STATE(1591)] = 438, + [SMALL_STATE(1592)] = 511, + [SMALL_STATE(1593)] = 586, + [SMALL_STATE(1594)] = 659, + [SMALL_STATE(1595)] = 732, + [SMALL_STATE(1596)] = 805, + [SMALL_STATE(1597)] = 878, + [SMALL_STATE(1598)] = 951, + [SMALL_STATE(1599)] = 1024, + [SMALL_STATE(1600)] = 1097, + [SMALL_STATE(1601)] = 1170, + [SMALL_STATE(1602)] = 1243, + [SMALL_STATE(1603)] = 1316, + [SMALL_STATE(1604)] = 1389, + [SMALL_STATE(1605)] = 1462, + [SMALL_STATE(1606)] = 1537, + [SMALL_STATE(1607)] = 1610, + [SMALL_STATE(1608)] = 1683, + [SMALL_STATE(1609)] = 1756, + [SMALL_STATE(1610)] = 1831, + [SMALL_STATE(1611)] = 1906, + [SMALL_STATE(1612)] = 1979, + [SMALL_STATE(1613)] = 2052, + [SMALL_STATE(1614)] = 2125, + [SMALL_STATE(1615)] = 2198, + [SMALL_STATE(1616)] = 2271, + [SMALL_STATE(1617)] = 2344, + [SMALL_STATE(1618)] = 2419, + [SMALL_STATE(1619)] = 2492, + [SMALL_STATE(1620)] = 2565, + [SMALL_STATE(1621)] = 2640, + [SMALL_STATE(1622)] = 2713, + [SMALL_STATE(1623)] = 2786, + [SMALL_STATE(1624)] = 2859, + [SMALL_STATE(1625)] = 2932, + [SMALL_STATE(1626)] = 3005, + [SMALL_STATE(1627)] = 3078, + [SMALL_STATE(1628)] = 3151, + [SMALL_STATE(1629)] = 3224, + [SMALL_STATE(1630)] = 3297, + [SMALL_STATE(1631)] = 3370, + [SMALL_STATE(1632)] = 3443, + [SMALL_STATE(1633)] = 3516, + [SMALL_STATE(1634)] = 3589, + [SMALL_STATE(1635)] = 3662, + [SMALL_STATE(1636)] = 3735, + [SMALL_STATE(1637)] = 3808, + [SMALL_STATE(1638)] = 3881, + [SMALL_STATE(1639)] = 3954, + [SMALL_STATE(1640)] = 4027, + [SMALL_STATE(1641)] = 4100, + [SMALL_STATE(1642)] = 4173, + [SMALL_STATE(1643)] = 4246, + [SMALL_STATE(1644)] = 4319, + [SMALL_STATE(1645)] = 4392, + [SMALL_STATE(1646)] = 4465, + [SMALL_STATE(1647)] = 4538, + [SMALL_STATE(1648)] = 4611, + [SMALL_STATE(1649)] = 4684, + [SMALL_STATE(1650)] = 4757, + [SMALL_STATE(1651)] = 4830, + [SMALL_STATE(1652)] = 4903, + [SMALL_STATE(1653)] = 4978, + [SMALL_STATE(1654)] = 5051, + [SMALL_STATE(1655)] = 5124, + [SMALL_STATE(1656)] = 5197, + [SMALL_STATE(1657)] = 5270, + [SMALL_STATE(1658)] = 5343, + [SMALL_STATE(1659)] = 5416, + [SMALL_STATE(1660)] = 5491, + [SMALL_STATE(1661)] = 5564, + [SMALL_STATE(1662)] = 5637, + [SMALL_STATE(1663)] = 5710, + [SMALL_STATE(1664)] = 5783, + [SMALL_STATE(1665)] = 5858, + [SMALL_STATE(1666)] = 5941, + [SMALL_STATE(1667)] = 6014, + [SMALL_STATE(1668)] = 6087, + [SMALL_STATE(1669)] = 6160, + [SMALL_STATE(1670)] = 6233, + [SMALL_STATE(1671)] = 6308, + [SMALL_STATE(1672)] = 6381, + [SMALL_STATE(1673)] = 6454, + [SMALL_STATE(1674)] = 6527, + [SMALL_STATE(1675)] = 6610, + [SMALL_STATE(1676)] = 6683, + [SMALL_STATE(1677)] = 6758, + [SMALL_STATE(1678)] = 6831, + [SMALL_STATE(1679)] = 6904, + [SMALL_STATE(1680)] = 6977, + [SMALL_STATE(1681)] = 7050, + [SMALL_STATE(1682)] = 7123, + [SMALL_STATE(1683)] = 7196, + [SMALL_STATE(1684)] = 7269, + [SMALL_STATE(1685)] = 7342, + [SMALL_STATE(1686)] = 7415, + [SMALL_STATE(1687)] = 7488, + [SMALL_STATE(1688)] = 7561, + [SMALL_STATE(1689)] = 7634, + [SMALL_STATE(1690)] = 7707, + [SMALL_STATE(1691)] = 7782, + [SMALL_STATE(1692)] = 7855, + [SMALL_STATE(1693)] = 7928, + [SMALL_STATE(1694)] = 8001, + [SMALL_STATE(1695)] = 8074, + [SMALL_STATE(1696)] = 8147, + [SMALL_STATE(1697)] = 8220, + [SMALL_STATE(1698)] = 8300, + [SMALL_STATE(1699)] = 8372, + [SMALL_STATE(1700)] = 8444, + [SMALL_STATE(1701)] = 8516, + [SMALL_STATE(1702)] = 8588, + [SMALL_STATE(1703)] = 8660, + [SMALL_STATE(1704)] = 8732, + [SMALL_STATE(1705)] = 8804, + [SMALL_STATE(1706)] = 8884, + [SMALL_STATE(1707)] = 8956, + [SMALL_STATE(1708)] = 9028, + [SMALL_STATE(1709)] = 9100, + [SMALL_STATE(1710)] = 9172, + [SMALL_STATE(1711)] = 9244, + [SMALL_STATE(1712)] = 9316, + [SMALL_STATE(1713)] = 9388, + [SMALL_STATE(1714)] = 9460, + [SMALL_STATE(1715)] = 9532, + [SMALL_STATE(1716)] = 9612, + [SMALL_STATE(1717)] = 9692, + [SMALL_STATE(1718)] = 9772, + [SMALL_STATE(1719)] = 9844, + [SMALL_STATE(1720)] = 9916, + [SMALL_STATE(1721)] = 9988, + [SMALL_STATE(1722)] = 10060, + [SMALL_STATE(1723)] = 10132, + [SMALL_STATE(1724)] = 10204, + [SMALL_STATE(1725)] = 10276, + [SMALL_STATE(1726)] = 10348, + [SMALL_STATE(1727)] = 10420, + [SMALL_STATE(1728)] = 10492, + [SMALL_STATE(1729)] = 10564, + [SMALL_STATE(1730)] = 10636, + [SMALL_STATE(1731)] = 10708, + [SMALL_STATE(1732)] = 10780, + [SMALL_STATE(1733)] = 10852, + [SMALL_STATE(1734)] = 10932, + [SMALL_STATE(1735)] = 11004, + [SMALL_STATE(1736)] = 11076, + [SMALL_STATE(1737)] = 11148, + [SMALL_STATE(1738)] = 11220, + [SMALL_STATE(1739)] = 11292, + [SMALL_STATE(1740)] = 11366, + [SMALL_STATE(1741)] = 11438, + [SMALL_STATE(1742)] = 11582, + [SMALL_STATE(1743)] = 11726, + [SMALL_STATE(1744)] = 11798, + [SMALL_STATE(1745)] = 11870, + [SMALL_STATE(1746)] = 11950, + [SMALL_STATE(1747)] = 12022, + [SMALL_STATE(1748)] = 12094, + [SMALL_STATE(1749)] = 12166, + [SMALL_STATE(1750)] = 12238, + [SMALL_STATE(1751)] = 12310, + [SMALL_STATE(1752)] = 12382, + [SMALL_STATE(1753)] = 12454, + [SMALL_STATE(1754)] = 12526, + [SMALL_STATE(1755)] = 12598, + [SMALL_STATE(1756)] = 12670, + [SMALL_STATE(1757)] = 12742, + [SMALL_STATE(1758)] = 12814, + [SMALL_STATE(1759)] = 12886, + [SMALL_STATE(1760)] = 12958, + [SMALL_STATE(1761)] = 13030, + [SMALL_STATE(1762)] = 13102, + [SMALL_STATE(1763)] = 13174, + [SMALL_STATE(1764)] = 13246, + [SMALL_STATE(1765)] = 13318, + [SMALL_STATE(1766)] = 13390, + [SMALL_STATE(1767)] = 13462, + [SMALL_STATE(1768)] = 13534, + [SMALL_STATE(1769)] = 13606, + [SMALL_STATE(1770)] = 13678, + [SMALL_STATE(1771)] = 13750, + [SMALL_STATE(1772)] = 13822, + [SMALL_STATE(1773)] = 13894, + [SMALL_STATE(1774)] = 13966, + [SMALL_STATE(1775)] = 14038, + [SMALL_STATE(1776)] = 14110, + [SMALL_STATE(1777)] = 14182, + [SMALL_STATE(1778)] = 14254, + [SMALL_STATE(1779)] = 14326, + [SMALL_STATE(1780)] = 14398, + [SMALL_STATE(1781)] = 14470, + [SMALL_STATE(1782)] = 14542, + [SMALL_STATE(1783)] = 14614, + [SMALL_STATE(1784)] = 14686, + [SMALL_STATE(1785)] = 14766, + [SMALL_STATE(1786)] = 14838, + [SMALL_STATE(1787)] = 14910, + [SMALL_STATE(1788)] = 14982, + [SMALL_STATE(1789)] = 15054, + [SMALL_STATE(1790)] = 15126, + [SMALL_STATE(1791)] = 15206, + [SMALL_STATE(1792)] = 15278, + [SMALL_STATE(1793)] = 15350, + [SMALL_STATE(1794)] = 15422, + [SMALL_STATE(1795)] = 15494, + [SMALL_STATE(1796)] = 15566, + [SMALL_STATE(1797)] = 15638, + [SMALL_STATE(1798)] = 15710, + [SMALL_STATE(1799)] = 15782, + [SMALL_STATE(1800)] = 15854, + [SMALL_STATE(1801)] = 15926, + [SMALL_STATE(1802)] = 15998, + [SMALL_STATE(1803)] = 16070, + [SMALL_STATE(1804)] = 16142, + [SMALL_STATE(1805)] = 16214, + [SMALL_STATE(1806)] = 16294, + [SMALL_STATE(1807)] = 16366, + [SMALL_STATE(1808)] = 16438, + [SMALL_STATE(1809)] = 16510, + [SMALL_STATE(1810)] = 16582, + [SMALL_STATE(1811)] = 16654, + [SMALL_STATE(1812)] = 16726, + [SMALL_STATE(1813)] = 16798, + [SMALL_STATE(1814)] = 16878, + [SMALL_STATE(1815)] = 16950, + [SMALL_STATE(1816)] = 17022, + [SMALL_STATE(1817)] = 17094, + [SMALL_STATE(1818)] = 17174, + [SMALL_STATE(1819)] = 17254, + [SMALL_STATE(1820)] = 17326, + [SMALL_STATE(1821)] = 17398, + [SMALL_STATE(1822)] = 17470, + [SMALL_STATE(1823)] = 17542, + [SMALL_STATE(1824)] = 17614, + [SMALL_STATE(1825)] = 17686, + [SMALL_STATE(1826)] = 17758, + [SMALL_STATE(1827)] = 17830, + [SMALL_STATE(1828)] = 17902, + [SMALL_STATE(1829)] = 17974, + [SMALL_STATE(1830)] = 18046, + [SMALL_STATE(1831)] = 18118, + [SMALL_STATE(1832)] = 18198, + [SMALL_STATE(1833)] = 18278, + [SMALL_STATE(1834)] = 18350, + [SMALL_STATE(1835)] = 18422, + [SMALL_STATE(1836)] = 18494, + [SMALL_STATE(1837)] = 18574, + [SMALL_STATE(1838)] = 18654, + [SMALL_STATE(1839)] = 18734, + [SMALL_STATE(1840)] = 18806, + [SMALL_STATE(1841)] = 18886, + [SMALL_STATE(1842)] = 18958, + [SMALL_STATE(1843)] = 19030, + [SMALL_STATE(1844)] = 19102, + [SMALL_STATE(1845)] = 19174, + [SMALL_STATE(1846)] = 19254, + [SMALL_STATE(1847)] = 19334, + [SMALL_STATE(1848)] = 19414, + [SMALL_STATE(1849)] = 19494, + [SMALL_STATE(1850)] = 19574, + [SMALL_STATE(1851)] = 19654, + [SMALL_STATE(1852)] = 19734, + [SMALL_STATE(1853)] = 19814, + [SMALL_STATE(1854)] = 19894, + [SMALL_STATE(1855)] = 19974, + [SMALL_STATE(1856)] = 20054, + [SMALL_STATE(1857)] = 20134, + [SMALL_STATE(1858)] = 20214, + [SMALL_STATE(1859)] = 20294, + [SMALL_STATE(1860)] = 20374, + [SMALL_STATE(1861)] = 20454, + [SMALL_STATE(1862)] = 20534, + [SMALL_STATE(1863)] = 20614, + [SMALL_STATE(1864)] = 20694, + [SMALL_STATE(1865)] = 20774, + [SMALL_STATE(1866)] = 20854, + [SMALL_STATE(1867)] = 20934, + [SMALL_STATE(1868)] = 21014, + [SMALL_STATE(1869)] = 21094, + [SMALL_STATE(1870)] = 21174, + [SMALL_STATE(1871)] = 21254, + [SMALL_STATE(1872)] = 21334, + [SMALL_STATE(1873)] = 21414, + [SMALL_STATE(1874)] = 21486, + [SMALL_STATE(1875)] = 21566, + [SMALL_STATE(1876)] = 21638, + [SMALL_STATE(1877)] = 21718, + [SMALL_STATE(1878)] = 21798, + [SMALL_STATE(1879)] = 21878, + [SMALL_STATE(1880)] = 21950, + [SMALL_STATE(1881)] = 22022, + [SMALL_STATE(1882)] = 22094, + [SMALL_STATE(1883)] = 22166, + [SMALL_STATE(1884)] = 22238, + [SMALL_STATE(1885)] = 22310, + [SMALL_STATE(1886)] = 22382, + [SMALL_STATE(1887)] = 22454, + [SMALL_STATE(1888)] = 22526, + [SMALL_STATE(1889)] = 22598, + [SMALL_STATE(1890)] = 22670, + [SMALL_STATE(1891)] = 22742, + [SMALL_STATE(1892)] = 22814, + [SMALL_STATE(1893)] = 22886, + [SMALL_STATE(1894)] = 22958, + [SMALL_STATE(1895)] = 23030, + [SMALL_STATE(1896)] = 23102, + [SMALL_STATE(1897)] = 23174, + [SMALL_STATE(1898)] = 23253, + [SMALL_STATE(1899)] = 23332, + [SMALL_STATE(1900)] = 23409, + [SMALL_STATE(1901)] = 23480, + [SMALL_STATE(1902)] = 23551, + [SMALL_STATE(1903)] = 23630, + [SMALL_STATE(1904)] = 23709, + [SMALL_STATE(1905)] = 23788, + [SMALL_STATE(1906)] = 23865, + [SMALL_STATE(1907)] = 23938, + [SMALL_STATE(1908)] = 24017, + [SMALL_STATE(1909)] = 24094, + [SMALL_STATE(1910)] = 24171, + [SMALL_STATE(1911)] = 24250, + [SMALL_STATE(1912)] = 24327, + [SMALL_STATE(1913)] = 24404, + [SMALL_STATE(1914)] = 24483, + [SMALL_STATE(1915)] = 24562, + [SMALL_STATE(1916)] = 24639, + [SMALL_STATE(1917)] = 24716, + [SMALL_STATE(1918)] = 24793, + [SMALL_STATE(1919)] = 24870, + [SMALL_STATE(1920)] = 24947, + [SMALL_STATE(1921)] = 25024, + [SMALL_STATE(1922)] = 25101, + [SMALL_STATE(1923)] = 25178, + [SMALL_STATE(1924)] = 25255, + [SMALL_STATE(1925)] = 25332, + [SMALL_STATE(1926)] = 25411, + [SMALL_STATE(1927)] = 25490, + [SMALL_STATE(1928)] = 25567, + [SMALL_STATE(1929)] = 25644, + [SMALL_STATE(1930)] = 25719, + [SMALL_STATE(1931)] = 25824, + [SMALL_STATE(1932)] = 25901, + [SMALL_STATE(1933)] = 25972, + [SMALL_STATE(1934)] = 26049, + [SMALL_STATE(1935)] = 26126, + [SMALL_STATE(1936)] = 26203, + [SMALL_STATE(1937)] = 26280, + [SMALL_STATE(1938)] = 26359, + [SMALL_STATE(1939)] = 26464, + [SMALL_STATE(1940)] = 26605, + [SMALL_STATE(1941)] = 26746, + [SMALL_STATE(1942)] = 26823, + [SMALL_STATE(1943)] = 26900, + [SMALL_STATE(1944)] = 26979, + [SMALL_STATE(1945)] = 27120, + [SMALL_STATE(1946)] = 27197, + [SMALL_STATE(1947)] = 27276, + [SMALL_STATE(1948)] = 27353, + [SMALL_STATE(1949)] = 27432, + [SMALL_STATE(1950)] = 27509, + [SMALL_STATE(1951)] = 27586, + [SMALL_STATE(1952)] = 27663, + [SMALL_STATE(1953)] = 27740, + [SMALL_STATE(1954)] = 27817, + [SMALL_STATE(1955)] = 27894, + [SMALL_STATE(1956)] = 27971, + [SMALL_STATE(1957)] = 28046, + [SMALL_STATE(1958)] = 28151, + [SMALL_STATE(1959)] = 28228, + [SMALL_STATE(1960)] = 28305, + [SMALL_STATE(1961)] = 28382, + [SMALL_STATE(1962)] = 28459, + [SMALL_STATE(1963)] = 28538, + [SMALL_STATE(1964)] = 28615, + [SMALL_STATE(1965)] = 28690, + [SMALL_STATE(1966)] = 28769, + [SMALL_STATE(1967)] = 28846, + [SMALL_STATE(1968)] = 28987, + [SMALL_STATE(1969)] = 29064, + [SMALL_STATE(1970)] = 29141, + [SMALL_STATE(1971)] = 29218, + [SMALL_STATE(1972)] = 29297, + [SMALL_STATE(1973)] = 29374, + [SMALL_STATE(1974)] = 29453, + [SMALL_STATE(1975)] = 29530, + [SMALL_STATE(1976)] = 29609, + [SMALL_STATE(1977)] = 29686, + [SMALL_STATE(1978)] = 29763, + [SMALL_STATE(1979)] = 29842, + [SMALL_STATE(1980)] = 29919, + [SMALL_STATE(1981)] = 29994, + [SMALL_STATE(1982)] = 30071, + [SMALL_STATE(1983)] = 30150, + [SMALL_STATE(1984)] = 30255, + [SMALL_STATE(1985)] = 30332, + [SMALL_STATE(1986)] = 30409, + [SMALL_STATE(1987)] = 30486, + [SMALL_STATE(1988)] = 30565, + [SMALL_STATE(1989)] = 30642, + [SMALL_STATE(1990)] = 30719, + [SMALL_STATE(1991)] = 30798, + [SMALL_STATE(1992)] = 30875, + [SMALL_STATE(1993)] = 30954, + [SMALL_STATE(1994)] = 31033, + [SMALL_STATE(1995)] = 31112, + [SMALL_STATE(1996)] = 31191, + [SMALL_STATE(1997)] = 31262, + [SMALL_STATE(1998)] = 31339, + [SMALL_STATE(1999)] = 31418, + [SMALL_STATE(2000)] = 31520, + [SMALL_STATE(2001)] = 31590, + [SMALL_STATE(2002)] = 31664, + [SMALL_STATE(2003)] = 31734, + [SMALL_STATE(2004)] = 31872, + [SMALL_STATE(2005)] = 31948, + [SMALL_STATE(2006)] = 32018, + [SMALL_STATE(2007)] = 32088, + [SMALL_STATE(2008)] = 32158, + [SMALL_STATE(2009)] = 32296, + [SMALL_STATE(2010)] = 32366, + [SMALL_STATE(2011)] = 32440, + [SMALL_STATE(2012)] = 32510, + [SMALL_STATE(2013)] = 32580, + [SMALL_STATE(2014)] = 32650, + [SMALL_STATE(2015)] = 32720, + [SMALL_STATE(2016)] = 32822, + [SMALL_STATE(2017)] = 32896, + [SMALL_STATE(2018)] = 33034, + [SMALL_STATE(2019)] = 33104, + [SMALL_STATE(2020)] = 33174, + [SMALL_STATE(2021)] = 33244, + [SMALL_STATE(2022)] = 33318, + [SMALL_STATE(2023)] = 33388, + [SMALL_STATE(2024)] = 33458, + [SMALL_STATE(2025)] = 33528, + [SMALL_STATE(2026)] = 33630, + [SMALL_STATE(2027)] = 33700, + [SMALL_STATE(2028)] = 33770, + [SMALL_STATE(2029)] = 33844, + [SMALL_STATE(2030)] = 33914, + [SMALL_STATE(2031)] = 33984, + [SMALL_STATE(2032)] = 34054, + [SMALL_STATE(2033)] = 34156, + [SMALL_STATE(2034)] = 34226, + [SMALL_STATE(2035)] = 34296, + [SMALL_STATE(2036)] = 34370, + [SMALL_STATE(2037)] = 34440, + [SMALL_STATE(2038)] = 34542, + [SMALL_STATE(2039)] = 34612, + [SMALL_STATE(2040)] = 34750, + [SMALL_STATE(2041)] = 34822, + [SMALL_STATE(2042)] = 34960, + [SMALL_STATE(2043)] = 35036, + [SMALL_STATE(2044)] = 35174, + [SMALL_STATE(2045)] = 35252, + [SMALL_STATE(2046)] = 35326, + [SMALL_STATE(2047)] = 35398, + [SMALL_STATE(2048)] = 35468, + [SMALL_STATE(2049)] = 35542, + [SMALL_STATE(2050)] = 35612, + [SMALL_STATE(2051)] = 35750, + [SMALL_STATE(2052)] = 35820, + [SMALL_STATE(2053)] = 35958, + [SMALL_STATE(2054)] = 36036, + [SMALL_STATE(2055)] = 36138, + [SMALL_STATE(2056)] = 36212, + [SMALL_STATE(2057)] = 36314, + [SMALL_STATE(2058)] = 36416, + [SMALL_STATE(2059)] = 36490, + [SMALL_STATE(2060)] = 36592, + [SMALL_STATE(2061)] = 36662, + [SMALL_STATE(2062)] = 36732, + [SMALL_STATE(2063)] = 36870, + [SMALL_STATE(2064)] = 36944, + [SMALL_STATE(2065)] = 37016, + [SMALL_STATE(2066)] = 37086, + [SMALL_STATE(2067)] = 37188, + [SMALL_STATE(2068)] = 37326, + [SMALL_STATE(2069)] = 37464, + [SMALL_STATE(2070)] = 37602, + [SMALL_STATE(2071)] = 37680, + [SMALL_STATE(2072)] = 37758, + [SMALL_STATE(2073)] = 37896, + [SMALL_STATE(2074)] = 37968, + [SMALL_STATE(2075)] = 38038, + [SMALL_STATE(2076)] = 38112, + [SMALL_STATE(2077)] = 38182, + [SMALL_STATE(2078)] = 38256, + [SMALL_STATE(2079)] = 38326, + [SMALL_STATE(2080)] = 38399, + [SMALL_STATE(2081)] = 38472, + [SMALL_STATE(2082)] = 38541, + [SMALL_STATE(2083)] = 38610, + [SMALL_STATE(2084)] = 38683, + [SMALL_STATE(2085)] = 38756, + [SMALL_STATE(2086)] = 38829, + [SMALL_STATE(2087)] = 38902, + [SMALL_STATE(2088)] = 38973, + [SMALL_STATE(2089)] = 39044, + [SMALL_STATE(2090)] = 39115, + [SMALL_STATE(2091)] = 39186, + [SMALL_STATE(2092)] = 39257, + [SMALL_STATE(2093)] = 39326, + [SMALL_STATE(2094)] = 39397, + [SMALL_STATE(2095)] = 39468, + [SMALL_STATE(2096)] = 39537, + [SMALL_STATE(2097)] = 39606, + [SMALL_STATE(2098)] = 39677, + [SMALL_STATE(2099)] = 39748, + [SMALL_STATE(2100)] = 39817, + [SMALL_STATE(2101)] = 39888, + [SMALL_STATE(2102)] = 39959, + [SMALL_STATE(2103)] = 40030, + [SMALL_STATE(2104)] = 40101, + [SMALL_STATE(2105)] = 40172, + [SMALL_STATE(2106)] = 40243, + [SMALL_STATE(2107)] = 40314, + [SMALL_STATE(2108)] = 40385, + [SMALL_STATE(2109)] = 40456, + [SMALL_STATE(2110)] = 40527, + [SMALL_STATE(2111)] = 40598, + [SMALL_STATE(2112)] = 40669, + [SMALL_STATE(2113)] = 40740, + [SMALL_STATE(2114)] = 40811, + [SMALL_STATE(2115)] = 40882, + [SMALL_STATE(2116)] = 40953, + [SMALL_STATE(2117)] = 41024, + [SMALL_STATE(2118)] = 41095, + [SMALL_STATE(2119)] = 41166, + [SMALL_STATE(2120)] = 41239, + [SMALL_STATE(2121)] = 41312, + [SMALL_STATE(2122)] = 41383, + [SMALL_STATE(2123)] = 41454, + [SMALL_STATE(2124)] = 41525, + [SMALL_STATE(2125)] = 41596, + [SMALL_STATE(2126)] = 41669, + [SMALL_STATE(2127)] = 41742, + [SMALL_STATE(2128)] = 41813, + [SMALL_STATE(2129)] = 41884, + [SMALL_STATE(2130)] = 41955, + [SMALL_STATE(2131)] = 42026, + [SMALL_STATE(2132)] = 42097, + [SMALL_STATE(2133)] = 42166, + [SMALL_STATE(2134)] = 42237, + [SMALL_STATE(2135)] = 42308, + [SMALL_STATE(2136)] = 42379, + [SMALL_STATE(2137)] = 42448, + [SMALL_STATE(2138)] = 42517, + [SMALL_STATE(2139)] = 42588, + [SMALL_STATE(2140)] = 42657, + [SMALL_STATE(2141)] = 42728, + [SMALL_STATE(2142)] = 42799, + [SMALL_STATE(2143)] = 42886, + [SMALL_STATE(2144)] = 42957, + [SMALL_STATE(2145)] = 43028, + [SMALL_STATE(2146)] = 43099, + [SMALL_STATE(2147)] = 43170, + [SMALL_STATE(2148)] = 43239, + [SMALL_STATE(2149)] = 43310, + [SMALL_STATE(2150)] = 43381, + [SMALL_STATE(2151)] = 43452, + [SMALL_STATE(2152)] = 43521, + [SMALL_STATE(2153)] = 43592, + [SMALL_STATE(2154)] = 43663, + [SMALL_STATE(2155)] = 43732, + [SMALL_STATE(2156)] = 43803, + [SMALL_STATE(2157)] = 43874, + [SMALL_STATE(2158)] = 43945, + [SMALL_STATE(2159)] = 44016, + [SMALL_STATE(2160)] = 44087, + [SMALL_STATE(2161)] = 44158, + [SMALL_STATE(2162)] = 44229, + [SMALL_STATE(2163)] = 44300, + [SMALL_STATE(2164)] = 44371, + [SMALL_STATE(2165)] = 44442, + [SMALL_STATE(2166)] = 44513, + [SMALL_STATE(2167)] = 44586, + [SMALL_STATE(2168)] = 44657, + [SMALL_STATE(2169)] = 44728, + [SMALL_STATE(2170)] = 44799, + [SMALL_STATE(2171)] = 44870, + [SMALL_STATE(2172)] = 44941, + [SMALL_STATE(2173)] = 45012, + [SMALL_STATE(2174)] = 45085, + [SMALL_STATE(2175)] = 45158, + [SMALL_STATE(2176)] = 45229, + [SMALL_STATE(2177)] = 45300, + [SMALL_STATE(2178)] = 45371, + [SMALL_STATE(2179)] = 45442, + [SMALL_STATE(2180)] = 45513, + [SMALL_STATE(2181)] = 45584, + [SMALL_STATE(2182)] = 45655, + [SMALL_STATE(2183)] = 45726, + [SMALL_STATE(2184)] = 45797, + [SMALL_STATE(2185)] = 45868, + [SMALL_STATE(2186)] = 45939, + [SMALL_STATE(2187)] = 46010, + [SMALL_STATE(2188)] = 46081, + [SMALL_STATE(2189)] = 46152, + [SMALL_STATE(2190)] = 46223, + [SMALL_STATE(2191)] = 46294, + [SMALL_STATE(2192)] = 46365, + [SMALL_STATE(2193)] = 46436, + [SMALL_STATE(2194)] = 46507, + [SMALL_STATE(2195)] = 46578, + [SMALL_STATE(2196)] = 46647, + [SMALL_STATE(2197)] = 46718, + [SMALL_STATE(2198)] = 46789, + [SMALL_STATE(2199)] = 46860, + [SMALL_STATE(2200)] = 46931, + [SMALL_STATE(2201)] = 47002, + [SMALL_STATE(2202)] = 47073, + [SMALL_STATE(2203)] = 47144, + [SMALL_STATE(2204)] = 47215, + [SMALL_STATE(2205)] = 47286, + [SMALL_STATE(2206)] = 47357, + [SMALL_STATE(2207)] = 47428, + [SMALL_STATE(2208)] = 47499, + [SMALL_STATE(2209)] = 47570, + [SMALL_STATE(2210)] = 47641, + [SMALL_STATE(2211)] = 47712, + [SMALL_STATE(2212)] = 47783, + [SMALL_STATE(2213)] = 47854, + [SMALL_STATE(2214)] = 47925, + [SMALL_STATE(2215)] = 47996, + [SMALL_STATE(2216)] = 48069, + [SMALL_STATE(2217)] = 48142, + [SMALL_STATE(2218)] = 48215, + [SMALL_STATE(2219)] = 48288, + [SMALL_STATE(2220)] = 48359, + [SMALL_STATE(2221)] = 48430, + [SMALL_STATE(2222)] = 48503, + [SMALL_STATE(2223)] = 48576, + [SMALL_STATE(2224)] = 48649, + [SMALL_STATE(2225)] = 48720, + [SMALL_STATE(2226)] = 48791, + [SMALL_STATE(2227)] = 48862, + [SMALL_STATE(2228)] = 48933, + [SMALL_STATE(2229)] = 49004, + [SMALL_STATE(2230)] = 49079, + [SMALL_STATE(2231)] = 49150, + [SMALL_STATE(2232)] = 49223, + [SMALL_STATE(2233)] = 49296, + [SMALL_STATE(2234)] = 49367, + [SMALL_STATE(2235)] = 49438, + [SMALL_STATE(2236)] = 49509, + [SMALL_STATE(2237)] = 49580, + [SMALL_STATE(2238)] = 49651, + [SMALL_STATE(2239)] = 49722, + [SMALL_STATE(2240)] = 49795, + [SMALL_STATE(2241)] = 49866, + [SMALL_STATE(2242)] = 49937, + [SMALL_STATE(2243)] = 50010, + [SMALL_STATE(2244)] = 50083, + [SMALL_STATE(2245)] = 50156, + [SMALL_STATE(2246)] = 50230, + [SMALL_STATE(2247)] = 50322, + [SMALL_STATE(2248)] = 50400, + [SMALL_STATE(2249)] = 50476, + [SMALL_STATE(2250)] = 50544, + [SMALL_STATE(2251)] = 50622, + [SMALL_STATE(2252)] = 50714, + [SMALL_STATE(2253)] = 50808, + [SMALL_STATE(2254)] = 50902, + [SMALL_STATE(2255)] = 50982, + [SMALL_STATE(2256)] = 51050, + [SMALL_STATE(2257)] = 51132, + [SMALL_STATE(2258)] = 51200, + [SMALL_STATE(2259)] = 51296, + [SMALL_STATE(2260)] = 51370, + [SMALL_STATE(2261)] = 51438, + [SMALL_STATE(2262)] = 51506, + [SMALL_STATE(2263)] = 51590, + [SMALL_STATE(2264)] = 51686, + [SMALL_STATE(2265)] = 51770, + [SMALL_STATE(2266)] = 51840, + [SMALL_STATE(2267)] = 51914, + [SMALL_STATE(2268)] = 51982, + [SMALL_STATE(2269)] = 52054, + [SMALL_STATE(2270)] = 52124, + [SMALL_STATE(2271)] = 52198, + [SMALL_STATE(2272)] = 52266, + [SMALL_STATE(2273)] = 52336, + [SMALL_STATE(2274)] = 52432, + [SMALL_STATE(2275)] = 52508, + [SMALL_STATE(2276)] = 52576, + [SMALL_STATE(2277)] = 52652, + [SMALL_STATE(2278)] = 52720, + [SMALL_STATE(2279)] = 52806, + [SMALL_STATE(2280)] = 52888, + [SMALL_STATE(2281)] = 52958, + [SMALL_STATE(2282)] = 53042, + [SMALL_STATE(2283)] = 53120, + [SMALL_STATE(2284)] = 53206, + [SMALL_STATE(2285)] = 53280, + [SMALL_STATE(2286)] = 53352, + [SMALL_STATE(2287)] = 53424, + [SMALL_STATE(2288)] = 53492, + [SMALL_STATE(2289)] = 53576, + [SMALL_STATE(2290)] = 53664, + [SMALL_STATE(2291)] = 53732, + [SMALL_STATE(2292)] = 53822, + [SMALL_STATE(2293)] = 53908, + [SMALL_STATE(2294)] = 54000, + [SMALL_STATE(2295)] = 54086, + [SMALL_STATE(2296)] = 54180, + [SMALL_STATE(2297)] = 54250, + [SMALL_STATE(2298)] = 54330, + [SMALL_STATE(2299)] = 54418, + [SMALL_STATE(2300)] = 54496, + [SMALL_STATE(2301)] = 54566, + [SMALL_STATE(2302)] = 54654, + [SMALL_STATE(2303)] = 54724, + [SMALL_STATE(2304)] = 54814, + [SMALL_STATE(2305)] = 54896, + [SMALL_STATE(2306)] = 54972, + [SMALL_STATE(2307)] = 55044, + [SMALL_STATE(2308)] = 55132, + [SMALL_STATE(2309)] = 55200, + [SMALL_STATE(2310)] = 55274, + [SMALL_STATE(2311)] = 55366, + [SMALL_STATE(2312)] = 55440, + [SMALL_STATE(2313)] = 55508, + [SMALL_STATE(2314)] = 55584, + [SMALL_STATE(2315)] = 55680, + [SMALL_STATE(2316)] = 55770, + [SMALL_STATE(2317)] = 55846, + [SMALL_STATE(2318)] = 55940, + [SMALL_STATE(2319)] = 56012, + [SMALL_STATE(2320)] = 56090, + [SMALL_STATE(2321)] = 56168, + [SMALL_STATE(2322)] = 56250, + [SMALL_STATE(2323)] = 56318, + [SMALL_STATE(2324)] = 56408, + [SMALL_STATE(2325)] = 56492, + [SMALL_STATE(2326)] = 56560, + [SMALL_STATE(2327)] = 56628, + [SMALL_STATE(2328)] = 56708, + [SMALL_STATE(2329)] = 56776, + [SMALL_STATE(2330)] = 56846, + [SMALL_STATE(2331)] = 56930, + [SMALL_STATE(2332)] = 56998, + [SMALL_STATE(2333)] = 57066, + [SMALL_STATE(2334)] = 57158, + [SMALL_STATE(2335)] = 57244, + [SMALL_STATE(2336)] = 57340, + [SMALL_STATE(2337)] = 57426, + [SMALL_STATE(2338)] = 57522, + [SMALL_STATE(2339)] = 57610, + [SMALL_STATE(2340)] = 57702, + [SMALL_STATE(2341)] = 57786, + [SMALL_STATE(2342)] = 57876, + [SMALL_STATE(2343)] = 57944, + [SMALL_STATE(2344)] = 58012, + [SMALL_STATE(2345)] = 58082, + [SMALL_STATE(2346)] = 58172, + [SMALL_STATE(2347)] = 58254, + [SMALL_STATE(2348)] = 58344, + [SMALL_STATE(2349)] = 58414, + [SMALL_STATE(2350)] = 58506, + [SMALL_STATE(2351)] = 58576, + [SMALL_STATE(2352)] = 58668, + [SMALL_STATE(2353)] = 58744, + [SMALL_STATE(2354)] = 58838, + [SMALL_STATE(2355)] = 58932, + [SMALL_STATE(2356)] = 59026, + [SMALL_STATE(2357)] = 59094, + [SMALL_STATE(2358)] = 59190, + [SMALL_STATE(2359)] = 59258, + [SMALL_STATE(2360)] = 59338, + [SMALL_STATE(2361)] = 59422, + [SMALL_STATE(2362)] = 59504, + [SMALL_STATE(2363)] = 59584, + [SMALL_STATE(2364)] = 59662, + [SMALL_STATE(2365)] = 59756, + [SMALL_STATE(2366)] = 59836, + [SMALL_STATE(2367)] = 59904, + [SMALL_STATE(2368)] = 59980, + [SMALL_STATE(2369)] = 60048, + [SMALL_STATE(2370)] = 60116, + [SMALL_STATE(2371)] = 60212, + [SMALL_STATE(2372)] = 60280, + [SMALL_STATE(2373)] = 60350, + [SMALL_STATE(2374)] = 60420, + [SMALL_STATE(2375)] = 60516, + [SMALL_STATE(2376)] = 60612, + [SMALL_STATE(2377)] = 60708, + [SMALL_STATE(2378)] = 60776, + [SMALL_STATE(2379)] = 60872, + [SMALL_STATE(2380)] = 60942, + [SMALL_STATE(2381)] = 61038, + [SMALL_STATE(2382)] = 61116, + [SMALL_STATE(2383)] = 61186, + [SMALL_STATE(2384)] = 61282, + [SMALL_STATE(2385)] = 61366, + [SMALL_STATE(2386)] = 61446, + [SMALL_STATE(2387)] = 61524, + [SMALL_STATE(2388)] = 61620, + [SMALL_STATE(2389)] = 61688, + [SMALL_STATE(2390)] = 61756, + [SMALL_STATE(2391)] = 61842, + [SMALL_STATE(2392)] = 61924, + [SMALL_STATE(2393)] = 62012, + [SMALL_STATE(2394)] = 62084, + [SMALL_STATE(2395)] = 62154, + [SMALL_STATE(2396)] = 62228, + [SMALL_STATE(2397)] = 62324, + [SMALL_STATE(2398)] = 62400, + [SMALL_STATE(2399)] = 62470, + [SMALL_STATE(2400)] = 62540, + [SMALL_STATE(2401)] = 62622, + [SMALL_STATE(2402)] = 62694, + [SMALL_STATE(2403)] = 62762, + [SMALL_STATE(2404)] = 62852, + [SMALL_STATE(2405)] = 62936, + [SMALL_STATE(2406)] = 63020, + [SMALL_STATE(2407)] = 63106, + [SMALL_STATE(2408)] = 63194, + [SMALL_STATE(2409)] = 63282, + [SMALL_STATE(2410)] = 63350, + [SMALL_STATE(2411)] = 63440, + [SMALL_STATE(2412)] = 63508, + [SMALL_STATE(2413)] = 63600, + [SMALL_STATE(2414)] = 63670, + [SMALL_STATE(2415)] = 63764, + [SMALL_STATE(2416)] = 63836, + [SMALL_STATE(2417)] = 63906, + [SMALL_STATE(2418)] = 63976, + [SMALL_STATE(2419)] = 64050, + [SMALL_STATE(2420)] = 64130, + [SMALL_STATE(2421)] = 64210, + [SMALL_STATE(2422)] = 64288, + [SMALL_STATE(2423)] = 64370, + [SMALL_STATE(2424)] = 64454, + [SMALL_STATE(2425)] = 64540, + [SMALL_STATE(2426)] = 64610, + [SMALL_STATE(2427)] = 64698, + [SMALL_STATE(2428)] = 64766, + [SMALL_STATE(2429)] = 64854, + [SMALL_STATE(2430)] = 64921, + [SMALL_STATE(2431)] = 64988, + [SMALL_STATE(2432)] = 65055, + [SMALL_STATE(2433)] = 65122, + [SMALL_STATE(2434)] = 65189, + [SMALL_STATE(2435)] = 65258, + [SMALL_STATE(2436)] = 65327, + [SMALL_STATE(2437)] = 65394, + [SMALL_STATE(2438)] = 65487, + [SMALL_STATE(2439)] = 65554, + [SMALL_STATE(2440)] = 65639, + [SMALL_STATE(2441)] = 65706, + [SMALL_STATE(2442)] = 65773, + [SMALL_STATE(2443)] = 65866, + [SMALL_STATE(2444)] = 65959, + [SMALL_STATE(2445)] = 66052, + [SMALL_STATE(2446)] = 66145, + [SMALL_STATE(2447)] = 66238, + [SMALL_STATE(2448)] = 66331, + [SMALL_STATE(2449)] = 66398, + [SMALL_STATE(2450)] = 66465, + [SMALL_STATE(2451)] = 66532, + [SMALL_STATE(2452)] = 66625, + [SMALL_STATE(2453)] = 66718, + [SMALL_STATE(2454)] = 66785, + [SMALL_STATE(2455)] = 66852, + [SMALL_STATE(2456)] = 66919, + [SMALL_STATE(2457)] = 67000, + [SMALL_STATE(2458)] = 67093, + [SMALL_STATE(2459)] = 67160, + [SMALL_STATE(2460)] = 67253, + [SMALL_STATE(2461)] = 67320, + [SMALL_STATE(2462)] = 67413, + [SMALL_STATE(2463)] = 67502, + [SMALL_STATE(2464)] = 67569, + [SMALL_STATE(2465)] = 67636, + [SMALL_STATE(2466)] = 67703, + [SMALL_STATE(2467)] = 67796, + [SMALL_STATE(2468)] = 67877, + [SMALL_STATE(2469)] = 67970, + [SMALL_STATE(2470)] = 68055, + [SMALL_STATE(2471)] = 68148, + [SMALL_STATE(2472)] = 68215, + [SMALL_STATE(2473)] = 68282, + [SMALL_STATE(2474)] = 68363, + [SMALL_STATE(2475)] = 68444, + [SMALL_STATE(2476)] = 68525, + [SMALL_STATE(2477)] = 68618, + [SMALL_STATE(2478)] = 68685, + [SMALL_STATE(2479)] = 68778, + [SMALL_STATE(2480)] = 68845, + [SMALL_STATE(2481)] = 68938, + [SMALL_STATE(2482)] = 69005, + [SMALL_STATE(2483)] = 69072, + [SMALL_STATE(2484)] = 69163, + [SMALL_STATE(2485)] = 69256, + [SMALL_STATE(2486)] = 69341, + [SMALL_STATE(2487)] = 69408, + [SMALL_STATE(2488)] = 69501, + [SMALL_STATE(2489)] = 69568, + [SMALL_STATE(2490)] = 69635, + [SMALL_STATE(2491)] = 69712, + [SMALL_STATE(2492)] = 69779, + [SMALL_STATE(2493)] = 69872, + [SMALL_STATE(2494)] = 69939, + [SMALL_STATE(2495)] = 70006, + [SMALL_STATE(2496)] = 70073, + [SMALL_STATE(2497)] = 70140, + [SMALL_STATE(2498)] = 70215, + [SMALL_STATE(2499)] = 70282, + [SMALL_STATE(2500)] = 70349, + [SMALL_STATE(2501)] = 70416, + [SMALL_STATE(2502)] = 70483, + [SMALL_STATE(2503)] = 70550, + [SMALL_STATE(2504)] = 70643, + [SMALL_STATE(2505)] = 70710, + [SMALL_STATE(2506)] = 70777, + [SMALL_STATE(2507)] = 70844, + [SMALL_STATE(2508)] = 70911, + [SMALL_STATE(2509)] = 70978, + [SMALL_STATE(2510)] = 71047, + [SMALL_STATE(2511)] = 71114, + [SMALL_STATE(2512)] = 71207, + [SMALL_STATE(2513)] = 71274, + [SMALL_STATE(2514)] = 71341, + [SMALL_STATE(2515)] = 71408, + [SMALL_STATE(2516)] = 71477, + [SMALL_STATE(2517)] = 71570, + [SMALL_STATE(2518)] = 71663, + [SMALL_STATE(2519)] = 71756, + [SMALL_STATE(2520)] = 71823, + [SMALL_STATE(2521)] = 71916, + [SMALL_STATE(2522)] = 72009, + [SMALL_STATE(2523)] = 72076, + [SMALL_STATE(2524)] = 72143, + [SMALL_STATE(2525)] = 72210, + [SMALL_STATE(2526)] = 72277, + [SMALL_STATE(2527)] = 72344, + [SMALL_STATE(2528)] = 72415, + [SMALL_STATE(2529)] = 72482, + [SMALL_STATE(2530)] = 72549, + [SMALL_STATE(2531)] = 72622, + [SMALL_STATE(2532)] = 72689, + [SMALL_STATE(2533)] = 72768, + [SMALL_STATE(2534)] = 72835, + [SMALL_STATE(2535)] = 72916, + [SMALL_STATE(2536)] = 73009, + [SMALL_STATE(2537)] = 73076, + [SMALL_STATE(2538)] = 73143, + [SMALL_STATE(2539)] = 73210, + [SMALL_STATE(2540)] = 73277, + [SMALL_STATE(2541)] = 73360, + [SMALL_STATE(2542)] = 73427, + [SMALL_STATE(2543)] = 73494, + [SMALL_STATE(2544)] = 73561, + [SMALL_STATE(2545)] = 73628, + [SMALL_STATE(2546)] = 73695, + [SMALL_STATE(2547)] = 73762, + [SMALL_STATE(2548)] = 73829, + [SMALL_STATE(2549)] = 73896, + [SMALL_STATE(2550)] = 73981, + [SMALL_STATE(2551)] = 74048, + [SMALL_STATE(2552)] = 74115, + [SMALL_STATE(2553)] = 74182, + [SMALL_STATE(2554)] = 74249, + [SMALL_STATE(2555)] = 74316, + [SMALL_STATE(2556)] = 74409, + [SMALL_STATE(2557)] = 74496, + [SMALL_STATE(2558)] = 74563, + [SMALL_STATE(2559)] = 74630, + [SMALL_STATE(2560)] = 74697, + [SMALL_STATE(2561)] = 74764, + [SMALL_STATE(2562)] = 74831, + [SMALL_STATE(2563)] = 74924, + [SMALL_STATE(2564)] = 74991, + [SMALL_STATE(2565)] = 75065, + [SMALL_STATE(2566)] = 75131, + [SMALL_STATE(2567)] = 75197, + [SMALL_STATE(2568)] = 75263, + [SMALL_STATE(2569)] = 75329, + [SMALL_STATE(2570)] = 75403, + [SMALL_STATE(2571)] = 75469, + [SMALL_STATE(2572)] = 75543, + [SMALL_STATE(2573)] = 75609, + [SMALL_STATE(2574)] = 75683, + [SMALL_STATE(2575)] = 75749, + [SMALL_STATE(2576)] = 75823, + [SMALL_STATE(2577)] = 75897, + [SMALL_STATE(2578)] = 75971, + [SMALL_STATE(2579)] = 76045, + [SMALL_STATE(2580)] = 76119, + [SMALL_STATE(2581)] = 76193, + [SMALL_STATE(2582)] = 76267, + [SMALL_STATE(2583)] = 76333, + [SMALL_STATE(2584)] = 76407, + [SMALL_STATE(2585)] = 76481, + [SMALL_STATE(2586)] = 76555, + [SMALL_STATE(2587)] = 76621, + [SMALL_STATE(2588)] = 76695, + [SMALL_STATE(2589)] = 76769, + [SMALL_STATE(2590)] = 76843, + [SMALL_STATE(2591)] = 76909, + [SMALL_STATE(2592)] = 76983, + [SMALL_STATE(2593)] = 77053, + [SMALL_STATE(2594)] = 77117, + [SMALL_STATE(2595)] = 77199, + [SMALL_STATE(2596)] = 77265, + [SMALL_STATE(2597)] = 77331, + [SMALL_STATE(2598)] = 77405, + [SMALL_STATE(2599)] = 77475, + [SMALL_STATE(2600)] = 77545, + [SMALL_STATE(2601)] = 77627, + [SMALL_STATE(2602)] = 77709, + [SMALL_STATE(2603)] = 77783, + [SMALL_STATE(2604)] = 77865, + [SMALL_STATE(2605)] = 77931, + [SMALL_STATE(2606)] = 78001, + [SMALL_STATE(2607)] = 78075, + [SMALL_STATE(2608)] = 78141, + [SMALL_STATE(2609)] = 78207, + [SMALL_STATE(2610)] = 78281, + [SMALL_STATE(2611)] = 78355, + [SMALL_STATE(2612)] = 78421, + [SMALL_STATE(2613)] = 78487, + [SMALL_STATE(2614)] = 78561, + [SMALL_STATE(2615)] = 78627, + [SMALL_STATE(2616)] = 78693, + [SMALL_STATE(2617)] = 78759, + [SMALL_STATE(2618)] = 78825, + [SMALL_STATE(2619)] = 78891, + [SMALL_STATE(2620)] = 78957, + [SMALL_STATE(2621)] = 79023, + [SMALL_STATE(2622)] = 79097, + [SMALL_STATE(2623)] = 79171, + [SMALL_STATE(2624)] = 79240, + [SMALL_STATE(2625)] = 79313, + [SMALL_STATE(2626)] = 79380, + [SMALL_STATE(2627)] = 79447, + [SMALL_STATE(2628)] = 79520, + [SMALL_STATE(2629)] = 79587, + [SMALL_STATE(2630)] = 79654, + [SMALL_STATE(2631)] = 79725, + [SMALL_STATE(2632)] = 79798, + [SMALL_STATE(2633)] = 79867, + [SMALL_STATE(2634)] = 79938, + [SMALL_STATE(2635)] = 80014, + [SMALL_STATE(2636)] = 80084, + [SMALL_STATE(2637)] = 80154, + [SMALL_STATE(2638)] = 80222, + [SMALL_STATE(2639)] = 80286, + [SMALL_STATE(2640)] = 80402, + [SMALL_STATE(2641)] = 80466, + [SMALL_STATE(2642)] = 80534, + [SMALL_STATE(2643)] = 80598, + [SMALL_STATE(2644)] = 80668, + [SMALL_STATE(2645)] = 80732, + [SMALL_STATE(2646)] = 80802, + [SMALL_STATE(2647)] = 80866, + [SMALL_STATE(2648)] = 80988, + [SMALL_STATE(2649)] = 81052, + [SMALL_STATE(2650)] = 81174, + [SMALL_STATE(2651)] = 81292, + [SMALL_STATE(2652)] = 81356, + [SMALL_STATE(2653)] = 81426, + [SMALL_STATE(2654)] = 81494, + [SMALL_STATE(2655)] = 81558, + [SMALL_STATE(2656)] = 81626, + [SMALL_STATE(2657)] = 81696, + [SMALL_STATE(2658)] = 81760, + [SMALL_STATE(2659)] = 81830, + [SMALL_STATE(2660)] = 81894, + [SMALL_STATE(2661)] = 81958, + [SMALL_STATE(2662)] = 82022, + [SMALL_STATE(2663)] = 82092, + [SMALL_STATE(2664)] = 82160, + [SMALL_STATE(2665)] = 82226, + [SMALL_STATE(2666)] = 82292, + [SMALL_STATE(2667)] = 82362, + [SMALL_STATE(2668)] = 82434, + [SMALL_STATE(2669)] = 82498, + [SMALL_STATE(2670)] = 82562, + [SMALL_STATE(2671)] = 82678, + [SMALL_STATE(2672)] = 82742, + [SMALL_STATE(2673)] = 82860, + [SMALL_STATE(2674)] = 82924, + [SMALL_STATE(2675)] = 82992, + [SMALL_STATE(2676)] = 83062, + [SMALL_STATE(2677)] = 83134, + [SMALL_STATE(2678)] = 83200, + [SMALL_STATE(2679)] = 83266, + [SMALL_STATE(2680)] = 83332, + [SMALL_STATE(2681)] = 83402, + [SMALL_STATE(2682)] = 83470, + [SMALL_STATE(2683)] = 83536, + [SMALL_STATE(2684)] = 83602, + [SMALL_STATE(2685)] = 83672, + [SMALL_STATE(2686)] = 83740, + [SMALL_STATE(2687)] = 83806, + [SMALL_STATE(2688)] = 83880, + [SMALL_STATE(2689)] = 83950, + [SMALL_STATE(2690)] = 84013, + [SMALL_STATE(2691)] = 84076, + [SMALL_STATE(2692)] = 84149, + [SMALL_STATE(2693)] = 84212, + [SMALL_STATE(2694)] = 84277, + [SMALL_STATE(2695)] = 84340, + [SMALL_STATE(2696)] = 84407, + [SMALL_STATE(2697)] = 84474, + [SMALL_STATE(2698)] = 84537, + [SMALL_STATE(2699)] = 84602, + [SMALL_STATE(2700)] = 84669, + [SMALL_STATE(2701)] = 84732, + [SMALL_STATE(2702)] = 84795, + [SMALL_STATE(2703)] = 84860, + [SMALL_STATE(2704)] = 84925, + [SMALL_STATE(2705)] = 84992, + [SMALL_STATE(2706)] = 85059, + [SMALL_STATE(2707)] = 85122, + [SMALL_STATE(2708)] = 85193, + [SMALL_STATE(2709)] = 85264, + [SMALL_STATE(2710)] = 85329, + [SMALL_STATE(2711)] = 85392, + [SMALL_STATE(2712)] = 85463, + [SMALL_STATE(2713)] = 85534, + [SMALL_STATE(2714)] = 85599, + [SMALL_STATE(2715)] = 85670, + [SMALL_STATE(2716)] = 85741, + [SMALL_STATE(2717)] = 85812, + [SMALL_STATE(2718)] = 85875, + [SMALL_STATE(2719)] = 85946, + [SMALL_STATE(2720)] = 86011, + [SMALL_STATE(2721)] = 86082, + [SMALL_STATE(2722)] = 86153, + [SMALL_STATE(2723)] = 86218, + [SMALL_STATE(2724)] = 86289, + [SMALL_STATE(2725)] = 86356, + [SMALL_STATE(2726)] = 86427, + [SMALL_STATE(2727)] = 86498, + [SMALL_STATE(2728)] = 86569, + [SMALL_STATE(2729)] = 86640, + [SMALL_STATE(2730)] = 86755, + [SMALL_STATE(2731)] = 86868, + [SMALL_STATE(2732)] = 86939, + [SMALL_STATE(2733)] = 87010, + [SMALL_STATE(2734)] = 87125, + [SMALL_STATE(2735)] = 87196, + [SMALL_STATE(2736)] = 87267, + [SMALL_STATE(2737)] = 87332, + [SMALL_STATE(2738)] = 87395, + [SMALL_STATE(2739)] = 87460, + [SMALL_STATE(2740)] = 87535, + [SMALL_STATE(2741)] = 87598, + [SMALL_STATE(2742)] = 87661, + [SMALL_STATE(2743)] = 87726, + [SMALL_STATE(2744)] = 87791, + [SMALL_STATE(2745)] = 87856, + [SMALL_STATE(2746)] = 87921, + [SMALL_STATE(2747)] = 88034, + [SMALL_STATE(2748)] = 88097, + [SMALL_STATE(2749)] = 88162, + [SMALL_STATE(2750)] = 88275, + [SMALL_STATE(2751)] = 88388, + [SMALL_STATE(2752)] = 88451, + [SMALL_STATE(2753)] = 88514, + [SMALL_STATE(2754)] = 88576, + [SMALL_STATE(2755)] = 88638, + [SMALL_STATE(2756)] = 88702, + [SMALL_STATE(2757)] = 88764, + [SMALL_STATE(2758)] = 88826, + [SMALL_STATE(2759)] = 88888, + [SMALL_STATE(2760)] = 88950, + [SMALL_STATE(2761)] = 89012, + [SMALL_STATE(2762)] = 89074, + [SMALL_STATE(2763)] = 89144, + [SMALL_STATE(2764)] = 89206, + [SMALL_STATE(2765)] = 89268, + [SMALL_STATE(2766)] = 89330, + [SMALL_STATE(2767)] = 89392, + [SMALL_STATE(2768)] = 89454, + [SMALL_STATE(2769)] = 89516, + [SMALL_STATE(2770)] = 89578, + [SMALL_STATE(2771)] = 89640, + [SMALL_STATE(2772)] = 89702, + [SMALL_STATE(2773)] = 89764, + [SMALL_STATE(2774)] = 89826, + [SMALL_STATE(2775)] = 89888, + [SMALL_STATE(2776)] = 89950, + [SMALL_STATE(2777)] = 90012, + [SMALL_STATE(2778)] = 90082, + [SMALL_STATE(2779)] = 90144, + [SMALL_STATE(2780)] = 90214, + [SMALL_STATE(2781)] = 90276, + [SMALL_STATE(2782)] = 90342, + [SMALL_STATE(2783)] = 90406, + [SMALL_STATE(2784)] = 90468, + [SMALL_STATE(2785)] = 90530, + [SMALL_STATE(2786)] = 90592, + [SMALL_STATE(2787)] = 90654, + [SMALL_STATE(2788)] = 90716, + [SMALL_STATE(2789)] = 90786, + [SMALL_STATE(2790)] = 90848, + [SMALL_STATE(2791)] = 90910, + [SMALL_STATE(2792)] = 90972, + [SMALL_STATE(2793)] = 91034, + [SMALL_STATE(2794)] = 91096, + [SMALL_STATE(2795)] = 91158, + [SMALL_STATE(2796)] = 91220, + [SMALL_STATE(2797)] = 91282, + [SMALL_STATE(2798)] = 91344, + [SMALL_STATE(2799)] = 91406, + [SMALL_STATE(2800)] = 91468, + [SMALL_STATE(2801)] = 91530, + [SMALL_STATE(2802)] = 91592, + [SMALL_STATE(2803)] = 91658, + [SMALL_STATE(2804)] = 91722, + [SMALL_STATE(2805)] = 91784, + [SMALL_STATE(2806)] = 91846, + [SMALL_STATE(2807)] = 91912, + [SMALL_STATE(2808)] = 91974, + [SMALL_STATE(2809)] = 92040, + [SMALL_STATE(2810)] = 92104, + [SMALL_STATE(2811)] = 92166, + [SMALL_STATE(2812)] = 92228, + [SMALL_STATE(2813)] = 92290, + [SMALL_STATE(2814)] = 92352, + [SMALL_STATE(2815)] = 92414, + [SMALL_STATE(2816)] = 92476, + [SMALL_STATE(2817)] = 92538, + [SMALL_STATE(2818)] = 92608, + [SMALL_STATE(2819)] = 92670, + [SMALL_STATE(2820)] = 92738, + [SMALL_STATE(2821)] = 92808, + [SMALL_STATE(2822)] = 92878, + [SMALL_STATE(2823)] = 92948, + [SMALL_STATE(2824)] = 93012, + [SMALL_STATE(2825)] = 93082, + [SMALL_STATE(2826)] = 93152, + [SMALL_STATE(2827)] = 93222, + [SMALL_STATE(2828)] = 93292, + [SMALL_STATE(2829)] = 93362, + [SMALL_STATE(2830)] = 93426, + [SMALL_STATE(2831)] = 93488, + [SMALL_STATE(2832)] = 93558, + [SMALL_STATE(2833)] = 93628, + [SMALL_STATE(2834)] = 93698, + [SMALL_STATE(2835)] = 93760, + [SMALL_STATE(2836)] = 93822, + [SMALL_STATE(2837)] = 93890, + [SMALL_STATE(2838)] = 93960, + [SMALL_STATE(2839)] = 94030, + [SMALL_STATE(2840)] = 94092, + [SMALL_STATE(2841)] = 94162, + [SMALL_STATE(2842)] = 94224, + [SMALL_STATE(2843)] = 94294, + [SMALL_STATE(2844)] = 94356, + [SMALL_STATE(2845)] = 94426, + [SMALL_STATE(2846)] = 94496, + [SMALL_STATE(2847)] = 94558, + [SMALL_STATE(2848)] = 94620, + [SMALL_STATE(2849)] = 94682, + [SMALL_STATE(2850)] = 94750, + [SMALL_STATE(2851)] = 94812, + [SMALL_STATE(2852)] = 94874, + [SMALL_STATE(2853)] = 94936, + [SMALL_STATE(2854)] = 94998, + [SMALL_STATE(2855)] = 95064, + [SMALL_STATE(2856)] = 95126, + [SMALL_STATE(2857)] = 95188, + [SMALL_STATE(2858)] = 95258, + [SMALL_STATE(2859)] = 95319, + [SMALL_STATE(2860)] = 95380, + [SMALL_STATE(2861)] = 95449, + [SMALL_STATE(2862)] = 95510, + [SMALL_STATE(2863)] = 95571, + [SMALL_STATE(2864)] = 95632, + [SMALL_STATE(2865)] = 95697, + [SMALL_STATE(2866)] = 95762, + [SMALL_STATE(2867)] = 95823, + [SMALL_STATE(2868)] = 95884, + [SMALL_STATE(2869)] = 95949, + [SMALL_STATE(2870)] = 96014, + [SMALL_STATE(2871)] = 96075, + [SMALL_STATE(2872)] = 96136, + [SMALL_STATE(2873)] = 96197, + [SMALL_STATE(2874)] = 96262, + [SMALL_STATE(2875)] = 96327, + [SMALL_STATE(2876)] = 96388, + [SMALL_STATE(2877)] = 96453, + [SMALL_STATE(2878)] = 96514, + [SMALL_STATE(2879)] = 96579, + [SMALL_STATE(2880)] = 96644, + [SMALL_STATE(2881)] = 96705, + [SMALL_STATE(2882)] = 96770, + [SMALL_STATE(2883)] = 96841, + [SMALL_STATE(2884)] = 96906, + [SMALL_STATE(2885)] = 96973, + [SMALL_STATE(2886)] = 97038, + [SMALL_STATE(2887)] = 97103, + [SMALL_STATE(2888)] = 97168, + [SMALL_STATE(2889)] = 97233, + [SMALL_STATE(2890)] = 97294, + [SMALL_STATE(2891)] = 97355, + [SMALL_STATE(2892)] = 97420, + [SMALL_STATE(2893)] = 97483, + [SMALL_STATE(2894)] = 97544, + [SMALL_STATE(2895)] = 97605, + [SMALL_STATE(2896)] = 97670, + [SMALL_STATE(2897)] = 97733, + [SMALL_STATE(2898)] = 97798, + [SMALL_STATE(2899)] = 97859, + [SMALL_STATE(2900)] = 97926, + [SMALL_STATE(2901)] = 97991, + [SMALL_STATE(2902)] = 98052, + [SMALL_STATE(2903)] = 98113, + [SMALL_STATE(2904)] = 98178, + [SMALL_STATE(2905)] = 98243, + [SMALL_STATE(2906)] = 98308, + [SMALL_STATE(2907)] = 98370, + [SMALL_STATE(2908)] = 98436, + [SMALL_STATE(2909)] = 98502, + [SMALL_STATE(2910)] = 98564, + [SMALL_STATE(2911)] = 98630, + [SMALL_STATE(2912)] = 98696, + [SMALL_STATE(2913)] = 98762, + [SMALL_STATE(2914)] = 98828, + [SMALL_STATE(2915)] = 98890, + [SMALL_STATE(2916)] = 98954, + [SMALL_STATE(2917)] = 99016, + [SMALL_STATE(2918)] = 99078, + [SMALL_STATE(2919)] = 99140, + [SMALL_STATE(2920)] = 99206, + [SMALL_STATE(2921)] = 99270, + [SMALL_STATE(2922)] = 99332, + [SMALL_STATE(2923)] = 99398, + [SMALL_STATE(2924)] = 99464, + [SMALL_STATE(2925)] = 99530, + [SMALL_STATE(2926)] = 99594, + [SMALL_STATE(2927)] = 99666, + [SMALL_STATE(2928)] = 99730, + [SMALL_STATE(2929)] = 99790, + [SMALL_STATE(2930)] = 99854, + [SMALL_STATE(2931)] = 99914, + [SMALL_STATE(2932)] = 99974, + [SMALL_STATE(2933)] = 100034, + [SMALL_STATE(2934)] = 100094, + [SMALL_STATE(2935)] = 100156, + [SMALL_STATE(2936)] = 100216, + [SMALL_STATE(2937)] = 100278, + [SMALL_STATE(2938)] = 100338, + [SMALL_STATE(2939)] = 100398, + [SMALL_STATE(2940)] = 100458, + [SMALL_STATE(2941)] = 100520, + [SMALL_STATE(2942)] = 100584, + [SMALL_STATE(2943)] = 100644, + [SMALL_STATE(2944)] = 100704, + [SMALL_STATE(2945)] = 100768, + [SMALL_STATE(2946)] = 100830, + [SMALL_STATE(2947)] = 100890, + [SMALL_STATE(2948)] = 100954, + [SMALL_STATE(2949)] = 101016, + [SMALL_STATE(2950)] = 101082, + [SMALL_STATE(2951)] = 101148, + [SMALL_STATE(2952)] = 101208, + [SMALL_STATE(2953)] = 101267, + [SMALL_STATE(2954)] = 101326, + [SMALL_STATE(2955)] = 101385, + [SMALL_STATE(2956)] = 101444, + [SMALL_STATE(2957)] = 101503, + [SMALL_STATE(2958)] = 101564, + [SMALL_STATE(2959)] = 101627, + [SMALL_STATE(2960)] = 101690, + [SMALL_STATE(2961)] = 101749, + [SMALL_STATE(2962)] = 101808, + [SMALL_STATE(2963)] = 101867, + [SMALL_STATE(2964)] = 101926, + [SMALL_STATE(2965)] = 101985, + [SMALL_STATE(2966)] = 102044, + [SMALL_STATE(2967)] = 102103, + [SMALL_STATE(2968)] = 102162, + [SMALL_STATE(2969)] = 102221, + [SMALL_STATE(2970)] = 102280, + [SMALL_STATE(2971)] = 102339, + [SMALL_STATE(2972)] = 102398, + [SMALL_STATE(2973)] = 102457, + [SMALL_STATE(2974)] = 102516, + [SMALL_STATE(2975)] = 102575, + [SMALL_STATE(2976)] = 102634, + [SMALL_STATE(2977)] = 102693, + [SMALL_STATE(2978)] = 102752, + [SMALL_STATE(2979)] = 102811, + [SMALL_STATE(2980)] = 102870, + [SMALL_STATE(2981)] = 102931, + [SMALL_STATE(2982)] = 102992, + [SMALL_STATE(2983)] = 103053, + [SMALL_STATE(2984)] = 103112, + [SMALL_STATE(2985)] = 103171, + [SMALL_STATE(2986)] = 103232, + [SMALL_STATE(2987)] = 103293, + [SMALL_STATE(2988)] = 103356, + [SMALL_STATE(2989)] = 103419, + [SMALL_STATE(2990)] = 103478, + [SMALL_STATE(2991)] = 103537, + [SMALL_STATE(2992)] = 103598, + [SMALL_STATE(2993)] = 103657, + [SMALL_STATE(2994)] = 103718, + [SMALL_STATE(2995)] = 103777, + [SMALL_STATE(2996)] = 103836, + [SMALL_STATE(2997)] = 103897, + [SMALL_STATE(2998)] = 103956, + [SMALL_STATE(2999)] = 104017, + [SMALL_STATE(3000)] = 104076, + [SMALL_STATE(3001)] = 104135, + [SMALL_STATE(3002)] = 104194, + [SMALL_STATE(3003)] = 104253, + [SMALL_STATE(3004)] = 104312, + [SMALL_STATE(3005)] = 104373, + [SMALL_STATE(3006)] = 104432, + [SMALL_STATE(3007)] = 104493, + [SMALL_STATE(3008)] = 104554, + [SMALL_STATE(3009)] = 104613, + [SMALL_STATE(3010)] = 104672, + [SMALL_STATE(3011)] = 104731, + [SMALL_STATE(3012)] = 104790, + [SMALL_STATE(3013)] = 104849, + [SMALL_STATE(3014)] = 104908, + [SMALL_STATE(3015)] = 104967, + [SMALL_STATE(3016)] = 105026, + [SMALL_STATE(3017)] = 105089, + [SMALL_STATE(3018)] = 105148, + [SMALL_STATE(3019)] = 105207, + [SMALL_STATE(3020)] = 105268, + [SMALL_STATE(3021)] = 105331, + [SMALL_STATE(3022)] = 105390, + [SMALL_STATE(3023)] = 105449, + [SMALL_STATE(3024)] = 105510, + [SMALL_STATE(3025)] = 105581, + [SMALL_STATE(3026)] = 105654, + [SMALL_STATE(3027)] = 105713, + [SMALL_STATE(3028)] = 105772, + [SMALL_STATE(3029)] = 105831, + [SMALL_STATE(3030)] = 105890, + [SMALL_STATE(3031)] = 105949, + [SMALL_STATE(3032)] = 106008, + [SMALL_STATE(3033)] = 106069, + [SMALL_STATE(3034)] = 106128, + [SMALL_STATE(3035)] = 106191, + [SMALL_STATE(3036)] = 106250, + [SMALL_STATE(3037)] = 106309, + [SMALL_STATE(3038)] = 106368, + [SMALL_STATE(3039)] = 106429, + [SMALL_STATE(3040)] = 106488, + [SMALL_STATE(3041)] = 106549, + [SMALL_STATE(3042)] = 106612, + [SMALL_STATE(3043)] = 106673, + [SMALL_STATE(3044)] = 106734, + [SMALL_STATE(3045)] = 106793, + [SMALL_STATE(3046)] = 106851, + [SMALL_STATE(3047)] = 106909, + [SMALL_STATE(3048)] = 106967, + [SMALL_STATE(3049)] = 107025, + [SMALL_STATE(3050)] = 107083, + [SMALL_STATE(3051)] = 107141, + [SMALL_STATE(3052)] = 107199, + [SMALL_STATE(3053)] = 107257, + [SMALL_STATE(3054)] = 107323, + [SMALL_STATE(3055)] = 107381, + [SMALL_STATE(3056)] = 107439, + [SMALL_STATE(3057)] = 107497, + [SMALL_STATE(3058)] = 107555, + [SMALL_STATE(3059)] = 107615, + [SMALL_STATE(3060)] = 107673, + [SMALL_STATE(3061)] = 107731, + [SMALL_STATE(3062)] = 107789, + [SMALL_STATE(3063)] = 107847, + [SMALL_STATE(3064)] = 107905, + [SMALL_STATE(3065)] = 107963, + [SMALL_STATE(3066)] = 108021, + [SMALL_STATE(3067)] = 108079, + [SMALL_STATE(3068)] = 108137, + [SMALL_STATE(3069)] = 108195, + [SMALL_STATE(3070)] = 108253, + [SMALL_STATE(3071)] = 108313, + [SMALL_STATE(3072)] = 108371, + [SMALL_STATE(3073)] = 108429, + [SMALL_STATE(3074)] = 108487, + [SMALL_STATE(3075)] = 108545, + [SMALL_STATE(3076)] = 108603, + [SMALL_STATE(3077)] = 108661, + [SMALL_STATE(3078)] = 108719, + [SMALL_STATE(3079)] = 108777, + [SMALL_STATE(3080)] = 108835, + [SMALL_STATE(3081)] = 108893, + [SMALL_STATE(3082)] = 108951, + [SMALL_STATE(3083)] = 109009, + [SMALL_STATE(3084)] = 109069, + [SMALL_STATE(3085)] = 109127, + [SMALL_STATE(3086)] = 109185, + [SMALL_STATE(3087)] = 109245, + [SMALL_STATE(3088)] = 109303, + [SMALL_STATE(3089)] = 109361, + [SMALL_STATE(3090)] = 109419, + [SMALL_STATE(3091)] = 109477, + [SMALL_STATE(3092)] = 109535, + [SMALL_STATE(3093)] = 109593, + [SMALL_STATE(3094)] = 109651, + [SMALL_STATE(3095)] = 109709, + [SMALL_STATE(3096)] = 109767, + [SMALL_STATE(3097)] = 109827, + [SMALL_STATE(3098)] = 109885, + [SMALL_STATE(3099)] = 109943, + [SMALL_STATE(3100)] = 110001, + [SMALL_STATE(3101)] = 110059, + [SMALL_STATE(3102)] = 110117, + [SMALL_STATE(3103)] = 110175, + [SMALL_STATE(3104)] = 110233, + [SMALL_STATE(3105)] = 110291, + [SMALL_STATE(3106)] = 110349, + [SMALL_STATE(3107)] = 110407, + [SMALL_STATE(3108)] = 110465, + [SMALL_STATE(3109)] = 110523, + [SMALL_STATE(3110)] = 110581, + [SMALL_STATE(3111)] = 110639, + [SMALL_STATE(3112)] = 110697, + [SMALL_STATE(3113)] = 110755, + [SMALL_STATE(3114)] = 110813, + [SMALL_STATE(3115)] = 110871, + [SMALL_STATE(3116)] = 110929, + [SMALL_STATE(3117)] = 110987, + [SMALL_STATE(3118)] = 111045, + [SMALL_STATE(3119)] = 111103, + [SMALL_STATE(3120)] = 111161, + [SMALL_STATE(3121)] = 111219, + [SMALL_STATE(3122)] = 111277, + [SMALL_STATE(3123)] = 111335, + [SMALL_STATE(3124)] = 111393, + [SMALL_STATE(3125)] = 111451, + [SMALL_STATE(3126)] = 111509, + [SMALL_STATE(3127)] = 111566, + [SMALL_STATE(3128)] = 111623, + [SMALL_STATE(3129)] = 111680, + [SMALL_STATE(3130)] = 111737, + [SMALL_STATE(3131)] = 111794, + [SMALL_STATE(3132)] = 111851, + [SMALL_STATE(3133)] = 111918, + [SMALL_STATE(3134)] = 111975, + [SMALL_STATE(3135)] = 112032, + [SMALL_STATE(3136)] = 112089, + [SMALL_STATE(3137)] = 112152, + [SMALL_STATE(3138)] = 112217, + [SMALL_STATE(3139)] = 112293, + [SMALL_STATE(3140)] = 112369, + [SMALL_STATE(3141)] = 112445, + [SMALL_STATE(3142)] = 112521, + [SMALL_STATE(3143)] = 112597, + [SMALL_STATE(3144)] = 112673, + [SMALL_STATE(3145)] = 112735, + [SMALL_STATE(3146)] = 112799, + [SMALL_STATE(3147)] = 112875, + [SMALL_STATE(3148)] = 112951, + [SMALL_STATE(3149)] = 113027, + [SMALL_STATE(3150)] = 113103, + [SMALL_STATE(3151)] = 113179, + [SMALL_STATE(3152)] = 113255, + [SMALL_STATE(3153)] = 113331, + [SMALL_STATE(3154)] = 113407, + [SMALL_STATE(3155)] = 113463, + [SMALL_STATE(3156)] = 113539, + [SMALL_STATE(3157)] = 113595, + [SMALL_STATE(3158)] = 113671, + [SMALL_STATE(3159)] = 113727, + [SMALL_STATE(3160)] = 113792, + [SMALL_STATE(3161)] = 113855, + [SMALL_STATE(3162)] = 113911, + [SMALL_STATE(3163)] = 113967, + [SMALL_STATE(3164)] = 114023, + [SMALL_STATE(3165)] = 114077, + [SMALL_STATE(3166)] = 114137, + [SMALL_STATE(3167)] = 114207, + [SMALL_STATE(3168)] = 114265, + [SMALL_STATE(3169)] = 114319, + [SMALL_STATE(3170)] = 114375, + [SMALL_STATE(3171)] = 114428, + [SMALL_STATE(3172)] = 114483, + [SMALL_STATE(3173)] = 114538, + [SMALL_STATE(3174)] = 114591, + [SMALL_STATE(3175)] = 114648, + [SMALL_STATE(3176)] = 114717, + [SMALL_STATE(3177)] = 114778, + [SMALL_STATE(3178)] = 114835, + [SMALL_STATE(3179)] = 114892, + [SMALL_STATE(3180)] = 114949, + [SMALL_STATE(3181)] = 115016, + [SMALL_STATE(3182)] = 115069, + [SMALL_STATE(3183)] = 115122, + [SMALL_STATE(3184)] = 115177, + [SMALL_STATE(3185)] = 115230, + [SMALL_STATE(3186)] = 115283, + [SMALL_STATE(3187)] = 115336, + [SMALL_STATE(3188)] = 115391, + [SMALL_STATE(3189)] = 115444, + [SMALL_STATE(3190)] = 115501, + [SMALL_STATE(3191)] = 115558, + [SMALL_STATE(3192)] = 115613, + [SMALL_STATE(3193)] = 115668, + [SMALL_STATE(3194)] = 115721, + [SMALL_STATE(3195)] = 115774, + [SMALL_STATE(3196)] = 115827, + [SMALL_STATE(3197)] = 115880, + [SMALL_STATE(3198)] = 115934, + [SMALL_STATE(3199)] = 115984, + [SMALL_STATE(3200)] = 116034, + [SMALL_STATE(3201)] = 116086, + [SMALL_STATE(3202)] = 116138, + [SMALL_STATE(3203)] = 116192, + [SMALL_STATE(3204)] = 116258, + [SMALL_STATE(3205)] = 116324, + [SMALL_STATE(3206)] = 116390, + [SMALL_STATE(3207)] = 116454, + [SMALL_STATE(3208)] = 116518, + [SMALL_STATE(3209)] = 116568, + [SMALL_STATE(3210)] = 116618, + [SMALL_STATE(3211)] = 116668, + [SMALL_STATE(3212)] = 116718, + [SMALL_STATE(3213)] = 116770, + [SMALL_STATE(3214)] = 116822, + [SMALL_STATE(3215)] = 116874, + [SMALL_STATE(3216)] = 116926, + [SMALL_STATE(3217)] = 116978, + [SMALL_STATE(3218)] = 117032, + [SMALL_STATE(3219)] = 117086, + [SMALL_STATE(3220)] = 117152, + [SMALL_STATE(3221)] = 117216, + [SMALL_STATE(3222)] = 117270, + [SMALL_STATE(3223)] = 117324, + [SMALL_STATE(3224)] = 117376, + [SMALL_STATE(3225)] = 117430, + [SMALL_STATE(3226)] = 117486, + [SMALL_STATE(3227)] = 117548, + [SMALL_STATE(3228)] = 117612, + [SMALL_STATE(3229)] = 117678, + [SMALL_STATE(3230)] = 117746, + [SMALL_STATE(3231)] = 117816, + [SMALL_STATE(3232)] = 117888, + [SMALL_STATE(3233)] = 117962, + [SMALL_STATE(3234)] = 118022, + [SMALL_STATE(3235)] = 118080, + [SMALL_STATE(3236)] = 118132, + [SMALL_STATE(3237)] = 118188, + [SMALL_STATE(3238)] = 118246, + [SMALL_STATE(3239)] = 118306, + [SMALL_STATE(3240)] = 118372, + [SMALL_STATE(3241)] = 118440, + [SMALL_STATE(3242)] = 118510, + [SMALL_STATE(3243)] = 118582, + [SMALL_STATE(3244)] = 118656, + [SMALL_STATE(3245)] = 118732, + [SMALL_STATE(3246)] = 118810, + [SMALL_STATE(3247)] = 118874, + [SMALL_STATE(3248)] = 118936, + [SMALL_STATE(3249)] = 119000, + [SMALL_STATE(3250)] = 119056, + [SMALL_STATE(3251)] = 119112, + [SMALL_STATE(3252)] = 119170, + [SMALL_STATE(3253)] = 119228, + [SMALL_STATE(3254)] = 119288, + [SMALL_STATE(3255)] = 119348, + [SMALL_STATE(3256)] = 119414, + [SMALL_STATE(3257)] = 119480, + [SMALL_STATE(3258)] = 119548, + [SMALL_STATE(3259)] = 119616, + [SMALL_STATE(3260)] = 119686, + [SMALL_STATE(3261)] = 119756, + [SMALL_STATE(3262)] = 119828, + [SMALL_STATE(3263)] = 119900, + [SMALL_STATE(3264)] = 119974, + [SMALL_STATE(3265)] = 120048, + [SMALL_STATE(3266)] = 120124, + [SMALL_STATE(3267)] = 120200, + [SMALL_STATE(3268)] = 120278, + [SMALL_STATE(3269)] = 120356, + [SMALL_STATE(3270)] = 120420, + [SMALL_STATE(3271)] = 120484, + [SMALL_STATE(3272)] = 120546, + [SMALL_STATE(3273)] = 120608, + [SMALL_STATE(3274)] = 120664, + [SMALL_STATE(3275)] = 120722, + [SMALL_STATE(3276)] = 120782, + [SMALL_STATE(3277)] = 120848, + [SMALL_STATE(3278)] = 120916, + [SMALL_STATE(3279)] = 120986, + [SMALL_STATE(3280)] = 121058, + [SMALL_STATE(3281)] = 121132, + [SMALL_STATE(3282)] = 121208, + [SMALL_STATE(3283)] = 121286, + [SMALL_STATE(3284)] = 121350, + [SMALL_STATE(3285)] = 121412, + [SMALL_STATE(3286)] = 121468, + [SMALL_STATE(3287)] = 121526, + [SMALL_STATE(3288)] = 121586, + [SMALL_STATE(3289)] = 121652, + [SMALL_STATE(3290)] = 121720, + [SMALL_STATE(3291)] = 121790, + [SMALL_STATE(3292)] = 121862, + [SMALL_STATE(3293)] = 121936, + [SMALL_STATE(3294)] = 122012, + [SMALL_STATE(3295)] = 122090, + [SMALL_STATE(3296)] = 122154, + [SMALL_STATE(3297)] = 122216, + [SMALL_STATE(3298)] = 122272, + [SMALL_STATE(3299)] = 122328, + [SMALL_STATE(3300)] = 122386, + [SMALL_STATE(3301)] = 122444, + [SMALL_STATE(3302)] = 122504, + [SMALL_STATE(3303)] = 122564, + [SMALL_STATE(3304)] = 122630, + [SMALL_STATE(3305)] = 122696, + [SMALL_STATE(3306)] = 122764, + [SMALL_STATE(3307)] = 122832, + [SMALL_STATE(3308)] = 122902, + [SMALL_STATE(3309)] = 122972, + [SMALL_STATE(3310)] = 123044, + [SMALL_STATE(3311)] = 123116, + [SMALL_STATE(3312)] = 123190, + [SMALL_STATE(3313)] = 123264, + [SMALL_STATE(3314)] = 123340, + [SMALL_STATE(3315)] = 123416, + [SMALL_STATE(3316)] = 123494, + [SMALL_STATE(3317)] = 123572, + [SMALL_STATE(3318)] = 123636, + [SMALL_STATE(3319)] = 123700, + [SMALL_STATE(3320)] = 123762, + [SMALL_STATE(3321)] = 123824, + [SMALL_STATE(3322)] = 123880, + [SMALL_STATE(3323)] = 123938, + [SMALL_STATE(3324)] = 123998, + [SMALL_STATE(3325)] = 124064, + [SMALL_STATE(3326)] = 124132, + [SMALL_STATE(3327)] = 124202, + [SMALL_STATE(3328)] = 124274, + [SMALL_STATE(3329)] = 124348, + [SMALL_STATE(3330)] = 124424, + [SMALL_STATE(3331)] = 124502, + [SMALL_STATE(3332)] = 124566, + [SMALL_STATE(3333)] = 124628, + [SMALL_STATE(3334)] = 124692, + [SMALL_STATE(3335)] = 124744, + [SMALL_STATE(3336)] = 124798, + [SMALL_STATE(3337)] = 124852, + [SMALL_STATE(3338)] = 124904, + [SMALL_STATE(3339)] = 124975, + [SMALL_STATE(3340)] = 125036, + [SMALL_STATE(3341)] = 125097, + [SMALL_STATE(3342)] = 125156, + [SMALL_STATE(3343)] = 125207, + [SMALL_STATE(3344)] = 125268, + [SMALL_STATE(3345)] = 125317, + [SMALL_STATE(3346)] = 125368, + [SMALL_STATE(3347)] = 125429, + [SMALL_STATE(3348)] = 125480, + [SMALL_STATE(3349)] = 125533, + [SMALL_STATE(3350)] = 125594, + [SMALL_STATE(3351)] = 125649, + [SMALL_STATE(3352)] = 125700, + [SMALL_STATE(3353)] = 125753, + [SMALL_STATE(3354)] = 125808, + [SMALL_STATE(3355)] = 125871, + [SMALL_STATE(3356)] = 125936, + [SMALL_STATE(3357)] = 126003, + [SMALL_STATE(3358)] = 126072, + [SMALL_STATE(3359)] = 126145, + [SMALL_STATE(3360)] = 126204, + [SMALL_STATE(3361)] = 126261, + [SMALL_STATE(3362)] = 126310, + [SMALL_STATE(3363)] = 126359, + [SMALL_STATE(3364)] = 126414, + [SMALL_STATE(3365)] = 126475, + [SMALL_STATE(3366)] = 126536, + [SMALL_STATE(3367)] = 126587, + [SMALL_STATE(3368)] = 126646, + [SMALL_STATE(3369)] = 126707, + [SMALL_STATE(3370)] = 126768, + [SMALL_STATE(3371)] = 126819, + [SMALL_STATE(3372)] = 126880, + [SMALL_STATE(3373)] = 126931, + [SMALL_STATE(3374)] = 126986, + [SMALL_STATE(3375)] = 127041, + [SMALL_STATE(3376)] = 127092, + [SMALL_STATE(3377)] = 127153, + [SMALL_STATE(3378)] = 127207, + [SMALL_STATE(3379)] = 127261, + [SMALL_STATE(3380)] = 127319, + [SMALL_STATE(3381)] = 127371, + [SMALL_STATE(3382)] = 127429, + [SMALL_STATE(3383)] = 127483, + [SMALL_STATE(3384)] = 127569, + [SMALL_STATE(3385)] = 127633, + [SMALL_STATE(3386)] = 127719, + [SMALL_STATE(3387)] = 127773, + [SMALL_STATE(3388)] = 127839, + [SMALL_STATE(3389)] = 127891, + [SMALL_STATE(3390)] = 127945, + [SMALL_STATE(3391)] = 127997, + [SMALL_STATE(3392)] = 128049, + [SMALL_STATE(3393)] = 128107, + [SMALL_STATE(3394)] = 128156, + [SMALL_STATE(3395)] = 128211, + [SMALL_STATE(3396)] = 128264, + [SMALL_STATE(3397)] = 128329, + [SMALL_STATE(3398)] = 128378, + [SMALL_STATE(3399)] = 128461, + [SMALL_STATE(3400)] = 128512, + [SMALL_STATE(3401)] = 128561, + [SMALL_STATE(3402)] = 128616, + [SMALL_STATE(3403)] = 128667, + [SMALL_STATE(3404)] = 128720, + [SMALL_STATE(3405)] = 128803, + [SMALL_STATE(3406)] = 128858, + [SMALL_STATE(3407)] = 128913, + [SMALL_STATE(3408)] = 128972, + [SMALL_STATE(3409)] = 129021, + [SMALL_STATE(3410)] = 129084, + [SMALL_STATE(3411)] = 129133, + [SMALL_STATE(3412)] = 129186, + [SMALL_STATE(3413)] = 129237, + [SMALL_STATE(3414)] = 129286, + [SMALL_STATE(3415)] = 129337, + [SMALL_STATE(3416)] = 129402, + [SMALL_STATE(3417)] = 129451, + [SMALL_STATE(3418)] = 129506, + [SMALL_STATE(3419)] = 129569, + [SMALL_STATE(3420)] = 129618, + [SMALL_STATE(3421)] = 129667, + [SMALL_STATE(3422)] = 129730, + [SMALL_STATE(3423)] = 129778, + [SMALL_STATE(3424)] = 129826, + [SMALL_STATE(3425)] = 129874, + [SMALL_STATE(3426)] = 129922, + [SMALL_STATE(3427)] = 129974, + [SMALL_STATE(3428)] = 130022, + [SMALL_STATE(3429)] = 130070, + [SMALL_STATE(3430)] = 130118, + [SMALL_STATE(3431)] = 130166, + [SMALL_STATE(3432)] = 130214, + [SMALL_STATE(3433)] = 130262, + [SMALL_STATE(3434)] = 130310, + [SMALL_STATE(3435)] = 130358, + [SMALL_STATE(3436)] = 130410, + [SMALL_STATE(3437)] = 130458, + [SMALL_STATE(3438)] = 130506, + [SMALL_STATE(3439)] = 130556, + [SMALL_STATE(3440)] = 130604, + [SMALL_STATE(3441)] = 130666, + [SMALL_STATE(3442)] = 130714, + [SMALL_STATE(3443)] = 130766, + [SMALL_STATE(3444)] = 130816, + [SMALL_STATE(3445)] = 130866, + [SMALL_STATE(3446)] = 130926, + [SMALL_STATE(3447)] = 130988, + [SMALL_STATE(3448)] = 131050, + [SMALL_STATE(3449)] = 131112, + [SMALL_STATE(3450)] = 131174, + [SMALL_STATE(3451)] = 131222, + [SMALL_STATE(3452)] = 131284, + [SMALL_STATE(3453)] = 131332, + [SMALL_STATE(3454)] = 131380, + [SMALL_STATE(3455)] = 131428, + [SMALL_STATE(3456)] = 131476, + [SMALL_STATE(3457)] = 131524, + [SMALL_STATE(3458)] = 131574, + [SMALL_STATE(3459)] = 131622, + [SMALL_STATE(3460)] = 131682, + [SMALL_STATE(3461)] = 131730, + [SMALL_STATE(3462)] = 131778, + [SMALL_STATE(3463)] = 131826, + [SMALL_STATE(3464)] = 131874, + [SMALL_STATE(3465)] = 131926, + [SMALL_STATE(3466)] = 131974, + [SMALL_STATE(3467)] = 132029, + [SMALL_STATE(3468)] = 132080, + [SMALL_STATE(3469)] = 132127, + [SMALL_STATE(3470)] = 132174, + [SMALL_STATE(3471)] = 132223, + [SMALL_STATE(3472)] = 132278, + [SMALL_STATE(3473)] = 132333, + [SMALL_STATE(3474)] = 132388, + [SMALL_STATE(3475)] = 132443, + [SMALL_STATE(3476)] = 132498, + [SMALL_STATE(3477)] = 132553, + [SMALL_STATE(3478)] = 132608, + [SMALL_STATE(3479)] = 132663, + [SMALL_STATE(3480)] = 132718, + [SMALL_STATE(3481)] = 132773, + [SMALL_STATE(3482)] = 132828, + [SMALL_STATE(3483)] = 132883, + [SMALL_STATE(3484)] = 132930, + [SMALL_STATE(3485)] = 132985, + [SMALL_STATE(3486)] = 133032, + [SMALL_STATE(3487)] = 133087, + [SMALL_STATE(3488)] = 133142, + [SMALL_STATE(3489)] = 133197, + [SMALL_STATE(3490)] = 133244, + [SMALL_STATE(3491)] = 133295, + [SMALL_STATE(3492)] = 133342, + [SMALL_STATE(3493)] = 133397, + [SMALL_STATE(3494)] = 133452, + [SMALL_STATE(3495)] = 133499, + [SMALL_STATE(3496)] = 133554, + [SMALL_STATE(3497)] = 133609, + [SMALL_STATE(3498)] = 133664, + [SMALL_STATE(3499)] = 133719, + [SMALL_STATE(3500)] = 133774, + [SMALL_STATE(3501)] = 133829, + [SMALL_STATE(3502)] = 133884, + [SMALL_STATE(3503)] = 133939, + [SMALL_STATE(3504)] = 133994, + [SMALL_STATE(3505)] = 134049, + [SMALL_STATE(3506)] = 134104, + [SMALL_STATE(3507)] = 134159, + [SMALL_STATE(3508)] = 134214, + [SMALL_STATE(3509)] = 134269, + [SMALL_STATE(3510)] = 134324, + [SMALL_STATE(3511)] = 134379, + [SMALL_STATE(3512)] = 134434, + [SMALL_STATE(3513)] = 134489, + [SMALL_STATE(3514)] = 134544, + [SMALL_STATE(3515)] = 134599, + [SMALL_STATE(3516)] = 134654, + [SMALL_STATE(3517)] = 134709, + [SMALL_STATE(3518)] = 134764, + [SMALL_STATE(3519)] = 134819, + [SMALL_STATE(3520)] = 134874, + [SMALL_STATE(3521)] = 134929, + [SMALL_STATE(3522)] = 134984, + [SMALL_STATE(3523)] = 135039, + [SMALL_STATE(3524)] = 135094, + [SMALL_STATE(3525)] = 135149, + [SMALL_STATE(3526)] = 135197, + [SMALL_STATE(3527)] = 135251, + [SMALL_STATE(3528)] = 135303, + [SMALL_STATE(3529)] = 135355, + [SMALL_STATE(3530)] = 135401, + [SMALL_STATE(3531)] = 135449, + [SMALL_STATE(3532)] = 135501, + [SMALL_STATE(3533)] = 135547, + [SMALL_STATE(3534)] = 135597, + [SMALL_STATE(3535)] = 135647, + [SMALL_STATE(3536)] = 135697, + [SMALL_STATE(3537)] = 135747, + [SMALL_STATE(3538)] = 135793, + [SMALL_STATE(3539)] = 135843, + [SMALL_STATE(3540)] = 135893, + [SMALL_STATE(3541)] = 135938, + [SMALL_STATE(3542)] = 135983, + [SMALL_STATE(3543)] = 136032, + [SMALL_STATE(3544)] = 136083, + [SMALL_STATE(3545)] = 136128, + [SMALL_STATE(3546)] = 136173, + [SMALL_STATE(3547)] = 136218, + [SMALL_STATE(3548)] = 136269, + [SMALL_STATE(3549)] = 136316, + [SMALL_STATE(3550)] = 136361, + [SMALL_STATE(3551)] = 136408, + [SMALL_STATE(3552)] = 136457, + [SMALL_STATE(3553)] = 136502, + [SMALL_STATE(3554)] = 136547, + [SMALL_STATE(3555)] = 136592, + [SMALL_STATE(3556)] = 136637, + [SMALL_STATE(3557)] = 136688, + [SMALL_STATE(3558)] = 136736, + [SMALL_STATE(3559)] = 136780, + [SMALL_STATE(3560)] = 136824, + [SMALL_STATE(3561)] = 136870, + [SMALL_STATE(3562)] = 136918, + [SMALL_STATE(3563)] = 136962, + [SMALL_STATE(3564)] = 137010, + [SMALL_STATE(3565)] = 137054, + [SMALL_STATE(3566)] = 137100, + [SMALL_STATE(3567)] = 137146, + [SMALL_STATE(3568)] = 137192, + [SMALL_STATE(3569)] = 137240, + [SMALL_STATE(3570)] = 137284, + [SMALL_STATE(3571)] = 137332, + [SMALL_STATE(3572)] = 137380, + [SMALL_STATE(3573)] = 137428, + [SMALL_STATE(3574)] = 137472, + [SMALL_STATE(3575)] = 137516, + [SMALL_STATE(3576)] = 137562, + [SMALL_STATE(3577)] = 137612, + [SMALL_STATE(3578)] = 137662, + [SMALL_STATE(3579)] = 137708, + [SMALL_STATE(3580)] = 137754, + [SMALL_STATE(3581)] = 137804, + [SMALL_STATE(3582)] = 137848, + [SMALL_STATE(3583)] = 137892, + [SMALL_STATE(3584)] = 137938, + [SMALL_STATE(3585)] = 137982, + [SMALL_STATE(3586)] = 138026, + [SMALL_STATE(3587)] = 138073, + [SMALL_STATE(3588)] = 138124, + [SMALL_STATE(3589)] = 138167, + [SMALL_STATE(3590)] = 138210, + [SMALL_STATE(3591)] = 138261, + [SMALL_STATE(3592)] = 138304, + [SMALL_STATE(3593)] = 138347, + [SMALL_STATE(3594)] = 138390, + [SMALL_STATE(3595)] = 138437, + [SMALL_STATE(3596)] = 138484, + [SMALL_STATE(3597)] = 138531, + [SMALL_STATE(3598)] = 138578, + [SMALL_STATE(3599)] = 138621, + [SMALL_STATE(3600)] = 138664, + [SMALL_STATE(3601)] = 138707, + [SMALL_STATE(3602)] = 138754, + [SMALL_STATE(3603)] = 138797, + [SMALL_STATE(3604)] = 138840, + [SMALL_STATE(3605)] = 138883, + [SMALL_STATE(3606)] = 138926, + [SMALL_STATE(3607)] = 138969, + [SMALL_STATE(3608)] = 139012, + [SMALL_STATE(3609)] = 139055, + [SMALL_STATE(3610)] = 139098, + [SMALL_STATE(3611)] = 139141, + [SMALL_STATE(3612)] = 139184, + [SMALL_STATE(3613)] = 139227, + [SMALL_STATE(3614)] = 139270, + [SMALL_STATE(3615)] = 139317, + [SMALL_STATE(3616)] = 139360, + [SMALL_STATE(3617)] = 139403, + [SMALL_STATE(3618)] = 139448, + [SMALL_STATE(3619)] = 139493, + [SMALL_STATE(3620)] = 139536, + [SMALL_STATE(3621)] = 139579, + [SMALL_STATE(3622)] = 139622, + [SMALL_STATE(3623)] = 139665, + [SMALL_STATE(3624)] = 139708, + [SMALL_STATE(3625)] = 139751, + [SMALL_STATE(3626)] = 139794, + [SMALL_STATE(3627)] = 139841, + [SMALL_STATE(3628)] = 139884, + [SMALL_STATE(3629)] = 139927, + [SMALL_STATE(3630)] = 139970, + [SMALL_STATE(3631)] = 140013, + [SMALL_STATE(3632)] = 140056, + [SMALL_STATE(3633)] = 140099, + [SMALL_STATE(3634)] = 140142, + [SMALL_STATE(3635)] = 140185, + [SMALL_STATE(3636)] = 140228, + [SMALL_STATE(3637)] = 140271, + [SMALL_STATE(3638)] = 140314, + [SMALL_STATE(3639)] = 140357, + [SMALL_STATE(3640)] = 140400, + [SMALL_STATE(3641)] = 140443, + [SMALL_STATE(3642)] = 140486, + [SMALL_STATE(3643)] = 140575, + [SMALL_STATE(3644)] = 140618, + [SMALL_STATE(3645)] = 140661, + [SMALL_STATE(3646)] = 140750, + [SMALL_STATE(3647)] = 140793, + [SMALL_STATE(3648)] = 140836, + [SMALL_STATE(3649)] = 140879, + [SMALL_STATE(3650)] = 140924, + [SMALL_STATE(3651)] = 140967, + [SMALL_STATE(3652)] = 141014, + [SMALL_STATE(3653)] = 141057, + [SMALL_STATE(3654)] = 141100, + [SMALL_STATE(3655)] = 141147, + [SMALL_STATE(3656)] = 141192, + [SMALL_STATE(3657)] = 141237, + [SMALL_STATE(3658)] = 141280, + [SMALL_STATE(3659)] = 141323, + [SMALL_STATE(3660)] = 141366, + [SMALL_STATE(3661)] = 141413, + [SMALL_STATE(3662)] = 141456, + [SMALL_STATE(3663)] = 141500, + [SMALL_STATE(3664)] = 141554, + [SMALL_STATE(3665)] = 141606, + [SMALL_STATE(3666)] = 141648, + [SMALL_STATE(3667)] = 141690, + [SMALL_STATE(3668)] = 141732, + [SMALL_STATE(3669)] = 141774, + [SMALL_STATE(3670)] = 141822, + [SMALL_STATE(3671)] = 141872, + [SMALL_STATE(3672)] = 141914, + [SMALL_STATE(3673)] = 141956, + [SMALL_STATE(3674)] = 141998, + [SMALL_STATE(3675)] = 142040, + [SMALL_STATE(3676)] = 142090, + [SMALL_STATE(3677)] = 142146, + [SMALL_STATE(3678)] = 142204, + [SMALL_STATE(3679)] = 142246, + [SMALL_STATE(3680)] = 142306, + [SMALL_STATE(3681)] = 142368, + [SMALL_STATE(3682)] = 142410, + [SMALL_STATE(3683)] = 142474, + [SMALL_STATE(3684)] = 142520, + [SMALL_STATE(3685)] = 142586, + [SMALL_STATE(3686)] = 142630, + [SMALL_STATE(3687)] = 142698, + [SMALL_STATE(3688)] = 142752, + [SMALL_STATE(3689)] = 142796, + [SMALL_STATE(3690)] = 142848, + [SMALL_STATE(3691)] = 142890, + [SMALL_STATE(3692)] = 142936, + [SMALL_STATE(3693)] = 142982, + [SMALL_STATE(3694)] = 143028, + [SMALL_STATE(3695)] = 143074, + [SMALL_STATE(3696)] = 143116, + [SMALL_STATE(3697)] = 143162, + [SMALL_STATE(3698)] = 143210, + [SMALL_STATE(3699)] = 143258, + [SMALL_STATE(3700)] = 143308, + [SMALL_STATE(3701)] = 143358, + [SMALL_STATE(3702)] = 143414, + [SMALL_STATE(3703)] = 143470, + [SMALL_STATE(3704)] = 143516, + [SMALL_STATE(3705)] = 143574, + [SMALL_STATE(3706)] = 143632, + [SMALL_STATE(3707)] = 143678, + [SMALL_STATE(3708)] = 143720, + [SMALL_STATE(3709)] = 143766, + [SMALL_STATE(3710)] = 143826, + [SMALL_STATE(3711)] = 143886, + [SMALL_STATE(3712)] = 143948, + [SMALL_STATE(3713)] = 144010, + [SMALL_STATE(3714)] = 144074, + [SMALL_STATE(3715)] = 144138, + [SMALL_STATE(3716)] = 144204, + [SMALL_STATE(3717)] = 144270, + [SMALL_STATE(3718)] = 144338, + [SMALL_STATE(3719)] = 144384, + [SMALL_STATE(3720)] = 144432, + [SMALL_STATE(3721)] = 144486, + [SMALL_STATE(3722)] = 144542, + [SMALL_STATE(3723)] = 144600, + [SMALL_STATE(3724)] = 144660, + [SMALL_STATE(3725)] = 144722, + [SMALL_STATE(3726)] = 144786, + [SMALL_STATE(3727)] = 144852, + [SMALL_STATE(3728)] = 144904, + [SMALL_STATE(3729)] = 144954, + [SMALL_STATE(3730)] = 145022, + [SMALL_STATE(3731)] = 145076, + [SMALL_STATE(3732)] = 145130, + [SMALL_STATE(3733)] = 145182, + [SMALL_STATE(3734)] = 145234, + [SMALL_STATE(3735)] = 145280, + [SMALL_STATE(3736)] = 145328, + [SMALL_STATE(3737)] = 145378, + [SMALL_STATE(3738)] = 145434, + [SMALL_STATE(3739)] = 145502, + [SMALL_STATE(3740)] = 145562, + [SMALL_STATE(3741)] = 145604, + [SMALL_STATE(3742)] = 145666, + [SMALL_STATE(3743)] = 145730, + [SMALL_STATE(3744)] = 145796, + [SMALL_STATE(3745)] = 145838, + [SMALL_STATE(3746)] = 145906, + [SMALL_STATE(3747)] = 145960, + [SMALL_STATE(3748)] = 146012, + [SMALL_STATE(3749)] = 146058, + [SMALL_STATE(3750)] = 146106, + [SMALL_STATE(3751)] = 146156, + [SMALL_STATE(3752)] = 146198, + [SMALL_STATE(3753)] = 146254, + [SMALL_STATE(3754)] = 146296, + [SMALL_STATE(3755)] = 146338, + [SMALL_STATE(3756)] = 146396, + [SMALL_STATE(3757)] = 146456, + [SMALL_STATE(3758)] = 146518, + [SMALL_STATE(3759)] = 146582, + [SMALL_STATE(3760)] = 146648, + [SMALL_STATE(3761)] = 146716, + [SMALL_STATE(3762)] = 146770, + [SMALL_STATE(3763)] = 146822, + [SMALL_STATE(3764)] = 146868, + [SMALL_STATE(3765)] = 146914, + [SMALL_STATE(3766)] = 146962, + [SMALL_STATE(3767)] = 147010, + [SMALL_STATE(3768)] = 147060, + [SMALL_STATE(3769)] = 147110, + [SMALL_STATE(3770)] = 147166, + [SMALL_STATE(3771)] = 147222, + [SMALL_STATE(3772)] = 147280, + [SMALL_STATE(3773)] = 147338, + [SMALL_STATE(3774)] = 147382, + [SMALL_STATE(3775)] = 147442, + [SMALL_STATE(3776)] = 147502, + [SMALL_STATE(3777)] = 147564, + [SMALL_STATE(3778)] = 147626, + [SMALL_STATE(3779)] = 147690, + [SMALL_STATE(3780)] = 147754, + [SMALL_STATE(3781)] = 147796, + [SMALL_STATE(3782)] = 147838, + [SMALL_STATE(3783)] = 147904, + [SMALL_STATE(3784)] = 147970, + [SMALL_STATE(3785)] = 148038, + [SMALL_STATE(3786)] = 148106, + [SMALL_STATE(3787)] = 148160, + [SMALL_STATE(3788)] = 148214, + [SMALL_STATE(3789)] = 148266, + [SMALL_STATE(3790)] = 148312, + [SMALL_STATE(3791)] = 148354, + [SMALL_STATE(3792)] = 148406, + [SMALL_STATE(3793)] = 148456, + [SMALL_STATE(3794)] = 148502, + [SMALL_STATE(3795)] = 148550, + [SMALL_STATE(3796)] = 148600, + [SMALL_STATE(3797)] = 148656, + [SMALL_STATE(3798)] = 148700, + [SMALL_STATE(3799)] = 148744, + [SMALL_STATE(3800)] = 148802, + [SMALL_STATE(3801)] = 148862, + [SMALL_STATE(3802)] = 148924, + [SMALL_STATE(3803)] = 148988, + [SMALL_STATE(3804)] = 149054, + [SMALL_STATE(3805)] = 149112, + [SMALL_STATE(3806)] = 149195, + [SMALL_STATE(3807)] = 149278, + [SMALL_STATE(3808)] = 149361, + [SMALL_STATE(3809)] = 149444, + [SMALL_STATE(3810)] = 149527, + [SMALL_STATE(3811)] = 149610, + [SMALL_STATE(3812)] = 149651, + [SMALL_STATE(3813)] = 149734, + [SMALL_STATE(3814)] = 149817, + [SMALL_STATE(3815)] = 149858, + [SMALL_STATE(3816)] = 149941, + [SMALL_STATE(3817)] = 150024, + [SMALL_STATE(3818)] = 150107, + [SMALL_STATE(3819)] = 150190, + [SMALL_STATE(3820)] = 150273, + [SMALL_STATE(3821)] = 150356, + [SMALL_STATE(3822)] = 150439, + [SMALL_STATE(3823)] = 150480, + [SMALL_STATE(3824)] = 150563, + [SMALL_STATE(3825)] = 150646, + [SMALL_STATE(3826)] = 150729, + [SMALL_STATE(3827)] = 150812, + [SMALL_STATE(3828)] = 150853, + [SMALL_STATE(3829)] = 150936, + [SMALL_STATE(3830)] = 151003, + [SMALL_STATE(3831)] = 151086, + [SMALL_STATE(3832)] = 151153, + [SMALL_STATE(3833)] = 151198, + [SMALL_STATE(3834)] = 151281, + [SMALL_STATE(3835)] = 151348, + [SMALL_STATE(3836)] = 151431, + [SMALL_STATE(3837)] = 151472, + [SMALL_STATE(3838)] = 151517, + [SMALL_STATE(3839)] = 151558, + [SMALL_STATE(3840)] = 151625, + [SMALL_STATE(3841)] = 151666, + [SMALL_STATE(3842)] = 151733, + [SMALL_STATE(3843)] = 151816, + [SMALL_STATE(3844)] = 151899, + [SMALL_STATE(3845)] = 151982, + [SMALL_STATE(3846)] = 152049, + [SMALL_STATE(3847)] = 152099, + [SMALL_STATE(3848)] = 152143, + [SMALL_STATE(3849)] = 152199, + [SMALL_STATE(3850)] = 152247, + [SMALL_STATE(3851)] = 152287, + [SMALL_STATE(3852)] = 152333, + [SMALL_STATE(3853)] = 152377, + [SMALL_STATE(3854)] = 152419, + [SMALL_STATE(3855)] = 152477, + [SMALL_STATE(3856)] = 152521, + [SMALL_STATE(3857)] = 152561, + [SMALL_STATE(3858)] = 152601, + [SMALL_STATE(3859)] = 152653, + [SMALL_STATE(3860)] = 152713, + [SMALL_STATE(3861)] = 152755, + [SMALL_STATE(3862)] = 152817, + [SMALL_STATE(3863)] = 152861, + [SMALL_STATE(3864)] = 152911, + [SMALL_STATE(3865)] = 152963, + [SMALL_STATE(3866)] = 153017, + [SMALL_STATE(3867)] = 153073, + [SMALL_STATE(3868)] = 153131, + [SMALL_STATE(3869)] = 153175, + [SMALL_STATE(3870)] = 153235, + [SMALL_STATE(3871)] = 153297, + [SMALL_STATE(3872)] = 153345, + [SMALL_STATE(3873)] = 153391, + [SMALL_STATE(3874)] = 153435, + [SMALL_STATE(3875)] = 153489, + [SMALL_STATE(3876)] = 153566, + [SMALL_STATE(3877)] = 153627, + [SMALL_STATE(3878)] = 153688, + [SMALL_STATE(3879)] = 153727, + [SMALL_STATE(3880)] = 153788, + [SMALL_STATE(3881)] = 153827, + [SMALL_STATE(3882)] = 153888, + [SMALL_STATE(3883)] = 153965, + [SMALL_STATE(3884)] = 154042, + [SMALL_STATE(3885)] = 154103, + [SMALL_STATE(3886)] = 154180, + [SMALL_STATE(3887)] = 154219, + [SMALL_STATE(3888)] = 154296, + [SMALL_STATE(3889)] = 154335, + [SMALL_STATE(3890)] = 154374, + [SMALL_STATE(3891)] = 154451, + [SMALL_STATE(3892)] = 154528, + [SMALL_STATE(3893)] = 154605, + [SMALL_STATE(3894)] = 154682, + [SMALL_STATE(3895)] = 154743, + [SMALL_STATE(3896)] = 154804, + [SMALL_STATE(3897)] = 154881, + [SMALL_STATE(3898)] = 154958, + [SMALL_STATE(3899)] = 155003, + [SMALL_STATE(3900)] = 155080, + [SMALL_STATE(3901)] = 155119, + [SMALL_STATE(3902)] = 155173, + [SMALL_STATE(3903)] = 155217, + [SMALL_STATE(3904)] = 155268, + [SMALL_STATE(3905)] = 155321, + [SMALL_STATE(3906)] = 155372, + [SMALL_STATE(3907)] = 155412, + [SMALL_STATE(3908)] = 155462, + [SMALL_STATE(3909)] = 155512, + [SMALL_STATE(3910)] = 155568, + [SMALL_STATE(3911)] = 155618, + [SMALL_STATE(3912)] = 155658, + [SMALL_STATE(3913)] = 155701, + [SMALL_STATE(3914)] = 155754, + [SMALL_STATE(3915)] = 155797, + [SMALL_STATE(3916)] = 155840, + [SMALL_STATE(3917)] = 155879, + [SMALL_STATE(3918)] = 155922, + [SMALL_STATE(3919)] = 155965, + [SMALL_STATE(3920)] = 156008, + [SMALL_STATE(3921)] = 156045, + [SMALL_STATE(3922)] = 156092, + [SMALL_STATE(3923)] = 156147, + [SMALL_STATE(3924)] = 156194, + [SMALL_STATE(3925)] = 156241, + [SMALL_STATE(3926)] = 156288, + [SMALL_STATE(3927)] = 156335, + [SMALL_STATE(3928)] = 156378, + [SMALL_STATE(3929)] = 156415, + [SMALL_STATE(3930)] = 156468, + [SMALL_STATE(3931)] = 156511, + [SMALL_STATE(3932)] = 156554, + [SMALL_STATE(3933)] = 156597, + [SMALL_STATE(3934)] = 156640, + [SMALL_STATE(3935)] = 156683, + [SMALL_STATE(3936)] = 156726, + [SMALL_STATE(3937)] = 156769, + [SMALL_STATE(3938)] = 156812, + [SMALL_STATE(3939)] = 156855, + [SMALL_STATE(3940)] = 156898, + [SMALL_STATE(3941)] = 156941, + [SMALL_STATE(3942)] = 156984, + [SMALL_STATE(3943)] = 157027, + [SMALL_STATE(3944)] = 157070, + [SMALL_STATE(3945)] = 157123, + [SMALL_STATE(3946)] = 157162, + [SMALL_STATE(3947)] = 157205, + [SMALL_STATE(3948)] = 157255, + [SMALL_STATE(3949)] = 157307, + [SMALL_STATE(3950)] = 157341, + [SMALL_STATE(3951)] = 157375, + [SMALL_STATE(3952)] = 157427, + [SMALL_STATE(3953)] = 157477, + [SMALL_STATE(3954)] = 157529, + [SMALL_STATE(3955)] = 157567, + [SMALL_STATE(3956)] = 157601, + [SMALL_STATE(3957)] = 157651, + [SMALL_STATE(3958)] = 157693, + [SMALL_STATE(3959)] = 157731, + [SMALL_STATE(3960)] = 157769, + [SMALL_STATE(3961)] = 157819, + [SMALL_STATE(3962)] = 157865, + [SMALL_STATE(3963)] = 157907, + [SMALL_STATE(3964)] = 157941, + [SMALL_STATE(3965)] = 157979, + [SMALL_STATE(3966)] = 158015, + [SMALL_STATE(3967)] = 158051, + [SMALL_STATE(3968)] = 158092, + [SMALL_STATE(3969)] = 158133, + [SMALL_STATE(3970)] = 158174, + [SMALL_STATE(3971)] = 158215, + [SMALL_STATE(3972)] = 158250, + [SMALL_STATE(3973)] = 158287, + [SMALL_STATE(3974)] = 158336, + [SMALL_STATE(3975)] = 158377, + [SMALL_STATE(3976)] = 158418, + [SMALL_STATE(3977)] = 158459, + [SMALL_STATE(3978)] = 158494, + [SMALL_STATE(3979)] = 158527, + [SMALL_STATE(3980)] = 158568, + [SMALL_STATE(3981)] = 158609, + [SMALL_STATE(3982)] = 158650, + [SMALL_STATE(3983)] = 158691, + [SMALL_STATE(3984)] = 158732, + [SMALL_STATE(3985)] = 158773, + [SMALL_STATE(3986)] = 158806, + [SMALL_STATE(3987)] = 158847, + [SMALL_STATE(3988)] = 158884, + [SMALL_STATE(3989)] = 158925, + [SMALL_STATE(3990)] = 158958, + [SMALL_STATE(3991)] = 158995, + [SMALL_STATE(3992)] = 159036, + [SMALL_STATE(3993)] = 159077, + [SMALL_STATE(3994)] = 159118, + [SMALL_STATE(3995)] = 159159, + [SMALL_STATE(3996)] = 159200, + [SMALL_STATE(3997)] = 159247, + [SMALL_STATE(3998)] = 159280, + [SMALL_STATE(3999)] = 159315, + [SMALL_STATE(4000)] = 159364, + [SMALL_STATE(4001)] = 159413, + [SMALL_STATE(4002)] = 159454, + [SMALL_STATE(4003)] = 159495, + [SMALL_STATE(4004)] = 159544, + [SMALL_STATE(4005)] = 159597, + [SMALL_STATE(4006)] = 159638, + [SMALL_STATE(4007)] = 159679, + [SMALL_STATE(4008)] = 159720, + [SMALL_STATE(4009)] = 159755, + [SMALL_STATE(4010)] = 159796, + [SMALL_STATE(4011)] = 159833, + [SMALL_STATE(4012)] = 159869, + [SMALL_STATE(4013)] = 159905, + [SMALL_STATE(4014)] = 159943, + [SMALL_STATE(4015)] = 159977, + [SMALL_STATE(4016)] = 160015, + [SMALL_STATE(4017)] = 160061, + [SMALL_STATE(4018)] = 160093, + [SMALL_STATE(4019)] = 160125, + [SMALL_STATE(4020)] = 160175, + [SMALL_STATE(4021)] = 160215, + [SMALL_STATE(4022)] = 160247, + [SMALL_STATE(4023)] = 160283, + [SMALL_STATE(4024)] = 160315, + [SMALL_STATE(4025)] = 160347, + [SMALL_STATE(4026)] = 160379, + [SMALL_STATE(4027)] = 160415, + [SMALL_STATE(4028)] = 160449, + [SMALL_STATE(4029)] = 160483, + [SMALL_STATE(4030)] = 160521, + [SMALL_STATE(4031)] = 160553, + [SMALL_STATE(4032)] = 160593, + [SMALL_STATE(4033)] = 160625, + [SMALL_STATE(4034)] = 160659, + [SMALL_STATE(4035)] = 160709, + [SMALL_STATE(4036)] = 160741, + [SMALL_STATE(4037)] = 160777, + [SMALL_STATE(4038)] = 160827, + [SMALL_STATE(4039)] = 160859, + [SMALL_STATE(4040)] = 160891, + [SMALL_STATE(4041)] = 160931, + [SMALL_STATE(4042)] = 160965, + [SMALL_STATE(4043)] = 160996, + [SMALL_STATE(4044)] = 161027, + [SMALL_STATE(4045)] = 161058, + [SMALL_STATE(4046)] = 161089, + [SMALL_STATE(4047)] = 161120, + [SMALL_STATE(4048)] = 161151, + [SMALL_STATE(4049)] = 161182, + [SMALL_STATE(4050)] = 161221, + [SMALL_STATE(4051)] = 161252, + [SMALL_STATE(4052)] = 161283, + [SMALL_STATE(4053)] = 161314, + [SMALL_STATE(4054)] = 161345, + [SMALL_STATE(4055)] = 161376, + [SMALL_STATE(4056)] = 161407, + [SMALL_STATE(4057)] = 161438, + [SMALL_STATE(4058)] = 161469, + [SMALL_STATE(4059)] = 161500, + [SMALL_STATE(4060)] = 161535, + [SMALL_STATE(4061)] = 161570, + [SMALL_STATE(4062)] = 161601, + [SMALL_STATE(4063)] = 161632, + [SMALL_STATE(4064)] = 161663, + [SMALL_STATE(4065)] = 161694, + [SMALL_STATE(4066)] = 161725, + [SMALL_STATE(4067)] = 161758, + [SMALL_STATE(4068)] = 161789, + [SMALL_STATE(4069)] = 161820, + [SMALL_STATE(4070)] = 161851, + [SMALL_STATE(4071)] = 161882, + [SMALL_STATE(4072)] = 161913, + [SMALL_STATE(4073)] = 161944, + [SMALL_STATE(4074)] = 161977, + [SMALL_STATE(4075)] = 162008, + [SMALL_STATE(4076)] = 162039, + [SMALL_STATE(4077)] = 162070, + [SMALL_STATE(4078)] = 162101, + [SMALL_STATE(4079)] = 162140, + [SMALL_STATE(4080)] = 162171, + [SMALL_STATE(4081)] = 162206, + [SMALL_STATE(4082)] = 162237, + [SMALL_STATE(4083)] = 162268, + [SMALL_STATE(4084)] = 162299, + [SMALL_STATE(4085)] = 162330, + [SMALL_STATE(4086)] = 162377, + [SMALL_STATE(4087)] = 162408, + [SMALL_STATE(4088)] = 162439, + [SMALL_STATE(4089)] = 162476, + [SMALL_STATE(4090)] = 162507, + [SMALL_STATE(4091)] = 162538, + [SMALL_STATE(4092)] = 162569, + [SMALL_STATE(4093)] = 162600, + [SMALL_STATE(4094)] = 162647, + [SMALL_STATE(4095)] = 162694, + [SMALL_STATE(4096)] = 162741, + [SMALL_STATE(4097)] = 162778, + [SMALL_STATE(4098)] = 162813, + [SMALL_STATE(4099)] = 162858, + [SMALL_STATE(4100)] = 162895, + [SMALL_STATE(4101)] = 162928, + [SMALL_STATE(4102)] = 162959, + [SMALL_STATE(4103)] = 162990, + [SMALL_STATE(4104)] = 163021, + [SMALL_STATE(4105)] = 163052, + [SMALL_STATE(4106)] = 163083, + [SMALL_STATE(4107)] = 163116, + [SMALL_STATE(4108)] = 163151, + [SMALL_STATE(4109)] = 163192, + [SMALL_STATE(4110)] = 163225, + [SMALL_STATE(4111)] = 163258, + [SMALL_STATE(4112)] = 163291, + [SMALL_STATE(4113)] = 163330, + [SMALL_STATE(4114)] = 163361, + [SMALL_STATE(4115)] = 163391, + [SMALL_STATE(4116)] = 163421, + [SMALL_STATE(4117)] = 163453, + [SMALL_STATE(4118)] = 163483, + [SMALL_STATE(4119)] = 163513, + [SMALL_STATE(4120)] = 163551, + [SMALL_STATE(4121)] = 163585, + [SMALL_STATE(4122)] = 163619, + [SMALL_STATE(4123)] = 163659, + [SMALL_STATE(4124)] = 163695, + [SMALL_STATE(4125)] = 163727, + [SMALL_STATE(4126)] = 163765, + [SMALL_STATE(4127)] = 163795, + [SMALL_STATE(4128)] = 163833, + [SMALL_STATE(4129)] = 163867, + [SMALL_STATE(4130)] = 163899, + [SMALL_STATE(4131)] = 163931, + [SMALL_STATE(4132)] = 163969, + [SMALL_STATE(4133)] = 164003, + [SMALL_STATE(4134)] = 164035, + [SMALL_STATE(4135)] = 164065, + [SMALL_STATE(4136)] = 164095, + [SMALL_STATE(4137)] = 164125, + [SMALL_STATE(4138)] = 164163, + [SMALL_STATE(4139)] = 164193, + [SMALL_STATE(4140)] = 164225, + [SMALL_STATE(4141)] = 164275, + [SMALL_STATE(4142)] = 164305, + [SMALL_STATE(4143)] = 164339, + [SMALL_STATE(4144)] = 164369, + [SMALL_STATE(4145)] = 164401, + [SMALL_STATE(4146)] = 164431, + [SMALL_STATE(4147)] = 164461, + [SMALL_STATE(4148)] = 164491, + [SMALL_STATE(4149)] = 164523, + [SMALL_STATE(4150)] = 164555, + [SMALL_STATE(4151)] = 164585, + [SMALL_STATE(4152)] = 164617, + [SMALL_STATE(4153)] = 164647, + [SMALL_STATE(4154)] = 164677, + [SMALL_STATE(4155)] = 164707, + [SMALL_STATE(4156)] = 164739, + [SMALL_STATE(4157)] = 164776, + [SMALL_STATE(4158)] = 164813, + [SMALL_STATE(4159)] = 164850, + [SMALL_STATE(4160)] = 164881, + [SMALL_STATE(4161)] = 164914, + [SMALL_STATE(4162)] = 164951, + [SMALL_STATE(4163)] = 164980, + [SMALL_STATE(4164)] = 165013, + [SMALL_STATE(4165)] = 165042, + [SMALL_STATE(4166)] = 165071, + [SMALL_STATE(4167)] = 165108, + [SMALL_STATE(4168)] = 165145, + [SMALL_STATE(4169)] = 165174, + [SMALL_STATE(4170)] = 165207, + [SMALL_STATE(4171)] = 165238, + [SMALL_STATE(4172)] = 165269, + [SMALL_STATE(4173)] = 165300, + [SMALL_STATE(4174)] = 165337, + [SMALL_STATE(4175)] = 165368, + [SMALL_STATE(4176)] = 165399, + [SMALL_STATE(4177)] = 165428, + [SMALL_STATE(4178)] = 165459, + [SMALL_STATE(4179)] = 165496, + [SMALL_STATE(4180)] = 165533, + [SMALL_STATE(4181)] = 165570, + [SMALL_STATE(4182)] = 165607, + [SMALL_STATE(4183)] = 165636, + [SMALL_STATE(4184)] = 165667, + [SMALL_STATE(4185)] = 165696, + [SMALL_STATE(4186)] = 165725, + [SMALL_STATE(4187)] = 165754, + [SMALL_STATE(4188)] = 165783, + [SMALL_STATE(4189)] = 165812, + [SMALL_STATE(4190)] = 165849, + [SMALL_STATE(4191)] = 165886, + [SMALL_STATE(4192)] = 165923, + [SMALL_STATE(4193)] = 165952, + [SMALL_STATE(4194)] = 165983, + [SMALL_STATE(4195)] = 166014, + [SMALL_STATE(4196)] = 166051, + [SMALL_STATE(4197)] = 166080, + [SMALL_STATE(4198)] = 166117, + [SMALL_STATE(4199)] = 166146, + [SMALL_STATE(4200)] = 166183, + [SMALL_STATE(4201)] = 166214, + [SMALL_STATE(4202)] = 166245, + [SMALL_STATE(4203)] = 166274, + [SMALL_STATE(4204)] = 166311, + [SMALL_STATE(4205)] = 166348, + [SMALL_STATE(4206)] = 166385, + [SMALL_STATE(4207)] = 166418, + [SMALL_STATE(4208)] = 166455, + [SMALL_STATE(4209)] = 166484, + [SMALL_STATE(4210)] = 166515, + [SMALL_STATE(4211)] = 166544, + [SMALL_STATE(4212)] = 166577, + [SMALL_STATE(4213)] = 166610, + [SMALL_STATE(4214)] = 166639, + [SMALL_STATE(4215)] = 166676, + [SMALL_STATE(4216)] = 166713, + [SMALL_STATE(4217)] = 166742, + [SMALL_STATE(4218)] = 166771, + [SMALL_STATE(4219)] = 166800, + [SMALL_STATE(4220)] = 166837, + [SMALL_STATE(4221)] = 166868, + [SMALL_STATE(4222)] = 166905, + [SMALL_STATE(4223)] = 166934, + [SMALL_STATE(4224)] = 166963, + [SMALL_STATE(4225)] = 166992, + [SMALL_STATE(4226)] = 167021, + [SMALL_STATE(4227)] = 167058, + [SMALL_STATE(4228)] = 167087, + [SMALL_STATE(4229)] = 167116, + [SMALL_STATE(4230)] = 167145, + [SMALL_STATE(4231)] = 167182, + [SMALL_STATE(4232)] = 167211, + [SMALL_STATE(4233)] = 167240, + [SMALL_STATE(4234)] = 167269, + [SMALL_STATE(4235)] = 167298, + [SMALL_STATE(4236)] = 167327, + [SMALL_STATE(4237)] = 167356, + [SMALL_STATE(4238)] = 167393, + [SMALL_STATE(4239)] = 167422, + [SMALL_STATE(4240)] = 167451, + [SMALL_STATE(4241)] = 167482, + [SMALL_STATE(4242)] = 167513, + [SMALL_STATE(4243)] = 167542, + [SMALL_STATE(4244)] = 167571, + [SMALL_STATE(4245)] = 167600, + [SMALL_STATE(4246)] = 167629, + [SMALL_STATE(4247)] = 167660, + [SMALL_STATE(4248)] = 167691, + [SMALL_STATE(4249)] = 167720, + [SMALL_STATE(4250)] = 167757, + [SMALL_STATE(4251)] = 167786, + [SMALL_STATE(4252)] = 167815, + [SMALL_STATE(4253)] = 167844, + [SMALL_STATE(4254)] = 167873, + [SMALL_STATE(4255)] = 167902, + [SMALL_STATE(4256)] = 167939, + [SMALL_STATE(4257)] = 167968, + [SMALL_STATE(4258)] = 167997, + [SMALL_STATE(4259)] = 168028, + [SMALL_STATE(4260)] = 168065, + [SMALL_STATE(4261)] = 168094, + [SMALL_STATE(4262)] = 168125, + [SMALL_STATE(4263)] = 168162, + [SMALL_STATE(4264)] = 168191, + [SMALL_STATE(4265)] = 168220, + [SMALL_STATE(4266)] = 168253, + [SMALL_STATE(4267)] = 168282, + [SMALL_STATE(4268)] = 168313, + [SMALL_STATE(4269)] = 168342, + [SMALL_STATE(4270)] = 168371, + [SMALL_STATE(4271)] = 168402, + [SMALL_STATE(4272)] = 168431, + [SMALL_STATE(4273)] = 168462, + [SMALL_STATE(4274)] = 168493, + [SMALL_STATE(4275)] = 168524, + [SMALL_STATE(4276)] = 168553, + [SMALL_STATE(4277)] = 168582, + [SMALL_STATE(4278)] = 168611, + [SMALL_STATE(4279)] = 168642, + [SMALL_STATE(4280)] = 168671, + [SMALL_STATE(4281)] = 168700, + [SMALL_STATE(4282)] = 168735, + [SMALL_STATE(4283)] = 168763, + [SMALL_STATE(4284)] = 168791, + [SMALL_STATE(4285)] = 168821, + [SMALL_STATE(4286)] = 168857, + [SMALL_STATE(4287)] = 168889, + [SMALL_STATE(4288)] = 168925, + [SMALL_STATE(4289)] = 168961, + [SMALL_STATE(4290)] = 168997, + [SMALL_STATE(4291)] = 169045, + [SMALL_STATE(4292)] = 169081, + [SMALL_STATE(4293)] = 169111, + [SMALL_STATE(4294)] = 169147, + [SMALL_STATE(4295)] = 169175, + [SMALL_STATE(4296)] = 169211, + [SMALL_STATE(4297)] = 169241, + [SMALL_STATE(4298)] = 169277, + [SMALL_STATE(4299)] = 169307, + [SMALL_STATE(4300)] = 169343, + [SMALL_STATE(4301)] = 169379, + [SMALL_STATE(4302)] = 169427, + [SMALL_STATE(4303)] = 169455, + [SMALL_STATE(4304)] = 169483, + [SMALL_STATE(4305)] = 169513, + [SMALL_STATE(4306)] = 169541, + [SMALL_STATE(4307)] = 169569, + [SMALL_STATE(4308)] = 169613, + [SMALL_STATE(4309)] = 169649, + [SMALL_STATE(4310)] = 169693, + [SMALL_STATE(4311)] = 169721, + [SMALL_STATE(4312)] = 169753, + [SMALL_STATE(4313)] = 169781, + [SMALL_STATE(4314)] = 169811, + [SMALL_STATE(4315)] = 169841, + [SMALL_STATE(4316)] = 169877, + [SMALL_STATE(4317)] = 169913, + [SMALL_STATE(4318)] = 169949, + [SMALL_STATE(4319)] = 169977, + [SMALL_STATE(4320)] = 170005, + [SMALL_STATE(4321)] = 170033, + [SMALL_STATE(4322)] = 170061, + [SMALL_STATE(4323)] = 170097, + [SMALL_STATE(4324)] = 170125, + [SMALL_STATE(4325)] = 170161, + [SMALL_STATE(4326)] = 170209, + [SMALL_STATE(4327)] = 170245, + [SMALL_STATE(4328)] = 170273, + [SMALL_STATE(4329)] = 170303, + [SMALL_STATE(4330)] = 170331, + [SMALL_STATE(4331)] = 170363, + [SMALL_STATE(4332)] = 170411, + [SMALL_STATE(4333)] = 170449, + [SMALL_STATE(4334)] = 170485, + [SMALL_STATE(4335)] = 170519, + [SMALL_STATE(4336)] = 170555, + [SMALL_STATE(4337)] = 170593, + [SMALL_STATE(4338)] = 170625, + [SMALL_STATE(4339)] = 170655, + [SMALL_STATE(4340)] = 170691, + [SMALL_STATE(4341)] = 170727, + [SMALL_STATE(4342)] = 170763, + [SMALL_STATE(4343)] = 170799, + [SMALL_STATE(4344)] = 170827, + [SMALL_STATE(4345)] = 170863, + [SMALL_STATE(4346)] = 170907, + [SMALL_STATE(4347)] = 170951, + [SMALL_STATE(4348)] = 170995, + [SMALL_STATE(4349)] = 171027, + [SMALL_STATE(4350)] = 171059, + [SMALL_STATE(4351)] = 171091, + [SMALL_STATE(4352)] = 171119, + [SMALL_STATE(4353)] = 171149, + [SMALL_STATE(4354)] = 171185, + [SMALL_STATE(4355)] = 171217, + [SMALL_STATE(4356)] = 171253, + [SMALL_STATE(4357)] = 171289, + [SMALL_STATE(4358)] = 171325, + [SMALL_STATE(4359)] = 171361, + [SMALL_STATE(4360)] = 171391, + [SMALL_STATE(4361)] = 171421, + [SMALL_STATE(4362)] = 171449, + [SMALL_STATE(4363)] = 171477, + [SMALL_STATE(4364)] = 171509, + [SMALL_STATE(4365)] = 171539, + [SMALL_STATE(4366)] = 171575, + [SMALL_STATE(4367)] = 171607, + [SMALL_STATE(4368)] = 171637, + [SMALL_STATE(4369)] = 171667, + [SMALL_STATE(4370)] = 171699, + [SMALL_STATE(4371)] = 171727, + [SMALL_STATE(4372)] = 171763, + [SMALL_STATE(4373)] = 171795, + [SMALL_STATE(4374)] = 171827, + [SMALL_STATE(4375)] = 171855, + [SMALL_STATE(4376)] = 171891, + [SMALL_STATE(4377)] = 171921, + [SMALL_STATE(4378)] = 171946, + [SMALL_STATE(4379)] = 171979, + [SMALL_STATE(4380)] = 172010, + [SMALL_STATE(4381)] = 172041, + [SMALL_STATE(4382)] = 172072, + [SMALL_STATE(4383)] = 172103, + [SMALL_STATE(4384)] = 172134, + [SMALL_STATE(4385)] = 172165, + [SMALL_STATE(4386)] = 172200, + [SMALL_STATE(4387)] = 172233, + [SMALL_STATE(4388)] = 172264, + [SMALL_STATE(4389)] = 172291, + [SMALL_STATE(4390)] = 172322, + [SMALL_STATE(4391)] = 172355, + [SMALL_STATE(4392)] = 172390, + [SMALL_STATE(4393)] = 172417, + [SMALL_STATE(4394)] = 172446, + [SMALL_STATE(4395)] = 172481, + [SMALL_STATE(4396)] = 172506, + [SMALL_STATE(4397)] = 172537, + [SMALL_STATE(4398)] = 172574, + [SMALL_STATE(4399)] = 172601, + [SMALL_STATE(4400)] = 172626, + [SMALL_STATE(4401)] = 172653, + [SMALL_STATE(4402)] = 172682, + [SMALL_STATE(4403)] = 172713, + [SMALL_STATE(4404)] = 172742, + [SMALL_STATE(4405)] = 172773, + [SMALL_STATE(4406)] = 172804, + [SMALL_STATE(4407)] = 172831, + [SMALL_STATE(4408)] = 172858, + [SMALL_STATE(4409)] = 172887, + [SMALL_STATE(4410)] = 172916, + [SMALL_STATE(4411)] = 172947, + [SMALL_STATE(4412)] = 172978, + [SMALL_STATE(4413)] = 173011, + [SMALL_STATE(4414)] = 173042, + [SMALL_STATE(4415)] = 173069, + [SMALL_STATE(4416)] = 173102, + [SMALL_STATE(4417)] = 173131, + [SMALL_STATE(4418)] = 173158, + [SMALL_STATE(4419)] = 173185, + [SMALL_STATE(4420)] = 173218, + [SMALL_STATE(4421)] = 173245, + [SMALL_STATE(4422)] = 173278, + [SMALL_STATE(4423)] = 173311, + [SMALL_STATE(4424)] = 173338, + [SMALL_STATE(4425)] = 173365, + [SMALL_STATE(4426)] = 173392, + [SMALL_STATE(4427)] = 173421, + [SMALL_STATE(4428)] = 173450, + [SMALL_STATE(4429)] = 173481, + [SMALL_STATE(4430)] = 173512, + [SMALL_STATE(4431)] = 173541, + [SMALL_STATE(4432)] = 173572, + [SMALL_STATE(4433)] = 173601, + [SMALL_STATE(4434)] = 173628, + [SMALL_STATE(4435)] = 173655, + [SMALL_STATE(4436)] = 173686, + [SMALL_STATE(4437)] = 173717, + [SMALL_STATE(4438)] = 173750, + [SMALL_STATE(4439)] = 173777, + [SMALL_STATE(4440)] = 173804, + [SMALL_STATE(4441)] = 173839, + [SMALL_STATE(4442)] = 173866, + [SMALL_STATE(4443)] = 173899, + [SMALL_STATE(4444)] = 173926, + [SMALL_STATE(4445)] = 173959, + [SMALL_STATE(4446)] = 173986, + [SMALL_STATE(4447)] = 174013, + [SMALL_STATE(4448)] = 174046, + [SMALL_STATE(4449)] = 174077, + [SMALL_STATE(4450)] = 174112, + [SMALL_STATE(4451)] = 174147, + [SMALL_STATE(4452)] = 174174, + [SMALL_STATE(4453)] = 174201, + [SMALL_STATE(4454)] = 174226, + [SMALL_STATE(4455)] = 174257, + [SMALL_STATE(4456)] = 174286, + [SMALL_STATE(4457)] = 174313, + [SMALL_STATE(4458)] = 174348, + [SMALL_STATE(4459)] = 174377, + [SMALL_STATE(4460)] = 174408, + [SMALL_STATE(4461)] = 174435, + [SMALL_STATE(4462)] = 174466, + [SMALL_STATE(4463)] = 174497, + [SMALL_STATE(4464)] = 174524, + [SMALL_STATE(4465)] = 174555, + [SMALL_STATE(4466)] = 174586, + [SMALL_STATE(4467)] = 174617, + [SMALL_STATE(4468)] = 174650, + [SMALL_STATE(4469)] = 174681, + [SMALL_STATE(4470)] = 174708, + [SMALL_STATE(4471)] = 174743, + [SMALL_STATE(4472)] = 174770, + [SMALL_STATE(4473)] = 174801, + [SMALL_STATE(4474)] = 174832, + [SMALL_STATE(4475)] = 174863, + [SMALL_STATE(4476)] = 174898, + [SMALL_STATE(4477)] = 174927, + [SMALL_STATE(4478)] = 174958, + [SMALL_STATE(4479)] = 174985, + [SMALL_STATE(4480)] = 175018, + [SMALL_STATE(4481)] = 175045, + [SMALL_STATE(4482)] = 175072, + [SMALL_STATE(4483)] = 175097, + [SMALL_STATE(4484)] = 175124, + [SMALL_STATE(4485)] = 175155, + [SMALL_STATE(4486)] = 175186, + [SMALL_STATE(4487)] = 175221, + [SMALL_STATE(4488)] = 175252, + [SMALL_STATE(4489)] = 175279, + [SMALL_STATE(4490)] = 175310, + [SMALL_STATE(4491)] = 175337, + [SMALL_STATE(4492)] = 175364, + [SMALL_STATE(4493)] = 175395, + [SMALL_STATE(4494)] = 175426, + [SMALL_STATE(4495)] = 175457, + [SMALL_STATE(4496)] = 175492, + [SMALL_STATE(4497)] = 175521, + [SMALL_STATE(4498)] = 175548, + [SMALL_STATE(4499)] = 175583, + [SMALL_STATE(4500)] = 175618, + [SMALL_STATE(4501)] = 175653, + [SMALL_STATE(4502)] = 175688, + [SMALL_STATE(4503)] = 175723, + [SMALL_STATE(4504)] = 175758, + [SMALL_STATE(4505)] = 175789, + [SMALL_STATE(4506)] = 175824, + [SMALL_STATE(4507)] = 175859, + [SMALL_STATE(4508)] = 175894, + [SMALL_STATE(4509)] = 175923, + [SMALL_STATE(4510)] = 175958, + [SMALL_STATE(4511)] = 175993, + [SMALL_STATE(4512)] = 176028, + [SMALL_STATE(4513)] = 176063, + [SMALL_STATE(4514)] = 176090, + [SMALL_STATE(4515)] = 176125, + [SMALL_STATE(4516)] = 176160, + [SMALL_STATE(4517)] = 176189, + [SMALL_STATE(4518)] = 176224, + [SMALL_STATE(4519)] = 176259, + [SMALL_STATE(4520)] = 176290, + [SMALL_STATE(4521)] = 176321, + [SMALL_STATE(4522)] = 176352, + [SMALL_STATE(4523)] = 176383, + [SMALL_STATE(4524)] = 176414, + [SMALL_STATE(4525)] = 176441, + [SMALL_STATE(4526)] = 176474, + [SMALL_STATE(4527)] = 176507, + [SMALL_STATE(4528)] = 176538, + [SMALL_STATE(4529)] = 176565, + [SMALL_STATE(4530)] = 176592, + [SMALL_STATE(4531)] = 176619, + [SMALL_STATE(4532)] = 176646, + [SMALL_STATE(4533)] = 176677, + [SMALL_STATE(4534)] = 176708, + [SMALL_STATE(4535)] = 176741, + [SMALL_STATE(4536)] = 176772, + [SMALL_STATE(4537)] = 176803, + [SMALL_STATE(4538)] = 176836, + [SMALL_STATE(4539)] = 176869, + [SMALL_STATE(4540)] = 176896, + [SMALL_STATE(4541)] = 176923, + [SMALL_STATE(4542)] = 176950, + [SMALL_STATE(4543)] = 176981, + [SMALL_STATE(4544)] = 177012, + [SMALL_STATE(4545)] = 177039, + [SMALL_STATE(4546)] = 177064, + [SMALL_STATE(4547)] = 177091, + [SMALL_STATE(4548)] = 177118, + [SMALL_STATE(4549)] = 177147, + [SMALL_STATE(4550)] = 177178, + [SMALL_STATE(4551)] = 177205, + [SMALL_STATE(4552)] = 177230, + [SMALL_STATE(4553)] = 177261, + [SMALL_STATE(4554)] = 177286, + [SMALL_STATE(4555)] = 177315, + [SMALL_STATE(4556)] = 177350, + [SMALL_STATE(4557)] = 177381, + [SMALL_STATE(4558)] = 177412, + [SMALL_STATE(4559)] = 177439, + [SMALL_STATE(4560)] = 177466, + [SMALL_STATE(4561)] = 177491, + [SMALL_STATE(4562)] = 177516, + [SMALL_STATE(4563)] = 177543, + [SMALL_STATE(4564)] = 177570, + [SMALL_STATE(4565)] = 177595, + [SMALL_STATE(4566)] = 177620, + [SMALL_STATE(4567)] = 177651, + [SMALL_STATE(4568)] = 177686, + [SMALL_STATE(4569)] = 177717, + [SMALL_STATE(4570)] = 177748, + [SMALL_STATE(4571)] = 177781, + [SMALL_STATE(4572)] = 177806, + [SMALL_STATE(4573)] = 177833, + [SMALL_STATE(4574)] = 177862, + [SMALL_STATE(4575)] = 177889, + [SMALL_STATE(4576)] = 177916, + [SMALL_STATE(4577)] = 177945, + [SMALL_STATE(4578)] = 177974, + [SMALL_STATE(4579)] = 177999, + [SMALL_STATE(4580)] = 178024, + [SMALL_STATE(4581)] = 178051, + [SMALL_STATE(4582)] = 178078, + [SMALL_STATE(4583)] = 178107, + [SMALL_STATE(4584)] = 178136, + [SMALL_STATE(4585)] = 178169, + [SMALL_STATE(4586)] = 178200, + [SMALL_STATE(4587)] = 178229, + [SMALL_STATE(4588)] = 178255, + [SMALL_STATE(4589)] = 178287, + [SMALL_STATE(4590)] = 178317, + [SMALL_STATE(4591)] = 178341, + [SMALL_STATE(4592)] = 178369, + [SMALL_STATE(4593)] = 178393, + [SMALL_STATE(4594)] = 178445, + [SMALL_STATE(4595)] = 178471, + [SMALL_STATE(4596)] = 178497, + [SMALL_STATE(4597)] = 178521, + [SMALL_STATE(4598)] = 178573, + [SMALL_STATE(4599)] = 178601, + [SMALL_STATE(4600)] = 178629, + [SMALL_STATE(4601)] = 178659, + [SMALL_STATE(4602)] = 178683, + [SMALL_STATE(4603)] = 178709, + [SMALL_STATE(4604)] = 178735, + [SMALL_STATE(4605)] = 178787, + [SMALL_STATE(4606)] = 178817, + [SMALL_STATE(4607)] = 178843, + [SMALL_STATE(4608)] = 178867, + [SMALL_STATE(4609)] = 178893, + [SMALL_STATE(4610)] = 178921, + [SMALL_STATE(4611)] = 178953, + [SMALL_STATE(4612)] = 178979, + [SMALL_STATE(4613)] = 179005, + [SMALL_STATE(4614)] = 179033, + [SMALL_STATE(4615)] = 179061, + [SMALL_STATE(4616)] = 179091, + [SMALL_STATE(4617)] = 179119, + [SMALL_STATE(4618)] = 179143, + [SMALL_STATE(4619)] = 179175, + [SMALL_STATE(4620)] = 179199, + [SMALL_STATE(4621)] = 179229, + [SMALL_STATE(4622)] = 179257, + [SMALL_STATE(4623)] = 179283, + [SMALL_STATE(4624)] = 179307, + [SMALL_STATE(4625)] = 179337, + [SMALL_STATE(4626)] = 179365, + [SMALL_STATE(4627)] = 179417, + [SMALL_STATE(4628)] = 179447, + [SMALL_STATE(4629)] = 179477, + [SMALL_STATE(4630)] = 179505, + [SMALL_STATE(4631)] = 179531, + [SMALL_STATE(4632)] = 179555, + [SMALL_STATE(4633)] = 179579, + [SMALL_STATE(4634)] = 179609, + [SMALL_STATE(4635)] = 179639, + [SMALL_STATE(4636)] = 179691, + [SMALL_STATE(4637)] = 179719, + [SMALL_STATE(4638)] = 179745, + [SMALL_STATE(4639)] = 179775, + [SMALL_STATE(4640)] = 179801, + [SMALL_STATE(4641)] = 179831, + [SMALL_STATE(4642)] = 179883, + [SMALL_STATE(4643)] = 179913, + [SMALL_STATE(4644)] = 179943, + [SMALL_STATE(4645)] = 179973, + [SMALL_STATE(4646)] = 180025, + [SMALL_STATE(4647)] = 180051, + [SMALL_STATE(4648)] = 180097, + [SMALL_STATE(4649)] = 180149, + [SMALL_STATE(4650)] = 180173, + [SMALL_STATE(4651)] = 180199, + [SMALL_STATE(4652)] = 180225, + [SMALL_STATE(4653)] = 180253, + [SMALL_STATE(4654)] = 180281, + [SMALL_STATE(4655)] = 180311, + [SMALL_STATE(4656)] = 180337, + [SMALL_STATE(4657)] = 180367, + [SMALL_STATE(4658)] = 180397, + [SMALL_STATE(4659)] = 180449, + [SMALL_STATE(4660)] = 180475, + [SMALL_STATE(4661)] = 180501, + [SMALL_STATE(4662)] = 180529, + [SMALL_STATE(4663)] = 180557, + [SMALL_STATE(4664)] = 180581, + [SMALL_STATE(4665)] = 180611, + [SMALL_STATE(4666)] = 180635, + [SMALL_STATE(4667)] = 180665, + [SMALL_STATE(4668)] = 180691, + [SMALL_STATE(4669)] = 180719, + [SMALL_STATE(4670)] = 180771, + [SMALL_STATE(4671)] = 180801, + [SMALL_STATE(4672)] = 180831, + [SMALL_STATE(4673)] = 180857, + [SMALL_STATE(4674)] = 180887, + [SMALL_STATE(4675)] = 180913, + [SMALL_STATE(4676)] = 180937, + [SMALL_STATE(4677)] = 180967, + [SMALL_STATE(4678)] = 180993, + [SMALL_STATE(4679)] = 181021, + [SMALL_STATE(4680)] = 181051, + [SMALL_STATE(4681)] = 181081, + [SMALL_STATE(4682)] = 181111, + [SMALL_STATE(4683)] = 181141, + [SMALL_STATE(4684)] = 181171, + [SMALL_STATE(4685)] = 181195, + [SMALL_STATE(4686)] = 181219, + [SMALL_STATE(4687)] = 181249, + [SMALL_STATE(4688)] = 181279, + [SMALL_STATE(4689)] = 181309, + [SMALL_STATE(4690)] = 181335, + [SMALL_STATE(4691)] = 181365, + [SMALL_STATE(4692)] = 181393, + [SMALL_STATE(4693)] = 181417, + [SMALL_STATE(4694)] = 181444, + [SMALL_STATE(4695)] = 181469, + [SMALL_STATE(4696)] = 181498, + [SMALL_STATE(4697)] = 181523, + [SMALL_STATE(4698)] = 181550, + [SMALL_STATE(4699)] = 181595, + [SMALL_STATE(4700)] = 181624, + [SMALL_STATE(4701)] = 181653, + [SMALL_STATE(4702)] = 181678, + [SMALL_STATE(4703)] = 181705, + [SMALL_STATE(4704)] = 181730, + [SMALL_STATE(4705)] = 181755, + [SMALL_STATE(4706)] = 181800, + [SMALL_STATE(4707)] = 181825, + [SMALL_STATE(4708)] = 181850, + [SMALL_STATE(4709)] = 181875, + [SMALL_STATE(4710)] = 181900, + [SMALL_STATE(4711)] = 181929, + [SMALL_STATE(4712)] = 181954, + [SMALL_STATE(4713)] = 181985, + [SMALL_STATE(4714)] = 182016, + [SMALL_STATE(4715)] = 182045, + [SMALL_STATE(4716)] = 182070, + [SMALL_STATE(4717)] = 182095, + [SMALL_STATE(4718)] = 182124, + [SMALL_STATE(4719)] = 182149, + [SMALL_STATE(4720)] = 182172, + [SMALL_STATE(4721)] = 182197, + [SMALL_STATE(4722)] = 182226, + [SMALL_STATE(4723)] = 182255, + [SMALL_STATE(4724)] = 182280, + [SMALL_STATE(4725)] = 182305, + [SMALL_STATE(4726)] = 182334, + [SMALL_STATE(4727)] = 182359, + [SMALL_STATE(4728)] = 182384, + [SMALL_STATE(4729)] = 182413, + [SMALL_STATE(4730)] = 182438, + [SMALL_STATE(4731)] = 182465, + [SMALL_STATE(4732)] = 182488, + [SMALL_STATE(4733)] = 182513, + [SMALL_STATE(4734)] = 182542, + [SMALL_STATE(4735)] = 182571, + [SMALL_STATE(4736)] = 182596, + [SMALL_STATE(4737)] = 182623, + [SMALL_STATE(4738)] = 182646, + [SMALL_STATE(4739)] = 182671, + [SMALL_STATE(4740)] = 182696, + [SMALL_STATE(4741)] = 182721, + [SMALL_STATE(4742)] = 182746, + [SMALL_STATE(4743)] = 182771, + [SMALL_STATE(4744)] = 182796, + [SMALL_STATE(4745)] = 182821, + [SMALL_STATE(4746)] = 182846, + [SMALL_STATE(4747)] = 182871, + [SMALL_STATE(4748)] = 182900, + [SMALL_STATE(4749)] = 182927, + [SMALL_STATE(4750)] = 182956, + [SMALL_STATE(4751)] = 182979, + [SMALL_STATE(4752)] = 183006, + [SMALL_STATE(4753)] = 183031, + [SMALL_STATE(4754)] = 183056, + [SMALL_STATE(4755)] = 183081, + [SMALL_STATE(4756)] = 183106, + [SMALL_STATE(4757)] = 183135, + [SMALL_STATE(4758)] = 183160, + [SMALL_STATE(4759)] = 183185, + [SMALL_STATE(4760)] = 183210, + [SMALL_STATE(4761)] = 183235, + [SMALL_STATE(4762)] = 183260, + [SMALL_STATE(4763)] = 183289, + [SMALL_STATE(4764)] = 183318, + [SMALL_STATE(4765)] = 183347, + [SMALL_STATE(4766)] = 183378, + [SMALL_STATE(4767)] = 183405, + [SMALL_STATE(4768)] = 183430, + [SMALL_STATE(4769)] = 183455, + [SMALL_STATE(4770)] = 183480, + [SMALL_STATE(4771)] = 183505, + [SMALL_STATE(4772)] = 183546, + [SMALL_STATE(4773)] = 183571, + [SMALL_STATE(4774)] = 183596, + [SMALL_STATE(4775)] = 183621, + [SMALL_STATE(4776)] = 183646, + [SMALL_STATE(4777)] = 183675, + [SMALL_STATE(4778)] = 183704, + [SMALL_STATE(4779)] = 183729, + [SMALL_STATE(4780)] = 183754, + [SMALL_STATE(4781)] = 183783, + [SMALL_STATE(4782)] = 183812, + [SMALL_STATE(4783)] = 183843, + [SMALL_STATE(4784)] = 183868, + [SMALL_STATE(4785)] = 183893, + [SMALL_STATE(4786)] = 183922, + [SMALL_STATE(4787)] = 183951, + [SMALL_STATE(4788)] = 183976, + [SMALL_STATE(4789)] = 184001, + [SMALL_STATE(4790)] = 184028, + [SMALL_STATE(4791)] = 184057, + [SMALL_STATE(4792)] = 184082, + [SMALL_STATE(4793)] = 184111, + [SMALL_STATE(4794)] = 184136, + [SMALL_STATE(4795)] = 184165, + [SMALL_STATE(4796)] = 184190, + [SMALL_STATE(4797)] = 184215, + [SMALL_STATE(4798)] = 184240, + [SMALL_STATE(4799)] = 184265, + [SMALL_STATE(4800)] = 184290, + [SMALL_STATE(4801)] = 184315, + [SMALL_STATE(4802)] = 184344, + [SMALL_STATE(4803)] = 184369, + [SMALL_STATE(4804)] = 184394, + [SMALL_STATE(4805)] = 184419, + [SMALL_STATE(4806)] = 184444, + [SMALL_STATE(4807)] = 184469, + [SMALL_STATE(4808)] = 184494, + [SMALL_STATE(4809)] = 184523, + [SMALL_STATE(4810)] = 184552, + [SMALL_STATE(4811)] = 184577, + [SMALL_STATE(4812)] = 184606, + [SMALL_STATE(4813)] = 184631, + [SMALL_STATE(4814)] = 184656, + [SMALL_STATE(4815)] = 184685, + [SMALL_STATE(4816)] = 184710, + [SMALL_STATE(4817)] = 184739, + [SMALL_STATE(4818)] = 184768, + [SMALL_STATE(4819)] = 184797, + [SMALL_STATE(4820)] = 184822, + [SMALL_STATE(4821)] = 184851, + [SMALL_STATE(4822)] = 184876, + [SMALL_STATE(4823)] = 184901, + [SMALL_STATE(4824)] = 184930, + [SMALL_STATE(4825)] = 184959, + [SMALL_STATE(4826)] = 184984, + [SMALL_STATE(4827)] = 185009, + [SMALL_STATE(4828)] = 185036, + [SMALL_STATE(4829)] = 185061, + [SMALL_STATE(4830)] = 185086, + [SMALL_STATE(4831)] = 185113, + [SMALL_STATE(4832)] = 185142, + [SMALL_STATE(4833)] = 185171, + [SMALL_STATE(4834)] = 185196, + [SMALL_STATE(4835)] = 185221, + [SMALL_STATE(4836)] = 185246, + [SMALL_STATE(4837)] = 185275, + [SMALL_STATE(4838)] = 185300, + [SMALL_STATE(4839)] = 185325, + [SMALL_STATE(4840)] = 185350, + [SMALL_STATE(4841)] = 185375, + [SMALL_STATE(4842)] = 185400, + [SMALL_STATE(4843)] = 185429, + [SMALL_STATE(4844)] = 185458, + [SMALL_STATE(4845)] = 185487, + [SMALL_STATE(4846)] = 185512, + [SMALL_STATE(4847)] = 185537, + [SMALL_STATE(4848)] = 185564, + [SMALL_STATE(4849)] = 185589, + [SMALL_STATE(4850)] = 185618, + [SMALL_STATE(4851)] = 185645, + [SMALL_STATE(4852)] = 185670, + [SMALL_STATE(4853)] = 185699, + [SMALL_STATE(4854)] = 185724, + [SMALL_STATE(4855)] = 185753, + [SMALL_STATE(4856)] = 185782, + [SMALL_STATE(4857)] = 185807, + [SMALL_STATE(4858)] = 185830, + [SMALL_STATE(4859)] = 185855, + [SMALL_STATE(4860)] = 185884, + [SMALL_STATE(4861)] = 185909, + [SMALL_STATE(4862)] = 185934, + [SMALL_STATE(4863)] = 185959, + [SMALL_STATE(4864)] = 185984, + [SMALL_STATE(4865)] = 186009, + [SMALL_STATE(4866)] = 186033, + [SMALL_STATE(4867)] = 186057, + [SMALL_STATE(4868)] = 186081, + [SMALL_STATE(4869)] = 186105, + [SMALL_STATE(4870)] = 186127, + [SMALL_STATE(4871)] = 186151, + [SMALL_STATE(4872)] = 186175, + [SMALL_STATE(4873)] = 186199, + [SMALL_STATE(4874)] = 186221, + [SMALL_STATE(4875)] = 186243, + [SMALL_STATE(4876)] = 186267, + [SMALL_STATE(4877)] = 186289, + [SMALL_STATE(4878)] = 186313, + [SMALL_STATE(4879)] = 186337, + [SMALL_STATE(4880)] = 186359, + [SMALL_STATE(4881)] = 186383, + [SMALL_STATE(4882)] = 186407, + [SMALL_STATE(4883)] = 186431, + [SMALL_STATE(4884)] = 186475, + [SMALL_STATE(4885)] = 186499, + [SMALL_STATE(4886)] = 186521, + [SMALL_STATE(4887)] = 186543, + [SMALL_STATE(4888)] = 186567, + [SMALL_STATE(4889)] = 186589, + [SMALL_STATE(4890)] = 186627, + [SMALL_STATE(4891)] = 186649, + [SMALL_STATE(4892)] = 186673, + [SMALL_STATE(4893)] = 186697, + [SMALL_STATE(4894)] = 186721, + [SMALL_STATE(4895)] = 186745, + [SMALL_STATE(4896)] = 186769, + [SMALL_STATE(4897)] = 186793, + [SMALL_STATE(4898)] = 186817, + [SMALL_STATE(4899)] = 186839, + [SMALL_STATE(4900)] = 186863, + [SMALL_STATE(4901)] = 186885, + [SMALL_STATE(4902)] = 186909, + [SMALL_STATE(4903)] = 186933, + [SMALL_STATE(4904)] = 186957, + [SMALL_STATE(4905)] = 186981, + [SMALL_STATE(4906)] = 187005, + [SMALL_STATE(4907)] = 187029, + [SMALL_STATE(4908)] = 187053, + [SMALL_STATE(4909)] = 187077, + [SMALL_STATE(4910)] = 187101, + [SMALL_STATE(4911)] = 187125, + [SMALL_STATE(4912)] = 187149, + [SMALL_STATE(4913)] = 187173, + [SMALL_STATE(4914)] = 187197, + [SMALL_STATE(4915)] = 187221, + [SMALL_STATE(4916)] = 187245, + [SMALL_STATE(4917)] = 187269, + [SMALL_STATE(4918)] = 187293, + [SMALL_STATE(4919)] = 187317, + [SMALL_STATE(4920)] = 187339, + [SMALL_STATE(4921)] = 187361, + [SMALL_STATE(4922)] = 187383, + [SMALL_STATE(4923)] = 187405, + [SMALL_STATE(4924)] = 187429, + [SMALL_STATE(4925)] = 187455, + [SMALL_STATE(4926)] = 187479, + [SMALL_STATE(4927)] = 187503, + [SMALL_STATE(4928)] = 187527, + [SMALL_STATE(4929)] = 187551, + [SMALL_STATE(4930)] = 187575, + [SMALL_STATE(4931)] = 187599, + [SMALL_STATE(4932)] = 187625, + [SMALL_STATE(4933)] = 187651, + [SMALL_STATE(4934)] = 187693, + [SMALL_STATE(4935)] = 187717, + [SMALL_STATE(4936)] = 187743, + [SMALL_STATE(4937)] = 187767, + [SMALL_STATE(4938)] = 187791, + [SMALL_STATE(4939)] = 187817, + [SMALL_STATE(4940)] = 187841, + [SMALL_STATE(4941)] = 187865, + [SMALL_STATE(4942)] = 187889, + [SMALL_STATE(4943)] = 187913, + [SMALL_STATE(4944)] = 187937, + [SMALL_STATE(4945)] = 187961, + [SMALL_STATE(4946)] = 187985, + [SMALL_STATE(4947)] = 188009, + [SMALL_STATE(4948)] = 188033, + [SMALL_STATE(4949)] = 188057, + [SMALL_STATE(4950)] = 188103, + [SMALL_STATE(4951)] = 188127, + [SMALL_STATE(4952)] = 188151, + [SMALL_STATE(4953)] = 188177, + [SMALL_STATE(4954)] = 188223, + [SMALL_STATE(4955)] = 188247, + [SMALL_STATE(4956)] = 188293, + [SMALL_STATE(4957)] = 188315, + [SMALL_STATE(4958)] = 188361, + [SMALL_STATE(4959)] = 188383, + [SMALL_STATE(4960)] = 188423, + [SMALL_STATE(4961)] = 188469, + [SMALL_STATE(4962)] = 188515, + [SMALL_STATE(4963)] = 188539, + [SMALL_STATE(4964)] = 188563, + [SMALL_STATE(4965)] = 188587, + [SMALL_STATE(4966)] = 188611, + [SMALL_STATE(4967)] = 188657, + [SMALL_STATE(4968)] = 188703, + [SMALL_STATE(4969)] = 188727, + [SMALL_STATE(4970)] = 188751, + [SMALL_STATE(4971)] = 188775, + [SMALL_STATE(4972)] = 188799, + [SMALL_STATE(4973)] = 188823, + [SMALL_STATE(4974)] = 188847, + [SMALL_STATE(4975)] = 188871, + [SMALL_STATE(4976)] = 188895, + [SMALL_STATE(4977)] = 188935, + [SMALL_STATE(4978)] = 188959, + [SMALL_STATE(4979)] = 189003, + [SMALL_STATE(4980)] = 189027, + [SMALL_STATE(4981)] = 189051, + [SMALL_STATE(4982)] = 189075, + [SMALL_STATE(4983)] = 189099, + [SMALL_STATE(4984)] = 189123, + [SMALL_STATE(4985)] = 189147, + [SMALL_STATE(4986)] = 189171, + [SMALL_STATE(4987)] = 189195, + [SMALL_STATE(4988)] = 189219, + [SMALL_STATE(4989)] = 189243, + [SMALL_STATE(4990)] = 189267, + [SMALL_STATE(4991)] = 189301, + [SMALL_STATE(4992)] = 189325, + [SMALL_STATE(4993)] = 189349, + [SMALL_STATE(4994)] = 189373, + [SMALL_STATE(4995)] = 189397, + [SMALL_STATE(4996)] = 189421, + [SMALL_STATE(4997)] = 189445, + [SMALL_STATE(4998)] = 189469, + [SMALL_STATE(4999)] = 189493, + [SMALL_STATE(5000)] = 189517, + [SMALL_STATE(5001)] = 189541, + [SMALL_STATE(5002)] = 189565, + [SMALL_STATE(5003)] = 189589, + [SMALL_STATE(5004)] = 189613, + [SMALL_STATE(5005)] = 189637, + [SMALL_STATE(5006)] = 189659, + [SMALL_STATE(5007)] = 189681, + [SMALL_STATE(5008)] = 189703, + [SMALL_STATE(5009)] = 189725, + [SMALL_STATE(5010)] = 189747, + [SMALL_STATE(5011)] = 189771, + [SMALL_STATE(5012)] = 189795, + [SMALL_STATE(5013)] = 189819, + [SMALL_STATE(5014)] = 189843, + [SMALL_STATE(5015)] = 189867, + [SMALL_STATE(5016)] = 189891, + [SMALL_STATE(5017)] = 189915, + [SMALL_STATE(5018)] = 189939, + [SMALL_STATE(5019)] = 189963, + [SMALL_STATE(5020)] = 189987, + [SMALL_STATE(5021)] = 190011, + [SMALL_STATE(5022)] = 190035, + [SMALL_STATE(5023)] = 190057, + [SMALL_STATE(5024)] = 190081, + [SMALL_STATE(5025)] = 190103, + [SMALL_STATE(5026)] = 190127, + [SMALL_STATE(5027)] = 190151, + [SMALL_STATE(5028)] = 190173, + [SMALL_STATE(5029)] = 190197, + [SMALL_STATE(5030)] = 190221, + [SMALL_STATE(5031)] = 190263, + [SMALL_STATE(5032)] = 190287, + [SMALL_STATE(5033)] = 190313, + [SMALL_STATE(5034)] = 190339, + [SMALL_STATE(5035)] = 190381, + [SMALL_STATE(5036)] = 190405, + [SMALL_STATE(5037)] = 190429, + [SMALL_STATE(5038)] = 190453, + [SMALL_STATE(5039)] = 190477, + [SMALL_STATE(5040)] = 190501, + [SMALL_STATE(5041)] = 190525, + [SMALL_STATE(5042)] = 190549, + [SMALL_STATE(5043)] = 190573, + [SMALL_STATE(5044)] = 190597, + [SMALL_STATE(5045)] = 190621, + [SMALL_STATE(5046)] = 190661, + [SMALL_STATE(5047)] = 190699, + [SMALL_STATE(5048)] = 190723, + [SMALL_STATE(5049)] = 190747, + [SMALL_STATE(5050)] = 190771, + [SMALL_STATE(5051)] = 190795, + [SMALL_STATE(5052)] = 190819, + [SMALL_STATE(5053)] = 190843, + [SMALL_STATE(5054)] = 190867, + [SMALL_STATE(5055)] = 190891, + [SMALL_STATE(5056)] = 190937, + [SMALL_STATE(5057)] = 190983, + [SMALL_STATE(5058)] = 191007, + [SMALL_STATE(5059)] = 191045, + [SMALL_STATE(5060)] = 191069, + [SMALL_STATE(5061)] = 191106, + [SMALL_STATE(5062)] = 191127, + [SMALL_STATE(5063)] = 191148, + [SMALL_STATE(5064)] = 191169, + [SMALL_STATE(5065)] = 191190, + [SMALL_STATE(5066)] = 191211, + [SMALL_STATE(5067)] = 191232, + [SMALL_STATE(5068)] = 191255, + [SMALL_STATE(5069)] = 191276, + [SMALL_STATE(5070)] = 191297, + [SMALL_STATE(5071)] = 191324, + [SMALL_STATE(5072)] = 191361, + [SMALL_STATE(5073)] = 191382, + [SMALL_STATE(5074)] = 191403, + [SMALL_STATE(5075)] = 191424, + [SMALL_STATE(5076)] = 191447, + [SMALL_STATE(5077)] = 191470, + [SMALL_STATE(5078)] = 191493, + [SMALL_STATE(5079)] = 191516, + [SMALL_STATE(5080)] = 191539, + [SMALL_STATE(5081)] = 191580, + [SMALL_STATE(5082)] = 191603, + [SMALL_STATE(5083)] = 191626, + [SMALL_STATE(5084)] = 191663, + [SMALL_STATE(5085)] = 191684, + [SMALL_STATE(5086)] = 191705, + [SMALL_STATE(5087)] = 191746, + [SMALL_STATE(5088)] = 191767, + [SMALL_STATE(5089)] = 191790, + [SMALL_STATE(5090)] = 191811, + [SMALL_STATE(5091)] = 191852, + [SMALL_STATE(5092)] = 191875, + [SMALL_STATE(5093)] = 191896, + [SMALL_STATE(5094)] = 191919, + [SMALL_STATE(5095)] = 191940, + [SMALL_STATE(5096)] = 191963, + [SMALL_STATE(5097)] = 191984, + [SMALL_STATE(5098)] = 192005, + [SMALL_STATE(5099)] = 192026, + [SMALL_STATE(5100)] = 192059, + [SMALL_STATE(5101)] = 192080, + [SMALL_STATE(5102)] = 192101, + [SMALL_STATE(5103)] = 192122, + [SMALL_STATE(5104)] = 192143, + [SMALL_STATE(5105)] = 192164, + [SMALL_STATE(5106)] = 192185, + [SMALL_STATE(5107)] = 192208, + [SMALL_STATE(5108)] = 192235, + [SMALL_STATE(5109)] = 192256, + [SMALL_STATE(5110)] = 192277, + [SMALL_STATE(5111)] = 192298, + [SMALL_STATE(5112)] = 192321, + [SMALL_STATE(5113)] = 192362, + [SMALL_STATE(5114)] = 192383, + [SMALL_STATE(5115)] = 192404, + [SMALL_STATE(5116)] = 192443, + [SMALL_STATE(5117)] = 192466, + [SMALL_STATE(5118)] = 192487, + [SMALL_STATE(5119)] = 192508, + [SMALL_STATE(5120)] = 192529, + [SMALL_STATE(5121)] = 192552, + [SMALL_STATE(5122)] = 192573, + [SMALL_STATE(5123)] = 192594, + [SMALL_STATE(5124)] = 192615, + [SMALL_STATE(5125)] = 192636, + [SMALL_STATE(5126)] = 192657, + [SMALL_STATE(5127)] = 192678, + [SMALL_STATE(5128)] = 192699, + [SMALL_STATE(5129)] = 192738, + [SMALL_STATE(5130)] = 192759, + [SMALL_STATE(5131)] = 192780, + [SMALL_STATE(5132)] = 192819, + [SMALL_STATE(5133)] = 192840, + [SMALL_STATE(5134)] = 192861, + [SMALL_STATE(5135)] = 192882, + [SMALL_STATE(5136)] = 192909, + [SMALL_STATE(5137)] = 192930, + [SMALL_STATE(5138)] = 192951, + [SMALL_STATE(5139)] = 192972, + [SMALL_STATE(5140)] = 192995, + [SMALL_STATE(5141)] = 193016, + [SMALL_STATE(5142)] = 193037, + [SMALL_STATE(5143)] = 193058, + [SMALL_STATE(5144)] = 193099, + [SMALL_STATE(5145)] = 193120, + [SMALL_STATE(5146)] = 193141, + [SMALL_STATE(5147)] = 193162, + [SMALL_STATE(5148)] = 193183, + [SMALL_STATE(5149)] = 193206, + [SMALL_STATE(5150)] = 193245, + [SMALL_STATE(5151)] = 193268, + [SMALL_STATE(5152)] = 193291, + [SMALL_STATE(5153)] = 193314, + [SMALL_STATE(5154)] = 193337, + [SMALL_STATE(5155)] = 193358, + [SMALL_STATE(5156)] = 193379, + [SMALL_STATE(5157)] = 193402, + [SMALL_STATE(5158)] = 193425, + [SMALL_STATE(5159)] = 193456, + [SMALL_STATE(5160)] = 193479, + [SMALL_STATE(5161)] = 193502, + [SMALL_STATE(5162)] = 193525, + [SMALL_STATE(5163)] = 193546, + [SMALL_STATE(5164)] = 193569, + [SMALL_STATE(5165)] = 193592, + [SMALL_STATE(5166)] = 193613, + [SMALL_STATE(5167)] = 193636, + [SMALL_STATE(5168)] = 193659, + [SMALL_STATE(5169)] = 193682, + [SMALL_STATE(5170)] = 193709, + [SMALL_STATE(5171)] = 193730, + [SMALL_STATE(5172)] = 193771, + [SMALL_STATE(5173)] = 193794, + [SMALL_STATE(5174)] = 193821, + [SMALL_STATE(5175)] = 193844, + [SMALL_STATE(5176)] = 193865, + [SMALL_STATE(5177)] = 193892, + [SMALL_STATE(5178)] = 193913, + [SMALL_STATE(5179)] = 193934, + [SMALL_STATE(5180)] = 193955, + [SMALL_STATE(5181)] = 193976, + [SMALL_STATE(5182)] = 194017, + [SMALL_STATE(5183)] = 194058, + [SMALL_STATE(5184)] = 194097, + [SMALL_STATE(5185)] = 194124, + [SMALL_STATE(5186)] = 194145, + [SMALL_STATE(5187)] = 194166, + [SMALL_STATE(5188)] = 194207, + [SMALL_STATE(5189)] = 194228, + [SMALL_STATE(5190)] = 194249, + [SMALL_STATE(5191)] = 194288, + [SMALL_STATE(5192)] = 194309, + [SMALL_STATE(5193)] = 194348, + [SMALL_STATE(5194)] = 194387, + [SMALL_STATE(5195)] = 194408, + [SMALL_STATE(5196)] = 194431, + [SMALL_STATE(5197)] = 194458, + [SMALL_STATE(5198)] = 194481, + [SMALL_STATE(5199)] = 194504, + [SMALL_STATE(5200)] = 194543, + [SMALL_STATE(5201)] = 194566, + [SMALL_STATE(5202)] = 194593, + [SMALL_STATE(5203)] = 194630, + [SMALL_STATE(5204)] = 194653, + [SMALL_STATE(5205)] = 194690, + [SMALL_STATE(5206)] = 194727, + [SMALL_STATE(5207)] = 194764, + [SMALL_STATE(5208)] = 194801, + [SMALL_STATE(5209)] = 194838, + [SMALL_STATE(5210)] = 194861, + [SMALL_STATE(5211)] = 194884, + [SMALL_STATE(5212)] = 194921, + [SMALL_STATE(5213)] = 194948, + [SMALL_STATE(5214)] = 194971, + [SMALL_STATE(5215)] = 194992, + [SMALL_STATE(5216)] = 195027, + [SMALL_STATE(5217)] = 195062, + [SMALL_STATE(5218)] = 195097, + [SMALL_STATE(5219)] = 195132, + [SMALL_STATE(5220)] = 195159, + [SMALL_STATE(5221)] = 195180, + [SMALL_STATE(5222)] = 195221, + [SMALL_STATE(5223)] = 195255, + [SMALL_STATE(5224)] = 195281, + [SMALL_STATE(5225)] = 195309, + [SMALL_STATE(5226)] = 195347, + [SMALL_STATE(5227)] = 195373, + [SMALL_STATE(5228)] = 195397, + [SMALL_STATE(5229)] = 195435, + [SMALL_STATE(5230)] = 195467, + [SMALL_STATE(5231)] = 195493, + [SMALL_STATE(5232)] = 195519, + [SMALL_STATE(5233)] = 195545, + [SMALL_STATE(5234)] = 195571, + [SMALL_STATE(5235)] = 195609, + [SMALL_STATE(5236)] = 195645, + [SMALL_STATE(5237)] = 195671, + [SMALL_STATE(5238)] = 195707, + [SMALL_STATE(5239)] = 195731, + [SMALL_STATE(5240)] = 195755, + [SMALL_STATE(5241)] = 195787, + [SMALL_STATE(5242)] = 195819, + [SMALL_STATE(5243)] = 195853, + [SMALL_STATE(5244)] = 195885, + [SMALL_STATE(5245)] = 195909, + [SMALL_STATE(5246)] = 195947, + [SMALL_STATE(5247)] = 195979, + [SMALL_STATE(5248)] = 196005, + [SMALL_STATE(5249)] = 196031, + [SMALL_STATE(5250)] = 196057, + [SMALL_STATE(5251)] = 196081, + [SMALL_STATE(5252)] = 196105, + [SMALL_STATE(5253)] = 196141, + [SMALL_STATE(5254)] = 196173, + [SMALL_STATE(5255)] = 196205, + [SMALL_STATE(5256)] = 196227, + [SMALL_STATE(5257)] = 196253, + [SMALL_STATE(5258)] = 196285, + [SMALL_STATE(5259)] = 196319, + [SMALL_STATE(5260)] = 196347, + [SMALL_STATE(5261)] = 196369, + [SMALL_STATE(5262)] = 196405, + [SMALL_STATE(5263)] = 196439, + [SMALL_STATE(5264)] = 196465, + [SMALL_STATE(5265)] = 196497, + [SMALL_STATE(5266)] = 196521, + [SMALL_STATE(5267)] = 196555, + [SMALL_STATE(5268)] = 196591, + [SMALL_STATE(5269)] = 196623, + [SMALL_STATE(5270)] = 196647, + [SMALL_STATE(5271)] = 196681, + [SMALL_STATE(5272)] = 196713, + [SMALL_STATE(5273)] = 196739, + [SMALL_STATE(5274)] = 196768, + [SMALL_STATE(5275)] = 196795, + [SMALL_STATE(5276)] = 196830, + [SMALL_STATE(5277)] = 196865, + [SMALL_STATE(5278)] = 196900, + [SMALL_STATE(5279)] = 196931, + [SMALL_STATE(5280)] = 196966, + [SMALL_STATE(5281)] = 196997, + [SMALL_STATE(5282)] = 197028, + [SMALL_STATE(5283)] = 197049, + [SMALL_STATE(5284)] = 197084, + [SMALL_STATE(5285)] = 197119, + [SMALL_STATE(5286)] = 197148, + [SMALL_STATE(5287)] = 197171, + [SMALL_STATE(5288)] = 197202, + [SMALL_STATE(5289)] = 197223, + [SMALL_STATE(5290)] = 197246, + [SMALL_STATE(5291)] = 197273, + [SMALL_STATE(5292)] = 197308, + [SMALL_STATE(5293)] = 197343, + [SMALL_STATE(5294)] = 197378, + [SMALL_STATE(5295)] = 197411, + [SMALL_STATE(5296)] = 197436, + [SMALL_STATE(5297)] = 197461, + [SMALL_STATE(5298)] = 197482, + [SMALL_STATE(5299)] = 197507, + [SMALL_STATE(5300)] = 197538, + [SMALL_STATE(5301)] = 197563, + [SMALL_STATE(5302)] = 197596, + [SMALL_STATE(5303)] = 197629, + [SMALL_STATE(5304)] = 197650, + [SMALL_STATE(5305)] = 197681, + [SMALL_STATE(5306)] = 197716, + [SMALL_STATE(5307)] = 197749, + [SMALL_STATE(5308)] = 197778, + [SMALL_STATE(5309)] = 197807, + [SMALL_STATE(5310)] = 197842, + [SMALL_STATE(5311)] = 197877, + [SMALL_STATE(5312)] = 197912, + [SMALL_STATE(5313)] = 197947, + [SMALL_STATE(5314)] = 197972, + [SMALL_STATE(5315)] = 198007, + [SMALL_STATE(5316)] = 198042, + [SMALL_STATE(5317)] = 198063, + [SMALL_STATE(5318)] = 198088, + [SMALL_STATE(5319)] = 198123, + [SMALL_STATE(5320)] = 198158, + [SMALL_STATE(5321)] = 198191, + [SMALL_STATE(5322)] = 198216, + [SMALL_STATE(5323)] = 198237, + [SMALL_STATE(5324)] = 198266, + [SMALL_STATE(5325)] = 198299, + [SMALL_STATE(5326)] = 198334, + [SMALL_STATE(5327)] = 198369, + [SMALL_STATE(5328)] = 198404, + [SMALL_STATE(5329)] = 198439, + [SMALL_STATE(5330)] = 198474, + [SMALL_STATE(5331)] = 198509, + [SMALL_STATE(5332)] = 198544, + [SMALL_STATE(5333)] = 198577, + [SMALL_STATE(5334)] = 198598, + [SMALL_STATE(5335)] = 198631, + [SMALL_STATE(5336)] = 198666, + [SMALL_STATE(5337)] = 198701, + [SMALL_STATE(5338)] = 198736, + [SMALL_STATE(5339)] = 198771, + [SMALL_STATE(5340)] = 198806, + [SMALL_STATE(5341)] = 198827, + [SMALL_STATE(5342)] = 198856, + [SMALL_STATE(5343)] = 198877, + [SMALL_STATE(5344)] = 198898, + [SMALL_STATE(5345)] = 198919, + [SMALL_STATE(5346)] = 198954, + [SMALL_STATE(5347)] = 198975, + [SMALL_STATE(5348)] = 198996, + [SMALL_STATE(5349)] = 199031, + [SMALL_STATE(5350)] = 199054, + [SMALL_STATE(5351)] = 199077, + [SMALL_STATE(5352)] = 199112, + [SMALL_STATE(5353)] = 199147, + [SMALL_STATE(5354)] = 199170, + [SMALL_STATE(5355)] = 199201, + [SMALL_STATE(5356)] = 199236, + [SMALL_STATE(5357)] = 199271, + [SMALL_STATE(5358)] = 199306, + [SMALL_STATE(5359)] = 199329, + [SMALL_STATE(5360)] = 199362, + [SMALL_STATE(5361)] = 199395, + [SMALL_STATE(5362)] = 199430, + [SMALL_STATE(5363)] = 199453, + [SMALL_STATE(5364)] = 199488, + [SMALL_STATE(5365)] = 199518, + [SMALL_STATE(5366)] = 199548, + [SMALL_STATE(5367)] = 199578, + [SMALL_STATE(5368)] = 199608, + [SMALL_STATE(5369)] = 199638, + [SMALL_STATE(5370)] = 199668, + [SMALL_STATE(5371)] = 199692, + [SMALL_STATE(5372)] = 199716, + [SMALL_STATE(5373)] = 199746, + [SMALL_STATE(5374)] = 199776, + [SMALL_STATE(5375)] = 199800, + [SMALL_STATE(5376)] = 199822, + [SMALL_STATE(5377)] = 199846, + [SMALL_STATE(5378)] = 199876, + [SMALL_STATE(5379)] = 199906, + [SMALL_STATE(5380)] = 199930, + [SMALL_STATE(5381)] = 199960, + [SMALL_STATE(5382)] = 199990, + [SMALL_STATE(5383)] = 200020, + [SMALL_STATE(5384)] = 200050, + [SMALL_STATE(5385)] = 200080, + [SMALL_STATE(5386)] = 200110, + [SMALL_STATE(5387)] = 200130, + [SMALL_STATE(5388)] = 200160, + [SMALL_STATE(5389)] = 200190, + [SMALL_STATE(5390)] = 200210, + [SMALL_STATE(5391)] = 200240, + [SMALL_STATE(5392)] = 200260, + [SMALL_STATE(5393)] = 200290, + [SMALL_STATE(5394)] = 200310, + [SMALL_STATE(5395)] = 200340, + [SMALL_STATE(5396)] = 200368, + [SMALL_STATE(5397)] = 200398, + [SMALL_STATE(5398)] = 200428, + [SMALL_STATE(5399)] = 200458, + [SMALL_STATE(5400)] = 200482, + [SMALL_STATE(5401)] = 200512, + [SMALL_STATE(5402)] = 200542, + [SMALL_STATE(5403)] = 200566, + [SMALL_STATE(5404)] = 200596, + [SMALL_STATE(5405)] = 200618, + [SMALL_STATE(5406)] = 200640, + [SMALL_STATE(5407)] = 200670, + [SMALL_STATE(5408)] = 200700, + [SMALL_STATE(5409)] = 200730, + [SMALL_STATE(5410)] = 200760, + [SMALL_STATE(5411)] = 200780, + [SMALL_STATE(5412)] = 200810, + [SMALL_STATE(5413)] = 200842, + [SMALL_STATE(5414)] = 200864, + [SMALL_STATE(5415)] = 200884, + [SMALL_STATE(5416)] = 200914, + [SMALL_STATE(5417)] = 200934, + [SMALL_STATE(5418)] = 200964, + [SMALL_STATE(5419)] = 200984, + [SMALL_STATE(5420)] = 201014, + [SMALL_STATE(5421)] = 201044, + [SMALL_STATE(5422)] = 201066, + [SMALL_STATE(5423)] = 201096, + [SMALL_STATE(5424)] = 201116, + [SMALL_STATE(5425)] = 201136, + [SMALL_STATE(5426)] = 201156, + [SMALL_STATE(5427)] = 201186, + [SMALL_STATE(5428)] = 201216, + [SMALL_STATE(5429)] = 201240, + [SMALL_STATE(5430)] = 201262, + [SMALL_STATE(5431)] = 201282, + [SMALL_STATE(5432)] = 201304, + [SMALL_STATE(5433)] = 201334, + [SMALL_STATE(5434)] = 201364, + [SMALL_STATE(5435)] = 201394, + [SMALL_STATE(5436)] = 201414, + [SMALL_STATE(5437)] = 201444, + [SMALL_STATE(5438)] = 201466, + [SMALL_STATE(5439)] = 201490, + [SMALL_STATE(5440)] = 201514, + [SMALL_STATE(5441)] = 201544, + [SMALL_STATE(5442)] = 201568, + [SMALL_STATE(5443)] = 201598, + [SMALL_STATE(5444)] = 201628, + [SMALL_STATE(5445)] = 201658, + [SMALL_STATE(5446)] = 201678, + [SMALL_STATE(5447)] = 201708, + [SMALL_STATE(5448)] = 201732, + [SMALL_STATE(5449)] = 201752, + [SMALL_STATE(5450)] = 201784, + [SMALL_STATE(5451)] = 201804, + [SMALL_STATE(5452)] = 201824, + [SMALL_STATE(5453)] = 201850, + [SMALL_STATE(5454)] = 201880, + [SMALL_STATE(5455)] = 201910, + [SMALL_STATE(5456)] = 201934, + [SMALL_STATE(5457)] = 201964, + [SMALL_STATE(5458)] = 201994, + [SMALL_STATE(5459)] = 202011, + [SMALL_STATE(5460)] = 202038, + [SMALL_STATE(5461)] = 202065, + [SMALL_STATE(5462)] = 202092, + [SMALL_STATE(5463)] = 202119, + [SMALL_STATE(5464)] = 202146, + [SMALL_STATE(5465)] = 202173, + [SMALL_STATE(5466)] = 202200, + [SMALL_STATE(5467)] = 202227, + [SMALL_STATE(5468)] = 202254, + [SMALL_STATE(5469)] = 202273, + [SMALL_STATE(5470)] = 202292, + [SMALL_STATE(5471)] = 202311, + [SMALL_STATE(5472)] = 202328, + [SMALL_STATE(5473)] = 202355, + [SMALL_STATE(5474)] = 202382, + [SMALL_STATE(5475)] = 202407, + [SMALL_STATE(5476)] = 202434, + [SMALL_STATE(5477)] = 202459, + [SMALL_STATE(5478)] = 202486, + [SMALL_STATE(5479)] = 202513, + [SMALL_STATE(5480)] = 202540, + [SMALL_STATE(5481)] = 202567, + [SMALL_STATE(5482)] = 202594, + [SMALL_STATE(5483)] = 202621, + [SMALL_STATE(5484)] = 202648, + [SMALL_STATE(5485)] = 202675, + [SMALL_STATE(5486)] = 202702, + [SMALL_STATE(5487)] = 202729, + [SMALL_STATE(5488)] = 202756, + [SMALL_STATE(5489)] = 202783, + [SMALL_STATE(5490)] = 202810, + [SMALL_STATE(5491)] = 202837, + [SMALL_STATE(5492)] = 202864, + [SMALL_STATE(5493)] = 202891, + [SMALL_STATE(5494)] = 202918, + [SMALL_STATE(5495)] = 202937, + [SMALL_STATE(5496)] = 202964, + [SMALL_STATE(5497)] = 202991, + [SMALL_STATE(5498)] = 203018, + [SMALL_STATE(5499)] = 203045, + [SMALL_STATE(5500)] = 203072, + [SMALL_STATE(5501)] = 203099, + [SMALL_STATE(5502)] = 203126, + [SMALL_STATE(5503)] = 203145, + [SMALL_STATE(5504)] = 203172, + [SMALL_STATE(5505)] = 203191, + [SMALL_STATE(5506)] = 203218, + [SMALL_STATE(5507)] = 203245, + [SMALL_STATE(5508)] = 203272, + [SMALL_STATE(5509)] = 203297, + [SMALL_STATE(5510)] = 203318, + [SMALL_STATE(5511)] = 203337, + [SMALL_STATE(5512)] = 203358, + [SMALL_STATE(5513)] = 203385, + [SMALL_STATE(5514)] = 203404, + [SMALL_STATE(5515)] = 203425, + [SMALL_STATE(5516)] = 203444, + [SMALL_STATE(5517)] = 203471, + [SMALL_STATE(5518)] = 203496, + [SMALL_STATE(5519)] = 203525, + [SMALL_STATE(5520)] = 203544, + [SMALL_STATE(5521)] = 203571, + [SMALL_STATE(5522)] = 203590, + [SMALL_STATE(5523)] = 203609, + [SMALL_STATE(5524)] = 203630, + [SMALL_STATE(5525)] = 203657, + [SMALL_STATE(5526)] = 203680, + [SMALL_STATE(5527)] = 203701, + [SMALL_STATE(5528)] = 203728, + [SMALL_STATE(5529)] = 203747, + [SMALL_STATE(5530)] = 203770, + [SMALL_STATE(5531)] = 203797, + [SMALL_STATE(5532)] = 203824, + [SMALL_STATE(5533)] = 203843, + [SMALL_STATE(5534)] = 203870, + [SMALL_STATE(5535)] = 203897, + [SMALL_STATE(5536)] = 203920, + [SMALL_STATE(5537)] = 203947, + [SMALL_STATE(5538)] = 203974, + [SMALL_STATE(5539)] = 204001, + [SMALL_STATE(5540)] = 204028, + [SMALL_STATE(5541)] = 204055, + [SMALL_STATE(5542)] = 204082, + [SMALL_STATE(5543)] = 204109, + [SMALL_STATE(5544)] = 204136, + [SMALL_STATE(5545)] = 204163, + [SMALL_STATE(5546)] = 204190, + [SMALL_STATE(5547)] = 204217, + [SMALL_STATE(5548)] = 204244, + [SMALL_STATE(5549)] = 204271, + [SMALL_STATE(5550)] = 204298, + [SMALL_STATE(5551)] = 204321, + [SMALL_STATE(5552)] = 204348, + [SMALL_STATE(5553)] = 204375, + [SMALL_STATE(5554)] = 204402, + [SMALL_STATE(5555)] = 204429, + [SMALL_STATE(5556)] = 204456, + [SMALL_STATE(5557)] = 204483, + [SMALL_STATE(5558)] = 204510, + [SMALL_STATE(5559)] = 204537, + [SMALL_STATE(5560)] = 204564, + [SMALL_STATE(5561)] = 204591, + [SMALL_STATE(5562)] = 204612, + [SMALL_STATE(5563)] = 204631, + [SMALL_STATE(5564)] = 204648, + [SMALL_STATE(5565)] = 204667, + [SMALL_STATE(5566)] = 204688, + [SMALL_STATE(5567)] = 204707, + [SMALL_STATE(5568)] = 204726, + [SMALL_STATE(5569)] = 204751, + [SMALL_STATE(5570)] = 204780, + [SMALL_STATE(5571)] = 204801, + [SMALL_STATE(5572)] = 204822, + [SMALL_STATE(5573)] = 204843, + [SMALL_STATE(5574)] = 204862, + [SMALL_STATE(5575)] = 204879, + [SMALL_STATE(5576)] = 204900, + [SMALL_STATE(5577)] = 204919, + [SMALL_STATE(5578)] = 204948, + [SMALL_STATE(5579)] = 204967, + [SMALL_STATE(5580)] = 204988, + [SMALL_STATE(5581)] = 205007, + [SMALL_STATE(5582)] = 205026, + [SMALL_STATE(5583)] = 205045, + [SMALL_STATE(5584)] = 205064, + [SMALL_STATE(5585)] = 205085, + [SMALL_STATE(5586)] = 205102, + [SMALL_STATE(5587)] = 205129, + [SMALL_STATE(5588)] = 205150, + [SMALL_STATE(5589)] = 205177, + [SMALL_STATE(5590)] = 205198, + [SMALL_STATE(5591)] = 205219, + [SMALL_STATE(5592)] = 205240, + [SMALL_STATE(5593)] = 205261, + [SMALL_STATE(5594)] = 205280, + [SMALL_STATE(5595)] = 205307, + [SMALL_STATE(5596)] = 205334, + [SMALL_STATE(5597)] = 205351, + [SMALL_STATE(5598)] = 205370, + [SMALL_STATE(5599)] = 205387, + [SMALL_STATE(5600)] = 205414, + [SMALL_STATE(5601)] = 205441, + [SMALL_STATE(5602)] = 205460, + [SMALL_STATE(5603)] = 205477, + [SMALL_STATE(5604)] = 205494, + [SMALL_STATE(5605)] = 205521, + [SMALL_STATE(5606)] = 205548, + [SMALL_STATE(5607)] = 205565, + [SMALL_STATE(5608)] = 205586, + [SMALL_STATE(5609)] = 205613, + [SMALL_STATE(5610)] = 205630, + [SMALL_STATE(5611)] = 205647, + [SMALL_STATE(5612)] = 205666, + [SMALL_STATE(5613)] = 205693, + [SMALL_STATE(5614)] = 205712, + [SMALL_STATE(5615)] = 205739, + [SMALL_STATE(5616)] = 205766, + [SMALL_STATE(5617)] = 205793, + [SMALL_STATE(5618)] = 205820, + [SMALL_STATE(5619)] = 205847, + [SMALL_STATE(5620)] = 205874, + [SMALL_STATE(5621)] = 205899, + [SMALL_STATE(5622)] = 205926, + [SMALL_STATE(5623)] = 205953, + [SMALL_STATE(5624)] = 205980, + [SMALL_STATE(5625)] = 206007, + [SMALL_STATE(5626)] = 206034, + [SMALL_STATE(5627)] = 206061, + [SMALL_STATE(5628)] = 206087, + [SMALL_STATE(5629)] = 206113, + [SMALL_STATE(5630)] = 206139, + [SMALL_STATE(5631)] = 206157, + [SMALL_STATE(5632)] = 206183, + [SMALL_STATE(5633)] = 206201, + [SMALL_STATE(5634)] = 206219, + [SMALL_STATE(5635)] = 206237, + [SMALL_STATE(5636)] = 206255, + [SMALL_STATE(5637)] = 206281, + [SMALL_STATE(5638)] = 206299, + [SMALL_STATE(5639)] = 206325, + [SMALL_STATE(5640)] = 206353, + [SMALL_STATE(5641)] = 206379, + [SMALL_STATE(5642)] = 206405, + [SMALL_STATE(5643)] = 206431, + [SMALL_STATE(5644)] = 206449, + [SMALL_STATE(5645)] = 206473, + [SMALL_STATE(5646)] = 206499, + [SMALL_STATE(5647)] = 206525, + [SMALL_STATE(5648)] = 206551, + [SMALL_STATE(5649)] = 206567, + [SMALL_STATE(5650)] = 206593, + [SMALL_STATE(5651)] = 206609, + [SMALL_STATE(5652)] = 206633, + [SMALL_STATE(5653)] = 206657, + [SMALL_STATE(5654)] = 206681, + [SMALL_STATE(5655)] = 206697, + [SMALL_STATE(5656)] = 206721, + [SMALL_STATE(5657)] = 206747, + [SMALL_STATE(5658)] = 206773, + [SMALL_STATE(5659)] = 206797, + [SMALL_STATE(5660)] = 206821, + [SMALL_STATE(5661)] = 206837, + [SMALL_STATE(5662)] = 206861, + [SMALL_STATE(5663)] = 206885, + [SMALL_STATE(5664)] = 206909, + [SMALL_STATE(5665)] = 206933, + [SMALL_STATE(5666)] = 206957, + [SMALL_STATE(5667)] = 206983, + [SMALL_STATE(5668)] = 207007, + [SMALL_STATE(5669)] = 207031, + [SMALL_STATE(5670)] = 207055, + [SMALL_STATE(5671)] = 207079, + [SMALL_STATE(5672)] = 207103, + [SMALL_STATE(5673)] = 207127, + [SMALL_STATE(5674)] = 207151, + [SMALL_STATE(5675)] = 207177, + [SMALL_STATE(5676)] = 207201, + [SMALL_STATE(5677)] = 207225, + [SMALL_STATE(5678)] = 207247, + [SMALL_STATE(5679)] = 207273, + [SMALL_STATE(5680)] = 207299, + [SMALL_STATE(5681)] = 207325, + [SMALL_STATE(5682)] = 207351, + [SMALL_STATE(5683)] = 207377, + [SMALL_STATE(5684)] = 207403, + [SMALL_STATE(5685)] = 207429, + [SMALL_STATE(5686)] = 207455, + [SMALL_STATE(5687)] = 207473, + [SMALL_STATE(5688)] = 207491, + [SMALL_STATE(5689)] = 207507, + [SMALL_STATE(5690)] = 207533, + [SMALL_STATE(5691)] = 207551, + [SMALL_STATE(5692)] = 207577, + [SMALL_STATE(5693)] = 207595, + [SMALL_STATE(5694)] = 207615, + [SMALL_STATE(5695)] = 207641, + [SMALL_STATE(5696)] = 207667, + [SMALL_STATE(5697)] = 207693, + [SMALL_STATE(5698)] = 207719, + [SMALL_STATE(5699)] = 207737, + [SMALL_STATE(5700)] = 207755, + [SMALL_STATE(5701)] = 207781, + [SMALL_STATE(5702)] = 207807, + [SMALL_STATE(5703)] = 207833, + [SMALL_STATE(5704)] = 207859, + [SMALL_STATE(5705)] = 207879, + [SMALL_STATE(5706)] = 207897, + [SMALL_STATE(5707)] = 207923, + [SMALL_STATE(5708)] = 207949, + [SMALL_STATE(5709)] = 207975, + [SMALL_STATE(5710)] = 207993, + [SMALL_STATE(5711)] = 208021, + [SMALL_STATE(5712)] = 208045, + [SMALL_STATE(5713)] = 208065, + [SMALL_STATE(5714)] = 208091, + [SMALL_STATE(5715)] = 208109, + [SMALL_STATE(5716)] = 208129, + [SMALL_STATE(5717)] = 208149, + [SMALL_STATE(5718)] = 208175, + [SMALL_STATE(5719)] = 208195, + [SMALL_STATE(5720)] = 208221, + [SMALL_STATE(5721)] = 208237, + [SMALL_STATE(5722)] = 208263, + [SMALL_STATE(5723)] = 208281, + [SMALL_STATE(5724)] = 208299, + [SMALL_STATE(5725)] = 208319, + [SMALL_STATE(5726)] = 208339, + [SMALL_STATE(5727)] = 208363, + [SMALL_STATE(5728)] = 208387, + [SMALL_STATE(5729)] = 208409, + [SMALL_STATE(5730)] = 208433, + [SMALL_STATE(5731)] = 208453, + [SMALL_STATE(5732)] = 208479, + [SMALL_STATE(5733)] = 208497, + [SMALL_STATE(5734)] = 208523, + [SMALL_STATE(5735)] = 208543, + [SMALL_STATE(5736)] = 208561, + [SMALL_STATE(5737)] = 208587, + [SMALL_STATE(5738)] = 208613, + [SMALL_STATE(5739)] = 208639, + [SMALL_STATE(5740)] = 208665, + [SMALL_STATE(5741)] = 208691, + [SMALL_STATE(5742)] = 208717, + [SMALL_STATE(5743)] = 208743, + [SMALL_STATE(5744)] = 208769, + [SMALL_STATE(5745)] = 208793, + [SMALL_STATE(5746)] = 208819, + [SMALL_STATE(5747)] = 208837, + [SMALL_STATE(5748)] = 208863, + [SMALL_STATE(5749)] = 208889, + [SMALL_STATE(5750)] = 208911, + [SMALL_STATE(5751)] = 208929, + [SMALL_STATE(5752)] = 208955, + [SMALL_STATE(5753)] = 208973, + [SMALL_STATE(5754)] = 208999, + [SMALL_STATE(5755)] = 209025, + [SMALL_STATE(5756)] = 209050, + [SMALL_STATE(5757)] = 209073, + [SMALL_STATE(5758)] = 209098, + [SMALL_STATE(5759)] = 209123, + [SMALL_STATE(5760)] = 209148, + [SMALL_STATE(5761)] = 209171, + [SMALL_STATE(5762)] = 209194, + [SMALL_STATE(5763)] = 209219, + [SMALL_STATE(5764)] = 209244, + [SMALL_STATE(5765)] = 209263, + [SMALL_STATE(5766)] = 209288, + [SMALL_STATE(5767)] = 209311, + [SMALL_STATE(5768)] = 209336, + [SMALL_STATE(5769)] = 209361, + [SMALL_STATE(5770)] = 209384, + [SMALL_STATE(5771)] = 209409, + [SMALL_STATE(5772)] = 209430, + [SMALL_STATE(5773)] = 209451, + [SMALL_STATE(5774)] = 209476, + [SMALL_STATE(5775)] = 209497, + [SMALL_STATE(5776)] = 209518, + [SMALL_STATE(5777)] = 209541, + [SMALL_STATE(5778)] = 209566, + [SMALL_STATE(5779)] = 209591, + [SMALL_STATE(5780)] = 209614, + [SMALL_STATE(5781)] = 209639, + [SMALL_STATE(5782)] = 209656, + [SMALL_STATE(5783)] = 209677, + [SMALL_STATE(5784)] = 209694, + [SMALL_STATE(5785)] = 209719, + [SMALL_STATE(5786)] = 209742, + [SMALL_STATE(5787)] = 209761, + [SMALL_STATE(5788)] = 209784, + [SMALL_STATE(5789)] = 209809, + [SMALL_STATE(5790)] = 209834, + [SMALL_STATE(5791)] = 209857, + [SMALL_STATE(5792)] = 209882, + [SMALL_STATE(5793)] = 209907, + [SMALL_STATE(5794)] = 209930, + [SMALL_STATE(5795)] = 209947, + [SMALL_STATE(5796)] = 209964, + [SMALL_STATE(5797)] = 209987, + [SMALL_STATE(5798)] = 210012, + [SMALL_STATE(5799)] = 210037, + [SMALL_STATE(5800)] = 210060, + [SMALL_STATE(5801)] = 210085, + [SMALL_STATE(5802)] = 210108, + [SMALL_STATE(5803)] = 210133, + [SMALL_STATE(5804)] = 210158, + [SMALL_STATE(5805)] = 210183, + [SMALL_STATE(5806)] = 210206, + [SMALL_STATE(5807)] = 210231, + [SMALL_STATE(5808)] = 210256, + [SMALL_STATE(5809)] = 210281, + [SMALL_STATE(5810)] = 210306, + [SMALL_STATE(5811)] = 210329, + [SMALL_STATE(5812)] = 210354, + [SMALL_STATE(5813)] = 210379, + [SMALL_STATE(5814)] = 210400, + [SMALL_STATE(5815)] = 210417, + [SMALL_STATE(5816)] = 210442, + [SMALL_STATE(5817)] = 210467, + [SMALL_STATE(5818)] = 210482, + [SMALL_STATE(5819)] = 210497, + [SMALL_STATE(5820)] = 210520, + [SMALL_STATE(5821)] = 210545, + [SMALL_STATE(5822)] = 210570, + [SMALL_STATE(5823)] = 210595, + [SMALL_STATE(5824)] = 210618, + [SMALL_STATE(5825)] = 210635, + [SMALL_STATE(5826)] = 210660, + [SMALL_STATE(5827)] = 210681, + [SMALL_STATE(5828)] = 210706, + [SMALL_STATE(5829)] = 210725, + [SMALL_STATE(5830)] = 210748, + [SMALL_STATE(5831)] = 210767, + [SMALL_STATE(5832)] = 210792, + [SMALL_STATE(5833)] = 210817, + [SMALL_STATE(5834)] = 210836, + [SMALL_STATE(5835)] = 210859, + [SMALL_STATE(5836)] = 210884, + [SMALL_STATE(5837)] = 210909, + [SMALL_STATE(5838)] = 210924, + [SMALL_STATE(5839)] = 210949, + [SMALL_STATE(5840)] = 210972, + [SMALL_STATE(5841)] = 210995, + [SMALL_STATE(5842)] = 211020, + [SMALL_STATE(5843)] = 211037, + [SMALL_STATE(5844)] = 211062, + [SMALL_STATE(5845)] = 211085, + [SMALL_STATE(5846)] = 211108, + [SMALL_STATE(5847)] = 211127, + [SMALL_STATE(5848)] = 211152, + [SMALL_STATE(5849)] = 211177, + [SMALL_STATE(5850)] = 211196, + [SMALL_STATE(5851)] = 211221, + [SMALL_STATE(5852)] = 211244, + [SMALL_STATE(5853)] = 211267, + [SMALL_STATE(5854)] = 211292, + [SMALL_STATE(5855)] = 211317, + [SMALL_STATE(5856)] = 211340, + [SMALL_STATE(5857)] = 211363, + [SMALL_STATE(5858)] = 211386, + [SMALL_STATE(5859)] = 211407, + [SMALL_STATE(5860)] = 211430, + [SMALL_STATE(5861)] = 211455, + [SMALL_STATE(5862)] = 211480, + [SMALL_STATE(5863)] = 211505, + [SMALL_STATE(5864)] = 211530, + [SMALL_STATE(5865)] = 211553, + [SMALL_STATE(5866)] = 211576, + [SMALL_STATE(5867)] = 211601, + [SMALL_STATE(5868)] = 211626, + [SMALL_STATE(5869)] = 211647, + [SMALL_STATE(5870)] = 211672, + [SMALL_STATE(5871)] = 211697, + [SMALL_STATE(5872)] = 211722, + [SMALL_STATE(5873)] = 211747, + [SMALL_STATE(5874)] = 211772, + [SMALL_STATE(5875)] = 211797, + [SMALL_STATE(5876)] = 211822, + [SMALL_STATE(5877)] = 211847, + [SMALL_STATE(5878)] = 211872, + [SMALL_STATE(5879)] = 211891, + [SMALL_STATE(5880)] = 211916, + [SMALL_STATE(5881)] = 211941, + [SMALL_STATE(5882)] = 211964, + [SMALL_STATE(5883)] = 211987, + [SMALL_STATE(5884)] = 212012, + [SMALL_STATE(5885)] = 212037, + [SMALL_STATE(5886)] = 212062, + [SMALL_STATE(5887)] = 212079, + [SMALL_STATE(5888)] = 212102, + [SMALL_STATE(5889)] = 212127, + [SMALL_STATE(5890)] = 212148, + [SMALL_STATE(5891)] = 212173, + [SMALL_STATE(5892)] = 212198, + [SMALL_STATE(5893)] = 212223, + [SMALL_STATE(5894)] = 212248, + [SMALL_STATE(5895)] = 212269, + [SMALL_STATE(5896)] = 212294, + [SMALL_STATE(5897)] = 212319, + [SMALL_STATE(5898)] = 212344, + [SMALL_STATE(5899)] = 212361, + [SMALL_STATE(5900)] = 212380, + [SMALL_STATE(5901)] = 212399, + [SMALL_STATE(5902)] = 212424, + [SMALL_STATE(5903)] = 212449, + [SMALL_STATE(5904)] = 212466, + [SMALL_STATE(5905)] = 212487, + [SMALL_STATE(5906)] = 212512, + [SMALL_STATE(5907)] = 212529, + [SMALL_STATE(5908)] = 212554, + [SMALL_STATE(5909)] = 212579, + [SMALL_STATE(5910)] = 212596, + [SMALL_STATE(5911)] = 212613, + [SMALL_STATE(5912)] = 212634, + [SMALL_STATE(5913)] = 212655, + [SMALL_STATE(5914)] = 212680, + [SMALL_STATE(5915)] = 212701, + [SMALL_STATE(5916)] = 212718, + [SMALL_STATE(5917)] = 212743, + [SMALL_STATE(5918)] = 212768, + [SMALL_STATE(5919)] = 212791, + [SMALL_STATE(5920)] = 212812, + [SMALL_STATE(5921)] = 212831, + [SMALL_STATE(5922)] = 212854, + [SMALL_STATE(5923)] = 212869, + [SMALL_STATE(5924)] = 212886, + [SMALL_STATE(5925)] = 212911, + [SMALL_STATE(5926)] = 212936, + [SMALL_STATE(5927)] = 212953, + [SMALL_STATE(5928)] = 212968, + [SMALL_STATE(5929)] = 212989, + [SMALL_STATE(5930)] = 213008, + [SMALL_STATE(5931)] = 213033, + [SMALL_STATE(5932)] = 213052, + [SMALL_STATE(5933)] = 213069, + [SMALL_STATE(5934)] = 213088, + [SMALL_STATE(5935)] = 213107, + [SMALL_STATE(5936)] = 213130, + [SMALL_STATE(5937)] = 213149, + [SMALL_STATE(5938)] = 213174, + [SMALL_STATE(5939)] = 213199, + [SMALL_STATE(5940)] = 213224, + [SMALL_STATE(5941)] = 213245, + [SMALL_STATE(5942)] = 213270, + [SMALL_STATE(5943)] = 213295, + [SMALL_STATE(5944)] = 213320, + [SMALL_STATE(5945)] = 213345, + [SMALL_STATE(5946)] = 213370, + [SMALL_STATE(5947)] = 213391, + [SMALL_STATE(5948)] = 213412, + [SMALL_STATE(5949)] = 213437, + [SMALL_STATE(5950)] = 213454, + [SMALL_STATE(5951)] = 213469, + [SMALL_STATE(5952)] = 213494, + [SMALL_STATE(5953)] = 213519, + [SMALL_STATE(5954)] = 213544, + [SMALL_STATE(5955)] = 213561, + [SMALL_STATE(5956)] = 213582, + [SMALL_STATE(5957)] = 213599, + [SMALL_STATE(5958)] = 213620, + [SMALL_STATE(5959)] = 213641, + [SMALL_STATE(5960)] = 213662, + [SMALL_STATE(5961)] = 213679, + [SMALL_STATE(5962)] = 213700, + [SMALL_STATE(5963)] = 213725, + [SMALL_STATE(5964)] = 213748, + [SMALL_STATE(5965)] = 213771, + [SMALL_STATE(5966)] = 213794, + [SMALL_STATE(5967)] = 213815, + [SMALL_STATE(5968)] = 213836, + [SMALL_STATE(5969)] = 213857, + [SMALL_STATE(5970)] = 213878, + [SMALL_STATE(5971)] = 213899, + [SMALL_STATE(5972)] = 213920, + [SMALL_STATE(5973)] = 213943, + [SMALL_STATE(5974)] = 213962, + [SMALL_STATE(5975)] = 213981, + [SMALL_STATE(5976)] = 214000, + [SMALL_STATE(5977)] = 214019, + [SMALL_STATE(5978)] = 214040, + [SMALL_STATE(5979)] = 214057, + [SMALL_STATE(5980)] = 214074, + [SMALL_STATE(5981)] = 214095, + [SMALL_STATE(5982)] = 214118, + [SMALL_STATE(5983)] = 214143, + [SMALL_STATE(5984)] = 214159, + [SMALL_STATE(5985)] = 214181, + [SMALL_STATE(5986)] = 214201, + [SMALL_STATE(5987)] = 214223, + [SMALL_STATE(5988)] = 214241, + [SMALL_STATE(5989)] = 214261, + [SMALL_STATE(5990)] = 214279, + [SMALL_STATE(5991)] = 214293, + [SMALL_STATE(5992)] = 214315, + [SMALL_STATE(5993)] = 214335, + [SMALL_STATE(5994)] = 214357, + [SMALL_STATE(5995)] = 214375, + [SMALL_STATE(5996)] = 214395, + [SMALL_STATE(5997)] = 214417, + [SMALL_STATE(5998)] = 214433, + [SMALL_STATE(5999)] = 214449, + [SMALL_STATE(6000)] = 214467, + [SMALL_STATE(6001)] = 214487, + [SMALL_STATE(6002)] = 214509, + [SMALL_STATE(6003)] = 214527, + [SMALL_STATE(6004)] = 214549, + [SMALL_STATE(6005)] = 214571, + [SMALL_STATE(6006)] = 214593, + [SMALL_STATE(6007)] = 214609, + [SMALL_STATE(6008)] = 214625, + [SMALL_STATE(6009)] = 214647, + [SMALL_STATE(6010)] = 214669, + [SMALL_STATE(6011)] = 214687, + [SMALL_STATE(6012)] = 214707, + [SMALL_STATE(6013)] = 214729, + [SMALL_STATE(6014)] = 214745, + [SMALL_STATE(6015)] = 214767, + [SMALL_STATE(6016)] = 214785, + [SMALL_STATE(6017)] = 214807, + [SMALL_STATE(6018)] = 214825, + [SMALL_STATE(6019)] = 214841, + [SMALL_STATE(6020)] = 214857, + [SMALL_STATE(6021)] = 214879, + [SMALL_STATE(6022)] = 214897, + [SMALL_STATE(6023)] = 214911, + [SMALL_STATE(6024)] = 214933, + [SMALL_STATE(6025)] = 214947, + [SMALL_STATE(6026)] = 214967, + [SMALL_STATE(6027)] = 214989, + [SMALL_STATE(6028)] = 215011, + [SMALL_STATE(6029)] = 215033, + [SMALL_STATE(6030)] = 215055, + [SMALL_STATE(6031)] = 215077, + [SMALL_STATE(6032)] = 215099, + [SMALL_STATE(6033)] = 215121, + [SMALL_STATE(6034)] = 215143, + [SMALL_STATE(6035)] = 215165, + [SMALL_STATE(6036)] = 215183, + [SMALL_STATE(6037)] = 215205, + [SMALL_STATE(6038)] = 215225, + [SMALL_STATE(6039)] = 215247, + [SMALL_STATE(6040)] = 215265, + [SMALL_STATE(6041)] = 215287, + [SMALL_STATE(6042)] = 215309, + [SMALL_STATE(6043)] = 215331, + [SMALL_STATE(6044)] = 215349, + [SMALL_STATE(6045)] = 215365, + [SMALL_STATE(6046)] = 215387, + [SMALL_STATE(6047)] = 215407, + [SMALL_STATE(6048)] = 215429, + [SMALL_STATE(6049)] = 215451, + [SMALL_STATE(6050)] = 215469, + [SMALL_STATE(6051)] = 215491, + [SMALL_STATE(6052)] = 215513, + [SMALL_STATE(6053)] = 215529, + [SMALL_STATE(6054)] = 215551, + [SMALL_STATE(6055)] = 215573, + [SMALL_STATE(6056)] = 215595, + [SMALL_STATE(6057)] = 215617, + [SMALL_STATE(6058)] = 215635, + [SMALL_STATE(6059)] = 215657, + [SMALL_STATE(6060)] = 215679, + [SMALL_STATE(6061)] = 215697, + [SMALL_STATE(6062)] = 215719, + [SMALL_STATE(6063)] = 215735, + [SMALL_STATE(6064)] = 215757, + [SMALL_STATE(6065)] = 215779, + [SMALL_STATE(6066)] = 215795, + [SMALL_STATE(6067)] = 215813, + [SMALL_STATE(6068)] = 215835, + [SMALL_STATE(6069)] = 215853, + [SMALL_STATE(6070)] = 215875, + [SMALL_STATE(6071)] = 215891, + [SMALL_STATE(6072)] = 215913, + [SMALL_STATE(6073)] = 215927, + [SMALL_STATE(6074)] = 215947, + [SMALL_STATE(6075)] = 215969, + [SMALL_STATE(6076)] = 215991, + [SMALL_STATE(6077)] = 216013, + [SMALL_STATE(6078)] = 216035, + [SMALL_STATE(6079)] = 216057, + [SMALL_STATE(6080)] = 216079, + [SMALL_STATE(6081)] = 216093, + [SMALL_STATE(6082)] = 216115, + [SMALL_STATE(6083)] = 216137, + [SMALL_STATE(6084)] = 216153, + [SMALL_STATE(6085)] = 216175, + [SMALL_STATE(6086)] = 216197, + [SMALL_STATE(6087)] = 216215, + [SMALL_STATE(6088)] = 216237, + [SMALL_STATE(6089)] = 216255, + [SMALL_STATE(6090)] = 216271, + [SMALL_STATE(6091)] = 216293, + [SMALL_STATE(6092)] = 216315, + [SMALL_STATE(6093)] = 216335, + [SMALL_STATE(6094)] = 216357, + [SMALL_STATE(6095)] = 216375, + [SMALL_STATE(6096)] = 216397, + [SMALL_STATE(6097)] = 216415, + [SMALL_STATE(6098)] = 216435, + [SMALL_STATE(6099)] = 216453, + [SMALL_STATE(6100)] = 216475, + [SMALL_STATE(6101)] = 216497, + [SMALL_STATE(6102)] = 216515, + [SMALL_STATE(6103)] = 216535, + [SMALL_STATE(6104)] = 216557, + [SMALL_STATE(6105)] = 216573, + [SMALL_STATE(6106)] = 216595, + [SMALL_STATE(6107)] = 216615, + [SMALL_STATE(6108)] = 216635, + [SMALL_STATE(6109)] = 216657, + [SMALL_STATE(6110)] = 216679, + [SMALL_STATE(6111)] = 216701, + [SMALL_STATE(6112)] = 216719, + [SMALL_STATE(6113)] = 216741, + [SMALL_STATE(6114)] = 216763, + [SMALL_STATE(6115)] = 216781, + [SMALL_STATE(6116)] = 216803, + [SMALL_STATE(6117)] = 216825, + [SMALL_STATE(6118)] = 216845, + [SMALL_STATE(6119)] = 216867, + [SMALL_STATE(6120)] = 216889, + [SMALL_STATE(6121)] = 216911, + [SMALL_STATE(6122)] = 216933, + [SMALL_STATE(6123)] = 216955, + [SMALL_STATE(6124)] = 216977, + [SMALL_STATE(6125)] = 216999, + [SMALL_STATE(6126)] = 217021, + [SMALL_STATE(6127)] = 217043, + [SMALL_STATE(6128)] = 217057, + [SMALL_STATE(6129)] = 217073, + [SMALL_STATE(6130)] = 217095, + [SMALL_STATE(6131)] = 217117, + [SMALL_STATE(6132)] = 217139, + [SMALL_STATE(6133)] = 217161, + [SMALL_STATE(6134)] = 217183, + [SMALL_STATE(6135)] = 217205, + [SMALL_STATE(6136)] = 217227, + [SMALL_STATE(6137)] = 217249, + [SMALL_STATE(6138)] = 217271, + [SMALL_STATE(6139)] = 217293, + [SMALL_STATE(6140)] = 217315, + [SMALL_STATE(6141)] = 217337, + [SMALL_STATE(6142)] = 217359, + [SMALL_STATE(6143)] = 217381, + [SMALL_STATE(6144)] = 217403, + [SMALL_STATE(6145)] = 217425, + [SMALL_STATE(6146)] = 217447, + [SMALL_STATE(6147)] = 217469, + [SMALL_STATE(6148)] = 217491, + [SMALL_STATE(6149)] = 217513, + [SMALL_STATE(6150)] = 217535, + [SMALL_STATE(6151)] = 217557, + [SMALL_STATE(6152)] = 217579, + [SMALL_STATE(6153)] = 217601, + [SMALL_STATE(6154)] = 217623, + [SMALL_STATE(6155)] = 217645, + [SMALL_STATE(6156)] = 217667, + [SMALL_STATE(6157)] = 217689, + [SMALL_STATE(6158)] = 217711, + [SMALL_STATE(6159)] = 217733, + [SMALL_STATE(6160)] = 217755, + [SMALL_STATE(6161)] = 217777, + [SMALL_STATE(6162)] = 217797, + [SMALL_STATE(6163)] = 217815, + [SMALL_STATE(6164)] = 217831, + [SMALL_STATE(6165)] = 217851, + [SMALL_STATE(6166)] = 217873, + [SMALL_STATE(6167)] = 217895, + [SMALL_STATE(6168)] = 217915, + [SMALL_STATE(6169)] = 217937, + [SMALL_STATE(6170)] = 217955, + [SMALL_STATE(6171)] = 217977, + [SMALL_STATE(6172)] = 217999, + [SMALL_STATE(6173)] = 218017, + [SMALL_STATE(6174)] = 218039, + [SMALL_STATE(6175)] = 218061, + [SMALL_STATE(6176)] = 218081, + [SMALL_STATE(6177)] = 218103, + [SMALL_STATE(6178)] = 218121, + [SMALL_STATE(6179)] = 218141, + [SMALL_STATE(6180)] = 218155, + [SMALL_STATE(6181)] = 218173, + [SMALL_STATE(6182)] = 218195, + [SMALL_STATE(6183)] = 218213, + [SMALL_STATE(6184)] = 218231, + [SMALL_STATE(6185)] = 218249, + [SMALL_STATE(6186)] = 218267, + [SMALL_STATE(6187)] = 218285, + [SMALL_STATE(6188)] = 218307, + [SMALL_STATE(6189)] = 218329, + [SMALL_STATE(6190)] = 218347, + [SMALL_STATE(6191)] = 218364, + [SMALL_STATE(6192)] = 218383, + [SMALL_STATE(6193)] = 218400, + [SMALL_STATE(6194)] = 218419, + [SMALL_STATE(6195)] = 218432, + [SMALL_STATE(6196)] = 218445, + [SMALL_STATE(6197)] = 218458, + [SMALL_STATE(6198)] = 218475, + [SMALL_STATE(6199)] = 218488, + [SMALL_STATE(6200)] = 218501, + [SMALL_STATE(6201)] = 218514, + [SMALL_STATE(6202)] = 218527, + [SMALL_STATE(6203)] = 218540, + [SMALL_STATE(6204)] = 218555, + [SMALL_STATE(6205)] = 218572, + [SMALL_STATE(6206)] = 218589, + [SMALL_STATE(6207)] = 218606, + [SMALL_STATE(6208)] = 218625, + [SMALL_STATE(6209)] = 218644, + [SMALL_STATE(6210)] = 218663, + [SMALL_STATE(6211)] = 218682, + [SMALL_STATE(6212)] = 218701, + [SMALL_STATE(6213)] = 218716, + [SMALL_STATE(6214)] = 218731, + [SMALL_STATE(6215)] = 218746, + [SMALL_STATE(6216)] = 218765, + [SMALL_STATE(6217)] = 218778, + [SMALL_STATE(6218)] = 218797, + [SMALL_STATE(6219)] = 218810, + [SMALL_STATE(6220)] = 218823, + [SMALL_STATE(6221)] = 218836, + [SMALL_STATE(6222)] = 218849, + [SMALL_STATE(6223)] = 218864, + [SMALL_STATE(6224)] = 218879, + [SMALL_STATE(6225)] = 218898, + [SMALL_STATE(6226)] = 218917, + [SMALL_STATE(6227)] = 218936, + [SMALL_STATE(6228)] = 218949, + [SMALL_STATE(6229)] = 218968, + [SMALL_STATE(6230)] = 218987, + [SMALL_STATE(6231)] = 219002, + [SMALL_STATE(6232)] = 219017, + [SMALL_STATE(6233)] = 219034, + [SMALL_STATE(6234)] = 219053, + [SMALL_STATE(6235)] = 219072, + [SMALL_STATE(6236)] = 219091, + [SMALL_STATE(6237)] = 219110, + [SMALL_STATE(6238)] = 219127, + [SMALL_STATE(6239)] = 219146, + [SMALL_STATE(6240)] = 219159, + [SMALL_STATE(6241)] = 219172, + [SMALL_STATE(6242)] = 219185, + [SMALL_STATE(6243)] = 219198, + [SMALL_STATE(6244)] = 219213, + [SMALL_STATE(6245)] = 219232, + [SMALL_STATE(6246)] = 219251, + [SMALL_STATE(6247)] = 219270, + [SMALL_STATE(6248)] = 219289, + [SMALL_STATE(6249)] = 219308, + [SMALL_STATE(6250)] = 219321, + [SMALL_STATE(6251)] = 219340, + [SMALL_STATE(6252)] = 219353, + [SMALL_STATE(6253)] = 219366, + [SMALL_STATE(6254)] = 219381, + [SMALL_STATE(6255)] = 219400, + [SMALL_STATE(6256)] = 219417, + [SMALL_STATE(6257)] = 219432, + [SMALL_STATE(6258)] = 219447, + [SMALL_STATE(6259)] = 219466, + [SMALL_STATE(6260)] = 219481, + [SMALL_STATE(6261)] = 219494, + [SMALL_STATE(6262)] = 219507, + [SMALL_STATE(6263)] = 219520, + [SMALL_STATE(6264)] = 219533, + [SMALL_STATE(6265)] = 219548, + [SMALL_STATE(6266)] = 219561, + [SMALL_STATE(6267)] = 219574, + [SMALL_STATE(6268)] = 219593, + [SMALL_STATE(6269)] = 219610, + [SMALL_STATE(6270)] = 219623, + [SMALL_STATE(6271)] = 219636, + [SMALL_STATE(6272)] = 219655, + [SMALL_STATE(6273)] = 219672, + [SMALL_STATE(6274)] = 219685, + [SMALL_STATE(6275)] = 219698, + [SMALL_STATE(6276)] = 219711, + [SMALL_STATE(6277)] = 219726, + [SMALL_STATE(6278)] = 219743, + [SMALL_STATE(6279)] = 219760, + [SMALL_STATE(6280)] = 219775, + [SMALL_STATE(6281)] = 219788, + [SMALL_STATE(6282)] = 219807, + [SMALL_STATE(6283)] = 219820, + [SMALL_STATE(6284)] = 219839, + [SMALL_STATE(6285)] = 219858, + [SMALL_STATE(6286)] = 219877, + [SMALL_STATE(6287)] = 219896, + [SMALL_STATE(6288)] = 219915, + [SMALL_STATE(6289)] = 219934, + [SMALL_STATE(6290)] = 219953, + [SMALL_STATE(6291)] = 219966, + [SMALL_STATE(6292)] = 219979, + [SMALL_STATE(6293)] = 219994, + [SMALL_STATE(6294)] = 220009, + [SMALL_STATE(6295)] = 220024, + [SMALL_STATE(6296)] = 220041, + [SMALL_STATE(6297)] = 220054, + [SMALL_STATE(6298)] = 220067, + [SMALL_STATE(6299)] = 220082, + [SMALL_STATE(6300)] = 220095, + [SMALL_STATE(6301)] = 220108, + [SMALL_STATE(6302)] = 220121, + [SMALL_STATE(6303)] = 220134, + [SMALL_STATE(6304)] = 220147, + [SMALL_STATE(6305)] = 220164, + [SMALL_STATE(6306)] = 220183, + [SMALL_STATE(6307)] = 220198, + [SMALL_STATE(6308)] = 220217, + [SMALL_STATE(6309)] = 220230, + [SMALL_STATE(6310)] = 220247, + [SMALL_STATE(6311)] = 220266, + [SMALL_STATE(6312)] = 220285, + [SMALL_STATE(6313)] = 220304, + [SMALL_STATE(6314)] = 220317, + [SMALL_STATE(6315)] = 220336, + [SMALL_STATE(6316)] = 220351, + [SMALL_STATE(6317)] = 220370, + [SMALL_STATE(6318)] = 220389, + [SMALL_STATE(6319)] = 220408, + [SMALL_STATE(6320)] = 220427, + [SMALL_STATE(6321)] = 220446, + [SMALL_STATE(6322)] = 220465, + [SMALL_STATE(6323)] = 220484, + [SMALL_STATE(6324)] = 220503, + [SMALL_STATE(6325)] = 220516, + [SMALL_STATE(6326)] = 220533, + [SMALL_STATE(6327)] = 220546, + [SMALL_STATE(6328)] = 220559, + [SMALL_STATE(6329)] = 220576, + [SMALL_STATE(6330)] = 220591, + [SMALL_STATE(6331)] = 220604, + [SMALL_STATE(6332)] = 220623, + [SMALL_STATE(6333)] = 220642, + [SMALL_STATE(6334)] = 220661, + [SMALL_STATE(6335)] = 220680, + [SMALL_STATE(6336)] = 220699, + [SMALL_STATE(6337)] = 220718, + [SMALL_STATE(6338)] = 220737, + [SMALL_STATE(6339)] = 220756, + [SMALL_STATE(6340)] = 220775, + [SMALL_STATE(6341)] = 220788, + [SMALL_STATE(6342)] = 220805, + [SMALL_STATE(6343)] = 220824, + [SMALL_STATE(6344)] = 220841, + [SMALL_STATE(6345)] = 220860, + [SMALL_STATE(6346)] = 220879, + [SMALL_STATE(6347)] = 220898, + [SMALL_STATE(6348)] = 220917, + [SMALL_STATE(6349)] = 220936, + [SMALL_STATE(6350)] = 220955, + [SMALL_STATE(6351)] = 220974, + [SMALL_STATE(6352)] = 220993, + [SMALL_STATE(6353)] = 221006, + [SMALL_STATE(6354)] = 221019, + [SMALL_STATE(6355)] = 221036, + [SMALL_STATE(6356)] = 221053, + [SMALL_STATE(6357)] = 221072, + [SMALL_STATE(6358)] = 221091, + [SMALL_STATE(6359)] = 221110, + [SMALL_STATE(6360)] = 221129, + [SMALL_STATE(6361)] = 221148, + [SMALL_STATE(6362)] = 221167, + [SMALL_STATE(6363)] = 221186, + [SMALL_STATE(6364)] = 221205, + [SMALL_STATE(6365)] = 221224, + [SMALL_STATE(6366)] = 221243, + [SMALL_STATE(6367)] = 221256, + [SMALL_STATE(6368)] = 221269, + [SMALL_STATE(6369)] = 221284, + [SMALL_STATE(6370)] = 221301, + [SMALL_STATE(6371)] = 221318, + [SMALL_STATE(6372)] = 221331, + [SMALL_STATE(6373)] = 221350, + [SMALL_STATE(6374)] = 221365, + [SMALL_STATE(6375)] = 221384, + [SMALL_STATE(6376)] = 221403, + [SMALL_STATE(6377)] = 221422, + [SMALL_STATE(6378)] = 221441, + [SMALL_STATE(6379)] = 221460, + [SMALL_STATE(6380)] = 221479, + [SMALL_STATE(6381)] = 221498, + [SMALL_STATE(6382)] = 221517, + [SMALL_STATE(6383)] = 221534, + [SMALL_STATE(6384)] = 221547, + [SMALL_STATE(6385)] = 221564, + [SMALL_STATE(6386)] = 221581, + [SMALL_STATE(6387)] = 221596, + [SMALL_STATE(6388)] = 221615, + [SMALL_STATE(6389)] = 221634, + [SMALL_STATE(6390)] = 221653, + [SMALL_STATE(6391)] = 221672, + [SMALL_STATE(6392)] = 221691, + [SMALL_STATE(6393)] = 221710, + [SMALL_STATE(6394)] = 221729, + [SMALL_STATE(6395)] = 221748, + [SMALL_STATE(6396)] = 221761, + [SMALL_STATE(6397)] = 221778, + [SMALL_STATE(6398)] = 221791, + [SMALL_STATE(6399)] = 221804, + [SMALL_STATE(6400)] = 221823, + [SMALL_STATE(6401)] = 221836, + [SMALL_STATE(6402)] = 221853, + [SMALL_STATE(6403)] = 221866, + [SMALL_STATE(6404)] = 221881, + [SMALL_STATE(6405)] = 221900, + [SMALL_STATE(6406)] = 221915, + [SMALL_STATE(6407)] = 221934, + [SMALL_STATE(6408)] = 221953, + [SMALL_STATE(6409)] = 221972, + [SMALL_STATE(6410)] = 221991, + [SMALL_STATE(6411)] = 222010, + [SMALL_STATE(6412)] = 222029, + [SMALL_STATE(6413)] = 222048, + [SMALL_STATE(6414)] = 222067, + [SMALL_STATE(6415)] = 222084, + [SMALL_STATE(6416)] = 222097, + [SMALL_STATE(6417)] = 222110, + [SMALL_STATE(6418)] = 222123, + [SMALL_STATE(6419)] = 222140, + [SMALL_STATE(6420)] = 222153, + [SMALL_STATE(6421)] = 222166, + [SMALL_STATE(6422)] = 222185, + [SMALL_STATE(6423)] = 222202, + [SMALL_STATE(6424)] = 222215, + [SMALL_STATE(6425)] = 222228, + [SMALL_STATE(6426)] = 222247, + [SMALL_STATE(6427)] = 222260, + [SMALL_STATE(6428)] = 222273, + [SMALL_STATE(6429)] = 222292, + [SMALL_STATE(6430)] = 222311, + [SMALL_STATE(6431)] = 222330, + [SMALL_STATE(6432)] = 222349, + [SMALL_STATE(6433)] = 222368, + [SMALL_STATE(6434)] = 222387, + [SMALL_STATE(6435)] = 222406, + [SMALL_STATE(6436)] = 222425, + [SMALL_STATE(6437)] = 222438, + [SMALL_STATE(6438)] = 222457, + [SMALL_STATE(6439)] = 222474, + [SMALL_STATE(6440)] = 222487, + [SMALL_STATE(6441)] = 222500, + [SMALL_STATE(6442)] = 222517, + [SMALL_STATE(6443)] = 222530, + [SMALL_STATE(6444)] = 222543, + [SMALL_STATE(6445)] = 222562, + [SMALL_STATE(6446)] = 222581, + [SMALL_STATE(6447)] = 222600, + [SMALL_STATE(6448)] = 222619, + [SMALL_STATE(6449)] = 222638, + [SMALL_STATE(6450)] = 222657, + [SMALL_STATE(6451)] = 222676, + [SMALL_STATE(6452)] = 222695, + [SMALL_STATE(6453)] = 222708, + [SMALL_STATE(6454)] = 222721, + [SMALL_STATE(6455)] = 222738, + [SMALL_STATE(6456)] = 222751, + [SMALL_STATE(6457)] = 222764, + [SMALL_STATE(6458)] = 222781, + [SMALL_STATE(6459)] = 222800, + [SMALL_STATE(6460)] = 222819, + [SMALL_STATE(6461)] = 222838, + [SMALL_STATE(6462)] = 222857, + [SMALL_STATE(6463)] = 222876, + [SMALL_STATE(6464)] = 222895, + [SMALL_STATE(6465)] = 222914, + [SMALL_STATE(6466)] = 222933, + [SMALL_STATE(6467)] = 222946, + [SMALL_STATE(6468)] = 222959, + [SMALL_STATE(6469)] = 222976, + [SMALL_STATE(6470)] = 222995, + [SMALL_STATE(6471)] = 223014, + [SMALL_STATE(6472)] = 223031, + [SMALL_STATE(6473)] = 223044, + [SMALL_STATE(6474)] = 223063, + [SMALL_STATE(6475)] = 223082, + [SMALL_STATE(6476)] = 223101, + [SMALL_STATE(6477)] = 223120, + [SMALL_STATE(6478)] = 223139, + [SMALL_STATE(6479)] = 223158, + [SMALL_STATE(6480)] = 223177, + [SMALL_STATE(6481)] = 223196, + [SMALL_STATE(6482)] = 223209, + [SMALL_STATE(6483)] = 223226, + [SMALL_STATE(6484)] = 223245, + [SMALL_STATE(6485)] = 223262, + [SMALL_STATE(6486)] = 223279, + [SMALL_STATE(6487)] = 223292, + [SMALL_STATE(6488)] = 223305, + [SMALL_STATE(6489)] = 223324, + [SMALL_STATE(6490)] = 223343, + [SMALL_STATE(6491)] = 223362, + [SMALL_STATE(6492)] = 223381, + [SMALL_STATE(6493)] = 223400, + [SMALL_STATE(6494)] = 223419, + [SMALL_STATE(6495)] = 223438, + [SMALL_STATE(6496)] = 223457, + [SMALL_STATE(6497)] = 223472, + [SMALL_STATE(6498)] = 223485, + [SMALL_STATE(6499)] = 223502, + [SMALL_STATE(6500)] = 223519, + [SMALL_STATE(6501)] = 223532, + [SMALL_STATE(6502)] = 223551, + [SMALL_STATE(6503)] = 223570, + [SMALL_STATE(6504)] = 223589, + [SMALL_STATE(6505)] = 223608, + [SMALL_STATE(6506)] = 223627, + [SMALL_STATE(6507)] = 223640, + [SMALL_STATE(6508)] = 223659, + [SMALL_STATE(6509)] = 223678, + [SMALL_STATE(6510)] = 223693, + [SMALL_STATE(6511)] = 223708, + [SMALL_STATE(6512)] = 223721, + [SMALL_STATE(6513)] = 223738, + [SMALL_STATE(6514)] = 223755, + [SMALL_STATE(6515)] = 223774, + [SMALL_STATE(6516)] = 223793, + [SMALL_STATE(6517)] = 223812, + [SMALL_STATE(6518)] = 223831, + [SMALL_STATE(6519)] = 223850, + [SMALL_STATE(6520)] = 223869, + [SMALL_STATE(6521)] = 223888, + [SMALL_STATE(6522)] = 223907, + [SMALL_STATE(6523)] = 223920, + [SMALL_STATE(6524)] = 223937, + [SMALL_STATE(6525)] = 223954, + [SMALL_STATE(6526)] = 223973, + [SMALL_STATE(6527)] = 223992, + [SMALL_STATE(6528)] = 224011, + [SMALL_STATE(6529)] = 224030, + [SMALL_STATE(6530)] = 224049, + [SMALL_STATE(6531)] = 224068, + [SMALL_STATE(6532)] = 224087, + [SMALL_STATE(6533)] = 224106, + [SMALL_STATE(6534)] = 224119, + [SMALL_STATE(6535)] = 224136, + [SMALL_STATE(6536)] = 224153, + [SMALL_STATE(6537)] = 224172, + [SMALL_STATE(6538)] = 224191, + [SMALL_STATE(6539)] = 224210, + [SMALL_STATE(6540)] = 224229, + [SMALL_STATE(6541)] = 224248, + [SMALL_STATE(6542)] = 224267, + [SMALL_STATE(6543)] = 224286, + [SMALL_STATE(6544)] = 224305, + [SMALL_STATE(6545)] = 224318, + [SMALL_STATE(6546)] = 224331, + [SMALL_STATE(6547)] = 224348, + [SMALL_STATE(6548)] = 224365, + [SMALL_STATE(6549)] = 224382, + [SMALL_STATE(6550)] = 224401, + [SMALL_STATE(6551)] = 224420, + [SMALL_STATE(6552)] = 224439, + [SMALL_STATE(6553)] = 224458, + [SMALL_STATE(6554)] = 224477, + [SMALL_STATE(6555)] = 224496, + [SMALL_STATE(6556)] = 224515, + [SMALL_STATE(6557)] = 224534, + [SMALL_STATE(6558)] = 224547, + [SMALL_STATE(6559)] = 224564, + [SMALL_STATE(6560)] = 224581, + [SMALL_STATE(6561)] = 224598, + [SMALL_STATE(6562)] = 224611, + [SMALL_STATE(6563)] = 224628, + [SMALL_STATE(6564)] = 224645, + [SMALL_STATE(6565)] = 224658, + [SMALL_STATE(6566)] = 224675, + [SMALL_STATE(6567)] = 224692, + [SMALL_STATE(6568)] = 224705, + [SMALL_STATE(6569)] = 224718, + [SMALL_STATE(6570)] = 224735, + [SMALL_STATE(6571)] = 224752, + [SMALL_STATE(6572)] = 224765, + [SMALL_STATE(6573)] = 224778, + [SMALL_STATE(6574)] = 224795, + [SMALL_STATE(6575)] = 224812, + [SMALL_STATE(6576)] = 224825, + [SMALL_STATE(6577)] = 224842, + [SMALL_STATE(6578)] = 224859, + [SMALL_STATE(6579)] = 224872, + [SMALL_STATE(6580)] = 224889, + [SMALL_STATE(6581)] = 224906, + [SMALL_STATE(6582)] = 224919, + [SMALL_STATE(6583)] = 224932, + [SMALL_STATE(6584)] = 224949, + [SMALL_STATE(6585)] = 224966, + [SMALL_STATE(6586)] = 224979, + [SMALL_STATE(6587)] = 224996, + [SMALL_STATE(6588)] = 225013, + [SMALL_STATE(6589)] = 225026, + [SMALL_STATE(6590)] = 225043, + [SMALL_STATE(6591)] = 225060, + [SMALL_STATE(6592)] = 225073, + [SMALL_STATE(6593)] = 225090, + [SMALL_STATE(6594)] = 225107, + [SMALL_STATE(6595)] = 225120, + [SMALL_STATE(6596)] = 225137, + [SMALL_STATE(6597)] = 225154, + [SMALL_STATE(6598)] = 225167, + [SMALL_STATE(6599)] = 225184, + [SMALL_STATE(6600)] = 225201, + [SMALL_STATE(6601)] = 225214, + [SMALL_STATE(6602)] = 225231, + [SMALL_STATE(6603)] = 225248, + [SMALL_STATE(6604)] = 225267, + [SMALL_STATE(6605)] = 225280, + [SMALL_STATE(6606)] = 225297, + [SMALL_STATE(6607)] = 225314, + [SMALL_STATE(6608)] = 225327, + [SMALL_STATE(6609)] = 225344, + [SMALL_STATE(6610)] = 225361, + [SMALL_STATE(6611)] = 225380, + [SMALL_STATE(6612)] = 225393, + [SMALL_STATE(6613)] = 225410, + [SMALL_STATE(6614)] = 225427, + [SMALL_STATE(6615)] = 225446, + [SMALL_STATE(6616)] = 225459, + [SMALL_STATE(6617)] = 225476, + [SMALL_STATE(6618)] = 225493, + [SMALL_STATE(6619)] = 225506, + [SMALL_STATE(6620)] = 225523, + [SMALL_STATE(6621)] = 225540, + [SMALL_STATE(6622)] = 225553, + [SMALL_STATE(6623)] = 225570, + [SMALL_STATE(6624)] = 225587, + [SMALL_STATE(6625)] = 225600, + [SMALL_STATE(6626)] = 225617, + [SMALL_STATE(6627)] = 225634, + [SMALL_STATE(6628)] = 225647, + [SMALL_STATE(6629)] = 225664, + [SMALL_STATE(6630)] = 225681, + [SMALL_STATE(6631)] = 225694, + [SMALL_STATE(6632)] = 225711, + [SMALL_STATE(6633)] = 225728, + [SMALL_STATE(6634)] = 225741, + [SMALL_STATE(6635)] = 225758, + [SMALL_STATE(6636)] = 225775, + [SMALL_STATE(6637)] = 225788, + [SMALL_STATE(6638)] = 225805, + [SMALL_STATE(6639)] = 225822, + [SMALL_STATE(6640)] = 225835, + [SMALL_STATE(6641)] = 225852, + [SMALL_STATE(6642)] = 225869, + [SMALL_STATE(6643)] = 225886, + [SMALL_STATE(6644)] = 225903, + [SMALL_STATE(6645)] = 225920, + [SMALL_STATE(6646)] = 225937, + [SMALL_STATE(6647)] = 225954, + [SMALL_STATE(6648)] = 225971, + [SMALL_STATE(6649)] = 225988, + [SMALL_STATE(6650)] = 226005, + [SMALL_STATE(6651)] = 226022, + [SMALL_STATE(6652)] = 226039, + [SMALL_STATE(6653)] = 226052, + [SMALL_STATE(6654)] = 226069, + [SMALL_STATE(6655)] = 226088, + [SMALL_STATE(6656)] = 226105, + [SMALL_STATE(6657)] = 226124, + [SMALL_STATE(6658)] = 226143, + [SMALL_STATE(6659)] = 226156, + [SMALL_STATE(6660)] = 226175, + [SMALL_STATE(6661)] = 226194, + [SMALL_STATE(6662)] = 226213, + [SMALL_STATE(6663)] = 226232, + [SMALL_STATE(6664)] = 226251, + [SMALL_STATE(6665)] = 226266, + [SMALL_STATE(6666)] = 226285, + [SMALL_STATE(6667)] = 226298, + [SMALL_STATE(6668)] = 226317, + [SMALL_STATE(6669)] = 226330, + [SMALL_STATE(6670)] = 226345, + [SMALL_STATE(6671)] = 226358, + [SMALL_STATE(6672)] = 226377, + [SMALL_STATE(6673)] = 226396, + [SMALL_STATE(6674)] = 226413, + [SMALL_STATE(6675)] = 226432, + [SMALL_STATE(6676)] = 226449, + [SMALL_STATE(6677)] = 226462, + [SMALL_STATE(6678)] = 226477, + [SMALL_STATE(6679)] = 226490, + [SMALL_STATE(6680)] = 226505, + [SMALL_STATE(6681)] = 226524, + [SMALL_STATE(6682)] = 226543, + [SMALL_STATE(6683)] = 226562, + [SMALL_STATE(6684)] = 226575, + [SMALL_STATE(6685)] = 226594, + [SMALL_STATE(6686)] = 226607, + [SMALL_STATE(6687)] = 226626, + [SMALL_STATE(6688)] = 226639, + [SMALL_STATE(6689)] = 226652, + [SMALL_STATE(6690)] = 226671, + [SMALL_STATE(6691)] = 226688, + [SMALL_STATE(6692)] = 226701, + [SMALL_STATE(6693)] = 226718, + [SMALL_STATE(6694)] = 226737, + [SMALL_STATE(6695)] = 226756, + [SMALL_STATE(6696)] = 226775, + [SMALL_STATE(6697)] = 226794, + [SMALL_STATE(6698)] = 226813, + [SMALL_STATE(6699)] = 226832, + [SMALL_STATE(6700)] = 226851, + [SMALL_STATE(6701)] = 226870, + [SMALL_STATE(6702)] = 226889, + [SMALL_STATE(6703)] = 226902, + [SMALL_STATE(6704)] = 226917, + [SMALL_STATE(6705)] = 226934, + [SMALL_STATE(6706)] = 226953, + [SMALL_STATE(6707)] = 226972, + [SMALL_STATE(6708)] = 226987, + [SMALL_STATE(6709)] = 227004, + [SMALL_STATE(6710)] = 227021, + [SMALL_STATE(6711)] = 227038, + [SMALL_STATE(6712)] = 227057, + [SMALL_STATE(6713)] = 227076, + [SMALL_STATE(6714)] = 227093, + [SMALL_STATE(6715)] = 227112, + [SMALL_STATE(6716)] = 227131, + [SMALL_STATE(6717)] = 227150, + [SMALL_STATE(6718)] = 227163, + [SMALL_STATE(6719)] = 227176, + [SMALL_STATE(6720)] = 227195, + [SMALL_STATE(6721)] = 227214, + [SMALL_STATE(6722)] = 227227, + [SMALL_STATE(6723)] = 227242, + [SMALL_STATE(6724)] = 227261, + [SMALL_STATE(6725)] = 227280, + [SMALL_STATE(6726)] = 227295, + [SMALL_STATE(6727)] = 227312, + [SMALL_STATE(6728)] = 227327, + [SMALL_STATE(6729)] = 227342, + [SMALL_STATE(6730)] = 227359, + [SMALL_STATE(6731)] = 227376, + [SMALL_STATE(6732)] = 227395, + [SMALL_STATE(6733)] = 227410, + [SMALL_STATE(6734)] = 227429, + [SMALL_STATE(6735)] = 227442, + [SMALL_STATE(6736)] = 227455, + [SMALL_STATE(6737)] = 227468, + [SMALL_STATE(6738)] = 227487, + [SMALL_STATE(6739)] = 227504, + [SMALL_STATE(6740)] = 227521, + [SMALL_STATE(6741)] = 227534, + [SMALL_STATE(6742)] = 227551, + [SMALL_STATE(6743)] = 227568, + [SMALL_STATE(6744)] = 227581, + [SMALL_STATE(6745)] = 227594, + [SMALL_STATE(6746)] = 227607, + [SMALL_STATE(6747)] = 227620, + [SMALL_STATE(6748)] = 227639, + [SMALL_STATE(6749)] = 227652, + [SMALL_STATE(6750)] = 227665, + [SMALL_STATE(6751)] = 227684, + [SMALL_STATE(6752)] = 227703, + [SMALL_STATE(6753)] = 227719, + [SMALL_STATE(6754)] = 227735, + [SMALL_STATE(6755)] = 227751, + [SMALL_STATE(6756)] = 227767, + [SMALL_STATE(6757)] = 227781, + [SMALL_STATE(6758)] = 227797, + [SMALL_STATE(6759)] = 227813, + [SMALL_STATE(6760)] = 227829, + [SMALL_STATE(6761)] = 227845, + [SMALL_STATE(6762)] = 227861, + [SMALL_STATE(6763)] = 227877, + [SMALL_STATE(6764)] = 227893, + [SMALL_STATE(6765)] = 227909, + [SMALL_STATE(6766)] = 227925, + [SMALL_STATE(6767)] = 227941, + [SMALL_STATE(6768)] = 227955, + [SMALL_STATE(6769)] = 227971, + [SMALL_STATE(6770)] = 227987, + [SMALL_STATE(6771)] = 227999, + [SMALL_STATE(6772)] = 228015, + [SMALL_STATE(6773)] = 228031, + [SMALL_STATE(6774)] = 228045, + [SMALL_STATE(6775)] = 228057, + [SMALL_STATE(6776)] = 228071, + [SMALL_STATE(6777)] = 228085, + [SMALL_STATE(6778)] = 228101, + [SMALL_STATE(6779)] = 228117, + [SMALL_STATE(6780)] = 228133, + [SMALL_STATE(6781)] = 228145, + [SMALL_STATE(6782)] = 228161, + [SMALL_STATE(6783)] = 228177, + [SMALL_STATE(6784)] = 228193, + [SMALL_STATE(6785)] = 228209, + [SMALL_STATE(6786)] = 228225, + [SMALL_STATE(6787)] = 228241, + [SMALL_STATE(6788)] = 228257, + [SMALL_STATE(6789)] = 228273, + [SMALL_STATE(6790)] = 228289, + [SMALL_STATE(6791)] = 228305, + [SMALL_STATE(6792)] = 228317, + [SMALL_STATE(6793)] = 228333, + [SMALL_STATE(6794)] = 228349, + [SMALL_STATE(6795)] = 228361, + [SMALL_STATE(6796)] = 228373, + [SMALL_STATE(6797)] = 228389, + [SMALL_STATE(6798)] = 228401, + [SMALL_STATE(6799)] = 228417, + [SMALL_STATE(6800)] = 228433, + [SMALL_STATE(6801)] = 228447, + [SMALL_STATE(6802)] = 228463, + [SMALL_STATE(6803)] = 228477, + [SMALL_STATE(6804)] = 228491, + [SMALL_STATE(6805)] = 228503, + [SMALL_STATE(6806)] = 228519, + [SMALL_STATE(6807)] = 228535, + [SMALL_STATE(6808)] = 228551, + [SMALL_STATE(6809)] = 228567, + [SMALL_STATE(6810)] = 228583, + [SMALL_STATE(6811)] = 228595, + [SMALL_STATE(6812)] = 228611, + [SMALL_STATE(6813)] = 228627, + [SMALL_STATE(6814)] = 228643, + [SMALL_STATE(6815)] = 228659, + [SMALL_STATE(6816)] = 228675, + [SMALL_STATE(6817)] = 228691, + [SMALL_STATE(6818)] = 228707, + [SMALL_STATE(6819)] = 228723, + [SMALL_STATE(6820)] = 228739, + [SMALL_STATE(6821)] = 228755, + [SMALL_STATE(6822)] = 228771, + [SMALL_STATE(6823)] = 228787, + [SMALL_STATE(6824)] = 228799, + [SMALL_STATE(6825)] = 228811, + [SMALL_STATE(6826)] = 228827, + [SMALL_STATE(6827)] = 228839, + [SMALL_STATE(6828)] = 228853, + [SMALL_STATE(6829)] = 228869, + [SMALL_STATE(6830)] = 228883, + [SMALL_STATE(6831)] = 228897, + [SMALL_STATE(6832)] = 228913, + [SMALL_STATE(6833)] = 228927, + [SMALL_STATE(6834)] = 228939, + [SMALL_STATE(6835)] = 228955, + [SMALL_STATE(6836)] = 228971, + [SMALL_STATE(6837)] = 228983, + [SMALL_STATE(6838)] = 228999, + [SMALL_STATE(6839)] = 229011, + [SMALL_STATE(6840)] = 229027, + [SMALL_STATE(6841)] = 229043, + [SMALL_STATE(6842)] = 229059, + [SMALL_STATE(6843)] = 229073, + [SMALL_STATE(6844)] = 229089, + [SMALL_STATE(6845)] = 229101, + [SMALL_STATE(6846)] = 229117, + [SMALL_STATE(6847)] = 229133, + [SMALL_STATE(6848)] = 229145, + [SMALL_STATE(6849)] = 229161, + [SMALL_STATE(6850)] = 229177, + [SMALL_STATE(6851)] = 229193, + [SMALL_STATE(6852)] = 229207, + [SMALL_STATE(6853)] = 229219, + [SMALL_STATE(6854)] = 229235, + [SMALL_STATE(6855)] = 229251, + [SMALL_STATE(6856)] = 229267, + [SMALL_STATE(6857)] = 229283, + [SMALL_STATE(6858)] = 229299, + [SMALL_STATE(6859)] = 229315, + [SMALL_STATE(6860)] = 229331, + [SMALL_STATE(6861)] = 229345, + [SMALL_STATE(6862)] = 229359, + [SMALL_STATE(6863)] = 229375, + [SMALL_STATE(6864)] = 229389, + [SMALL_STATE(6865)] = 229405, + [SMALL_STATE(6866)] = 229421, + [SMALL_STATE(6867)] = 229437, + [SMALL_STATE(6868)] = 229453, + [SMALL_STATE(6869)] = 229469, + [SMALL_STATE(6870)] = 229481, + [SMALL_STATE(6871)] = 229495, + [SMALL_STATE(6872)] = 229511, + [SMALL_STATE(6873)] = 229527, + [SMALL_STATE(6874)] = 229539, + [SMALL_STATE(6875)] = 229551, + [SMALL_STATE(6876)] = 229567, + [SMALL_STATE(6877)] = 229579, + [SMALL_STATE(6878)] = 229591, + [SMALL_STATE(6879)] = 229605, + [SMALL_STATE(6880)] = 229619, + [SMALL_STATE(6881)] = 229631, + [SMALL_STATE(6882)] = 229645, + [SMALL_STATE(6883)] = 229659, + [SMALL_STATE(6884)] = 229675, + [SMALL_STATE(6885)] = 229691, + [SMALL_STATE(6886)] = 229705, + [SMALL_STATE(6887)] = 229721, + [SMALL_STATE(6888)] = 229737, + [SMALL_STATE(6889)] = 229751, + [SMALL_STATE(6890)] = 229763, + [SMALL_STATE(6891)] = 229779, + [SMALL_STATE(6892)] = 229791, + [SMALL_STATE(6893)] = 229803, + [SMALL_STATE(6894)] = 229819, + [SMALL_STATE(6895)] = 229835, + [SMALL_STATE(6896)] = 229851, + [SMALL_STATE(6897)] = 229867, + [SMALL_STATE(6898)] = 229883, + [SMALL_STATE(6899)] = 229899, + [SMALL_STATE(6900)] = 229913, + [SMALL_STATE(6901)] = 229929, + [SMALL_STATE(6902)] = 229945, + [SMALL_STATE(6903)] = 229957, + [SMALL_STATE(6904)] = 229971, + [SMALL_STATE(6905)] = 229983, + [SMALL_STATE(6906)] = 229995, + [SMALL_STATE(6907)] = 230011, + [SMALL_STATE(6908)] = 230027, + [SMALL_STATE(6909)] = 230039, + [SMALL_STATE(6910)] = 230055, + [SMALL_STATE(6911)] = 230069, + [SMALL_STATE(6912)] = 230085, + [SMALL_STATE(6913)] = 230097, + [SMALL_STATE(6914)] = 230109, + [SMALL_STATE(6915)] = 230125, + [SMALL_STATE(6916)] = 230141, + [SMALL_STATE(6917)] = 230157, + [SMALL_STATE(6918)] = 230173, + [SMALL_STATE(6919)] = 230187, + [SMALL_STATE(6920)] = 230203, + [SMALL_STATE(6921)] = 230219, + [SMALL_STATE(6922)] = 230233, + [SMALL_STATE(6923)] = 230247, + [SMALL_STATE(6924)] = 230263, + [SMALL_STATE(6925)] = 230279, + [SMALL_STATE(6926)] = 230291, + [SMALL_STATE(6927)] = 230303, + [SMALL_STATE(6928)] = 230319, + [SMALL_STATE(6929)] = 230335, + [SMALL_STATE(6930)] = 230347, + [SMALL_STATE(6931)] = 230361, + [SMALL_STATE(6932)] = 230377, + [SMALL_STATE(6933)] = 230393, + [SMALL_STATE(6934)] = 230409, + [SMALL_STATE(6935)] = 230425, + [SMALL_STATE(6936)] = 230439, + [SMALL_STATE(6937)] = 230455, + [SMALL_STATE(6938)] = 230471, + [SMALL_STATE(6939)] = 230487, + [SMALL_STATE(6940)] = 230499, + [SMALL_STATE(6941)] = 230515, + [SMALL_STATE(6942)] = 230531, + [SMALL_STATE(6943)] = 230547, + [SMALL_STATE(6944)] = 230563, + [SMALL_STATE(6945)] = 230579, + [SMALL_STATE(6946)] = 230591, + [SMALL_STATE(6947)] = 230605, + [SMALL_STATE(6948)] = 230619, + [SMALL_STATE(6949)] = 230633, + [SMALL_STATE(6950)] = 230647, + [SMALL_STATE(6951)] = 230663, + [SMALL_STATE(6952)] = 230677, + [SMALL_STATE(6953)] = 230693, + [SMALL_STATE(6954)] = 230709, + [SMALL_STATE(6955)] = 230723, + [SMALL_STATE(6956)] = 230739, + [SMALL_STATE(6957)] = 230755, + [SMALL_STATE(6958)] = 230771, + [SMALL_STATE(6959)] = 230785, + [SMALL_STATE(6960)] = 230801, + [SMALL_STATE(6961)] = 230813, + [SMALL_STATE(6962)] = 230827, + [SMALL_STATE(6963)] = 230843, + [SMALL_STATE(6964)] = 230859, + [SMALL_STATE(6965)] = 230873, + [SMALL_STATE(6966)] = 230887, + [SMALL_STATE(6967)] = 230903, + [SMALL_STATE(6968)] = 230915, + [SMALL_STATE(6969)] = 230931, + [SMALL_STATE(6970)] = 230945, + [SMALL_STATE(6971)] = 230961, + [SMALL_STATE(6972)] = 230973, + [SMALL_STATE(6973)] = 230989, + [SMALL_STATE(6974)] = 231005, + [SMALL_STATE(6975)] = 231021, + [SMALL_STATE(6976)] = 231037, + [SMALL_STATE(6977)] = 231053, + [SMALL_STATE(6978)] = 231069, + [SMALL_STATE(6979)] = 231085, + [SMALL_STATE(6980)] = 231101, + [SMALL_STATE(6981)] = 231117, + [SMALL_STATE(6982)] = 231131, + [SMALL_STATE(6983)] = 231147, + [SMALL_STATE(6984)] = 231159, + [SMALL_STATE(6985)] = 231175, + [SMALL_STATE(6986)] = 231191, + [SMALL_STATE(6987)] = 231205, + [SMALL_STATE(6988)] = 231221, + [SMALL_STATE(6989)] = 231233, + [SMALL_STATE(6990)] = 231245, + [SMALL_STATE(6991)] = 231259, + [SMALL_STATE(6992)] = 231273, + [SMALL_STATE(6993)] = 231285, + [SMALL_STATE(6994)] = 231301, + [SMALL_STATE(6995)] = 231317, + [SMALL_STATE(6996)] = 231331, + [SMALL_STATE(6997)] = 231343, + [SMALL_STATE(6998)] = 231357, + [SMALL_STATE(6999)] = 231373, + [SMALL_STATE(7000)] = 231389, + [SMALL_STATE(7001)] = 231405, + [SMALL_STATE(7002)] = 231421, + [SMALL_STATE(7003)] = 231435, + [SMALL_STATE(7004)] = 231451, + [SMALL_STATE(7005)] = 231465, + [SMALL_STATE(7006)] = 231481, + [SMALL_STATE(7007)] = 231497, + [SMALL_STATE(7008)] = 231513, + [SMALL_STATE(7009)] = 231529, + [SMALL_STATE(7010)] = 231545, + [SMALL_STATE(7011)] = 231557, + [SMALL_STATE(7012)] = 231569, + [SMALL_STATE(7013)] = 231585, + [SMALL_STATE(7014)] = 231601, + [SMALL_STATE(7015)] = 231617, + [SMALL_STATE(7016)] = 231633, + [SMALL_STATE(7017)] = 231649, + [SMALL_STATE(7018)] = 231665, + [SMALL_STATE(7019)] = 231681, + [SMALL_STATE(7020)] = 231697, + [SMALL_STATE(7021)] = 231713, + [SMALL_STATE(7022)] = 231725, + [SMALL_STATE(7023)] = 231741, + [SMALL_STATE(7024)] = 231755, + [SMALL_STATE(7025)] = 231771, + [SMALL_STATE(7026)] = 231785, + [SMALL_STATE(7027)] = 231797, + [SMALL_STATE(7028)] = 231809, + [SMALL_STATE(7029)] = 231825, + [SMALL_STATE(7030)] = 231837, + [SMALL_STATE(7031)] = 231853, + [SMALL_STATE(7032)] = 231869, + [SMALL_STATE(7033)] = 231885, + [SMALL_STATE(7034)] = 231901, + [SMALL_STATE(7035)] = 231913, + [SMALL_STATE(7036)] = 231929, + [SMALL_STATE(7037)] = 231945, + [SMALL_STATE(7038)] = 231961, + [SMALL_STATE(7039)] = 231977, + [SMALL_STATE(7040)] = 231993, + [SMALL_STATE(7041)] = 232005, + [SMALL_STATE(7042)] = 232021, + [SMALL_STATE(7043)] = 232033, + [SMALL_STATE(7044)] = 232049, + [SMALL_STATE(7045)] = 232063, + [SMALL_STATE(7046)] = 232077, + [SMALL_STATE(7047)] = 232093, + [SMALL_STATE(7048)] = 232109, + [SMALL_STATE(7049)] = 232125, + [SMALL_STATE(7050)] = 232141, + [SMALL_STATE(7051)] = 232157, + [SMALL_STATE(7052)] = 232173, + [SMALL_STATE(7053)] = 232189, + [SMALL_STATE(7054)] = 232203, + [SMALL_STATE(7055)] = 232219, + [SMALL_STATE(7056)] = 232233, + [SMALL_STATE(7057)] = 232247, + [SMALL_STATE(7058)] = 232259, + [SMALL_STATE(7059)] = 232275, + [SMALL_STATE(7060)] = 232291, + [SMALL_STATE(7061)] = 232307, + [SMALL_STATE(7062)] = 232323, + [SMALL_STATE(7063)] = 232339, + [SMALL_STATE(7064)] = 232355, + [SMALL_STATE(7065)] = 232371, + [SMALL_STATE(7066)] = 232387, + [SMALL_STATE(7067)] = 232403, + [SMALL_STATE(7068)] = 232419, + [SMALL_STATE(7069)] = 232431, + [SMALL_STATE(7070)] = 232447, + [SMALL_STATE(7071)] = 232463, + [SMALL_STATE(7072)] = 232475, + [SMALL_STATE(7073)] = 232487, + [SMALL_STATE(7074)] = 232503, + [SMALL_STATE(7075)] = 232519, + [SMALL_STATE(7076)] = 232535, + [SMALL_STATE(7077)] = 232549, + [SMALL_STATE(7078)] = 232565, + [SMALL_STATE(7079)] = 232577, + [SMALL_STATE(7080)] = 232589, + [SMALL_STATE(7081)] = 232603, + [SMALL_STATE(7082)] = 232619, + [SMALL_STATE(7083)] = 232631, + [SMALL_STATE(7084)] = 232647, + [SMALL_STATE(7085)] = 232661, + [SMALL_STATE(7086)] = 232675, + [SMALL_STATE(7087)] = 232687, + [SMALL_STATE(7088)] = 232699, + [SMALL_STATE(7089)] = 232713, + [SMALL_STATE(7090)] = 232729, + [SMALL_STATE(7091)] = 232745, + [SMALL_STATE(7092)] = 232757, + [SMALL_STATE(7093)] = 232771, + [SMALL_STATE(7094)] = 232787, + [SMALL_STATE(7095)] = 232803, + [SMALL_STATE(7096)] = 232819, + [SMALL_STATE(7097)] = 232835, + [SMALL_STATE(7098)] = 232847, + [SMALL_STATE(7099)] = 232859, + [SMALL_STATE(7100)] = 232871, + [SMALL_STATE(7101)] = 232885, + [SMALL_STATE(7102)] = 232901, + [SMALL_STATE(7103)] = 232913, + [SMALL_STATE(7104)] = 232929, + [SMALL_STATE(7105)] = 232945, + [SMALL_STATE(7106)] = 232961, + [SMALL_STATE(7107)] = 232975, + [SMALL_STATE(7108)] = 232989, + [SMALL_STATE(7109)] = 233003, + [SMALL_STATE(7110)] = 233019, + [SMALL_STATE(7111)] = 233035, + [SMALL_STATE(7112)] = 233049, + [SMALL_STATE(7113)] = 233065, + [SMALL_STATE(7114)] = 233077, + [SMALL_STATE(7115)] = 233093, + [SMALL_STATE(7116)] = 233107, + [SMALL_STATE(7117)] = 233123, + [SMALL_STATE(7118)] = 233139, + [SMALL_STATE(7119)] = 233155, + [SMALL_STATE(7120)] = 233167, + [SMALL_STATE(7121)] = 233183, + [SMALL_STATE(7122)] = 233199, + [SMALL_STATE(7123)] = 233215, + [SMALL_STATE(7124)] = 233231, + [SMALL_STATE(7125)] = 233243, + [SMALL_STATE(7126)] = 233255, + [SMALL_STATE(7127)] = 233271, + [SMALL_STATE(7128)] = 233287, + [SMALL_STATE(7129)] = 233301, + [SMALL_STATE(7130)] = 233315, + [SMALL_STATE(7131)] = 233327, + [SMALL_STATE(7132)] = 233343, + [SMALL_STATE(7133)] = 233359, + [SMALL_STATE(7134)] = 233375, + [SMALL_STATE(7135)] = 233391, + [SMALL_STATE(7136)] = 233407, + [SMALL_STATE(7137)] = 233423, + [SMALL_STATE(7138)] = 233439, + [SMALL_STATE(7139)] = 233455, + [SMALL_STATE(7140)] = 233471, + [SMALL_STATE(7141)] = 233483, + [SMALL_STATE(7142)] = 233499, + [SMALL_STATE(7143)] = 233513, + [SMALL_STATE(7144)] = 233525, + [SMALL_STATE(7145)] = 233541, + [SMALL_STATE(7146)] = 233557, + [SMALL_STATE(7147)] = 233573, + [SMALL_STATE(7148)] = 233585, + [SMALL_STATE(7149)] = 233599, + [SMALL_STATE(7150)] = 233615, + [SMALL_STATE(7151)] = 233631, + [SMALL_STATE(7152)] = 233643, + [SMALL_STATE(7153)] = 233659, + [SMALL_STATE(7154)] = 233671, + [SMALL_STATE(7155)] = 233687, + [SMALL_STATE(7156)] = 233699, + [SMALL_STATE(7157)] = 233715, + [SMALL_STATE(7158)] = 233731, + [SMALL_STATE(7159)] = 233743, + [SMALL_STATE(7160)] = 233755, + [SMALL_STATE(7161)] = 233767, + [SMALL_STATE(7162)] = 233779, + [SMALL_STATE(7163)] = 233791, + [SMALL_STATE(7164)] = 233803, + [SMALL_STATE(7165)] = 233815, + [SMALL_STATE(7166)] = 233831, + [SMALL_STATE(7167)] = 233843, + [SMALL_STATE(7168)] = 233859, + [SMALL_STATE(7169)] = 233875, + [SMALL_STATE(7170)] = 233891, + [SMALL_STATE(7171)] = 233907, + [SMALL_STATE(7172)] = 233921, + [SMALL_STATE(7173)] = 233933, + [SMALL_STATE(7174)] = 233949, + [SMALL_STATE(7175)] = 233965, + [SMALL_STATE(7176)] = 233977, + [SMALL_STATE(7177)] = 233993, + [SMALL_STATE(7178)] = 234005, + [SMALL_STATE(7179)] = 234019, + [SMALL_STATE(7180)] = 234033, + [SMALL_STATE(7181)] = 234045, + [SMALL_STATE(7182)] = 234061, + [SMALL_STATE(7183)] = 234073, + [SMALL_STATE(7184)] = 234087, + [SMALL_STATE(7185)] = 234101, + [SMALL_STATE(7186)] = 234113, + [SMALL_STATE(7187)] = 234125, + [SMALL_STATE(7188)] = 234141, + [SMALL_STATE(7189)] = 234153, + [SMALL_STATE(7190)] = 234169, + [SMALL_STATE(7191)] = 234181, + [SMALL_STATE(7192)] = 234195, + [SMALL_STATE(7193)] = 234209, + [SMALL_STATE(7194)] = 234221, + [SMALL_STATE(7195)] = 234235, + [SMALL_STATE(7196)] = 234251, + [SMALL_STATE(7197)] = 234263, + [SMALL_STATE(7198)] = 234279, + [SMALL_STATE(7199)] = 234291, + [SMALL_STATE(7200)] = 234305, + [SMALL_STATE(7201)] = 234317, + [SMALL_STATE(7202)] = 234331, + [SMALL_STATE(7203)] = 234345, + [SMALL_STATE(7204)] = 234361, + [SMALL_STATE(7205)] = 234377, + [SMALL_STATE(7206)] = 234393, + [SMALL_STATE(7207)] = 234409, + [SMALL_STATE(7208)] = 234425, + [SMALL_STATE(7209)] = 234441, + [SMALL_STATE(7210)] = 234457, + [SMALL_STATE(7211)] = 234473, + [SMALL_STATE(7212)] = 234489, + [SMALL_STATE(7213)] = 234505, + [SMALL_STATE(7214)] = 234519, + [SMALL_STATE(7215)] = 234531, + [SMALL_STATE(7216)] = 234545, + [SMALL_STATE(7217)] = 234561, + [SMALL_STATE(7218)] = 234577, + [SMALL_STATE(7219)] = 234593, + [SMALL_STATE(7220)] = 234609, + [SMALL_STATE(7221)] = 234625, + [SMALL_STATE(7222)] = 234637, + [SMALL_STATE(7223)] = 234649, + [SMALL_STATE(7224)] = 234663, + [SMALL_STATE(7225)] = 234677, + [SMALL_STATE(7226)] = 234689, + [SMALL_STATE(7227)] = 234701, + [SMALL_STATE(7228)] = 234713, + [SMALL_STATE(7229)] = 234727, + [SMALL_STATE(7230)] = 234743, + [SMALL_STATE(7231)] = 234755, + [SMALL_STATE(7232)] = 234771, + [SMALL_STATE(7233)] = 234785, + [SMALL_STATE(7234)] = 234797, + [SMALL_STATE(7235)] = 234813, + [SMALL_STATE(7236)] = 234829, + [SMALL_STATE(7237)] = 234845, + [SMALL_STATE(7238)] = 234861, + [SMALL_STATE(7239)] = 234875, + [SMALL_STATE(7240)] = 234889, + [SMALL_STATE(7241)] = 234905, + [SMALL_STATE(7242)] = 234921, + [SMALL_STATE(7243)] = 234937, + [SMALL_STATE(7244)] = 234953, + [SMALL_STATE(7245)] = 234967, + [SMALL_STATE(7246)] = 234983, + [SMALL_STATE(7247)] = 234999, + [SMALL_STATE(7248)] = 235013, + [SMALL_STATE(7249)] = 235029, + [SMALL_STATE(7250)] = 235045, + [SMALL_STATE(7251)] = 235061, + [SMALL_STATE(7252)] = 235077, + [SMALL_STATE(7253)] = 235093, + [SMALL_STATE(7254)] = 235109, + [SMALL_STATE(7255)] = 235123, + [SMALL_STATE(7256)] = 235135, + [SMALL_STATE(7257)] = 235149, + [SMALL_STATE(7258)] = 235165, + [SMALL_STATE(7259)] = 235181, + [SMALL_STATE(7260)] = 235197, + [SMALL_STATE(7261)] = 235213, + [SMALL_STATE(7262)] = 235227, + [SMALL_STATE(7263)] = 235241, + [SMALL_STATE(7264)] = 235257, + [SMALL_STATE(7265)] = 235273, + [SMALL_STATE(7266)] = 235289, + [SMALL_STATE(7267)] = 235305, + [SMALL_STATE(7268)] = 235319, + [SMALL_STATE(7269)] = 235333, + [SMALL_STATE(7270)] = 235345, + [SMALL_STATE(7271)] = 235361, + [SMALL_STATE(7272)] = 235377, + [SMALL_STATE(7273)] = 235393, + [SMALL_STATE(7274)] = 235409, + [SMALL_STATE(7275)] = 235425, + [SMALL_STATE(7276)] = 235439, + [SMALL_STATE(7277)] = 235453, + [SMALL_STATE(7278)] = 235467, + [SMALL_STATE(7279)] = 235479, + [SMALL_STATE(7280)] = 235495, + [SMALL_STATE(7281)] = 235511, + [SMALL_STATE(7282)] = 235527, + [SMALL_STATE(7283)] = 235543, + [SMALL_STATE(7284)] = 235559, + [SMALL_STATE(7285)] = 235573, + [SMALL_STATE(7286)] = 235589, + [SMALL_STATE(7287)] = 235603, + [SMALL_STATE(7288)] = 235615, + [SMALL_STATE(7289)] = 235631, + [SMALL_STATE(7290)] = 235647, + [SMALL_STATE(7291)] = 235663, + [SMALL_STATE(7292)] = 235679, + [SMALL_STATE(7293)] = 235693, + [SMALL_STATE(7294)] = 235709, + [SMALL_STATE(7295)] = 235723, + [SMALL_STATE(7296)] = 235739, + [SMALL_STATE(7297)] = 235755, + [SMALL_STATE(7298)] = 235771, + [SMALL_STATE(7299)] = 235787, + [SMALL_STATE(7300)] = 235803, + [SMALL_STATE(7301)] = 235817, + [SMALL_STATE(7302)] = 235831, + [SMALL_STATE(7303)] = 235845, + [SMALL_STATE(7304)] = 235857, + [SMALL_STATE(7305)] = 235873, + [SMALL_STATE(7306)] = 235889, + [SMALL_STATE(7307)] = 235905, + [SMALL_STATE(7308)] = 235921, + [SMALL_STATE(7309)] = 235937, + [SMALL_STATE(7310)] = 235951, + [SMALL_STATE(7311)] = 235967, + [SMALL_STATE(7312)] = 235981, + [SMALL_STATE(7313)] = 235995, + [SMALL_STATE(7314)] = 236011, + [SMALL_STATE(7315)] = 236027, + [SMALL_STATE(7316)] = 236043, + [SMALL_STATE(7317)] = 236057, + [SMALL_STATE(7318)] = 236073, + [SMALL_STATE(7319)] = 236089, + [SMALL_STATE(7320)] = 236103, + [SMALL_STATE(7321)] = 236119, + [SMALL_STATE(7322)] = 236133, + [SMALL_STATE(7323)] = 236145, + [SMALL_STATE(7324)] = 236157, + [SMALL_STATE(7325)] = 236173, + [SMALL_STATE(7326)] = 236189, + [SMALL_STATE(7327)] = 236205, + [SMALL_STATE(7328)] = 236221, + [SMALL_STATE(7329)] = 236235, + [SMALL_STATE(7330)] = 236249, + [SMALL_STATE(7331)] = 236261, + [SMALL_STATE(7332)] = 236277, + [SMALL_STATE(7333)] = 236293, + [SMALL_STATE(7334)] = 236309, + [SMALL_STATE(7335)] = 236325, + [SMALL_STATE(7336)] = 236341, + [SMALL_STATE(7337)] = 236355, + [SMALL_STATE(7338)] = 236369, + [SMALL_STATE(7339)] = 236383, + [SMALL_STATE(7340)] = 236399, + [SMALL_STATE(7341)] = 236415, + [SMALL_STATE(7342)] = 236429, + [SMALL_STATE(7343)] = 236445, + [SMALL_STATE(7344)] = 236461, + [SMALL_STATE(7345)] = 236475, + [SMALL_STATE(7346)] = 236489, + [SMALL_STATE(7347)] = 236505, + [SMALL_STATE(7348)] = 236521, + [SMALL_STATE(7349)] = 236537, + [SMALL_STATE(7350)] = 236553, + [SMALL_STATE(7351)] = 236569, + [SMALL_STATE(7352)] = 236585, + [SMALL_STATE(7353)] = 236599, + [SMALL_STATE(7354)] = 236613, + [SMALL_STATE(7355)] = 236629, + [SMALL_STATE(7356)] = 236645, + [SMALL_STATE(7357)] = 236661, + [SMALL_STATE(7358)] = 236677, + [SMALL_STATE(7359)] = 236693, + [SMALL_STATE(7360)] = 236707, + [SMALL_STATE(7361)] = 236721, + [SMALL_STATE(7362)] = 236737, + [SMALL_STATE(7363)] = 236753, + [SMALL_STATE(7364)] = 236767, + [SMALL_STATE(7365)] = 236783, + [SMALL_STATE(7366)] = 236799, + [SMALL_STATE(7367)] = 236813, + [SMALL_STATE(7368)] = 236827, + [SMALL_STATE(7369)] = 236843, + [SMALL_STATE(7370)] = 236859, + [SMALL_STATE(7371)] = 236875, + [SMALL_STATE(7372)] = 236891, + [SMALL_STATE(7373)] = 236907, + [SMALL_STATE(7374)] = 236923, + [SMALL_STATE(7375)] = 236935, + [SMALL_STATE(7376)] = 236951, + [SMALL_STATE(7377)] = 236967, + [SMALL_STATE(7378)] = 236979, + [SMALL_STATE(7379)] = 236995, + [SMALL_STATE(7380)] = 237011, + [SMALL_STATE(7381)] = 237023, + [SMALL_STATE(7382)] = 237035, + [SMALL_STATE(7383)] = 237047, + [SMALL_STATE(7384)] = 237063, + [SMALL_STATE(7385)] = 237079, + [SMALL_STATE(7386)] = 237093, + [SMALL_STATE(7387)] = 237107, + [SMALL_STATE(7388)] = 237121, + [SMALL_STATE(7389)] = 237135, + [SMALL_STATE(7390)] = 237151, + [SMALL_STATE(7391)] = 237167, + [SMALL_STATE(7392)] = 237179, + [SMALL_STATE(7393)] = 237193, + [SMALL_STATE(7394)] = 237205, + [SMALL_STATE(7395)] = 237217, + [SMALL_STATE(7396)] = 237231, + [SMALL_STATE(7397)] = 237245, + [SMALL_STATE(7398)] = 237259, + [SMALL_STATE(7399)] = 237273, + [SMALL_STATE(7400)] = 237287, + [SMALL_STATE(7401)] = 237303, + [SMALL_STATE(7402)] = 237319, + [SMALL_STATE(7403)] = 237331, + [SMALL_STATE(7404)] = 237345, + [SMALL_STATE(7405)] = 237361, + [SMALL_STATE(7406)] = 237374, + [SMALL_STATE(7407)] = 237387, + [SMALL_STATE(7408)] = 237400, + [SMALL_STATE(7409)] = 237413, + [SMALL_STATE(7410)] = 237426, + [SMALL_STATE(7411)] = 237439, + [SMALL_STATE(7412)] = 237452, + [SMALL_STATE(7413)] = 237465, + [SMALL_STATE(7414)] = 237478, + [SMALL_STATE(7415)] = 237491, + [SMALL_STATE(7416)] = 237504, + [SMALL_STATE(7417)] = 237517, + [SMALL_STATE(7418)] = 237530, + [SMALL_STATE(7419)] = 237543, + [SMALL_STATE(7420)] = 237556, + [SMALL_STATE(7421)] = 237569, + [SMALL_STATE(7422)] = 237582, + [SMALL_STATE(7423)] = 237595, + [SMALL_STATE(7424)] = 237608, + [SMALL_STATE(7425)] = 237621, + [SMALL_STATE(7426)] = 237634, + [SMALL_STATE(7427)] = 237647, + [SMALL_STATE(7428)] = 237660, + [SMALL_STATE(7429)] = 237673, + [SMALL_STATE(7430)] = 237686, + [SMALL_STATE(7431)] = 237699, + [SMALL_STATE(7432)] = 237712, + [SMALL_STATE(7433)] = 237725, + [SMALL_STATE(7434)] = 237738, + [SMALL_STATE(7435)] = 237751, + [SMALL_STATE(7436)] = 237764, + [SMALL_STATE(7437)] = 237777, + [SMALL_STATE(7438)] = 237790, + [SMALL_STATE(7439)] = 237803, + [SMALL_STATE(7440)] = 237816, + [SMALL_STATE(7441)] = 237829, + [SMALL_STATE(7442)] = 237842, + [SMALL_STATE(7443)] = 237855, + [SMALL_STATE(7444)] = 237868, + [SMALL_STATE(7445)] = 237881, + [SMALL_STATE(7446)] = 237894, + [SMALL_STATE(7447)] = 237907, + [SMALL_STATE(7448)] = 237920, + [SMALL_STATE(7449)] = 237933, + [SMALL_STATE(7450)] = 237946, + [SMALL_STATE(7451)] = 237959, + [SMALL_STATE(7452)] = 237972, + [SMALL_STATE(7453)] = 237985, + [SMALL_STATE(7454)] = 237998, + [SMALL_STATE(7455)] = 238011, + [SMALL_STATE(7456)] = 238024, + [SMALL_STATE(7457)] = 238037, + [SMALL_STATE(7458)] = 238050, + [SMALL_STATE(7459)] = 238063, + [SMALL_STATE(7460)] = 238076, + [SMALL_STATE(7461)] = 238089, + [SMALL_STATE(7462)] = 238102, + [SMALL_STATE(7463)] = 238115, + [SMALL_STATE(7464)] = 238128, + [SMALL_STATE(7465)] = 238141, + [SMALL_STATE(7466)] = 238154, + [SMALL_STATE(7467)] = 238167, + [SMALL_STATE(7468)] = 238180, + [SMALL_STATE(7469)] = 238193, + [SMALL_STATE(7470)] = 238206, + [SMALL_STATE(7471)] = 238219, + [SMALL_STATE(7472)] = 238232, + [SMALL_STATE(7473)] = 238245, + [SMALL_STATE(7474)] = 238258, + [SMALL_STATE(7475)] = 238271, + [SMALL_STATE(7476)] = 238284, + [SMALL_STATE(7477)] = 238297, + [SMALL_STATE(7478)] = 238310, + [SMALL_STATE(7479)] = 238323, + [SMALL_STATE(7480)] = 238336, + [SMALL_STATE(7481)] = 238349, + [SMALL_STATE(7482)] = 238362, + [SMALL_STATE(7483)] = 238375, + [SMALL_STATE(7484)] = 238388, + [SMALL_STATE(7485)] = 238401, + [SMALL_STATE(7486)] = 238414, + [SMALL_STATE(7487)] = 238427, + [SMALL_STATE(7488)] = 238440, + [SMALL_STATE(7489)] = 238453, + [SMALL_STATE(7490)] = 238466, + [SMALL_STATE(7491)] = 238479, + [SMALL_STATE(7492)] = 238492, + [SMALL_STATE(7493)] = 238505, + [SMALL_STATE(7494)] = 238518, + [SMALL_STATE(7495)] = 238531, + [SMALL_STATE(7496)] = 238544, + [SMALL_STATE(7497)] = 238557, + [SMALL_STATE(7498)] = 238570, + [SMALL_STATE(7499)] = 238583, + [SMALL_STATE(7500)] = 238596, + [SMALL_STATE(7501)] = 238609, + [SMALL_STATE(7502)] = 238622, + [SMALL_STATE(7503)] = 238635, + [SMALL_STATE(7504)] = 238648, + [SMALL_STATE(7505)] = 238661, + [SMALL_STATE(7506)] = 238674, + [SMALL_STATE(7507)] = 238687, + [SMALL_STATE(7508)] = 238700, + [SMALL_STATE(7509)] = 238713, + [SMALL_STATE(7510)] = 238726, + [SMALL_STATE(7511)] = 238737, + [SMALL_STATE(7512)] = 238750, + [SMALL_STATE(7513)] = 238763, + [SMALL_STATE(7514)] = 238776, + [SMALL_STATE(7515)] = 238789, + [SMALL_STATE(7516)] = 238802, + [SMALL_STATE(7517)] = 238815, + [SMALL_STATE(7518)] = 238828, + [SMALL_STATE(7519)] = 238841, + [SMALL_STATE(7520)] = 238854, + [SMALL_STATE(7521)] = 238867, + [SMALL_STATE(7522)] = 238880, + [SMALL_STATE(7523)] = 238893, + [SMALL_STATE(7524)] = 238904, + [SMALL_STATE(7525)] = 238917, + [SMALL_STATE(7526)] = 238930, + [SMALL_STATE(7527)] = 238943, + [SMALL_STATE(7528)] = 238956, + [SMALL_STATE(7529)] = 238969, + [SMALL_STATE(7530)] = 238982, + [SMALL_STATE(7531)] = 238995, + [SMALL_STATE(7532)] = 239008, + [SMALL_STATE(7533)] = 239021, + [SMALL_STATE(7534)] = 239034, + [SMALL_STATE(7535)] = 239047, + [SMALL_STATE(7536)] = 239060, + [SMALL_STATE(7537)] = 239073, + [SMALL_STATE(7538)] = 239086, + [SMALL_STATE(7539)] = 239099, + [SMALL_STATE(7540)] = 239112, + [SMALL_STATE(7541)] = 239125, + [SMALL_STATE(7542)] = 239136, + [SMALL_STATE(7543)] = 239149, + [SMALL_STATE(7544)] = 239162, + [SMALL_STATE(7545)] = 239173, + [SMALL_STATE(7546)] = 239186, + [SMALL_STATE(7547)] = 239199, + [SMALL_STATE(7548)] = 239212, + [SMALL_STATE(7549)] = 239225, + [SMALL_STATE(7550)] = 239238, + [SMALL_STATE(7551)] = 239251, + [SMALL_STATE(7552)] = 239264, + [SMALL_STATE(7553)] = 239277, + [SMALL_STATE(7554)] = 239290, + [SMALL_STATE(7555)] = 239303, + [SMALL_STATE(7556)] = 239316, + [SMALL_STATE(7557)] = 239329, + [SMALL_STATE(7558)] = 239342, + [SMALL_STATE(7559)] = 239355, + [SMALL_STATE(7560)] = 239368, + [SMALL_STATE(7561)] = 239379, + [SMALL_STATE(7562)] = 239392, + [SMALL_STATE(7563)] = 239405, + [SMALL_STATE(7564)] = 239418, + [SMALL_STATE(7565)] = 239431, + [SMALL_STATE(7566)] = 239442, + [SMALL_STATE(7567)] = 239455, + [SMALL_STATE(7568)] = 239468, + [SMALL_STATE(7569)] = 239481, + [SMALL_STATE(7570)] = 239494, + [SMALL_STATE(7571)] = 239507, + [SMALL_STATE(7572)] = 239520, + [SMALL_STATE(7573)] = 239533, + [SMALL_STATE(7574)] = 239546, + [SMALL_STATE(7575)] = 239559, + [SMALL_STATE(7576)] = 239572, + [SMALL_STATE(7577)] = 239585, + [SMALL_STATE(7578)] = 239598, + [SMALL_STATE(7579)] = 239611, + [SMALL_STATE(7580)] = 239622, + [SMALL_STATE(7581)] = 239635, + [SMALL_STATE(7582)] = 239648, + [SMALL_STATE(7583)] = 239661, + [SMALL_STATE(7584)] = 239674, + [SMALL_STATE(7585)] = 239687, + [SMALL_STATE(7586)] = 239700, + [SMALL_STATE(7587)] = 239713, + [SMALL_STATE(7588)] = 239726, + [SMALL_STATE(7589)] = 239739, + [SMALL_STATE(7590)] = 239752, + [SMALL_STATE(7591)] = 239765, + [SMALL_STATE(7592)] = 239778, + [SMALL_STATE(7593)] = 239791, + [SMALL_STATE(7594)] = 239804, + [SMALL_STATE(7595)] = 239817, + [SMALL_STATE(7596)] = 239830, + [SMALL_STATE(7597)] = 239843, + [SMALL_STATE(7598)] = 239854, + [SMALL_STATE(7599)] = 239867, + [SMALL_STATE(7600)] = 239880, + [SMALL_STATE(7601)] = 239893, + [SMALL_STATE(7602)] = 239906, + [SMALL_STATE(7603)] = 239919, + [SMALL_STATE(7604)] = 239932, + [SMALL_STATE(7605)] = 239945, + [SMALL_STATE(7606)] = 239958, + [SMALL_STATE(7607)] = 239971, + [SMALL_STATE(7608)] = 239981, + [SMALL_STATE(7609)] = 239991, + [SMALL_STATE(7610)] = 240001, + [SMALL_STATE(7611)] = 240011, + [SMALL_STATE(7612)] = 240021, + [SMALL_STATE(7613)] = 240031, + [SMALL_STATE(7614)] = 240041, + [SMALL_STATE(7615)] = 240051, + [SMALL_STATE(7616)] = 240061, + [SMALL_STATE(7617)] = 240071, + [SMALL_STATE(7618)] = 240081, + [SMALL_STATE(7619)] = 240091, + [SMALL_STATE(7620)] = 240101, + [SMALL_STATE(7621)] = 240111, + [SMALL_STATE(7622)] = 240121, + [SMALL_STATE(7623)] = 240131, + [SMALL_STATE(7624)] = 240141, + [SMALL_STATE(7625)] = 240151, + [SMALL_STATE(7626)] = 240161, + [SMALL_STATE(7627)] = 240171, + [SMALL_STATE(7628)] = 240181, + [SMALL_STATE(7629)] = 240191, + [SMALL_STATE(7630)] = 240201, + [SMALL_STATE(7631)] = 240211, + [SMALL_STATE(7632)] = 240221, + [SMALL_STATE(7633)] = 240231, + [SMALL_STATE(7634)] = 240241, + [SMALL_STATE(7635)] = 240251, + [SMALL_STATE(7636)] = 240261, + [SMALL_STATE(7637)] = 240271, + [SMALL_STATE(7638)] = 240281, + [SMALL_STATE(7639)] = 240291, + [SMALL_STATE(7640)] = 240301, + [SMALL_STATE(7641)] = 240311, + [SMALL_STATE(7642)] = 240321, + [SMALL_STATE(7643)] = 240331, + [SMALL_STATE(7644)] = 240341, + [SMALL_STATE(7645)] = 240351, + [SMALL_STATE(7646)] = 240361, + [SMALL_STATE(7647)] = 240371, + [SMALL_STATE(7648)] = 240381, + [SMALL_STATE(7649)] = 240391, + [SMALL_STATE(7650)] = 240401, + [SMALL_STATE(7651)] = 240411, + [SMALL_STATE(7652)] = 240421, + [SMALL_STATE(7653)] = 240431, + [SMALL_STATE(7654)] = 240441, + [SMALL_STATE(7655)] = 240451, + [SMALL_STATE(7656)] = 240461, + [SMALL_STATE(7657)] = 240471, + [SMALL_STATE(7658)] = 240481, + [SMALL_STATE(7659)] = 240491, + [SMALL_STATE(7660)] = 240501, + [SMALL_STATE(7661)] = 240511, + [SMALL_STATE(7662)] = 240521, + [SMALL_STATE(7663)] = 240531, + [SMALL_STATE(7664)] = 240541, + [SMALL_STATE(7665)] = 240551, + [SMALL_STATE(7666)] = 240561, + [SMALL_STATE(7667)] = 240571, + [SMALL_STATE(7668)] = 240581, + [SMALL_STATE(7669)] = 240591, + [SMALL_STATE(7670)] = 240601, + [SMALL_STATE(7671)] = 240611, + [SMALL_STATE(7672)] = 240621, + [SMALL_STATE(7673)] = 240631, + [SMALL_STATE(7674)] = 240641, + [SMALL_STATE(7675)] = 240651, + [SMALL_STATE(7676)] = 240661, + [SMALL_STATE(7677)] = 240671, + [SMALL_STATE(7678)] = 240681, + [SMALL_STATE(7679)] = 240691, + [SMALL_STATE(7680)] = 240701, + [SMALL_STATE(7681)] = 240711, + [SMALL_STATE(7682)] = 240721, + [SMALL_STATE(7683)] = 240731, + [SMALL_STATE(7684)] = 240741, + [SMALL_STATE(7685)] = 240751, + [SMALL_STATE(7686)] = 240761, + [SMALL_STATE(7687)] = 240771, + [SMALL_STATE(7688)] = 240781, + [SMALL_STATE(7689)] = 240791, + [SMALL_STATE(7690)] = 240801, + [SMALL_STATE(7691)] = 240811, + [SMALL_STATE(7692)] = 240821, + [SMALL_STATE(7693)] = 240831, + [SMALL_STATE(7694)] = 240841, + [SMALL_STATE(7695)] = 240851, + [SMALL_STATE(7696)] = 240861, + [SMALL_STATE(7697)] = 240871, + [SMALL_STATE(7698)] = 240881, + [SMALL_STATE(7699)] = 240891, + [SMALL_STATE(7700)] = 240901, + [SMALL_STATE(7701)] = 240911, + [SMALL_STATE(7702)] = 240921, + [SMALL_STATE(7703)] = 240931, + [SMALL_STATE(7704)] = 240941, + [SMALL_STATE(7705)] = 240951, + [SMALL_STATE(7706)] = 240961, + [SMALL_STATE(7707)] = 240971, + [SMALL_STATE(7708)] = 240981, + [SMALL_STATE(7709)] = 240991, + [SMALL_STATE(7710)] = 241001, + [SMALL_STATE(7711)] = 241011, + [SMALL_STATE(7712)] = 241021, + [SMALL_STATE(7713)] = 241031, + [SMALL_STATE(7714)] = 241041, + [SMALL_STATE(7715)] = 241051, + [SMALL_STATE(7716)] = 241061, + [SMALL_STATE(7717)] = 241071, + [SMALL_STATE(7718)] = 241081, + [SMALL_STATE(7719)] = 241091, + [SMALL_STATE(7720)] = 241101, + [SMALL_STATE(7721)] = 241111, + [SMALL_STATE(7722)] = 241121, + [SMALL_STATE(7723)] = 241131, + [SMALL_STATE(7724)] = 241141, + [SMALL_STATE(7725)] = 241151, + [SMALL_STATE(7726)] = 241161, + [SMALL_STATE(7727)] = 241171, + [SMALL_STATE(7728)] = 241181, + [SMALL_STATE(7729)] = 241191, + [SMALL_STATE(7730)] = 241201, + [SMALL_STATE(7731)] = 241211, + [SMALL_STATE(7732)] = 241221, + [SMALL_STATE(7733)] = 241231, + [SMALL_STATE(7734)] = 241241, + [SMALL_STATE(7735)] = 241251, + [SMALL_STATE(7736)] = 241261, + [SMALL_STATE(7737)] = 241271, + [SMALL_STATE(7738)] = 241281, + [SMALL_STATE(7739)] = 241291, + [SMALL_STATE(7740)] = 241301, + [SMALL_STATE(7741)] = 241311, + [SMALL_STATE(7742)] = 241321, + [SMALL_STATE(7743)] = 241331, + [SMALL_STATE(7744)] = 241341, + [SMALL_STATE(7745)] = 241351, + [SMALL_STATE(7746)] = 241361, + [SMALL_STATE(7747)] = 241371, + [SMALL_STATE(7748)] = 241381, + [SMALL_STATE(7749)] = 241391, + [SMALL_STATE(7750)] = 241401, + [SMALL_STATE(7751)] = 241411, + [SMALL_STATE(7752)] = 241421, + [SMALL_STATE(7753)] = 241431, + [SMALL_STATE(7754)] = 241441, + [SMALL_STATE(7755)] = 241451, + [SMALL_STATE(7756)] = 241461, + [SMALL_STATE(7757)] = 241471, + [SMALL_STATE(7758)] = 241481, + [SMALL_STATE(7759)] = 241491, + [SMALL_STATE(7760)] = 241501, + [SMALL_STATE(7761)] = 241511, + [SMALL_STATE(7762)] = 241521, + [SMALL_STATE(7763)] = 241531, + [SMALL_STATE(7764)] = 241541, + [SMALL_STATE(7765)] = 241551, + [SMALL_STATE(7766)] = 241561, + [SMALL_STATE(7767)] = 241571, + [SMALL_STATE(7768)] = 241581, + [SMALL_STATE(7769)] = 241591, + [SMALL_STATE(7770)] = 241601, + [SMALL_STATE(7771)] = 241611, + [SMALL_STATE(7772)] = 241621, + [SMALL_STATE(7773)] = 241631, + [SMALL_STATE(7774)] = 241641, + [SMALL_STATE(7775)] = 241651, + [SMALL_STATE(7776)] = 241661, + [SMALL_STATE(7777)] = 241671, + [SMALL_STATE(7778)] = 241681, + [SMALL_STATE(7779)] = 241691, + [SMALL_STATE(7780)] = 241701, + [SMALL_STATE(7781)] = 241711, + [SMALL_STATE(7782)] = 241721, + [SMALL_STATE(7783)] = 241731, + [SMALL_STATE(7784)] = 241741, + [SMALL_STATE(7785)] = 241751, + [SMALL_STATE(7786)] = 241761, + [SMALL_STATE(7787)] = 241771, + [SMALL_STATE(7788)] = 241781, + [SMALL_STATE(7789)] = 241791, + [SMALL_STATE(7790)] = 241801, + [SMALL_STATE(7791)] = 241811, + [SMALL_STATE(7792)] = 241821, + [SMALL_STATE(7793)] = 241831, + [SMALL_STATE(7794)] = 241841, + [SMALL_STATE(7795)] = 241851, + [SMALL_STATE(7796)] = 241861, + [SMALL_STATE(7797)] = 241871, + [SMALL_STATE(7798)] = 241881, + [SMALL_STATE(7799)] = 241891, + [SMALL_STATE(7800)] = 241901, + [SMALL_STATE(7801)] = 241911, + [SMALL_STATE(7802)] = 241921, + [SMALL_STATE(7803)] = 241931, + [SMALL_STATE(7804)] = 241941, + [SMALL_STATE(7805)] = 241951, + [SMALL_STATE(7806)] = 241961, + [SMALL_STATE(7807)] = 241971, + [SMALL_STATE(7808)] = 241981, + [SMALL_STATE(7809)] = 241991, + [SMALL_STATE(7810)] = 242001, + [SMALL_STATE(7811)] = 242011, + [SMALL_STATE(7812)] = 242021, + [SMALL_STATE(7813)] = 242031, + [SMALL_STATE(7814)] = 242041, + [SMALL_STATE(7815)] = 242051, + [SMALL_STATE(7816)] = 242061, + [SMALL_STATE(7817)] = 242071, + [SMALL_STATE(7818)] = 242081, + [SMALL_STATE(7819)] = 242091, + [SMALL_STATE(7820)] = 242101, + [SMALL_STATE(7821)] = 242111, + [SMALL_STATE(7822)] = 242121, + [SMALL_STATE(7823)] = 242131, + [SMALL_STATE(7824)] = 242141, + [SMALL_STATE(7825)] = 242151, + [SMALL_STATE(7826)] = 242161, + [SMALL_STATE(7827)] = 242171, + [SMALL_STATE(7828)] = 242181, + [SMALL_STATE(7829)] = 242191, + [SMALL_STATE(7830)] = 242201, + [SMALL_STATE(7831)] = 242211, + [SMALL_STATE(7832)] = 242221, + [SMALL_STATE(7833)] = 242231, + [SMALL_STATE(7834)] = 242241, + [SMALL_STATE(7835)] = 242251, + [SMALL_STATE(7836)] = 242261, + [SMALL_STATE(7837)] = 242271, + [SMALL_STATE(7838)] = 242281, + [SMALL_STATE(7839)] = 242291, + [SMALL_STATE(7840)] = 242301, + [SMALL_STATE(7841)] = 242311, + [SMALL_STATE(7842)] = 242321, + [SMALL_STATE(7843)] = 242331, + [SMALL_STATE(7844)] = 242341, + [SMALL_STATE(7845)] = 242351, + [SMALL_STATE(7846)] = 242361, + [SMALL_STATE(7847)] = 242371, + [SMALL_STATE(7848)] = 242381, + [SMALL_STATE(7849)] = 242391, + [SMALL_STATE(7850)] = 242401, + [SMALL_STATE(7851)] = 242411, + [SMALL_STATE(7852)] = 242421, + [SMALL_STATE(7853)] = 242431, + [SMALL_STATE(7854)] = 242441, + [SMALL_STATE(7855)] = 242451, + [SMALL_STATE(7856)] = 242461, + [SMALL_STATE(7857)] = 242471, + [SMALL_STATE(7858)] = 242481, + [SMALL_STATE(7859)] = 242491, + [SMALL_STATE(7860)] = 242501, + [SMALL_STATE(7861)] = 242511, + [SMALL_STATE(7862)] = 242521, + [SMALL_STATE(7863)] = 242531, + [SMALL_STATE(7864)] = 242541, + [SMALL_STATE(7865)] = 242551, + [SMALL_STATE(7866)] = 242561, + [SMALL_STATE(7867)] = 242571, + [SMALL_STATE(7868)] = 242581, + [SMALL_STATE(7869)] = 242591, + [SMALL_STATE(7870)] = 242601, + [SMALL_STATE(7871)] = 242611, + [SMALL_STATE(7872)] = 242621, + [SMALL_STATE(7873)] = 242631, + [SMALL_STATE(7874)] = 242641, + [SMALL_STATE(7875)] = 242651, + [SMALL_STATE(7876)] = 242661, + [SMALL_STATE(7877)] = 242671, + [SMALL_STATE(7878)] = 242681, + [SMALL_STATE(7879)] = 242691, + [SMALL_STATE(7880)] = 242701, + [SMALL_STATE(7881)] = 242711, + [SMALL_STATE(7882)] = 242721, + [SMALL_STATE(7883)] = 242731, + [SMALL_STATE(7884)] = 242741, + [SMALL_STATE(7885)] = 242751, + [SMALL_STATE(7886)] = 242761, + [SMALL_STATE(7887)] = 242771, + [SMALL_STATE(7888)] = 242781, + [SMALL_STATE(7889)] = 242791, + [SMALL_STATE(7890)] = 242801, + [SMALL_STATE(7891)] = 242811, + [SMALL_STATE(7892)] = 242821, + [SMALL_STATE(7893)] = 242831, + [SMALL_STATE(7894)] = 242841, + [SMALL_STATE(7895)] = 242851, + [SMALL_STATE(7896)] = 242861, + [SMALL_STATE(7897)] = 242871, + [SMALL_STATE(7898)] = 242881, + [SMALL_STATE(7899)] = 242891, + [SMALL_STATE(7900)] = 242901, + [SMALL_STATE(7901)] = 242911, + [SMALL_STATE(7902)] = 242921, + [SMALL_STATE(7903)] = 242931, + [SMALL_STATE(7904)] = 242941, + [SMALL_STATE(7905)] = 242951, + [SMALL_STATE(7906)] = 242961, + [SMALL_STATE(7907)] = 242971, + [SMALL_STATE(7908)] = 242981, + [SMALL_STATE(7909)] = 242991, + [SMALL_STATE(7910)] = 243001, + [SMALL_STATE(7911)] = 243011, + [SMALL_STATE(7912)] = 243021, + [SMALL_STATE(7913)] = 243031, + [SMALL_STATE(7914)] = 243041, + [SMALL_STATE(7915)] = 243051, + [SMALL_STATE(7916)] = 243061, + [SMALL_STATE(7917)] = 243071, + [SMALL_STATE(7918)] = 243081, + [SMALL_STATE(7919)] = 243091, + [SMALL_STATE(7920)] = 243101, + [SMALL_STATE(7921)] = 243111, + [SMALL_STATE(7922)] = 243121, + [SMALL_STATE(7923)] = 243131, + [SMALL_STATE(7924)] = 243141, + [SMALL_STATE(7925)] = 243151, + [SMALL_STATE(7926)] = 243161, + [SMALL_STATE(7927)] = 243171, + [SMALL_STATE(7928)] = 243181, + [SMALL_STATE(7929)] = 243191, + [SMALL_STATE(7930)] = 243201, + [SMALL_STATE(7931)] = 243211, + [SMALL_STATE(7932)] = 243221, + [SMALL_STATE(7933)] = 243231, + [SMALL_STATE(7934)] = 243241, + [SMALL_STATE(7935)] = 243251, + [SMALL_STATE(7936)] = 243261, + [SMALL_STATE(7937)] = 243271, + [SMALL_STATE(7938)] = 243281, + [SMALL_STATE(7939)] = 243291, + [SMALL_STATE(7940)] = 243301, + [SMALL_STATE(7941)] = 243311, + [SMALL_STATE(7942)] = 243321, + [SMALL_STATE(7943)] = 243331, + [SMALL_STATE(7944)] = 243341, + [SMALL_STATE(7945)] = 243351, + [SMALL_STATE(7946)] = 243361, + [SMALL_STATE(7947)] = 243371, + [SMALL_STATE(7948)] = 243381, + [SMALL_STATE(7949)] = 243391, + [SMALL_STATE(7950)] = 243401, + [SMALL_STATE(7951)] = 243411, + [SMALL_STATE(7952)] = 243421, + [SMALL_STATE(7953)] = 243431, + [SMALL_STATE(7954)] = 243441, + [SMALL_STATE(7955)] = 243451, + [SMALL_STATE(7956)] = 243461, + [SMALL_STATE(7957)] = 243471, + [SMALL_STATE(7958)] = 243481, + [SMALL_STATE(7959)] = 243491, + [SMALL_STATE(7960)] = 243501, + [SMALL_STATE(7961)] = 243511, + [SMALL_STATE(7962)] = 243521, + [SMALL_STATE(7963)] = 243531, + [SMALL_STATE(7964)] = 243541, + [SMALL_STATE(7965)] = 243551, + [SMALL_STATE(7966)] = 243561, + [SMALL_STATE(7967)] = 243571, + [SMALL_STATE(7968)] = 243581, + [SMALL_STATE(7969)] = 243591, + [SMALL_STATE(7970)] = 243601, + [SMALL_STATE(7971)] = 243611, + [SMALL_STATE(7972)] = 243621, + [SMALL_STATE(7973)] = 243631, + [SMALL_STATE(7974)] = 243641, + [SMALL_STATE(7975)] = 243651, + [SMALL_STATE(7976)] = 243661, + [SMALL_STATE(7977)] = 243671, + [SMALL_STATE(7978)] = 243681, + [SMALL_STATE(7979)] = 243691, + [SMALL_STATE(7980)] = 243701, + [SMALL_STATE(7981)] = 243711, + [SMALL_STATE(7982)] = 243721, + [SMALL_STATE(7983)] = 243731, + [SMALL_STATE(7984)] = 243741, + [SMALL_STATE(7985)] = 243751, + [SMALL_STATE(7986)] = 243761, + [SMALL_STATE(7987)] = 243771, + [SMALL_STATE(7988)] = 243781, + [SMALL_STATE(7989)] = 243791, + [SMALL_STATE(7990)] = 243801, + [SMALL_STATE(7991)] = 243811, + [SMALL_STATE(7992)] = 243821, + [SMALL_STATE(7993)] = 243831, + [SMALL_STATE(7994)] = 243841, + [SMALL_STATE(7995)] = 243851, + [SMALL_STATE(7996)] = 243861, + [SMALL_STATE(7997)] = 243871, + [SMALL_STATE(7998)] = 243881, + [SMALL_STATE(7999)] = 243891, + [SMALL_STATE(8000)] = 243901, + [SMALL_STATE(8001)] = 243911, + [SMALL_STATE(8002)] = 243921, + [SMALL_STATE(8003)] = 243931, + [SMALL_STATE(8004)] = 243941, + [SMALL_STATE(8005)] = 243951, + [SMALL_STATE(8006)] = 243961, + [SMALL_STATE(8007)] = 243971, + [SMALL_STATE(8008)] = 243981, + [SMALL_STATE(8009)] = 243991, + [SMALL_STATE(8010)] = 244001, + [SMALL_STATE(8011)] = 244011, + [SMALL_STATE(8012)] = 244021, + [SMALL_STATE(8013)] = 244031, + [SMALL_STATE(8014)] = 244041, + [SMALL_STATE(8015)] = 244051, + [SMALL_STATE(8016)] = 244061, + [SMALL_STATE(8017)] = 244071, + [SMALL_STATE(8018)] = 244081, + [SMALL_STATE(8019)] = 244091, + [SMALL_STATE(8020)] = 244101, + [SMALL_STATE(8021)] = 244111, + [SMALL_STATE(8022)] = 244121, + [SMALL_STATE(8023)] = 244131, + [SMALL_STATE(8024)] = 244141, + [SMALL_STATE(8025)] = 244151, + [SMALL_STATE(8026)] = 244161, + [SMALL_STATE(8027)] = 244171, + [SMALL_STATE(8028)] = 244181, + [SMALL_STATE(8029)] = 244191, + [SMALL_STATE(8030)] = 244201, + [SMALL_STATE(8031)] = 244211, + [SMALL_STATE(8032)] = 244221, + [SMALL_STATE(8033)] = 244231, + [SMALL_STATE(8034)] = 244241, + [SMALL_STATE(8035)] = 244251, + [SMALL_STATE(8036)] = 244261, + [SMALL_STATE(8037)] = 244271, + [SMALL_STATE(8038)] = 244281, + [SMALL_STATE(8039)] = 244291, + [SMALL_STATE(8040)] = 244301, + [SMALL_STATE(8041)] = 244311, + [SMALL_STATE(8042)] = 244321, + [SMALL_STATE(8043)] = 244331, + [SMALL_STATE(8044)] = 244341, + [SMALL_STATE(8045)] = 244351, + [SMALL_STATE(8046)] = 244361, + [SMALL_STATE(8047)] = 244371, + [SMALL_STATE(8048)] = 244381, + [SMALL_STATE(8049)] = 244391, + [SMALL_STATE(8050)] = 244401, + [SMALL_STATE(8051)] = 244411, + [SMALL_STATE(8052)] = 244421, + [SMALL_STATE(8053)] = 244431, + [SMALL_STATE(8054)] = 244441, + [SMALL_STATE(8055)] = 244451, + [SMALL_STATE(8056)] = 244461, + [SMALL_STATE(8057)] = 244471, + [SMALL_STATE(8058)] = 244481, + [SMALL_STATE(8059)] = 244491, + [SMALL_STATE(8060)] = 244501, + [SMALL_STATE(8061)] = 244511, + [SMALL_STATE(8062)] = 244521, + [SMALL_STATE(8063)] = 244531, + [SMALL_STATE(8064)] = 244541, + [SMALL_STATE(8065)] = 244551, + [SMALL_STATE(8066)] = 244561, + [SMALL_STATE(8067)] = 244571, + [SMALL_STATE(8068)] = 244581, + [SMALL_STATE(8069)] = 244591, + [SMALL_STATE(8070)] = 244601, + [SMALL_STATE(8071)] = 244611, + [SMALL_STATE(8072)] = 244621, + [SMALL_STATE(8073)] = 244631, + [SMALL_STATE(8074)] = 244641, + [SMALL_STATE(8075)] = 244651, + [SMALL_STATE(8076)] = 244661, + [SMALL_STATE(8077)] = 244671, + [SMALL_STATE(8078)] = 244681, + [SMALL_STATE(8079)] = 244691, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7409), + [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7815), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 0, 0, 0), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7400), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5872), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6066), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5911), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5905), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4973), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4973), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7196), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6479), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7520), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7594), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5005), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5011), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5343), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7273), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5047), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7771), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5962), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6078), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6009), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5986), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5053), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5053), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7405), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6239), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7666), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7971), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5087), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5089), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5412), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7538), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5199), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5350), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7297), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3358), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5221), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6088), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5335), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7458), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6604), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5913), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5672), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7620), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5536), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5845), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5846), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5847), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4638), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6929), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6411), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7227), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7449), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7222), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4856), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4857), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5284), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6934), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4859), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5364), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6938), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5172), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5959), - [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5371), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7507), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7467), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6564), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5888), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5722), - [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7415), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7409), - [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5543), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), - [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5731), - [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5736), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5738), - [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7114), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6593), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7322), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7516), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4851), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4812), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5293), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7008), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4870), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), - [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7058), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3341), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5162), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6021), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7617), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5599), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5859), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5915), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5453), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5443), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), - [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), - [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5784), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6050), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5889), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5893), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4636), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4636), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7243), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6188), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7390), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7701), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4924), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4943), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5387), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7318), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5066), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7219), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5292), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6447), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6079), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5862), - [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), - [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6025), - [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6028), - [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6064), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3968), - [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6529), - [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7668), - [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5154), - [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5091), - [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6047), - [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6535), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4774), - [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), - [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7445), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6532), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6069), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5707), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), - [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), - [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5229), - [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), - [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3950), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), - [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3903), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), - [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5271), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), - [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4092), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4871), - [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), - [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), - [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5484), - [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3986), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4905), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5516), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), - [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7446), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7412), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5855), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), - [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 1, 0, 0), - [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5623), - [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6062), - [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), - [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4731), - [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), - [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), - [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7439), - [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 1, 0, 0), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), - [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 1, 0, 0), - [675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5784), - [678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2559), - [681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6050), - [684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5889), - [687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5893), - [690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4636), - [693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4636), - [696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2085), - [699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2086), - [702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2123), - [705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2123), - [708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2372), - [711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7243), - [714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2560), - [717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2549), - [720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2822), - [723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(728), - [726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(70), - [729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6188), - [732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7390), - [735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7701), - [738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4924), - [741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4943), - [744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5387), - [747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7318), - [750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2287), - [753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5066), - [756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2288), - [759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1087), - [762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4), - [765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5364), - [768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7219), - [771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(933), - [774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2825), - [777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3372), - [780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2551), - [783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5292), - [786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6447), - [789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3761), - [792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5190), - [795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5371), - [798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1335), - [801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1335), - [804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1414), - [807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1363), - [810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2237), - [813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1525), - [816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7467), - [819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1643), - [822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6079), - [825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1972), - [828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5888), - [831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5722), - [834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7620), - [837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1530), - [840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5862), - [843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2573), - [846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6025), - [849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6028), - [852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6064), - [855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4636), - [858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4636), - [861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2355), - [864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2357), - [867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2359), - [870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2359), - [873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2372), - [876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7243), - [879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2560), - [882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2549), - [885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2822), - [888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(737), - [891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(55), - [894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6529), - [897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7390), - [900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7668), - [903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5154), - [906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5091), - [909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5387), - [912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7318), - [915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2287), - [918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6047), - [921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2021), - [924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1087), - [927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8), - [930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5364), - [933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6535), - [936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(933), - [939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2825), - [942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3372), - [945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2551), - [948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5292), - [951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6447), - [954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3563), - [957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5193), - [960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5371), - [963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1298), - [966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1298), - [969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1420), - [972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1365), - [975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1985), - [978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1850), - [981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7445), - [984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2221), - [987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6532), - [990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1725), - [993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6069), - [996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5707), - [999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7620), - [1002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1564), - [1005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 2, 0, 21), - [1007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 2, 0, 21), - [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5841), - [1011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cell_path, 1, 0, 0), - [1013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cell_path, 1, 0, 0), - [1015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), - [1017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), - [1019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5841), - [1022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 101), - [1024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 101), - [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [1028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 102), - [1030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 102), - [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [1034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 3, 0, 0), - [1036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 3, 0, 0), - [1038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 2, 0, 0), - [1040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 2, 0, 0), - [1042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_string, 1, 0, 0), - [1044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_string, 1, 0, 0), - [1046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 1, 0, 0), - [1048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 1, 0, 0), - [1050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, 0, 147), - [1052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, 0, 147), - [1054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, 0, 148), - [1056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, 0, 148), - [1058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 3, 0, 21), - [1060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 3, 0, 21), - [1062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), - [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [1068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), - [1070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value, 1, 0, 0), - [1072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value, 1, 0, 0), - [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [1076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), - [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), - [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [1085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4636), - [1088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4636), - [1091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2355), - [1094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2357), - [1097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2359), - [1100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2359), - [1103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(737), - [1106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(55), - [1109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6529), - [1112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7668), - [1115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5154), - [1118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5091), - [1121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6047), - [1124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2021), - [1127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1087), - [1130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(8), - [1133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5364), - [1136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6535), - [1139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(933), - [1142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3563), - [1145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5193), - [1148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5371), - [1151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1298), - [1154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1298), - [1157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1420), - [1160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1365), - [1163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1985), - [1166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1850), - [1169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7445), - [1172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2221), - [1175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6532), - [1178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1725), - [1181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6069), - [1184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5707), - [1187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7620), - [1190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1564), - [1193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4636), - [1196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4636), - [1199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2085), - [1202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2086), - [1205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2123), - [1208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2123), - [1211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(728), - [1214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(70), - [1217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6188), - [1220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7701), - [1223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4924), - [1226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4943), - [1229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5066), - [1232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2288), - [1235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1087), - [1238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4), - [1241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5364), - [1244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7219), - [1247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(933), - [1250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3761), - [1253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5190), - [1256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5371), - [1259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1335), - [1262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1335), - [1265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1414), - [1268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1363), - [1271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2237), - [1274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1525), - [1277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7467), - [1280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1643), - [1283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6079), - [1286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1972), - [1289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5888), - [1292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5722), - [1295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7620), - [1298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1530), - [1301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [1304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [1307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), - [1309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [1311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), - [1313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), - [1315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), - [1317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(199), - [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5562), - [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7470), - [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7197), - [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7197), - [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6339), - [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5666), - [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5666), - [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6080), - [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5892), - [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5688), - [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5439), - [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7456), - [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6387), - [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), - [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7631), - [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), - [1364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7456), - [1367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(5562), - [1370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7470), - [1373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7197), - [1376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7197), - [1379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(98), - [1382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(6387), - [1385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7415), - [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), - [1390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(100), - [1393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7631), - [1396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(5666), - [1399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(5666), - [1402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(6080), - [1405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(5892), - [1408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(1639), - [1411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(6564), - [1414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(1418), - [1417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(198), - [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5598), - [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5546), - [1424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7516), - [1427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5562), - [1430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7470), - [1433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7197), - [1436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7197), - [1439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(98), - [1442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6339), - [1445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7415), - [1448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(97), - [1451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7617), - [1454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5666), - [1457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5666), - [1460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6080), - [1463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5892), - [1466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(1639), - [1469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6564), - [1472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(1418), - [1475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(200), - [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 39), - [1480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6427), - [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 39), - [1494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 2, 0, 0), - [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 38), - [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [1504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 38), - [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6430), - [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), - [1516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [1518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), - [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), - [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6419), - [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [1538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [1540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 2, 0, 0), - [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), - [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [1546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [1548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 134), - [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 134), - [1552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 4, 0, 0), - [1554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 3, 0, 0), - [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 3, 0, 0), - [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [1560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number, 1, 0, 0), - [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number, 1, 0, 0), - [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [1576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 133), - [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [1582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 133), - [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 132), - [1588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 132), - [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6423), - [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [1602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 131), - [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 131), - [1606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), - [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [1610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [1634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), - [1636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), - [1638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(271), - [1641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), - [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5844), - [1645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), - [1647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), - [1649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), - [1651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 2, 0, 0), - [1653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 4, 0, 0), - [1655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 4, 0, 0), - [1657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 3, 0, 0), - [1659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 2, 0, 0), - [1661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), - [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [1667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), - [1669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), - [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [1675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), - [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), - [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 4, 0, 0), - [1691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [1693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5844), - [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [1700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), - [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), - [1704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(750), - [1707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(361), - [1710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), - [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), - [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [1718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(273), - [1721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 3, 0, 0), - [1723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 3, 0, 0), - [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [1731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(287), - [1734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5843), - [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [1738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 4, 0, 0), - [1740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 4, 0, 0), - [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 2, 0, 0), - [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 2, 0, 0), - [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), - [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), - [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), - [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), - [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [1758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), - [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 3, 0, 0), - [1768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 3, 0, 0), - [1770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [1774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [1778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 23), - [1780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 2, 0, 0), - [1782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5338), - [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5338), - [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 23), - [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 87), - [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 3, 0, 0), - [1792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [1796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 87), - [1798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 3, 0, 0), - [1800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [1804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5834), - [1809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), - [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), - [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [1815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5843), - [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [1822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 3, 0, 0), - [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5842), - [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 3, 0, 0), - [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 2, 0, 0), - [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 2, 0, 0), - [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 3, 0, 0), - [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 3, 0, 0), - [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 103), - [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 103), - [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 149), - [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 149), - [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 152), - [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 152), - [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 149), - [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 149), - [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 184), - [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 184), - [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 185), - [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 185), - [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 186), - [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 186), - [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 184), - [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 184), - [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 216), - [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 216), - [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 185), - [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 185), - [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 186), - [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 186), - [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 217), - [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 217), - [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 218), - [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 218), - [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 216), - [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 216), - [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 217), - [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 217), - [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 239), - [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 239), - [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 218), - [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 218), - [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 239), - [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 239), - [1908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [1912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), - [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), - [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 4, 0, 0), - [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 4, 0, 0), - [1924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5834), - [1927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 2, 0, 0), - [1929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 2, 0, 0), - [1931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 3, 0, 0), - [1933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 3, 0, 0), - [1935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), - [1937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), - [1939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 2, 0, 0), - [1941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 2, 0, 0), - [1943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 2, 0, 21), - [1945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 2, 0, 21), - [1947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), - [1949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), - [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [1955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), - [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5336), - [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5336), - [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [1973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 3, 0, 0), - [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 3, 0, 0), - [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [1981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 114), - [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 114), - [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5835), - [1991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 84), - [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [1997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 84), - [1999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 85), - [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [2005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 85), - [2007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 86), - [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [2013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 86), - [2015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 119), - [2017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 119), - [2019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 22), - [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5337), - [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5337), - [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 22), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [2029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), - [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), - [2033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), - [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), - [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4459), - [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4455), - [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4532), - [2043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), - [2045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), - [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), - [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6355), - [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4449), - [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4476), - [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), - [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5239), - [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), - [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5240), - [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7492), - [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3890), - [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3973), - [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3940), - [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4685), - [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4597), - [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7524), - [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4456), - [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6102), - [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4501), - [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5933), - [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5750), - [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), - [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6955), - [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4513), - [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3164), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), - [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), - [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), - [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), - [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2929), - [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), - [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), - [2141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), - [2143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), - [2145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5842), - [2148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), - [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), - [2152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), - [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), - [2156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 104), - [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 104), - [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4584), - [2162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4549), - [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4637), - [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), - [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6347), - [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4576), - [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4519), - [2176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), - [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5208), - [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5209), - [2184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7709), - [2186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3919), - [2188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4028), - [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3974), - [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4884), - [2194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4809), - [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7498), - [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4562), - [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6594), - [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4626), - [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5907), - [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5732), - [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6809), - [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4696), - [2214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), - [2216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), - [2218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 104), - [2220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 104), - [2222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5835), - [2225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 14), - [2227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 14), - [2229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 1, 0, 0), - [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), - [2233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 1, 0, 0), - [2235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), - [2237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 2, 0, 40), - [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 50), - [2241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 2, 0, 40), - [2243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 50), - [2245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_duration, 2, 0, 40), - [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_duration, 2, 0, 40), - [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [2253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_bool, 1, 0, 0), - [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_bool, 1, 0, 0), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), - [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5334), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5334), - [2287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 39), - [2289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 39), - [2291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 123), - [2293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 4, 0, 0), - [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 123), - [2297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 173), - [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 5, 0, 0), - [2301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 173), - [2303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 5, 0, 0), - [2305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_interpolated, 1, 0, 6), - [2307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_interpolated, 1, 0, 6), - [2309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 0), - [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 0), - [2313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 1, 0, 0), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6795), - [2317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 1, 0, 0), - [2319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), - [2321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(558), - [2324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [2328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 118), - [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 118), - [2332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 19), - [2334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 19), - [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [2338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 4, 0, 0), - [2340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 4, 0, 0), - [2342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 0), - [2344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 0), - [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [2348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 5, 0, 164), - [2350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 5, 0, 164), - [2352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 1, 0, 19), - [2354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 1, 0, 19), - [2356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 4, 0, 105), - [2358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), - [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), - [2362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), - [2364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), - [2366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), - [2368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), - [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [2372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [2376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), - [2378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), - [2380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 3, 0, 71), - [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 3, 0, 71), - [2384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 3, 0, 71), - [2386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 3, 0, 71), - [2388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 4, 0, 0), - [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 4, 0, 0), - [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [2396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), - [2398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), - [2400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 3, 0, 21), - [2402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 3, 0, 21), - [2404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 51), - [2406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 52), - [2408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat1, 1, 0, 0), - [2410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 1, 0, 0), - [2412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 152), - [2414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 152), - [2416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 149), - [2418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 149), - [2420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 184), - [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 184), - [2424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 17), - [2426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 17), - [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [2430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 18), - [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 18), - [2434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 185), - [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 185), - [2438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 186), - [2440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 186), - [2442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 216), - [2444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 216), - [2446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 217), - [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 217), - [2450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 218), - [2452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 218), - [2454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 10, 0, 239), - [2456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 10, 0, 239), - [2458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_number, 1, 0, 0), - [2460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_number, 1, 0, 0), - [2462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 2, 0, 0), - [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 2, 0, 0), - [2466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 3, 0, 0), - [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 3, 0, 0), - [2470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(629), - [2473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 38), - [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 38), - [2477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 120), - [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 120), - [2481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 121), - [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 121), - [2485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 122), - [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 122), - [2489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 166), - [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 166), - [2493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 167), - [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 167), - [2497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 168), - [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 168), - [2501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 169), - [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 169), - [2505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 170), - [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 170), - [2509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 171), - [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 171), - [2513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 172), - [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 172), - [2517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 4, 0, 128), - [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 4, 0, 128), - [2521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 103), - [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 103), - [2525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 4, 0, 0), - [2527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 4, 0, 0), - [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6773), - [2531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_variable, 2, 0, 0), - [2533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record_variable, 2, 0, 0), - [2535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 1, 0, 19), - [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), - [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), - [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), - [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5238), - [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6399), - [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5124), - [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5234), - [2561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), - [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2864), - [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7393), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), - [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6368), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), - [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5990), - [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5675), - [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7207), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7207), - [2591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2920), - [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [2601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 4, 0, 0), - [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [2607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6371), - [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [2611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [2615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5262), - [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5263), - [2619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), - [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [2629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), - [2631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7550), - [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6232), - [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5993), - [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5779), - [2643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7371), - [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7371), - [2647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), - [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 3, 0, 0), - [2651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 3, 0, 0), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), - [2655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 4, 0, 0), - [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 5, 0, 0), - [2659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1449), - [2662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1481), - [2665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1559), - [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), - [2670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(731), - [2673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(58), - [2676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6371), - [2679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1460), - [2682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1438), - [2685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(19), - [2688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5262), - [2691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5263), - [2694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1076), - [2697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1076), - [2700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1116), - [2703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1098), - [2706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1733), - [2709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1513), - [2712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7550), - [2715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1475), - [2718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6232), - [2721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1675), - [2724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5993), - [2727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5779), - [2730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7371), - [2733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7371), - [2736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1536), - [2739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 2, 0, 0), - [2741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1449), - [2744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1481), - [2747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1559), - [2750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(2835), - [2753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), - [2755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(731), - [2758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(58), - [2761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6371), - [2764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1460), - [2767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1438), - [2770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(19), - [2773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5262), - [2776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5263), - [2779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1076), - [2782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1076), - [2785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1116), - [2788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1098), - [2791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1733), - [2794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1513), - [2797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7550), - [2800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1475), - [2803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6232), - [2806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1675), - [2809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5993), - [2812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5779), - [2815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7371), - [2818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7371), - [2821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1536), - [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [2834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6316), - [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [2838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), - [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [2842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5216), - [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), - [2846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), - [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [2856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [2858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7484), - [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6125), - [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5945), - [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5757), - [2870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), - [2872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1556), - [2875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1562), - [2878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1695), - [2881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(725), - [2884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(71), - [2887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6316), - [2890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1553), - [2893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1547), - [2896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(13), - [2899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5216), - [2902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5217), - [2905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1096), - [2908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1096), - [2911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1236), - [2914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1202), - [2917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1931), - [2920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1723), - [2923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7484), - [2926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1510), - [2929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6125), - [2932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1944), - [2935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5945), - [2938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5757), - [2941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1658), - [2944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), - [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [2952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), - [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), - [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [2958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), - [2960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), - [2962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(750), - [2965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(721), - [2968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), - [2970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [2974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(722), - [2977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), - [2979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), - [2981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), - [2983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6536), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6462), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6677), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [2997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6454), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [3001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5249), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5250), - [3005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5008), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5008), - [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5228), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5203), - [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6215), - [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6458), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5413), - [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5465), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5914), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5539), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5671), - [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5560), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5515), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), - [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5973), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), - [3067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(750), - [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), - [3072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6536), - [3075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6462), - [3078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6677), - [3081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(734), - [3084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(63), - [3087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6454), - [3090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6), - [3093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5249), - [3096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(97), - [3099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5250), - [3102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7617), - [3105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5008), - [3108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5008), - [3111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5228), - [3114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5203), - [3117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(2913), - [3120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(2864), - [3123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7393), - [3126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6215), - [3129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6458), - [3132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5413), - [3135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5990), - [3138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5675), - [3141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(732), - [3144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7207), - [3147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7207), - [3150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(2920), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6271), - [3165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5637), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5638), - [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), - [3179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [3187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), - [3203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [3217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_return, 1, 0, 0), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5066), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7219), - [3227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_return, 1, 0, 0), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6123), - [3243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5874), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5875), - [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [3257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6302), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5684), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5189), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5685), - [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), - [3289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [3297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), - [3313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6379), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5191), - [3317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), - [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6335), - [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), - [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [3353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), - [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), - [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), - [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), - [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), - [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), - [3369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), - [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), - [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), - [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), - [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5047), - [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7297), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [3401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6251), - [3403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7705), - [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [3407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5269), - [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5179), - [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5270), - [3413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3850), - [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), - [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), - [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), - [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), - [3423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3962), - [3425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7573), - [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), - [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6212), - [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), - [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5887), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5791), - [3437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3960), - [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), - [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [3449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6375), - [3451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7703), - [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [3455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5267), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5194), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5268), - [3461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3852), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), - [3471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4054), - [3473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7562), - [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), - [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6253), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6048), - [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5785), - [3485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4066), - [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4725), - [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4770), - [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4907), - [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), - [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [3499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6391), - [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [3503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5295), - [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5296), - [3507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3971), - [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), - [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), - [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), - [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5151), - [3517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4778), - [3519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7537), - [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4787), - [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6348), - [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), - [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5980), - [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5772), - [3531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4942), - [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6128), - [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6475), - [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6602), - [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), - [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6367), - [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5083), - [3551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6721), - [3553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5297), - [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5206), - [3557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5182), - [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5182), - [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5346), - [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5253), - [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6086), - [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5089), - [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4972), - [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4888), - [3573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), - [3575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1070), - [3578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1070), - [3581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), - [3583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), - [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [3597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6419), - [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [3601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5213), - [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5214), - [3605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [3615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [3617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7609), - [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6392), - [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5904), - [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5802), - [3629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7220), - [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7220), - [3633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [3647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5245), - [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5246), - [3651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [3661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), - [3663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7618), - [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6431), - [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [3671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6121), - [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6459), - [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6959), - [3679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5231), - [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5232), - [3683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5186), - [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5186), - [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5365), - [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), - [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6478), - [3693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5778), - [3695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), - [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), - [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), - [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6833), - [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6383), - [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [3717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5060), - [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5286), - [3721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), - [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [3731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3011), - [3733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7585), - [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6344), - [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [3741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), - [3743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), - [3745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(7620), - [3748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(1083), - [3751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6128), - [3754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6475), - [3757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6602), - [3760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1057), - [3763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(57), - [3766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6367), - [3769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(206), - [3772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6721), - [3775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5297), - [3778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5206), - [3781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5182), - [3784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5182), - [3787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5346), - [3790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5253), - [3793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1985), - [3796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1850), - [3799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7445), - [3802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6086), - [3805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6532), - [3808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1725), - [3811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7371), - [3814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7371), - [3817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1822), - [3820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), - [3822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7620), - [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), - [3827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5076), - [3829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), - [3831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1088), - [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [3836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), - [3838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7327), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [3852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6101), - [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [3856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5272), - [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5273), - [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6453), - [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [3864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), - [3866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 1, 0, 0), - [3868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 1, 0, 0), - [3870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), - [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [3874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), - [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [3878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5778), - [3881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6330), - [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), - [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [3895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), - [3897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [3905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5814), - [3907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), - [3909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), - [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [3917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5763), - [3919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), - [3921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), - [3923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6077), - [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [3927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), - [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [3935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), - [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [3945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), - [3947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), - [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [3957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), - [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [3961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), - [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [3967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [3971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), - [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [3975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5763), - [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), - [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [3988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), - [3990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5728), - [3992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5814), - [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5512), - [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5418), - [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), - [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7685), - [4003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6563), - [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5723), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5724), - [4009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4527), - [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), - [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4938), - [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4702), - [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5510), - [4019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5829), - [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), - [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7545), - [4031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6351), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [4035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5677), - [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5678), - [4039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), - [4049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), - [4051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7511), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6149), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5960), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5765), - [4063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [4067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [4071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [4075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6634), - [4083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5125), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [4095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7166), - [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6693), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6742), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7608), - [4113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6359), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [4117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5708), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5709), - [4121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5215), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5215), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5402), - [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5300), - [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6709), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6190), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4744), - [4135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5947), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5653), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5876), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6007), - [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [4147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5110), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5110), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5171), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5877), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [4159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5084), - [4161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [4169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6067), - [4173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5128), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), - [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5275), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5163), - [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7221), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7296), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7357), - [4187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5374), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5374), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5603), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5508), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7351), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7391), - [4205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5733), - [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5734), - [4209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), - [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [4219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6605), - [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6199), - [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6370), - [4227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5185), - [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5185), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5339), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6545), - [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), - [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), - [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7421), - [4247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6168), - [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [4251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5744), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5745), - [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), - [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), - [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4884), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6594), - [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4626), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5907), - [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5732), - [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6666), - [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6923), - [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6882), - [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7621), - [4283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6287), - [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [4287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5751), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5752), - [4291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5265), - [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5265), - [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5437), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), - [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4685), - [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6644), - [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6102), - [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5933), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5750), - [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), - [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), - [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), - [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), - [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), - [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), - [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), - [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), - [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7462), - [4335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6395), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [4339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5758), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5759), - [4343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3349), - [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), - [4353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3560), - [4355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7597), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6360), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5896), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5796), - [4367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7450), - [4377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5766), - [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5767), - [4381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [4391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7459), - [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6519), - [4397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5856), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5857), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5595), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5540), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5535), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7465), - [4409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6343), - [4411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5773), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5774), - [4415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4643), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4643), - [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5049), - [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4962), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5575), - [4425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5728), - [4428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), - [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [4432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5822), - [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [4436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [4440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [4444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(3004), - [4447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(2976), - [4450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(2984), - [4453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(1066), - [4456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), - [4458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(62), - [4461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(6383), - [4464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(202), - [4467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(5256), - [4470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(5286), - [4473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(2574), - [4476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(2574), - [4479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(2633), - [4482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(2597), - [4485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(3083), - [4488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(3011), - [4491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(7585), - [4494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(3015), - [4497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(6344), - [4500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(3056), - [4503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(7207), - [4506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(7207), - [4509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(3055), - [4512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5596), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5663), - [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [4520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [4522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5829), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [4531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [4539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6748), - [4543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5235), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5236), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7007), - [4549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), - [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [4557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [4565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5322), - [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5322), - [4569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5822), - [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [4574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), - [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [4578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [4588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), - [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [4596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5823), - [4598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), - [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [4606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5576), - [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5743), - [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [4614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), - [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [4618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), - [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [4624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), - [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [4628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), - [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [4634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [4638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), - [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [4650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [4654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [4658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), - [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [4666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5372), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5372), - [4670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [4674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [4680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5783), - [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [4688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [4692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [4696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [4700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [4706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5323), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5323), - [4710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [4716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [4726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [4730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [4734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 0), - [4736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 0), - [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [4742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), - [4744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5823), - [4747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), - [4749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), - [4751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 104), - [4753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 104), - [4755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), - [4757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), - [4759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 104), - [4761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 104), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [4765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5378), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5378), - [4769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), - [4771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4690), - [4773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [4781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 1, 0, 0), - [4783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 1, 0, 0), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [4787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), - [4789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [4793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5783), - [4796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), - [4798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), - [4800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), - [4802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), - [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [4808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 1, 0, 0), - [4810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 1, 0, 0), - [4812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), - [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [4816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4667), - [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [4828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 0), - [4830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 0), - [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [4834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), - [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [4838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 31), - [4840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 31), - [4842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 83), - [4844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 83), - [4846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), - [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [4850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [4854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), - [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [4858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 187), - [4860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 187), - [4862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), - [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6667), - [4868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), - [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7645), - [4874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7645), - [4876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 43), - [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6510), - [4882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 1, 0, 0), - [4884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 1, 0, 0), - [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7428), - [4888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7428), - [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [4892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 2, 0, 0), - [4894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 2, 0, 0), - [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6872), - [4898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 21), - [4900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 21), - [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7611), - [4906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7611), - [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [4914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 31), - [4916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 31), - [4918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [4926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 2, 0, 15), - [4928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 2, 0, 29), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [4932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), - [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [4936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [4940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 21), - [4942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 21), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [4946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4873), - [4948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3357), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5756), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [4960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7591), - [4966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7591), - [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6826), - [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [4974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6363), - [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), - [4978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3502), - [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [4982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), - [4984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), - [4986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag, 1, 0, 0), - [4988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag, 1, 0, 0), - [4990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 96), - [4992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 96), - [4994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 97), - [4996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 97), - [4998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 4, 0, 141), - [5000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 4, 0, 141), - [5002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 4, 0, 142), - [5004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 4, 0, 142), - [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5801), - [5008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 1, 0, 0), - [5010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 1, 0, 0), - [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5665), - [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [5016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [5018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [5020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 96), - [5022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 96), - [5024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 97), - [5026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 97), - [5028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 4, 0, 141), - [5030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 4, 0, 141), - [5032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 4, 0, 142), - [5034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 4, 0, 142), - [5036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 10, 0), - [5038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blosure, 1, 10, 0), - [5040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 0, 0), - [5042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blosure, 1, 0, 0), - [5044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 2, 0, 0), - [5046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 2, 0, 0), - [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6917), - [5050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), - [5052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 82), - [5054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 82), - [5056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), - [5059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), - [5062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 194), - [5064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 194), - [5066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5756), - [5069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 156), - [5071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 156), - [5073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 83), - [5075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 83), - [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7088), - [5079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 158), - [5081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 158), - [5083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5665), - [5086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5801), - [5089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5817), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [5095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 8), - [5097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 8), - [5099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 1, 0, 0), - [5101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 1, 0, 0), - [5103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 2, 0, 0), - [5105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 2, 0, 0), - [5107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 7), - [5109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 7), - [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), - [5119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5370), - [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), - [5123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [5126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), - [5128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [5130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), - [5132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 50), - [5134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 50), - [5136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 156), - [5138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 156), - [5140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 157), - [5142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 157), - [5144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 158), - [5146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 158), - [5148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 193), - [5150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 193), - [5152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2349), - [5155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 83), - [5157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 83), - [5159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5717), - [5161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7245), - [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7245), - [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7683), - [5167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7683), - [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), - [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6607), - [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), - [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6856), - [5181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 193), - [5183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 193), - [5185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 194), - [5187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 194), - [5189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4772), - [5191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5344), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5345), - [5195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 82), - [5197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 82), - [5199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 155), - [5201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 155), - [5203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 155), - [5205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 155), - [5207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5817), - [5210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), - [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [5214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 82), - [5216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 82), - [5218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 157), - [5220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 157), - [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [5230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 193), SHIFT(2349), - [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [5245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), - [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [5271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 82), SHIFT(2349), - [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [5288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4997), - [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [5296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 155), SHIFT(2349), - [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [5307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 157), SHIFT(2349), - [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [5316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4672), - [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [5320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), - [5322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), - [5324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), - [5326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), - [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6898), - [5330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5367), - [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5368), - [5334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [5336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5717), - [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [5341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3020), - [5343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), - [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), - [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), - [5351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2959), - [5353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), - [5355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), - [5357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), - [5359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), - [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [5363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), - [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [5387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), - [5389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), - [5391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), - [5393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6415), - [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [5397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), - [5399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2844), - [5401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), - [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [5411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), - [5413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2997), - [5415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), - [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6403), - [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [5421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), - [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), - [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), - [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), - [5429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), - [5431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), - [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [5443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), - [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), - [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [5451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2919), - [5453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(7245), - [5456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(7245), - [5459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(7683), - [5462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(7683), - [5465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(5666), - [5468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(6080), - [5471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(5892), - [5474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(6458), - [5477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(5413), - [5480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5826), - [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5562), - [5484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7470), - [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6571), - [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [5490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5839), - [5492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), - [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), - [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), - [5500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5112), - [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5112), - [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7518), - [5506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7518), - [5508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), - [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [5512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), - [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [5516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), - [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [5520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), - [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), - [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), - [5526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5826), - [5529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5832), - [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), - [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [5537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5839), - [5540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(2666), - [5543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 145), - [5545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6979), - [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [5549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6170), - [5551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5832), - [5554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(2673), - [5557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6258), - [5559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6260), - [5561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6394), - [5563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 19), - [5565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 51), - [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [5569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 52), - [5571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7050), - [5573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), - [5575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), - [5577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(2629), - [5580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), - [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), - [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), - [5588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3064), - [5590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), - [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), - [5594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), - [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [5598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 4, 0, 105), - [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), - [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5669), - [5604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6943), - [5606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6951), - [5608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), - [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [5612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5669), - [5615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), - [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [5619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [5622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [5624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), - [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [5628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), - [5630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), - [5632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5333), - [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5333), - [5636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), - [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [5640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), - [5642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), - [5645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5730), - [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), - [5649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 19), - [5651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), - [5653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5831), - [5655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), - [5657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), - [5660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5840), - [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7681), - [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7538), - [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7202), - [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7316), - [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [5676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5304), - [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5305), - [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [5682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), - [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), - [5686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), - [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), - [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7083), - [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [5698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2795), - [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [5703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6231), - [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5922), - [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5742), - [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), - [5711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), - [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [5715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), - [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [5719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2738), - [5722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5833), - [5724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), - [5726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 16), - [5728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), - [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [5732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 16), - [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7497), - [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [5738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6568), - [5740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5652), - [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5654), - [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5957), - [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5848), - [5748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), - [5750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5331), - [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), - [5754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), - [5756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), - [5759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), - [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), - [5763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 2, 0, 0), - [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), - [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [5769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2835), - [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [5774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), - [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), - [5780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), - [5782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), - [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [5786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), - [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [5790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), - [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [5794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), - [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [5798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5320), - [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5320), - [5802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5840), - [5805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2878), - [5808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 202), - [5810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 202), - [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), - [5818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), - [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), - [5822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), - [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), - [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), - [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [5830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, 0, 16), - [5832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3111), - [5834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), - [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [5838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2898), - [5840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), - [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [5844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), - [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6987), - [5850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), - [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [5854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), - [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [5858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5833), - [5861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), - [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [5865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), - [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), - [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [5873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2876), - [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), - [5877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5325), - [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5325), - [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), - [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), - [5889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), - [5891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), - [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), - [5895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), - [5897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), - [5899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), - [5901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5126), - [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), - [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), - [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [5909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4979), - [5911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4981), - [5913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4906), - [5915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4919), - [5917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4902), - [5919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4876), - [5921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2991), - [5924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5027), - [5926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5028), - [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), - [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), - [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), - [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), - [5938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), - [5940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), - [5942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), - [5944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), - [5946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(3001), - [5949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5127), - [5951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2946), - [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), - [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), - [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), - [5963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), - [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), - [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), - [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [5975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5006), - [5977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5007), - [5979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), - [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), - [5983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2975), - [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [5987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3063), - [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [5998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), - [6000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), - [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), - [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6731), - [6007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 4, 0, 232), - [6009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 4, 0, 232), - [6011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, 0, 16), - [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [6015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 4, 0, 202), - [6017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 4, 0, 202), - [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), - [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [6023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 198), - [6025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 198), - [6027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 200), - [6029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 200), - [6031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), - [6033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 111), - [6035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 111), - [6037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 112), - [6039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 112), - [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), - [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), - [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5211), - [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5181), - [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5183), - [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [6059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), - [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), - [6066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 199), - [6068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 199), - [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6251), - [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [6074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), - [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), - [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), - [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6563), - [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), - [6086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), - [6089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5820), - [6092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5820), - [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7596), - [6096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3152), - [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), - [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), - [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), - [6104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3523), - [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [6182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 3, 0, 0), - [6184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 3, 0, 0), - [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5299), - [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [6190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 4, 0, 0), - [6192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 4, 0, 0), - [6194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 2, 0, 0), - [6196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 2, 0, 0), - [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4940), - [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7217), - [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), - [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), - [6216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 180), SHIFT_REPEAT(5211), - [6219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 180), SHIFT_REPEAT(5181), - [6222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 180), SHIFT_REPEAT(5183), - [6225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), - [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), - [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4815), - [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), - [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4719), - [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [6251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), - [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), - [6255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), - [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), - [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), - [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), - [6263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5828), - [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), - [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), - [6271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3360), - [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), - [6275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), - [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), - [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), - [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), - [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [6285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3370), - [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), - [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6479), - [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [6293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3830), - [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), - [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), - [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6123), - [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), - [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), - [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), - [6311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5828), - [6314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), - [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [6318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5312), - [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5312), - [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), - [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), - [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7246), - [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6775), - [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6777), - [6334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), - [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [6338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), - [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), - [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), - [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), - [6348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(3454), - [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), - [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), - [6355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), - [6357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7472), - [6359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 98), - [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), - [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), - [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), - [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), - [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), - [6371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7649), - [6373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7707), - [6375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7453), - [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), - [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5771), - [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), - [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), - [6385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), - [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), - [6389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5838), - [6391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3255), - [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), - [6395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5771), - [6398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5382), - [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5382), - [6402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5137), - [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5197), - [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), - [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), - [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), - [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [6416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), - [6418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5175), - [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5287), - [6422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5838), - [6425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5160), - [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5274), - [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), - [6431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5806), - [6434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5142), - [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5199), - [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), - [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), - [6442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3561), - [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5806), - [6448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4252), - [6450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4454), - [6452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), - [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), - [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6148), - [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [6462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4607), - [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), - [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), - [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), - [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [6472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5166), - [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5223), - [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), - [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), - [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6751), - [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [6484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4897), - [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), - [6488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3397), - [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), - [6492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), - [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), - [6496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), - [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), - [6500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), - [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [6576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5356), - [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), - [6580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5358), - [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5358), - [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [6588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4577), - [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [6594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 0), - [6596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7414), - [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7414), - [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [6604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 2, 0, 0), - [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [6636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 0), - [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [6650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 0), - [6652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7488), - [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7488), - [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [6674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 1, 0, 0), - [6676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [6690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), - [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [6698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4210), - [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), - [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), - [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), - [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), - [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), - [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), - [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6375), - [6714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4297), - [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), - [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), - [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), - [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6343), - [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), - [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), - [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), - [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [6732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4503), - [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), - [6736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3965), - [6738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4060), - [6740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4003), - [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), - [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), - [6746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3849), - [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), - [6750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4524), - [6752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3865), - [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), - [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), - [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), - [6760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4125), - [6762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4463), - [6764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4246), - [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), - [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), - [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [6772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4575), - [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), - [6776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4035), - [6778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4144), - [6780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4079), - [6782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3842), - [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), - [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), - [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), - [6790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3961), - [6792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4659), - [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), - [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), - [6798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3887), - [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), - [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), - [6804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3901), - [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), - [6808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4893), - [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), - [6812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4451), - [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), - [6816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4219), - [6818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4574), - [6820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4494), - [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), - [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), - [6826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3844), - [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), - [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), - [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), - [6834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4075), - [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), - [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), - [6840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4583), - [6842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3937), - [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), - [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), - [6848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5830), - [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6391), - [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [6854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4653), - [6856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4087), - [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), - [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), - [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), - [6864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3848), - [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), - [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), - [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), - [6872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4516), - [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), - [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), - [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), - [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), - [6882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3938), - [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), - [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), - [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), - [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), - [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6711), - [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6407), - [6896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4505), - [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), - [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4657), - [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), - [6904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3956), - [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), - [6908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3845), - [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), - [6912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5827), - [6914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3972), - [6916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4080), - [6918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4029), - [6920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4082), - [6922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5830), - [6925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5090), - [6927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5327), - [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5327), - [6931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3867), - [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), - [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), - [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), - [6939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4746), - [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), - [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), - [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), - [6947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5825), - [6949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4639), - [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), - [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), - [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), - [6957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3927), - [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), - [6961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4691), - [6963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4694), - [6965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4850), - [6967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5324), - [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5324), - [6971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4083), - [6973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3847), - [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), - [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), - [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), - [6981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5827), - [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), - [6986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3993), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), - [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), - [6992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(4065), - [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), - [6997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 3, 0, 82), - [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6687), - [7001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4160), - [7003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4281), - [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), - [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), - [7009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 62), - [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5048), - [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), - [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7301), - [7019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 62), - [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), - [7023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5308), - [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5308), - [7027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5837), - [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), - [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), - [7033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3884), - [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), - [7037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4117), - [7039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4141), - [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), - [7043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4056), - [7045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4218), - [7047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5825), - [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5821), - [7052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 3, 0, 83), - [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), - [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), - [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), - [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), - [7062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5837), - [7065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4242), - [7067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 3, 0, 0), - [7069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 3, 0, 0), - [7071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3851), - [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), - [7075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3902), - [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), - [7079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5348), - [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5348), - [7083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3881), - [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), - [7087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3882), - [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), - [7091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3883), - [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), - [7095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5306), - [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5306), - [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), - [7101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4288), - [7103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4289), - [7105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 2, 0, 0), - [7107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 2, 0, 0), - [7109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5821), - [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), - [7114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 74), - [7116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 74), - [7118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3885), - [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), - [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4279), - [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), - [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5810), - [7128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5317), - [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5317), - [7132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 59), - [7134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 59), - [7136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 59), - [7138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 59), - [7140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 117), - [7142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 117), - [7144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3898), - [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), - [7148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 62), - [7150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 62), - [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), - [7154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 31), - [7156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 31), - [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), - [7160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3897), - [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), - [7164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5330), - [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5330), - [7168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), - [7170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), - [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), - [7174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3969), - [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), - [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), - [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555), - [7182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3899), - [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), - [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), - [7188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 117), - [7190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 117), - [7192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 32), - [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), - [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), - [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), - [7200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5836), - [7202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), - [7204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), - [7206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), - [7208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1036), - [7211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(750), - [7214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(3333), - [7217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), - [7219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 126), - [7221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 191), - [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), - [7225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 191), - [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), - [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), - [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), - [7233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 192), - [7235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 227), - [7237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 191), SHIFT(750), - [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), - [7242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 227), - [7244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 227), SHIFT(750), - [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), - [7249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4523), - [7251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4711), - [7253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 192), - [7255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 126), - [7257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5310), - [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5310), - [7261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 192), SHIFT(750), - [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), - [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), - [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), - [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), - [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), - [7274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 126), - [7276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 126), SHIFT(750), - [7279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4601), - [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [7283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5810), - [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), - [7288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3895), - [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), - [7292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3924), - [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), - [7296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3936), - [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), - [7300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3912), - [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), - [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), - [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4695), - [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [7310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4600), - [7312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_cmd, 2, 0, 13), - [7314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_cmd, 2, 0, 13), - [7316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 32), - [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), - [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), - [7322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 80), - [7324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 80), - [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), - [7328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4569), - [7330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4570), - [7332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 107), - [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), - [7336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 32), - [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), - [7340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 107), - [7342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 31), - [7344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 31), - [7346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4349), - [7348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4645), - [7350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, 0, 4), - [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [7354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), SHIFT(750), - [7357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), - [7359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 2, 0, 163), - [7361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 2, 0, 163), - [7363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3977), - [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), - [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [7369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4717), - [7371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4723), - [7373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4024), - [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), - [7377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4536), - [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4985), - [7381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4007), - [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), - [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4877), - [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5347), - [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7546), - [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7329), - [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7552), - [7397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7571), - [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), - [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4838), - [7403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 0, 73), - [7405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6604), - [7407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), - [7409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5913), - [7411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5672), - [7413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5123), - [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), - [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), - [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), - [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [7423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [7425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), - [7427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3987), - [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), - [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), - [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), - [7435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 36), - [7437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4641), - [7439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 37), - [7441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 3, 0, 205), - [7443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 3, 0, 205), - [7445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4674), - [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [7449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5328), - [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5328), - [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6449), - [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6481), - [7457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), - [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), - [7461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(4877), - [7464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), - [7466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7546), - [7469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7329), - [7472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7552), - [7475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7571), - [7478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4890), - [7480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), SHIFT(750), - [7483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), - [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [7487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), - [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), - [7491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), - [7493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), - [7495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6935), - [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [7501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), - [7503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), SHIFT_REPEAT(400), - [7506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4662), - [7508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4465), - [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), - [7513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 4, 0, 233), - [7515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 4, 0, 233), - [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6422), - [7519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5836), - [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6443), - [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), - [7526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6232), - [7528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), - [7530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5888), - [7532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5722), - [7534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4923), - [7536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), - [7538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4642), - [7540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 77), - [7542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 77), - [7544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4658), - [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5051), - [7548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), - [7550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), - [7552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 78), - [7554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 78), - [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4930), - [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4960), - [7560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 154), SHIFT(750), - [7563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 154), - [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [7567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(303), - [7570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(5658), - [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4867), - [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5052), - [7577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 104), - [7579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 104), - [7581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 153), SHIFT(750), - [7584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 153), - [7586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [7588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 3, 0, 130), - [7590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 3, 0, 130), - [7592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(305), - [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [7597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), - [7599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), SHIFT_REPEAT(452), - [7602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 79), - [7604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 79), - [7606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5700), - [7608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5700), - [7610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6210), - [7612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6221), - [7614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [7616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 2, 0, 24), - [7618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6414), - [7620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 188), SHIFT(750), - [7623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 188), - [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [7627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), SHIFT(750), - [7630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), - [7632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(292), - [7635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), SHIFT(750), - [7638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), - [7640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 24), SHIFT(750), - [7643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 24), - [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5694), - [7647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 76), - [7649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 76), - [7651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [7655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 36), - [7657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 153), SHIFT(750), - [7660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 153), - [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [7664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 106), SHIFT(750), - [7667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 106), - [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5660), - [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [7673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_type, 1, 0, 93), - [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5393), - [7677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flat_type, 1, 0, 93), - [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), - [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), - [7683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 57), SHIFT(750), - [7686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 57), - [7688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [7690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 154), SHIFT(750), - [7693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 154), - [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [7697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 188), SHIFT(750), - [7700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 188), - [7702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [7704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 24), SHIFT(750), - [7707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 24), - [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5702), - [7711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 106), SHIFT(750), - [7714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 106), - [7716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5797), - [7718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 37), - [7720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 75), - [7722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 75), - [7724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 2, 0, 94), - [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [7728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 2, 0, 94), - [7730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(5870), - [7733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 139), - [7735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 139), - [7737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 3, 0, 73), - [7739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(312), - [7742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 1, 0, 4), - [7744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 4, 0, 0), - [7746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 4, 0, 0), - [7748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 81), SHIFT_REPEAT(447), - [7751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 81), SHIFT_REPEAT(447), - [7754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 81), - [7756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 36), - [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [7760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 179), - [7762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 179), - [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6638), - [7766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), - [7768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), - [7770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 104), - [7772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 104), - [7774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 37), - [7776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 0, 73), - [7778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, 0, 4), - [7780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 57), SHIFT(750), - [7783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 57), - [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [7787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 3, 0, 57), - [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [7791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6476), - [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5383), - [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5570), - [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), - [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6984), - [7801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression, 1, 0, 2), - [7803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 2), - [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [7807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 1, 0, 95), - [7809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_annotation, 1, 0, 95), - [7811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 5, 0, 237), - [7813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 5, 0, 237), - [7815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6763), - [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5415), - [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5636), - [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5630), - [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [7825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6537), - [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5251), - [7829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5251), - [7831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5407), - [7833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5314), - [7835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 5), - [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6520), - [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), - [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6193), - [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5909), - [7845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression, 1, 0, 1), - [7847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 1), - [7849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 113), - [7851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 0), - [7853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_long_flag, 2, 0, 0), - [7855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_long_flag, 2, 0, 0), - [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6330), - [7859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5725), - [7861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5676), - [7863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [7865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5053), - [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [7869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 8, 0, 113), - [7871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 58), - [7873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5099), - [7875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 58), - [7877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 33), - [7879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 33), - [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6151), - [7883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 113), - [7885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 108), - [7887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6157), - [7889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 161), - [7891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 8, 0, 110), - [7893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 77), - [7895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 77), - [7897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 7, 0, 110), - [7899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_return, 2, 0, 0), - [7901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5464), - [7903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5483), - [7905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 7, 0, 113), - [7907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 3, 0, 0), - [7909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 3, 0, 0), - [7911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 110), - [7913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 3, 0, 0), - [7915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 3, 0, 0), - [7917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 33), - [7919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6306), - [7921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 160), - [7923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), - [7925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 3, 0, 0), - [7927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, 0, 209), - [7929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, 0, 209), - [7931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 211), - [7933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 211), - [7935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 212), - [7937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 212), - [7939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 110), - [7941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 4, 0, 124), - [7943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 6, 0, 110), - [7945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 6, 0, 113), - [7947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 108), - [7949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [7951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6276), - [7953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), - [7955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5318), - [7957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5538), - [7959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5392), - [7961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), - [7963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), - [7965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 124), - [7967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 5), - [7969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 0), - [7971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5012), - [7973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5220), - [7975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 20), - [7977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), - [7979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5294), - [7981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 240), - [7983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 241), - [7985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7251), - [7987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 242), - [7989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 243), - [7991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 244), - [7993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 245), - [7995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 246), - [7997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 247), - [7999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 248), - [8001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 249), - [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5919), - [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6918), - [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6220), - [8009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 255), - [8011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 256), - [8013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 257), - [8015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 258), - [8017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 259), - [8019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 260), - [8021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 261), - [8023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 262), - [8025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 263), - [8027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 265), - [8029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 266), - [8031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 267), - [8033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 268), - [8035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 269), - [8037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 270), - [8039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 271), - [8041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 272), - [8043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6077), - [8045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [8047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [8049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6211), - [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5871), - [8053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5871), - [8055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6597), - [8057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6053), - [8059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5764), - [8061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5764), - [8063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6217), - [8065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5926), - [8067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6063), - [8069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6063), - [8071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6617), - [8073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6383), - [8075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7433), - [8077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), - [8079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), - [8081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 3, 0, 162), - [8083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 3, 0, 162), - [8085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 54), - [8087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 178), - [8089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 178), - [8091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5602), - [8093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5594), - [8095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 160), - [8097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 161), - [8099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 189), - [8101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 190), - [8103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3081), - [8105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 0), - [8107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6101), - [8109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7265), - [8111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5326), - [8113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5605), - [8115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5414), - [8117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), - [8119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 60), - [8121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 60), - [8123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 2), - [8125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 61), - [8127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 61), - [8129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 63), - [8131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 63), - [8133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_opt, 2, 0, 115), - [8135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_opt, 2, 0, 115), - [8137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 2, 0, 116), - [8139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 2, 0, 116), - [8141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 2, 0, 21), - [8143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 2, 0, 21), - [8145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_short_flag, 2, 0, 21), - [8147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_short_flag, 2, 0, 21), - [8149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5111), - [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5244), - [8153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5178), - [8155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5247), - [8157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 3, 0, 31), - [8159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 3, 0, 31), - [8161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 3, 0, 0), - [8163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 3, 0, 0), - [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [8167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6889), - [8169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5130), - [8171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5276), - [8173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5168), - [8175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5277), - [8177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flag_capsule, 3, 0, 0), - [8179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flag_capsule, 3, 0, 0), - [8181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 138), - [8183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 138), - [8185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 5, 0, 213), - [8187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 5, 0, 213), - [8189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 219), - [8191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 220), - [8193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 221), - [8195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 222), - [8197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 223), - [8199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 224), - [8201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 225), - [8203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 226), - [8205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 1), - [8207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6519), - [8209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5964), - [8211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7171), - [8213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6078), - [8215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, 0, 125), - [8217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5340), - [8219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5307), - [8221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [8223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 3, 0, 67), - [8225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [8227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 62), - [8229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 62), - [8231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5359), - [8233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5853), - [8235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5741), - [8237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5233), - [8239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5375), - [8241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 117), - [8243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 117), - [8245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5279), - [8247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), - [8249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5340), - [8252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5307), - [8255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7594), - [8257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, 0, 125), - [8259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [8261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5248), - [8263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), - [8265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7705), - [8267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, 0, 67), - [8269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [8271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5456), - [8273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5184), - [8275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5349), - [8277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), - [8279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), - [8281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5354), - [8283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5165), - [8285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5341), - [8287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5188), - [8289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), - [8291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), - [8293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), SHIFT_REPEAT(5238), - [8296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), - [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5261), - [8300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5301), - [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [8304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6302), - [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7701), - [8308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6335), - [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6379), - [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [8316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6271), - [8318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7668), - [8320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577), - [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7703), - [8324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 59), - [8326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 59), - [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6178), - [8330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5224), - [8332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6520), - [8334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5716), - [8336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6193), - [8338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5909), - [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5518), - [8342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5399), - [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [8346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5860), - [8348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5640), - [8350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5955), - [8352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [8354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [8356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6423), - [8358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [8360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [8362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5218), - [8364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5409), - [8366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), - [8368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), - [8370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), - [8372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), - [8374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5332), - [8376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5478), - [8378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5703), - [8381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6897), - [8383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5388), - [8385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), - [8387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6367), - [8389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5415), - [8391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5636), - [8393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5630), - [8395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), - [8397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5919), - [8399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6918), - [8401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6220), - [8403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4987), - [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5055), - [8407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6542), - [8409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6543), - [8411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5703), - [8413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [8415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [8417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5291), - [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5490), - [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5355), - [8423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(5347), - [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [8428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), - [8430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5302), - [8434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), - [8436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), - [8438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), - [8440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [8442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4830), - [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5050), - [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6570), - [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6082), - [8450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5285), - [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5474), - [8454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3945), - [8456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4048), - [8458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3952), - [8460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4074), - [8462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4256), - [8464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4146), - [8466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3894), - [8468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3957), - [8470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3949), - [8472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3982), - [8474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4126), - [8476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4093), - [8478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5740), - [8480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5326), - [8482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5605), - [8484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5414), - [8486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5964), - [8488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7171), - [8490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6078), - [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6527), - [8494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6366), - [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5360), - [8498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5481), - [8500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6403), - [8502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2983), - [8504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2923), - [8506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5518), - [8509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5399), - [8512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5860), - [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5640), - [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5353), - [8518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5401), - [8520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4254), - [8522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4196), - [8524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6407), - [8526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4657), - [8528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4614), - [8530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5383), - [8532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5570), - [8534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5408), - [8536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6250), - [8538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6252), - [8540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6454), - [8542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5407), - [8544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5314), - [8546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6211), - [8548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6168), - [8550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), - [8552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), - [8554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [8556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5476), - [8558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6287), - [8560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), - [8562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), - [8564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), - [8566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), - [8568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6597), - [8570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6053), - [8572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5410), - [8574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6217), - [8576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5926), - [8578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), - [8580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), - [8582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5319), - [8584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5531), - [8586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5397), - [8588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5592), - [8590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5740), - [8593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5377), - [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5618), - [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5511), - [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5619), - [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6415), - [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), - [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), - [8609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5521), - [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), - [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6430), - [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [8627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5479), - [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5504), - [8633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 9), - [8635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_name, 1, 0, 9), - [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5482), - [8639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4807), - [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4989), - [8643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6111), - [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6135), - [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), - [8649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 11), - [8651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_name, 1, 0, 11), - [8653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5376), - [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5610), - [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5514), - [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5614), - [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5395), - [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5557), - [8665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5329), - [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5542), - [8669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6859), - [8671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6873), - [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5597), - [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4936), - [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5534), - [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5651), - [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5627), - [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7215), - [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5624), - [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6936), - [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6937), - [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [8693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5591), - [8695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5853), - [8698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5741), - [8701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), - [8703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), - [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7240), - [8707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5394), - [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5641), - [8711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5581), - [8713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5583), - [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5790), - [8717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4829), - [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5026), - [8721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5795), - [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5210), - [8725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 210), SHIFT_REPEAT(5597), - [8728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 210), - [8730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 210), SHIFT_REPEAT(6190), - [8733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 210), SHIFT_REPEAT(4744), - [8736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5725), - [8739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5676), - [8742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 3, 0, 235), - [8744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5979), - [8746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [8748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [8750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 3, 0, 236), - [8752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5983), - [8754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [8756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5281), - [8758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5600), - [8760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5617), - [8762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5580), - [8764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [8766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4967), - [8768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5749), - [8770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7314), - [8772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7315), - [8774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260), - [8776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5998), - [8778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5972), - [8780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5316), - [8782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5316), - [8784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5655), - [8786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [8788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5962), - [8790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [8792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [8794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [8796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), - [8798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6927), - [8800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6705), - [8802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5730), - [8804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [8806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__all_type, 1, 0, 95), - [8808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 1, 0, 177), - [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), - [8812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5951), - [8814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5790), - [8817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5700), - [8820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5700), - [8823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4847), - [8825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), - [8827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5386), - [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5386), - [8831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7368), - [8833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5153), - [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), - [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [8839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 1, 0, 0), - [8841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 1, 0, 0), - [8843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5998), - [8846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5972), - [8849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5015), - [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5177), - [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7272), - [8855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7276), - [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), - [8861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7699), - [8863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 1, 0, 176), - [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), - [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5927), - [8869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5059), - [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5059), - [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5259), - [8875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5311), - [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5311), - [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [8881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5079), - [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), - [8885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5158), - [8887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5795), - [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6919), - [8892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6986), - [8894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [8896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5046), - [8898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5046), - [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5573), - [8904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5730), - [8907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5086), - [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5086), - [8911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5087), - [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5087), - [8915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5088), - [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5088), - [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [8921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 88), - [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [8925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), - [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7408), - [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [8931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 3, 0, 0), - [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [8935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), - [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5695), - [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6192), - [8941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), - [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5987), - [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6566), - [8947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6201), - [8951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [8953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 2, 0, 13), - [8955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [8957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [8959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5963), - [8961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [8963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [8965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [8967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [8971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5381), - [8973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5381), - [8975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 2, 0, 27), - [8977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 2, 0, 28), - [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5950), - [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6382), - [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5991), - [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6508), - [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5934), - [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6270), - [8991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5315), - [8993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 42), - [8995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5309), - [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5309), - [8999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5749), - [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), - [9008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 3, 0, 44), - [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), - [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5670), - [9014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6410), - [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6273), - [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [9020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2454), - [9022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4881), - [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5056), - [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5971), - [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [9032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5419), - [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6169), - [9038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [9040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), - [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5421), - [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6288), - [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6022), - [9048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5994), - [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6274), - [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4958), - [9054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4853), - [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [9060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5416), - [9062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [9064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5995), - [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [9070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), - [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), - [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6303), - [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5900), - [9078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5976), - [9080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4785), - [9082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4800), - [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [9088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), - [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), - [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4149), - [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6317), - [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [9102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), - [9104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5697), - [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6249), - [9108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [9110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [9112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5472), - [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5489), - [9116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), - [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4975), - [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4978), - [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5445), - [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5447), - [9126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6331), - [9128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [9130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), - [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [9134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6336), - [9142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [9144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), - [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), - [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), - [9150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(124), - [9153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(6201), - [9156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 72), - [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), - [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), - [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), - [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), - [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), - [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), - [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6340), - [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), - [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), - [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), - [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), - [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), - [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), - [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), - [9190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), - [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), - [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), - [9196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4571), - [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6352), - [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [9206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), - [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6356), - [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [9216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), - [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [9222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), - [9224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4491), - [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6364), - [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [9230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), - [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6372), - [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [9236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [9238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6548), - [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6376), - [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), - [9244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4201), - [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6380), - [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [9250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), - [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6384), - [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), - [9256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4077), - [9258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6388), - [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), - [9262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3406), - [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6396), - [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [9268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), - [9270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6400), - [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), - [9274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4034), - [9276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6404), - [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7168), - [9280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6408), - [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [9284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), - [9286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6412), - [9288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), - [9290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), - [9292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6416), - [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [9296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6420), - [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [9302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [9304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4651), - [9306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6424), - [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), - [9310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4296), - [9312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), - [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6428), - [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), - [9318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), - [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6433), - [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), - [9324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), - [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6435), - [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [9330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [9332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6437), - [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [9336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), - [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6439), - [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [9342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6441), - [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [9348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [9354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5999), - [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [9358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 253), - [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5891), - [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), - [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5925), - [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [9368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 254), - [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5898), - [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5693), - [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6174), - [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5908), - [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), - [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [9394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5369), - [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5369), - [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5563), - [9400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5138), - [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5138), - [9404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5139), - [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5139), - [9408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5140), - [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5140), - [9412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 2, 0, 0), - [9414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6902), - [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), - [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), - [9426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 253), - [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [9432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), - [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), - [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [9438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 254), - [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), - [9442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5156), - [9444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5156), - [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [9448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4955), - [9452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5700), - [9455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5700), - [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4848), - [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [9462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6051), - [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6051), - [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5936), - [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7025), - [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [9472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 176), - [9474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), - [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4784), - [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6291), - [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6526), - [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6626), - [9488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5313), - [9490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5313), - [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4799), - [9494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(117), - [9497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(6902), - [9500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 72), - [9502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [9504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [9506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [9508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6484), - [9510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 177), - [9512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [9514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6547), - [9516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7071), - [9518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [9520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5631), - [9522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6152), - [9524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [9526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [9528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [9532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5956), - [9534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6930), - [9536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5164), - [9538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5164), - [9540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5824), - [9542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), - [9544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [9546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [9548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [9550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6528), - [9552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5831), - [9554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 0, 203), - [9556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 0, 203), - [9558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6524), - [9560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6525), - [9562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 204), - [9564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 204), - [9566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 235), - [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4963), - [9570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5361), - [9572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5361), - [9574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 236), - [9576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), - [9578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6575), - [9580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [9582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6131), - [9584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [9586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [9588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6127), - [9590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [9592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6531), - [9594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [9596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [9598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [9600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), - [9602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), - [9604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [9606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5379), - [9608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5379), - [9610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5811), - [9612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5811), - [9614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5380), - [9616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5380), - [9618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5198), - [9620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5198), - [9622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5200), - [9624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5200), - [9626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5201), - [9628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5201), - [9630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5202), - [9632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5202), - [9634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5291), - [9636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6133), - [9638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [9640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_val_table_repeat1, 2, 0, 150), - [9642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4271), - [9644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4284), - [9646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4293), - [9648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4295), - [9650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4298), - [9652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), - [9654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), - [9656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6899), - [9658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 5, 0, 159), - [9660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 4, 0, 90), - [9662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), - [9664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5532), - [9666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6670), - [9668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [9670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [9672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), - [9674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement, 1, 0, 0), - [9676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), - [9678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), - [9680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), - [9682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), - [9684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), - [9686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), - [9688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), - [9690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), - [9692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 4, 0, 91), - [9694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5613), - [9696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5442), - [9698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4504), - [9700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5626), - [9702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5527), - [9704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 3, 0, 92), - [9706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [9708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), - [9710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4509), - [9712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, 0, 165), - [9714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, 0, 25), - [9716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4154), - [9718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4170), - [9720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4108), - [9722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4133), - [9724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4203), - [9726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4155), - [9728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), - [9730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4100), - [9732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 3, 0, 55), - [9734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), - [9736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, 0, 26), - [9738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), - [9740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5608), - [9742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7565), - [9744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 1, 0, 0), - [9746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), - [9748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_env, 2, 0, 30), - [9750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5545), - [9752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 174), - [9754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5491), - [9756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5497), - [9758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5499), - [9760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5500), - [9762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5503), - [9764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5505), - [9766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5507), - [9768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5509), - [9770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_while, 3, 0, 56), - [9772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 175), - [9774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4468), - [9776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), - [9778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_list, 2, 0, 0), - [9780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), - [9782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), - [9784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), - [9786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_interpolated, 3, 0, 0), - [9788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_interpolated, 3, 0, 0), - [9790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), - [9792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5448), - [9794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5452), - [9796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5455), - [9798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5457), - [9800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5459), - [9802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5460), - [9804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5462), - [9806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5463), - [9808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4230), - [9810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [9812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 144), - [9814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 182), - [9816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), - [9818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 183), - [9820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), - [9822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5377), - [9824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), - [9826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), - [9828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), - [9830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), - [9832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), - [9834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), - [9836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), - [9838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), - [9840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5352), - [9842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5352), - [9844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), - [9846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5351), - [9848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5351), - [9850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4781), - [9852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 1, 0, 3), - [9854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4727), - [9856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, 0, 195), - [9858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, 0, 196), - [9860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, 0, 197), - [9862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5298), - [9864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5298), - [9866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), - [9868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), - [9870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3948), - [9872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3918), - [9874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3915), - [9876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3925), - [9878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3932), - [9880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3933), - [9882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3907), - [9884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3942), - [9886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7170), - [9888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [9890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5553), - [9892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), - [9894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), - [9896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), - [9898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 4, 0, 109), - [9900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [9902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6682), - [9904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3873), - [9906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3879), - [9908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3868), - [9910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3855), - [9912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3859), - [9914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3860), - [9916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3863), - [9918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3864), - [9920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_statement, 1, 0, 0), - [9922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), - [9924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), - [9926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), - [9928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), - [9930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), - [9932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), - [9934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, 0, 206), - [9936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, 0, 207), - [9938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 208), - [9940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 5, 0, 135), - [9942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), - [9944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), - [9946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), - [9948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2813), - [9950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), - [9952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), - [9954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), - [9956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), - [9958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), - [9960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3532), - [9962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [9964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 4, 0, 0), - [9966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), - [9968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 182), - [9970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 215), - [9972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 183), - [9974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4428), - [9976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4432), - [9978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4434), - [9980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4435), - [9982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4439), - [9984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4440), - [9986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4442), - [9988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4443), - [9990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 136), - [9992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [9994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), - [9996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5528), - [9998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), - [10000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 137), - [10002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), - [10004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3487), - [10006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), - [10008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), - [10010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), - [10012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3485), - [10014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), - [10016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), - [10018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4211), - [10020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5984), - [10022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_hide, 1, 0, 0), - [10024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5901), - [10026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), - [10028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), - [10030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), - [10032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), - [10034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), - [10036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), - [10038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), - [10040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), - [10042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_overlay, 1, 0, 0), - [10044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3528), - [10046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5924), - [10048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5954), - [10050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [10052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [10054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [10056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [10058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [10060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [10062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [10064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [10066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [10068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), - [10070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), - [10072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [10074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), - [10076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), - [10078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 228), - [10080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [10082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [10084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [10086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [10088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [10090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [10092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [10094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [10096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 229), - [10098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), - [10100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [10102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), - [10104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 230), - [10106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), - [10108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), - [10110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), - [10112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), - [10114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [10116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5968), - [10118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), - [10120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3146), - [10122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [10124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3928), - [10126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3057), - [10128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), - [10130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 231), - [10132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4041), - [10134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4682), - [10136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4683), - [10138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 4, 0, 140), - [10140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), - [10142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), - [10144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), - [10146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), - [10148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3980), - [10150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), - [10152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), - [10154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5517), - [10156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), - [10158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), - [10160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3343), - [10162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [10164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [10166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [10168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6663), - [10170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5205), - [10172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), - [10174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3006), - [10176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), - [10178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), - [10180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), - [10182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), - [10184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3926), - [10186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4094), - [10188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4120), - [10190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5917), - [10192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5917), - [10194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), - [10196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), - [10198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), - [10200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), - [10202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4058), - [10204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4059), - [10206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [10208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), - [10210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), - [10212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 7, 0, 234), - [10214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4085), - [10216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [10218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [10220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 6, 0, 215), - [10222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), - [10224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [10226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), - [10228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), - [10230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), - [10232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3984), - [10234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), - [10236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), - [10238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6633), - [10240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6637), - [10242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4464), - [10244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), - [10246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), - [10248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [10250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2968), - [10252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), - [10254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), - [10256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [10258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [10260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 3, 0, 41), - [10262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [10264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), - [10266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [10268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [10270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4226), - [10272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4250), - [10274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [10276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), - [10278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), - [10280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [10282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [10284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [10286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), - [10288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2871), - [10290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [10292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [10294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [10296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [10298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), - [10300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), - [10302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [10304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [10306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 143), - [10308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [10310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, 0, 250), - [10312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5225), - [10314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5225), - [10316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [10318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5280), - [10320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5226), - [10322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5226), - [10324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5227), - [10326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5227), - [10328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5471), - [10330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 34), - [10332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 34), - [10334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, 0, 251), - [10336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), - [10338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), - [10340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5873), - [10342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5873), - [10344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), - [10346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, 0, 252), - [10348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5519), - [10350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), - [10352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let, 2, 0, 10), - [10354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_body, 1, 0, 0), - [10356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), - [10358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut, 2, 0, 10), - [10360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), - [10362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), - [10364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 3, 0, 64), - [10366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 3, 0, 65), - [10368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 3, 0, 29), - [10370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), - [10372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_env, 3, 0, 66), - [10374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5831), - [10377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), - [10379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), - [10381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), - [10383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3462), - [10385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), - [10387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 2, 0, 10), - [10389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 45), - [10391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_hide, 3, 0, 68), - [10393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_new, 3, 0, 69), - [10395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 9, 0, 264), - [10397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 46), - [10399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), - [10401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), - [10403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), - [10405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), - [10407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), - [10409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), - [10411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), - [10413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), - [10415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5988), - [10417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5578), - [10419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 47), - [10421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), - [10423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 48), - [10425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6668), - [10427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6852), - [10429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [10431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [10433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [10435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 49), - [10437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [10439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), - [10441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_export, 2, 0, 12), - [10443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), - [10445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7010), - [10447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6949), - [10449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6956), - [10451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [10453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5422), - [10455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5426), - [10457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5428), - [10459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5429), - [10461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5432), - [10463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5433), - [10465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5435), - [10467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5436), - [10469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5824), - [10472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 3, 0, 144), - [10474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3150), - [10476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), - [10478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5567), - [10480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), - [10482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [10484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), - [10486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5577), - [10488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5584), - [10490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), - [10492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), - [10494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), - [10496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [10498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [10500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), - [10502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [10504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), - [10506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5357), - [10508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5357), - [10510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5288), - [10512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5288), - [10514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), - [10516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 4, 0, 99), - [10518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 4, 0, 89), - [10520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [10522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4528), - [10524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 100), - [10526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5601), - [10528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), - [10530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4548), - [10532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), - [10534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 2, 0, 0), - [10536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2, 0, 0), - [10538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2, 0, 0), SHIFT_REPEAT(6899), - [10541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_loop, 2, 0, 12), - [10543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4220), - [10545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4251), - [10547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4265), - [10549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern, 3, 0, 82), - [10551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3871), - [10553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), - [10555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6903), - [10557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), - [10559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_parenthesized, 1, 0, 3), - [10561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), - [10563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), - [10565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), - [10567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), - [10569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), - [10571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), - [10573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), - [10575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [10577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 3, 0, 41), - [10579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), - [10581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4833), - [10583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4934), - [10585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4129), - [10587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4968), - [10589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4109), - [10591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4112), - [10593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4116), - [10595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4105), - [10597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4168), - [10599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4113), - [10601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4208), - [10603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6259), - [10605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5568), - [10607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [10609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5587), - [10611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5590), - [10613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [10615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [10617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5488), - [10619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5492), - [10621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5493), - [10623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5494), - [10625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5498), - [10627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5501), - [10629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5502), - [10631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5506), - [10633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [10635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1252), - [10638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), - [10640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5681), - [10642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7398), - [10644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7353), - [10646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), - [10648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), - [10650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), - [10652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), - [10654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), - [10656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5446), - [10658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5449), - [10660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5450), - [10662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5451), - [10664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5454), - [10666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5523), - [10668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5458), - [10670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [10672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7356), - [10674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5461), - [10676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 51), - [10678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), - [10680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 52), - [10682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), - [10684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), - [10686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), - [10688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), - [10690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), - [10692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), - [10694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), - [10696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [10698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), - [10700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), - [10702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 51), - [10704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [10706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5061), - [10708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_parenthesized, 2, 0, 10), - [10710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 105), - [10712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 52), - [10714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), - [10716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [10718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3944), - [10720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3914), - [10722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3916), - [10724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3917), - [10726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3913), - [10728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3929), - [10730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3930), - [10732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3934), - [10734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_parenthesized, 2, 0, 10), - [10736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 2, 0, 10), - [10738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7241), - [10740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), - [10742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), - [10744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), - [10746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), - [10748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), - [10750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), - [10752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3874), - [10754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3875), - [10756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3878), - [10758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3866), - [10760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3858), - [10762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3870), - [10764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5282), - [10766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3861), - [10768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5628), - [10770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 0), - [10772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [10774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), - [10776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), - [10778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [10780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), - [10782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 31), - [10784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), - [10786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2818), - [10788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), - [10790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), - [10792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), - [10794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2798), - [10796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), - [10798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), - [10800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [10802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), - [10804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [10806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4425), - [10808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4429), - [10810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4430), - [10812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4431), - [10814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4433), - [10816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4436), - [10818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4437), - [10820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4441), - [10822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4939), - [10824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), - [10826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized, 1, 0, 0), - [10828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4852), - [10830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3477), - [10832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), - [10834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3473), - [10836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), - [10838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), - [10840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), - [10842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), - [10844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3467), - [10846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5062), - [10848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), - [10850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), - [10852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), - [10854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), - [10856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), - [10858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), - [10860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), - [10862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2703), - [10864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 1, 0, 19), - [10866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [10868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [10870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [10872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [10874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [10876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [10878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [10880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [10882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [10884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7652), - [10886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7012), - [10888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6171), - [10890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [10892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6173), - [10894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [10896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [10898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [10900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7475), - [10902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [10904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [10906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [10908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [10910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [10912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5525), - [10914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5526), - [10916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5529), - [10918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7485), - [10920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [10922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), - [10924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), - [10926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), - [10928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), - [10930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), - [10932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), - [10934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), - [10936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 5, 0, 135), - [10938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), - [10940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), - [10942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 4, 0, 140), - [10944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), - [10946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_parenthesized, 1, 0, 0), - [10948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [10950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1, 0, 0), - [10952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1, 0, 0), - [10954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5683), - [10956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), - [10958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), - [10960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 1, 0, 70), - [10962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7201), - [10964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6562), - [10966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [10968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7264), - [10970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7407), - [10972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [10974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7307), - [10976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [10978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5569), - [10980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [10982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5420), - [10984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5880), - [10986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7326), - [10988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [10990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5423), - [10992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5424), - [10994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4797), - [10996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7404), - [10998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5427), - [11000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1, 0, 0), - [11002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5642), - [11004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5430), - [11006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5431), - [11008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), - [11010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5434), - [11012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), - [11014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7581), - [11016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 129), - [11018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 129), SHIFT_REPEAT(6903), - [11021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), - [11023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7517), - [11025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), - [11027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5114), - [11029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7582), - [11031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4827), - [11033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [11035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7193), - [11037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), - [11039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4875), - [11041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), - [11043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [11045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), - [11047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), - [11049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), - [11051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), - [11053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), - [11055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), - [11057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7653), - [11059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), - [11061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [11063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), - [11065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), - [11067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5680), - [11069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5686), - [11071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [11073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), - [11075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), - [11077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5711), - [11079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7164), - [11081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5715), - [11083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6660), - [11085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(7353), - [11088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [11090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5727), - [11092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5729), - [11094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5868), - [11096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5869), - [11098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5737), - [11100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5739), - [11102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5747), - [11104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5748), - [11106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5754), - [11108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5755), - [11110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5761), - [11112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5762), - [11114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5769), - [11116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5770), - [11118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [11120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5776), - [11122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5777), - [11124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [11126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5781), - [11128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), - [11130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7708), - [11132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5782), - [11134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5788), - [11136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5789), - [11138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5793), - [11140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5794), - [11142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [11144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5799), - [11146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5800), - [11148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 2, 0, 0), - [11150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5804), - [11152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5805), - [11154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4268), - [11156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5808), - [11158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5809), - [11160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5812), - [11162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5813), - [11164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5815), - [11166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5816), - [11168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4222), - [11170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5818), - [11172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5819), - [11174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4235), - [11176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4236), - [11178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4259), - [11180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), - [11182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4276), - [11184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4278), - [11186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4294), - [11188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [11190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 105), - [11192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 34), - [11194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 34), - [11196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), - [11198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern_parenthesized, 3, 0, 82), - [11200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_table_repeat1, 2, 0, 151), SHIFT_REPEAT(746), - [11203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), - [11205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6944), - [11207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 4, 0, 91), - [11209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 3, 0, 92), - [11211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5425), - [11213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4312), - [11215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [11217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 18), - [11219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 18), - [11221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 10, 204), - [11223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 10, 204), - [11225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), - [11227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), - [11229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 127), - [11231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6070), - [11233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [11235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4779), - [11237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6482), - [11239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7491), - [11241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), - [11243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), - [11245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5622), - [11247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [11249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), - [11251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), - [11253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [11255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [11257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6076), - [11259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flags_parenthesized, 2, 0, 0), - [11261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flags_parenthesized, 2, 0, 0), - [11263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), - [11265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), - [11267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4285), - [11269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_var, 2, 0, 35), - [11271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_var, 2, 0, 35), - [11273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4786), - [11275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4134), - [11277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4135), - [11279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4233), - [11281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4137), - [11283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(7189), - [11286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4138), - [11288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_type, 3, 0, 181), - [11290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_type, 3, 0, 181), - [11292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4539), - [11294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), - [11296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [11298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [11300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4542), - [11302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), - [11304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 1, 0, 0), - [11306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 1, 0, 0), - [11308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4286), - [11310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), - [11312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7571), - [11314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), - [11316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [11318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), - [11320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), - [11322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [11324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(7261), - [11327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [11329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5101), - [11331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7724), - [11333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [11335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [11337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(7211), - [11340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 10, 203), - [11342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 10, 203), - [11344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4248), - [11346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), - [11348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 17), - [11350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 17), - [11352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), - [11354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [11356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [11358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), - [11360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4649), - [11362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [11364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4560), - [11366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4561), - [11368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4660), - [11370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6606), - [11372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4308), - [11374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4309), - [11376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4313), - [11378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), - [11380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5552), - [11382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [11384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5549), - [11386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [11388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [11390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [11392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [11394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4908), - [11396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [11398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [11400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), - [11402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [11404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [11406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [11408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [11410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [11412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [11414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [11416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5606), - [11418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [11420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 238), - [11422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5664), - [11424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7213), - [11426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7726), - [11428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), - [11430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [11432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4627), - [11434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [11436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [11438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [11440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7313), - [11442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [11444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), - [11446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [11448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5975), - [11450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [11452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4326), - [11454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), - [11456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [11458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7521), - [11460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5252), - [11462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [11464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7242), - [11466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), - [11468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [11470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), - [11472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [11474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5729), - [11476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [11478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [11480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [11482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5131), - [11484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [11486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), - [11488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 6, 0, 238), - [11490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [11492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [11494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [11496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4706), - [11498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), - [11500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [11502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), - [11504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 94), - [11506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4825), - [11508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5283), - [11510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 139), - [11512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), - [11514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [11516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), - [11518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [11520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [11522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), - [11524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 214), - [11526] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [11528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [11530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), - [11532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 1, 0, 98), - [11534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4913), - [11536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_key, 2, 0, 0), - [11538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), - [11540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), - [11542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [11544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [11546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [11548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5278), - [11550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5468), - [11552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [11554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5921), - [11556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), - [11558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [11560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [11562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [11564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [11566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), - [11568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5931), - [11570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5541), - [11572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_rest, 3, 0, 0), - [11574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), - [11576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), - [11578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [11580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5985), - [11582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [11584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [11586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [11588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [11590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5444), - [11592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [11594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [11596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), - [11598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), - [11600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [11602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [11604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5100), - [11606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [11608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 2, 0, 0), - [11610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [11612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), - [11614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5692), - [11616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), - [11618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), - [11620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), - [11622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), - [11624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [11626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), - [11628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5406), - [11630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5412), - [11632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), - [11634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5616), - [11636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), - [11638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), - [11640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [11642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7697), - [11644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [11646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5109), - [11648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), - [11650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [11652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [11654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5467), - [11656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), - [11658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 2, 0, 94), - [11660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [11662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 3, 0, 94), - [11664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5119), - [11666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_guard, 2, 0, 0), - [11668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [11670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [11672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4970), - [11674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [11676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [11678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [11680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), - [11682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 2, 0, 0), - [11684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [11686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), - [11688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), - [11690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [11692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), - [11694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), - [11696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5727), - [11698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7659), - [11700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4664), - [11702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [11704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6155), - [11706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [11708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [11710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), - [11712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5625), - [11714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5441), - [11716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7249), - [11718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [11720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [11722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [11724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6914), - [11726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), - [11728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [11730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [11732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [11734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), - [11736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [11738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), - [11740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [11742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [11744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6975), - [11746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [11748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), - [11750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), - [11752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [11754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), - [11756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7288), - [11758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5799), - [11760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [11762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), - [11764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4844), - [11766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 139), - [11768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), - [11770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [11772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6617), - [11774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [11776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), - [11778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5230), - [11780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4616), - [11782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), - [11784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5800), - [11786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [11788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4808), - [11790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4969), - [11792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [11794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [11796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7540), - [11798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [11800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), - [11802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [11804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), - [11806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), - [11808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), - [11810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), - [11812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), - [11814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [11816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), - [11818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [11820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), - [11822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5673), - [11824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), - [11826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), - [11828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), - [11830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), - [11832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), - [11834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5632), - [11836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [11838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [11840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [11842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), - [11844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [11846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [11848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [11850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), - [11852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [11854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), - [11856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [11858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 214), - [11860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), - [11862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), - [11864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4996), - [11866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [11868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [11870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), - [11872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [11874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), - [11876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), - [11878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4793), - [11880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [11882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [11884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), - [11886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4974), - [11888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5064), - [11890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [11892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2, 0, 0), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5409), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7547), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3398), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5361), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6715), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5268), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5365), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7911), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6709), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6188), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5760), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7694), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7759), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5710), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5895), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5896), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5897), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4750), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7132), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), + [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6624), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7448), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7733), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7562), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5032), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5033), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5348), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7135), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5034), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5411), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7137), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5225), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6008), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5367), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7677), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7765), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6325), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6165), + [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5756), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7750), + [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7815), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7796), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5639), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5759), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5763), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5755), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7248), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6340), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7550), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7872), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4931), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4932), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5329), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7306), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4933), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7400), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3383), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5234), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6069), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7990), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5685), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5871), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6170), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5612), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5480), + [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), + [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4567), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), + [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5913), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6042), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6181), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5984), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4837), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4837), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7441), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6436), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7827), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8046), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5005), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5006), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5449), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7470), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5190), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7480), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2459), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5275), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6267), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6354), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7824), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4663), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4737), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5806), + [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), + [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6081), + [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6174), + [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6005), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4020), + [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6302), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8024), + [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5178), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5179), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6030), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6470), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5246), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4740), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7729), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6304), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6050), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5921), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7781), + [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4112), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5014), + [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3392), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3479), + [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5307), + [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), + [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3974), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), + [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5323), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6756), + [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3957), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), + [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4125), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4887), + [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), + [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5586), + [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), + [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), + [605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 1, 0, 0), + [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7962), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4650), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7801), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), + [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 1, 0, 0), + [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6119), + [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4285), + [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), + [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), + [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5683), + [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5517), + [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), + [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5978), + [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8047), + [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 1, 0, 0), + [685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5913), + [688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2517), + [691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6042), + [694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6181), + [697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5984), + [700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4837), + [703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4837), + [706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2161), + [709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2162), + [712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2193), + [715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2193), + [718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2054), + [721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7441), + [724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2518), + [727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2457), + [730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2750), + [733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(754), + [736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(71), + [739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6436), + [742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7827), + [745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8046), + [748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5005), + [751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5006), + [754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5449), + [757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7470), + [760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2062), + [763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5190), + [766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2072), + [769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1080), + [772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4), + [775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5411), + [778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7480), + [781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(943), + [784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2733), + [787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3404), + [790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2459), + [793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5275), + [796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6267), + [799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3833), + [802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5257), + [805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5367), + [808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1335), + [811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1335), + [814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1543), + [817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1459), + [820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2427), + [823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1676), + [826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7765), + [829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1881), + [832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6354), + [835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2074), + [838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6165), + [841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5756), + [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7694), + [847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1432), + [850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7824), + [853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5806), + [856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2437), + [859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6081), + [862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6174), + [865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6005), + [868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4837), + [871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4837), + [874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2344), + [877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2280), + [880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2296), + [883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2296), + [886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2054), + [889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7441), + [892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2518), + [895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2457), + [898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2750), + [901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(736), + [904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(55), + [907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6302), + [910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7827), + [913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8024), + [916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5178), + [919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5179), + [922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5449), + [925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7470), + [928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2062), + [931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6030), + [934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1742), + [937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1080), + [940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8), + [943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5411), + [946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6470), + [949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(943), + [952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2733), + [955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3404), + [958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2459), + [961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5275), + [964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6267), + [967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3645), + [970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5246), + [973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5367), + [976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1398), + [979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1398), + [982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1502), + [985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1405), + [988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2076), + [991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1906), + [994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7729), + [997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2358), + [1000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6304), + [1003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1820), + [1006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6050), + [1009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5921), + [1012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7694), + [1015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1480), + [1018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7781), + [1021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 2, 0, 21), + [1023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 2, 0, 21), + [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5557), + [1027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cell_path, 1, 0, 0), + [1029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cell_path, 1, 0, 0), + [1031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), + [1033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), + [1035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5557), + [1038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__raw_str, 3, 0, 0), + [1040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__raw_str, 3, 0, 0), + [1042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 101), + [1044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 101), + [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [1048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 102), + [1050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 102), + [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [1054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 3, 0, 0), + [1056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 3, 0, 0), + [1058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_string, 1, 0, 0), + [1060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_string, 1, 0, 0), + [1062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 2, 0, 0), + [1064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 2, 0, 0), + [1066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, 0, 147), + [1068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, 0, 147), + [1070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, 0, 148), + [1072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, 0, 148), + [1074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 1, 0, 0), + [1076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 1, 0, 0), + [1078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 3, 0, 21), + [1080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 3, 0, 21), + [1082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), + [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [1088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), + [1090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value, 1, 0, 0), + [1092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value, 1, 0, 0), + [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [1096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), + [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [1105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4837), + [1108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4837), + [1111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2161), + [1114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2162), + [1117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2193), + [1120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2193), + [1123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(754), + [1126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(71), + [1129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6436), + [1132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(8046), + [1135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5005), + [1138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5006), + [1141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5190), + [1144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2072), + [1147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1080), + [1150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4), + [1153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5411), + [1156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7480), + [1159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(943), + [1162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3833), + [1165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5257), + [1168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5367), + [1171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1335), + [1174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1335), + [1177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1543), + [1180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1459), + [1183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2427), + [1186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1676), + [1189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7765), + [1192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1881), + [1195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6354), + [1198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2074), + [1201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6165), + [1204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5756), + [1207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7694), + [1210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1432), + [1213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7824), + [1216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4837), + [1219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4837), + [1222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2344), + [1225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2280), + [1228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2296), + [1231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2296), + [1234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(736), + [1237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(55), + [1240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6302), + [1243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(8024), + [1246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5178), + [1249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5179), + [1252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6030), + [1255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1742), + [1258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1080), + [1261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(8), + [1264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5411), + [1267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6470), + [1270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(943), + [1273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3645), + [1276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5246), + [1279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5367), + [1282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1398), + [1285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1398), + [1288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1502), + [1291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1405), + [1294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2076), + [1297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1906), + [1300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7729), + [1303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2358), + [1306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6304), + [1309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1820), + [1312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6050), + [1315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5921), + [1318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7694), + [1321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1480), + [1324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7781), + [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8070), + [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8062), + [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7554), + [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7554), + [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6564), + [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5775), + [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5775), + [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6253), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6066), + [1349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), + [1351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), + [1353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(204), + [1356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [1359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), + [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), + [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5850), + [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5474), + [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7923), + [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6604), + [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5644), + [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7863), + [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [1390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7923), + [1393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(8070), + [1396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(8062), + [1399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7554), + [1402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7554), + [1405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(95), + [1408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(6604), + [1411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7750), + [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), + [1416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(97), + [1419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7863), + [1422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(5775), + [1425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(5775), + [1428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(6253), + [1431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(6066), + [1434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(1879), + [1437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(6325), + [1440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(1540), + [1443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(200), + [1446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7796), + [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5711), + [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [1453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7872), + [1456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(8070), + [1459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(8062), + [1462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7554), + [1465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7554), + [1468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(95), + [1471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6564), + [1474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7750), + [1477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(108), + [1480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7990), + [1483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5775), + [1486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5775), + [1489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6253), + [1492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6066), + [1495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(1879), + [1498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6325), + [1501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(1540), + [1504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(202), + [1507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7796), + [1510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 39), + [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6636), + [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [1516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 39), + [1526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 2, 0, 0), + [1528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 2, 0, 0), + [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), + [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [1536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), + [1538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), + [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [1544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 134), + [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6639), + [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [1552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [1554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 134), + [1558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 4, 0, 0), + [1560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 38), + [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [1570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 38), + [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6630), + [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), + [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [1596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 3, 0, 0), + [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 3, 0, 0), + [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [1606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [1608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 131), + [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 131), + [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 132), + [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 132), + [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [1620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 133), + [1622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 133), + [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [1628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number, 1, 0, 0), + [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [1632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [1638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [1640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number, 1, 0, 0), + [1642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6633), + [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [1648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [1656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), + [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), + [1660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 3, 0, 0), + [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [1664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), + [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5560), + [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), + [1670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), + [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), + [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 2, 0, 0), + [1676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), + [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), + [1680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(284), + [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [1701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 4, 0, 0), + [1703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 2, 0, 0), + [1705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), + [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [1711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 4, 0, 0), + [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 4, 0, 0), + [1715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), + [1717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), + [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), + [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), + [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), + [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), + [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), + [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [1747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5560), + [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [1754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(314), + [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5559), + [1761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), + [1763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), + [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [1769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 3, 0, 0), + [1771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 3, 0, 0), + [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [1775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(318), + [1778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), + [1780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), + [1782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2593), + [1785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(330), + [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 23), + [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 2, 0, 0), + [1792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5403), + [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5403), + [1796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 23), + [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 2, 0, 0), + [1800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 2, 0, 0), + [1802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [1804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [1806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 3, 0, 0), + [1813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 3, 0, 0), + [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [1823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5559), + [1826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 4, 0, 0), + [1828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 4, 0, 0), + [1830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), + [1832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), + [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5626), + [1838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [1842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 87), + [1844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 3, 0, 0), + [1846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 87), + [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 3, 0, 0), + [1854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 2, 0, 0), + [1856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5558), + [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 2, 0, 0), + [1860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5626), + [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), + [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3334), + [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), + [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), + [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 3, 0, 0), + [1883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 3, 0, 0), + [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), + [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), + [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 3, 0, 0), + [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 3, 0, 0), + [1901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 2, 0, 0), + [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 2, 0, 0), + [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [1909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 3, 0, 0), + [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 3, 0, 0), + [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 4, 0, 0), + [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 4, 0, 0), + [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 2, 0, 0), + [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 2, 0, 0), + [1929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 103), + [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 103), + [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4439), + [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4435), + [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4598), + [1939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), + [1941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), + [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6578), + [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4431), + [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4472), + [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), + [1955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5314), + [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5315), + [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7897), + [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3964), + [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4032), + [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3998), + [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4744), + [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4636), + [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7825), + [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4461), + [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6384), + [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4414), + [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6045), + [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5787), + [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7154), + [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4677), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7852), + [1993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 149), + [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 149), + [1997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 152), + [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 152), + [2001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 149), + [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 149), + [2005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 184), + [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 184), + [2009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 185), + [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 185), + [2013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 186), + [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 186), + [2017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 184), + [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 184), + [2021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 216), + [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 216), + [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), + [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2915), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), + [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), + [2043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 185), + [2045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 185), + [2047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 186), + [2049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 186), + [2051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 217), + [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 217), + [2055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 218), + [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 218), + [2059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 216), + [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 216), + [2063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 3, 0, 0), + [2065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 3, 0, 0), + [2067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 217), + [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 217), + [2071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), + [2073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), + [2075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 2, 0, 21), + [2077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 2, 0, 21), + [2079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), + [2081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), + [2083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 239), + [2085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 239), + [2087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 218), + [2089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 218), + [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5400), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5400), + [2095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 239), + [2097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 239), + [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [2105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), + [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), + [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [2113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 85), + [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 85), + [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4606), + [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4624), + [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4847), + [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6572), + [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4690), + [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4634), + [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), + [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5283), + [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5284), + [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7906), + [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3987), + [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4081), + [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4041), + [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5052), + [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4850), + [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7797), + [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4627), + [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6341), + [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4660), + [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6036), + [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5766), + [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7368), + [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4770), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7810), + [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5551), + [2179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5558), + [2182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [2186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), + [2188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), + [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [2196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 114), + [2198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 114), + [2200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 119), + [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 119), + [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [2206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 86), + [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [2212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 86), + [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [2218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), + [2220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), + [2222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 22), + [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5401), + [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5401), + [2228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 22), + [2230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), + [2232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), + [2234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 84), + [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [2240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 84), + [2242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 104), + [2244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 104), + [2246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 173), + [2248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 5, 0, 0), + [2250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 173), + [2252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 5, 0, 0), + [2254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [2262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [2266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5551), + [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [2273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 14), + [2275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 14), + [2277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 39), + [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 39), + [2281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 1, 0, 0), + [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), + [2285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 1, 0, 0), + [2287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), + [2289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_bool, 1, 0, 0), + [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_bool, 1, 0, 0), + [2293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 2, 0, 40), + [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 50), + [2297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 2, 0, 40), + [2299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 50), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [2303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_duration, 2, 0, 40), + [2305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_duration, 2, 0, 40), + [2307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), + [2309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), + [2311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 104), + [2313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 104), + [2315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), + [2317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), + [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5398), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5398), + [2335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 123), + [2337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 4, 0, 0), + [2339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 123), + [2341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 19), + [2343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 4, 0, 105), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 19), + [2349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 1, 0, 19), + [2351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 1, 0, 19), + [2353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 1, 0, 19), + [2355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 1, 0, 0), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6993), + [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 1, 0, 0), + [2361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 19), + [2363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), + [2365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(550), + [2368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), + [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [2372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), + [2374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), + [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [2378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), + [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), + [2382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [2386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [2392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 51), + [2394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 52), + [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [2398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 118), + [2400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 118), + [2402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat1, 1, 0, 0), + [2404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 1, 0, 0), + [2406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 4, 0, 0), + [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 4, 0, 0), + [2410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 3, 0, 71), + [2412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 3, 0, 71), + [2414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 170), + [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 170), + [2418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_number, 1, 0, 0), + [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_number, 1, 0, 0), + [2422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 121), + [2424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 121), + [2426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 167), + [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 167), + [2430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), + [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), + [2434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 184), + [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 184), + [2438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 3, 0, 71), + [2440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 3, 0, 71), + [2442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 185), + [2444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 185), + [2446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 168), + [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 168), + [2450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 186), + [2452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 186), + [2454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 2, 0, 0), + [2456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 2, 0, 0), + [2458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 17), + [2460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 17), + [2462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 18), + [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 18), + [2466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 149), + [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 149), + [2470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 216), + [2472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 216), + [2474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 217), + [2476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 217), + [2478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), + [2480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), + [2482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 171), + [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 171), + [2486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 169), + [2488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 169), + [2490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 4, 0, 0), + [2492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 4, 0, 0), + [2494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_interpolated, 1, 0, 6), + [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_interpolated, 1, 0, 6), + [2498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 166), + [2500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 166), + [2502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 218), + [2504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 218), + [2506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 0), + [2508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 0), + [2510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 5, 0, 164), + [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 5, 0, 164), + [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6974), + [2516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 3, 0, 21), + [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 3, 0, 21), + [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), + [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), + [2524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 172), + [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 172), + [2528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(635), + [2531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 10, 0, 239), + [2533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 10, 0, 239), + [2535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 152), + [2537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 152), + [2539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 3, 0, 0), + [2541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 3, 0, 0), + [2543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 4, 0, 128), + [2545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 4, 0, 128), + [2547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 0), + [2549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 0), + [2551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 120), + [2553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 120), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [2557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 122), + [2559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 122), + [2561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 103), + [2563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 103), + [2565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 38), + [2567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 38), + [2569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 4, 0, 0), + [2571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 4, 0, 0), + [2573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_variable, 2, 0, 0), + [2575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record_variable, 2, 0, 0), + [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), + [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), + [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5322), + [2593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6615), + [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [2597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5182), + [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5310), + [2601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), + [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [2611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), + [2613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7918), + [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), + [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6589), + [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), + [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6048), + [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5855), + [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [2627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7475), + [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7475), + [2631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), + [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8001), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [2643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 2, 0, 0), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [2649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6591), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [2653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [2657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5330), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), + [2661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [2671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [2673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7853), + [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6454), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6135), + [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5829), + [2685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7601), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7601), + [2689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7904), + [2693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 3, 0, 0), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), + [2697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 4, 0, 0), + [2699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 4, 0, 0), + [2701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1477), + [2704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1429), + [2707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1496), + [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), + [2712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(747), + [2715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(59), + [2718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6591), + [2721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1476), + [2724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1469), + [2727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(19), + [2730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5330), + [2733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5331), + [2736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1087), + [2739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1087), + [2742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1186), + [2745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1099), + [2748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1638), + [2751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1523), + [2754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7853), + [2757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1412), + [2760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6454), + [2763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1640), + [2766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6135), + [2769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5829), + [2772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7601), + [2775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7601), + [2778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1519), + [2781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7904), + [2784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 3, 0, 0), + [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 5, 0, 0), + [2788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1477), + [2791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1429), + [2794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1496), + [2797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(2898), + [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), + [2802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(747), + [2805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(59), + [2808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6591), + [2811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1476), + [2814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1469), + [2817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(19), + [2820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5330), + [2823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5331), + [2826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1087), + [2829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1087), + [2832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1186), + [2835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1099), + [2838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1638), + [2841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1523), + [2844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7853), + [2847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1412), + [2850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6454), + [2853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1640), + [2856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6135), + [2859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5829), + [2862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7601), + [2865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7601), + [2868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1519), + [2871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7904), + [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [2884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6545), + [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [2888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [2892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5356), + [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5357), + [2896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [2906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [2908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7782), + [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6396), + [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6099), + [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5796), + [2920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7865), + [2924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1546), + [2927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1536), + [2930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1690), + [2933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(741), + [2936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(72), + [2939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6545), + [2942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1541), + [2945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1542), + [2948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(13), + [2951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5356), + [2954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5357), + [2957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1163), + [2960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1163), + [2963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1209), + [2966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1173), + [2969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1788), + [2972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1609), + [2975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7782), + [2978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1537), + [2981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6396), + [2984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1795), + [2987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6099), + [2990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5796), + [2993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1621), + [2996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7865), + [2999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), + [3001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), + [3003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(2593), + [3006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(734), + [3009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), + [3011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), + [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [3017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), + [3019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [3023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), + [3025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), + [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [3029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(746), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6315), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6208), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7007), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [3044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6270), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5327), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5328), + [3052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5201), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5201), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5282), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5239), + [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6918), + [3062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6255), + [3064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7833), + [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6258), + [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6272), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5521), + [3072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7084), + [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7764), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5669), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5953), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), + [3084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), + [3086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6012), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), + [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6100), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5656), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5472), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5608), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), + [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [3126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), + [3128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [3134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6315), + [3137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6208), + [3140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7007), + [3143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(740), + [3146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(62), + [3149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6270), + [3152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6), + [3155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5327), + [3158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(108), + [3161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5328), + [3164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7990), + [3167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5201), + [3170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5201), + [3173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5282), + [3176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5239), + [3179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6918), + [3182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6255), + [3185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7833), + [3188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6258), + [3191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6272), + [3194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5521), + [3197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6048), + [3200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5855), + [3203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(732), + [3206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7475), + [3209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7475), + [3212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7084), + [3215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7764), + [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), + [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6511), + [3230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5916), + [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5917), + [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3377), + [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), + [3244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), + [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [3252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), + [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [3268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2920), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), + [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), + [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [3282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ctrl_return, 1, 0, 0), + [3284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_return, 1, 0, 0), + [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7480), + [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6383), + [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5809), + [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5822), + [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2929), + [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), + [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), + [3322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), + [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [3332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6561), + [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5890), + [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5891), + [3338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2886), + [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), + [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), + [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), + [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6533), + [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5229), + [3366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), + [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), + [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5199), + [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7547), + [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), + [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), + [3410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6597), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), + [3414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3373), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), + [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), + [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), + [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), + [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), + [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [3446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), + [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [3466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6481), + [3468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8056), + [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [3472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5337), + [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5253), + [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5338), + [3478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3911), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), + [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), + [3488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4028), + [3490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7879), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), + [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6468), + [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6028), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5844), + [3502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4023), + [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7917), + [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), + [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [3516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6594), + [3518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8054), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [3522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5335), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5336), + [3528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3916), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), + [3538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4133), + [3540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7866), + [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6482), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5993), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5839), + [3552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4150), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7930), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4767), + [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4749), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4924), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), + [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [3568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6607), + [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [3572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5276), + [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5277), + [3576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4022), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5076), + [3586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4748), + [3588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7839), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4764), + [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6569), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4768), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6074), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5819), + [3600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4925), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7995), + [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6259), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6742), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6386), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6588), + [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), + [3622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7156), + [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5363), + [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5279), + [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5223), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5223), + [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5414), + [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5349), + [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6204), + [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), + [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), + [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5162), + [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5318), + [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5319), + [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [3670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [3672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7941), + [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6640), + [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6079), + [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5864), + [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7419), + [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7419), + [3688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8017), + [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6630), + [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [3706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5292), + [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5293), + [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [3722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7931), + [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6608), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6061), + [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5857), + [3734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8007), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6373), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6254), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7103), + [3744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5351), + [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5352), + [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5256), + [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5256), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5435), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5358), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6747), + [3758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7199), + [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6600), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [3778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5080), + [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5291), + [3782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [3792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2996), + [3794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7892), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6565), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3091), + [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7994), + [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6983), + [3808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5171), + [3810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), + [3812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1076), + [3815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1076), + [3818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), + [3820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), + [3822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), + [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [3826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7477), + [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [3834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6367), + [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [3838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5325), + [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5326), + [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6268), + [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), + [3846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5260), + [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7813), + [3850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6259), + [3853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6742), + [3856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6386), + [3859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1061), + [3862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(58), + [3865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6588), + [3868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(205), + [3871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7156), + [3874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5363), + [3877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5279), + [3880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5223), + [3883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5223), + [3886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5414), + [3889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5349), + [3892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(2076), + [3895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1906), + [3898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7729), + [3901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6204), + [3904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6304), + [3907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1820), + [3910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7601), + [3913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7601), + [3916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1900), + [3919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7781), + [3922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), + [3924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), + [3926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(7694), + [3929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 1, 0, 0), + [3931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 1, 0, 0), + [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [3935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7694), + [3938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(1090), + [3941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), + [3943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1086), + [3946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), + [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), + [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), + [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [3960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), + [3962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [3970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6557), + [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [3982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), + [3984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), + [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), + [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [3990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [3996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [3998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), + [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [4006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5512), + [4008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5500), + [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5932), + [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5786), + [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5987), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7740), + [4020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6497), + [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [4024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5924), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5925), + [4028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5173), + [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), + [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5340), + [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5227), + [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5849), + [4038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5512), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7698), + [4051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6575), + [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [4055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5757), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5758), + [4059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), + [4069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2703), + [4071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7811), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6418), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6014), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5805), + [4083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), + [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7878), + [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7225), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7183), + [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6949), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [4095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6582), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [4099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5317), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5317), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5562), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5413), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7202), + [4109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [4113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6902), + [4125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5187), + [4127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5999), + [4135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5212), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5212), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5316), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5251), + [4143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5531), + [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7510), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7521), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7462), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7967), + [4153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6324), + [4155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5767), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5768), + [4159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5376), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5376), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5705), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5523), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7459), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7956), + [4171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6353), + [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [4175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7755), + [4191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5777), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5778), + [4195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [4205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6442), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6214), + [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6704), + [4213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5272), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5272), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5391), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5286), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6707), + [4223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7753), + [4237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6416), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [4241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5788), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5789), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), + [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5052), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4627), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6341), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6036), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5766), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7178), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7390), + [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7310), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7699), + [4273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6522), + [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [4277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5797), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5798), + [4281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5295), + [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5295), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5597), + [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5375), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4744), + [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6790), + [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6384), + [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4414), + [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6045), + [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5787), + [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), + [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), + [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), + [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), + [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), + [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8051), + [4325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6611), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [4329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5807), + [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5808), + [4333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), + [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), + [4343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3575), + [4345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7905), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6583), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6051), + [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5851), + [4357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7999), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7976), + [4369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5820), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5821), + [4373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), + [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [4383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), + [4387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5086), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5732), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5693), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7633), + [4397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6568), + [4399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5831), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5832), + [4403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4781), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4781), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5139), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4935), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5734), + [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5576), + [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5561), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5565), + [4419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4615), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), + [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4939), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4766), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5570), + [4429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [4435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [4443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [4445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), + [4447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [4461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5545), + [4463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [4467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), + [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [4471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [4477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), + [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [4485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), + [4487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [4491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5531), + [4494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5599), + [4496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5500), + [4499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), + [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [4507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(3012), + [4510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(2982), + [4513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(2981), + [4516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(1060), + [4519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), + [4521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(65), + [4524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(6600), + [4527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(206), + [4530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(5305), + [4533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(5291), + [4536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(2598), + [4539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(2598), + [4542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(2642), + [4545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(2625), + [4548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(3089), + [4551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(2996), + [4554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(7892), + [4557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(3042), + [4560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(6565), + [4563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(3122), + [4566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(7475), + [4569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(7475), + [4572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(3091), + [4575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 201), SHIFT_REPEAT(7994), + [4578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5545), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7392), + [4583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5311), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5312), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6772), + [4589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5537), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [4601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5599), + [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [4606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), + [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [4610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [4614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5717), + [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5963), + [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [4622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), + [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [4628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5537), + [4631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [4637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [4645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [4649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5384), + [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [4655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), + [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [4661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [4665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [4673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [4679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5538), + [4681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5427), + [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [4687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [4693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [4697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [4705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [4709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5516), + [4711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [4715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5385), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [4723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [4727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [4731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5538), + [4734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [4738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [4742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [4746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 0), + [4748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 0), + [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [4754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [4758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [4762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5697), + [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5881), + [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [4770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [4772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [4776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), + [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [4788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [4794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [4804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [4808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), + [4810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), + [4812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 104), + [4814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 104), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [4818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), + [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [4822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 31), + [4824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 31), + [4826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5366), + [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5366), + [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [4834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), + [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [4842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), + [4844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), + [4846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), + [4848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 104), + [4850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 104), + [4852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), + [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [4858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [4862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [4870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7673), + [4874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7673), + [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [4878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [4882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5516), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [4889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4168), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7817), + [4895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7817), + [4897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 2, 0, 15), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6685), + [4903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [4911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 2, 0, 29), + [4913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7836), + [4917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7836), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [4921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 0), + [4923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 0), + [4925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 1, 0, 0), + [4927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 1, 0, 0), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [4931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [4935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 43), + [4937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 1, 0, 0), + [4939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 1, 0, 0), + [4941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), + [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [4945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 21), + [4947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 21), + [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [4951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 187), + [4953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 187), + [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [4961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6427), + [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6427), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7756), + [4967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7756), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7159), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [4975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6585), + [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), + [4979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3528), + [4981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5454), + [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5433), + [4985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 1, 0, 0), + [4987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 1, 0, 0), + [4989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 21), + [4991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 21), + [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [4995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 2, 0, 0), + [4997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 2, 0, 0), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6831), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [5005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), + [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [5009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), + [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [5015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), + [5017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 83), + [5019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 83), + [5021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 31), + [5023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 31), + [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [5027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4819), + [5029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3387), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), + [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [5037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [5041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4857), + [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [5047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 4, 0, 141), + [5049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 4, 0, 141), + [5051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 96), + [5053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 96), + [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7110), + [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [5059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 97), + [5061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 97), + [5063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 96), + [5065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 96), + [5067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 4, 0, 142), + [5069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 4, 0, 142), + [5071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 97), + [5073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 97), + [5075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 4, 0, 141), + [5077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 4, 0, 141), + [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [5083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 4, 0, 142), + [5085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 4, 0, 142), + [5087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4865), + [5089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), + [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [5097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag, 1, 0, 0), + [5099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag, 1, 0, 0), + [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7020), + [5107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), + [5110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), + [5113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [5115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [5117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 10, 0), + [5119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blosure, 1, 10, 0), + [5121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 0, 0), + [5123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blosure, 1, 0, 0), + [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5495), + [5127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), + [5129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), + [5131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 82), + [5133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 82), + [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5524), + [5137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [5139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), + [5145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5436), + [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5383), + [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5506), + [5151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 1, 0, 0), + [5153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 1, 0, 0), + [5155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 2, 0, 0), + [5157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 2, 0, 0), + [5159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), + [5161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), + [5163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 194), + [5165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 194), + [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7181), + [5169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 83), + [5171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 83), + [5173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5533), + [5175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 156), + [5177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 156), + [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [5181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 158), + [5183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 158), + [5185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5382), + [5187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5495), + [5190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7529), + [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7529), + [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7948), + [5196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7948), + [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7382), + [5202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5524), + [5205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5506), + [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6668), + [5210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5432), + [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5443), + [5214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5533), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [5219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5604), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [5223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [5226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), + [5228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [5230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), + [5232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), + [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [5244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 82), + [5246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 82), + [5248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 83), + [5250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 83), + [5252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 155), + [5254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 155), + [5256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2356), + [5259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 157), + [5261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 157), + [5263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 82), + [5265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 82), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [5269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2905), + [5271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), + [5273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), + [5275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), + [5277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 155), + [5279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 155), + [5281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 156), + [5283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 156), + [5285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4720), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [5289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 157), + [5291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 157), + [5293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 158), + [5295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 158), + [5297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 193), + [5299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 193), + [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [5305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 193), + [5307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 193), + [5309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 194), + [5311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 194), + [5313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5604), + [5316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 82), SHIFT(2356), + [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [5371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(7529), + [5374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(7529), + [5377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(7948), + [5380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(7948), + [5383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(5775), + [5386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(6253), + [5389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(6066), + [5392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(6272), + [5395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(5521), + [5398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(7764), + [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [5403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 155), SHIFT(2356), + [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [5410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), + [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [5416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5028), + [5418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 157), SHIFT(2356), + [5421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), + [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7656), + [5427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7656), + [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6190), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7838), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [5437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [5441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), + [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6900), + [5455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 193), SHIFT(2356), + [5458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [5460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), + [5462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), + [5464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), + [5466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6627), + [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [5470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), + [5472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), + [5474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), + [5476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4731), + [5478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), + [5480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), + [5482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), + [5484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), + [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [5488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), + [5490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), + [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [5502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 2, 0, 0), + [5504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 2, 0, 0), + [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [5508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), + [5510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), + [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), + [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), + [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [5520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), + [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [5528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), + [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [5552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2876), + [5554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2992), + [5556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), + [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6618), + [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [5562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), + [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), + [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), + [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), + [5570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 50), + [5572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 50), + [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [5576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5660), + [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5660), + [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7851), + [5582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7851), + [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6573), + [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5598), + [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7996), + [5590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 7), + [5592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 7), + [5594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 8), + [5596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 8), + [5598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2593), + [5601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 1, 0, 0), + [5603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 1, 0, 0), + [5605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), + [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8033), + [5611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8033), + [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6192), + [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7728), + [5619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5541), + [5621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), + [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), + [5625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), + [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), + [5633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), + [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [5637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), + [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [5641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), + [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [5645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5555), + [5647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5555), + [5650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5548), + [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), + [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [5656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5541), + [5659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), + [5661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), + [5664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5477), + [5666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), + [5668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 145), + [5670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6266), + [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [5674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 145), + [5676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6371), + [5678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5548), + [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7848), + [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [5685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6467), + [5687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5862), + [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5863), + [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7610), + [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6077), + [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5776), + [5697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), + [5699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), + [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [5703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 19), + [5705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 51), + [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), + [5709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 19), + [5711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 52), + [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7530), + [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7434), + [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [5719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5368), + [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5369), + [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6921), + [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7794), + [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [5729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6200), + [5731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2655), + [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), + [5735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), + [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [5739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6794), + [5741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6251), + [5743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6797), + [5745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [5748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [5754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7278), + [5756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5397), + [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5397), + [5760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), + [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [5764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [5768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), + [5770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), + [5772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(2717), + [5775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 4, 0, 105), + [5777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), + [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), + [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), + [5785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6826), + [5787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), + [5789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), + [5791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(2641), + [5794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(2694), + [5797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), + [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), + [5805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), + [5807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 19), + [5809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5547), + [5811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), + [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), + [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6754), + [5819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), + [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), + [5823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), + [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [5827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5556), + [5829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2805), + [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), + [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), + [5836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), + [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7869), + [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [5844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5877), + [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5884), + [5848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), + [5850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), + [5853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 2, 0, 0), + [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [5857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2792), + [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7834), + [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [5864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6506), + [5866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5885), + [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5941), + [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6038), + [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5918), + [5874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), + [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [5878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2898), + [5881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5549), + [5883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), + [5885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 16), + [5887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), + [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [5891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 16), + [5893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), + [5895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), + [5897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), + [5900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), + [5902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5396), + [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), + [5906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 202), + [5908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 202), + [5910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), + [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [5916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), + [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [5920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), + [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [5924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), + [5926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), + [5928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5415), + [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5415), + [5932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2861), + [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), + [5937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), + [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [5941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5556), + [5944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), + [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), + [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), + [5952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), + [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [5956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), + [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [5960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), + [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [5964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5388), + [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), + [5968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), + [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), + [5972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, 0, 16), + [5974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), + [5976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, 0, 16), + [5978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2869), + [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), + [5982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5549), + [5985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), + [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [5989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5595), + [5992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2951), + [5994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), + [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5595), + [5998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2914), + [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), + [6002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), + [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), + [6008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), + [6010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4898), + [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [6014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), + [6016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4900), + [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), + [6020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4919), + [6022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4920), + [6024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4921), + [6026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4922), + [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [6030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), + [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6950), + [6036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3000), + [6039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5191), + [6041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), + [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), + [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), + [6047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5194), + [6049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5092), + [6051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5094), + [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), + [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), + [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), + [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), + [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [6065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), + [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [6069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), + [6071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), + [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [6075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2947), + [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [6079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), + [6081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), + [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), + [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [6087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3043), + [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [6091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(3017), + [6094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5113), + [6096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5114), + [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [6100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2988), + [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), + [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), + [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6906), + [6112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3055), + [6115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3020), + [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), + [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), + [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [6133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), + [6135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), + [6138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), + [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [6146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 4, 0, 232), + [6148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 4, 0, 232), + [6150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 4, 0, 202), + [6152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 4, 0, 202), + [6154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 200), + [6156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 200), + [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [6162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 111), + [6164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 111), + [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), + [6168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 198), + [6170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 198), + [6172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 112), + [6174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 112), + [6176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 199), + [6178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 199), + [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), + [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), + [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), + [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), + [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6024), + [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5909), + [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5910), + [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), + [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), + [6208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), + [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [6213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), + [6216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5534), + [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7932), + [6220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5534), + [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6481), + [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [6231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), + [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), + [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [6239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), + [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), + [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), + [6247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 2, 0, 0), + [6249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 2, 0, 0), + [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6324), + [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), + [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5990), + [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [6259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 3, 0, 0), + [6261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 3, 0, 0), + [6263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 4, 0, 0), + [6265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 4, 0, 0), + [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4971), + [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7600), + [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5471), + [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), + [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [6369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 180), SHIFT_REPEAT(6024), + [6372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 180), SHIFT_REPEAT(5909), + [6375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 180), SHIFT_REPEAT(5910), + [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4962), + [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730), + [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4736), + [6384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), + [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), + [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [6390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3380), + [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [6394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), + [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), + [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), + [6402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3378), + [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), + [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), + [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), + [6410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5543), + [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), + [6414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3386), + [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), + [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6497), + [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), + [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), + [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), + [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), + [6428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3573), + [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), + [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5574), + [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), + [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5425), + [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), + [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6239), + [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [6448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3878), + [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6383), + [6458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(3437), + [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7409), + [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7094), + [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7104), + [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), + [6469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3395), + [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), + [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), + [6477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), + [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), + [6483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5543), + [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), + [6488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), + [6490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7769), + [6492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 98), + [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), + [6496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7855), + [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), + [6500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7613), + [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), + [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), + [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), + [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), + [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), + [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), + [6516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7832), + [6518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5554), + [6520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3490), + [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), + [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5507), + [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), + [6530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5045), + [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5202), + [6534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5205), + [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5242), + [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), + [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), + [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [6546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3578), + [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [6550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), + [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [6554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), + [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), + [6558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), + [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), + [6562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5446), + [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5446), + [6566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5554), + [6569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5507), + [6572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4976), + [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), + [6576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5237), + [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5359), + [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), + [6584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), + [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [6588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5235), + [6590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5527), + [6593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5211), + [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5270), + [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), + [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6931), + [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5527), + [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [6607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5046), + [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5215), + [6611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5267), + [6613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), + [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), + [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [6621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5407), + [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5407), + [6625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4332), + [6627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4399), + [6629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), + [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), + [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6395), + [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [6639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4628), + [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4628), + [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4804), + [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), + [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [6679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5419), + [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5419), + [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [6687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), + [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), + [6691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5420), + [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5420), + [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [6697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), + [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), + [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [6703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), + [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), + [6707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), + [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [6745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4596), + [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [6753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 0), + [6755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7623), + [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7623), + [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [6761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 2, 0, 0), + [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [6781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 0), + [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [6789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8045), + [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8045), + [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [6823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 0), + [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [6839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 1, 0, 0), + [6841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [6849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4193), + [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), + [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), + [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), + [6857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), + [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), + [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), + [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), + [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6594), + [6873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4313), + [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), + [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), + [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), + [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), + [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), + [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6568), + [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), + [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), + [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), + [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [6895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4484), + [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), + [6899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), + [6901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4135), + [6903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4100), + [6905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3906), + [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), + [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), + [6911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4265), + [6913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4558), + [6915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4368), + [6917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3945), + [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), + [6921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3901), + [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), + [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), + [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), + [6929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4017), + [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [6933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4676), + [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), + [6937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4080), + [6939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4252), + [6941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4116), + [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), + [6945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4739), + [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), + [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), + [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), + [6953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4585), + [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), + [6957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4337), + [6959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4639), + [6961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4393), + [6963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4979), + [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), + [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), + [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), + [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), + [6973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3958), + [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), + [6977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3904), + [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), + [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), + [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), + [6985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4153), + [6987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3954), + [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), + [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), + [6993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5546), + [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), + [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), + [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), + [7001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4673), + [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), + [7005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3990), + [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), + [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), + [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), + [7013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3909), + [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), + [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), + [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), + [7021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4594), + [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6607), + [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [7027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4842), + [7029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4120), + [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), + [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), + [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), + [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), + [7039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3972), + [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), + [7043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5546), + [7046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4026), + [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), + [7050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3905), + [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), + [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), + [7056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5390), + [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5390), + [7060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3922), + [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), + [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), + [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), + [7068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4758), + [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6621), + [7072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4402), + [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402), + [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4784), + [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), + [7080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5542), + [7082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4036), + [7084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4136), + [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), + [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), + [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6883), + [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), + [7094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5077), + [7096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4073), + [7098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4115), + [7100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5540), + [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), + [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), + [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), + [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), + [7110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), + [7112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4060), + [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), + [7116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4721), + [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), + [7120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3907), + [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), + [7124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5542), + [7127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4004), + [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), + [7131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4816), + [7133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4823), + [7135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4934), + [7137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5387), + [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5387), + [7141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(4154), + [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), + [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), + [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), + [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), + [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), + [7154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5553), + [7156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4121), + [7158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4312), + [7160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4174), + [7162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4318), + [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), + [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), + [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), + [7170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4184), + [7172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4186), + [7174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5372), + [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5372), + [7178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5540), + [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6857), + [7183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3913), + [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), + [7187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 62), + [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5169), + [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), + [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7556), + [7197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 62), + [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), + [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4323), + [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), + [7205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 3, 0, 82), + [7207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3948), + [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5536), + [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4328), + [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), + [7217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5553), + [7220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5406), + [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5406), + [7224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4302), + [7226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4319), + [7228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4305), + [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), + [7232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 2, 0, 0), + [7234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 2, 0, 0), + [7236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3910), + [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), + [7240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 3, 0, 83), + [7242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 3, 0, 0), + [7244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 3, 0, 0), + [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), + [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), + [7250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5417), + [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5417), + [7254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3924), + [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), + [7258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3925), + [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), + [7262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3926), + [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), + [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5530), + [7268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5381), + [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5381), + [7272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4950), + [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), + [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), + [7278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6468), + [7280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), + [7282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6165), + [7284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5756), + [7286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4879), + [7288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 59), + [7290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 59), + [7292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 117), + [7294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 117), + [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), + [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), + [7300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4703), + [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), + [7304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3944), + [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), + [7308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6709), + [7310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [7312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6188), + [7314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5760), + [7316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5072), + [7318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 31), + [7320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 31), + [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555), + [7324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), + [7326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), + [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), + [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), + [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), + [7334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 59), + [7336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 59), + [7338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 117), + [7340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 117), + [7342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 62), + [7344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 62), + [7346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3960), + [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), + [7350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3947), + [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), + [7354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5394), + [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5394), + [7358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3956), + [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), + [7362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 74), + [7364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 74), + [7366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5536), + [7369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4019), + [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), + [7373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 126), + [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), + [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), + [7379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 227), SHIFT(2593), + [7382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 227), + [7384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3999), + [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), + [7388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4000), + [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), + [7392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 192), + [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), + [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), + [7398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4003), + [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), + [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), + [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), + [7406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5552), + [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), + [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), + [7412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 192), SHIFT(2593), + [7415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 192), + [7417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), + [7419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), + [7421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 126), SHIFT(2593), + [7424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), + [7426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1047), + [7429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(2593), + [7432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(3349), + [7435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), + [7437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 227), + [7439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4494), + [7441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4732), + [7443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 191), + [7445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 191), + [7447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 126), + [7449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4662), + [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4622), + [7455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 191), SHIFT(2593), + [7458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 32), + [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), + [7462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 32), + [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), + [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), + [7468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 107), + [7470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3953), + [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), + [7474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 107), + [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), + [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [7480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4661), + [7482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 32), + [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), + [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), + [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), + [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), + [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), + [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), + [7496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5377), + [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5377), + [7500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4625), + [7502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4696), + [7504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5530), + [7507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4672), + [7509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4612), + [7511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 31), + [7513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 31), + [7515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 80), + [7517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 80), + [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), + [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4775), + [7523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 126), + [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), + [7527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), SHIFT(2593), + [7530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), + [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), + [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), + [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), + [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), + [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), + [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), + [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5451), + [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7773), + [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7590), + [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7902), + [7554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7612), + [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4851), + [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6472), + [7562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 2, 0, 163), + [7564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 2, 0, 163), + [7566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4034), + [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), + [7570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 36), + [7572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [7574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4773), + [7576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4620), + [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4940), + [7580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, 0, 4), + [7582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), SHIFT(2593), + [7585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), + [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4827), + [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4943), + [7591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4715), + [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6486), + [7595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), SHIFT(4557), + [7598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 37), + [7600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [7602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4830), + [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [7606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6777), + [7608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 3, 0, 205), + [7610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 3, 0, 205), + [7612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 4, 0, 233), + [7614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 4, 0, 233), + [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [7618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [7620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [7622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [7624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(4952), + [7627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), + [7629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7773), + [7632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7590), + [7635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7902), + [7638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7612), + [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6419), + [7643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4760), + [7645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4761), + [7647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5392), + [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5392), + [7651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), + [7653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5552), + [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [7658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [7660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [7662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 0, 73), + [7664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6423), + [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), + [7668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), + [7670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), SHIFT_REPEAT(362), + [7673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4093), + [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), + [7677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4094), + [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), + [7681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4095), + [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), + [7685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), + [7689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4751), + [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [7693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 81), SHIFT_REPEAT(419), + [7696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 81), SHIFT_REPEAT(419), + [7699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 81), + [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4938), + [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5151), + [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4895), + [7707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5954), + [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5954), + [7711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6339), + [7713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6425), + [7715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), + [7717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 36), + [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4896), + [7723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 3, 0, 130), + [7725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 3, 0, 130), + [7727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 104), + [7729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 104), + [7731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), SHIFT(2593), + [7734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), + [7736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, 0, 4), + [7738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(282), + [7741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 104), + [7743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 104), + [7745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [7749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 37), + [7751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 0, 73), + [7753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_type, 1, 0, 93), + [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5294), + [7757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flat_type, 1, 0, 93), + [7759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 139), + [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [7763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 139), + [7765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 2, 0, 94), + [7767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 2, 0, 94), + [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), + [7771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 57), SHIFT(2593), + [7774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 57), + [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [7778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6801), + [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [7782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 75), + [7784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 75), + [7786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 3, 0, 73), + [7788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 37), + [7790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), SHIFT(2593), + [7793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), + [7795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 76), + [7797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 76), + [7799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6222), + [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5438), + [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5735), + [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5571), + [7807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 77), + [7809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 77), + [7811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(5816), + [7814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), + [7816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), + [7818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 4, 0, 0), + [7820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 4, 0, 0), + [7822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 153), SHIFT(2593), + [7825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 153), + [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [7829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4695), + [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), + [7833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 36), + [7835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), + [7837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), SHIFT_REPEAT(391), + [7840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 78), + [7842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 78), + [7844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 24), SHIFT(2593), + [7847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 24), + [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5907), + [7851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 106), SHIFT(2593), + [7854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 106), + [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5908), + [7858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 79), + [7860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 79), + [7862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 24), SHIFT(2593), + [7865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 24), + [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5838), + [7869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 188), SHIFT(2593), + [7872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 188), + [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [7876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 57), SHIFT(2593), + [7879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 57), + [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [7883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 154), SHIFT(2593), + [7886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 154), + [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [7890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 1, 0, 4), + [7892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(5939), + [7895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 179), + [7897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 179), + [7899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 188), SHIFT(2593), + [7902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 188), + [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4944), + [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [7910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(265), + [7913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 106), SHIFT(2593), + [7916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 106), + [7918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5952), + [7920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 153), SHIFT(2593), + [7923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 153), + [7925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [7927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(274), + [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7197), + [7932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(276), + [7935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 154), SHIFT(2593), + [7938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 154), + [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [7942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), + [7944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), + [7946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 3, 0, 57), + [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [7950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 2, 0, 24), + [7952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6356), + [7954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 3, 0, 0), + [7956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 110), + [7958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 113), + [7960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 33), + [7962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 4, 0, 124), + [7964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_cmd, 2, 0, 13), + [7966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_cmd, 2, 0, 13), + [7968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 108), + [7970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 77), + [7972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 77), + [7974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [7976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6671), + [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5313), + [7980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5313), + [7982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5601), + [7984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5437), + [7986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 160), + [7988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 161), + [7990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 110), + [7992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6702), + [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5961), + [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6264), + [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6180), + [8000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 113), + [8002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 6, 0, 110), + [8004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 6, 0, 113), + [8006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 7, 0, 110), + [8008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 7, 0, 113), + [8010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 8, 0, 110), + [8012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 8, 0, 113), + [8014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 33), + [8016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression, 1, 0, 1), + [8018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 1), + [8020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ctrl_expression, 1, 0, 2), + [8022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 2), + [8024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6557), + [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5955), + [8028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5782), + [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [8032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5152), + [8034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 1, 0, 95), + [8036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_annotation, 1, 0, 95), + [8038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_long_flag, 2, 0, 0), + [8040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_long_flag, 2, 0, 0), + [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [8044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [8046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 58), + [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5166), + [8050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 58), + [8052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7108), + [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5535), + [8056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5886), + [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5704), + [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6195), + [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6196), + [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6603), + [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), + [8070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 3, 0, 0), + [8072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 3, 0, 0), + [8074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 3, 0, 0), + [8076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 3, 0, 0), + [8078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, 0, 209), + [8080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, 0, 209), + [8082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 212), + [8084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 212), + [8086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 5, 0, 237), + [8088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 5, 0, 237), + [8090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6226), + [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5370), + [8094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5370), + [8096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5687), + [8098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5511), + [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5575), + [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5590), + [8104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 5), + [8106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 0), + [8108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 108), + [8110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_return, 2, 0, 0), + [8112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 33), + [8114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7056), + [8116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 211), + [8118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 211), + [8120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 20), + [8122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 220), + [8124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 221), + [8126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 222), + [8128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 223), + [8130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 224), + [8132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 3, 0, 0), + [8134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 3, 0, 0), + [8136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 225), + [8138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 226), + [8140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5269), + [8142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5343), + [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6000), + [8146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6954), + [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6485), + [8150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 138), + [8152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 138), + [8154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 178), + [8156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 178), + [8158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), + [8160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6600), + [8162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8027), + [8164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), + [8166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), + [8168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 189), + [8170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 190), + [8172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), + [8174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6453), + [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5977), + [8178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5977), + [8180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6203), + [8182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6172), + [8184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 240), + [8186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 241), + [8188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5724), + [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5725), + [8192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 242), + [8194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 243), + [8196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 244), + [8198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 245), + [8200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 246), + [8202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 247), + [8204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 248), + [8206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 249), + [8208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 124), + [8210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5980), + [8212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5980), + [8214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6664), + [8216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6017), + [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6353), + [8220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [8222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 255), + [8224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 256), + [8226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 257), + [8228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 258), + [8230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 259), + [8232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 260), + [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6167), + [8236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6167), + [8238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 261), + [8240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 262), + [8242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 263), + [8244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 54), + [8246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 160), + [8248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 265), + [8250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 266), + [8252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 0), + [8254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 267), + [8256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 268), + [8258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 269), + [8260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 270), + [8262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 161), + [8264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 271), + [8266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 272), + [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5605), + [8270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 3, 0, 162), + [8272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 3, 0, 162), + [8274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_opt, 2, 0, 115), + [8276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_opt, 2, 0, 115), + [8278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 2, 0, 116), + [8280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 2, 0, 116), + [8282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 2, 0, 21), + [8284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 2, 0, 21), + [8286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [8288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6891), + [8290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_short_flag, 2, 0, 21), + [8292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_short_flag, 2, 0, 21), + [8294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5176), + [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), + [8298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), + [8300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), + [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5238), + [8304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5344), + [8306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 1), + [8308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 2), + [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6367), + [8314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7598), + [8316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5447), + [8318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5686), + [8320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5509), + [8322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 5), + [8324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7221), + [8326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 0), + [8328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 3, 0, 31), + [8330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 3, 0, 31), + [8332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flag_capsule, 3, 0, 0), + [8334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flag_capsule, 3, 0, 0), + [8336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 5, 0, 213), + [8338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 5, 0, 213), + [8340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5219), + [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5288), + [8344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 60), + [8346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 60), + [8348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 61), + [8350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 61), + [8352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 63), + [8354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 63), + [8356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5070), + [8358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5333), + [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5244), + [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5297), + [8364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 219), + [8366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7425), + [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6708), + [8370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5230), + [8372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5418), + [8374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5389), + [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5914), + [8378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5946), + [8380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5605), + [8383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [8385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6533), + [8387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8046), + [8389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5353), + [8391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5423), + [8393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 117), + [8395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 117), + [8397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5346), + [8399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, 0, 67), + [8401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5379), + [8403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5399), + [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [8407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), + [8409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8054), + [8411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, 0, 125), + [8413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [8415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5303), + [8417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6511), + [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8024), + [8423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 59), + [8425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 59), + [8427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5289), + [8429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5393), + [8431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 62), + [8433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 62), + [8435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), + [8437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), SHIFT_REPEAT(5322), + [8440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), + [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6102), + [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7184), + [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6675), + [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), + [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8056), + [8452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, 0, 125), + [8454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [8456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5263), + [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5445), + [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6561), + [8464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), + [8466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5379), + [8469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5399), + [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5362), + [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5448), + [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6597), + [8478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7971), + [8480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5347), + [8482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 3, 0, 67), + [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [8486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5248), + [8488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5386), + [8490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5550), + [8493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5525), + [8496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4303), + [8498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4240), + [8500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6621), + [8502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4784), + [8504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4691), + [8506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5550), + [8508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5525), + [8510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [8512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6702), + [8514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5961), + [8516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6264), + [8518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6180), + [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [8522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 210), SHIFT_REPEAT(5572), + [8525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 210), + [8527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 210), SHIFT_REPEAT(6573), + [8530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 210), SHIFT_REPEAT(5598), + [8533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 210), SHIFT_REPEAT(7996), + [8536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5485), + [8538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [8540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5410), + [8542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5479), + [8544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6618), + [8546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), + [8548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), + [8550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [8552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [8554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6633), + [8556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [8558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [8560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5572), + [8562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4970), + [8564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5298), + [8566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5515), + [8568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5421), + [8570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5528), + [8572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5431), + [8574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5564), + [8576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5929), + [8578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5936), + [8580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5255), + [8582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5479), + [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6022), + [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4972), + [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6072), + [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7098), + [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [8597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6588), + [8599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5535), + [8601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5886), + [8603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5704), + [8605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6000), + [8607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6954), + [8609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6485), + [8611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5296), + [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5468), + [8615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5321), + [8617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5573), + [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7599), + [8625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5429), + [8627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5582), + [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7588), + [8631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5447), + [8633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5686), + [8635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5509), + [8637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6102), + [8639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7184), + [8641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6675), + [8643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7092), + [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6311), + [8647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6437), + [8649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [8651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), + [8653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [8655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5563), + [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5602), + [8661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4010), + [8663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4083), + [8665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4027), + [8667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4142), + [8669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4321), + [8671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4171), + [8673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3959), + [8675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4018), + [8677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3971), + [8679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4059), + [8681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4213), + [8683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4139), + [8685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4883), + [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5181), + [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6719), + [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6720), + [8693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(5451), + [8696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6965), + [8698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5430), + [8700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5929), + [8702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5936), + [8704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4978), + [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5112), + [8708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6310), + [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6312), + [8712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), + [8714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), + [8716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), + [8718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [8720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5450), + [8722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5438), + [8724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5735), + [8726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5571), + [8728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6270), + [8730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5601), + [8732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5437), + [8734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6453), + [8736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5402), + [8738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5692), + [8740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 3, 0, 235), + [8742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5922), + [8744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [8746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6522), + [8748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), + [8750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), + [8752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 3, 0, 236), + [8754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5927), + [8756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5439), + [8758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5630), + [8760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6416), + [8762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4252), + [8764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), + [8766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6256), + [8768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6257), + [8770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5587), + [8772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [8774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6664), + [8776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6017), + [8778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), + [8780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), + [8782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 9), + [8784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_name, 1, 0, 9), + [8786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4771), + [8788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5058), + [8790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6205), + [8792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6206), + [8794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6627), + [8796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [8798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [8800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), + [8802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), + [8804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [8806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [8808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5579), + [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6639), + [8812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [8814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5526), + [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5698), + [8822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [8826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5566), + [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5567), + [8830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), + [8832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), + [8834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 11), + [8836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__variable_name, 1, 0, 11), + [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5578), + [8840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5332), + [8842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [8844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5592), + [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5632), + [8848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5593), + [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5580), + [8852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5428), + [8854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5750), + [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5591), + [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5633), + [8860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5485), + [8863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6203), + [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6172), + [8867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5455), + [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5752), + [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5584), + [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5643), + [8875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5520), + [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6512), + [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6104), + [8881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6101), + [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7950), + [8885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5404), + [8887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5514), + [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6523), + [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5998), + [8893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6177), + [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7959), + [8897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), + [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6534), + [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [8903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), + [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7968), + [8907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), + [8909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [8911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5914), + [8914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5946), + [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6546), + [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [8921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7977), + [8925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5690), + [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6558), + [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [8931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), + [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7986), + [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6562), + [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7993), + [8941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), + [8943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), + [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [8947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5718), + [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5699), + [8951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3617), + [8953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5715), + [8955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5906), + [8957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4652), + [8959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6576), + [8961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [8963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), + [8965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7997), + [8967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6579), + [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [8971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), + [8973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7998), + [8975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), + [8977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5529), + [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5898), + [8981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4548), + [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6586), + [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [8987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8000), + [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6592), + [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [8995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8002), + [8999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6727), + [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6595), + [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), + [9005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4172), + [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8003), + [9009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6598), + [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [9013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), + [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8004), + [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6601), + [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), + [9021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4129), + [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8005), + [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6605), + [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), + [9029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), + [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8006), + [9033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), + [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6612), + [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [9039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), + [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8008), + [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6616), + [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), + [9047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4110), + [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8009), + [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6619), + [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6869), + [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8010), + [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6622), + [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [9061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), + [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8011), + [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6625), + [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [9069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2906), + [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8012), + [9073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5712), + [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6631), + [9079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [9081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8014), + [9085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4697), + [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6634), + [9089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), + [9091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4296), + [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8015), + [9095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), + [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6637), + [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [9101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), + [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8016), + [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6642), + [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), + [9109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), + [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8018), + [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6644), + [9115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [9117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [9119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8019), + [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6646), + [9123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [9125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8020), + [9129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6648), + [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [9133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8021), + [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6650), + [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [9141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [9143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8022), + [9145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7396), + [9147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7397), + [9149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 1, 0, 176), + [9151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), + [9153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5817), + [9155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7109), + [9157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7123), + [9159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [9161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5714), + [9163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__all_type, 1, 0, 95), + [9165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [9167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 1, 0, 177), + [9169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), + [9171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5818), + [9173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5637), + [9175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5635), + [9177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4959), + [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5071), + [9181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6438), + [9183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [9185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), + [9187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7891), + [9189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6498), + [9191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [9193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), + [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7940), + [9197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5709), + [9199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5955), + [9202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5782), + [9205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6628), + [9207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [9209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [9211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8013), + [9213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6799), + [9215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6825), + [9217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [9219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5490), + [9221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 1, 0, 0), + [9223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 1, 0, 0), + [9225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5280), + [9227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6092), + [9229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6043), + [9231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5183), + [9233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5261), + [9235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [9237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6076), + [9239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [9241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [9243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [9245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [9247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5544), + [9249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5271), + [9251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5477), + [9253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4889), + [9255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4889), + [9257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5442), + [9259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5442), + [9261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7536), + [9263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7537), + [9265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5304), + [9267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7602), + [9269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5243), + [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [9273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5380), + [9275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5380), + [9277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5915), + [9279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8036), + [9281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [9283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5090), + [9285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5090), + [9287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 253), + [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5950), + [9291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 254), + [9293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5837), + [9295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5520), + [9298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(6092), + [9301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(6043), + [9304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5954), + [9307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5954), + [9310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5143), + [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), + [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [9316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5422), + [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5422), + [9320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5221), + [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5245), + [9324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7457), + [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7458), + [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6265), + [9330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [9332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6293), + [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6108), + [9344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 2, 0, 13), + [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6140), + [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5016), + [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5021), + [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [9354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5131), + [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5131), + [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [9360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5030), + [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5192), + [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5858), + [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6496), + [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), + [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [9376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6015), + [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), + [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7207), + [9382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6815), + [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4825), + [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4788), + [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), + [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), + [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6016), + [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5680), + [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5478), + [9416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5456), + [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5456), + [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5483), + [9422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 176), + [9424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 177), + [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4942), + [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4946), + [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5616), + [9432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5373), + [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5373), + [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5618), + [9438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5477), + [9441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [9443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 2, 0, 27), + [9445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 2, 0, 28), + [9447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [9449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5651), + [9451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5653), + [9453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 254), + [9455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), + [9457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271), + [9459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [9461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [9463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), + [9465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), + [9467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 88), + [9469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), + [9471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), + [9473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), + [9475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), + [9477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), + [9479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), + [9481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7224), + [9483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [9485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [9487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6186), + [9489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6368), + [9491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [9493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [9495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), + [9497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), + [9499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [9501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [9503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), + [9505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), + [9507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7766), + [9509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [9511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), + [9513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6910), + [9515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [9517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [9519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [9521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [9523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [9525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 3, 0, 0), + [9527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [9529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6885), + [9531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [9533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), + [9535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [9537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [9539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [9541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [9543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5149), + [9545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), + [9547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5301), + [9549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [9551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6060), + [9553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6677), + [9555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6184), + [9557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6231), + [9559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6094), + [9561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [9563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [9565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5544), + [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [9570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 235), + [9572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 236), + [9574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 2, 0, 0), + [9576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 42), + [9578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 3, 0, 44), + [9580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [9582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [9584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(125), + [9587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(6293), + [9590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 72), + [9592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [9594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [9596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), + [9598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [9600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6088), + [9602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5083), + [9604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5083), + [9606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5682), + [9608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 253), + [9610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6039), + [9612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [9614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5490), + [9617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6182), + [9619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6298), + [9621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5128), + [9623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), + [9625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5958), + [9627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6292), + [9629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [9631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6187), + [9633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [9635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [9637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [9639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), + [9641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [9643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [9645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5426), + [9647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5426), + [9649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5060), + [9651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5060), + [9653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5434), + [9655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5434), + [9657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5206), + [9659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5206), + [9661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5207), + [9663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5207), + [9665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5208), + [9667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5208), + [9669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [9671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5444), + [9673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5444), + [9675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5216), + [9677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5216), + [9679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5217), + [9681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), + [9683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5218), + [9685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), + [9687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5912), + [9689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6213), + [9691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5911), + [9693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6669), + [9695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [9697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6237), + [9699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6832), + [9701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5801), + [9703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5801), + [9705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5539), + [9707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6175), + [9709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6175), + [9711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [9713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7045), + [9715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), + [9717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5954), + [9720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5954), + [9723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [9725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [9727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), + [9729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6106), + [9731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6995), + [9733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), + [9735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5647), + [9737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6440), + [9739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [9741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [9743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5252), + [9745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5252), + [9747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5547), + [9749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [9751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [9753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [9755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), + [9757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5228), + [9759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5228), + [9761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), + [9763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), + [9765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5015), + [9767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 0, 203), + [9769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 0, 203), + [9771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [9773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [9775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [9777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [9779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6710), + [9781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4701), + [9783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [9785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7223), + [9787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6279), + [9789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [9791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [9793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), + [9795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4723), + [9797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [9799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6679), + [9801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [9803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [9805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [9807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(154), + [9810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(7045), + [9813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 72), + [9815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4941), + [9817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [9819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [9821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [9823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4945), + [9825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [9827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6713), + [9829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [9831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [9833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5262), + [9835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), + [9837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5266), + [9839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5266), + [9841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [9843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6509), + [9845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5985), + [9847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6800), + [9849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5020), + [9851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [9853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6560), + [9855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7076), + [9857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5453), + [9859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5453), + [9861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5364), + [9863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5364), + [9865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6510), + [9867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 204), + [9869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 204), + [9871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [9873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [9875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [9877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6882), + [9879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [9881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5457), + [9883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5457), + [9885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [9887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5296), + [9889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [9891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [9893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6276), + [9895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5408), + [9897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), + [9899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6306), + [9901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6243), + [9903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5222), + [9905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), + [9907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6403), + [9909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [9911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5258), + [9913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5258), + [9915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), + [9917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6986), + [9919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), + [9921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_val_table_repeat1, 2, 0, 150), + [9923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), + [9925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 4, 0, 109), + [9927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), + [9929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 174), + [9931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 144), + [9933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 182), + [9935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 183), + [9937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4635), + [9939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), + [9941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2, 0, 0), + [9943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2, 0, 0), SHIFT_REPEAT(6986), + [9946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, 0, 195), + [9948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [9950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, 0, 196), + [9952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 6, 0, 197), + [9954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern, 3, 0, 82), + [9956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [9958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [9960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6912), + [9962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 4, 0, 0), + [9964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), + [9966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), + [9968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [9970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6899), + [9972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), + [9974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, 0, 206), + [9976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, 0, 207), + [9978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 208), + [9980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), + [9982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), + [9984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), + [9986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), + [9988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 182), + [9990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 215), + [9992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7090), + [9994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement, 1, 0, 0), + [9996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 1, 0, 0), + [9998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), + [10000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 1, 0, 3), + [10002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5675), + [10004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 183), + [10006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4481), + [10008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_statement, 1, 0, 0), + [10010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5285), + [10012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5469), + [10014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_hide, 1, 0, 0), + [10016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_overlay, 1, 0, 0), + [10018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 4, 0, 89), + [10020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5470), + [10022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), + [10024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 4, 0, 90), + [10026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3475), + [10028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 4, 0, 91), + [10030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), + [10032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3515), + [10034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), + [10036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3520), + [10038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3521), + [10040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3523), + [10042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), + [10044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 3, 0, 92), + [10046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 228), + [10048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), + [10050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), + [10052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 34), + [10054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 34), + [10056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4547), + [10058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let, 2, 0, 10), + [10060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut, 2, 0, 10), + [10062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), + [10064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 2, 0, 10), + [10066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), + [10068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 229), + [10070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [10072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7192), + [10074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [10076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_export, 2, 0, 12), + [10078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6053), + [10080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6029), + [10082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6056), + [10084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6034), + [10086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6085), + [10088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6095), + [10090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6004), + [10092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6067), + [10094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), + [10096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), + [10098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 230), + [10100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 7, 0, 231), + [10102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), + [10104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [10106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [10108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), + [10110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), + [10112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [10114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [10116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), + [10118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [10120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7293), + [10122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [10124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), + [10126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4637), + [10128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4659), + [10130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4355), + [10132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4365), + [10134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4300), + [10136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4326), + [10138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4287), + [10140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4299), + [10142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4324), + [10144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4344), + [10146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_loop, 2, 0, 12), + [10148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), + [10150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), + [10152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), + [10154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), + [10156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), + [10158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), + [10160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), + [10162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), + [10164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), + [10166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), + [10168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), + [10170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 7, 0, 234), + [10172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5473), + [10174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), + [10176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 6, 0, 215), + [10178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), + [10180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4215), + [10182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4179), + [10184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4181), + [10186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4190), + [10188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4199), + [10190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4205), + [10192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4214), + [10194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4219), + [10196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_body, 1, 0, 0), + [10198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [10200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4497), + [10202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4559), + [10204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5484), + [10206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5489), + [10208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5492), + [10210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5493), + [10212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5498), + [10214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5499), + [10216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5503), + [10218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5505), + [10220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4470), + [10222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), + [10224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, 0, 250), + [10226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, 0, 251), + [10228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), + [10230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), + [10232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 8, 0, 252), + [10234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), + [10236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_interpolated, 3, 0, 0), + [10238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_interpolated, 3, 0, 0), + [10240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5619), + [10242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5624), + [10244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5459), + [10246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5460), + [10248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5463), + [10250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5464), + [10252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5466), + [10254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5467), + [10256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7876), + [10258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7693), + [10260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, 0, 25), + [10262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4308), + [10264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, 0, 26), + [10266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), + [10268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 9, 0, 264), + [10270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), + [10272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), + [10274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), + [10276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 4, 0, 99), + [10278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [10280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7081), + [10282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_env, 2, 0, 30), + [10284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5655), + [10286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5662), + [10288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5664), + [10290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5665), + [10292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5670), + [10294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5671), + [10296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5673), + [10298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5676), + [10300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [10302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [10304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7115), + [10306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), + [10308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 5, 0, 135), + [10310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_list, 2, 0, 0), + [10312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), + [10314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 136), + [10316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [10318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [10320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [10322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [10324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [10326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), + [10328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [10330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), + [10332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5694), + [10334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [10336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 137), + [10338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), + [10340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3979), + [10342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), + [10344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4006), + [10346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4007), + [10348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3986), + [10350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4005), + [10352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3993), + [10354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3995), + [10356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 4, 0, 140), + [10358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), + [10360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2935), + [10362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [10364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), + [10366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3932), + [10368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3915), + [10370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3918), + [10372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3912), + [10374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3939), + [10376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3940), + [10378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3942), + [10380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3943), + [10382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), + [10384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), + [10386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5731), + [10388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3616), + [10390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 143), + [10392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), + [10394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), + [10396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2831), + [10398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2832), + [10400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), + [10402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), + [10404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2844), + [10406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), + [10408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5158), + [10410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), + [10412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), + [10414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4500), + [10416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4505), + [10418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4507), + [10420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4509), + [10422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4512), + [10424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [10426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4517), + [10428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4518), + [10430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [10432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6019), + [10434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6163), + [10436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), + [10438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3500), + [10440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3502), + [10442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3504), + [10444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3507), + [10446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), + [10448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3512), + [10450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3513), + [10452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4203), + [10454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6006), + [10456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5983), + [10458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), + [10460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), + [10462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), + [10464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), + [10466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), + [10468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), + [10470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), + [10472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), + [10474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), + [10476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [10478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [10480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [10482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [10484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [10486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [10488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [10490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [10492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [10494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [10496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [10498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [10500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), + [10502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [10504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [10506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [10508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [10510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [10512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [10514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [10516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [10518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), + [10520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), + [10522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), + [10524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7100), + [10526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), + [10528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3193), + [10530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), + [10532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5991), + [10534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3084), + [10536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), + [10538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3969), + [10540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4783), + [10542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4828), + [10544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4049), + [10546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5609), + [10548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5458), + [10550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), + [10552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), + [10554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), + [10556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4040), + [10558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), + [10560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), + [10562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 3, 0, 144), + [10564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5600), + [10566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), + [10568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), + [10570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3381), + [10572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), + [10574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), + [10576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5273), + [10578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2983), + [10580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3003), + [10582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [10584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [10586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [10588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3992), + [10590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4264), + [10592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4275), + [10594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), + [10596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), + [10598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), + [10600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), + [10602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4114), + [10604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4117), + [10606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [10608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [10610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), + [10612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3462), + [10614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4119), + [10616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [10618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [10620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3517), + [10622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [10624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [10626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), + [10628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4044), + [10630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4046), + [10632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), + [10634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6873), + [10636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6876), + [10638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4385), + [10640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), + [10642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), + [10644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [10646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2930), + [10648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2933), + [10650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), + [10652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [10654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [10656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [10658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [10660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [10662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [10664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4351), + [10666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4370), + [10668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [10670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2668), + [10672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2673), + [10674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [10676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), + [10678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [10680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), + [10682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), + [10684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [10686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [10688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [10690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [10692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [10694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [10696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [10698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [10700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [10702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 100), + [10704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5754), + [10706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5706), + [10708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5719), + [10710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [10712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 2, 0, 0), + [10714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 5, 0, 159), + [10716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 3, 0, 41), + [10718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5695), + [10720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 45), + [10722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5701), + [10724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 46), + [10726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5703), + [10728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 47), + [10730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 48), + [10732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5547), + [10735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 49), + [10737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [10739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), + [10741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), + [10743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), + [10745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), + [10747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), + [10749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), + [10751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), + [10753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), + [10755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5726), + [10757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [10759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5707), + [10761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5455), + [10763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [10765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [10767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), + [10769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [10771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5696), + [10773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6791), + [10775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [10777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [10779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 3, 0, 55), + [10781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_while, 3, 0, 56), + [10783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, 0, 165), + [10785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(6912), + [10788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), + [10790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7374), + [10792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7377), + [10794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5539), + [10797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6161), + [10799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6161), + [10801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 175), + [10803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5440), + [10805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), + [10807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5360), + [10809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5360), + [10811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5981), + [10813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5981), + [10815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 3, 0, 64), + [10817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 3, 0, 65), + [10819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 3, 0, 29), + [10821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_env, 3, 0, 66), + [10823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_hide, 3, 0, 68), + [10825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_new, 3, 0, 69), + [10827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4514), + [10829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [10831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6990), + [10833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7837), + [10835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [10837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 52), + [10839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), + [10841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8069), + [10843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4341), + [10845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4356), + [10847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4357), + [10849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4358), + [10851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4291), + [10853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4339), + [10855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4340), + [10857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4322), + [10859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), + [10861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7702), + [10863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5688), + [10865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7910), + [10867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5892), + [10869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4711), + [10871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), + [10873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 1, 0, 19), + [10875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), + [10877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7846), + [10879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), + [10881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), + [10883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), + [10885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), + [10887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), + [10889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), + [10891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), + [10893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6860), + [10895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7575), + [10897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [10899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4894), + [10901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4899), + [10903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7596), + [10905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4173), + [10907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4221), + [10909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4230), + [10911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4178), + [10913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [10915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7563), + [10917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4180), + [10919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), + [10921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4195), + [10923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4197), + [10925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), + [10927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4207), + [10929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), + [10931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [10933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7515), + [10935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7867), + [10937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7579), + [10939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [10941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [10943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6581), + [10945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5482), + [10947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5486), + [10949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5487), + [10951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5488), + [10953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5491), + [10955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5496), + [10957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5497), + [10959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5501), + [10961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), + [10963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5666), + [10965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6795), + [10967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5177), + [10969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 51), + [10971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), + [10973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), + [10975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), + [10977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5617), + [10979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 105), + [10981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5621), + [10983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5622), + [10985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5623), + [10987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5625), + [10989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5461), + [10991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5462), + [10993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5465), + [10995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), + [10997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [10999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), + [11001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5652), + [11003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5658), + [11005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5659), + [11007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5661), + [11009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5663), + [11011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5667), + [11013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5668), + [11015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [11017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5672), + [11019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 129), + [11021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 129), SHIFT_REPEAT(6990), + [11024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), + [11026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 3, 0, 41), + [11028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [11030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), + [11032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [11034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), + [11036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [11038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [11040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), + [11042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), + [11044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), + [11046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [11048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 0), + [11050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4888), + [11052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4890), + [11054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [11056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), + [11058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3975), + [11060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3980), + [11062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3981), + [11064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3982), + [11066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3984), + [11068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), + [11070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4001), + [11072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3988), + [11074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4009), + [11076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [11078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), + [11080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3927), + [11082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3933), + [11084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3938), + [11086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3914), + [11088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3917), + [11090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 4, 0, 91), + [11092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3934), + [11094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3935), + [11096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3941), + [11098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6201), + [11100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6202), + [11102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5745), + [11104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5691), + [11106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [11108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5629), + [11110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [11112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), + [11114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), + [11116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), + [11118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2826), + [11120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6567), + [11122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7616), + [11124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2828), + [11126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), + [11128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2837), + [11130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1, 0, 0), + [11132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1, 0, 0), + [11134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), + [11136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_parenthesized, 2, 0, 10), + [11138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 1, 0, 70), + [11140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7597), + [11142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_parenthesized, 2, 0, 10), + [11144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [11146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [11148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 2, 0, 10), + [11150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4498), + [11152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4501), + [11154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4502), + [11156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4503), + [11158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7912), + [11160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4506), + [11162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4510), + [11164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4511), + [11166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6127), + [11168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4515), + [11170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3524), + [11172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 51), + [11174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), + [11176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3498), + [11178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), + [11180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), + [11182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3505), + [11184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), + [11186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [11188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 31), + [11190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3511), + [11192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1206), + [11195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), + [11197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 52), + [11199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(7579), + [11202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 3, 0, 92), + [11204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), + [11206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), + [11208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), + [11210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), + [11212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), + [11214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), + [11216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), + [11218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), + [11220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized, 1, 0, 0), + [11222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [11224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [11226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), + [11228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), + [11230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [11232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [11234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [11236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [11238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), + [11240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [11242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [11244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [11246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [11248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3476), + [11250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [11252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [11254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [11256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3477), + [11258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [11260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), + [11262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [11264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [11266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [11268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5603), + [11270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_parenthesized, 1, 0, 0), + [11272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), + [11274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), + [11276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), + [11278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3522), + [11280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [11282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 34), + [11284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 34), + [11286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6997), + [11288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5320), + [11290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5073), + [11292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), + [11294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), + [11296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7710), + [11298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [11300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 2, 0, 0), + [11302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [11304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [11306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6075), + [11308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), + [11310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), + [11312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6084), + [11314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1, 0, 0), + [11316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_parenthesized, 1, 0, 3), + [11318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6173), + [11320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6093), + [11322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5811), + [11324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), + [11326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6055), + [11328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5059), + [11330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7607), + [11332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6252), + [11334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5700), + [11336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6040), + [11338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6063), + [11340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5948), + [11342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5743), + [11344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5628), + [11346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6003), + [11348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), + [11350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [11352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6838), + [11354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 5, 0, 135), + [11356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), + [11358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6889), + [11360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 4, 0, 140), + [11362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [11364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7712), + [11366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [11368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5702), + [11370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5019), + [11372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), + [11374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), + [11376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), + [11378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), + [11380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7577), + [11382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [11384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), + [11386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), + [11388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), + [11390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [11392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5883), + [11394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5893), + [11396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5025), + [11398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5937), + [11400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 105), + [11402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [11404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5944), + [11406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5762), + [11408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5765), + [11410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5942), + [11412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), + [11414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [11416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5943), + [11418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5770), + [11420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5773), + [11422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5780), + [11424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5784), + [11426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5791), + [11428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5792), + [11430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), + [11432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5800), + [11434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5803), + [11436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_table_repeat1, 2, 0, 151), SHIFT_REPEAT(758), + [11439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), + [11441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5812), + [11443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [11445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5815), + [11447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5825), + [11449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [11451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5827), + [11453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [11455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5841), + [11457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5843), + [11459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5847), + [11461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5848), + [11463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4185), + [11465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7760), + [11467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), + [11469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5853), + [11471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), + [11473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5854), + [11475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5860), + [11477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5861), + [11479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern_parenthesized, 3, 0, 82), + [11481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), + [11483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5866), + [11485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5867), + [11487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5869), + [11489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5870), + [11491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), + [11493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5873), + [11495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5874), + [11497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), + [11499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5875), + [11501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5876), + [11503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5982), + [11505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5880), + [11507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), + [11509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), + [11511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7166), + [11513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5888), + [11515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7437), + [11517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7619), + [11519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), + [11521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_var, 2, 0, 35), + [11523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_var, 2, 0, 35), + [11525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 17), + [11527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 17), + [11529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4683), + [11531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4664), + [11533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), + [11535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [11537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [11539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6712), + [11541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6714), + [11543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6305), + [11545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), + [11547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), + [11549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), + [11551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), + [11553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4633), + [11555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4643), + [11557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), + [11559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6215), + [11561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5747), + [11563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [11565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [11567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_type, 3, 0, 181), + [11569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_type, 3, 0, 181), + [11571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), + [11573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flags_parenthesized, 2, 0, 0), + [11575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flags_parenthesized, 2, 0, 0), + [11577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4359), + [11579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 10, 203), + [11581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 10, 203), + [11583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4360), + [11585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4777), + [11587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6716), + [11589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [11591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6307), + [11593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [11595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [11597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 18), + [11599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 18), + [11601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4364), + [11603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4367), + [11605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6693), + [11607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4722), + [11609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [11611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4177), + [11613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), + [11615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4855), + [11617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(7422), + [11620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4710), + [11622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), + [11624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), + [11626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(7433), + [11629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(7509), + [11632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), + [11634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), + [11636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7612), + [11638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7640), + [11640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [11642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [11644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), + [11646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [11648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [11650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [11652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [11654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [11656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [11658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [11660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [11662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4532), + [11664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4533), + [11666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 1, 0, 0), + [11668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 1, 0, 0), + [11670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4200), + [11672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4201), + [11674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4389), + [11676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), + [11678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8044), + [11680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4468), + [11682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6674), + [11684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4170), + [11686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 127), + [11688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), + [11690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 10, 204), + [11692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 10, 204), + [11694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 3, 0, 94), + [11696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), + [11698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5835), + [11700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5172), + [11702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 6, 0, 238), + [11704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [11706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4928), + [11708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6218), + [11710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5748), + [11712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4929), + [11714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7527), + [11716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_guard, 2, 0, 0), + [11718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7634), + [11720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), + [11722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4866), + [11724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [11726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6891), + [11728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [11730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [11732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5341), + [11734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), + [11736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [11738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5860), + [11740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4867), + [11742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [11744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_key, 2, 0, 0), + [11746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), + [11748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5861), + [11750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [11752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [11754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), + [11756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), + [11758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [11760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), + [11762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [11764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5610), + [11766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [11768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [11770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), + [11772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [11774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [11776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [11778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), + [11780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [11782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [11784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), + [11786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5627), + [11788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [11790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4930), + [11792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [11794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7894), + [11796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [11798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [11800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), + [11802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [11804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7399), + [11806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6027), + [11808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [11810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4975), + [11812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6874), + [11814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [11816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), + [11818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5674), + [11820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6033), + [11822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [11824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5018), + [11826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [11828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [11830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7830), + [11832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7412), + [11834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [11836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7697), + [11838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), + [11840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), + [11842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4685), + [11844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), + [11846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), + [11848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [11850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [11852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5588), + [11854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [11856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [11858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), + [11860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5751), + [11862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [11864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), + [11866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [11868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5901), + [11870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [11872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), + [11874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), + [11876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [11878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), + [11880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7415), + [11882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [11884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), + [11886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [11888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [11890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [11892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7927), + [11894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [11896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), + [11898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [11900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4361), + [11902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6026), + [11904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [11906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [11908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [11910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [11912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [11914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), + [11916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), + [11918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [11920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [11922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [11924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), + [11926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_rest, 3, 0, 0), + [11928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [11930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [11932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [11934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), + [11936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5198), + [11938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7909), + [11940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4192), + [11942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [11944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [11946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [11948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7820), + [11950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [11952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 94), + [11954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [11956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [11958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5167), + [11960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), + [11962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5475), + [11964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [11966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5568), + [11968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), + [11970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7654), + [11972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5615), + [11974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [11976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), + [11978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7222), + [11980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [11982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5596), + [11984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [11986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), + [11988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), + [11990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [11992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [11994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [11996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7669), + [11998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), + [12000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [12002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [12004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [12006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), + [12008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [12010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8058), + [12012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), + [12014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7724), + [12016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8079), + [12018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), + [12020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5513), + [12022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [12024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), + [12026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), + [12028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7945), + [12030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), + [12032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), + [12034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [12036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 1, 0, 98), + [12038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 139), + [12040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [12042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 139), + [12044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7850), + [12046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [12048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), + [12050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [12052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 238), + [12054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6405), + [12056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), + [12058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [12060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7748), + [12062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 214), + [12064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [12066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), + [12068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [12070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [12072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [12074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [12076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7762), + [12078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [12080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), + [12082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), + [12084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [12086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6166), + [12088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [12090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [12092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7926), + [12094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [12096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [12098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [12100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [12102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), + [12104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [12106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 2, 0, 94), + [12108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4892), + [12110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5476), + [12112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7627), + [12114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [12116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [12118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), + [12120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), + [12122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [12124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6870), + [12126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [12128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4948), + [12130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), + [12132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7840), + [12134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), + [12136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [12138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [12140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [12142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5648), + [12144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6007), + [12146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [12148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), + [12150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7643), + [12152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [12154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [12156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5945), + [12158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [12160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [12162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [12164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7559), + [12166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [12168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [12170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7730), + [12172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 2, 0, 0), + [12174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [12176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4617), + [12178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [12180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [12182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5614), + [12184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), + [12186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7807), + [12188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5744), + [12190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), + [12192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5481), + [12194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [12196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [12198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [12200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [12202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8078), + [12204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [12206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [12208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [12210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), + [12212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), + [12214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), + [12216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [12218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7914), + [12220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4729), + [12222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6946), + [12224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [12226] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [12228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), + [12230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), + [12232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7952), + [12234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [12236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [12238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), + [12240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4868), + [12242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [12244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7985), + [12246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6930), + [12248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [12250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [12252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5783), + [12254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 2, 0, 0), + [12256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [12258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6179), + [12260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [12262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8063), + [12264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [12266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4719), + [12268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), + [12270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5631), + [12272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [12274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7790), + [12276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7856), + [12278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8048), + [12280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7651), + [12282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7695), + [12284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7732), + [12286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7828), + [12288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7895), + [12290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8026), + [12292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8052), + [12294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7608), + [12296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7625), + [12298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7631), + [12300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7639), + [12302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7655), + [12304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7661), + [12306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7675), + [12308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7682), + [12310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7692), + [12312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7703), + [12314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7713), + [12316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7723), + [12318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7735), + [12320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7744), + [12322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7751), + [12324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7772), + [12326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7784), + [12328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7787), + [12330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7792), + [12332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7800), + [12334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7301), + [12336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [12338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), + [12340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [12342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7749), + [12344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [12346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4974), + [12348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5836), + [12350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4860), + [12352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [12354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7406), + [12356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4289), + [12358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [12360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [12362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), + [12364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [12366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4745), + [12368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [12370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [12372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5163), + [12374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), + [12376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4797), + [12378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), + [12380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [12382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), + [12384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [12386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [12388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [12390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [12392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [12394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5606), + [12396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), + [12398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), + [12400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [12402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [12404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [12406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5308), + [12408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [12410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [12412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6080), + [12414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 214), + [12416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [12418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), + [12420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [12422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), + [12424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), + [12426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), + [12428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6065), + [12430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2, 0, 0), +}; + +enum ts_external_scanner_symbol_identifiers { + ts_external_token_raw_string_begin = 0, + ts_external_token_raw_string_content = 1, + ts_external_token_raw_string_end = 2, +}; + +static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { + [ts_external_token_raw_string_begin] = sym_raw_string_begin, + [ts_external_token_raw_string_content] = sym_raw_string_content, + [ts_external_token_raw_string_end] = sym_raw_string_end, +}; + +static const bool ts_external_scanner_states[5][EXTERNAL_TOKEN_COUNT] = { + [1] = { + [ts_external_token_raw_string_begin] = true, + [ts_external_token_raw_string_content] = true, + [ts_external_token_raw_string_end] = true, + }, + [2] = { + [ts_external_token_raw_string_begin] = true, + }, + [3] = { + [ts_external_token_raw_string_end] = true, + }, + [4] = { + [ts_external_token_raw_string_content] = true, + }, }; #ifdef __cplusplus extern "C" { #endif +void *tree_sitter_nu_external_scanner_create(void); +void tree_sitter_nu_external_scanner_destroy(void *); +bool tree_sitter_nu_external_scanner_scan(void *, TSLexer *, const bool *); +unsigned tree_sitter_nu_external_scanner_serialize(void *, char *); +void tree_sitter_nu_external_scanner_deserialize(void *, const char *, unsigned); + #ifdef TREE_SITTER_HIDE_SYMBOLS #define TS_PUBLIC #elif defined(_WIN32) @@ -428667,6 +439184,15 @@ TS_PUBLIC const TSLanguage *tree_sitter_nu(void) { .lex_fn = ts_lex, .keyword_lex_fn = ts_lex_keywords, .keyword_capture_token = sym_identifier, + .external_scanner = { + &ts_external_scanner_states[0][0], + ts_external_scanner_symbol_map, + tree_sitter_nu_external_scanner_create, + tree_sitter_nu_external_scanner_destroy, + tree_sitter_nu_external_scanner_scan, + tree_sitter_nu_external_scanner_serialize, + tree_sitter_nu_external_scanner_deserialize, + }, .primary_state_ids = ts_primary_state_ids, }; return &language; diff --git a/src/scanner.c b/src/scanner.c new file mode 100644 index 0000000..d966fb5 --- /dev/null +++ b/src/scanner.c @@ -0,0 +1,151 @@ +#include "tree_sitter/parser.h" +#include "tree_sitter/alloc.h" +#include +#include + +#define skip lexer->advance(lexer, true) +#define adv lexer->advance(lexer, false) +#define eof lexer->eof(lexer) + +enum TokenType { + RAW_STRING_BEGIN, + RAW_STRING_CONTENT, + RAW_STRING_END, + ERROR_SENTINEL, +}; + +typedef struct { + uint8_t level; +} Scanner; + +static uint8_t consume_chars(TSLexer *lexer, char c) { + uint8_t count = 0; + while (lexer->lookahead == c && !eof) { + adv; + ++count; + } + return count; +} + +static uint32_t consume_until(TSLexer *lexer, char c) { + uint32_t count = 0; + while (lexer->lookahead != c && !eof) { + adv; + count++; + } + return count; +} + + +void *tree_sitter_nu_external_scanner_create(void) { + Scanner *scanner = ts_malloc(sizeof(Scanner)); + scanner->level = 0; + return scanner; +} + + +void tree_sitter_nu_external_scanner_destroy(void *payload) { + ts_free(payload); +} + + +unsigned tree_sitter_nu_external_scanner_serialize( + void *payload, + char *buffer +) { + Scanner *s = (Scanner *) payload; + buffer[0] = s->level; + return 1; +} + + +void tree_sitter_nu_external_scanner_deserialize( + void *payload, + const char *buffer, + unsigned length +) { + Scanner *s = (Scanner *) payload; + s->level = 0; + if (length == 1) { + s->level = buffer[0]; + } +} + +static bool scan_raw_string_begin(TSLexer *lexer, Scanner *s) { + lexer->log(lexer, "BEGIN\n"); + // scan for r#' r##' or more # + + lexer->log(lexer, "Detected 'r'.\n"); + adv; + uint8_t level = consume_chars(lexer, '#'); + lexer->log(lexer, "num #: %i\n", level); + if (lexer->lookahead == '\'') { + adv; + lexer->log(lexer, "Detected level: %i\n", level); + s->level = level; + return true; + } + return false; +} + +static bool scan_raw_string_content(TSLexer *lexer, Scanner *s) { + uint32_t len = 0; + lexer->log(lexer, "CONTENT\n"); + while (!eof) { + uint32_t num = consume_until(lexer, '\''); + lexer->log(lexer, "Set mark\n"); + lexer->mark_end(lexer); + len += num; + adv; + uint8_t level = consume_chars(lexer, '#'); + lexer->log(lexer, "Consumed [%i] #\n", level); + if (level == s->level) { + lexer->log(lexer, "Detected end\n" ); + return true; + } + } + + return false; +} + +static bool scan_raw_string_end(TSLexer *lexer, Scanner *s) { + lexer->log(lexer, "END\n"); + // HINT: scan_raw_string_content already determines the content's length + // so we only advance to the end of the delimiter and return true. + adv; + while (s->level > 0) { + adv; + s->level--; + } + return true; +} + +bool tree_sitter_nu_external_scanner_scan( + void *payload, + TSLexer *lexer, + const bool *valid_symbols +) { + if (valid_symbols[ERROR_SENTINEL]) { + return false; + } + + Scanner *s = (Scanner *) payload; + lexer->log(lexer, "Nu Scanner: level [%i]\n", s->level); + + if (valid_symbols[RAW_STRING_BEGIN] && lexer->lookahead == 'r') { + lexer->result_symbol = RAW_STRING_BEGIN; + return scan_raw_string_begin(lexer, s); + } + if (valid_symbols[RAW_STRING_CONTENT] && s->level != 0) { + lexer->result_symbol = RAW_STRING_CONTENT; + return scan_raw_string_content(lexer, s); + } + + if (valid_symbols[RAW_STRING_END] && s->level != 0 + && lexer->lookahead == '\'') { + lexer->result_symbol = RAW_STRING_END; + return scan_raw_string_end(lexer, s); + } + + return false; +} diff --git a/test/corpus/expr/raw-strings.nu b/test/corpus/expr/raw-strings.nu new file mode 100644 index 0000000..8a49a9f --- /dev/null +++ b/test/corpus/expr/raw-strings.nu @@ -0,0 +1,79 @@ +===== +raw-strings-001-simple +===== + +r#'string'# + +----- + +(nu_script + (pipeline + (pipe_element + (val_string + (raw_string_begin) + (raw_string_content) + (raw_string_end))))) + +===== +raw-strings-002-simple +===== + +r##'raw string: r#'bla'#'## + +----- + +(nu_script + (pipeline + (pipe_element + (val_string + (raw_string_begin) + (raw_string_content) + (raw_string_end))))) + +===== +raw-strings-003-simple +===== + +r#####'string'##### + +----- + +(nu_script + (pipeline + (pipe_element + (val_string + (raw_string_begin) + (raw_string_content) + (raw_string_end))))) + +===== +raw-strings-004-with-ticks-and-tags +===== + +r#####'string '#'##'##### + +----- + +(nu_script + (pipeline + (pipe_element + (val_string + (raw_string_begin) + (raw_string_content) + (raw_string_end))))) + +===== +raw-strings-005-empty-string +===== + +r#''# + +----- + +(nu_script + (pipeline + (pipe_element + (val_string + (raw_string_begin) + (raw_string_content) + (raw_string_end)))))